[
  {
    "path": ".github/FUNDING.yml",
    "content": "custom: https://study.163.com/course/introduction/1005223022.htm\n"
  },
  {
    "path": ".gitignore",
    "content": ".DS_store\n.ipynb_checkpoints\n.ipynb_checkpoints/* \ndata/keras_model/\ndata/demomodule/\ndata/autograph/\n"
  },
  {
    "path": "1-1,结构化数据建模流程范例.md",
    "content": "# 1-1,结构化数据建模流程范例\n\n\n### 一，准备数据\n\n\ntitanic数据集的目标是根据乘客信息预测他们在Titanic号撞击冰山沉没后能否生存。\n\n结构化数据一般会使用Pandas中的DataFrame进行预处理。\n\n\n```python\nimport numpy as np \nimport pandas as pd \nimport matplotlib.pyplot as plt\nimport tensorflow as tf \nfrom tensorflow.keras import models,layers\n\ndftrain_raw = pd.read_csv('./data/titanic/train.csv')\ndftest_raw = pd.read_csv('./data/titanic/test.csv')\ndftrain_raw.head(10)\n```\n\n![](./data/1-1-数据集展示.jpg)\n\n\n字段说明：\n\n* Survived:0代表死亡，1代表存活【y标签】\n* Pclass:乘客所持票类，有三种值(1,2,3) 【转换成onehot编码】\n* Name:乘客姓名 【舍去】\n* Sex:乘客性别 【转换成bool特征】\n* Age:乘客年龄(有缺失) 【数值特征，添加“年龄是否缺失”作为辅助特征】\n* SibSp:乘客兄弟姐妹/配偶的个数(整数值) 【数值特征】\n* Parch:乘客父母/孩子的个数(整数值)【数值特征】\n* Ticket:票号(字符串)【舍去】\n* Fare:乘客所持票的价格(浮点数，0-500不等) 【数值特征】\n* Cabin:乘客所在船舱(有缺失) 【添加“所在船舱是否缺失”作为辅助特征】\n* Embarked:乘客登船港口:S、C、Q(有缺失)【转换成onehot编码，四维度 S,C,Q,nan】\n\n\n\n利用Pandas的数据可视化功能我们可以简单地进行探索性数据分析EDA（Exploratory Data Analysis）。\n\nlabel分布情况\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'png'\nax = dftrain_raw['Survived'].value_counts().plot(kind = 'bar',\n     figsize = (12,8),fontsize=15,rot = 0)\nax.set_ylabel('Counts',fontsize = 15)\nax.set_xlabel('Survived',fontsize = 15)\nplt.show()\n```\n\n![](./data/1-1-Label分布.jpg)\n\n\n年龄分布情况\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'png'\nax = dftrain_raw['Age'].plot(kind = 'hist',bins = 20,color= 'purple',\n                    figsize = (12,8),fontsize=15)\n\nax.set_ylabel('Frequency',fontsize = 15)\nax.set_xlabel('Age',fontsize = 15)\nplt.show()\n```\n\n![](./data/1-1-年龄分布.jpg)\n\n\n年龄和label的相关性\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'png'\nax = dftrain_raw.query('Survived == 0')['Age'].plot(kind = 'density',\n                      figsize = (12,8),fontsize=15)\ndftrain_raw.query('Survived == 1')['Age'].plot(kind = 'density',\n                      figsize = (12,8),fontsize=15)\nax.legend(['Survived==0','Survived==1'],fontsize = 12)\nax.set_ylabel('Density',fontsize = 15)\nax.set_xlabel('Age',fontsize = 15)\nplt.show()\n```\n\n![](./data/1-1-年龄相关性.jpg)\n\n\n下面为正式的数据预处理\n\n```python\ndef preprocessing(dfdata):\n\n    dfresult= pd.DataFrame()\n\n    #Pclass\n    dfPclass = pd.get_dummies(dfdata['Pclass'])\n    dfPclass.columns = ['Pclass_' +str(x) for x in dfPclass.columns ]\n    dfresult = pd.concat([dfresult,dfPclass],axis = 1)\n\n    #Sex\n    dfSex = pd.get_dummies(dfdata['Sex'])\n    dfresult = pd.concat([dfresult,dfSex],axis = 1)\n\n    #Age\n    dfresult['Age'] = dfdata['Age'].fillna(0)\n    dfresult['Age_null'] = pd.isna(dfdata['Age']).astype('int32')\n\n    #SibSp,Parch,Fare\n    dfresult['SibSp'] = dfdata['SibSp']\n    dfresult['Parch'] = dfdata['Parch']\n    dfresult['Fare'] = dfdata['Fare']\n\n    #Carbin\n    dfresult['Cabin_null'] =  pd.isna(dfdata['Cabin']).astype('int32')\n\n    #Embarked\n    dfEmbarked = pd.get_dummies(dfdata['Embarked'],dummy_na=True)\n    dfEmbarked.columns = ['Embarked_' + str(x) for x in dfEmbarked.columns]\n    dfresult = pd.concat([dfresult,dfEmbarked],axis = 1)\n\n    return(dfresult)\n\nx_train = preprocessing(dftrain_raw)\ny_train = dftrain_raw['Survived'].values\n\nx_test = preprocessing(dftest_raw)\ny_test = dftest_raw['Survived'].values\n\nprint(\"x_train.shape =\", x_train.shape )\nprint(\"x_test.shape =\", x_test.shape )\n\n```\n\n```\nx_train.shape = (712, 15)\nx_test.shape = (179, 15)\n```\n\n```python\n\n```\n\n### 二，定义模型\n\n\n使用Keras接口有以下3种方式构建模型：使用Sequential按层顺序构建模型，使用函数式API构建任意结构模型，继承Model基类构建自定义模型。\n\n此处选择使用最简单的Sequential，按层顺序模型。\n\n```python\ntf.keras.backend.clear_session()\n\nmodel = models.Sequential()\nmodel.add(layers.Dense(20,activation = 'relu',input_shape=(15,)))\nmodel.add(layers.Dense(10,activation = 'relu' ))\nmodel.add(layers.Dense(1,activation = 'sigmoid' ))\n\nmodel.summary()\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ndense (Dense)                (None, 20)                320       \n_________________________________________________________________\ndense_1 (Dense)              (None, 10)                210       \n_________________________________________________________________\ndense_2 (Dense)              (None, 1)                 11        \n=================================================================\nTotal params: 541\nTrainable params: 541\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n\n### 三，训练模型\n\n\n训练模型通常有3种方法，内置fit方法，内置train_on_batch方法，以及自定义训练循环。此处我们选择最常用也最简单的内置fit方法。\n\n```python\n# 二分类问题选择二元交叉熵损失函数\nmodel.compile(optimizer='adam',\n            loss='binary_crossentropy',\n            metrics=['AUC'])\n\nhistory = model.fit(x_train,y_train,\n                    batch_size= 64,\n                    epochs= 30,\n                    validation_split=0.2 #分割一部分训练数据用于验证\n                   )\n```\n\n```\nTrain on 569 samples, validate on 143 samples\nEpoch 1/30\n569/569 [==============================] - 1s 2ms/sample - loss: 3.5841 - AUC: 0.4079 - val_loss: 3.4429 - val_AUC: 0.4129\nEpoch 2/30\n569/569 [==============================] - 0s 102us/sample - loss: 2.6093 - AUC: 0.3967 - val_loss: 2.4886 - val_AUC: 0.4139\nEpoch 3/30\n569/569 [==============================] - 0s 68us/sample - loss: 1.8375 - AUC: 0.4003 - val_loss: 1.7383 - val_AUC: 0.4223\nEpoch 4/30\n569/569 [==============================] - 0s 83us/sample - loss: 1.2545 - AUC: 0.4390 - val_loss: 1.1936 - val_AUC: 0.4765\nEpoch 5/30\n569/569 [==============================] - ETA: 0s - loss: 1.4435 - AUC: 0.375 - 0s 90us/sample - loss: 0.9141 - AUC: 0.5192 - val_loss: 0.8274 - val_AUC: 0.5584\nEpoch 6/30\n569/569 [==============================] - 0s 110us/sample - loss: 0.7052 - AUC: 0.6290 - val_loss: 0.6596 - val_AUC: 0.6880\nEpoch 7/30\n569/569 [==============================] - 0s 90us/sample - loss: 0.6410 - AUC: 0.7086 - val_loss: 0.6519 - val_AUC: 0.6845\nEpoch 8/30\n569/569 [==============================] - 0s 93us/sample - loss: 0.6246 - AUC: 0.7080 - val_loss: 0.6480 - val_AUC: 0.6846\nEpoch 9/30\n569/569 [==============================] - 0s 73us/sample - loss: 0.6088 - AUC: 0.7113 - val_loss: 0.6497 - val_AUC: 0.6838\nEpoch 10/30\n569/569 [==============================] - 0s 79us/sample - loss: 0.6051 - AUC: 0.7117 - val_loss: 0.6454 - val_AUC: 0.6873\nEpoch 11/30\n569/569 [==============================] - 0s 96us/sample - loss: 0.5972 - AUC: 0.7218 - val_loss: 0.6369 - val_AUC: 0.6888\nEpoch 12/30\n569/569 [==============================] - 0s 92us/sample - loss: 0.5918 - AUC: 0.7294 - val_loss: 0.6330 - val_AUC: 0.6908\nEpoch 13/30\n569/569 [==============================] - 0s 75us/sample - loss: 0.5864 - AUC: 0.7363 - val_loss: 0.6281 - val_AUC: 0.6948\nEpoch 14/30\n569/569 [==============================] - 0s 104us/sample - loss: 0.5832 - AUC: 0.7426 - val_loss: 0.6240 - val_AUC: 0.7030\nEpoch 15/30\n569/569 [==============================] - 0s 74us/sample - loss: 0.5777 - AUC: 0.7507 - val_loss: 0.6200 - val_AUC: 0.7066\nEpoch 16/30\n569/569 [==============================] - 0s 79us/sample - loss: 0.5726 - AUC: 0.7569 - val_loss: 0.6155 - val_AUC: 0.7132\nEpoch 17/30\n569/569 [==============================] - 0s 99us/sample - loss: 0.5674 - AUC: 0.7643 - val_loss: 0.6070 - val_AUC: 0.7255\nEpoch 18/30\n569/569 [==============================] - 0s 97us/sample - loss: 0.5631 - AUC: 0.7721 - val_loss: 0.6061 - val_AUC: 0.7305\nEpoch 19/30\n569/569 [==============================] - 0s 73us/sample - loss: 0.5580 - AUC: 0.7792 - val_loss: 0.6027 - val_AUC: 0.7332\nEpoch 20/30\n569/569 [==============================] - 0s 85us/sample - loss: 0.5533 - AUC: 0.7861 - val_loss: 0.5997 - val_AUC: 0.7366\nEpoch 21/30\n569/569 [==============================] - 0s 87us/sample - loss: 0.5497 - AUC: 0.7926 - val_loss: 0.5961 - val_AUC: 0.7433\nEpoch 22/30\n569/569 [==============================] - 0s 101us/sample - loss: 0.5454 - AUC: 0.7987 - val_loss: 0.5943 - val_AUC: 0.7438\nEpoch 23/30\n569/569 [==============================] - 0s 100us/sample - loss: 0.5398 - AUC: 0.8057 - val_loss: 0.5926 - val_AUC: 0.7492\nEpoch 24/30\n569/569 [==============================] - 0s 79us/sample - loss: 0.5328 - AUC: 0.8122 - val_loss: 0.5912 - val_AUC: 0.7493\nEpoch 25/30\n569/569 [==============================] - 0s 86us/sample - loss: 0.5283 - AUC: 0.8147 - val_loss: 0.5902 - val_AUC: 0.7509\nEpoch 26/30\n569/569 [==============================] - 0s 67us/sample - loss: 0.5246 - AUC: 0.8196 - val_loss: 0.5845 - val_AUC: 0.7552\nEpoch 27/30\n569/569 [==============================] - 0s 72us/sample - loss: 0.5205 - AUC: 0.8271 - val_loss: 0.5837 - val_AUC: 0.7584\nEpoch 28/30\n569/569 [==============================] - 0s 74us/sample - loss: 0.5144 - AUC: 0.8302 - val_loss: 0.5848 - val_AUC: 0.7561\nEpoch 29/30\n569/569 [==============================] - 0s 77us/sample - loss: 0.5099 - AUC: 0.8326 - val_loss: 0.5809 - val_AUC: 0.7583\nEpoch 30/30\n569/569 [==============================] - 0s 80us/sample - loss: 0.5071 - AUC: 0.8349 - val_loss: 0.5816 - val_AUC: 0.7605\n\n```\n\n\n### 四，评估模型\n\n\n我们首先评估一下模型在训练集和验证集上的效果。\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nimport matplotlib.pyplot as plt\n\ndef plot_metric(history, metric):\n    train_metrics = history.history[metric]\n    val_metrics = history.history['val_'+metric]\n    epochs = range(1, len(train_metrics) + 1)\n    plt.plot(epochs, train_metrics, 'bo--')\n    plt.plot(epochs, val_metrics, 'ro-')\n    plt.title('Training and validation '+ metric)\n    plt.xlabel(\"Epochs\")\n    plt.ylabel(metric)\n    plt.legend([\"train_\"+metric, 'val_'+metric])\n    plt.show()\n```\n\n```python\nplot_metric(history,\"loss\")\n```\n\n![](./data/1-1-Loss曲线.jpg)\n\n```python\nplot_metric(history,\"AUC\")\n```\n\n![](./data/1-1-AUC曲线.jpg)\n\n\n我们再看一下模型在测试集上的效果.\n\n```python\nmodel.evaluate(x = x_test,y = y_test)\n```\n\n```\n[0.5191367897907448, 0.8122605]\n```\n\n```python\n\n```\n\n### 五，使用模型\n\n```python\n#预测概率\nmodel.predict(x_test[0:10])\n#model(tf.constant(x_test[0:10].values,dtype = tf.float32)) #等价写法\n```\n\n```\narray([[0.26501188],\n       [0.40970832],\n       [0.44285864],\n       [0.78408605],\n       [0.47650957],\n       [0.43849158],\n       [0.27426785],\n       [0.5962582 ],\n       [0.59476686],\n       [0.17882936]], dtype=float32)\n```\n\n```python\n#预测类别\nmodel.predict_classes(x_test[0:10])\n```\n\n```\narray([[0],\n       [0],\n       [0],\n       [1],\n       [0],\n       [0],\n       [0],\n       [1],\n       [1],\n       [0]], dtype=int32)\n```\n\n```python\n\n```\n\n### 六，保存模型\n\n\n可以使用Keras方式保存模型，也可以使用TensorFlow原生方式保存。前者仅仅适合使用Python环境恢复模型，后者则可以跨平台进行模型部署。\n\n推荐使用后一种方式进行保存。\n\n\n**1，Keras方式保存**\n\n```python\n# 保存模型结构及权重\n\nmodel.save('./data/keras_model.h5')  \n\ndel model  #删除现有模型\n\n# identical to the previous one\nmodel = models.load_model('./data/keras_model.h5')\nmodel.evaluate(x_test,y_test)\n```\n\n```\n[0.5191367897907448, 0.8122605]\n```\n\n```python\n# 保存模型结构\njson_str = model.to_json()\n\n# 恢复模型结构\nmodel_json = models.model_from_json(json_str)\n```\n\n```python\n#保存模型权重\nmodel.save_weights('./data/keras_model_weight.h5')\n\n# 恢复模型结构\nmodel_json = models.model_from_json(json_str)\nmodel_json.compile(\n        optimizer='adam',\n        loss='binary_crossentropy',\n        metrics=['AUC']\n    )\n\n# 加载权重\nmodel_json.load_weights('./data/keras_model_weight.h5')\nmodel_json.evaluate(x_test,y_test)\n```\n\n```\n[0.5191367897907448, 0.8122605]\n```\n\n\n**2，TensorFlow原生方式保存**\n\n```python\n# 保存权重，该方式仅仅保存权重张量\nmodel.save_weights('./data/tf_model_weights.ckpt',save_format = \"tf\")\n```\n\n```python\n# 保存模型结构与模型参数到文件,该方式保存的模型具有跨平台性便于部署\n\nmodel.save('./data/tf_model_savedmodel', save_format=\"tf\")\nprint('export saved model.')\n\nmodel_loaded = tf.keras.models.load_model('./data/tf_model_savedmodel')\nmodel_loaded.evaluate(x_test,y_test)\n```\n\n```\n[0.5191365896656527, 0.8122605]\n```\n\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n\n```python\n\n```\n"
  },
  {
    "path": "1-2,图片数据建模流程范例.md",
    "content": "# 1-2,图片数据建模流程范例\n\n\n### 一，准备数据\n\n\ncifar2数据集为cifar10数据集的子集，只包括前两种类别airplane和automobile。\n\n训练集有airplane和automobile图片各5000张，测试集有airplane和automobile图片各1000张。\n\ncifar2任务的目标是训练一个模型来对飞机airplane和机动车automobile两种图片进行分类。\n\n我们准备的Cifar2数据集的文件结构如下所示。\n\n![](./data/cifar2.jpg)\n\n```python\n\n```\n\n在tensorflow中准备图片数据的常用方案有两种，第一种是使用tf.keras中的ImageDataGenerator工具构建图片数据生成器。\n\n第二种是使用tf.data.Dataset搭配tf.image中的一些图片处理方法构建数据管道。\n\n第一种方法更为简单，其使用范例可以参考以下文章。\n\n[《Keras图像数据预处理范例——Cifar2图片分类》](https://mp.weixin.qq.com/s?__biz=MzU3OTQzNTU2OA==&mid=2247484795&idx=1&sn=16947726702b87ee535aef0d6ae2db30&chksm=fd676824ca10e1321e77c5fa44339c0a79442cd8d7fbcc58697be166a4b0f990306848724692&mpshare=1&scene=1&srcid=1227ARPw2Ir8nVC4B84CjcIx&sharer_sharetime=1609043128020&sharer_shareid=808295d573831eb57288f1fc0ad3ac69&key=a58ea5adca8c8f06e4a7b7a15ed218f88cbee52ab3ee0fca3f2dd3f0797a36a6de26f8e75bd4787ddf97195c3959d94fe5060be0d3f9f6cd1eba11c0ad1ee37709088084d70034bd03efd43dacc32acd45a231c8359dd84ad73c28b11a9dc50556486b6e1e1ab89ad11da9621e5cdd858fcb53d91037d5116d638d12fced85b3&ascene=0&uin=MTYzMDEzMjAxMg%3D%3D&devicetype=iMac+MacBookAir7%2C2+OSX+OSX+10.14.6+build(18G6032)&version=11020113&lang=zh_CN&exportkey=A8nc9Ve3hcMzsggW3DOY8mU%3D&pass_ticket=JOjUjT6HXslkPfqXrPY1oG3qVEXbIIc1IAKdh8xjlrGyB8OtZ8JjRan45%2Ff%2Bknjb&wx_header=0)\n\n第二种方法是TensorFlow的原生方法，更加灵活，使用得当的话也可以获得更好的性能。\n\n我们此处介绍第二种方法。\n\n\n```python\nimport tensorflow as tf \nfrom tensorflow.keras import datasets,layers,models\n\nBATCH_SIZE = 100\n\ndef load_image(img_path,size = (32,32)):\n    label = tf.constant(1,tf.int8) if tf.strings.regex_full_match(img_path,\".*automobile.*\") \\\n            else tf.constant(0,tf.int8)\n    img = tf.io.read_file(img_path)\n    img = tf.image.decode_jpeg(img) #注意此处为jpeg格式\n    img = tf.image.resize(img,size)/255.0\n    return(img,label)\n\n```\n\n```python\n#使用并行化预处理num_parallel_calls 和预存数据prefetch来提升性能\nds_train = tf.data.Dataset.list_files(\"./data/cifar2/train/*/*.jpg\") \\\n           .map(load_image, num_parallel_calls=tf.data.experimental.AUTOTUNE) \\\n           .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n           .prefetch(tf.data.experimental.AUTOTUNE)  \n\nds_test = tf.data.Dataset.list_files(\"./data/cifar2/test/*/*.jpg\") \\\n           .map(load_image, num_parallel_calls=tf.data.experimental.AUTOTUNE) \\\n           .batch(BATCH_SIZE) \\\n           .prefetch(tf.data.experimental.AUTOTUNE)  \n\n```\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\n#查看部分样本\nfrom matplotlib import pyplot as plt \n\nplt.figure(figsize=(8,8)) \nfor i,(img,label) in enumerate(ds_train.unbatch().take(9)):\n    ax=plt.subplot(3,3,i+1)\n    ax.imshow(img.numpy())\n    ax.set_title(\"label = %d\"%label)\n    ax.set_xticks([])\n    ax.set_yticks([]) \nplt.show()\n\n```\n\n![](./data/1-2-图片预览.jpg)\n\n```python\nfor x,y in ds_train.take(1):\n    print(x.shape,y.shape)\n```\n\n```\n(100, 32, 32, 3) (100,)\n```\n\n```python\n\n```\n\n### 二，定义模型\n\n\n使用Keras接口有以下3种方式构建模型：使用Sequential按层顺序构建模型，使用函数式API构建任意结构模型，继承Model基类构建自定义模型。\n\n此处选择使用函数式API构建模型。\n\n```python\ntf.keras.backend.clear_session() #清空会话\n\ninputs = layers.Input(shape=(32,32,3))\nx = layers.Conv2D(32,kernel_size=(3,3))(inputs)\nx = layers.MaxPool2D()(x)\nx = layers.Conv2D(64,kernel_size=(5,5))(x)\nx = layers.MaxPool2D()(x)\nx = layers.Dropout(rate=0.1)(x)\nx = layers.Flatten()(x)\nx = layers.Dense(32,activation='relu')(x)\noutputs = layers.Dense(1,activation = 'sigmoid')(x)\n\nmodel = models.Model(inputs = inputs,outputs = outputs)\n\nmodel.summary()\n```\n\n```\nModel: \"model\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ninput_1 (InputLayer)         [(None, 32, 32, 3)]       0         \n_________________________________________________________________\nconv2d (Conv2D)              (None, 30, 30, 32)        896       \n_________________________________________________________________\nmax_pooling2d (MaxPooling2D) (None, 15, 15, 32)        0         \n_________________________________________________________________\nconv2d_1 (Conv2D)            (None, 11, 11, 64)        51264     \n_________________________________________________________________\nmax_pooling2d_1 (MaxPooling2 (None, 5, 5, 64)          0         \n_________________________________________________________________\ndropout (Dropout)            (None, 5, 5, 64)          0         \n_________________________________________________________________\nflatten (Flatten)            (None, 1600)              0         \n_________________________________________________________________\ndense (Dense)                (None, 32)                51232     \n_________________________________________________________________\ndense_1 (Dense)              (None, 1)                 33        \n=================================================================\nTotal params: 103,425\nTrainable params: 103,425\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\n\n```\n\n### 三，训练模型\n\n\n训练模型通常有3种方法，内置fit方法，内置train_on_batch方法，以及自定义训练循环。此处我们选择最常用也最简单的内置fit方法。\n\n```python\nimport datetime\nimport os\n\nstamp = datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\nlogdir = os.path.join('data', 'autograph', stamp)\n\n## 在 Python3 下建议使用 pathlib 修正各操作系统的路径\n# from pathlib import Path\n# stamp = datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\n# logdir = str(Path('./data/autograph/' + stamp))\n\ntensorboard_callback = tf.keras.callbacks.TensorBoard(logdir, histogram_freq=1)\n\nmodel.compile(\n        optimizer=tf.keras.optimizers.Adam(learning_rate=0.001),\n        loss=tf.keras.losses.binary_crossentropy,\n        metrics=[\"accuracy\"]\n    )\n\nhistory = model.fit(ds_train,epochs= 10,validation_data=ds_test,\n                    callbacks = [tensorboard_callback],workers = 4)\n\n```\n\n```\nTrain for 100 steps, validate for 20 steps\nEpoch 1/10\n100/100 [==============================] - 16s 156ms/step - loss: 0.4830 - accuracy: 0.7697 - val_loss: 0.3396 - val_accuracy: 0.8475\nEpoch 2/10\n100/100 [==============================] - 14s 142ms/step - loss: 0.3437 - accuracy: 0.8469 - val_loss: 0.2997 - val_accuracy: 0.8680\nEpoch 3/10\n100/100 [==============================] - 13s 131ms/step - loss: 0.2871 - accuracy: 0.8777 - val_loss: 0.2390 - val_accuracy: 0.9015\nEpoch 4/10\n100/100 [==============================] - 12s 117ms/step - loss: 0.2410 - accuracy: 0.9040 - val_loss: 0.2005 - val_accuracy: 0.9195\nEpoch 5/10\n100/100 [==============================] - 13s 130ms/step - loss: 0.1992 - accuracy: 0.9213 - val_loss: 0.1949 - val_accuracy: 0.9180\nEpoch 6/10\n100/100 [==============================] - 14s 136ms/step - loss: 0.1737 - accuracy: 0.9323 - val_loss: 0.1723 - val_accuracy: 0.9275\nEpoch 7/10\n100/100 [==============================] - 14s 139ms/step - loss: 0.1531 - accuracy: 0.9412 - val_loss: 0.1670 - val_accuracy: 0.9310\nEpoch 8/10\n100/100 [==============================] - 13s 134ms/step - loss: 0.1299 - accuracy: 0.9525 - val_loss: 0.1553 - val_accuracy: 0.9340\nEpoch 9/10\n100/100 [==============================] - 14s 137ms/step - loss: 0.1158 - accuracy: 0.9556 - val_loss: 0.1581 - val_accuracy: 0.9340\nEpoch 10/10\n100/100 [==============================] - 14s 142ms/step - loss: 0.1006 - accuracy: 0.9617 - val_loss: 0.1614 - val_accuracy: 0.9345\n```\n\n```python\n\n```\n\n### 四，评估模型\n\n```python\n%load_ext tensorboard\n#%tensorboard --logdir ./data/keras_model\n```\n\n```python\nfrom tensorboard import notebook\nnotebook.list() \n```\n\n```python\n#在tensorboard中查看模型\nnotebook.start(\"--logdir ./data/keras_model\")\n```\n\n```python\n\n```\n\n![](./data/1-2-tensorboard.jpg)\n\n```python\nimport pandas as pd \ndfhistory = pd.DataFrame(history.history)\ndfhistory.index = range(1,len(dfhistory) + 1)\ndfhistory.index.name = 'epoch'\n\ndfhistory\n```\n\n![](./data/1-2-dfhistory.jpg)\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nimport matplotlib.pyplot as plt\n\ndef plot_metric(history, metric):\n    train_metrics = history.history[metric]\n    val_metrics = history.history['val_'+metric]\n    epochs = range(1, len(train_metrics) + 1)\n    plt.plot(epochs, train_metrics, 'bo--')\n    plt.plot(epochs, val_metrics, 'ro-')\n    plt.title('Training and validation '+ metric)\n    plt.xlabel(\"Epochs\")\n    plt.ylabel(metric)\n    plt.legend([\"train_\"+metric, 'val_'+metric])\n    plt.show()\n```\n\n```python\nplot_metric(history,\"loss\")\n```\n\n![](./data/1-2-Loss曲线.jpg)\n\n```python\nplot_metric(history,\"accuracy\")\n```\n\n![](./data/1-2-Accuracy曲线.jpg)\n\n```python\n#可以使用evaluate对数据进行评估\nval_loss,val_accuracy = model.evaluate(ds_test,workers=4)\nprint(val_loss,val_accuracy)\n\n```\n\n```\n0.16139143370091916 0.9345\n```\n\n\n### 五，使用模型\n\n\n可以使用model.predict(ds_test)进行预测。\n\n也可以使用model.predict_on_batch(x_test)对一个批量进行预测。\n\n```python\nmodel.predict(ds_test)\n```\n\n```\narray([[9.9996173e-01],\n       [9.5104784e-01],\n       [2.8648047e-04],\n       ...,\n       [1.1484033e-03],\n       [3.5589080e-02],\n       [9.8537153e-01]], dtype=float32)\n```\n\n```python\nfor x,y in ds_test.take(1):\n    print(model.predict_on_batch(x[0:20]))\n```\n\n```\ntf.Tensor(\n[[3.8065155e-05]\n [8.8236779e-01]\n [9.1433197e-01]\n [9.9921846e-01]\n [6.4052093e-01]\n [4.9970779e-03]\n [2.6735585e-04]\n [9.9842811e-01]\n [7.9198682e-01]\n [7.4823302e-01]\n [8.7208226e-03]\n [9.3951421e-03]\n [9.9790359e-01]\n [9.9998581e-01]\n [2.1642199e-05]\n [1.7915063e-02]\n [2.5839690e-02]\n [9.7538447e-01]\n [9.7393811e-01]\n [9.7333014e-01]], shape=(20, 1), dtype=float32)\n```\n\n\n\n\n```python\n\n```\n\n### 六，保存模型\n\n\n推荐使用TensorFlow原生方式保存模型。\n\n```python\n# 保存权重，该方式仅仅保存权重张量\nmodel.save_weights('./data/tf_model_weights.ckpt',save_format = \"tf\")\n```\n\n```python\n# 保存模型结构与模型参数到文件,该方式保存的模型具有跨平台性便于部署\n\nmodel.save('./data/tf_model_savedmodel', save_format=\"tf\")\nprint('export saved model.')\n\nmodel_loaded = tf.keras.models.load_model('./data/tf_model_savedmodel')\nmodel_loaded.evaluate(ds_test)\n```\n\n```\n[0.16139124035835267, 0.9345]\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "1-3,文本数据建模流程范例.md",
    "content": "# 1-3,文本数据建模流程范例\n\n\n### 一，准备数据\n\n\nimdb数据集的目标是根据电影评论的文本内容预测评论的情感标签。\n\n训练集有20000条电影评论文本，测试集有5000条电影评论文本，其中正面评论和负面评论都各占一半。\n\n文本数据预处理较为繁琐，包括中文切词（本示例不涉及），构建词典，编码转换，序列填充，构建数据管道等等。\n\n\n\n在tensorflow中完成文本数据预处理的常用方案有两种，第一种是利用tf.keras.preprocessing中的Tokenizer词典构建工具和tf.keras.utils.Sequence构建文本数据生成器管道。\n\n第二种是使用tf.data.Dataset搭配.keras.layers.experimental.preprocessing.TextVectorization预处理层。\n\n第一种方法较为复杂，其使用范例可以参考以下文章。\n\nhttps://zhuanlan.zhihu.com/p/67697840\n\n第二种方法为TensorFlow原生方式，相对也更加简单一些。\n\n我们此处介绍第二种方法。\n\n\n![](./data/电影评论.jpg)\n\n```python\nimport numpy as np \nimport pandas as pd \nfrom matplotlib import pyplot as plt\nimport tensorflow as tf\nfrom tensorflow.keras import models,layers,preprocessing,optimizers,losses,metrics\nfrom tensorflow.keras.layers.experimental.preprocessing import TextVectorization\nimport re,string\n\ntrain_data_path = \"./data/imdb/train.csv\"\ntest_data_path =  \"./data/imdb/test.csv\"\n\nMAX_WORDS = 10000  # 仅考虑最高频的10000个词\nMAX_LEN = 200  # 每个样本保留200个词的长度\nBATCH_SIZE = 20 \n\n\n#构建管道\ndef split_line(line):\n    arr = tf.strings.split(line,\"\\t\")\n    label = tf.expand_dims(tf.cast(tf.strings.to_number(arr[0]),tf.int32),axis = 0)\n    text = tf.expand_dims(arr[1],axis = 0)\n    return (text,label)\n\nds_train_raw =  tf.data.TextLineDataset(filenames = [train_data_path]) \\\n   .map(split_line,num_parallel_calls = tf.data.experimental.AUTOTUNE) \\\n   .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n   .prefetch(tf.data.experimental.AUTOTUNE)\n\nds_test_raw = tf.data.TextLineDataset(filenames = [test_data_path]) \\\n   .map(split_line,num_parallel_calls = tf.data.experimental.AUTOTUNE) \\\n   .batch(BATCH_SIZE) \\\n   .prefetch(tf.data.experimental.AUTOTUNE)\n\n\n#构建词典\ndef clean_text(text):\n    lowercase = tf.strings.lower(text)\n    stripped_html = tf.strings.regex_replace(lowercase, '<br />', ' ')\n    cleaned_punctuation = tf.strings.regex_replace(stripped_html,\n         '[%s]' % re.escape(string.punctuation),'')\n    return cleaned_punctuation\n\nvectorize_layer = TextVectorization(\n    standardize=clean_text,\n    split = 'whitespace',\n    max_tokens=MAX_WORDS-1, #有一个留给占位符\n    output_mode='int',\n    output_sequence_length=MAX_LEN)\n\nds_text = ds_train_raw.map(lambda text,label: text)\nvectorize_layer.adapt(ds_text)\nprint(vectorize_layer.get_vocabulary()[0:100])\n\n\n#单词编码\nds_train = ds_train_raw.map(lambda text,label:(vectorize_layer(text),label)) \\\n    .prefetch(tf.data.experimental.AUTOTUNE)\nds_test = ds_test_raw.map(lambda text,label:(vectorize_layer(text),label)) \\\n    .prefetch(tf.data.experimental.AUTOTUNE)\n\n```\n\n```\n[b'the', b'and', b'a', b'of', b'to', b'is', b'in', b'it', b'i', b'this', b'that', b'was', b'as', b'for', b'with', b'movie', b'but', b'film', b'on', b'not', b'you', b'his', b'are', b'have', b'be', b'he', b'one', b'its', b'at', b'all', b'by', b'an', b'they', b'from', b'who', b'so', b'like', b'her', b'just', b'or', b'about', b'has', b'if', b'out', b'some', b'there', b'what', b'good', b'more', b'when', b'very', b'she', b'even', b'my', b'no', b'would', b'up', b'time', b'only', b'which', b'story', b'really', b'their', b'were', b'had', b'see', b'can', b'me', b'than', b'we', b'much', b'well', b'get', b'been', b'will', b'into', b'people', b'also', b'other', b'do', b'bad', b'because', b'great', b'first', b'how', b'him', b'most', b'dont', b'made', b'then', b'them', b'films', b'movies', b'way', b'make', b'could', b'too', b'any', b'after', b'characters']\n```\n\n```python\n\n```\n\n### 二，定义模型\n\n\n使用Keras接口有以下3种方式构建模型：使用Sequential按层顺序构建模型，使用函数式API构建任意结构模型，继承Model基类构建自定义模型。\n\n此处选择使用继承Model基类构建自定义模型。\n\n```python\n# 演示自定义模型范例，实际上应该优先使用Sequential或者函数式API\ntf.keras.backend.clear_session()\n\nclass CnnModel(models.Model):\n    def __init__(self):\n        super(CnnModel, self).__init__()\n        \n    def build(self,input_shape):\n        self.embedding = layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN)\n        self.conv_1 = layers.Conv1D(16, kernel_size= 5,name = \"conv_1\",activation = \"relu\")\n        self.pool_1 = layers.MaxPool1D(name = \"pool_1\")\n        self.conv_2 = layers.Conv1D(128, kernel_size=2,name = \"conv_2\",activation = \"relu\")\n        self.pool_2 = layers.MaxPool1D(name = \"pool_2\")\n        self.flatten = layers.Flatten()\n        self.dense = layers.Dense(1,activation = \"sigmoid\")\n        super(CnnModel,self).build(input_shape)\n    \n    def call(self, x):\n        x = self.embedding(x)\n        x = self.conv_1(x)\n        x = self.pool_1(x)\n        x = self.conv_2(x)\n        x = self.pool_2(x)\n        x = self.flatten(x)\n        x = self.dense(x)\n        return(x)\n    \n    # 用于显示Output Shape\n    def summary(self):\n        x_input = layers.Input(shape = MAX_LEN)\n        output = self.call(x_input)\n        model = tf.keras.Model(inputs = x_input,outputs = output)\n        model.summary()\n    \nmodel = CnnModel()\nmodel.build(input_shape =(None,MAX_LEN))\nmodel.summary()\n\n```\n\n```python\n\n```\n\n```\nModel: \"model\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ninput_1 (InputLayer)         [(None, 200)]             0         \n_________________________________________________________________\nembedding (Embedding)        (None, 200, 7)            70000     \n_________________________________________________________________\nconv_1 (Conv1D)              (None, 196, 16)           576       \n_________________________________________________________________\npool_1 (MaxPooling1D)        (None, 98, 16)            0         \n_________________________________________________________________\nconv_2 (Conv1D)              (None, 97, 128)           4224      \n_________________________________________________________________\npool_2 (MaxPooling1D)        (None, 48, 128)           0         \n_________________________________________________________________\nflatten (Flatten)            (None, 6144)              0         \n_________________________________________________________________\ndense (Dense)                (None, 1)                 6145      \n=================================================================\nTotal params: 80,945\nTrainable params: 80,945\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\n\n```\n\n### 三，训练模型\n\n\n训练模型通常有3种方法，内置fit方法，内置train_on_batch方法，以及自定义训练循环。此处我们通过自定义训练循环训练模型。\n\n```python\n#打印时间分割线\n@tf.function\ndef printbar():\n    today_ts = tf.timestamp()%(24*60*60)\n    \n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8+timestring)\n\n    \n```\n\n```python\noptimizer = optimizers.Nadam()\nloss_func = losses.BinaryCrossentropy()\n\ntrain_loss = metrics.Mean(name='train_loss')\ntrain_metric = metrics.BinaryAccuracy(name='train_accuracy')\n\nvalid_loss = metrics.Mean(name='valid_loss')\nvalid_metric = metrics.BinaryAccuracy(name='valid_accuracy')\n\n\n@tf.function\ndef train_step(model, features, labels):\n    with tf.GradientTape() as tape:\n        predictions = model(features,training = True)\n        loss = loss_func(labels, predictions)\n    gradients = tape.gradient(loss, model.trainable_variables)\n    optimizer.apply_gradients(zip(gradients, model.trainable_variables))\n\n    train_loss.update_state(loss)\n    train_metric.update_state(labels, predictions)\n    \n\n@tf.function\ndef valid_step(model, features, labels):\n    predictions = model(features,training = False)\n    batch_loss = loss_func(labels, predictions)\n    valid_loss.update_state(batch_loss)\n    valid_metric.update_state(labels, predictions)\n\n\ndef train_model(model,ds_train,ds_valid,epochs):\n    for epoch in tf.range(1,epochs+1):\n        \n        for features, labels in ds_train:\n            train_step(model,features,labels)\n\n        for features, labels in ds_valid:\n            valid_step(model,features,labels)\n        \n        #此处logs模板需要根据metric具体情况修改\n        logs = 'Epoch={},Loss:{},Accuracy:{},Valid Loss:{},Valid Accuracy:{}' \n        \n        if epoch%1==0:\n            printbar()\n            tf.print(tf.strings.format(logs,\n            (epoch,train_loss.result(),train_metric.result(),valid_loss.result(),valid_metric.result())))\n            tf.print(\"\")\n        \n        train_loss.reset_states()\n        valid_loss.reset_states()\n        train_metric.reset_states()\n        valid_metric.reset_states()\n\ntrain_model(model,ds_train,ds_test,epochs = 6)\n\n```\n\n```\n================================================================================13:54:08\nEpoch=1,Loss:0.442317516,Accuracy:0.7695,Valid Loss:0.323672801,Valid Accuracy:0.8614\n\n================================================================================13:54:20\nEpoch=2,Loss:0.245737702,Accuracy:0.90215,Valid Loss:0.356488883,Valid Accuracy:0.8554\n\n================================================================================13:54:32\nEpoch=3,Loss:0.17360799,Accuracy:0.93455,Valid Loss:0.361132562,Valid Accuracy:0.8674\n\n================================================================================13:54:44\nEpoch=4,Loss:0.113476314,Accuracy:0.95975,Valid Loss:0.483677238,Valid Accuracy:0.856\n\n================================================================================13:54:57\nEpoch=5,Loss:0.0698405355,Accuracy:0.9768,Valid Loss:0.607856631,Valid Accuracy:0.857\n\n================================================================================13:55:15\nEpoch=6,Loss:0.0366807655,Accuracy:0.98825,Valid Loss:0.745884955,Valid Accuracy:0.854\n```\n\n\n### 四，评估模型\n\n\n通过自定义训练循环训练的模型没有经过编译，无法直接使用model.evaluate(ds_valid)方法\n\n```python\n\ndef evaluate_model(model,ds_valid):\n    for features, labels in ds_valid:\n         valid_step(model,features,labels)\n    logs = 'Valid Loss:{},Valid Accuracy:{}' \n    tf.print(tf.strings.format(logs,(valid_loss.result(),valid_metric.result())))\n    \n    valid_loss.reset_states()\n    train_metric.reset_states()\n    valid_metric.reset_states()\n\n    \n```\n\n```python\nevaluate_model(model,ds_test)\n```\n\n```\nValid Loss:0.745884418,Valid Accuracy:0.854\n```\n\n```python\n\n```\n\n### 五，使用模型\n\n\n可以使用以下方法:\n\n* model.predict(ds_test)\n* model(x_test)\n* model.call(x_test)\n* model.predict_on_batch(x_test)\n\n推荐优先使用model.predict(ds_test)方法，既可以对Dataset，也可以对Tensor使用。\n\n```python\nmodel.predict(ds_test)\n```\n\n```\narray([[0.7864823 ],\n       [0.9999901 ],\n       [0.99944776],\n       ...,\n       [0.8498302 ],\n       [0.13382755],\n       [1.        ]], dtype=float32)\n```\n\n```python\nfor x_test,_ in ds_test.take(1):\n    print(model(x_test))\n    #以下方法等价：\n    #print(model.call(x_test))\n    #print(model.predict_on_batch(x_test))\n```\n\n```\ntf.Tensor(\n[[7.8648227e-01]\n [9.9999011e-01]\n [9.9944776e-01]\n [3.7153201e-09]\n [9.4462049e-01]\n [2.3522753e-04]\n [1.2044354e-04]\n [9.3752089e-07]\n [9.9996352e-01]\n [9.3435925e-01]\n [9.8746723e-01]\n [9.9908626e-01]\n [4.1563155e-08]\n [4.1808244e-03]\n [8.0184749e-05]\n [8.3910513e-01]\n [3.5167937e-05]\n [7.2113985e-01]\n [4.5228912e-03]\n [9.9942589e-01]], shape=(20, 1), dtype=float32)\n```\n\n```python\n\n```\n\n### 六，保存模型\n\n\n推荐使用TensorFlow原生方式保存模型。\n\n```python\nmodel.save('./data/tf_model_savedmodel', save_format=\"tf\")\nprint('export saved model.')\n\nmodel_loaded = tf.keras.models.load_model('./data/tf_model_savedmodel')\nmodel_loaded.predict(ds_test)\n```\n\n```\narray([[0.7864823 ],\n       [0.9999901 ],\n       [0.99944776],\n       ...,\n       [0.8498302 ],\n       [0.13382755],\n       [1.        ]], dtype=float32)\n```\n\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "1-4,时间序列数据建模流程范例.md",
    "content": "# 1-4,时间序列数据建模流程范例\n\n\n国内的新冠肺炎疫情从发现至今已经持续3个多月了，这场起源于吃野味的灾难给大家的生活造成了诸多方面的影响。\n\n有的同学是收入上的，有的同学是感情上的，有的同学是心理上的，还有的同学是体重上的。\n\n那么国内的新冠肺炎疫情何时结束呢？什么时候我们才可以重获自由呢？\n\n本篇文章将利用TensorFlow2.0建立时间序列RNN模型，对国内的新冠肺炎疫情结束时间进行预测。\n\n\n![](./data/疫情前后对比.png)\n\n\n### 一，准备数据\n\n<!-- #region -->\n\n\n本文的数据集取自tushare，数据集在本项目的 data目录下。\n\n![](./data/1-4-新增人数.png)\n\n<!-- #endregion -->\n\n```python\nimport numpy as np\nimport pandas as pd \nimport matplotlib.pyplot as plt\nimport tensorflow as tf \nfrom tensorflow.keras import models,layers,losses,metrics,callbacks \n\n```\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\ndf = pd.read_csv(\"./data/covid-19.csv\",sep = \"\\t\")\ndf.plot(x = \"date\",y = [\"confirmed_num\",\"cured_num\",\"dead_num\"],figsize=(10,6))\nplt.xticks(rotation=60)\n\n```\n\n![](./data/1-4-累积曲线.png)\n\n```python\ndfdata = df.set_index(\"date\")\ndfdiff = dfdata.diff(periods=1).dropna()\ndfdiff = dfdiff.reset_index(\"date\")\n\ndfdiff.plot(x = \"date\",y = [\"confirmed_num\",\"cured_num\",\"dead_num\"],figsize=(10,6))\nplt.xticks(rotation=60)\ndfdiff = dfdiff.drop(\"date\",axis = 1).astype(\"float32\")\n\n```\n\n![](./data/1-4-新增曲线.png)\n\n```python\n#用某日前8天窗口数据作为输入预测该日数据\nWINDOW_SIZE = 8\n\ndef batch_dataset(dataset):\n    dataset_batched = dataset.batch(WINDOW_SIZE,drop_remainder=True)\n    return dataset_batched\n\nds_data = tf.data.Dataset.from_tensor_slices(tf.constant(dfdiff.values,dtype = tf.float32)) \\\n   .window(WINDOW_SIZE,shift=1).flat_map(batch_dataset)\n\nds_label = tf.data.Dataset.from_tensor_slices(\n    tf.constant(dfdiff.values[WINDOW_SIZE:],dtype = tf.float32))\n\n#数据较小，可以将全部训练数据放入到一个batch中，提升性能\nds_train = tf.data.Dataset.zip((ds_data,ds_label)).batch(38).cache()\n\n\n```\n\n### 二，定义模型\n\n\n使用Keras接口有以下3种方式构建模型：使用Sequential按层顺序构建模型，使用函数式API构建任意结构模型，继承Model基类构建自定义模型。\n\n此处选择使用函数式API构建任意结构模型。\n\n```python\n#考虑到新增确诊，新增治愈，新增死亡人数数据不可能小于0，设计如下结构\nclass Block(layers.Layer):\n    def __init__(self, **kwargs):\n        super(Block, self).__init__(**kwargs)\n    \n    def call(self, x_input,x):\n        x_out = tf.maximum((1+x)*x_input[:,-1,:],0.0)\n        return x_out\n    \n    def get_config(self):  \n        config = super(Block, self).get_config()\n        return config\n\n```\n\n```python\ntf.keras.backend.clear_session()\nx_input = layers.Input(shape = (None,3),dtype = tf.float32)\nx = layers.LSTM(3,return_sequences = True,input_shape=(None,3))(x_input)\nx = layers.LSTM(3,return_sequences = True,input_shape=(None,3))(x)\nx = layers.LSTM(3,return_sequences = True,input_shape=(None,3))(x)\nx = layers.LSTM(3,input_shape=(None,3))(x)\nx = layers.Dense(3)(x)\n\n#考虑到新增确诊，新增治愈，新增死亡人数数据不可能小于0，设计如下结构\n#x = tf.maximum((1+x)*x_input[:,-1,:],0.0)\nx = Block()(x_input,x)\nmodel = models.Model(inputs = [x_input],outputs = [x])\nmodel.summary()\n\n```\n\n```python\n\n```\n\n```\nModel: \"model\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ninput_1 (InputLayer)         [(None, None, 3)]         0         \n_________________________________________________________________\nlstm (LSTM)                  (None, None, 3)           84        \n_________________________________________________________________\nlstm_1 (LSTM)                (None, None, 3)           84        \n_________________________________________________________________\nlstm_2 (LSTM)                (None, None, 3)           84        \n_________________________________________________________________\nlstm_3 (LSTM)                (None, 3)                 84        \n_________________________________________________________________\ndense (Dense)                (None, 3)                 12        \n_________________________________________________________________\nblock (Block)                (None, 3)                 0         \n=================================================================\nTotal params: 348\nTrainable params: 348\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n\n### 三，训练模型\n\n\n训练模型通常有3种方法，内置fit方法，内置train_on_batch方法，以及自定义训练循环。此处我们选择最常用也最简单的内置fit方法。\n\n注：循环神经网络调试较为困难，需要设置多个不同的学习率多次尝试，以取得较好的效果。\n\n```python\n#自定义损失函数，考虑平方差和预测目标的比值\nclass MSPE(losses.Loss):\n    def call(self,y_true,y_pred):\n        err_percent = (y_true - y_pred)**2/(tf.maximum(y_true**2,1e-7))\n        mean_err_percent = tf.reduce_mean(err_percent)\n        return mean_err_percent\n    \n    def get_config(self):\n        config = super(MSPE, self).get_config()\n        return config\n\n```\n\n```python\nimport os\nimport datetime\n\noptimizer = tf.keras.optimizers.Adam(learning_rate=0.01)\nmodel.compile(optimizer=optimizer,loss=MSPE(name = \"MSPE\"))\n\nstamp = datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\nlogdir = os.path.join('data', 'autograph', stamp)\n\n## 在 Python3 下建议使用 pathlib 修正各操作系统的路径\n# from pathlib import Path\n# stamp = datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\n# logdir = str(Path('./data/autograph/' + stamp))\n\ntb_callback = tf.keras.callbacks.TensorBoard(logdir, histogram_freq=1)\n#如果loss在100个epoch后没有提升，学习率减半。\nlr_callback = tf.keras.callbacks.ReduceLROnPlateau(monitor=\"loss\",factor = 0.5, patience = 100)\n#当loss在200个epoch后没有提升，则提前终止训练。\nstop_callback = tf.keras.callbacks.EarlyStopping(monitor = \"loss\", patience= 200)\ncallbacks_list = [tb_callback,lr_callback,stop_callback]\n\nhistory = model.fit(ds_train,epochs=500,callbacks = callbacks_list)\n\n```\n\n```\nEpoch 371/500\n1/1 [==============================] - 0s 61ms/step - loss: 0.1184\nEpoch 372/500\n1/1 [==============================] - 0s 64ms/step - loss: 0.1177\nEpoch 373/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.1169\nEpoch 374/500\n1/1 [==============================] - 0s 50ms/step - loss: 0.1161\nEpoch 375/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.1154\nEpoch 376/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.1147\nEpoch 377/500\n1/1 [==============================] - 0s 62ms/step - loss: 0.1140\nEpoch 378/500\n1/1 [==============================] - 0s 93ms/step - loss: 0.1133\nEpoch 379/500\n1/1 [==============================] - 0s 85ms/step - loss: 0.1126\nEpoch 380/500\n1/1 [==============================] - 0s 68ms/step - loss: 0.1119\nEpoch 381/500\n1/1 [==============================] - 0s 52ms/step - loss: 0.1113\nEpoch 382/500\n1/1 [==============================] - 0s 54ms/step - loss: 0.1107\nEpoch 383/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.1100\nEpoch 384/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.1094\nEpoch 385/500\n1/1 [==============================] - 0s 54ms/step - loss: 0.1088\nEpoch 386/500\n1/1 [==============================] - 0s 74ms/step - loss: 0.1082\nEpoch 387/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.1077\nEpoch 388/500\n1/1 [==============================] - 0s 52ms/step - loss: 0.1071\nEpoch 389/500\n1/1 [==============================] - 0s 52ms/step - loss: 0.1066\nEpoch 390/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.1060\nEpoch 391/500\n1/1 [==============================] - 0s 61ms/step - loss: 0.1055\nEpoch 392/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.1050\nEpoch 393/500\n1/1 [==============================] - 0s 59ms/step - loss: 0.1045\nEpoch 394/500\n1/1 [==============================] - 0s 65ms/step - loss: 0.1040\nEpoch 395/500\n1/1 [==============================] - 0s 58ms/step - loss: 0.1035\nEpoch 396/500\n1/1 [==============================] - 0s 52ms/step - loss: 0.1031\nEpoch 397/500\n1/1 [==============================] - 0s 58ms/step - loss: 0.1026\nEpoch 398/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.1022\nEpoch 399/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.1017\nEpoch 400/500\n1/1 [==============================] - 0s 63ms/step - loss: 0.1013\nEpoch 401/500\n1/1 [==============================] - 0s 59ms/step - loss: 0.1009\nEpoch 402/500\n1/1 [==============================] - 0s 53ms/step - loss: 0.1005\nEpoch 403/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.1001\nEpoch 404/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0997\nEpoch 405/500\n1/1 [==============================] - 0s 58ms/step - loss: 0.0993\nEpoch 406/500\n1/1 [==============================] - 0s 53ms/step - loss: 0.0990\nEpoch 407/500\n1/1 [==============================] - 0s 59ms/step - loss: 0.0986\nEpoch 408/500\n1/1 [==============================] - 0s 63ms/step - loss: 0.0982\nEpoch 409/500\n1/1 [==============================] - 0s 67ms/step - loss: 0.0979\nEpoch 410/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0976\nEpoch 411/500\n1/1 [==============================] - 0s 54ms/step - loss: 0.0972\nEpoch 412/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0969\nEpoch 413/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0966\nEpoch 414/500\n1/1 [==============================] - 0s 59ms/step - loss: 0.0963\nEpoch 415/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0960\nEpoch 416/500\n1/1 [==============================] - 0s 62ms/step - loss: 0.0957\nEpoch 417/500\n1/1 [==============================] - 0s 69ms/step - loss: 0.0954\nEpoch 418/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0951\nEpoch 419/500\n1/1 [==============================] - 0s 50ms/step - loss: 0.0948\nEpoch 420/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0946\nEpoch 421/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0943\nEpoch 422/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0941\nEpoch 423/500\n1/1 [==============================] - 0s 62ms/step - loss: 0.0938\nEpoch 424/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0936\nEpoch 425/500\n1/1 [==============================] - 0s 100ms/step - loss: 0.0933\nEpoch 426/500\n1/1 [==============================] - 0s 68ms/step - loss: 0.0931\nEpoch 427/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0929\nEpoch 428/500\n1/1 [==============================] - 0s 50ms/step - loss: 0.0926\nEpoch 429/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0924\nEpoch 430/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0922\nEpoch 431/500\n1/1 [==============================] - 0s 75ms/step - loss: 0.0920\nEpoch 432/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0918\nEpoch 433/500\n1/1 [==============================] - 0s 77ms/step - loss: 0.0916\nEpoch 434/500\n1/1 [==============================] - 0s 50ms/step - loss: 0.0914\nEpoch 435/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0912\nEpoch 436/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0911\nEpoch 437/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0909\nEpoch 438/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0907\nEpoch 439/500\n1/1 [==============================] - 0s 59ms/step - loss: 0.0905\nEpoch 440/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0904\nEpoch 441/500\n1/1 [==============================] - 0s 68ms/step - loss: 0.0902\nEpoch 442/500\n1/1 [==============================] - 0s 73ms/step - loss: 0.0901\nEpoch 443/500\n1/1 [==============================] - 0s 50ms/step - loss: 0.0899\nEpoch 444/500\n1/1 [==============================] - 0s 58ms/step - loss: 0.0898\nEpoch 445/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0896\nEpoch 446/500\n1/1 [==============================] - 0s 52ms/step - loss: 0.0895\nEpoch 447/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0893\nEpoch 448/500\n1/1 [==============================] - 0s 64ms/step - loss: 0.0892\nEpoch 449/500\n1/1 [==============================] - 0s 70ms/step - loss: 0.0891\nEpoch 450/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0889\nEpoch 451/500\n1/1 [==============================] - 0s 53ms/step - loss: 0.0888\nEpoch 452/500\n1/1 [==============================] - 0s 51ms/step - loss: 0.0887\nEpoch 453/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0886\nEpoch 454/500\n1/1 [==============================] - 0s 58ms/step - loss: 0.0885\nEpoch 455/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0883\nEpoch 456/500\n1/1 [==============================] - 0s 71ms/step - loss: 0.0882\nEpoch 457/500\n1/1 [==============================] - 0s 50ms/step - loss: 0.0881\nEpoch 458/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0880\nEpoch 459/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0879\nEpoch 460/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0878\nEpoch 461/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0878\nEpoch 462/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0879\nEpoch 463/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0879\nEpoch 464/500\n1/1 [==============================] - 0s 68ms/step - loss: 0.0888\nEpoch 465/500\n1/1 [==============================] - 0s 62ms/step - loss: 0.0875\nEpoch 466/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0873\nEpoch 467/500\n1/1 [==============================] - 0s 49ms/step - loss: 0.0872\nEpoch 468/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0872\nEpoch 469/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0871\nEpoch 470/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0871\nEpoch 471/500\n1/1 [==============================] - 0s 59ms/step - loss: 0.0870\nEpoch 472/500\n1/1 [==============================] - 0s 68ms/step - loss: 0.0871\nEpoch 473/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0869\nEpoch 474/500\n1/1 [==============================] - 0s 61ms/step - loss: 0.0870\nEpoch 475/500\n1/1 [==============================] - 0s 47ms/step - loss: 0.0868\nEpoch 476/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0868\nEpoch 477/500\n1/1 [==============================] - 0s 62ms/step - loss: 0.0866\nEpoch 478/500\n1/1 [==============================] - 0s 58ms/step - loss: 0.0867\nEpoch 479/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0865\nEpoch 480/500\n1/1 [==============================] - 0s 65ms/step - loss: 0.0866\nEpoch 481/500\n1/1 [==============================] - 0s 58ms/step - loss: 0.0864\nEpoch 482/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0865\nEpoch 483/500\n1/1 [==============================] - 0s 53ms/step - loss: 0.0863\nEpoch 484/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0864\nEpoch 485/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0862\nEpoch 486/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0863\nEpoch 487/500\n1/1 [==============================] - 0s 52ms/step - loss: 0.0861\nEpoch 488/500\n1/1 [==============================] - 0s 68ms/step - loss: 0.0862\nEpoch 489/500\n1/1 [==============================] - 0s 62ms/step - loss: 0.0860\nEpoch 490/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0861\nEpoch 491/500\n1/1 [==============================] - 0s 51ms/step - loss: 0.0859\nEpoch 492/500\n1/1 [==============================] - 0s 54ms/step - loss: 0.0860\nEpoch 493/500\n1/1 [==============================] - 0s 51ms/step - loss: 0.0859\nEpoch 494/500\n1/1 [==============================] - 0s 54ms/step - loss: 0.0860\nEpoch 495/500\n1/1 [==============================] - 0s 50ms/step - loss: 0.0858\nEpoch 496/500\n1/1 [==============================] - 0s 69ms/step - loss: 0.0859\nEpoch 497/500\n1/1 [==============================] - 0s 63ms/step - loss: 0.0857\nEpoch 498/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0858\nEpoch 499/500\n1/1 [==============================] - 0s 54ms/step - loss: 0.0857\nEpoch 500/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0858\n```\n\n```python\n\n```\n\n### 四，评估模型\n\n\n评估模型一般要设置验证集或者测试集，由于此例数据较少，我们仅仅可视化损失函数在训练集上的迭代情况。\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nimport matplotlib.pyplot as plt\n\ndef plot_metric(history, metric):\n    train_metrics = history.history[metric]\n    epochs = range(1, len(train_metrics) + 1)\n    plt.plot(epochs, train_metrics, 'bo--')\n    plt.title('Training '+ metric)\n    plt.xlabel(\"Epochs\")\n    plt.ylabel(metric)\n    plt.legend([\"train_\"+metric])\n    plt.show()\n\n```\n\n```python\nplot_metric(history,\"loss\")\n```\n\n![](./data/1-4-损失函数曲线.png)\n\n\n### 五，使用模型\n\n\n此处我们使用模型预测疫情结束时间，即 新增确诊病例为0 的时间。\n\n```python\n#使用dfresult记录现有数据以及此后预测的疫情数据\ndfresult = dfdiff[[\"confirmed_num\",\"cured_num\",\"dead_num\"]].copy()\ndfresult.tail()\n```\n\n![](./data/1-4-日期3月10.png)\n\n```python\n#预测此后100天的新增走势,将其结果添加到dfresult中\nfor i in range(100):\n    arr_predict = model.predict(tf.constant(tf.expand_dims(dfresult.values[-38:,:],axis = 0)))\n\n    dfpredict = pd.DataFrame(tf.cast(tf.floor(arr_predict),tf.float32).numpy(),\n                columns = dfresult.columns)\n    dfresult = dfresult.append(dfpredict,ignore_index=True)\n```\n\n```python\ndfresult.query(\"confirmed_num==0\").head()\n\n# 第55天开始新增确诊降为0，第45天对应3月10日，也就是10天后，即预计3月20日新增确诊降为0\n# 注：该预测偏乐观\n```\n\n![](./data/1-4-预测确诊.png)\n\n```python\n\n```\n\n```python\ndfresult.query(\"cured_num==0\").head()\n\n# 第164天开始新增治愈降为0，第45天对应3月10日，也就是大概4个月后，即7月10日左右全部治愈。\n# 注: 该预测偏悲观，并且存在问题，如果将每天新增治愈人数加起来，将超过累计确诊人数。\n```\n\n![](./data/1-4-预测治愈.png)\n\n```python\n\n```\n\n```python\ndfresult.query(\"dead_num==0\").head()\n\n# 第60天开始，新增死亡降为0，第45天对应3月10日，也就是大概15天后，即20200325\n# 该预测较为合理\n```\n\n![](./data/1-4-预测死亡.png)\n\n```python\n\n```\n\n### 六，保存模型\n\n\n推荐使用TensorFlow原生方式保存模型。\n\n```python\nmodel.save('./data/tf_model_savedmodel', save_format=\"tf\")\nprint('export saved model.')\n```\n\n```python\nmodel_loaded = tf.keras.models.load_model('./data/tf_model_savedmodel',compile=False)\noptimizer = tf.keras.optimizers.Adam(learning_rate=0.001)\nmodel_loaded.compile(optimizer=optimizer,loss=MSPE(name = \"MSPE\"))\nmodel_loaded.predict(ds_train)\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "2-1,张量数据结构.md",
    "content": "# 2-1,张量数据结构\n\n程序 = 数据结构+算法。\n\nTensorFlow程序 = 张量数据结构 + 计算图算法语言\n\n张量和计算图是 TensorFlow的核心概念。\n\nTensorflow的基本数据结构是张量Tensor。张量即多维数组。Tensorflow的张量和numpy中的array很类似。\n\n从行为特性来看，有两种类型的张量，常量constant和变量Variable.\n\n常量的值在计算图中不可以被重新赋值，变量可以在计算图中用assign等算子重新赋值。\n\n\n### 一，常量张量\n\n\n张量的数据类型和numpy.array基本一一对应。\n\n```python\nimport numpy as np\nimport tensorflow as tf\n\ni = tf.constant(1) # tf.int32 类型常量\nl = tf.constant(1,dtype = tf.int64) # tf.int64 类型常量\nf = tf.constant(1.23) #tf.float32 类型常量\nd = tf.constant(3.14,dtype = tf.double) # tf.double 类型常量\ns = tf.constant(\"hello world\") # tf.string类型常量\nb = tf.constant(True) #tf.bool类型常量\n\n\nprint(tf.int64 == np.int64) \nprint(tf.bool == np.bool)\nprint(tf.double == np.float64)\nprint(tf.string == np.unicode) # tf.string类型和np.unicode类型不等价\n\n```\n\n```\nTrue\nTrue\nTrue\nFalse\n```\n\n\n不同类型的数据可以用不同维度(rank)的张量来表示。\n\n标量为0维张量，向量为1维张量，矩阵为2维张量。\n\n彩色图像有rgb三个通道，可以表示为3维张量。\n\n视频还有时间维，可以表示为4维张量。\n\n可以简单地总结为：有几层中括号，就是多少维的张量。\n\n```python\nscalar = tf.constant(True)  #标量，0维张量\n\nprint(tf.rank(scalar))\nprint(scalar.numpy().ndim)  # tf.rank的作用和numpy的ndim方法相同\n```\n\n```\ntf.Tensor(0, shape=(), dtype=int32)\n0\n```\n\n```python\nvector = tf.constant([1.0,2.0,3.0,4.0]) #向量，1维张量\n\nprint(tf.rank(vector))\nprint(np.ndim(vector.numpy()))\n```\n\n```\ntf.Tensor(1, shape=(), dtype=int32)\n1\n```\n\n```python\nmatrix = tf.constant([[1.0,2.0],[3.0,4.0]]) #矩阵, 2维张量\n\nprint(tf.rank(matrix).numpy())\nprint(np.ndim(matrix))\n```\n\n```\n2\n2\n```\n\n```python\ntensor3 = tf.constant([[[1.0,2.0],[3.0,4.0]],[[5.0,6.0],[7.0,8.0]]])  # 3维张量\nprint(tensor3)\nprint(tf.rank(tensor3))\n```\n\n```\ntf.Tensor(\n[[[1. 2.]\n  [3. 4.]]\n\n [[5. 6.]\n  [7. 8.]]], shape=(2, 2, 2), dtype=float32)\ntf.Tensor(3, shape=(), dtype=int32)\n```\n\n```python\ntensor4 = tf.constant([[[[1.0,1.0],[2.0,2.0]],[[3.0,3.0],[4.0,4.0]]],\n                        [[[5.0,5.0],[6.0,6.0]],[[7.0,7.0],[8.0,8.0]]]])  # 4维张量\nprint(tensor4)\nprint(tf.rank(tensor4))\n```\n\n```\ntf.Tensor(\n[[[[1. 1.]\n   [2. 2.]]\n\n  [[3. 3.]\n   [4. 4.]]]\n\n\n [[[5. 5.]\n   [6. 6.]]\n\n  [[7. 7.]\n   [8. 8.]]]], shape=(2, 2, 2, 2), dtype=float32)\ntf.Tensor(4, shape=(), dtype=int32)\n```\n\n\n可以用tf.cast改变张量的数据类型。\n\n可以用numpy方法将tensorflow中的张量转化成numpy中的张量。\n\n可以用shape方法查看张量的尺寸。\n\n```python\nh = tf.constant([123,456],dtype = tf.int32)\nf = tf.cast(h,tf.float32)\nprint(h.dtype, f.dtype)\n```\n\n```\n<dtype: 'int32'> <dtype: 'float32'>\n```\n\n```python\ny = tf.constant([[1.0,2.0],[3.0,4.0]])\nprint(y.numpy()) #转换成np.array\nprint(y.shape)\n```\n\n```\n[[1. 2.]\n [3. 4.]]\n(2, 2)\n```\n\n```python\nu = tf.constant(u\"你好 世界\")\nprint(u.numpy())  \nprint(u.numpy().decode(\"utf-8\"))\n```\n\n```\nb'\\xe4\\xbd\\xa0\\xe5\\xa5\\xbd \\xe4\\xb8\\x96\\xe7\\x95\\x8c'\n你好 世界\n```\n\n```python\n\n```\n### 二，变量张量\n\n\n模型中需要被训练的参数一般被设置成变量。\n\n```python\n# 常量值不可以改变，常量的重新赋值相当于创造新的内存空间\nc = tf.constant([1.0,2.0])\nprint(c)\nprint(id(c))\nc = c + tf.constant([1.0,1.0])\nprint(c)\nprint(id(c))\n```\n\n```\ntf.Tensor([1. 2.], shape=(2,), dtype=float32)\n5276289568\ntf.Tensor([2. 3.], shape=(2,), dtype=float32)\n5276290240\n```\n\n```python\n# 变量的值可以改变，可以通过assign, assign_add等方法给变量重新赋值\nv = tf.Variable([1.0,2.0],name = \"v\")\nprint(v)\nprint(id(v))\nv.assign_add([1.0,1.0])\nprint(v)\nprint(id(v))\n```\n```\n<tf.Variable 'v:0' shape=(2,) dtype=float32, numpy=array([1., 2.], dtype=float32)>\n5276259888\n<tf.Variable 'v:0' shape=(2,) dtype=float32, numpy=array([2., 3.], dtype=float32)>\n5276259888\n\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n\n\n"
  },
  {
    "path": "2-2,三种计算图.md",
    "content": "# 2-2,三种计算图\n\n\n有三种计算图的构建方式：静态计算图，动态计算图，以及Autograph.\n\n在TensorFlow1.0时代，采用的是静态计算图，需要先使用TensorFlow的各种算子创建计算图，然后再开启一个会话Session，显式执行计算图。\n\n而在TensorFlow2.0时代，采用的是动态计算图，即每使用一个算子后，该算子会被动态加入到隐含的默认计算图中立即执行得到结果，而无需开启Session。\n\n使用动态计算图即Eager Excution的好处是方便调试程序，它会让TensorFlow代码的表现和Python原生代码的表现一样，写起来就像写numpy一样，各种日志打印，控制流全部都是可以使用的。\n\n使用动态计算图的缺点是运行效率相对会低一些。因为使用动态图会有许多次Python进程和TensorFlow的C++进程之间的通信。而静态计算图构建完成之后几乎全部在TensorFlow内核上使用C++代码执行，效率更高。此外静态图会对计算步骤进行一定的优化，剪去和结果无关的计算步骤。\n\n如果需要在TensorFlow2.0中使用静态图，可以使用@tf.function装饰器将普通Python函数转换成对应的TensorFlow计算图构建代码。运行该函数就相当于在TensorFlow1.0中用Session执行代码。使用tf.function构建静态图的方式叫做 Autograph.\n\n\n### 一，计算图简介\n\n\n计算图由节点(nodes)和线(edges)组成。\n\n节点表示操作符Operator，或者称之为算子，线表示计算间的依赖。\n\n实线表示有数据传递依赖，传递的数据即张量。\n\n虚线通常可以表示控制依赖，即执行先后顺序。\n\n![](./data/strjoin_graph.png)\n\n\n### 二，静态计算图\n\n\n在TensorFlow1.0中，使用静态计算图分两步，第一步定义计算图，第二步在会话中执行计算图。\n\n<!-- #region -->\n**TensorFlow 1.0静态计算图范例**\n\n```python\nimport tensorflow as tf\n\n#定义计算图\ng = tf.Graph()\nwith g.as_default():\n    #placeholder为占位符，执行会话时候指定填充对象\n    x = tf.placeholder(name='x', shape=[], dtype=tf.string)  \n    y = tf.placeholder(name='y', shape=[], dtype=tf.string)\n    z = tf.string_join([x,y],name = 'join',separator=' ')\n\n#执行计算图\nwith tf.Session(graph = g) as sess:\n    print(sess.run(fetches = z,feed_dict = {x:\"hello\",y:\"world\"}))\n   \n```\n<!-- #endregion -->\n\n**TensorFlow2.0 怀旧版静态计算图**\n\nTensorFlow2.0为了确保对老版本tensorflow项目的兼容性，在tf.compat.v1子模块中保留了对TensorFlow1.0那种静态计算图构建风格的支持。\n\n可称之为怀旧版静态计算图，已经不推荐使用了。\n\n```python\nimport tensorflow as tf\n\ng = tf.compat.v1.Graph()\nwith g.as_default():\n    x = tf.compat.v1.placeholder(name='x', shape=[], dtype=tf.string)\n    y = tf.compat.v1.placeholder(name='y', shape=[], dtype=tf.string)\n    z = tf.strings.join([x,y],name = \"join\",separator = \" \")\n\nwith tf.compat.v1.Session(graph = g) as sess:\n    # fetches的结果非常像一个函数的返回值，而feed_dict中的占位符相当于函数的参数序列。\n    result = sess.run(fetches = z,feed_dict = {x:\"hello\",y:\"world\"})\n    print(result)\n\n```\n\n```\nb'hello world'\n```\n\n\n### 三，动态计算图\n\n\n在TensorFlow2.0中，使用的是动态计算图和Autograph.\n\n在TensorFlow1.0中，使用静态计算图分两步，第一步定义计算图，第二步在会话中执行计算图。\n\n动态计算图已经不区分计算图的定义和执行了，而是定义后立即执行。因此称之为 Eager Excution.\n\nEager这个英文单词的原意是\"迫不及待的\"，也就是立即执行的意思。\n\n\n```python\n# 动态计算图在每个算子处都进行构建，构建后立即执行\n\nx = tf.constant(\"hello\")\ny = tf.constant(\"world\")\nz = tf.strings.join([x,y],separator=\" \")\n\ntf.print(z)\n```\n\n```\nhello world\n```\n\n```python\n# 可以将动态计算图代码的输入和输出关系封装成函数\n\ndef strjoin(x,y):\n    z =  tf.strings.join([x,y],separator = \" \")\n    tf.print(z)\n    return z\n\nresult = strjoin(tf.constant(\"hello\"),tf.constant(\"world\"))\nprint(result)\n```\n\n```\nhello world\ntf.Tensor(b'hello world', shape=(), dtype=string)\n```\n\n\n### 四，TensorFlow2.0的Autograph\n\n\n动态计算图运行效率相对较低。\n\n可以用@tf.function装饰器将普通Python函数转换成和TensorFlow1.0对应的静态计算图构建代码。\n\n在TensorFlow1.0中，使用计算图分两步，第一步定义计算图，第二步在会话中执行计算图。\n\n在TensorFlow2.0中，如果采用Autograph的方式使用计算图，第一步定义计算图变成了定义函数，第二步执行计算图变成了调用函数。\n\n不需要使用会话了，一些都像原始的Python语法一样自然。\n\n实践中，我们一般会先用动态计算图调试代码，然后在需要提高性能的的地方利用@tf.function切换成Autograph获得更高的效率。\n\n当然，@tf.function的使用需要遵循一定的规范，我们后面章节将重点介绍。\n\n\n```python\nimport tensorflow as tf\n\n# 使用autograph构建静态图\n\n@tf.function\ndef strjoin(x,y):\n    z =  tf.strings.join([x,y],separator = \" \")\n    tf.print(z)\n    return z\n\nresult = strjoin(tf.constant(\"hello\"),tf.constant(\"world\"))\n\nprint(result)\n```\n\n```\nhello world\ntf.Tensor(b'hello world', shape=(), dtype=string)\n```\n\n```python\nimport datetime\n\n# 创建日志\nimport os\nstamp = datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\nlogdir = os.path.join('data', 'autograph', stamp)\n\n## 在 Python3 下建议使用 pathlib 修正各操作系统的路径\n# from pathlib import Path\n# stamp = datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\n# logdir = str(Path('./data/autograph/' + stamp))\n\nwriter = tf.summary.create_file_writer(logdir)\n\n#开启autograph跟踪\ntf.summary.trace_on(graph=True, profiler=True) \n\n#执行autograph\nresult = strjoin(\"hello\",\"world\")\n\n#将计算图信息写入日志\nwith writer.as_default():\n    tf.summary.trace_export(\n        name=\"autograph\",\n        step=0,\n        profiler_outdir=logdir)\n```\n\n```python\n#启动 tensorboard在jupyter中的魔法命令\n%load_ext tensorboard\n```\n\n```python\n#启动tensorboard\n%tensorboard --logdir ./data/autograph/\n```\n\n![](./data/2-2-tensorboard计算图.jpg)\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "2-3,自动微分机制.md",
    "content": "# 2-3,自动微分机制\n\n\n神经网络通常依赖反向传播求梯度来更新网络参数，求梯度过程通常是一件非常复杂而容易出错的事情。\n\n而深度学习框架可以帮助我们自动地完成这种求梯度运算。\n\nTensorflow一般使用梯度磁带tf.GradientTape来记录正向运算过程，然后反播磁带自动得到梯度值。\n\n这种利用tf.GradientTape求微分的方法叫做Tensorflow的自动微分机制。\n\n\n### 一，利用梯度磁带求导数\n\n```python\nimport tensorflow as tf\nimport numpy as np \n\n# f(x) = a*x**2 + b*x + c的导数\n\nx = tf.Variable(0.0,name = \"x\",dtype = tf.float32)\na = tf.constant(1.0)\nb = tf.constant(-2.0)\nc = tf.constant(1.0)\n\nwith tf.GradientTape() as tape:\n    y = a*tf.pow(x,2) + b*x + c\n    \ndy_dx = tape.gradient(y,x)\nprint(dy_dx)\n```\n\n```\ntf.Tensor(-2.0, shape=(), dtype=float32)\n```\n\n```python\n\n```\n\n```python\n# 对常量张量也可以求导，需要增加watch\n\nwith tf.GradientTape() as tape:\n    tape.watch([a,b,c])\n    y = a*tf.pow(x,2) + b*x + c\n    \ndy_dx,dy_da,dy_db,dy_dc = tape.gradient(y,[x,a,b,c])\nprint(dy_da)\nprint(dy_dc)\n\n```\n\n```\ntf.Tensor(0.0, shape=(), dtype=float32)\ntf.Tensor(1.0, shape=(), dtype=float32)\n```\n\n```python\n\n```\n\n```python\n# 可以求二阶导数\nwith tf.GradientTape() as tape2:\n    with tf.GradientTape() as tape1:   \n        y = a*tf.pow(x,2) + b*x + c\n    dy_dx = tape1.gradient(y,x)   \ndy2_dx2 = tape2.gradient(dy_dx,x)\n\nprint(dy2_dx2)\n```\n\n```\ntf.Tensor(2.0, shape=(), dtype=float32)\n```\n\n```python\n\n```\n\n```python\n# 可以在autograph中使用\n\n@tf.function\ndef f(x):   \n    a = tf.constant(1.0)\n    b = tf.constant(-2.0)\n    c = tf.constant(1.0)\n    \n    # 自变量转换成tf.float32\n    x = tf.cast(x,tf.float32)\n    with tf.GradientTape() as tape:\n        tape.watch(x)\n        y = a*tf.pow(x,2)+b*x+c\n    dy_dx = tape.gradient(y,x) \n    \n    return((dy_dx,y))\n\ntf.print(f(tf.constant(0.0)))\ntf.print(f(tf.constant(1.0)))\n```\n\n```\n(-2, 1)\n(0, 0)\n```\n\n```python\n\n```\n\n### 二，利用梯度磁带和优化器求最小值\n\n```python\n# 求f(x) = a*x**2 + b*x + c的最小值\n# 使用optimizer.apply_gradients\n\nx = tf.Variable(0.0,name = \"x\",dtype = tf.float32)\na = tf.constant(1.0)\nb = tf.constant(-2.0)\nc = tf.constant(1.0)\n\noptimizer = tf.keras.optimizers.SGD(learning_rate=0.01)\nfor _ in range(1000):\n    with tf.GradientTape() as tape:\n        y = a*tf.pow(x,2) + b*x + c\n    dy_dx = tape.gradient(y,x)\n    optimizer.apply_gradients(grads_and_vars=[(dy_dx,x)])\n    \ntf.print(\"y =\",y,\"; x =\",x)\n```\n\n```\ny = 0 ; x = 0.999998569\n```\n\n```python\n\n```\n\n```python\n# 求f(x) = a*x**2 + b*x + c的最小值\n# 使用optimizer.minimize\n# optimizer.minimize相当于先用tape求gradient,再apply_gradient\n\nx = tf.Variable(0.0,name = \"x\",dtype = tf.float32)\n\n#注意f()无参数\ndef f():   \n    a = tf.constant(1.0)\n    b = tf.constant(-2.0)\n    c = tf.constant(1.0)\n    y = a*tf.pow(x,2)+b*x+c\n    return(y)\n\noptimizer = tf.keras.optimizers.SGD(learning_rate=0.01)   \nfor _ in range(1000):\n    optimizer.minimize(f,[x])   \n    \ntf.print(\"y =\",f(),\"; x =\",x)\n```\n\n```\ny = 0 ; x = 0.999998569\n```\n\n```python\n\n```\n\n```python\n# 在autograph中完成最小值求解\n# 使用optimizer.apply_gradients\n\nx = tf.Variable(0.0,name = \"x\",dtype = tf.float32)\noptimizer = tf.keras.optimizers.SGD(learning_rate=0.01)\n\n@tf.function\ndef minimizef():\n    a = tf.constant(1.0)\n    b = tf.constant(-2.0)\n    c = tf.constant(1.0)\n    \n    for _ in tf.range(1000): #注意autograph时使用tf.range(1000)而不是range(1000)\n        with tf.GradientTape() as tape:\n            y = a*tf.pow(x,2) + b*x + c\n        dy_dx = tape.gradient(y,x)\n        optimizer.apply_gradients(grads_and_vars=[(dy_dx,x)])\n        \n    y = a*tf.pow(x,2) + b*x + c\n    return y\n\ntf.print(minimizef())\ntf.print(x)\n```\n\n```\n0\n0.999998569\n```\n\n```python\n\n```\n\n```python\n# 在autograph中完成最小值求解\n# 使用optimizer.minimize\n\nx = tf.Variable(0.0,name = \"x\",dtype = tf.float32)\noptimizer = tf.keras.optimizers.SGD(learning_rate=0.01)   \n\n@tf.function\ndef f():   \n    a = tf.constant(1.0)\n    b = tf.constant(-2.0)\n    c = tf.constant(1.0)\n    y = a*tf.pow(x,2)+b*x+c\n    return(y)\n\n@tf.function\ndef train(epoch):  \n    for _ in tf.range(epoch):  \n        optimizer.minimize(f,[x])\n    return(f())\n\n\ntf.print(train(1000))\ntf.print(x)\n\n```\n\n```\n0\n0.999998569\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "3-1,低阶API示范.md",
    "content": "# 3-1,低阶API示范\n\n下面的范例使用TensorFlow的低阶API实现线性回归模型和DNN二分类模型。\n\n低阶API主要包括张量操作，计算图和自动微分。\n\n```python\nimport tensorflow as tf\n\n#打印时间分割线\n@tf.function\ndef printbar():\n    today_ts = tf.timestamp()%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8+timestring)\n\n```\n\n```python\n\n```\n\n### 一，线性回归模型\n\n\n**1，准备数据**\n\n```python\nimport numpy as np \nimport pandas as pd\nfrom matplotlib import pyplot as plt \nimport tensorflow as tf\n\n\n#样本数量\nn = 400\n\n# 生成测试用数据集\nX = tf.random.uniform([n,2],minval=-10,maxval=10) \nw0 = tf.constant([[2.0],[-3.0]])\nb0 = tf.constant([[3.0]])\nY = X@w0 + b0 + tf.random.normal([n,1],mean = 0.0,stddev= 2.0)  # @表示矩阵乘法,增加正态扰动\n\n```\n\n```python\n# 数据可视化\n\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nplt.figure(figsize = (12,5))\nax1 = plt.subplot(121)\nax1.scatter(X[:,0],Y[:,0], c = \"b\")\nplt.xlabel(\"x1\")\nplt.ylabel(\"y\",rotation = 0)\n\nax2 = plt.subplot(122)\nax2.scatter(X[:,1],Y[:,0], c = \"g\")\nplt.xlabel(\"x2\")\nplt.ylabel(\"y\",rotation = 0)\nplt.show()\n\n```\n\n![](./data/3-1-01-回归数据可视化.png)\n\n```python\n# 构建数据管道迭代器\ndef data_iter(features, labels, batch_size=8):\n    num_examples = len(features)\n    indices = list(range(num_examples))\n    np.random.shuffle(indices)  #样本的读取顺序是随机的\n    for i in range(0, num_examples, batch_size):\n        indexs = indices[i: min(i + batch_size, num_examples)]\n        yield tf.gather(features,indexs), tf.gather(labels,indexs)\n        \n# 测试数据管道效果   \nbatch_size = 8\n(features,labels) = next(data_iter(X,Y,batch_size))\nprint(features)\nprint(labels)\n\n```\n\n```\ntf.Tensor(\n[[ 2.6161194   0.11071014]\n [ 9.79207    -0.70180416]\n [ 9.792343    6.9149055 ]\n [-2.4186516  -9.375019  ]\n [ 9.83749    -3.4637213 ]\n [ 7.3953056   4.374569  ]\n [-0.14686584 -0.28063297]\n [ 0.49001217 -9.739792  ]], shape=(8, 2), dtype=float32)\ntf.Tensor(\n[[ 9.334667 ]\n [22.058844 ]\n [ 3.0695205]\n [26.736238 ]\n [35.292133 ]\n [ 4.2943544]\n [ 1.6713585]\n [34.826904 ]], shape=(8, 1), dtype=float32)\n```\n\n\n**2，定义模型**\n\n```python\nw = tf.Variable(tf.random.normal(w0.shape))\nb = tf.Variable(tf.zeros_like(b0,dtype = tf.float32))\n\n# 定义模型\nclass LinearRegression:     \n    #正向传播\n    def __call__(self,x): \n        return x@w + b\n\n    # 损失函数\n    def loss_func(self,y_true,y_pred):  \n        return tf.reduce_mean((y_true - y_pred)**2/2)\n\nmodel = LinearRegression()\n```\n\n```python\n\n```\n\n**3，训练模型**\n\n```python\n# 使用动态图调试\ndef train_step(model, features, labels):\n    with tf.GradientTape() as tape:\n        predictions = model(features)\n        loss = model.loss_func(labels, predictions)\n    # 反向传播求梯度\n    dloss_dw,dloss_db = tape.gradient(loss,[w,b])\n    # 梯度下降法更新参数\n    w.assign(w - 0.001*dloss_dw)\n    b.assign(b - 0.001*dloss_db)\n    \n    return loss\n \n```\n\n```python\n# 测试train_step效果\nbatch_size = 10\n(features,labels) = next(data_iter(X,Y,batch_size))\ntrain_step(model,features,labels)\n\n```\n\n```\n<tf.Tensor: shape=(), dtype=float32, numpy=211.09982>\n```\n\n```python\ndef train_model(model,epochs):\n    for epoch in tf.range(1,epochs+1):\n        for features, labels in data_iter(X,Y,10):\n            loss = train_step(model,features,labels)\n\n        if epoch%50==0:\n            printbar()\n            tf.print(\"epoch =\",epoch,\"loss = \",loss)\n            tf.print(\"w =\",w)\n            tf.print(\"b =\",b)\n\ntrain_model(model,epochs = 200)\n\n```\n\n```\n================================================================================16:35:56\nepoch = 50 loss =  1.78806472\nw = [[1.97554708]\n [-2.97719598]]\nb = [[2.60692883]]\n================================================================================16:36:00\nepoch = 100 loss =  2.64588404\nw = [[1.97319281]\n [-2.97810626]]\nb = [[2.95525956]]\n================================================================================16:36:04\nepoch = 150 loss =  1.42576694\nw = [[1.96466208]\n [-2.98337793]]\nb = [[3.00264144]]\n================================================================================16:36:08\nepoch = 200 loss =  1.68992615\nw = [[1.97718477]\n [-2.983814]]\nb = [[3.01013041]]\n```\n\n```python\n\n```\n\n```python\n##使用autograph机制转换成静态图加速\n\n@tf.function\ndef train_step(model, features, labels):\n    with tf.GradientTape() as tape:\n        predictions = model(features)\n        loss = model.loss_func(labels, predictions)\n    # 反向传播求梯度\n    dloss_dw,dloss_db = tape.gradient(loss,[w,b])\n    # 梯度下降法更新参数\n    w.assign(w - 0.001*dloss_dw)\n    b.assign(b - 0.001*dloss_db)\n    \n    return loss\n\ndef train_model(model,epochs):\n    for epoch in tf.range(1,epochs+1):\n        for features, labels in data_iter(X,Y,10):\n            loss = train_step(model,features,labels)\n        if epoch%50==0:\n            printbar()\n            tf.print(\"epoch =\",epoch,\"loss = \",loss)\n            tf.print(\"w =\",w)\n            tf.print(\"b =\",b)\n\ntrain_model(model,epochs = 200)\n\n```\n\n```\n================================================================================16:36:35\nepoch = 50 loss =  0.894210339\nw = [[1.96927285]\n [-2.98914337]]\nb = [[3.00987792]]\n================================================================================16:36:36\nepoch = 100 loss =  1.58621466\nw = [[1.97566223]\n [-2.98550248]]\nb = [[3.00998402]]\n================================================================================16:36:37\nepoch = 150 loss =  2.2695992\nw = [[1.96664226]\n [-2.99248481]]\nb = [[3.01028705]]\n================================================================================16:36:38\nepoch = 200 loss =  1.90848124\nw = [[1.98000824]\n [-2.98888135]]\nb = [[3.01085401]]\n```\n\n```python\n\n```\n\n```python\n# 结果可视化\n\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nplt.figure(figsize = (12,5))\nax1 = plt.subplot(121)\nax1.scatter(X[:,0],Y[:,0], c = \"b\",label = \"samples\")\nax1.plot(X[:,0],w[0]*X[:,0]+b[0],\"-r\",linewidth = 5.0,label = \"model\")\nax1.legend()\nplt.xlabel(\"x1\")\nplt.ylabel(\"y\",rotation = 0)\n\n\nax2 = plt.subplot(122)\nax2.scatter(X[:,1],Y[:,0], c = \"g\",label = \"samples\")\nax2.plot(X[:,1],w[1]*X[:,1]+b[0],\"-r\",linewidth = 5.0,label = \"model\")\nax2.legend()\nplt.xlabel(\"x2\")\nplt.ylabel(\"y\",rotation = 0)\n\nplt.show()\n```\n\n![](./data/3-1-2-回归结果可视化.png)\n\n```python\n\n```\n\n### 二，DNN二分类模型\n\n```python\n\n```\n\n**1，准备数据**\n\n```python\nimport numpy as np \nimport pandas as pd \nfrom matplotlib import pyplot as plt\nimport tensorflow as tf\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\n#正负样本数量\nn_positive,n_negative = 2000,2000\n\n#生成正样本, 小圆环分布\nr_p = 5.0 + tf.random.truncated_normal([n_positive,1],0.0,1.0)\ntheta_p = tf.random.uniform([n_positive,1],0.0,2*np.pi) \nXp = tf.concat([r_p*tf.cos(theta_p),r_p*tf.sin(theta_p)],axis = 1)\nYp = tf.ones_like(r_p)\n\n#生成负样本, 大圆环分布\nr_n = 8.0 + tf.random.truncated_normal([n_negative,1],0.0,1.0)\ntheta_n = tf.random.uniform([n_negative,1],0.0,2*np.pi) \nXn = tf.concat([r_n*tf.cos(theta_n),r_n*tf.sin(theta_n)],axis = 1)\nYn = tf.zeros_like(r_n)\n\n#汇总样本\nX = tf.concat([Xp,Xn],axis = 0)\nY = tf.concat([Yp,Yn],axis = 0)\n\n\n#可视化\nplt.figure(figsize = (6,6))\nplt.scatter(Xp[:,0].numpy(),Xp[:,1].numpy(),c = \"r\")\nplt.scatter(Xn[:,0].numpy(),Xn[:,1].numpy(),c = \"g\")\nplt.legend([\"positive\",\"negative\"]);\n\n```\n\n![](./data/3-1-03-分类数据可视化.png)\n\n```python\n# 构建数据管道迭代器\ndef data_iter(features, labels, batch_size=8):\n    num_examples = len(features)\n    indices = list(range(num_examples))\n    np.random.shuffle(indices)  #样本的读取顺序是随机的\n    for i in range(0, num_examples, batch_size):\n        indexs = indices[i: min(i + batch_size, num_examples)]\n        yield tf.gather(features,indexs), tf.gather(labels,indexs)\n        \n# 测试数据管道效果   \nbatch_size = 10\n(features,labels) = next(data_iter(X,Y,batch_size))\nprint(features)\nprint(labels)\n```\n\n```\ntf.Tensor(\n[[ 0.03732629  3.5783494 ]\n [ 0.542919    5.035079  ]\n [ 5.860281   -2.4476354 ]\n [ 0.63657564  3.194231  ]\n [-3.5072308   2.5578873 ]\n [-2.4109735  -3.6621518 ]\n [ 4.0975413  -2.4172943 ]\n [ 1.9393908  -6.782317  ]\n [-4.7453732  -0.5176727 ]\n [-1.4057113  -7.9775257 ]], shape=(10, 2), dtype=float32)\ntf.Tensor(\n[[1.]\n [1.]\n [0.]\n [1.]\n [1.]\n [1.]\n [1.]\n [0.]\n [1.]\n [0.]], shape=(10, 1), dtype=float32)\n```\n\n```python\n\n```\n\n**2，定义模型**\n\n\n此处范例我们利用tf.Module来组织模型变量，关于tf.Module的较详细介绍参考本书第四章最后一节: Autograph和tf.Module。\n\n```python\nclass DNNModel(tf.Module):\n    def __init__(self,name = None):\n        super(DNNModel, self).__init__(name=name)\n        self.w1 = tf.Variable(tf.random.truncated_normal([2,4]),dtype = tf.float32)\n        self.b1 = tf.Variable(tf.zeros([1,4]),dtype = tf.float32)\n        self.w2 = tf.Variable(tf.random.truncated_normal([4,8]),dtype = tf.float32)\n        self.b2 = tf.Variable(tf.zeros([1,8]),dtype = tf.float32)\n        self.w3 = tf.Variable(tf.random.truncated_normal([8,1]),dtype = tf.float32)\n        self.b3 = tf.Variable(tf.zeros([1,1]),dtype = tf.float32)\n\n     \n    # 正向传播\n    @tf.function(input_signature=[tf.TensorSpec(shape = [None,2], dtype = tf.float32)])  \n    def __call__(self,x):\n        x = tf.nn.relu(x@self.w1 + self.b1)\n        x = tf.nn.relu(x@self.w2 + self.b2)\n        y = tf.nn.sigmoid(x@self.w3 + self.b3)\n        return y\n    \n    # 损失函数(二元交叉熵)\n    @tf.function(input_signature=[tf.TensorSpec(shape = [None,1], dtype = tf.float32),\n                              tf.TensorSpec(shape = [None,1], dtype = tf.float32)])  \n    def loss_func(self,y_true,y_pred):  \n        #将预测值限制在 1e-7 以上, 1 - 1e-7 以下，避免log(0)错误\n        eps = 1e-7\n        y_pred = tf.clip_by_value(y_pred,eps,1.0-eps)\n        bce = - y_true*tf.math.log(y_pred) - (1-y_true)*tf.math.log(1-y_pred)\n        return  tf.reduce_mean(bce)\n    \n    # 评估指标(准确率)\n    @tf.function(input_signature=[tf.TensorSpec(shape = [None,1], dtype = tf.float32),\n                              tf.TensorSpec(shape = [None,1], dtype = tf.float32)]) \n    def metric_func(self,y_true,y_pred):\n        y_pred = tf.where(y_pred>0.5,tf.ones_like(y_pred,dtype = tf.float32),\n                          tf.zeros_like(y_pred,dtype = tf.float32))\n        acc = tf.reduce_mean(1-tf.abs(y_true-y_pred))\n        return acc\n    \nmodel = DNNModel()\n```\n\n```python\n# 测试模型结构\nbatch_size = 10\n(features,labels) = next(data_iter(X,Y,batch_size))\n\npredictions = model(features)\n\nloss = model.loss_func(labels,predictions)\nmetric = model.metric_func(labels,predictions)\n\ntf.print(\"init loss:\",loss)\ntf.print(\"init metric\",metric)\n```\n\n```\ninit loss: 1.76568353\ninit metric 0.6\n```\n\n```python\nprint(len(model.trainable_variables))\n```\n\n```\n6\n```\n\n```python\n\n```\n\n**3，训练模型**\n\n```python\n##使用autograph机制转换成静态图加速\n\n@tf.function\ndef train_step(model, features, labels):\n    \n    # 正向传播求损失\n    with tf.GradientTape() as tape:\n        predictions = model(features)\n        loss = model.loss_func(labels, predictions) \n        \n    # 反向传播求梯度\n    grads = tape.gradient(loss, model.trainable_variables)\n    \n    # 执行梯度下降\n    for p, dloss_dp in zip(model.trainable_variables,grads):\n        p.assign(p - 0.001*dloss_dp)\n        \n    # 计算评估指标\n    metric = model.metric_func(labels,predictions)\n    \n    return loss, metric\n\n\ndef train_model(model,epochs):\n    for epoch in tf.range(1,epochs+1):\n        for features, labels in data_iter(X,Y,100):\n            loss,metric = train_step(model,features,labels)\n        if epoch%100==0:\n            printbar()\n            tf.print(\"epoch =\",epoch,\"loss = \",loss, \"accuracy = \", metric)\n        \n\ntrain_model(model,epochs = 600)\n```\n\n```\n================================================================================16:47:35\nepoch = 100 loss =  0.567795336 accuracy =  0.71\n================================================================================16:47:39\nepoch = 200 loss =  0.50955683 accuracy =  0.77\n================================================================================16:47:43\nepoch = 300 loss =  0.421476126 accuracy =  0.84\n================================================================================16:47:47\nepoch = 400 loss =  0.330618203 accuracy =  0.9\n================================================================================16:47:51\nepoch = 500 loss =  0.308296859 accuracy =  0.89\n================================================================================16:47:55\nepoch = 600 loss =  0.279367268 accuracy =  0.96\n```\n\n```python\n\n```\n\n```python\n# 结果可视化\nfig, (ax1,ax2) = plt.subplots(nrows=1,ncols=2,figsize = (12,5))\nax1.scatter(Xp[:,0],Xp[:,1],c = \"r\")\nax1.scatter(Xn[:,0],Xn[:,1],c = \"g\")\nax1.legend([\"positive\",\"negative\"]);\nax1.set_title(\"y_true\");\n\nXp_pred = tf.boolean_mask(X,tf.squeeze(model(X)>=0.5),axis = 0)\nXn_pred = tf.boolean_mask(X,tf.squeeze(model(X)<0.5),axis = 0)\n\nax2.scatter(Xp_pred[:,0],Xp_pred[:,1],c = \"r\")\nax2.scatter(Xn_pred[:,0],Xn_pred[:,1],c = \"g\")\nax2.legend([\"positive\",\"negative\"]);\nax2.set_title(\"y_pred\");\n\n```\n\n![](./data/3-1-04-分类结果可视化.png)\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "3-2,中阶API示范.md",
    "content": "# 3-2,中阶API示范\n\n下面的范例使用TensorFlow的中阶API实现线性回归模型和和DNN二分类模型。\n\nTensorFlow的中阶API主要包括各种模型层，损失函数，优化器，数据管道，特征列等等。\n\n```python\nimport tensorflow as tf\n\n#打印时间分割线\n@tf.function\ndef printbar():\n    today_ts = tf.timestamp()%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8+timestring)\n\n    \n```\n\n```python\n\n```\n\n### 一，线性回归模型\n\n\n**1，准备数据**\n\n```python\nimport numpy as np \nimport pandas as pd\nfrom matplotlib import pyplot as plt \nimport tensorflow as tf\nfrom tensorflow.keras import layers,losses,metrics,optimizers\n\n#样本数量\nn = 400\n\n# 生成测试用数据集\nX = tf.random.uniform([n,2],minval=-10,maxval=10) \nw0 = tf.constant([[2.0],[-3.0]])\nb0 = tf.constant([[3.0]])\nY = X@w0 + b0 + tf.random.normal([n,1],mean = 0.0,stddev= 2.0)  # @表示矩阵乘法,增加正态扰动\n\n```\n\n```python\n# 数据可视化\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\nplt.figure(figsize = (12,5))\nax1 = plt.subplot(121)\nax1.scatter(X[:,0],Y[:,0], c = \"b\")\nplt.xlabel(\"x1\")\nplt.ylabel(\"y\",rotation = 0)\n\nax2 = plt.subplot(122)\nax2.scatter(X[:,1],Y[:,0], c = \"g\")\nplt.xlabel(\"x2\")\nplt.ylabel(\"y\",rotation = 0)\nplt.show()\n\n```\n\n![](./data/3-2-01-回归数据可视化.png)\n\n```python\n#构建输入数据管道\nds = tf.data.Dataset.from_tensor_slices((X,Y)) \\\n     .shuffle(buffer_size = 100).batch(10) \\\n     .prefetch(tf.data.experimental.AUTOTUNE)  \n```\n\n```python\n\n```\n\n**2，定义模型**\n\n```python\nmodel = layers.Dense(units = 1) \nmodel.build(input_shape = (2,)) #用build方法创建variables\nmodel.loss_func = losses.mean_squared_error\nmodel.optimizer = optimizers.SGD(learning_rate=0.001)\n```\n\n```python\n\n```\n\n**3，训练模型**\n\n```python\n#使用autograph机制转换成静态图加速\n\n@tf.function\ndef train_step(model, features, labels):\n    with tf.GradientTape() as tape:\n        predictions = model(features)\n        loss = model.loss_func(tf.reshape(labels,[-1]), tf.reshape(predictions,[-1]))\n    grads = tape.gradient(loss,model.variables)\n    model.optimizer.apply_gradients(zip(grads,model.variables))\n    return loss\n\n# 测试train_step效果\nfeatures,labels = next(ds.as_numpy_iterator())\ntrain_step(model,features,labels)\n\n```\n\n```python\ndef train_model(model,epochs):\n    for epoch in tf.range(1,epochs+1):\n        loss = tf.constant(0.0)\n        for features, labels in ds:\n            loss = train_step(model,features,labels)\n        if epoch%50==0:\n            printbar()\n            tf.print(\"epoch =\",epoch,\"loss = \",loss)\n            tf.print(\"w =\",model.variables[0])\n            tf.print(\"b =\",model.variables[1])\ntrain_model(model,epochs = 200)\n\n```\n\n```\n================================================================================17:01:48\nepoch = 50 loss =  2.56481647\nw = [[1.99355531]\n [-2.99061537]]\nb = [3.09484935]\n================================================================================17:01:51\nepoch = 100 loss =  5.96198225\nw = [[1.98028314]\n [-2.96975136]]\nb = [3.09501529]\n================================================================================17:01:54\nepoch = 150 loss =  4.79625702\nw = [[2.00056171]\n [-2.98774862]]\nb = [3.09567738]\n================================================================================17:01:58\nepoch = 200 loss =  8.26704407\nw = [[2.00282311]\n [-2.99300027]]\nb = [3.09406662]\n```\n\n```python\n\n```\n\n```python\n# 结果可视化\n\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nw,b = model.variables\n\nplt.figure(figsize = (12,5))\nax1 = plt.subplot(121)\nax1.scatter(X[:,0],Y[:,0], c = \"b\",label = \"samples\")\nax1.plot(X[:,0],w[0]*X[:,0]+b[0],\"-r\",linewidth = 5.0,label = \"model\")\nax1.legend()\nplt.xlabel(\"x1\")\nplt.ylabel(\"y\",rotation = 0)\n\n\n\nax2 = plt.subplot(122)\nax2.scatter(X[:,1],Y[:,0], c = \"g\",label = \"samples\")\nax2.plot(X[:,1],w[1]*X[:,1]+b[0],\"-r\",linewidth = 5.0,label = \"model\")\nax2.legend()\nplt.xlabel(\"x2\")\nplt.ylabel(\"y\",rotation = 0)\n\nplt.show()\n\n```\n\n![](./data/3-2-02-回归结果可视化.png)\n\n```python\n\n```\n\n### 二， DNN二分类模型\n\n```python\n\n```\n\n**1，准备数据**\n\n```python\nimport numpy as np \nimport pandas as pd \nfrom matplotlib import pyplot as plt\nimport tensorflow as tf\nfrom tensorflow.keras import layers,losses,metrics,optimizers\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\n#正负样本数量\nn_positive,n_negative = 2000,2000\n\n#生成正样本, 小圆环分布\nr_p = 5.0 + tf.random.truncated_normal([n_positive,1],0.0,1.0)\ntheta_p = tf.random.uniform([n_positive,1],0.0,2*np.pi) \nXp = tf.concat([r_p*tf.cos(theta_p),r_p*tf.sin(theta_p)],axis = 1)\nYp = tf.ones_like(r_p)\n\n#生成负样本, 大圆环分布\nr_n = 8.0 + tf.random.truncated_normal([n_negative,1],0.0,1.0)\ntheta_n = tf.random.uniform([n_negative,1],0.0,2*np.pi) \nXn = tf.concat([r_n*tf.cos(theta_n),r_n*tf.sin(theta_n)],axis = 1)\nYn = tf.zeros_like(r_n)\n\n#汇总样本\nX = tf.concat([Xp,Xn],axis = 0)\nY = tf.concat([Yp,Yn],axis = 0)\n\n\n#可视化\nplt.figure(figsize = (6,6))\nplt.scatter(Xp[:,0].numpy(),Xp[:,1].numpy(),c = \"r\")\nplt.scatter(Xn[:,0].numpy(),Xn[:,1].numpy(),c = \"g\")\nplt.legend([\"positive\",\"negative\"]);\n\n```\n\n![](./data/3-1-03-分类数据可视化.png)\n\n```python\n#构建输入数据管道\nds = tf.data.Dataset.from_tensor_slices((X,Y)) \\\n     .shuffle(buffer_size = 4000).batch(100) \\\n     .prefetch(tf.data.experimental.AUTOTUNE) \n```\n\n```python\n\n```\n\n**2, 定义模型**\n\n```python\n\n```\n\n```python\nclass DNNModel(tf.Module):\n    def __init__(self,name = None):\n        super(DNNModel, self).__init__(name=name)\n        self.dense1 = layers.Dense(4,activation = \"relu\") \n        self.dense2 = layers.Dense(8,activation = \"relu\")\n        self.dense3 = layers.Dense(1,activation = \"sigmoid\")\n\n     \n    # 正向传播\n    @tf.function(input_signature=[tf.TensorSpec(shape = [None,2], dtype = tf.float32)])  \n    def __call__(self,x):\n        x = self.dense1(x)\n        x = self.dense2(x)\n        y = self.dense3(x)\n        return y\n    \nmodel = DNNModel()\nmodel.loss_func = losses.binary_crossentropy\nmodel.metric_func = metrics.binary_accuracy\nmodel.optimizer = optimizers.Adam(learning_rate=0.001)\n\n```\n\n```python\n# 测试模型结构\n(features,labels) = next(ds.as_numpy_iterator())\n\npredictions = model(features)\n\nloss = model.loss_func(tf.reshape(labels,[-1]),tf.reshape(predictions,[-1]))\nmetric = model.metric_func(tf.reshape(labels,[-1]),tf.reshape(predictions,[-1]))\n\ntf.print(\"init loss:\",loss)\ntf.print(\"init metric\",metric)\n\n```\n\n```\ninit loss: 1.13653195\ninit metric 0.5\n```\n\n```python\n\n```\n\n**3，训练模型**\n\n```python\n#使用autograph机制转换成静态图加速\n\n@tf.function\ndef train_step(model, features, labels):\n    with tf.GradientTape() as tape:\n        predictions = model(features)\n        loss = model.loss_func(tf.reshape(labels,[-1]), tf.reshape(predictions,[-1]))\n    grads = tape.gradient(loss,model.trainable_variables)\n    model.optimizer.apply_gradients(zip(grads,model.trainable_variables))\n    \n    metric = model.metric_func(tf.reshape(labels,[-1]), tf.reshape(predictions,[-1]))\n    \n    return loss,metric\n\n# 测试train_step效果\nfeatures,labels = next(ds.as_numpy_iterator())\ntrain_step(model,features,labels)\n```\n\n```\n(<tf.Tensor: shape=(), dtype=float32, numpy=1.2033114>,\n <tf.Tensor: shape=(), dtype=float32, numpy=0.47>)\n```\n\n```python\n\n```\n\n```python\ndef train_model(model,epochs):\n    for epoch in tf.range(1,epochs+1):\n        loss, metric = tf.constant(0.0),tf.constant(0.0)\n        for features, labels in ds:\n            loss,metric = train_step(model,features,labels)\n        if epoch%10==0:\n            printbar()\n            tf.print(\"epoch =\",epoch,\"loss = \",loss, \"accuracy = \",metric)\ntrain_model(model,epochs = 60)\n\n```\n\n```\n================================================================================17:07:36\nepoch = 10 loss =  0.556449413 accuracy =  0.79\n================================================================================17:07:38\nepoch = 20 loss =  0.439187407 accuracy =  0.86\n================================================================================17:07:40\nepoch = 30 loss =  0.259921253 accuracy =  0.95\n================================================================================17:07:42\nepoch = 40 loss =  0.244920313 accuracy =  0.9\n================================================================================17:07:43\nepoch = 50 loss =  0.19839409 accuracy =  0.92\n================================================================================17:07:45\nepoch = 60 loss =  0.126151696 accuracy =  0.95\n```\n\n```python\n\n```\n\n```python\n# 结果可视化\nfig, (ax1,ax2) = plt.subplots(nrows=1,ncols=2,figsize = (12,5))\nax1.scatter(Xp[:,0].numpy(),Xp[:,1].numpy(),c = \"r\")\nax1.scatter(Xn[:,0].numpy(),Xn[:,1].numpy(),c = \"g\")\nax1.legend([\"positive\",\"negative\"]);\nax1.set_title(\"y_true\");\n\nXp_pred = tf.boolean_mask(X,tf.squeeze(model(X)>=0.5),axis = 0)\nXn_pred = tf.boolean_mask(X,tf.squeeze(model(X)<0.5),axis = 0)\n\nax2.scatter(Xp_pred[:,0].numpy(),Xp_pred[:,1].numpy(),c = \"r\")\nax2.scatter(Xn_pred[:,0].numpy(),Xn_pred[:,1].numpy(),c = \"g\")\nax2.legend([\"positive\",\"negative\"]);\nax2.set_title(\"y_pred\");\n\n\n```\n\n![](./data/3-2-04-分类结果可视化.png)\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "3-3,高阶API示范.md",
    "content": "# 3-3,高阶API示范\n\n下面的范例使用TensorFlow的高阶API实现线性回归模型和DNN二分类模型。\n\nTensorFlow的高阶API主要为tf.keras.models提供的模型的类接口。\n\n\n使用Keras接口有以下3种方式构建模型：使用Sequential按层顺序构建模型，使用函数式API构建任意结构模型，继承Model基类构建自定义模型。\n\n此处分别演示使用Sequential按层顺序构建模型以及继承Model基类构建自定义模型。\n\n```python\nimport tensorflow as tf\n\n#打印时间分割线\n@tf.function\ndef printbar():\n    today_ts = tf.timestamp()%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8+timestring)\n\n    \n```\n\n### 一，线性回归模型\n\n\n此范例我们使用Sequential按层顺序构建模型，并使用内置model.fit方法训练模型【面向新手】。\n\n\n**1，准备数据**\n\n```python\nimport numpy as np \nimport pandas as pd\nfrom matplotlib import pyplot as plt \nimport tensorflow as tf\nfrom tensorflow.keras import models,layers,losses,metrics,optimizers\n\n#样本数量\nn = 400\n\n# 生成测试用数据集\nX = tf.random.uniform([n,2],minval=-10,maxval=10) \nw0 = tf.constant([[2.0],[-3.0]])\nb0 = tf.constant([[3.0]])\nY = X@w0 + b0 + tf.random.normal([n,1],mean = 0.0,stddev= 2.0)  # @表示矩阵乘法,增加正态扰动\n\n```\n\n```python\n# 数据可视化\n\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\nplt.figure(figsize = (12,5))\nax1 = plt.subplot(121)\nax1.scatter(X[:,0],Y[:,0], c = \"b\")\nplt.xlabel(\"x1\")\nplt.ylabel(\"y\",rotation = 0)\n\nax2 = plt.subplot(122)\nax2.scatter(X[:,1],Y[:,0], c = \"g\")\nplt.xlabel(\"x2\")\nplt.ylabel(\"y\",rotation = 0)\nplt.show()\n\n```\n\n![](./data/3-3-01-回归数据可视化.png)\n\n```python\n\n```\n\n**2，定义模型**\n\n```python\ntf.keras.backend.clear_session()\n\nmodel = models.Sequential()\nmodel.add(layers.Dense(1,input_shape =(2,)))\nmodel.summary()\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ndense (Dense)                (None, 1)                 3         \n=================================================================\nTotal params: 3\nTrainable params: 3\nNon-trainable params: 0\n```\n\n```python\n\n```\n\n**3，训练模型**\n\n```python\n### 使用fit方法进行训练\n\nmodel.compile(optimizer=\"adam\",loss=\"mse\",metrics=[\"mae\"])\nmodel.fit(X,Y,batch_size = 10,epochs = 200)  \n\ntf.print(\"w = \",model.layers[0].kernel)\ntf.print(\"b = \",model.layers[0].bias)\n\n```\n\n```\nEpoch 197/200\n400/400 [==============================] - 0s 190us/sample - loss: 4.3977 - mae: 1.7129\nEpoch 198/200\n400/400 [==============================] - 0s 172us/sample - loss: 4.3918 - mae: 1.7117\nEpoch 199/200\n400/400 [==============================] - 0s 134us/sample - loss: 4.3861 - mae: 1.7106\nEpoch 200/200\n400/400 [==============================] - 0s 166us/sample - loss: 4.3786 - mae: 1.7092\nw =  [[1.99339032]\n [-3.00866461]]\nb =  [2.67018795]\n```\n\n```python\n# 结果可视化\n\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nw,b = model.variables\n\nplt.figure(figsize = (12,5))\nax1 = plt.subplot(121)\nax1.scatter(X[:,0],Y[:,0], c = \"b\",label = \"samples\")\nax1.plot(X[:,0],w[0]*X[:,0]+b[0],\"-r\",linewidth = 5.0,label = \"model\")\nax1.legend()\nplt.xlabel(\"x1\")\nplt.ylabel(\"y\",rotation = 0)\n\nax2 = plt.subplot(122)\nax2.scatter(X[:,1],Y[:,0], c = \"g\",label = \"samples\")\nax2.plot(X[:,1],w[1]*X[:,1]+b[0],\"-r\",linewidth = 5.0,label = \"model\")\nax2.legend()\nplt.xlabel(\"x2\")\nplt.ylabel(\"y\",rotation = 0)\n\nplt.show()\n```\n\n![](./data/3-3-02-回归结果可视化.png)\n\n```python\n\n```\n\n### 二，DNN二分类模型\n\n\n此范例我们使用继承Model基类构建自定义模型，并构建自定义训练循环【面向专家】\n\n\n**1，准备数据**\n\n```python\nimport numpy as np \nimport pandas as pd \nfrom matplotlib import pyplot as plt\nimport tensorflow as tf\nfrom tensorflow.keras import layers,losses,metrics,optimizers\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\n#正负样本数量\nn_positive,n_negative = 2000,2000\n\n#生成正样本, 小圆环分布\nr_p = 5.0 + tf.random.truncated_normal([n_positive,1],0.0,1.0)\ntheta_p = tf.random.uniform([n_positive,1],0.0,2*np.pi) \nXp = tf.concat([r_p*tf.cos(theta_p),r_p*tf.sin(theta_p)],axis = 1)\nYp = tf.ones_like(r_p)\n\n#生成负样本, 大圆环分布\nr_n = 8.0 + tf.random.truncated_normal([n_negative,1],0.0,1.0)\ntheta_n = tf.random.uniform([n_negative,1],0.0,2*np.pi) \nXn = tf.concat([r_n*tf.cos(theta_n),r_n*tf.sin(theta_n)],axis = 1)\nYn = tf.zeros_like(r_n)\n\n#汇总样本\nX = tf.concat([Xp,Xn],axis = 0)\nY = tf.concat([Yp,Yn],axis = 0)\n\n#样本洗牌\ndata = tf.concat([X,Y],axis = 1)\ndata = tf.random.shuffle(data)\nX = data[:,:2]\nY = data[:,2:]\n\n\n#可视化\nplt.figure(figsize = (6,6))\nplt.scatter(Xp[:,0].numpy(),Xp[:,1].numpy(),c = \"r\")\nplt.scatter(Xn[:,0].numpy(),Xn[:,1].numpy(),c = \"g\")\nplt.legend([\"positive\",\"negative\"]);\n\n```\n\n![](./data/3-3-03-分类数据可视化.png)\n\n```python\nds_train = tf.data.Dataset.from_tensor_slices((X[0:n*3//4,:],Y[0:n*3//4,:])) \\\n     .shuffle(buffer_size = 1000).batch(20) \\\n     .prefetch(tf.data.experimental.AUTOTUNE) \\\n     .cache()\n\nds_valid = tf.data.Dataset.from_tensor_slices((X[n*3//4:,:],Y[n*3//4:,:])) \\\n     .batch(20) \\\n     .prefetch(tf.data.experimental.AUTOTUNE) \\\n     .cache()\n\n```\n\n```python\n\n```\n\n**2，定义模型**\n\n```python\ntf.keras.backend.clear_session()\nclass DNNModel(models.Model):\n    def __init__(self):\n        super(DNNModel, self).__init__()\n        \n    def build(self,input_shape):\n        self.dense1 = layers.Dense(4,activation = \"relu\",name = \"dense1\") \n        self.dense2 = layers.Dense(8,activation = \"relu\",name = \"dense2\")\n        self.dense3 = layers.Dense(1,activation = \"sigmoid\",name = \"dense3\")\n        super(DNNModel,self).build(input_shape)\n \n    # 正向传播\n    @tf.function(input_signature=[tf.TensorSpec(shape = [None,2], dtype = tf.float32)])  \n    def call(self,x):\n        x = self.dense1(x)\n        x = self.dense2(x)\n        y = self.dense3(x)\n        return y\n\nmodel = DNNModel()\nmodel.build(input_shape =(None,2))\n\nmodel.summary()\n```\n\n```\nModel: \"dnn_model\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ndense1 (Dense)               multiple                  12        \n_________________________________________________________________\ndense2 (Dense)               multiple                  40        \n_________________________________________________________________\ndense3 (Dense)               multiple                  9         \n=================================================================\nTotal params: 61\nTrainable params: 61\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\n\n```\n\n**3，训练模型**\n\n```python\n\n```\n\n```python\n### 自定义训练循环\n\noptimizer = optimizers.Adam(learning_rate=0.01)\nloss_func = tf.keras.losses.BinaryCrossentropy()\n\ntrain_loss = tf.keras.metrics.Mean(name='train_loss')\ntrain_metric = tf.keras.metrics.BinaryAccuracy(name='train_accuracy')\n\nvalid_loss = tf.keras.metrics.Mean(name='valid_loss')\nvalid_metric = tf.keras.metrics.BinaryAccuracy(name='valid_accuracy')\n\n\n@tf.function\ndef train_step(model, features, labels):\n    with tf.GradientTape() as tape:\n        predictions = model(features)\n        loss = loss_func(labels, predictions)\n    grads = tape.gradient(loss, model.trainable_variables)\n    optimizer.apply_gradients(zip(grads, model.trainable_variables))\n\n    train_loss.update_state(loss)\n    train_metric.update_state(labels, predictions)\n\n@tf.function\ndef valid_step(model, features, labels):\n    predictions = model(features)\n    batch_loss = loss_func(labels, predictions)\n    valid_loss.update_state(batch_loss)\n    valid_metric.update_state(labels, predictions)\n    \n\ndef train_model(model,ds_train,ds_valid,epochs):\n    for epoch in tf.range(1,epochs+1):\n        for features, labels in ds_train:\n            train_step(model,features,labels)\n\n        for features, labels in ds_valid:\n            valid_step(model,features,labels)\n\n        logs = 'Epoch={},Loss:{},Accuracy:{},Valid Loss:{},Valid Accuracy:{}'\n        \n        if  epoch%100 ==0:\n            printbar()\n            tf.print(tf.strings.format(logs,\n            (epoch,train_loss.result(),train_metric.result(),valid_loss.result(),valid_metric.result())))\n        \n        train_loss.reset_states()\n        valid_loss.reset_states()\n        train_metric.reset_states()\n        valid_metric.reset_states()\n\ntrain_model(model,ds_train,ds_valid,1000)\n```\n\n```\n================================================================================17:35:02\nEpoch=100,Loss:0.194088802,Accuracy:0.923064,Valid Loss:0.215538561,Valid Accuracy:0.904368\n================================================================================17:35:22\nEpoch=200,Loss:0.151239693,Accuracy:0.93768847,Valid Loss:0.181166962,Valid Accuracy:0.920664132\n================================================================================17:35:43\nEpoch=300,Loss:0.134556711,Accuracy:0.944247484,Valid Loss:0.171530813,Valid Accuracy:0.926396072\n================================================================================17:36:04\nEpoch=400,Loss:0.125722557,Accuracy:0.949172914,Valid Loss:0.16731061,Valid Accuracy:0.929318547\n================================================================================17:36:24\nEpoch=500,Loss:0.120216407,Accuracy:0.952525079,Valid Loss:0.164817035,Valid Accuracy:0.931044817\n================================================================================17:36:44\nEpoch=600,Loss:0.116434008,Accuracy:0.954830289,Valid Loss:0.163089141,Valid Accuracy:0.932202339\n================================================================================17:37:05\nEpoch=700,Loss:0.113658346,Accuracy:0.956433,Valid Loss:0.161804497,Valid Accuracy:0.933092058\n================================================================================17:37:25\nEpoch=800,Loss:0.111522928,Accuracy:0.957467675,Valid Loss:0.160796657,Valid Accuracy:0.93379426\n================================================================================17:37:46\nEpoch=900,Loss:0.109816991,Accuracy:0.958205402,Valid Loss:0.159987748,Valid Accuracy:0.934343576\n================================================================================17:38:06\nEpoch=1000,Loss:0.10841465,Accuracy:0.958805501,Valid Loss:0.159325734,Valid Accuracy:0.934785843\n```\n\n```python\n\n```\n\n```python\n# 结果可视化\nfig, (ax1,ax2) = plt.subplots(nrows=1,ncols=2,figsize = (12,5))\nax1.scatter(Xp[:,0].numpy(),Xp[:,1].numpy(),c = \"r\")\nax1.scatter(Xn[:,0].numpy(),Xn[:,1].numpy(),c = \"g\")\nax1.legend([\"positive\",\"negative\"]);\nax1.set_title(\"y_true\");\n\nXp_pred = tf.boolean_mask(X,tf.squeeze(model(X)>=0.5),axis = 0)\nXn_pred = tf.boolean_mask(X,tf.squeeze(model(X)<0.5),axis = 0)\n\nax2.scatter(Xp_pred[:,0].numpy(),Xp_pred[:,1].numpy(),c = \"r\")\nax2.scatter(Xn_pred[:,0].numpy(),Xn_pred[:,1].numpy(),c = \"g\")\nax2.legend([\"positive\",\"negative\"]);\nax2.set_title(\"y_pred\");\n```\n\n![](./data/3-3-04-分类结果可视化.png)\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "4-1,张量的结构操作.md",
    "content": "# 4-1,张量的结构操作\n\n张量的操作主要包括张量的结构操作和张量的数学运算。\n\n张量结构操作诸如：张量创建，索引切片，维度变换，合并分割。\n\n张量数学运算主要有：标量运算，向量运算，矩阵运算。另外我们会介绍张量运算的广播机制。\n\n本篇我们介绍张量的结构操作。\n\n\n### 一，创建张量\n\n\n张量创建的许多方法和numpy中创建array的方法很像。\n\n```python\nimport tensorflow as tf\nimport numpy as np \n```\n\n```python\na = tf.constant([1,2,3],dtype = tf.float32)\ntf.print(a)\n```\n\n```\n[1 2 3]\n```\n\n```python\nb = tf.range(1,10,delta = 2)\ntf.print(b)\n```\n\n```\n[1 3 5 7 9]\n```\n\n```python\nc = tf.linspace(0.0,2*3.14,100)\ntf.print(c)\n```\n\n```\n[0 0.0634343475 0.126868695 ... 6.15313148 6.21656609 6.28]\n```\n\n```python\nd = tf.zeros([3,3])\ntf.print(d)\n```\n\n```\n[[0 0 0]\n [0 0 0]\n [0 0 0]]\n```\n\n```python\na = tf.ones([3,3])\nb = tf.zeros_like(a,dtype= tf.float32)\ntf.print(a)\ntf.print(b)\n```\n\n```\n[[1 1 1]\n [1 1 1]\n [1 1 1]]\n[[0 0 0]\n [0 0 0]\n [0 0 0]]\n```\n\n```python\nb = tf.fill([3,2],5)\ntf.print(b)\n```\n\n```\n[[5 5]\n [5 5]\n [5 5]]\n```\n\n```python\n#均匀分布随机\ntf.random.set_seed(1.0)\na = tf.random.uniform([5],minval=0,maxval=10)\ntf.print(a)\n```\n\n```\n[1.65130854 9.01481247 6.30974197 4.34546089 2.9193902]\n```\n\n```python\n#正态分布随机\nb = tf.random.normal([3,3],mean=0.0,stddev=1.0)\ntf.print(b)\n```\n\n```\n[[0.403087884 -1.0880208 -0.0630953535]\n [1.33655667 0.711760104 -0.489286453]\n [-0.764221311 -1.03724861 -1.25193381]]\n```\n\n```python\n#正态分布随机，剔除2倍方差以外数据重新生成\nc = tf.random.truncated_normal((5,5), mean=0.0, stddev=1.0, dtype=tf.float32)\ntf.print(c)\n```\n\n```\n[[-0.457012236 -0.406867266 0.728577733 -0.892977774 -0.369404584]\n [0.323488563 1.19383323 0.888299048 1.25985599 -1.95951891]\n [-0.202244401 0.294496894 -0.468728036 1.29494202 1.48142183]\n [0.0810953453 1.63843894 0.556645 0.977199793 -1.17777884]\n [1.67368948 0.0647980496 -0.705142677 -0.281972528 0.126546144]]\n```\n\n```python\n# 特殊矩阵\nI = tf.eye(3,3) #单位矩阵\ntf.print(I)\ntf.print(\" \")\nt = tf.linalg.diag([1,2,3]) #对角阵\ntf.print(t)\n```\n\n```\n[[1 0 0]\n [0 1 0]\n [0 0 1]]\n \n[[1 0 0]\n [0 2 0]\n [0 0 3]]\n```\n\n```python\n\n```\n\n### 二 ，索引切片\n\n\n张量的索引切片方式和numpy几乎是一样的。切片时支持缺省参数和省略号。\n\n对于tf.Variable,可以通过索引和切片对部分元素进行修改。\n\n对于提取张量的连续子区域，也可以使用tf.slice.\n\n此外，对于不规则的切片提取,可以使用tf.gather,tf.gather_nd,tf.boolean_mask。\n\ntf.boolean_mask功能最为强大，它可以实现tf.gather,tf.gather_nd的功能，并且tf.boolean_mask还可以实现布尔索引。\n\n如果要通过修改张量的某些元素得到新的张量，可以使用tf.where，tf.scatter_nd。\n\n```python\ntf.random.set_seed(3)\nt = tf.random.uniform([5,5],minval=0,maxval=10,dtype=tf.int32)\ntf.print(t)\n```\n\n```\n[[4 7 4 2 9]\n [9 1 2 4 7]\n [7 2 7 4 0]\n [9 6 9 7 2]\n [3 7 0 0 3]]\n```\n\n```python\n#第0行\ntf.print(t[0])\n```\n\n```\n[4 7 4 2 9]\n```\n\n```python\n#倒数第一行\ntf.print(t[-1])\n```\n\n```\n[3 7 0 0 3]\n```\n\n```python\n#第1行第3列\ntf.print(t[1,3])\ntf.print(t[1][3])\n```\n\n```\n4\n4\n```\n\n```python\n#第1行至第3行\ntf.print(t[1:4,:])\ntf.print(tf.slice(t,[1,0],[3,5])) #tf.slice(input,begin_vector,size_vector)\n```\n\n```\n[[9 1 2 4 7]\n [7 2 7 4 0]\n [9 6 9 7 2]]\n[[9 1 2 4 7]\n [7 2 7 4 0]\n [9 6 9 7 2]]\n```\n\n```python\n#第1行至最后一行，第0列到最后一列每隔两列取一列\ntf.print(t[1:4,:4:2])\n```\n\n```\n[[9 2]\n [7 7]\n [9 9]]\n```\n\n```python\n#对变量来说，还可以使用索引和切片修改部分元素\nx = tf.Variable([[1,2],[3,4]],dtype = tf.float32)\nx[1,:].assign(tf.constant([0.0,0.0]))\ntf.print(x)\n```\n\n```\n[[1 2]\n [0 0]]\n```\n\n```python\na = tf.random.uniform([3,3,3],minval=0,maxval=10,dtype=tf.int32)\ntf.print(a)\n```\n\n```\n[[[7 3 9]\n  [9 0 7]\n  [9 6 7]]\n\n [[1 3 3]\n  [0 8 1]\n  [3 1 0]]\n\n [[4 0 6]\n  [6 2 2]\n  [7 9 5]]]\n```\n\n```python\n#省略号可以表示多个冒号\ntf.print(a[...,1])\n```\n\n```\n[[3 0 6]\n [3 8 1]\n [0 2 9]]\n```\n\n\n以上切片方式相对规则，对于不规则的切片提取,可以使用tf.gather,tf.gather_nd,tf.boolean_mask。\n\n考虑班级成绩册的例子，有4个班级，每个班级10个学生，每个学生7门科目成绩。可以用一个4×10×7的张量来表示。\n\n```python\nscores = tf.random.uniform((4,10,7),minval=0,maxval=100,dtype=tf.int32)\ntf.print(scores)\n```\n\n```\n[[[52 82 66 ... 17 86 14]\n  [8 36 94 ... 13 78 41]\n  [77 53 51 ... 22 91 56]\n  ...\n  [11 19 26 ... 89 86 68]\n  [60 72 0 ... 11 26 15]\n  [24 99 38 ... 97 44 74]]\n\n [[79 73 73 ... 35 3 81]\n  [83 36 31 ... 75 38 85]\n  [54 26 67 ... 60 68 98]\n  ...\n  [20 5 18 ... 32 45 3]\n  [72 52 81 ... 88 41 20]\n  [0 21 89 ... 53 10 90]]\n\n [[52 80 22 ... 29 25 60]\n  [78 71 54 ... 43 98 81]\n  [21 66 53 ... 97 75 77]\n  ...\n  [6 74 3 ... 53 65 43]\n  [98 36 72 ... 33 36 81]\n  [61 78 70 ... 7 59 21]]\n\n [[56 57 45 ... 23 15 3]\n  [35 8 82 ... 11 59 97]\n  [44 6 99 ... 81 60 27]\n  ...\n  [76 26 35 ... 51 8 17]\n  [33 52 53 ... 78 37 31]\n  [71 27 44 ... 0 52 16]]]\n```\n\n```python\n#抽取每个班级第0个学生，第5个学生，第9个学生的全部成绩\np = tf.gather(scores,[0,5,9],axis=1)\ntf.print(p)\n```\n\n```\n[[[52 82 66 ... 17 86 14]\n  [24 80 70 ... 72 63 96]\n  [24 99 38 ... 97 44 74]]\n\n [[79 73 73 ... 35 3 81]\n  [46 10 94 ... 23 18 92]\n  [0 21 89 ... 53 10 90]]\n\n [[52 80 22 ... 29 25 60]\n  [19 12 23 ... 87 86 25]\n  [61 78 70 ... 7 59 21]]\n\n [[56 57 45 ... 23 15 3]\n  [6 41 79 ... 97 43 13]\n  [71 27 44 ... 0 52 16]]]\n```\n\n```python\n#抽取每个班级第0个学生，第5个学生，第9个学生的第1门课程，第3门课程，第6门课程成绩\nq = tf.gather(tf.gather(scores,[0,5,9],axis=1),[1,3,6],axis=2)\ntf.print(q)\n```\n\n```\n[[[82 55 14]\n  [80 46 96]\n  [99 58 74]]\n\n [[73 48 81]\n  [10 38 92]\n  [21 86 90]]\n\n [[80 57 60]\n  [12 34 25]\n  [78 71 21]]\n\n [[57 75 3]\n  [41 47 13]\n  [27 96 16]]]\n```\n\n```python\n# 抽取第0个班级第0个学生，第2个班级的第4个学生，第3个班级的第6个学生的全部成绩\n#indices的长度为采样样本的个数，每个元素为采样位置的坐标\ns = tf.gather_nd(scores,indices = [(0,0),(2,4),(3,6)])\ns\n```\n\n```\n<tf.Tensor: shape=(3, 7), dtype=int32, numpy=\narray([[52, 82, 66, 55, 17, 86, 14],\n       [99, 94, 46, 70,  1, 63, 41],\n       [46, 83, 70, 80, 90, 85, 17]], dtype=int32)>\n```\n\n\n以上tf.gather和tf.gather_nd的功能也可以用tf.boolean_mask来实现。\n\n```python\n#抽取每个班级第0个学生，第5个学生，第9个学生的全部成绩\np = tf.boolean_mask(scores,[True,False,False,False,False,\n                            True,False,False,False,True],axis=1)\ntf.print(p)\n```\n\n```\n[[[52 82 66 ... 17 86 14]\n  [24 80 70 ... 72 63 96]\n  [24 99 38 ... 97 44 74]]\n\n [[79 73 73 ... 35 3 81]\n  [46 10 94 ... 23 18 92]\n  [0 21 89 ... 53 10 90]]\n\n [[52 80 22 ... 29 25 60]\n  [19 12 23 ... 87 86 25]\n  [61 78 70 ... 7 59 21]]\n\n [[56 57 45 ... 23 15 3]\n  [6 41 79 ... 97 43 13]\n  [71 27 44 ... 0 52 16]]]\n```\n\n```python\n#抽取第0个班级第0个学生，第2个班级的第4个学生，第3个班级的第6个学生的全部成绩\ns = tf.boolean_mask(scores,\n    [[True,False,False,False,False,False,False,False,False,False],\n     [False,False,False,False,False,False,False,False,False,False],\n     [False,False,False,False,True,False,False,False,False,False],\n     [False,False,False,False,False,False,True,False,False,False]])\ntf.print(s)\n```\n\n```\n[[52 82 66 ... 17 86 14]\n [99 94 46 ... 1 63 41]\n [46 83 70 ... 90 85 17]]\n```\n\n```python\n#利用tf.boolean_mask可以实现布尔索引\n\n#找到矩阵中小于0的元素\nc = tf.constant([[-1,1,-1],[2,2,-2],[3,-3,3]],dtype=tf.float32)\ntf.print(c,\"\\n\")\n\ntf.print(tf.boolean_mask(c,c<0),\"\\n\") \ntf.print(c[c<0]) #布尔索引，为boolean_mask的语法糖形式\n```\n\n```\n[[-1 1 -1]\n [2 2 -2]\n [3 -3 3]] \n\n[-1 -1 -2 -3] \n\n[-1 -1 -2 -3]\n```\n\n```python\n\n```\n\n以上这些方法仅能提取张量的部分元素值，但不能更改张量的部分元素值得到新的张量。\n\n如果要通过修改张量的部分元素值得到新的张量，可以使用tf.where和tf.scatter_nd。\n\ntf.where可以理解为if的张量版本，此外它还可以用于找到满足条件的所有元素的位置坐标。\n\ntf.scatter_nd的作用和tf.gather_nd有些相反，tf.gather_nd用于收集张量的给定位置的元素，\n\n而tf.scatter_nd可以将某些值插入到一个给定shape的全0的张量的指定位置处。\n\n```python\n#找到张量中小于0的元素,将其换成np.nan得到新的张量\n#tf.where和np.where作用类似，可以理解为if的张量版本\n\nc = tf.constant([[-1,1,-1],[2,2,-2],[3,-3,3]],dtype=tf.float32)\nd = tf.where(c<0,tf.fill(c.shape,np.nan),c) \nd\n```\n\n```\n<tf.Tensor: shape=(3, 3), dtype=float32, numpy=\narray([[nan,  1., nan],\n       [ 2.,  2., nan],\n       [ 3., nan,  3.]], dtype=float32)>\n```\n\n```python\n\n```\n\n```python\n#如果where只有一个参数，将返回所有满足条件的位置坐标\nindices = tf.where(c<0)\nindices\n```\n\n```\n<tf.Tensor: shape=(4, 2), dtype=int64, numpy=\narray([[0, 0],\n       [0, 2],\n       [1, 2],\n       [2, 1]])>\n```\n\n```python\n#将张量的第[0,0]和[2,1]两个位置元素替换为0得到新的张量\nd = c - tf.scatter_nd([[0,0],[2,1]],[c[0,0],c[2,1]],c.shape)\nd\n```\n\n```\n<tf.Tensor: shape=(3, 3), dtype=float32, numpy=\narray([[ 0.,  1., -1.],\n       [ 2.,  2., -2.],\n       [ 3.,  0.,  3.]], dtype=float32)>\n\n```\n\n```python\n#scatter_nd的作用和gather_nd有些相反\n#可以将某些值插入到一个给定shape的全0的张量的指定位置处。\nindices = tf.where(c<0)\ntf.scatter_nd(indices,tf.gather_nd(c,indices),c.shape)\n```\n\n```\n<tf.Tensor: shape=(3, 3), dtype=float32, numpy=\narray([[-1.,  0., -1.],\n       [ 0.,  0., -2.],\n       [ 0., -3.,  0.]], dtype=float32)>\n```\n\n```python\n\n```\n\n### 三，维度变换\n\n\n维度变换相关函数主要有 tf.reshape, tf.squeeze, tf.expand_dims, tf.transpose.\n\ntf.reshape 可以改变张量的形状。\n\ntf.squeeze 可以减少维度。\n\ntf.expand_dims 可以增加维度。\n\ntf.transpose 可以交换维度。\n\n\n\ntf.reshape可以改变张量的形状，但是其本质上不会改变张量元素的存储顺序，所以，该操作实际上非常迅速，并且是可逆的。\n\n```python\na = tf.random.uniform(shape=[1,3,3,2],\n                      minval=0,maxval=255,dtype=tf.int32)\ntf.print(a.shape)\ntf.print(a)\n```\n\n```\nTensorShape([1, 3, 3, 2])\n[[[[135 178]\n   [26 116]\n   [29 224]]\n\n  [[179 219]\n   [153 209]\n   [111 215]]\n\n  [[39 7]\n   [138 129]\n   [59 205]]]]\n```\n\n```python\n# 改成 （3,6）形状的张量\nb = tf.reshape(a,[3,6])\ntf.print(b.shape)\ntf.print(b)\n```\n\n```\nTensorShape([3, 6])\n[[135 178 26 116 29 224]\n [179 219 153 209 111 215]\n [39 7 138 129 59 205]]\n```\n\n\n\n\n```python\n# 改回成 [1,3,3,2] 形状的张量\nc = tf.reshape(b,[1,3,3,2])\ntf.print(c)\n```\n\n```\n[[[[135 178]\n   [26 116]\n   [29 224]]\n\n  [[179 219]\n   [153 209]\n   [111 215]]\n\n  [[39 7]\n   [138 129]\n   [59 205]]]]\n```\n\n```python\n\n```\n\n如果张量在某个维度上只有一个元素，利用tf.squeeze可以消除这个维度。\n\n和tf.reshape相似，它本质上不会改变张量元素的存储顺序。\n\n张量的各个元素在内存中是线性存储的，其一般规律是，同一层级中的相邻元素的物理地址也相邻。\n\n```python\ns = tf.squeeze(a)\ntf.print(s.shape)\ntf.print(s)\n```\n\n```\nTensorShape([3, 3, 2])\n[[[135 178]\n  [26 116]\n  [29 224]]\n\n [[179 219]\n  [153 209]\n  [111 215]]\n\n [[39 7]\n  [138 129]\n  [59 205]]]\n```\n\n```python\nd = tf.expand_dims(s,axis=0) #在第0维插入长度为1的一个维度\nd\n```\n\n```\n<tf.Tensor: shape=(1, 3, 3, 2), dtype=int32, numpy=\narray([[[[135, 178],\n         [ 26, 116],\n         [ 29, 224]],\n\n        [[179, 219],\n         [153, 209],\n         [111, 215]],\n\n        [[ 39,   7],\n         [138, 129],\n         [ 59, 205]]]], dtype=int32)>\n```\n\n\ntf.transpose可以交换张量的维度，与tf.reshape不同，它会改变张量元素的存储顺序。\n\ntf.transpose常用于图片存储格式的变换上。\n\n```python\n# Batch,Height,Width,Channel\na = tf.random.uniform(shape=[100,600,600,4],minval=0,maxval=255,dtype=tf.int32)\ntf.print(a.shape)\n\n# 转换成 Channel,Height,Width,Batch\ns= tf.transpose(a,perm=[3,1,2,0])\ntf.print(s.shape)\n```\n\n```\nTensorShape([100, 600, 600, 4])\nTensorShape([4, 600, 600, 100])\n\n```\n\n```python\n\n```\n\n### 四，合并分割\n\n\n和numpy类似，可以用tf.concat和tf.stack方法对多个张量进行合并，可以用tf.split方法把一个张量分割成多个张量。\n\ntf.concat和tf.stack有略微的区别，tf.concat是连接，不会增加维度，而tf.stack是堆叠，会增加维度。\n\n```python\na = tf.constant([[1.0,2.0],[3.0,4.0]])\nb = tf.constant([[5.0,6.0],[7.0,8.0]])\nc = tf.constant([[9.0,10.0],[11.0,12.0]])\n\ntf.concat([a,b,c],axis = 0)\n```\n\n```\n<tf.Tensor: shape=(6, 2), dtype=float32, numpy=\narray([[ 1.,  2.],\n       [ 3.,  4.],\n       [ 5.,  6.],\n       [ 7.,  8.],\n       [ 9., 10.],\n       [11., 12.]], dtype=float32)>\n```\n\n```python\ntf.concat([a,b,c],axis = 1)\n```\n\n```\n<tf.Tensor: shape=(2, 6), dtype=float32, numpy=\narray([[ 1.,  2.,  5.,  6.,  9., 10.],\n       [ 3.,  4.,  7.,  8., 11., 12.]], dtype=float32)>\n```\n\n```python\ntf.stack([a,b,c])\n```\n\n```\n<tf.Tensor: shape=(3, 2, 2), dtype=float32, numpy=\narray([[[ 1.,  2.],\n        [ 3.,  4.]],\n\n       [[ 5.,  6.],\n        [ 7.,  8.]],\n\n       [[ 9., 10.],\n        [11., 12.]]], dtype=float32)>\n```\n\n```python\ntf.stack([a,b,c],axis=1)\n```\n\n```\n<tf.Tensor: shape=(2, 3, 2), dtype=float32, numpy=\narray([[[ 1.,  2.],\n        [ 5.,  6.],\n        [ 9., 10.]],\n\n       [[ 3.,  4.],\n        [ 7.,  8.],\n        [11., 12.]]], dtype=float32)>\n```\n\n```python\na = tf.constant([[1.0,2.0],[3.0,4.0]])\nb = tf.constant([[5.0,6.0],[7.0,8.0]])\nc = tf.constant([[9.0,10.0],[11.0,12.0]])\n\nc = tf.concat([a,b,c],axis = 0)\n```\n\ntf.split是tf.concat的逆运算，可以指定分割份数平均分割，也可以通过指定每份的记录数量进行分割。\n\n```python\n#tf.split(value,num_or_size_splits,axis)\ntf.split(c,3,axis = 0)  #指定分割份数，平均分割\n```\n\n```\n[<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\n array([[1., 2.],\n        [3., 4.]], dtype=float32)>,\n <tf.Tensor: shape=(2, 2), dtype=float32, numpy=\n array([[5., 6.],\n        [7., 8.]], dtype=float32)>,\n <tf.Tensor: shape=(2, 2), dtype=float32, numpy=\n array([[ 9., 10.],\n        [11., 12.]], dtype=float32)>]\n```\n\n```python\ntf.split(c,[2,2,2],axis = 0) #指定每份的记录数量\n```\n\n```\n[<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\n array([[1., 2.],\n        [3., 4.]], dtype=float32)>,\n <tf.Tensor: shape=(2, 2), dtype=float32, numpy=\n array([[5., 6.],\n        [7., 8.]], dtype=float32)>,\n <tf.Tensor: shape=(2, 2), dtype=float32, numpy=\n array([[ 9., 10.],\n        [11., 12.]], dtype=float32)>]\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "4-2,张量的数学运算.md",
    "content": "# 4-2,张量的数学运算\n\n张量的操作主要包括张量的结构操作和张量的数学运算。\n\n张量结构操作诸如：张量创建，索引切片，维度变换，合并分割。\n\n张量数学运算主要有：标量运算，向量运算，矩阵运算。另外我们会介绍张量运算的广播机制。\n\n本篇我们介绍张量的数学运算。\n\n```python\n\n```\n\n### 一，标量运算\n\n\n张量的数学运算符可以分为标量运算符、向量运算符、以及矩阵运算符。\n\n加减乘除乘方，以及三角函数，指数，对数等常见函数，逻辑比较运算符等都是标量运算符。\n\n标量运算符的特点是对张量实施逐元素运算。\n\n有些标量运算符对常用的数学运算符进行了重载。并且支持类似numpy的广播特性。\n\n许多标量运算符都在 tf.math模块下。\n\n```python\nimport tensorflow as tf \nimport numpy as np \n```\n\n```python\na = tf.constant([[1.0,2],[-3,4.0]])\nb = tf.constant([[5.0,6],[7.0,8.0]])\na+b  #运算符重载\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[ 6.,  8.],\n       [ 4., 12.]], dtype=float32)>\n```\n\n```python\na-b \n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[ -4.,  -4.],\n       [-10.,  -4.]], dtype=float32)>\n```\n\n```python\na*b \n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[  5.,  12.],\n       [-21.,  32.]], dtype=float32)>\n```\n\n```python\na/b\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[ 0.2       ,  0.33333334],\n       [-0.42857143,  0.5       ]], dtype=float32)>\n```\n\n```python\na**2\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[ 1.,  4.],\n       [ 9., 16.]], dtype=float32)>\n```\n\n```python\na**(0.5)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[1.       , 1.4142135],\n       [      nan, 2.       ]], dtype=float32)>\n```\n\n```python\na%3 #mod的运算符重载，等价于m = tf.math.mod(a,3)\n```\n\n```\n<tf.Tensor: shape=(3,), dtype=int32, numpy=array([1, 2, 0], dtype=int32)>\n```\n\n```python\na//3  #地板除法\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[ 0.,  0.],\n       [-1.,  1.]], dtype=float32)>\n```\n\n```python\n(a>=2)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=bool, numpy=\narray([[False,  True],\n       [False,  True]])>\n```\n\n```python\n(a>=2)&(a<=3)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=bool, numpy=\narray([[False,  True],\n       [False, False]])>\n```\n\n```python\n(a>=2)|(a<=3)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=bool, numpy=\narray([[ True,  True],\n       [ True,  True]])>\n```\n\n```python\na==5 #tf.equal(a,5)\n```\n\n```\n<tf.Tensor: shape=(3,), dtype=bool, numpy=array([False, False, False])>\n```\n\n```python\ntf.sqrt(a)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[1.       , 1.4142135],\n       [      nan, 2.       ]], dtype=float32)>\n```\n\n```python\na = tf.constant([1.0,8.0])\nb = tf.constant([5.0,6.0])\nc = tf.constant([6.0,7.0])\ntf.add_n([a,b,c])\n```\n\n```\n<tf.Tensor: shape=(2,), dtype=float32, numpy=array([12., 21.], dtype=float32)>\n```\n\n```python\ntf.print(tf.maximum(a,b))\n```\n\n```\n[5 8]\n```\n\n```python\ntf.print(tf.minimum(a,b))\n```\n\n```\n[1 6]\n```\n\n```python\nx = tf.constant([2.6,-2.7])\n\ntf.print(tf.math.round(x)) #保留整数部分，四舍五入\ntf.print(tf.math.floor(x)) #保留整数部分，向下归整\ntf.print(tf.math.ceil(x))  #保留整数部分，向上归整\n\n```\n\n```\n[3 -3]\n[2 -3]\n[3 -2]\n```\n\n```python\n\n```\n\n```python\n# 幅值裁剪\nx = tf.constant([0.9,-0.8,100.0,-20.0,0.7])\ny = tf.clip_by_value(x,clip_value_min=-1,clip_value_max=1)\nz = tf.clip_by_norm(x,clip_norm = 3)\ntf.print(y)\ntf.print(z)\n```\n\n```\n[0.9 -0.8 1 -1 0.7]\n[0.0264732055 -0.0235317405 2.94146752 -0.588293493 0.0205902718]\n```\n\n```python\n\n```\n\n```python\n\n```\n\n### 二，向量运算\n\n\n向量运算符只在一个特定轴上运算，将一个向量映射到一个标量或者另外一个向量。\n许多向量运算符都以reduce开头。\n\n```python\n#向量reduce\na = tf.range(1,10)\ntf.print(tf.reduce_sum(a))\ntf.print(tf.reduce_mean(a))\ntf.print(tf.reduce_max(a))\ntf.print(tf.reduce_min(a))\ntf.print(tf.reduce_prod(a))\n\n```\n\n```\n45\n5\n9\n1\n362880\n```\n\n```python\n#张量指定维度进行reduce\nb = tf.reshape(a,(3,3))\ntf.print(tf.reduce_sum(b, axis=1, keepdims=True))\ntf.print(tf.reduce_sum(b, axis=0, keepdims=True))\n```\n\n```\n[[6]\n [15]\n [24]]\n[[12 15 18]]\n```\n\n```python\n#bool类型的reduce\np = tf.constant([True,False,False])\nq = tf.constant([False,False,True])\ntf.print(tf.reduce_all(p))\ntf.print(tf.reduce_any(q))\n```\n\n```\n0\n1\n```\n\n```python\n#利用tf.foldr实现tf.reduce_sum\ns = tf.foldr(lambda a,b:a+b,tf.range(10)) \ntf.print(s)\n```\n\n```\n45\n```\n\n```python\n#cum扫描累积\na = tf.range(1,10)\ntf.print(tf.math.cumsum(a))\ntf.print(tf.math.cumprod(a))\n```\n\n```\n[1 3 6 ... 28 36 45]\n[1 2 6 ... 5040 40320 362880]\n```\n\n```python\n#arg最大最小值索引\na = tf.range(1,10)\ntf.print(tf.argmax(a))\ntf.print(tf.argmin(a))\n```\n\n```\n8\n0\n```\n\n```python\n#tf.math.top_k可以用于对张量排序\na = tf.constant([1,3,7,5,4,8])\n\nvalues,indices = tf.math.top_k(a,3,sorted=True)\ntf.print(values)\ntf.print(indices)\n\n#利用tf.math.top_k可以在TensorFlow中实现KNN算法\n```\n\n```\n[8 7 5]\n[5 2 3]\n```\n\n```python\n\n```\n\n```python\n\n```\n\n### 三，矩阵运算\n\n\n矩阵必须是二维的。类似tf.constant([1,2,3])这样的不是矩阵。\n\n矩阵运算包括：矩阵乘法，矩阵转置，矩阵逆，矩阵求迹，矩阵范数，矩阵行列式，矩阵求特征值，矩阵分解等运算。\n\n除了一些常用的运算外，大部分和矩阵有关的运算都在tf.linalg子包中。\n\n```python\n#矩阵乘法\na = tf.constant([[1,2],[3,4]])\nb = tf.constant([[2,0],[0,2]])\na@b  #等价于tf.matmul(a,b)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=int32, numpy=\narray([[2, 4],\n       [6, 8]], dtype=int32)>\n```\n\n```python\n#矩阵转置\na = tf.constant([[1,2],[3,4]])\ntf.transpose(a)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=int32, numpy=\narray([[1, 3],\n       [2, 4]], dtype=int32)>\n```\n\n```python\n#矩阵逆，必须为tf.float32或tf.double类型\na = tf.constant([[1.0,2],[3,4]],dtype = tf.float32)\ntf.linalg.inv(a)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[-2.0000002 ,  1.0000001 ],\n       [ 1.5000001 , -0.50000006]], dtype=float32)>\n```\n\n```python\n#矩阵求trace\na = tf.constant([[1.0,2],[3,4]],dtype = tf.float32)\ntf.linalg.trace(a)\n```\n\n```\n<tf.Tensor: shape=(), dtype=float32, numpy=5.0>\n```\n\n```python\n#矩阵求范数\na = tf.constant([[1.0,2],[3,4]])\ntf.linalg.norm(a)\n```\n\n```\n<tf.Tensor: shape=(), dtype=float32, numpy=5.477226>\n```\n\n```python\n#矩阵行列式\na = tf.constant([[1.0,2],[3,4]])\ntf.linalg.det(a)\n```\n\n```\n<tf.Tensor: shape=(), dtype=float32, numpy=-2.0>\n```\n\n```python\n#矩阵特征值\na = tf.constant([[1.0,2],[-5,4]])\ntf.linalg.eigvals(a)\n```\n\n```\n<tf.Tensor: shape=(2,), dtype=complex64, numpy=array([2.4999995+2.7838817j, 2.5      -2.783882j ], dtype=complex64)>\n```\n\n```python\n#矩阵QR分解, 将一个方阵分解为一个正交矩阵q和上三角矩阵r\n#QR分解实际上是对矩阵a实施Schmidt正交化得到q\n\na = tf.constant([[1.0,2.0],[3.0,4.0]],dtype = tf.float32)\nq,r = tf.linalg.qr(a)\ntf.print(q)\ntf.print(r)\ntf.print(q@r)\n```\n\n```\n[[-0.316227794 -0.948683321]\n [-0.948683321 0.316227734]]\n[[-3.1622777 -4.4271884]\n [0 -0.632455349]]\n[[1.00000012 1.99999976]\n [3 4]]\n```\n\n```python\n#矩阵svd分解\n#svd分解可以将任意一个矩阵分解为一个正交矩阵u,一个对角阵s和一个正交矩阵v.t()的乘积\n#svd常用于矩阵压缩和降维\n\na  = tf.constant([[1.0,2.0],[3.0,4.0],[5.0,6.0]], dtype = tf.float32)\ns,u,v = tf.linalg.svd(a)\ntf.print(u,\"\\n\")\ntf.print(s,\"\\n\")\ntf.print(v,\"\\n\")\ntf.print(u@tf.linalg.diag(s)@tf.transpose(v))\n\n#利用svd分解可以在TensorFlow中实现主成分分析降维\n\n```\n\n```\n[[0.229847744 -0.88346082]\n [0.524744868 -0.240782902]\n [0.819642067 0.401896209]] \n\n[9.52551842 0.51429987] \n\n[[0.619629562 0.784894466]\n [0.784894466 -0.619629562]] \n\n[[1.00000119 2]\n [3.00000095 4.00000048]\n [5.00000143 6.00000095]]\n```\n\n```python\n\n```\n\n```python\n\n```\n\n### 四，广播机制\n\n\nTensorFlow的广播规则和numpy是一样的:\n\n* 1、如果张量的维度不同，将维度较小的张量进行扩展，直到两个张量的维度都一样。\n* 2、如果两个张量在某个维度上的长度是相同的，或者其中一个张量在该维度上的长度为1，那么我们就说这两个张量在该维度上是相容的。\n* 3、如果两个张量在所有维度上都是相容的，它们就能使用广播。\n* 4、广播之后，每个维度的长度将取两个张量在该维度长度的较大值。\n* 5、在任何一个维度上，如果一个张量的长度为1，另一个张量长度大于1，那么在该维度上，就好像是对第一个张量进行了复制。\n\ntf.broadcast_to 以显式的方式按照广播机制扩展张量的维度。\n\n```python\na = tf.constant([1,2,3])\nb = tf.constant([[0,0,0],[1,1,1],[2,2,2]])\nb + a  #等价于 b + tf.broadcast_to(a,b.shape)\n```\n\n```\n<tf.Tensor: shape=(3, 3), dtype=int32, numpy=\narray([[1, 2, 3],\n       [2, 3, 4],\n       [3, 4, 5]], dtype=int32)>\n```\n\n```python\ntf.broadcast_to(a,b.shape)\n```\n\n```\n<tf.Tensor: shape=(3, 3), dtype=int32, numpy=\narray([[1, 2, 3],\n       [1, 2, 3],\n       [1, 2, 3]], dtype=int32)>\n```\n\n```python\n#计算广播后计算结果的形状，静态形状，TensorShape类型参数\ntf.broadcast_static_shape(a.shape,b.shape)\n```\n\n```\nTensorShape([3, 3])\n```\n\n```python\n#计算广播后计算结果的形状，动态形状，Tensor类型参数\nc = tf.constant([1,2,3])\nd = tf.constant([[1],[2],[3]])\ntf.broadcast_dynamic_shape(tf.shape(c),tf.shape(d))\n```\n\n```\n<tf.Tensor: shape=(2,), dtype=int32, numpy=array([3, 3], dtype=int32)>\n```\n\n```python\n#广播效果\nc+d #等价于 tf.broadcast_to(c,[3,3]) + tf.broadcast_to(d,[3,3])\n```\n\n```\n<tf.Tensor: shape=(3, 3), dtype=int32, numpy=\narray([[2, 3, 4],\n       [3, 4, 5],\n       [4, 5, 6]], dtype=int32)>\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n\n```python\n\n```\n"
  },
  {
    "path": "4-3,AutoGraph的使用规范.md",
    "content": "# 4-3,AutoGraph的使用规范\n\n有三种计算图的构建方式：静态计算图，动态计算图，以及Autograph。\n\nTensorFlow 2.0主要使用的是动态计算图和Autograph。\n\n动态计算图易于调试，编码效率较高，但执行效率偏低。\n\n静态计算图执行效率很高，但较难调试。\n\n而Autograph机制可以将动态图转换成静态计算图，兼收执行效率和编码效率之利。\n\n当然Autograph机制能够转换的代码并不是没有任何约束的，有一些编码规范需要遵循，否则可能会转换失败或者不符合预期。\n\n我们将着重介绍Autograph的编码规范和Autograph转换成静态图的原理。\n\n并介绍使用tf.Module来更好地构建Autograph。\n\n本篇我们介绍使用Autograph的编码规范。\n\n<!-- #region -->\n### 一，Autograph编码规范总结\n\n\n* 1，被@tf.function修饰的函数应尽可能使用TensorFlow中的函数而不是Python中的其他函数。例如使用tf.print而不是print，使用tf.range而不是range，使用tf.constant(True)而不是True.\n\n* 2，避免在@tf.function修饰的函数内部定义tf.Variable. \n\n* 3，被@tf.function修饰的函数不可修改该函数外部的Python列表或字典等数据结构变量。\n\n<!-- #endregion -->\n```python\n\n```\n\n### 二，Autograph编码规范解析\n\n\n **1，被@tf.function修饰的函数应尽量使用TensorFlow中的函数而不是Python中的其他函数。**\n\n```python\nimport numpy as np\nimport tensorflow as tf\n\n@tf.function\ndef np_random():\n    a = np.random.randn(3,3)\n    tf.print(a)\n    \n@tf.function\ndef tf_random():\n    a = tf.random.normal((3,3))\n    tf.print(a)\n```\n\n```python\n#np_random每次执行都是一样的结果。\nnp_random()\nnp_random()\n```\n\n```\narray([[ 0.22619201, -0.4550123 , -0.42587565],\n       [ 0.05429906,  0.2312667 , -1.44819738],\n       [ 0.36571796,  1.45578986, -1.05348983]])\narray([[ 0.22619201, -0.4550123 , -0.42587565],\n       [ 0.05429906,  0.2312667 , -1.44819738],\n       [ 0.36571796,  1.45578986, -1.05348983]])\n```\n\n```python\n#tf_random每次执行都会有重新生成随机数。\ntf_random()\ntf_random()\n```\n\n```\n[[-1.38956189 -0.394843668 0.420657277]\n [2.87235498 -1.33740318 -0.533843279]\n [0.918233037 0.118598573 -0.399486482]]\n[[-0.858178258 1.67509317 0.511889517]\n [-0.545829177 -2.20118237 -0.968222201]\n [0.733958483 -0.61904633 0.77440238]]\n```\n\n```python\n\n```\n\n**2，避免在@tf.function修饰的函数内部定义tf.Variable.**\n\n```python\n# 避免在@tf.function修饰的函数内部定义tf.Variable.\n\nx = tf.Variable(1.0,dtype=tf.float32)\n@tf.function\ndef outer_var():\n    x.assign_add(1.0)\n    tf.print(x)\n    return(x)\n\nouter_var() \nouter_var()\n\n```\n\n```python\n@tf.function\ndef inner_var():\n    x = tf.Variable(1.0,dtype = tf.float32)\n    x.assign_add(1.0)\n    tf.print(x)\n    return(x)\n\n#执行将报错\n#inner_var()\n#inner_var()\n\n```\n\n```\n---------------------------------------------------------------------------\nValueError                                Traceback (most recent call last)\n<ipython-input-12-c95a7c3c1ddd> in <module>\n      7 \n      8 #执行将报错\n----> 9 inner_var()\n     10 inner_var()\n\n~/anaconda3/lib/python3.7/site-packages/tensorflow_core/python/eager/def_function.py in __call__(self, *args, **kwds)\n    566         xla_context.Exit()\n    567     else:\n--> 568       result = self._call(*args, **kwds)\n    569 \n    570     if tracing_count == self._get_tracing_count():\n......\nValueError: tf.function-decorated function tried to create variables on non-first call.\n```\n\n\n**3,被@tf.function修饰的函数不可修改该函数外部的Python列表或字典等结构类型变量。**\n\n```python\ntensor_list = []\n\n#@tf.function #加上这一行切换成Autograph结果将不符合预期！！！\ndef append_tensor(x):\n    tensor_list.append(x)\n    return tensor_list\n\nappend_tensor(tf.constant(5.0))\nappend_tensor(tf.constant(6.0))\nprint(tensor_list)\n\n```\n\n```\n[<tf.Tensor: shape=(), dtype=float32, numpy=5.0>, <tf.Tensor: shape=(), dtype=float32, numpy=6.0>]\n```\n\n```python\ntensor_list = []\n\n@tf.function #加上这一行切换成Autograph结果将不符合预期！！！\ndef append_tensor(x):\n    tensor_list.append(x)\n    return tensor_list\n\n\nappend_tensor(tf.constant(5.0))\nappend_tensor(tf.constant(6.0))\nprint(tensor_list)\n\n```\n\n```\n[<tf.Tensor 'x:0' shape=() dtype=float32>]\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "4-4,AutoGraph的机制原理.md",
    "content": "# 4-4,AutoGraph的机制原理\n\n有三种计算图的构建方式：静态计算图，动态计算图，以及Autograph。\n\nTensorFlow 2.0主要使用的是动态计算图和Autograph。\n\n动态计算图易于调试，编码效率较高，但执行效率偏低。\n\n静态计算图执行效率很高，但较难调试。\n\n而Autograph机制可以将动态图转换成静态计算图，兼收执行效率和编码效率之利。\n\n当然Autograph机制能够转换的代码并不是没有任何约束的，有一些编码规范需要遵循，否则可能会转换失败或者不符合预期。\n\n我们会介绍Autograph的编码规范和Autograph转换成静态图的原理。\n\n并介绍使用tf.Module来更好地构建Autograph。\n\n上篇我们介绍了Autograph的编码规范，本篇我们介绍Autograph的机制原理。\n\n\n\n### 一，Autograph的机制原理\n\n\n**当我们使用@tf.function装饰一个函数的时候，后面到底发生了什么呢？**\n\n例如我们写下如下代码。\n\n```python\nimport tensorflow as tf\nimport numpy as np \n\n@tf.function(autograph=True)\ndef myadd(a,b):\n    for i in tf.range(3):\n        tf.print(i)\n    c = a+b\n    print(\"tracing\")\n    return c\n```\n\n后面什么都没有发生。仅仅是在Python堆栈中记录了这样一个函数的签名。\n\n**当我们第一次调用这个被@tf.function装饰的函数时，后面到底发生了什么？**\n\n例如我们写下如下代码。\n\n```python\nmyadd(tf.constant(\"hello\"),tf.constant(\"world\"))\n```\n\n```\ntracing\n0\n1\n2\n```\n\n<!-- #region -->\n发生了2件事情，\n\n第一件事情是创建计算图。\n\n即创建一个静态计算图，跟踪执行一遍函数体中的Python代码，确定各个变量的Tensor类型，并根据执行顺序将算子添加到计算图中。\n在这个过程中，如果开启了autograph=True(默认开启),会将Python控制流转换成TensorFlow图内控制流。\n主要是将if语句转换成 tf.cond算子表达，将while和for循环语句转换成tf.while_loop算子表达，并在必要的时候添加\ntf.control_dependencies指定执行顺序依赖关系。\n\n相当于在 tensorflow1.0执行了类似下面的语句：\n\n```python\ng = tf.Graph()\nwith g.as_default():\n    a = tf.placeholder(shape=[],dtype=tf.string)\n    b = tf.placeholder(shape=[],dtype=tf.string)\n    cond = lambda i: i<tf.constant(3)\n    def body(i):\n        tf.print(i)\n        return(i+1)\n    loop = tf.while_loop(cond,body,loop_vars=[0])\n    loop\n    with tf.control_dependencies(loop):\n        c = tf.strings.join([a,b])\n    print(\"tracing\")\n```\n\n第二件事情是执行计算图。\n\n相当于在 tensorflow1.0中执行了下面的语句：\n\n```python\nwith tf.Session(graph=g) as sess:\n    sess.run(c,feed_dict={a:tf.constant(\"hello\"),b:tf.constant(\"world\")})\n```\n\n因此我们先看到的是第一个步骤的结果：即Python调用标准输出流打印\"tracing\"语句。\n\n然后看到第二个步骤的结果：TensorFlow调用标准输出流打印1,2,3。\n\n<!-- #endregion -->\n\n**当我们再次用相同的输入参数类型调用这个被@tf.function装饰的函数时，后面到底发生了什么？**\n\n例如我们写下如下代码。\n\n```python\nmyadd(tf.constant(\"good\"),tf.constant(\"morning\"))\n```\n\n```\n0\n1\n2\n```\n\n\n只会发生一件事情，那就是上面步骤的第二步，执行计算图。\n\n所以这一次我们没有看到打印\"tracing\"的结果。\n\n\n**当我们再次用不同的的输入参数类型调用这个被@tf.function装饰的函数时，后面到底发生了什么？**\n\n例如我们写下如下代码。\n\n```python\nmyadd(tf.constant(1),tf.constant(2))\n```\n\n```\ntracing\n0\n1\n2\n```\n\n\n由于输入参数的类型已经发生变化，已经创建的计算图不能够再次使用。\n\n需要重新做2件事情：创建新的计算图、执行计算图。\n\n所以我们又会先看到的是第一个步骤的结果：即Python调用标准输出流打印\"tracing\"语句。\n\n然后再看到第二个步骤的结果：TensorFlow调用标准输出流打印1,2,3。\n\n\n**需要注意的是，如果调用被@tf.function装饰的函数时输入的参数不是Tensor类型，则每次都会重新创建计算图。**\n\n例如我们写下如下代码。两次都会重新创建计算图。因此，一般建议调用@tf.function时应传入Tensor类型。\n\n```python\nmyadd(\"hello\",\"world\")\nmyadd(\"good\",\"morning\")\n```\n\n```\ntracing\n0\n1\n2\ntracing\n0\n1\n2\n```\n\n```python\n\n```\n\n```python\n\n```\n\n### 二，重新理解Autograph的编码规范\n\n\n了解了以上Autograph的机制原理，我们也就能够理解Autograph编码规范的3条建议了。\n\n1，被@tf.function修饰的函数应尽量使用TensorFlow中的函数而不是Python中的其他函数。例如使用tf.print而不是print.\n\n解释：Python中的函数仅仅会在跟踪执行函数以创建静态图的阶段使用，普通Python函数是无法嵌入到静态计算图中的，所以\n在计算图构建好之后再次调用的时候，这些Python函数并没有被计算，而TensorFlow中的函数则可以嵌入到计算图中。使用普通的Python函数会导致\n被@tf.function修饰前【eager执行】和被@tf.function修饰后【静态图执行】的输出不一致。\n\n2，避免在@tf.function修饰的函数内部定义tf.Variable. \n\n解释：如果函数内部定义了tf.Variable,那么在【eager执行】时，这种创建tf.Variable的行为在每次函数调用时候都会发生。但是在【静态图执行】时，这种创建tf.Variable的行为只会发生在第一步跟踪Python代码逻辑创建计算图时，这会导致被@tf.function修饰前【eager执行】和被@tf.function修饰后【静态图执行】的输出不一致。实际上，TensorFlow在这种情况下一般会报错。\n\n3，被@tf.function修饰的函数不可修改该函数外部的Python列表或字典等数据结构变量。\n\n解释：静态计算图是被编译成C++代码在TensorFlow内核中执行的。Python中的列表和字典等数据结构变量是无法嵌入到计算图中，它们仅仅能够在创建计算图时被读取，在执行计算图时是无法修改Python中的列表或字典这样的数据结构变量的。\n\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n\n```python\n\n```\n"
  },
  {
    "path": "4-5,AutoGraph和tf.Module.md",
    "content": "# 4-5,AutoGraph和tf.Module\n\n\n有三种计算图的构建方式：静态计算图，动态计算图，以及Autograph。\n\nTensorFlow 2.0主要使用的是动态计算图和Autograph。\n\n动态计算图易于调试，编码效率较高，但执行效率偏低。\n\n静态计算图执行效率很高，但较难调试。\n\n而Autograph机制可以将动态图转换成静态计算图，兼收执行效率和编码效率之利。\n\n当然Autograph机制能够转换的代码并不是没有任何约束的，有一些编码规范需要遵循，否则可能会转换失败或者不符合预期。\n\n前面我们介绍了Autograph的编码规范和Autograph转换成静态图的原理。\n\n本篇我们介绍使用tf.Module来更好地构建Autograph。\n\n\n\n\n### 一，Autograph和tf.Module概述\n\n\n前面在介绍Autograph的编码规范时提到构建Autograph时应该避免在@tf.function修饰的函数内部定义tf.Variable. \n\n但是如果在函数外部定义tf.Variable的话，又会显得这个函数有外部变量依赖，封装不够完美。\n\n一种简单的思路是定义一个类，并将相关的tf.Variable创建放在类的初始化方法中。而将函数的逻辑放在其他方法中。\n\n这样一顿猛如虎的操作之后，我们会觉得一切都如同人法地地法天天法道道法自然般的自然。\n\n惊喜的是，TensorFlow提供了一个基类tf.Module，通过继承它构建子类，我们不仅可以获得以上的自然而然，而且可以非常方便地管理变量，还可以非常方便地管理它引用的其它Module，最重要的是，我们能够利用tf.saved_model保存模型并实现跨平台部署使用。\n\n实际上，tf.keras.models.Model,tf.keras.layers.Layer 都是继承自tf.Module的，提供了方便的变量管理和所引用的子模块管理的功能。\n\n**因此，利用tf.Module提供的封装，再结合TensoFlow丰富的低阶API，实际上我们能够基于TensorFlow开发任意机器学习模型(而非仅仅是神经网络模型)，并实现跨平台部署使用。**\n\n\n\n\n\n### 二，应用tf.Module封装Autograph\n\n\n定义一个简单的function。\n\n```python\nimport tensorflow as tf \nx = tf.Variable(1.0,dtype=tf.float32)\n\n#在tf.function中用input_signature限定输入张量的签名类型：shape和dtype\n@tf.function(input_signature=[tf.TensorSpec(shape = [], dtype = tf.float32)])    \ndef add_print(a):\n    x.assign_add(a)\n    tf.print(x)\n    return(x)\n```\n\n```python\nadd_print(tf.constant(3.0))\n#add_print(tf.constant(3)) #输入不符合张量签名的参数将报错\n```\n\n```\n4\n```\n\n\n下面利用tf.Module的子类化将其封装一下。\n\n```python\nclass DemoModule(tf.Module):\n    def __init__(self,init_value = tf.constant(0.0),name=None):\n        super(DemoModule, self).__init__(name=name)\n        with self.name_scope:  #相当于with tf.name_scope(\"demo_module\")\n            self.x = tf.Variable(init_value,dtype = tf.float32,trainable=True)\n\n     \n    @tf.function(input_signature=[tf.TensorSpec(shape = [], dtype = tf.float32)])  \n    def addprint(self,a):\n        with self.name_scope:\n            self.x.assign_add(a)\n            tf.print(self.x)\n            return(self.x)\n\n```\n\n```python\n#执行\ndemo = DemoModule(init_value = tf.constant(1.0))\nresult = demo.addprint(tf.constant(5.0))\n```\n\n```\n6\n```\n\n```python\n#查看模块中的全部变量和全部可训练变量\nprint(demo.variables)\nprint(demo.trainable_variables)\n```\n\n```\n(<tf.Variable 'demo_module/Variable:0' shape=() dtype=float32, numpy=6.0>,)\n(<tf.Variable 'demo_module/Variable:0' shape=() dtype=float32, numpy=6.0>,)\n```\n\n```python\n#查看模块中的全部子模块\ndemo.submodules\n```\n\n```python\n#使用tf.saved_model 保存模型，并指定需要跨平台部署的方法\ntf.saved_model.save(demo,\"./data/demo/1\",signatures = {\"serving_default\":demo.addprint})\n```\n\n```python\n#加载模型\ndemo2 = tf.saved_model.load(\"./data/demo/1\")\ndemo2.addprint(tf.constant(5.0))\n```\n\n```\n11\n```\n\n```python\n# 查看模型文件相关信息，红框标出来的输出信息在模型部署和跨平台使用时有可能会用到\n!saved_model_cli show --dir ./data/demo/1 --all\n```\n\n![](./data/查看模型文件信息.jpg)\n\n```python\n\n```\n\n在tensorboard中查看计算图，模块会被添加模块名demo_module,方便层次化呈现计算图结构。\n\n```python\nimport datetime\n\n# 创建日志\nstamp = datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\nlogdir = './data/demomodule/%s' % stamp\nwriter = tf.summary.create_file_writer(logdir)\n\n#开启autograph跟踪\ntf.summary.trace_on(graph=True, profiler=True) \n\n#执行autograph\ndemo = DemoModule(init_value = tf.constant(0.0))\nresult = demo.addprint(tf.constant(5.0))\n\n#将计算图信息写入日志\nwith writer.as_default():\n    tf.summary.trace_export(\n        name=\"demomodule\",\n        step=0,\n        profiler_outdir=logdir)\n    \n```\n\n```python\n\n```\n\n```python\n#启动 tensorboard在jupyter中的魔法命令\n%reload_ext tensorboard\n```\n\n```python\nfrom tensorboard import notebook\nnotebook.list() \n```\n\n```python\nnotebook.start(\"--logdir ./data/demomodule/\")\n```\n\n![](./data/demomodule的计算图结构.jpg)\n\n```python\n\n```\n\n除了利用tf.Module的子类化实现封装，我们也可以通过给tf.Module添加属性的方法进行封装。\n\n```python\nmymodule = tf.Module()\nmymodule.x = tf.Variable(0.0)\n\n@tf.function(input_signature=[tf.TensorSpec(shape = [], dtype = tf.float32)])  \ndef addprint(a):\n    mymodule.x.assign_add(a)\n    tf.print(mymodule.x)\n    return (mymodule.x)\n\nmymodule.addprint = addprint\n```\n\n```python\nmymodule.addprint(tf.constant(1.0)).numpy()\n```\n\n```\n1.0\n```\n\n```python\nprint(mymodule.variables)\n```\n\n```\n(<tf.Variable 'Variable:0' shape=() dtype=float32, numpy=0.0>,)\n```\n\n```python\n#使用tf.saved_model 保存模型\ntf.saved_model.save(mymodule,\"./data/mymodule\",\n    signatures = {\"serving_default\":mymodule.addprint})\n\n#加载模型\nmymodule2 = tf.saved_model.load(\"./data/mymodule\")\nmymodule2.addprint(tf.constant(5.0))\n```\n\n```\nINFO:tensorflow:Assets written to: ./data/mymodule/assets\n5\n```\n\n```python\n\n```\n\n### 三，tf.Module和tf.keras.Model，tf.keras.layers.Layer\n\n\ntf.keras中的模型和层都是继承tf.Module实现的，也具有变量管理和子模块管理功能。\n\n```python\nimport tensorflow as tf\nfrom tensorflow.keras import models,layers,losses,metrics\n```\n\n```python\nprint(issubclass(tf.keras.Model,tf.Module))\nprint(issubclass(tf.keras.layers.Layer,tf.Module))\nprint(issubclass(tf.keras.Model,tf.keras.layers.Layer))\n```\n\n```\nTrue\nTrue\nTrue\n```\n\n```python\ntf.keras.backend.clear_session() \n\nmodel = models.Sequential()\n\nmodel.add(layers.Dense(4,input_shape = (10,)))\nmodel.add(layers.Dense(2))\nmodel.add(layers.Dense(1))\nmodel.summary()\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ndense (Dense)                (None, 4)                 44        \n_________________________________________________________________\ndense_1 (Dense)              (None, 2)                 10        \n_________________________________________________________________\ndense_2 (Dense)              (None, 1)                 3         \n=================================================================\nTotal params: 57\nTrainable params: 57\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\nmodel.variables\n```\n\n```\n[<tf.Variable 'dense/kernel:0' shape=(10, 4) dtype=float32, numpy=\n array([[-0.06741005,  0.45534766,  0.5190817 , -0.01806331],\n        [-0.14258742, -0.49711505,  0.26030976,  0.18607801],\n        [-0.62806034,  0.5327399 ,  0.42206633,  0.29201728],\n        [-0.16602087, -0.18901917,  0.55159235, -0.01091868],\n        [ 0.04533798,  0.326845  , -0.582667  ,  0.19431782],\n        [ 0.6494713 , -0.16174704,  0.4062966 ,  0.48760796],\n        [ 0.58400524, -0.6280886 , -0.11265379, -0.6438277 ],\n        [ 0.26642334,  0.49275804,  0.20793378, -0.43889117],\n        [ 0.4092741 ,  0.09871006, -0.2073121 ,  0.26047975],\n        [ 0.43910992,  0.00199282, -0.07711256, -0.27966842]],\n       dtype=float32)>,\n <tf.Variable 'dense/bias:0' shape=(4,) dtype=float32, numpy=array([0., 0., 0., 0.], dtype=float32)>,\n <tf.Variable 'dense_1/kernel:0' shape=(4, 2) dtype=float32, numpy=\n array([[ 0.5022683 , -0.0507431 ],\n        [-0.61540484,  0.9369011 ],\n        [-0.14412141, -0.54607415],\n        [ 0.2027781 , -0.4651153 ]], dtype=float32)>,\n <tf.Variable 'dense_1/bias:0' shape=(2,) dtype=float32, numpy=array([0., 0.], dtype=float32)>,\n <tf.Variable 'dense_2/kernel:0' shape=(2, 1) dtype=float32, numpy=\n array([[-0.244825 ],\n        [-1.2101456]], dtype=float32)>,\n <tf.Variable 'dense_2/bias:0' shape=(1,) dtype=float32, numpy=array([0.], dtype=float32)>]\n```\n\n```python\nmodel.layers[0].trainable = False #冻结第0层的变量,使其不可训练\nmodel.trainable_variables\n```\n\n```\n[<tf.Variable 'dense_1/kernel:0' shape=(4, 2) dtype=float32, numpy=\n array([[ 0.5022683 , -0.0507431 ],\n        [-0.61540484,  0.9369011 ],\n        [-0.14412141, -0.54607415],\n        [ 0.2027781 , -0.4651153 ]], dtype=float32)>,\n <tf.Variable 'dense_1/bias:0' shape=(2,) dtype=float32, numpy=array([0., 0.], dtype=float32)>,\n <tf.Variable 'dense_2/kernel:0' shape=(2, 1) dtype=float32, numpy=\n array([[-0.244825 ],\n        [-1.2101456]], dtype=float32)>,\n <tf.Variable 'dense_2/bias:0' shape=(1,) dtype=float32, numpy=array([0.], dtype=float32)>]\n```\n\n```python\nmodel.submodules\n```\n\n```\n(<tensorflow.python.keras.engine.input_layer.InputLayer at 0x144d8c080>,\n <tensorflow.python.keras.layers.core.Dense at 0x144daada0>,\n <tensorflow.python.keras.layers.core.Dense at 0x144d8c5c0>,\n <tensorflow.python.keras.layers.core.Dense at 0x144d7aa20>)\n```\n\n```python\nmodel.layers\n```\n\n```\n[<tensorflow.python.keras.layers.core.Dense at 0x144daada0>,\n <tensorflow.python.keras.layers.core.Dense at 0x144d8c5c0>,\n <tensorflow.python.keras.layers.core.Dense at 0x144d7aa20>]\n```\n\n```python\nprint(model.name)\nprint(model.name_scope())\n```\n\n```\nsequential\nsequential\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "5-1,数据管道Dataset.md",
    "content": "# 5-1,数据管道Dataset\n\n如果需要训练的数据大小不大，例如不到1G，那么可以直接全部读入内存中进行训练，这样一般效率最高。\n\n但如果需要训练的数据很大，例如超过10G，无法一次载入内存，那么通常需要在训练的过程中分批逐渐读入。\n\n使用 tf.data API 可以构建数据输入管道，轻松处理大量的数据，不同的数据格式，以及不同的数据转换。\n\n```python\n\n```\n\n### 一，构建数据管道\n\n\n可以从 Numpy array, Pandas DataFrame, Python generator, csv文件, 文本文件, 文件路径, tfrecords文件等方式构建数据管道。\n\n其中通过Numpy array, Pandas DataFrame, 文件路径构建数据管道是最常用的方法。\n\n通过tfrecords文件方式构建数据管道较为复杂，需要对样本构建tf.Example后压缩成字符串写到tfrecords文件，读取后再解析成tf.Example。\n\n但tfrecords文件的优点是压缩后文件较小，便于网络传播，加载速度较快。\n\n\n**1,从Numpy array构建数据管道**\n\n```python\n# 从Numpy array构建数据管道\n\nimport tensorflow as tf\nimport numpy as np \nfrom sklearn import datasets \niris = datasets.load_iris()\n\n\nds1 = tf.data.Dataset.from_tensor_slices((iris[\"data\"],iris[\"target\"]))\nfor features,label in ds1.take(5):\n    print(features,label)\n\n```\n\n```\ntf.Tensor([5.1 3.5 1.4 0.2], shape=(4,), dtype=float64) tf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor([4.9 3.  1.4 0.2], shape=(4,), dtype=float64) tf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor([4.7 3.2 1.3 0.2], shape=(4,), dtype=float64) tf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor([4.6 3.1 1.5 0.2], shape=(4,), dtype=float64) tf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor([5.  3.6 1.4 0.2], shape=(4,), dtype=float64) tf.Tensor(0, shape=(), dtype=int64)\n```\n\n```python\n\n```\n\n**2,从 Pandas DataFrame构建数据管道**\n\n```python\n# 从 Pandas DataFrame构建数据管道\nimport tensorflow as tf\nfrom sklearn import datasets \nimport pandas as pd\niris = datasets.load_iris()\ndfiris = pd.DataFrame(iris[\"data\"],columns = iris.feature_names)\nds2 = tf.data.Dataset.from_tensor_slices((dfiris.to_dict(\"list\"),iris[\"target\"]))\n\nfor features,label in ds2.take(3):\n    print(features,label)\n```\n\n```\n{'sepal length (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=5.1>, 'sepal width (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=3.5>, 'petal length (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=1.4>, 'petal width (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=0.2>} tf.Tensor(0, shape=(), dtype=int64)\n{'sepal length (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=4.9>, 'sepal width (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=3.0>, 'petal length (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=1.4>, 'petal width (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=0.2>} tf.Tensor(0, shape=(), dtype=int64)\n{'sepal length (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=4.7>, 'sepal width (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=3.2>, 'petal length (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=1.3>, 'petal width (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=0.2>} tf.Tensor(0, shape=(), dtype=int64)\n```\n\n```python\n\n```\n\n```python\n\n```\n\n**3,从Python generator构建数据管道**\n\n```python\n# 从Python generator构建数据管道\nimport tensorflow as tf\nfrom matplotlib import pyplot as plt \nfrom tensorflow.keras.preprocessing.image import ImageDataGenerator\n\n# 定义一个从文件中读取图片的generator\nimage_generator = ImageDataGenerator(rescale=1.0/255).flow_from_directory(\n                    \"./data/cifar2/test/\",\n                    target_size=(32, 32),\n                    batch_size=20,\n                    class_mode='binary')\n\nclassdict = image_generator.class_indices\nprint(classdict)\n\ndef generator():\n    for features,label in image_generator:\n        yield (features,label)\n\nds3 = tf.data.Dataset.from_generator(generator,output_types=(tf.float32,tf.int32))\n```\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\nplt.figure(figsize=(6,6)) \nfor i,(img,label) in enumerate(ds3.unbatch().take(9)):\n    ax=plt.subplot(3,3,i+1)\n    ax.imshow(img.numpy())\n    ax.set_title(\"label = %d\"%label)\n    ax.set_xticks([])\n    ax.set_yticks([]) \nplt.show()\n```\n\n![](./data/5-1-cifar2预览.jpg)\n\n```python\n\n```\n\n**4,从csv文件构建数据管道**\n\n```python\n# 从csv文件构建数据管道\nds4 = tf.data.experimental.make_csv_dataset(\n      file_pattern = [\"./data/titanic/train.csv\",\"./data/titanic/test.csv\"],\n      batch_size=3, \n      label_name=\"Survived\",\n      na_value=\"\",\n      num_epochs=1,\n      ignore_errors=True)\n\nfor data,label in ds4.take(2):\n    print(data,label)\n```\n\n```\nOrderedDict([('PassengerId', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([540,  58, 764], dtype=int32)>), ('Pclass', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([1, 3, 1], dtype=int32)>), ('Name', <tf.Tensor: shape=(3,), dtype=string, numpy=\narray([b'Frolicher, Miss. Hedwig Margaritha', b'Novel, Mr. Mansouer',\n       b'Carter, Mrs. William Ernest (Lucile Polk)'], dtype=object)>), ('Sex', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'female', b'male', b'female'], dtype=object)>), ('Age', <tf.Tensor: shape=(3,), dtype=float32, numpy=array([22. , 28.5, 36. ], dtype=float32)>), ('SibSp', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([0, 0, 1], dtype=int32)>), ('Parch', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([2, 0, 2], dtype=int32)>), ('Ticket', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'13568', b'2697', b'113760'], dtype=object)>), ('Fare', <tf.Tensor: shape=(3,), dtype=float32, numpy=array([ 49.5   ,   7.2292, 120.    ], dtype=float32)>), ('Cabin', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'B39', b'', b'B96 B98'], dtype=object)>), ('Embarked', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'C', b'C', b'S'], dtype=object)>)]) tf.Tensor([1 0 1], shape=(3,), dtype=int32)\nOrderedDict([('PassengerId', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([845,  66, 390], dtype=int32)>), ('Pclass', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([3, 3, 2], dtype=int32)>), ('Name', <tf.Tensor: shape=(3,), dtype=string, numpy=\narray([b'Culumovic, Mr. Jeso', b'Moubarek, Master. Gerios',\n       b'Lehmann, Miss. Bertha'], dtype=object)>), ('Sex', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'male', b'male', b'female'], dtype=object)>), ('Age', <tf.Tensor: shape=(3,), dtype=float32, numpy=array([17.,  0., 17.], dtype=float32)>), ('SibSp', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([0, 1, 0], dtype=int32)>), ('Parch', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([0, 1, 0], dtype=int32)>), ('Ticket', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'315090', b'2661', b'SC 1748'], dtype=object)>), ('Fare', <tf.Tensor: shape=(3,), dtype=float32, numpy=array([ 8.6625, 15.2458, 12.    ], dtype=float32)>), ('Cabin', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'', b'', b''], dtype=object)>), ('Embarked', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'S', b'C', b'C'], dtype=object)>)]) tf.Tensor([0 1 1], shape=(3,), dtype=int32)\n```\n\n```python\n\n```\n\n**5,从文本文件构建数据管道**\n\n```python\n# 从文本文件构建数据管道\n\nds5 = tf.data.TextLineDataset(\n    filenames = [\"./data/titanic/train.csv\",\"./data/titanic/test.csv\"]\n    ).skip(1) #略去第一行header\n\nfor line in ds5.take(5):\n    print(line)\n```\n\n```\ntf.Tensor(b'493,0,1,\"Molson, Mr. Harry Markland\",male,55.0,0,0,113787,30.5,C30,S', shape=(), dtype=string)\ntf.Tensor(b'53,1,1,\"Harper, Mrs. Henry Sleeper (Myna Haxtun)\",female,49.0,1,0,PC 17572,76.7292,D33,C', shape=(), dtype=string)\ntf.Tensor(b'388,1,2,\"Buss, Miss. Kate\",female,36.0,0,0,27849,13.0,,S', shape=(), dtype=string)\ntf.Tensor(b'192,0,2,\"Carbines, Mr. William\",male,19.0,0,0,28424,13.0,,S', shape=(), dtype=string)\ntf.Tensor(b'687,0,3,\"Panula, Mr. Jaako Arnold\",male,14.0,4,1,3101295,39.6875,,S', shape=(), dtype=string)\n```\n\n```python\n\n```\n\n**6,从文件路径构建数据管道**\n\n```python\nds6 = tf.data.Dataset.list_files(\"./data/cifar2/train/*/*.jpg\")\nfor file in ds6.take(5):\n    print(file)\n```\n\n```\ntf.Tensor(b'./data/cifar2/train/automobile/1263.jpg', shape=(), dtype=string)\ntf.Tensor(b'./data/cifar2/train/airplane/2837.jpg', shape=(), dtype=string)\ntf.Tensor(b'./data/cifar2/train/airplane/4264.jpg', shape=(), dtype=string)\ntf.Tensor(b'./data/cifar2/train/automobile/4241.jpg', shape=(), dtype=string)\ntf.Tensor(b'./data/cifar2/train/automobile/192.jpg', shape=(), dtype=string)\n```\n\n```python\nfrom matplotlib import pyplot as plt \ndef load_image(img_path,size = (32,32)):\n    label = 1 if tf.strings.regex_full_match(img_path,\".*/automobile/.*\") else 0\n    img = tf.io.read_file(img_path)\n    img = tf.image.decode_jpeg(img) #注意此处为jpeg格式\n    img = tf.image.resize(img,size)\n    return(img,label)\n\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\nfor i,(img,label) in enumerate(ds6.map(load_image).take(2)):\n    plt.figure(i)\n    plt.imshow((img/255.0).numpy())\n    plt.title(\"label = %d\"%label)\n    plt.xticks([])\n    plt.yticks([])\n```\n\n![](./data/5-1-car2.jpg)\n\n```python\n\n```\n\n**7,从tfrecords文件构建数据管道**\n\n```python\nimport os\nimport numpy as np\n\n# inpath：原始数据路径 outpath:TFRecord文件输出路径\ndef create_tfrecords(inpath,outpath): \n    writer = tf.io.TFRecordWriter(outpath)\n    dirs = os.listdir(inpath)\n    for index, name in enumerate(dirs):\n        class_path = inpath +\"/\"+ name+\"/\"\n        for img_name in os.listdir(class_path):\n            img_path = class_path + img_name\n            img = tf.io.read_file(img_path)\n            #img = tf.image.decode_image(img)\n            #img = tf.image.encode_jpeg(img) #统一成jpeg格式压缩\n            example = tf.train.Example(\n               features=tf.train.Features(feature={\n                    'label': tf.train.Feature(int64_list=tf.train.Int64List(value=[index])),\n                    'img_raw': tf.train.Feature(bytes_list=tf.train.BytesList(value=[img.numpy()]))\n               }))\n            writer.write(example.SerializeToString())\n    writer.close()\n    \ncreate_tfrecords(\"./data/cifar2/test/\",\"./data/cifar2_test.tfrecords/\")\n\n```\n\n```python\nfrom matplotlib import pyplot as plt \n\ndef parse_example(proto):\n    description ={ 'img_raw' : tf.io.FixedLenFeature([], tf.string),\n                   'label': tf.io.FixedLenFeature([], tf.int64)} \n    example = tf.io.parse_single_example(proto, description)\n    img = tf.image.decode_jpeg(example[\"img_raw\"])   #注意此处为jpeg格式\n    img = tf.image.resize(img, (32,32))\n    label = example[\"label\"]\n    return(img,label)\n\nds7 = tf.data.TFRecordDataset(\"./data/cifar2_test.tfrecords\").map(parse_example).shuffle(3000)\n\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\nplt.figure(figsize=(6,6)) \nfor i,(img,label) in enumerate(ds7.take(9)):\n    ax=plt.subplot(3,3,i+1)\n    ax.imshow((img/255.0).numpy())\n    ax.set_title(\"label = %d\"%label)\n    ax.set_xticks([])\n    ax.set_yticks([]) \nplt.show()\n\n```\n\n![](./data/5-1-car9.jpg)\n\n```python\n\n```\n\n```python\n\n```\n\n### 二，应用数据转换\n\n\nDataset数据结构应用非常灵活，因为它本质上是一个Sequece序列，其每个元素可以是各种类型，例如可以是张量，列表，字典，也可以是Dataset。\n\nDataset包含了非常丰富的数据转换功能。\n\n* map: 将转换函数映射到数据集每一个元素。\n\n* flat_map: 将转换函数映射到数据集的每一个元素，并将嵌套的Dataset压平。\n\n* interleave: 效果类似flat_map,但可以将不同来源的数据夹在一起。\n\n* filter: 过滤掉某些元素。\n\n* zip: 将两个长度相同的Dataset横向铰合。\n\n* concatenate: 将两个Dataset纵向连接。\n\n* reduce: 执行归并操作。\n\n* batch : 构建批次，每次放一个批次。比原始数据增加一个维度。 其逆操作为unbatch。\n\n* padded_batch: 构建批次，类似batch, 但可以填充到相同的形状。\n\n* window :构建滑动窗口，返回Dataset of Dataset.\n\n* shuffle: 数据顺序洗牌。\n\n* repeat: 重复数据若干次，不带参数时，重复无数次。\n\n* shard: 采样，从某个位置开始隔固定距离采样一个元素。\n\n* take: 采样，从开始位置取前几个元素。\n\n\n```python\n#map:将转换函数映射到数据集每一个元素\n\nds = tf.data.Dataset.from_tensor_slices([\"hello world\",\"hello China\",\"hello Beijing\"])\nds_map = ds.map(lambda x:tf.strings.split(x,\" \"))\nfor x in ds_map:\n    print(x)\n```\n\n```\ntf.Tensor([b'hello' b'world'], shape=(2,), dtype=string)\ntf.Tensor([b'hello' b'China'], shape=(2,), dtype=string)\ntf.Tensor([b'hello' b'Beijing'], shape=(2,), dtype=string)\n```\n\n```python\n#flat_map:将转换函数映射到数据集的每一个元素，并将嵌套的Dataset压平。\n\nds = tf.data.Dataset.from_tensor_slices([\"hello world\",\"hello China\",\"hello Beijing\"])\nds_flatmap = ds.flat_map(lambda x:tf.data.Dataset.from_tensor_slices(tf.strings.split(x,\" \")))\nfor x in ds_flatmap:\n    print(x)\n```\n\n```\ntf.Tensor(b'hello', shape=(), dtype=string)\ntf.Tensor(b'world', shape=(), dtype=string)\ntf.Tensor(b'hello', shape=(), dtype=string)\ntf.Tensor(b'China', shape=(), dtype=string)\ntf.Tensor(b'hello', shape=(), dtype=string)\ntf.Tensor(b'Beijing', shape=(), dtype=string)\n```\n\n```python\n\n```\n\n```python\n# interleave: 效果类似flat_map,但可以将不同来源的数据夹在一起。\n\nds = tf.data.Dataset.from_tensor_slices([\"hello world\",\"hello China\",\"hello Beijing\"])\nds_interleave = ds.interleave(lambda x:tf.data.Dataset.from_tensor_slices(tf.strings.split(x,\" \")))\nfor x in ds_interleave:\n    print(x)\n    \n```\n\n```\ntf.Tensor(b'hello', shape=(), dtype=string)\ntf.Tensor(b'hello', shape=(), dtype=string)\ntf.Tensor(b'hello', shape=(), dtype=string)\ntf.Tensor(b'world', shape=(), dtype=string)\ntf.Tensor(b'China', shape=(), dtype=string)\ntf.Tensor(b'Beijing', shape=(), dtype=string)\n```\n\n```python\n\n```\n\n```python\n#filter:过滤掉某些元素。\n\nds = tf.data.Dataset.from_tensor_slices([\"hello world\",\"hello China\",\"hello Beijing\"])\n#找出含有字母a或B的元素\nds_filter = ds.filter(lambda x: tf.strings.regex_full_match(x, \".*[a|B].*\"))\nfor x in ds_filter:\n    print(x)\n    \n```\n\n```\ntf.Tensor(b'hello China', shape=(), dtype=string)\ntf.Tensor(b'hello Beijing', shape=(), dtype=string)\n```\n\n```python\n\n```\n\n```python\n#zip:将两个长度相同的Dataset横向铰合。\n\nds1 = tf.data.Dataset.range(0,3)\nds2 = tf.data.Dataset.range(3,6)\nds3 = tf.data.Dataset.range(6,9)\nds_zip = tf.data.Dataset.zip((ds1,ds2,ds3))\nfor x,y,z in ds_zip:\n    print(x.numpy(),y.numpy(),z.numpy())\n\n```\n\n```\n0 3 6\n1 4 7\n2 5 8\n```\n\n```python\n#condatenate:将两个Dataset纵向连接。\n\nds1 = tf.data.Dataset.range(0,3)\nds2 = tf.data.Dataset.range(3,6)\nds_concat = tf.data.Dataset.concatenate(ds1,ds2)\nfor x in ds_concat:\n    print(x)\n```\n\n```\ntf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor(1, shape=(), dtype=int64)\ntf.Tensor(2, shape=(), dtype=int64)\ntf.Tensor(3, shape=(), dtype=int64)\ntf.Tensor(4, shape=(), dtype=int64)\ntf.Tensor(5, shape=(), dtype=int64)\n```\n\n```python\n#reduce:执行归并操作。\n\nds = tf.data.Dataset.from_tensor_slices([1,2,3,4,5.0])\nresult = ds.reduce(0.0,lambda x,y:tf.add(x,y))\nresult\n```\n\n```\n<tf.Tensor: shape=(), dtype=float32, numpy=15.0>\n```\n\n```python\n\n```\n\n```python\n#batch:构建批次，每次放一个批次。比原始数据增加一个维度。 其逆操作为unbatch。 \n\nds = tf.data.Dataset.range(12)\nds_batch = ds.batch(4)\nfor x in ds_batch:\n    print(x)\n```\n\n```\ntf.Tensor([0 1 2 3], shape=(4,), dtype=int64)\ntf.Tensor([4 5 6 7], shape=(4,), dtype=int64)\ntf.Tensor([ 8  9 10 11], shape=(4,), dtype=int64)\n```\n\n```python\n\n```\n\n```python\n#padded_batch:构建批次，类似batch, 但可以填充到相同的形状。\n\nelements = [[1, 2],[3, 4, 5],[6, 7],[8]]\nds = tf.data.Dataset.from_generator(lambda: iter(elements), tf.int32)\n\nds_padded_batch = ds.padded_batch(2,padded_shapes = [4,])\nfor x in ds_padded_batch:\n    print(x)    \n```\n\n```\ntf.Tensor(\n[[1 2 0 0]\n [3 4 5 0]], shape=(2, 4), dtype=int32)\ntf.Tensor(\n[[6 7 0 0]\n [8 0 0 0]], shape=(2, 4), dtype=int32)\n```\n\n```python\n\n```\n\n```python\n#window:构建滑动窗口，返回Dataset of Dataset.\n\nds = tf.data.Dataset.range(12)\n#window返回的是Dataset of Dataset,可以用flat_map压平\nds_window = ds.window(3, shift=1).flat_map(lambda x: x.batch(3,drop_remainder=True)) \nfor x in ds_window:\n    print(x)\n```\n\n```\ntf.Tensor([0 1 2], shape=(3,), dtype=int64)\ntf.Tensor([1 2 3], shape=(3,), dtype=int64)\ntf.Tensor([2 3 4], shape=(3,), dtype=int64)\ntf.Tensor([3 4 5], shape=(3,), dtype=int64)\ntf.Tensor([4 5 6], shape=(3,), dtype=int64)\ntf.Tensor([5 6 7], shape=(3,), dtype=int64)\ntf.Tensor([6 7 8], shape=(3,), dtype=int64)\ntf.Tensor([7 8 9], shape=(3,), dtype=int64)\ntf.Tensor([ 8  9 10], shape=(3,), dtype=int64)\ntf.Tensor([ 9 10 11], shape=(3,), dtype=int64)\n```\n\n```python\n\n```\n\n```python\n#shuffle:数据顺序洗牌。\n\nds = tf.data.Dataset.range(12)\nds_shuffle = ds.shuffle(buffer_size = 5)\nfor x in ds_shuffle:\n    print(x)\n    \n```\n\n```\ntf.Tensor(1, shape=(), dtype=int64)\ntf.Tensor(4, shape=(), dtype=int64)\ntf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor(6, shape=(), dtype=int64)\ntf.Tensor(5, shape=(), dtype=int64)\ntf.Tensor(2, shape=(), dtype=int64)\ntf.Tensor(7, shape=(), dtype=int64)\ntf.Tensor(11, shape=(), dtype=int64)\ntf.Tensor(3, shape=(), dtype=int64)\ntf.Tensor(9, shape=(), dtype=int64)\ntf.Tensor(10, shape=(), dtype=int64)\ntf.Tensor(8, shape=(), dtype=int64)\n```\n\n```python\n\n```\n\n```python\n#repeat:重复数据若干次，不带参数时，重复无数次。\n\nds = tf.data.Dataset.range(3)\nds_repeat = ds.repeat(3)\nfor x in ds_repeat:\n    print(x)\n```\n\n```\ntf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor(1, shape=(), dtype=int64)\ntf.Tensor(2, shape=(), dtype=int64)\ntf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor(1, shape=(), dtype=int64)\ntf.Tensor(2, shape=(), dtype=int64)\ntf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor(1, shape=(), dtype=int64)\ntf.Tensor(2, shape=(), dtype=int64)\n```\n\n```python\n#shard:采样，从某个位置开始隔固定距离采样一个元素。\n\nds = tf.data.Dataset.range(12)\nds_shard = ds.shard(3,index = 1)\n\nfor x in ds_shard:\n    print(x)\n```\n\n```\ntf.Tensor(1, shape=(), dtype=int64)\ntf.Tensor(4, shape=(), dtype=int64)\ntf.Tensor(7, shape=(), dtype=int64)\ntf.Tensor(10, shape=(), dtype=int64)\n```\n\n```python\n#take:采样，从开始位置取前几个元素。\n\nds = tf.data.Dataset.range(12)\nds_take = ds.take(3)\n\nlist(ds_take.as_numpy_iterator())\n\n```\n\n```\n[0, 1, 2]\n```\n\n```python\n\n```\n\n```python\n\n```\n\n### 三，提升管道性能\n\n\n训练深度学习模型常常会非常耗时。\n\n模型训练的耗时主要来自于两个部分，一部分来自**数据准备**，另一部分来自**参数迭代**。\n\n参数迭代过程的耗时通常依赖于GPU来提升。\n\n而数据准备过程的耗时则可以通过构建高效的数据管道进行提升。\n\n以下是一些构建高效数据管道的建议。\n\n* 1，使用 prefetch 方法让数据准备和参数迭代两个过程相互并行。\n\n* 2，使用 interleave 方法可以让数据读取过程多进程执行,并将不同来源数据夹在一起。\n\n* 3，使用 map 时设置num_parallel_calls 让数据转换过程多进程执行。\n\n* 4，使用 cache 方法让数据在第一个epoch后缓存到内存中，仅限于数据集不大情形。\n\n* 5，使用 map转换时，先batch, 然后采用向量化的转换方法对每个batch进行转换。\n\n```python\n\n```\n\n**1，使用 prefetch 方法让数据准备和参数迭代两个过程相互并行。**\n\n```python\nimport tensorflow as tf\n\n#打印时间分割线\n@tf.function\ndef printbar():\n    ts = tf.timestamp()\n    today_ts = ts%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8,end = \"\")\n    tf.print(timestring)\n    \n```\n\n```python\nimport time\n\n# 数据准备和参数迭代两个过程默认情况下是串行的。\n\n# 模拟数据准备\ndef generator():\n    for i in range(10):\n        #假设每次准备数据需要2s\n        time.sleep(2) \n        yield i \nds = tf.data.Dataset.from_generator(generator,output_types = (tf.int32))\n\n# 模拟参数迭代\ndef train_step():\n    #假设每一步训练需要1s\n    time.sleep(1) \n    \n```\n\n```python\n# 训练过程预计耗时 10*2+10*1 = 30s\nprintbar()\ntf.print(tf.constant(\"start training...\"))\nfor x in ds:\n    train_step()  \nprintbar()\ntf.print(tf.constant(\"end training...\"))\n```\n\n```python\n# 使用 prefetch 方法让数据准备和参数迭代两个过程相互并行。\n\n# 训练过程预计耗时 max(10*2,10*1) = 20s\nprintbar()\ntf.print(tf.constant(\"start training with prefetch...\"))\n\n# tf.data.experimental.AUTOTUNE 可以让程序自动选择合适的参数\nfor x in ds.prefetch(buffer_size = tf.data.experimental.AUTOTUNE):\n    train_step()  \n    \nprintbar()\ntf.print(tf.constant(\"end training...\"))\n\n```\n\n```python\n\n```\n\n**2，使用 interleave 方法可以让数据读取过程多进程执行,并将不同来源数据夹在一起。**\n\n```python\nds_files = tf.data.Dataset.list_files(\"./data/titanic/*.csv\")\nds = ds_files.flat_map(lambda x:tf.data.TextLineDataset(x).skip(1))\nfor line in ds.take(4):\n    print(line)\n```\n\n```\ntf.Tensor(b'493,0,1,\"Molson, Mr. Harry Markland\",male,55.0,0,0,113787,30.5,C30,S', shape=(), dtype=string)\ntf.Tensor(b'53,1,1,\"Harper, Mrs. Henry Sleeper (Myna Haxtun)\",female,49.0,1,0,PC 17572,76.7292,D33,C', shape=(), dtype=string)\ntf.Tensor(b'388,1,2,\"Buss, Miss. Kate\",female,36.0,0,0,27849,13.0,,S', shape=(), dtype=string)\ntf.Tensor(b'192,0,2,\"Carbines, Mr. William\",male,19.0,0,0,28424,13.0,,S', shape=(), dtype=string)\n```\n\n```python\nds_files = tf.data.Dataset.list_files(\"./data/titanic/*.csv\")\nds = ds_files.interleave(lambda x:tf.data.TextLineDataset(x).skip(1))\nfor line in ds.take(8):\n    print(line)\n```\n\n```\ntf.Tensor(b'181,0,3,\"Sage, Miss. Constance Gladys\",female,,8,2,CA. 2343,69.55,,S', shape=(), dtype=string)\ntf.Tensor(b'493,0,1,\"Molson, Mr. Harry Markland\",male,55.0,0,0,113787,30.5,C30,S', shape=(), dtype=string)\ntf.Tensor(b'405,0,3,\"Oreskovic, Miss. Marija\",female,20.0,0,0,315096,8.6625,,S', shape=(), dtype=string)\ntf.Tensor(b'53,1,1,\"Harper, Mrs. Henry Sleeper (Myna Haxtun)\",female,49.0,1,0,PC 17572,76.7292,D33,C', shape=(), dtype=string)\ntf.Tensor(b'635,0,3,\"Skoog, Miss. Mabel\",female,9.0,3,2,347088,27.9,,S', shape=(), dtype=string)\ntf.Tensor(b'388,1,2,\"Buss, Miss. Kate\",female,36.0,0,0,27849,13.0,,S', shape=(), dtype=string)\ntf.Tensor(b'701,1,1,\"Astor, Mrs. John Jacob (Madeleine Talmadge Force)\",female,18.0,1,0,PC 17757,227.525,C62 C64,C', shape=(), dtype=string)\ntf.Tensor(b'192,0,2,\"Carbines, Mr. William\",male,19.0,0,0,28424,13.0,,S', shape=(), dtype=string)\n```\n\n```python\n\n```\n\n**3，使用 map 时设置num_parallel_calls 让数据转换过程多进行执行。**\n\n```python\nds = tf.data.Dataset.list_files(\"./data/cifar2/train/*/*.jpg\")\ndef load_image(img_path,size = (32,32)):\n    label = 1 if tf.strings.regex_full_match(img_path,\".*/automobile/.*\") else 0\n    img = tf.io.read_file(img_path)\n    img = tf.image.decode_jpeg(img) #注意此处为jpeg格式\n    img = tf.image.resize(img,size)\n    return(img,label)\n```\n\n```python\n#单进程转换\nprintbar()\ntf.print(tf.constant(\"start transformation...\"))\n\nds_map = ds.map(load_image)\nfor _ in ds_map:\n    pass\n\nprintbar()\ntf.print(tf.constant(\"end transformation...\"))\n```\n\n```python\n#多进程转换\nprintbar()\ntf.print(tf.constant(\"start parallel transformation...\"))\n\nds_map_parallel = ds.map(load_image,num_parallel_calls = tf.data.experimental.AUTOTUNE)\nfor _ in ds_map_parallel:\n    pass\n\nprintbar()\ntf.print(tf.constant(\"end parallel transformation...\"))\n```\n\n```python\n\n```\n\n**4，使用 cache 方法让数据在第一个epoch后缓存到内存中，仅限于数据集不大情形。**\n\n```python\nimport time\n\n# 模拟数据准备\ndef generator():\n    for i in range(5):\n        #假设每次准备数据需要2s\n        time.sleep(2) \n        yield i \nds = tf.data.Dataset.from_generator(generator,output_types = (tf.int32))\n\n# 模拟参数迭代\ndef train_step():\n    #假设每一步训练需要0s\n    pass\n\n# 训练过程预计耗时 (5*2+5*0)*3 = 30s\nprintbar()\ntf.print(tf.constant(\"start training...\"))\nfor epoch in tf.range(3):\n    for x in ds:\n        train_step()  \n    printbar()\n    tf.print(\"epoch =\",epoch,\" ended\")\nprintbar()\ntf.print(tf.constant(\"end training...\"))\n\n```\n\n```python\nimport time\n\n# 模拟数据准备\ndef generator():\n    for i in range(5):\n        #假设每次准备数据需要2s\n        time.sleep(2) \n        yield i \n\n# 使用 cache 方法让数据在第一个epoch后缓存到内存中，仅限于数据集不大情形。\nds = tf.data.Dataset.from_generator(generator,output_types = (tf.int32)).cache()\n\n# 模拟参数迭代\ndef train_step():\n    #假设每一步训练需要0s\n    time.sleep(0) \n\n# 训练过程预计耗时 (5*2+5*0)+(5*0+5*0)*2 = 10s\nprintbar()\ntf.print(tf.constant(\"start training...\"))\nfor epoch in tf.range(3):\n    for x in ds:\n        train_step()  \n    printbar()\n    tf.print(\"epoch =\",epoch,\" ended\")\nprintbar()\ntf.print(tf.constant(\"end training...\"))\n```\n\n```python\n\n```\n\n**5，使用 map转换时，先batch, 然后采用向量化的转换方法对每个batch进行转换。**\n\n```python\n#先map后batch\nds = tf.data.Dataset.range(100000)\nds_map_batch = ds.map(lambda x:x**2).batch(20)\n\nprintbar()\ntf.print(tf.constant(\"start scalar transformation...\"))\nfor x in ds_map_batch:\n    pass\nprintbar()\ntf.print(tf.constant(\"end scalar transformation...\"))\n\n```\n\n```python\n#先batch后map\nds = tf.data.Dataset.range(100000)\nds_batch_map = ds.batch(20).map(lambda x:x**2)\n\nprintbar()\ntf.print(tf.constant(\"start vector transformation...\"))\nfor x in ds_batch_map:\n    pass\nprintbar()\ntf.print(tf.constant(\"end vector transformation...\"))\n\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n\n```python\n\n```\n"
  },
  {
    "path": "5-2,特征列feature_column.md",
    "content": "# 5-2,特征列feature_column\n\n特征列 通常用于对结构化数据实施特征工程时候使用，图像或者文本数据一般不会用到特征列。\n\n\n### 一，特征列用法概述\n\n\n使用特征列可以将类别特征转换为one-hot编码特征，将连续特征构建分桶特征，以及对多个特征生成交叉特征等等。\n\n\n要创建特征列，请调用 tf.feature_column 模块的函数。该模块中常用的九个函数如下图所示，所有九个函数都会返回一个 Categorical-Column 或一个 \nDense-Column 对象，但却不会返回 bucketized_column，后者继承自这两个类。\n\n注意：所有的Catogorical Column类型最终都要通过indicator_column转换成Dense Column类型才能传入模型！\n\n\n![](./data/特征列9种.jpg)\n\n<!-- #region -->\n* numeric_column 数值列，最常用。\n\n\n* bucketized_column 分桶列，由数值列生成，可以由一个数值列出多个特征，one-hot编码。\n\n\n* categorical_column_with_identity 分类标识列，one-hot编码，相当于分桶列每个桶为1个整数的情况。\n\n\n* categorical_column_with_vocabulary_list 分类词汇列，one-hot编码，由list指定词典。\n\n\n* categorical_column_with_vocabulary_file 分类词汇列，由文件file指定词典。\n\n\n* categorical_column_with_hash_bucket 哈希列，整数或词典较大时采用。\n\n\n* indicator_column 指标列，由Categorical Column生成，one-hot编码\n\n\n* embedding_column 嵌入列，由Categorical Column生成，嵌入矢量分布参数需要学习。嵌入矢量维数建议取类别数量的 4 次方根。\n\n\n* crossed_column 交叉列，可以由除categorical_column_with_hash_bucket的任意分类列构成。\n<!-- #endregion -->\n\n### 二，特征列使用范例\n\n\n以下是一个使用特征列解决Titanic生存问题的完整范例。\n\n```python\nimport datetime\nimport numpy as np\nimport pandas as pd\nfrom matplotlib import pyplot as plt\nimport tensorflow as tf\nfrom tensorflow.keras import layers,models\n\n\n#打印日志\ndef printlog(info):\n    nowtime = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')\n    print(\"\\n\"+\"==========\"*8 + \"%s\"%nowtime)\n    print(info+'...\\n\\n')\n\n\n    \n```\n\n```python\n#================================================================================\n# 一，构建数据管道\n#================================================================================\nprintlog(\"step1: prepare dataset...\")\n\n\ndftrain_raw = pd.read_csv(\"./data/titanic/train.csv\")\ndftest_raw = pd.read_csv(\"./data/titanic/test.csv\")\n\ndfraw = pd.concat([dftrain_raw,dftest_raw])\n\ndef prepare_dfdata(dfraw):\n    dfdata = dfraw.copy()\n    dfdata.columns = [x.lower() for x in dfdata.columns]\n    dfdata = dfdata.rename(columns={'survived':'label'})\n    dfdata = dfdata.drop(['passengerid','name'],axis = 1)\n    for col,dtype in dict(dfdata.dtypes).items():\n        # 判断是否包含缺失值\n        if dfdata[col].hasnans:\n            # 添加标识是否缺失列\n            dfdata[col + '_nan'] = pd.isna(dfdata[col]).astype('int32')\n            # 填充\n            if dtype not in [np.object,np.str,np.unicode]:\n                dfdata[col].fillna(dfdata[col].mean(),inplace = True)\n            else:\n                dfdata[col].fillna('',inplace = True)\n    return(dfdata)\n\ndfdata = prepare_dfdata(dfraw)\ndftrain = dfdata.iloc[0:len(dftrain_raw),:]\ndftest = dfdata.iloc[len(dftrain_raw):,:]\n\n\n\n# 从 dataframe 导入数据 \ndef df_to_dataset(df, shuffle=True, batch_size=32):\n    dfdata = df.copy()\n    if 'label' not in dfdata.columns:\n        ds = tf.data.Dataset.from_tensor_slices(dfdata.to_dict(orient = 'list'))\n    else: \n        labels = dfdata.pop('label')\n        ds = tf.data.Dataset.from_tensor_slices((dfdata.to_dict(orient = 'list'), labels))  \n    if shuffle:\n        ds = ds.shuffle(buffer_size=len(dfdata))\n    ds = ds.batch(batch_size)\n    return ds\n\nds_train = df_to_dataset(dftrain)\nds_test = df_to_dataset(dftest)\n```\n\n```python\n#================================================================================\n# 二，定义特征列\n#================================================================================\nprintlog(\"step2: make feature columns...\")\n\nfeature_columns = []\n\n# 数值列\nfor col in ['age','fare','parch','sibsp'] + [\n    c for c in dfdata.columns if c.endswith('_nan')]:\n    feature_columns.append(tf.feature_column.numeric_column(col))\n\n# 分桶列\nage = tf.feature_column.numeric_column('age')\nage_buckets = tf.feature_column.bucketized_column(age, \n             boundaries=[18, 25, 30, 35, 40, 45, 50, 55, 60, 65])\nfeature_columns.append(age_buckets)\n\n# 类别列\n# 注意：所有的Catogorical Column类型最终都要通过indicator_column转换成Dense Column类型才能传入模型！！\nsex = tf.feature_column.indicator_column(\n      tf.feature_column.categorical_column_with_vocabulary_list(\n      key='sex',vocabulary_list=[\"male\", \"female\"]))\nfeature_columns.append(sex)\n\npclass = tf.feature_column.indicator_column(\n      tf.feature_column.categorical_column_with_vocabulary_list(\n      key='pclass',vocabulary_list=[1,2,3]))\nfeature_columns.append(pclass)\n\nticket = tf.feature_column.indicator_column(\n     tf.feature_column.categorical_column_with_hash_bucket('ticket',3))\nfeature_columns.append(ticket)\n\nembarked = tf.feature_column.indicator_column(\n      tf.feature_column.categorical_column_with_vocabulary_list(\n      key='embarked',vocabulary_list=['S','C','B']))\nfeature_columns.append(embarked)\n\n# 嵌入列\ncabin = tf.feature_column.embedding_column(\n    tf.feature_column.categorical_column_with_hash_bucket('cabin',32),2)\nfeature_columns.append(cabin)\n\n# 交叉列\npclass_cate = tf.feature_column.categorical_column_with_vocabulary_list(\n          key='pclass',vocabulary_list=[1,2,3])\n\ncrossed_feature = tf.feature_column.indicator_column(\n    tf.feature_column.crossed_column([age_buckets, pclass_cate],hash_bucket_size=15))\n\nfeature_columns.append(crossed_feature)\n\n```\n\n```python\n#================================================================================\n# 三，定义模型\n#================================================================================\nprintlog(\"step3: define model...\")\n\ntf.keras.backend.clear_session()\nmodel = tf.keras.Sequential([\n  layers.DenseFeatures(feature_columns), #将特征列放入到tf.keras.layers.DenseFeatures中!!!\n  layers.Dense(64, activation='relu'),\n  layers.Dense(64, activation='relu'),\n  layers.Dense(1, activation='sigmoid')\n])\n\n```\n\n```python\n#================================================================================\n# 四，训练模型\n#================================================================================\nprintlog(\"step4: train model...\")\n\nmodel.compile(optimizer='adam',\n              loss='binary_crossentropy',\n              metrics=['accuracy'])\n\nhistory = model.fit(ds_train,\n          validation_data=ds_test,\n          epochs=10)\n```\n\n```python\n#================================================================================\n# 五，评估模型\n#================================================================================\nprintlog(\"step5: eval model...\")\n\nmodel.summary()\n\n\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nimport matplotlib.pyplot as plt\n\ndef plot_metric(history, metric):\n    train_metrics = history.history[metric]\n    val_metrics = history.history['val_'+metric]\n    epochs = range(1, len(train_metrics) + 1)\n    plt.plot(epochs, train_metrics, 'bo--')\n    plt.plot(epochs, val_metrics, 'ro-')\n    plt.title('Training and validation '+ metric)\n    plt.xlabel(\"Epochs\")\n    plt.ylabel(metric)\n    plt.legend([\"train_\"+metric, 'val_'+metric])\n    plt.show()\n\nplot_metric(history,\"accuracy\")\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ndense_features (DenseFeature multiple                  64        \n_________________________________________________________________\ndense (Dense)                multiple                  3008      \n_________________________________________________________________\ndense_1 (Dense)              multiple                  4160      \n_________________________________________________________________\ndense_2 (Dense)              multiple                  65        \n=================================================================\nTotal params: 7,297\nTrainable params: 7,297\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n\n![](./data/5-2-01-模型评估.jpg)\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "5-3,激活函数activation.md",
    "content": "# 5-3,激活函数activation\n\n激活函数在深度学习中扮演着非常重要的角色，它给网络赋予了非线性，从而使得神经网络能够拟合任意复杂的函数。\n\n如果没有激活函数，无论多复杂的网络，都等价于单一的线性变换，无法对非线性函数进行拟合。\n\n目前，深度学习中最流行的激活函数为 relu, 但也有些新推出的激活函数，例如 swish、GELU 据称效果优于relu激活函数。\n\n激活函数的综述介绍可以参考下面两篇文章。\n\n[《一文概览深度学习中的激活函数》](https://zhuanlan.zhihu.com/p/98472075)\n\nhttps://zhuanlan.zhihu.com/p/98472075\n\n[《从ReLU到GELU,一文概览神经网络中的激活函数》](https://zhuanlan.zhihu.com/p/98863801)\n\nhttps://zhuanlan.zhihu.com/p/98863801\n\n\n\n### 一，常用激活函数\n\n\n* tf.nn.sigmoid：将实数压缩到0到1之间，一般只在二分类的最后输出层使用。主要缺陷为存在梯度消失问题，计算复杂度高，输出不以0为中心。\n\n![](./data/sigmoid.png)\n\n* tf.nn.softmax：sigmoid的多分类扩展，一般只在多分类问题的最后输出层使用。\n\n![](./data/softmax说明.jpg)\n\n* tf.nn.tanh：将实数压缩到-1到1之间，输出期望为0。主要缺陷为存在梯度消失问题，计算复杂度高。\n\n![](./data/tanh.png)\n\n* tf.nn.relu：修正线性单元，最流行的激活函数。一般隐藏层使用。主要缺陷是：输出不以0为中心，输入小于0时存在梯度消失问题(死亡relu)。\n\n![](./data/relu.png)\n\n* tf.nn.leaky_relu：对修正线性单元的改进，解决了死亡relu问题。\n\n![](./data/leaky_relu.png)\n\n* tf.nn.elu：指数线性单元。对relu的改进，能够缓解死亡relu问题。\n\n![](./data/elu.png)\n\n* tf.nn.selu：扩展型指数线性单元。在权重用tf.keras.initializers.lecun_normal初始化前提下能够对神经网络进行自归一化。不可能出现梯度爆炸或者梯度消失问题。需要和Dropout的变种AlphaDropout一起使用。\n\n![](./data/selu.png)\n\n* tf.nn.swish：自门控激活函数。谷歌出品，相关研究指出用swish替代relu将获得轻微效果提升。\n\n![](./data/swish.png)\n\n* gelu：高斯误差线性单元激活函数。在Transformer中表现最好。tf.nn模块尚没有实现该函数。\n\n![](./data/gelu.png)\n\n```python\n\n```\n\n### 二，在模型中使用激活函数\n\n\n在keras模型中使用激活函数一般有两种方式，一种是作为某些层的activation参数指定，另一种是显式添加layers.Activation激活层。\n\n```python\nimport numpy as np\nimport pandas as pd\nimport tensorflow as tf\nfrom tensorflow.keras import layers,models\n\ntf.keras.backend.clear_session()\n\nmodel = models.Sequential()\nmodel.add(layers.Dense(32,input_shape = (None,16),activation = tf.nn.relu)) #通过activation参数指定\nmodel.add(layers.Dense(10))\nmodel.add(layers.Activation(tf.nn.softmax))  # 显式添加layers.Activation激活层\nmodel.summary()\n\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n\n```python\n\n```\n"
  },
  {
    "path": "5-4,模型层layers.md",
    "content": "# 5-4,模型层layers\n\n深度学习模型一般由各种模型层组合而成。\n\ntf.keras.layers内置了非常丰富的各种功能的模型层。例如，\n\nlayers.Dense,layers.Flatten,layers.Input,layers.DenseFeature,layers.Dropout\n\nlayers.Conv2D,layers.MaxPooling2D,layers.Conv1D\n\nlayers.Embedding,layers.GRU,layers.LSTM,layers.Bidirectional等等。\n\n如果这些内置模型层不能够满足需求，我们也可以通过编写tf.keras.Lambda匿名模型层或继承tf.keras.layers.Layer基类构建自定义的模型层。\n\n其中tf.keras.Lambda匿名模型层只适用于构造没有学习参数的模型层。\n\n```python\n\n```\n\n### 一，内置模型层\n\n\n一些常用的内置模型层简单介绍如下。\n\n**基础层**\n\n* Dense：密集连接层。参数个数 = 输入层特征数× 输出层特征数(weight)＋ 输出层特征数(bias)\n\n* Activation：激活函数层。一般放在Dense层后面，等价于在Dense层中指定activation。\n\n* Dropout：随机置零层。训练期间以一定几率将输入置0，一种正则化手段。\n\n* BatchNormalization：批标准化层。通过线性变换将输入批次缩放平移到稳定的均值和标准差。可以增强模型对输入不同分布的适应性，加快模型训练速度，有轻微正则化效果。一般在激活函数之前使用。\n\n* SpatialDropout2D：空间随机置零层。训练期间以一定几率将整个特征图置0，一种正则化手段，有利于避免特征图之间过高的相关性。\n\n* Input：输入层。通常使用Functional API方式构建模型时作为第一层。\n\n* DenseFeature：特征列接入层，用于接收一个特征列列表并产生一个密集连接层。\n\n* Flatten：压平层，用于将多维张量压成一维。\n\n* Reshape：形状重塑层，改变输入张量的形状。\n\n* Concatenate：拼接层，将多个张量在某个维度上拼接。\n\n* Add：加法层。\n\n* Subtract： 减法层。\n\n* Maximum：取最大值层。\n\n* Minimum：取最小值层。\n\n\n**卷积网络相关层**\n\n* Conv1D：普通一维卷积，常用于文本。参数个数 = 输入通道数×卷积核尺寸(如3)×卷积核个数\n\n* Conv2D：普通二维卷积，常用于图像。参数个数 = 输入通道数×卷积核尺寸(如3乘3)×卷积核个数\n\n* Conv3D：普通三维卷积，常用于视频。参数个数 = 输入通道数×卷积核尺寸(如3乘3乘3)×卷积核个数\n\n* SeparableConv2D：二维深度可分离卷积层。不同于普通卷积同时对区域和通道操作，深度可分离卷积先操作区域，再操作通道。即先对每个通道做独立卷积操作区域，再用1乘1卷积跨通道组合操作通道。参数个数 = 输入通道数×卷积核尺寸 + 输入通道数×1×1×输出通道数。深度可分离卷积的参数数量一般远小于普通卷积，效果一般也更好。\n\n* DepthwiseConv2D：二维深度卷积层。仅有SeparableConv2D前半部分操作，即只操作区域，不操作通道，一般输出通道数和输入通道数相同，但也可以通过设置depth_multiplier让输出通道为输入通道的若干倍数。输出通道数 = 输入通道数 × depth_multiplier。参数个数 = 输入通道数×卷积核尺寸× depth_multiplier。\n\n* Conv2DTranspose：二维卷积转置层，俗称反卷积层。并非卷积的逆操作，但在卷积核相同的情况下，当其输入尺寸是卷积操作输出尺寸的情况下，卷积转置的输出尺寸恰好是卷积操作的输入尺寸。\n\n* LocallyConnected2D: 二维局部连接层。类似Conv2D，唯一的差别是没有空间上的权值共享，所以其参数个数远高于二维卷积。\n\n* MaxPool2D: 二维最大池化层。也称作下采样层。池化层无可训练参数，主要作用是降维。\n\n* AveragePooling2D: 二维平均池化层。\n\n* GlobalMaxPool2D: 全局最大池化层。每个通道仅保留一个值。一般从卷积层过渡到全连接层时使用，是Flatten的替代方案。\n\n* GlobalAvgPool2D: 全局平均池化层。每个通道仅保留一个值。\n\n\n**循环网络相关层**\n\n* Embedding：嵌入层。一种比Onehot更加有效的对离散特征进行编码的方法。一般用于将输入中的单词映射为稠密向量。嵌入层的参数需要学习。\n\n* LSTM：长短记忆循环网络层。最普遍使用的循环网络层。具有携带轨道，遗忘门，更新门，输出门。可以较为有效地缓解梯度消失问题，从而能够适用长期依赖问题。设置return_sequences = True时可以返回各个中间步骤输出，否则只返回最终输出。\n\n* GRU：门控循环网络层。LSTM的低配版，不具有携带轨道，参数数量少于LSTM，训练速度更快。\n\n* SimpleRNN：简单循环网络层。容易存在梯度消失，不能够适用长期依赖问题。一般较少使用。\n\n* ConvLSTM2D：卷积长短记忆循环网络层。结构上类似LSTM，但对输入的转换操作和对状态的转换操作都是卷积运算。\n\n* Bidirectional：双向循环网络包装器。可以将LSTM，GRU等层包装成双向循环网络。从而增强特征提取能力。\n\n* RNN：RNN基本层。接受一个循环网络单元或一个循环单元列表，通过调用tf.keras.backend.rnn函数在序列上进行迭代从而转换成循环网络层。\n\n* LSTMCell：LSTM单元。和LSTM在整个序列上迭代相比，它仅在序列上迭代一步。可以简单理解LSTM即RNN基本层包裹LSTMCell。\n\n* GRUCell：GRU单元。和GRU在整个序列上迭代相比，它仅在序列上迭代一步。\n\n* SimpleRNNCell：SimpleRNN单元。和SimpleRNN在整个序列上迭代相比，它仅在序列上迭代一步。\n\n* AbstractRNNCell：抽象RNN单元。通过对它的子类化用户可以自定义RNN单元，再通过RNN基本层的包裹实现用户自定义循环网络层。\n\n* Attention：Dot-product类型注意力机制层。可以用于构建注意力模型。\n\n* AdditiveAttention：Additive类型注意力机制层。可以用于构建注意力模型。\n\n* TimeDistributed：时间分布包装器。包装后可以将Dense、Conv2D等作用到每一个时间片段上。\n\n```python\n\n```\n\n### 二，自定义模型层\n\n\n如果自定义模型层没有需要被训练的参数，一般推荐使用Lamda层实现。\n\n如果自定义模型层有需要被训练的参数，则可以通过对Layer基类子类化实现。\n\nLambda层由于没有需要被训练的参数，只需要定义正向传播逻辑即可，使用比Layer基类子类化更加简单。\n\nLambda层的正向逻辑可以使用Python的lambda函数来表达，也可以用def关键字定义函数来表达。\n\n```python\nimport tensorflow as tf\nfrom tensorflow.keras import layers,models,regularizers\n\nmypower = layers.Lambda(lambda x:tf.math.pow(x,2))\nmypower(tf.range(5))\n```\n\n```\n<tf.Tensor: shape=(5,), dtype=int32, numpy=array([ 0,  1,  4,  9, 16], dtype=int32)>\n```\n\n\nLayer的子类化一般需要重新实现初始化方法，Build方法和Call方法。下面是一个简化的线性层的范例，类似Dense.\n\n```python\nclass Linear(layers.Layer):\n    def __init__(self, units=32, **kwargs):\n        super(Linear, self).__init__(**kwargs)\n        self.units = units\n    \n    #build方法一般定义Layer需要被训练的参数。    \n    def build(self, input_shape): \n        self.w = self.add_weight(\"w\",shape=(input_shape[-1], self.units),\n                                 initializer='random_normal',\n                                 trainable=True) #注意必须要有参数名称\"w\",否则会报错\n        self.b = self.add_weight(\"b\",shape=(self.units,),\n                                 initializer='random_normal',\n                                 trainable=True)\n        super(Linear,self).build(input_shape) # 相当于设置self.built = True\n\n    #call方法一般定义正向传播运算逻辑，__call__方法调用了它。  \n    @tf.function\n    def call(self, inputs): \n        return tf.matmul(inputs, self.w) + self.b\n    \n    #如果要让自定义的Layer通过Functional API 组合成模型时可以被保存成h5模型，需要自定义get_config方法。\n    def get_config(self):  \n        config = super(Linear, self).get_config()\n        config.update({'units': self.units})\n        return config\n\n```\n\n```python\nlinear = Linear(units = 8)\nprint(linear.built)\n#指定input_shape，显式调用build方法，第0维代表样本数量，用None填充\nlinear.build(input_shape = (None,16)) \nprint(linear.built)\n```\n\n```\nFalse\nTrue\n```\n\n```python\nlinear = Linear(units = 8)\nprint(linear.built)\nlinear.build(input_shape = (None,16)) \nprint(linear.compute_output_shape(input_shape = (None,16)))\n```\n\n```\nFalse\n(None, 8)\n```\n\n```python\nlinear = Linear(units = 16)\nprint(linear.built)\n#如果built = False，调用__call__时会先调用build方法, 再调用call方法。\nlinear(tf.random.uniform((100,64))) \nprint(linear.built)\nconfig = linear.get_config()\nprint(config)\n```\n\n```\nFalse\nTrue\n{'name': 'linear_3', 'trainable': True, 'dtype': 'float32', 'units': 16}\n```\n\n```python\ntf.keras.backend.clear_session()\n\nmodel = models.Sequential()\n#注意该处的input_shape会被模型加工，无需使用None代表样本数量维\nmodel.add(Linear(units = 1,input_shape = (2,)))  \nprint(\"model.input_shape: \",model.input_shape)\nprint(\"model.output_shape: \",model.output_shape)\nmodel.summary()\n```\n\n```\nmodel.input_shape:  (None, 2)\nmodel.output_shape:  (None, 1)\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nlinear (Linear)              (None, 1)                 3         \n=================================================================\nTotal params: 3\nTrainable params: 3\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\nmodel.compile(optimizer = \"sgd\",loss = \"mse\",metrics=[\"mae\"])\nprint(model.predict(tf.constant([[3.0,2.0],[4.0,5.0]])))\n\n\n# 保存成 h5模型\nmodel.save(\"./data/linear_model.h5\",save_format = \"h5\")\nmodel_loaded_keras = tf.keras.models.load_model(\n    \"./data/linear_model.h5\",custom_objects={\"Linear\":Linear})\nprint(model_loaded_keras.predict(tf.constant([[3.0,2.0],[4.0,5.0]])))\n\n\n# 保存成 tf模型\nmodel.save(\"./data/linear_model\",save_format = \"tf\")\nmodel_loaded_tf = tf.keras.models.load_model(\"./data/linear_model\")\nprint(model_loaded_tf.predict(tf.constant([[3.0,2.0],[4.0,5.0]])))\n\n```\n\n```\n[[-0.04092304]\n [-0.06150477]]\n[[-0.04092304]\n [-0.06150477]]\nINFO:tensorflow:Assets written to: ./data/linear_model/assets\n[[-0.04092304]\n [-0.06150477]]\n```\n\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "5-5,损失函数losses.md",
    "content": "# 5-5,损失函数losses\n\n一般来说，监督学习的目标函数由损失函数和正则化项组成。（Objective = Loss + Regularization）\n\n对于keras模型，目标函数中的正则化项一般在各层中指定，例如使用Dense的 kernel_regularizer 和 bias_regularizer等参数指定权重使用l1或者l2正则化项，此外还可以用kernel_constraint 和 bias_constraint等参数约束权重的取值范围，这也是一种正则化手段。\n\n损失函数在模型编译时候指定。对于回归模型，通常使用的损失函数是均方损失函数 mean_squared_error。\n\n对于二分类模型，通常使用的是二元交叉熵损失函数 binary_crossentropy。\n\n对于多分类模型，如果label是one-hot编码的，则使用类别交叉熵损失函数 categorical_crossentropy。如果label是类别序号编码的，则需要使用稀疏类别交叉熵损失函数 sparse_categorical_crossentropy。\n\n如果有需要，也可以自定义损失函数，自定义损失函数需要接收两个张量y_true,y_pred作为输入参数，并输出一个标量作为损失函数值。\n\n\n```python\nimport numpy as np\nimport pandas as pd\nimport tensorflow as tf\nfrom tensorflow.keras import layers,models,losses,regularizers,constraints\n```\n\n### 一，损失函数和正则化项\n\n```python\ntf.keras.backend.clear_session()\n\nmodel = models.Sequential()\nmodel.add(layers.Dense(64, input_dim=64,\n                kernel_regularizer=regularizers.l2(0.01), \n                activity_regularizer=regularizers.l1(0.01),\n                kernel_constraint = constraints.MaxNorm(max_value=2, axis=0))) \nmodel.add(layers.Dense(10,\n        kernel_regularizer=regularizers.l1_l2(0.01,0.01),activation = \"sigmoid\"))\nmodel.compile(optimizer = \"rmsprop\",\n        loss = \"binary_crossentropy\",metrics = [\"AUC\"])\nmodel.summary()\n\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ndense (Dense)                (None, 64)                4160      \n_________________________________________________________________\ndense_1 (Dense)              (None, 10)                650       \n=================================================================\nTotal params: 4,810\nTrainable params: 4,810\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n\n### 二，内置损失函数\n\n\n内置的损失函数一般有类的实现和函数的实现两种形式。\n\n如：CategoricalCrossentropy 和 categorical_crossentropy 都是类别交叉熵损失函数，前者是类的实现形式，后者是函数的实现形式。\n\n常用的一些内置损失函数说明如下。\n\n* mean_squared_error（均方误差损失，用于回归，简写为 mse, 类与函数实现形式分别为 MeanSquaredError 和 MSE）\n\n* mean_absolute_error (平均绝对值误差损失，用于回归，简写为 mae, 类与函数实现形式分别为 MeanAbsoluteError 和 MAE)\n\n* mean_absolute_percentage_error (平均百分比误差损失，用于回归，简写为 mape, 类与函数实现形式分别为 MeanAbsolutePercentageError 和 MAPE)\n\n* Huber(Huber损失，只有类实现形式，用于回归，介于mse和mae之间，对异常值比较鲁棒，相对mse有一定的优势)\n\n* binary_crossentropy(二元交叉熵，用于二分类，类实现形式为 BinaryCrossentropy)\n\n* categorical_crossentropy(类别交叉熵，用于多分类，要求label为onehot编码，类实现形式为 CategoricalCrossentropy)\n\n* sparse_categorical_crossentropy(稀疏类别交叉熵，用于多分类，要求label为序号编码形式，类实现形式为 SparseCategoricalCrossentropy)\n\n* hinge(合页损失函数，用于二分类，最著名的应用是作为支持向量机SVM的损失函数，类实现形式为 Hinge)\n\n* kld(相对熵损失，也叫KL散度，常用于最大期望算法EM的损失函数，两个概率分布差异的一种信息度量。类与函数实现形式分别为 KLDivergence 或 KLD)\n\n* cosine_similarity(余弦相似度，可用于多分类，类实现形式为 CosineSimilarity)\n\n```python\n\n```\n\n### 三，自定义损失函数\n\n\n自定义损失函数接收两个张量y_true,y_pred作为输入参数，并输出一个标量作为损失函数值。\n\n也可以对tf.keras.losses.Loss进行子类化，重写call方法实现损失的计算逻辑，从而得到损失函数的类的实现。\n\n下面是一个Focal Loss的自定义实现示范。Focal Loss是一种对binary_crossentropy的改进损失函数形式。\n\n它在样本不均衡和存在较多易分类的样本时相比binary_crossentropy具有明显的优势。\n\n它有两个可调参数，alpha参数和gamma参数。其中alpha参数主要用于衰减负样本的权重，gamma参数主要用于衰减容易训练样本的权重。\n\n从而让模型更加聚焦在正样本和困难样本上。这就是为什么这个损失函数叫做Focal Loss。\n\n详见《5分钟理解Focal Loss与GHM——解决样本不平衡利器》\n\nhttps://zhuanlan.zhihu.com/p/80594704\n\n\n$$focal\\_loss(y,p) = \\begin{cases}\n-\\alpha  (1-p)^{\\gamma}\\log(p) &\n\\text{if y = 1}\\\\\n-(1-\\alpha) p^{\\gamma}\\log(1-p) &\n\\text{if y = 0}\n\\end{cases} $$\n\n```python\ndef focal_loss(gamma=2., alpha=0.75):\n    \n    def focal_loss_fixed(y_true, y_pred):\n        bce = tf.losses.binary_crossentropy(y_true, y_pred)\n        p_t = (y_true * y_pred) + ((1 - y_true) * (1 - y_pred))\n        alpha_factor = y_true * alpha + (1 - y_true) * (1 - alpha)\n        modulating_factor = tf.pow(1.0 - p_t, gamma)\n        loss = tf.reduce_sum(alpha_factor * modulating_factor * bce,axis = -1 )\n        return loss\n    return focal_loss_fixed\n\n```\n\n```python\nclass FocalLoss(tf.keras.losses.Loss):\n    \n    def __init__(self,gamma=2.0,alpha=0.75,name = \"focal_loss\"):\n        self.gamma = gamma\n        self.alpha = alpha\n\n    def call(self,y_true,y_pred):\n        bce = tf.losses.binary_crossentropy(y_true, y_pred)\n        p_t = (y_true * y_pred) + ((1 - y_true) * (1 - y_pred))\n        alpha_factor = y_true * self.alpha + (1 - y_true) * (1 - self.alpha)\n        modulating_factor = tf.pow(1.0 - p_t, self.gamma)\n        loss = tf.reduce_sum(alpha_factor * modulating_factor * bce,axis = -1 )\n        return loss\n\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n\n```python\n\n```\n"
  },
  {
    "path": "5-6,评估指标metrics.md",
    "content": "# 5-6,评估指标metrics\n\n损失函数除了作为模型训练时候的优化目标，也能够作为模型好坏的一种评价指标。但通常人们还会从其它角度评估模型的好坏。\n\n这就是评估指标。通常损失函数都可以作为评估指标，如MAE,MSE,CategoricalCrossentropy等也是常用的评估指标。\n\n但评估指标不一定可以作为损失函数，例如AUC,Accuracy,Precision。因为评估指标不要求连续可导，而损失函数通常要求连续可导。\n\n编译模型时，可以通过列表形式指定多个评估指标。\n\n如果有需要，也可以自定义评估指标。\n\n自定义评估指标需要接收两个张量y_true,y_pred作为输入参数，并输出一个标量作为评估值。\n\n也可以对tf.keras.metrics.Metric进行子类化，重写初始化方法, update_state方法, result方法实现评估指标的计算逻辑，从而得到评估指标的类的实现形式。\n\n由于训练的过程通常是分批次训练的，而评估指标要跑完一个epoch才能够得到整体的指标结果。因此，类形式的评估指标更为常见。即需要编写初始化方法以创建与计算指标结果相关的一些中间变量，编写update_state方法在每个batch后更新相关中间变量的状态，编写result方法输出最终指标结果。\n\n如果编写函数形式的评估指标，则只能取epoch中各个batch计算的评估指标结果的平均值作为整个epoch上的评估指标结果，这个结果通常会偏离整个epoch数据一次计算的结果。\n\n\n\n### 一，常用的内置评估指标\n\n\n* MeanSquaredError（均方误差，用于回归，可以简写为MSE，函数形式为mse）\n\n* MeanAbsoluteError (平均绝对值误差，用于回归，可以简写为MAE，函数形式为mae)\n\n* MeanAbsolutePercentageError (平均百分比误差，用于回归，可以简写为MAPE，函数形式为mape)\n\n* RootMeanSquaredError (均方根误差，用于回归)\n\n* Accuracy (准确率，用于分类，可以用字符串\"Accuracy\"表示，Accuracy=(TP+TN)/(TP+TN+FP+FN)，要求y_true和y_pred都为类别序号编码)\n\n* Precision (精确率，用于二分类，Precision = TP/(TP+FP))\n\n* Recall (召回率，用于二分类，Recall = TP/(TP+FN))\n\n* TruePositives (真正例，用于二分类)\n\n* TrueNegatives (真负例，用于二分类)\n\n* FalsePositives (假正例，用于二分类)\n\n* FalseNegatives (假负例，用于二分类)\n\n* AUC(ROC曲线(TPR vs FPR)下的面积，用于二分类，直观解释为随机抽取一个正样本和一个负样本，正样本的预测值大于负样本的概率)\n\n* CategoricalAccuracy（分类准确率，与Accuracy含义相同，要求y_true(label)为onehot编码形式）\n\n* SparseCategoricalAccuracy (稀疏分类准确率，与Accuracy含义相同，要求y_true(label)为序号编码形式)\n\n* MeanIoU (Intersection-Over-Union，常用于图像分割)\n\n* TopKCategoricalAccuracy (多分类TopK准确率，要求y_true(label)为onehot编码形式)\n\n* SparseTopKCategoricalAccuracy (稀疏多分类TopK准确率，要求y_true(label)为序号编码形式)\n\n* Mean (平均值)\n\n* Sum (求和)\n\n```python\n\n```\n\n```python\n\n```\n\n### 二， 自定义评估指标\n\n\n我们以金融风控领域常用的KS指标为例，示范自定义评估指标。\n\nKS指标适合二分类问题，其计算方式为 KS=max(TPR-FPR).\n\n其中TPR=TP/(TP+FN) , FPR = FP/(FP+TN) \n\nTPR曲线实际上就是正样本的累积分布曲线(CDF)，FPR曲线实际上就是负样本的累积分布曲线(CDF)。\n\nKS指标就是正样本和负样本累积分布曲线差值的最大值。\n\n![](./data/KS_curve.png)\n\n```python\nimport numpy as np\nimport pandas as pd\nimport tensorflow as tf\nfrom tensorflow.keras import layers,models,losses,metrics\n\n#函数形式的自定义评估指标\n@tf.function\ndef ks(y_true,y_pred):\n    y_true = tf.reshape(y_true,(-1,))\n    y_pred = tf.reshape(y_pred,(-1,))\n    length = tf.shape(y_true)[0]\n    t = tf.math.top_k(y_pred,k = length,sorted = False)\n    y_pred_sorted = tf.gather(y_pred,t.indices)\n    y_true_sorted = tf.gather(y_true,t.indices)\n    cum_positive_ratio = tf.truediv(\n        tf.cumsum(y_true_sorted),tf.reduce_sum(y_true_sorted))\n    cum_negative_ratio = tf.truediv(\n        tf.cumsum(1 - y_true_sorted),tf.reduce_sum(1 - y_true_sorted))\n    ks_value = tf.reduce_max(tf.abs(cum_positive_ratio - cum_negative_ratio)) \n    return ks_value\n```\n\n```python\ny_true = tf.constant([[1],[1],[1],[0],[1],[1],[1],[0],[0],[0],[1],[0],[1],[0]])\ny_pred = tf.constant([[0.6],[0.1],[0.4],[0.5],[0.7],[0.7],[0.7],\n                      [0.4],[0.4],[0.5],[0.8],[0.3],[0.5],[0.3]])\ntf.print(ks(y_true,y_pred))\n```\n\n```\n0.625\n```\n\n```python\n#类形式的自定义评估指标\nclass KS(metrics.Metric):\n    \n    def __init__(self, name = \"ks\", **kwargs):\n        super(KS,self).__init__(name=name,**kwargs)\n        self.true_positives = self.add_weight(\n            name = \"tp\",shape = (101,), initializer = \"zeros\")\n        self.false_positives = self.add_weight(\n            name = \"fp\",shape = (101,), initializer = \"zeros\")\n   \n    @tf.function\n    def update_state(self,y_true,y_pred):\n        y_true = tf.cast(tf.reshape(y_true,(-1,)),tf.bool)\n        y_pred = tf.cast(100*tf.reshape(y_pred,(-1,)),tf.int32)\n        \n        for i in tf.range(0,tf.shape(y_true)[0]):\n            if y_true[i]:\n                self.true_positives[y_pred[i]].assign(\n                    self.true_positives[y_pred[i]]+1.0)\n            else:\n                self.false_positives[y_pred[i]].assign(\n                    self.false_positives[y_pred[i]]+1.0)\n        return (self.true_positives,self.false_positives)\n    \n    @tf.function\n    def result(self):\n        cum_positive_ratio = tf.truediv(\n            tf.cumsum(self.true_positives),tf.reduce_sum(self.true_positives))\n        cum_negative_ratio = tf.truediv(\n            tf.cumsum(self.false_positives),tf.reduce_sum(self.false_positives))\n        ks_value = tf.reduce_max(tf.abs(cum_positive_ratio - cum_negative_ratio)) \n        return ks_value\n\n```\n\n```python\ny_true = tf.constant([[1],[1],[1],[0],[1],[1],[1],[0],[0],[0],[1],[0],[1],[0]])\ny_pred = tf.constant([[0.6],[0.1],[0.4],[0.5],[0.7],[0.7],\n                      [0.7],[0.4],[0.4],[0.5],[0.8],[0.3],[0.5],[0.3]])\n\nmyks = KS()\nmyks.update_state(y_true,y_pred)\ntf.print(myks.result())\n\n```\n\n```\n0.625\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "5-7,优化器optimizers.md",
    "content": "# 5-7,优化器optimizers\n\n机器学习界有一群炼丹师，他们每天的日常是：\n\n拿来药材（数据），架起八卦炉（模型），点着六味真火（优化算法），就摇着蒲扇等着丹药出炉了。\n\n不过，当过厨子的都知道，同样的食材，同样的菜谱，但火候不一样了，这出来的口味可是千差万别。火小了夹生，火大了易糊，火不匀则半生半糊。\n\n机器学习也是一样，模型优化算法的选择直接关系到最终模型的性能。有时候效果不好，未必是特征的问题或者模型设计的问题，很可能就是优化算法的问题。\n\n深度学习优化算法大概经历了 SGD -> SGDM -> NAG ->Adagrad -> Adadelta(RMSprop) -> Adam -> Nadam 这样的发展历程。\n\n详见《一个框架看懂优化算法之异同 SGD/AdaGrad/Adam》\n\nhttps://zhuanlan.zhihu.com/p/32230623\n\n对于一般新手炼丹师，优化器直接使用Adam，并使用其默认参数就OK了。\n\n一些爱写论文的炼丹师由于追求评估指标效果，可能会偏爱前期使用Adam优化器快速下降，后期使用SGD并精调优化器参数得到更好的结果。\n\n此外目前也有一些前沿的优化算法，据称效果比Adam更好，例如LazyAdam, Look-ahead, RAdam, Ranger等.\n\n\n```python\n\n```\n\n### 一，优化器的使用\n\n\n优化器主要使用apply_gradients方法传入变量和对应梯度从而来对给定变量进行迭代，或者直接使用minimize方法对目标函数进行迭代优化。\n\n当然，更常见的使用是在编译时将优化器传入keras的Model,通过调用model.fit实现对Loss的的迭代优化。\n\n初始化优化器时会创建一个变量optimier.iterations用于记录迭代的次数。因此优化器和tf.Variable一样，一般需要在@tf.function外创建。\n\n```python\nimport tensorflow as tf\nimport numpy as np \n\n#打印时间分割线\n@tf.function\ndef printbar():\n    ts = tf.timestamp()\n    today_ts = ts%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8,end = \"\")\n    tf.print(timestring)\n    \n```\n\n```python\n# 求f(x) = a*x**2 + b*x + c的最小值\n\n# 使用optimizer.apply_gradients\n\nx = tf.Variable(0.0,name = \"x\",dtype = tf.float32)\noptimizer = tf.keras.optimizers.SGD(learning_rate=0.01)\n\n@tf.function\ndef minimizef():\n    a = tf.constant(1.0)\n    b = tf.constant(-2.0)\n    c = tf.constant(1.0)\n    \n    while tf.constant(True): \n        with tf.GradientTape() as tape:\n            y = a*tf.pow(x,2) + b*x + c\n        dy_dx = tape.gradient(y,x)\n        optimizer.apply_gradients(grads_and_vars=[(dy_dx,x)])\n        \n        #迭代终止条件\n        if tf.abs(dy_dx)<tf.constant(0.00001):\n            break\n            \n        if tf.math.mod(optimizer.iterations,100)==0:\n            printbar()\n            tf.print(\"step = \",optimizer.iterations)\n            tf.print(\"x = \", x)\n            tf.print(\"\")\n                \n    y = a*tf.pow(x,2) + b*x + c\n    return y\n\ntf.print(\"y =\",minimizef())\ntf.print(\"x =\",x)\n```\n\n```python\n\n```\n\n```python\n# 求f(x) = a*x**2 + b*x + c的最小值\n\n# 使用optimizer.minimize\n\nx = tf.Variable(0.0,name = \"x\",dtype = tf.float32)\noptimizer = tf.keras.optimizers.SGD(learning_rate=0.01)   \n\ndef f():   \n    a = tf.constant(1.0)\n    b = tf.constant(-2.0)\n    c = tf.constant(1.0)\n    y = a*tf.pow(x,2)+b*x+c\n    return(y)\n\n@tf.function\ndef train(epoch = 1000):  \n    for _ in tf.range(epoch):  \n        optimizer.minimize(f,[x])\n    tf.print(\"epoch = \",optimizer.iterations)\n    return(f())\n\ntrain(1000)\ntf.print(\"y = \",f())\ntf.print(\"x = \",x)\n\n```\n\n```python\n\n```\n\n```python\n# 求f(x) = a*x**2 + b*x + c的最小值\n# 使用model.fit\n\ntf.keras.backend.clear_session()\n\nclass FakeModel(tf.keras.models.Model):\n    def __init__(self,a,b,c):\n        super(FakeModel,self).__init__()\n        self.a = a\n        self.b = b\n        self.c = c\n    \n    def build(self):\n        self.x = tf.Variable(0.0,name = \"x\")\n        self.built = True\n    \n    def call(self,features):\n        loss  = self.a*(self.x)**2+self.b*(self.x)+self.c\n        return(tf.ones_like(features)*loss)\n    \ndef myloss(y_true,y_pred):\n    return tf.reduce_mean(y_pred)\n\nmodel = FakeModel(tf.constant(1.0),tf.constant(-2.0),tf.constant(1.0))\n\nmodel.build()\nmodel.summary()\n\nmodel.compile(optimizer = \n              tf.keras.optimizers.SGD(learning_rate=0.01),loss = myloss)\nhistory = model.fit(tf.zeros((100,2)),\n                    tf.ones(100),batch_size = 1,epochs = 10)  #迭代1000次\n\n```\n\n```python\ntf.print(\"x=\",model.x)\ntf.print(\"loss=\",model(tf.constant(0.0)))\n```\n\n```python\n\n```\n\n### 二，内置优化器\n\n\n深度学习优化算法大概经历了 SGD -> SGDM -> NAG ->Adagrad -> Adadelta(RMSprop) -> Adam -> Nadam 这样的发展历程。\n\n在keras.optimizers子模块中，它们基本上都有对应的类的实现。\n\n* SGD, 默认参数为纯SGD, 设置momentum参数不为0实际上变成SGDM, 考虑了一阶动量, 设置 nesterov为True后变成NAG，即 Nesterov Accelerated Gradient，在计算梯度时计算的是向前走一步所在位置的梯度。\n\n* Adagrad, 考虑了二阶动量，对于不同的参数有不同的学习率，即自适应学习率。缺点是学习率单调下降，可能后期学习速率过慢乃至提前停止学习。\n\n* RMSprop, 考虑了二阶动量，对于不同的参数有不同的学习率，即自适应学习率，对Adagrad进行了优化，通过指数平滑只考虑一定窗口内的二阶动量。\n\n* Adadelta, 考虑了二阶动量，与RMSprop类似，但是更加复杂一些，自适应性更强。\n\n* Adam, 同时考虑了一阶动量和二阶动量，可以看成RMSprop上进一步考虑了一阶动量。\n\n* Nadam, 在Adam基础上进一步考虑了 Nesterov Acceleration。\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n\n```python\n\n```\n\n```python\n\n```\n"
  },
  {
    "path": "5-8,回调函数callbacks.md",
    "content": "# 5-8,回调函数callbacks\n\ntf.keras的回调函数实际上是一个类，一般是在model.fit时作为参数指定，用于控制在训练过程开始或者在训练过程结束，在每个epoch训练开始或者训练结束，在每个batch训练开始或者训练结束时执行一些操作，例如收集一些日志信息，改变学习率等超参数，提前终止训练过程等等。\n\n同样地，针对model.evaluate或者model.predict也可以指定callbacks参数，用于控制在评估或预测开始或者结束时，在每个batch开始或者结束时执行一些操作，但这种用法相对少见。\n\n大部分时候，keras.callbacks子模块中定义的回调函数类已经足够使用了，如果有特定的需要，我们也可以通过对keras.callbacks.Callbacks实施子类化构造自定义的回调函数。\n\n所有回调函数都继承至 keras.callbacks.Callbacks基类，拥有params和model这两个属性。\n\n其中params 是一个dict，记录了训练相关参数 (例如 verbosity, batch size, number of epochs 等等)。\n\nmodel即当前关联的模型的引用。\n\n此外，对于回调类中的一些方法如on_epoch_begin,on_batch_end，还会有一个输入参数logs, 提供有关当前epoch或者batch的一些信息，并能够记录计算结果，如果model.fit指定了多个回调函数类，这些logs变量将在这些回调函数类的同名函数间依顺序传递。\n\n\n\n### 一，内置回调函数\n\n\n* BaseLogger： 收集每个epoch上metrics在各个batch上的平均值，对stateful_metrics参数中的带中间状态的指标直接拿最终值无需对各个batch平均，指标均值结果将添加到logs变量中。该回调函数被所有模型默认添加，且是第一个被添加的。\n\n* History： 将BaseLogger计算的各个epoch的metrics结果记录到history这个dict变量中，并作为model.fit的返回值。该回调函数被所有模型默认添加，在BaseLogger之后被添加。\n\n* EarlyStopping： 当被监控指标在设定的若干个epoch后没有提升，则提前终止训练。\n\n* TensorBoard： 为Tensorboard可视化保存日志信息。支持评估指标，计算图，模型参数等的可视化。\n\n* ModelCheckpoint： 在每个epoch后保存模型。\n\n* ReduceLROnPlateau：如果监控指标在设定的若干个epoch后没有提升，则以一定的因子减少学习率。\n\n* TerminateOnNaN：如果遇到loss为NaN，提前终止训练。\n\n* LearningRateScheduler：学习率控制器。给定学习率lr和epoch的函数关系，根据该函数关系在每个epoch前调整学习率。\n\n* CSVLogger：将每个epoch后的logs结果记录到CSV文件中。\n\n* ProgbarLogger：将每个epoch后的logs结果打印到标准输出流中。\n\n\n\n```python\n\n```\n\n### 二，自定义回调函数\n\n\n可以使用callbacks.LambdaCallback编写较为简单的回调函数，也可以通过对callbacks.Callback子类化编写更加复杂的回调函数逻辑。\n\n如果需要深入学习tf.Keras中的回调函数，不要犹豫阅读内置回调函数的源代码。\n\n```python\nimport numpy as np\nimport pandas as pd\nimport tensorflow as tf\nfrom tensorflow.keras import layers,models,losses,metrics,callbacks\nimport tensorflow.keras.backend as K \n\n```\n\n```python\n# 示范使用LambdaCallback编写较为简单的回调函数\n\nimport json\njson_log = open('./data/keras_log.json', mode='wt', buffering=1)\njson_logging_callback = callbacks.LambdaCallback(\n    on_epoch_end=lambda epoch, logs: json_log.write(\n        json.dumps(dict(epoch = epoch,**logs)) + '\\n'),\n    on_train_end=lambda logs: json_log.close()\n)\n\n```\n\n```python\n# 示范通过Callback子类化编写回调函数（LearningRateScheduler的源代码）\n\nclass LearningRateScheduler(callbacks.Callback):\n    \n    def __init__(self, schedule, verbose=0):\n        super(LearningRateScheduler, self).__init__()\n        self.schedule = schedule\n        self.verbose = verbose\n\n    def on_epoch_begin(self, epoch, logs=None):\n        if not hasattr(self.model.optimizer, 'lr'):\n            raise ValueError('Optimizer must have a \"lr\" attribute.')\n        try:  \n            lr = float(K.get_value(self.model.optimizer.lr))\n            lr = self.schedule(epoch, lr)\n        except TypeError:  # Support for old API for backward compatibility\n            lr = self.schedule(epoch)\n        if not isinstance(lr, (tf.Tensor, float, np.float32, np.float64)):\n            raise ValueError('The output of the \"schedule\" function '\n                             'should be float.')\n        if isinstance(lr, ops.Tensor) and not lr.dtype.is_floating:\n            raise ValueError('The dtype of Tensor should be float')\n        K.set_value(self.model.optimizer.lr, K.get_value(lr))\n        if self.verbose > 0:\n            print('\\nEpoch %05d: LearningRateScheduler reducing learning '\n                 'rate to %s.' % (epoch + 1, lr))\n\n    def on_epoch_end(self, epoch, logs=None):\n        logs = logs or {}\n        logs['lr'] = K.get_value(self.model.optimizer.lr)\n\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "6-1,构建模型的3种方法.md",
    "content": "# 6-1,构建模型的3种方法\n\n可以使用以下3种方式构建模型：使用Sequential按层顺序构建模型，使用函数式API构建任意结构模型，继承Model基类构建自定义模型。\n\n对于顺序结构的模型，优先使用Sequential方法构建。\n\n如果模型有多输入或者多输出，或者模型需要共享权重，或者模型具有残差连接等非顺序结构，推荐使用函数式API进行创建。\n\n如果无特定必要，尽可能避免使用Model子类化的方式构建模型，这种方式提供了极大的灵活性，但也有更大的概率出错。\n\n下面以IMDB电影评论的分类问题为例，演示3种创建模型的方法。\n\n```python\nimport numpy as np \nimport pandas as pd \nimport tensorflow as tf\nfrom tqdm import tqdm \nfrom tensorflow.keras import *\n\n\ntrain_token_path = \"./data/imdb/train_token.csv\"\ntest_token_path = \"./data/imdb/test_token.csv\"\n\nMAX_WORDS = 10000  # We will only consider the top 10,000 words in the dataset\nMAX_LEN = 200  # We will cut reviews after 200 words\nBATCH_SIZE = 20 \n\n# 构建管道\ndef parse_line(line):\n    t = tf.strings.split(line,\"\\t\")\n    label = tf.reshape(tf.cast(tf.strings.to_number(t[0]),tf.int32),(-1,))\n    features = tf.cast(tf.strings.to_number(tf.strings.split(t[1],\" \")),tf.int32)\n    return (features,label)\n\nds_train=  tf.data.TextLineDataset(filenames = [train_token_path]) \\\n   .map(parse_line,num_parallel_calls = tf.data.experimental.AUTOTUNE) \\\n   .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n   .prefetch(tf.data.experimental.AUTOTUNE)\n\nds_test=  tf.data.TextLineDataset(filenames = [test_token_path]) \\\n   .map(parse_line,num_parallel_calls = tf.data.experimental.AUTOTUNE) \\\n   .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n   .prefetch(tf.data.experimental.AUTOTUNE)\n\n```\n\n```python\n\n```\n\n### 一，Sequential按层顺序创建模型\n\n```python\ntf.keras.backend.clear_session()\n\nmodel = models.Sequential()\n\nmodel.add(layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN))\nmodel.add(layers.Conv1D(filters = 64,kernel_size = 5,activation = \"relu\"))\nmodel.add(layers.MaxPool1D(2))\nmodel.add(layers.Conv1D(filters = 32,kernel_size = 3,activation = \"relu\"))\nmodel.add(layers.MaxPool1D(2))\nmodel.add(layers.Flatten())\nmodel.add(layers.Dense(1,activation = \"sigmoid\"))\n\nmodel.compile(optimizer='Nadam',\n            loss='binary_crossentropy',\n            metrics=['accuracy',\"AUC\"])\n\nmodel.summary()\n```\n\n![](./data/Sequential模型结构.png)\n\n```python\nimport datetime\nbaselogger = callbacks.BaseLogger(stateful_metrics=[\"AUC\"])\nlogdir = \"./data/keras_model/\" + datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\ntensorboard_callback = tf.keras.callbacks.TensorBoard(logdir, histogram_freq=1)\nhistory = model.fit(ds_train,validation_data = ds_test,\n        epochs = 6,callbacks=[baselogger,tensorboard_callback])\n\n```\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nimport matplotlib.pyplot as plt\n\ndef plot_metric(history, metric):\n    train_metrics = history.history[metric]\n    val_metrics = history.history['val_'+metric]\n    epochs = range(1, len(train_metrics) + 1)\n    plt.plot(epochs, train_metrics, 'bo--')\n    plt.plot(epochs, val_metrics, 'ro-')\n    plt.title('Training and validation '+ metric)\n    plt.xlabel(\"Epochs\")\n    plt.ylabel(metric)\n    plt.legend([\"train_\"+metric, 'val_'+metric])\n    plt.show()\n```\n\n```python\nplot_metric(history,\"AUC\")\n```\n\n```python\n\n```\n\n![](./data/6-1-fit模型.jpg)\n\n```python\n\n```\n\n```python\n\n```\n\n### 二，函数式API创建任意结构模型\n\n```python\ntf.keras.backend.clear_session()\n\ninputs = layers.Input(shape=[MAX_LEN])\nx  = layers.Embedding(MAX_WORDS,7)(inputs)\n\nbranch1 = layers.SeparableConv1D(64,3,activation=\"relu\")(x)\nbranch1 = layers.MaxPool1D(3)(branch1)\nbranch1 = layers.SeparableConv1D(32,3,activation=\"relu\")(branch1)\nbranch1 = layers.GlobalMaxPool1D()(branch1)\n\nbranch2 = layers.SeparableConv1D(64,5,activation=\"relu\")(x)\nbranch2 = layers.MaxPool1D(5)(branch2)\nbranch2 = layers.SeparableConv1D(32,5,activation=\"relu\")(branch2)\nbranch2 = layers.GlobalMaxPool1D()(branch2)\n\nbranch3 = layers.SeparableConv1D(64,7,activation=\"relu\")(x)\nbranch3 = layers.MaxPool1D(7)(branch3)\nbranch3 = layers.SeparableConv1D(32,7,activation=\"relu\")(branch3)\nbranch3 = layers.GlobalMaxPool1D()(branch3)\n\nconcat = layers.Concatenate()([branch1,branch2,branch3])\noutputs = layers.Dense(1,activation = \"sigmoid\")(concat)\n\nmodel = models.Model(inputs = inputs,outputs = outputs)\n\nmodel.compile(optimizer='Nadam',\n            loss='binary_crossentropy',\n            metrics=['accuracy',\"AUC\"])\n\nmodel.summary()\n\n```\n\n```\nModel: \"model\"\n__________________________________________________________________________________________________\nLayer (type)                    Output Shape         Param #     Connected to                     \n==================================================================================================\ninput_1 (InputLayer)            [(None, 200)]        0                                            \n__________________________________________________________________________________________________\nembedding (Embedding)           (None, 200, 7)       70000       input_1[0][0]                    \n__________________________________________________________________________________________________\nseparable_conv1d (SeparableConv (None, 198, 64)      533         embedding[0][0]                  \n__________________________________________________________________________________________________\nseparable_conv1d_2 (SeparableCo (None, 196, 64)      547         embedding[0][0]                  \n__________________________________________________________________________________________________\nseparable_conv1d_4 (SeparableCo (None, 194, 64)      561         embedding[0][0]                  \n__________________________________________________________________________________________________\nmax_pooling1d (MaxPooling1D)    (None, 66, 64)       0           separable_conv1d[0][0]           \n__________________________________________________________________________________________________\nmax_pooling1d_1 (MaxPooling1D)  (None, 39, 64)       0           separable_conv1d_2[0][0]         \n__________________________________________________________________________________________________\nmax_pooling1d_2 (MaxPooling1D)  (None, 27, 64)       0           separable_conv1d_4[0][0]         \n__________________________________________________________________________________________________\nseparable_conv1d_1 (SeparableCo (None, 64, 32)       2272        max_pooling1d[0][0]              \n__________________________________________________________________________________________________\nseparable_conv1d_3 (SeparableCo (None, 35, 32)       2400        max_pooling1d_1[0][0]            \n__________________________________________________________________________________________________\nseparable_conv1d_5 (SeparableCo (None, 21, 32)       2528        max_pooling1d_2[0][0]            \n__________________________________________________________________________________________________\nglobal_max_pooling1d (GlobalMax (None, 32)           0           separable_conv1d_1[0][0]         \n__________________________________________________________________________________________________\nglobal_max_pooling1d_1 (GlobalM (None, 32)           0           separable_conv1d_3[0][0]         \n__________________________________________________________________________________________________\nglobal_max_pooling1d_2 (GlobalM (None, 32)           0           separable_conv1d_5[0][0]         \n__________________________________________________________________________________________________\nconcatenate (Concatenate)       (None, 96)           0           global_max_pooling1d[0][0]       \n                                                                 global_max_pooling1d_1[0][0]     \n                                                                 global_max_pooling1d_2[0][0]     \n__________________________________________________________________________________________________\ndense (Dense)                   (None, 1)            97          concatenate[0][0]                \n==================================================================================================\nTotal params: 78,938\nTrainable params: 78,938\nNon-trainable params: 0\n__________________________________________________________________________________________________\n```\n\n\n![](./data/FunctionalAPI模型结构.png)\n\n```python\nimport datetime\nlogdir = \"./data/keras_model/\" + datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\ntensorboard_callback = tf.keras.callbacks.TensorBoard(logdir, histogram_freq=1)\nhistory = model.fit(ds_train,validation_data = ds_test,epochs = 6,callbacks=[tensorboard_callback])\n\n```\n\n```\nEpoch 1/6\n1000/1000 [==============================] - 32s 32ms/step - loss: 0.5527 - accuracy: 0.6758 - AUC: 0.7731 - val_loss: 0.3646 - val_accuracy: 0.8426 - val_AUC: 0.9192\nEpoch 2/6\n1000/1000 [==============================] - 24s 24ms/step - loss: 0.3024 - accuracy: 0.8737 - AUC: 0.9444 - val_loss: 0.3281 - val_accuracy: 0.8644 - val_AUC: 0.9350\nEpoch 3/6\n1000/1000 [==============================] - 24s 24ms/step - loss: 0.2158 - accuracy: 0.9159 - AUC: 0.9715 - val_loss: 0.3461 - val_accuracy: 0.8666 - val_AUC: 0.9363\nEpoch 4/6\n1000/1000 [==============================] - 24s 24ms/step - loss: 0.1492 - accuracy: 0.9464 - AUC: 0.9859 - val_loss: 0.4017 - val_accuracy: 0.8568 - val_AUC: 0.9311\nEpoch 5/6\n1000/1000 [==============================] - 24s 24ms/step - loss: 0.0944 - accuracy: 0.9696 - AUC: 0.9939 - val_loss: 0.4998 - val_accuracy: 0.8550 - val_AUC: 0.9233\nEpoch 6/6\n1000/1000 [==============================] - 26s 26ms/step - loss: 0.0526 - accuracy: 0.9865 - AUC: 0.9977 - val_loss: 0.6463 - val_accuracy: 0.8462 - val_AUC: 0.9138\n```\n\n```python\nplot_metric(history,\"AUC\")\n```\n\n![](./data/6-1-2-train.jpg)\n\n```python\n\n```\n\n### 三，Model子类化创建自定义模型\n\n```python\n# 先自定义一个残差模块，为自定义Layer\n\nclass ResBlock(layers.Layer):\n    def __init__(self, kernel_size, **kwargs):\n        super(ResBlock, self).__init__(**kwargs)\n        self.kernel_size = kernel_size\n    \n    def build(self,input_shape):\n        self.conv1 = layers.Conv1D(filters=64,kernel_size=self.kernel_size,\n                                   activation = \"relu\",padding=\"same\")\n        self.conv2 = layers.Conv1D(filters=32,kernel_size=self.kernel_size,\n                                   activation = \"relu\",padding=\"same\")\n        self.conv3 = layers.Conv1D(filters=input_shape[-1],\n                                   kernel_size=self.kernel_size,activation = \"relu\",padding=\"same\")\n        self.maxpool = layers.MaxPool1D(2)\n        super(ResBlock,self).build(input_shape) # 相当于设置self.built = True\n    \n    def call(self, inputs):\n        x = self.conv1(inputs)\n        x = self.conv2(x)\n        x = self.conv3(x)\n        x = layers.Add()([inputs,x])\n        x = self.maxpool(x)\n        return x\n    \n    #如果要让自定义的Layer通过Functional API 组合成模型时可以序列化，需要自定义get_config方法。\n    def get_config(self):  \n        config = super(ResBlock, self).get_config()\n        config.update({'kernel_size': self.kernel_size})\n        return config\n```\n\n```python\n# 测试ResBlock\nresblock = ResBlock(kernel_size = 3)\nresblock.build(input_shape = (None,200,7))\nresblock.compute_output_shape(input_shape=(None,200,7))\n\n```\n\n```\nTensorShape([None, 100, 7])\n```\n\n```python\n# 自定义模型，实际上也可以使用Sequential或者FunctionalAPI\n\nclass ImdbModel(models.Model):\n    def __init__(self):\n        super(ImdbModel, self).__init__()\n        \n    def build(self,input_shape):\n        self.embedding = layers.Embedding(MAX_WORDS,7)\n        self.block1 = ResBlock(7)\n        self.block2 = ResBlock(5)\n        self.dense = layers.Dense(1,activation = \"sigmoid\")\n        super(ImdbModel,self).build(input_shape)\n    \n    def call(self, x):\n        x = self.embedding(x)\n        x = self.block1(x)\n        x = self.block2(x)\n        x = layers.Flatten()(x)\n        x = self.dense(x)\n        return(x)\n\n```\n\n```python\ntf.keras.backend.clear_session()\n\nmodel = ImdbModel()\nmodel.build(input_shape =(None,200))\nmodel.summary()\n\nmodel.compile(optimizer='Nadam',\n            loss='binary_crossentropy',\n            metrics=['accuracy',\"AUC\"])\n\n```\n\n```\nModel: \"imdb_model\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nembedding (Embedding)        multiple                  70000     \n_________________________________________________________________\nres_block (ResBlock)         multiple                  19143     \n_________________________________________________________________\nres_block_1 (ResBlock)       multiple                  13703     \n_________________________________________________________________\ndense (Dense)                multiple                  351       \n=================================================================\nTotal params: 103,197\nTrainable params: 103,197\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\n\n```\n\n![](./data/Model子类化模型结构.png)\n\n```python\n\n```\n\n```python\nimport datetime\n\nlogdir = \"./tflogs/keras_model/\" + datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\ntensorboard_callback = tf.keras.callbacks.TensorBoard(logdir, histogram_freq=1)\nhistory = model.fit(ds_train,validation_data = ds_test,\n                    epochs = 6,callbacks=[tensorboard_callback])\n\n```\n\n```\nEpoch 1/6\n1000/1000 [==============================] - 47s 47ms/step - loss: 0.5629 - accuracy: 0.6618 - AUC: 0.7548 - val_loss: 0.3422 - val_accuracy: 0.8510 - val_AUC: 0.9286\nEpoch 2/6\n1000/1000 [==============================] - 43s 43ms/step - loss: 0.2648 - accuracy: 0.8903 - AUC: 0.9576 - val_loss: 0.3276 - val_accuracy: 0.8650 - val_AUC: 0.9410\nEpoch 3/6\n1000/1000 [==============================] - 42s 42ms/step - loss: 0.1573 - accuracy: 0.9439 - AUC: 0.9846 - val_loss: 0.3861 - val_accuracy: 0.8682 - val_AUC: 0.9390\nEpoch 4/6\n1000/1000 [==============================] - 42s 42ms/step - loss: 0.0849 - accuracy: 0.9706 - AUC: 0.9950 - val_loss: 0.5324 - val_accuracy: 0.8616 - val_AUC: 0.9292\nEpoch 5/6\n1000/1000 [==============================] - 43s 43ms/step - loss: 0.0393 - accuracy: 0.9876 - AUC: 0.9986 - val_loss: 0.7693 - val_accuracy: 0.8566 - val_AUC: 0.9132\nEpoch 6/6\n1000/1000 [==============================] - 44s 44ms/step - loss: 0.0222 - accuracy: 0.9926 - AUC: 0.9994 - val_loss: 0.9328 - val_accuracy: 0.8584 - val_AUC: 0.9052\n```\n\n```python\nplot_metric(history,\"AUC\")\n```\n\n```python\n\n```\n\n![](./data/6-1-3-fit模型.jpg)\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n\n```python\n\n```\n"
  },
  {
    "path": "6-2,训练模型的3种方法.md",
    "content": "# 6-2,训练模型的3种方法\n\n模型的训练主要有内置fit方法、内置tran_on_batch方法、自定义训练循环。\n\n注：fit_generator方法在tf.keras中不推荐使用，其功能已经被fit包含。\n\n\n```python\nimport numpy as np \nimport pandas as pd \nimport tensorflow as tf\nfrom tensorflow.keras import * \n\n#打印时间分割线\n@tf.function\ndef printbar():\n    today_ts = tf.timestamp()%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8+timestring)\n    \n```\n\n```python\nMAX_LEN = 300\nBATCH_SIZE = 32\n(x_train,y_train),(x_test,y_test) = datasets.reuters.load_data()\nx_train = preprocessing.sequence.pad_sequences(x_train,maxlen=MAX_LEN)\nx_test = preprocessing.sequence.pad_sequences(x_test,maxlen=MAX_LEN)\n\nMAX_WORDS = x_train.max()+1\nCAT_NUM = y_train.max()+1\n\nds_train = tf.data.Dataset.from_tensor_slices((x_train,y_train)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n   \nds_test = tf.data.Dataset.from_tensor_slices((x_test,y_test)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n\n```\n\n```python\n\n```\n\n### 一，内置fit方法\n\n\n该方法功能非常强大, 支持对numpy array, tf.data.Dataset以及 Python generator数据进行训练。\n\n并且可以通过设置回调函数实现对训练过程的复杂控制逻辑。\n\n```python\ntf.keras.backend.clear_session()\ndef create_model():\n    \n    model = models.Sequential()\n    model.add(layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN))\n    model.add(layers.Conv1D(filters = 64,kernel_size = 5,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Conv1D(filters = 32,kernel_size = 3,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Flatten())\n    model.add(layers.Dense(CAT_NUM,activation = \"softmax\"))\n    return(model)\n\ndef compile_model(model):\n    model.compile(optimizer=optimizers.Nadam(),\n                loss=losses.SparseCategoricalCrossentropy(),\n                metrics=[metrics.SparseCategoricalAccuracy(),metrics.SparseTopKCategoricalAccuracy(5)]) \n    return(model)\n \nmodel = create_model()\nmodel.summary()\nmodel = compile_model(model)\n\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nembedding (Embedding)        (None, 300, 7)            216874    \n_________________________________________________________________\nconv1d (Conv1D)              (None, 296, 64)           2304      \n_________________________________________________________________\nmax_pooling1d (MaxPooling1D) (None, 148, 64)           0         \n_________________________________________________________________\nconv1d_1 (Conv1D)            (None, 146, 32)           6176      \n_________________________________________________________________\nmax_pooling1d_1 (MaxPooling1 (None, 73, 32)            0         \n_________________________________________________________________\nflatten (Flatten)            (None, 2336)              0         \n_________________________________________________________________\ndense (Dense)                (None, 46)                107502    \n=================================================================\nTotal params: 332,856\nTrainable params: 332,856\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\nhistory = model.fit(ds_train,validation_data = ds_test,epochs = 10)\n```\n\n```python\n\n```\n\n```\nTrain for 281 steps, validate for 71 steps\nEpoch 1/10\n281/281 [==============================] - 11s 37ms/step - loss: 2.0231 - sparse_categorical_accuracy: 0.4636 - sparse_top_k_categorical_accuracy: 0.7450 - val_loss: 1.7346 - val_sparse_categorical_accuracy: 0.5534 - val_sparse_top_k_categorical_accuracy: 0.7560\nEpoch 2/10\n281/281 [==============================] - 9s 31ms/step - loss: 1.5079 - sparse_categorical_accuracy: 0.6091 - sparse_top_k_categorical_accuracy: 0.7901 - val_loss: 1.5475 - val_sparse_categorical_accuracy: 0.6109 - val_sparse_top_k_categorical_accuracy: 0.7792\nEpoch 3/10\n281/281 [==============================] - 9s 33ms/step - loss: 1.2204 - sparse_categorical_accuracy: 0.6823 - sparse_top_k_categorical_accuracy: 0.8448 - val_loss: 1.5455 - val_sparse_categorical_accuracy: 0.6367 - val_sparse_top_k_categorical_accuracy: 0.8001\nEpoch 4/10\n281/281 [==============================] - 9s 33ms/step - loss: 0.9382 - sparse_categorical_accuracy: 0.7543 - sparse_top_k_categorical_accuracy: 0.9075 - val_loss: 1.6780 - val_sparse_categorical_accuracy: 0.6398 - val_sparse_top_k_categorical_accuracy: 0.8032\nEpoch 5/10\n281/281 [==============================] - 10s 34ms/step - loss: 0.6791 - sparse_categorical_accuracy: 0.8255 - sparse_top_k_categorical_accuracy: 0.9513 - val_loss: 1.9426 - val_sparse_categorical_accuracy: 0.6376 - val_sparse_top_k_categorical_accuracy: 0.7956\nEpoch 6/10\n281/281 [==============================] - 9s 33ms/step - loss: 0.5063 - sparse_categorical_accuracy: 0.8762 - sparse_top_k_categorical_accuracy: 0.9716 - val_loss: 2.2141 - val_sparse_categorical_accuracy: 0.6291 - val_sparse_top_k_categorical_accuracy: 0.7947\nEpoch 7/10\n281/281 [==============================] - 10s 37ms/step - loss: 0.4031 - sparse_categorical_accuracy: 0.9050 - sparse_top_k_categorical_accuracy: 0.9817 - val_loss: 2.4126 - val_sparse_categorical_accuracy: 0.6264 - val_sparse_top_k_categorical_accuracy: 0.7947\nEpoch 8/10\n281/281 [==============================] - 10s 35ms/step - loss: 0.3380 - sparse_categorical_accuracy: 0.9205 - sparse_top_k_categorical_accuracy: 0.9881 - val_loss: 2.5366 - val_sparse_categorical_accuracy: 0.6242 - val_sparse_top_k_categorical_accuracy: 0.7974\nEpoch 9/10\n281/281 [==============================] - 10s 36ms/step - loss: 0.2921 - sparse_categorical_accuracy: 0.9299 - sparse_top_k_categorical_accuracy: 0.9909 - val_loss: 2.6564 - val_sparse_categorical_accuracy: 0.6242 - val_sparse_top_k_categorical_accuracy: 0.7983\nEpoch 10/10\n281/281 [==============================] - 9s 30ms/step - loss: 0.2613 - sparse_categorical_accuracy: 0.9334 - sparse_top_k_categorical_accuracy: 0.9947 - val_loss: 2.7365 - val_sparse_categorical_accuracy: 0.6220 - val_sparse_top_k_categorical_accuracy: 0.8005\n```\n\n```python\n\n```\n\n### 二，内置train_on_batch方法\n\n\n该内置方法相比较fit方法更加灵活，可以不通过回调函数而直接在批次层次上更加精细地控制训练的过程。\n\n```python\ntf.keras.backend.clear_session()\n\ndef create_model():\n    model = models.Sequential()\n\n    model.add(layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN))\n    model.add(layers.Conv1D(filters = 64,kernel_size = 5,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Conv1D(filters = 32,kernel_size = 3,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Flatten())\n    model.add(layers.Dense(CAT_NUM,activation = \"softmax\"))\n    return(model)\n\ndef compile_model(model):\n    model.compile(optimizer=optimizers.Nadam(),\n                loss=losses.SparseCategoricalCrossentropy(),\n                metrics=[metrics.SparseCategoricalAccuracy(),metrics.SparseTopKCategoricalAccuracy(5)]) \n    return(model)\n \nmodel = create_model()\nmodel.summary()\nmodel = compile_model(model)\n\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nembedding (Embedding)        (None, 300, 7)            216874    \n_________________________________________________________________\nconv1d (Conv1D)              (None, 296, 64)           2304      \n_________________________________________________________________\nmax_pooling1d (MaxPooling1D) (None, 148, 64)           0         \n_________________________________________________________________\nconv1d_1 (Conv1D)            (None, 146, 32)           6176      \n_________________________________________________________________\nmax_pooling1d_1 (MaxPooling1 (None, 73, 32)            0         \n_________________________________________________________________\nflatten (Flatten)            (None, 2336)              0         \n_________________________________________________________________\ndense (Dense)                (None, 46)                107502    \n=================================================================\nTotal params: 332,856\nTrainable params: 332,856\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\ndef train_model(model,ds_train,ds_valid,epoches):\n\n    for epoch in tf.range(1,epoches+1):\n        model.reset_metrics()\n        \n        # 在后期降低学习率\n        if epoch == 5:\n            model.optimizer.lr.assign(model.optimizer.lr/2.0)\n            tf.print(\"Lowering optimizer Learning Rate...\\n\\n\")\n        \n        for x, y in ds_train:\n            train_result = model.train_on_batch(x, y)\n\n        for x, y in ds_valid:\n            valid_result = model.test_on_batch(x, y,reset_metrics=False)\n            \n        if epoch%1 ==0:\n            printbar()\n            tf.print(\"epoch = \",epoch)\n            print(\"train:\",dict(zip(model.metrics_names,train_result)))\n            print(\"valid:\",dict(zip(model.metrics_names,valid_result)))\n            print(\"\")\n```\n\n```python\ntrain_model(model,ds_train,ds_test,10)\n```\n\n```\n================================================================================13:09:19\nepoch =  1\ntrain: {'loss': 0.82411176, 'sparse_categorical_accuracy': 0.77272725, 'sparse_top_k_categorical_accuracy': 0.8636364}\nvalid: {'loss': 1.9265995, 'sparse_categorical_accuracy': 0.5743544, 'sparse_top_k_categorical_accuracy': 0.75779164}\n\n================================================================================13:09:27\nepoch =  2\ntrain: {'loss': 0.6006621, 'sparse_categorical_accuracy': 0.90909094, 'sparse_top_k_categorical_accuracy': 0.95454544}\nvalid: {'loss': 1.844159, 'sparse_categorical_accuracy': 0.6126447, 'sparse_top_k_categorical_accuracy': 0.7920748}\n\n================================================================================13:09:35\nepoch =  3\ntrain: {'loss': 0.36935613, 'sparse_categorical_accuracy': 0.90909094, 'sparse_top_k_categorical_accuracy': 0.95454544}\nvalid: {'loss': 2.163433, 'sparse_categorical_accuracy': 0.63312554, 'sparse_top_k_categorical_accuracy': 0.8045414}\n\n================================================================================13:09:42\nepoch =  4\ntrain: {'loss': 0.2304088, 'sparse_categorical_accuracy': 0.90909094, 'sparse_top_k_categorical_accuracy': 1.0}\nvalid: {'loss': 2.8911984, 'sparse_categorical_accuracy': 0.6344613, 'sparse_top_k_categorical_accuracy': 0.7978629}\n\nLowering optimizer Learning Rate...\n\n\n================================================================================13:09:51\nepoch =  5\ntrain: {'loss': 0.111194365, 'sparse_categorical_accuracy': 0.95454544, 'sparse_top_k_categorical_accuracy': 1.0}\nvalid: {'loss': 3.6431572, 'sparse_categorical_accuracy': 0.6295637, 'sparse_top_k_categorical_accuracy': 0.7978629}\n\n================================================================================13:09:59\nepoch =  6\ntrain: {'loss': 0.07741702, 'sparse_categorical_accuracy': 0.95454544, 'sparse_top_k_categorical_accuracy': 1.0}\nvalid: {'loss': 4.074161, 'sparse_categorical_accuracy': 0.6255565, 'sparse_top_k_categorical_accuracy': 0.794301}\n\n================================================================================13:10:07\nepoch =  7\ntrain: {'loss': 0.056113098, 'sparse_categorical_accuracy': 1.0, 'sparse_top_k_categorical_accuracy': 1.0}\nvalid: {'loss': 4.4461513, 'sparse_categorical_accuracy': 0.6273375, 'sparse_top_k_categorical_accuracy': 0.79652715}\n\n================================================================================13:10:17\nepoch =  8\ntrain: {'loss': 0.043448802, 'sparse_categorical_accuracy': 1.0, 'sparse_top_k_categorical_accuracy': 1.0}\nvalid: {'loss': 4.7687583, 'sparse_categorical_accuracy': 0.6224399, 'sparse_top_k_categorical_accuracy': 0.79741764}\n\n================================================================================13:10:26\nepoch =  9\ntrain: {'loss': 0.035002146, 'sparse_categorical_accuracy': 1.0, 'sparse_top_k_categorical_accuracy': 1.0}\nvalid: {'loss': 5.130505, 'sparse_categorical_accuracy': 0.6175423, 'sparse_top_k_categorical_accuracy': 0.794301}\n\n================================================================================13:10:34\nepoch =  10\ntrain: {'loss': 0.028303564, 'sparse_categorical_accuracy': 1.0, 'sparse_top_k_categorical_accuracy': 1.0}\nvalid: {'loss': 5.4559293, 'sparse_categorical_accuracy': 0.6148709, 'sparse_top_k_categorical_accuracy': 0.7947462}\n```\n\n```python\n\n```\n\n### 三，自定义训练循环\n\n\n自定义训练循环无需编译模型，直接利用优化器根据损失函数反向传播迭代参数，拥有最高的灵活性。\n\n```python\ntf.keras.backend.clear_session()\n\ndef create_model():\n    \n    model = models.Sequential()\n\n    model.add(layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN))\n    model.add(layers.Conv1D(filters = 64,kernel_size = 5,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Conv1D(filters = 32,kernel_size = 3,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Flatten())\n    model.add(layers.Dense(CAT_NUM,activation = \"softmax\"))\n    return(model)\n\nmodel = create_model()\nmodel.summary()\n```\n\n```python\noptimizer = optimizers.Nadam()\nloss_func = losses.SparseCategoricalCrossentropy()\n\ntrain_loss = metrics.Mean(name='train_loss')\ntrain_metric = metrics.SparseCategoricalAccuracy(name='train_accuracy')\n\nvalid_loss = metrics.Mean(name='valid_loss')\nvalid_metric = metrics.SparseCategoricalAccuracy(name='valid_accuracy')\n\n@tf.function\ndef train_step(model, features, labels):\n    with tf.GradientTape() as tape:\n        predictions = model(features,training = True)\n        loss = loss_func(labels, predictions)\n    gradients = tape.gradient(loss, model.trainable_variables)\n    optimizer.apply_gradients(zip(gradients, model.trainable_variables))\n\n    train_loss.update_state(loss)\n    train_metric.update_state(labels, predictions)\n    \n\n@tf.function\ndef valid_step(model, features, labels):\n    predictions = model(features)\n    batch_loss = loss_func(labels, predictions)\n    valid_loss.update_state(batch_loss)\n    valid_metric.update_state(labels, predictions)\n    \n\ndef train_model(model,ds_train,ds_valid,epochs):\n    for epoch in tf.range(1,epochs+1):\n        \n        for features, labels in ds_train:\n            train_step(model,features,labels)\n\n        for features, labels in ds_valid:\n            valid_step(model,features,labels)\n\n        logs = 'Epoch={},Loss:{},Accuracy:{},Valid Loss:{},Valid Accuracy:{}'\n        \n        if epoch%1 ==0:\n            printbar()\n            tf.print(tf.strings.format(logs,\n            (epoch,train_loss.result(),train_metric.result(),valid_loss.result(),valid_metric.result())))\n            tf.print(\"\")\n            \n        train_loss.reset_states()\n        valid_loss.reset_states()\n        train_metric.reset_states()\n        valid_metric.reset_states()\n\ntrain_model(model,ds_train,ds_test,10)\n\n```\n\n```python\n\n```\n\n```\n================================================================================13:12:03\nEpoch=1,Loss:2.02051544,Accuracy:0.460253835,Valid Loss:1.75700927,Valid Accuracy:0.536954582\n\n================================================================================13:12:09\nEpoch=2,Loss:1.510795,Accuracy:0.610665798,Valid Loss:1.55349839,Valid Accuracy:0.616206586\n\n================================================================================13:12:17\nEpoch=3,Loss:1.19221532,Accuracy:0.696170092,Valid Loss:1.52315605,Valid Accuracy:0.651380241\n\n================================================================================13:12:23\nEpoch=4,Loss:0.90101546,Accuracy:0.766310394,Valid Loss:1.68327653,Valid Accuracy:0.648263574\n\n================================================================================13:12:30\nEpoch=5,Loss:0.655430496,Accuracy:0.831329346,Valid Loss:1.90872383,Valid Accuracy:0.641139805\n\n================================================================================13:12:37\nEpoch=6,Loss:0.492730737,Accuracy:0.877866864,Valid Loss:2.09966016,Valid Accuracy:0.63223511\n\n================================================================================13:12:44\nEpoch=7,Loss:0.391238362,Accuracy:0.904030263,Valid Loss:2.27431226,Valid Accuracy:0.625111282\n\n================================================================================13:12:51\nEpoch=8,Loss:0.327761739,Accuracy:0.922066331,Valid Loss:2.42568827,Valid Accuracy:0.617542326\n\n================================================================================13:12:58\nEpoch=9,Loss:0.285573095,Accuracy:0.930527747,Valid Loss:2.55942106,Valid Accuracy:0.612644672\n\n================================================================================13:13:05\nEpoch=10,Loss:0.255482465,Accuracy:0.936094403,Valid Loss:2.67789412,Valid Accuracy:0.612199485\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n\n```python\n\n```\n\n```python\n\n```\n"
  },
  {
    "path": "6-3,使用单GPU训练模型.md",
    "content": "# 6-3,使用单GPU训练模型\n\n深度学习的训练过程常常非常耗时，一个模型训练几个小时是家常便饭，训练几天也是常有的事情，有时候甚至要训练几十天。\n\n训练过程的耗时主要来自于两个部分，一部分来自数据准备，另一部分来自参数迭代。\n\n当数据准备过程还是模型训练时间的主要瓶颈时，我们可以使用更多进程来准备数据。\n\n当参数迭代过程成为训练时间的主要瓶颈时，我们通常的方法是应用GPU或者Google的TPU来进行加速。\n\n详见《用GPU加速Keras模型——Colab免费GPU使用攻略》\n\nhttps://zhuanlan.zhihu.com/p/68509398\n\n\n无论是内置fit方法，还是自定义训练循环，从CPU切换成单GPU训练模型都是非常方便的，无需更改任何代码。当存在可用的GPU时，如果不特意指定device，tensorflow会自动优先选择使用GPU来创建张量和执行张量计算。\n\n但如果是在公司或者学校实验室的服务器环境，存在多个GPU和多个使用者时，为了不让单个同学的任务占用全部GPU资源导致其他同学无法使用（tensorflow默认获取全部GPU的全部内存资源权限，但实际上只使用一个GPU的部分资源），我们通常会在开头增加以下几行代码以控制每个任务使用的GPU编号和显存大小，以便其他同学也能够同时训练模型。\n\n\n在Colab笔记本中：修改->笔记本设置->硬件加速器 中选择 GPU\n\n注：以下代码只能在Colab 上才能正确执行。\n\n可通过以下colab链接测试效果《tf_单GPU》：\n\nhttps://colab.research.google.com/drive/1r5dLoeJq5z01sU72BX2M5UiNSkuxsEFe\n\n```python\n%tensorflow_version 2.x\nimport tensorflow as tf\nprint(tf.__version__)\n```\n\n```python\nfrom tensorflow.keras import * \n\n#打印时间分割线\n@tf.function\ndef printbar():\n    today_ts = tf.timestamp()%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8+timestring)\n    \n```\n\n### 一，GPU设置\n\n```python\ngpus = tf.config.list_physical_devices(\"GPU\")\n\nif gpus:\n    gpu0 = gpus[0] #如果有多个GPU，仅使用第0个GPU\n    tf.config.experimental.set_memory_growth(gpu0, True) #设置GPU显存用量按需使用\n    # 或者也可以设置GPU显存为固定使用量(例如：4G)\n    #tf.config.experimental.set_virtual_device_configuration(gpu0,\n    #    [tf.config.experimental.VirtualDeviceConfiguration(memory_limit=4096)]) \n    tf.config.set_visible_devices([gpu0],\"GPU\") \n```\n\n比较GPU和CPU的计算速度\n\n```python\nprintbar()\nwith tf.device(\"/gpu:0\"):\n    tf.random.set_seed(0)\n    a = tf.random.uniform((10000,100),minval = 0,maxval = 3.0)\n    b = tf.random.uniform((100,100000),minval = 0,maxval = 3.0)\n    c = a@b\n    tf.print(tf.reduce_sum(tf.reduce_sum(c,axis = 0),axis=0))\nprintbar()\n```\n\n```\n================================================================================17:37:01\n2.24953778e+11\n================================================================================17:37:01\n```\n\n```python\nprintbar()\nwith tf.device(\"/cpu:0\"):\n    tf.random.set_seed(0)\n    a = tf.random.uniform((10000,100),minval = 0,maxval = 3.0)\n    b = tf.random.uniform((100,100000),minval = 0,maxval = 3.0)\n    c = a@b\n    tf.print(tf.reduce_sum(tf.reduce_sum(c,axis = 0),axis=0))\nprintbar()\n```\n\n```\n================================================================================17:37:34\n2.24953795e+11\n================================================================================17:37:40\n```\n\n```python\n\n```\n\n### 二，准备数据\n\n```python\nMAX_LEN = 300\nBATCH_SIZE = 32\n(x_train,y_train),(x_test,y_test) = datasets.reuters.load_data()\nx_train = preprocessing.sequence.pad_sequences(x_train,maxlen=MAX_LEN)\nx_test = preprocessing.sequence.pad_sequences(x_test,maxlen=MAX_LEN)\n\nMAX_WORDS = x_train.max()+1\nCAT_NUM = y_train.max()+1\n\nds_train = tf.data.Dataset.from_tensor_slices((x_train,y_train)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n   \nds_test = tf.data.Dataset.from_tensor_slices((x_test,y_test)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n          \n```\n\n```python\n\n```\n\n### 三，定义模型\n\n```python\ntf.keras.backend.clear_session()\n\ndef create_model():\n    \n    model = models.Sequential()\n\n    model.add(layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN))\n    model.add(layers.Conv1D(filters = 64,kernel_size = 5,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Conv1D(filters = 32,kernel_size = 3,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Flatten())\n    model.add(layers.Dense(CAT_NUM,activation = \"softmax\"))\n    return(model)\n\nmodel = create_model()\nmodel.summary()\n\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nembedding (Embedding)        (None, 300, 7)            216874    \n_________________________________________________________________\nconv1d (Conv1D)              (None, 296, 64)           2304      \n_________________________________________________________________\nmax_pooling1d (MaxPooling1D) (None, 148, 64)           0         \n_________________________________________________________________\nconv1d_1 (Conv1D)            (None, 146, 32)           6176      \n_________________________________________________________________\nmax_pooling1d_1 (MaxPooling1 (None, 73, 32)            0         \n_________________________________________________________________\nflatten (Flatten)            (None, 2336)              0         \n_________________________________________________________________\ndense (Dense)                (None, 46)                107502    \n=================================================================\nTotal params: 332,856\nTrainable params: 332,856\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\n\n```\n\n### 四，训练模型\n\n```python\noptimizer = optimizers.Nadam()\nloss_func = losses.SparseCategoricalCrossentropy()\n\ntrain_loss = metrics.Mean(name='train_loss')\ntrain_metric = metrics.SparseCategoricalAccuracy(name='train_accuracy')\n\nvalid_loss = metrics.Mean(name='valid_loss')\nvalid_metric = metrics.SparseCategoricalAccuracy(name='valid_accuracy')\n\n@tf.function\ndef train_step(model, features, labels):\n    with tf.GradientTape() as tape:\n        predictions = model(features,training = True)\n        loss = loss_func(labels, predictions)\n    gradients = tape.gradient(loss, model.trainable_variables)\n    optimizer.apply_gradients(zip(gradients, model.trainable_variables))\n\n    train_loss.update_state(loss)\n    train_metric.update_state(labels, predictions)\n    \n@tf.function\ndef valid_step(model, features, labels):\n    predictions = model(features)\n    batch_loss = loss_func(labels, predictions)\n    valid_loss.update_state(batch_loss)\n    valid_metric.update_state(labels, predictions)\n    \n\ndef train_model(model,ds_train,ds_valid,epochs):\n    for epoch in tf.range(1,epochs+1):\n        \n        for features, labels in ds_train:\n            train_step(model,features,labels)\n\n        for features, labels in ds_valid:\n            valid_step(model,features,labels)\n\n        logs = 'Epoch={},Loss:{},Accuracy:{},Valid Loss:{},Valid Accuracy:{}'\n        \n        if epoch%1 ==0:\n            printbar()\n            tf.print(tf.strings.format(logs,\n            (epoch,train_loss.result(),train_metric.result(),valid_loss.result(),valid_metric.result())))\n            tf.print(\"\")\n            \n        train_loss.reset_states()\n        valid_loss.reset_states()\n        train_metric.reset_states()\n        valid_metric.reset_states()\n\ntrain_model(model,ds_train,ds_test,10)\n```\n\n```python\n\n```\n\n```\n================================================================================17:13:26\nEpoch=1,Loss:1.96735072,Accuracy:0.489200622,Valid Loss:1.64124215,Valid Accuracy:0.582813919\n\n================================================================================17:13:28\nEpoch=2,Loss:1.4640888,Accuracy:0.624805152,Valid Loss:1.5559175,Valid Accuracy:0.607747078\n\n================================================================================17:13:30\nEpoch=3,Loss:1.20681274,Accuracy:0.68581605,Valid Loss:1.58494771,Valid Accuracy:0.622439921\n\n================================================================================17:13:31\nEpoch=4,Loss:0.937500894,Accuracy:0.75361836,Valid Loss:1.77466083,Valid Accuracy:0.621994674\n\n================================================================================17:13:33\nEpoch=5,Loss:0.693960547,Accuracy:0.822199941,Valid Loss:2.00267363,Valid Accuracy:0.6197685\n\n================================================================================17:13:35\nEpoch=6,Loss:0.519614,Accuracy:0.870296121,Valid Loss:2.23463202,Valid Accuracy:0.613980412\n\n================================================================================17:13:37\nEpoch=7,Loss:0.408562034,Accuracy:0.901246965,Valid Loss:2.46969271,Valid Accuracy:0.612199485\n\n================================================================================17:13:39\nEpoch=8,Loss:0.339028627,Accuracy:0.920062363,Valid Loss:2.68585229,Valid Accuracy:0.615316093\n\n================================================================================17:13:41\nEpoch=9,Loss:0.293798745,Accuracy:0.92930305,Valid Loss:2.88995624,Valid Accuracy:0.613535166\n\n================================================================================17:13:43\nEpoch=10,Loss:0.263130337,Accuracy:0.936651051,Valid Loss:3.09705234,Valid Accuracy:0.612644672\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "6-4,使用多GPU训练模型.md",
    "content": "# 6-4,使用多GPU训练模型\n\n如果使用多GPU训练模型，推荐使用内置fit方法，较为方便，仅需添加2行代码。\n\n在Colab笔记本中：修改->笔记本设置->硬件加速器 中选择 GPU\n\n注：以下代码只能在Colab 上才能正确执行。\n\n可通过以下colab链接测试效果《tf_多GPU》：\n\nhttps://colab.research.google.com/drive/1j2kp_t0S_cofExSN7IyJ4QtMscbVlXU-\n\n\n\nMirroredStrategy过程简介：\n\n* 训练开始前，该策略在所有 N 个计算设备上均各复制一份完整的模型；\n* 每次训练传入一个批次的数据时，将数据分成 N 份，分别传入 N 个计算设备（即数据并行）；\n* N 个计算设备使用本地变量（镜像变量）分别计算自己所获得的部分数据的梯度；\n* 使用分布式计算的 All-reduce 操作，在计算设备间高效交换梯度数据并进行求和，使得最终每个设备都有了所有设备的梯度之和；\n* 使用梯度求和的结果更新本地变量（镜像变量）；\n* 当所有设备均更新本地变量后，进行下一轮训练（即该并行策略是同步的）。\n\n```python\n%tensorflow_version 2.x\nimport tensorflow as tf\nprint(tf.__version__)\nfrom tensorflow.keras import * \n```\n\n```python\n#此处在colab上使用1个GPU模拟出两个逻辑GPU进行多GPU训练\ngpus = tf.config.experimental.list_physical_devices('GPU')\nif gpus:\n    # 设置两个逻辑GPU模拟多GPU训练\n    try:\n        tf.config.experimental.set_virtual_device_configuration(gpus[0],\n            [tf.config.experimental.VirtualDeviceConfiguration(memory_limit=1024),\n             tf.config.experimental.VirtualDeviceConfiguration(memory_limit=1024)])\n        logical_gpus = tf.config.experimental.list_logical_devices('GPU')\n        print(len(gpus), \"Physical GPU,\", len(logical_gpus), \"Logical GPUs\")\n    except RuntimeError as e:\n        print(e)\n```\n\n### 一，准备数据\n\n```python\nMAX_LEN = 300\nBATCH_SIZE = 32\n(x_train,y_train),(x_test,y_test) = datasets.reuters.load_data()\nx_train = preprocessing.sequence.pad_sequences(x_train,maxlen=MAX_LEN)\nx_test = preprocessing.sequence.pad_sequences(x_test,maxlen=MAX_LEN)\n\nMAX_WORDS = x_train.max()+1\nCAT_NUM = y_train.max()+1\n\nds_train = tf.data.Dataset.from_tensor_slices((x_train,y_train)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n   \nds_test = tf.data.Dataset.from_tensor_slices((x_test,y_test)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n\n```\n\n### 二，定义模型\n\n```python\ntf.keras.backend.clear_session()\ndef create_model():\n    \n    model = models.Sequential()\n\n    model.add(layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN))\n    model.add(layers.Conv1D(filters = 64,kernel_size = 5,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Conv1D(filters = 32,kernel_size = 3,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Flatten())\n    model.add(layers.Dense(CAT_NUM,activation = \"softmax\"))\n    return(model)\n\ndef compile_model(model):\n    model.compile(optimizer=optimizers.Nadam(),\n                loss=losses.SparseCategoricalCrossentropy(from_logits=True),\n                metrics=[metrics.SparseCategoricalAccuracy(),metrics.SparseTopKCategoricalAccuracy(5)]) \n    return(model)\n```\n\n### 三，训练模型\n\n```python\n#增加以下两行代码\nstrategy = tf.distribute.MirroredStrategy()  \nwith strategy.scope(): \n    model = create_model()\n    model.summary()\n    model = compile_model(model)\n    \nhistory = model.fit(ds_train,validation_data = ds_test,epochs = 10)  \n```\n\n```\nWARNING:tensorflow:NCCL is not supported when using virtual GPUs, fallingback to reduction to one device\nINFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1')\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nembedding (Embedding)        (None, 300, 7)            216874    \n_________________________________________________________________\nconv1d (Conv1D)              (None, 296, 64)           2304      \n_________________________________________________________________\nmax_pooling1d (MaxPooling1D) (None, 148, 64)           0         \n_________________________________________________________________\nconv1d_1 (Conv1D)            (None, 146, 32)           6176      \n_________________________________________________________________\nmax_pooling1d_1 (MaxPooling1 (None, 73, 32)            0         \n_________________________________________________________________\nflatten (Flatten)            (None, 2336)              0         \n_________________________________________________________________\ndense (Dense)                (None, 46)                107502    \n=================================================================\nTotal params: 332,856\nTrainable params: 332,856\nNon-trainable params: 0\n_________________________________________________________________\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nTrain for 281 steps, validate for 71 steps\nEpoch 1/10\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\n281/281 [==============================] - 15s 53ms/step - loss: 2.0270 - sparse_categorical_accuracy: 0.4653 - sparse_top_k_categorical_accuracy: 0.7481 - val_loss: 1.7517 - val_sparse_categorical_accuracy: 0.5481 - val_sparse_top_k_categorical_accuracy: 0.7578\nEpoch 2/10\n281/281 [==============================] - 4s 14ms/step - loss: 1.5206 - sparse_categorical_accuracy: 0.6045 - sparse_top_k_categorical_accuracy: 0.7938 - val_loss: 1.5715 - val_sparse_categorical_accuracy: 0.5993 - val_sparse_top_k_categorical_accuracy: 0.7983\nEpoch 3/10\n281/281 [==============================] - 4s 14ms/step - loss: 1.2178 - sparse_categorical_accuracy: 0.6843 - sparse_top_k_categorical_accuracy: 0.8547 - val_loss: 1.5232 - val_sparse_categorical_accuracy: 0.6327 - val_sparse_top_k_categorical_accuracy: 0.8112\nEpoch 4/10\n281/281 [==============================] - 4s 13ms/step - loss: 0.9127 - sparse_categorical_accuracy: 0.7648 - sparse_top_k_categorical_accuracy: 0.9113 - val_loss: 1.6527 - val_sparse_categorical_accuracy: 0.6296 - val_sparse_top_k_categorical_accuracy: 0.8201\nEpoch 5/10\n281/281 [==============================] - 4s 14ms/step - loss: 0.6606 - sparse_categorical_accuracy: 0.8321 - sparse_top_k_categorical_accuracy: 0.9525 - val_loss: 1.8791 - val_sparse_categorical_accuracy: 0.6158 - val_sparse_top_k_categorical_accuracy: 0.8219\nEpoch 6/10\n281/281 [==============================] - 4s 14ms/step - loss: 0.4919 - sparse_categorical_accuracy: 0.8799 - sparse_top_k_categorical_accuracy: 0.9725 - val_loss: 2.1282 - val_sparse_categorical_accuracy: 0.6037 - val_sparse_top_k_categorical_accuracy: 0.8112\nEpoch 7/10\n281/281 [==============================] - 4s 14ms/step - loss: 0.3947 - sparse_categorical_accuracy: 0.9051 - sparse_top_k_categorical_accuracy: 0.9814 - val_loss: 2.3033 - val_sparse_categorical_accuracy: 0.6046 - val_sparse_top_k_categorical_accuracy: 0.8094\nEpoch 8/10\n281/281 [==============================] - 4s 14ms/step - loss: 0.3335 - sparse_categorical_accuracy: 0.9207 - sparse_top_k_categorical_accuracy: 0.9863 - val_loss: 2.4255 - val_sparse_categorical_accuracy: 0.5993 - val_sparse_top_k_categorical_accuracy: 0.8099\nEpoch 9/10\n281/281 [==============================] - 4s 14ms/step - loss: 0.2919 - sparse_categorical_accuracy: 0.9304 - sparse_top_k_categorical_accuracy: 0.9911 - val_loss: 2.5571 - val_sparse_categorical_accuracy: 0.6020 - val_sparse_top_k_categorical_accuracy: 0.8126\nEpoch 10/10\n281/281 [==============================] - 4s 14ms/step - loss: 0.2617 - sparse_categorical_accuracy: 0.9342 - sparse_top_k_categorical_accuracy: 0.9937 - val_loss: 2.6700 - val_sparse_categorical_accuracy: 0.6077 - val_sparse_top_k_categorical_accuracy: 0.8148\nCPU times: user 1min 2s, sys: 8.59 s, total: 1min 10s\nWall time: 58.5 s\n```\n\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "6-5,使用TPU训练模型.md",
    "content": "# 6-5,使用TPU训练模型\n\n如果想尝试使用Google Colab上的TPU来训练模型，也是非常方便，仅需添加6行代码。\n\n在Colab笔记本中：修改->笔记本设置->硬件加速器 中选择 TPU\n\n注：以下代码只能在Colab 上才能正确执行。\n\n可通过以下colab链接测试效果《tf_TPU》：\n\nhttps://colab.research.google.com/drive/1XCIhATyE1R7lq6uwFlYlRsUr5d9_-r1s\n\n\n```python\n%tensorflow_version 2.x\nimport tensorflow as tf\nprint(tf.__version__)\nfrom tensorflow.keras import * \n```\n\n### 一，准备数据\n\n```python\nMAX_LEN = 300\nBATCH_SIZE = 32\n(x_train,y_train),(x_test,y_test) = datasets.reuters.load_data()\nx_train = preprocessing.sequence.pad_sequences(x_train,maxlen=MAX_LEN)\nx_test = preprocessing.sequence.pad_sequences(x_test,maxlen=MAX_LEN)\n\nMAX_WORDS = x_train.max()+1\nCAT_NUM = y_train.max()+1\n\nds_train = tf.data.Dataset.from_tensor_slices((x_train,y_train)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n   \nds_test = tf.data.Dataset.from_tensor_slices((x_test,y_test)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n```\n\n### 二，定义模型\n\n```python\ntf.keras.backend.clear_session()\ndef create_model():\n    \n    model = models.Sequential()\n\n    model.add(layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN))\n    model.add(layers.Conv1D(filters = 64,kernel_size = 5,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Conv1D(filters = 32,kernel_size = 3,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Flatten())\n    model.add(layers.Dense(CAT_NUM,activation = \"softmax\"))\n    return(model)\n\ndef compile_model(model):\n    model.compile(optimizer=optimizers.Nadam(),\n                loss=losses.SparseCategoricalCrossentropy(from_logits=True),\n                metrics=[metrics.SparseCategoricalAccuracy(),metrics.SparseTopKCategoricalAccuracy(5)]) \n    return(model)\n```\n\n```python\n\n```\n\n### 三，训练模型\n\n```python\n#增加以下6行代码\nimport os\nresolver = tf.distribute.cluster_resolver.TPUClusterResolver(tpu='grpc://' + os.environ['COLAB_TPU_ADDR'])\ntf.config.experimental_connect_to_cluster(resolver)\ntf.tpu.experimental.initialize_tpu_system(resolver)\nstrategy = tf.distribute.experimental.TPUStrategy(resolver)\nwith strategy.scope():\n    model = create_model()\n    model.summary()\n    model = compile_model(model)\n    \n```\n\n```\nWARNING:tensorflow:TPU system 10.26.134.242:8470 has already been initialized. Reinitializing the TPU can cause previously created variables on TPU to be lost.\nWARNING:tensorflow:TPU system 10.26.134.242:8470 has already been initialized. Reinitializing the TPU can cause previously created variables on TPU to be lost.\nINFO:tensorflow:Initializing the TPU system: 10.26.134.242:8470\nINFO:tensorflow:Initializing the TPU system: 10.26.134.242:8470\nINFO:tensorflow:Clearing out eager caches\nINFO:tensorflow:Clearing out eager caches\nINFO:tensorflow:Finished initializing TPU system.\nINFO:tensorflow:Finished initializing TPU system.\nINFO:tensorflow:Found TPU system:\nINFO:tensorflow:Found TPU system:\nINFO:tensorflow:*** Num TPU Cores: 8\nINFO:tensorflow:*** Num TPU Cores: 8\nINFO:tensorflow:*** Num TPU Workers: 1\nINFO:tensorflow:*** Num TPU Workers: 1\nINFO:tensorflow:*** Num TPU Cores Per Worker: 8\nINFO:tensorflow:*** Num TPU Cores Per Worker: 8\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:localhost/replica:0/task:0/device:CPU:0, CPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:localhost/replica:0/task:0/device:CPU:0, CPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:localhost/replica:0/task:0/device:XLA_CPU:0, XLA_CPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:localhost/replica:0/task:0/device:XLA_CPU:0, XLA_CPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:CPU:0, CPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:CPU:0, CPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:0, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:0, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:1, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:1, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:2, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:2, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:3, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:3, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:4, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:4, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:5, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:5, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:6, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:6, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:7, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:7, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU_SYSTEM:0, TPU_SYSTEM, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU_SYSTEM:0, TPU_SYSTEM, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:XLA_CPU:0, XLA_CPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:XLA_CPU:0, XLA_CPU, 0, 0)\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nembedding (Embedding)        (None, 300, 7)            216874    \n_________________________________________________________________\nconv1d (Conv1D)              (None, 296, 64)           2304      \n_________________________________________________________________\nmax_pooling1d (MaxPooling1D) (None, 148, 64)           0         \n_________________________________________________________________\nconv1d_1 (Conv1D)            (None, 146, 32)           6176      \n_________________________________________________________________\nmax_pooling1d_1 (MaxPooling1 (None, 73, 32)            0         \n_________________________________________________________________\nflatten (Flatten)            (None, 2336)              0         \n_________________________________________________________________\ndense (Dense)                (None, 46)                107502    \n=================================================================\nTotal params: 332,856\nTrainable params: 332,856\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\nhistory = model.fit(ds_train,validation_data = ds_test,epochs = 10)\n```\n\n```\nTrain for 281 steps, validate for 71 steps\nEpoch 1/10\n281/281 [==============================] - 12s 43ms/step - loss: 3.4466 - sparse_categorical_accuracy: 0.4332 - sparse_top_k_categorical_accuracy: 0.7180 - val_loss: 3.3179 - val_sparse_categorical_accuracy: 0.5352 - val_sparse_top_k_categorical_accuracy: 0.7195\nEpoch 2/10\n281/281 [==============================] - 6s 20ms/step - loss: 3.3251 - sparse_categorical_accuracy: 0.5405 - sparse_top_k_categorical_accuracy: 0.7302 - val_loss: 3.3082 - val_sparse_categorical_accuracy: 0.5463 - val_sparse_top_k_categorical_accuracy: 0.7235\nEpoch 3/10\n281/281 [==============================] - 6s 20ms/step - loss: 3.2961 - sparse_categorical_accuracy: 0.5729 - sparse_top_k_categorical_accuracy: 0.7280 - val_loss: 3.3026 - val_sparse_categorical_accuracy: 0.5499 - val_sparse_top_k_categorical_accuracy: 0.7217\nEpoch 4/10\n281/281 [==============================] - 5s 19ms/step - loss: 3.2751 - sparse_categorical_accuracy: 0.5924 - sparse_top_k_categorical_accuracy: 0.7276 - val_loss: 3.2957 - val_sparse_categorical_accuracy: 0.5543 - val_sparse_top_k_categorical_accuracy: 0.7217\nEpoch 5/10\n281/281 [==============================] - 5s 19ms/step - loss: 3.2655 - sparse_categorical_accuracy: 0.6008 - sparse_top_k_categorical_accuracy: 0.7290 - val_loss: 3.3022 - val_sparse_categorical_accuracy: 0.5490 - val_sparse_top_k_categorical_accuracy: 0.7231\nEpoch 6/10\n281/281 [==============================] - 5s 19ms/step - loss: 3.2616 - sparse_categorical_accuracy: 0.6041 - sparse_top_k_categorical_accuracy: 0.7295 - val_loss: 3.3015 - val_sparse_categorical_accuracy: 0.5503 - val_sparse_top_k_categorical_accuracy: 0.7235\nEpoch 7/10\n281/281 [==============================] - 6s 21ms/step - loss: 3.2595 - sparse_categorical_accuracy: 0.6059 - sparse_top_k_categorical_accuracy: 0.7322 - val_loss: 3.3064 - val_sparse_categorical_accuracy: 0.5454 - val_sparse_top_k_categorical_accuracy: 0.7266\nEpoch 8/10\n281/281 [==============================] - 6s 21ms/step - loss: 3.2591 - sparse_categorical_accuracy: 0.6063 - sparse_top_k_categorical_accuracy: 0.7327 - val_loss: 3.3025 - val_sparse_categorical_accuracy: 0.5481 - val_sparse_top_k_categorical_accuracy: 0.7231\nEpoch 9/10\n281/281 [==============================] - 5s 19ms/step - loss: 3.2588 - sparse_categorical_accuracy: 0.6062 - sparse_top_k_categorical_accuracy: 0.7332 - val_loss: 3.2992 - val_sparse_categorical_accuracy: 0.5521 - val_sparse_top_k_categorical_accuracy: 0.7257\nEpoch 10/10\n281/281 [==============================] - 5s 18ms/step - loss: 3.2577 - sparse_categorical_accuracy: 0.6073 - sparse_top_k_categorical_accuracy: 0.7363 - val_loss: 3.2981 - val_sparse_categorical_accuracy: 0.5516 - val_sparse_top_k_categorical_accuracy: 0.7306\nCPU times: user 18.9 s, sys: 3.86 s, total: 22.7 s\nWall time: 1min 1s\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n\n```python\n\n```\n"
  },
  {
    "path": "6-6,使用tensorflow-serving部署模型.md",
    "content": "# 6-6,使用tensorflow-serving部署模型\n\nTensorFlow训练好的模型以tensorflow原生方式保存成protobuf文件后可以用许多方式部署运行。\n\n例如：通过 tensorflow-js 可以用javascrip脚本加载模型并在浏览器中运行模型。\n\n通过 tensorflow-lite 可以在移动和嵌入式设备上加载并运行TensorFlow模型。\n\n通过 tensorflow-serving 可以加载模型后提供网络接口API服务，通过任意编程语言发送网络请求都可以获取模型预测结果。\n\n通过 tensorFlow for Java接口，可以在Java或者spark(scala)中调用tensorflow模型进行预测。\n\n我们主要介绍tensorflow serving部署模型、使用spark(scala)调用tensorflow模型的方法。\n\n```python\n\n```\n\n### 〇，tensorflow serving模型部署概述\n\n<!-- #region -->\n使用 tensorflow serving 部署模型要完成以下步骤。\n\n* (1) 准备protobuf模型文件。\n\n* (2) 安装tensorflow serving。\n\n* (3) 启动tensorflow serving 服务。\n\n* (4) 向API服务发送请求，获取预测结果。\n\n\n可通过以下colab链接测试效果《tf_serving》：\nhttps://colab.research.google.com/drive/1vS5LAYJTEn-H0GDb1irzIuyRB8E3eWc8\n\n<!-- #endregion -->\n\n```python\n%tensorflow_version 2.x\nimport tensorflow as tf\nprint(tf.__version__)\nfrom tensorflow.keras import * \n\n```\n\n### 一，准备protobuf模型文件\n\n我们使用tf.keras 训练一个简单的线性回归模型，并保存成protobuf文件。\n\n```python\nimport tensorflow as tf\nfrom tensorflow.keras import models,layers,optimizers\n\n## 样本数量\nn = 800\n\n## 生成测试用数据集\nX = tf.random.uniform([n,2],minval=-10,maxval=10) \nw0 = tf.constant([[2.0],[-1.0]])\nb0 = tf.constant(3.0)\n\nY = X@w0 + b0 + tf.random.normal([n,1],\n    mean = 0.0,stddev= 2.0) # @表示矩阵乘法,增加正态扰动\n\n## 建立模型\ntf.keras.backend.clear_session()\ninputs = layers.Input(shape = (2,),name =\"inputs\") #设置输入名字为inputs\noutputs = layers.Dense(1, name = \"outputs\")(inputs) #设置输出名字为outputs\nlinear = models.Model(inputs = inputs,outputs = outputs)\nlinear.summary()\n\n## 使用fit方法进行训练\nlinear.compile(optimizer=\"rmsprop\",loss=\"mse\",metrics=[\"mae\"])\nlinear.fit(X,Y,batch_size = 8,epochs = 100)  \n\ntf.print(\"w = \",linear.layers[1].kernel)\ntf.print(\"b = \",linear.layers[1].bias)\n\n## 将模型保存成pb格式文件\nexport_path = \"./data/linear_model/\"\nversion = \"1\"       #后续可以通过版本号进行模型版本迭代与管理\nlinear.save(export_path+version, save_format=\"tf\") \n```\n\n```python\n#查看保存的模型文件\n!ls {export_path+version}\n```\n\n```\nassets\tsaved_model.pb\tvariables\n```\n\n```python\n# 查看模型文件相关信息\n!saved_model_cli show --dir {export_path+str(version)} --all\n```\n\n```\nMetaGraphDef with tag-set: 'serve' contains the following SignatureDefs:\n\nsignature_def['__saved_model_init_op']:\n  The given SavedModel SignatureDef contains the following input(s):\n  The given SavedModel SignatureDef contains the following output(s):\n    outputs['__saved_model_init_op'] tensor_info:\n        dtype: DT_INVALID\n        shape: unknown_rank\n        name: NoOp\n  Method name is: \n\nsignature_def['serving_default']:\n  The given SavedModel SignatureDef contains the following input(s):\n    inputs['inputs'] tensor_info:\n        dtype: DT_FLOAT\n        shape: (-1, 2)\n        name: serving_default_inputs:0\n  The given SavedModel SignatureDef contains the following output(s):\n    outputs['outputs'] tensor_info:\n        dtype: DT_FLOAT\n        shape: (-1, 1)\n        name: StatefulPartitionedCall:0\n  Method name is: tensorflow/serving/predict\nWARNING:tensorflow:From /tensorflow-2.1.0/python3.6/tensorflow_core/python/ops/resource_variable_ops.py:1786: calling BaseResourceVariable.__init__ (from tensorflow.python.ops.resource_variable_ops) with constraint is deprecated and will be removed in a future version.\nInstructions for updating:\nIf using Keras pass *_constraint arguments to layers.\n\nDefined Functions:\n  Function Name: '__call__'\n    Option #1\n      Callable with:\n        Argument #1\n          inputs: TensorSpec(shape=(None, 2), dtype=tf.float32, name='inputs')\n        Argument #2\n          DType: bool\n          Value: False\n        Argument #3\n          DType: NoneType\n          Value: None\n    Option #2\n      Callable with:\n        Argument #1\n          inputs: TensorSpec(shape=(None, 2), dtype=tf.float32, name='inputs')\n        Argument #2\n          DType: bool\n          Value: True\n        Argument #3\n          DType: NoneType\n          Value: None\n\n  Function Name: '_default_save_signature'\n    Option #1\n      Callable with:\n        Argument #1\n          inputs: TensorSpec(shape=(None, 2), dtype=tf.float32, name='inputs')\n\n  Function Name: 'call_and_return_all_conditional_losses'\n    Option #1\n      Callable with:\n        Argument #1\n          inputs: TensorSpec(shape=(None, 2), dtype=tf.float32, name='inputs')\n        Argument #2\n          DType: bool\n          Value: True\n        Argument #3\n          DType: NoneType\n          Value: None\n    Option #2\n      Callable with:\n        Argument #1\n          inputs: TensorSpec(shape=(None, 2), dtype=tf.float32, name='inputs')\n        Argument #2\n          DType: bool\n          Value: False\n        Argument #3\n          DType: NoneType\n          Value: None\n```\n\n```python\n\n```\n\n### 二，安装 tensorflow serving\n\n\n安装 tensorflow serving 有2种主要方法：通过Docker镜像安装，通过apt安装。\n\n通过Docker镜像安装是最简单，最直接的方法，推荐采用。\n\nDocker可以理解成一种容器，其上面可以给各种不同的程序提供独立的运行环境。\n\n一般业务中用到tensorflow的企业都会有运维同学通过Docker 搭建 tensorflow serving.\n\n无需算法工程师同学动手安装，以下安装过程仅供参考。\n\n不同操作系统机器上安装Docker的方法可以参照以下链接。\n\nWindows: https://www.runoob.com/docker/windows-docker-install.html\n\nMacOs: https://www.runoob.com/docker/macos-docker-install.html\n\nCentOS: https://www.runoob.com/docker/centos-docker-install.html\n\n安装Docker成功后，使用如下命令加载 tensorflow/serving 镜像到Docker中\n\ndocker pull tensorflow/serving\n\n\n```python\n\n```\n\n### 三，启动 tensorflow serving 服务\n\n```python\n!docker run -t --rm -p 8501:8501 \\\n    -v \"/Users/.../data/linear_model/\" \\\n    -e MODEL_NAME=linear_model \\\n    tensorflow/serving & >server.log 2>&1\n```\n\n```python\n\n```\n\n### 四，向API服务发送请求\n\n\n可以使用任何编程语言的http功能发送请求，下面示范linux的 curl 命令发送请求，以及Python的requests库发送请求。\n\n```python\n!curl -d '{\"instances\": [[1.0, 2.0], [5.0,7.0]]}' \\\n    -X POST http://localhost:8501/v1/models/linear_model:predict\n```\n\n```\n{\n    \"predictions\": [[3.06546211], [6.02843142]\n    ]\n}\n```\n\n```python\nimport json,requests\n\ndata = json.dumps({\"signature_name\": \"serving_default\", \"instances\": [[1.0, 2.0], [5.0,7.0]]})\nheaders = {\"content-type\": \"application/json\"}\njson_response = requests.post('http://localhost:8501/v1/models/linear_model:predict', \n        data=data, headers=headers)\npredictions = json.loads(json_response.text)[\"predictions\"]\nprint(predictions)\n```\n\n```\n[[3.06546211], [6.02843142]]\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n\n```python\n\n```\n\n```python\n\n```\n"
  },
  {
    "path": "6-7,使用spark-scala调用tensorflow模型.md",
    "content": "# 6-7,使用spark-scala调用tensorflow2.0训练好的模型\n\n本篇文章介绍在spark中调用训练好的tensorflow模型进行预测的方法。\n\n本文内容的学习需要一定的spark和scala基础。\n\n如果使用pyspark的话会比较简单，只需要在每个executor上用Python加载模型分别预测就可以了。\n\n但工程上为了性能考虑，通常使用的是scala版本的spark。\n\n本篇文章我们通过TensorFlow for Java 在spark中调用训练好的tensorflow模型。\n\n利用spark的分布式计算能力，从而可以让训练好的tensorflow模型在成百上千的机器上分布式并行执行模型推断。\n\n\n\n\n```python\n\n```\n\n### 〇，spark-scala调用tensorflow模型概述\n\n\n在spark(scala)中调用tensorflow模型进行预测需要完成以下几个步骤。\n\n（1）准备protobuf模型文件\n\n（2）创建spark(scala)项目，在项目中添加java版本的tensorflow对应的jar包依赖\n\n（3）在spark(scala)项目中driver端加载tensorflow模型调试成功\n\n（4）在spark(scala)项目中通过RDD在executor上加载tensorflow模型调试成功\n\n（5） 在spark(scala)项目中通过DataFrame在executor上加载tensorflow模型调试成功\n\n\n```python\n\n```\n\n### 一，准备protobuf模型文件\n\n\n我们使用tf.keras 训练一个简单的线性回归模型，并保存成protobuf文件。\n\n```python\n\n```\n\n```python\nimport tensorflow as tf\nfrom tensorflow.keras import models,layers,optimizers\n\n## 样本数量\nn = 800\n\n## 生成测试用数据集\nX = tf.random.uniform([n,2],minval=-10,maxval=10) \nw0 = tf.constant([[2.0],[-1.0]])\nb0 = tf.constant(3.0)\n\nY = X@w0 + b0 + tf.random.normal([n,1],mean = 0.0,stddev= 2.0)  # @表示矩阵乘法,增加正态扰动\n\n## 建立模型\ntf.keras.backend.clear_session()\ninputs = layers.Input(shape = (2,),name =\"inputs\") #设置输入名字为inputs\noutputs = layers.Dense(1, name = \"outputs\")(inputs) #设置输出名字为outputs\nlinear = models.Model(inputs = inputs,outputs = outputs)\nlinear.summary()\n\n## 使用fit方法进行训练\nlinear.compile(optimizer=\"rmsprop\",loss=\"mse\",metrics=[\"mae\"])\nlinear.fit(X,Y,batch_size = 8,epochs = 100)  \n\ntf.print(\"w = \",linear.layers[1].kernel)\ntf.print(\"b = \",linear.layers[1].bias)\n\n## 将模型保存成pb格式文件\nexport_path = \"./data/linear_model/\"\nversion = \"1\"       #后续可以通过版本号进行模型版本迭代与管理\nlinear.save(export_path+version, save_format=\"tf\") \n\n```\n\n```python\n\n```\n\n```python\n!ls {export_path+version}\n```\n\n```python\n# 查看模型文件相关信息\n!saved_model_cli show --dir {export_path+str(version)} --all\n```\n\n```python\n\n```\n\n模型文件信息中这些标红的部分都是后面有可能会用到的。\n\n![](./data/模型文件信息.png)\n\n```python\n\n```\n\n### 二，创建spark(scala)项目，在项目中添加java版本的tensorflow对应的jar包依赖\n\n```python\n\n```\n\n如果使用maven管理项目，需要添加如下 jar包依赖\n\n```\n<!-- https://mvnrepository.com/artifact/org.tensorflow/tensorflow -->\n<dependency>\n    <groupId>org.tensorflow</groupId>\n    <artifactId>tensorflow</artifactId>\n    <version>1.15.0</version>\n</dependency>\n```\n\n也可以从下面网址中直接下载 org.tensorflow.tensorflow的jar包\n\n以及其依赖的org.tensorflow.libtensorflow 和 org.tensorflowlibtensorflow_jni的jar包 放到项目中。\n\nhttps://mvnrepository.com/artifact/org.tensorflow/tensorflow/1.15.0\n\n\n```python\n\n```\n\n```python\n\n```\n\n### 三， 在spark(scala)项目中driver端加载tensorflow模型调试成功\n\n\n我们的示范代码在jupyter notebook中进行演示，需要安装toree以支持spark(scala)。\n\n<!-- #region -->\n```scala\nimport scala.collection.mutable.WrappedArray\nimport org.{tensorflow=>tf}\n\n//注：load函数的第二个参数一般都是“serve”，可以从模型文件相关信息中找到\n\nval bundle = tf.SavedModelBundle \n   .load(\"/Users/liangyun/CodeFiles/eat_tensorflow2_in_30_days/data/linear_model/1\",\"serve\")\n\n//注：在java版本的tensorflow中还是类似tensorflow1.0中静态计算图的模式，需要建立Session, 指定feed的数据和fetch的结果, 然后 run.\n//注：如果有多个数据需要喂入，可以连续使用多个feed方法\n//注：输入必须是float类型\n\nval sess = bundle.session()\nval x = tf.Tensor.create(Array(Array(1.0f,2.0f),Array(2.0f,3.0f)))\nval y =  sess.runner().feed(\"serving_default_inputs:0\", x)\n         .fetch(\"StatefulPartitionedCall:0\").run().get(0)\n\nval result = Array.ofDim[Float](y.shape()(0).toInt,y.shape()(1).toInt)\ny.copyTo(result)\n\nif(x != null) x.close()\nif(y != null) y.close()\nif(sess != null) sess.close()\nif(bundle != null) bundle.close()  \n\nresult\n\n```\n<!-- #endregion -->\n\n输出如下：\n\n```\nArray(Array(3.019596), Array(3.9878292))\n```\n\n\n![](./data/TfDriver.png)\n\n```python\n\n```\n\n### 四，在spark(scala)项目中通过RDD在executor上加载tensorflow模型调试成功\n\n\n下面我们通过广播机制将Driver端加载的TensorFlow模型传递到各个executor上，并在executor上分布式地调用模型进行推断。\n\n\n<!-- #region -->\n```scala\nimport org.apache.spark.sql.SparkSession\nimport scala.collection.mutable.WrappedArray\nimport org.{tensorflow=>tf}\n\nval spark = SparkSession\n    .builder()\n    .appName(\"TfRDD\")\n    .enableHiveSupport()\n    .getOrCreate()\n\nval sc = spark.sparkContext\n\n//在Driver端加载模型\nval bundle = tf.SavedModelBundle \n   .load(\"/Users/liangyun/CodeFiles/master_tensorflow2_in_20_hours/data/linear_model/1\",\"serve\")\n\n//利用广播将模型发送到executor上\nval broads = sc.broadcast(bundle)\n\n//构造数据集\nval rdd_data = sc.makeRDD(List(Array(1.0f,2.0f),Array(3.0f,5.0f),Array(6.0f,7.0f),Array(8.0f,3.0f)))\n\n//通过mapPartitions调用模型进行批量推断\nval rdd_result = rdd_data.mapPartitions(iter => {\n    \n    val arr = iter.toArray\n    val model = broads.value\n    val sess = model.session()\n    val x = tf.Tensor.create(arr)\n    val y =  sess.runner().feed(\"serving_default_inputs:0\", x)\n             .fetch(\"StatefulPartitionedCall:0\").run().get(0)\n\n    //将预测结果拷贝到相同shape的Float类型的Array中\n    val result = Array.ofDim[Float](y.shape()(0).toInt,y.shape()(1).toInt)\n    y.copyTo(result)\n    result.iterator\n    \n})\n\n\nrdd_result.take(5)\nbundle.close\n```\n<!-- #endregion -->\n\n```python\n\n```\n\n输出如下：\n\n```\nArray(Array(3.019596), Array(3.9264367), Array(7.8607616), Array(15.974984))\n```\n\n\n![](./data/TfRDD.png)\n\n```python\n\n```\n\n### 五， 在spark(scala)项目中通过DataFrame在executor上加载tensorflow模型调试成功\n\n\n除了可以在Spark的RDD数据上调用tensorflow模型进行分布式推断，\n\n我们也可以在DataFrame数据上调用tensorflow模型进行分布式推断。\n\n主要思路是将推断方法注册成为一个sparkSQL函数。\n\n<!-- #region -->\n```scala\nimport org.apache.spark.sql.SparkSession\nimport scala.collection.mutable.WrappedArray\nimport org.{tensorflow=>tf}\n\nobject TfDataFrame extends Serializable{\n    \n    \n    def main(args:Array[String]):Unit = {\n        \n        val spark = SparkSession\n        .builder()\n        .appName(\"TfDataFrame\")\n        .enableHiveSupport()\n        .getOrCreate()\n        val sc = spark.sparkContext\n        \n        \n        import spark.implicits._\n\n        val bundle = tf.SavedModelBundle \n           .load(\"/Users/liangyun/CodeFiles/master_tensorflow2_in_20_hours/data/linear_model/1\",\"serve\")\n\n        val broads = sc.broadcast(bundle)\n        \n        //构造预测函数，并将其注册成sparkSQL的udf\n        val tfpredict = (features:WrappedArray[Float])  => {\n            val bund = broads.value\n            val sess = bund.session()\n            val x = tf.Tensor.create(Array(features.toArray))\n            val y =  sess.runner().feed(\"serving_default_inputs:0\", x)\n                     .fetch(\"StatefulPartitionedCall:0\").run().get(0)\n            val result = Array.ofDim[Float](y.shape()(0).toInt,y.shape()(1).toInt)\n            y.copyTo(result)\n            val y_pred = result(0)(0)\n            y_pred\n        }\n        spark.udf.register(\"tfpredict\",tfpredict)\n        \n        //构造DataFrame数据集，将features放到一列中\n        val dfdata = sc.parallelize(List(Array(1.0f,2.0f),Array(3.0f,5.0f),Array(7.0f,8.0f))).toDF(\"features\")\n        dfdata.show \n        \n        //调用sparkSQL预测函数，增加一个新的列作为y_preds\n        val dfresult = dfdata.selectExpr(\"features\",\"tfpredict(features) as y_preds\")\n        dfresult.show \n        bundle.close\n    }\n}\n\n```\n\n<!-- #endregion -->\n\n<!-- #region -->\n```scala\nTfDataFrame.main(Array())\n```\n<!-- #endregion -->\n\n```\n+----------+\n|  features|\n+----------+\n|[1.0, 2.0]|\n|[3.0, 5.0]|\n|[7.0, 8.0]|\n+----------+\n\n+----------+---------+\n|  features|  y_preds|\n+----------+---------+\n|[1.0, 2.0]| 3.019596|\n|[3.0, 5.0]|3.9264367|\n|[7.0, 8.0]| 8.828995|\n+----------+---------+\n```\n\n\n以上我们分别在spark 的RDD数据结构和DataFrame数据结构上实现了调用一个tf.keras实现的线性回归模型进行分布式模型推断。\n\n在本例基础上稍作修改则可以用spark调用训练好的各种复杂的神经网络模型进行分布式模型推断。\n\n但实际上tensorflow并不仅仅适合实现神经网络，其底层的计算图语言可以表达各种数值计算过程。\n\n利用其丰富的低阶API，我们可以在tensorflow2.0上实现任意机器学习模型，\n\n结合tf.Module提供的便捷的封装功能，我们可以将训练好的任意机器学习模型导出成模型文件并在spark上分布式调用执行。\n\n这无疑为我们的工程应用提供了巨大的想象空间。\n\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![算法美食屋二维码.jpg](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "LICENSE",
    "content": "                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n"
  },
  {
    "path": "README.md",
    "content": "# How to eat TensorFlow2 in 30 days ?🔥🔥\n\nClick here for [Chinese Version（中文版）](#30天吃掉那只-tensorflow2)\n\n**《10天吃掉那只pyspark》**\n* 🚀 github项目地址: https://github.com/lyhue1991/eat_pyspark_in_10_days\n* 🐳 和鲸专栏地址: https://www.heywhale.com/home/column/5fe6aa955e24ed00302304e0 【代码可直接fork后云端运行，无需配置环境】\n\n\n**《20天吃掉那只Pytorch》**\n* 🚀 github项目地址: https://github.com/lyhue1991/eat_pytorch_in_20_days\n* 🐳 和鲸专栏地址: https://www.heywhale.com/home/column/5f2ac5d8af3980002cb1bc08 【代码可直接fork后云端运行，无需配置环境】\n\n\n**《30天吃掉那只TensorFlow2》**\n* 🚀 github项目地址: https://github.com/lyhue1991/eat_tensorflow2_in_30_days\n* 🐳 和鲸专栏地址: https://www.heywhale.com/home/column/5d8ef3c3037db3002d3aa3a0 【代码可直接fork后云端运行，无需配置环境】\n\n**极速通道** \n*  🚀 公众号 “**算法美食屋**” 后台回复暗号：\"**吃货来了**\"\n*  😋 获取以上3套教程的jupyter notebook 源码文件以及全部数据集的百度云盘下载链接。\n*   https://mp.weixin.qq.com/s/ymLtH5BqlWAkpOmCLQOYxw \n\n\n### 1. TensorFlow2 🍎 or Pytorch🔥\n\nConclusion first: \n\n**For the engineers, priority goes to TensorFlow2.**\n\n**For the students and researchers，first choice should be Pytorch.**\n\n**The best way is to master both of them if having sufficient time.**\n\n\nReasons:\n\n* 1. **Model implementation is the most important in the industry. Deployment supporting tensorflow models (not Pytorch) exclusively is the present situation in the majority of the Internet enterprises in China.** What's more, the industry prefers the models with higher availability; in most cases, they use well-validated modeling architectures with the minimized requirements of adjustment.\n\n\n* 2. **Fast iterative development and publication is the most important for the researchers since they need to test a lot of new models. Pytorch has advantages in accessing and debugging comparing with TensorFlow2.** Pytorch is most frequently used in academy since 2019 with a large amount of the cutting-edge results.\n\n\n* 3. Overall, TensorFlow2 and Pytorch are quite similar in programming nowadays, so mastering one helps learning the other. Mastering both framework provides you a lot more open-sourced models and helps you switching between them.\n\n```python\n\n```\n\n### 2. Keras🍏 and tf.keras 🍎\n\nConclusion first: \n\n**Keras will be discontinued in development after version 2.3.0, so use tf.keras.**\n\n\nKeras is a high-level API for the deep learning frameworks. It help the users to define and training DL networks with a more intuitive way.\n\nThe Keras libraries installed by pip implement this high-level API for the backends in tensorflow, theano, CNTK, etc.\n\ntf.keras is the high-level API just for Tensorflow, which is based on low-level APIs in Tensorflow.\n\nMost but not all of the functions in tf.keras are the same for those in Keras (which is compatible to many kinds of backend). tf.keras has a tighter combination to TensorFlow comparing to Keras.\n\nWith the acquisition by Google, Keras will not update after version 2.3.0 , thus the users should use tf.keras from now on, instead of using Keras installed by pip.\n\n```python\n\n```\n\n### 3. What Should You Know Before Reading This Book 📖?\n\n**It is suggested that the readers have foundamental knowledges of machine/deep learning and experience of modeling using Keras or TensorFlow 1.0.**\n\n**For those who have zero experience of machine/deep learning, it is strongly suggested to refer to [\"Deep Learning with Python\"](https://www.amazon.com/Deep-Learning-Python-Francois-Chollet/dp/1617294438/ref=sr_1_1?dchild=1&keywords=Deep+Learning+with+Python&qid=1586194568&sr=8-1) along with reading this book.**\n\n\n[\"Deep Learning with Python\"](https://www.amazon.com/Deep-Learning-Python-Francois-Chollet/dp/1617294438/ref=sr_1_1?dchild=1&keywords=Deep+Learning+with+Python&qid=1586194568&sr=8-1) is written by François Chollet, the inventor of Keras. This book is based on Keras and has no machine learning related prerequisites to the reader.\n\n\"Deep Learning with Python\" is easy to understand as it uses various examples to demonstrate. **No mathematical equation is in this book since it focuses on cultivating the intuitive to the deep learning.**\n\n\n```python\n\n```\n\n### 4. Writing Style 🍉 of This Book\n\n\n**This is a introduction reference book which is extremely friendly to human being. The lowest goal of the authors is to avoid giving up due to the difficulties, while \"Don't let the readers think\" is the highest target.**\n\nThis book is mainly based on the official documents of TensorFlow together with its functions.\n\nHowever, the authors made a thorough restructuring and a lot optimizations on the demonstrations.\n\nIt is different from the official documents, which is disordered and contains both tutorial and guidance with lack of systematic logic, that our book redesigns the content according to the difficulties, readers' searching habits, and the architecture of TensorFlow. We now make it progressive for TensorFlow studying with a clear path, and an easy access to the corresponding examples.\n\nIn contrast to the verbose demonstrating code, the authors of this book try to minimize the length of the examples to make it easy for reading and implementation. What's more, most of the code cells can be used in your project instantaneously.\n\n**Given the level of difficulty as 9 for learning Tensorflow through official documents, it would be reduced to 3 if learning through this book.**\n\nThis difference in difficulties could be demonstrated as the following figure:\n\n![](./data/30天吃掉那个TF2.0_en.jpg)\n\n\n```python\n\n```\n\n### 5. How to Learn With This Book ⏰\n\n**(1) Study Plan**\n\nThe authors wrote this book using the spare time, especially the two-month unexpected \"holiday\" of COVID-19. Most readers should be able to completely master all the content within 30 days.\n\nTime required everyday would be between 30 minutes to 2 hours.\n\nThis book could also be used as library examples to consult when implementing machine learning projects with TensorFlow2.\n\n**Click the blue captions to enter the corresponding chapter.**\n\n\n|Date |Contents                                                       | Difficulties   | Est. Time | Update Status|\n|----:|:--------------------------------------------------------------|-----------:|----------:|-----:|\n|&nbsp;|[**Chapter 1: Modeling Procedure of TensorFlow**](./english/Chapter1.md)    |⭐️   |   0hour   |✅    |\n|Day 1 |  [1-1 Example: Modeling Procedure for Structured Data](./english/Chapter1-1.md)    | ⭐️⭐️⭐️ |   1hour    |✅    |\n|Day 2 |[1-2 Example: Modeling Procedure for Images](./english/Chapter1-2.md)    | ⭐️⭐️⭐️⭐️  |   2hours    |✅    |\n|Day 3 |  [1-3 Example: Modeling Procedure for Texts](./english/Chapter1-3.md)   | ⭐️⭐️⭐️⭐️⭐️  |   2hours    |✅    |\n|Day 4 |  [1-4 Example: Modeling Procedure for Temporal Sequences](./english/Chapter1-4.md)   | ⭐️⭐️⭐️⭐️⭐️  |   2hours    |✅    |\n|&nbsp;    |[**Chapter 2: Key Concepts of TensorFlow**](./english/Chapter2.md)  | ⭐️  |  0hour |✅  |\n|Day 5 |  [2-1 Data Structure of Tensor](./english/Chapter2-1.md)  | ⭐️⭐️⭐️⭐️   |   1hour    |✅    |\n|Day 6 |  [2-2 Three Types of Graph](./english/Chapter2-2.md)  | ⭐️⭐️⭐️⭐️⭐️   |   2hours    |✅    |\n|Day 7 |  [2-3 Automatic Differentiate](./english/Chapter2-3.md)  | ⭐️⭐️⭐️   |   1hour    |✅    |\n|&nbsp; |[**Chapter 3: Hierarchy of TensorFlow**](./english/Chapter3.md) |   ⭐️  |  0hour   |✅  |\n|Day 8 |  [3-1 Low-level API: Demonstration](./english/Chapter3-1.md)   | ⭐️⭐️⭐️⭐️ |   1hour    |✅   |\n|Day 9 |  [3-2 Mid-level API: Demonstration](./english/Chapter3-2.md)   | ⭐️⭐️⭐️   |   1hour    |✅  |\n|Day 10 |  [3-3 High-level API: Demonstration](./english/Chapter3-3.md)  | ⭐️⭐️⭐️   |   1hour    |✅  |\n|&nbsp; |[**Chapter 4: Low-level API in TensorFlow**](./english/Chapter4.md) |⭐️    | 0hour|✅  |\n|Day 11|  [4-1 Structural Operations of the Tensor](./english/Chapter4-1.md)  | ⭐️⭐️⭐️⭐️⭐️   |   2hours    |✅   |\n|Day 12|  [4-2 Mathematical Operations of the Tensor](./english/Chapter4-2.md)   | ⭐️⭐️⭐️⭐️   |   1hour    |✅  |\n|Day 13|  [4-3 Rules of Using the AutoGraph](./english/Chapter4-3.md)| ⭐️⭐️⭐️   |   0.5hour    | ✅  |\n|Day 14|  [4-4 Mechanisms of the AutoGraph](./english/Chapter4-4.md)    | ⭐️⭐️⭐️⭐️⭐️   |   2hours    |✅  |\n|Day 15|  [4-5 AutoGraph and tf.Module](./english/Chapter4-5.md)  | ⭐️⭐️⭐️⭐️   |   1hour    |✅  |\n|&nbsp; |[**Chapter 5: Mid-level API in TensorFlow**](./english/Chapter5.md) |  ⭐️  | 0hour|✅ |\n|Day 16|  [5-1 Dataset](./english/Chapter5-1.md)   | ⭐️⭐️⭐️⭐️⭐️   |   2hours    |✅  |\n|Day 17|  [5-2 feature_column](./english/Chapter5-2.md)   | ⭐️⭐️⭐️⭐️   |   1hour    |✅  |\n|Day 18|  [5-3 activation](./english/Chapter5-3.md)    | ⭐️⭐️⭐️   |   0.5hour    |✅   |\n|Day 19|  [5-4 layers](./english/Chapter5-4.md)  | ⭐️⭐️⭐️   |   1hour    |✅  |\n|Day 20|  [5-5 losses](./english/Chapter5-5.md)    | ⭐️⭐️⭐️   |   1hour    |✅  |\n|Day 21|  [5-6 metrics](./english/Chapter5-6.md)    | ⭐️⭐️⭐️   |   1hour    |✅   |\n|Day 22|  [5-7 optimizers](./english/Chapter5-7.md)    | ⭐️⭐️⭐️   |   0.5hour    |✅   |\n|Day 23|  [5-8 callbacks](./english/Chapter5-8.md)   | ⭐️⭐️⭐️⭐️   |   1hour    |✅   |\n|&nbsp; |[**Chapter 6: High-level API in TensorFlow**](./english/Chapter6.md)|    ⭐️ | 0hour|✅  |\n|Day 24|  [6-1 Three Ways of Modeling](./english/Chapter6-1.md)   | ⭐️⭐️⭐️   |   1hour    |✅ |\n|Day 25|  [6-2 Three Ways of Training](./english/Chapter6-2.md)  | ⭐️⭐️⭐️⭐️   |   1hour    |✅   |\n|Day 26|  [6-3 Model Training Using Single GPU](./english/Chapter6-3.md)    | ⭐️⭐️   |   0.5hour    |✅   |\n|Day 27|  [6-4 Model Training Using Multiple GPUs](./english/Chapter6-4.md)    | ⭐️⭐️   |   0.5hour    |✅  |\n|Day 28|  [6-5 Model Training Using TPU](./english/Chapter6-5.md)   | ⭐️⭐️   |   0.5hour    |✅  |\n|Day 29| [6-6 Model Deploying Using tensorflow-serving](./english/Chapter6-6.md) | ⭐️⭐️⭐️⭐️| 1hour |✅   |\n|Day 30| [6-7 Call Tensorflow Model Using spark-scala](./english/Chapter6-7.md) | ⭐️⭐️⭐️⭐️⭐️|2hours|✅  |\n|&nbsp;| [Epilogue: A Story Between a Foodie and Cuisine](./english/Epilogue.md) | ⭐️|0hour|✅  |\n\n```python\n\n```\n\n**(2) Software environment for studying**\n\n\nAll the source codes are tested in jupyter. It is suggested to clone the repository to local machine and run them in jupyter for an interactive learning experience.\n\nThe authors would suggest to install jupytext that converts markdown files into ipynb, so the readers would be able to open markdown files in jupyter directly.\n\n```python\n#For the readers in mainland China, using gitee will allow cloning with a faster speed\n#!git clone https://gitee.com/Python_Ai_Road/eat_tensorflow2_in_30_days\n\n#It is suggested to install jupytext that converts and run markdown files as ipynb.\n#!pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -U jupytext\n    \n#It is also suggested to install the latest version of TensorFlow to test the demonstrating code in this book\n#!pip install -i https://pypi.tuna.tsinghua.edu.cn/simple  -U tensorflow\n```\n\n```python\nimport tensorflow as tf\n\n#Note: all the codes are tested under TensorFlow 2.1\ntf.print(\"tensorflow version:\",tf.__version__)\n\na = tf.constant(\"hello\")\nb = tf.constant(\"tensorflow2\")\nc = tf.strings.join([a,b],\" \")\ntf.print(c)\n```\n\n```\ntensorflow version: 2.1.0\nhello tensorflow2\n```\n\n```python\n\n```\n\n### 6. Contact and support the author 🎈🎈\n\n\n**If you find this book helpful and want to support the author, please give a star ⭐️ to this repository and don't forget to share it to your friends 😊** \n\nPlease leave comments in the WeChat official account \"算法美食屋\" (Machine Learning  cook house) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\n![image.png](./data/算法美食屋二维码.jpg)\n\n```python\n\n```\n# 30天吃掉那只 TensorFlow2\n\n📚 gitbook电子书地址： https://lyhue1991.github.io/eat_tensorflow2_in_30_days\n\n🚀 github项目地址：https://github.com/lyhue1991/eat_tensorflow2_in_30_days\n\n🐳 kesci专栏地址：https://www.kesci.com/home/column/5d8ef3c3037db3002d3aa3a0\n\n**极速通道** \n*  🚀 公众号 “**算法美食屋**” 后台回复暗号：\"**吃货来了**\"\n*  😋 获取教程的jupyter notebook 源码文件以及全部数据集的百度云盘下载链接。\n*  https://mp.weixin.qq.com/s/ymLtH5BqlWAkpOmCLQOYxw\n\n\n\n### 一，TensorFlow2 🍎 or Pytorch🔥\n\n先说结论:\n\n**如果是工程师，应该优先选TensorFlow2.**\n\n**如果是学生或者研究人员，应该优先选择Pytorch.**\n\n**如果时间足够，最好TensorFlow2和Pytorch都要学习掌握。**\n\n\n理由如下：\n\n* 1，**在工业界最重要的是模型落地，目前国内的大部分互联网企业只支持TensorFlow模型的在线部署，不支持Pytorch。** 并且工业界更加注重的是模型的高可用性，许多时候使用的都是成熟的模型架构，调试需求并不大。\n\n\n* 2，**研究人员最重要的是快速迭代发表文章，需要尝试一些较新的模型架构。而Pytorch在易用性上相比TensorFlow2有一些优势，更加方便调试。** 并且在2019年以来在学术界占领了大半壁江山，能够找到的相应最新研究成果更多。\n\n\n* 3，TensorFlow2和Pytorch实际上整体风格已经非常相似了，学会了其中一个，学习另外一个将比较容易。两种框架都掌握的话，能够参考的开源模型案例更多，并且可以方便地在两种框架之间切换。\n\n```python\n\n```\n\n### 二，Keras🍏 and  tf.keras 🍎\n\n先说结论：\n\n**Keras库在2.3.0版本后将不再更新，用户应该使用tf.keras。**\n\n\nKeras可以看成是一种深度学习框架的高阶接口规范，它帮助用户以更简洁的形式定义和训练深度学习网络。\n\n使用pip安装的Keras库同时在tensorflow,theano,CNTK等后端基础上进行了这种高阶接口规范的实现。\n\n而tf.keras是在TensorFlow中以TensorFlow低阶API为基础实现的这种高阶接口，它是Tensorflow的一个子模块。\n\ntf.keras绝大部分功能和兼容多种后端的Keras库用法完全一样，但并非全部，它和TensorFlow之间的结合更为紧密。\n\n随着谷歌对Keras的收购，Keras库2.3.0版本后也将不再进行更新，用户应当使用tf.keras而不是使用pip安装的Keras.\n\n```python\n\n```\n\n### 三，本书📖面向读者 👼\n\n\n**本书假定读者有一定的机器学习和深度学习基础，使用过Keras或者Tensorflow1.0或者Pytorch搭建训练过模型。**\n\n**对于没有任何机器学习和深度学习基础的同学，建议在学习本书时同步参考学习《Python深度学习》一书。**\n\n《Python深度学习》这本书是Keras之父Francois Chollet所著，该书假定读者无任何机器学习知识，以Keras为工具，\n\n使用丰富的范例示范深度学习的最佳实践，该书通俗易懂，**全书没有一个数学公式，注重培养读者的深度学习直觉。**。\n\n```python\n\n```\n\n### 四，本书写作风格 🍉\n\n\n**本书是一本对人类用户极其友善的TensorFlow2.0入门工具书，不刻意恶心读者是本书的底限要求，Don't let me think是本书的最高追求。**\n\n本书主要是在参考TensorFlow官方文档和函数doc文档基础上整理写成的。\n\n但本书在篇章结构和范例选取上做了大量的优化。\n\n不同于官方文档混乱的篇章结构，既有教程又有指南，缺少整体的编排逻辑。\n\n本书按照内容难易程度、读者检索习惯和TensorFlow自身的层次结构设计内容，循序渐进，层次清晰，方便按照功能查找相应范例。\n\n不同于官方文档冗长的范例代码，本书在范例设计上尽可能简约化和结构化，增强范例易读性和通用性，大部分代码片段在实践中可即取即用。\n\n**如果说通过学习TensorFlow官方文档掌握TensorFlow2.0的难度大概是9的话，那么通过学习本书掌握TensorFlow2.0的难度应该大概是3.**\n\n谨以下图对比一下TensorFlow官方教程与本教程的差异。\n\n![](./data/30天吃掉那个TF2.0.jpg)\n\n\n```python\n\n```\n\n### 五，本书学习方案 ⏰\n\n**1，学习计划**\n\n本书是作者利用工作之余和疫情放假期间大概2个月写成的，大部分读者应该在30天可以完全学会。\n\n预计每天花费的学习时间在30分钟到2个小时之间。\n\n当然，本书也非常适合作为TensorFlow的工具手册在工程落地时作为范例库参考。\n\n**点击学习内容蓝色标题即可进入该章节。**\n\n\n|日期 | 学习内容                                                       | 内容难度   | 预计学习时间 | 更新状态|\n|----:|:--------------------------------------------------------------|-----------:|----------:|-----:|\n|&nbsp;|[**一、TensorFlow的建模流程**](./一、TensorFlow的建模流程.md)    |⭐️   |   0hour   |✅    |\n|day1 |  [1-1,结构化数据建模流程范例](./1-1,结构化数据建模流程范例.md)    | ⭐️⭐️⭐️ |   1hour    |✅    |\n|day2 |[1-2,图片数据建模流程范例](./1-2,图片数据建模流程范例.md)    | ⭐️⭐️⭐️⭐️  |   2hour    |✅    |\n|day3 |  [1-3,文本数据建模流程范例](./1-3,文本数据建模流程范例.md)   | ⭐️⭐️⭐️⭐️⭐️  |   2hour    |✅    |\n|day4 |  [1-4,时间序列数据建模流程范例](./1-4,时间序列数据建模流程范例.md)   | ⭐️⭐️⭐️⭐️⭐️  |   2hour    |✅    |\n|&nbsp;    |[**二、TensorFlow的核心概念**](./二、TensorFlow的核心概念.md)  | ⭐️  |  0hour |✅  |\n|day5 |  [2-1,张量数据结构](./2-1,张量数据结构.md)  | ⭐️⭐️⭐️⭐️   |   1hour    |✅    |\n|day6 |  [2-2,三种计算图](./2-2,三种计算图.md)  | ⭐️⭐️⭐️⭐️⭐️   |   2hour    |✅    |\n|day7 |  [2-3,自动微分机制](./2-3,自动微分机制.md)  | ⭐️⭐️⭐️   |   1hour    |✅    |\n|&nbsp; |[**三、TensorFlow的层次结构**](./三、TensorFlow的层次结构.md) |   ⭐️  |  0hour   |✅  |\n|day8 |  [3-1,低阶API示范](./3-1,低阶API示范.md)   | ⭐️⭐️⭐️⭐️   |   1hour    |✅   |\n|day9 |  [3-2,中阶API示范](./3-2,中阶API示范.md)   | ⭐️⭐️⭐️   |  1hour    |✅  |\n|day10 |  [3-3,高阶API示范](./3-3,高阶API示范.md)  | ⭐️⭐️⭐️  |   1hour    |✅  |\n|&nbsp; |[**四、TensorFlow的低阶API**](./四、TensorFlow的低阶API.md) |⭐️    | 0hour|✅  |\n|day11|  [4-1,张量的结构操作](./4-1,张量的结构操作.md)  | ⭐️⭐️⭐️⭐️⭐️   |   2hour    |✅   |\n|day12|  [4-2,张量的数学运算](./4-2,张量的数学运算.md)   | ⭐️⭐️⭐️⭐️   |   1hour    |✅  |\n|day13|  [4-3,AutoGraph的使用规范](./4-3,AutoGraph的使用规范.md)| ⭐️⭐️⭐️   |   0.5hour    |✅  |\n|day14|  [4-4,AutoGraph的机制原理](./4-4,AutoGraph的机制原理.md)    | ⭐️⭐️⭐️⭐️⭐️   |   2hour    |✅  |\n|day15|  [4-5,AutoGraph和tf.Module](./4-5,AutoGraph和tf.Module.md)  | ⭐️⭐️⭐️⭐️   |   1hour    |✅  |\n|&nbsp; |[**五、TensorFlow的中阶API**](./五、TensorFlow的中阶API.md) |  ⭐️  | 0hour|✅ |\n|day16|  [5-1,数据管道Dataset](./5-1,数据管道Dataset.md)   | ⭐️⭐️⭐️⭐️⭐️   |   2hour    |✅  |\n|day17|  [5-2,特征列feature_column](./5-2,特征列feature_column.md)   | ⭐️⭐️⭐️⭐️   |   1hour    |✅  |\n|day18|  [5-3,激活函数activation](./5-3,激活函数activation.md)    | ⭐️⭐️⭐️   |   0.5hour    |✅   |\n|day19|  [5-4,模型层layers](./5-4,模型层layers.md)  | ⭐️⭐️⭐️   |   1hour    |✅  |\n|day20|  [5-5,损失函数losses](./5-5,损失函数losses.md)    | ⭐️⭐️⭐️   |   1hour    |✅  |\n|day21|  [5-6,评估指标metrics](./5-6,评估指标metrics.md)    | ⭐️⭐️⭐️   |   1hour    |✅   |\n|day22|  [5-7,优化器optimizers](./5-7,优化器optimizers.md)    | ⭐️⭐️⭐️   |   0.5hour    |✅   |\n|day23|  [5-8,回调函数callbacks](./5-8,回调函数callbacks.md)   | ⭐️⭐️⭐️⭐️   |   1hour    |✅   |\n|&nbsp; |[**六、TensorFlow的高阶API**](./六、TensorFlow的高阶API.md)|    ⭐️ | 0hour|✅  |\n|day24|  [6-1,构建模型的3种方法](./6-1,构建模型的3种方法.md)   | ⭐️⭐️⭐️   |   1hour    |✅ |\n|day25|  [6-2,训练模型的3种方法](./6-2,训练模型的3种方法.md)  | ⭐️⭐️⭐️⭐️   |   1hour    |✅   |\n|day26|  [6-3,使用单GPU训练模型](./6-3,使用单GPU训练模型.md)    | ⭐️⭐️   |   0.5hour    |✅   |\n|day27|  [6-4,使用多GPU训练模型](./6-4,使用多GPU训练模型.md)    | ⭐️⭐️   |   0.5hour    |✅  |\n|day28|  [6-5,使用TPU训练模型](./6-5,使用TPU训练模型.md)   | ⭐️⭐️   |   0.5hour    |✅  |\n|day29| [6-6,使用tensorflow-serving部署模型](./6-6,使用tensorflow-serving部署模型.md) | ⭐️⭐️⭐️⭐️| 1hour |✅   |\n|day30| [6-7,使用spark-scala调用tensorflow模型](./6-7,使用spark-scala调用tensorflow模型.md) | ⭐️⭐️⭐️⭐️⭐️|2hour|✅  |\n|&nbsp;| [后记：一个吃货和一道菜的故事](./后记：一个吃货和一道菜的故事.md) | ⭐️|0hour|✅  |\n\n\n```python\n\n```\n\n**2，学习环境**\n\n\n本书全部源码在jupyter中编写测试通过，建议通过git克隆到本地，并在jupyter中交互式运行学习。\n\n为了直接能够在jupyter中打开markdown文件，建议安装jupytext，将markdown转换成ipynb文件。\n\n**此外，本项目也与和鲸社区达成了合作，可以在和鲸专栏fork本项目，并直接在云笔记本上运行代码，避免环境配置痛苦。** \n\n🐳和鲸专栏地址：https://www.kesci.com/home/column/5d8ef3c3037db3002d3aa3a0\n\n```python\n#克隆本书源码到本地,使用码云镜像仓库国内下载速度更快\n#!git clone https://gitee.com/Python_Ai_Road/eat_tensorflow2_in_30_days\n\n#建议在jupyter notebook 上安装jupytext，以便能够将本书各章节markdown文件视作ipynb文件运行\n#!pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -U jupytext\n    \n#建议在jupyter notebook 上安装最新版本tensorflow 测试本书中的代码\n#!pip install -i https://pypi.tuna.tsinghua.edu.cn/simple  -U tensorflow\n```\n\n```python\nimport tensorflow as tf\n\n#注：本书全部代码在tensorflow 2.1版本测试通过\ntf.print(\"tensorflow version:\",tf.__version__)\n\na = tf.constant(\"hello\")\nb = tf.constant(\"tensorflow2\")\nc = tf.strings.join([a,b],\" \")\ntf.print(c)\n```\n\n```\ntensorflow version: 2.1.0\nhello tensorflow2\n```\n\n\n\n\n```python\n\n```\n\n### 六，鼓励和联系作者 🎈🎈\n\n\n**如果本书对你有所帮助，想鼓励一下作者，记得给本项目加一颗星星star⭐️，并分享给你的朋友们喔😊!** \n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![image.png](./data/算法美食屋二维码.jpg)\n\n```python\n\n```\n"
  },
  {
    "path": "README_eng.md",
    "content": "# How to eat TensorFlow2 in 30 days ?🔥🔥\n\nSwitching to Chinese version: [中文版](https://github.com/lyhue1991/eat_tensorflow2_in_30_days/tree/master) 🎈\n\n📚 URL to gitbook (Only in Chinese version for now):  https://lyhue1991.github.io/eat_tensorflow2_in_30_days\n\n🚀 URL to github repo (Chinese): https://github.com/lyhue1991/eat_tensorflow2_in_30_days/tree/master\n\n🚀 URL to github repo (English): https://github.com/lyhue1991/eat_tensorflow2_in_30_days/tree/english\n\n\n\n### 1. TensorFlow2 🍎 or Pytorch🔥\n\nConclusion first: \n\n**For the engineers, priority goes to TensorFlow2.**\n\n**For the students and researchers，first choice should be Pytorch.**\n\n**The best way is to master both of them if having sufficient time.**\n\n\nReasons:\n\n* 1. **Model implementation is the most important in the industry. Only deployment supports for tensorflow models （not Pytorch） is the present situation in the majority of the internet enterprises (in China).** What's more, the industry prefers the models with higher availability; in most cases, they use well-validated modeling architectures with the minimized requirements of adjustment.\n\n\n* 2. **Fast iterative development and publication is the most important for the researchers since they need to test a lot of new models. Pytorch has advantages in accessing and debugging comparing with TensorFlow2.** Pytorch is most frequently used in academy since 2019 with a large amount of the cutting-edge results.\n\n\n* 3. Overall, TensorFlow2 and Pytorch are quite similar in programming nowadays, so mastering one helps learning the other. Mastering both framework provides you a lot more open-sourced models and helps you switching between them.\n\n```python\n\n```\n\n### 2. Keras🍏 and tf.keras 🍎\n\nConclusion first: \n\n**Keras will be discontinued in development after version 2.3.0, so use tf.keras.**\n\n\nKeras is a high-level API for the deep learning frameworks. It help the users to define and training DL networks with a more intuitive way.\n\nThe Keras libraries installed by pip implement this high-level API for the backends in tensorflow, theano, CNTK, etc.\n\ntf.keras is the high-level API just for Tensorflow, which is based on low-level APIs in Tensorflow.\n\nMost but not all of the functions in tf.keras are the same for those in Keras (which is compatible to many kinds of backend). tf.keras has a tighter combination to TensorFlow comparing to Keras.\n\nWith the acquisition by Google, Keras will not update after version 2.3.0 , thus the users should use tf.keras from now on, instead of using Keras installed by pip.\n\n```python\n\n```\n\n### 3. What Should You Know Before Reading This Book 📖?\n\n**It is suggested that the readers have foundamental knowledges of machine/deep learning and experience of modeling using Keras or TensorFlow 1.0.**\n\n**For those who have zero experience of machine/deep learning, it is strongly suggested to refer to [\"Deep Learning with Python\"](https://www.amazon.com/Deep-Learning-Python-Francois-Chollet/dp/1617294438/ref=sr_1_1?dchild=1&keywords=Deep+Learning+with+Python&qid=1586194568&sr=8-1) along with reading this book.**\n\n\n[\"Deep Learning with Python\"](https://www.amazon.com/Deep-Learning-Python-Francois-Chollet/dp/1617294438/ref=sr_1_1?dchild=1&keywords=Deep+Learning+with+Python&qid=1586194568&sr=8-1) is written by François Chollet, the inventor of Keras. This book is based on Keras and has no machine learning related prerequisites to the reader.\n\n\"Deep Learning with Python\" is easy to understand as it uses various examples to demonstrate. **No mathematical equation is in this book since it focuses on cultivating the intuitive to the deep learning.**\n\n\n```python\n\n```\n\n### 4. Writing Style 🍉 of This Book\n\n\n**This is a introduction reference book which is extremely friendly to human being. The lowest goal of the authors is to avoid giving up due to the difficulties, while \"Don't let the readers think\" is the highest target.**\n\nThis book is mainly based on the official documents of TensorFlow together with its functions.\n\nHowever, the authors made a thorough restructuring and a lot optimizations on the demonstrations.\n\nIt is different from the official documents, which is disordered and contains both tutorial and guidance with lack of systematic logic, that our book redesigns the content according to the difficulties, readers' searching habits, and the architecture of TensorFlow. We now make it progressive for TensorFlow studying with a clear path, and an easy access to the corresponding examples.\n\nIn contrast to the verbose demonstrating code, the authors of this book try to minimize the length of the examples to make it easy for reading and implementation. What's more, most of the code cells can be used in your project instantaneously.\n\n**Given the level of difficulty as 9 for learning Tensorflow through official documents, it would be reduced to 3 if learning through this book.**\n\nThis difference could be demonstrated as the following figure:\n\n![](./data/30天吃掉那个TF2.0.jpg)\n\n\n```python\n\n```\n\n### 5. How to Learn With This Book ⏰\n\n**(1) Study Plan**\n\nThe authors wrote this book using the spare time, especially the two-month unexpected \"holiday\" of COVID-19. Most readers should be able to completely master all the content within 30 days.\n\nTime required everyday would be between 30 minutes to 2 hours.\n\nThis book could also be used as library examples to consult when implementing machine learning projects with TensorFlow2.\n\n**Click the blue captions to enter the corresponding chapter.**\n\n\n|Date |Contents                                                       | Difficulties   | Est. Time | Update Status|\n|----:|:--------------------------------------------------------------|-----------:|----------:|-----:|\n|&nbsp;|[**Chapter 1: Modeling Procedure of TensorFlow**](./english/Chapter1.md)    |⭐️   |   0hour   |✅    |\n|Day 1 |  [1-1 Example: Modeling Procedure for Structured Data](./english/Chapter1-1.md)    | ⭐️⭐️⭐️ |   1hour    |✅    |\n|Day 2 |[1-2 Example: Modeling Procedure for Images](./english/Chapter1-2.md)    | ⭐️⭐️⭐️⭐️  |   2hours    |✅    |\n|Day 3 |  [1-3 Example: Modeling Procedure for Texts](./english/Chapter1-3.md)   | ⭐️⭐️⭐️⭐️⭐️  |   2hours    |✅    |\n|Day 4 |  [1-4 Example: Modeling Procedure for Temporal Sequences](./english/Chapter1-4.md)   | ⭐️⭐️⭐️⭐️⭐️  |   2hours    |✅    |\n|&nbsp;    |[**Chapter 2: Key Concepts of TensorFlow**](./english/Chapter2.md)  | ⭐️  |  0hour |✅  |\n|Day 5 |  [2-1 Data Structure of Tensor](./english/Chapter2-1.md)  | ⭐️⭐️⭐️⭐️   |   1hour    |✅    |\n|Day 6 |  [2-2 Three Types of Graph](./english/Chapter2-2.md)  | ⭐️⭐️⭐️⭐️⭐️   |   2hours    |✅    |\n|Day 7 |  [2-3 Automatic Differentiate](./english/Chapter2-3.md)  | ⭐️⭐️⭐️   |   1hour    |✅    |\n|&nbsp; |[**Chapter 3: Hierarchy of TensorFlow**](./english/Chapter3.md) |   ⭐️  |  0hour   |✅  |\n|Day 8 |  [3-1 Low-level API: Demonstration](./english/Chapter3-1.md)   | ⭐️⭐️⭐️⭐️ |   1hour    |✅   |\n|Day 9 |  [3-2 Mid-level API: Demonstration](./english/Chapter3-2.md)   | ⭐️⭐️⭐️   |   1hour    |✅  |\n|Day 10 |  [3-3 High-level API: Demonstration](./english/Chapter3-3.md)  | ⭐️⭐️⭐️   |   1hour    |✅  |\n|&nbsp; |[**Chapter 4: Low-level API in TensorFlow**](./english/Chapter4.md) |⭐️    | 0hour|✅  |\n|Day 11|  [4-1 Structural Operations of the Tensor](./english/Chapter4-1.md)  | ⭐️⭐️⭐️⭐️⭐️   |   2hours    |✅   |\n|Day 12|  [4-2 Mathematical Operations of the Tensor](./english/Chapter4-2.md)   | ⭐️⭐️⭐️⭐️   |   1hour    |✅  |\n|Day 13|  [4-3 Rules of Using the AutoGraph](./english/Chapter4-3.md)| ⭐️⭐️⭐️   |   0.5hour    | ✅  |\n|Day 14|  [4-4 Mechanisms of the AutoGraph](./english/Chapter4-4.md)    | ⭐️⭐️⭐️⭐️⭐️   |   2hours    |✅  |\n|Day 15|  [4-5 AutoGraph and tf.Module](./english/Chapter4-5.md)  | ⭐️⭐️⭐️⭐️   |   1hour    |✅  |\n|&nbsp; |[**Chapter 5: Mid-level API in TensorFlow**](./english/Chapter5.md) |  ⭐️  | 0hour|✅ |\n|Day 16|  [5-1 Dataset](./english/Chapter5-1.md)   | ⭐️⭐️⭐️⭐️⭐️   |   2hours    |✅  |\n|Day 17|  [5-2 feature_column](./english/Chapter5-2.md)   | ⭐️⭐️⭐️⭐️   |   1hour    |✅  |\n|Day 18|  [5-3 activation](./english/Chapter5-3.md)    | ⭐️⭐️⭐️   |   0.5hour    |✅   |\n|Day 19|  [5-4 layers](./english/Chapter5-4.md)  | ⭐️⭐️⭐️   |   1hour    |✅  |\n|Day 20|  [5-5 losses](./english/Chapter5-5.md)    | ⭐️⭐️⭐️   |   1hour    |✅  |\n|Day 21|  [5-6 metrics](./english/Chapter5-6.md)    | ⭐️⭐️⭐️   |   1hour    |✅   |\n|Day 22|  [5-7 optimizers](./english/Chapter5-7.md)    | ⭐️⭐️⭐️   |   0.5hour    |✅   |\n|Day 23|  [5-8 callbacks](./english/Chapter5-8.md)   | ⭐️⭐️⭐️⭐️   |   1hour    |✅   |\n|&nbsp; |[**Chapter 6: High-level API in TensorFlow**](./english/Chapter6.md)|    ⭐️ | 0hour|✅  |\n|Day 24|  [6-1 Three Ways of Modeling](./english/Chapter6-1.md)   | ⭐️⭐️⭐️   |   1hour    |✅ |\n|Day 25|  [6-2 Three Ways of Training](./english/Chapter6-2.md)  | ⭐️⭐️⭐️⭐️   |   1hour    |✅   |\n|Day 26|  [6-3 Model Training Using Single GPU](./english/Chapter6-3.md)    | ⭐️⭐️   |   0.5hour    |✅   |\n|Day 27|  [6-4 Model Training Using Multiple GPUs](./english/Chapter6-4.md)    | ⭐️⭐️   |   0.5hour    |✅  |\n|Day 28|  [6-5 Model Training Using TPU](./english/Chapter6-5.md)   | ⭐️⭐️   |   0.5hour    |✅  |\n|Day 29| [6-6 Model Deploying Using tensorflow-serving](./english/Chapter6-6.md) | ⭐️⭐️⭐️⭐️| 1hour |✅   |\n|Day 30| [6-7 Call Tensorflow Model Using spark-scala](./english/Chapter6-7.md) | ⭐️⭐️⭐️⭐️⭐️|2hours|✅  |\n|&nbsp;| [Epilogue: A Story Between a Foodie and Cuisine](./english/Epilogue.md) | ⭐️|0hour|✅  |\n\n```python\n\n```\n\n**(2) Software environment for studying**\n\n\nAll the source codes are tested in jupyter. It is suggested to clone the repository to local machine and run them in jupyter for an interactive learning experience.\n\nThe authors would suggest to install jupytext that converts markdown files into ipynb, so the readers would be able to open markdown files in jupyter directly.\n\n```python\n#For the readers in mainland China, using gitee will allow cloning with a faster speed\n#!git clone https://gitee.com/Python_Ai_Road/eat_tensorflow2_in_30_days\n\n#It is suggested to install jupytext that converts and run markdown files as ipynb.\n#!pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -U jupytext\n    \n#It is also suggested to install the latest version of TensorFlow to test the demonstrating code in this book\n#!pip install -i https://pypi.tuna.tsinghua.edu.cn/simple  -U tensorflow\n```\n\n```python\nimport tensorflow as tf\n\n#Note: all the codes are tested under TensorFlow 2.1\ntf.print(\"tensorflow version:\",tf.__version__)\n\na = tf.constant(\"hello\")\nb = tf.constant(\"tensorflow2\")\nc = tf.strings.join([a,b],\" \")\ntf.print(c)\n```\n\n```\ntensorflow version: 2.1.0\nhello tensorflow2\n```\n\n```python\n\n```\n\n### 6. Contact and support the author 🎈🎈\n\n\n**If you find this book helpful and want to support the author, please give a star ⭐️ to this repository and don't forget to share it to your friends 😊** \n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n```python\n\n```\n"
  },
  {
    "path": "SUMMARY_eng.md",
    "content": "# Summary\n\n* [Introduction](README.md)\n* [Chapter 1: Modeling Procedure of TensorFlow](./english/Chapter1.md)\n* [1-1 Example: Modeling Procedure for Structured Data](./english/Chapter1-1.md)\n* [1-2 Example: Modeling Procedure for Images](./english/Chapter1-2.md)\n* [1-3 Example: Modeling Procedure for Texts](./english/Chapter1-3.md)\n* [1-4 Example: Modeling Procedure for Temporal Sequences](./english/Chapter1-4.md)\n\n* [Chapter 2: Key Concepts of TensorFlow](./english/Chapter2.md)\n* [2-1 Data Structure of Tensor](./english/Chapter2-1.md)\n* [2-2 Three Types of Graph](./english/Chapter2-2.md)\n* [2-3 Automatic Differentiate](./english/Chapter2-3.md)\n\n* [Chapter 3: Hierarchy of TensorFlow](./english/Chapter3.md)\n* [3-1 Low-level API: Demonstration](./english/Chapter3-1.md)\n* [3-2 Mid-level API: Demonstration](./english/Chapter3-2.md)\n* [3-3 High-level API: Demonstration](./english/Chapter3-3.md)\n\n* [Chapter 4: Low-level API in TensorFlow](./english/Chapter4.md)\n* [4-1 Structural Operations of the Tensor](./english/Chapter4-1.md)\n* [4-2 Mathematical Operations of the Tensor](./english/Chapter4-2.md)\n* [4-3 Rules of Using the AutoGraph](./english/Chapter4-3.md)\n* [4-4 Mechanisms of the AutoGraph](./english/Chapter4-4.md)\n* [4-5 AutoGraph and tf.Module](./english/Chapter4-5.md)\n\n* [Chapter 5: Mid-level API in TensorFlow](./english/Chapter5.md)\n* [5-1 Dataset](./english/Chapter5-1.md)\n* [5-2 feature_column](./english/Chapter5-2.md)\n* [5-3 activation](./english/Chapter5-3.md)\n* [5-4 layers](./english/Chapter5-4.md)\n* [5-5 losses](./english/Chapter5-5.md)\n* [5-6 metrics](./english/Chapter5-6.md)\n* [5-7 optimizers](./english/Chapter5-7.md)\n* [5-8 callbacks](./english/Chapter5-8.md)\n\n* [Chapter 6: High-level API in TensorFlow](./english/Chapter6.md)\n* [6-1 Three Ways of Modeling](./english/Chapter6-1.md)\n* [6-2 Three Ways of Training](./english/Chapter6-2.md)\n* [6-3 Model Training Using Single GPU](./english/Chapter6-3.md)\n* [6-4 Model Training Using Multiple GPUs](./english/Chapter6-4.md)\n* [6-5 Model Training Using TPU](./english/Chapter6-5.md)\n* [6-6 Model Deploying Using tensorflow-serving](./english/Chapter6-6.md)\n* [6-7 Call Tensorflow Model Using spark-scala](./english/Chapter6-7.md)\n* [Epilogue：A Story Between a Foodie and Cuisine](./english/Epilogue.md)\n\n\n"
  },
  {
    "path": "data/checkpoint",
    "content": "model_checkpoint_path: \"tf_model_weights.ckpt\"\nall_model_checkpoint_paths: \"tf_model_weights.ckpt\"\n"
  },
  {
    "path": "data/covid-19.csv",
    "content": "date\tconfirmed_num\tcured_num\tdead_num\n2020-01-24\t830.0\t34.0\t25.0\n2020-01-25\t1287.0\t38.0\t41.0\n2020-01-26\t1975.0\t49.0\t56.0\n2020-01-27\t2744.0\t51.0\t80.0\n2020-01-28\t4515.0\t60.0\t106.0\n2020-01-29\t5974.0\t103.0\t132.0\n2020-01-30\t7711.0\t124.0\t170.0\n2020-01-31\t9692.0\t171.0\t213.0\n2020-02-01\t11791.0\t259.0\t243.0\n2020-02-02\t14380.0\t328.0\t304.0\n2020-02-03\t17205.0\t475.0\t361.0\n2020-02-04\t20438.0\t632.0\t425.0\n2020-02-05\t24324.0\t892.0\t490.0\n2020-02-06\t28018.0\t1153.0\t563.0\n2020-02-07\t31161.0\t1540.0\t636.0\n2020-02-08\t34546.0\t2050.0\t722.0\n2020-02-09\t37198.0\t2649.0\t811.0\n2020-02-10\t40171.0\t3281.0\t908.0\n2020-02-11\t42638.0\t3996.0\t1016.0\n2020-02-12\t44653.0\t4740.0\t1113.0\n2020-02-13\t59804.0\t5911.0\t1367.0\n2020-02-14\t63851.0\t6723.0\t1380.0\n2020-02-15\t66492.0\t8096.0\t1523.0\n2020-02-16\t68500.0\t9419.0\t1665.0\n2020-02-17\t70548.0\t10844.0\t1770.0\n2020-02-18\t72436.0\t12552.0\t1868.0\n2020-02-19\t74185.0\t14376.0\t2004.0\n2020-02-20\t74576.0\t16155.0\t2118.0\n2020-02-21\t75465.0\t18264.0\t2236.0\n2020-02-22\t76288.0\t20659.0\t2345.0\n2020-02-23\t76936.0\t22888.0\t2442.0\n2020-02-24\t77150.0\t24734.0\t2592.0\n2020-02-25\t77658.0\t27323.0\t2663.0\n2020-02-26\t78064.0\t29745.0\t2715.0\n2020-02-27\t78497.0\t32495.0\t2744.0\n2020-02-28\t78824.0\t36117.0\t2788.0\n2020-02-29\t79251.0\t39002.0\t2835.0\n2020-03-01\t79824.0\t41625.0\t2870.0\n2020-03-02\t80026.0\t44462.0\t2912.0\n2020-03-03\t80151.0\t47204.0\t2943.0\n2020-03-04\t80270.0\t49856.0\t2981.0\n2020-03-05\t80409.0\t52045.0\t3012.0\n2020-03-06\t80552.0\t53726.0\t3042.0\n2020-03-07\t80651.0\t55404.0\t3070.0\n2020-03-08\t80695.0\t57065.0\t3097.0\n2020-03-09\t80735.0\t58600.0\t3119.0\n2020-03-10\t80754.0\t59897.0\t3136.0\n"
  },
  {
    "path": "data/imdb/test.csv",
    "content": "1\tThe first one meant victory. This one means defeat. It takes place in a Bolivia, there the guerillas are sick and wary and don't meet that much sympathy from the farmers. If you know your 60s history, you understand how it ends. You will understand it even without that knowledge.<br /><br />Del Toro is once again splendid. He goes on building this icon about the revolutionary who remains the same, regardless of success or failure. That's what Guevara is according to the legend, but still it's so well acted.<br /><br />The documentary feeling is there around the icon, which is one of the greatest achievements in this big Soderbergh project. He has succeeded.\r\n1\tExcellent movie, a realistic picture of contemporary Finland, touching and profound. One of the best Finnish films ever made. Captures marvelously the everyday life in a Central Finland small town, people's desires and weaknesses, joys and sorrows. The bright early fall sunshine creates a cool atmosphere to this lucid examination of people in a welfare society. Lampela is indeed one of the most promising Finnish filmmakers. He shows that it is possible to make gripping movies without machine guns and bloodshed. His next film Eila is also worth seeing although the story of cleaning women fighting for their jobs is not quite as universally appealing as the destinies in Joki.\r\n1\tThis film is moving without being sentimental - meaningful without being pretentious. It tells a simple story of a family in danger of falling apart as the encroachments of technology and an advancing society make the family-run business increasingly untenable.<br /><br />The acting is wonderful - though none of us in the west are likely to have heard of these actors, we should have long ago - they play their characters with honesty and reverence - these are flawed characters, each with major weaknesses, but with such utter humanity and kindness that it's impossible not to become engaged in the story.<br /><br />We need more films like this - we need more western filmmakers creating films such as this.\r\n0\t\"This is high grade cheese fare of B movie kung fu flicks. Bruce \"\"wannabe\"\" Lee is played by Bruce Li...I think. Of course, let's show quick clips of Bruce and do closeups of his eyes and if you quint at the right angle during a certain time of the day during the winter solstice, it kind of looks like Bruce. You'll laugh in awe at how the film splicing isn't very good, but some cool deleted scenes from Enter the Dragon are thrown in the mix. According to the movie, Bruce Lee was killed by a dart while hanging from a helicopter. Of course, they think this can excuse Bruce Li for trying to be Bruce even though his character is supposed to be Bruce's brother (who for some reason still mimes Bruce's gestures and fighting style - very POORLY). See Bruce go one-on-one with the cowardly lion. The props department stopped by Kay-Bee, you see. Bruce also finds nothing wrong with savagely beating up a crippled man. Towards the end, the director decided \"\"let's throw a flashback\"\" for a scene just shown 3 minutes ago!! They must've thought that only one-celled organisms with attention deficit disorder could fully understand this film.<br /><br />\"\r\n1\tHalloween is the story of a boy who was misunderstood as a child. He takes out his problems on his older sister, whom he murders at the beginning of the film. This is just the start of things to come from Michael Myers.<br /><br />Donald Pleasance plays the doctor who's been studying Myers for years. He knows that something is different about him, something mysteriously evil. This evil will not be contained, and it cannot be stopped.<br /><br />After an escape from an institution, Myers tracks down his younger sister. If he kills her, there may be an end to the troubles of this misunderstood boy. But he seems to have problems in finishing his sister off as other people get in the way. He manages to take them out while still looking for that one girl he needs.<br /><br />There have been a lot of those horror movies involving teenagers getting hacked to pieces by a masked or gruesome killer. But this one started it all, sort of. If you think about it, most of those horror movies we all remember are the ones that have Freddy Kruger or Jason chasing around half naked girls. Well, if it wasn't for Halloween, those characters wouldn't have haunted our dreams when we were children.<br /><br />Halloween's director, John Carpenter, got a lot out of the horror movies of the '50s and combined everything he knew into one film that scared the hell out of a lot of people back in the late '70s. This films solidified him as a director to watch and also jump started the career of Jamie Lee Curtis, who plays the girl being stalked by the masked killer.<br /><br />This film may seem cliché today, but back then there wasn't much out there like this. It's been copied from and ripped off of, but Halloween will always remain the quintessential teenage horror movie. It still gives you chills listening to Carpenter's thrilling music while we see another victim get chased by that shadowy Michael Myers.\r\n0\t\"Probably somebody heard of Alberto Tomba. A former policeman, a former sky champion, and, now, a TERRIBLE actor. \"\"Alex L'Ariete\"\" was planned to be a TV \"\"mini serial\"\", but the Italian television itself refused to show the movie on its channels. Now it's a, believe me, ridiculous movie. The script it's simply hilarious (it's supposed to be a dramatic movie), something like a 5 years old kid work. But what really blows you away it's the amateurish acting: Alberto Tomba, who actually was not believable as a policeman himself, plays terribly a totally silly character: a special operations italian policeman specialized in smashing doors open! (\"\"ariete\"\" is \"\"ram\"\"). This super-guy will try to save a young nice girl life (an actual italian \"\"little\"\" TV showgirl, married to the singer Eros Ramazzotti): nice but absolutely inept in the acting. Lose this one and make yourself a favour. A movie that is a shame to Italian cinema industry: only John Travolta in Earth Attack got close..\"\r\n0\t\"Rex Reed once said of a movie (\"\"Julia and Julia\"\" to be specific) that it looked like it was shot through pomegranate juice. I was reminded of that as I snored through Purple Butterfly. This one appeared to be shot through gauze.<br /><br />The story was boring and it was not helped that for large portions of scenes actors' faces were literally out of focus or would only come into focus after extended periods of time. <br /><br />Also, everyone looked the same so it was hard to distinguish among the characters. I call this the \"\"Dead Poets Society\"\" syndrome.<br /><br />There was nobody to care about, nobody to become interested in dramatically, and the movie shed no historical light on a very interesting period of time and set of circumstances.<br /><br />A total disappointment.\"\r\n1\t\"How does an usual day start in Point Place, Wisconsin...<br /><br />First of all, Red, the tyrannical father of the Forman family and a WWII veteran, sits at the kitchen table and reads his newspaper while his overjoyed wife Kitty serves breakfast. Then comes their skinny son, Eric, he sits at the table as well, and his father starts his daily yelling, usually involving placing his foot in Eric's behind if (insert reason here). If his promiscuous angel-faced sister Laurie is at home, she comes along, then Red stops yelling and kindly talks to her, making Eric feel left out of the family.<br /><br />Once this daily (painful) ritual is over, Eric rushes down to his basement, where all his friends are already hanging out. And when we get to see them, it becomes obvious Eric and his redhead tomboy girlfriend, next-door neighbor and childhood friend Donna Pinciotti are the sanest people around. Meet Steven Hyde, the conspiracy theorist who hates disco and doesn't really care about what's around as long as it's not funny to watch; Michael Kelso, the kind of guy who thinks that he will get through his life only by his looks and that carrots grow in trees; Jackie Burkhardt, the one who thinks of herself as the prettiest girl around, spoiled kid of a rich father, and, of course, cheerleader; and Fez, a naive but oversexed foreigner who loves candy and can't keep a secret. At first they simply hang out, gossiping and making fun of Kelso, but then they all sit in a circle and let the real fun begin... before going out doing something they'll regret later.<br /><br />Meanwhile Red goes out and meets Donna's weirdo parents, Bob and Midge. He's rude, but they don't mind, as they think he's joking. Somewhere around is Leo, an aging hippie, who's constantly confused and makes word plays without even noticing.<br /><br />Did you imagine that seemingly peaceful neighborhood with all these awesome characters? Of course, most seem \"\"clichéd\"\", but the show takes the cliché to a new level. Now throw in some of the most wicked story lines a sitcom can offer, sit down and enjoy one of the best TV shows ever. The one that never does two times the same thing and which is, compared to most sitcoms that are \"\"cute funny\"\", purely hysterical. If you get hooked, don't let this show let you go. Bite on the hook over and over and, man, you will see the sitcom genre from a whole new prospective.\"\r\n1\tCarmen is one of the best films I've ever seen. It's hard to say whose performance is best: Antonio Gades, Cristina Hoyos and Laura del Sol are superb.They dance their souls out. It's a beautiful tale of inseparability of life and myth; myth penetrates everyday life. Dance becomes life and entire life is danced out. Real people at one and the same time live their own lives and become somebody else, act out the parts of lovers of old. The magic is continuing.\r\n1\tThe first film ever made. Workers streaming from a factory, some cycling, most walking, moving right or left. Along with Melies, the Lumieres are both the starting point and the point of departure for cinema - with Melies begins narrative fiction, cinema, fantasy, artifice, spectacle; with the Lumieres pure, unadorned, observation. The truth. There are many intellectuals who regret the ossification of cinema from the latter into the tired formulae of the former.<br /><br />But consider this short again. There is nothing 'objective' about it. The film is full of action - a static, inhuman scene burst into life, activity, and the quiet harmony of the frame is ruptured, decentred from the back to right or left (but never, of course, the front, where the camera is). And yet the camera stands stock still, contains the energy, the possible subversion, subordinates it to its will. The cinematograph may be a revolutionary invention, but it will be used for conservative purposes - to map out the world, edit it, restrict it, limit it.<br /><br />worse is the historical reality of the film. These factory workers are Lumiere employees. The bosses are spying on their workers, the unseen eye regarding his faceless minions. The film therefore describes two types of imprisonment. Behind the gates, the workers are confined in their workplace. The opening of the gate seems to be an image of freedom, escape, but they face another wall, the fourth wall, further confining them. The first film is also the first example of CCTV surveillance, an image of unseen, all-seeing authority entrapping its servants. A frightening, all too prophetic movie.\r\n1\t\"Coming of age movies are quite usual these days. For 1980, \"\"Foxes\"\" really gives its meaning. Jodie Foster plays her character straight out. Ever since she did \"\"Taxi Driver\"\" four years earlier, she has a stronger character in this movie. She's Jeanie, a high schooler who has plenty of guts, and seems to get out of any situation she's in. Scott Baio plays Brad way before Chachi on \"\"Happy Days\"\". He's deemed immature by the other girls. Cherie Currie is Annie, hangs with the wrong crowd, chased by her policeman father. Jeanie and her three other friends decide to live on the wild side until they move into a rented house where a party get totally out of hand. Exploring life on the other side of the tracks can be either fun or dangerous. Annie is rescued by Jeanie and Brad all the time whenever she gets wasted. Reality comes back hard where she is killed in a automobile accident. And one gets married to a much older man. Growing up isn't easy, sometimes we got to explore life how it is. In reality, you got to be careful about the people surrounding you. For me, I was my own person, and I tend to stay that way! Great music, great plot, this movie's a gem! 4 out of 5 stars!\"\r\n0\t\"The story at the outset is interesting: slavery in the (late) 20th century from west Africa to the Arab Middle East. The problem with it is that it intentionally castigates two of director Richard Fleisher's favorite enemies: Arabs and Germans. To make us believe that very Arab-looking men would be free to roam around and easily catch Blacks in West Africa is as believable as Whites hunting for slaves in \"\"Roots\"\". Obviously both trades are/were run by locals and involve(d) much more sophisticated networks. While Arab countries are complicit in today's child and sex slave trade, Israel is one of the worst violators according to Amnesty International. So why only point out Arabs and then choose a German as the only European buyer? It's obvious bias and hatred of those people by a Jewish director.<br /><br />The acting is above average, especially by Peter Ustinov (Suleiman) and Kabir Bedi (Malik). Michael Caine (Dr. Linderby) is good as always.\"\r\n0\t\"Forest Whitaker's performance is all the more impressive for making it almost worthwhile to sit through this dreck. \"\"Historical fiction\"\" does not justify changing history. The absurdity begins from the ground up with the imaginary lead character played by James McAvoy. To create a fictional observer for the purpose of giving the reader a point of connection in the book is regrettable, regrettable that white people can't just read a book without a white protagonist to connect to, but at least he was placed in a somewhat passive role. Making up a fake historical actor and crediting this fiction with exposing Amin to the world is irresponsible, lazy and stupid. Not making the actions of this creation believable or even sane is just criminal, and has opened the door for movies like the one they're planning to make with Leonardo DiCaprio as a heroic Enron whistleblower who NEVER EXISTED. The logic of the world does not apply in this film where some Scottish kid thinks its okay to sleep with the wife of a murderous dictator. It doesn't apply where the wife of the dictator desires to sleep with some stupid scrawny irresponsible white boy. For that matter EVERYBODY is lined up to sleep with this scrawny, irresponsible, arrogant white boy, he even has Gillian Anderson licking her comely chops.<br /><br />Let me declare, I do not like James McAvoy. I'm not sure what it is about him, but I thought his Mr. Tumnus in Narnia was creepy and pervy. I think that Kerry Washington would never look twice at him so I can't believe that the wife of a powerful dangerous man like Amin would risk and lose her life for him. I don't believe him as a Doctor, and I just don't see the appeal. His character seems to have far more arrogance than would make sense, and trying to make him look like a badass in shooting the cow was just...there's that word again...absurd. Think about it, you are watching all of these characters bend themselves into knots in order to accommodate this unbelievable main character and there never was such a guy.<br /><br />Gillian Anderson looks incredible and sounds more British than most Brits. Whitaker gives a great expansive magnetic performance, and highlighted, with his incomprehensible pre-Oscar speeches, just how much he was acting. It's a shame the film around him had no reason to exist.\"\r\n0\t\"The second attempt by a New York intellectual in less than 10 years to make a \"\"Swedish\"\" film - the first being Susan Sontag's \"\"Brother Carl\"\" (which was made in Sweden, with Swedish actors, no less!) The results? Oscar Wilde said it best, in reference to Dickens' \"\"The Old Curiosity Shop\"\": \"\"One would have to have a heart of stone not to laugh out loud at the death of Little Nell.\"\" Pretty much the same thing here. \"\"Interiors\"\" is chock full of solemnly intoned howlers. (\"\"I'm afraid of my anger.\"\" Looking into the middle distance: \"\"I don't like who I'm becoming.\"\") The directorial quotations (to use a polite term) from Bergman are close to parody. The incredibly self-involved family keep reminding us of how brilliant and talented they are, to the point of strangulation. (\"\"I read a poem of yours the other day. It was in - I don't know - The New Yorker.\"\" \"\"Oh. That was an old poem. I reworked it.\"\") Far from not caring about these people, however, I found them quite hilarious. Much of the dialog is exactly like the funny stuff from Allen's earlier films - only he's directed his actors to play the lines straight. Having not cast himself in the movie, he has poor Mary Beth Hurt copy all of his thespian tics, intonations, and neurotic habits, turning her into an embarrassing surrogate (much like Kenneth Branagh in \"\"Celebrity\"\").<br /><br />The basic plot - dysfunctional family with quietly domineering mother - seems to be lifted more or less from Bergman's \"\"Winter Light,\"\" the basic family melodrama tricked up with a lot of existential angst. It all comes through in the shopworn visual/aural tricks: the deafening scratching of a pencil on paper, the towering surf that dwarfs the people walking on the beach. etc, etc.<br /><br />Allen's later \"\"serious\"\" films are less embarrassing, but also far less entertaining. I'll take \"\"Interiors.\"\" Woody's rarely made a funnier movie.\"\r\n0\tIt's the early 80s. There's a group of suspiciously old-looking teens. And there's a maniac stalking around. Yes, this is slasherville.<br /><br />This movie is called Pranks. Why is it called Pranks? I haven't the faintest idea. Unless your idea of a great prank is to repeatedly hit someone's dinner with a baseball bat - on balance, not a great prank; in fact quite a rubbish prank if truth be told. But there you go.<br /><br />The film itself concerns a group of teenagers who are tasked with cleaning out a decommissioned dormitory. They become aware that a psychopath is on the loose. To combat this development, they split up and wander about in the dark. It ends in tears for most of them.<br /><br />Pranks is a badly made slasher movie. The DVD release I viewed was the Vipco one. It appears to be cut of a fair bit of violence. This makes the DVD even more pointless because, let's face it, a slasher movie shorn of violence is a waste of time. For slasher-film and video nasty completists only.\r\n1\tFritz Lang's German medieval saga continues in Die Nibelungen: Kriemhilds Rache (1924).Kriemhild (Margarete Schoen) wants to avenge her murdered husband, Siegfried.Her brother is too weak to bring the murdered, Hagen, to justice.Kriemhild marries Etzel, the King of the Huns (Rudolf Klein-Rogge).She gives birth to a child, and invites her brothers for a party.Etzel and the other Huns should kil Hagen, but he is protected by his brothers.We see a huge battle of life and death begins, and she sets the whole place on fire.Eventually Hagen is dead, and so is Kriemhild.These movies deal with great themes, such as revenge and undying love.Sure we have later seen some better movies made of those topics, but this was one of the early ones.\r\n0\tI am appalled at how bad this film is. As a pastiche of early 20th century Hollywood artistes it sets a new low - even past The Moderns or (gasp) Cradle Will Rock & I never thought I'd see a film worse than those 2. Granted they were about a slightly different milieu & period. Nevertheless the intents & results were distressingly similar.<br /><br />First off there's the horrible casting: Eddie Izzard as CHAPLIN? Excuse me? Peter, did you owe this guy something? Jennifer Tilly as Loulla Parsons?? Kirsten Dunst as Marion Davies??? Holy smoke, these people don't even begin to try to capture the look or sound of the period they are purportedly depicting.<br /><br />Well, Last Picture Show was a decent film, but this thing is a disaster & the rest of Bogdonovitch's pics haven't been much better. Guess rubbing up against Welles & Hitch & Ford wore off a long time ago. Still good for hosting TCM though.\r\n1\tA well cast summary of a real event! Well, actually, I wasn't there, but I think this is how it may have been like. I think there are two typically American standpoints evident in the film: 'communistophobia' and parallels to Adolf Hitler. These should be evident to most independent observers. Anyway, Boothe does a great performance, and so do lots of other well-known actors. The last twenty minutes of the film are unbearable - and I mean it! Anyone who can sleep well after them is abnormal. (That's why it's so terrible - it all happened, and it probably looked just like that). But, actually, did that last scene on the air station really take place?\r\n0\t\"I missed the beginning of this film, which might account for why I disliked it so much. On the other hand I've studied the fall of the Roman republic for years so I know the story. Then again, that might also be the reason why I disliked this film.<br /><br />The film has more historical inaccuracies than extras. Though it's so inaccurate that I don't think they made an attempt for it to be correct, in which case it can be forgiven. The odd thing is that they sometimes go to great lengths to be historically accurate that it ends up getting confusing. Like throwing in Antonius' marriage to Octavia, and then pushing it aside two scenes later. Why even bring it up if it serves no purpose for the plot and Octavia is never even seen? And like calling Antonius by his actual name (Marcus Antonius) in some scenes, and by his strange English name Mark Antony in other scenes.<br /><br />Though historical inaccuracies aside, the film could still have been an entertaining watch if it wasn't for the leading lady. There isn't an ounce of dignity in her. She's hysterical, dramatical, and completely lacking control of herself. Instead of being a clever and composed queen Cleopatra turns into a hysterical teenager with a bad case of PMS. 95% of that comes from the poor acting, but 5% is also from poor script writing. Far too many stupid dramatic scenes are written into the script. Sometimes you weren't watching Antonius and Cleopatra, you were watching immature versions of Dawson and Joey from \"\"Dawson's Creek\"\".<br /><br />If you want to watch something about this period, watch... anything but this.\"\r\n0\tWith movies like this you know you are going to get the usual jokes concerning ghosts. Eva as a ghost is pretty funny. And the other actors also do a good job. It is the direction and the story that is lacking. That could have been overlooked had the jokes worked better. The problem only is that there aren't many jokes. Sure I laughed a couple of times. Apart from the talking parrot there wasn't an ounce of creativity to be noticed in the movie. I blame the director not using the premise to it's full potential. Eva certainly has the comedic skill to show more but did not get the opportunity to do so. Overall this movie is ideal for a Sunday afternoon. Other than that it can be skipped completely.\r\n0\tI give this movie a 3 as it is worse than the cult movies that deserve a proper 2. It does not make sense to you? Well, it doesn't have to. This is another vampire movie with a stupid plot, no, let me rephrase, incredibly idiotic plot, where space cowboys (complete with cowboy hats) battle a space race of moron vampires.<br /><br />Does it get any uglier than this? The only good thing in this movie was Natassia Malthe, with her stunning Norwegian beauty. God, I wish Michael Ironside and the DeLuise brothers would stop accepting dumb roles in dumb movies! I mean, at least SeaQuest was nice! I know Mr. Ironside from a lot of movies, he has acted in 164 movies at this date!! It's true that he was rarely in a major role, but still!\r\n1\t\"I don't think I've really ever given Walter Matthau his due as a comedic performer. He's certainly been wonderful in plenty of lighthearted roles, but I guess I always put his success down to his characters' grumpiness and ruthlessness, a gruff contrast to the flamboyant personality of his frequent co-star Jack Lemmon, and, I suppose, a natural extension of his earlier work in dramatic pictures. Watching Gene Saks' 'The Odd Couple (1968),' adapted from a popular Neil Simon play, the realisation suddenly clicked: Matthau is, in his own right, absolutely hilarious! Initially striking the audience as filthy, crude and generally unappealing, his Oscar Madison eventually manages to worm his way into our hearts, culminating in a hilariously overplayed confession of emotions that Matthau rasps out in a voice not entirely his own. At the same time, while holding his own as a comedian, his interplay with Lemmon is, of course, pitch-perfect; indeed, the film rightly belongs to both actors, who have never failed to light up the cinema screen by themselves, let alone together.<br /><br />Calling to mind Billy Wilder's screenplay for 'The Apartment (1960),' this Neil Simon comedy builds itself around around a rather morbid premise. Compulsive house-cleaner Felix Unger (Lemmon), having just been evicted by his wife of twelve years, attempts to commit suicide, but fruitlessly abandons the idea after he wrecks his back trying to open the hotel window. Dejected, he arrives at the house of good friend Oscar (Matthau), a divorced slob who lives alone on a diet of potato crisps and green sandwiches (that might contain either very new cheese or very old meat!). Oscar kindly offers Felix a place to stay, but is soon overwhelmed by his friend's finicky personality and constant insistence on absolute cleanliness. The pair form an unusual sort of marital arrangement, with Felix assuming the role of the effeminate and constantly-nagging wife, and Oscar as the sloppy, unappreciative husband who always comes home later than he's supposed to. This is a marriage that barely lasts three weeks, and, by the end of it, we can completely sympathise with Felix's ex-wife, who remains unseen.<br /><br />'The Odd Couple' is a terrific comedy, most of all because it has a lot of heart. For all their arguing, it's obvious that the two roommates have plenty of affection for each other, most movingly seen when Felix tries to launch into a furious tirade, instead  perhaps inadvertently  ending up informing Oscar how \"\"tops\"\" he his. The pair's four poker buddies (John Fiedler, Herb Edelman, David Sheiner and Larry Haines) are also constantly badgering each other about some obscure annoyance, but you can't deny that they've got the best of intentions. Their decision to treat Felix as though nothing has happened to him may have sounded fine in theory, but maybe being ignored wasn't quite the correct solution to Felix's gloomy feelings of inadequacy and inconsequentiality. Unlike some comedies based on popular stage plays {I was recently disappointed by Wilder's 'The Seven Year Itch (1955)}, this film doesn't simply strike at the same chord throughout, and the relationship between the two leads is progressively developed, through tears, laughter and much disagreement.\"\r\n1\tI've spent years looking for a copy of this film(16mm,dvd,vhs), so I could show it to my kids. The movie is funny, and Spike and the members of his band show why they were the best musicians in the business. They had to be that good to play that demented. I like it and recommend it for movie lovers of all ages.<br /><br />The movie is about a turn of the century firehouse, with a crew of misfits that are firemen and the department band (when not fighting the fires). There's the usual running gags, plus the mayhem of Spike Jones and his Orchestra. Also, comedy relief provided by comedian Buddy Hackett and straight-man Hugh O'Brien.\r\n0\tEverything about this film was terrible. To start with this film had a pretty good cast and I find it impossible to make such a great cast into the biggest disaster to the gangster film genre ever. The sound track was like one of a very bad slap stick comedy. It had this music through the whole film and it started to get quite irritating.<br /><br />PLEASE PLEASE PLEASE PLEASE PLEASE DO NOT INFLICT YOURSELF WITH THIS DISASTER YOU WILL ONLY BE HURT\r\n1\t\"After a slow beginning, BRUCE ALMIGHTY is a very funny film that had something positive to say. It wasn't one of Jim Carrey's best performances, but he was still OK. Morgan Freeman was just right as God. Jennifer Aniston had some good moments. I miss Steve Correll on \"\"THE DAILY SHOW!\"\"<br /><br />I like director Tom Shadyac's choices of movies. He also did LIAR LIAR, PATCH ADAMS, and THE NUTTY PROFESSOR. In all three of those and in Bruce Almighty, he takes a big comedy star and tells a human story with him. A director who knows comedy, can get the talent he gets, and can tell a meaningful and intelligent story with it is hard to find.<br /><br />My biggest complaint is that they should have used more biblical references. I only remember three specific biblical references and they were the three funniest parts of the whole movie. My guess is that the first few drafts of the screenplay had more biblical references, but they were cut out because the producers were afraid of offending people. That's too bad because I thought it was a missed opportunity.<br /><br />My Grade:<br /><br />7 out of 10\"\r\n1\tThis was a fine example of how an interesting film can be made without using big stars and big effects. Just tell a true story about the struggles of two African American women over a turbulent century.<br /><br />This movie challenges us all to look at our own personal prejudices and see that people are people, not white, black, etc.<br /><br />Good movie with a good message.\r\n0\t\"This movie's one of my favorites. It's not really any good, but it's great to laugh at. The dialogue can become incredibly ludicrous and poorly acted (eg, \"\"Manji, can we ask you a few questions?\"\" \"\"Sure.\"\" \"\"We think you can help us with the answers.\"\") Any fighting is more or less surrealistic. Make sure to watch for Brock, the oafy white guy who attacks the main characters. He only has two lines, but he's one of the best guys in the movie!\"\r\n0\tThis movie was slower then Molasses in January... in Alaska. The man who put togeather the preview should get an award for managing to put every one of the 30 seconds that were interisting into the preview. I had to wake up the people I was watching it with, several times. After it was over, I felt bad for having woken them up. <br /><br />Most of the film is taken up with hoping something will actually happen, but nothing ever does. It was easy to loose track of people's motives, and the characters were flat and uninteristing. By the end of the movie, you just hoped everyone would died. Everyone runs around either being contemptible, petty, or pitiful, and usually all three. <br /><br />And worse, we watched a minute or two of the added features, just for kicks and giggles you understand, and all that we saw was people being smug about how socially aware they are. If they had spend the time on the movie that they did patting themselves on the back, it might have been worth watching. <br /><br />I was brought in expecting the excitement of '24.' I got a lecture on social awareness through the blery eyes of the sandman.\r\n0\tI have been an environmentalist for years and was really looking forward to this show. I had it set to record all episodes because I thought I could really learn some great new things. I probably could if I could get past Rachelle.<br /><br />I'm sure a lot of this is staged to seem like a reality show and appeal to that class of viewer. It doesn't work for someone who's really interested in improving the planet.<br /><br />This show should be called Nagging with Rachelle.<br /><br />Since Ed is such a great font of information, maybe a second show that's really serious about the environment would be a good idea. Dumbing things down is not necessary for some of us. <br /><br />I no longer record episodes or watch the show, but do let me know if a real green show may be in the works.\r\n1\t\"It is quite a simple not very active but very charming film. There were moments where I can see why Cher won the Academy Award for Best Actress, but there were other times when I wondered why Glenn Close didn't win for Fatal Attraction. Anyway, Oscar and Golden Globe winning, and BAFTA nominated Cher plays Loretta Castorini, a simple woman with a low pay job who has just been asked by Mr. Johnny Cammareri (Danny Aiello) to marry him. He promises her he'll be back in a month, as his mother is sick, so she mean while needs to get as much of his family to attend the wedding as possible. Only problem is, when she finds Johnny's one-handless brother Ronny (Golden Globe nominated Nicolas Cage), they start having a relationship, and there love goes on to that moon scene (where the title comes from). Also starring Oscar nominated Vincent Gardenia as Cosmo Castorini, Oscar, BAFTA and Golden Globe winning Olympia Dukakis as Rose Castorini and John Mahoney as Perry. It ends with no wedding for Johnny and Loretta, but she and Ronny were happy together. It won the Oscar for Best Writing, Screenplay Written Directly for the Screen, and it was nominated for Best Director for Norman Jewison (In the Heat of the Night) and Best Picture, it was nominated the BAFTAs for Best Score for Dick Hyman and Best Original Screenplay, and it was nominated the Golden Globes for Best Motion Picture - Comedy/Musical and Best Screenplay. It was number 96 on 100 Years, 100 Quotes (\"\"Snap out of it!\"\"), it was number 17 on 100 Years, 100 Passions, and it was number 41 on 100 Years, 100 Laughs. Very good!\"\r\n1\t\"This movie is such cheesy goodness.<br /><br />A bunch of people trapped in an abandoned school. They start getting killed off, they know they are being stalked, so what do they do? One girl decides to take a bath, another decides to cheat on her husband (who is also there) with an old boyfriend so they somehow find a bed (in an old abandoned school?) and go at it.<br /><br />And it comes through with the gore and the T&A.<br /><br />And it's also interesting from a historical/sociological point of view. Where the usual 80's slasher is a reflection of how we view ourselves, or how adults view young people, or as Hollywood views the rest of the country this has a unique perspective. This is a Brit film made to be an American slasher. It's hilarious to see how often the British actors who are trying to speak \"\"American\"\" unintentionally slip back in to their UK accents.<br /><br />If you like cheesy 80's slashers (like Pieces) then you will like this one.\"\r\n1\tSterling and younger brother try to survive on land, being squeezed by big cattlemen. When 'rogue' brother Preston arrives, a moral dilemma ensues. John 'Drew' Barrymore steals the show as the younger, impressionable brother-Barrymore shows signs here that he could have been an acting powerhouse. Moves at a nice pace to an exciting climax.\r\n1\t\"YETI deserves the 8 star rating because it is the one of the greatest bad movies ever made. I saw it at a midnight screening in L.A. and people were roaring and cheering at the insanity - this movie is one of those cinematic trainwrecks where you think it cant get any stranger and THEN IT DOES! The millionaire who funds the project to thaw the Yeti looks like Chris Penn and John Goodman both poured into an ill-fitting suit - the guy playing the scientist is one of the worst actors to ever appear on screen - and yes, there is a mute boy (who sorta kinda looks like a girl) and he's mute ever since he survived a plane crash that killed both his parents (hmmm- maybe therapy for the kid??). Then this hottie Italian girl is seen by Yeti (once he thaws - which takes FOREVER) -- and he is instantly in love with her - what is one of the most hysterical things about the movie is that this giant Yeti makes \"\"bedroom eyes\"\" at her - it's like a large Barry White trying to seduce a groupie. In fact, once the large Yeti picks up the hottie and has her against his chest - she accidentally touches the Yeti's nipple and yes, the film takes the time to show his large grey nipple GET HARD!!!! Yikes of all YIKES! Plus there's a collie dog in it because the Italian producer must have heard that American audiences like dogs and he sorta kinda tried to get a Lassie - there's also this insane scene where the Yeti eats a giant fish - keeps the large fishbone and uses it to comb the Italian girl's hair \"\"Gee, thanks Yeti - now my hair is smooth and smells like dead trout. You're the best.\"\" This film is more bizarre than something Ed Wood could have ever dreamt up. If you are a fan of classic cinema crap - seek this baby out.\"\r\n1\tI often wonder why this series was slammed so much. I thought it was brilliant and also very cleverly written and performed. I think in time to come it will be seen in the light it deserves, that is if they ever issue it. Many up and coming young comedy actors appeared in this and all went on to greater things. Maybe this fact will make people aware of its value and it will have to be issued. Sally Phillips, Simon Pegg, Peter Serafinowicz and not least Julian Rhind-Tutt of the hugely successful Green Wing. The writers Graham Linehan and Arthur Matthews are two of the finest comedy writers of the modern age. Anyone that can produce comedy like Father Ted couldn't be capable of writing something not worthy of publication. If it is ever issued I will certainly buy it.\r\n1\t\"Lost isn't the greatest TV show in history, but it's not far off. It doesn't have the plot or characterisation of The West Wing or possibly even early ER, however, it is arguably the most continuously gripping show I have every come across. I love the way I can't guess what's going to happen. I love the re-telling of the characters' back stories which often give rise to new dimensions for us to see them in. In some ways I want the show to last forever, but I think they can get 6-7 seasons out of it before they have to end it on a glorious high. The combination of the characters and their nationalities coupled with the show's fluidity for moving backwards and forwards thus extending dead characters \"\"life spans\"\" all adds to the overwhelming sense that this show is something very different from what we are used to. It's captivating, surprising and (here's a little suggestion for all of you conspiracy theorists) more than a little interactive- keep those internet discussions going- you're only adding to the plot...\"\r\n0\t\"Even worse than the worst David Lynch \"\"confusathon\"\", \"\"Brain Dead\"\" makes no sense whatsoever. Shamefully wasted talent (Bill Pullman, Bill Paxton), bounce around like they are in a \"\"Tom and Jerry\"\" cartoon on acid. There is negligible character development. It simply starts climbing the \"\"strange scale\"\", until climaxing in total chaos. Do not get sucked into this because of the above fine actors. They are given nothing to work with, and you will be wondering what's going on throughout the entire, unbearable 85 minutes. I highly recommend avoiding \"\"Brain Dead\"\" at all costs, unless you are into scattering your brain into total nonsense. - MERK\"\r\n1\t\"I couldn't find anyone to watch DiG! with me because no one I knew was a fan of either of the bands. Naturally everyone assumed you can only enjoy this film if you like the music of either The Dandy Warhols or the Brian Jonestown Massacre, but this is so far from the truth. The only requirement is that you have an interest in music and/or pop culture in general. The way in which the careers of the two groups are paralleled is a perfect representation of the paths a band can take, and watching the public eat up and spit out the Dandy Warhols is fascinating. I agree with other reviews that mention it would be nice to get a final word from Anton himself, since he's clearly depicted as his own worst enemy and the bulwark to the band's ability to just remain.<br /><br />Most interesting to me is the Dandys' respect for the BJM (despite their lack or reciprocation) and for Anton (despite his erratic behavior). The Dandy Warhols respect the art the group produces even if the group hates everything the Dandy Warhols now stand for (although that's disputable). The best line is when the drummer for the Dandy's says \"\"I won't have them anywhere new me again\"\" and the guitarist unconsciously blurts out \"\"I'll still buy their records though.\"\" To me, this just shows how powerful good music can be.<br /><br />Definitely see this movie, even if you know nothing of either band. It's more about the themes of rock music and how they develop that makes this film so interesting. It's rare to follow a group so closely for so long.\"\r\n0\tFriday the 13th step over! There is officially a worse movie than your hateful series out there. I won this movie in a contest at college, and it was a waste of money even if it was free. Jack Jones stars as a truly awful singer whose trying to find some murderers or something. At least Friday the Thirteenth never bored me. I'd rather have my fingernails pulled than see this again.\r\n0\tI don't what that other review was talking about. This definitely isn't a bimbo movie, in fact, I don't think there was one decent looking girl in it. No, it's just cheesy, poorly-done, Ed Wood-style science fiction schlock. And it's bad. I can't even begin to tell you how bad it is. I saw it late at night on cable, and I was in shock. The fact that this movie was ever released is an insult to us all. The actors were either friends of the producer or mentally retarded, the special effects are a joke, and the pace is insanely slow. To me though, the music tops it all. A monkey could write a better theme with a toy xylophone. Do not rent this thing, but if you ever see it on cable, watch it. You'll be amazed at how bad a movie can be.\r\n1\t\"Good action show, but nothing new. This one took place high in the mountains, which showed some nice scenery and such. One man takes on a group of mercenaries, the lead flies, and he kicks butt. It could have been called \"\"Rambo Goes to the Rockies\"\", it was that pat. It did have one very effective scene right at the first of the film which had me cringing in horror. Not a bad picture, but just same ol', same ol'.\"\r\n0\tNacho Vigalondo is very famous in Spain. He is a kind of bad showman who can make you feel sick... Very embarrassing. Nacho had made some commercials in TV, I remember one in which Nacho was looking for Paul Mc Carney around Madrid (the commercial was about a Mc Carney CD collection). <br /><br />This little movie is like a Nacho's commercial: bad storyline, bad directing, and awful performances. I can't believe that a disgusting movie like this was in The Kodak Theater. Poor Oscar...<br /><br />Nacho could made this movie because of his wife, the producer of this 7:35, a woman very well connected with Spanish TV business men.\r\n1\t\"I always enjoy seeing movies that make you think, and don't just drip-feed the answers to their audience. \"\"Revolver\"\" is one of these films, and although many reviewers have stated that it is difficult to follow, with a bit of concentration and an open mind I got it. First time. True, it doesn't compare to other mind-mucks like \"\"The Usual Suspects\"\" or \"\"Memento\"\", but in its own right its an intelligent and thought-provoking film. <br /><br />Another thing I really liked about this film is how damn beautiful it is. Every scene, every camera angle seems to have been thought about for ages. If you see it you'll know what I mean.<br /><br />So, to conclude... watch it with an open mind and you may enjoy it. If not, well, no-one ever said \"\"Revolver\"\" is for everyone. And that's my 2 cents.\"\r\n0\tI never much liked the Myra movie, tho I appreciate how it pushed the Hollywood envelope at the time. Certainly Miss Welch's costume became an iconic image, though I have to wonder if many people who recognize the image really saw the film and know what it was all about -<br /><br />I rewatched Myra on FMC a couple of years ago and didn't think it had aged any better thru the years. There's a segment about it in the Sexploitation Cinema Cartoon History comic books, where it's given proper credit for putting such big stars in what was then an outrageous production. However, IMHO, the movie is too bitter to be charming, too silly to be a turn-on, and so busy trying to shock that it fails to inform, engage, OR entertain ---\r\n1\tFirst of all, I liked very much the central idea of locating the '' intruders'', Others in the fragile Self, on various levels - mainly subconscious but sometimes more allegorical. In fact the intruders are omnipresent throughout the film : in the Swiss-French border where the pretagonist leads secluded life; in the his recurring daydream and nightmare; inside his ailing body after heart transplantation.... In the last half of the film, he becomes intruder himself, returning in ancient french colony in the hope of atoning for the past. <br /><br />The overall tone is bitter rather than pathetic, full of regrets and guilts, sense of failure being more or less dominant. This is a quite grim picture of an old age, ostensibly self-dependent but hopelessly void and lonely inside. The directer composes the images more to convey passing sensations of anxiety and desire than any explicit meanings. Some of them are mesmerizing, not devoid of humor though, kind of absurdist play only somnambulist can visualize.\r\n1\tMany people judge it as a fan service film because a lot of super star starring in this movie (Gackt, Hyde, and Wang Lee Hom is very famous singer in Japan). But don't judge it before you watch, is what I say. Gackt and staff are very serious when made this film, and they worked so hard. It's a good film with a touchy story inside. Several scenes can be so fun and some others are so sad. They made it so good until I can't stop watching this all over again. <br /><br />The story has written pretty well but I admit that their act are little disappointing. This is especially for Hyde because his skill of acting is under from the other and it is weird to hear the way when he speaks with other language except his native language (Japan). But, it's comprehensibility because this is their first time to act in the movie.<br /><br />I think Gackt trying to show us about how someone can be so weak when they lose the most important person in their life. When Toshi was killed, when Sho asked Kei to turn Yi-Che to being vampire like him because he won't let her die, When Sho's Brother died, Kei Shoot Son die, and the best and beautiful scene is When Sho pass away~ even I told that Hyde's skill is still weird but I give him two thumps up at that scene!!<br /><br />There's a time where The plot goes too fast like they didn't tell the reason Why Son can join the local mafia and being Sho's enemy because they are a good friend at the past and also Son is Sho's brother in law.<br /><br />Whatever, I love this movie~ (very much ^^). <br /><br />This is an action movie with a touching beautiful story.\r\n1\twell i was a teenager when i saw the movie..the songs were a huge hit but the elite class skipped govinda movies back then coz watching govinda and karishma (aka karizma )movies were not the in thing for that 'class' but anyways a lot of people liked it as the series of these movies rocked the 90's through out and most of them were successful..today i was watching it again after a long time and i remembered, there was a long que of people and the riot they created when the a aa e uo uo o song came on screen....the dresses of govinda and karishma were complimentary to each other(the worst dressing duo of that time) well karisma in the late 90's transformed but govinda has still been very faithful to his designer as his dress sense remains the same...but back then it all blended it was all good ..everything worked and slowly the elite class realized what fun it was missing and then .....there was no looking back for this jodi as it went on n on making those Indian carry on series ..hated by a few but loved by the masses.<br /><br />if you are looking for a good time with nothing to do rent it or watch it on TV i don't think you will regret it...but remember its the worst at its best ..<br /><br />still i watch those movies when i get time coz i cant stop laughing...so i say go ahead and have a good time as there are times when we all love stupidity and specially when its done by the kings of their times it surely is watchable ...i recommend it to all movie lovers ...\r\n1\t\"Twenty five years ago, I showed this film in some children's classes in Entomology and can still remember the excitement of the kids; they were spellbound! It is not just about the termites who have built and live in the \"\"Castles of Clay,\"\" but also about the other animals who use the mounds. There is a fantastic scene in which a cobra fights a monitor lizard while a colony of mongooses watch. It is a not only good for entomology classes, but also for teaching about ecology since there is so much about the interactions between the termites and other organisms and the whole ecology of all of the organisms that live in and around the mounds. <br /><br />I wish it was available on DVD, so that I could watch it again and show others.\"\r\n1\tThis comedy with much underlying pain and sadness succeeds where most others fail. There have been many films of this genre with more notable actors attempting to achieve this elusive mixture which haven't come anywhere near the depth and deftness of this one. This is surely because the exceptional cast with outstanding performances by Reg Rogers and Ally Sheedy seem so spontaneous that the reality of their characters rapidly grip your interest and emotions and hold them throughout the film. At first, the action seems rather off-the-wall and harebrained but one gradually learns that these two rather pathetic damaged people are desperately and unwillingly trying to heal themselves, even if grudgingly, through each other. Rogers' heartrending facial expressions of numb hurt and Sheedy's angry outbursts are so eloquent that one feels them as one observes them. You will care about these two likable but deeply suffering people and hope that they will succeed because it's in doubt and all hangs on a tenuous emotional thread. Hopefully audiences will get to see more of Reg Rogers and Ally Sheedy as this film proves their merit as very accomplished actors beyond doubt.\r\n1\t\"It started out slow after an excellent animated intro, as the director had a bunch of characters and school setting to develop. Once the bet is on, though, the movie picks up the pace as it's a race against time to see if a certain number of worms can be eaten by 7 pm. We had a good opportunity on the way home to discuss some things with our son: bullies, helping others, mind over matter when you don't want to do something.<br /><br />Of special note is the girl who played Erica (Erk): Hallie Kate Eisenberg. The director kinda sneaks her in unexpectedly, and when she is on-screen she is captivating. She's one of those \"\"Hey, she looks familiar\"\" faces, and then I remembered that she was the little girl that Pepsi featured about 8 years ago. She was also in \"\"Paulie\"\", that movie about the parrot who tries to find his way home.<br /><br />Ms. Eisenberg made many TV and movie appearances in '99-00, but then was not seen much for the next few years. She's now 14 and is growing up to be a beautiful woman. Her smile really warms up the screen. If she can get some more good roles she could have as good a career (or better?) than Haley Joel Osment, another three named kid actor, but hopefully without some of the problems that Osment has been in lately.<br /><br />Anywhozitz, according to my 8 y.o. son, who just finished reading the story, the film did not seem to follow the book all that well, but was entertaining none the less. The ending of the film seemed like a big setup for some sequels (How to Eat Boiled Slugs? Escargot Kid's Style?), which might not be such a bad thing. It was nice to take the family to a movie and not have to worry about language, violence or sex scenes.<br /><br />One other good aspect of the movie was the respect/fear engendered by the principal Mr. Burdock (Boilerplate). Movies nowadays tend to show adult authority figures as buffoons. While he has one particular goofy scene, he ruled the school with a firm hand. It was also nice to see Andrea Martin getting some work.\"\r\n1\tFor such films like `Anchors Aweigh', few have been bestowed with as many Academy Award accolades in a warm up for happy hour. Either 1945 was a beleaguered year for good film or they were still suffering advance shock by Billy Wilder's `The Lost Weekend' that they wrote anything starting with A on the ballot for best picture to please the still musical picture faithful public. Since Gene Kelly was nominated for this performance instead of his role in `Singin' in the Rain', then there had to be something wrong with the behind the scenes rigging systems at MGM. Of course, the studio is on its best behaviour during this much lauded tour of the great studios and of Hollywood itself, handy for those stuck on the other side of the world.<br /><br />Yet a sailor suit musical with the brilliant talents of Gene and Frank Sinatra is certainly an enjoyable farce, despite the need for more people to yawn at the previews for the musical so today's audiences wouldn't be slapped with an unnecessary runtime. There have been many longer pieces before and since, but in this case all of the charming Kathryn Grayson's scenes could have been eliminated. Until the viewing of `Kiss Me Kate' it may have been necessary non-opera enthusiasts to watch any of her films with remote control in hand. <br /><br />If there was a need to practice picking up women for 1949's `On the Town', then perhaps the shore leave lucky sailors did not have to promise an audition with Jose Iturbi and strike up the piano for a whole hearted `Susie' rendition. Few are lucky to get a screen test at the golden studios of MGM. Then few are even luckier to be attended to. There are no regrets to be had about the successful screen tests of Susan Abbot or Kathryn Grayson, but it makes the continual non-opera enthusiast hope for the eventual pink slip to be handed out to both. <br /><br />But for all, the star talents are good shape and an above average score thrown in with a slight, but fun great navy story intertwined with young ambitious navy boys good for late bursts of wartime morale, makes `Anchors' at least doesn't question picking the wrong MGM film. The direction holds up as the cast carries the story in lovely colour cinematography. Whenever anyone bursts into music or song, the film makes for a joyous occasion.<br /><br />The natural highlight of the film is Gene Kelly's cartoon adventures in a fantasyland, climaxing in a brilliant dance with Jerry the mouse. This is a well-deserved masterpiece number of Kelly's career, and it's nice to know he thought of it before Fred Astaire started taking to dancing on walls and ceilings.<br /><br />It's not exactly sitting down to a triple flavour, rainbow sprinkled, chocolate wafer, cream and cherry and banana split sundae, but it is a square solid lump of sugar that somehow eventually melts in your mouth and despite the guilt, is still a pleasant feeling.<br /><br />Rating: 7/10\r\n0\t\"The film is a collection of cliche's on just about anything out there. It has no focus whatsoever, no goals, no real message. Symbolism is pushed over the top and stereotyping is abundant and outrageous. This movie can't resist the temptation of making drama where non exists. Every small exchange of words turns immediately into a lengthy, unjustified dialog that is so typical of an acting class rehearsal. Where there is no substance to this exchange, the actors (regardless of how good they are normally) can't help but compensate with exaggerated emotion, aka \"\"raising the stakes\"\". Over acting, to put it simply. The directing is of no help here. Nothing can save this non-story. It is forced, faked and boring to tears. Inaccuracies in portaraying punk rock with The Who, piercings and flashy 90's outfits. Characters wander without a role, detail and motive. Locations are arbitrary. This is Boogie Nights cum The Good Fellas cum Saturday Night Fever, with meaning and art ripped out.<br /><br />Good DP. I'll give it that.<br /><br />Some films have flaws. This film is Lee's flaw. He sold out, like the rest of them. Became irrelevant. He has nothing of interest to say anymore.<br /><br />I have no desire to see anything again from this guy (whom I'll refrain from naming from now on).\"\r\n1\tA meltdown at a nuclear power plant causes a majority of people to turn into lethal, rot-faced, shambling zombies who naturally go on a grisly rampage. A ragtag handful of uninfected folks do their best to survive this grueling ordeal. Director/co-writer/producer Todd Sheets displays an appealingly sincere love and passion for go-straight-for-the-throat lively and gruesome horror fare: he maintains an unflagging snappy pace throughout, fills the screen with wall-to-wall crazy action, and thankfully keeps the terrible dialogue to a pleasing minimum. Moreover, Sheets certainly doesn't skimp on the gloriously graphic and excessive over-the-top splatter: this picture delivers a tasty truckload of flesh melting, evisceration, lots of gut munching, one dude has his heart yanked out, and there's even a nice impalement on a tree branch. Sheets earns bonus points for keeping the tone grim and nasty to the literal bitter end (for example, almost all of the main characters wind up becoming zombie chow). Granted, this flick has its fair share of flaws: the ragged editing, several ham-fisted attempts at pathos, and the largely awful acting from a rank no-name cast all leave a good deal to be desired. Top thespic honors go to the pretty and perky Kasey Rausch for her winningly spunky portrayal of the resourceful Daria Trumillio. Frank Dunlay likewise does well as rugged take-charge army veteran Ralph Walsh. Best of all, Sheets' sure grasp of an infectiously slambang sense of unrelenting headlong momentum and obvious affinity for the horror genre ensure that this remains a total blast to watch from start to finish.\r\n0\t\"I will be short...This film is an embarrassment to everyone except its cinematographer. The very fact that it is a critique of the sex tourism industry seems valid until we are \"\"treated\"\" to a lingering dance scene. The plot is ridiculous no one except the most ardent fan of BAD horror will get anything out of it. And for the love of God please stop saying this film is a tale of innocence lost or even of female empowerment because it is quite clearly not (childish fumbling lesbians, what the hell?). this was by far the worst film at the Edinburgh festival (that i saw anyway), someone even collapsed halfway through the film probably because they couldn't take any more of it. this may seem like an overly critical rant but i genuinely cannot find a redeeming feature of this film except for perhaps if you take it as pure comedy. In short this film is best watched on a cocktail of class A drugs.\"\r\n1\t\"I have never seen such a movie before. I was on the edge of my seat and constantly laughing throughout the entire movie. I never thought such horrible acting existed it was all just too funny. The story behind the movie is decent but the movies scenes fail to portray them. I have never seen such a stupid movie in my life which is why it I think its worth watching. I give this movie 10 out of 10 for being the most pathetic movie ever created, this movie seems like it was solely created to become trash. I mean the scenes seem so fake and the actors act like \"\"the camera is in front of them\"\". You will get a kick just watching how lame this movie is, me and my friend could not stop making jokes during the movie, the darthvader guy who tries to get the girl got ran over not once but twice and the second time he got ran over it sounded like he said sh!# although he doesn't speak English lol. If you watch this movie you will think to yourself that all those other movies you didn't like you took for granted they are way better than this. This movie should be seen out of curiosity as well as what kind of movie DEFINES lame. The evil serpent encountered the girl so many times it was ridiculous, the evil serpent just roared and roared and let her get away every time. The evil serpent had so many chances it was like god was trying to say hurry up and eat the girl how many miracles do you want. The transition between scenes leaves you wondering did I miss something? So many plot holes from scene to scene. I was laughing like crazy when they decided to \"\"Escape To Mexico\"\" to get away from the serpent. Hmmmm hopping the border will save you from a serpent from Korea? interesting... very interesting.... I guess hopping the border solves all problems. Another scene that completely stupified me.. they met for the first time and had a romantic scene at the beach they kissed and didn't even know each other... the scene was so clichéd and the was no substance at least in other movies it might seem logical afterwhile but i mean they JUST MET even though they are reincarnations there feelings were like they instantly loved each other instead of it rather developing. Anyways this movie is worth watching for the sake of opening your eyes and seeing the light. Bad Hollywood movies will seem like heaven when compared to this. In the end its worth watching you wont get bored you will be occupied criticizing every moment, every scene in your head.\"\r\n0\tSeriously, I don't even know where to begin. It's like somebody gave a bazillion dollar budget to an autistic third-grader and said 'make me a movie about the secret service'. The editing is ridiculous, the cinematography was random at best, every single syllable of dialogue was completely retarded and the directing ... well, was there even a director there? Everything was just so pointless and lame and pointless...and random....and lame.<br /><br />Here's a SPOILER for you; this movie is the dumbest thing you'll ever see. <br /><br />However, if you liked this piece, you'll also enjoy; Deterrance, Dark Blue, and a partial frontal lobotomy.\r\n0\tThe premise, while not quite ludicrous, WAS definitely ridiculous. What SHOULD have occurred, by the second encounter with Tritter was that Tritter should simply be wasted. House hires some guy and de-physicalizes Tritter. In real life, Tritter would have been hauled up for harassment, the rectal thermometer episode would have been exposed in court, providing motive and opportunity and the hospitals lawyers would have made mincemeat out of Tritter and the particular department he worked for. He would be in prison as would anyone complicit in the harassment of House, Chase, Foreman, Cameron, Wilson and Cuddy. The lawsuit would have won House a tasty settlement, enough to keep him supplied with Vicadin well into his old age. While Tritter would wind up somewhere driving a cab, trying to rehabilitate himself by doing good for people for two years before people tumbled to the fact that they'd seen it all before.\r\n0\t\"Don't let the premise fool you--this was one funny movie. The problem--it wasn't supposed to be a comedy. The story sets you up nicely for an ending that never comes. Even worse, the set-up is NEVER explained. You will leave the theater asking \"\"Is that it?\"\" I rate it a 2 simply because there were a few brief moments of promise, but the finish leaves you completely flat. Nicholas Cage did as good a job as can be expected in the role, but he had very little to work with. There are odd quirks, and interesting turns everywhere, which had absolutely nothing to do with the movie. Let this one come out on video before wasting your money.\"\r\n0\tI don't get this. The movie obviously has a pretty good budget. It has very good cinematography. It has nice pacing, good editing and pretty good directing too. Then WHY OH WHY didn't they hire someone to do a final rewrite of the script so it would not be so damn cheesy and WHY OH WHY did they hire such lousy actors that can't act their way out of a paper bag? This movie could have been good. At most times it LOOKS good and FEELS good but in the end, you realize that the movie was no good at all.<br /><br />So I would say it's a good production but a bad movie. Too bad actually.<br /><br />And eels? Come one, really!\r\n0\t\"I could not even bring myself to watch this movie to the end. I cannot comment on the story as I did not watch the whole film and the reason I couldn't watch it was because of the 'actors'. Firstly, for the most part they just looked stiff and I'm sure their scripts were in their hands just out of frame - but that's a minor issue. The main issue I have with the actors isn't really their fault... it's whoever cast this film! Come on, this movie came out in 2003... I thought that casting people in their late twenties to play teenagers went out of fashion with new wave?! I cannot watch a movie where one of the first lines, from a grown man older than myself, is \"\"I'm 17!\"\" How can anyone take that seriously????? Don't fall victim to this movie, go out for a walk for 90 minutes and you'll get far more than this movie could ever give.\"\r\n1\tI can honestly say I never expected this movie to be good. I do not like family films. I am far from a fan of Shahid Kapoor. The director's last movie (MPKDH was complete stupidity. And the music was very boring and bland. But there was Amrita Rao, who has become my favorite after Main Hoon Na. There was also Seema Biswas, Alok Nath, and Anupam Kher who are very talented. So a few plus points.<br /><br />I finally saw the movie and I was very impressed. He brings us the young lovers of MPK with a pinch of the HAHK wedding, and we have a winner. The story outline is similar to HAHK, light hearted in the beginning to serious mode at the end. The director also made character that you could relate to. The thing I did not like about HAHK was that the characters were too eccentric. The casting adds to its perfection. Shahid Kapoor surprised me with a good performance. This is a major improvement, and most importantly he suits the role. The best is easily Amrita Rao. In fact, this is her best performance. Her screen presence is so electrifying, you are bound to love her performance. Sameer Soni, Amrutha Prakash, Anupam Kher, Alok Nath and Seema Biswas are terrifically cast. Not one actor feels out of place. <br /><br />The songs were quite disappointing but they will sound better after watching them. Mujhe Haq Hai and Do Anjaane Ajnabi are nice ballads. Milan Abhi Aada Adhura Hai is also nice in watching. The songs aren't colorful and dancey, and they are more like ballads. The exception is Hamari Shaadi Mein which is bound to remind you of HSSH and HAHK. So what was the flaw in the movie? The movie gets quite slow, and the ending is quite stretched. But the movie is still goes at a good pace, making it a perfect family film.\r\n1\tHickory Dickory Dock was a good Poirot mystery. I confess I have not read the book, despite being an avid Agatha Christie fan. The adaptation isn't without its problems, there were times when the humour, and there were valiant attempts to get it right, was a little overdone, and the events leading up to the final solution were rather rushed. I also thought there were some slow moments so some of the mystery felt padded. However, I loved how Hickory Dickory Dock was filmed, it had a very similar visual style to the brilliant ABC Murders, and it really set the atmosphere, what with the dark camera work and dark lighting. The darker moments were somewhat creepy, this was helped by one of the most haunting music scores in a Poirot adaptation, maybe not as disturbing as the one in One Two Buckle My Shoe, which gave me nightmares. The plot is complex, with all the essential ingredients, though not as convoluted as Buckle My Shoe,and in some way that is a good thing. The acting was very good, David Suchet is impeccable(I know I can't use this word forever but I can't think of a better word to describe his performance in the series) as Poirot, and Phillip Jackson and Pauline Moran do justice to their integral characters brilliantly. And the students had great personalities and well developed on the whole, particularly Damian Lewis as Leonard. All in all, solid mystery but doesn't rank along the best. 7.5/10 Bethany Cox\r\n1\tThis film has special effects which for it's time are very impressive. Some if it is easily explainable with the scenes played backwards but the overlay of moving images on an object on film is surprisingly well done given that this film was made more than 94 years ago.\r\n0\t\"A good idea, badly implemented. While that could summarize 99% of the SciFi channel's movies, it really applies here. I love movies where a good back story is slowly revealed, and I like action movies, and I like all of the main actors, so this could have been great. However, despite some good acting, this movie fails due to Bill Platt's bad writing and directing.<br /><br />Another review made the good point of needing to know where you're going so you can get there. This movie doesn't. It's put together in such a haphazard way that you know the words \"\"second draft\"\" are not in Bill Platt's vocabulary. There is one scene that is entirely unnecessary and could be removed without anyone noticing. This scene even begins and ends with them driving a car, so you could cut from one car scene to the other and never have missed the pointless scene in the middle.<br /><br />This movie also had a strange habit of under explaining some details while over explaining others, some to the point where you can guess the entire \"\"plot\"\" up front. It also had a habit of aborting a fight early, probably just because they couldn't afford it. There are also a few laughably bad scenes where the \"\"plot\"\" is revealed on a computer and the final battle involving conveniently placed \"\"toxic adhesive\"\" (seriously, what *is* that?).<br /><br />If you are a fan of Shiri Appleby, watch this movie because she's OK. She does manage to break out of her \"\"Roswell\"\" persona a few times and make for a good tough chick (but not always). John De Lancie plays the same character he plays in everything he's ever done since playing Q back in ST:TNG, so that's nothing new.<br /><br />In all, I gave this movie a 4/10 rating.\"\r\n1\t\"My friends and I were just discussing how frustrated we are with the way movies and especially romantic comedy's are being made. We feel offended by the schlock that Hollywood is serving up these days as they act like all is well.<br /><br />Well all is not well...with the exception of a few bright spots, like this movie. It doesn't have the big name actors, the big budget, I don't think it had a big release (I rented from Hollywood Video) it didn't really have anything that most big budget romantic comedy's have.<br /><br />But it did have what most of those lack. It had great chemistry between the love interests, \"\"Parker\"\" (Jonathan Schaech) and \"\"Sam\"\" (Alison Eastwood). Their love story wasn't forced on us like so many. The director took his time to allow these characters to truly get to know each other. Their story reminded me of one of my favorites, \"\"Tootsie\"\".<br /><br />The supporting cast added not only really funny comic moments, but depth to the story as well. James LeGros' character was absolutely priceless. Sam's gay friend was hysterical. Parker's interaction with his fellow employees in a Psychic Hotline was a lot of fun.<br /><br />I laughed, I cried, I remembered how great it feels to fall in love.\"\r\n1\t\"I did not have too much interest in watching The Flock.Andrew Lau co-directed the masterpiece trilogy of Infernal Affairs but he had been fired from The Flock and he had been replaced by an emergency director called Niels Mueller.I had the feeling that Lau had made a good film but it had not satisfied the study,so they fired him and hired another director.This usually does not work well (let's remember The Invasion).But The Flock resulted to be better than what I expected.It's not a great film but it's an interesting and entertaining thriller.The character development is very well done and I could know the characters very well.Also,the relationship between the two main characters is natural and credible.Richard Gere and Claire Danes bring competent performances.Now,let's go to the negative points.One element which really bothered me (there was a moment in which it irritated me) was the excess of edition tricks to give the movie more \"\"attitude\"\" and style.That tricks feel out of place and their presence is arbitrary.Plus,I think the film should have been more ambitious.In spite of that,I recommend The Flock as a good thriller.It's not memorable at all,but it's entertaining.\"\r\n1\t\"Shintarô Katsu, who played the blind swordsman \"\"Zatoichi\"\" in a total of 27 movies, ends the Hanzo trilogy with this excellent film in which he gets to make love to a ghost, Mako Midori (Blind Beast).<br /><br />The big stick, used often in the pursuit of justice, is retired forever.<br /><br />Katsu was his usual impudent self as he pursued those who would steal from the treasury to lend at usurious amounts to those who could not afford to pay.<br /><br />The usual amazing swordplay and skill of the big guy was present, along with the blood.<br /><br />I'm going to miss him.\"\r\n0\tI did not think this movie was worth anything bad script, bad acting except for Janine Turner, no fantasy, stupid plot, dumb-ass husband and unfair divorce settings. If you have never seen this movie before don't even bother it's not worth it at all. The only thing that was good about it was that Janine Turner, did a good job acting. Terry's husband is a stuck up smart-ass defense attorney who has won a lot of cases and even gotten guility murderers off. He think he is so smart but he is really just a nut. Her best friend has an affair with her husband and betrays her. Nice girl huh. Yeah she's a real peach, not. She's no day at the beach either.\r\n0\t*SPOILERS*<br /><br />I'm sure back when this was released in 1958 it was much appropriate for its time. Back then films were slower paced to allow audiences to follow and analyze the story. Here a man moves into a house owned by his last wife that died mysteriously with his new wife. The gardener Mickey (played by Alex Nicol, who also directed he film) really is an underappreciated character. He gets a skull to indirectly warn Jenni that she is in trouble, since he knew that there was foul play in the first wife's death. He can't tell Jenni directly what happened, so he tries to scare her off with the skull. Jenni, we also find out, saw her parents die, thus causing a lifetime of mental anguish that lead to institutionalization. Like many audiences today, I found the pacing to be a little too slow for my tastes. But if you like slow-paced horror without a lot of gore, this film is for you.<br /><br />\r\n1\t\"This film plays in the 60s and is about an Italian family: Romano, his wife Rosa and their two children Gigi and Giancarlo emigrate from Solino in Italy to Duisburg in the Ruhr area. I like this film, because I think it is quite realistic: it shows problems which many foreign families have when they come to another country: they have to get used to a new culture, a new environment and this can be difficult: especially if you don't know the language.... It is difficult for the family but they find a way: they open a restaurant which offers typical Italian food, and it is named \"\"Solino\"\", like their hometown. The film also shows different conflicts - Gigi and Giancarlo fall in love with the same girl, and although Rosa has to work very hard, Romano refuses to pay money to engage more workers, etc. etc. But stop, I don't want to tell you how it goes on. You should watch the film yourself, it's a nice one - I have also made a Referat about it and examined scenes which show different cultural attitudes. And there are a few...\"\r\n1\tThis is a must see for independant movie fans, but it also holds up well against mainstream movies. I think we have the makings of the next Woody Allen or<br /><br />Trentin Tarrentino here.<br /><br />The budget is painfully low. No special effects whatsoever, and they seemingly used ambient lighting (shot in digital video.) -And yet this movie grabs hold of you and never lets go. The screenplay is somewhat bizarre, yet the actors and director pull it off with complete realism. It has humor, it has intrigue, and it has pathos, and it all works together.<br /><br />No point in describing the details. If you want to see an independant<br /><br />masterpiece, a virtual lesson in how to make a low budget flick that really works, see this one.<br /><br />-Oh yeah, it's also REALLY entertaining.<br /><br />\r\n0\t\"Two qualifiers right up front: I actually think Joe Don Baker can be good or even great with the right material and the right director (the \"\"Cape Fear\"\" remake, a small role in \"\"Goldeneye\"\", \"\"Walking Tall\"\"). And I even liked Baker in \"\"Mitchell\"\", because he was playing an anti-hero who was SUPPOSED to be unlikeable. Yes, MST3K's coverage was hilarious, but they took a lot of cheap shots at Baker - that he didn't deserve - to keep things lively and entertaining - he was appropriate to the level and tone of the movie, and he was the best part of the movie.<br /><br />\"\"Final Justice\"\" seems to be more of the same, but in spite of the exotic locations and the \"\"cowboy frontier justice\"\" theme, it is quite a bit weaker than \"\"Mitchell\"\". And the main reason is that Baker's character, as written, is an idiot. The movie has the conceit that because Baker embodies old style frontier machismo, he challenges his opponents to old style mano-a-mano quick-draw contests. And because he's so tough and macho, he always wins, even when he's hurt, wounded, outnumbered, etc.<br /><br />That's a conceit with a lot of potential (it worked for Gary Cooper), even if it condemns the film to \"\"B\"\" movie status. But Baker is so frigging stupid and obsessive that he needlessly challenges three of the bad guy's henchman to a showdown in a public market, with civilians all over the place. He COULD have simply shadowed them to the chief bad guy's headquarters (which was why he was following them in the first place) and they never would have noticed. Or he could have gotten the drop on them and forced them to surrender, and gotten one of the henchmen to take him to headquarters at gun point. But no, he has to be a bush league hot dog and a macho blockhead, and so he gets a child taken as a hostage in the ensuing shootout! <br /><br />This is a guy we are supposed to admire? <br /><br />The whole movie is basically like this. Most of the supporting actors are somewhere between OK (the henchmen) to pretty good (the chief bad guy and his father, who are two well known European actors - they just go through the motions, but they are pros and even hamming it up they are decent). But through it all, Baker's character pulls silly , unproductive stunts and mistakes that get at least two relatively innocent people killed, plus a couple of bad guys who might have been taken alive without the use of deadly force.<br /><br />On the positive side, since 90% of the movie is set on Malta or in the Mediterranean, you get to see lots of pretty scenery and lots of nice and exotic looking extras. And really, Baker himself may be on the heavy side and slightly dyspeptic, but he isn't that bad...certainly not the tub o' lard that this films critics (including Mike and the Bots in their hilarious coverage) seem to think.<br /><br />In short, this movie is good for video wallpaper, but the viewer should not pay any attention to it.\"\r\n0\t\"Even though many people here praises this movie, I have to warn you. It has no logic whatsoever. I think that Basinger does a decent job at acting, but you can't make a thriller if there is a great lack of realism.<br /><br />This scene paints a good picture for you of the movie : while Basinger is pursued by murderous thugs she decides to sit down and gaze upon a picture she finds from her pocket. The picture is from her daughter and it reads \"\"we love you mommy\"\". Who does something like that ? What the eff? And believe me when I say that it is not nearly as stupid as some other scenes of the movie. Someone stated that this is a \"\"hidden gem\"\". Well, I have to strongly disagree, this movie has stayed hidden for a reason. And it's not a gem. Oh, and please, I don't even want to start commenting about the red toolbox. It hurts my brain :D Usually the lack of logic does not bother me if it is in small amounts, but this movie basically is made possible only because of the lack of logic. But, i still give it a 4 because even though it is embarrassingly flawed in logic, it has certain mood that kept me watching till the end.<br /><br />So if you choose to watch this, you know you have been warned.\"\r\n1\twhat can i say about this film that hasnt already been said? well to tell the truth alot of it looks very fake like some of the slaps and the kicks. how charlie sheen though this was real i dont know. im sure they would be hitting and kicking her alot harder if it was. however the scenes with the pinching and the hot oil look very real. and the final needle in the eye scene is amazingly done and is probibly the only thing on film that has ever shocked me.\r\n1\t\"Most yeti pictures are fatally undermined by a grave paucity of energy and enthusiasm. Not so this gloriously bent, batty and berserk over-the-top Italian-made shot-in-Canada kitsch gut-buster: It's a wildly ripe and vigorously moronic ghastly marvel which reaches a stunning apotheosis of righteously over-baked \"\"what the hell's going on?\"\" crackpot excess and inanity.<br /><br />A freighter ship crew discovers the body of a 30-foot yeti that resembles a hirsute 70's disco stud (complete with jumbo wavy afro) perfectly preserved in a large chunk of ice. They dethaw the beast, jolt him back to life with electric charges, grossly mistreat him, and keep the poor hairy Goliath in an enormous glass booth. Before you can say \"\"Hey, the filmmakers are obviously ripping off 'King Kong',\"\" our titanic abominable snowdude breaks free of his cage, grabs the first luscious nubile blonde Euro vixen (the gorgeous Pheonix Grant) he lays lustful eyes on, and storms away with his new lady love. The yeti gets recaptured and flown to Toronto to be showed off to a gawking audience. Of course, he breaks free again, nabs the vixen, and goes on the expected stomping around the city rampage.<br /><br />The sublimely stupid dialogue (sample line: \"\"Philosophy has no place in science, professor\"\"), cheesy (far from) special effects (the horrendous transparent blue screen work and cruddy Tonka toy miniatures are especially uproarious in their very jaw-dropping awfulness), clunky (mis)direction, and a heavy-handed script that even attempts a clumsily sincere \"\"Is the yeti a man or a beast?\"\" ethical debate all combine together to create one of the single most delightfully ridiculous giant monster flicks to ever roar its absurd way across the big screen. Better still, we also have a few funky offbeat touches to add extra shoddy spice to the already succulently schlocky cinematic brew: the vixen accidentally brushes against one of the yeti's nipples, which causes it to harden and elicits a big, leering grin of approval from the lecherous behemoth (!); the vixen nurses the yeti's wounded hand while he makes goo-goo eyes at her, the yeti smashes windows with his feet while climbing a towering office building, and the furry fellow even breaks a man's neck with his toes (!!). Overall, this singularly screwball and shamefully unheralded should-be camp classic stands tall as a remarkable monolith of infectiously asinine celluloid lunacy that's eminently worthy of a substantial hardcore underground cult following.\"\r\n1\t\"What a wonderful movie, eligible for so many labels it never gets: Science fiction, film-noir, with a script and dialog of high intelligence which assumes an educated, cultured audience.....the kind of English language movie only done in pre-1960 England (and shown only in USA art movie houses when it first arrived), and never, ever done in the USA.<br /><br />Main characters in The Man In The White Suit(1951) starring Sir Alec Guiness and Joan Greenwood routinely use polysyllabic, science reference words like \"\"polymer\"\" and discuss and explain concepts of chemistry like \"\"long chain molecules\"\" and then communicate the importance of these to the average man and the benefits science provides him.<br /><br />The Man In The White Suit (1951) is the opposite of the video-game explosion movies which now (2009) dominate world cinema, and certainly dominate major USA cinema.......it's a carefully acted, intelligently told story delivered by gifted and believable educated English actors (who play educated, accomplished people), and it's all done with comedy, charm, pathos, and sense of irony which ancient Greek dramatists would have approved of.<br /><br />Everybody should see this movie, and someday, somehow, some worthy filmmaker and his supporters should make another like it.<br /><br />It's wonderful.\"\r\n0\tIf you can believe it, *another* group of teens return to *another* lakeside cabin three years after *another* one of those fatal 'accidents' claimed one of their number. Low and behold, a psycho wearing a patterned hockey mask (a cheap papery one at that) turns up to waste them one by one. This mechanical 'Friday the 13th' knock off gained slight notoriety as one of the first digitally-shot features, but that's where the interesting facts end and all that remains is a predictable, amateur production with sub-par performances and a recurring boom-mic intrusion. A last-second twist does little to lift the spirits, and 'Memorial Day' is something best tossed in a lake and forgotten about. One for insane slasher collectors only.\r\n1\tIt's always difficult to put a stamp on any film as being 'the best,' whether of all time, a certain genre, or what have you, but I believe a strong argument could be made that in fact, Laputa is the greatest animated film ever made. It is in my mind the masterwork of Hayao Miyazaki, the most talented of Japan's animated directors, and it best captures his strengths as a director, storyteller, and designer, as well as encapsulating all of his favorite underlying themes. The version I'm reviewing is the 2003 American dub (I know, sacrilege for a hard-core anime fan to not watch it in its native language); there is at least one other English language dub out there, I have it on VHS (I have no idea from what source), and that version is the single best dub I have ever encountered of any film. But I thought it better to concentrate on the version people can actually find.<br /><br />Laputa tells the story of a boy named Pazu (voiced by James Van Der Beek here), who's growing up in a mining town when one day a young girl named Sheeta (Anna Paquin) literally drops from the sky. It seems she is being pursued by a sinister government agent, Colonel Muska (Mark Hamill), who is more interested in the magical crystal that hangs around her neck. To keep things lively, there's also a wickedly funny pirate gang after the crystal, led by the aging but still boisterous Dola (Cloris Leachman). The plot revolves around the crystal's ability to reveal the location of the fabled flying city of Laputa, a potential treasure trove of scientific knowledge and hidden treasure. It's all very much in keeping with a fairy-tale setting, but Miyazaki knows exactly how far to take the story, and the plot is peppered with 'gosh-wow' moments and threaded with his customary morality and warnings about abusing the power of nature.<br /><br />The design work on Laputa, nearly twenty years later, is still revolutionary. Flying machines of all sorts abound, utterly impossible but so meticulously designed that you instantly accept them without blinking. The world is set somewhere around the start of the twentieth century, with telegraphs and ancient motorcars alongside those wonderful impossible flying machines. But it is the city itself that is sheer brilliance in execution; Laputa is both the Garden of Eden and the Fire of Heaven itself, and in that juxtaposition lies its appeal, its power, and its danger.<br /><br />Besides being a thoughtfully designed and beautifully rendered film, Laputa is blessed with a wonderful sense of cinematography. From sweeping flying shots to high speed chases on tiny one-man flyers to ships submerging into the clouds as if they were water, Laputa displays a scope that most films  even with the magic of CGI  can only daydream about. Though we only see a small fraction of this world, its simple elegance extends beyond the borders of the frame and we have no trouble believing in it. The film also contains one of my favorite, if not the most exciting, action sequences ever: a guardian robot that fell to Earth is accidentally reactivated and wreaks havoc on the fortress it is kept in, all the while trying to protect Sheeta (who was the one who woke it up). Meanwhile, Pazu and the pirates swoop in on their little flying machines to snatch her, literally, from the jaws of destruction. From the horrific sight of the robot incinerating the countryside to the exhilarating last-second rescue, the entire sequence is a masterpiece of timing and camera angles and knowing exactly how far to take the audience.<br /><br />It helps that Laputa has an amazing score. Composer Joe Hisaishi captures the wondrous beauty of this world, the dewy innocence, the exciting action, and the creepy otherworldliness of the flying city and its bizarre robot guardians. Though he re-recorded it for this DVD release (which IMO is not an improvement over his original score), adding pieces here and there, the score matches the visuals perfectly, a rare total union of sound and vision.<br /><br />This isn't a bad dub. I'm inordinately fond of the older English dub, and this one over-explains things just a tad in spots, but I was almost shocked how closely these voices matched those (and those matched the Japanese pretty well). Dola in particular is hard to get right, but Leachman is spot on as the fiery old pirate woman (her sons aren't quite as good as the original). Paquin does a good job as Sheeta, and Mark Hamill, while I knew it was him early, is more than talented enough to do Muska (I liked the other English dub of Muska a little more, but Hamill's good). Much of the film rests on Pazu's shoulders, and Van Der Beek is wonderful. Listening to him made me think this crew must have had access to the other English dub, because VDB matches up very closely with the original Pazu. Although again watching a dub is grounds for excommunication among the otaku faithful, as much as I love this film, I don't think you're sacrificing a great deal simply watching this particular Anglicized version. John Lassiter of Pixar introduces it up front, and my suspicion is that he, like so many others, simply love this film so much that they tried very hard to ensure its high quality.<br /><br />Miyazaki has had success in America in recent years with Spirited Away and Mononoke (one of his few films I didn't care for), but to me Laputa is still his crowning achievement. Anyone familiar with his later work will almost certainly enjoy this earlier work, and again, this film is a master at the top of his form hitting on every cylinder. I'd pay big money to be able to see this on a large screen; while that will probably never happen, it's good to know that at least this classic has been preserved on DVD.\r\n1\t\"Who would have thought that a movie about a man who drives a couple hundreds of miles on his lawn mower to see his brother, could possibly be good cinema? I certainly didn't. I thought I knew what to expect: one of the most boring experiences of my life. Well I was as wrong as I haven't been wrong too often yet, because this is one of the best, most realistic and honest Hollywood films I've ever seen...<br /><br />Giving a short resume of \"\"The Straight Story\"\" isn't very difficult. It's about an old and stubborn man who steps on his lawn mower and drives off to another state to pay his brother a visit when he hears that the man has had a severe stroke. That's already special on itself, but what makes it even more special is the fact that he hasn't seen his brother in ten years because of some stupid argument. In the meantime he has his share of bad luck and problems, but he also meets a lot of people whose lives he influences in one way or another with his philosophical approach to life. Despite all the difficulties he drives on for weeks, not knowing if he will reach his goal: seeing his brother again before it's too late...<br /><br />I can easily understand why there are people who don't like this movie and that's also the reason why I will not say that these people don't have a heart or things like that... This movie hasn't got any flashy action scenes, it is as slow as the lawn mower the man is driving on and no, you don't have to watch it for the nice soundtrack either, because there isn't any. But why should you watch it then? Well, the simple answer is the story. I haven't seen such a touching movie with such a powerful story very often and the fact that this actually comes from Hollywood and - to make things even better - from the Disney Studio's (that's right, the same studios that overwhelm us with sugar sweet nonsense) makes it even more special. I'm not ashamed to admit that I had the tears in my eyes a couple of times while watching it, probably because the whole situation of not seeing someone for many years because of some stupid argument is all too realistic for me.<br /><br />Some people will argue that the story is very shallow, but I really don't agree with that. Perhaps it is because they only see that old man driving on his lawn mower and don't want to think any further. If you look close enough than you'll understand that this man is doing all this because he knows he has once been wrong, that only his pride stood in the way of seeing his brother again and that he wants everybody else to see that too, so they won't make the same mistake. If that isn't deep enough, how much deeper does a story have to go for you then? <br /><br />I would also like to add that this movie really had it all. Some beautiful landscapes (finally an American movie that shows something else than the skyline of New York, Chicago or some other big city), some very fine acting by Richard Farnsworth, Sissy Spacek,... and a very understandable way of telling despite the fact that this is a David Lynch movie. I know now that I was completely wrong by assuming that this movie wouldn't be to my taste. It's one of the very best movies I've seen in a long time. This movie aimed for my heart and hit the bull's eye. I give it the full 10/10.\"\r\n0\tYes, indeed, it could have been a good movie. A love biangle, (sorry for the poetical license, but is not a triangle!) an interesting story, unfortunately badly told. The image is sometimes weird, sometimes OK, the picture looks crowded and narrow-sighted. The sound needs more attention (it usually does in Romanian movies), the light and color filters are sometimes badly chosen. The soundtrack is short and is not helping the action. About the acting... sorry but the best actress is the landlady. The others are acting immaturely and cannot convince the viewer. The acting is poetical when it should be realistic, and realistic when it should be poetical. It's a picture for adults, told by the children. Bother only if extremely curious.\r\n0\t\"When I noticed that \"\"Hamish Macbeth\"\" was being broadcast in the United States, I was thrilled. I then had the misfortune to watch the darn thing. I adore M. C. Beaton's books about the wonderful Scottish Constable. The characters in the book are entertaining and very well-written. The powers that be who are responsible for this mish-mash apparently have never have read one of Beaton's books. Only the name \"\"Hamish Macbeth\"\" has anything to do with the series. Besides the lack of familiar characters, I find the whole show offensively loud. It seems that the actors feel they must shout their lines and scream at each other. If you love M. C. Beaton's adorable Hamish Macbeth don't waste your time on this rubbish.\"\r\n0\t\"Film critics of the world, I apologize. It is your job to give advice to the moviegoing public so that they can wisely choose what to spend money on. But I ignored your advice and I have been deeply hurt. However, my decision to see \"\"The Cat in the Hat\"\" wasn't made haphazardly. You see, three years ago all of you critics said that we should all avoid the \"\"calamity\"\" known as \"\"How the Grinch Stole Christmas\"\". Then some friends of mine took me to see it and it turned out to be a colorful, funny and almost hypnotic yuletide treat. So when the critics unleashed their fury against \"\"The Cat in the Hat\"\", another big budget Seuss update with a big name star in the title role, I thought that it must be the same old song. How wrong I was.<br /><br />For five whole minutes I thought I was in the clear. The opening credits are clever, the kids are charming and the production values are top notch. Then the cat showed up. There are many problems from this point on, but the biggest one was the woeful miscasting of Mike Myers. Where \"\"The Grinch\"\" was saved by the inspired casting of Jim Carrey, \"\"The Cat\"\" was destroyed by Myers. He can be very funny when his energies are applied where they belong, comic sketches. Every movie he's made that was truly funny was really just a feature length comedy sketch, from \"\"Wayne's World\"\" to \"\"Austin Powers\"\". So he tries to do the same thing here, it's just that these comedy sketches are more like the stuff that they stick at the end of SNL, not funny, just painful. Not that the writers helped him out any. After the charming prologue the movie turns into an hour of repulsive bodily humor gags, poorly timed pratfalls and insultingly stunted attempts at hip humor. This movie was the most disheartening cinematic experience I have ever had. Period. So much talent and work went into something so vile. I know that the adult stars of this movie will be relatively unscathed by this mess, I just hope that the wonderful Spencer Breslin and Dakota Fanning will get more chances to show their charms in far better movies. If you are a parent, please avoid this like the plague. With movies like \"\"Elf\"\" and \"\"Brother Bear\"\" currently in theaters, you have far better choices.\"\r\n0\t\"National Treasure is about as over-rated and over-hyped as they come. Nicholas Cage is in no way a believable action hero, and this film is no \"\"Indiana Jones\"\". People who have compared this movie to the Indian Jones classic trilogy have seriously fallen off their rocker.<br /><br />I can't really figure out what kind of target audience this film was shooting for. Maybe the pre-teen audience will like it, but I found it to be absolutely ludicrous. I also can't imagine adults or young adults to find this to be that great of a film. Simply put: it's just OK at best.<br /><br />National Treasure is unimagined and uninspired, borrowing what it does have from \"\"The Da Vinci Code\"\". I would recommend waiting for that movie to be released in 2006, and passing on this nonsense.<br /><br />The whole idea of being able to so easily steal the Declaration of Independence and run around all over Washington DC and Philadelphia with it (while never damaging it once), while fighting the \"\"bad guys\"\" and experiencing what is supposed to be \"\"non-stop action\"\" is absurd. I particularly loved the scene with the Declaration folded in its tube laying in the middle of a busy road while cars whiz by it without damaging it. Oh brother! <br /><br />Reminded me of that episode of the \"\"Brady Bunch\"\" where they go to the amusement park and Mr. Brady loses his architectural plans. Except, that episode of the Brady Bunch was much better than this whole film! <br /><br />The idea of such huge treasure that nobody believes exists being buried within a secret ruin of the US is outlandish. Literally, there are thousand of undiscovered \"\"priceless\"\" items in this treasure trove. Yeah right!! Ridiculous!! <br /><br />Even worse, the speed and accuracy of which Cage finds and figures out what are supposed to be \"\"tough\"\" clues to these ancient riddles are pre-posterous!!! Oh.. the humanity! <br /><br />The performances by Cage, Voight, and the other actors in \"\"National Treasure\"\" are as stiff ,wooden, and flat as they come. However, when you're working with such lousy dialogue, it's hard to fault the actor's 100% for that.<br /><br />National Treasure is an OK film to see once. I can't recommend it beyond that and would definitely NOT purchase this over the top, outlandish scavenger hunt of a mess.<br /><br />Rent it if you must see it first.......\"\r\n0\tI rented this movie on DVD. I knew that the movie wouldn't live up to what it promised me on the back of the case, but once I saw that Leatherface (Gunnar Hansen) was in it, I had to rent it. It starts off pretty good, with the premise being that snuff films are being aired over cable. However, the main character has nothing about her to make you feel sorry for her whatsoever, and the end of the movie really leaves you hanging. There are way too many unanswered questions. There was a great scene at the end that totally took me by surprise, but overall this is a very sub par movie, but I guess it was worth the $ 3.99 rental fee.\r\n0\tNOTHING in this movie is funny. I thought the premise, giving a human the libido of a randy ram, was interesting and should provide for some laughs. WRONG! There is simply nothing funny about the movie. For example, the main character making a pass at a goat in heat in the middle of a farmer's yard is not funny, it borders on obscenity. They are toying around with bestiality in this film on one level, and it just aint funny.<br /><br />We all know that dogs will eat anything, anywhere, anytime. The main character doing this with everything, everywhere, everytime is also not funny. It becomes a cliche.<br /><br />Rob Schneider is, I guess, acceptable in the role. By this, I mean that he's not a bad actor, but with rotten material it's difficult to comment on quality. However, Coleen Haskell, the other half of the HUMAN-romantic leads (does one count the number of animals that the main character has interest in as romantic leads too?), seems embarrassed by the whole thing, as well she should be. She seems to be acting in some kind of vacuum, detached from all the other actors in the movie. <br /><br />See this film only if you wish to be bored by tasteless, dull, repetitive material.\r\n1\tI don't give a movie or a show ten very often but this show touched a nerve in a way no other show has. I found the entire series on mysoju.com and thought the premise looked interesting so I took a look see. I wasn't disappointed in what I saw; I was moved. This story stays on the tender side as the main characters move us through the scenes. Sumire Iwaya, played thoughtfully by Koyuki, shows us human nature as she wants to keep troubles from being shown. No one really wants to lay their soul out in front of a perspective mate. So instead she substitutes a human, played by an adorable Matsumoto Jun, as a pet. This pet is like any other creature we would consider a pet. The difference; he can retaliate in the same way, after all Momo is a man, not a dog. As he is treated like a pet, he reacts to situations how a dog might react. She spends time with the new boyfriend, Momo gets jealous. It's when she realizes that her pet isn't just a pet that the sexual tension between the two starts to become thick - Momo is a dance prodigy. Her thinking slowly changes as we start to get a glance at his own thoughts. Matsumoto takes us from seeing a character who is very one dimensional in the beginning, to two dimensional when we see he's a dancer, to a three dimensional character when we see him start to fall for his master as a man, not as a dog. In my opinion, it's worth watching this story just to see this character develop. Plus Matsumoto plays Momo with such tenderness you almost start to wish you had one too. Neither wants to think about the future and how their relationship will change, but as Momo (the name she gives him as one would name their new puppy) states  we both knew this wasn't going to be able to last. Watch this show with a open mind, it's worth it.\r\n1\tI loved this movie since I was 7 and I saw it on the opening day. It was so touching and beautiful. I strongly recommend seeing for all. It's a movie to watch with your family by far.<br /><br />My MPAA rating: PG-13 for thematic elements, prolonged scenes of disastor, nudity/sexuality and some language.\r\n0\tIt was so terrible. It wasn't fun to watch at all. Even the scene where the girl is using a vibrator, even that's not fun to watch in this movie. I say again, the scene where a girl is masturbating with a vibrator is not even fun to watch. Or maybe if that was the only part of the movie that you watched, just girl on couch using a vibrator. Maybe they should have just released that one scene in theaters, maybe then the movie would be enjoyable on a certain level. My advice, fast forward to that point, watch it, rewind the movie, watch it again, rewind, repeat. Maybe you could enjoy yourself for 2 hours that way. This movie ranks alongside I spit on your grave and Doom generation in the category of worst movies that I have ever seen.\r\n1\tThis has to be one of the best comedies on the television at the moment. It takes the sugary-sweet idea of a show revolving around a close family and turns it into a quite realistic yet funny depiction of a typical family complete with sibling and parent spats, brat brothers, over-protective fathers and bimbo sisters. I'm almost surprised it's Disney!<br /><br />To its credit, '8 Simple Rules' knows it's a comedy and doesn't try to be more. Too many shows (eg, 'Sister, Sister' and 'Lizzie McGuire') think just because its lead characters are now teenagers then they should tackle social issues and end up losing their humour by being too hard-hitting. This is a trap '8 Simple Rules' has avoided; it does tackle some issues (such as being the school outcast) but it has fun while doing so. In fact the only time it has really been serious was understandably when it sensitively handled the tragic death of John Ritter and his character.<br /><br />And I think, although John Ritter will be sadly missed since he was the reason the show made its mark, '8 Simple Rules' can still do well if it remembers its humour and doesn't make Cate's father a second version of Paul Hennessy.\r\n0\t\"Maybe this isn't fair, because I only made it about halfway through the movie. One of the few movies I have actually not been able to watch due to lameness.<br /><br />The acting is terrible, the camera work is terrible, the plot is ridiculous and the whole movie is just unrealistic and cheesy. For example - during a coke deal, the coke is just kept loose in a briefcase - I'm no expert, but I think people generally put it in a bag.<br /><br />They use the same stupid sound effect whenever a punch is thrown (it's that over the top 'crunching' sound\"\" and they use toy guns with dubbed in sound effects.<br /><br />Worst movie ever.\"\r\n0\t\"\"\"Proximity\"\" tells of a convict (Lowe) who thinks the prison staff is out to kill him. This very ordinary film is an action/drama with a weak plot; stereotypical, poorly developed characters; and a one dimensional performance by Lowe. A forgettable film not worthy of further commentary.\"\r\n1\tI know this sounds odd coming from someone born almost 15 years after the show stopped airing, but I love this show. I don't know why, but I enjoy watching it. I love Adam the best. The only disappointing thing is that the only place I found to buy the seasons on DVD was in Germany, and that was only the first two seasons. That is disappointing, but that's OK. I'll keep looking online. If anyone has any tips on where to buy the second through 14th seasons, please email me at darkangel_1627@yahoo.com. I already own the first one. The only down side is that the DVDs being from Germany, they only play on my portable DVD player and my computer. Oh well. I still own it!\r\n0\tA truly muddled incomprehensible mess. Most things in the film look more or less like 1987, but then there are futuristic things just thrown in, like the policeman's ray gun. And that car! The director seemed to be in love with colored lights. The only really notable performance was the girl who played Valerie, but since there was no cast listing, I don't know which actress that was. This one is worth missing. Grade: F\r\n0\t\"This one hearkens back to the days of the matinée, when kids with nowhere else to hang out took their dates to the balcony after dumping their younger siblings below. It didn't matter what was on the screen - the little kids would sit through it and the big kids would ignore it. The adults, of course, would never see it.<br /><br />But they put it on video, anyway, along with most of the other creaky, low-budget \"\"B\"\" horror flicks of the golden age...of television. This film's inherent and unintentional humor is derived from stale ideology (the \"\"bad girls\"\" harvested to replace poor Jan's crushed body - they had it comin'), overused plot (a mad scientist, trying to play God), violent yet conscientious monster (whose presence in the heretofore-normal-seeming scientist's rural lab is never fully explained), and acting that polarizes at wooden or over-the-top.<br /><br />This is a great party film, assuming your guests enjoy adding dialog and commentary to otherwise abominable cinematic exploits. In fact, should you or your guests prefer more passive entertainment, this film is also available on video in its \"\"Mystery Science Theater 3000\"\" treatment, in which the host and puppets of the cult TV series make the necessary additions for you.\"\r\n1\t\"It is a great movie. i sow that some people think that this might not be based on a true story. No matter this !!, the movie is great, and all u can think is not why a balloon with a mermaid on it ends up flying in the mermaid town and so on, instead thinking that \"\"a little girl's wish came true\"\", and this means that all our peaceful dreams will come true if we trust in us, and do all in this world to make them true. The little girl (Desi - in the movie), and her mom, were the best actors i've been seen in a long time. Good for they, for all actors, all for the director. If someone can tell them this, please tell them, \"\"A 25 year guy from Romania says thank you for making this movie\"\".\"\r\n1\t`Stanley and Iris' is a heart warming film about two people who find each other and help one another overcome their problems in life. Stanley's life is difficult, because he never learned to read or write. Iris is a widower with two teenage children working in a bakery where she meets Stanley. She decides to teach Stanley how to read at her home in her spare time. Over time they become romantically involved. After Stanley learns to read, he goes off to a good job in Chicago, only to return to Iris and ask her to marry him.<br /><br />It's a really good film without nudity, violence, or profanity, that which is rare in today's films. A good film all round. <br /><br />\r\n0\t\"What a dreadful movie! For some reason, scientific laboratories and outposts always have a staff of grubby, dirty, mean-spirited, misanthropes living inside. These folks who presumably work together on complicated scientific projects cannot seem to agree on how to survive death at the hands of a CGI Dragon. Spoilers: An extra-nasty scientist whose main acting skill is \"\"leering\"\" and \"\"the sinister stare\"\" has cloned a Dragon. While the lab was supposed to work on this kind of thing, the other scientists are shocked, because apparently they were all way behind in their experiments and got caught with their pants down. The rest of the story is like THE THING, or Ten Little Indians, where the staff is hunted and killed off as they try to formulate a way to escape and/or defeat the \"\"Dragon.\"\" The CGI Dragon creature is dark gray, which seems to be the popular color for most of the cheap CGI special effects. It hardly looks better than a cartoon, and the dark gray tones make it difficult to see any interesting details in the body of the Dragon. All it looks like is a gray blob. The acting is less than horrible. These scientists act like a bunch of children who cannot agree on anything, and this makes it easier for the Dragon to kill them off in various attempts to escape, hide, etc. Dean Cain is hardly better than any of the cast of unknown actors in this movie. He seems to sink to the level of his supporting cast. This movie is really, really atrocious. The acting is bad. The story is dumb. The CGI is very very cheap and amateurish. There is nothing commendable about this movie, it is not even a good time-killer to glance at while doing chores or other work.\"\r\n1\tTo quote Flik, that was my reaction exactly: Wow...you're perfect! This is the best movie! I think I can even say it's become my favorite movie ever, even. Wow. I tell you what, wow.\r\n1\t24 has got to be the best spy/adventure series TV had ever aired. The whole idea of telling a story in a 24 hour real time period is dazzling. The style of filming and pacing is what hooks us to watch it. And Jack Bauer is one of the greatest protagonists in a TV series in a long time. I rate this, along with The Simpsons and The X-Files, my three most favorite TV series.<br /><br />This first episode begins with the conspiracy to assassinate US Senator David Palmer who is also running for president. Bauer is called to his office in order to discover who is behind all this and, at the same time, figure his daughter's path to the unkwown after fleeing from her bedroom. Thus, begins an adventure on the best political style and, what's best of it, is that it always takes place in real time, which makes this TV series a real work of originality in a time where almost every program on TV seems to be showing us the same things over and over and over.\r\n0\t\"It's hard to say what was the worst thing about this show: the bad acting, poor acoustics of different portions, bad CGI, improper sets for the period, the poor script. It would have been nice if the script followed the original tale a bit closer -- there's enough tension and good material in Beowulf to provide a great deal of good material, and a better story line, than the scriptwriters could come up with.<br /><br />And why introduce a strange new weapon like a crossbow that fires explosive bolts?<br /><br />I see that this movie was made in \"\"only\"\" 21 days. It shows in the lack of quality. I'm beginning to think this is general (poor) attitude taken by Sci-Fi channel (and others) when it comes to making movies out of classic tales in the past few years.<br /><br />What a waste!\"\r\n1\t\"Cor blimey. This film really surprised me as it is a comedy masterpiece. Billy Zane is stunning as the central character, and everyone manages to play it straight enough for the comedy to be natural and easy.<br /><br />The soundtrack is really good, and the set pieces are a joy to behold. I recommend that you watch this film with a bunch of mates, a few bottles of your liquor of choice, and prepare to be astonished and highly entertained.<br /><br />This carries on so perfectly from kitsch masterpieces like Plan 9 From Outer Space that it is in the true \"\"B\"\" movie tradition. But what makes it more than that is the caliber of the people who took part in the film. Ron Pearlman for example. I still find my self giggling at the scene where Zane prances down a set of steps for no apparent reason in an almost ballet style. All a bit mad, and all the better for it.\"\r\n0\tMy kid makes better videos than this! I feel ripped off of the $4.00 spent renting this thing! There is no date on the video case, apparently designed by Wellspring; and, what's even worse, there's no production date for the original film listed anywhere in the movie! The only date given is 2002, leading an unsuspecting renter to believe he's getting a recent film.<br /><br />This movie was so bad from a standpoint of being outdated and irrelevant for any time period but precisely when it was made, that I'm amazed that anyone would take the time and expense to market it as a video. It might be of interest to students studying the counter-culture of the 1960's, the anti-war, anti-establishment, tune-in, turn-on and drop out culture; but when you read the back of the video case, there's no hint that that is what you're getting. If you do make the mistake of renting it though, it is probably best viewed while on drugs, so that your mind will more closely match the wavelength of the minds of the directors, Fassbinder and Fengler. Regardless of your state of mind while watching it, I can tell you that it doesn't get any better after the first scene; so, knowing that, I'm sure you'll be fast asleep long before the end.\r\n0\t\"The summary provided by my cable TV guide made it sound a lot more interesting than it actually is. \"\"Slaughterhouse Rock\"\" is by far the worst horror film that I have ever seen, a title previously held by \"\"Urban Legends: Final Cut\"\". From its opening scene I could tell it's going to be really bad, but I was so bored that I couldn't care less. This film contains laughable acting, especially by the guy who's tormented in his dreams, incredible as in not credible plot twists, and some of the crappiest music I've heard, and I'm living in a period when the likes of Britney Spears and Nsync dominate the air waves. The biggest problem with \"\"Slaughterhouse Rock\"\" is that it's not funny. One would a film as dull and boring and so NOT scary as this would try to spice things up a bit with a few funny one-liners here and there, but no. We have Tormented Guy's self-centered friend trying to be funny, but came across as annoying instead. (spoiler) And please, do tell me, who in this crazy world is insane and self-loathing enough to visit a creepy jail in the middle of the night? No one! If you're going to make a horror movie, at least make it believable. This one is anything but.\"\r\n1\tI do not expect this film to be well understood by viewers out of Romania. This tells something certainly about the value, or maybe about the lack of universality of the film, but also tells something about how different history and even life of common people was in Romania compared to other countries, even in Eastern Europe.<br /><br />The film is an adaptation of a novel by Marin Preda, a controversial novelist who died during the Communist rule soon after the book was published. It tells the story of an intellectual, professor of philosophy whose life is crushed after he is imprisoned on false accusations at the end of the Stalinist era. Basically the first part of the film tells the story of his fight for survival in prison, the second describes his tentative to regain his life after being released. His release is actually only apparent, Romania of the 60s asks from him different types of compromises and crimes, but yet his fight for survival is as tough morally as in prison.<br /><br />The film is splendidly acted by some of the best Romanian actors. Stefan Iordache who has the lead role would be in another time and another place a mega-star, we can get here a good glimpse of his fabulous acting art. Although suffering from a hesitant story-telling and falling sometimes in non-essential details or character comics, the film is still an important landmark for the Romanian cinema, as well as for the process of recovering the moral and historic values in the Romanian society.\r\n0\t\"Unbelievably awful film. I watched part of this on T.V. recently. My jaw dropped as I watched a horrendously conceived plot and listened to mind-numbing drivel. Not a single line from the master of one-liners could come close to producing anything resembling a chuckle. It was so bad it made me want to exhume Rodney Dangerfield's body, slap him around and scream, \"\"How could you?\"\" I know many films are done in haste, hoping to cash in on the popularity of a given actor or theme. But please, Hollywood, show a little respect for your audience. It's sad and scary that people were expected to pay to see such tripe. The bottom of the cesspool, even by Sunday afternoon television standards.\"\r\n1\tHaving just seen the A Perfect Spy mini series in one go, one can do nothing but doff one's hat - a pure masterpiece, which compared to the other Le Carré minis about Smiley, has quite different qualities.<br /><br />In the minis about Smiley, it is Alex Guiness, as Smiley, who steals the show - the rest of the actors just support him, one can say.<br /><br />Here it is ensemble and story that's important, as the lead actor, played excellently by Peter Egan in the final episodes, isn't charismatic at all. <br /><br />Egan just plays a guy called Magnus Pym, who by lying, being devious and telling people what they like to hear, is very well liked by everyone, big and small. The only one who seems to understand his inner self is Alex, his Czech handler.<br /><br />Never have the machinery behind a spy, and/or traitor, been told better! After having followed his life from a very young age we fully understand what it is that makes it possible to turn him into a traitor. His ability to lie and fake everything is what makes him into 'a perfect spy', as his Czech handler calls him. <br /><br />And, by following his life, we fully understand how difficult it is to get back to the straight and narrow path, once you've veered off it. He trundles on, even if he never get anything economic out of it, except promotion by his MI5 spy masters. Everyone's happy, as long as the flow of faked information continues! <br /><br />Magnus's father, played wonderfully by Ray McAnally, is a no-good con-man, who always dreams up schemes to con people out of their money. In later years it is his son who has to bail him out, again and again. But by the example set by his dad and uncle, who takes over as guardian when his father goes to prison, and his mom is sent off to an asylum, Magnus quickly learns early that lying is the way of surviving, not telling the truth. At first he overdoes it a bit, but quickly learn to tell the right lies, and to be constant, not changing the stories from time to time that he tell those who want to listen about himself and his dad.<br /><br />His Czech handler Alex, expertly played by Rüdiger Weigang, creates, with the help of Magnus, a network of non-existing informants, which supplies the British MI5 with fake information for years, and years, just as the British did with the German spies that were active in the UK before and during the war - they kept on sending fake information to Das Vaterland long after the agents themselves had been turned, liquidated or simply been replaced by MI5 men.<br /><br />The young lads who play Magnus in younger years does it wonderfully, and most of them are more charismatic than the older, little more cynic, and tired, Pym, played by Egan. But you buy the difference easily, as that is often the way we change through life, from enthusiasm to sorrow, or indifference.<br /><br />Indeed well worth the money!\r\n0\tI saw this by chance showing on cable on wanted to like it as I thought Sandra was quite funny from what I remembered. The only facial movement I had throughout the movie was jaw dropping stunned at how awful a movie I just suffered through.<br /><br />The person who said this is one of the funniest movies of all time please point out one line, just one scene, that is even worth a chuckle.<br /><br />She is a much better singer than I remember her to be, but I didn't want to watch a lounge act.<br /><br />I think this is a movie try hard to like since they think they should and don't view it objectively.\r\n1\t\"hello. i just watched this movie earlier today for the 14th time in 3 days. i am a history teacher that has wayyyyy too much time on my hands. i need a life. i found the movie containing a striking resemblance to broke back mountain. i also found that i look a lot like jean Lafitte if he were white. also, my favorite line in the entire movie was from Mr. Petey--\"\"this baby can shoot a chipmunk's eye from 300 yards!!\"\" oh, and my favorite scene in the movie was when the British were coming in, and the one drummer who was so devoted to his work, and he drummed till the death, as if that drum would end the war altogether....but it wouldn't. well, thats all i would like to say about this movie. OH, one more thing..bonnie brown is an insane physco bipolar mood swinging BEEYOTCH. that is all.\"\r\n0\tThis movie is by far the worst movie ever made. If you have to create a film costarring the guy who plays Lars in heavyweights than don't make the damn film. I have to say that I could watch Leprechaun in Space 6 times before I could watch the trailer for this POS of a movie. Adam sandler should be restricted from any movie after this disgrace. Watching this movie is like a mix of listening to Cher and willingly putting your dick in a blender. Anyone with half of a brain cell will realize that this movie is not worth a dime. If I had an extra dollar and had to spend it, I'd give it to the support Lorraina Bobbitt foundation before buying this movie.\r\n1\t\"This is actually one of my favorite films, I would recommend that EVERYONE watches it. There is some great acting in it and it shows that not all \"\"good\"\" films are American....\"\r\n1\t\"I was not expecting the powerful filmmaking experience of \"\"Girlfight\"\". It's an Indie; low-budget, no big-name actors, freshman director. I had heard it was good, but not this good.<br /><br />Placed in a contemporary, ethnic, working-class Brooklyn, Karyn Kusama has done an extraordinary job of capturing the day-do-day struggles of urban Latinos. Diana, the protagonist, is seething with anger and lashes out at her high school peers, getting in trouble with the school and her friends. She is being raised by her single father, who appears to love her and her brother, but applies a strict, sex-based double standard on his children. The father's double standard is illustrated by the fact that Tiny, the brother, is taking boxing lessons at the local gym, but Diana is denied similar pursuits. On an errand to the gym to meet Tiny, Diana is captivated by boxing. Tiny doesn't like boxing, so he and Diana trade places; he gets the money from Dad then gives it to Diana to take the lessons in his place.<br /><br />This is actually a feel-good movie, as Diana grows and learns about herself through boxing, meets a guy, and addresses some very serious issues head-on. There's no giggly, 'everything that can go right does go right' resolution a la \"\"Bend It Like Beckham\"\". The reality and attendant personal issues are too big for pat resolutions, but in my opinion, \"\"Girlfight\"\" is a better and more satisfying film for it.\"\r\n1\t'The Luzhin Defence' is a movie worthy of anyone's time. it is a brooding, intense film, and kept my attention the entire time. John Turturro is absolutely stunning in his portrayal of a tender, eccentric chess Grandmaster, and Emily Watson is spell-binding as the gentle but rebellious daughter of a highly respected Russian family. The chemistry between Watson and Turturro on screen is obvious from the moment their characters meet in the story. All in all, this movie is one of the best in-depth looks at the life of a chess Grandmaster, and Turturro and Watson add a whole non-mainstream, non-cliche feel to the film. Most people will come out of the theater thinking, and feeling somewhat touched by this brilliant look at the most unlikely of love stories.\r\n0\tThe Earth is destined to be no more thanks to Father Pergado and a bunch of Nuns. Christopher Lee (who has since said that he was duped in to appearing in this by his producers who told him loads of great actors were involved) is Father Pergado and gets to do his usual serious and scary routine. The cast are not too bad, though most have now retired from acting. The film has terrible sound effects (mainly created from pressing keys on an old computer it seems) and it ridiculously pondering at times - showing a scene of the sky, for instance, for what feels like hours at a time. Despite this the story is pretty humorous in a world-is-doomed sort of way and the production is adequate. Interestingly one scene features Albert Band and wife Jackie; Meda Band; Writer Frank Ray Perilli and Charles Band's assistant Bennah Burton. Despite its plodding nature I genuinely wanted to see how it all worked out and thus quite liked it.\r\n0\tI sat through almost one episode of this series and just couldn't take anymore. It felt as though I'd watched dozens of episodes already, and then it hit me.....There's nothing new here! I've heard that joke on Seinfeld, I saw someone fall like that on friends, an episode of Happy Days had almost the same storyline, ect. None of the actors are interesting here either! Some were good on other shows (not here), and others are new to a profession they should have never entered. Avoid this stinker!\r\n0\t\"This film is probably the worst film that I have ever seen. I'm studying french at college and thus understood all the dialog, so the language barrier wasn't an issue. I must say it is really hard to empathize with any of the characters depicted in the movie. There is only one professional actor in the cast and I'm guessing no professional directors or writers.<br /><br />Although I have rated it 1 out of 10 it probably doesn't merit such a poor rating. This is merely a futile effort of lowering its current overall rating of 7.3 to something more realistic. Perhaps 4.3 would be a more accurate rating because the film is a true non-event 100 minutes or so in length that you will never get back.<br /><br />The real shame is that I am sure some college student is busting his nut making a film twice as good and half the length. However if you want to join the bandwagon which seems to be rolling around IMDb you might as well go ahead give \"\"Lost in Translation\"\" a 10 as well.\"\r\n0\tI loved this movie, I'll admit it. This has to be the best (straight to?) video movie I've seen. Well... me and my friend decided just for shits n' giggles that we'd rent this movie. We knew what to expect and we got exactly what we expected, plus more. When that red neck gets slammed up against the tree by the Sasquatch, we literally watched that part about three to four times, it was that amazing (hysterically, of course). And why? Oh why does the main character have to roll that much? Like honestly, we know that you're in danger, rolling that much isn't gonna help all that much. But really, if this movie is in you're local video store RENT IT. It is worth the money and it's not even that bad, like it's bad, but not incredibly bad. Overall, complete amazing will be in store for you if you rent this movie.\r\n0\t\"War, Inc. - Corporations take over war in the future and use a lone assassin Brand Hauser (John Cusack) to do their wet-work against rival CEOs. A dark comedy satirizing the military and corporations alike. It was often difficult to figure out what exactly was going on. I kept waiting for things to make sense. There's no reason or method to the madness.<br /><br />It's considered by Cusack to be the \"\"spiritual successor\"\" to Grosse Point Blank. I.e., War is more or less a knock-off. We again see Cusack as an assassin protecting *spoiler* the person he's supposed to kill as he grips with his conscience. To be fair, John Cusack looks kind of credible taking out half a dozen guys with relative ease. The brief fights look good. The rest of the film does not. It's all quirky often bordering on bizarre. War Inc's not funny enough to be a parody, and too buoyant for anyone to even think about whatever the film's message might be, which I suppose might be the heartless ways that corporations, like war factions compete and scheme without a drop of consideration given to how they affect average citizens. Interesting, but the satire just doesn't work because it's not funny and at its heart the film has no heart. We're supposed to give a damn about how war affects Cusack's shell of a character rather than the millions of lives torn apart by war.<br /><br />John Cusack gives a decent performance. His character chugs shots of hot sauce and drives the tiniest private plane but quirks are meant to replace character traits. Marisa Tomei is slumming as the romantic sidekick journalist. There really isn't a lot of chemistry between them. Hilary Duff tries a Russian accent and doesn't make a fool of herself. Joan Cusack just screams and whines and wigs out. Blech. Ben Kingsley might have to return the Oscar if he doesn't start doling out a decent performance now and again. Pathetic.<br /><br />It's not a terrible movie, but in the end you gotta ask \"\"War, what is it good for?\"\" Absolutely nothing. C-\"\r\n1\tBarman directed Any Way the Wind Blows as he would sing a dEUS song. Anarchy rules over a logical and common strain of thoughts. The story behind this movie just goes any which way the wind blows. And that can truly be refreshing to watch, if you are prepared and willing that is. Viewers who state that there is nothing to keep the story-lines together are right. Who the hell is that Windman anyway? Still, I really enjoyed this movie. Antwerp is a beautiful, bustling, happening place and Any Way captures that feeling. It also captures the silliness, the racism, the bureaucracy, the addictions and the violence that survives undetected in a seemingly friendly city. The movie is entertaining, funny and a little shallow. Barman's screen debut will not make as heavy an impact as his music debut. In that light some might be disappointed. But then again, 'Worst Case Scenario' would be a subtle subtitle for Any Way the Wind Blows.\r\n0\t\"***THIS POST CONTAINS SPOILER(S)*** <br /><br />I'm not a big fan of Chuck Norris as an actor, but I worship him in all other ways. He also have his own fan web site with \"\"Chuck Norris facts\"\" that is really entertaining. But this movie looks like someone was joking with the audience putting all those \"\"facts\"\" into one movie. I really don't remember when I wasted my time more than with this \"\"action\"\". I don't know what's the worst this movie can offer you: unoriginal and thousand-times-made plot of terrorists who are trying to nuke US by smuggling nuke on US soil or perhaps that \"\"great\"\" dialogs and Chucks words of wisdom about life and everything else. Someone may find the worst that terrorists actually speak English in everyday life. It's a never ending list of crap. Not to mention huge amount of archive footage used in film, that is kinda annoying. The chief terrorist send his comrades message through the media when he is captured and the only guy smart enough to see the treat is: Chuck Norris, of course. NO ONE else in America is not smart enough to see that! And the whole action in capturing chief is just ridiculous. One man is sent to walk through a whole terrorist camp UNARMED (I'm lying, he had a KNIFE), escapes his stalkers with JET PACK and then para glides for few hundred, maybe even thousand kilometers to nearest shore (Afganistan border is 450 km far away from nearest shore), where he is rescued by submarine. I hoped that at least fighting scenes will be good, but that's even more funny than the plot. If you didn't know, 85% of terrorist are masters of some martial art, but Chuck and CO beat the sh*t out of them. Not only they kill them easily, they can kick and throw them away by a single move and the bad guys fly few meters like dolls. You may ask me did I watch this movie to the end? I did. Why? Because I just wanted to see who, of these two super heroes, will defuse the nuclear bomb of few hundred megatons and size of a MICROWAVE. And then I realized what fool I am. Of course, it's Chuck's movie after all. And not only he singlehandedly defuse nuke with tweezers, but he do it - TWICE!! I could write a book about all the stupid things in this movie, but I would spend my life spawn.<br /><br />So, makers of this movie made another Chuck Norris fact to be added on his web site: Can Chuck Norris defuse nuclear bomb? Yes and he can do it twice!\"\r\n0\tWhere can I begin. I heard this movie was coming out and I was very mad. I am a huge fan of the original Carlito's Way and when I heard about this, I thought it would be just like almost all the other sequels that come out in Hollywood. I thought it would be bad. Boy was I wrong, this movie was much worse than I expected. Not saying all sequels are bad, but thats the problem with Hollywood these days, they make too many sequels and remakes and rush them. This was not a theater release, it is a DVD release. Still, in my opinion, there was no reason at all for this to be made. After I heard about this film was in progress, I then later heard Pacino was not in it. That right away killed any chance this movie had of being good. Why did I check this movie out then some of you may ask? Well I had the opportunity to see it so I did. I don't only watch movies that I have high expectations of, I had low expectations on this one obviously. I just wanted to see if it would have anything relevant in it. Now, if any of you reading this are a Carlito's Way fan, you know a lot of the story in the first one has to do with him going to jail.<br /><br />*VERY MINOR SPOILER* I wont ruin anything, because this may actually make you not want to waste 2 hours watching this trash. All I will say is- in the end of Carlito's Way 2, we don't see Carlito go to jail. Now, I don't know about any of you, but I would have thought a prequel to Carlitos Way would show how he ended up in jail. I even had some interest in actually seeing what happened.<br /><br />Now, thats not my only problem with the film. The actor who played Carlito did not do too bad a job, but he could not have saved this film if he tried. There's not even all those little things that should be thrown in there that Carlito's Way fans would like. You don't see any appearance of Kleinfeld or other key characters in the first one, I would have liked to see something like that. What is even worse, is Luis Guzman is in this film, yet he doesn't play the same character he plays in the first film. Big mistake on their part, why cast the same actor for a different character, it made the movie worse than it already was.<br /><br />Bottom line, I am a Carlito's Way fan, this new straight to DVD release is a disgrace. If you are a fan, don't watch this movie coming in with high expectations. This movie did basically nothing for me, and it is definitely one movie I wont be picking up on DVD, or watching ever again.\r\n1\tANTWONE FISHER is the story of a young emotionally troubled U.S. Navy seaman. His problems lead him to Jerome Davenport, a psychiatrist who helps him realize that his troubles stem from his childhood upbringing. <br /><br />Get ready to shed a tear or two. The movie could thaw the coldest heart. I loved the story, which turns from something so very awful to happen to anyone into a positive ending. ANTWONE FISHER is a powerful movie, most importantly about forgiveness. Other important issues that get you thinking are child abuse, adoption, and foster care.<br /><br />Oscar winner, Denzel Washington does an impressive job in his directorial debut. There were many scenes which I enjoyed watching. They included the beginning (dreams of a little boy  check out the gigantic-sized pancakes!) and the ending (dreams turned into reality), which beautifully tied the story together. <br /><br />Another wonderful scene occurred when the doctor encouraged Antwone to search for his family to find answers to his questions about his family that abandoned him. <br /><br />My favorite scene happened when the young man finally confronted his mother and her reaction towards him. Priceless.<br /><br />All the actors represented their parts well. <br /><br />In addition to directorial responsibilities, Mr. Washington continues to show why he won an Oscar award and is successful in all his acting roles. He had a strong presence in this movie.<br /><br />Actor, Derek Luke demonstrated why he was so right for the part of Antwone Fisher. He portrayed very real and heart-tugging work.<br /><br />Joy Bryant who played the part of Cheryl, Antwone's love interest, resembled a ray of sunshine on the screen. The chemistry flowed well between the romantic characters.<br /><br />Novella Nelson who played the part of Mrs. Tate, a despicable character, deserves special mention.<br /><br />Although we only see her for a few minutes, the actress who played Fisher's mother gave an outstanding performance.<br /><br />Everyone should see ANTWONE FISHER.\r\n0\t\"The third installment of the \"\"Carnosaur\"\" trilogy features a bunch of Keystone Kops-quality military commandos trying to kill two Velociraptors and a T-Rex. I give it a 4 out of sheer sympathy and my affinity for dinosaurs. The movie is definitely the worst of the trilogy, it really can't be taken seriously. More significantly, however, watching this movie I can't help but notice some interesting parallels between the \"\"Carnosaur\"\" and \"\"Xtro\"\" trilogies. The first installment in both franchises is a dark, disturbing film that has become a cult classic, the second is an \"\"Alien\"\" ripoff, and the third is a tongue-in-cheek, almost slapstick (whether intentional or not) movie that has you rolling on the floor laughing. Also, like the \"\"Xtro\"\" franchise, all the \"\"Carnosaur\"\" movies are completely unrelated to one another. They they only carry the franchise name to drum up interest in the \"\"sequels,\"\" I guess. Obviously \"\"Carnosaur\"\" and \"\"Xtro\"\" have two different production groups at work here, but if you've seen all three movies of both franchises you find yourself referring back and forth between the two.\"\r\n0\tI can't understand why so many peoples praised this show. Twin peaks is one of the most boring titles I have ever seen in my life.<br /><br />Now I have seen all season 1 episodes, and seeing season 2 episode 1. Simply I can't take this show anymore.<br /><br />1) Where is the proper induction in criminal investigation?<br /><br />In season 1, there was a scene that agent Cooper throws stones to a bottle. Can you guess why he did that? He just want to identify murderer by doing this 'joke' while mentioning supernatural ability given by Tibet dream. Wow!!!<br /><br />2) There are too many unnecessary scenes in this show.<br /><br />For example, season 2 started with a 'funny' scene that a dumb old man serves agent Cooper with a cup of milk while Cooper are laying down on the floor.( He got the gun shoots in his belly already. ) This old man is doing nothing but saying some dumb comments. That's all.<br /><br />This scene is really boring and even long ( 3 min 30 sec.... It's like Hell. )<br /><br />I would read some comic books rather than see this show anymore.\r\n0\tThis film fails to capture any of the mystery and intrigue that the book offers. The main point of the book, the insights, are hardly even touched upon, leaving the viewer wondering exactly why everyone is making such a big deal about them and why they are willing to risk their lives.<br /><br />The character development is not good at all. No background or personal development leaves the audience not really caring at all about what happens to them, and so the action sequences fall flat.<br /><br />The search for the manuscripts ends abruptly, and with no real explanation, not leaving any sense of satisfaction as to what the whole search was for.<br /><br />This is one of the worst adaptations of a book I have ever seen. It is horrible and a waste of time. If you have not read the book, skip the movie and read it. If you have read the book, skip the movie and reread it.<br /><br />It is almost as if the point of making the movie was to discredit the book, that is how poorly done and ridiculous this movie is. It is a shame too, because it could have been good had they capitalized on it at the height of its success and they probably would have been able to get a good screenwriter and some good actors.<br /><br />Please don't waste your time, READ THE BOOK!!!\r\n1\tI like this movie much, it's special type of humor by Ondricek and Machacek... I think it's better then Samotari (Loners).. Maybe it's difficult to understand when you are not Czech. If you are not watching that movie, just enjoy it, don't mind about anything else.. just relax !!\r\n0\t\"Please, help the economy - spend your money elsewhere! The synopsis of the movie is: the First Lady has her husband assassinated because he was cheating on her. That's it. Undetected by anyone, except Cuba and Angie, she designs and implements a vast assassination conspiracy which no one knows about...and gets away completely free.<br /><br />Some specific points are particularly hilarious: While standing in front of the president, Cuba a deflects the assassin's bullet...which then enters the back of the president's head.<br /><br />Cuba and Angie watch film from a news camera, and they see...a clue. They go to great lengths to protect the film, believing that they are the only people that have a copy of this very public film.<br /><br />Cuba speaks with a presidential staff member. The PSM comments that there was no conspiracy. Cuba claims there was more than one person involved. The PSM then rants that the conspiracy includes the FBI, the CIA, and the NSA. Gosh, I wonder is the PSM is involved.<br /><br />Ms Archer, the First Lady, is a craptacular artist. Cuba can't make out a painting, and she says, \"\"You're too close...stand back...look from a different perspective, look from my perspective.\"\" Can anyone miss THAT clue?\"\r\n1\tMy comment is limited generally to the first season, 1959-60.<br /><br />This superb series was one of the first to be televised in color, and it was highly influential in persuading Americans that they had to buy a color television set, which was about $800 in 1959, the equivalent of more than $3,000 today. How many of us would pay that much for the privilege of watching a show transmitted by a cathode ray picture tube on a 17-inch screen? I was eleven when the series began, and I watched it from the beginning.<br /><br />Watching it now, 50 years later, several things come to mind. First, many of the story lines involve the Comstock Lode and the heyday of silver mining, which dates to 1859. For 1859, the weapons and clothes are, for the most part, not authentic. (The haircuts are left out of the discussion.) That's basically a nitpick.<br /><br />And, it would have been impossible for Ben to have arrived in the Lake Tahoe area in 1839 and to have amassed a 100-square mile ranch in the next twenty years. Pioneers were still trying to solve the Sierra Nevada problem as late as 1847, and the Gold Rush did not even begin until two years later.<br /><br />Indians are not played by Native American actors. John Ford was using Native American actors in the 1920s. The Bonanza producers could have easily done so thirty years later. That is a major nitpick for me.<br /><br />There are other time-line problems. In Season 1, Mark Twain appears, and he is depicted as a middle-aged man. Mark Twain was 24 years-old in 1859. The stories also vacillate between 1859-1860 (pre-Civil War) and what was more suitable for an 1880 time-frame. There are continuity problems, over and over.<br /><br />It is somewhat off-putting, too, that there is so much killing in the first season. In time, the killing was reduced.<br /><br />Many of the episodes take a socially liberal slant, which would be hard to believe, given the time-line, but give the writers credit for anticipating the seismic shifts in the Nation's attitudes beginning in the 1960s.<br /><br />Having said all that, the acting is good, and I have come to conclude in my latter years that Adam's character was drawn better than any other's. I don't think Pernell Roberts ever got the credit he deserved. Also, Season 1 reinforces the fact that Dan Blocker (Hoss) was a good actor.<br /><br />Many of the stories trace real historical events. The guest stars were interesting.<br /><br />This was great family entertainment, and the series stands up very well by any measure.\r\n1\tI thoroughly enjoyed this movie because there was a genuine sincerity in the acting. The writing was top-notch. James Arness is a great actor and he showed it here. Brian Keith was too old to be Davy Crockett, and can anyone really play Davy but Fess Parker?<br /><br />Another great actor in this move was Raul Julia, who gave depth to Santa Anna, a vain and complex person who led Mexico through turbulent times.<br /><br />While some may think the movie was slow-paced, it captured the battle as it unfolded, lots of tedium followed by a couple hours of horrific terror.<br /><br />What impressed me most about this movie is that it made you think about a cause and how some people are willing to die for what they believe in. In this day and age when nobody stands for anything, I found it refreshing to think that there was a time when people died for freedom, no matter how you may feel about the politics of the time.\r\n1\tAnd I'll tell you why: whoever decided to edit this movie to make it suitable for television was very ill-advised. EVERYTHING CONCERNING DRUGS IS CUT OUT AND COVERED UP!!! How do they do it, you might ask? Well, they don't do it very well, that's for sure. Anyway, instead of the marijuana which Cheech and Chong are supposed to have in their possession, they are said to have diamonds! Still, the characters go around in a haze of marijuana smoke stoning others along their way with no explanation whatsoever!\r\n0\tOne of Scorsese's worst. An average thriller; the only thing to recommend it is De Niro playing the psycho. The finale is typically of this genre i.e. over-the-top, with yet another almost invincible, immune-to-pain villain. I didn't like the 60s original, and this version wasn't much of an improvement on it. I have no idea why Scorsese wasted his time on a remake. Then again, considering how bad his recent movies have been (I'm referring to his dull Buddhist movie and all the ones with his new favourite actress, the blond girl Di Caprio) this isn't even that bad by comparison. And considering Spielberg wanted to do the remake... could have been far worse.\r\n1\tI have read with great interest the only available comment made before mine on this movie and I would first like to say that I understand the point of view of the previous user who commented on this movie very well: viewed from an Israeli perspective, I can very well imagine that this movie touches upon very sensitive issues and that the slightest detail can have a great importance for a viewer who is more or less directly concerned by the events depicted in this movie. What I would like to say is that 'Distortion' was shown at a film festival in Geneva in November 2005 (Festival 'Cinéma tout écran') where it won the award of the audience ('Prix du public'in French). For what affects me, I liked the 'nervous camera' work of Mr Bouzaglo, who, in my opinion, portrayed an atmosphere of extreme tension and uneasiness in the movie very well, and I think that most of the swiss viewers appreciated this in the movie. This perspective, however, might seem totally 'alien' to an Israeli viewer, but not so surprising when it comes to swiss viewers, because Switzerland is a country which has NEVER been subject to any terrorist attack. It therefore comes as no surprise that the audience in Geneva judged this film with a much more 'detached' perspective.I would also like to quote what Mr Bouzaglo said when he was interviewed by a Geneva newspaper (I'm translating from French): ''After 50 years of living here and after undergoing all this violence, we may ask ourselves if it is still possible to remain normal.We might sometimes think that it would be easier to commit suicide than to go on living. We are like the characters in my movie,''on the edge of the edge''. This is the reason why the private detective, who is somehow ''voyeur'' is the happiest character in the movie, because he earns a living thanks to the system, he takes advantage of this situation'' This is, in substance, the main thing that I and the swiss public, in my opinion, pointed out in this movie, and that we did not pay attention to some inconsistencies regarding the characters in the movie which the precedent reviewer pointed out with great accuracy and humor. So, to sum up, different country=different perspective, but I think that this is somehow great, because it reassures me for what affects the future of cinema, that is to say that it well never be subject to a 'unique' of 'formatted' way of thinking.\r\n1\t\"Film can be a looking glass to see the world in a new light. Good Night and Good Luck, for instance, offered parallels to modern judgement-without-evidence and encroachments on freedom. It is easier to examine a moral problem when it is not too close to home: by putting it in a fictional or historic context removed from our immediate situation. With pornography, we consider ourselves 'enlightened' and our forefathers to be hidebound by quaint ideas - usually involving fire and brimstone, but the definition of what is obscene can easily fall prey to ignorance and unscientific interpretation instead of evidence. Bettie Page was a cult icon of an era which included not just McCarthyism but the banning of comics (such as Tales from the Crypt) on the basis that they would turn youths into half-mad juvenile delinquents. This film, developed from key questions raised in her life, poses dilemmas that are as relevant today as back in 1950.<br /><br />Our film opens with two key scenes. In the first, we see well-dressed, respectable looking men in a seedy bookshop. One of them asks for pictures of women in kinky boots and being restrained - then turns out to be an undercover cop conducting a sting. The second scene shows Bettie Page, waiting to be called as a witness, looking quite demure, as if she had just come out of church.<br /><br />The first 50mins are in black & white. Old fashioned film effects such as wipes and fades add to the sense that we are watching a film from bygone years, as do the mannerisms of the cast, skilfully recreated 1950s scenes, contemporaneous slang phrases and the terse dialogue associated with film-making of the period. Archive footage is frequently intercut - which will delight many and irritate others. In keeping with its theme, the movie is almost a collection of different types of photography-in-motion, and the older clips of fabulous beaches and landmarks juxtapose well against Bettie's classic poses hearken back to an age of 'health & nature' magazines . . . although I admit that if you are not captivated by the story you may find the effect a bit choppy.<br /><br />Very soon, we go into flashback. Bettie escapes a Depression Years downtrodden life in Nashville, enlivened only with church singing and soul-saving, and goes alone to make her own way. After her initial success, her modelling work splits into two strands: the mainstream glamour work focussing on her over-the-rainbow smile, and the 'specialist interest' photos involving dressing up in high-heeled boots and light bondage gear. In an earlier audition (reminiscent of a scene with Naomi Watts' character in Mulholland Drive - who was also called Betty), she gives a performance that is full of emotion, contrasting with her normal animated, cheerful (but ultimately bland) day-to-day expression. Is part of her still unfulfilled? Bettie is frequently rejected in auditions once they realise she is the well-known pin-up girl. But we have never been asked to feel sorry for Bettie Page: her abusive childhood is quickly referenced and skipped over; when she is raped by four hometown lads, we see only the threat and then Bettie recovering and surviving, picking herself up in deserted woodland, and putting on the brave face of someone who refuses to lie down and die.<br /><br />Although no nudity is involved, it's Bettie's special interest photos that eventually arouse trouble. When we go back to the court, the opinions of a clergyman on the corrupting influence of such photos are taken as evidence. A psychologist authoritatively says how the photos lead to 'suicide, murder and psychosis' in youngsters who are exposed to them (presumably not in that order). Eventually a star witness explains how his son's life came to an end as a result of such photos - 'being 'trussed up like that'. It is not made clear how being 'trussed up' causes death). The text accompanying a series of Bettie's photographs in a magazine tell how she was forced to endure 'terrible agonies' with the fetish restraints (the audience knows that she actually found them quite hilarious and that the wordings, like the photos themselves, were pure dramatisations). After a 12hr wait, Bettie is told her evidence - she is the one person who could state definitively that she was not photographed in agony - will 'not be required'. The 'horrors' of the photos have been proved.<br /><br />If this all sounds like the dark ages which we have left, consider a recent (2003) incident in which an Ann Summers advert was banned. It said, \"\"for fashion and passion whip along to your local store,\"\" with a photograph of a woman's back. She's wearing a bra and thong and her hands are handcuffed behind her back. The lingerie and sex toys company, that targets female consumers (and also supports charities fighting domestic violence) said its adverts aimed, \"\"to give women sexual confidence and always showed women in control of their sexuality.\"\" One might conclude that the prejudice and ignorance of the Betty Page investigations still holds currency.<br /><br />Bettie's religious views are integral to the story, just as the concept of sin is integral to Christianity and contributes to the 'forbidden' nature of sexual enjoyment frequently prevalent in the UK and US - as opposed to the more factual approach found in continental Europe. It could be argued the formulae of sin and redemption, and \"\"being saved\"\", are even reflected in mating patterns that perpetuate traditional male dominance. A policeman making a friendly (but sexually motivated) approach to Bettie outside the courtroom offers to 'save' her from loneliness. The knight-in-shining-armour might be chivalrous, but it also assumes a woman in need of rescue.<br /><br />Love it or hate it, The Notorious Bettie Page is an unusual and extraordinary film, and a moral wake-up call for those that heed it. There is excellent ensemble acting, and Gretchen Mol, as Bettie, is remarkable as the whole film succeeds or falls on her powerful performance.\"\r\n1\t\"Polish film maker Walerian Borowczyk's La Bête (French, 1975, aka The Beast) is among the most controversial and brave films ever made and a very excellent one too. This film tells everything that's generally been hidden and denied about our nature and our sexual nature in particular with the symbolism and silence of its images. The images may look wild, perverse, \"\"sick\"\" or exciting, but they are all in relation with the lastly mentioned. Sex, desire and death are very strong and primary things and dominate all the flesh that has a human soul inside it. They interest and temptate us so powerfully (and by our nature) that they are considered scary, unacceptable and something too wild to be true.<br /><br /> A sophisticated young woman travels with her mother to a French countryside to meet her soon-to-become husband whom with she has had a letter affair of some kind. All are very exciting and each others' parents and relatives wait impatiently to see the new people arriving to their families. The innocence of the young bride shines through and no one knows what can happen and wake up inside the walls of the big and beautiful French mansion, with all its humans and animals, and a mysterious \"\"la bête\"\" that turns out to be something that the characters, nor most of the film's audience, could have never imagined to be real and (in front of) them.<br /><br />The film is about the same theme as Canadian David Cronenberg's debyt feature Shivers (1975), which happens inside a huge luxury building in which destructive and gory parasites spread from human to human by sexual contact and make people act furiously and violently in their lust for pleasure and fulfilment of instincts. Human has instincts that can be and are stronger than his will and that is why those instincts can be as dangerous and powerful as the instincts of some other animal, a beast, be it a lust for blood, revenge or sex and carnal pleasure. Humans are only animals that have intelligence and tools to convey it but because we are also animals, that intelligence is not always used too much as can be seen anywhere around us. The film opens greatly, and very shockingly for most hypocritic attitudes, showing a horny male horse raging in fury as he waits to get inside the mare and continue the race, but the rage and visible lust we see from his eyes and violent movements are the key elements of that beginning and why it is there, not the close-ups of organs as could be so easily claimed. The horse is a beast that battles in an almost unbearable heat, in heat that's much stronger than his will as he doesn't have any control at that point anymore. The power of the instinct makes an animal a beast.<br /><br />After the memorable beginning, the characters get introduced, and the film fantastically has all the necessary age groups inside it from the little innocent children waiting to grow up and develop to their blossom, to the adults and elders that all represent their own part of the lifespan, creating the face of human life on screen. A film doesn't necessarily need more characters this way as all the important ones are already there and represent the whole race, including the urban and countryside inhabitants, and both sexes. The mansion makes the protagonist girl's sexuality wake as she saws the horses coupling and acting like she obviously has never thought of. For the first time she sees something unique and something that excites and feels almost vital for her and her body, like getting water when you're very thirsty. The transformation of the girl is a very important element in the film as she has lived unaware of these things inside her, with his mother and camera and a letter-boyfriend, even though the things have just waited for the moment to burst out. Flesh desires flesh and that belongs to being a humanimal, but still those things are not so easily admitted everywhere and films like these trying to depict it get banned for decades? Man's stupidity and unwillingness to interpret images must not be an argument for a film being banned or otherwise violated.<br /><br />The film's last 30 minutes are also as important as the beginning, and once again show how powerful cinema is without needless words and talk. As the girl and audience realizes what her body starts to feel and desire, she starts to have dreams about the mysterious beast that turns out to be none other than the undressed form of ourselves, having lived in the woods without other people/beasts near him. The dream sequence is the one that causes and caused most of the controversy alongside the film's overall straight and honest attitude, and the images are so easy to be judged as \"\"perverse\"\" and \"\"pornographic\"\", without a courage to go deeper into them, character reactions and thoughts behind what we see. The images are exciting in her dream and also eventually inside the dream for the dream's (more) human character, and Borowczyk forces us to admit it with the images that are so close to a \"\"normal\"\" sexual act between a man and a female, which is a beautiful thing and expression of love, another human need. Also the numerous, and cleverly blackly humorous love making scenes inside the mansion, between the young mother and the black servant, get interrupted many times as someone screams for the servant, for example, and there's no doubt that the sensual image of two young human bodies being together and being interrupted with an angry shout at least doesn't become any more pleasant by the interruption. Borowczyk has managed to paint his images so beautiful and \"\"sensitive\"\" that his message is almost impossible to be misunderstood, but nothing seems to be impossible for our cultures and minds that criticize art. He uses dialogue only when it's necessary, otherwise the images do the job and make the film powerful.<br /><br />Death is also there, as flesh dies sooner or later, after years of life and instincts, it dies. The ending is inevitable but the meaning of the dream sequence could have also been as powerful without the kind of dramatic and \"\"revealing\"\" ending too. Another blackly humorous element comes when we see the shocked city women running out of the place in which they saw a little more than they were looking for! They visited the mansion of truth about flesh, us and them. The film reminds me of French writer Georges Bataille's Story of the Eye with its same themes about eroticism, death and how they both are always connected to the nature of our flesh. The book is well written and fantastic as well as this film, and naturally both have been blamed for their \"\"too explicit\"\" content and other equally noteworthy shallow comments.<br /><br />Borowczyk's film is also very beautiful visually alongside its raw honesty, and the nature and forest have rarely looked so bright and shining as they do in this film. The sun shines through the trees, and to everyplace where humans live, and the beauty of it is always there, but so is the ugliness that originates by the inhabitants of the world. To every innocent white sheep there's a selfish, evil and horrible beast in our world and that is why the intelligence we have been given never fully seems to overcome the power of our bad instincts and the other side of the sheep, present inside every human soul. It is about how many manages to keep the dark side passive and not active. The fulfilment of some of our instincts is not a bad thing, and by using this intelligence and seeing which of the instincts are good and which bad, they can be satisfied without exploitation, violence and the lethal and destructive circle created by it. Human is not more than an animal with intelligence, intelligence that is so easy to be forgotten and eaten to the background by things that feel better and more satisfying at each and perhaps sudden moment. Borowczyk's film is a masterpiece, unforgettable and clever piece of magical cinema with ageless theme and also an example of how much can be achieved, expressed and given by a film maker, who is also only a human.\"\r\n1\tI didn't expect much when I rented this movie and it blew me away. If you like good drama, good character development that draws you into a character and makes you care about them, you'll love this movie.<br /><br />Engrossing!\r\n0\t\"For a made-for-TV \"\"horror\"\" movie the movie started off very interesting. I was really intrigued by the story and the mystery of the film. But the ending was a total dissappointment. The movie was going along fast-paced and was building up to, it seemed like anyway, to a very climatic end. But guess what there is no end. The movie is just over and after almost one-and-a-half hours the audience is just left wondering what happened. Why were all the unanswered questions in the film left unanswered. There was no explanation at all about any of the key points in the plot. This film is like watching a murder mystery and then never finding out who did it. Very dissappointed. This film looks like the producers just ran out of money and never completed the film. A real BOMB!\"\r\n0\tI read the novel 'Jane Eyre' for the first time back in 1986. It was round that time that I saw the BBC-version with Timothy Dalton and Zelah Clarke. It was an excellent version and very much like the book. Years later, I laid eyes on this version and was horrified. William Hurt is totally miscast as Mr Rochester. Mr Rochester is a passionate character, where as William Hurt portrays him as a block of ice. The same goes for Charlotte Gainsborough. It was like watching two zombies together. This is story about love and passion, but I couldn't see it in this version. No, back to the BBC-version. A wonderful time is guaranteed.\r\n1\tI love this movie. I mean the story may not be the best, but the dancing most certainly makes up for it. You get to know a little bit about each character the way THEY want you to learn about them. I just think that you won't like this movie unless you're into Broadway...\r\n1\tWang Bianlian is an old street performer who is known as a 'King of masks' for his mastery of Sichuan change art. Liang is a famous opera performer of Sichuan art and respects Wang as an artist and as a person. Liang is worried that a precious art shouldn't die with Wang and so he sows the seed of an heir in to Wang's mind. The film is about prejudices, male domination, state of art, values and most importantly warmth.<br /><br />I can't recommend this film enough. The whole film is in loops. Everything has a significance. Its a long story which has been edited so well that the length of the film is just 91 minutes. A total satisfaction. For five minutes it is an artistic film, next five minutes its a sad film, next five minutes its a thriller. It just keeps changing its mood like its protagonist changes his face. Last scene on the rope is phenomenal. Story and script is flawless. Actors are brilliant. Both the protagonists are artists you can tell the way they have performed. Very impressive. It was not even nominated for Oscars. That year 'English patient' got the best film Oscar and in the foreign film category 'Kolya' won. 'Kolya' was just OK and about 'English patient' the lesser said the better. Watch it 9/10.\r\n0\t\"I recently watched this film at the 30'Th Gothenburg Film Festival, and to be honest it was on of the worst films I've ever had the misfortune to watch. Don't get me wrong, there are the funny and entertaining bad films (e.g \"\"Manos  Hands of fate\"\") and then there are the awful bad films. (This one falls into the latter category). The cinematography was unbelievable, and not in a good way. It felt like the cameraman deliberately kept everything out of focus (with the exception of a gratuitous nipple shot), the lighting was something between \"\"one guy running around with a light bulb\"\" and \"\"non existing\"\". The actors were as bad as soap actors but not as bad as porn actors, and gave the impression that every line came as a total surprise to them. The only redeeming feature was the look of the masked killer, a classic look a la Jason Vorhees from \"\"Friday the 13'Th\"\". The Plot was extremely poor, and the ending even worse. I would only recommend this movie to anyone needing an example of how a horror film is not supposed be look like, or maybe an insomniac needing sleep.\"\r\n0\tA killer, cannibal rapist is killed by a crazed cop on the scene of his latest murder. At his grave a cult have gathered with plans to resurrect him by peeing onto the grave. This of course works and he awakes ripping the guys penis off and he is back into his old killing ways with an all new zombie look. The two cops one of who is going a little crazy about the scum of the city and has a drug problem, are back on the case. Two of the original cult member also tries to stop the killer by resurrecting some other kind of dead thing. Thinking they have filed they leave but out from the grave comes a plastic baby doll that was used in the original resurrection. Sounds a bit confusing really but no its just rubbish.<br /><br />The acting is terrible and one of the cops is the same guy that plays Dr Vincent van Gore in the faces of gore series and he is just as terrible as the annoying cop in this film. The other cop just about struggles to get his terrible lines out. Now I'm all for low budget cinema but this film is just terrible. If it wasn't for the very easy on the eye ladies and their nakedness I would probably have fallen asleep. There is a bit of gore but it's never more than some animal guts placed on the stomach of the victims. The zombie makeup on the other hand looks great and his foot long penis that he uses to rape his victims with is kind of funny at times. There is also a half decent scene where the killer falls in love with a sex doll. The doll with the chipmunks voice is the stupidest thing I have ever seen in a film. It is just a plastic toy on a fishing line.<br /><br />The ending is extremely bad. You would expect the killer to put up much more of a fight than he does. God knows how they made enough money to make a sequel. <br /><br />4/10\r\n1\tmyself and 2 sisters watched all 3 series of Tenko and agree this is by far one of the BBC better series.The whole cast were very convincing in the parts they portrayed and although the 3rd series was somewhat slower it was compelling viewing and my evenings wont be the same without it.No doubt we will be watching it again as it is a series which I would never get sick of watching.Excellent viewing and full marks to the BBC for such a brilliant series and the casting.First rate in all departments and would recommend this series to anyone although some age limits must be considered because of some adult material.So grateful to the BBC for releasing this series on DVD and Video.\r\n1\t\"Yes, commitment. Let's say \"\"Fever Pitch\"\" might trick you into believing it's a baseball movie.<br /><br />But no, you don't have to be a baseball fan to actually enjoy this picture from the Farrelly Brothers. But of course, if you are one, you will enjoy it even more; with all the references (pretty accurate ones, I'd say) to the Boston Red Sox and its bittersweet history; from the Curse of the Bambino and everything attributed to it, including those two words you CANNOT pronounce in front of a Boston fan: Bill Buckner.<br /><br />Drew Barrymore and Jimmy Fallon portray two people who, usually might have second thoughts of going into a relationship: the successful workaholic who is also affluent meeting a school teacher? Thing is, Fallon's character wins Barrymore's heart by being funny, caring, sweet and downright perfect. But her friends ask her a logical question: if he's such a keeper, why is he still on the market? Enter the Boston Red Sox. He's been so committed to his team ever since his uncle passed his Sox season tickets to him; he has never missed a Red Sox home game at Fenway Park in a long while.<br /><br />And that delicate balance, how much is the workaholic willing to give up for his guy's obsession; and how much is that baseball-crazed teacher willing to compromise in order to keep the OTHER love of his life, is what this movie is all about.<br /><br />At first, you might think that the sports-obsession bits of the movie are exaggerated for comic relief. Well, I'm sad to admit, they are not. Myself, as a die-hard Houston Astros fan, can say they are all true. I would try at every way available to see every 'Stros game; listen to them on the radio or follow them on the Internet. I read the Chronicle's sports section every day. And yes, my room looks like The Shed, Minute Maid Park's gift shop; with a closet full of Astros gear, including 5 jerseys, 20 t-shirts and you know the rest. Fallon's character even has the Red Sox MBNA MasterCard.<br /><br />Fallon was credible enough as the fanatical Red Sox faithful, even though he could pull it off without becoming a cartoon (Thank God Adam Sandler wasn't in it); and the plot revolved around how this couple tried to manage with each other's passions.<br /><br />I'd say it'll be a classical romantic comedy. Not enough to be among the best movies in history; but certainly breaks a mold into the genre and is appealing enough for men and women alike.\"\r\n1\t\"When it first came out, this work by the Meysels brothers was much criticized and even judged to be exploitation. Luckily, it is now hailed as a masterpiece of documentary cinema, especially now that society has been exposed to real exploitation in what is reality television, and the bad evolution of most direct cinema.<br /><br />Really, at first, we must say that this isn't really direct cinema, it is more cinema verité. The difference between the two is very slight, but it mainly is the fact that in this documentary, we are made to feel the presence of the Meysels brothers, and they do interact with the characters filmed. This as well makes it clear that it is not exploitation. The Meysels have been allowed in the house, and they are included in what is a very eccentric situation of a very eccentric household. And both Edith and Edie just love the idea of being filmed.<br /><br />It would have been very disappointing had very been shown only a voice of God narration and shallow interviews. Here, we are given a full portrait of the madness of the house, a madness that does seem to go down well with both Edie and her mother Edith. Their house is a mess, litter and animals everywhere, faded colors and furniture all over the house, and the constant fights that are constant interactions of reality. These two people have lived with each other their whole life, and are not fighting in front of the camera because they want the attention, but rather because they can't help talking to each other this way. They know each other too well to hide their inner feelings, there is no need. In the end, though, even as they blame each other for their lives, they really love each other deeply. Edie says she doesn't want her mother to die, because she loves her very much, and Edith says that she doesn't want Edie to leave her because she doesn't want to be alone.<br /><br />But the most interesting aspect of the film is that regardless of their old age, the two women can't help be girls. They cannot help being one the singer, the other the dancer. Exhibit all their artistic skills in front of their camera. When Edie asks David Meysels rhetorically \"\"Where have you been all my life?\"\" she is really very happy that she finally gets to show the whole world herself and her wonderful showgirls skills. A beautiful portrait of stylistic importance and a charm that is highly unlikely to be ever seen again, the way only the Meysels and few others could do.\"\r\n1\t\"And that's how the greatest comedy of TV started! It has been 12 years since the very first episode but it has continued with the same spirit till the very last season. Because that's where \"\"Friends\"\" is based: on quotes. Extraordinary situations are taking place among six friends who will never leave from our hearts: Let's say a big thanks to Rachel, Ross, Monica, Joey, Chandler and Phoebe!!! In our first meet, we see how Rachel dumps a guy (in the church, how ... (understand), Monica's search for the \"\"perfect guy\"\" (there is no perfect guy, why all you women are obsessed with that???), and how your marriage can be ruined when the partner of your life discovers that she's a lesbian. Till we meet Joey, Phoebe and Chandler in the next episodes... ENJOY FRIENDS!\"\r\n1\t\"*Possible Spoilers* Although done before (and better) in 'Midnight Express' and 'Return To Paradise', Brokedown Palace still strikes a chord with me.<br /><br />Here we have the tale of two young girls who travel through Thailand, and get arrested on charges of trafficking drugs. Was it Clare Danes' Alice? Was it Kate Beckinsale's Darlene? Was it the handsome stranger whom they met on their journey? None of that really matters, for this is a tale of friendship and trust and the limits they can be stretched to. Throw in Bill Pullman as an unenthusiastic lawyer and Jacqueline Kim as his Thai bride (and better lawyer than he is) and we have a nice little story that holds the audience's attention.<br /><br />Brokedown Palace is nothing extraordinary, or notorious for any reason - it is not an original concept, it doesn't show sensationalised violence that leads to the wannabe-avant-garde crowd talking about it's \"\"gritty realism\"\" or \"\"hard hitting truths\"\" - it is merely a good story with some fine performances. Bill Pullman is weakest with his lazy drawl and gravelly way of talking - I was quite bored with the character.<br /><br />Kate Beckinsale, while decent, is nothing spectacular. She acts well, but it's not exactly a memorable performance.<br /><br />Jacqueline Kim however, is in fine form, crafting a likable and defined character where, really, there is not much to work with.<br /><br />But make no mistake - this is Clare Danes' movie. I've long been a fan of her work, and this is no change. She captivates in every scene she appears, and were it not for her, the film would probably stoop into boring fare. I particularly applaud her performance in the scene between her and Darlene's father.<br /><br />The film also has a brilliant soundtrack.<br /><br />7 out of 10\"\r\n0\t\"I wish I could say that this show was unusual in it's banality,but it is usual in every way.It has the dumb husband,his smarter but boring and conventional wife, along with the idiotic sidekick for \"\"comic\"\" relief-it sorely needs it.Stale predictable jokes, with even more predictable reactions from the laughtrack, punctuate this noxious mental narcotic's nauseatingly unimaginative plot lines to leave me either physically ill, or in a deep sleep more resembling that of an induced coma. But it might be on for a while yet because it gives the average American a personage to which they can truly identify.A \"\"regular\"\" guy just like you and me.I live in the southern U.S, so to me this show is just the opposite of escapism.Down here, that obnoxious character is everywhere, in some form or another.Seeing him on television is brutal overkill.\"\r\n0\tSomeone actually gave this movie 2 stars. There's a very high chance they need immediate professional help as anyone who doesn't spend 30 seconds to see if you can award no stars is quite literally scary.<br /><br />This film is ... well ... I guess it's pretty much some kind of attempt at a horrible porn / snuff movie with no porn or no real horrible bits (apart from the acting, plot, story, sets, dialogue and sound). I wrongly assumed it was about zombies. <br /><br />Watching it is actually quite scary in fairness; you're terrified someone will come over and you'll never be able to describe what it is and they'll go away thinking you're a freak that watches home-made amateur torture videos or something along those lines. <br /><br />I'm so taken aback I'm writing this review on my mobile so I don't forget to attempt to bring the rating down further than the current 1.6 to save others from the same horrible fate that I just suffered. <br /><br />I worst film I've ever seen and I can say (with hand on heart) it will never, never be topped.\r\n0\t\"Well, my goodness, am I disappointed. When I first heard news of a remake of Robert Wise's 1963 film, \"\"The Haunting\"\", I had a fear that it would be ruined by an abundance of summer-movie sized visual effects. But, deep down, I had faith. Surely, with such a talented cast intact...De Bont and company will not ruin a film, who's original was a fantastic and frightening movie that understood the delicate art of subtlety. Well, subtlety, where are you now!!?? My fears have manifested...a promising movie has gone wrong. Yes, Eugenio Zannetti's production design is jaw-dropping; the movie is wonderfully photographed; and composer Jerry Goldsmith can never EVER do wrong. But, the script puts it's fine actors to the test..asking them to deliver the kind of stilted dialogue that is only spoken in movies. In the end, the always wonderful Lili Taylor is the only performer to escape with some dignity...and that's just barely. But, the crime of all crimes is that the horror is shown to us. We can no longer use our imaginations, feel that horrible dread of fear of the unknown. No, we get some visual effects to SHOW US what we're supposed to be afraid of...and you know what? As wonderfully realized as they are...the visual effects come off as sort of silly. And the climax is a phantasmogoric mess...but things had gone terribly wrong long before that. <br /><br />Everything in The Haunting is overdone and overblown. I'm afraid there are no real thrills or creaks in this old haunted house monstrosity...only groans. Check out the original instead.<br /><br />\"\r\n1\t\"To begin with, I loved göta kanal 1, it had a lot of classic jokes including that unlucky guy in the canoe who always seems to be at the wrong place at the wrong time, he is still acting the same guy in the göta kanal 2 movie but in my opinion hes performance is not as funny as it was in the first movie, in fact you don't notice him much at all. A thing that made me think bad about this movie is the choice of boats, in this movie there are only race boats, they sure is speedy but those do not make waves like the big floating mansions used in the first movie, I liked the old ones better and these new boats makes one of the last scenes look ridiculous when the man in the canoe suddenly jumps out of it to evade the \"\"big waves\"\" from those small speedy boats. Truly a minus. You have to accept that we're not living in the same Sweden as in 1974 anymore. This movie also contains a bit more violence than the first one. Although the movie was great all in all. I've just concentrated on some cons that i was disappointed in but the rest of the movie were up to my expectations, so go see it! It's worth the money.\"\r\n0\t\"What Hopkins does succeed at with this effort as writer and director is giving us a sense that we know absolutely no one in the film. However, perhaps therein lies the problem. His movie has a lot of ambition and his intentions were obviously complex and drawn from very deep within, but it's so impersonal. There are no characters. We never know who anyone is, thus there is no investment on our part.<br /><br />It could be about a screenwriter intermingle with his own characters. Is it? Maybe. By that I don't mean that Slipstream is ambiguous; I mean that there is no telling. Hopkins's film is an experiment. On the face of it, one could make the case that it is about a would-be screenwriter, who at the very moment of his meeting with fate, realizes that life is hit and miss, and/or success is blind chance, as he is hurled into a \"\"slipstream\"\" of collisions between points in time, dreams, thoughts, and reality. Nevertheless, it is so unremittingly cerebral that it leaves no room for any hint of emotion, even to the tiny, quite rudimentary extent of allowing us a connection with its characters.<br /><br />I didn't think the nippy and flamboyant school of shaky, machine-gun-speed camera-work and editing disengaged me, but reflecting upon the film I am beginning to realize that it had a lot to do with it. There are so many movies of the past decade in which the cuts or camera movement have sound effects as well as other atmosphere-deteriorating technical doodads. I suppose in this case it was justified in that its purpose was to compose the impressionistic responsiveness of dreams. However, I knew barely anything about Slipstream when watching it, and I came out the same way. And I just do not care, because Hopkins made no effort to make us care. There are interactive movies, and there are movies that sit in a rocking chair and knit, unaware of your presence. Slipstream is the latter.\"\r\n1\tI have to admit that Purple Rain is one of my deepest guilty pleasures. Purple Rain not only broke boundaries, it set a decade, the costumes, the music, the behavior, and the dancing! To this day, my friends and I still jam to the Purple Rain soundtrack and pretend to be Prince and the Revolution.<br /><br />Now the movie itself, I just meant what I said in the title, because for the most part, this movie itself is made by the music. The acting? Please don't let me judge on that since this is one of my favorite guilty pleasures, because I know that it was not Oscar worthy by any means. But I think the duo that took this movie was Morris and Jarome, their speech about passwords was just beyond hilarious. I just want to rate this movie on the concert sequences because I felt that it was what made the movie.<br /><br />Prince is a musical genius and created beautiful music. While the movie and acting is pretty bad, this movie is still a fun one to watch at night and even dance too. This movie defined the 80's, so just have fun with it. Prince would want it that way, just to party on down! Oh, boy, that sounded lame.<br /><br />9/10\r\n0\tJude Law gives his all in this beautifully filmed vampire flick which offers little else of value. Completely lacking in eroticism, excitement, or leading ladies with appeal. One decent fight, a few moments of mild suspense. And a one-note plot.<br /><br />The movie waxes philisophic in a series of conversations between Law's character and a dogged homicide detective, well played by Timothy Spall. But despite their best efforts, both actors are staked to the cross of the film's banality.<br /><br />With a lesser actor in the lead role -- and without the benefit of Oliver Curtis's cinematography -- Crocodiles would blend into the sea of low-budget vampire quickies.\r\n1\tThe first time I saw this, I didn't laugh too much. At the time, I was only about fifteen years old and thought that maybe some of the deeper humor was too mature for me to understand at the time. I had the same reaction when I viewed it a second time a few months ago, and this time, it was because Felix's aborted suicide attempt at the beginning of the movie kind of darkened the movie a bit. This scene made some of the things Oscar said and did to Felix later in the movie seem needlessly cruel, and their personality clashes weren't as amusing as they could have been. Had I not already known the story, I would have been worried that some of Oscar's antics to Felix might push him over the edge. As it was, it didn't make me laugh or smile like the television show with Jack Klugman and Tony Randall did. Still, all in all, a pretty good movie and it spawned one of the greatest sitcoms on television. 7 out of 10.\r\n0\tVipul Shah has done some really impressive work as a filmmaker in the past. 'Waqt - The Race Against Time' and 'Namaste London' were entertaining and interesting to watch. 'Singh Is Kinng' was fun, which he produced. His latest outing as a filmmaker 'London Dreams' comes up as his careers weakest fare.<br /><br />'London Dreams' has a mediocre storyline, it's about how success turns friendship into hatred. Agreed, it has the potential but when you watch 'London Dreams' you wonder what's happening? This film has maybe the worst climax in recent times. Vipul Shah the writer puts Vipul Shah the director down. <br /><br />The first hour is boring, The second hour is better; but again the climax is horrendous. How can anyone forgive a person who decided to destroy you? I won't. Ajay Devgn suddenly decides to go to India and ask forgiveness to his diaper buddy, thanks to his uncle Om Puri. When he reaches India, rather than slapping or abusing him Salman welcomes him with band baja and says he was the reason behind the entire fiasco? Was Vipul Shah's intension to show Salman's character as a GOD? If yes, than you've failed completely. The only question I want to ask Vipul Shah is that, would you welcome a person who destroyed you with such a great reception? Write what you feel, don't fool us {the audience}, we are sensible enough to understand what's good or not. <br /><br />This is a musical but the music by Shankar-Eshaan-Loy is terrible. Not a single song stays in your mind. <br /><br />Salman is superb though. He carries the film on his shoulders and does really, really well in the emotional scenes. But again his character is shown as a GOD, which makes him look like a retard in the end. Ajay is equally good, but Salman has over-shadowed him completely. Asin is wasted, and what is a great talent like Om Puri doing in this film? Rannvijay hams, though Aditya Roy Kapoor excels. Brinda Parekh is alright as the vamp.<br /><br />On the whole, this dream remains a dream!\r\n0\tWhat an utter disappointment! The score of 6,1 here on IMDb built up some mild expectations but, oh my, was I disappointed. The first thing that bugs me are those braindead, stereotyped university kids. Yes, I know teens can be childish and so on, but why are they in movies always portrayed as complete braindead morons? There was one character that I thought was alright, but he/she (not revealing it here) was killed off way before the end. The other characters was poorly executed and even the supposed hero/heroine just didn't do it for me. On the plus side: The plot is pretty good and the productions values a cut above for these kind of flicks. The acting was generally not very good, Rutger Hauer stands out in a small role. But it all fails with bland and braindead characters. You just stop caring about them after 10 minutes. 4/10 (and thats being generous).\r\n0\t\"Meet Peter Houseman, rock star genetic professor at Virgina University. When he's not ballin' on the court he's blowing minds and dropping panties in his classroom lectures. Dr. Houseman is working on a serum that would allow the body to constantly regenerate cells allowing humans to become immortal. I'd want to be immortal too if I looked like Christian Bale and got the sweet female lovin that only VU can offer. An assortment of old and ugly university professors don't care for the popular Houseman and cut off funding for his project due to lack of results. This causes Peter to use himself as the guinea pig for his serum. Much to my amazement there are side effects and he, get this, metamorphoses! into something that is embedded into our genetic DNA that has been repressed for \"\"millions of years\"\". He also beds Dr. Mike's crush Sally after a whole day of knowing her. She has a son. His name is Tommy. He is an angry little boy.<br /><br />Metamorphosis isn't a terrible movie, just not a well produced one. The whole time I watched this I couldn't get past the fact that this was filmed in 1989. The look and feel of the movie is late seventies quality at the latest. It does not help that it's packaged along with 1970's movies as Metamorphosis is part of mill creek entertainment's 50 chilling classics. There is basically no film quality difference whatsoever. The final five minutes are pure bad movie cheese that actually, for me at least, save the movie from a lower rating. Pay attention to the computer terminology such as \"\"cromosonic anomaly\"\". No wonder Peter's experiment failed. Your computer can't spell! This is worthy of a view followed by a trip to your local tavern.\"\r\n0\t\"This movie isn't about football at all. It's about Jesus/GOD!! It's the same kind of sappy sanctimonious religious drivel you get from those arch idiots who wrestle for Jesus, or pump iron for Jesus. Yeah, Jesus was totally buffed, liked contact sports, and definitely owned a full set of dumb bells. DUHHH! This movie should have been entitled \"\"Hiking for Jesus,\"\" or something along those lines just to let the general public know that the real intent of this movie is to convert people to Christianity, and to pander to those whose brains have already been thoroughly washed in the blood of the lamb. That the title is derived from the Bible is made clear when the head coach is reading his Bible and asking Jesus for help. The recent sports movie \"\"Invincible\"\" was 100 times more inspiring than this was, and Jesus wasn't even a factor. It was just the desire and determination of an individual with a dream.<br /><br />Any broad appeal as an inspirational sports movie is ultimately lost amidst all of the blatant Bible thumping and sanctimonious religious propaganda. One gets the impression that the sole message is the only way you can succeed and make positive gain is if you accept Jesus as your personal savior. But this is simply not true, and is therefore a lie being perpetuated by those who believe that it is true and want everyone else to believe it. The image of the winning athlete thanking Jesus when he wins comes directly to mind. What does he do when he loses? Does he curse Jesus? Of course not! When he loses Jesus isn't responsible. Jesus is only responsible when he wins. And the logic goes round and round and round, and it ends up exactly where the true believer needs it to be, every time!! I had to hit pause when the scene with the coach receiving a brand new truck came on so I could stop rolling on the floor laughing my ass off and catch my breath. Materialism is not what Jesus taught. I find it odd that most so called \"\"Christians\"\" seem to either forget or ignore this message from their \"\"savior,\"\" especially when I see a Jesus fish on the back of a huge gas guzzling SUV that passes me like I'm standing still.<br /><br />Another message this movie implies is that Jesus apparently cares more about the win loss record of a mediocre high school football team that he does about the millions of starving children in the world. The final scene where the insecure and unsure kicker boots a 51 yard field goal and it is hyped up as an unbelievably incredible miracle puts the final gag me with a spoon religious red flag on this turkey. I only gave it three stars because the guy who played the black coach could actually act.\"\r\n0\tIt's interesting that a novel with no plot has become the basis for two films. While The Heiress was a good, if not entirely accurate, adaptation, Washington Square is a heavy-handed and poorly acted, except for the part of Dr Sloper, film that could have been so much better.<br /><br />The director's attempts at making 'beautiful' scenes were so obvious that I actually cringed. It has none of the understated and simple beauty that a movie with no plot can have, such as Onegin. I agree with other comments about Leigh's portrayal of Catherine as an idiot, instead of naive and shy; she made me despise her not feel for her.<br /><br />Catherine's transition from childlike trusting to adult cynicism, the whole point of the story, was internalised, just as it was in the novel. But we don't have the benefit of a narrative voice to tell us that in a film! I think someone skipped adaptation class at filmschool.<br /><br />I appreciate the director's attempts to make a moving and beautiful film out of a difficult text but it just didn't work.\r\n1\t\"Not the most successful television project John Cleese ever did, \"\"Strange Case\"\" has the feel of a first draft that was rushed into production before any revisions could be made. There are some silly ideas throughout and even a few clever ones, but the story as a whole unfortunately doesn't add up to much.<br /><br />Arthur Lowe is a hoot, though, as Dr. Watson, bionic bits and all. \"\"Good Lord.\"\"\"\r\n0\t\"The fact that someone actually spent money on such a bad script, is beyond me. This really must be one of the worst films, in addition to \"\"Haunted Highway\"\" I have ever seen. BAD actors, and a really bad story. There's no normal reactions to any event in this film, and even though it's Halloween , normal people would have bigger reactions when they're witnessing their father being killed, not to mention gutted, people with tape covering their airways, not being able to breathe (in a room with at least 50 people I might add) and some person dressed up as Satan dragging dead people out of his house, even an 8 year old would see the difference between a doll and a person. Not to mention the fact that no one could possibly be that naive and dumb to believe the reality of Satan and Jesus' appearances on the same day, like this kid does. When i was 8, I sure had more brains than that. <br /><br />But, the really stupid thing is that everyone else seems to be falling for this mute Satan look-alike as well, no questions asked. The question throughout the film is, is it really Satan, or is it some crazy person killing people off whenever he feels like it? Well, he's got human hands, arms, built and whatever, so I guess he's supposed to be in the movie as well, otherwise they did a lousy job concealing it. Then, with this person being human and all, he was able to kill an old lady, a man and his mistress, 5 (!!???) cops (all with guns and training i presume), and a few other people.....and obviously everyone was just standing there waiting for him, or what?<br /><br />The whole concept and way of telling the story is absolutely the worst thing I've seen, and I would never recommend anyone to waste 1 hour and 30 minutes of their lives to watch this total crap.\"\r\n0\tThis movie was absolutly awful. I can't think of one thing good about it. The plot holes were so huge you could drive a Hummer through them. The acting was soo stuningly bad that even Jean Claude should be ashamed, and that is saying alot!!! And dialogue, What dialogue???To think that I was a fan of the first one (I use that comment loosely, its more like a guilty pleasure, than anything else). This movie had Goldberg in it for crying out loud!!!! Nothing good can come of this movie. What makes this film even worse is that it is soo bad you can't even watch it with a bunch of friends to make fun of!!! This has got to be in my top five worst movies of all time. 2/10 because it is soo hard for me to give a 1.\r\n1\tPearl S.Buck was a brilliant author that was a first American lady won Nobel prize in literature in 1938 and received her prize with Enrico Fermi an Italian Physit.<br /><br />She wrote this romance in 1931 which was a second one after her first novel (East wind and West wind) in 1930 and her beginning in literature was fantastic upon her premier novels.<br /><br />she won in 1935 (Pulitzer prize) in literature on her eternal novel (The good earth) which made a brilliant panorama on the life of Chinese peasant (Wung Lung) and his wife (O-Lane) and their efforts to face the hardness of hard positions in their earth to reach for their big fortune by their shoulders.<br /><br />Paul Muni succeeded in this role as Chinese peasant that he prepared himself in this role upon his sittings with Chinese people in San Francisco in their town to be Chinese exactly as a real and true.<br /><br />Shara Reiner succeeded in her role as (O-Lane) by this brilliant evidence that she won An Academy Awarded as a best actress in 1937.\r\n0\tWhat a crappy movie! The worst of the worst! This movie is as entertaining as a dead slug. No-talent-what-so-ever-actors, stupid plot. Who wrote this script?! Was there ever a script for this goofy movie or did the director just accidentally press the record-button on his camera and then decided to make the film up as they went along? Is this meant to be a kids movie or a comedy or what? My friends younger brother is in the 6.th grade and him and his classmates just did an amateur-movie for their school-project which outdid this geeky movie.. This is by far the worst film I have seen in my life! There is just no excuse for this flick!\r\n0\tReally, They spelled it BRAIN in the credits, not BRIAN.<br /><br />OK, they didn't have the budget for a spell checker. All the production money went for great old cars. There are at least two Packards visible here. One is a Darin Convertible. A nice yellow Packard convertible.<br /><br />The scenes of the movie studio show that there was some money spent for costumes and set decorations. Old Cameras, an exterior of Ciro's, street signs and whatever was needed to make a visually pleasing picture was there. Poorly written and directed.<br /><br />My DVD says it runs for 104 minutes, approximately. It was more like 85 minutes. It came to an end without reaching a conclusion. There was a collision but no conclusion. The movie just smashed up against the credits. 99 cents for this. I paid 99 cents for this. I could have bought 3 cans of cat food and watched my cat's face as he emoted more excitement.<br /><br />For a few seconds in the Ciro's scene after Darren McGavin gets a phone call, it looked like, maybe... this movie would have a surprise twist that would make for an interesting film. Then it just sat there.<br /><br />The young Latin actor played by Steven Bauer (Tony Montoya) could have had a much bigger part in all that was going on here. This cast could have made a good film.<br /><br />I think if they cut Brian's part and use Steven Bauer in his place and change the script and keep the Packards and lose the band and add a Johnny Otis sound alike band, then they got something.<br /><br />Here Kitty, Kitty...<br /><br />Tom Willett\r\n1\t\"Pegg has had a few hits in the past few years, starting with \"\"Shaun Of The Dead\"\" in 2004, movie on to \"\"Hot Fuzz 2007\"\", early 2008 he came out with \"\"Run Fat Boy Run\"\" and now comes this, \"\"How To Lose Friends And Alienate People\"\" which is in many ways one of my favourite comedy's of the year.<br /><br />The film is about Sidney Yound, a man who writes a failing magazine who makes fun of celebrity's mostly because he is not one of them. Anyway, one of the most successful magazine owners (Played By Jeff Bridges) invites him (Out of nostalgia) to work at his magazine. Sidney is of course excited and moves to America, there he meets a girl currently writing a book, and hilarity ensues.<br /><br />This film is great and I hope more come out like it in the near future. Pegg has once again given people everywhere another good film and I cant wait to the see the third part of the blood and ice cream trilogy \"\"Paul\"\". I Rate this film 81%.\"\r\n0\tIf you liked the first two films, then I'm sorry to say you're not going to like this one. This is the really rubbish and unnecessary straight to video, probably TV made sequel. The still idiotic but nice scientist Wayne Szalinski (Rick Moranis) is still living with his family and he has his own company, Szalinski Inc. Unfortunately his wife wants to get rid of a statue, Wayne is so stupid he shrinks his statue and himself with his brother. Then he shrinks his wife and sister-in-law too. Now the adults have to find a way to get the kids of the house to get them bigger. Pretty much a repeat of the other two with only one or two new things, e.g. a toy car roller coaster, swimming in dip, etc. Pretty poor!\r\n1\tIngrid Bergman is a temporarily impoverished Polish countess in 1900s Paris who finds herself pursued by France's most popular general and a glamorous count -- and that's on top of being engaged to a shoe magnate. Such is the failproof premise that entrains one of the most delirious plots in movie history. There are backroom political machinations by the general's handlers, a downed balloonist and ecstatic Bastille Day throngs, but the heart of this gorgeously photographed film is the frantic upstairs/downstairs intrigues involving randy servants and only slightly more restrained aristocrats. Yes, it's Rules of the Game redux. Before it's all over even Gaston Modot, the jealous gamekeeper in Rules, puts in an appearance -- as a gypsy capo, no less! Things happen a little too thick and fast toward the end, resulting in some confusion for this non-French speaker, but what the heck -- Elena and Her Men is another deeply humane Renoir masterpiece.\r\n1\t\"\"\"Convicts\"\" is very much a third act sort of film. All the dialogue and character interaction that occurs within it comes out of the long wind-down of a late southern day. And, by extension, the life of its main character, Soll (Robert Duvall).<br /><br />This is the first collaboration of director Peter Masterson and writer Horton Foote. Six years earlier, the worked together on \"\"The Trip to Bountiful\"\", a film that seems almost action-packed in comparison to this one. Masterson is not necessarily a good director. In fact, he's just barely this side of adequate. The slow pace leaves a lot of room for cinematographer Toyomichi Kurita, who infuses the film with just the right sense of fragile light & warmth.<br /><br />Because this is essentially a filmed play, with little in the way of editing or directing prowess, it all comes to the acting. As far as I'm concerned there's no flaws here. Robert Duvall and James Earl Jones, two of the best American actors (both born in January 1931), create characters that are wholly real, uninterested in anything besides living. Lukas Haas, a young actor who I was familiar with from \"\"Testament\"\" and \"\"Witness\"\", plays a character very much like his other early roles. He is quiet, withdrawn, slightly scared and sad, somehow. These are qualities that seem natural from him.<br /><br />Perhaps a title like \"\"Convicts\"\" is a disservice to this film. That title, along with the opening scene, seem to create an image of a far more high-strung western type picture. If slow-paced stage productions don't interest you terribly, you'll want to pass on this one as well. Otherwise, this might be exactly the film you wish they made more often.<br /><br />Enjoy.\"\r\n0\t\"Don't even ask me why I watched this! The only excuse I can come up with that I was sick with Bronchitis and too weak to change the channel. :) It's too terrible for words, the movie that is, not the Bronchitis. The acting is deplorable, Richard Grieco hams it up as a trigger-happy, gun-slinging serial killer with a penchant for knocking off cops. Nick Mancuso phones in a performance as the cop on his trail and Nancy Allen manages to put in the only sympathetic role in the entire film. The script is dismal, peppered with clichéd lines, \"\"Are you ready, Pardner?\"\" purrs Richard Grieco to every single one of his victims. Dire. Avoid.\"\r\n1\tA DAMN GOOD MOVIE! One that is seriously underrated. The songs that the children sing in the movie gave me a sense of their pain, but also their hope for the future. Whoopi Goldberg puts in a good performance here, but the best performance throughout the whole movie is that of the actress who plays the title character. I wish she was in more movies.<br /><br />This movie should have a higher rating. I give it a 10/10.\r\n0\tSorry, but I will spoil both the plot line and the ending for you in hopes of avoiding a holiday fiasco like the one that I now face. The father dies and the mother asks Santa in a letter to bring him back to the family for Christmas,...and Santa does. Dad is peachy, happy healthy and totally unaware of the fact that he had died. All ends syrupy sweet.<br /><br />But as a parent who recently watched my five year-old lose his best canine friend, it was a horror flick. Now my son is convinced that all he has to do to bring his buddy back is to ask Santa! Do not underestimate the willpower of a young heart- no amount of persuasion will convince him that it was only a movie and that his dog is NOT coming back for Christmas. It has been heart breaking to watch his joy only to know that Christmas Eve he will have to face his loss afresh.<br /><br />Shame on you on behalf of all the believers that have lost a loved one recently. It is hard enough to deal with the loss one time for a child, but there are some wishes that we shouldn't even portray as a possibility.\r\n1\tNo movies have grabbed my attention like this one has. You see, I have wanted to watch this movie again for over twenty-five years. The one and only time I saw it was as a teen-ager which may have been the year it was released, 1977.<br /><br />What I do remember of the movie is that it touched those deep-held emotions so profoundly that there is still an overwhelming desire to watch it again. The intrigue this movie provides by the human element of father/son seeking and searching is sure to touch every human soul who watches it. Why this movie has not been brought out of storage and shown as often as many other movies of lesser depth, I do not know.<br /><br />Postscript: Received copy of movie and after watching it again was delighted to see that my memory held true. Rating reflects movie content. Would like to watch this movie on DVD as seeing this 1977 production on a used VHS tape took away from the overall quality.\r\n1\tIt's been quite some time since I've watched this LOTR. I am currently hunting for a copy to purchase. Bakshi's work is quite true to the original work. The visuals are engrosing and sometimes haunting.<br /><br />Drawbacks? Occasionally, the movie is confusing or muddled. There are one or two times where the storyline slows to a crawl. But, overall -- buy this movie. It's great for kids, adults and collectors.\r\n1\tDirector Douglas Sirk once said `there's a very short distance between high art and trash, and trash that contains craziness is by this very quality nearer to art'. This statement defines his cinema perfectly, a very unique body of work that includes classic stage adaptations, adventure and war films, westerns and of course, his famous melodramas.<br /><br />Sirk's melodramas were, as the very word signifies, dramas with music. The music sets the tone for his masterful style, and every stroke of his brush (Sirk was also a painter) leaves a powerful image on the screen-turned-canvas. But this ain't life but its representation, an imitation of life. Sirk never tried to show reality, on the contrary. None of the directors of his generation made a better use of all the technical devices provided by Hollywood (most notably Technicolor) to distinguish the artificial from the real thing. Let's remember that his golden period coincides with the time when Hollywood films turned its attention into the social drama (Blackboard jungle, Rebel without a cause). Sirk always knew that cinema was meant to be something else.<br /><br />Another of Sirk's statements summarizes this: `You can't reach, or touch, the real. You just see reflections. If you try to grasp happiness itself your fingers only meet glass'. I defy anybody that has seen Written on the wind to count the amount of mirrors and images reflected that appear on screen. One ends up giving up.<br /><br />Therefore, we are in a hall full of mirrors where there's no difference between real and its false copy. Nobody can say that the Hadley are real people. That town ain't real either, with those hideous oil pumps all over the place. So in this realm the acting is affected, the decore is fake, the trick is visible. Everything is pushed a little bit off the limit (the sexual connotations of Dorothy Malone with the oil tower, for example). Sirk was criticizing and theorizing at the same time.<br /><br />`The angles are the director's thoughts; the lighting is his philosophy'. In Written on the wind we follow the fall of a traditional way of life both in a geometrical way and in terms of light and shadows. The Hadleys house, with its different levels connected by the spiral staircase operates in a strictly metaphorical way. A house that resembles a mausoleum, that no party can cheer up. As tragedy progresses from luminous daylight to shadowy night, Sirk's photography becomes an extension of the inner state of his characters, and so are the colours of the clothes they wear. Drama is thus incorporated to every element at the service of the director's craft.<br /><br />Sirk considered himself a `story bender', because he bended the standard material he was assigned with to his style and purpose. Written on the wind is a good example. It wouldn't work in any other hands.<br /><br />The other director that was using similar strategies was Frank Tashlin, who was for 50's comedy the same that Sirk was for melodrama. Their films are full of the machinery of american life -advertising, TV sets, jukeboxes, washing machines, sport cars, vacuum cleaners- to depict its emptiness and decay. I'm inclined to think that their films were regarded in a different way by their contemporary audiences. The game was played by both sides, so it was camp. Now we regard them as `cult' or `bizarre', because we are not those spectators anymore. That is why Todd Haynes's homage `Far from heaven' turns into a pastiche, because it reproduces Sirk's work nowadays as if nothing happened in between. Then Sirk turns exactly into that painting hanging in the art gallery that Julianne Moore and the gardener discuss in the aforementioned film.<br /><br />Sirk understood the elements of melodrama perfectly. There were always immovable characters (Rock Hudson and Lauren Bacall here) against which he could assemble a series of split ones. His balance through antithesis is remarkable and not surprisingly we root for the split characters, because these are the ones Sirk is interested in too. When Robert Stack flies the plane and `tempts' Lauren Bacall with all sorts of mundane comforts of the world below them (obvious Faustian echoes) we are strangely fascinated with him too, as we are when the devilish nymphomaniac little sister painfully evokes her past with Mitch alone by the river.<br /><br />In the Sirk's universe the studio often-imposed `happy ends' have no negative impact. In fact they worked just great. Sirk was fond of greek tragedy and considered happy endings the Deux ex machinea of his day. Thus the final courtroom scene fits well and one must also remember that the whole film is told in flashback, so we know from the very beginning that tragedy will fall nevertheless over the Hadley feud.<br /><br />It was pointed out the many similarities between Written on the Wind with the Godfather saga. I absolutely agree and I'm sure the parallel is not incidental. Both share the theme of the old powerful father head trying to keep his empire going while protecting his family. The temperamental son portrayed by Robert Stack has an amazing physical resemblance with Jimmy Caan's Sonny Corleone. The action of fighting her sister's male friend is symmetrical. The non-son in which the old man put his trust is also common in both films, as the fact that both families carry the names of their town. Even details as the gate that gives access to the property, and the surroundings of the house covered by leaves, suggest that Coppola had Written on the Wind in mind while setting his masterwork. Because both films deal with the subject of Power: the acquisition of power, its manipulation and legacy (even Kyle Hadley's sterility, the event that hastens the turmoil, is an issue easily tied to the central theme of Power, in this case, a weakness in sexual power). The other great film that deals with power and uses american life as its representation is Citizen Kane. One wouldn't think at first of similarities between Welles and Sirk's films but there are a good many, starting with the petrol business as the origin of the family's fortune and ending in the fact that Mitch Wayne (Rock Hudson), as Charles Foster Kane, was adopted by a tutor, having his own father alive. Amazingly, the same actor (Harry Shannon) perform both Wayne and Kane's fathers. This detail is cannot be a coincidence.<br /><br />Written on the Wind is a masterpiece in every aspect, in execution and vision, in style and technique, a highlight in the career of this wonderful director. Some say that this is his best film. In my opinion, `Magnificent obsession', `All that heaven allows', `There's always tomorrow' and `Imitation of life' are just as good. And for those who put Sirk in the level of Dallas or Dinasty I wish them no happy end.\r\n0\t\"Alicianne (Laurel Barnett) becomes a live in babysitter for young Rosalie Nordon (Rosalione Cole) who has recently lost her mother. But Rosalie misses her dead mother a lot and continuously visits her grave (conveniently located in a cemetery right behind the house) late at night...where she also meets her \"\"friends\"\"...<br /><br />This starts off good with a truly eerie sequence in the cemetery...then falls apart. The story is thin and there is TONS of padding to make the film 85 minutes long. The acting is terrible across the board (with Cole easily being the worst). Badly directed with some of the WORST editing I've ever seen in a motion picture. Scenes (and sound) are just cut off with no rhyme or reason. Also the film has terrible (and obvious) post-production sound.<br /><br />As for blood and violence--forget it! There's very little and what there is looks incredibly fake. I've NEVER seen such fake-looking blood--looks like ketchup! Boring, pointless--a rightfully forgotten drive-in movie. You can skip this one.\"\r\n1\tI first saw this film when I was about seven years old and was completely enchanted by it then but for years was unable to find out what the film was called. now i am twenty one and stumbled upon the film by accident about two weeks ago and bought a copy. although my memory of the film was a little hazy I was in no way disappointed by what I saw. the animation in this film is superb conjuring up an entire world that is so believable and so well animated that you are drawn in to the film by that alone. But this film also has a plot that will enchant and entertain adults and children alike. with a floating island, a mad general, a friendly pirate granny and a well constructed love story this film will not let you down I would recommend this film to any one.\r\n0\tThe threesome of Bill Boyd, Robert Armstrong, and James Gleason play Coney Island carnys vying for the hand of Ginger Rogers, a working gal who sells salt water taffy. With the outbreak of World War I, the threesome enlist and pursue Ginger from afar. The first half of this RKO Pathe production is hard going, with the three male leads chewing up the scenery with overcooked one-liners and 'snappy' dialogue that quickly grows tiresome. The second half concentrates on action sequences as the US Navy pursues both a German merchant cruiser and a U-boat. These sequences are lively and well-filmed, but overall this is an overlong and unsatisfying comedy-drama with a flat ending. For fans of the stars only.\r\n1\tThe Contaminated Man is a good film that has a good cast which includes William Hurt, Natascha McElhone, Peter Weller, Katja Woywood, Michael Brandon, Nikolett Barabas, Hendrick Haese, Désirée Nosbusch, Arthur Brauss, and Christopher Cazenove.The acting by all of these actors is very good. Hurt and Weller are really excellent in this film. I thought that they performed good. The thrills is really good and some of it is surprising. The movie is filmed very good. The music is good. The film is quite interesting and the movie really keeps you going until the end. This is a very good and thrilling film. If you like William Hurt, Natascha McElhone, Peter Weller, Katja Woywood, Michael Brandon, Nikolett Barabas, Hendrick Haese, Désirée Nosbusch, Arthur Brauss, Christopher Cazenove, the rest of the cast in the film, Actio, Thrillers, Dramas, and interesting films then I strongly recommend you to see this film today!\r\n1\t\"My name is Domino Harvery. {EDIT *dizzying* CHOP} My--my--my name is Domino Harvey. {CUT, CHOP} My name is Domino Harvey. {EDIT. CUT. Playback}<br /><br />Never have I seen a director take so much flack for his style before. By now it is evident that most people do not appreciate Tony Scott's choppy, flashy, dizzying editing technique. If I have to choose between loving it and hating it, I'd say I love it. It was borderline distracting at times, but the end result was pretty good and it's nice to see a director with a creative edge to his style and some originality (even if it borrows heavily from MTV videos).<br /><br />This stylistic edge manifests itself as Keira Knightley plays the role of cocky badass bounty hunter Domino Harvey and even her dialogue seems strangely choppy. Otherwise she plays her poorly because I pretty much hated her character and did not sympathize one bit with her, no matter how much she suffered. We follow Domino through her life as she joins up with fellow bounty hunters Mickey Rourke, Rizwan Abbasi and Edgar Ramirez. The crew become tangled up in the FBI and suddenly has a reality show contract under Christopher Walken's TV production company (what is Christopher Walken doing in every film, by the way?). I guess that is a clever film technique, because now Tony Scott is free to use as much flashy MTV/Reality Show editing footage as he likes. It becomes a pastiche of MTV culture at this point.<br /><br />It followes then that the story is told at an amazingly rapid-fire pace, with lots of raunchy strong language and gun violence. There are some funny jokes; it's all very modern and surreal at the same time. It's a mess, but it's a rather enjoyable mess. It is ultimately flawed in so many ways (the actors try too hard to make their characters \"\"cool\"\", for one) but it works. I give it a weak 7/10 which may seem generous when compared to the general consensus of movie-goers who graded this film  but I feel it had some good ideas and executed them well.<br /><br />7 out of 10\"\r\n0\tAn older man touches a flower in his wife's greenhouse that seems to be wilting. He gets pricked by it, or bitten by something on it. He quickly becomes ill, and at the hospital spits out a large writhing white larva of some kind. A later attempt to resuscitate him with paddles results in a splatter of blood.<br /><br />A cop is at the hospital because his partner got badly hurt in a shoot-out. Somehow the cop gets paired up with one of the female doctors, as well as an entomologist who is brought in. There are several young kids wandering around the hospital, who I suppose we're supposed to find adorable, but who are extremely annoying little brats. They happen to wander into the room where the specimen is being kept, and happen to dump a growth hormone on it. Horror movie logic would say they deserve to die for this, but they're never even in any danger.<br /><br />The critter grows and starts breeding. People run away from it, and sometimes towards it for some reason. The hospital gets surrounded by military who are prepared to destroy everything if need be.<br /><br />There are no really compelling characters in the movie, and most of the time it seems like people are searching around for the monster. It was fairly boring. Clearly it owes something to the Alien movies, with the monster being born inside a human and having several stages of its growth. There's also a character named Bishop, and the lead actress has Sigourney Weaver's hair.\r\n1\t\"Okay, so Robbie's a little hokey-looking by today's standards, and some of the acting is pretty stilted, and most of the special effects could now be duplicated by a bright 12 year old kid with a decent computer editing program. And don't get me started about the poster.<br /><br />This is STILL a great movie, 40 years after it was released. I grew up watching \"\"science fiction\"\" on the local TV station's \"\"Science Fiction/Adventure Theater\"\" on Sunday afternoons, so I've seen quite a few SF movies from the '50s. At a time when most movies were content to slap a rubber costume on somebody and have him demolish a miniature model of a city, Forbidden Planet forever raised the bar and showed that it was possible to make a science fiction movie which actually had a plot.<br /><br />I doubt that many SF movies made in the '90s will still be considered worth watching in 2030.\"\r\n0\tThe plot of The Thinner is decidedly thin. And gross. An obese lawyer drives over the Gypsy woman, and the Gypsy curse causes him to lose and lose weight... to the bone. OK, Gypsy curses should be entertaining, but the weight-losing gone bad? Nope. Except Stephen King thinks so. And Michael McDowell, other horror author and the screenwriter of this abysmal film, does so, too. The lawyer is not only criminally irresponsible, he is fat too, haha! The Thinner is like an immature piece of crap for a person who moans how he/she has never seen anything so disgusting than fatness. Hey, I can only say: Well, look at the mirror.\r\n1\t\"Once in a while, a film comes along that raises the bar for every other film in its genre. A film of this caliber will influence many films following its release for years to come. `A Chinese Ghost Story' falls in this category. It is arguably one of the best horror films made during the 1980's; possibly one of the best ever made.<br /><br />The filmmakers have crafted a movie that appeals to every horror fan. The story is engrossing and original. The villains are appropriately menacing and frightening. The sets are creepy and atmospheric. There is even a little blood and gore to satisfy the splatter fan of the house. But don't let the `horror' label scare you off, if you're not a fan of the genre. This film easily fits into many different categories.<br /><br />The screenwriter has deftly blended the drama, comedy, horror, kung fu, and romance genres into a delicious deluxe cinematic pizza. `A Chinese Ghost Story' is a beautiful epic love story told, thankfully, without the gratuitous nudity and/or explicit sex scenes that have ruined many Hollywood `love stories'. Those put off by the romantic elements of the story can sit back and revel in the fast-paced swordplay and `wire-fu'. If that's not enough, actors Leslie Cheung and Wu Ma provide enough humorous situations to satiate your appetite for comedy. This film offers something for every film fan.<br /><br />Director Siu-Tung Ching and Producer Tsui Hark assembled a truly amazing cast for this film. Leslie Cheung proves that he is not only a gifted actor, but also a talented singer and a charming physical comedian. I cannot possibly think of a performer other than Cheung who could have portrayed Ling Choi Sin better (except maybe Chow Yun Fat). Joey Wang is enchanting as Lit Su Seen, the enslaved spirit who steals the heart of Cheung's character. Her portrayal of the title character is truly haunting and memorable. Wu Ma is hilarious as the cantankerous Taoist who aids the young lovers.<br /><br />On technical level, this film is very impressive, even by today's standards. The direction is superb. I wish that today's Hollywood executives would seek out talented artists like Siu-Tung Ching rather falling back on the usual MTV video or Pepsi commercial `directors'. The cinematography is gorgeous. You have to commend any cinematographer who can make a film look good when most of its pivotal scenes take place in the dead of night. The special effects make-up is top-notch. In fact, most of the creature effects in this film blow away the shoddy CGI ghouls and goblins that have become commonplace in modern horror films.<br /><br />Since its release, \"\"A Chinese Ghost Story\"\" has spawned two worthy sequels, a full-length animated movie, and countless imitations. None of the films that followed it or copied it were able to capture the magic of this classic, however. This film is required viewing for any horror fan or just anyone looking for great way to spend 95 minutes of your time. 10 out 10.<br /><br />\"\r\n0\t\"This movie was the worst movie I have seen since \"\"Date Movie.\"\" I was laughing through out the whole movie instead of being scared. It was funny how the snakes would search for particular section of the passengers body to attack for example, the eye, the tongue, the butt, the breast. If we have seen national geographic channel we know snakes wont stay clinched on the body once they bite. For each particular scene the snakes would bite the passengers and would stay on the body biting the person. I believe the producer did not study his information on snakes and their behavior. I cant believe I wasted my money on this movie.So I don't recommend this movie trust just wait until it is at the dollar theatre or rent it.\"\r\n0\t\"That song keeps humming in my head. Not the greatest song, but it's the 80's. This movie is about a lead singer who \"\"supposebly\"\" gets killed while being accused of murders as he stalks his girlfriend who sings backup vocals in his band. The lead singer whos name is Billy \"\"Eye\"\" (yeah, right) is dead after two years and his band comes back for a concert only the backup vocalist is the lead singer this time. Billy stalks her and eventually goes around killing all these people and terrifying the girl and makeing people around her think theres something wrong with her and that shes imagining things. She finally decides to go to a cemetary and dig up his grave to see if he's still there. She sees that he's dead but still see's and hears his voice. During the end of the movie we find out the reason behind all of this, Billy has a brother named John (right again) and John admits that he was jealous of his brother and that he killed all those people to get back at him and place the blame on his brother and then take his girlfriend and terrorize her because she called him crazy. The ending is very cheezy and the acting is very lame and wooden. But.... I like it anyway. I watch it for the song. I wish I had it.\"\r\n1\t\"Sisters in law will be released theatrically on march 24th in Sweden. A good occasion for our Nordic friends to discover this original and thoughtful documentary. It was shown in Göteborg together with a retrospective dedicated to Kim Longinotto, \"\"director in focus\"\" of the festival. She gave a master class, very much appreciated, telling about her method as documentary filmmaker and told the audience about the special circumstances which led her to shoot Sisters in law twice : the first version got lost for good, so a second shooting was organized and the film turned out to be different at the end. A pretty awful problem happened, in this case, to create the possibility of a very strong movie.\"\r\n1\tThis movie is actually FUNNY! If you'd like to rest your brain for an hour so then go ahead and watch it. It's called blonde and blonder, so don't expect profound and meaningful jokes. What this movie and enjoy all the stereotypes we have about two blondes. It's just a funny movie to watch on a date or with a company of friends (especially if you're not too sober. Lol ) Pamela and Denise are still pretty hot chicks. It's a mistake to judge this movie as a piece of art. C'mon, this movie is about BLONDES! It's supposed to be light, funny and superficial. One more thing, I do not think that girls will appreciate and like this movie but guy definitely will.\r\n1\tFor those of you who think anime is just about giant reptiles raping schoolgirls, think again. There is a totally different side to the Japanese animation. Yakitate! Japan is one of those shows. It is a sweet-natured tale of a young boy with the gift to make delicious bread. His universe is all about creating a Japanese bread that can match with the famous European breads. The show is as wacky as they come and I'm sure that non-Japanese viewers will miss a lot of the jokes. But it is still very nice to watch because of the complete innocent vibe of the show. <br /><br />In the world of Yakitate! it is not uncommon for people to look like they've just had an orgasm after eating bread. The bread is hallucinating and can give the consumer a wide array of super powers, from time-traveling to swimming like a fish. That weird aspect makes it into one of the least predictable and funny shows I've watched in a while.\r\n1\tThis was excellent. Touching, action-packed, and perfect for Kurt Russel. I loved this movie, it deserves more than 5.3 or so stars. This movie is the story of an obsolete soldier who learns there is more to life than soldiering, and people who learn that there is a time for fighting, a need to defend. I cried, laughed and mostly sat in awe of this story. Good writing job for an action flick, and the plot was appropriate and fairly solid. The ending wasn't twisty, but it was still excellent. If you like escape from New York, or rooting for the underdog, this movie is for you. Not an undue amount of gore or violence, it was not difficult to watch in that respect. Something for everyone.\r\n0\tThe storyline was okay. Akshay Kumar was good as always and that was the only good thing about the movie. Kareena Kapoor looked bad. There was so hue and cry over her size zero but she did not looked good leaner. I don't know why the hell did Anil Kapoor accepted such a bad role. There was nothing much to do for him in the movie. Just because it is a Yashraj film does not means that an actor should accept the role however bad it is. Said Ali khan was alright. I think that it is high time that Indian directors and producers start thinking of Indian customers as intelligent lot. What are we ? fools!!!! What do they think, they will show 2 men taking on a SWAT squad to teeters and we will believe them. Is the Indian police so stupid that they are trying to nab some criminals.... they take an entire squad of 100 + policemen and no one was there to surround the palace. The action was crap and I have never seen such bad action. Akshay Kumar was between a circle of 30-40 policemen all shooting at him..... and he shooting back at them. None of the policemen's bullet touched him but he killed all the policemen. Crap. CRAP.<br /><br />I think the fight director who thought of this scene should take retirement.<br /><br />I strongly recommend NOT TO SEE THIS MOVIE.\r\n0\t\"One of the five worst movies I have ever watched. And I'm not exaggerating. In fact, I recommend watching it so you can get the same feeling of incredulity as you might by watching Showgirls.<br /><br />Out of 400 votes, the movie gets a user rating of 5.3/10. But there is a disproportionate number of voters who gave it a 10/10, probably due to the message of the movie - nuclear weapons are the bane of mankind. Chuck Murdock is an all-star little league pitcher who gives up baseball because there are nuclear weapons. Soon \"\"Amazing Grace\"\" Smith is an all-star Boston Celtic who is inspired by Chuck's story and gives up basketball. Soon all sports leagues from the professional level to college to high school to little league dismantle in a world-wide protest. Later all the children of the world go on a silence strike. This inspires the President of the United States to meet with the Soviet Premier, who in time agree to eliminate all nuclear weapons in time for the start of the next Little League season. The movie ends with Chuck about to throw out the first pitch, with the President telling his new best friend Chuck not to worry about striking out every batter, as he hasn't thrown a baseball in a year.<br /><br />Somewhere along the line a nefarious underworld boss kills Amazing Grace. When the President finds out he is told that the FBI can verify the killer but will never be able to prove it. So the President calls the underworld boss (\"\"But it's one a.m.\"\" \"\"I don't care, get him on the line\"\") and tell him that he is to resign from all company boards that he sits on and sell all stocks that he has. And to not get out of line again.<br /><br />Honestly, this movie was so crappy that I couldn't turn it off. It was on television from 2:30 am to 4:00 am, and I watched it all. I wasn't turned off by the anti-nuclear weapons propaganda. I was turned off by the implausible break down of all organized sports. I don't even understand why \"\"Amazing Grace\"\" Smith was killed. And with all these famous athletes becoming Chuck's friends, why the father was constantly upset with his son taking a principled stand. And there was the cliché moment near the end when dad tells Chuck, \"\"I never told you this, but I'm proud of you.\"\" Cue hug.\"\r\n1\tThis movie is maybe the most touching and uplifting one that I have ever seen. I am not a religious person, but sometimes a great piece of art like this movie can give me an almost religious experience. One suddenly realizes that there is really meaning to life.<br /><br />I must admit that when I first heard about this movie I was sceptical. I thought the plot sounded contrived and I was afraid that the story would be banal. But being a David Lynch fan I decided to give it a go. It took me about 30 minutes to be fully captured by the movie, but then I was completely lost in it. There is so much wisdom and warmth in this movie! I left the cinema feeling that I had truly learned something valuable about life.<br /><br />This is not a typical David Lynch movie, and in some ways it was very surprising that he should make such a film after exploring the dark sides of human nature for so many years. On the other hand, I am not surprised that he manages to convey deep emotions and profound human insight because I also thought he managed that very well in The Elephant Man. Lynch is one of the most gifted directors around and I think The Straight Story is his best yet. 9.5/10\r\n0\t\"I have begun to melt so I will make this review as short and sweet as possible.<br /><br />There's this astronaut, and he goes up in a spacecraft with two other guys, ya know? Except something happens that exposes him to radiation, and then when they come back...well, never mind what happened to the other guys, but our astronaut has begun to melt! No, not just burn up, but MELT! Like an ice cream cone in July! Well OK maybe not that fast, but ya know what I mean.<br /><br />Anyway, he gets all red & gooey, and the fact that he's melting makes him really mad. I guess he also checked out the \"\"melting man\"\" handbook because suddenly he knows that in order to keep from totally melting away, he has to eat human flesh, so he starts ripping people apart.<br /><br />There are other characters, but in a movie where a man melts and melts and melts (and melts), do you really need any others? What's important is WHO will he munch next, and WHAT will be left of them? HOW long will it take for him to just melt away to nothing? WHY was this movie made in the first place? WHERE did they get the money? WHEN will you fall asleep while watching it?<br /><br />I've very nearly melted, but I still have enough time left to tell you that this movie is dreadfully boring, even though the idea is really cool and kind of gross. The makeup is neat but everything else is...SPLAT\"\r\n0\t\"I couldn't wait to see this movie. About half way through the movie, I couldn't wait for it to end. All of the (white) actors were delivering their lines like Woody Allen had just said, \"\"Say it like this...\"\" Then they said their lines on screen like they were trying to imitate Woody Allen. It was so annoying. We all know how Will Ferrell really talks, and he doesn't stumble over his words like Mr. Allen. The comedy portion of this film was just as boring as the tragedy and definitely never funny or even entertaining. I must admit that I have never been a major Woody Allen fan, and this movie definitely has not converted me. I think that his writing was just as bad as his direction. This movie will go down as one of the worst 10 movies I have ever seen.\"\r\n1\tThis is a small film , few characters ,theatrical.And yet it says something about Ireland that you won't find elsewhere.This film IS IRELAND. In all it's grubiness, it's sadness,it's self-delusion.The Boys , Master Doyle , SP O'Donell, The Cannon , Senator Doogan's daughter , Gar and above all Madge.I know them.I'm in the pub with them or kneeling to pray with them. They are our sad history and they are our present.\r\n0\tThe plot was dull, the girls were sickening and the supposed Italian male lead had clearly never heard an Italian accent.Someone said the boys were cute in this film but it just seemed to be filled with mediocre people. There were literally no redeeming features about this film.<br /><br />I think this is a graveyard for actors that will never work again, with the unfortunate exception of the Olsen twins who seem to fascinate people for no discernible reason.<br /><br />I hope the Olsen twins find something out of the limelight to keep them away from the entertainment business. They have no place in it.\r\n0\tI saw this recently with my wife and discovered it's better than Caine believes, although it's not much cop. Britain's greatest ever screen actor does not seem too interested in this role, which is a pity as he might have elevated it with more conviction in his playing. Rex Harrison seems even less bothered, perhaps unsurprisingly, as his character is very poorly written. William Holden is better, but his screen time is fleeting and, again, his character is not well scripted.<br /><br />Beverly Johnson is as beautiful a woman as I have ever seen, but is given very little to do, the film might have gained a great deal by concentrating more on her story. Ustinov steals the show, but basically by playing a comic character quite out of keeping with the film's serious tone. The music is poor and Omar Sharif makes one of his many pointless cameos (his career has been based on this for decades now).<br /><br />Richard Fleischer has to be blamed for not directing this more effectively, he was an infuriatingly unpredictable film director, and this is one of his weaker movies.\r\n0\tWhen a comedy movie boasts its marvelous soundtrack on the back cover you know your not dealing with a top notch movie. I rented this movie with friends expecting to get some chuckles but overall to get most of our laughs off each other making fun of the movie. We couldn't have chosen a worse movie.<br /><br />The movie may have been alright with a few changes. First off, the comedy was painful. Physical gags were poorly performed and placed. The fat kid in the movie made us want to kill ourselves, bless him for trying scene in and scene out but he was like a puppy begging for love. If he had been pulled from the movie everything might have been bearable. There were some funny jokes, I believe one was when the group of boys steal one of the parent's porn movies and it turns out to be gay porn. But to best sum up the comedy I will simply tell the opening gag for the fat kid. He wears a puke stained shirt and talks about not knowing when something is done.<br /><br />To finish off, the editor of the movie could have saved the movie by removing the fat kid, cutting out 20 minutes of the school scenes and making an ending that is longer than thirty seconds of random bickering.<br /><br />OH, BTW, there are two good elements that the movie possesses. Kadeem Hardison plays his role wonderfully and performs his jokes so that none are missed or under-appreciated. The other redeeming element to the movie is the beautiful Mrs. Ali Landry. Her character is ignored most of the movie which is a shame.<br /><br />Don't waste your time even renting this one. It didn't appeal to me and I was part of the target audience (18 male).\r\n0\tIf you like a syfi soap opera this show is for you, as fare as I am concerned it does not work for me and after watching 3 episodes I just can't watch it anymore. It is boring and slow and for a show that the timeline is based around 100.000+ years ago if you base it on battlestar galactica's timeline for arriving on earth they sure seem to have all the same stuff around like the 100.000 year old Chevy vans driving down the streets and people watching the 100.000 year old popular name brand LCD T.V. sets. It also goes the same with the rest of the sets as well on the show, there is just to much of today's stuff involved in it to not overlook, I think they could have done a lot better of a job to get around these issues and yes battlestar galactica had some of the same issues but not nearly as bad. As fare as the rest of the show it is not nearly as good as BSG was and it is a poor pre sequel to it.\r\n1\t\"It is a rare occasion when I want to see a movie again. \"\"The Amati Girls\"\" is such a movie. In old time movie theaters I would have stayed put for more showings. Was this story autobiographical for the writer/director? It has the aura of reality.<br /><br />The all star cast present their characters believably and with tenderness. Who would not want Mercedes Ruehl as an older sister? I have loved her work since \"\"For Roseanna\"\".<br /><br />With most movies, one suspends belief because we know that it is the work of actors, producers, directors, sound technicians, etc. It was hard to suspend such belief in \"\"The Amati Girls\"\". One feels such a part of this family! How I wanted to come to the defense of Dolores when her family is stifling her emotional life. And wanted to cheer Lee Grant as she levels criticism at Cloris Leachman's hair color. The humor throughout is not belly laugh humor, but instead has a feel-good quality that satisfies far more than pratfalls and such.<br /><br />The love that is portrayed in this cinema family is to be emulated and cherished.<br /><br />It is no coincidence that the family name, Amati, translated from the Italian means 'the loved ones'.\"\r\n0\tThis seems like two films: one a dreary, pretentious lengthy saga about an ac-tor who is taken over by the parts he plays; the other a brilliant social comment about a middle aged divorce who is picked up by a waitress. Shelley Winters is wonderful as a waitress with another business on the side. She drops heavy hints about the need for connections, her certificate in massage and her desire to get into the modelling game. I love the glimpse of her seedy flat with a kitchenette behind a curtain, and her terrible seducing outfit of navel-revealing, puff-sleeved crochet top.<br /><br />Do actors get Oscars for Shakespeare? We know they Oscars for impersonating disabled people, wearing a lot of prosthetics, or pretending to be mad. The Shakespearean scenes (which go ON and ON) are embarrassing and dated. And so are the 'going mad' scenes where Tony looks distracted while listening to his own voice-over.<br /><br />By the way, Anthony John is not aristocratic. He makes it quite clear in an early scene that he used to be a chorus boy. When he quotes his father's advice, he slips into a Cockney accent.\r\n0\tAs an Army veteran, I was deeply offended by this film. In my opinion, it is a disgrace to those who fought in the Vietnam war. To say that the real SF soldiers I knew were offended by this crap is an understatement. If the film were presented as satire or even as a cartoon (it was), it would have been better received. But it was taken seriously my many people, especially overseas. Silly as it sounds, wherever I went in Europe in the late 80's people seemed to judge me and Americans in general by this film. Unrealistic? Hmm, let's see. A monosyllabic, muscle-bound cretin is pulled off a prison work gang to go on a secret mission to SE Asia to free some American POW's. In a running battle he kills about 500 enemy soldiers with an M-60 machine gun that never runs out of ammo and never overheats. And he never misses, running with a 32lb gun held up with one arm. I could go on, but I'm getting a headache. I gave this a 2/10 only because it's slightly better than Rambo III.\r\n1\tOne of Disney's best films that I can enjoy watching often. you may easily guess the outcome, but who cares? its just plain fun escape for 1 hour forty-two minutes. and after all wasn't movies meant to get away from reality for just a short time anyway? The cast sparkles with delight. -magictrain\r\n0\tSPOILER ALERT In this generic and forgettable action movie, Lorenzo Lamas does his usual tough guy/pretty boy act, and his future real life ex Kathleen Kinmont is ass kicking hot chick Alexa. OJ Simpson is a detective, coasting by on his since vanished genial public persona. Translation: cable TV filler. There isn't enough skin to qualify this as a Guilty Pleasure.<br /><br />The script has some gaping holes. Best/Worst Moment: In one jarring scene, OJ's partner expresses his aversion to the morgue. OJ responds that some of the bodies are pretty hot, or words to that effect. This vague necrophilia reference is offensive enough; but in light of the murders committed shortly after this movie was released, it is truly appalling, and therefore entertaining in an unintentional, horrible way. I was so startled that I laughed until champagne came out of my nose. Now THAT'S a Guilty Pleasure. BC\r\n1\tI miss Dark Angel!..<br /><br />I understand not ever one likes it, but as far as I'm concerned the show should not have been canceled, especially for another space show mock up...<br /><br />I'm reading the books now. they are doing a pretty good job of explaining somethings, but I still think we should get a TV movie or something.<br /><br />THE FREAK NATION LIVES!!!!!!!!\r\n1\tThis movie is why I found this website. I couldn't find this movie anywhere else! I am so glad we found it here! We have seen it on TV before and wanted desperately to find it and buy and have several friends interested in buying it. One other poster commented that it is was boring, though I must say that it is NOT. Especially if you are a horse person, you will love this movie. The horses are awesome, well trained and the movie is well done. It is certainly one we will be purchasing for our home DVD library. We will be recommending it to our friends. The bond made between man and horse in this film was so inspiring and made you want to spend more time with your horses. This is certainly a movie that we will watch several times.\r\n1\tGreat drama with all the areas covered EXCEPT for screenlay which was too slow and should have shown more relevant scenes like Pitt's character interviewing the President,or Pitt getting murdered instead of just having it described to us.Scenes like those would have kept the audience awake.Cutting away some useless minutes could have made more room for more heartpounding scenes like those.The dragging of the film kept this one from all time greatness although to see Pitt here makes the film so worth watching.Also,big fans of fising,early 20th century styles and Montana will really like this as well........\r\n1\tJohn Waters most accessible film to date is one of his better ones, considering it cut down on all of the campiness and outright vulgarity which seem to litter most of his previous work. Sure, the nudity and the sexual references are still there, at least it is presented in a fashion<br /><br />that cannot be deemed too foul or disgusting. Due to some great casting choices, this film really brought out the silliness associated with modern art and the subjective nature of your modern artist. Funny and somewhat lighthearted (if that is possible for Waters), this is one of those films I would watch on a rainy day.\r\n0\t\"When I saw this at a shop I thought it looked really good and original. Like Wolfs Creek meets Texas chainsaw massacre, and I mean it only cost three quid (around $6). To be honest I don't think it was even worth that.<br /><br />It seemed like the directors- the 'butcher brothers' couldn't decide whether wanted to do a artsy sort of horror or a gory slasher horror. It ended up with a cliché ridden gory sadistic hour and fifteen minutes with all the characters being one dimensional and you couldn't care less what happened to them but to try to make the audience care about the characters they added a useless monologue at the end and the beginning of the film which to be perfectly honest wasn't needed.<br /><br />The only good part really was the middle/end- I won't ruin it for you. But that was the only \"\"good \"\"part.<br /><br />Overall a pointless watch. It felt like a two hour film but was in fact only 75 minutes. If you want an artsy film-don't bother. If you want a slasher movie- don't bother- The film moves so slowly with nothing ever happening.\"\r\n0\tThough I've yet to review the movie in about two years, I remember exactly what made my opinion go as low as it did. Having loved the original Little Mermaid, and having been obsessed with mermaids as a child could be, I decided I'd take the time to sit down and watch the sequel.<br /><br />Disney, I've got a little message for you. If you don't have the original director and actors handy...you're just looking to get your butt whooped.<br /><br />In the sequel, our story begins with a slightly older Ariel and her daughter, Melody. My first big issue was that Eric and the rest of the crew sang. Yes, I understand that Disney is big on sing-and-dance numbers, but really, that's what made Eric my favorite prince. He was calm, collected, and a genuine gentleman that knew how to have fun. And he DID. NOT. SING.<br /><br />And then there's the villain. Oh, how could we forget the shivers that coursed down our spines whenever Ursula slunk onto the screen, terrifying both Ariel and audiences around the world? Unfortunately, that gene was not passed on to her seemingly useless sister, Morgana. Nothing was ever, EVER said about Morgana in the first movie; she just pops out of nowhere, trying to steal the baby. Oh, how cute. The younger sister is ticked off and instead of going after the trident, decides to kidnap a month-old baby. Gag me.<br /><br />Other than being a flat character with no sense of originality in her, Morgana was just very unorthodox. The same plan as her sister, the same minions (who, by the way, did not scare anyone. I had a three year old on my lap when I watched this movie, and she laughed hysterically.) She had no purpose being in there; I'd like to have seen Mom be the villain. I'm sure she would have done a better job than Little Miss Tish over there.<br /><br />King Triton held none of the respect he'd earned from me in the first movie, and don't even get me started on Scuttle, Sebastian and Flounder. Triton was a stern but loving father in the first movie, and in the second, it's almost like he's lost his will to knock fear into the hearts of his subjects. Scuttle, once a comic relief that made everyone laugh with his 'dingle-hopper' (yes, I'll admit it; I did call my fork a dingle-hopper from time to time after that). In this film, Scuttle's all but forgotten. A supporting character even in the first, he at least added something to the movie. He was rich with a flavor the others didn't have, and in the sequel, they all but stripped it from him entirely. Sebastian was still the same, but twice as worrisome as before. Disney, don't do that. Don't even try to mess with our favorite crab. Or our favorite little fat fish, who becomes a dad and has a multitude of very annoying children. He's fat, and he's bland, and he looks like he's going to flat line any second.<br /><br />The walrus and penguin were unneeded, and after a while, you just start to resent everyone. Especially Melody, who has no depth to her whatsoever.<br /><br />And one of these days, Disney, I'm kicking out of my life.<br /><br />If I didn't love your originals so much.\r\n1\t\"I never fail to be amazed and horrified by the evil that has been predicated in the history of the world in the name of religion, and it seems that the machinations of the Catholic Church in Twentieth Century Ireland rank right up there near the top - considering that the wisdom of history and modern times should have had some sobering effect.<br /><br />A Love Divided is the story of a real family scarred by ignorant intolerance and prejudice all in the name of an inane Church doctrine. At the beginning of the film, we are offered a view of the bucolic life in a small Irish village in which Sheila and Sean Cloney are happily married with two young children. Sean is Catholic and Sheila is Protestant, but she has no qualms with their children being raised as Catholic. There is no sign of any animosity between the Catholics and Protestants in the village. The peaceful and loving relationships are soon shattered when Sheila expresses the desire to have their older child attend the Protestant school. The local priest takes it upon himself to forbid this \"\"sin\"\" and soon has Sheila's husband and the entire Catholic population of the village turned against her as well as her father, the local dairy farmer. In an act of defiance and desperation, Sheila kidnaps her two daughters and flees from the area.<br /><br />Special note should be given to Orla Brady who plays Sheila. She gives an extremely powerful performance in which the viewer is drawn in to the emotional trauma in which she decides to reject the wishes of a husband she deeply loves in order to express her fervent desire to establish herself as independent from the pressures of the establishment. On an equal footing is Liam Cunningham who plays Sean for he gives a realistic portrait of a man not nearly as complex as his wife who is torn between his love for her and the influence of Church and community.<br /><br />If fiction, this film would have been a compelling and interesting drama. Considering it is true, it changes to a horrific tragedy. In real life, the people and the village never fully recovered from the events that took place there. It took almost half a century for the Church to acknowledge its negative role in the events, and even though Sheila and Sean lived out their lives in the area, they never fully recovered from what was done to them by the religious leaders and their fellow villagers.<br /><br />Whether it be denying basic rights to education of choice, crashing planes into buildings, subjugating women, condemning whole races, or just plain on torture and murder, we humans certainly have the ability to use religion as a powerful negative force in our society.\"\r\n0\tWhen i first saw this film i thought it was going to be a good sasquatch film. Usually when you have these types of movies there's generally ONE sasquatch, but in this one there is like what? 7 or 10 of them?. Acting was good, plot was OK, i liked the scenes where the sasquatch is killing the first few victims, very good camera work. I was expecting it to be a gory film but it was very little. This movie was way better than Sasquatch. The SCI-FI channel really needs to make more sasquatch films, i mean i really liked Sasquatch Mountain, Abominibal was not good, the one i'm reviewing is OK, but the movie Sasquatch was not, but I'm not reviewing that so let me get back on track. This movie is good for a rainy Saterday afternoon, but for any other occasions, no.\r\n0\tI agree with most if not all of the previous commenter's Tom (bighouseaz@yahoo.com). The Zatoichi series is a great character study combined with great sword fighting and excitement.<br /><br />I have seen Zatoichi 1-13,15,16; I believe 14 has not been released on Zone 1 (usa). Zatoichi the Outlaw was disappointing. The story line was complicated, and seemed to be a hodgepodge of many previous Zatoichi story lines. At one point, I was wondering if I was not seeing a remake of a previous Zatoichi film.<br /><br />This film was disappointing because it started to depend on effects (a head rolling, limbs severed, blood) and less on the nobility of the Zatoichi character. All the previous films succeeded based on the storyline and action, and won a great following without having to resort to effects.<br /><br />I am just hoping that the remaining Zatoichi films do NOT follow the same trend. This is the first Zatoichi film from his studio. I highly recommend all the previous Zatoichi films -- and recommend them.\r\n0\tInteresting story about a soldier in a war who misses out on saving the life of a young girl from the enemy and is haunted by this event, even though he did save many other captive children. The film flashes a head and this soldier is now a teacher in a high school that is managed mostly by policemen patrolling the hallways, bathrooms and even class rooms. In other words, the High School is a prison and most of the kids pay very little attention to their teachers or principal. Dolph Lundgren,(Sam Decker) plays the soldier/school teacher and decides he is going to quit teaching and go into another field. However, the principal asks him to have a Detention Class as his last duty as a teacher. It is at this point in the film when all Hell breaks loose and the story becomes a complete BOMB. Try to enjoy it, if you decided to View IT !\r\n1\tArthur has always been a personal film for me for two reasons. A good friend of mine who worked on the film as an extra and to help out with the horses during the stable scene just recently passed away. If you look fast you can see Frank Graham during the restaurant scene in the background while Dudley Moore and Jill Eikenberry are in conversation. Frank was a champion equestrian and will be missed by all who knew him.<br /><br />Secondly though, I actually knew a real life Arthur Bach. He was not quite as wealthy as Arthur, but spent 47 years of his life basically as a kid. His parents tightly controlled his purse strings, but his rent and utilities were paid for in a basement apartment in Greenwich Village. He spent a good deal of his time getting himself intoxicated on various spirits and making a public spectacle of himself, just like Dudley Moore does. <br /><br />The wonder with Arthur is why anyone would bother with him wealth of not. But that's the other half of the equation. My friend was a most charming person when you got to know him. In fact it was almost a compulsion to be charming. He couldn't buy a newspaper or magazine without trying to establish some level of relationship with the vendor. He spent his life being a perfect party guest. The term wastrel which was in common use in the 19th century would apply to him.<br /><br />And that's what Dudley Moore is, a wastrel. Unlike my friend Moore has John Gielgud to clean up after him. That's a full time job as we see demonstrated in Arthur. My friend also never found a Liza Minnelli, a male Liza Minnelli in fact because he was gay. Still Moore's portrayal of Arthur Bach is deadly accurate and so real for me.<br /><br />Arthur, 20th century wastrel, is being forced to marry another trust fund baby in Jill Eikenberry. Since he won't work for a living, the threat of being cut off is quite real for him. He only has his butler Hobson played by John Gielgud and chauffeur Bitterman played by Ted Post to pour his troubles out to. We should all have such troubles.<br /><br />John Gielgud in his nearly century of life certainly did better work than in Arthur on film and in fact Gielgud is more prominently known for his stage performances. Yet 1981 was a year of sentiment at Oscar time. The Academy gave Henry Fonda and Katharine Hepburn Oscars for On Golden Pond and Gielgud the Best Supporting Actor Award essentially for the work of a lifetime. That man was amazing, still at his craft almost to the end.<br /><br />So to Frank Graham who worked in the film and to Jackie Weiss, a genuine real life Arthur, I dedicate this review.\r\n1\tRated NR(would be Rated R for Pervasive Strong Language and Crude Sexual Humor). Quebec Rating:16+(should be 13+) Canadian Home Video Rating:18A<br /><br />Eddie Murphy Delirious is Eddie's first stand up comedy routine.This came out in 1983.Back then he starred in the movie 48 hrs and Trading Places and he was on Saturday Night Live.Eddie made two stand up comedy films.Delirious and Raw.I preferred Raw because I just found the subject matter to be more humorous.Delirious however is also very funny with Eddie talking about his childhood and making fun of celebrities such as Mr.T and singers such as Michael Jackson.Any fan of stand-up comedy films should see Eddie Murphy's Delirious.\r\n0\tSaw a trailer for this on another video, and decided to rent when it came out. Boy, was I disappointed! The story is extremely boring, the acting (aside from Christopher Walken) is bad, and I couldn't care less about the characters, aside from really wanting to see Nora's husband get thrashed. Christopher Walken's role is such a throw-away, what a tease!\r\n1\tI loved this film when I was little. Today at 17 it is one of my all time favorite animated films. Beautiful animation and appealing characters are just two of the things to like about this film. Although many people might not enjoy some of the songs, most of them are well-done and go along with the story. It focuses on Charlie, a roguish handsome German Shepard who may seem unlikable to some at first... but eventually will win you over.<br /><br />Not a kiddie film by any means. Often very dark and frightening at times. A treat for Don Bluth fans and animation buffs. But do keep a tissue in handy. ADGTH never fails to make me cry and will do the same for those who are movie sensitive. Arguably one of the greatest non-Disney animated films of all time. Along with Watership Down and My Neighbor Totoro.<br /><br />BOTTOM LINE: A heavenly masterpiece.\r\n0\t\"If movies like Ghoulies rip off Gremlins, then Hobgoblins sinks to the new low of ripping off garbage like Ghoulies. These barely-animated furbies have some kind of scheme to fulfill fantasies (which involve basically groteque characters' sex dreams - oh joy), but what that has to do with anything is anybody's guess, except to let the director indulge his kinky penchant for erotica. They show this down in the 8th circle of Hell, one suspects. There's no real plot - just \"\"goblins - kill!\"\" and feeble attempts at humor and a mild attempt to arouse the viewing audience.\"\r\n1\t\"This is a very, very early Bugs Bunny cartoon. As a result, the character is still in a transition period--he is not drawn as elongated as he later was and his voice isn't quite right. In addition, the chemistry between Elmer and Bugs is a little unusual. Elmer is some poor sap who buys Bugs from a pet shop--there is no gun or desire on his part to blast the bunny to smithereens! However, despite this, this is still a very enjoyable film. The early Bugs was definitely more sassy and cruel than his later incarnations. In later films, he messed with Elmer, Yosimite Sam and others because they started it--they messed with the rabbit. But, in this film, he is much more like Daffy Duck of the late 30s and early 40s--a jerk who just loves irritating others!! A true \"\"anarchist\"\" instead of the hero of the later cartoons. While this isn't among the best Bug Bunny cartoons, it sure is fun to watch and it's interesting to see just how much he's changed over the years.\"\r\n0\tThis movie is entertaining enough due to an excellent performance by Virginia Madsen and the fact that Lindsey Haun is lovely. However the reason the movie is so predictable is that we've seen it all before. I've haven't read the book A Mother's Gift but I hope for Britney and Lynne Spears sake it is completely different than this movie. Unless you consider ending a movie with what is essentially a music video an original idea, the entire movie brings to mind the word plagiarized.\r\n0\tAn executive, very successful in his professional life but very unable in his familiar life, meets a boy with down syndrome, escaped from a residence . Both characters feel very alone, and the apparently less intelligent one will show to the executive the beauty of the small things in life... With this argument, the somehow Amelie-like atmosphere and the sentimental music, I didn't expect but a moralistic disgusting movie. Anyway, as there were some interesting scenes (the boy is sometimes quite a violent guy), and the interpretation of both actors, Daniel Auteil and Pasqal Duquenne, was very good, I decided to go on watching the movie. The French cinema, in general, has the ability of showing something that seems quite much to life, opposed to the more stereotyped American cinema. But, because of that, it is much more disappointing to see after the absurd ending, with the impossible death of the boy, the charming tone, the happiness of the executive's family, the cheap moral, the unbearable laughter of the daughters, the guy waving from heaven as Michael Landon... Really nasty, in my humble opinion.\r\n1\tI really enjoyed this. I got it thinking it was going to be a documentary, but it revealed itself as a good piece of tongue in cheek fun.<br /><br />I think this has been well done, pretty much an extended TV show into a film, but due to the characters or rather original actors willingness to have fun and be made fun off helps this work in a great old style Innocent way.<br /><br />If you are a fan of the original TV series then i am sure you will enjoy this.<br /><br />Q\r\n0\t\"Very outdated film with awful, cliché-ridden and mawkish dialog and a very poor construction. In addition, Cassavetes and Falk overact constantly. A pseudo \"\"good movie\"\". It takes no time to discover how catastrophic this intellectual turkey is. The first scene is a total bore, filled with histrionics and hysteric exchanges. The sound is horrible. Camera movements are without imagination as is the building of characters. No poetry, no subtle psychology, no interesting shots. The actors smoke constantly and we see ads for beer beverages. Very cheap, indeed. (one exception : Ned Beattie\"\"s nice and simple way of playing the hit man).\"\r\n1\tI really enjoyed this movie.I was fifteen when this movie came out and I could relate. This will be a movie I would show my kids to let them know, the feelings they are having are normal. It is funny to see how we could be so devestated by things at such a young age..who knew that we would bounce back....again and again....Great movie!!!!\r\n1\t\"2005 Toronto Film Festival Report It is official; \"\"Takashi Miike\"\" is whacked.<br /><br />The annual midnight screening of the new \"\"Takashi Miike\"\" film, \"\"The Big Spook War\"\" or \"\"The Great Yokai War\"\" or \"\"Yôkai daisensô\"\". Call it what you will this is a fanatical ride.<br /><br />Colin Geddes, the fearless programmer stated this film was originally geared towards children in Japan. Think of \"\"Lord of the Rings\"\" or \"\"Neverending Story\"\" for Japan. After the screening I can understand where they were going with that, but damn this is \"\"Takashi Miike\"\" after all. He directed the '01 film \"\"Ichi the Killer\"\", when it screening at the festival barf bags were handed out at the screening. And no, that wasn't just a marketing ploy.<br /><br />Plot Summary: A young boy with a troubled home life becomes \"\"chosen,\"\" and he stumbles into the middle of a Great Spirit war, where he meets a group of friendly spirits who become his companions through his journey.<br /><br />This is not really for kids, well not 'too' young. Certainly see them getting scared shitless with some of these spirits (even the friendly ones) on display. This is unlike anything I've seen in the movie theater before. A fantasy naturally, some very funny (but dark) material. You will not be bored can guarantee that. Will this ever hit North America? Doubtful.<br /><br />My rating = B\"\r\n1\tIn 1990 Brad Pitt and Juiliette Lewis did a TV Too Young To Die where both played the almost the same kind of parts that they do in Kalifornia. I have no doubt that is what led to their casting in this big screen film.<br /><br />Kalifornia finds aspiring writer David Duchovny and his girl friend, art photographer Michelle Forbes on a rocky relationship of sorts due to Duchovny's obsession with writing a book and getting in the minds and souls of serial killers. In fact he's got a most unusual odyssey planned, he wants to go cross country and visit the sites of several famous serial killers. But he and Forbes are flat broke.<br /><br />Fate intervenes in more ways than financial with the arrival of Brad Pitt and Juliette Lewis a pair of strange southern types who agree to split the cost of gas on this cross country trip. It turns out Pitt is a serial killer himself and he decides to do a little research on his own, delving into the mind of someone who is fascinated with amorality.<br /><br />Kalifornia is not the type of film I usually go for, but in fact the acting ability and charisma of Brad Pitt make it work to a large degree. Pitt is the walking definition of an inbred Gothic refugee from Deliverance. But better than he is is Juliette Lewis who once again is playing these low self esteem types which she seems to do well. Watch her scene with Forbes as she does her hair and Lewis describes her sad and pathetic life. Lewis's dialog and Forbes's reactions ought to be shown in acting classes around the country.<br /><br />For those who like their slasher flicks, they don't come better than Kalifornia.\r\n0\t\"I always wrote this series off as being a complete stink-fest because Jim Belushi was involved in it, and heavily. But then one day a tragic happenstance occurred. After a White Sox game ended I realized that the remote was all the way on the other side of the room somehow. Now I could have just gotten up and walked across the room to get the remote, or even to the TV to turn the channel. But then why not just get up and walk across the country to watch TV in another state? \"\"Nuts to that\"\", I said. So I decided to just hang tight on the couch and take whatever Fate had in store for me. What Fate had in store was an episode of this show, an episode about which I remember very little except that I had once again made a very broad, general sweeping blanket judgment based on zero objective or experiential evidence with nothing whatsoever to back my opinions up with, and once again I was completely right! This show is a total crud-pie! Belushi has all the comedic delivery of a hairy lighthouse foghorn. The women are physically attractive but too Stepford-is to elicit any real feeling from the viewer. There is absolutely no reason to stop yourself from running down to the local TV station with a can of gasoline and a flamethrower and sending every copy of this mutt howling back to hell. <br /><br />Except.. <br /><br />Except for the wonderful comic sty lings of Larry Joe Campbell, America's Greatest Comic Character Actor. This guy plays Belushi's brother-in-law, Andy, and he is gold. How good is he really? Well, aside from being funny, his job is to make Belushi look good. That's like trying to make butt warts look good. But Campbell pulls it off with style. Someone should invent a Nobel Prize in Comic Buffoonery so he can win it every year. Without Larry Joe this show would consist of a slightly vacant looking Courtney Thorne-Smith smacking Belushi over the head with a frying pan while he alternately beats his chest and plays with the straw on the floor of his cage. 5 stars for Larry Joe Campbell designated Comedic Bacon because he improves the flavor of everything he's in!\"\r\n0\tTo describe this film as garbage is unfair. At least rooting through garbage can be an absorbing hobby. This flick was neither absorbing nor entertaining.<br /><br />Kevin Bacon can act superbly given the chance, so no doubt had an IRS bill to settle when he agreed to this dire screenplay. The mad scientist story of 'Hollow Man' has been told before, been told better, and been told without resorting to so many ludicrously expensive special effects.<br /><br />Most of those special effects seem to be built around the transparent anatomical dolls of men, women and dogs you could buy in the early seventies. In the UK they were marketed as 'The Transparent Man (/Woman/Dog)' which is maybe where they got the title for this film.<br /><br />Clever special effects, dire script, non-existent plot.<br /><br />\r\n0\tThis guy has no idea of cinema. Okay, it seems he made a few interestig theater shows in his youth, and about two acceptable movies that had success more of political reasons cause they tricked the communist censorship. This all is very good, but look carefully: HE DOES NOT KNOW HIS JOB! The scenes are unbalanced, without proper start and and, with a disordered content and full of emptiness. He has nothing to say about the subject, so he over-licitates with violence, nakedness and gutter language. How is it possible to keep alive such a rotten corpse who never understood anything of cinematographic profession and art? Why don't they let him succumb in piece?\r\n1\t\"Keeping all political views aside, Feroz Khan and Anil Kapoor's 'Gandhi, My Father' is a good movie that cleverly explores the confused-towards-family side of Mohandas Karamchand Gandhi, and the fight of his eldest son Harilal Gandhi with the society, his larger-than-life father, and most importantly demons in his head. One draws parallels to Gandhi the father of the nation and struggles any son could have with their father<br /><br />The acting is good. Shefali Shetty, Darshan Zariwala and Akshaye Khanna-strictly in that order- add color and pathos to this heart wrenching tale of Harilal who weeps to be hugged just once and also runs away at the faintest touch of the finger.<br /><br />Feroz Khan's direction and the production canvas is lavish and attractive, however, the screenplay could've been tighter. I had seen the play some years ago on a pirated video type DVD (it was called Mahatama vs Gandhi, I think) and it was certainly more gripping. Though, the movie's background score and the father-son and mother-son moments are just a brilliant treat.<br /><br />This movie could have been great. It's borderline to that. It has the potential so huge to have been just a story differences between a father and son or just Gandhi or even both. somewhere, the plot is lost and when you expect absolute epitome of emotions, nothing comes to you.<br /><br />It compares decently to other Gandhi's. Certainly not an overview film like Kingsley's Gandhi,or abstract as Kamal Hassan's Hey Ram. The film just about manages to find its footing; however, one is left wondering \"\"what if...\"\" Worth a watch. 7.5/10\"\r\n0\t\"Despite a decent first season this series never came close to realizing its potential. Set as a prequel to the original \"\"Star Trek\"\" series it was doomed almost from the start by an executive producer, Rick Berman, who felt compelled to artificially limit and constrict the definition of what a \"\"Star Trek\"\" series could be (which made this futuristic show increasingly anachronistic from a dramatic standpoint). The actual show-runner, Brannon Braga, didn't help matters by his uninspired and tired rehashing of previous Trek episodes and careless disregard of the franchise's internal mythology (it was painfully obvious early on that he was in it only for the paycheck). Never have I seen a series' that so consistently did a disservice to a cast of talented actors (Jolene Blaylock excepted)last so long. It is as if this entire series was produced in bubble existing outside the contemporary television landscape where the audience (even a Trekker audience) is more demanding and sophisticated in their dramatic wants and desires. Unfortunately it appears as if Berman and Braga have succeeded in convincing the higher ups at Paramount that \"\"Enterprise\"\" suffered from \"\"franchise fatigue\"\" and that its core audience was did not walk away but was driven off. Produce a quality offering that lives up to the high ideals and standards of its predecessors and they (the audience) will come.<br /><br />Simply put, In a TeeVee universe where we are given shows like \"\"Battlestar: Galactica\"\" and \"\"The Shield\"\" the powers-that-be must give the viewing public a \"\"Star Trek\"\" that measures up and is dramatically competitive. It is just that straightforward and easy.\"\r\n1\tthis is one of the funniest shows i have ever seen. it is really refreshing to watch and i was in stitches many times. i guess there is a social awareness factor to this too which makes it quite interesting. if these were white girls would they get the same reaction? maybe they would, maybe they wouldn't? the characters know no limits (check my lyrics) and do not exclude anyone from their twisted sense of fun!There are so many funny sketches. my favorites is the bob the builder one. it's so silly it's genius. if you like twisted black comedy then this is for you. if you like keeping up appearances it probably isn't.3 non blonde's is yet another hilarious British BBC comedy shown on TV! It is such a funny show and the characters unleashed on the unsuspecting public are laugh at loud funny! It would be impossible to keep a straight face watching the crazy characters and the reactions of the public! This series easily adds to the excellent comedies being produced!\r\n0\tI've seen a lot of crap in my day, but goodness, Hot Rod takes the cake. I saw a free screening in NY the other night. I can only hope they show the funny version to the paying customers. The big laughs were sparse, the plot was uninteresting, and the characters were one dimensional at best. One highlight is a hilarious dancing scene with Adam Samberg. It was priceless and was the only scene I truly had a hearty laugh at. Other than that, I can only recollect randomness and dead air. SNL & Samberg fans may be disappointed. I know I was expecting more from it. But it short, I definitely would not recommend attending a free screening or paying to watch this film.\r\n0\t\"This series has its ups and occasional downs, and the latter is the case, here. There's an agreeable amount of spatter, with an inventive implementation of the Baby Cart's weapons, but the editing film is a seriously disjointed, the film-making itself rougher than usual. At times, the action slows to a crawl as the camera follows the wordless wanderings of the \"\"cub,\"\" who nearly gets lost early on. All in all, disappointment.<br /><br />That said, there's a spaghetti eastern quality to the music and action that may win the approval of dedicated viewers. This installment spends much of its time following the minor misadventures of the little boy, who begins to stare into the abyss of death his father opened for him.\"\r\n0\tI know I've already added a comment but I just wanted to clarify something...<br /><br />I'm not some old fogey from the Baby Boom generation that grew up glued to a flickering b/w picture of Phil Silvers, Jackie Gleason etc.<br /><br />Bilko was already 20 years old before I was born but I had the pleasure of discovering Phil Silver's Bilko courtesy of BBC2. I wonder if I would have enjoyed Steve Martin's travesty if I hadn't seen or heard of Phil Silvers - I don't know - maybe I would have.<br /><br />Some of the other reviewers who think this movie is worthy of a '10' admit that they haven't seen the original. I can only urge you to spend 21 minutes of your life watching a single episode. If after watching the original Ernie, Colonel Hall, Ritzig & Emma, Duane Doberman, Henshaw, Dino, Flashman, Zimmerman, Mullin et al you still think that Steve Martin's film is woth anything above a '2' - I'll stand you a pint....\r\n0\tI have a nice collection on movies going, and this one was added to it. Number 274 to be exact. <br /><br />The title had me going at first. Splatter University. I thought this would be a great horror movie. Was I ever wrong. Don't get me wrong, this is not the worst movie I have ever seen, but it could have been a lot better. I love all movies, but this one was one that was more of a laugh then a scare. <br /><br />Poor audio quality, poor acting, and poor shot arrangements are some of the areas that could have been improved. 3 out of 10 stars.<br /><br />Movie is ideal for a good laugh. If your looking for one of those movies to make fun of, then this is one!\r\n1\t\"Who would've imagined -- Hal Hartley creates a filmic corollary to Syriana while retaining his signature idiosyncratic style. The fusion is highly entertaining.<br /><br />Having not seen a Hal Hartley film for about a decade, I approached this one with some caution. His brilliant productions of the nineties had impressed critics and audiences with their unique style and dialog. The director's earlier films featured colorful characters and offered close observations of life -- often in the region of Long Island, New York or in New York City itself -- that were offbeat and insightful.<br /><br />My initial caution stemmed from the description of this movie as a \"\"spy thriller\"\". To my pleasant surprise, Hartley manages to mesh his well established style and focus to produce a highly original drama of international intrigue. It works in more ways than one might imagine. Hartley's film retains the dialog and character focus that are his trademarks, along with a singular cinematographic style.<br /><br />Moreover it is highly appropriate given the current situation in the world and the state of war that has been fostered by dark elements on all sides. Hartley has brought all his skills to something new -- a political film worthy of being mentioned in the same breath as Syriana. Truly he is coming into his own. The cast does a fine job of interpreting Hartley's vision and style. Fans of Parker Posey will see her in full bloom here, still with us and more ripe and gorgeous than before.\"\r\n1\tI don't know how anyone could hate this movie. It is so funny. It took a unique mind to come up with this storyline. It's not your typical alien movie. These aliens are so stupid and confused. You need to rent it at least once.\r\n0\tI was attracted to this movie when I looked at cast list, but after I watched it I must admit that I felt a bit disappointed. The main problem of this movie is that actors aren't capable of holding this movie on their back. Why? Because of bad script. Although Dillon, Lane and Jones try very hard to take this movie on another level, there is no innovative storytelling and the direction is too ordinary. So for Matt Dillon fans this is watchable movie, just like for admirers of beautiful Diane Lane. Legendary Tommy Lee Jones is always great but this is not movie for him; far below his level. So if you get hooked up by this great cast watch it but don't expect anything big or extraordinary. The only thing that you'll remember about this flick is Diane Lane scenes; rest of it is very forgettable.\r\n0\t\"I know no one cares, but I do. This film is historic for one reason. It is the unity of two heroes from two great seventies sci-fi films. Well, one is great, and one is quite bad. The great one is truly great, in fact it's the best. The bad one is truly bad, in fact it's the worst. Of course of the great I refer to \"\"Star Wars\"\" and it's star Mark Hamill, aka \"\"Luke Skywalker\"\", who is the hero of this film about a kid who gets his Vette swiped and then goes to Vegas (on a lead) and after a whole lot of adventures, eventually recovers it. (Since he's into fixing cars I guess you can call him \"\"Lube Skywalker\"\"). Along the way he meets a hooker with a heart of gold, and ends up facing off with a character played by Kim Milford, the hero from the seventies sci-fi cult film \"\"Laserblast\"\", which is, as I've hinted at earlier, the worst sci-fi film ever made. Milford plays the lead baddie whom Hamill must steal his car back from. I realize that no one cares about this meeting of two great sci-fi heroes, but I do. And I also must say that this is one of the best/worst movies of all time. Mark Hamill's acting needs the force, the plot needs extensive Jedi training, and the character of the hooker played by Annie Potts just might be the most annoying character of all time, ever, in any film I've ever seen. But it's a fun movie to watch on a weekend day, or a weekday night, late at night, very late. It's one of those films that meanders, looking for something but without quite finding it and yet, at the same time, it's entire purpose is, like free-form jazz, to simply exist as is. And it does. And what is, isn't that great, but you can't say it isn't entertaining, because for an hour and a half you might feel ripped off, but you won't feel cheated. So turn off your mind, relax, and enjoy this muddled gem without any expectations, and may the force be with you, always.\"\r\n1\tMy mom took me to see this movie when it came out around Christmas of 1976. I loved it then and I love it now. I know everyone makes fun of Barbra's hair in this one, but I think she looks and sounds great! ...And I seem to remember a number of women who copied that permed look at the time! Also, the bath tub scene between Streisand and Kristoferson is just so sexy! The music is great as well. This is the groovy 70's Babs at her best!\r\n1\tA country-boy Aussie-Rules player (Mat) goes to the city the night before an all-important AFL trial match, where he is to be picked up by his cousin. And then things go wrong.<br /><br />His no-hoper cousin has become mixed up in a drug deal involving local loan-shark / drug-dealer Tiny (who looks like any gangster anywhere but is definitively Australian). Needless to say, Mat becomes enmeshed in the chaos, and it isn't long before thoughts of tomorrow's match are shunted to the back of his mind as the night's frantic events unravel.<br /><br />Accomplished Western Australian professional Shakespearean actor Toby Malone puts in a sterling performance as young naive country-boy Mat, and successfully plays a part well below his age. Best support comes from John Batchelor as Tiny, and an entertaining role by David Ngoombujarra as one of the cops following the events. Roll is fast-paced, often funny, and a very worthwhile use of an hour.\r\n1\t\"What would happened when a depressed cop works with a shrink on probation? May be a lot of fun... This movie set a benchmark in the action/comedy genre of the Argentinean cinema. Dearable characters, probable story and a pace that between laughs has some thrill. I recommended it for a pleasant time of entertaining. Peretti and Luque join their efforts to fight against a cold and daringly foe in a time when it's difficult to trust someone. This movie will surprise you, the other side of the coin of \"\"Analyze me\"\", but not alike, with nothing to envy. And if you like to know Bs.AS there where few scenes of downtown and the city center.\"\r\n0\tThe summary pretty much sums it all up. This is nowhere near as good as the original. With a script co-written by both Stallone and James Cameron (at the same time he was also writing Aliens). Most of the action was written by Cameron and the political aspects were written by Stallone.<br /><br />Sly was in the best condition physically as he was making this and Rocky 4 and he does look in great shape or jacked up to the eyeballs on steroids, depending on your own viewpoint or opinion.<br /><br />Rambo starts off in prison and is visited by Colonel Trautman who asks him to go on a special mission that could earn him a Presidential pardon. He eventually agrees and goes off to the briefing camp run by Charles Napier playing a Washington suit trying to pass himself off as former ex-forces to placate Rambo.<br /><br />The mission is to find out if there are any missing POWs still alive in camps in Vietnam. Rambo was chosen as the camp he was checking was somewhere he had previously been a prisoner himself. He is told it's not a rescue mission and he is there to take recon photos only.<br /><br />After a bad attempt at parachuting from a plane he loses most of his kit, meets his contact (who turns out to be a cute woman) and travels down river with pirates to the camp.<br /><br />He finds there are still prisoners and rescues one. As the 3 flee from half the Vietnamese Army on their river boat they are betrayed by the pirates but Rambo kills them all and they are forced to carry on to the pick-up point on foot after their boat is rammed and blown up with Rambo almost on board.<br /><br />Rambo is betrayed again and abandoned as Napier orders the recall of the rescue helicopter. It is clear as Trautman returns to base to berate him that no survivors were expected to be found.<br /><br />Steven Berkoff turns up as a Russian Spetznatz Colonel and Rambo is tortured and eventually escapes only to be pursued by more Vietnamese troops and Spetznatz. Killing many of them, Rambo finally steals a chopper and rescues most of the prisoners to return to his base.<br /><br />He resists the urge to kill Napier for abandoning him but destroys the Ops Centre.<br /><br />A weak plot and very weak ending as Rambo walks off into the sunset as a free man.\r\n1\tHidden Frontier has been talked about and reported on by several news agencies for their long commitment to creating the best Star Trek stories and to providing an example of the togetherness that was Gene Roddenberry's mission. Their focus on homosexuality, depression, war, and acceptance of different races is on par or exceeds those of the other Trek series and movies. The production value started off as smaller and choppy but over the 7 seasons of production the acting has improved, the stories are more complex, and the visual graphics have gotten smoother and more impressive. In season 6 episode 1, Countermeasures, there is one of the biggest space battles in Trek history. The ships are rendered well and the space battles are impressive and exciting. The real draw to Frontier is not the ships or the backgrounds, but it is the people and the interplay and growth of characters. There are also nods to other Trek series and movies with places and characters we all know. I recommend any Trek fan to check out Countermeasures and you will be hooked!\r\n1\tThis is a really strange film--and that is NOT a bad thing. It is a combination of a neo-realistic film about the homeless AND a fairy tale. I'm sure that some may find this movie a bit too strange, but I loved it. Once again, this director brings together a wonderful cast of everyday people (not actors) and gets a great ensemble-type performance. Although not nearly as sad as Umberto D, both movies have a very similar point to make--this one just does it in a very absurdist way. Ignore the cheesy special effects--after all, it was made in the early 1950s and special effects aren't terribly important anyway (or at least they shouldn't be in films). Instead, just sit back and enjoy the very strange and silly ride. Unless you are a total curmudgeon, you'll have a ball.<br /><br />By the way, since I first reviewed this film, I have seen another DeSica directed film that is an absolute must-see and that is THE CHILDREN ARE WATCHING US. While not a fantasy or light in spirit like MIRACLE IN MILAN, a great film nevertheless.\r\n1\tRed Eye starts in Texas where hotel receptionist Lisa Reisert (Rachel McAdams) is about to catch the last 'red eye' flight back to Miami where she lives & works. While waiting for her plane Lisa meets the handsome & charming Jackson Rippner (Cillian Murphy) & they both seem to hit it off, then when they board the plane they discover that by a coincidence they are seated next to each other. Once the plane takes off & they are in the air Jackson reveals who he really is & that their seemingly chance meeting was not a coincidence, Jackson says that he is working for someone who wants to assassinate the homeland security secretary Charles Keefe (Jack Scalia) & they need her to change his rooms at the hotel where she works in Miami. Jackson tells Lisa to phone the hotel & make it happen or her father will be killed...<br /><br />Directed by Wes Craven who is perhaps better known for his horror films such as The Last House on the Left (1972), A Nightmare on Elm Street (1984), The Serpent and the Rainbow (1989), The People Under the Stairs (1991) & the Scream trilogy of teen slashers a short, punchy, fast paced little thriller like Red Eye seems like a big departure from the sort of film Craven usually makes. The script by Carl Ellsworth makes for a surprisingly gripping thriller that I must admit I really enjoyed, at only 85 odd minutes in length it's a very quick moving, economical & straight to the point sort of film that focuses almost entirely on one tight, taught plot rather than go off in various directions with lots of subplots. Some may like this approach like I did while other's may not but I think it draws you into the action a lot more as it comes thick & fast without the film slowing down any & giving you a chance to relax. I really liked the plot for Red Eye, sure a film like this is always going to have one or two questionable moments in terms of plotting but what the hell, it's a film made to entertain & for me that's what it did. I really liked the two central character's, Lisa comes across as very likable while Jackson Rippner (an obvious play on the name of the notorious Victorian serial killer Jack the Ripper) is a suitably slimy villain with a cold 'I'm only doing my job' type mentality. Another plus point is that I didn't think anyone behaved overly stupid here, everyone actually seemed like human beings & the films plays out in a relatively plausible fashion. I really liked this & it's one of Craven's better more recent films.<br /><br />Craven turns in a good solid tense, tight, taught & fast paced thriller with an attractive cast, some good action & a gripping plot. He certainly doesn't hang about & once he starts the action & tension he never lets up, far & away the most effective part of the film is when Rippner is holding Lisa hostage on the plane & once the film switches to Miami & Lisa's fathers house it does become a little bit more routine but it's still good. A special mention goes to Rachel McAdams who is absolutely gorgeous in this, I could probably watch Red Eye again just because she is in it & looks drop dead stunning. Those who see Wes Craven's name attached to Red Eye expecting a horror film should think again since there's no horror in it at all (despite the IMDb listing 'Horror' as Red Eye's genre). I am not sure about the ending, on the one hand it was nice to see the villain live for a change which goes against traditional expectation but it might have been more satisfying to see Lisa kill him in some way.<br /><br />DreamWorks apparently gave Red Eye an initial budget of $44,000,000 but reduced it to $25,000,000 although it's still a very well made film with glossy production values. Actually shot in Los Angeles & Florida in California. The film was supposedly written with husband & wife Sean Penn & Robin Wright Penn intended for the leads but eventually the makers opted for younger leads. As I have already said Rachel McAdams is pure eye candy & is a total babe in this & worth watching the film for on her own. Oh, & she puts in a decent performance too.<br /><br />Red Eye is a really fast paced taught tension filled little thriller that I enjoyed immensely, I didn't think I would enjoy it as much as I did & I am glad I decided to watch it. This definitely gets a recommendation from me & Rachel McAdams really is hot stuff in this...\r\n0\tWatched this film having really enjoyed Gregory's Girl many years ago. This was drivel. The plot was vaguely distasteful with the teacher and his friend perving over 14-15-year-old girls in very short skirts. Previous commenters seem to think that this doesn't matter, but I found it rather nasty. If you have children at school then the last thing you want is to think that every youngish teacher is lusting after his pupils. We were surprised that the censor let that through. Apart from that the film was just a waste of time. The script was poor and John Gordon Sinclair trying too hard to recreate his schoolboy image, slightly wacky and off the wall. Why anyone would want to lust after him in this performance is incredible. This film failed on all counts for me. Dreadful. Please don't waste your time watching it. Life's too short\r\n0\t\"This has got to be the most stupid film I have ever seen (spoilers ahead)! First of all, the plot is stupid. The little kid is weird and they move to a hotel because his father is the caretaker of it. We find that the kid has a gift, the \"\"Shining\"\". This gift never ever has anything to do with anything except to make the kid seem cool. Then the movie gets more boring and boring until the man finally goes crazy. He goes on a rampage to kill the kid and his wife because... well, he feels like it. Why else would he do it? All of a sudden we see a naked woman in the tub. The man kisses her and realizes he is kissing a dead corpse, which is utterly disgusting. Somehow a black man enters the hotel and is whacked with an axe. Then the kid and the woman take the black man's vehicle and leave the father, who dies within minutes of hypothermia. Most movies aren't a complete waste of time, but this falls right into that category. The music is trashy, the characters are corny (except Jack Nicholson, who is a good actor), the plot is twisted and fits the description of vomit, the ending is very predictable, the storyline is slow, tedious, and boring. This movie is extremely overrated. AVOID THIS MOVIE AT ALL COSTS. I'm surprised it's gotten such a high rating on IMDb.\"\r\n0\t\"Or maybe that's what it feels like. Anyway, \"\"The Bat People\"\" is about as flat as a rug, bland as a sack of flour and as exciting as a rock...and as intelligent as all three combined.<br /><br />Okay, plot in a nutshell (fitting vessel, that...): a doctor (Moss) gets bitten by a bat while checking out a cave with his wife (McAndrew) and subsequently turns into a bat - well, not exactly a bat but a bat-like creature that looks more like a werewolf who kills his victims in a first-person camera viewpoint....<br /><br />But then there's the business of the sheriff (Pataki), who is about the WORST kind of sheriff: the hick kind. He hassles people, he leers at married women, he steals handkerchiefs from haberdasheries (the FIEND!), he smokes with one of those cigarette holders in his mouth and talks at the same time, making him look and sound like Buford T. Justice in \"\"Smokey and the Bandit\"\" and (this is the worst part)... HE'S THE MOST LIKEABLE CHARACTER IN THE WHOLE FILM!<br /><br />The whole film, though, is just TV movie-of-the-week-like crapola (guano, in this case). It's an AIP, for crying out loud! What did you expect, Oscar caliber stuff?<br /><br />And what else can you say about a film that not even MST3K can save?<br /><br />How about...no stars for \"\"The Bat People\"\", full version OR MST3K version!<br /><br />By the way, if there's ever a sequel for this movie, I'm burying my TV.\"\r\n0\tHollywood does it again. Lots of money, no creativity. I'm sure the writers were on something other than oxygen when they wrote this one. Based on the previews, I thought that this would be a funny movie. But if you are not up on the latest stupid pop culture then you'll miss most of the silly humor in this movie. Why waste your time. You can sit on a log doing nothing and have more fun than this movie will provide.<br /><br />\r\n1\t\"I'm not entirely sure Rob Schmidt qualifies as a \"\"Master\"\" in the genre of horror, since he previously just directed one horror film called \"\"Wrong Turn\"\" and that one was actually just was slightly above mediocre, but fact is that he made with \"\"Right to Die\"\" one of the best and creepiest episodes of the entire second season of the \"\"Masters of Horror\"\" franchise. There was a similar underdog story in season one, when William Malone made on of the best episodes with \"\"The Fair Haired Child\"\" even though his other long feature films \"\"Fear Dot Com\"\" and \"\"House on Haunted Hill\"\" sucked pretty badly.<br /><br />The story of \"\"Right to Die\"\" cleverly picks in on the nowadays piping hot social debate of euthanasia, but thankfully also features multiple old-fashioned horror themes like ghostly vengeance, murderous conspiracies, pitch black humor and comic book styled violence. Whilst driving home late one night and discussing the husband's continuous adultery, the Addison couple are involved in a terrible car accident. Cliff walks away from the wreck unharmed but his wife Abby is fully burned and needs to be kept alive artificially. Whilst Cliff and his sleazy attorney (Corbin Bernsen of \"\"The Dentist\"\") want to plug the plug on her and sue the car constructor, Abbey's mum sets up a giant media campaign to keep her daughter alive as a vegetable and blame everything on Cliff. Meanwhile Abbey's hateful spirit comes back for revenge and kills someone in Cliff's surrounding whenever she has a near fatal experience with the medical devices. After a few victims, Cliff realizes it might be safer for him to keep his wife alive if he wants to remain alive as well. \"\"Right to Die\"\" is a stupendous episode and exactly the type of stuff I always hoped to see from a TV-series concept like \"\"Masters of Horror\"\". It's violent and gory with a sick & twisted sense of humor and loads of sleaze sequences. The euthanasia theme and the whole obligatory media circus that surrounds it is processed into the script very well, yet without unnecessarily reverting to political standpoints or morality lessons. The atmosphere is suspenseful and the killing sequences are suitably nasty and unsettling. Actresses Julia Anderson and Robin Sydney both have pretty face and impressively voluptuous racks, which is always a welcome plus, and Corbin Bernsen is finally offered the chance again to depict a mean-spirited and egocentric bastard. Great \"\"MoH\"\" episode; definitely one of the highlights of both seasons.\"\r\n0\t\"\"\"Creepshow 2\"\" is little more than a pale imitation of the original, designed with little purpose other than to cash in on the name of the previous film. It even amplifies the flaws of its predecessor, which was often predictable and heavy-handed. Still, the first time around, there were enough thrills to make up for it's periodic lulls, resulting in an uneven but overall fairly entertaining effort. The sequel has few worthwhile moments, so the transparency of the stories are even more apparent. Once in a while, it delivers, but most of the time, it just lingers there.<br /><br />As in the original, all the stories revolve around the common theme of revenge and just desserts. A wooden Indian comes to life, wreaking vengeance upon the killers of its owner. Teenagers are devoured by an aquatic monster. A hitchhiker returns from the dead to pursue a careless motorist. None of these premises are inherently bad in themselves, but they are utterly lacking in inspiration. There are few surprises and no scares. This a textbook example of unmotivated, by-the-numbers filmmaking. It doesn't help that this cheap-looking movie suffers from a flat directorial style, although to be honest, there wasn't much to work with. In the end, the second story comes off best, but not by much. <br /><br />For the most part, the performances are okay at best. George Kennedy, as the ill-fated general store owner, does an adequate, if not particularly inspired job. Dorothy Lamour, on the other hand, is quite good as the guilt-ridden motorist, evoking sympathy for her plight despite the predictable, redundant material. However, most of the characters are pretty thin overall. <br /><br />One would think that \"\"Creepshow 2\"\" would have turned out better. George Romero, who directed the original, returned to pen the screenplay, based on more of Stephen King's stories. Makeup effects artist Tom Savini turns in some good, gory work. So why is the film a letdown? I guess Romero didn't really want to make a second film, but was forced to do so for financial reasons. It was a decade of horror sequels, clones, rip-offs, and whatnot, so this one was certainly inevitable. I can imagine the guy writing the script in a hurry, picking up his paycheck, and running off. I guess he had to do what was necessary to get his own projects financed; we can't blame him.<br /><br />Rating: *1/2 (out of ****)<br /><br />Released by New World Pictures\"\r\n0\tI was really looking forward to watching this, being that I love Danny Dyer and I think Gillian Anderson is a gifted actress. The beginning was interesting. I liked the relationship between the two stars. It then quickly jumps to the main plot, which is they get attacked by a group of strangers and Dyer gets beaten extremely bad while Anderson gets raped. They then decide to go for some revenge. Sounds good, right? Well, it's not. The story gets boring and side-tracked, and certain things get really weird. I won't give out any details, but things happen that I, for one, have no desire to see. I like to give all movies the benefit of the doubt, and I really wanted to like this one. It just didn't work out. I give it a 3 out of 10, mainly for the acting.\r\n1\t\"I saw \"\"The Grudge\"\" yesterday, and wow... I was really scared, a good thing. I love horror-movies, and I really liked this one. There were so many 'surprise'-scenes (what's the English word?) that made you jump in your seat. Though, too much screaming from the audience made it difficult not to laugh. I think the most scary scene was... on the bus, when the face flashes by on the window, or when Yoko's walking without her chin. The make-up is also VERY good. Sometimes you could really see it was there, but it was still adding a freaky look to the scene. The boy was very good indeed, so cute without make-up and so terribly scary with it on. The next time I hear a cracking noise I will probably feel pretty scared...\"\r\n1\tIn War, Inc we find the logical extension of the current outsourcing of all war-related activities we are currently doing in Afghanistan and Iraq. If you are familiar with the antics of Halliburton, Kellogg, Brown & Root and Blackwater overseas you are already halfway home to fully appreciating the satire of Cusack's latest piece. Cusack plays a corporate hit-man named Brand Hauser who finds himself in Turiquistan organizing a trade show in the newly liberated country as his cover while waiting to get access to his latest target. While there he finds himself intrigued by the anti-establishment reporter played by Marisa Tomei and pursued by the over-sexualized pop star played by Hilary Duff. We are introduced to Hauser's past, which includes a tragedy that has haunted him ever since and the corporate assistant named Marsha Dillon who actually is running the entire operation for him (and played hilariously by Joan Cusack). While some moments are played suitably over the top, they aren't always the moments you expect and the little touches often catch you by surprise. All the principals turn in solid performances. Duff's accent comes and goes but otherwise she does a very nice job and goes a long way to dispel her Disney image. Tomei is funny but understated while the Cusack's own nearly every scene they are in. To be fair, they are given good material. The writers turn in a good script with enough twists and turns and visual gags to keep you giggling throughout all the way to the predictable conclusion. In fact, the predictability of the end is the only thing that keeps me from rating it higher as the story twists and turns it's way to the expected conclusion.<br /><br />If you like your comedy broad and physical, there is probably not enough here to keep you interested the entire movie. On the other hand, if you like sly comedy and broad satire, this is for you.\r\n0\tThis is certainly one of the most bizarre films ever made - even for Fellini. About the only one more bizarre is his SATYRICON. This is a two and a half hour romp through a strange nightmarish world of decadence, opulence and sexual challenge. Sutherland makes a curiously unappealing Casanova and the odd goings on in a series of unrelated vignettes taken from the great lover's autobiography fail to engage the viewer. The art direction and costume design are however OUTSTANDING. The Academy missed on not even nominating the former but did itself justice by rewarding an OSCAR for the latter. Also nominated (oddly) was the disjointed, pointless and almost inacessible screenplay. Go figure!! The film on video is only 150 minutes, 16 minutes short of the original running time. This viewer was grateful.\r\n0\tI can't tell you how angry I was after seing this movie. The characters are not the slightest bit interesting, and the plot is non-existant. So after waiting to see how the lives of these characters affected each other, hoping that the past 2 and a half hours were leading up to some significant finish, what do we get??? A storm of frogs. Now yes, I understand the references to the bible (Exodus) and the underlying theme, but first of all, it was presented with absolutely no resolution, and second of all it would be lost to anyone who has not read the bible (a significant portion of the population) or Charles Fort (a still larger portion). As a somewhat well read person, I thought this movie was a self indulgent poor imitation of a seinfeld episode.<br /><br />Don't waste your time. It would be better spent reading...<br /><br />...well anything to be honest\r\n1\t\"\"\"Hatred of a Minute\"\" is arguably one of the better films to come out of Michigan in recent years. Not to say that it's a brilliant film by any means, but it's definitely worth a watch.<br /><br /> \"\"Hatred\"\" chronicles the sordid adventures of Eric Seaver (played by director Kallio), a formerly abused child now grown up, and starting to listen to his evil side.<br /><br /> \"\"Hatred\"\" is very nice visually. The shots are creative, and the lighting is approporiately moody and interesting to look at. This film actually has an element of production value to it, unlike other recent Michigan releases like \"\"Dark Tomorrow\"\" and \"\"Biker Zombies.\"\" Subtle dolly shots and stylized shot composition show good use of this film's $350,000 budget.<br /><br /> However, \"\"Hatred\"\" stumbles in the same places that so many other local films do, and that's in the story and character department. Essentially, things just kind-of happen. Eric Seaver doesn't evolve at all. Basically, he's always been crazy, it's just that people are starting to notice. The film just wanders along its merry way with very little development. Also, the ending is very abrupt.<br /><br /> However- since this is a horror film, since when do we care about plot? We just want to see people die, and \"\"Hatred\"\" certainly delivers. As the body count mounted, people in the theater started cheering \"\"Kill her! Kill em' all!\"\" When people scream back at the screen, it's always fun.<br /><br /> That's the place where \"\"Hatred\"\" succeeds. It's fun. And in the end, that's all that really matters.\"\r\n1\tBEWARE SPOILERS. This movie was okay. Goldie Hawn and Chris Sarandon were the best two in it. Okay, so the goofie foreign guy who (SPOILER HERE) trades with the biker for his clothes was funny. This guy's boss was good, too. But the movie really belonged to Sarandon and Hawn. These two should have had a lot more time on screen together. They're chemistry was great. The bathroom scene-WOW! Romantic, sweet, yummy.<br /><br />Hawn is a goofy cocktail waitress who saves a foreign man and ends up at the whitehouse in the middle of a plot due to the greed of politicians. To talk about Sarandon would be to give a lot away. SPOILERS This is a rather untypical romantic/political comedy, and it satisfies both somewhat-the political side a whole lot more than the romantic. It touches on political issues, and just barely skims on romantic areas.<br /><br />\r\n0\tIf you enjoy films like American Pie, Road Trip & Van Wilder; avoid this cinematic refuse at all costs. It is an unamusing, mean-spirited, insipid waste of resources that should never have been discussed aloud; much less actually recorded and sold to unsuspecting consumers. Easily the worst film I have seen in the past 18 months; mind-numbingly bad for the entire 86 minutes of it's runtime. Had it been much longer, I would not have been able to write this review without using profanity. Consider yourself warned!\r\n0\t\"Let's be honest shall we? Al Gore no more TRULY cares about the environment than most folks care about contacting foot fungus. It's a hook! Make no mistake, Al Gore is a POLITICIAN! Three years ago he was busted/ticketed in his home state doing 70 mph in a 55 mph zone driving NOT a hybrid, a Yugo, or even a GM Metro but a LINCOLN (go google it if you like)! Or how about the fact that Mr. Gore & his Hollywood buddies continue to use a private fuel-guzzling jets to attend the premiers of \"\"An Inconvenient Truth.\"\" So much for conservation huh, Al? Anyway, it takes a mere minute to subjectively look at \"\"An Inconvenient Truth\"\" & discover the main fundamental flaw. While the film parades out many seemingly impressive scientists to tell the audience the EFFECTS of supposed \"\"global Warming\"\" there is not one scientist to tell us the supposed CAUSE of it. For example: I can take a hundred folks out to a parking lot & they can point out an automobile which is not running right. BUT can they tell you with any degree of certainty WHY? Generally not! A second flaw, just how accurate were the weather instruments 100 years ago (the toilet wasn't even invented yet)? What did they have, a June bug in a match box? Hell, even 50-60 years ago? Therefore, how do we know with ANY degree of certainty that the planet is \"\"getting warmer\"\" when the records of yesteryear are highly questionable at best? Or that man is THE sole cause of it? The answer is we don't & Science is NEVER a consensus. Thirty years ago, Time Magazine did a cover proclaiming a \"\"New Ice Age\"\". The truth is that any 6th grade science teacher well versed in Earth Science will tell you that Volcanic Erruptions, Solar Activity & El Ninos have more to do with our eradicate changes in climate conditions than supposed \"\"Global Warming.\"\" Finally, what Al Gore fails to adequately address is; even IF America decides to follow the global gospel according to Al & implement everything he recommends, how are we going to get the rest of the world to follow suit when we can't even get them to agree on something so obvious as terrorism? Answer: It's wishful thinking, Mr. Gore & you being a former VP of the USA know it! If the folks who produced \"\"An Inconvenient Truth\"\" were really honest, they would have titled their film \"\"Al Gore Wants Attention.\"\" But what I'd really like is for someone to ask the former VP this; why were two of the planet's biggest polluters (AKA China & India) EXEMPT from abiding by the Kyoto Accords? Anyway, I hear the producers of A.I.T are working on their next film entitled \"\"Gnomes, Fairies & Elves: Our Endangered Friends.\"\"\"\r\n0\tDane tries to hard and is to extreme with all of his yelling and going crazy, spilling water on himself and rolling on the floor. To much. Calm down, get yourself together and make us laugh. I didn't quite understand his comparison toward comics and rock stars. Just because there both up on stage or something? He said that every comedian wants to be a rock star. I'm sure Rodney Dangerfield was really into that when he was alive. He had a few good jokes like the Burger King joke where people yell at the drive thru. I also liked the Reese's Pieces joke. If Dane just didn't act so mental he might be funnier and I might have given this a higher rating, as high as maybe an eight.\r\n0\t\"Along with 2 days in the Valley, I think this is one of worst movies I've ever seen. Just another of the long line of Tarantino rip-offs that have emerged since Pulp Fiction. The atmosphere the movie creates is amusing for the first five minutes, but then the film makers make the unforgivable mistake of allowing unnecessary and grotesque violence to up the \"\"hip\"\" quotient. You're better off skipping this one.\"\r\n0\t\"This is an interesting left turn for Reel 13 Indies. TWO HARBORS is a B&W 75 minute film from Minnesota that features non-actors and is about two people finding a connection through a search for alien life. I applaud the boldness of the Reel 13 programmers of thinking out-of-the-box when selecting this film. I just wish they had picked a stronger film to be bold with. As a matter of fact, I wonder if the choice had more to do with the uniqueness of the film than with the actual quality of the film itself (Not that TWO HARBORS is completely without merit, but I'll get to that a little later). <br /><br />As is common with independent films, TWO HARBORS is limited in terms of location. There are only two real locations  a large junk dealership market and a very teeny trailer, which is the home of the middle-aged main character, Vic, played by Alex Cole. Writer/director James Vculek uses the market setting to provide exposition about Vic, who is one of the dealers there. He has various people walk up to Vic and start very long conversations that provides us with just two pieces of information  Vic sells space toys (he prefers to call them \"\"outer space action figures\"\") and he is a caustic asshole. This is emblematic of one of the two key problems with TWO HARBORS - all the chatting. I've said it before and I'll say it again  we are dealing with a visual medium and filmmakers need to work harder to tell their stories visually. There are exceptions, of course, but generally, endless patter is not so engaging on film  particularly if the dialogue is being used as exposition. Pretty much all the conversations in the film are long and unnecessarily verbose. A notable example would be a few scenes which feature Vic trying to play himself off as a Boy Scout leader in order to get a discount at a store. He argues with the clerk back and forth and these scenes don't even advance the plot one iota. This is the kind of thing that makes even a 75 minute film feel long.<br /><br />The other problem with TWO HARBORS is the acting. I may be a bit of a curmudgeon when it comes to performance in film, but I really don't feel like there's a good excuse for not having good actors in your films. There are plenty of good actors out there, many of which willing to work on low-budget projects  even in Minnesota. Many filmmakers eschew the importance of acting ability as being secondary to their visuals, but that is naïve. In narrative film-making, next to the story, nothing is more important than the acting/performances. If you don't believe the people enacting your story, your audience is lost.<br /><br />Originally, I thought Vculek was using non-actors, but as the film went on, I decided that they were probably community theater-type actors. It wasn't that they were uncomfortable on camera. It's that they were overly theatrical (i.e. big). Granted, the best of the actors were the two leads  Cole and Catherine E. Johnson as Cassie, a lonely young girl that gets caught up in Vic's extra-terrestrial hunt. They seemed to have the most training, but they were still a little rough around the edges. The eccentricities they displayed seemed to be surface only - not coming from a real, organic place within. Ms. Johnson, in particular, is an interesting case. She definitely has a presence  a Midwestern charm about her, but that charisma belies the multitude of issues her character is supposed to have. She struggles to portray the idiosyncrasies that stem from a supposed life of solitude and (slave?) labor, relying on stock gestures like eye rolls, lip biting and stammering to suggest her discomfort with the outside world.<br /><br />I mentioned in the first paragraph that TWO HARBORS is not completely without merit and here's what I mean. Without giving too much away, there is a fade to white an hour into the film. After that, the story takes a stunning turn, which allows the last fifteen minutes to be evocative and downright powerful  it's like a sucker punch to the gut, but in a good way. It's almost a huge relief to feel something after so long with these characters. The last five minutes of the film don't have any dialogue at all and the result is the best part of the film  subtle, detailed (Cole does his best work of the film) and most importantly, cinematic. Then, with the closing credits comes the most staggering revelation of all  that it's based on a true story, which got me to thinking. With all the dialogue, the minimal locations and the lack of cinematic qualities, it occurred to me that with two kick ass actors and a tightening re-write, TWO HARBORS might make a really kick-ass stage play  maybe even a one-act. If there are any bold theater producers out there reading this, I definitely recommend seeing if you can get a hold of the film and contact the filmmaker, Reel 13 or whomever. There might be something to this story after all<br /><br />(For more information on this or any other Reel 13 film, check out their website at www.reel13.org)\"\r\n1\t\"The film starts out very slowly, with the lifestyle of Wallace Napalm, an attendant at a photo-service drop-off station. His wife has been restricted to her home with an ankle bracelet as the result of a sentence for arson. Wallace is a member of the volunteer fire department, and takes firefighting seriously.<br /><br />As we watch Wallace's rather dull life proceeding, suddenly there comes something new and jarring: a traveling carnival comes to town. One of its stars is Wilder Napalm, Wallace's brother. He's a clown, but he has a special talent.<br /><br />So does Wallace. They're both pyrokineticists or \"\"pyrotics,\"\" people capable of starting fires through mental energy. Wallace keeps his powers secret; Wilder lets his acquaintances know what he can do.<br /><br />Spoiler: Some of their differences go back to a childhood incident where they inadvertently caused the death of a vagrant. Wallace holds back from using his powers; Wilder wants to go public on national TV.<br /><br />Complicating the matter, Wilder wants Wallace's wife, whom they both dated years earlier. She becomes a bone of contention, and becomes one of the reason that the brothers finally have a literal firefight.<br /><br />The film is entertaining, but not laugh-out-loud funny. I think enough of it to have a copy in my library. It's a good offbeat film.\"\r\n1\tSince September of last year, I have been borrowing four to six films each week from the Harold Washington Library, which boasts an impressive DVD collection. (The HWL truly is a circulating library: three-quarters of its films are out at any given time!) Recently, I was thrilled to find The Short Films of David Lynch. Yesterday, knowing little about the animated series, I picked up Dumbland. I'm here to report that, for David Lynch fans, watching the eight episodes is half an hour well-spent.<br /><br />The most remarkable feature of these brief pieces are their soundtracks. Each episode has its own rhythm. Respiratory and digestive systems provide percussion. Outrageous voices accent pauses' ends. Physical violence supplies the beats. Chirping birds and buzzing sockets brush along the edges. Many other elements fill out the orchestra. The pacing of the crude animation often keeps in sync with the sound, but the soundtrack itself struck me as Lynch's primary interest in creating and disseminating this work. In a way, these eight shorts are unique Lynchian rhythms.<br /><br />That said, the situations are odd, ugly, profound, dumb and funny as hell. And there's enough space within them to reflect on how absurd we humans can be. I can't say that I'll watch the collection again, but for anyone who revelled in the movements that is the suite Inland Empire, Dumbland is worth half an hour of your time.\r\n0\tThe writers and producers of this little outing have plummeted new depths of depravity. Did writer's block set in so badly, OR had ideas dried up so much, that they were forced to include a disgusting scene where a young woman defecates in the back seat of a van, and then promptly throws the excrement at the car behind (mind you at least this summarises what this film is worth). We had already been treated to one of the other women urinating over one of her friends at gunpoint, as well as numerous episodes of graphic vomiting; once would have sufficed... we got the message! This really is taking toilet humour to another level! Had the script and acting been better then I could have easily forgotten that I was watching a film shot entirely on low budget video. This was a fairly original storyline, with a clever (the only) piece of direction in that we only ever got to take the viewpoint from inside of the van; thus making it feel much more real. We never got to see inside any other locations, such as the store or the field where several of the women disappeared, and this could have added much needed tension.<br /><br />The script was dire. Lines like: 'I don't feel too good... I want to go home' after one of the girls has been pursued by a psychopath; subjected to rape by a screwdriver and shot at, seem a little undercooked.<br /><br />The acting was diabolical (apart from the maniac). Did all the main 5 actresses in this learn acting by taking a correspondence course during a long postal strike! The sound was so bad that I had to watch the entire film with the subtitles on.<br /><br />The director seemed to have an easy job in this. It seems that the only direction he must have given was: 'Scream girls'.<br /><br />AND AS FOR THE SCREAMING...... If you watch this please be sure to have some paracetamol at the ready!\r\n0\tWow, what a snoozer. Definately one of bacon's worst films. The bad acting coupled with a formulatic, if not incredulous, script make me yearn for time I wasted on viewing this on cable television back. Not really much I can say about it, a basketball scout gets too attached to the person he's recruiting, who happens to belong to a tribe that happens to be on the verge of war which happens to be decided by (spoiler) a basketball game. Grade: F+\r\n1\tDirected by Govind Nihalani, this is definite cop film of Indian cinema. May be the first one which portrayed the stark reality of corruption in the police force & politics with no holds barred & how it effects on a young cop. A man forced to join a career of a cop by his cop father. Agreed that we grew up watching lot of good cop/bad cop Hindi films but this is different. Today's generation, which grown up watching dark & realistic films like- 'Satya', 'Company' may be consider it inferior product in comparison but look at the time of its making. The film was made absolutely off beat tone in the time when people didn't pay much attention to such kind of cinema & yet it becomes a most sought after cop film in class & mass audience when it released. For Om Puri its first breakthrough in mainstream Hindi cinema & he delivered a class performance as Inspector Velankar. Its more than cop character, he internalized a lot which is something original in acting. Watch his scenes with his father whom he hates & Smita whom he loves. Smita Patil maintained the dignity of her character to the expected level. My God what a natural expressions she carried!!! Shafi Inamdar was truly a discovery for me & he's a brilliant character actor if given a chance & here in some of the scenes he outsmarted even Om. The movie is also a debut of a promising villain on Indian screen- Sadashiv Amrapurkar as 'Rama Shetty'. It's another story that he didn't get such a meaty role & almost forgotten today as one of the loud villain of Dharmendra's B grade action films. Watch the scene where Om 1st time becomes a rebel for his father (played by Amrish Puri) & next both are sharing wine together. How inner truth started revealing for both the character with confronting feelings of love & hate for each other. Two faces of Indian Police Force- Masculinity & Impotency and in between lies- half truth (ardh satya)Kudos to Nihalani's touch. The film won 2 National Awards as Best Hindi Feature Film & Best Actor- Om Puri & 3 Filmfare Awards in Best Film, Best Director & Best Supporting Actor Categories. <br /><br />Recommended to all who are interested in nostalgia of serious Hindi films.<br /><br />Ratings- 8/10\r\n0\t\"Two years before he wrote and directed \"\"Arthur\"\", Steve Gordon had a minor hit with his screenplay for this crackpot comedic vehicle for Henry Winkler, then TV's \"\"The Fonz\"\". A 1950s college thespian (and all-around jerk) woos a co-ed and gets married without any employment prospects on the horizon; to make ends meet, he turns to the flamboyant world of wrestling, eventually becoming a \"\"Gorgeous George\"\"-like celebrity. Turning likable Winkler into an obnoxious goof-off probably sounded like an interesting idea at the time (and a sure way to separate him from his television alter-ego), but the jokes and situations are often wrong-headed and mean, staged rather sloppily by director Carl Reiner. Particularly crude is a wincing bit involving Hervé Villechaize (of \"\"Fantasy Island\"\") putting the moves on Polly Holliday (Flo from \"\"Alice\"\"). As Henry's beloved, Kim Darby looks a little out of her element--particularly when surrounded by all these TV hams--rendering the romance aspect of the script inconsequential. *1/2 from ****\"\r\n1\tAnd yet another run of South Park comes to an end. This wasn't as strong an episode as I'd hoped for, but Night of the Living Homeless was a stronger finisher then Stanley's Cup, Tsst, Bloody Mary, or Erection Day. It still can't hold a candle to Woodland Critter Christmas and Goobacks, but few episodes can.<br /><br />Night of the Living Homeless is a spoof of the zombie genre, done in a way only South Park would think of. Instead of flesh eating zombies, the entities are homeless that request change and seem to survive off of it.<br /><br />Randy and other residents are locked in the Community Center, though this time on the roof, where they can survey the scene. A particularly funny moment is when one member finds out his home is gone, and becomes homeless, leaving Randy no choice but to shoot him.<br /><br />Meanwhile, the four boys set out to solve the problem, with the whole story behind the homeless takeover trying to convey a message, but being seriously uninspired. South Park is at it's best a lot of the times when it is being ridiculous. Matt and Trey played it safe this week, and didn't really critique the homeless problem, just lampooned it.<br /><br />The shock moment of the episode comes when a scientist shoots himself in an attempt to avoid the homeless. This is the first time a suicide on South Park goes wrong, and we watch the poor man miss his brain and then attempt to shoot himself many times while he painfully dies. Another inspired South Park moment.<br /><br />Overall, the episode was funny, but it was kept from being great by withholding any real commentary on the homeless and sticking straight with the zombie shtick. The ending is somewhat funny, but nothing new.<br /><br />Now we must wait until October for the next batch of episodes. It's a long haul, but South Park must be applauded for it's run. The show seemed to be running out of steam last season, but now it's back in full form.\r\n1\tTaking over roles that Jack Albertson and Sam Levene played on Broadway, Walter Matthau and George Burns play a couple of old time vaudeville comics, a team in the tradition of Joe Smith and Charles Dale who seem to have a differing outlook on life.<br /><br />Walter Matthau can't stop working, the man has never learned to relax, take some time and smell the roses. He's a crotchety old cuss whose best days are behind him and his nephew and agent Richard Benjamin is finding less and less work for him. <br /><br />What hurt him badly was that some 15 years earlier his partner George Burns decided to retire and spend some time with his family. A workaholic like Matthau can't comprehend it and take Burns's decision personally.<br /><br />Benjamin hits on a brain storm, reunite the guys and do it on a national television special. What happens here is pretty hilarious.<br /><br />The Sunshine Boys is also a sad, bittersweet story as well about old age. Matthau is on screen for most of the film, but it's Burns who got the kudos in the form of an Oscar at the ripe old age of 79.<br /><br />Burns brought a bit of the personal into this film as well. As we all know he was the straight man of the wonderful comedy team of Burns&Allen who the Monty Python troop borrowed a lot from. In 1958 due to health reasons, Gracie Allen retired and George kept going right up to the age of 100. Or at least pretty close to as an active performer.<br /><br />The Sunshine Boys is based on the team of Smith&Dale however and if you like The Sunshine Boys I strongly recommend you see Two Tickets to Broadway for a look at a pair of guys who were entertaining the American public at the turn of the last century. The doctor sketch that Matthau and Burns do is directly from their material.<br /><br />And I do think you will like The Sunshine Boys.\r\n0\t\"I've seen all kinds of \"\"Hamlet\"\"s. <br /><br />Kenneth Branagh's was most ambitious, Mel Gibson's was quick and to the point, Laurence Olivier's was the best - hands down. But now we come to Maximilian Schell's take on the Bard.<br /><br />For one, this is a dubbed version of a German TV production of William Shakespeare's venerable chestnut. But if there's a slower, more plodding, more lethargic and worse-staged version out there somewhere, it must have been acted at grade school-level. <br /><br />Having seen it on MST3K helps, with Mike and the robots taking jolly good jabs at the old boy, puncturing the profundity of black and white TV, Shakespeare and the wisdom (?) of Germans acting out an English play and making it look like an Ingmar Bergman reject.<br /><br />Of course, the best parts are the MST riffs. Best lines? \"\"I'm gonna unleash the Great Dane\"\", \"\"I don't think so, 'breather'\"\", \"\"Meet the Beatles\"\", \"\"Hey, Dad, will you help me with my science project\"\" and, my personal favorite, during a party - \"\"Garrison Keillor's leaving Germany (YAAAY!!)\"\".<br /><br />But then there's Schell, playing Shakespeare's greatest character much like a department store mannequin would, only not as expressive. No doubt he's a great actor, but here he comes off about as well as Paul Newman in \"\"The Silver Chalice\"\". Ever see that one? You GOTTA watch these two on a double-bill!<br /><br />In the end, this is one instance where it's true that you're much better off to just read the book. At least the book isn't dubbed by Ricardo Montalban.<br /><br />One star only for this \"\"Hamlet\"\"; ten stars, naturally, for the MST3K version.<br /><br />Good-night, not-so-sweet prince.\"\r\n0\t\"Well, TiVo recorded this because of Angelina Jolie. It had 2.5 stars. It seemed promising. It went downhill fast.<br /><br />There is much overacting, even from Angelina. She's about 20 and playing a 16 year old. There are three characters that are supposed to be Italian. Everyone else is Italian- American. The native Italian accents were good, I thought. The young male lead is cute, my wife says. Everyone else in this movie is a fat Italian woman. Even the men.<br /><br />I should have known that when Dick Van Patten was cast as a randy doctor, that that was a bad sign. The two couples chasing their kids around are like the four Italian Stooges.<br /><br />My wife would not let go of the remote. Hopefully she was not taking makeup, clothing or decorating tips. It was a sick and twisted combination of hideous and garish. It was hidegarishous.<br /><br />Cutting off my left ventricle was not sufficient to distract from the pain of watching this movie. If this movie shows up on your TV, do yourself a favor and ram your head through the TV screen instead. You'll be glad you did. The only movie I've ever seen that was worse than this was \"\"Hamburger: The Movie\"\". Or maybe \"\"Deadly Friend\"\".\"\r\n0\tSpoilers ahead -- proceed at your own caution.<br /><br />My main problem with this movie is that once Harry learns the identities of the three blackmailers -- with relative ease -- he continues to cave into their demands. And then the whole scene with his wife being kidnapped, he decides to wire his classic car up to explode (with the money in it), which makes us take a pretty tall leap of logic.<br /><br />Okay, so he wanted to keep his affair with Cini out of the public eye due to his wife's involvement with the DA campaign. This I can see, but why not hire someone to slap these turds around a bit, or even kill them once he'd determined there was no actual blackmail evidence (e.g, Cini's body?) This was a pretty interesting movie for the first 2/3 of it. After that, it sort of falls apart.\r\n1\tOne of the first of the best musicals, Anchors Aweigh features several memorable musical sequences, such as Kelly dancing with Jerry the mouse, Kelly dancing with 7-year-old Sharon McManus, Sinatra singing with Jose Iturbi playing piano, Kathryn Grayson singing with Iturbi conducting, and much more. The Technicolor is perfect, with some innovative camera work such as seeing a piano played from beneath, through transparent keys, and Grayson singing, seen through the finder of another camera. The plot is thin, but you get involved from Kelly's & Sinatra's enthusiasm. Sailor's on leave, they have to take home a runaway boy (Dean Stockwell) and Sinatra falls for his aunt. To set him up with the aunt (Grayson), Kelly suggests that Sinatra can get her an audition with Jose Iturbi. But Sinatra's young and naive in this one, and in his own sung words falls in love too fast. While they're trying to contact Iturbi, who's never available, he starts to fall for another girl (Barbara Britton); but Kelly's now falling love with Grayson. Anchors Aweigh is most often remembered for the combination live-action / cartoon sequence with Tom and Jerry, but there's a lot more here that's worth a look. I'm giving it nine stars because, while it's not quite as good as the best musicals - Singin' In The Rain, The Music Man, Oklahoma - it is one of the first of their class of Technicolor big productions (perhaps Meet Me In St. Louis was the first), and better than most others.\r\n1\t\"Definitely one of the lesser of the Astaire/Rogers musicals. It's just very poorly plotted and paced. It only runs a few minutes longer than Swing Time, for example, but it feels a heck of a lot longer. This is partly due to the secondary romance between Randolph Scott and Harriet Hilliard. Scott is rarely ever interesting. I like Hilliard. She's sweet, and I love at least one of her songs, \"\"But Where Are You?\"\" (\"\"Get Thee Behind Me Satan\"\", her other number, is a weak leftover from Top Hat, thankfully cut from that masterpiece). Follow the Fleet would actually be a bad film if not for at least three brilliant dance sequences between Astaire and Rogers. The dancing contest vies for the top spot of any of their numbers. The dance is just fantastic. \"\"I'm Putting All My Eggs in One Basket\"\" presents the two rehearsing a dance that they don't quite have perfected yet. Its imperfections make it all the more perfect. And \"\"Let's Face the Music and Dance\"\" is easily one of Irving Berlin's best songs. So the film is well worth watching for its great moments.\"\r\n0\t\"There are many good things about the new BSG: There's the multiple Cylon roles for Model 8 and 6, for example, which the two actresses played superbly. There's the old school feel of industrial design aboard Galactica (\"\"My ship will not be networked, over my dead body!\"\") Also, all the space battles, the special effects (even though the seasoned sci-fi watcher will acknowledge the cartoonishness of it all) The darkness of the characters, their essentially flawed nature.<br /><br />That makes it all the more bitter that the ending was so childish.<br /><br />Yes, the first part, the scenes in space, the raid on the Cylons and all that was very good. But the mushy ending? I always watch films and shows these days with the timer hidden, so I never know how much time is left until the end. So for me it was a special kind of torture, to see the end happen over and over again. Every time I thought, oh this is the final scene, the final shot, I got one more. Every frakking character got its complete ending! That wasn't really necessary.<br /><br />What really highlighted the schoolboy amateurishness of it all: The young Roslin scenes. Why is important for us to know that: {a} she lost her sisters and father in a horrible accident and {b} that she has a one night stand with a former pupil/student? What does that bring to the story? Where was the linkage? Now, I'm all for a more European-ish style approach, and a random acts of whateverness in films and shows, and all that, but this was just ridiculous. This didn't bring anything meaningful to the story.<br /><br />Also, I've seen the \"\"Last Frakkin special\"\" and in it Ron revealed his own cluelessness about the plot: he couldn't come up with a good ending for the story, so .... he just didn't! It's never as much about the characters as they made the last episode to be. The whole \"\"this was thousands of years in the past\"\" idea, the mitochondrial Eve thing, was also used in the Hitchhikers Guide to the Galaxy, and believe you me, there are a lot of BSG watchers who know that particular H2G2 storyline. And speaking of Hera, now there's a storyline that WAS NOT worked out well, AT ALL. Instead we get Roslin is doing her former pupil who's 20 years younger. Don't get me wrong, I'm all for older women with younger men. The more power to them. But this ... just made no sense.<br /><br />All in all, (the writing in) this series is as flawed as they intended its characters would be. That goes even moreso for the last episode. I hope Lost and 24 do better, with their series finales.\"\r\n0\tI am a great fan of Martin Amis, on whose book this film is based. Unfortunately the director has been unable to translate the book to the screen. The novel is thoroughly post modern and highly artificial in its wildly overblown characters and the disintegration of traditional plot line and character development. It is an hilarious examination of human greed, excess and emptiness by one of the most moral of contemporary British writers. The director of the film has completely missed the point of the novel. In his hands, the film screams along at breakneck speed, indulging in every known trick shot and 'odd' camera angle possible. It is like Ken Russel on acid, and suffers from that older director's self indulgence cranked up to a hundred. Not even the (brief) glimpse of gorgeous actor Christian Solimeno's penis was enough to save this wretched film for me. Abysmal!\r\n0\tThis was one of the lamest movies we watched in the last few months with a predictable plot line and pretty bad acting (mainly from the supporting characters). The interview with Hugh Laurie on the DVD was actually more rewarding than the film itself...<br /><br />Hugh Laurie obviously put a lot of effort into learning how to dance the Samba but the scope of his character only required that he immerse himself at the kiddie end of the pool. The movie is based on the appearance of a lovely girl and great music but these are not sufficient to make good entertainment.<br /><br />If you have never seen Rio, or the inside of a British bank, this film is for you. 2 out of 10.\r\n0\t\"OK, how's this for original- this mean, rich old geezer leaves his estate to his adult children, all of them ungrateful losers, and two creepy servants, provided they spend the week in his spooky old house. What happens that night will surprise only those who haven't seen a movie or television show before. After a string of murders in which the victims look like they're bleeding restaurant ketchup, we have a painfully obvious twist ending. The cast is lead by some once respectable actors must have been desperate for their paychecks. There are also a few second-tier actors who were rising at the time but long forgotten now. As a result, the film generates all the drama and mystery of an episode of \"\"Matlock.\"\" I will give credit where it's due- the closing scene is clever and amusing, if you're still awake.\"\r\n0\t\"One of the lamer wedding movies you'll see. Smacks too too much of its time period so it was out of date before it hit the theaters. The ethnic stereotypes are like a Henny Youngman joke, except they just aint in the least bit funny here. Molly Ringwald, well what else needs to be said. Give you a clue to the silliness, she destroys a $10,000 wedding dress, because \"\"It just won't be me\"\" makes it into this rag, with straps and puts on a top hat, and everyone smiles cutely at her moxy, rather than ringwalding her neck. Its a helluva a cast too, check out how heavy Ally Sheedy is. Wheeeew!\"\r\n0\tRevenge on us the viewing public perhaps. I sat through this 2 hour movie and i was waiting for the second act to kick in so that the movie lived up to its title. But Costner never avenges his lovers fate she dies and the movie ends. I was left wondering where the rest of the movie was. If a movie is called Revenge then the hero better get some by the end of the film. I had a choice of seeing this or Black Rain at the cinema thankfully i saw The other brothers movie at the cinema instead.i caught up with this turkey on video. there was one good thing about the film and was its beautiful theme tune. Listen to the cd.dont watch this its awful. 1 out of 10\r\n0\t\"***Comments contain spoilers*** I was barely holding on to this show as appointment TV when they started the annoying music under EVERY SCENE, when Don Epps was averaging almost a shooting per case, when the very nasally Diane Farr was obviously pregnant (but we weren't to notice) and when Colby was a f*****g TRIPLE agent. But now, in tonight's episode,David is trapped with a paranoid, nut job who is an OBVIOUS amateur with a gun, in an elevator and....HE CAN'T DISARM HIM. A trained, experienced field agent who has been 1st through the door many times and is experienced in hand-to-hand fighting, CAN'T TAKE OUT A NUT JOB. Not when said nut job blinks, looks away, drops his head, closes his eyes; not even when he looks up at the fiber optic wire wriggling around the ceiling like a stripper on a pole for 20 seconds.<br /><br />Then the scene came that let me know that as much as I enjoy learning from the chubby, frumpish but very charming Charles Epps and his sexy sidekick/love interest Amita, my Friday nights will be better spent otherwise engaged. Don gives David the \"\"distress word\"\" that is the code for \"\"The s**t is about to go down\"\"; David is ready, they kill the lights, drop the elevator, startle the nut job and......<br /><br />David CANNOT DISARM/KILL/BEAT INTO SUBMISSION THE NUT JOB. The bad guy ends up with BOTH GUNS, David ends up SHOT.<br /><br />I'm done. Hope the NUMB3RS are fun.\"\r\n0\t\"Is this the \"\"worse\"\" Star Trek TOS episode? Maybe, at least it gets my vote as being in the bottom 5. I mean, this episode makes absolutely no freaking sense. Seeing something that makes you go mad? Give me a break. This episode also has a different feel to it, the music is heightened, almost forced to enhance a feeling of distress, to the point that it sucks. Give me some Klingons, Gorns, Tholians, Romulans, higher beings like Triskelion's or anything but Medusin's, these are very boring aliens to make an episode around. McCoy gets to utter his famous phrase \"\"He's Dead, Jim\"\". Spock puts on the protective goggles when transporting the ambassador away but Kirk does not. They go through that freaking \"\"barrier\"\" now for the third time that I can remember, boring. At least season three's next episodes would be \"\"Spectre Of The Gun\"\", and \"\"Day of The Dove\"\" and others to follow, making Trek a decent show to watch in syndication where it would pick people like me up as avid fans. Personal observations, Trek loved to use the color purple, its kind of a pinkish purple, like when they are in the corridor outside the compartment, the gangway that is normally grey is now purple. We never had a purple bridge but its interesting to see, I noticed it in several episodes, it was done by a light filter and it works very well but in this episode, in the ships corridor is pretty lame.\"\r\n0\t\"Zombie Review #3<br /><br />**Spoilers**<br /><br />Few films are actually \"\"so bad they're good\"\", and Zombi 3 is not just bad, it's wretchedly, unforgivably bad in so many ways that a whole new language may be needed just to describe them all<br /><br />More than that, it's a film credited to Lucio Fulci that even by his standards has absolutely no coherency, sense or reason. However we can't blame Fulci as it wasn't really directed by him but by Bruno Mattei, who doesn't even have Fulci's sense of style to help carry the film. Mattei seems to have brought little to the film but staggering ineptitude.<br /><br />So, I'm ashamed to say how much I enjoyed every worthless minute of Zombi 3. It has no redeeming features - in a genre known for thin characters, weak story, and lack of film making skill, Zombi 3 pushes the boat out but in doing so it's even funnier than Nightmare City.<br /><br />The \"\"action\"\" starts when the \"\"Death 1\"\" gas is stolen from a military base, and damaged in the escape. Who is the thief, why did he steal it, and why did the US military think that creating cannibalistic legions of the living dead would be a good idea? All these questions and more will fail to be answered in Zombi 3....<br /><br />After hiding out at a hotel, the infected thief goes mad from all the green plastecine growing on his face before being tracked down by the army who somewhat foolishly decide the best way to dispose of his corpse will be to burn it, sending \"\"Death 1\"\" up into the atmosphere resulting in... zombie birds! Who then attack people and turn them into zombie people!!! (if zombies are cannibals, why don't the zombie birds just attack other birds?)<br /><br />Then we meet our \"\"heroes\"\", a trio of horny GIs and a coachload of girls. There's a couple of other guys with them too, but they're not important - NO ONE is important here. You'll be hard pressed to remember anyone's face, let alone their name or find a reason to care about them. They end up hiding out at the same hotel as the thief (\"\"a week ago this place was buzzing with life, now it's buzzing with flies!\"\") but there's no escape from the undead.<br /><br />By this point you'll either be completely sucked in or you'll have turned the damned thing off. The script is so appalling even the greatest acting in the world couldn't save it, so it's just as well they have some of the worst - and not just the human characters, the zombie acting here is an all time low. There's no consistancy in how the zombies behave - some shamble about in the time honored style, others engage in full on fist fights or charge around with machettes, not to mention the zombies who are still able to talk (a gimmick that gives the film it's HORRIFYING TWIST ENDING). They die from gunshots to the chest (rather than the head) and even get knocked out by a good left-hook. How can you punch out a zombie???!!!!! In fact the emphasis on badly done 80s action often makes it resemble an episode of V...<br /><br />The zombies also spend a lot of time hiding, seemingly waiting for hours in ridiculous places on the chance some poor sap will pass by and get the fright of their life. They hide in bushes, in garages, in huts, on roofs, in the water, and even underneath pregnant women. At one point a zombie follows a woman up the stairs. To kill and eat her? No! To push her into the water, those zombies and their wacky sense of humour!<br /><br />There is plenty of gore though. Limbs are hacked, wounds ooze green pus, and there's much in the way of flesh eating and people getting their faces mushed in. There's nothing to match the originals eyeball piercing, but if bad make up effects are your bag you won't be let down.<br /><br />All this and I've not even mentioned the awful music, the inexplicable flying zombie head, the scientist whose acting actually manages to stand out as REALLY bad, or the final chilling punchline.... in an ingenious twist on the originals radio station being overrun by zombies, Zombi 3 gives us an actual zombie DJ!! \"\"He's gone over to their side!\"\" our escaping hero's cry, before vowing to continue fighting against the undead in a sequel that sadly never came.<br /><br />Zombi 3 is rubbish - it would be no loss to the world if every single print was destroyed and all records of it's existence erased, yet somehow I feel my life is richer for having seen it.<br /><br />Did I say richer? I meant 88 minutes shorter...\"\r\n0\t\"Dreary. Schlocky. Just plain dreadful and awful. Let's be honest, when you sit down to watch something called The Double-D Avenger you aren't expecting great art or even mild mainstream entertainment. You are probably expecting a cult film type and maybe get some good looks at some impressive busts. You don't get really either of these in the video. The story, as it consistent with most of these types, is inane: Kitten Natividad runs a local pub, finds out she has breast cancer, flies down to South America for a fruit that claims to be a panacea for any ills and a super-human abilities giver, returns and fights, dressed as the Double-D Avenger, a group from a local strip club wanting to edge out the competition. As stories go, I have seen a lot worse, but as another reviewer noted the execution is horrendous. The action sequences lack zip, drive, motivation, and are tissue thin. The acting isn't even properly campy and the dialog is the pits. Nothing, and I mean NOTHING is funny from the wincing puns to the heavy-handed boob references. All could be forgiven if the girls could make up for it, but they all fall way short. Kitten, Haji, and Raven de la Croix are all quite older(still lovely in their own ways) yet expose nothing and become the antithesis of what they are trying to be: older, campy caricatures of their former selves. Instead, they look so lame and desperate - more because of the vehicle they are \"\"starring\"\" in rather than their own abilities. There are some other lovely ladies, but you really do not see much of anything. PG -13 definitely could be an appropriate rating for this. The material, the actresses, and director are all tired, tiresome, and dated - and again - NOT FUNNY! It was a brutal hour plus sitting through this, and that is a shame as I was expecting something campy and fun. The guy playing Bubba by the way was the only real laugh for me. Not that he was good at all mind you, but every time he opened his mouth I kept thinking how truly awful he was. The lone bright spot here at all is seeing Mr. Sci-fi himself, Forrest J. Ackerman, play the curator of a wax museum and chatting to his wax Frankenstein affectionately called Frankie. Other than that this is a complete bust - now how is that for another tired, dreadful, trite pun!\"\r\n1\t\"John Holmes is so famous, he's infamous (as the Three Amigos would say). This is a Rashomon-like story about the events surrounding the Wonderland Murders of the early 1980's, in Los Angeles. The story is pieced together from the retelling of a few of the participants. There is story from the friend's perspective, namely David Lind (played by Dylan McDermott). He is a participant in the robbery assault at Eddie Nash's place (Eddie Nash is a infamous drug dealer - and is the suppose to be the same character Alfred Molina played in Boogie Nights) and is heavily into the drug scene. There is John Holmes' perspective (played by Val Kilmer), which makes him out to be a pawn stuck between two kings (with a severe case of cocaine cravings). There is also the patchwork recollections of John's wife (Sharon - played by Lisa Kudrow) and his girlfriend (Dawn - played by Kate Bosworth) that fill in the spaces between the two stories. It is basically the same time frame that we are looking at, just each character's version. The only thing that is missing is the perspective from the dead people. <br /><br />Paul Thomas Anderson's Boogie Nights portrays John Holmes as a slightly heroic character, with a tragic yet comedic karma. He is a caricature of a real person. He was more of less, a mixed up kid that got what he got through his \"\"large\"\" endowment. Director James Cox turns the comedy off and makes this episode in John's life into a nightmare for all of us watching. The details of the real life murders make this movie even more eerie.<br /><br />Val Kilmer took what he learned of Jim Morrison, from the Doors, enhanced the performance for the Salton Sea, and then further enhanced that to bring us the deterioration of John Holmes through cocaine. All of the actors pull off very realistic looking portrayal's of cocaine junkies. Josh Lucas' performance stands out as one of the best in the movie. He plays Ron Launius (I think this character is suppose to be the same as the Thomas Jane character from Boogie Nights). Ron was the leader of the gang, loved having John Holmes around as a novelty and had a cocaine craving like sharks enjoy blood. The cocaine use seems so realistic as to make one think. Did they really use Splenda ?? <br /><br />Where Boogie Nights has a bubblegum pop feel to it (lots of color and 70's nostalgia), Wonderland is dark. The action is fast and furious, with a lot of jumps. It is twitchy and grainy. There is no comedy, just a never ending pace, as if the director is trying to put us into the nervous, fast paced, edgy cocaine high to make us feel what the characters are feeling. This is a graphic movie. It has one of the most intensely violent scenes I have ever seen in a movie. It actually shows the murders themselves (through the eyes of John Holmes at first and then from a third person perspective). It is so graphic, it looks like police evidence of a crime. I had to pause after this scene and remind myself this was just a movie. This movie is definitely not recommended for everyone. I recommend it as a good alternative to Boogie Nights, for those interested in the other sides of John Holmes.<br /><br />-Celluloid Rehab\"\r\n0\tIf I had realized John Wayne was in this movie, I would not have watched it. It's demeaning to the Japanese, unfortunate for Hollywood and embarrassing to any thinking person. But then, most John Wayne movies are like that. Hollywood in the fifties still believed that everybody in the world loved Americans when the truth was (and still is) somewhat different. The movie deals with the nineteenth century isolationism of Japan. Maybe it's Hollywood that should be isolated.To put it as succinctly as possible, this film is appalling jingoistic claptrap.(Sort of a Madama Butterfly with bad music.)\r\n0\tI was looking forward to Kathryn Bigelow's movie with great anticipation after the endless hype and 6 Oscars which it was awarded. Unfortunately it really isn't a good movie. The depiction of the situation certainly seemed to be accurate and believable on all counts, but beyond that the story simply came across as incomplete and the direction of the movie appeared to be uncertain and haphazard. The actors put in a good effort, but for me I didn't really get what the movie was trying to be. It's not as atmospheric and gripping as Full Metal Jacket, not as epic as Band of Brothers, not as action packed as...well, anything. I certainly can't see why it was nominated for so much, nor why people are 'hyping it up' to these epic proportions. Mind you, given the calibre of movies in the last couple of years I suppose there's not a lot to choose from.\r\n0\tLa Sanguisuga Conduce la Danza, or The Bloodsucker Leads the Dance as I believe is it's common English title, is set on 'Ireland' in '1902' where the mysterious Count Richard Marnack (Giacomo Rossi-Stuart) invites soon-to-be out of work theatre actress Evelyn (Patrizia Webley as Patrizia De Rossi) & three more of her fellow soon-to-be out of work actress friends Cora (Krista Nell), Penny (Lidia Olizzi) & Rosalind (Marzia Damon as Caterina Chiani) to his castle situated on a small island just off the coast. At first Evelyn is reluctant but is persuaded when it is agreed stage hand Samuel (Leo Valeriano) goes along as well. Once there Count Marnack tells his guests that his Father & Grandfather both cut the heads off their cheating wives using a ceremonial knife & there's a feeling of unease when it turns out that Evelyn looks EXACTLY the same as the current Count's wife who ran away not too long ago... Along with having to worry about weirdo servants it turns out that someone wants to use the knife themselves to chop a few heads off...<br /><br />This Italian production was written & directed by Alfredo Rizzo & is total, complete & utter crap from start to finish. First things first lets start the criticism with the title The Bloodsucker Leads the Dance, lets examine that title because when I do I feel somewhat cheated that there aren't any Vampires or any form of bloodsucking whatsoever, no-one 'leads' anything at anytime & there most certainly isn't any dance or dancing so don't expect any of these things. What you should expect though is a tedious, dull, boring pointless little 'giallo' that takes over an hour before anyone is killed & any sort of murder mystery starts to take shape, the first hour of La Sanguisuga Conduce la Danza is as plot less & uninteresting as anything out there. The best way to imagine it is to think of the most boring soft-core porn film you've ever seen, then cut most of the soft-core porn out & that just leaves bad actors, bad dubbing, bad dialogue, a tiny bit of soft-core sex & lesbianism & absolutely nothing else. Yep, it really is that bad. The mystery elements are crap, people do illogical things for no apparent reason & the overly complicated 'twist' ending is as bad as the rest of it, The Sixth Sense (1999) this ain't!<br /><br />Director Rozzi does an OK job & La Sanguisga Conduce la Danza actually has a nice look & feel to it despite it's obvious low budget, I mean there are scenes where he shows a 'storm' raging outside the castle however the stock footage used is in black & white! So the film jumps from bright colour to black & white whenever it cuts to the storm & back to colour again! There is one absolutely hilarious scene where a maid & her friend discuss her breasts & she lets her friend feel them who is then full of compliments, this scene is so funny & just so unnatural that it's priceless & easily the films best moment even if a bad 70's porno would be embarrassed by the dialogue! There is minimal nudity & the sex/lesbian scenes are very tame. Forget about any blood or gore as there isn't any apart from a decapitated head.<br /><br />Technically the films pretty good, the period setting & production design are actually quite impressive although it's not massive in scope it does the job effectively enough. The film has a nice sense of colour & the cinematography is fine. The film is dubbed so it's hard to give an opinion on the original performances but the voice actors are terrible & the dialogue is even worse than usual.<br /><br />La Sanguisuga Conduce la Danza is a terrible film, it makes no sense, it has virtually no story for over an hour, it has possibly the most misleading title ever & is really dull & boring with a confused stupid 'twist' ending. As far as Euro horror fans go there are plenty of much better films than this so please don't waste your time, as for anyone else this is definitely one to avoid. Trivia Note: the notorious (& banned in the UK) Nazi exploitation/horror film Horrifying Experiments of the S.S Last Days (1977) AKA SS Hell Camp & The Beast in Heat was directed by Luigi Batzella & he has a fairly substantial role as a police detective in La Sanguisuga Conduce la Danza.\r\n1\t\"If you like Deep Purple, you will enjoy in this excellent movie with Stephen Rea in main role. The story is about the most famous rock group back there in 70s, Strange Fruits, and they decided to play together again. But, of course, there is going to be lots of problem during theirs concerts. Jimmy Nail and Bill Nighy are great, and song \"\"The Flame Still Burns\"\" is perfect. You have to watch it.\"\r\n1\tI saw this movie as a teenager and immediately identified with Reese Witherspoon's portrayal of Dani Trant, a 14-year-old tomboy in rural Louisiana circa 1957. She feels that she will never be as beautiful as her older sister, Maureen (a now rarely seen Emily Warfield), and feeling out of place in terms of her conservative Baptist upbringing. Then seventeen year old Court Foster (Jason London), the son of her mother's close friend (Gail Strickland) moves in next door, Dani experiences her first crush, while Court enjoys her company, and willful spirit. Dani succeeds in getting her first kiss from him, but as soon as he sees Maureen, he falls head over heels for her, leaving Dani behind. The sisters' close bond is fractured severely by the rivalry that erupts, which only deepens when Court dies in a tragic accident. The girls then are made to realize how much they need each other.<br /><br />Sam Waterson and Tess Harper are just perfect as the loving parents, trying to balance their daughters' individuality, at the same time trying to keep the family together. The beautiful cinematography, and the wonderful soundtrack featuring Elvis Presley, The Platters and many more contribute wonderfully to the film's atmosphere of a simpler time.<br /><br />A touching coming-of-age film with a timeless message.\r\n0\tWe are not in the fairy tale of the naked emperor. We may confess the truth of what we see, without being stupid, confess, that this show is in many aspects just incomprehensible and that it is clear, that much of it was created out of pure intuition without real concept.<br /><br />Well, obviously many people like such stuff. I don't. I prefer well thought and planed shows. And I also confess, that the show is much to serious for my taste and boring...those love and drug stories...There are so many exciting soaps with lot of suspense (Dallas e.g.), but Twin Peaks can't catch my attention. I don't care about those people, except Cooper and Gordon Cole.\r\n0\tAs long as there's been 3d technology, (1950's I think) there's been animation made for it. I remember specifically, a Donald Duck cartoon with Chip and Dale in it. I don't remember the name at the moment, but the plot was that Donald worked at a circus, was feeding an elephant peanuts and Chip and Dale were stealing the peanuts. This was made to watch in 3d probably 1960's. If you happened to watch Meet the Robinsons in 3d in theaters, they showed this cartoon before the movie and explained the details of it's origin. There are probably somewhere around 100 cartoons made specifically to be viewed through 3d glasses. This claim was a bad move because it's not difficult to prove them wrong. On top of that, this just looks like a bad movie.\r\n1\t\"I really dislike both Shrek films. (Since their both \"\"PG\"\" and have words in them I would never say myself, so I disliked them.)<br /><br />But when it comes to \"\"Spirit: Stallion of the Cimarron,\"\" which I just barely watched for the first time last month, I became a fan of animated films, other than Pixar. ***Spoilers ahead*** In \"\"Spirit: Stallion of the Cimarron,\"\" a horse foal is born and eventually becomes the leader of his heard. One night, he sees a strange light in the distance, and he sets off toward it. This action eventually leads to his capture, and several more things. Throughout the movie, we hear a narration. It's through the thoughts of Spirit, though the horses never talk. This is what makes the movie so goo. They (the movie makers) recored real horses to do the sounds the horses made; none of those sounds were made by humans.<br /><br />Spirit meets Rain, a beautiful mare, and Little Creek, a native-American, who owns Rain. Little Creek later frees Spirit and Rain, they go running home.<br /><br />I have never been a big fan of Brian Adams, but I intend to buy the soundtrack to this film in the near future. <br /><br />Watch this film, and you won't regret it. My Score: 10/10\"\r\n0\t\"I saw this movie the other night and I have to honestly say it's one of the worst films I've ever seen. The acting is fair, but the plot is totally ridiculous. A killer is born because of all the \"\"energy used to make the movie\"\" and if the film is burned the killer will die? How unbelievable is that? The characters were underdeveloped to say the least...for example, all of a sudden the man mentions \"\"Aren't you trying to complete the film because your mother couldn't?\"\" So we're supposed to go along with this? We had no idea it was her daughter until half way through the film. The movie really didn't spotlight on anyone, we didn't know anything about the main people who survived except Ringwald's character was a whiney actress, the guy was on the set when the people died and Raffy wanted to be a director like her mother. Not truly diving in to know who they are. Seemed things were rushed to just get to the killings. The whole plot is entirely too weak for my taste and I was extremely disappointed. Anyone who enjoyed this piece of crap, obviously needs to learn a thing or two about film making. I can't believe anyone would agree to star or even work on this picture. It's not funny, it was not scary and was cliche through the entire film. I found myself predicting what would happen before each scene, which believe you me wasn't hard at all to do. It's a disgrace and I'm deeply sorry I wasted an hour and a half watching the mess. 1/10.\"\r\n0\tHello Mary Lou: Prom Night II starts at the Hamilton High School prom of 1957 where Mary Lou Maloney (Lisa Schrage) is cheating on her date Bill Nordham (Steve Atkinson) with Bud Cooper (Robert Lewis). Bill finds out & is devastated, meanwhile Mary Lou is announced prom queen 1957 & takes to the stage to accept her award. Bill, still hurting, decides to play a practical joke on Mary Lou so he throws a firecracker on stage but the still lit fuse catches Mary Lou's dress setting it & her on fire, within seconds Mary Lou is toast. 30 years later & Hamilton High is soon to hold it's annual prom night. Bill (Micheal Ironside) is now the principal & has a teenage son named Craig (Justin Louis) who is dating Vicki Carpenter (Wendy Lyon) & are both planning on going to the prom together. Bud (Richard Monette) is now a priest, that terrible night 30 years ago still haunt both Bill & Bud. One day Vicki is looking around the schools basement when she discovers a large trunk which she opens, this turns out to be a bad move as the vengeful spirit of Mary Lou is set free & is intent on claiming her crown as prom queen & in her spare time sets out to avenge her untimely death. First up is Jess Browning (Beth Gondek) whose death is put down to a suicide, Mary Lou begins to posses Vicki's body as the night of the prom draws nearer. After disposing of some competition in the shape of Kelly Hennenlotter (Terri Hawkes) who tries to fix the prom so she wins. Mary Lou in Vicki's body is crowned Hamilton High prom queen which allows Mary Lou herself to come back from the dead to make an unexpected appearance & really liven the party up...<br /><br />With absolutely no connection to the original Prom Night (1980) & directed by Bruce Pittman I thought Hello Mary Lou: Prom Night II wasn't a particularly good film. The script by Ron Oliver concentrates more on supernatural elements rather than cheap teen slasher themes, whether this was a good or bad decision will depend on your expectations I suppose. Personally I found these different elements didn't really gel or work that well together at all. The whole film was far to slow to be really enjoyable, after the opening sequence where Mary Lou dies no one else is killed until the half hour mark & then the film plods along for another half an hour until Vicki is finally possessed & the film finally picks up momentum for the climax where an evil Mary Lou kills a whole one person at the prom before she is supposedly defeated, come on horror film fans you did expect that clichéd 'killer not dead & ready for a sequel' ending didn't you? Don't expect a hight body count, just five throughout the entire film & none particularly graphic although I did like the way Monica (Beverley Hendry as Beverly Hendry) tried to hide in a shower room locker which Mary Lou crushed & resulting in poor Monica's blood oozing out. The supernatural side of Hello Mary Lou: Prom Night II is depicted by Vicki having lots of hallucinations for the first hour & Mary Lou controlling objects during the latter stages including a couple of creepy shots of a rocking horse which comes to life, the blackboard scene is quite good as well as it turns into water & zombie hands drag Vicki into it. The slasher side of Hello Mary Lou: Prom Night II isn't outstanding, I did like Mary Lou herself as she churns out the obligatory one-liners & she made for a good villain even if she didn't get to kill enough people. Oh, & yes I did get the running homages to various other horror film director's with almost all of the character's sharing last names with one, this obviously adds nothing to the film but is a nice little touch I suppose. The acting is OK but the normally dependable Micheal Ironside looks lost & uninterested almost as if he's asking himself what he's doing in this & if he'll ever work again. Forget about any gore, someone is hanged, there is a stabbing with a crucifix that happens off screen, someone is impaled with a neon light, a computer goes crazy & electrocutes someones face(!?) & Mary Lou bursts out of Vicki's body at first as a rotting zombie which was quite a cool scene. There are some full frontal nudity shots in the girls shower as well, if that's your thing. To give it some credit Hello Mary Lou: Prom Night II is OK to watch, has reasonable production values throughout & is generally well made. Overall I was disappointed by Hello Mary Lou: Prom Night II, it was just too slow & ultimately uneventful to maintain my interest for nearly 100 minutes. I'm not sure whether it deserves a 3 or 4 star rating, I'll give it a 4 as there's nothing specifically wrong with it I suppose & I've sat through much worse films but it just didn't really do anything for me I'm afraid.\r\n0\tToday, I wrote this review in anger at Uwe Boll and Hollywood.<br /><br />Hollywood has produced movies based on one of the darkest days of our nation. 911 changed everything. It changed our perception of security. It changed our understanding of the evil of man and humanity. Most importantly and devastatingly , it changed our world.<br /><br />However, I can't not stress how utterly repulsed, disillusioned, and angry I am at the careless, blatant ignorance of Hollywood seeking to make a lucrative profit out of death and destruction. This film and those like it are bound to cause controversy amid word-of-mouth among moviegoers and critics alike; most surely to be echoed by the mainstream press. Hollywood has sunk to a new low. Even lower than the low-down bastards who perpetrated the most barbaric acts of savagery and unrelenting cruelty. Behind it all is Uwe Boll. I am very angry at this movie. How dare they disrespect the memories of families of those lost? How dare they mock the lives of the brave men and women who risked their lives to save those trapped in the doomed towers on that fateful day of infamy?!?!? How dare they try to satirize and at the same time capitalize on a national tragedy in the mist of a mourning and weary post-911 world?!?!?! How...dare...they? <br /><br />To those who have the gall to even think of seeing this morally appalling travesty, I say this with a heavy heart with all my strength: Remember. Think back to that day and ask yourself whether or not you are a sane and moral person. Think back to that day, ask yourself whether or not this film is a disgrace and dishonor to the lives lost on that day. Think back to that day of the outcry of families of loved ones. Think back to that day of the lives lost on those two planes. Think back to the further carnage it caused following the attacks.<br /><br />Ask yourself if you have a soul.<br /><br />Think. Remember. Respect the memories of the lives lost on 911 by not seeing this film at all.\r\n0\tKurosawa really blew it on this one. Every genius is allowed a failure. The concept is fine but the execution is badly blurred.<br /><br />There is an air of fantasy about this film making it something of an art film. The poverty stricken of Tokyo deserve a fairer and more realistic portrayal. Many of them have interesting stories to tell. A very disappointing film.\r\n1\tThis episode is certainly different than all the other Columbos, though some of the details are still there, the setup is completely different. That makes this Columbo unique, and interesting to watch, even though at times you might wish for the old Columbo. I liked it a lot, but then, I like almost any Columbo.\r\n1\tThis movie was excellent for the following reasons: 1) It contained great backdrops and sets. 2) It showed the disparity of a war-torn environment alongside a technological one. 3) John Cusack's acting was terrific. He portrayed angst very well. 4) It showed the vulnerabilities of everyone in a war-torn situation. 5) It gave us a picture of what might happen in the future in many respects. I was also impressed with the acting for the most part. Hilary's acting was, I found, the most stilted. The morals and values of everyone in a war-torn situation are up for grabs. The liberal journalist and the conservative business man are capable of doing anything in any situation and are equally unpredictable. Great stuff. PSP\r\n0\tOne of the silliest movies of the 1940s, an unbearable haunted house comedy with music starring Kay Kyser. Kyer, orchestra leader and radio-star (and eternal college fraternity goof-off), was sort of the precursor to Spike Jones, hamming it up for his guests and backed up willingly by his merry troupe of musicians. He's hired to play a birthday party in a gloomy mansion, the kind where poison darts imported from Africa are framed and hung on the wall. The shindig is beset with a creepy judge, a scary professor, an ominous swami, lots of giggly females, and enough bad jokes to fill three Bob Hope pictures. The songs (by Jimmy McHugh and Johnny Mercer) are nothing to brag out, and neither is over-confident Kyser, yukking it up with elbow-in-the-ribs material that turns 1940 back ten years. * from ****\r\n1\tThe Last Hunt is one of the few westerns ever made to deal with Buffalo hunting, both as a sport and business and as a method of winning the plains Indian wars. Before the white man set foot on the other side of the Mississippi, the plains used to have herds of American Bison as large as some of our largest cities. By the time of the period The Last Hunt is set in, the buffalo had been all but wiped out. The 20th century, due to the efforts of conservationists, saw a revival in population of the species, but not hardly like it once was.<br /><br />Robert Taylor and Stewart Granger are co-starring in a second film together and this one is far superior to All the Brothers Were Valiant. Here Stewart Granger is the good guy, a world weary buffalo hunter, who has to go back to a job he hates because of financial considerations.<br /><br />The partner he's chosen to throw in with is Robert Taylor. Forgetting Taylor for the moment, I doubt if there's ever been a meaner, nastier soul than Charlie Gilsen who Taylor portrays. In Devil's Doorway he was an American Indian fighting against the prejudice stirred up by a racist played by Louis Calhern. In The Last Hunt, he's the racist here. He kills both buffalo and Indians for pure pleasure. He kills one Indian family when they steal his mules and takes the widow of one captive. Like some barbarian conqueror he expects the pleasure of Debra Paget's sexual favors. He's actually mad when Paget doesn't see it that way.<br /><br />No matter how often they refer to Russ Tamblyn as a halfbreed, I was never really convinced he was any part Indian. It's the only weakness I found in The Last Hunt.<br /><br />However Lloyd Nolan, the grizzled old buffalo skinner Taylor and Granger bring along is just great. Nolan steals every scene he's in with the cast. <br /><br />For those who like their westerns real, who want to see a side of Robert Taylor never seen on screen, and who don't like cheap heroics, The Last Hunt is the ideal hunt.\r\n0\t\"Peeew this stinks! As everyone knows it's based upon some Geico insurance commercials; what no one knows is WHY?! Those commercials were amusing on first viewing at best; hardly fodder for a series. (The talking Geico gecko -- that's another story. Now that would make for an intriguing series!) And why on earth did ABC -- as reported in the press -- actually agree to buy the cavemen character rights from Geico for this? After all, the idea of cavemen struggling in the modern world is hardly unique to TV; Phil Hartman had a recurring Saturday Night Live role as The Unfrozen Caveman Lawyer over a decade ago. And that's how a concept like this works best -- as an occasional installment. But a regular series? Fuhgeddaboudit. (A 1960s series called \"\"It's About Time\"\" also used the cavemen in the modern world concept. It lasted one season.) <br /><br />One of the show's directors, who was also responsible for the Geico commercials, was recently quoted as saying: \"\"We were so excited when we were shooting our commercials because we felt like we had something that was very unique and we had bigger stories to tell.\"\" Wrong.<br /><br />In the annals of bad TV, this is destined to take its place alongside 1972's \"\"Me and the Chimp\"\" as one of the all-time worst. The lead actor in the embarrassing Chimp fiasco actually went into shame-by-association hiding after it was abruptly canceled. No doubt our cavemen friends will follow suit.\"\r\n0\tSome kids are hiking in the mountains, and one of them goes into a large tunnel and discovers some old mummified gladiator. He puts on the gladiator's helmet and spends the rest of the movie killing all the other hikers.<br /><br />This thing is just so utterly senseless it's maddening. Here's a short list of things that don't make any sense:<br /><br />1) A guy and a girl are in their tent and they think they hear something outside. The guy goes out to investigate and finds another hiker outside. Then he hears his girlfriend scream so they head back to the tent - arriving the next morning?!? He was only 50 feet away!<br /><br />2) These two dunderheads then hear another girl scream (What, 100 feet away?), but don't investigate because they're afraid they'll get lost.<br /><br />3) Another guy and a girl are walking around, and in about their 10th scene together the girl informs the guy that due to the circumstances, protocol no longer requires him to address her as professor. I mean, what the...? First off, that's just a really stupid thing to say, secondly he never called her professor in the first nine scenes they were in together.<br /><br />4) A wounded girl attacks Demonicus and he stops her, telling her that part of his gladiator training taught him how to wound without killing. Um, yeah, we kinda noticed she's wounded and not dead because she's up and walking around. But, thanks for that tidbit of information.<br /><br />5) One girl is tied up in Demonicus' lair, and when someone attempts to free her, she instead instructs this person to go and get help. Um, look, idiot, if she set you free, which would take about 5 seconds, there would be no need to get help.<br /><br />And it just goes on and on. The whole middle part of the movie is spent with the two idiots getting lost in the woods, then they fight, then they pitch a tent and ignore the screams of their friends, then they wander around some more. It's just so damned boring and pointless that I turned the DVD off halfway through. <br /><br />None of these characters are sympathetic, especially the ones that get the majority of the screen time. Demonicus himself made me laugh out loud every time I saw him - he looks like a kid in a Halloween costume, scrunching his face up to look evil. He runs, or should I say scampers around like he's gay. The special effects are comedic, the acting is for the most part awful, and nothing makes any sense.<br /><br />Overall, maybe this concept could have produced an enjoyably campy film if they put some more time and effort into it, getting rid of the ludicrous dialogue, creating characters with actual likable personalities, having some sort of logical flow to the action, and maybe even making Demonicus a female character in a sexy gladiator outfit. But no, instead we get this senseless pile of nonsense that will bore you to death.\r\n0\t\"A pointless movie with nothing but gratuitous violence. The only fun I had was playing \"\"spot the location\"\", as much of it was filmed in my home town of Regina, Saskatchewan. I like to support locally produced films but this one was a major disappointment.\"\r\n0\t\"OK this movie had a terrible premise. Be serious according to the movie they had just been through an apocalyptic war yet they have money to buy huge robots and pit them against each other. Each country decides instead of investing into rebuilding their country they would rather fight with robots no one could afford. Here's a better idea, lets rely on our most inept resource,jocks, to fight our battles. <br /><br />Everyone says what about the director, what about him. He makes a good movie, he makes a bad movie. There is no reason to give this movie some credit just because of the director, maybe he was asleep? I thoroughly enjoyed this movie, because it was so cheesy and ridiculous I had to laugh. I actually had a good time watching it, well except for the cowboy mentor who turns out to be an assassin(trust me no one would see this guy as an assassin, so it is a surprise, however lame) What kind of training exercise is a jungle jim anyway. I was sad to see Mst3k had not done this one. I am giving a two star rating however because nothing could be as bad as \"\"manos the hands of fate.\"\"<br /><br />The budget does not matter either, I have seen plenty of reasonable movies that had nothing for budgets like cube. The storyline was not even plausible and I have seen better acting in school plays. Surly they could have afforded an eleven year old from any middle school play.<br /><br />Anyway pick it up, it is a fun movie to watch.\"\r\n1\tI love this movie. It was one of my favorite movies. The action never stops. The whole movie was done very well. The ending is really good. Ontop of it being action filled, they even have a surprised put in there for you. When i saw what the movie was about on the internet i was kind of not sure if i wanted to see this movie, but sense i am such a big Luke perry fan i decided to give it a chance. I am glad that i did give it a chance because this was a very well though out movie. It was very original. Whoever thought up this movie gets a standing ovation from me. The acting was great. Luke Perry did an excellent job once again. I give this movie the highest rating.\r\n1\tEnterprise is the entertainment, but it is also the forefront of Science Fiction and a positive outlook for tomorrow. With gratitude and respect Mr. Berman and Mr. Braga. I wish you well, thank you both for your service to Trek.<br /><br />Enterprise is what Trek is about...\r\n0\t\"Since \"\"Rugrats\"\"' falling from the category of good and funny cartoon series to a mediocre and indeed outright horrible fare for two year olds in the past three or four years, obviously the tyrants at Klasky-Csupo should be out of ideas. After dumbing down all of the characters, adding even stupider new ones, replacing some voices (though I like Nancy Cartwright, she is NOT Chucky Finster!), and having no sense of continuity (ex.: in a Kimi episode I watched the other day, Tommy and Chucky each got a new puppy; but it subsequent episode, the aforementioned dogs never appear), you'd think the creators could kill the show for mercy. But noooo.<br /><br />All I will say concerning this special is that it sucks! While not as horrible as the Kimi episodes, everyone is even stupider than they were, including Grandpa (my God! He used to be the best character on the show, but now, he has no real purpose). The ending is needlessly fluffy, and the only thing different between this and other crappy new episodes ('98-'01) is that the kids can interact with adults. Whoa, what fun!<br /><br />No stars at all for \"\"The Rugrats All Growed Up\"\". Klasky-Csupo, please DESTROY this show before it gets any worse.\"\r\n0\t\"I have been a fervent Hal Hartley supporter since I saw his short \"\"Surviving Desire\"\" in high school, and even then was still completely unmoored by his searingly brilliant \"\"Henry Fool.\"\" But this 10-year-later sequel is not only unnecessary, it's disgraceful.<br /><br />After a choppy and expeditious start, \"\"Fay Grim\"\" devolves into pseudo-intellectualism, flat out boredom, and finally unwarranted - and unwanted - nihilism. And that's just the plot.<br /><br />The majority of the new faces are as frivolous and poorly-developed as the movie: one particularly flat character ends up hogging half the time we spend with the infamous Henry Fool himself, and it's his only spoken scene in the film!<br /><br />Jeff Goldblum's Agent Fulbright, it seems, is the only bright character (a pun surely intended by Hartley as well). How, then, is he left? **SPOILER** Dead via a car bombing, easily making this the gentle-natured Hartley's most violent film to date, and tonally all wrong in a film that's already all wrong from the word go.<br /><br />As for the other new characters, Angus James, Ned Fool (or is it Grim?), not to mention Fay herself... well, I won't spoil their fates, as the movie does a good enough job of that all on its own (when it isn't busying itself with yet another godawful canted angle, which gives the disconcerting impression that Hartley is moving backwards from Auteur to crappy film student).<br /><br />This piece is a complete disaster, a dreadful mess that isn't even good-humored enough to revel in its messiness. Instead it self-indulgently crams the typically fun hipster pretenses of its director into the \"\"real world\"\", one uglier and meaner than it need be but not nearly ugly or mean enough to come close to having anything to say. In doing so, Hartley tracks sh*t all over my memories of these people and the marvelous world he originally created for them.<br /><br />I have rarely been so depressed at the movies, and I'm counting \"\"Leaving Las Vegas,\"\" which at least developed fresh new characters we grew to love before destroying them, instead of immediately disregarding characters already beloved.<br /><br />Grim, indeed.\"\r\n1\t\"This film is one of the best shorts I've ever seen - and as I make it a point to be at all the major film festivals, I've seen a lot, especially of what the industry considers \"\"the best.\"\" I'm not a fan of Monaghan. His acting generally tends to be overdone and uninteresting to me, his only decent performance being in Lost, so I generally try to avoid his films. I did, however, happen to see this at a film festival a few years back and was completely awed. This director really knows what she's doing. Of course, you are going to get the trolls (or just ignorant people) who don't understand what constitutes a good film and rip on low budget work because they have no idea what went into it. But luckily, from what I've seen, they are in the minority when it comes to this gem.<br /><br />Let's not deny that the film was working on no budget, and that a couple of the supporting actors could still use work, because that's certainly true. The production value is very low, but what can you expect for a first real film from someone still in high school? Pretend for a moment that the budget doesn't matter. If you take away a bit of the acting, the sound quality (which actually wasn't the fault of the filmmaker; I saw this at a festival and the sound was fine...I guarantee whoever made the DVD itself screwed up), and the fact it was shot on mini-DV, then what are you left with? The story, the visual composition and the soul of the film, which are indisputably flawless.<br /><br />Nanavati can tell a story. That much is clear. She can write substance-heavy, engaging scripts better than most people in Hollywood, create a shot list that perfectly compliments that story, and bring it to life in a fascinating, creative way that, were this higher budget, might have won awards. Give it more experienced actors, better sound post-production, and 35mm instead of mini-DV and even the trolls couldn't complain. This girl is incredible, and keeping in mind that Insomniac was made a good few years ago, she's done some amazing work since. The trailer for Dreams of an Angel shows that, and I can't wait to see the higher budget stuff she's done. 9/10 stars, this is one hell of a movie from one hell of a filmmaker.\"\r\n1\t\"\"\"The Man in the Moon\"\" is a beautifully realistic look at life through the eyes of an adolescent. Director Robert Mulligan magically re-creates screenwriter Jenny Wingfield's autobiography of her childhood with gorgeous cinematography and a haunting, lyrical musical score. This film hits home as one of the most powerful and emotionally affecting films in recent times.<br /><br />This film is incredible, all the acting first rate, especially Sam Waterston and an astonishing performance by Reese Witherspoon in her film debut. You will feel every emotion as this life changing summer in 1957 on the Trant family farm comes to a conclusion.<br /><br />\"\"The Man in the Moon\"\" was a limited release in 1991, and you will love the fact that most of you're family and friends will probably have never heard of it. Buy this dvd and enjoy 100 minutes of pure poetic art. This film is truely the essence of filmaking at its finest.\"\r\n0\tHere's a movie with a good cast and nice looking location work but it just don't have it. Director Richard Brooks must have been a little bit tired at this stage of the game; How much better his THE PROFESSIONALS was! The horses and the rest of the action seemed to be in slow motion even during the non-slow motion scenes. This film needed to be sped-up, if anything. That horse lather sure looked awful phony to me and the obvious tire tracks in those desert tracking moments- just lazy. sloppy work. Too bad. The actors did OK, but I've certainly seen all of them do better. Ben Johnson's always a joy, though. I first saw this flick almost 30 years ago; was disappointed then and remained so upon second viewing 30 years later.\r\n0\tThis was a new alltime low among westerns. The writing is excruciatingly bad, characters are impossible to emphasize with and are either disgusting or bland, the violence is appalling and technically not very convincingly executed. And Tobey Maguire shows us the flip side of his talent, sleepwalking through his part with those expressionless eyes and that raspy voice of his that here betrays only mannerism. 'Ride With the Devil' is among my five worst movie experiences ever, a western never to be surpassed in the negative respect.\r\n0\tOk, I've seen plenty of movies dealing with witches and the occult but this one was just plain weird. This movie starts out as this cult of witches led by a really bad Orson Wells playing the staring role (couldn't they have gotten somebody that looked and acted more like a Satanist) he just did not belong in this movie at all. But anyhow, the coven takes a new member and stabs a doll that resembles somebody and makes her have a miscarrage. The lady that had the miscarrage and her husband go off to a place called Lillith on busness and the lady meanwhile is seeing an image of her sister or whoever it is calling to her and warning her to stay away from there and to never use her powers there or she will die. The couple after they get settled down in the strange town discover that all the inhabitants are all witches and she becomes nosey and afraid of all of her neighbors and friends. Then strange things start to happen as the lady discovers a funeral taking place on a hill that suddenly disapears (that was creepy) as well as seeing the little boy belonging to Orson Wells at the playgroud that he later asks the lady to help him bring back to life. The lady soon tries to escape the town but only to find herself traped by it's inhabitants and powers and finds herself ignoring all of what the spirit tries to warn her about. This movie is ok, it's has it's moments of suspense but it really could have done much better than to have Orson in there.\r\n1\tThis is easily a 9. Michel Serrault, known more for comic roles in the earlier part of his acting career, does a stunning, even worryingly stunning job of impersonating Dr Petiot, a legendary French serial killer.<br /><br />He is just so believable at every and any moment in the film, that the actor completely disappears behind the character - only the very best ever achieve this feat, and when they do it is only in a handful of parts at best.<br /><br />The whole story (a real story which happened in 20th century France) is so powerful, so sinister - it makes for a very strong film that one remembers for a long, long time.\r\n0\tApparently, The Mutilation Man is about a guy who wanders the land performing shows of self-mutilation as a way of coping with his abusive childhood. I use the word 'apparently' because without listening to a director Andy Copp's commentary (which I didn't have available to me) or reading up on the film prior to watching, viewers won't have a clue what it is about.<br /><br />Gorehounds and fans of extreme movies may be lured into watching The Mutilation Man with the promise of some harsh scenes of splatter and unsettling real-life footage, but unless they're also fond of pretentious, headache-inducing, experimental art-house cinema, they'll find this one a real chore to sit through.<br /><br />82 minutes of ugly imagery accompanied by dis-chordant sound, terrible music and incomprehensible dialogue, this mind-numbingly awful drivel is the perfect way to test one's sanity: if you've still got all your marbles, you'll switch this rubbish off and watch something decent instead (I watched the whole thing, but am well aware that I'm completely barking!).\r\n1\t\"This was Eddie Robinson's 101st film and his last, and he died of cancer nine days after shooting was complete. All of which makes his key scene in the movie all the more poignant.<br /><br />Although some of the hair and clothing styles are a bit dated (also note the video game shown in the film), but the subject of the film is pretty much timeless. Heston said he had wanted to make the film for some time because he really believed in the dangers of overpopulation.<br /><br />Several things make this film a classic. The story is solid.<br /><br />The acting is top-notch, especially the interplay between Heston and Robinson, with nice performances also by Cotten and Peters.<br /><br />The music is absolutely perfect. The medley of Beethoven, Grieg, and Tchaikovsky combined with the pastoral visual elements make for some truly moving scenes. This was the icing on the cake for the film.<br /><br />And the theme (or the \"\"point\"\") of the film is a significant one. Yes, it's a film about overpopulation, but on a more important note it's a cautionary tale about what can go wrong with Man's stewardship of Earth. It's in the subtext that you find the real message of the film. Pay attention to what Sol says about the \"\"old days\"\" of the past (which is our present), and note how Thorn is incapable of comprehending what Sol is saying.<br /><br />This film is one of my top sci-fi films of all time.\"\r\n1\tDespite a tight narrative, Johnnie To's Election feels at times like it was once a longer picture, with many characters and plot strands abandoned or ultimately unresolved. Some of these are dealt with in the truly excellent and far superior sequel, Election 2: Harmony is a Virtue, but it's still a dependably enthralling thriller about a contested Triad election that bypasses the usual shootouts and explosions (though not the violence) in favour of constantly shifting alliances that can turn in the time it takes to make a phone call. It's also a film where the most ruthless character isn't always the most threatening one, as the chilling ending makes only too clear: one can imagine a lifetime of psychological counselling being necessary for all the trauma that one inflicts on one unfortunate bystander.<br /><br />Simon Yam, all too often a variable actor but always at his best under To's direction, has possibly never been better in the lead, not least because Tony Leung's much more extrovert performance makes his stillness more the powerful.\r\n0\t\"Well, I had to be generous and give this a 2. This was mainly due to the gratuitous holes cut in that lady's shirt where her breasts are. I found that mildly amusing. Other than that, this movie does nothing more than provide a few good laughs with a friend. Funny if you're willing to throw \"\"mystery science theatre\"\" comments at it with someone, but it ain't no better than a 2. And a 2 pretty much sucks.\"\r\n0\tThree tales are told in this film, that seemed to have been shot without knowledge of this being a combined vignette film. The makers relate the three vignettes by having them all connected to shrink Martin Kove, although you never see some of the leads with Kove.<br /><br />The first vignette has sexy Vivian Schilling, a woman afraid of everything under the sun(she makes Adrian Monk look brave), having a paranoia laced evening at home alone. You will literally scream at Vivian for doing some ridiculous things. She spends the majority of her time in a nighty which shows off her amazing features. But her film is the worst if not the most nail-biting.<br /><br />The second vignette is owned by Bill Paxton as he portrays the roommate from Hell. His geeky roommate allows him to take complete advantage of him, and Bill does so whenever he can.<br /><br />The last vignette was funny as a man fears that death will take him at any moment, much like his pal who choked to death on an olive.<br /><br />Not very interesting, as the movie as a whole seems chopped together with very little thought involved. A must for Bill Paxton fans.\r\n0\t\"Near the beginning of \"\"The Godfather: Part III,\"\" Michael Corleone's son wants to drop out of law school and become a musician. Michael Corleone does not want this. But his estranged ex-wife, Kay, manages to convince him to let Anthony Corleone pursue music as he wishes. So he does.<br /><br />That seems like an odd way to start a review, as it is a minor plot point and has nothing really to do with the major action. Just bear with me here; you'll see where I'm going with this eventually. Now let me tell you about the major plot. It is about Michael Corleone wanting to quit crime for good (he has largely abandoned all criminal elements in his family business). But then along comes Vincent Mancini, an illegitimate nephew, who is involved in a feud. So of course Michael must endure yet another brush with criminality and gun violence and all that good gangster stuff. Meanwhile, Vincent has a semi-incestuous affair with Michael's daughter Mary. Oh, and Michael and Kay are trying to patch up all the horrid things that happened at the end of Part II.<br /><br />It is like a soap opera. One horrid, awful, 169-minute soap opera. Gone is any sort of the sophistication, romance, and emotional relevance that made the first two movies hit home so hard. After a 16-year break in the franchise, Francis Ford Coppola delivered a mess of sop and pretentiousness entirely incongruous with the first two films, once again proving his last great work was \"\"Apocalypse Now\"\" back in the 1970's.<br /><br />What's worse, \"\"The Godfather: Part III\"\" isn't even a logical follow-up of \"\"The Godfather: Part II.\"\" Michael is a completely different person. He hasn't just gone to seed (which might be legitimate, even if it'd be no fun to watch). He's become a goody-goody that's trying to fix all the tragedy that made Part II such a devastating masterpiece. His confession to the priest was bad enough, but that little diabetes attack in the middle pushed it over to nauseating. He also gets back together with Kay! For heaven's sakes, there is absolutely no way that should happen, as the 2nd movie made abundantly clear! She aborted his baby, and his Sicilian upbringing made him despise her for it. Didn't Francis Ford Coppola even think of these things?<br /><br />And don't even get me started on Mary and Vincent's affair! For a romance so forbidden, it was shockingly unengaging. Sofia Coppola's acting did nothing to help. She made the smartest move of her life when she switched from in front of the camera to behind it, because she was possibly THE worst actress I have ever seen in a Best Picture nominee. Every line she delivered was painfully memorized, and every time the drama rested on her acting abilities, all she elicited was inappropriate giggles. In the climactic scene--I won't go into detail, but you'll know which scene I'm talking about when/if you watch it--she looks at Michael and says, \"\"......Daddy?\"\" I think I was meant to cry, but the line was delivered so poorly I burst out into long, loud laughter!<br /><br />Now we get to the climax, and now you will also realize why I took time to start the review with a description of Anthony Corleone's musical ambitions. After 140 minutes of petty drama and irrelevant happenstances, Anthony Corleone returns... with an opera! So Michael, Kay, Mary, and Vincent go to see it, and for about 10-15 minutes a couple killers walk around trying to assassinate Michael. About this climactic sequence, I must say one thing: It was really good! But not because of the killers--they were pretty boring. I just really liked the opera. It had some great music and real great set pieces. And, from what little it showed us, it seemed that the story had echoes of the Corleone family's origin. I'll bet it was one swell opera, and I'll bet Michael Corleone was glad he let his son switch from law school to music.<br /><br />My biggest wish is this: that Francis Ford Coppola had merely filmed Anthony Corleone's opera for 169 minutes and ditched the rest of the soggy melodrama. Better yet, I wish he hadn't made \"\"The Godfather: Part III\"\" at all. Part II gave us the perfect ending. This spin off was self-indulgent and unnecessary.<br /><br />P.S. This is not a gut reaction to the film. I watched all 3 Godfather films over a month ago (though I was rewatching the first one). Not only does this mean that my expectations for Part III weren't screwed (in fact, I had set the bar rather low for it after what I heard), but it also means I've had a good time to think about all three films. While I was a bit disappointed with Part II at first, the more I thought about it, the better it seemed. But with Part III, it was bad to begin with, then got worse the more I thought about it. The sad thing is that many people will stop with Part I, but if they watch Part II as well, they will most likely go on to Part III. If you have the will, watch Parts I & II and pretend like Part III never existed.\"\r\n0\t\"The title should have been \"\"The walker\"\". That was only he did walk.<br /><br />There was nothing on the movie that was good. The description of the movie doesn't really comply with the plot.<br /><br />The only thing that I can get from the movie is that he was a good son, but a low life terrible person.<br /><br />I'm sorry that I expend my money and time, on this movie. I saw people leaving the theater in the middle of the movie. I stayed hoping that it will better....what a mistake. I got worse.<br /><br />If there is a suggestion that I can make to he producer is to re-direct his life to another field, because making movies is definitely no his cup of tea\"\r\n0\tWhat ever possessed Martin Scorcese to remake this film? And not only did he remake it, completely ruin it? The nonsensical decision to make the character played by Robert DeNiro (in his most overdone performance, and that's saying a lot) into a religious fanatic is ridiculous, and exemplary of attitudes harbored by Hollywood (and Mr. Scorcese especially)- attitudes that compel writers to think that the best way to make a character insane is to tattoo a crucifix on his back. In any case, this movie is awful. <br /><br />\r\n0\tI didn't think it was possible for a horror comedy film to fail so abysmally on both fronts....really awful. The fact that it doesn't take itself seriously (usually a good thing) works against it, primarily because the actors are so wooden you really would swear they are reading cue cards. On the upshot though.....the MST3K version, as always, has a few laughs....\r\n1\tLauren Bacall was living through husband Humprey Bogarts illness & death when she did this film. Rock Hudson was near the top of his 1950's stardom. Dorothy Malone is in excellent form, and wins an Oscar for support. Robert Stack is nominated & falls just short for his role.<br /><br />The story is a little soapy from another time but just as worthwhile as most dramas. Amazing how well drunks can drive in this film & also how quickly Stack sobers up in a couple of the films early sequences.<br /><br />You can see why the cast is so good & actually production wise this film is very good. You can tell Bacall is distracted during this film as while her acting is fine, she looks emotionally drained in some sequences.<br /><br />The sexual references in this film are so mild, that many of today's young viewers would not realize what they are. Film does a good job telling a story & actually leaves a sequel to be made at the end though none ever was made- though Written Beyond THe Wind would be a good title.\r\n0\tThis was a movie that I hoped I could suggest to my American friends. But after 4 attempts to watch the movie to finish, I knew I couldn't even watch the damn thing to close. You are almost convinced the actual war didn't even last that long. Other's will try to question my patriotism for criticizing a movie like this. But flat out, you can't go from watching Saving Private Ryan to LOC. Forget about the movie budget difference or the audience - those don't preclude a director from making an intelligent movie. The length of the movie is not so bad and the fact that it is repetitive - they keep attacking the same hill but give it different names. I thought the LOC was a terrible terrain - this hill looked like my backyard. The character development sequences (the soilders' flashbacks, looking back to their last moments, before being deployed) should have been throughout the movie and not just clumped into one long memory. To this day, I have yet to watch the ending. But there was a much better movie (not saying much) called Border.\r\n1\tI saw this film on television and fascinated by the beauty of Jennifer Mccomb. It was a neat film and you can watch it for the beauty of Africa and of course Mccomb. At that time I was thrilled watching this movie and from then onwards I am trying for VCD of this film but I am unable to find it. Huge African lions makes appearance int his film and we will be spell bounded simply by the size of those animals and grace of them. All section of audience can watch this movie particularly children will enjoy this film. But some scenes involving Mccomb forces parental guidance for this film. It is a enjoyable holiday movie for one and all.\r\n0\tThere is a DVD published in the UK in 2002 Code HRGD002 on the cover, no ASIN, VFC 19796 on the disk, no IFPI code in the inner rim.<br /><br />Probably a straight transfer from VHS. <br /><br />There is no much point is commenting an adult film. But this one contains a minimal plot, and the characters are believable. It was shown in the United States in normal cinemas.<br /><br />I've seen it In Pensylvannia way back in 1975.<br /><br />As such it deserves a place in an Encyclopedia of Movies. The DVD has no special features and no subtitles, and was probably made using a VHS tape as source\r\n0\t\"When I say \"\" Doctor Who \"\" you might conjure up an image of Tom Baker , or Jon Pertwee or maybe Peter Davison . When I say \"\" James Bond \"\" you`ll almost certainly conjure up an image of Sean Connery while a small handful of people may think of Roger Moore or Pierce Brosnan . But when I say \"\" Sgt Bilko \"\" absolutely everyone will think of Phil Silvers . Unlike Doctor Who or James Bond the role belongs exclusively to one actor . And that`s the problem with this film version you`ll continually wish you were watching the old black and white show . In fact the whole idea of making a film version of BILKO without Silvers in the title role comes close to sacrilage\"\r\n1\tThe novel is easily superior and the best parts of the film are direct translations from what Greene wrote; for instance the quiet but grim humour that breaks into the scenes with Boyer and Lorre, or the murdered-child obsession that takes over some of the plot. Where the film deviates from the novel, it tends to the ludicrous.<br /><br />However I don't want to suggest that the film is bad in any way. It always looks the part and the story stays in the mind like a good 'un. Some of the minor characters were stock actors who could turn their hand to anything.<br /><br />It's a dreadful shame that the film's not available on DVD.\r\n0\t\"The original \"\"les visiteurs\"\" was original, hilarious, interesting, balanced and near perfect. LV2 must be a candidate for \"\"Worst first sequel to a really good film\"\". In LV2 everyone keeps shouting, when a gag doesn't work first it's repeated another 5 times with some vague hope that it will eventually become funny. LV2 is a horrible parody of LV1, except of course that a parody should be inventive. If you loved LV1 just don't see this film, just see LV1 again!!\"\r\n1\t\"I've seen this film more than once now, and there's always someone complaining about the \"\"obvious construction\"\" of the plot afterwards. But then - this is part of Petzold's game: he plays along with the rules of genre.<br /><br />It's very nice, how the highly improbable story of how the two girls (Timoteo/Hummer) meet, is again mirrored in another, even more improbable story, that the girls make up for a casting. This film is a journey between fact and fiction, it's more about potentials, things that might have happened in the past or might be happening in the future, than it is about actual ongoings. It's a reverie, sorts of - so apt enough there are a lot of motives, Freud might have found interesting for his dream analysis, like all the \"\"doppelganger\"\"-constellations. <br /><br />Also, I think, \"\"Gespenster\"\" might be interesting to be watched in comparison to current Asian cinema of the uncanny: Petzold's everyday urban architecture also feels haunted in an unobtrusive, strangely familiar way. This film is not about the obvious. To describe it as the story of two girls who meet and eventually become friends and lovers, or as the story of an orphaned mother, who searches Europe for her lost daughter, clearly doesn't say much about the nature of \"\"Gespenster\"\" at all.\"\r\n1\tThis movie will kick your ass! Powerful acting in a story that pushes all of us to live out our dreams. Jake Gyllenhaal will go places from here, and the supporting cast was superb. Why would would anyone want to stay in Coalville and develop black lung anyway?\r\n1\tFascinating I approached I Am Curious (Yellow) and it's companion piece with great trepidation. I'd read numerous reports on its widely touted controversy and explicit sex. What I got wasn't this, but a thoroughly thought provoking and engaging cinema experience unlike any other. I sincerely believe that the majority of the commenter who felt the film was `lame' or `boring' approached the film as if it were pornography. Perhaps this is pornography, assuming pornography is something intended to titillate the senses, but it is intentionally un-erotic. Lena, the protagonist, throws her all into her performance giving it a realistic and humanity that is simply convincing and enduring. Her breasts may be saggy, her nipples unusually large, her thighs fat, and her face, chubby. But by the end of the film, the audience comes to identify with her, and accept her faults as human. This touch gives her even more believability out necessity. Had the director cast a Briget Bardot bombshell the effect would have been nullified. I cannot more highly recommend this thought provoking piece. Be prepared to invest much thought in this deliberately paced film. The patient and unassuming viewer will be thoroughly rewarded in ways most other films could dream.\r\n1\tI can't stand it when people go see a movie when they know they won't like it. My mom likes violent movies, so why did she see it? She rated it just to bring down the rating. So I know that's why it didn't have a higher rating. I give it a 6/10\r\n0\t\"Oh my God what the hell happened here?!! I'm not going to say this again but what sort of backward movie is this? The dubbing in this is way worst than the dubbing in \"\"King Kong vs Godzilla\"\",Linda Miller had to be the worst actress in it and the suits are really cheesy.Its about some villain called Dr.Who who gets henchmen to build a robot gorilla that has the same strength as King Kong but when this robot breaks down he builds another one and then tries to kidnap Kong.When he does(thats when Linda Miller gets annoying)he makes Kong his slave but everything goes wrong and King Kong escapes.Then Dr.Who sends the robot after him.<br /><br />Later when I was watching the movie I got a headache when Linda Miller and the other clowns started moaning.As I sat through the misery of watching the DVD while it was playing I was hoping that the madness in the movie was going to end until the fight.The ending has to be a really bad one because they could've shown Kong back on his island fighting dinosaurs again.<br /><br />Don't watch the movie under any circumstances or if you do... beware of the disappointment you will receive.\"\r\n0\t\"How can anybody say that this movie is a comedy?? If I had not gone with then my finacee I would have fallen asleep and asked for my money back. I love Gwen Paltrow, but it was like she was on the wrong set. I like most chick flicks, but I hated this one. This is the only time I saw so much clevage and was not turned on. Those outfits were way overdone. No one talks that way anymore and I don't think they even did then. The dancing part was horrible.My ex said to me later...\"\"Didn't ya like that part? Didn't ya think it was sensous?\"\" I said yes only to spare her feelings. Now I know why we never married.This is one of the worst movies I have ever seen.\"\r\n1\tI have seen the freebird movie and think its great! its laid back fun, about time the British film industry came through with something entertaining!! its good how the guy who met them at the service station gets mentioned way into the film in the news agents, nice touch. The acting was convincing (i am a biker) they reminded me of some good times i have had in the bike scene. It was good to see the film director getting in on the acting, well done jon ! At the end a new crop gets mentioned, in Ireland is this the foundation for a 2nd film? hope so keep them coming. Great film , well written, realistic characters !\r\n0\tFrom director Barbet Schroder (Reversal of Fortune), I think I saw a bit of this in my Media Studies class, and I recognised the leading actress, so I tried it, despite the rating by the critics. Basically cool kid Richard Haywood (Half Nelson's Ryan Gosling) and Justin Pendleton (Bully's Michael Pitt) team up to murder a random girl to challenge themselves and see if they can get away with it without the police finding them. Investigating the murder is homicide detective Cassie 'The Hyena' Mayweather (Sandra Bullock) with new partner Sam Kennedy (Ben Chaplin), who are pretty baffled by the evidence found on the scene, e.g. non-relating hairs. The plan doesn't seem to be completely going well because Cassie and Sam do quite quickly have Richard or Justin as suspects, it is just a question of if they can sway them away. Also starring Agnes Bruckner as Lisa Mills, Chris Penn as Ray Feathers, R.D. Call as Captain Rod Cody and Tom Verica as Asst. D.A. Al Swanson. I can see now the same concept as Sir Alfred Hitchcock's Rope with the murdering for a challenge thing, but this film does it in a very silly way, and not even a reasonably good Bullock can save it from being dull and predictable. Adequate!\r\n1\tPut quite simply, this film is terrifying.<br /><br />It starts off simply, looking like a study of a rebellious young girl and goes on to become a beautifully crafted horror film.<br /><br />Don't expect gore, or zombies. This is psychological, and just as he would also do in Candyman, Bernard Rose manages to convey the horror that is not being believed.<br /><br />Each time you watch this film, you realise more about what's happening, and about how the two worlds in this film interconnect.<br /><br />Drawings have never been scarier.\r\n0\t\"**SPOILERS**<br /><br />This is one BAD movie. Seriously. Acting in absolutely horrible, the FX are dreadfull and the plot is down right awful. But hey, its so bad that its fun watching! The script is SO bad that its enjoyable! You just have to cringe and laugh at lines such as \"\"I guess thats what you call CROCTEASING.\"\" as the women flash their breasts at the crocodile. I mean COME ON thats funny cause its so bad! It has such horrible jokes that they're funny! But after a while it just becomes to much as the movie turns into crap. I really started to fall asleep. Trust me though, the plastic croc foot stamping on the leaves and the constant swishes of a crock tail well keep you laughing for a long time. Though I have to say it had one cool part when the croc ripped that dude in half and he just hung there for a while figuring out what to do. Heh heh mindless movie, which HAS to be nominated for the MST3K line!!\"\r\n1\t\"My 3rd-year French classes always enjoyed this film very much. In a multi-cultural, inner-city high school, the film provided many subjects for discussion (in French in class, but I know a lot of discussion went on in English after class). The most obvious is the relationship between Protée and Aimée compared to the one between Protée and France.<br /><br />I always mentioned that I felt this film had one of the \"\"sexiest\"\" scenes I had ever seen in a movie. One year, a 17-year-old African-American shouted, \"\"Yes!\"\" when he figured out the scene: the one where Protée is helping Aimée lace up her evening dress, all the while both are examining the reflection of the other in the mirror. Directors use the \"\"mirror technique\"\" when then want to focus on the inner conflict on the part of one or more character in a scene: this is a perfect example of the technique, and it is \"\"sexy\"\".<br /><br />Most students had trouble understanding the end of the film. One suggested that one theme of the movie was \"\"Africanism\"\", and that no matter how much one loved Africa or Africans, one cannot \"\"become\"\" African (like the driver tried to do): one must BE African.\"\r\n0\t\"When I first saw the cover of this movie (a giant bug chasing a few nurses) And the name \"\"Blue Monkey\"\", I knew I wasn't in for any big Hollywood movie. I was pleasantly surprised to see Steve Railsback in this cheese-ball flick, who always does a good job in whatever role he tackles.... The FX are pretty corny, there isn't too much of a plot, and I'm still not sure why this movie is called Blue Monkey, because there is nothing in this movie to do with monkey. But come on people, what did you expect?? It's not really as bad as it seems.... If you enjoy the old 50's style black and white bug attack movies, this one is basically an updated version, without the updates special FX\"\r\n0\tI was so looking forward to seeing this when it was in production.But it turned out to be the the biggest let down. A far cry from the whimsical world of Dr Seuss. It was vulgar and distasteful I don't think Dr Seuss would have approved.How the Grinch stole Christmas was much better. I understand it had some subtle adult jokes in it but my children have yet to catch on. Whereas The Cat in the Hat screamed vulgarity they caught a lot more than I would have liked.Growing up with Dr Seuss It really bothered me to see how this timeless classic got trashed on the big screen .Lets see what they do with Horton hears a who.I hope this one does Dr Seuss some justice.\r\n1\tThis film has some of the greatest comedic dialog and memorable quotes ever assembled in one film! The plot is somewhat lacking, but the delightful quips are enough to make up the difference. This is a timeless movie for all ages that is sure to please. As a cinematic art form it is highly entertaining; and with major stars like Cary Grant, Myrna Loy, and Melvyn Douglas... how could you go wrong? <br /><br />Comedic dialog and timeing such as this has long been undervalued, and is very difficult to imitate. A good example of this is seen in the 1986 knockoff of this film: The Money Pit, with Tom Hanks and Shelley Long. Despite the talent and physical comedy of these stars, the film dragged and received poor reviews and viewer comments. Achieving true comedic dialog is an art.\r\n1\tThis show has come so far. At first EVERYONE in the cast from Eric to Fez, they were all new actors and actresses, fresh faces, and just look what they accomplished. They stuck with the show and it was a success. Its one of the best shows ever made and its probably the funniest sitcom I've ever seen in my life. It will be sad to see it end but if they end this show, I hope to God that the series finale goes out with one of the biggest bangs that any season finale has ever had. I don't care if the whole season sucks because they save all the fuel for the final episode. Go down swinging, get one last punch in. The show deserves it, the fans deserve it, if they go, let everyone know its going to end, like on Friends, and let the finale be huge. I say get Donna and Eric married, I say have Hyde and Kelso fight and become friends again, I say have something interesting happen between Fez and Jackie because Fez has been trying for so long, but of course it wont work out for him. JUST CLOSE OUT THE SERIES BIG TIME GUYS!<br /><br />That 70s Show will always be the best in my eyes. Eric, Kelso, Donna, Jackie, Fez, Hyde, I wish I had you guys as friends. You are the best!<br /><br />10/10...\r\n1\tFirst I was caught totally off guard by the film's initial lyricism and then I became totally enchanted with the unfolding story and engrossed with the brilliant directing. The characters were all fully developed, not bigger-than-life but just like the people we live among anywhere we are in the world, in Sweden, in Turkey or in America, all completely believable human beings with foibles and nobility. Hollywood could learn so much from this beautiful film. It shows that there is no need to go into every little detail behind every action to bring out the whole theme clear and bright, and that shows the brilliance of the director! Hearfelt thanks to Kay Pollak and the wonderful cast for this superb treat!!\r\n1\tJust re-saw this movie after thirty seven years. I was eleven years old and caught this flick on South Beach at the long gone Cinema Theater on Washington Avenue. In 1969, I thought Where it's At! was a very good movie. Now, however, after almost forty years, it's not as good as it was. Times have changed, and this movie is now a tired old re-hash of the war between the generations. It did however, catch a place in time which is just a memory. It's really interesting to see the mod fashions, the old Vegas, a slim Don Rickles, chain smoking, and a hip opening song. The acting was decent, the script somewhat out-dated, but the memories were still fresh. Where it's At, may not be where it's at for you, but for me, it was still a nice and entertaining trip down memory lane.\r\n0\tI wasn't expecting a lot from a film directed by Sidney J. Furie and starring Dolph Lundgren but I was surely expecting more than a got. A one-liner user comment - 2nd rate action movie - didn't seem too depreciative to me for a Lundgren film. On the other hand, I wouldn't have bothered to watch this film if its rating was below 5.0 but hey, the movie had a 5.9 out of 10 score, which seemed pretty acceptable to me for this kind of production.<br /><br />Now I understand that the 37.5% of people who rated this film a 10 (excellent) was clearly a publicity stunt because DETENTION is the regular Nu Image garbage you have seen before, over and over.<br /><br />Lundgren does not convince as an ex-military turned a history teacher assigned to a rough school. His acting is just plain terrible, emotionless and contrived. Lundgren's inability to act becomes more visible in the scenes with the juvenile delinquent kids. Either they are great actors or, compared to Lundgren, they seem great actors - just because they seem natural and believable.<br /><br />DETENTION has some elements that could have been potentially interesting for this low budget movie - a closed-for-weekend high-security high school, four teens in detention with a war-veteran teacher and a group of ruthless criminals trying to get in - but the story (something like THE BREAKFAST CLUB meets DIE HARD, or is it PANIC ROOM?) is full of unbelievable situations, lots of clichés and stereotypical characters. And let's not forget Dolph Lundgren is the main actor.<br /><br />Alex Karzis and Kata Dobó play a Bonnie and Clyde couple in love and they deliver the most acceptable performances of the movie, even if he seems a low-budget version of Sam Rockwell and she, a Milla Jovovich wanna-be. In a movie where everything fails, their craziness and style supplied enough fresh air to prevent my interest from dropping to ground zero.\r\n0\t\"The Crater Lake Monster is easily one of the most awful, amateurish film I've ever seen - ranking right up there with Manos, the Hands of Fate in terms of poor acting, useless direction, and kindergarten-level production values. In this movie a silly-looking claymation/stop-motion animated dinosaur wakes up after a meteor hits a lake in Bumblebum, CA, and begins dining on the local hayseeds. In the thrilling climax, the creature, described by one local as \"\"a giant alligator with flippers\"\", drags it's ponderous bulk over the ground to chase its would-be lunch, before a bulldozer bumps it a couple of times & it dies from boredom. Every character in this moovie is a complete moron. One pointless subplot shows a hick go into a liquor store to purchase a $4.75 pint of Ripple; instead of simply buying the bottle, the idiot shoots the cashier and another bystander, shoots at a cop, gets chased towards the lake, all so that he can eaten by the monster. Unfortunate close-ups of the monster reveal it to be nothing more than a piece of styrofoam. There's a fake magician struggling with a phony British accent (to make him seem more legit), two overly-bumbling redneck boat renters, some cheesy \"\"pre-historic cave art\"\" done in crayon, and annoying banjo-pickin' background moosic. In one painful scene, the fake magician and his dopey wife/girlfriend/accomplice manage to pad the movie an extra 4 minutes by cowmenting on how may stars they can see in the night sky, even though it is clearly day time still. Even on constant fast-forward, this moovie hurts, and hurts bad. MooCow says call the fumigators, 'cause this cow pie really stinks! :=8P\"\r\n0\t\"This is a typical low budget 1970's mess. It's supposed to be a docudrama about a crew hunting Bigfoot through the Pacific Northwest. Every character is a stereotype, from the Native American to the cynical cowboy. The acting and narration are a complete joke. If you're hoping to see a lot of bigfoot footage - keep hoping. There won't be much, and what there is you could do in your backyard with a cheap costume and a camcorder; it would look better than this movie.<br /><br />It's not that I don't like 1970's low budge fare; I do. It's that this is such a mess of bad acting, bad characters, lousy story and no thrills that you just can't enjoy it. It does not fit into the \"\"so bad it's good\"\" category, nor can you get a laugh out of how bad it is without the help of illicit substances. It's mostly a lot of boring footage of the people camping, hiking, riding horses, and watching wild life. There is a bigfoot attack which is completely stupid; supposedly our friend Sasquatch is throwing rocks down on the campers from above while they fire their rifles back at him. By that point you are rooting heavily for bigfoot to drops some rocks on the filmmaker's heads and stop the whole thing.\"\r\n1\t\"By no means a masterpiece, and far from Errol Flynn's best, Istanbul still has much going for it. The locations and beautiful technicolour cinematography, bring us back to a time long since past. Errol Flynn does show moments of his past glory, and is OK as Jim Brennan, a pilot who's past comes back to haunt him. The picture is actually a remake of 1947's \"\"Singapore\"\", and the story seems awfully contrived and cliche' by today's standards. Also many of the supporting cast seem to be simply \"\"going through the motions\"\" in this picture. Many people have also compared it to one of the all time greats, CASABLANCA. While watching the film, I could see many of the similarities, but hey, Casablanca has inspired countless imitators, so take that for what it's worth. In closing, if you are a fan of Flynn, or old fashioned love stories, you might want to give this film a look. Otherwise, I'd recommend Casablanca, or The Maltese Falcon, as a good introduction to some of Hollywood's classics....\"\r\n0\tThis is is a thoroughly unpleasant, if slickly made, movie. I tried it because it stars Richard Dreyfus and Jeff Goldblum, two good actors, and because the plot line - a mob boss is about to be released from a mental institution - sounded promising. The movie is billed as a comedy, sorta. What we have is an endless series of shots - you should pardon the pun - of people in dimly lit and elegant, if somewhat surreal, interiors, shooting each other - in the head, stomach, kneecap, foot, heart (no part of the anatomy is avoided, it seems) while uttering vague and cryptic dialogue, some of which is supposed, evidently, to be humorous in a sort of post-modern way. Goldblum's dialogue for the whole movie could fit on a 3x5 card, and he wears a single facial expression - a sardonic grin - throughout. Ellen Barkin and Gregory Hines do the best they can. Burt Reynolds does a cameo. The credits list Rob Reiner and Joey Bishop, but I somehow missed them (good move on their part). The whole thing is cold, sterile, mechanical and unsavory; an heir, I suspect, to the style of 'Pulp Fiction', 'Fargo' and 'Natural Born Killers'. If you liked those, you'll probably like this.\r\n1\t\"<br /><br />I have seen this movie many times. At least a Dozen. But unfortunatly not recently. However, Etched in my memory never to leave me is a scene in which Mickey Rooney, -\"\"Killer Mears\"\" knows that he is to be executed and it's getting close to the moment of truth, He dances, and cries, and laughs, he vacillates from hesteria to euphoria and runs the gambit of ever emotion. Never have I seen such a brilliant performance by any actor living or dead, past or present. It was then I know for sure that Mickey Rooney, yes, \"\"Andy Hardy\"\" was and is a actor of great genius. However I kept it, my opinion to myself for years thinking, surely I must be alone in this viewpoint. About 15 years or so after I saw this film for the last time on television, I chanced to read the old Q & A section of the Los Angeles Times. The question was posed to Lawrence Olivier, and the question was: \"\"Mr. Olivier You are considered one of the greatest actors of all time, whom then do YOU consider to be among the greatest actors?\"\" His answer was, \"\"Peter Finch and Mickey Rooney\"\" I was stunned, but not surprised. I immediatly flashed back to his \"\"Killer Mears\"\" And I felt very good for having seen this great ability in him, and now having my view supported by another whos work I admired.. Later of course there was \"\"Bill\"\" and many other great moments with Mikey Rooney. This film, \"\"The Last Mile\"\" should be seen by all acting students. I Frankly cannot remember a great deal about the film after all these years but Mr. Rooney in it, will never leave me. If anyone out there remembers this film the same as I do? I would be interested in hearing from you. For this picture etched in my heart alone I gave it a 10 just on the face of his performance.\"\r\n1\tWealthy psychiatrist Lindsay Crouse has just published her first novel and is feeling down about her profession feeling that it's hopeless to help her patients. A young gambling junkie client asks her to help him pay off his debts if he truly wants to help him get better. Here she gets involved with Joe Mantegna. To reveal any more of the plot would spoil one hell of a fun movie and 'House of Games' may very well be the best con movie I've seen. David Mamet wrote and directed this gem that's full of snappy dialogue, great one-liners, and enough twists to keep you guessing til the end. Crouse is perfect as the uptight psychiatrist needing a change and Mantegna tops her as the devilishly sly con-man. And with the exception of a coincidence in the last quarter of the movie, the film is in utter control of it's audience; and we are loving the con.<br /><br />*** out of ****\r\n0\t...And that's why hard to rate. <br /><br />From the adult point of view (hmm, student point of view:)). i must say i fell nearly asleep here. Sure, there is some laughing scene (all the credit takes here Eddie), but that can't save the disney type of script and whole movie, that's why<br /><br />2 out of 10\r\n1\tLet's get some things straight first: Zombies don't exist so the filmmaker can have them WALK, RUN, hell even FLY if he wants to. That's what makes this original Zombie movie so good. Everything they did was so damn original. I hate it when filmmakers do everything like Romero or when fan boys expect everything like Romero. Some idiots think that zombies should only growl like a typical Romero movie, once again zombies don't exist so a filmmaker can make zombies whistle if he wants. The zombies in this movie all look very good but OBVIOUSLY they are not decaying corpses since they JUST freaking died! They are pretty messed up though and full of chopped faces and blood. One of the coolest scenes was a half eaten cat. It looked so damn real my daughter cried when she saw it. This movie got really good reviews in Fangoria and Rue Morgue so that made me want to go see it. I'm glad I listened. They are always right when it comes to real horror fan's tastes. 10 out of 10! Go rent it!\r\n1\t\"I guess that everyone has to make a comeback at some point. And that's exactly what embarrassed Taft resident Jack Dundee (Robin Williams) intends to do in \"\"The Best of Times\"\". Yep, the man who went all crazy with the radio in \"\"Good Morning, Vietnam\"\" is playing football. In this case, he seeks to replay a game that cost his high school a prestigious title. But ex-teammate Reno Hightower (Kurt Russell) isn't just going to go along with it so easily.<br /><br />Granted, it's not the best movie for either man. But Williams and Russell are actually a pretty good comedy team. And some of the names in this movie are likely to give you the giggles (to say the least). Check it out.\"\r\n0\tThis movie masquerades as a social commentary, when in fact it is every bit as ridiculous as the very racism it condemns. The premise of this movie: African-American = Strong... any other race = weak. The worst part is when Rapaport pulls a gun on Omar Epps and a Jewish guy. The Jewish guy, in stereotypical fashion, crumbles in fear and starts pleading for his life... but the big, strong, defiant Omar Epps stands strong with no fear. We also have the condemnation of every fraternity member as being a arrogant preppie drunk or rapist. The raped white girl, of course, begins considering lesbianism since she's just a weak white girl after all. When the nerdy white guy is rejected by the fraternity members he of course must fall in with the skinheads, who are incredible cowards; especially the big muscular guy who is beaten down quickly by the strong black men. Wait... BUSTA RHYMES BEAT UP A GUY TWICE HIS SIZE??? Yeah, right.<br /><br />Of course the black men NEVER reject their own people and Omar Epps moves in with them easily. The scenes where Ice Cube threatens his white roommates and keeps them in line are just stupid -- of course he is the dominating one while his weak white roommates sit in fear of him and eventually move out. This movie was just terrible and the ending made me actually laugh out loud. The overly long slow-motion between Epps and Banks gets hilarious with the faces they make -- it's like watching my nephew and cousins making faces at each other (and they're all under 5). Do yourself a favor and skip this crapfest.\r\n1\tNot to be confused with the Resse Witherspoon high school film of the same name, this is a stylised look at Hong Kong's triad gangs. Called election because a new leader or 'chairman' is elected by ancient traditions every two years. Two candidates are up for the position and through ego, bribes and past track record the race is tense to say the least. Expertly directed to introduce you to an expansive cast without ever being confusing the story twists and turns before revealing itself in all its brutal glory. The Asian godfather this is not, but it is an enjoyable thriller in a gangster genre that will leave you on the edge of your seat and wincing at the violence. Subtitled volume 1 I think its safe to say there will other instalments as we go deeper into the murky world of the triads and all their feuding and underhand business deals. Either way this is a good start and if there are no sequels a great film in its own right.\r\n1\tam i the only one who saw the connection between the discussion of camus 'the myth of sisyphus' and mary's life? in camus version a man is condemned to spend his eternity with a giant boulder that he must roll up a hill. unfortunately every time he reaches the top the boulder slips and ends up back at the bottom for him to start. there may have been a buzzard pecking at his eyes, i'm not sure right now. in the movie mary spends her life struggling to get her life together, unfortunately every time she gains any footing she falls and loses everything. case in point would be the party she throws where she gets intoxicated, offends her falafel lover, and is practically attacked by liev schrieber. in case you question this theory, note how this scene ends with her attempting to climb a flight of stars while books fall from nowhere impeding her progress until ultimately she passes out. the next morning when she awakens she is still on the stairs, never having reached the top.\r\n1\t\"\"\"They were always trying to get me killed,\"\" Alec Guinness once wrote of The Man In the White Suit's technicians. \"\"They thought actors got in the way of things.\"\" He went on to describe how he'd been given a wire rope to climb down and, assured it was safe, narrowly avoided serious injury when it suddenly snapped mid-descent.<br /><br />\"\"People get in the way of things\"\" might be a maxim tailor-made for White Suit inventor Sidney Stratton (fittingly played blank slate-fashion by Alec Guinness) in Alexander Mackendrick's definitive Ealing film of 1951. Certainly, he cares only about his work, its realisation - and sod the consequences. And similarly, with the exception of a couple of peripheral characters, there's almost nobody to root for in this chilly satire on capital and labour.<br /><br />Told in flashback, the film concerns Stratton's invention of a dirt-resistant, everlasting fibre (fashioned into the white suit of the title), and subsequent attempts by the clothing industry and its unions to suppress it.<br /><br />While the industry fears the bottom will drop out of the market, the shop floor stewards worry about finding themselves out of a job. Abduction and bribery attempts follow, with both money and an industry chief's daughter on offer (Daphne, the delectable, 4-packs-a-day-voiced Joan Greenwood), to the tragi-comic end.<br /><br />\"\"What's to become of my bit of washing when there's no washing to do?\"\" bemoans Stratton's landlady near the close. A notion Stratton hadn't even considered - and has disregarded again by the movie's ambiguous coda.<br /><br />A superior, if decidedly downbeat comedy, expertly performed - and pretty much answering the oft-raised question of whatever happened to the everlasting light bulb and the car that ran on water...\"\r\n1\t\"Ironically the most talked-about American film in the 2008 New York Film Festival is 98% in Spanish. The extra-long film's controversy began at the Cannes Festival. There were love-hate notices, and considerable doubts about commercial prospects. As consolation the star, Benicio Del Toro, got the Best Actor award there. I'm talking about Steven Soderbergh's 'Che,' of course. That's the name it's going by in this version, shown in New York as at Cannes in two 2-hour-plus segments without opening title or end credits. 'Che' is certainly appropriate since Ernesto \"\"Che\"\" Guevara is in almost every scene. Del Toro is impressive, hanging in reliably through thick and thin, from days of glorious victory in part one to months of humiliating defeat in part two, appealing and simpatico in all his varied manifestations, even disguised as a bald graying man to sneak into Bolivia. It's a terrific performance; one wishes it had a better setting.<br /><br />If you are patient enough to sit through the over four hours, with an intermission between the two sections, there are rewards. There's an authentic feel throughout--fortunately Soderbergh made the decision to film in Spanish (though some of the actors, oddly enough in the English segments especially, are wooden). You get a good outline of what guerrilla warfare, Che style, was like: the teaching, the recruitment of campesinos, the morality, the discipline, the hardship, and the fighting--as well as Che's gradual morphing from company doctor to full-fledged military leader. Use of a new 9-pound 35 mm-quality RED \"\"digital high performance cine camera\"\" that just became available in time for filming enabled DP Peter Andrews and his crew to produce images that are a bit cold, but at times still sing, and are always sharp and smooth.<br /><br />The film is in two parts--Soderbergh is calling them two \"\"films,\"\" and the plan is to release them commercially as such. First is 'The Argentine,' depicting Che's leadership in jungle and town fighting that led up to the fall of Havana in the late 50's, and the second is 'Guerrilla,' and concerns Che's failed effort nearly a decade later in Bolivia to spearhead a revolution, a fruitful mission that led to Guevara's capture and execution in 1967. The second part was to have been the original film and was written first and, I think, shot first. Producer Laura Bickford says that part two is more of a thriller, while part one is more of an action film with big battle scenes. Yes, but both parts have a lot in common--too much--since both spend a large part of their time following the guerrillas through rough country. Guerrilla an unmitigated downer since the Bolivian revolt was doomed from the start. The group of Cubans who tried to lead it didn't get a friendly reception from the Bolivian campesinos, who suspected foreigners, and thought of the Cuban communists as godless rapists. There is a third part, a kind of celebratory black and white interval made up of Che's speech at the United Nations in 1964 and interviews with him at that time, but that is inter-cut in the first segment. The first part also has Fidel and is considerably more upbeat, leading as it does to the victory in Santa Clara in 1959 that led to the fall of the dictatorship of Fulgencio Batista in Cuba.<br /><br />During 'Guerilla' I kept thinking how this could indeed work as a quality European-style miniseries, which might begin with a shortened version of Walter Salles's 'Motorcycle Diaries' and go on to take us to Guevara's fateful meeting with Fidel in Mexico and enlistment in the 26th of July Movement. There could be much more about his extensive travels and diplomatic missions. This is far from a complete picture of the man, his childhood interest in chess, his lifelong interest in poetry, the books he wrote; even his international fame is only touched on. And what about his harsh, cruel side? Really what Soderbergh is most interested in isn't Che, but revolution, and guerrilla warfare. The lasting impression that the 4+ hours leave is of slogging through woods and jungle with wounded and sick men and women and idealistic dedication to a the cause of ending the tyranny of the rich. Someone mentioned being reminded of Terrence Malick's 'The Tin Red Line,' and yes, the meandering, episodic battle approach is similar; but 'The Thin Red Line' has stronger characters (hardly anybody emerges forcefully besides Che), and it's a really good film. This is an impressive, but unfinished and ill-fated, effort.<br /><br />This 8-years-gestating, heavily researched labor of love (how many more Ocean's must come to pay for it?) is a vanity project, too long for a regular theatrical release and too short for a miniseries. Radical editing--or major expansion--would have made it into something more successful, and as it is it's a long slog, especially in the second half.<br /><br />It's clear that this slogging could have been trimmed down, though it's not so clear what form the resulting film would have taken--but with a little bit of luck it might have been quite a good one.\"\r\n0\tA film about the Harlem Renaissance and one author in particular. It contrasts it with a modern day story about a young, gay, black artist.<br /><br />If that sounds vague it's because the movie itself is. It's well-directed, fairly well-written and (for the most part) well-acted. Also the scenes in the past are shot in moody black & white. Also this is one of the few film dealing with gay men that does NOT shy away from sex scenes (not that explicit and no frontal). Still, I mostly hated this.<br /><br />The film meanders all over the place, is full of unlikable characters (including the main protagonist) and (this is the killer) moves at a snails pace. Three times I considered leaving the theatre because I was so utterly bored. But the director WAS there so I stayed. <br /><br />His talk afterwords shows this was a labor of love and took 6 years to complete. I really wish I could like this more (there are VERY few films dealing honestly with gay blacks) but I can't. Unless you're very interested in the Harlem Renaissance there's no reason to see this.\r\n0\tOne of Boris Karloff's real clinkers. Essentially the dying Karloff (looking about 120 years older than he was)is a scientist in need of cash to finish his experiments before he dies. Moving from Morocco where his funding is taken over by someone else he goes to the South of France where he works a s physician while trying to scrap enough money to prove his theories. Desperate for money he makes a deal with the young rich wife of a cotton baron who is dying. She will fund him if he helps her poison the husband so she can take his money and carry on with a gigolo (who I think is married). If you think I got that from watching the movie you're wrong, I had to read what other people posted to figure out happened. Why? because this movie had me lost from two minutes in.I had no idea what was going on with its numerous characters and multiple converging plot lines. Little is spelled out and much isn't said until towards the end by which time I really didn't care. Its a dull mess of interest purely for Karloff's performance which is rather odd at times. To be honest this is the only time I've ever seen him venture into Bela Lugosi bizarre territory. Its not every scene but a few and makes me wonder how much they hung out.\r\n0\t\"This self-indulgent mess may have put the kibosh on Mr. Branagh's career as an adapter of Shakespeare for the cinema. (Released 4 years ago; not a peep of an adaptation since.) I just finished watching this on cable -- holy God, it's terrible.<br /><br />I agree with the sentiment of a reviewer below who said that reviewing something so obviously and sadly awful is an ungenerous act that comes across as shrill. That being said, I'll take the risk, if only because *Love's Labour's Lost* is the perfect reward for those who overrated Mr. Branagh's directorial abilities in the past. Branagh has always been a pretty lousy director: grindingly literal-minded; star-struck; unforgivably ungenerous to his fellow actors (he loves his American stars, but loves himself more, making damn sure that he gets all the good lines).<br /><br />Along those lines, the sad fact remains that *Love's Labour's Lost* is scarcely worse than the interminable, ghastly, bloated *Hamlet* from 1996. In fact, this film may be preferable, if only because it's about 1/3 the length. Branagh decided it would be a good idea to update this bad early work of Shakespeare's to the milieu of Cole Porter, George Gershwin, Fred Astaire, yada yada. So he sets the thing in 1939, leaves about an eighth of the text intact in favor of egregious interpretations of Thirties' standards (wait till you see the actors heaved up on wires toward the ceiling during \"\"I'm In Heaven\"\"), and casts actors not known for their dancing or singing (himself included). The result is a disaster so surreal that one is left dumbfounded that they just didn't call a horrified stop to the whole thing after looking at the first dailies. I don't even blame the cast. To paraphrase Hamlet, \"\"The screenplay's the thing!\"\" NO ONE could possibly come off well in this hodge-podge: the illustrious RSC alumni fare no better than Alicia Silverstone. Who could possibly act in this thing?<br /><br />Branagh's first mistake was in thinking that *Love's Labour's Lost* was a play worth filming. Trust me, it isn't. It's an anomaly in the Bard's canon, written expressly for an educated coterie of courtiers -- NOT the usual audience for which he wrote. Hence, there's a lot of precious (and TEDIOUS!) word-play, references to contemporary scholastic nonsense, parodies of Lyly's *Euphues* . . . in other words, hardly the sort of material to appeal to a broad audience. Hell, it doesn't appeal to an audience already predisposed to Shakespearean comedy. The play cannot be staged without drastically cutting the text and desperately \"\"updating\"\" it with any gimmick that comes to hand. Which begs the question, Why bother?<br /><br />Branagh's second mistake was in thinking that Shakespeare's cream-pie of a play could be served with a side-order of Gershwin's marmalade. Clearly the idea, or hope, was to make an unintelligible Elizabethan exercise palatable for modern audiences by administering nostalgic American pop culture down their throats at the same time. But again, this begs the question, Why bother?<br /><br />\"\r\n1\tMoonwalker is probably not the film to watch if you're not a Michael Jackson fan. I'm a big fan and enjoyed the majority of the film, the ending wasn't fantastic but the first 50 or so minutes were - if you're a fan.<br /><br />I personally believe the first 50 minutes are re-watchable many times over. The dancing in each video is breathtaking, the music fantastic to listen to and the dialogue entertaining.<br /><br />It includes many of his finest videos from Bad and snippets from his earlier videos. It also includes some live concert footage.<br /><br />If you're a big fan of Michael Jackson this is a must, if you're not a fan/don't like Michael Jackson, steer well clear.<br /><br />9/10\r\n1\t\"This movie is one of the most Underrated movie of its time. When watching this movie , your filled with action, and when somethings not really happing , the humour is un matched. Brilliant writing for a movie that was made to give us a bloody mix , of a game show where criminals are the contestants, and a near future where the general public all have a thirst for blood.Also Arnold Doesn't let us down with some of his best one liners.I don't want to spoil anything for you ,but i will tell you when Arnold gives his \"\"I'll be back line\"\" He gets the best response of them all in this movie. Hope you enjoy this gem as much as i did.\"\r\n1\tThe men can slaver over Lollo, if they like (or her lollos--she gave her name to a slang terms for breasts in French), but the ladies have an even tastier morsel in the divine Gerard Philipe, who is not only beautiful but can act. Don't be deterred if your version has no subtitles because in this simple, dashing story of love and war, in which all is fair, they are not needed. All you need know is that, at the beginning of the film, Lollobrigida reads Philipe's palm and tells him he will marry the daughter of the king. Thereafter the story is quite plain from the Gallic gestures and the running, jumping, and swordplay.<br /><br />On the minus side, the obviousness of the story and the heavy-handed facetiousness of the tone become somewhat wearying, and it is annoying that the French apparently consider themselves too superior to Hollywood to bother even attempting the plausibility of its exciting stunts. And of course the non-French-speaker misses the occasional bit of ooh-la-la, such as: Virtuous girl: I must tell you that my heart belongs to Fanfan. Seducer: My dear, what made you think I was interested in that bagatelle?\r\n1\t\"I was the Production Accountant on this movie, and I also got to do some voice-over work on it, so I'm not entirely unbiased, but if it were awful, I would say so. I thought it was a fun film, not a critically acclaimed masterpiece, by any means, but there were plenty of laughs along the way. The Bible states that laughter does good like a medicine, so watching this movie could be good for your health.<br /><br />So many of the actors in this picture hadn't yet reached their peak at the time we made this film. Susan Sarandon, of course, is one who has since gone on to much greater fame. Melanie Mayron was seen on TV on a weekly basis as a photographer in the \"\"Thirty-Something\"\" TV drama series. Robert Englund later became known as Freddie Krueger, still haunting people's dreams. One of my personal favorite actors on this show was Dub Taylor, who played the sheriff. He was an excellent comedic actor, and a truly nice, sincere person. We all had fun working on this show, and I think that fun comes through.\"\r\n0\tI have seen poor movies in my time, but this really takes the biscuit! Why oh why has this film been made? There just is nothing here whatsoever. Please put your trust in me, flick the off switch and destroy your copy of this film. There is a plot... that could take about 5 minutes to show on camera. This is the key problem, the story 'based on a true story' (mmm... whatever) just in no way lends itself to be padded out for 80 minutes. And so we therefore have to sit through over an hour of watching people walk around. That is it! In the whole first half an hour absolutely nothing happens, apart from watching someone walk to a shop... and then 3 guys walking through a wood. This time could perhaps have been spent on developing character... but no. And so there is absolutely no connection to the people on screen, and so when they start to get shot, we couldn't care less! In fact I was in the end vouching for the baddie so that the film would end! On top of this the camera work is truly horrific! This director/editor/writer/producer, Ti West is rubbish. I hate to hit a guy, but really, his work is pants! These dull close ups continuously, and then long single takes following people as they walk - I'm sure he thinks he's clever, but the results are so dull I just wanted to stop the film and slit my wrists! How this man has been brought on to direct the next cabin fever movie is beyond me! To finish, the acting is also woeful,... which goes for the film as a whole. Preserve your sanity, stick clear of this heap of total excrement!\r\n1\t\"This is the weepy that Beaches never was. As much as I wanted to love Beaches, it always seemed too hurried for me to \"\"feel\"\" for it (its soundtrack is one of my favorite albums though). Stella, on the other hand, moves at a slower (and occasionally too slow) pace and though it's somewhat manipulative in its tears-inducing tale about a self-sacrificial mother, it works because Bette and the rest of the cast turn in great performances. 10/10\"\r\n0\tLike most of the festivals entries Hamiltons makes for an interesting watch a film thats all ideas and little execution. Although impressive for it's obvious low budget the film falters in it's final twist and becomes dreadfully long during it's drawn out and obvious conclusion. The film is about a family of murderous outcasts trying to survive after there parents have died. They kidnap people , drain the blood from them and feed something locked away in their basement. There's some nice darkly humorous performances from Mckellhar and Firgens and the rest are just so-so. The film never feels realistic or very disturbing for that matter. But for the first half taps into an oddly humorous and dark mixture which is a surprising accomplishment. The next half isn't so successful as it receeds into film oblivion with unrealistic twists into a ridiculously cocky finale that turns the entire film into utter crap. It's a shame though there is no doubt that some talent was involved with this production and although deeply flawed it remains original and creative. too bad that when it comes to the delivery it completely fails on every level.<br /><br />**/5\r\n1\tI did not expect the performances of Gackt and Hyde to be as well done as they were, nor did I expect them to be cast in such an artistic well-developed movie with enough plot to keep you interested and enough diversity to make it original. This movie was an unexpected masterpiece for me, and I'll be on the lookout for the next movie like it. I especially like the fact that it is a vampire movie, but it wasn't a cheesy vampire flick, nor did it over embellish that fact. The characters all had human traits. The way it shows the growth of the characters was incredibly tasteful, and it makes you actually feel sorry for them throughout their lives. I give this movie two thumbs so far up. Definitely the best movie I have seen in the past five years.\r\n1\tAn excellent family movie... gives a lot to think on... There's absolutely nothing wrong in this film. Everything is just perfect. The script is great - it's so... real... such things could happen in everyone's life. And don't forget about acting - it's just awesome! Just look at Frankie and You'll know what I thought about... This picture is a real can't-miss!!!\r\n0\t\"I always thought people were a little too cynical about these old Andy Hardy films. A couple of them weren't bad. Modern film critics are not ones who usually prefer nice to nasty, so goody-two shoes movies like these rarely get praise<br /><br />Nonetheless, I can't defend this movie either. You can still have an dated dialog but still laugh and cry over the story. Watching this, you just shake your head ask yourself, \"\"how stupid can you get?\"\" This is cornier than corny, if you know what I mean. It is so corny I cannot fathom too many people actually sitting through the entire hour-and-a-half.<br /><br />The story basically is \"\"Andy\"\" (Mickey Rooney) trying to get out of jam because he makes up some story about involved with some débutante from New York City as if that was the ultimate. People were a lot more social-conscious in the old days. You'd hear the term \"\"social-climber\"\" as if knowing rich or beautiful people was the highest achievement you could make it life. It's all utter nonsense, of course, and looks even more so today.<br /><br />However, it's about as innocent and clean a story and series (there were a half dozen of these Andy Hardy films made) as you could find. Also, if you like to hear Judy Garland sing, then this is your ticket, as she sings a couple of songs in here and she croons her way into Andy's heart. Oh man, I almost throw up even writing about this!\"\r\n1\t\"(No need to recap the plot, since others have done so already.)<br /><br />It's understandable that many viewers find fault with the film, raised as we are with the slam-bang sensurround of today's cineplex experience. Against that background, a movie like Ecstasy appears to have wandered in from another planet. I think there are several worthwhile reasons why.<br /><br />Most importantly, the film unfolds poetically, as the camera pans slowly over surrounding hills, trees, clouds, etc., providing a serene and lyrical sense of a natural world that integrates the man and woman into its fold. Together these reveal a style and dimension almost totally missing from today's technology-driven cinema, where rapid-fire editing works to divert audience attention and not to concentrate it. Additionally, the story is conveyed by eye and not by ear, with almost no dialogue to explain what's happening. This amounts to another extreme departure from today's very literal fare, where visuals only seem to count when they excite the audience. But perhaps most unsettling-- the movie is sometimes eerily quiet, not in the sense that silent films are quiet since we expect them to be. But in the sense that the characters seldom speak when we expect them to. Thus, the burden of the story is shared between the film-maker and the viewer. The former must choose his visuals artfully so as to convey the narrative, while the latter must think about those visuals, since they're not going to be explained.<br /><br />None of this is intended to belittle today's film-making. It's simply to point out that a movie like Machaty's comes out of a very different aesthetic from the one we have today. I don't claim either to be any better or worse. However, I do claim that Ecstasy represents a perspective sorely missing from today's movie-going experience, where such 'contemplative values are routinely dismissed as slow and boring. <br /><br />The film itself is no masterpiece, though at times it reaches artistic heights, as in the beautifully composed beer-garden scene with its final crane shot rising to reveal the exquisite tableau below. The slow pans of the countryside with its pantheistic celebration of life, nature, and regeneration are also wonderfully expressed. These are the kind of scenes that don't overwhelm you, but instead-- given half-a chance-- accumulate quietly into an experience as memorable in its own way as the spine-tingling variety of a \"\"Jaws\"\". <br /><br />On the other hand, the film is sometimes heavy-handed, as when Machaty piles on the imagery, particularly in the final, ode-to-labor sequence. It's hard to know what to make of this rather disruptive presence. Perhaps the symbolism has to do with the heroic dimension that hard work holds for the love-lorn hero and people in general-- a theme then being promoted by the influential Soviet cinema. Still, its presence here is rather tediously over-done.<br /><br />Anyhow, I've got to admit that I tuned in initially to see the gorgeous Hedy LaMarr in the buff. But now I have to admit that in the process I also got a lot more than just a peek-a-boo romp in the woods.\"\r\n1\tPersonally I couldn't get into 'This is Not a Love Song', its a brilliant film and there's a great story line to it, I just found myself checking the time on my phone every two minuets to see how much was left of the film.<br /><br />I love the relationship between Spike and Heaton, there that close they depend on each other to get along in life. At the same time I wish the relationship was more than what it is. Heaton is in love with spike, but Spike Ibsen't in love with Heaton, or he doesn't know how to love him. The acts of betrayal, on both parts, have a big effect on the two men. They are both devastated by the fact that the other ran away and abandoned them, at a time when they truly needed each other for survival.\r\n1\tI picked up the movie with no cover and not even knowing what it was, but when I watched it I laughed so hard. It is now one of my favorite movies of all time. Rusty and the guys created a masterpiece I would highly recommend this movie to any one with a sense of humor. Thank You Rusty for giving us something to laugh at.\r\n0\tThe minute you give an 'art film' 1/10, you have people baying for your ignorant, half-ass-ed, artistically retarded blood. I won't try and justify how I am not an aesthetically challenged retard by listing out all the 'art house cinema' I have liked or mentioning how I gave some unknown 'cult classic' a 10/10. All I ask is that someone explain to me the point, purpose and message of this film.<br /><br />Here is how I would summarize the film: Opening montage of three unrelated urban legends depicting almost absurd levels of co-incidence. This followed by (in a nutshell, to save you 3 hours of pain) the following - A children's game show host dying of lung cancer tries to patch things up with his coke-addicted daughter, who he may or may not have raped when she was a child, and who is being courted by a bumbling police officer with relationship issues, while the game-show's star contestant decides that he doesn't want to be a failed child prodigy, a fate which has befallen another one of the game show contestants from the 60s, who we see is now a jobless homosexual in love with a bartender with braces and in need of money for 'corrective oral surgery', while the game show's producer, himself dying of lung cancer, asks his male nurse to help him patch up with the son he abandoned years ago, and who has subsequently become a womanizing self help guru, even as Mr. Producer's second wife suffers from guilt pangs over having cheated a dying man; and oh, eventually, it rains frogs (You read correctly). And I am sparing you the unbelievably long and pointless, literally rambling monologues each character seems to come up with on the fly for no rhyme or reason other than, possibly, to make sure the film crosses 3 hours and becomes classified as a 'modern epic'. <br /><br />You are probably thinking that I could have done a better job of summarizing the movie (and in turn of not confusing you) if I had written the damn thing a little more coherently, maybe in a few sentences instead of just one... Well, now you know how I feel.\r\n0\t\"The most difficult thing about this movie is to say anything positive about it. The characters were stereotypical \"\"white-trash\"\", the movie's \"\"plot\"\" was stunted from the beginning, and the worst feature of this movie was that the nudity was so blatantly from body doubles it was funny. Regretfully, that was the only funny thing in the movie. Ms. Jenkins would be better served if in the future, she would refrain from using her life-story to \"\"entertain\"\" people. It was simply that bad. The one positive aspect of this movie (this has nothing to do with the lack-of-quality of the film) is that my brother shelled out the money for this stinker.\"\r\n0\tRedline is a knockoff of Fast & Furious, without any of the redeeming qualities. It doesn't need to have a convoluted plot with multiple twists and surprises, but it needs SOMETHING! This is the equivalent of a porn film, where the storyline and dialogue consist of 60 seconds at the beginning and the same at the end. Except that this is worse, because you don't get your money's worth. Mind-numbingly boring, impossible race sequences, and a terrible waste of expensive beautiful cars, which almost acquire negative points for having appeared in this movie. Sure, she's hot, but who's that desperate for an on screen female? I feel like the director sat there with a hat full of dialogue and plot snippets, and shook an 8 ball every time they switched scenes. No serious person who races or knows anything about it would watch this movie and enjoy the race scenes.\r\n1\t\"Retitled from its original Japanese name of LAPUTA (for being an offensive phrase, something which director Hayao Miyazaki was oblivious to at the time), CASTLE IN THE SKY is the master animator's third film, and it's one of his most beloved of all time. Initially a box office disappointment in its 1986 release, it has since been embraced by critics and audiences around the world. Inspired by Jonathan Swift's \"\"Gulliver's Travels\"\", CASTLE IN THE SKY is a steampunk-themed action adventure tale about two young orphans -- young miner Pazu, and mysterious girl Sheeta (who wears a magic crystal around her neck) -- who team up to find the long-lost island of Laputa, which is rumored to have great riches and gems. They are aided by a band of bumbling yet sympathetic air pirates led by the feisty Dola (who at first chase them, yet turn out to be true allies) and pursued by the government headed by its villainous topmost-secret agent, Muska, who wants the power of Laputa for his own benefit.<br /><br />For anyone looking for an exciting way to spend two hours, this film is an excellent choice, featuring just the right amount of humor, exploration, wonder, and mystery to keep one interested. The artwork, although not as spectacular as in some of Miyazaki's later movies, is fantastic and gorgeous enough to watch with imaginative characters and locations, incredibly exciting action scenes, and breathtaking flight sequences that will make one feel giddy. And while the characters that populate this tale are less complex than Miyazaki's other works, each has a memorable, endearing personality that stays with the viewer long after the film is over. Dola, in particular, makes for a terrific comic character, shouting orders to her dimwitted sons one moment and being protective of Sheeta the next. Muska is one of the few Miyazaki creations to ever come across as an irredeemable villain, but like Dola, he commands every scene he's in with a sinister charisma that is both alluring and chilly.<br /><br />Anime fans have often compared this movie to Gainax's sci-fi adventure series NADIA: THE SECRET OF BLUE WATER. After all, both works share similar story and character elements... not to mention that they were both created by Miyazaki himself. Where both differ is in their execution. NADIA, although charming for the most part, suffered from taking a wrong turn at its midway point, devolving into cartoonish nonsense which all but distracted from the main plot, even though it did have a strong ending. CASTLE IN THE SKY, on the other hand, remains consistently entertaining and focused for its two hour running time, and is all the better for it. While the film's epic tone is sometimes broken up by some \"\"cartoonish\"\" moments, like a brawl between Pazu's boss and one of Dola's sons, it's never to the point that it detracts from the film.<br /><br />About eleven years ago, Disney released an English version featuring a cast of big-names such as James van der Beek, Anna Paquin, Cloris Leachman, Mark Hamill, Mandy Patinkin as well as some cameo appearances by veterans such as Tress MacNeille and Jim Cummings. It also features an ambitious reworking of Joe Hisaishi's gorgeous musical score for a performance by the Seattle Music Orchestra (interestingly, the man behind this rescore is none other than the composer himself). As much as purists have cried blasphemy over this version for its occasional extra dialogue and the aforementioned rescore, Miyazaki had no such problems; in fact, he is said to have applauded the reworking, and for good reason, because the newly rerecorded music is truly the star of the new dub. While there are some instances where filling in some critially silent scenes from the original Japanese is a bit jarring (notably the journey through a dragon-infested storm cloud), the overall reworking is fantastic and in many ways improves on the original, particularly in scenes such as when a robot attacks a fortress and the climactic moments toward the end. Here, Hisaishi displays his musical versatility and genius for matching music to visuals. <br /><br />As far as the performances in the dub go, the leads are probably at the short end of the stick; James Van Der Beek's Pazu sounds significantly more mature than his character, while Anna Paquin's Sheeta speaks with an odd accent that fluctuates at times (a problem which actually works in favor of the character). That said, both do good jobs overall and provide a fairly believable chemistry throughout. It's the lively supporting cast, however, that really make this dub so much fun, particularly Cloris Leachman's Dola and Mark Hamill's Muska. Both are perfectly cast and steal every scene they're in; as with the rescore, these two really warrant a listen to the Disney dub. The script adaptation borders on the loose side at times--there's quite a bit of extra lines and/or commentary (some of which are pricelessly funny and others somewhat overdone)--but aside from at least one debatable alteration (Sheeta's speech in the climactic showdown \"\"the world cannot live without love\"\" as opposed to the original \"\"you can't survive apart from Mother Earth\"\"), the overall characters, story, and spirit remain fairly faithful to the original. On the whole, there is little point comparing the Disney version to the original language track; each puts their own stamp on this legendary masterpiece, and I like them both. (They're also better than Streamline/JAL's more literal but frightfully robotic, lifeless, abysmally acted and poorly written older dub from the late 1980's; don't believe anybody who says this version is \"\"superior\"\" to Disneys--trust me, the opposite is true.) <br /><br />Either way, though, you can't go wrong with CASTLE IN THE SKY. It's one of Miyazaki's all-time greatest, and I highly recommend it.\"\r\n0\t\"to be honest, i didn't watch all of the original 'howling', but those scenes i saw made it obvious that the first howling was a great movie. so great, that seven horrible sequels had to be made. they started off with \"\"Howling II: Your Sister Is A Werewolf\"\". i got this movie on VHS from my uncle sometime ago when he was giving away a bunch of old movies he bought back when Atari was brand new. i just watched it last night, and it wasn't really BAD, it was just weird. i mean, the whole thing with Sybil Danning going three-way with two of her werewolf minions was just out of place and quite disturbing (but kinda hot), Christopher lee about to stab a dead karen as if she's a vampire, etc. actually, this movie was actually like some sort of mish-mash of Dracula and The Lost Boys...except with werewolves, because everything Christopher Lee (whom played Dracula himself) was saying about werewolves pretty much ripped off from every other vampire movie (stake in the heart, garlic, the creature of the night must die AT NIGHT, and the ruler of werewolves lives in TRANSYLVANIA). not much for the acting, but the worst of it came from Annie McEnroe. i swear, at some point in the film i found myself rooting for the werewolves to rip her throat out, because that damn throat always had to say SOMETHING. Anyway, the plot is pretty silly and clichéd, so there's no real point in telling you, you could just read about it on Wikipedia. By the way, the thing that really makes me nauseous about this movie is the fact that it's the ONLY film out of all the seven sequels thats related in any way to the original (not counting Howling IV (1988), which was a remake of the original, or in other words, a sequel based on the same novel). so don't see this movie. there's no real horror, hardly any werewolves, and just horrible special fx. 3/10\"\r\n0\tI wouldn't say this is a *bad* movie. Unfortunately for me, I get the feeling that the more you know about fencing, the worse it gets simply due to the fact that it becomes totally unrealistic. I've been fencing since i was 14 years old, and this movie portrays it very poorly. F. Murray Abraham is good (and appears to have some fencing background), but most of the other actors--especially the students--just seem to be lost.\r\n1\t\"My very favorite character in films, but in nearly all of them the character of Zorro has a small bit of cloth as a mask and if the villain`s can`t tell who is under that cloth then they are daft.<br /><br />But in Reed Hadley`s \"\"Zorro`s Fighting Legion\"\" (serial 1939) the mask fills his whole face making it a real mystery as to who Zorro really is.<br /><br />But anyway Zorro is one of the best character`s in films and to bring it up to date l think Anthony Hopkins in \"\"The Mask of Zorro\"\" (1998) is a delight.<br /><br />My interest in films is vast, but l have a real liking for the serial`s of the 30s/40s....<br /><br />Bond2a\"\r\n0\tLucky me! I got a sneak peak at this pathetic little shot-in-Texas 'horror' flick from Artisan Entertainment a week before it hit video shelves and let me tell you...I've rarely laughed so hard in my life as I did watching this atrocious megabomb fly off the rails and steal the title of 'worst killer clown movie ever made' from the insufferably stupid Full Moon fiasco KILLJOY (I'm sure many of us horror fans have suffered through that one!) From all indications, it was shot on DV, and it doesn't really 'look' all that bad quality-wise for digital, but boy does it ever fail miserably in every other area where it counts!<br /><br />The story (slight and cliche as it is) goes as follows... An executive (Ken Hebert, who also scripted and co-produced with the director) takes skeptical co-worker Tracy (Amanda Watson) and horny married couple Mark and Susan (Hank Fields and Chris Buck) along on a weekend getaway to a (yawn) secluded cabin `12 miles' from the nearest town. On the way there, they pick up a bitchy/slutty hitchhiker (Melissa Bale) in a bar and end up at their destination where a nightly campfire tale about a murderous clown stalking the very same wooded area comes true when each of the profanity-yackin, pot-smokin friends' disappears one-by-one, with only mutilated doll parts left behind to tell the tale of their fates.<br /><br />The killer clown doesn't even show up in the film until near the end and it looks nothing like the demonic depiction of it on the video box (aside from being morbidly obese). It basically spends an hour prancing around in the woods, chopping up wood and blabbing nursery rhymes. I cannot say enough bad things about the cast, especially the two guys and the hitchhiker chick, who either deliver their insipid dialogue with a bare minimum of enthusiasm or overact at the most inappropriate times. Doesn't really help that the script is completely and utterly devoid of suspense, originality, intelligence, general coherence or humor. I could go on for days on how inept this film is, how many continuity errors there are and how amateurish the whole production is, but I'll just nod off by pointing out the whole package is quite a riot in that Boy-This-Sucks kind of way.<br /><br />Also noting that the film has been released here in the US as S.I.C.K. (SERIAL INSANE CLOWN KILLER). It's currently catalogued under its (original title) of GRIM WEEKEND.<br /><br />Score: 1 out of 10\r\n0\tI've now seen this film twice, and I must say I enjoyed it both times. It's fast paced and fun, but ultimately daft. Having said that it deserves to be trashed because of screwing up what could have been a good follow up to the seminal original. It is clear for those who have seen the awful 'Zombie Creeping Flesh' that the films massive shortcomings can be owed to Bruno Mattei, and that the little that is commendable about it can be owed to Fulci. This is not idle Fulci sycophancy, the directors styles are starkly contrasted throughout, and you can tell who directed what, particularly in Mattei's case.<br /><br />The film is centered around the outbreak of a virus (oddly referred to as 'top secret' by a scientist, it's secrecy apparently being more noteworthy than its potentially apocalyptic effect on mankind) somewhere in south east Asia. The virus causes zombie like behaviour in those affected, and the virus quickly spreads across a seemingly arbitrary area of land. Our protagonists unwittingly wander into the danger zone, and have to fight for their lives against hordes of infected Asians.<br /><br />The film seems to be stuck half way between being a zombie gore flick, and an out and out action adventure, and this confusion is captured most clearly by the zombies themselves. They do not appear to have a set of characteristics common to all. Some are of the regular soulless shuffling variety, so well rendered in the original, and probably Fulci's creation here. The other main group consist of those who in being infected with the virus lost all sense of themselves, but incurred a savage aggression and a desire to earn a black belt in ninjitsu: Indecisively leaping around unsure of whether to continue honing their upper roundhouse technique or engage with their brethren in what looks like a mass tickle fest on their hapless victims. Martial arts skills aren't their only talents either, they are well versed in guerilla tactics, hiding on rafters and under bales of hay, and sometimes inexplicably falling from nowhere but the heavens themselves. This is all definitely the work of Mattei.<br /><br />There is a third, more chatty, variety of zombie. This type apparently retain a sense of irony as well 'I'm really thirsty...FOR YOUR BLOOD'. The ridiculous twist at the end in which the DJ turns zombie but continues to preach ad libbed gibberish about the fate of mankind, only serves to enhance the WTF factor and obliterate any hope of a serious resolution.<br /><br />Then there's the infamous zombie head which slowly propels itself through the air, a jokerish skeletal grin wrought across its face, as if to say 'yeah we know how bad this looks'.<br /><br />The characters are all utterly one dimensional as you would expect. But its the pseudo comical dialogue and dubbing that really prevents us from taking their plight seriously. Having said that the first soldier to die does put up an impressively valiant display against an unstoppable zombie menace. Indeed this is the first and perhaps only time we hit real zombie agro, and one of the only effective scenes in the film.<br /><br />The guy who played the chief scientist has heart, but no talent, utilising pauses in his lines entirely at random, so he ends up sounding like a confused asthmatic. The scientists' on screen attempts at finding an antidote are totally unconvincing 'now lets put these two molecules together!' <br /><br />There are a few moments that stick out as genuinely effective however. In an early scene a female protagonist explores an abandoned garage. Upon entering a room we are confronted with a hazy view of a shifting figure in the corner and a squirming mass on the floor, all shot in an atmospheric diffused light. The silence is interrupted by the appearance of a speedy machete wielding zombie who trashes everything in his wake in his alarming desperation to have her. His sheer aggressiveness is one of the few moments of real horror in the film. The before and after theme conveyed through the hotel that plays host to the happenings of the earliest stage of the outbreak, and later as a refuge to our protagonists is imbued with an thick humid ambiance. There is a scene in which one of the soldiers cautiously approaches a boarded up room that clearly houses hordes of the undead, and this is quite tense. Things become more dramatic when they board themselves in the hotel unknowing to what lurks upstairs. But this is sloppily handled and not nearly as effective as it could have been.<br /><br />All in all I would say this film may just about deserve to be called a royal screw up of a potentially effective tropical zombie fest, rather than simply a through and through bad film. If nothing else it has plenty of the unintentional laughs that I've come to expect from just about anything Italian and gory from the eighties.\r\n0\tNot only is it a disgustingly made low-budget bad-acted movie, but the plot itself is just STUPID!!!<br /><br />A mystic man that eats women? (And by the looks, not virgin ones)<br /><br />Ridiculous!!! If you´ve got nothing better to do (like sleeping) you should watch this. Yeah right.\r\n1\tAs someone else has already said here, every scene in this film is gem. Most films are lucky to have one scene that is perfect, but director Jewison hit a home run every time. The cast got just the right take on the excellent script, and in addition, Dick Hyman's musical settings of the opera and the other music made for a perfect match. Hard to imagine how they kept the precise mood going throughout the long production of a film. The comedy is subtle (mostly), and the camera-work mirrors every little emotional inflection of the narrative. Cher is such a comedy natural, Vincent Gardenia (who I know mostly through his Frank Lorenzo role on All in the Family until I saw him in this and then off-Broadway in the 80's)deserved far greater stardom than he ever got, and Aiello's hapless loser are just the tip of the iceberg when it comes to giving kudos to this tremendous cast. Has Jewison ever written about this film?<br /><br />Would love to read it. Hard to figure out why the average rating here at IMDb is so low...\r\n1\tWow I loved this movie! It is about normal life in a small village. About hypocrisy and honesty, love and surrender. Great! It is about things everybody encounters in life. You have to do things with passion. But some people will not appreciate your passion and will try to stop you. There are people who find the opinion of others and 'what will the neighbors think' more important than to follow their heart. Don't let anybody's opinion stop you from fulfilling your dreams and passion. I loved the fact that the actors were all really normal people, it could have been my family. No big beauties, but all people you fall in love with during the movie.\r\n0\tI truly wish I was not writing this review. I'm a Christian, so I waited anxiously to see this movie. It seemed great -- a Christian movie with some fairly famous stars and a plot that seemed intriguing (not that I buy the Bible Code itself -- you can make it say anything you want. I do, however believe everything inside the Bible). So I'm sitting on the edge of my seat enjoying the previews, when the movie comes on and manages to destroy my mood in a matter of minutes. I had to bite my lip to stop from commenting on the terrible writing and acting while I was in the theater (I would have been torn to pieces by the people cheering at the rather clumsy but basically uplifting scenes and gasping at the insanely obvious and predictable Tension Scenes, I'm sure). Once the final credits began to roll, however, I could reflect. There were many parts of the movie I liked -- some mostly unexpected plot twists, some effects that were indeed special (I'm not counting the Visions. Those were poorly done), and some interesting technical work -- fades, sets, that type of thing. Unfortunately, I got the distinct impression that if I read the book of Revelation to a monkey and set the monkey in front of a typewriter for an hour, I could've gotten a better script. And the music was beyond cheesy (even for a Bond fan who likes kinda cheesy music in scenes of action and intrigue). So I wish I could be like everyone else in the theater -- like the people who came out crying and breathless because of how incredible it was -- but I'm not someone who can be appeased by a writer who throws some words over a Biblical shell and slaps a Christian stamp on it. I need a good plot and believable dialogue before I can enjoy most movies, and this just didn't have either. I'm sorry, but I wouldn't recommend this film to anyone. And that's the tragedy. When will we see some intelligent Christian fiction? It has to be out there somewhere...\r\n1\tthe fact that the movie is predictable is not a problem. this movie is like a beautiful painting to be enjoyed. the museum scene is like a nice music video. the apres sex scene is an all too familiar scene in all of our adult lives. but the movie would not hold any interest for me without keith gordon. keith gordon is maybe one of the most underrated actors of our time. almost everything i know about acting came from studying mostly his eyes. he had the most compelling face. his character possesses the qualities i look in a guy, sensitivity and dedication. keith gordon is gorgeous. BTW, i kinda wish he'd shave his beard now as his lips, jawline and adam's apple were his prettiest set next to his eyes.\r\n0\tTatie Danielle is all about a ghastly old hag who torments her loving and oblivious family out of sheer spite. There's a bit of subtext that might be about France's colonial past but it's mostly just Danielle doing the sorts of things (like deliberately abandoning a small child in a park) that would soon have a man picking up his teeth with broken fingers. Sadly, that doesn't happen here. It looks good and the acting is fine and there's nothing really wrong with the concept but it's just so SMUG. God, does this movie love itself. Pity it isn't nearly as clever or as funny as it thinks it is. The only impetus in the show - sorry, movie - comes from Danielle getting nastier and nastier, and the only surprise comes from watching the increasingly improbable ways she does this. That's right: just like in a sitcom, which is what this is, with the added 'bonus' of delusions of grandeur and a 110-minute running time.\r\n0\tModel Chris McCormack (Margaux Hemingway) is brutally raped by a teacher (Chris Sarandon) of her sister Kathy (Mariel Hemingway). He is brought to trial but goes totally free. He then rapes Kathy!<br /><br />Objectionable and sick rape film. This movie was advertised as an important drama dealing with rape. What it is is a badly written and (for the most part) badly acted drama. It purports to be sympathetic to the victim of the rape but shoves the scene in our face. To be totally honest however, Hemingway's acting is so bad in that sequence that it loses any real impact it might have had. The trial scenes were boring and predictable. And the movie just went too far when 15 year old Mariel is raped (thankfully that wasn't shown). I do admit though that it did lead to a great ending when Margaux grabs a gun and shoots Sarandon dead. But seriously--having a young girl raped is just revolting.<br /><br />Acting doesn't help. For instance, Margaux was no actress. She was certainly a beautiful woman (and an actual model I believe) but her acting left a lot to be desired. It lessens the film. Mariel was just OK but this was one of her first films. Sarandon does what he can as the rapist. He wasn't bad but the terrible script worked against him.<br /><br />I do remember hearing that at a screening of this back in 1976 some women stood up and cheered when Sarandon was killed so maybe this works for some people. I found this boring, simplistic and REALLY sick. A 1 all the way.\r\n1\t\"I have this movie on DVD and must have watched it thirty times by now. I must really love it, right? Well, not really.<br /><br />I was a surfer earlier in my life, and I loved the sport. To this day, I am fascinated by good surfing. Riding Giants has plenty of that, and thus I am a sucker for the thing. But I definitely have some bones to pick with it. (Peralta, you listening?).<br /><br />First, the movie has too little faith in its subject matter. The cutting and editing of the waves is such that the majority of them are sort of ruined. Very, very few waves are actually shown ridden from start to finish. Peralta seems addicted to a hyper kinetic, cut-and-pace method. It gets especially bad in the middle section on the spot Mavericks in Northern California. Not a single wave is ridden start to finish. Almost the entire section on Mavericks (one third of the movie) is a jarring montage of clips with an equally jarring soundtrack. I can understand the effect Peralta was trying to achieve with Mavericks, as the place is a truly frightening mix of bone crushing waves in frigid open ocean chop, but he goes way too far. Mavericks is not just a bad acid trip. Waves are actually ridden there, even with great performances. It would have been good to see some of them. If Peralta thinks this is a grand sport (and I am sure he does), then why does he insist on messing with the subject matter so much? At times, the editing reduces the movie to the inscrutable. There is one fast clip in the section on Peahi in Hawaii, which I still cannot understand. Even if I run it on slow motion on DVD, the image is too fast to be decipherable. It must be a couple of frames in length at the max.<br /><br />Second, have the guys who made this thing ever learned about understatement? It is particularly galling to watch the narrated directors' version on DVD. These guys sound like two over-the-top valley girls. The same sentiment shows up in the main production. Every thing is always so goddamn \"\"amazing\"\" etc. One character in particular is just plain obnoxious -- Sam George, the editor of Surfer Magazine, who is practically peeing in his pants every time he has anything to say. He is a super drag on the movie.<br /><br />There is a tremendous amount of effort that went into this movie. I mean, just to get the old movie shots they have, and also, all of the interviews. The movie is a great story, and I think it is generally captivating entertainment. Thematically it is well laid out, with the three parts centering around Greg Noll, Jeff Clark, and Laird Hamilton respectively. There are some uses of still photography that are phenomenal. In the directors' narration, they say it is a new type of 3D technology, and it really works. The three principle characters shine, both in their interviews and in the water. As an athlete, Laird Hamilton is a revelation. He rises to the pinnacle of his sport in a way that I have only seen Michael Jordan do in basketball. And too, the story of his meeting his father is a gem. It really touched me.<br /><br />It is just that the movie could have been so much more. The very last part of the movie, when the credits roll, gives a hint of what it could have been. There are some beautiful panoramic shots of waves with a magnificent soundtrack. (The soundtrack in the rest of the movie is rubbish, though you may like it if you are fan of the modern, frenetic school of rock.) Anyway there's my two cents...\"\r\n0\tThis was really a very bad movie. I am a huge fan of Italian Horror, Argento, Mario Bava, Fulci and yes, even our good friend here Lamberto sometimes comes out with a good one. I found the first two 'Demons' films to be highly entertaining - they were so bad they were great but this one is just so bad that it is really, really bad. It is intensely boring, the story never goes anywhere and I hated the characters - the wife slapping husband and whiny cry-baby pain in the *** wife drove me mad, there was nowhere near enough of the story devoted to the Ogre who was probably the best actor in the whole film. I turned it off about three quarters of the way through because I was very, very BORED! Don't bother.\r\n0\t\"I read John Everingham's story years ago in Reader's Digest, and I remember thinking what a great movie it would make. And it probably would have been had Michael Landon never got his hands on it. As far as I'm concerned, Landon was one of the worst actors on earth, and his artistic license went way over the top, similar to his massacre of the \"\"Little House\"\" book series is proof. The acting, for lack of a better word, is atrocious, the screenplay sloppy, and there are more close-ups of Landon's puss than should be allowed.<br /><br />This movie reflects Everingham's story as much as \"\"Little House On The Prairie\"\" reflects the books is was \"\"based\"\" on. It's just another vehicle to show off Landons horrendous hair.\"\r\n1\t\"I saw a trailer for this on Afro Promo, the collection of movie trailers for movies featuring African-Americans. It looked like what it is; a highly tendentious \"\"wacky\"\" comedy in which an uptight black man realizes that his son is gay. It would seem that Redd Foxx's (RF) wife has left him for his brother, who works with him at \"\"the store\"\" back in Phoenix. He has taken the bus to visit his son Norman is Los Angeles.<br /><br />So as RF arrives, Norman, wearing nothing but powder-blue bikini shorts, gets out of his waterbed to answer the door. Trying to buy time by making his elderly father take the stairs to what appears to be the 60th floor, Norman tries to wake his lover, who steadfastly refuses to budge. It was just to the point where I wrote \"\"WHY won't he wake up?\"\" when suddenly he does, and me and my friend's jaws dropped for the first of many times as we are presented with our first glimpse of the blue-eyed, swirl-hairdoed Garson, Norman's white live-in lover, who just \"\"had the most faaaaaabulous dream\"\" Garson is a flaming queen of a type that can ONLY be imagined as emerging from 1976 L.A. He has dresses and a purse and big clunky jewelry, and seems to have modeled both his look and persona on Carol Brady from The Brady Bunch.<br /><br />Norman orders his lover to find somewhere else to stay during his father's visit. Garson goes to stay with Waylon Flowers, and Madam answers the phone when Norman calls. <br /><br />So RF attempts to reach his wife in Mexico. While he is on the phone, Garson comes in to pack his dress and RF confronts him. With a burst of 70s soul music meant to evoke his dawning revelation (but sounding more like we're about to hear a very special track by The Emotions), he realizes that his son is gay.<br /><br />His first impulse is \"\"I'll kill him. I'll kill him.\"\" Then RF goes on a long walk, wherein he cycles through all of the thoughts a confused parent might have, such as \"\"maybe we toilet trained him too soon.\"\" His thoughts are all triggered by something he sees on his walk, for instance a burly truck driver appearing just as he is contemplating what makes a real man. Surprisingly, he goes to a bookstore and buys about eight books on homosexuality. This, it must be said, is about eight more books on homosexuality than MY parents bought. He then goes straight to a park bench and reads them all! <br /><br />RF then hires Audrey, a six-foot Amazon prostitute (in this amazing fur thing) played by Tamara Dobson of Cleopatra Jones. He hired her for Norman to try out heterosexuality, but this pisses Norman and he storms out to go stay with his friend Melody.<br /><br />Then Garson comes over and offers to take RF out for the night. He commiserates over the loss of RF's wife, and tells the tale of his own mother, who harbors an irrational prejudice against Pilippinos because \"\"she was molested at a luau.\"\" They attend a long featured performance of Wayon and Madam, which culminates in Madam violently bashing her head against the piano until her hair comes loose. Once more, mouths were agape.<br /><br />So it seems that, wouldn't ya just know it, RF and Garson have a wonderful evening together! You see, staid, traditional older black men just have to see the crappy, highly-effeminate entertainment of mega-queens in order to come around to ALL the gay world has to offer! It's really JUST that simple! This still does not prevent RF from yelling \"\"Rape!\"\" when Garson wakes him from a bad dream. It ends less predictably than you'd think.<br /><br />There was so much that was just off. WHAT is the basis of Norman and Garson 's relationship? They don't seem to have ANY rapport, and Norman has no qualms whatsoever about kicking Garson out, and even when he comes around to stand up for himself, he never defends Garson or talks about their relationship. There were some kind of sweetly quaint touches like RF going to buy all those books on homosexuality-and sitting right down on the park bench to read them! I like the idea that a parent would actually try to find something out about homosexuality, rather than just run off to get drunk or commiserate with his friends.<br /><br />Other than that, it's kind of just what it seems like: a little relic of a bygone era, an era in which some gay people thought that if uptight straight people just sat down and watched a drag marionette performance, we could all learn to love and understand one another! And because of the whole naiveté of this thing, the extreme stereotypes and message-laden dialogue just come off as charmingly outdated, and provide a great deal of grist for discussion on how things have changed for gays in the past 30 years. I guess the only thing that seems offensive is the idea that gays' female friends are desperately in love with them, and are willing to get them drunk in order to sleep with, and by extension convert, them.<br /><br />------ Hey, check out Cinema de Merde, my website on bad and cheesy movies (with a few good movies thrown in). You can find the URL in my email address above.\"\r\n0\tI got this DVD from a friend, who got it from someone else (and that probably keeps going on..) Even the cover of the DVD looks cheap, as is the entire movie. Gunshots and fist fights with delayed sound effects, some of the worst actors I´ve seen in my life, a very simple plot, it made me laugh ´till my stomach hurt! With very few financial resources, I must admit it looked pretty professional. Seen as a movie, it was one of the 13 in a dozen wannabe gangsta flicks nobody´s waiting for. So: if you´re tired and want a cheap laugh, see this movie. If not, throw it out of the window.\r\n1\t\"While Urban Cowboy did not ooze with the same testosterone you might find at a rodeo, it did provide an accurate glimpse of that day and age, in urban Texas. I also think that to truly critique this movie, one would have to have lived in the time and relative place that it was made. There was good music, fun times and, yes, a few \"\"rough and tumbles\"\" at the honky tonk roadhouses. The relationship of Bud and Sissy, like \"\"two ships passing in the night\"\", was well conceived. When Pam tore up the note that Sissy had written to Bud, it echoed the tragedy of many true life romances. The entire story was well thought out. I thought the cast and crew did an excellent job. I thought the screen play was well written and directed. Scott Glenn should have received an Oscar for best supporting actor.\"\r\n0\tI had been subjected to this movie for a relationship class in my school. As figured it was nothing captivating and nothing new. Though it tries to be original by focusing on the teen father instead of the mother showing the problems that the dad would go through. It had an interesting side to it but it just doesn't live up to its originality due to the fact nothing else in this movie was original. We have the main character who has the older sister who like in every other movie like this has a thing against him, we have the stay at home mother who expects too much and when he gives more she feels offended and leaves him in the dust, then we have the father who is always gone. Then the girls side we have the parents who want everything and expect her to be perfect at all she does. On to the story like I said it was interesting but the lack of good acting from the entire cast and the lack of any good writing or storytelling. Everything about this fell into cliché the little nerd kid in school starts studying with girl, they get together, have sex and then boom we have a little kid. Perhaps it could've been better had the writing been well better and had the acting been improved I've seriously gotten more emotion out of Leatherface and his chainsaw than I did out of any actor in this film and that's pretty bad seeing as the Leatherface movies are crap and horridly acted. So far the only interesting teen pregnancy movie I've seen was Juno. So far the comical side of this serious situation has proved more entertaining while still giving the same message. Like I said the idea was original most of these films focus on the teen mother but this one chose not to instead it focuses on the drama of the father but again the originality does not save this movie from mediocrity. I really hope someone decides to either re-make this movie with a better cast and a better writer or just make another similar film because this one was wasted potential.\r\n1\tTerry Gilliam gives a stunning movie, which I thoroughly enjoyed. Bruce Willis, Madeline Stowe, Brad Pitt and even the small appearance of Christover Plummer makes the movie absolutely brilliant! This is the only Terry Gilliam film I've seen, and Twelve Monkeys is definitely in my top 10. I think this is one of the four best Bruce Willis movies; and Brad Pitt's best. Brad Pitt delivers a perfect performance. Possibly one of the ten best actor's performance that I've ever seen. He played his role (Geoffrey) very convincingly. Bruce Willis' role (James Cole) was also quite convincing. Both Bruce Willis and Brad Pitt acted extraordinarily well. With the brilliant story to back the great performances; and to back that up, Terry Gilliam's superb directing.\r\n0\tHorror fans (I'm speaking to the over 12's, although if you're under 12 I apologise for what you might deem an insult): In short, if you appreciate having your imagination disturbed by well written, original storytelling, punctuated by unpredictable well planted scares, and delivered via convincing performances, then I can heartily recommend - AVOIDING THESE STEAMERS - made by directors who have apparently long since past their sell by date. It's no accident that almost every episode feels as if it were made in the 1980's. Not to put blame squarely on the shoulders of some of these old boys (or indeed the 80's) because where would we be without certain movies from the likes of Argento, Carpenter, Landis, Dante and Barker (Actually Clive, WTF are you doing in there?! Glad to see Romero had the good sense to give it a miss as I'm sure he was asked to partake...). More perhaps we should point the finger at creator Mick Garris whose credentials include the logic defying and depressingly ill-advised TV remake of Stanley Kubrick's masterpiece 'The Shining'.<br /><br />Perhaps it is an indication of the state of television today. Are we so starved of good TV horror that we applaud any old sloppy schlock that the networks excrete onto our sets? Sadly, maybe so.<br /><br />Normally I wouldn't see the point of adding a comment that doesn't argue the faults and merits of a production, I'd just rate it accordingly. However, as this series is woefully lacking in any merit (with perhaps the sole exception of the theme tune) I write this as more of a warning than a review: DON'T WASTE YOUR TIME AND MONEY. If you disagree with me then it's more than likely that you haven't seen enough decent horror. Perhaps the earlier films of some of these directors would be a much better place to start, but if these 'Masters' of Horror were being assessed on these works alone, they'd never have been allowed to graduate with even their Bachelor's degree. Unless of course they were studying for a degree from the University Of S**t.\r\n1\t\"If you are already a fan of Peter O'Donnell's wonderful Modesty Blaise books from the sixties, you will really enjoy this movie. If you have ever seen the 1966 \"\"Modesty Blaise\"\" film, forget it! That was camp. This is the real Modesty Blaise. The story and character are both true to the Modesty that fans of the books know and love. It's a long way from Joe Losey's 1966 travesty, and it takes our Modesty quite seriously. Alexandra Staden is quite good and believable in the part, and yes, we do get to see her kick butt. chuckle<br /><br />This is likely meant to be the first movie of a series and as such it serves to introduce Modesty, her childhood and her days with Lob.<br /><br />Since Peter O'Donnell was the creative consultant on the movie, everything really rings true. Even the story O'Donnell told of how he conceived the character is just as he told it. Having read all the books, I enjoyed the movie even more for that.<br /><br />Now that Miramax has kept their option on the property by having Quentin Tarrentino make this film, I do hope to see more of the Modesty stories asap. Especially as the wonderful character of Willie Garvin makes Modesty's character really come alive. To that end, I really hope the film does well in Europe. I have no idea if Miramax intends to ever distribute the DVD in the USA. I suspect it might not do that well in the USA in general distribution. I wonder how Miramax decides where and how to distribute it's films.<br /><br />In the story, Modesty is in her early 20's, working at Louche's casino in Tangier. The flashback sequences are artfully done and take Modesty from about 9 years old, through her teens up to her current age in the movie - about 21-22, I'd guess. I really don't think there's a \"\"perfect actress\"\" for Modesty. For many of us Modesty fans, she's much too powerful a presence in our imaginations already. Alexandra Staden is credible. She is very slim, graceful and poised. She has lots of closeups. She has a great face - one that sticks in your mind well after the movie is over. According to O' Donnell's illustrator, Romero, Modesty has rather a fuller figure than Staden, but I'm willing to overlook that. If Staden continues in the role, I think she will mature into it - just as Modesty grows more powerful and skilled as she gets older. Staden already conveys Modesty's humor and absolute assurance very well. Go ahead and rent this movie, it's not like anything else you've seen and even though it was directed by Scott Spiegel, it is full of Tarrentino touches, great camera moves, lighting and well-done action sequences.\"\r\n0\tA difficult film to categorize. I was never giving it 110% concentration & consequently as simple as the plot appeared I couldn't say for certain exactly who was doing what amongst the American FBI characters & what their roles were. Nor could I take the Irwins seriously as film characters when their lines & scenes were all in the style of one of his shows, not acted out.<br /><br />This is nothing more than a glorified episode of a Discovery TV show, with a largely insignificant sub plot going on, which just seemed to get in the way. However as any Irwin show is always worth a watch, this film is well worth a look too, but not on Christmas Day. Talking of which, I've better things to do too than be on here.<br /><br />A high 4/10\r\n0\t\"This film was so predictable, that during the entire time you're hoping that the obvious suspect is innocent, and there's some other big twist still coming. However... it doesn't. He just continues to act creepy, and she continues to ignore it. Mary found very incriminating evidence at his place, and she still trusted him? And what was that \"\"baiting the trap\"\"? There was no trap. She confronted him, he said \"\"excuse me. I have to go kill someone\"\" He left, and that was the end of it. They make attempts to use other suspects, (like that one older carnival girl at the end) but they're completely underdeveloped. Actually, all the characters are underdeveloped. They have no depth, and the setting is just plain strange... who hangs out in a recycling factory?? Its choppy and nothing is well developed. For example: When she leaves his place after having the beer, and he finds the pics and she runs out and he catches her and they end up having sex in that car... what was that? Her reactions weren't portrayed. In the car she acted scared like it could have been practically rape- but then all we see is her showering the next morning. booooooooo It could have been so much better.. sooo much better.\"\r\n1\tThis movie is definately one of my favorite movies in it's kind. The interaction between respectable and morally strong characters is an ode to chivalry and the honor code amongst thieves and policemen. It treats themes like duty, guilt, word, manipulation and trust like few films have done and, unfortunately, none that I can recall since the death of the 'policial' in the late seventies. The sequence is delicious, down to the essential, living nothing out and thus leading the spectator into a masterful plot right and wrong without accessory eye catching and spectacular scenes that are often needed in lesser specimens of the genre in order to keep the audience awake. No such scenes are present or needed. The argument is sand honest to the spectator; An important asset in a genre that too often achieve suspense through the deception of the audience. No, this is not miss Marble... A note of congratulations for the music is in order A film to watch and savor every minute, not just to see.\r\n0\tI like end-of-days movies. I like B-movies. I was hoping I would like this movie.<br /><br />I could ignore the poor effects, the often atrocious music, the cringe-inducing lines. I could ignore the unexplained events, and the fact that the movie constantly relies on deus ex machina is excusable, given the subject matter. I could ignore the fact that the people who fight hunger and try to reach world peace are the bad guys. None of these things kill the movie. What kills this movie is that it's just plain and simple boring. Nothing actually happens; almost all scenes in the movie are designed to push the movie creators' morals on the viewers, at the cost of actually having a coherent story, or any kind of suspense.<br /><br />If you're looking for an entertaining B-movie, look elsewhere. This movie is just boring.\r\n0\t\"When Carol (Vanessa Hidalgo) starts looking into her brother's death, she begins to suspect something more sinister than \"\"natural causes\"\". The closer she gets to the truth, the more of a threat she becomes to her sister-in-law, Fiona (Helga Line), and the rest of the local Satanists. They'll do whatever is necessary to put a stop her nosy ways.<br /><br />If you're into sleazy, Satanic-themed movies, Black Candles has a lot to offer. The movie is filled with plenty of nudity and ritualistic soft-core sex. One scene in particular involving a young woman and a goat must be seen to be believed. Unfortunately, all the sleaze in the world can't save Black Candles. Most of the movie is a total bore. Other than the one scene I've already mentioned, the numerous sex scenes aren't shocking and certainly aren't sexy. The acting is spotty at best. Even genre favorite Helga Line gives a disappointing performance. The plot really doesn't matter. Its main function seems to be to hold the string of dull sex scenes together. I'm only familiar with one other movie directed by Jose Ramon Larraz. Compared with his Daughters of Darkness that masterfully mixes eroticism and horror, Black Candles comes off as amateurish. 3/10 is about the best I can do.\"\r\n0\t\"### Spoilers! ### <br /><br />What is this movie offering? Out of control editing and cinematography that matches up with a terrible plot. It is sad to see Denzel Washington's talents go wasted in trashes like this.We are certainly hinted how the Mexicans cannot save themselves, outside forces needed, possibly militaristic, American ones. And we know the father is a shady character, he is a Mexican after all, unlike the wife who appreciates Creasey more because he is American. He killed all of them thinking she died. And did she? Of course, she won't, she is a young kid and you are not supposed to hurt the sensibilities of the Hollywood fan. The trade off scene was the only thing that prevents me from rating it below the \"\"implausibly successful\"\"(as some critic pointed out)'Taken'. The nausea of such movies will take time to go. It is in the rating of such movies that we have to doubt IMDb's credulity.7.7 for a movie like this and 7.0 for My Own Private Idaho. Go figure! Mine will be in the range of 3.5-4.0\"\r\n0\t\"Actually, this is a lie, Shrek 3-D was actually the first 3d animated movie. I bought it on DVD about 3 years ago. Didn't Bug's Life also do that? I think it was at Disneyworld in that tree, so I'm saying before they go and use that as there logo. Also, Shrek 3d was a motion simulator at Universal Studios. They should still consider it as a movie, because it appeared in a \"\"theater\"\" and you could buy it for DVD. The movie was cute, at least the little flyes were. I liked IQ. I agree with animaster, they did a god job out of making a movie out of something that is just a out-and-back adventure. I recommend it to families and kids.\"\r\n0\tI have a high tolerance level for crap, so I was looking forward to this. It did not disappoint. Apparently based on Sheridan Le Fanu's classic Carmilla, it follows a father and daughter hunting a female vampire who, luckily, happens to be travelling with them. Then we have Santa Claus (or the General, as he likes to be called here) running over random zombies. Did I mention there was a zombie outbreak? The dead are returning to life but nobody seems too concerned. We have construction worker zombies, soldier zombies and even St.Trinian schoolgirl zombies. Apparently Santa Claus is looking for his daughter who has been turned into a vampire. Oh wait there are no vampires, the girl is in a lunatic asylum and Carmilla is her nurse, or is she? The zombies are back and Santa's mad. Lesbian sex, I like vampires and I like zombies but I especially like lesbian sex. Nothing like some simulated cunnilingus to get the juices flowing. When are we going to see vampires fight zombies? Is she a vampire or is she a lunatic? Or both? Is Carmilla a hot sexy lesbian vampire or a nurse? More cunnilingus, you can never have enough cunnilingus. Here come the St.Trinian zombies. Chainsaw time!! More lesbian sex then the zombies kill and eat the vampires. I guess the zombies won, or did they? Plot? Who needs a plot when you've got lesbian vampires and schoolgirl zombies? And cunnilingus?\r\n1\tOkay. This Movie is a Pure Pleasure. It has the Ever so Violent Horror Mixed with a Little Suspense and a Lot of Black Comedy. The Dentist Really Starts to loose His Mind and It's Enjoyable to Watch him do so. This Movie is for Certain People, Though. Either you'll Completely Love it or You Will Totally Hate It. A Good Movie to Rent and Watch When you don't Got Anything else to do. Also Recommended: Psycho III\r\n1\tI'm a big fan of Morgan Freeman. 'The Shawshank Redemption' ranks at the top of my all-time favorite movies. But I have to admit that I have often wondered about his choice of roles. So many of his titles were big budget clichés with no heart. '10 Items Or Less' for me marks the return of Freeman to a role that truly showcases his considerable acting talents.<br /><br />Freeman plays an unnamed, formerly big time Hollywood actor who hasn't worked in several years. He has been offered a part in an unspecified indi picture for which he is doing some research at a grocery store in a poor neighborhood in LA. After being stranded there by his flaky driver, Freeman is offered a ride home by checkout girl Scarlet (Paz Vega), whom he has semi-befriended. Before she can take him home, however, Scarlet has a big job interview she needs to get to, and Freeman agrees to tag along in exchange for the ride.<br /><br />The movie follows Scarlet and Freeman to several locations, but the movie is really just a character piece about the interactions between the two. Freeman is the quintessential disconnected Hollywood type who hasn't heard of Target, and doesn't know his own telephone number or even what day of the week it is. He spouts wisdom from the Dalai Lama filtered thru his 'the whole world is but a stage' mentality, and repeatedly calls Scarlet's job interview an 'audition'. And yet he has a way with people, a way of affecting them that extends beyond his fame. He is a fan of humanity. He studies them, asks incessant questions about them, and delights in their quirks where others would simply be annoyed. In Scarlet, he sees the stubborn, proud loner that he was; he sees the man he used to be.<br /><br />Scarlet, for her part, displays a fierce pride and sharp tongue that serve to hide her own insecurities about herself. Vega plays the role with a connection to Freeman that skates the line between an almost daughterly love and physical attraction, although she plays it beautifully and it's not at all as creepy as it sounds. But even as she feels her connection to Freeman grow, Scarlet has a keen eye for the reality of their different worlds and cuts thru Freeman's Hollywood bull*hit with a sharp pragmatism that refuses to accept anything but the truth.<br /><br />The movie is smart, funny, and well written, with dialogue that is simple but effective. I read one IMDb review that said the lines were 'stilted', which I think is a misinterpretation of realistic human speech. There are no big soliloquies here, no deep soul searching moments. And so the trick is, I think, to show how people in ordinary, everyday life can forge connections with one another. And I think Freeman and Vega pull it off beautifully, painting a picture of a bond between two people that glitters like sun on the ocean, ethereal and elusive. Long after it's gone it lives on in your memories, tantalizing you with what might have been. OK, that was a bit flowery, but I really did like the performances and the movie. I would definitely recommend it.\r\n0\t\"The movie starts out fine. Widower out with new girlfriend and the children.<br /><br />The movie is filled with stupid director's choices. Like \"\"lets separate.\"\" \"\"I am coming down to....\"\" do what? Stupid Stupid Stupid.<br /><br />Please do not waste your time hoping that it will get better.............. Not hardly.\"\r\n0\t\"I was willing to go with the original _Cruel Intentions._ It went along with the plot and stayed true to the characters of one of my favorite stories. However, this movie was, in my opinion, a crummy rehash with essentially the same story line and no clear character choices. I didn't honestly care what happened to any of them. The strongest part of the original story (Les Liasons, not CI) is the characters and their interactions, not the events themselves. I wasn't clear until I read the IMDB that this movie was meant to be a prequel, especially since the title includes a number \"\"2,\"\" I expected a sequel, but then determined that it must be a companion piece. Over all, I must say that this movie read, to me at least, like a soft porn version of Les Liasons. I was not impressed.\"\r\n0\tPaul Naschy made a great number of horror films. In terms of quality, they tend to range from fairly good to unwatchable trash; and unfortunately, Horror Rises from the Tomb is closer to the latter. The plot is just your average story of a witch, wizard or (as is the case here) warlock, who is put to death - but not before swearing vengeance on those who did it...etc etc. We then get a séance and one thing leads to another, and pretty soon the executed warlock is up to no good again. The plot is slow, painfully boring and the film constantly feels pointless. The characters string out reams of diatribe and it never serves the film in any way whatsoever. Paul Naschy wrote the script, and if you ask me he should stick to acting because the dialogue is trite in the extreme, and only serves to make the film even more boring than it already is. Carlos Aured, who also directed Naschy in Blue Eyes of the Broken Doll and Curse of the Devil provides dull direction here, which likes the dialogue does nothing to help the film. Sometimes crap films like this have a certain charm about them; but Horror Rises from the Tomb doesn't even have that. This is a painfully boring film that has little or nothing in the way of interest.\r\n0\tAfter reading the reviews, it became obvious that everyone intellectualized this work. How utterly boring. Oh how about the good ol' days and there was nothing like it. Of all the comments no one expressed any emotion to this work or any other.<br /><br />I grew up just after the end of the steam age and this cinematic gem along with Dan'l Boone graced the Saturday afternoon matinées. This was an annual movie that made the rounds and filled the seats with gabbing, yapping, farting, giggling, snot monsters like myself or was-self. And it was a movie theatre filler at the time. Almost as big as the Wizard of Oz.<br /><br />IMDb insists that every critique contains something about the plot. Problem is was that it was rather a template. Here goes. Randolph Scott (cowboy/hero)gathers friends and goes defeats those evil people. Hooray! <br /><br />All of us kids figured out that plot before we plunked our quarter down to watch it. That was just about the plot line of every Scott, John Wayne, Roy Rogers film ever made. If you take the time to go back and review each and every movie - just don't ask for surprises.<br /><br />One must remember the context of the times. There was no or little TV. None for kids. There was school. There was the great outdoors. There were toy guns. No Cyber time. And the steam age had just collapsed. But movies such as this provided the entertainment and filled the imaginations of young whippersnappers. Even the girls got into it.<br /><br />This movie was the entertainment. And it is just as mindless as anything produced today. It had a purpose originally of being propaganda. But quickly came to be kids movies.<br /><br />Our fathers had experienced the real thing. And it wouldn't be until Sam Peckinpah a decade later who finally lavished the red splashes of imitation blood in realistic and copious quantities. Not until his directorship did anyone die slowly, with great pain and miserably. Until Peckinpah war and gun fights were a rather bloodless affair. Thanks Sam.<br /><br />To see a movie had little or no blood, the adults didn't mind. They wouldn't have tolerated it I think. No guts spraying the shattering plant life. So this movie had all of the glory and none of the gory. Gung Ho was suitable for kids then.<br /><br />You will see that I assigned a four to this rating. Why would I do that? Well. It is a terrible movie. No matter how I love it. I do love this movie because it brought back one of the happier moments of my childhood. But it is not all that good of a movie in quality terms. Basically Gung Ho transitted to become a romance novel for children.<br /><br />Should people watch it. Of course. I am not saying to stay away. Realistically however. The plot is simple. The characters shallow? they are shoals. You can love a bad movie.\r\n1\tI had the opportunity to see this film debut at the Appalachian Film Festival, in which it won an award for Best Picture. This film is brilliantly done, with an excellent cast that works well as an ensemble. My favorite performances were from Youssef Kerkour, Justin Lane , and Adam Jones. Also, there are some great effects with dragonflies and cockroaches, that I was surprised to find out that this film was done on a small budget. The writer-director Adam Jones, who I believe also won an award for his writing, does an excellent job with direction. The audience loved this movie. Cross Eyed will keep you laughing throughout the movie. Definitely a must see.\r\n0\t\"Devil Hunter gained notoriety for the fact that it's on the DPP 'Video Nasty' list, but it really needn't have been. Many films on the list where there for God (and DPP) only known reasons, and while this isn't the tamest of the bunch; there isn't a lot here that warrants banning...which is a shame because I never would have sat through it where it not for the fact that it's on 'the shopping list'. The plot actually gives the film a decent base - or at least more of a decent base than most cannibal films - and it follows an actress who is kidnapped and dragged off into the Amazon jungle. A hunter is then hired to find her, but along the way he has to brave the natives, lead by a man who calls himself \"\"The Devil\"\" (hence the title). The film basically just plods along for eighty five minutes and there really aren't many scenes of interest. It's a real shame that Jess Franco ended up making films like this because the man clearly has talent; as seen by films such as The Diabolical Dr Z, Venus in Furs, Faceless and She Kills in Ecstasy, but unfortunately his good films are just gems amongst heaps of crap and Devil Hunter is very much a part of the crap. I saw this film purely because I want to be able to say I've seen everything on the DPP's list (just two more to go!), and I'm guessing that's why most other people who have seen it, saw it. But if you're not on the lookout for Nasties; there really is no reason to bother with this one.\"\r\n1\t\"The best film on the battle of San Antonio, Texas in March 1836, was John Wayne's 1960 epic THE ALAMO. In a one shot job as director producer, that temporarily financially strapped him, Wayne demonstrated that he was talented in movie making outside of his icon-like acting ability personifying the West.<br /><br />I have commented on that film in a review the other night, and I pointed out that Wayne and James Edward Grant (the screenwriter) tackled some points that were barely mentioned in earlier films about the battle. They did bring in the issue of slavery. They also finally discussed the contribution of local Mexican land owner Juan Seguin as an important leader in the War for Independence on par with Crockett, Bowie, Travis, Austin, and Houston. <br /><br />But there was one weakness (though well hidden) in the film. Wayne worked hard to cast it properly, thinking of many people for lead roles in it. But, he did not properly handle the leader of the enemy forces, General Antonio De Santa Anna. The role was played by an obscure actor, Ruben Padilla (on this board, his thread shows only three credits listed). Padilla did not have any spoken dialog (even in Spanish). And while he does have one of the last shots in the film, he just is shown as a silent tyrant, observing the burning of the bodies of the Americans and their allies.<br /><br />Despite several poor choices in the casting of this television movie (THE ALAMO: THIRTEEN DAYS TO CLORY), it is the best film in showing the man who was (from 1836 to 1854) a leading bogeyman to American policy makers. Raul Julia was a wonderful stage actor. I was fortunate to see him in a production (in the late 1980s) of ARMS AND THE MAN in Manhattan, as Sergius. He was never boring, and usually first rate in his acting.<br /><br />Here we see the egotistical monster at his worst. Nothing is acceptable that does not fit Santa Anna's wishes or activities. It can be the failure of an orderly in the army to bring some item he requested fast enough, or it can be the temerity of these \"\"foreign brigands\"\" (as he saw the Americans) in not knuckling down to himself, \"\"the Napoleon of the West\"\".<br /><br />Santa Anna was President of Mexico five or six times between 1830 and 1855. He claimed that he first got involved in overthrowing a President because that President did not live up to the country's constitution, but it was the power that kept him going year after year. It is a sad commentary that he was the leading Mexican historical figure in those two decades. No political figure or military figure would rise to override him until Benito Juarez did in the late 1850s. Initially he claimed great liberal ideals, but he once admitted that the people of Mexico were children who needed guidance for one hundred years before they could rule themselves (and thus he sounds like Gilbert Roland in CRISIS talking about the people he has helped lead against Jose Ferrer). The amazing thing about him was he managed to keep coming back. His policies were disasters. While we know about his attack on Texas (to put down a revolt there), he also tried to expand into Guatamala (and probably saw himself controlling much of Central America). He did win at the Alamo, but at great cost of lives. His massacre of Col. Fannin's men at Goliad was inexcusable (one might make a case for the destruction of the defenders of the Alamo who were fighting to the last, but Fannin had surrendered). Then came the disaster of San Jacinto, where his army was wiped out (he failed to take adequate precautions to watch for the American troops). He was captured, and humiliated, and forced to sign a surrender of Texas. Houston was kind to him: the troops wanted to string him up.<br /><br />Except for losing a leg in a battle against the French in 1838, he managed not to get wounded in most of his wars. He repudiated the forced surrender of Texas, but could not militarily undue it. Instead, he would lead Mexico into defeat in the war of 1846 - 48 against the Americans, leading to the Mexican Session. The U.S. was \"\"decent\"\" enough to pay Mexico $15,000,000 for the Southwest, but Mexico lost half of it's territory. He would be President for the last time in 1853, in time to give Franklin Pierce's horrendously bad administration it's one moment of glory - Santa Anna sold the border of Arizona and New Mexico (the \"\"Gadsden Purchase\"\") to the U.S. No other Mexican President (not even Porfirio Diaz) ever cost his country so much (Diaz did sell out to foreign business interests, but he built up Mexico's economic muscles doing so). He was exiled in 1855, and settled in Staten Island. There he managed to do his most creative work: he introduced chicle to the U.S., and it became chewing gum. Some achievement! <br /><br />Julia's Santa Anna is younger than the practiced cynic and schemer who became America's best land purchase agent. He is not going to stand for opposition and he jumps into furious tantrums at a moment's notice. Most of the time his chief aide, Col. Black (David Ogden Stiers, here a British born officer) holds his tongue - he does not wish to be in front of a firing squad as he could be. But Stiers is secretly less than enchanted by his boss. At the end, when alone with the newly widowed wives of the dead Alamo defenders, Stiers suggests that they tell the world what Santa Anna is really like. And they did!\"\r\n1\ta bit slow and boring, the tale of an old man and his wife living a delapidated building and interacting with a fixed cast of characters like the mailman, the brothers sitting on the porch, the wealthy cigar smoking man. The photography of the river is marvelous, as is the interior period decoration. If you like decoration of Banana Republic stores, this is a must.\r\n0\tBad. Bad. Bad. Those three lines sum up this crappy little film that can only attract idiot children and their parents to the cinema. and its... #1 Movie in America! What is this country thinking? Mike Myers looking more like Micheal Jackson. Some Chineese lady that falls asleep within 3 minutes. A lame plot with dirty jokes. It's grotesuque and awful. When Green-Eggs and Ham comes out in 2005 I'll be so happy! (not) Eddie Murphy and Tracy Morgan will probably play two hipsters trying to find the lost Green-Eggs and Ham. They'll try to chase Sam-I-Am and that mean guy who are running away with it. (I hope they don't ruin the classic book.) Don't waste time and money by seeing this.\r\n0\tFrom the beginning of the movie, it gives the feeling the director is trying to portray something, what I mean to say that instead of the story dictating the style in which the movie should be made, he has gone in the opposite way, he had a type of move that he wanted to make, and wrote a story to suite it. And he has failed in it very badly. I guess he was trying to make a stylish movie. Any way I think this movie is a total waste of time and effort. In the credit of the director, he knows the media that he is working with, what I am trying to say is I have seen worst movies than this. Here at least the director knows to maintain the continuity in the movie. And the actors also have given a decent performance.\r\n0\t\"Considering the original film version of 'The Haunting\"\" is in my top ten films of all time' I approached this adaption with trepidation. I was right to be cautious as this film is a poorly written and badly executed load of old tosh, all those involved should be ashamed. the original was terrifying to me as a child for one reason! you see nothing. Robert Wise used innovative camera-work and superb lighting to generate fear and this is why it work's. The shame of the new version is that it relies on clever special effects and pyrotechnics to get from A to B, sadder still is that the ingredients were there (actors such as Liam Neeson, Catherine Zeta Jones) to do something different. This film should only watched as an example of studio butchery!\"\r\n0\tCecil B. deMille's 1922 parlor-to-prison tearjerker Manslaughter finds the lovely Leatrice Joy as a good-at-heart but decadent young lady with more money than she knows what to do with. Her recklessness leads to imprisonment, which in turn leads to her regeneration. Thomas Meighan is the crusading district attorney who has made it his personal crusade to bring out the goodness and wholesomeness in Lydia (Joy) but he gets sidetracked by alcohol and once she is released, it is up to her to rescue him!<br /><br />If the plot doesn't sound too bad, you'll be floored by the woeful presentation. The quality of deMille's direction is very low, and he does not show any particular skill that is unique to him. The photography is standard and flat, and the editing is hardly more dynamic. One could easily classify it as a fashion show and be pretty correct. DeMille gets to dress Miss Joy up in so many different types of clothes (evening gowns, golfing costumes, motoring costumes, piles of furs) that it's subtitle could be 'Fashions of 1922'<br /><br />One thing more disappointing than the photography or editing or the direction is the acting, which is mostly flat and wooden. When it is not, it is merely routine silent gesturing, rolling eye balls, twitching eye brows and deliberate pointing and arm movements. What would have been enlivened for modern viewers by mugging and scene chewing of some of the worst silent films, is here merely dull to watch. The only member of the cast who succeeds in any form of excellence is Lois Wilson, who is not only beautiful but is able to play her role naturally. She is convincing and endearing in tearful close-ups, as long as you don't read the moralizing title card that follows once she opens her mouth to speak. Like I said, everybody else is droningly routine, Joy, Meighan, even Julia Faye. Her performance here makes a good argument for why she never attained true stardom.<br /><br />The worst and most amusing part of this movie is the heavy moralistic tone that carries through all of it. Meighan's character has plenty of intertitles where he drones on about how the youth of America is declining in it's moral stance, and going right back to the decadence of Rome. (insert absurd flashback) This movie's moralizing has been described as Victorian, but it's further than that. It has so little bearing in reality that I have a feeling audiences at that time didn't take it any more seriously than modern viewers could.<br /><br />This movie is exactly what the unknowing tend to think of as a 'typical' silent movie, with it's archaic moral structure, wooden acting and bad direction. DeMille shows that he could be a terrible director, with no sense of pacing, camera placement, or skill in handling either script or actors. I can't imagine anybody in their right mind taking it seriously. Boring, slow and idiotic, I recommend it to hardcore silent movie dorks like myself only.\r\n0\tThis film is just another distortion, among many distortions, on the so-called 'sins of consumerism'. Please note that 'Reverend Billy', an actor (Bill Talen), is nothing more than a bureaucrat against the 'sins of consumerism'. We might want to ask are questions, like: What does 'Reverend Billy' do for a living? How does he make his money? Does he make his living off his 'tax-deductible' organization? How does the Internal Revenue justify this as a 'tax-deductible' church or organization? <br /><br />Everyone knows that Christmas is commercialized, but it affords one day out of a whole year in which people have an opportunity to be charitable, and allows a significant number of people to spend time with their families, friends, or extended families. Everyone is not charitable. Everyone does not spend time with their families, friends, or extended families. But, holidays and vacation time give people that chance and opportunity. Yes, America does have more than its share of problems--but, with perseverance, Americans have and always make it through great difficulties. And, even in times of strife, America has proved itself to be the greatest country in the world. That happens when Americans pull together and unite, rather than to separate and divide. Yes, there are problems with corporations and monopolies, but it will take Americans to bring back the small businesses, along with the ethics to responsibly care for people living in our individual communities. Yes, globalization has brought us its share of problems, but it will take Americans to bring production back to America. Americans and the U.S. government need to learn how to stay on a budget, no matter how large or small it may be, and we must stop our dependence on credit. Our over-reliance on credit will make, and keep us poor, from the cradle to the grave. It is important to buy--but, if we buy less, we will rely less on credit. And, if we are able to save, even a small amount of money, we will have money for a rainy day. Not to say that, as Americans, we will gain an equal share of wealth. Wealth is not guaranteed, and has never been guaranteed. But, stratification teaches us that only a small percentage of Americans hold most of America's wealth. There is a good proximity that you or I can reach the level of the upper, middle class. And, who knows what can happen from there?!? Be positive, work hard--and, at the very least, you and I will be able to reach at least some (if not all) of our dreams. In life, nothing is guaranteed, but we always have that something to reach for. And, if you or I don't have dreams, we might as well be dead. In America, there is always room for plenty of hopes and dreams. As individuals, we are a part of the pack, but we always can become the leader of the pack.<br /><br />It has always been my experience that churches and religion do offer nothing more than additional distortions, but I pay dignity and give respect to people with other beliefs, values, and perspectives. But, as far as the distortions expressed, within this film, I do not have any faith in such beliefs, values, and perspectives. I rank this film with a 1 out of 10--but, in all honesty and truth, this film deserves a zero. This film has no integrity, and I cannot recommend it.\r\n0\tThis might be the worst film ever made, and is possibly worth seeing for that reason alone. Streisand is laughably unbelievable as a young woman posing as a man in order to study Judaism. The soundtrack is torturous, featuring Barbara belting out some of the weakest blather ever put to film. And don't even get me started on the plot. You will actually get more chuckles out of this film than many comedies because it is soooooooo terrible. The rampant ego of Streisand, thinking she could somehow raise this stinker to Oscar heights, led to this disaster. I'm pretty sure the novelist, Isaac Bashevis Singer, hated this film and never forgave Streisand. I can't blame him. This movie is like watching a car wreck in slow motion for two hours with the soundtrack of 'The Sound of Music' being played backwards on an old turntable. It's truly that bad. I'm amazed that anyone from Streisand enjoyed this movie on the level that it was intended.\r\n0\tThis really doesn't do the blues justice. It starts out badly with images from the voyager probe and Blind Willie McTell (or was it Blind Lemon Jefferson? Someone blind anyway) apparently narrating from outer space (?) and telling us the life stories of various blues musicians. Corny as it is, this might be the visually most interesting part of this documentary. Afterwards the only thing to see is actors incompetently mouthing the classic tunes, filmed in fake 20s black and white intercut with the likes of Beck and Shemekia Copeland raping the same songs afterwards. This is a good device to show us why the old Blues greats were really so great, but it doesn't make for compelling viewing. There is hardly anything in here that could justify making it a film and not a radio play. Nobody should be forced to see these badly done reenactments. It's a shame for Wenders, Scorsese and especially for the Blues. Avoid at all costs.\r\n0\t\"Usually, I know after the first minute of a movie if I will hate it or adore it... but now, I was wrong.<br /><br />The start was great; the \"\"this is based on a true story\"\" and blah blah blah thing was funny. After, the cartoons and the description of the guys' life with pictures made me think I had made the right choice.<br /><br />Then, seeing the hilarious fake look of Toronto was cool. Also, the situation and appearance of the house seemed to confirm my first idea.<br /><br />That was maybe the first 10 minutes of the movie... which afterwards looked like an eternity.<br /><br />Maybe that's just me not understanding English Canadian humour (that's possible, English Canadians also do not always understand Quebecois humour), but hey... there was enough stuff in that for a short movie, *nothing* more. Maybe that could be a meaning for the title? Anyway, almost everything was filling, and very few things were even close to funny in my opinion.<br /><br />As a matter of fact, the \"\"making of\"\" was better than the movie. At least you understand the motivation behind that which made everything bad. The potential of the idea was great; that's why I rented the movie, being interested in the \"\"annoying people disappearance\"\" thing. But yet, I did not know the whole universe would vanish, and with it even a point to the movie.<br /><br />If you are English Canadian, it seems you could appreciate the local humour, considering the surprising number of people who gave this movie an 8. Otherwise, just think twice before losing your precious time...\"\r\n0\t\"Honestly I am not even joking when I say that this is one of the worst movies I have ever seen! This film dosen't have a single ounce of originality in its flimsy dialog or its blatantly plagiarized story line. I can not even begin to count the number of things in this film that are obviously ripped off from \"\"The Omen\"\" and other movies like it. For example the nanny \"\"Lucy\"\" in this film is actually one of the devil's minions sent to guide and protect the spawn of Satan.....does this sound a lot like Mrs. Baylock to anyone else. Another thing is that the orphanage were they first got the child burned to the ground just a few months after he was adopted, just like in \"\"The Omen\"\". However luckily one priest survived the blaze and escaped with sever burns all over his body....yet another coincidence?????? And to top it all off the burned priest is staying in a hospital room with pictures of Jesus all over the walls, much like the priest in \"\"The Omen\"\" having pages of the Bible plastered on the walls like wall-paper. Please don't even get me started drawing comparisons between the ending of this movie and \"\"The Omen\"\" for you because as I've stated above there are far too many to mention here.\"\r\n0\tWhat a terrible movie. Rotten tomatoes had a good rating for this too. don't be fooled by the positive comments; It wasn't scary. It wasn't funny. It wasn't clever. It won't even hold your attention. I just wasted 2 hours of my life viewing this crap-fest. the computer generated monster was interesting to see the first couple times. after about 15 minutes it no longer entertained. the dialogue was terrible, must be a translation thing. another negative that stood out was the idiot Americans. 3 were portrayed and they were all lacking character, intelligence and judgment. Now I will write a couple of lines to pad this since we have to have 10. The employees at the video store should have slapped me for bringing this title to the counter.\r\n1\t\"This is according to me a quite bizarre movie with a lot of humor in it. I wouldn't say that it is very scary, but more fun I guess. That is if you like horror movies. Scarecrow kind of remembered me of \"\"Children of the corn\"\", but still not. If you compare these two movies this is much more fun to watch =)\"\r\n1\tNicely and intelligently played by the two young girls, Mischa Barton as Frankie, and Ingrid Uribe as Hazel, although the plot is rather a stretch of the imagination. Young Hazel running for mayor seems out of place, to be honest.<br /><br />While the acting is well done by all concerned the movie tends to lack a genuine atmosphere of drama. Perhaps we've grown to expect gritty reality in movies, rather like comparing Pollyanna to How Green Was My Valley! Never mind, each of them are good in their own way.<br /><br />I do admire Joan Plowright even if her role is somewhat subdued here. Middle of the road entertainment well suited for younger viewers, and how nice at times to be exposed to fine classical music which is almost a rarity!<br /><br />I find this movie to be a welcomed change as it reflects quieter, thoughtful values for the growing up years, and no violence thank goodness. A warm family film to enjoy.\r\n1\tA bus full of passengers is stuck during a snow storm. The police have closed the bridge--saying it's unsafe and they are stuck in a little café until the road has been cleared. However, after a while, their boredom is turned to concern, as it seems that one of the passengers was NOT originally on the bus and may just be an alien!! This leads to a conclusion that is ironic but also rather funny in a low-brow way.<br /><br />This is another of the fun episodes of The Twilight Zone. Instead of the typical twists or social commentary, this one features no lasting message. However, it's also very and watchable, so who cares?! Exactly WHAT occurs you'll just have to see for yourself.<br /><br />By the way, this one stars John Hoyt--a face most of you will recognize from countless old TV shows and movies. In almost every case, he played a real grouch (like Charles Lane during the same era), but boy did I love seeing him--as he perfected the grouchy persona and was kind of funny at the same time.\r\n1\t\"Thirty years after its initial release, the third version of \"\"A Star Is Born\"\" finally comes to DVD in a package that should please the most devoted fans of Barbra Streisand. That would include me since I just saw her in concert singing among other numbers, the feminist anthem \"\"Woman in the Moon\"\" from this 1976 film. Easy to dismiss, the movie's career-polarizing story is such a sturdy pile of Hollywood-style clichés that variations of it exist in other films including Streisand's own \"\"Funny Girl\"\". This time reset to the then-contemporary music scene, the timeworn plot follows self-destructive rock star John Norman Howard on his deep-dive career descent just as he meets club singer Esther Hoffman who is awaiting her big break.<br /><br />Troubles dog their courtship from the outset, as John Norman (both names please) responds to grasping fans and bloodless DJs with random acts of violence (from which he inexplicably escapes prosecution). To John Norman, Esther represents his last shot at happiness, and in turn, she is drawn to the innately decent, creative musician underneath the façade. In the movie's most pivotal scene, he gives Esther her big break at a benefit concert, and her career takes off. Inevitably, he can't handle the failure of his career in light of her meteoric success, and if you are familiar with any version of this story, you know the rest. Directed by Frank Pierson (although Streisand's budding directorial talents are obviously on display), the film still manages to draw me in, even though I know it is shamelessly contrived and manipulative. It still has a certain emotional resonance despite its numerous flaws.<br /><br />Although Streisand in her prime seems like the ideal choice to play a rising singing star, her screen persona is simply too strong and predefined to play Esther credibly. The same can be said for her performing style since the script seems to make allowances for her softer Adult Contemporary-oriented material to be accepted within the otherwise hardened world of arena rock. From the moment she pops her head up as the middle of the Oreos, she can't help but come across as an established star. I can forgive the lapse simply because she is an unparalleled vocal talent, but what becomes less forgiving is how she makes Esther more strident than poignant when John Norman's woes become overwhelming. This creates an oddly discomfiting dynamic in the last part of the film when it becomes less about what caused the climactic event than Esther's response to it. This is capped off by an uninterrupted eight-minute close-up of her memorial performance - great except when she regrettably mimics John Norman's style toward the end.<br /><br />Kristofferson, on the other hand, gives a superb performance throughout, managing a level of honesty that grounds the film and makes palpable his concurrent feelings of love, pride and resentment toward Esther. He makes his vodka-soaked onstage growling work within this context. Otherwise, what always strikes me as strange about this version is how all the supporting characters are relegated to the background as if they didn't exist unless they were interacting with the two principals. The only ones who register are Paul Mazursky as John Norman's level-headed manager Brian and Gary Busey as his cynical band manager Bobbie. Veteran cameraman Robert Surtees provides a nice burnish to the cinematography though a level of graininess persists in the print. A big seller in its day, the soundtrack is a hodgepodge of different styles from the 1970's - some songs still quite good (\"\"Everything\"\", \"\"Woman in the Moon\"\", \"\"Watch Closely Now\"\"), some that have moved to kitsch (\"\"Queen Bee\"\", Kenny Loggins' \"\"I Believe in Love\"\") and of course, the inescapable \"\"Evergreen\"\".<br /><br />The print transfer on the 2006 DVD is clean and the sound gratefully crisp thanks to digital remastering. Streisand's participation is the chief lure of the extras beginning with her feature-length commentary. She gives insightful information about the genesis of the film, the casting and the reportedly troubled production. She is also refreshingly candid about the megalomania of Jon Peters, her hairdresser boyfriend who became the movie's producer, and her dissatisfaction with Pierson as a director. I just wish she could have provided more scene-specific comments that directly relate to what is on screen. She also tends to repeat the same anecdotes when the mood strikes her, e.g., it gets tiring to hear for the third time how the person playing the chauffeur was a friend of Peters. I think having a second commentator could have drawn out other nuggets from her.<br /><br />There is a wardrobe test reel that shows some amusing 1970's clothes, especially Kristofferson's mixed-fabric poncho and orange polyester shirt. There are also twelve deleted scenes included with Streisand's optional commentary. One is a comic bread-baking scene which reminded me how much I like Streisand in farcical comedies. Another is an extended scene in which she plays \"\"Evergreen\"\" on the guitar in front of an awestruck Kristofferson who then falls asleep. The most interesting is an alternate take on the musical finale incorporating fast cuts, which I agree with Streisand should have been used. Fittingly, the theatrical trailers for all three versions of \"\"A Star Is Born\"\" are also included.\"\r\n0\twith a title like this, you know not to expect a great horror movie. But this was really bad, even with low expectations. The plot is really insulting and stupid: an escaped criminal wears a Halloween mask, so everyone around him thinks he's someone else. this joke might actually work for 5 or 10 minutes, but not during the entire movie ! the actors are not that bad, but their characters are rather dumb and the story is boring and downright stupid. No suspense, no excitement and little gore (very cheap). Satan's Little Helper tries to combine horror (...) with comedy and fails dramatically at that. It became so boring towards the end, that I actually stopped watching 10 minutes before the end. I couldn't care whatever happened. Amanda Plummer was great in Pulp Fiction, but come on.. that was 13 years ago, and she hasn't done anything decent after that. So no wonder that she had to sink as low as this piece of crap.. Avoid or be warned..\r\n0\t\"This movie was just down right bad. I love war movies and can normally come away from most movies and find something that I liked,but this was not one of them. This movie lacked substance and intensity.OK I get it, the Finns put up one hell of a fight and thats great, but the story is poorly told. You don't have any real connection with any of the characters and there's no real story line to follow. You just go from one random scene to another, nothing flows to form the story that is trying to be conveyed. If you want a war movie that will keep you riveted, and amazingly enough without battles scenes, then I would suggest \"\"Downfall\"\" (WWII German film). Or if you prefer a great story line and a lot of action then I would suggest \"\"Brotherhood of War\"\" (Korean war/Korean film). These two movies will not let you down as Winter War will.\"\r\n0\tThis movie promised bat people. It didn't deliver. There was a guy who got bit by a bat, but what was with the seizures? And the stupid transformation? Where was the plot? Where was the acting? Who came up with the idea to make this? Why was it allowed to be made? Why? Why? I guess we'll never know.\r\n1\t\"It was a serious attempt to show the developing sexuality of two schoolgirls and did not try to exploit its fact Even by today's standards, the film is interesting and provocative <br /><br />Therese and Isabelle are both attending the same girl's school Therese is energetic, intelligent, and becomes a mentor for the innocent, naive, sweet Isabelle She guides her through a number of exotic experiences, including a trip through an exclusive brothel, into her first lesbian liaison, and indirectly into her first heterosexual experience <br /><br />The film does not exploit any sex, nor is there an abundance of nudity... The imagery is effective, but sometimes the camera lingers too long, and the story goes slowly <br /><br />The director, Radley Metzger, went on to make a number of explicit erotic films under the name of Henry Paris He always has extremely detailed stories, good acting, and very high standards of cinematography...<br /><br />Artistically, however, this is perhaps his most complete His later attempts supplied for entertainment, whereas \"\"Therese and Isabelle\"\" was a study into the nature of youthful eroticism...\"\r\n0\tWhen I saw this movie, I couldn't believe my eyes. Where these hilarious creatures, dustbin muppets with big pointy teeth, really meant to be scary? Or where they designed to have a good laugh (I sincerely hope so). If you watch carefully you can even see the strings operating them (better; dragging them across the screen). The whole was rather funny than scary and I had a good time watching the movie because I was amazed by its overall incapacity to have only one good part. It is one big joke from beginning to end and I believe this movie belongs into a new category: So unbelievable crappy you'll be laughing from beginning to end. (I'm not even gonna try to comment on the acting or all the other things)\r\n0\tAs if there weren't enough of those floating around at the time already, we have here another lame GODFATHER clone from the director of IL CONSIGLIORI (1973) which I had watched earlier this year. The marquee-value name roped in this time is Telly Savalas who belatedly enters the proceedings and is first seen from behind, rather campily tending to his flowers and wearing a beret in the style of French painters! Apart from not looking minimally Sicilian, he sports no accent of any kind other than his familiar drawl. Antonio Sabato, then, makes for an unlikely gangster - apart from being a resistible leading man; his relationship with Savalas, which becomes paternal at the flick of an eye, is also unconvincing (especially since he subsequently becomes romantically involved with the latter's spirited teenage niece)! Besides, for a gangster flick, there's precious little action to speak of and none of it is in any way memorable (though the finale set in a clinic is well enough handled); furthermore, the score by Francesco De Masi is serviceable but nothing else. Incidentally, the bargain-basement DVD I rented starts off midway through the credits so that none of the cast members - or even the film's title - is ever listed!\r\n1\tI've long wanted to see this film, being a fan of both Peter Cushing and David McCallum. I agree that the romantic sub-plot was a waste of time, but the talent of McCallum shines through this juvie role. Thank heavens for Turner Classic which aired the show last week. I can imagine that there were lots of problems with children after the war, especially with the way things were throughout the 1950s. Some of the boys are a bit scary. I certainly wouldn't want to met them on a well-lit street, much less a dark one. There were some good insights regarding the feelings of a firebug as well, or as they call him, a firefly.\r\n0\t\"I didn't like this Bill Murray vehicle when it was originally released in the 80s, so I tried watching it again to see if my distaste for this film was down to my movie-going tastes in the 80s or was it that \"\"Stripes\"\" is simply a bad movie. Well, the verdict is in and \"\"Stripes\"\" is a bad movie.<br /><br />Now, \"\"Stripes\"\" may have been innovative comedy in the early 80s, and it may appeal to people who have gone through basic training or who are Bill Murray fans, but its still a bad movie.<br /><br />Why is it bad? Mostly because \"\"Stripes\"\" is supposed to be a comedy but it's just not that funny. There are some laughs, but they are few and far between. Most of the movie is consumed by the dramatic plot which is incredibly convoluted and not very interesting. This lack of comedy is especially noticeable if you're used to more contemporary comedies such as \"\"Anchorman\"\" which strive for laughs in every part of the movie.<br /><br />\"\"Stripes\"\" further suffers from Bill Murray and Harold Ramis's lack of acting ability. Bill Murray is a great comedian but he was not a very compelling dramatic actor at this point in his career, and Harold Ramis is playing Harold Ramis. These two are just not good enough as actors to carry the dramatic arch of the movie.<br /><br />Lastly, most of the comedy that there is in \"\"Stripes\"\" revolves around Bill Murray's self-centered, smart-alec man-child character so if you don't find that character funny (like I didn't) you're not going to find most of what little comedy there is in \"\"Stripes\"\" funny either.<br /><br />\"\"Stripes\"\" is very much a movie of its era, it hasn't aged well and is not worth watching. If you want to watch an early 80's \"\"buddy\"\" comedy I would recommend \"\"Stir Crazy.\"\" Like \"\"Stripes\"\" the humor in \"\"Stir Crazy\"\" is not as fast-paced as in contemporary comedies, but unlike \"\"Stripes\"\" it has aged much better and as a result is still watchable.\"\r\n1\tThe visuals and effects are up to par with the the original film and provide a lot of entertainment even if the storyline is essentially the same as the first two films. It also seems a lot more erotically charged than I remember the other films being. If you're a big fan of flying prehensile hair and tongues that can reach all the way down into your stomach, you'll like this film.\r\n1\tThis picture for me scores very highly as it is a hugely enjoyable and amusing spoof of Alien Invaders taking over a town and many of its' men folk.<br /><br />The town and the players are all decked out in sort of 1950's style and the whole movie has a deliberate tacky and kitschy feel to it. Some of the scenes are hilarious like with the birth of an alien creature.<br /><br />All the actors give full blooded and serious performances which makes the film even funnier and the special effects and Aliens are at least it seems to me intentionally 3rd rate to add to the amusement.<br /><br />These type of films often deserve a cult following:<br /><br />8/10.\r\n1\tThe movie was gripping from start to finish and its b/w photography of the American heartland is stunning. We feel we are right there with them as they cross the big sky country and then into Mexico and back to America again. Near the end of the movie, the reflection of the rain on Robert Blake looks like small rivers of sweat and tears rolling down his face. In the end, we follow them up the stairway to their final moment. <br /><br />The two criminals, performed by Robert Blake and Scott Wilson, as Perry Smith and Dick Hickock could be seen on any street in any town. Hickock is a smiling boy next door and Smith, the guy with stars in his eyes from the wrong side of town. This point is made in the movie and it always surprises us that criminals are no different in appearance than anyone else. Evil, even the most vile, is part of the human condition. These two delusional men kill an entire family, looking for a safe that isn't there. Once on the run, they start writing bad cheques, carving out a trail for the authorities.<br /><br />There are many fine supporting actors. I like John Forsyth as the detective on the case, Alvin Dewey. Also, Will Geer shines in a brief but excellent scene as the prosecuting attorney.<br /><br />I have often wanted to see this movie all the way through, having only caught it in short snatches; I did finally get to it after buying the DVD. The result is the finest classic crime movie I have ever seen.<br /><br />Don't miss this brilliant movie. To me, this is what great film-making is all about.\r\n1\t\"It's a refreshing breath of air when a movie actually gives you a story line with a beginning, a middle, and a end, a nice, clever mystery, with an appealing heroine for all ages, who wins us over with her wit and charm. Andrew Fleming's film is indeed a modern marvel, a comeback to the good old reliable storytelling that was the norm in Hollywood. He puts away the over-reliance on special effects that now passes for entertainment and gives us a terrific film, with a very capable young actress, and a talented supporting cast.<br /><br />The film is based on the old books, but it has been given updated enough to put in this century; however, the props might be different, the heart still is a good mystery, and there is clever one here, one that ties the traditions of the old and the nuances of contemporary youth. Emma Roberts is an old fashioned girl, who believes in good behavior and respect for others; details that are sorely missing from today's films. She is still good enough to get boys' attentions but she also knows how present poise and self respect. She earns her medals by working hard and is not afraid to show a little guile when it is needed to achieve her goals.<br /><br />While taking a vacation to California, our heroine is drawn into the mystery of a Hollywood actress who was the victim of foul play; suddenly she is \"\"visited\"\" by her ghost and this sets off a series of events that might solve the mystery or result in something dreadful for herself. What makes the movie quite entertaining is the little details, as she discovers that her customary world is nothing compared to the California scene, and this is well presented, without resorting to unnecessary vulgar language or anything graphic or overtly sexual. Eventually, the director has enough control to make it all very palatable to all types of audiences, from the young ones to the adults in the audience. It is a movie that deserves to be seen, appreciated, and enjoyed, a film that is rare and delicate, and it's not afraid to be classified as fun! Five Stars\"\r\n0\tYikes did this movie blow. The characters were weak, the plot weaker. I figured this couldn't be too bad because it has Christoper Walken, oops. He must have done this because he was bored and needed the money. The characters were supposed to be Irish but noone had an Irish accent. I am desperately trying to find something nice about this, I can't except Walken did a fine job with a wooden character. Find something to read, or watch discovery, don't ever see this movie.\r\n0\t\"A movie about Vixen (Erica Gavin) who has a Mountie husband who she loves...but she loves sex too! In the course of the movie she gets multiple men in bed--including her husband AND brother! Also there's a (tame) lesbian sequence.<br /><br />This film put Russ Meyer on the map and was (I believe) the first critically acclaimed X rated film ever. It was a big hit when it came out. Unfortunately, it doesn't date well.<br /><br />It is well-directed and Erica Gavin is just great (whatever happened to her), and it was VERY colorful...but by today's standards it's extremely tame. I'm surprised it has an NC-17 rating now--there's no hardcore sex and it only has topless females and no male nudity at all. Also it's (sadly) pretty dull and the addition of politics at the end was confusing (and pretty silly). It is worth catching though to see what was considered very shocking in 1968. Purportedly I saw the cut version (which has an R rating) but I've heard only a few seconds here and there are missing. <br /><br />Meyer's next film \"\"Beyond the Valley of the Dolls\"\" is much better and dates VERY well. Catch that instead.\"\r\n0\t\"This weekend just passed I watched \"\"28 Weeks Later\"\" which was very good. After that I watched this film. <br /><br />I have tell you it is one of the most boring so called horror you could ever watch. The scenes were unrealistic, there was no script and no plot. The alien creature was unreal. And the fight scenes mild compared to a school yard fight. And to make it worse the guy named Cody had an uncontrollable loose filthy tongue which distracts attention from the main film.<br /><br />Forget about this movie; rather go and watch 28 Weeks Later.<br /><br />Cheers, Mesake C.\"\r\n0\tI saw this movie a few days ago... what the hell was that?<br /><br />I like movies with Brian O'Halloran, they are funny and enjoyable. When I saw a name of this title and genre I thought great, this one could be really good... some parody for slashers or another gore movies... but.. then i read a preview and thought right it could be good anyway... but it wasn't...<br /><br />my opinion: if like movies they look little bit like documentary, with little bit of comedy try some Moore's movies or Alien autopsy, they are really about something. this one was empty. <br /><br />and put A comedy to title... no comment... really bad joke\r\n1\tGrey Gardens is a world unto itself. Edith and Little Edie live in near total isolation, eating ice cream and liver pate in a makeshift kitchen in their (apparently) shared bedroom. Cats loll about while mother Edith insults her daughter's elocution. This is a Tennessee Williams play come to life and should inspire screenwriters and playwrights, as the bizarre and overlapping dialogue is 100% real.<br /><br />The situation in the house reminds me exactly of how my grandmother and her 50-ish daughter lived for a decade (other than that they were poor and clean). They would bicker all day, grandmother talking about her gloriously perfect past while her daughter continually blamed her for missed opportunities with men, work, and self-expression.<br /><br />This film is a must-see for anyone writing a mother/daughter relationship of this kind. It is sad and voyeuristic, but the filmmakers did an amazing job getting the Edies comfortable enough to expose themselves so recklessly. It is rare to see true life this way and all the more special considering the context--remnants of a powerful family fading into nothingness in the skeleton of their own mansion.\r\n1\tOh my gosh i live in Kentucky and when Mellisa Joan hart came to Louisville she went right through my neighborhood and waved at me i am filthy rich so she wanted to look at my neighborhood oh and i Love being rich any ways she came for the Derby back to my interest in the show...... that show makes you want to point your finger at something and make it disappear i mean it is just so creative and i love it i would love to be on that show....... that show is just amazing i mean who ever came up with that show i want to just give them a big kiss i mean it makes me feel better when I'm sick and makes me happy when I'm mad i mean if someone tells me they don't like it i will talk some sense in to you OK OK\r\n1\t\"This isn't the best Bigfoot ever made, but by the recent standards of Nature gone awry movies, mostly showing on the Sci-Fi channel, this is quality stuff. It has some action, some humor, decent F/X and Bigfoot. CG is used, but so are some practical F/X, which I like.<br /><br />Overall this movie is worth a watch if you are a fan of B horror/sci-fi and need a fix. It's better than the movie Sasquatch and not a sequel to it, so don't be fooled.<br /><br />The acting is better than you may expect to find in a movie like this and the directing is more than adequate. Expect a bit of a lul as the characters are \"\"developed\"\", but know that things will pick up. If you are watching a DVD you may want to skip a chapter or two.\"\r\n0\t\"When my own child is begging me to leave the opening show of this film, I know it is bad. I wanted to claw my eyes out. I wanted to reach through the screen and slap Mike Myers for sacrificing the last shred of dignity he had. This is one of the few films in my life I have watched and immediately wished to \"\"unwatch\"\", if only it were possible. The other films being 'Troll 2' and 'Fast and Furious', both which are better than this crap in the hat.<br /><br />I may drink myself to sleep tonight in a vain attempt to forget I ever witnessed this blasphemy on the good Seuss name.<br /><br />To Mike Myers, I say stick with Austin or even resurrect Waynes World. Just because it worked for Jim Carrey, doesn't mean Seuss is a success for all Canadians.<br /><br />\"\r\n0\tWell, i could nt get into the plot, but thats just me maybe. Listless camera-movements at times, nevertheless this movie has got a charming vintage quality.The acting is genuine at times and entertaining with the occasional chase sequence involving scantily clad ladies, which was nice. The climax is confused and disjointed, but still ...err riveting, thanx to Stella Stevens.<br /><br />The stunts are interesting, specially because of the 70's las vegas backdrop. There are a few jerky hand-held camera-movements at the end, which keep me guessing, for a while. But i don't think I ll b chasing the DVD, just yet.\r\n0\tThis has got to be one of the worst movies I've ever seen! There were people leaving the theatre, others were falling asleep (ok, it was a late night show)... This is a no-sense movie, one of those who can make you never want to see an out of mainstream picture again. I would love to watch the making-off of this movie as I am deeply interested on what goes on the minds of the authors of such garbage. Do they laugh when they create all this ridiculous stuff or do they actually think they're doing something interesting? I wonder... The soundtrack is awful apart from some instrumental stuff that reminds you of a previous Bjork album. Even if you're a fan of Bjork's music, stay home. It's the best thing to do. The little, tiny, pieces of nice music are no reason for you to go out and submit yourself to this torture. God!...\r\n1\t\"Astronaut Steve West (Alex Rebar) and his comrades undertake a space mission that sees them flying through the rings of Saturn. His comrades are killed instantly, but it would seem that they are in fact the lucky ones. Steve returns to Earth a constantly oozing mass of humanoid pulp; as he turns into a savage killer, melting every step of the way, he is tracked by his friend, Dr. Ted Nelson (Burr DeBenning).<br /><br />This is often so uproariously funny - with enough absurd lines and situations to go around - that it's hard for me to believe that the laughs are all unintentional. It seems to me to be kind of a goof on low-budget genre efforts from the '50's and 60's, and as such, it's a marvelously entertaining movie. That sequence with the nurse is simply hilarious. We're even treated to a split screen sequence that doesn't really add anything, but is still a gas to watch.<br /><br />Writer / director William Sachs deserves credit for coming up with this ingenious idea; his ultra-slimy character is a memorable one indeed. I think his pacing is a little off; some scenes (like the one with the elderly couple) go on a little long, but ultimately he delivers solid, schlocky, B-movie goods with a degree of panache. The climax is especially fun.<br /><br />Arlon Obers' music is enjoyably shuddery (yet also amusingly silly during some moments), and Willy Curtis's cinematography creates some really great shots at times. That brings me to Rick Bakers' fantastic and convincing makeup effects, which form a highly respectable centerpiece for the movie, right down to the ultimate final melt.<br /><br />Rebar is under the heavy makeup for almost the entire movie (Sachs also gets my praise for having the movie hit the ground running) and does what he has to do well enough. DeBenning makes for a rather oafish and silly hero, and Ann Sweeney isn't so hot either as his wife, but Myron Healey, Michael Alldredge, and Lisle Wilson are fine in support. It's also worth it to see folk like Cheryl \"\"Rainbeaux\"\" Smith (doing an appreciable topless shot), Janus Blythe (of Tobe Hoopers' \"\"Eaten Alive\"\" and Wes Cravens' \"\"The Hills Have Eyes\"\"), and even director Jonathan Demme in a bit part.<br /><br />This is a highly entertaining midnight movie with enough gore, chills, and laughs to rate it as worth catching for lovers of low-grade sci-fi / horror everywhere.<br /><br />8/10\"\r\n1\tMy father grew grew up watching George Reeves as Superman and when I was a little kid he had episodes on VHS and let me view them including this movie (passing them down in the family if you will), and I loved it.<br /><br />Clark Kent and Lois Lane get sent to a small town with and oil mine and from the mine emerge mole men radioactive and targeted by the town assumed to be deadly and it's up to Superman to stop this mayhem.<br /><br />It's just so wonderful and fun to view. The old style special effects and sound - the crew pulled off such a beauty with such little technology. George Reeves was my hero when I was a little kid, and I'm 16 now, it just goes to show how timeless and classic these adventures are.\r\n0\t\"I had quite high hopes for this film, even though it got a bad review in the paper. I was extremely tolerant, and sat through the entire film. I felt quite sick by the end.<br /><br />Although I am not in the least prude or particularly sensitive to tasteless cinema--I thouroughly enjoyed both Woody Allen's 'Everything You Ever Wanted To Know About Sex,...' and Michael Hanneke's 'Funny Games'--I found the directors' obsession with this ten-year-old wanting to drink women's milk totally sickening. And when the film climaxed in an \"\"orgy\"\" where the boy drinks both his mother's milk, as well as that of the woman he has been lusting after for the whole film, I almost vomited with disgust for the total perversion and sentimental pap that it is.<br /><br />Don't get me wrong, I enjoy the vast majority of European cinema, as well as independently made films, so this flick should have pleased me enormously. Avoid this film at all costs, it should be relegated to the annals of History as a lesson in bad cinema.\"\r\n0\tIt seems that the intention of the film was to show the aggressive (maffia-like) character of Russians, or at least of those Russians able to travel outside their big country; that it is too easy to rob a bank in England; and that British police is so inefficient that it cannot find the person who robbed the bank even when these subjects are leaving the country by air. In addition, Nicole Kidman and the supposed Russian colleagues spoke a language not yet identified anywhere, probably spoken by Aliens in the Ural mountains, but far to be the Russian one. So Nicole, if you really want to talk Russian, kindly go to Moscow or St. Petersburg and keep yourself busy learning Russian language grammar and its pronunciation.\r\n0\tI almost burst into tears watching this movie. Not from laughing but from the memories of a great Rodney Dangerfield movie. Candyshack was his first and stole the movie, Easy Money had him at his best, and Back To School is by far an 80's classic masterpiece. Then there was Ladybugs and that's when it started to show. Poor Rodney was getting old (Meet Wally Sparks was a slight step up from Ladybugs but not saying much). <br /><br />In My 5 Wives Rodney plays Monte (a name he must love since that was his name in Easy Money) a rich (isnt he always) guy who loves women and gets married like its nothing. Well now he inherits a huge piece of land and since the land was run by the Amish, he inherits 5 Wives. This sounds like a great idea for a Dangerfield movie. The problem is EVERYTHING. The script is so poor that Rodney seems to be saying his one liners to the camera and all the side characters have nothing to do. The movie looks like it was shot on video with some really poor stunt sequences that are obviously not Rodney. Andrew Dice Clay plays a gangster who looks like he is dying to say the F word (which he should since the film is rated R but plays as if it was PG) and Jerry Stiller has a nice 2 minute cameo. Don't get me wrong, at times I did laugh at a few of Rodney's jokes but the poor man is getting way too old and way too slow. We can see his jokes coming from miles. And the film turns way too PC which thanks to the horrible 1990's, the 70's and 80's Rodney just doesn't work anymore.\r\n1\tDominion Tank Police is without a shell of a doubt, one of the most amazing shows ever produced, but not just in the field of animation. While the first part (Acts 1 and 2) mostly consists of action and fun, the second part is more serious and one should not treat the second part in the exact same way as first part. The subtleties are truly out of this world and the characterization is beyond brilliant. You must have an extra degree of intelligence to appreciate the intricacies of the second Part (Acts-3 and 4). I do have some complaints though. In the first part, the Tank Bonaparte quite literally jumps over a tank shell and it did not make any sense at all. One might also question the plausibility of Bonaparte jumping on the wing of Helicopter Gunship even though it was cool. Buaku rules.\r\n1\tMost people miss Hollywood's point of concept. If a hero can stimulate heroic deeds to the mind of a child, within the confines of the law then I, approve of the lessons being taught by Doc Savage.<br /><br />In all times of conflict or war, the public and government look for heroes to decorate. The motion picture industry brings heroes to the screen for people to identify with - such as Doc Savage, James Bond, Superman, Batman, Spiderman and others. Doc Savage is remembered by more than one generation as being the 'best of the best' before James Bond, Superman or any of the others. All others that follow Doc Savage are only a part of the character, not the 'Man of Bronze'.\r\n1\t\"Sublimity is the way we have to reach for The Beauty. And sublimity is the stuff this film is made of. If not his best, it's my most loved of all Bogdanovich movies.<br /><br />This unique masterpiece remind us, as most of the other films from the director, what life is (or should be) about: love, lost (or failure) and hope and faith and charity. As the song from whom the films takes its title (Gershwin's well known composition) the film makes the impossible true, and tries to make us aware that no-one is able to judge anybody; all this with the lightness of a comedy and the timing of a masterful direction (the first ten minutes, with the detectives following the ladies, almost without a line of dialogue, constructed upon the looks and views of the characters --with that \"\"Bogdanovich touch\"\" based on the point-of-view-- is a class on Cinema Language, something that P.B. learned well from his admired directors from the Golden Age of the Movies). With a superb cast and a glorious soundtrack (including the best of Sinatra's \"\"Trilogy\"\"), this movie, full of self-consciousness and compassion, and far away from self-indulgence and emptiness (as some critics wrote), deserves a better place on the History of American Cinema than where it have been placed. It's not \"\"long on style, short on substance\"\": it is complex in its simplicity, and beautiful, absolutely beautiful.\"\r\n1\tCarla works for a property developer's where she excels in being unattractive, unappreciated and desperate. She is also deaf.<br /><br />Her boss offers to hire in somebody to alleviate her heavy workload so she uses the opportunity to secure herself some male company. Help arrives in the form of Paul, a tattooed hoodlum fresh out of prison and clearly unsuited to the mannered routine of an office environment.<br /><br />An implicit sexual tension develops between the two of them and Carla is determined to keep him on despite his reluctance to embrace the working week. When Carla is edged out of an important contract she was negotiating by a slimy colleague she exploits Paul's criminality by having him steal the contract back. The colleague quickly realises that she's behind the robbery, but when he confronts her, Paul's readiness to punch people in the face comes in handy too - but this thuggery comes at a price. <br /><br />Paul is given a 'going over' by some mob acquaintances as a reminder about an unpaid debt. He formulates a plan which utilises Carla's unique lip reading abilities to rip-off a gang of violent bank robbers. It's now Carla's turn to enter a frightening new world.<br /><br />The fourth feature from director Jacques Audiard, 'READ MY LIPS' begins as a thoroughly engaging romantic drama between two marginalised losers only to shift gears halfway through into an edgy thriller where their symbiotic shortcomings turn them into winners. The leads are excellent; effortlessly convincing us that this odd couple could really connect. Carla's first meeting with Paul is an enjoyable farce in which she attempts to circumnavigate his surly reticence and jailbird manners only to discover that he was, until very recently, a jailbird. Emmanuelle Devos, who plays Carla, has that almost exclusive ability to go from dowdy to gorgeous and back again within a frame. Vincent Cassel plays Paul as a cornered dog who only really seems at home when he's receiving a beating or concocting the rip-off that is likely to get him killed.<br /><br />Like many French films, 'READ MY LIPS' appears, at first, to be about nothing in particular until you scratch beneath the surface and find that it's probably about everything. The only bum note is a subplot concerning the missing wife of Paul's parole officer; a device that seems contrived only to help steer the main thrust of the story into a neat little feelgood cul-de-sac.<br /><br />It was the French 'New Wave' of the 60's that first introduced the concept of 'genre' to film making and I've always felt that any medium is somewhat compromised when you have to use a system of labels to help define it; so it's always a pleasure to discover a film that seems to transcend genre, or better still, defy it.\r\n0\tEvil Aliens owes a huge debt to Peter Jacksons early films Bad Taste and Braindead.I must confess to never enjoying those films particularly and i say the same about this.Jake West is a director who clearly lacks inspiration of his own and chooses to steal from those whom he looks up to.I lost count of the amount of times a major Hollywood film was quoted most notably James Camerons Aliens.The amount of blood and gore on show here isn't funny either,the latter end of the film becomes tired and dragged out.Maybe it would have worked better as a short film.The actors a poor,the direction is weak and the plot is non existent.I can see what the director was trying to do,the homage he was trying to pay,but others have done the same thing a lot better than presented here. 4/10\r\n0\t\"I enjoyed the first reviewer's comment far more than I did the film when I saw it at a second-run theatre in the early '80's. I was impressed then by the care taken to create costumes modelled so closely after the Tenniel drawings. But to me, the cast was largely squandered, their personalities muffled by the masks, while the direction I think of as being unusually static, and the photography murky. The rating jotted down at the time was a nought, which means \"\"not worth sitting through even once\"\".<br /><br />Still, I too would jump at a chance to have a second look.\"\r\n1\tHidden Frontier is a fan made show, in the world of Star Trek. The story takes place after Voyager has returned from the Delta-quadrant . It has some characters from the official Star Trek shows, but most of them are original to the show. The show takes place on the star base Deep Space 12 and on several space ships, which gives it opportunities the official shows don't have. The characters have the opportunity of a rising in the hierarchy, which characters in shows with only one ship doesn't have. The show has good computer animation of spaceships, but the acting takes place in front of at green-screen and it gives a green glow around the actors. Not all the actors are equally good, but most do fine. The episodes are character driven and the characters develop over many episodes. That is a bit more like in Babylon 5, than in most official Star Trek shows. Hidden Frontier takes taboos that even the official series has shrunk from using. All in all I enjoyed watching it.\r\n1\t\"\"\"Heartland\"\" is a wonderful depiction of what it was really like to live on the frontier. The hard work and individual strength that were needed to survive the hardships of the climate and the lack of medical care are blended with the camaraderie and the interdependence of the settlers. The drama was especially meaningful because the story is based on the diaries of real people whose descendants still live there. It was also nice to see the west inhabited by real people. No one was glamorous or looked as if they had just spent a session with the makeup or costume department. Conchatta Ferrell is just wonderful. She is an example of the strong, persevering people who came to Wyoming in the early 20th century and let no hardship stand in their way of a new life in a new land.\"\r\n0\t\"This was a popular movie probably because of the humor in it, the fast-moving story, an underdog character who shuts up all the loudmouths, etc. Funny thing is, you probably couldn't make a movie with this title if you substituted anybody but \"\"white\"\" as anything else would be deemed racist by the PC police. <br /><br />Nonetheless, Woody Harrleson as the white guy who turns out to be as good if not better than any of the black basketball players, is interesting as is his main counterpart Wesley Snipes.<br /><br />Snipes had a lot of funny put-down lines, providing much of the humor. The bad part of the film - which doesn't bother a lot of people - is the extreme profanity in here and the sleaziness of all the characters. That includes Woody's girlfriend, played by Rosie Perez. There are no really clean, nice people in this movie. For that reason, I can't honestly recommend the film, at least not to friends or those who are offended by a lotof profanity\"\r\n1\tI can't believe that they took this off the air. Especially, when they only had a few more episodes left. My daughter, sister and a few of my friends loved watching this show. We were so upset when they stopped showing this because of so called ratings. It is not fair to the people who were watching this show since the beginning. We had a right to see the end. I wish they would take an overall vote from all people with a 3 times a year voting system. They could send out papers in the mail and we as viewers could give an overall vote on all programs that we watch or have heard about. This could also help promote a new show. People would see it and wonder what it is. Not only could you see what the viewers are watching, you could also use this as a tool for free advertisement for TV and cable channels. We want to see the other episodes. Bring it back!!\r\n1\t\"I have lost count of just how many times I have seen this movie - I probably know the entire dialog backwards - yet I am drawn to it time and again.<br /><br />Set in Hungary, a young Jimmy Stewart plays the eligible bachelor \"\"Kralik\"\" who becomes the secret admirer of Margaret Sullavan's innocent \"\"Klara\"\". Kralik secretly becomes Klara's pen-friend, and at work together Klara confides in Kralik about the content of his (Kralik's) letters. Clearly Kralik is besotted with Klara - but is unable to make his feelings known whilst he is in competition with the \"\"pen-friend\"\". Confused? Well you wont be - this story has a sweet, almost sugary ending - but we all know it is the ending we all want.<br /><br />Other characters worth mentioning are Frank Morgan playing his usual role, this time as the shop's owner \"\"Hugo Matuschek\"\", Felix Bressart as \"\"Pirovitch\"\", Kralik's confidant. Joseph Schildkraut as the womanising arrogant \"\"Vadas\"\" - so well played that you cannot help but hate him right from the beginning.<br /><br />Finally William Tracy who manages to endear himself to us all with his over-confident upstart of a shop junior \"\"Pepi Katona\"\".<br /><br />Recently re-made as \"\"You've Got Mail\"\" starring Tom Hanks & Meg Ryan for me is not as good as the original - although I suspect younger audiences would disagree.<br /><br />If this film is on in your area over Christmas, I suggest you pour yourself a nice glass of wine, put a log on the fire and have a box of Kleenex handy.\"\r\n1\tThis movie has made me want to become a director, and Michelle Rodriguez is brilliant. How the hell wasn't she on mtv's top 25 under 25, she beats them all. This film definitely deserved the grand jury prize at sundance, best film i have ever seen.\r\n0\tOK, I am not Japanese. I do know a little about Japanese culture, and a little less about Japanese pop culture. Other than that, I am Spanish, I eat paella and I like black humor.<br /><br />Good, with that point set, I can comment on the movie: I have no idea on how it is enjoyable to the Japanese audiences, Mamoru Oshii is quite a good director- despite the overly pedantic postmodern stuff in the style of Talking Head, and even that was curious and somehow interesting- and I am surprised he came up with this. It may just be one of those lost-in-translation cases, I am afraid it is, but as a European viewer watching the film with subtext overloaded English subtitles I just thought it was horrible. The jokes seemed bad, the script was overcooked- I mean, give the audience a break, and shut up a little you damn narrator- to the point of almost making my head explode over an overkill of fast-paced speaking and absurd action.<br /><br />However, I thought the animation was really cool. The idea is great, and it is well exploited in those animated scenes. However, the eye-candy finishes as soon as the characters are left aside to start with an endless not funny at all mumbo-jumbo speech over still pictures. It just makes you want to fast forward to the next cut-out hysterical characters scene.<br /><br />I read Mamoru Oshii is actually planning on a sequel for this. The idea was good but horribly exploited. Maybe the second part will bring up the good parts of this first one and actually make an interesting movie, or maybe it will be more and more over-narrated scenes. But hell, if you thought Talking Head was dense, Amazing Lifes of Fast Food Gifters will give cause you a stroke.<br /><br />Of course, all this comment is based on the experiences of someone who is European. Probably this is totally useless to Japanese people, maybe it was a really funny film lost in cultural frontiers and translation. Maybe.\r\n0\tThis must be one of the worst Swedish movies ever made. <br /><br />It is embarrassing that such a bad script was allowed to become a movie and shown in cinemas as recently as year 2006.<br /><br />I've never seen so many visible sponsored products in one and the same movie. It shouldn't be that obvious. <br /><br />I can't understand why so many known actors even thought the idea to even be visible in a movie like this. If I had any respect for some of the known actors in this movie before I saw the movie, it is gone for sure now. <br /><br />I've heard that there will be a follow up movie to this one and I can't understand how that is even possible.\r\n0\t\"Michael Jackson would have claimed a spot for the top-billed character in THE GOLDEN CHILD, and because he loves kids. That didn't work (and why should it?), so instead we have Eddie Murphy out to save the world by rescuing \"\"Kid Midas\"\". I would strongly suggest all future scriptwriters to please thoroughly study the actor's inane dialogue in this quirky fantasy - adventure - comedy that's a step closer to ISHTAR. Whatever Murphy says or does can be best liked, but don't get me wrong about his exquisite comical talent; he doesn't belong in this movie, and the same went for DR. DOLITTLE! The violence and visuals combined are reasons to stamp it as a cult camp classic, and that wouldn't have made any sense as Hollywood and movie fanatics kept cashing in on the guy. Speaking of visuals, they were pulled off amazingly well at the time of Ronald Reagan's presidential fame. Murphy is far better at COMING TO AMERICA and 48 HRS, but this stale movie isn't my touch of golden honey for a sweet crunchy taste.\"\r\n1\t\"This is not my favorite WIP (\"\"Women in Prison\"\"), but it is one of the most famous films in the sub-genre. It is was produced by Roger Corman, who at this point had already produced a few WIPs. It is obvious that the film tries to play with the established formula. The movie takes place in an USA prison, not in a \"\"banana republic\"\" like most WIP films. I'm not sure if that was a wise move, but it is an acceptable change of pace. Writer-director Demme really gets into his job, always digging for new ways to present a familiar scenario. In fact, he is a little too ambitious for his own good. The filmmaker creates a few surreal dream sequences that are borderline pretentious but it is fun to see how hard he tries to put this film above your average chicks-in-chains flick. But do not worry, Demme still operates within the parameters of the sub-genre. There is plenty of nudity and violence, something that will satisfy hardcore fans. The film is a little slow, but it is very entertaining. The cast is good. Roberta Collins is a WIP veteran, so she does not need an introduction, and Barbara Steel is a hoot as the wheelchair-bound crazy warden. Pam Grier is sorely missed, though.\"\r\n0\t\"If I have to give this movie a score on a linear scale, then I have to give it a low score 3/10.<br /><br />But it was entertaining, and there are several good things to say about the movie.<br /><br />The psychiatrist candidate James Bishop is assigned to St. Andrews Hospital for his resident, and is exited and eager to \"\"change the world\"\".<br /><br />From the beginning of the movie you know that the hospital is hiding an evil truth, but James thinks he can make a difference and doesn't recognise this evil. <br /><br />The story builds fairly well, you know all the time that there is a truth in what the patients are telling about some resident evil, and wonder when and how James will discover this. Also when the break comes, James is in a way hunted by the evil, and you feel some suspense until \"\"the fight\"\" is over.<br /><br />Add an innocent beautiful girlfriend that arrives at the worst possible time and other standard horror elements, and you get the picture.<br /><br />The character buildup is actually fairly good, you are introduced to most of the people that gets killed, some of them you \"\"get to know\"\".<br /><br />The film sets an unpleasant scene, this is also done fairly well. There are mysteries that are unveiled - in an acceptable way.<br /><br />The main character, James is very believable - the story about an eager student starting to work is good in this setting.<br /><br />What kills this movie is: * Stupid special effects - a modern version of \"\"Plan 9 from outer space\"\"-type bad (the evil monster looks like a red scarecrow) * Some bad acting (or probably very few takes when filming) - The main characters sometimes acts badly, and somtimes good. * The sound is at times very cheap.<br /><br />I kept thinking \"\"I could make a movie like this with my home video camera\"\" throughout the film.\"\r\n1\t\"In life, we first organize stones (Piedras in Spanish) such as a career, family, friendship, and love. In this way, we shall find space between these to fit smaller stones, our small necessities. If you act in an inverse way, you will not have enough room for larger stones. The five protagonists in this film are women who have not been able to organize the large \"\"stones\"\" in their lives. Ramon Salazar, a Spanish motion picture director defines his first feature Stones in this way. The film tells the parallel, conflicting trajectory of five women: Anita (Monica Cervera, 1975-), Isabel (Angela Molina, 1955-), Adela (Antonia San Juan, 1961-), Leire (Najwa Nimri, 1972-), and Maricarmen (Vicky Pena, 1954-).All are endeavoring to remove the stones that insistently appear in their path or, worst, that are in their shoes. They are five Cinderellas in search of Prince Charming and a new chance in life. The best story of these five Cinderellas is that of Anita (Monica Cervera) who also stars in \"\"20 Centimeters,\"\" \"\"Busco,\"\" \"\"Crimen Ferpecto,\"\" \"\"Entre Vivir y Sonar,\"\" \"\"Hongos,\"\" and \"\"Octavia.\"\" Sarge Booker of Tujunga, California\"\r\n0\tThere are so many goofy things about this movie that I can't possibly name but a few:<br /><br />BOGART's character: 1. His name  Whip McCord (too easy, so I'll leave it at that. Boy, it makes `Humphrey' sound good.) 2. His long, curly hair and silly sideburns. 3. His Black Bart get-up, complete with spurs! 4. Not sure what shade of lipgloss they've got him wearing, but it ain't none too flattering.<br /><br />CAGNEY's character (Jim Kincaid ): 1. His lipstick doesn't do him any favors, either. 2. The man is being swallowed by his hat during the entire film! Could they not find a hat to fit him? Even a LITTLE?!!?! 3. His pants are too tight in the rear. 4. He blows the smoke off his gun one too many times, if you know what I mean, and I think you do.<br /><br />If you are a casual Bogart or Cagney fan, and figure it might be a change of pace to see them in a western, do yourself a favor and forget that thought. EVEN THE HORSES LOOK EMBARRASSED! (That is, when they don't look bored.)<br /><br />In all fairness, I admit that westerns are my least favorite film genre, but I've still seen much, MUCH better than this.<br /><br />On a comedy level, or as high camp, The Oklahoma Kid works. Otherwise, it's viewer beware. Therefore, see this only if a) you must see every western out there b) you are a TRUE Cagney or Bogie completist c) any of the above comments appeal to you. Woah..\r\n0\tWe all have seen some unending epics in our times, but this one really tops them all! The movie is so long and so slow, that, just to put things in perspective, i felt a lot older when i left movie hall, than I entered it. At almost 4 hours length, it could have rather been made into a tele-serial.<br /><br />What starts as a promising comedy slowly loses its pace. Nikhil advani has woven the plot around 6 love stories and he cant make justice to any one of them... There is no interconnection between them to start with, and links shown in last 20 minutes just seem to be forced to connect the story.<br /><br />Situation is made worse by Silly dialogues (most of them repeated in Hindi cinema over years)and stupid cinematography.<br /><br />Priyanka doesn't realise that she actually needs to play her role rather than just looking glam on screen... An utter waste of beauty without acting skills.<br /><br />And then there is loud-is-humorous Govinda & my-face-twists-better-than-jim-carrey Akshay Khanna who keep belching at the top of their lungs to irritate already tired viewers.<br /><br />Only good part in movie is John & Vidya's love story & nice acting/comedy by sohail & Isha. But they are so good at their roles that just these two couples could have justified the movie without jumbling it with other bunch of characters. Their brilliance gets lost in the midst of other substandard plot lines.<br /><br />My guess - Director was making two separate movies(may be more!) and some beginner assistant mixed up all the records, beyond a point of sorting them out, so director was left with no choice to show it all as a single movie...<br /><br />Watch it only if you want to test your patience!!!\r\n0\t\"...from this awful movie! There are so many things wrong with this film, acting, writing, direction, editing, etc. that it's amazing that something rises to the top and proves itself to be the absolute worst. The music! I noted that the film has two composers listed. This must be the reason why every single frame has music, of the absolute worst \"\"D\"\" movie style drivel. They have never heard of the expression \"\"less is more\"\". It got so painful to listen to, I muted the sound every time there was no dialogue, not that the dialogue was that good. You have to feel sorry for Robert Wagner and Tom Bosley, I'm sure they didn't see roles like this in the twilight of their careers. See it at your own risk.\"\r\n0\t\"Disney's done it again. The company that made \"\"Mr. Magoo\"\" and \"\"George of the Jungle\"\" has made another movie that barely resembles the cartoon on which it is based, and keeps none of the spirit of the original.<br /><br />\"\"Inspector Gadget\"\" was one of my favorite cartoons when I was a young one, and for a movie of it to exist may have been a dream come true back then. Now that that movie does exist, I was severely disappointed, even outraged.<br /><br />First we have the characters.<br /><br />Gadget himself has the gadgets that made him such a fun character in the original cartoon (with well-done special effects accompanying them), and he even has some of the naivete of the original Gadget, but he is now more competent and is expected to solve the crime himself while Penny and Brain just watch.<br /><br />Penny has little to do; while she played a major role in the cartoon, discovering the crime and halting it, and occasionally getting captured by the MAD agents, now she is simply introduced and then forgotten, although she does at least sneak into Claw's base.<br /><br />Claw is the movie's version of Dr. Claw, who was a rather sinister, raspy-voiced man who wore metallic gloves and sat in his chair, his face hidden from view, as he stroked his cat and oversaw various crimes. Now he is simply a man with a claw for a hand, with no mystery behind the character.<br /><br />Brain and Mad Cat exist in the movie, but are rather insignificant to it.<br /><br />Even small parts of the cartoon aren't spared in this butchering. The famous expression \"\"Wowsers!\"\" was mysteriously changed to \"\"Wowser\"\", and Gadget's Gadgetmobile now looks different and talks.<br /><br />There is even product endorsements everywhere. Why is \"\"Yahoo!\"\" advertised on a sign? Why does the Gadgetmobile have buttons for M&M's or Skittles?<br /><br />Fans of the cartoon will hate it, others might will likely find the movie below par, and when all is said and done, this movie is another attempt to make some quick bucks off another old show.\"\r\n1\t\"I sat through both parts of Che last night, back to back with a brief bathroom break, and I can't recall when 4 hours last passed so quickly. I'd had to psyche myself up for a week in advance because I have a real 'thing' about directors, producers and editors who keep putting over blown, over long quasi epics in front of us and I feel that on the whole, 2 to 2.5 hours is about right for a movie. So 4 hours seemed to be stretching the limits of my tolerance and I was very dubious about the whole enterprise. But I will say upfront that this is a beautifully  I might say lovingly  made movie and I'm really glad I saw it. Director Steven Soderbergh is to be congratulated on the clarity of his vision. The battle scenes zing as if you were dodging the bullets yourself.<br /><br />If there is a person on the planet who doesn't know, Ernesto 'Che' Guevara was the Argentinian doctor who helped Fidel Castro overthrow Fulgencio Batista via the 1959 Cuban revolution. When I was a kid in the 1960s, Che's image was everywhere; on bedroom wall posters, on T shirts, on magazine covers. Che's image has to be one of the most over exploited ever. If the famous images are to be relied on, then Che was a very good looking guy, the epitome of revolutionary romanticism. Had he been butt ugly, I have to wonder if he would have ever been quite so popular in the public imagination? Of course dying young helps.<br /><br />Movies have been made about Che before (notably the excellent Motorcycle Diaries of 2004 which starred the unbearably cute Gael Garcia Bernal as young Che, touring South America and seeing the endemic poverty which formed his Marxist politics) but I don't think anyone has ever tackled the entire story from beginning to end, and this two-parter is an ambitious project. I hope it pays off for Soderbergh but I can only imagine that instant commercial success may not have been uppermost in his mind.<br /><br />The first movie (The Agentine) shows Che meeting Castro in Mexico and follows their journey to Cuba to start the revolution and then the journey to New York in 1964 to address the UN. Cleverly shot black and white images look like contemporary film but aren't. The second film (Guerilla) picks up again in 1966 when Che arrives in Bolivia to start a new revolutionary movement. The second movie takes place almost entirely in the forest. As far as I can see it was shot mostly in Spain but I can still believe it must have been quite grueling to film. Benicio Del Toro is excellent as Che, a part he seems born to play.<br /><br />Personally, I felt that The Argentine (ie part one) was much easier to watch and more 'entertaining' in the strictly movie sense, because it is upbeat. They are winning; the Revolution will succeed. Che is in his element leading a disparate band of peasants, workers and intellectuals in the revolutionary cause. The second part is much harder to watch because of the inevitability of his defeat. In much the same way that the recent Valkyrie - while being a good movie - was an exercise in witnessing heroic failure, so I felt the same about part two of Che (Guerilla). We know at the outset that he dies, we know he fails. It is frustrating because the way the story is told, it is obvious fairly early on that the fomentation of revolution in Bolivia is doomed; Che is regarded as a foreign intruder and fails to connect with the indigenous peoples in the way that he did with the Cubans. He doggedly persists which is frustrating to watch because I felt that he should have known when to give up and move on to other, perhaps more successful, enterprises. The movie does not romanticise him too much. He kills people, he executes, he struggles with his asthma and follows a lost cause long after he should have given up and moved on, he leaves a wife alone to bring up five fatherless children.<br /><br />But overall, an excellent exercise in classic movie making. One note; as I watched the US trained Bolivian soldiers move in en masse to pick off Che and his small band of warriors one by one, it reminded me of the finale to Butch Cassidy. I almost turned to my husband and said so, but hesitated, thinking he would find such thoughts trite and out of place. As we left the theatre he turned to me and said \"\"Didn't you think the end was like Butch Cassidy!\"\"\"\r\n0\t\"Yeah, right.<br /><br />I spent the first hour waiting patiently for the movie to take off. It was horribly boring, and consisted mostly of people riding randomly around the hills with no apparent direction. Then the hero comes into the picture. Born as an Asian, but when he grew up, he became white. Obviously white. He wasn't even close to passing for Asian. He looked like Justin Timberlake. It was extremely distracting, and the story did nothing to help the cause. Pointless battle sequences and lame dialogue. It's an hour and forty five minutes long, and by the end I was trying to eat my own face. I watched this because people at the video store where I work are always asking me if this movie is any good. Now I have an answer. It goes something like this: ahem. \"\"NO! GOOD GOD NO! IT'S HORRIBLE! DON'T DO THIS TO YOURSELF! I would recommend another movie, perhaps one that's entertaining.\"\"\"\r\n1\tI think this is a great version, I came on here before, to help me find which version I should use and I went to Jane Eyre 1983 and read a comment from users comment and then helped me to get this version. I do not regret picking this version and neither will you. I tried watching all the other versions and none matched up to it,There is nothing like the book,and TRUST ME if you are reading the book you want something that is going to match up with it. When you are looking for something real and moving after you have read the book it is hard because you want something that is going to match up with that. I would say God personally led me to this version. It points to true love for a humans. I would say God's love is greater.if there is anything better, I would like to see it. but so far there is none like it!\r\n0\tThis is the absolute worst movie I have ever seen!! There was absolutely nothing good to say about this movie. I have seen some bad movies but this one takes it. There is no plot and most of the movie you are either fast forwarding the movie to get it done faster or you are wondering what the hell is going on because you can't seriously think that someone thought of this movie and you are watching it. I feel sorry for anyone who has to sit through this painful hour and a half. Please take my advice and DO NOT WATCH this movie for I know you will think it is the biggest waste of time you have ever spent in your life.\r\n1\tI've read many negative reviews of this movie and finally got a chance to see it on DVD. To be honest I really don't know what the problem with it is.<br /><br />It's a decent murder mystery thriller, shown from various points of view, from an eccentric cast of often drugged out potential killers/suspects, including the late porn king, John Holmes. Please read the plot synopsis for the exact details of the movie's plot - I wish to contribute more to a review than a synopsis.<br /><br />Many reviewers went so far to give this movie their lowest rating due to violence but I really don't see it. MANY modern movies were worse - Saving Private Ryan was ultimately more violent than this movie, which often relies on implied blood stains than actual brutal slayings (the murders depicted in this film were done with lead pipes, afterall).<br /><br />I was enthralled with both halves of the movie - the first showing John Holmes as a hopeless cash hungry drug addict, and the second half showing his side as a minor conspirator in a senseless bloodbath. The movie has excellent acting, even though Dylan McDemorant looks more than a bit out of place in his biker-esque personia and goatee'ed bad boy personality.<br /><br />The soundtrack was also awesome - a fantastic mix of 70's B-side rock and obscure pop, spread out over a couple of hours in all the right places ala Boogie Nights.\r\n0\t\"Occasionally one is served a new entrée from foreign films. That is their great attraction. They take from life and serve it up raw. American films, rarely dare to touch the forbidden subjects of society. Too many hang-ups and a morbid fear of financial failure. The Almighty dollar, determines their selections. Something which invites European directors. In addition, audiences world wide remain hungry for \"\"different\"\" films, especially those which offer a savory bite out of the wretched, suffering body of humanity. Despite the fear of directors or producers, many audiences yearn for beauty, poetry, and the pristine flavor of life. That is what the film \"\"To the Left of the Father\"\" offers to curious audiences. A family locked in the belief that unity of family stems from the unity of it's obedience to tradition. Yet when the patriarch of a family forgets it's members are flesh and blood humans, filled with raging, unbridled dreams and dark passions, then the two are set in motions against itself. Selton Mello plays André a son who seeks to control his inner passions with the stagnant philosophy of his father. Raul Cortez plays his Father. Simone Spoladore is Ana a young woman who seeks to quench a forbidden thirst from the family waters. Leonardo Medeiros is Pedro, the elder brother. The film offers much, but does takes an extremely inordinate amount of time to say it. ***\"\r\n1\tFrom the excellent acting of an extremely impressive cast, to the intelligently written (and very quotable) script, from the lavish cinematography to the beautiful music score by Carter Burwell, Rob Roy offers a rarity in movie going experiences: one that is nigh impossible to find fault with in any area.<br /><br />There have been several comparisons made with Braveheart, which came out the same year. With all due credit to Mel Gibson, Braveheart struck me as too much of a self-conscious and preachy epic to rival Rob Roy as the kind of movie I would care to see more than once. While Braveheart works hard to be a serious epic, Rob Roy just grabs you and absorbs you into its tightly edited storytelling. Not a single scene is wasted.<br /><br />Rob Roy contains the perfect balance of dramatic tension, action and even occasional humor. The characters are well fleshed-out, perfectly conveying vernacular and mannerisms that anchor them in their authentic period setting.<br /><br />Further, they are not caricatures of good and evil as we all too often observe in even modern film.<br /><br />For example, while we hope the heroic Rob Roy prevails, we realize his predicaments are products of his own pride and sense of honor. Tim Roth plays one of the most hateful bad guys in the history of cinema, yet there are moments when we can understand how the events of his life have shaped him into becoming what he is. Rob Roy employs a level of character development that makes its story even more believable and gripping.<br /><br />Rob Roy is a delightful treasure, featuring one of the greatest sword fights ever choreographed and a climatic ending worthy of all the tense anticipation.\r\n1\tI don't know what it is I find so endearing about this film, but the first time I saw it, I wanted to see how it ended. I'm not a big fan of Paul Winfield nor of war-dramas, but I was truly wondering just how and when Winfield would find his child. All he knows is that the boy has green eyes. Truth be told, I have not seen this movie in years nor has it been shown on TV in a while, but this movie is somewhat of one man's odyssey after the pains of war. Winfield shows a very sympathetic and heart warming portrayal of a man lost by his memories. There is an underlying message in this movie that he is looking for the last shred of human morality in the aftermath of this war and the reality that he does confront. Why this movie is not yet on DVD or video is a mystery to me.\r\n0\t\"Let me start by saying that I'd read a number of reviews before renting this film and kind of knew what to expect. Still, I was surprised by just how bad it was. <br /><br />I am a big werewolf fan, and have grown accustomed to forgiving a great deal when watching one. Most of them have sub-par effects, poor acting, and weak storylines (at best rehashed from earlier films). So far, with the possible exception of some of the later \"\"Howling\"\" series films, this is the worst of the lot.<br /><br />First, the story. It's been quoted several times in reviews on this site, so I won't go into specifics. However, it is very obvious that the writer(s) had absolutely no affinity for lycanthropic monsters. As so often happens when a horror film is given to a writer who considers themselves \"\"above\"\" such fare, they tried to come up with a new spin on the werewolf mythos. That's fine, but a non-horror fan trying to do this generally has disregard for the intelligence and sophistication of the horror audience and ends up writing down to them. The plot feels like a parody of werewolf films, and the events depicted just ring so false that I felt my intelligence was being seriously insulted. TV news footage, for example, never pans away from the reporter to close-up on someone in the crowd behind them. Give the characters and the viewers credit for being able to spot the bad guy in the scene without using a flashing neon sign. And that's just the tip of the iceberg.<br /><br />As for effects, I have NEVER seen a less believable werewolf. I'd have been happier with Lon Chaney Jr. in crepe hair. The beast they used look a great deal like... well, like a guy in a cheap rubber suit with some hair glued on and some truly awful animatronics. And, I know that many people have already criticized the CG, but my God it was awful. One scene features a woman changing, and starts with a completely CG version of the actress, nude but for some reason without nipples. My first thought was, \"\"hey, why is one of the characters from 'ReBoot' turning into a silly looking werewolf?\"\"<br /><br />Anyway, I like to look for positives in any film, and there were a few. The cinematography was passable (the film was shot all-digital, which is interesting) and some of the performances were not terrible. It was also interesting seeing Tippi Hedron as the world's most well made-up homeless woman, and Kane Hodder as the title bad guy. Also, the Yellow Power Ranger got all growed up and... well, damn. And if you're looking for skin, there's some pretty tasty examples. This ends the male-pig segment of the review.<br /><br />Overall, if you want a good werewolf film, try \"\"An American Werewolf in London\"\", the original \"\"The Howling\"\", \"\"Dog Soldiers\"\", or even \"\"The Wolfen\"\" (though that one's got more wolf than were). If you're a lycanthrope completest, then take a gander. Otherwise, give this one a miss.\"\r\n0\tWatching this movie is like eating a banquet of nothing but meringue. It initially looks great but ultimately provides NO satisfaction--none.<br /><br />The plot is a muddled mess about a toy factory and the forces of evil. So, how is it possible that with this basic plot AND Robin Williams that the movie still turns out so badly?! It's because the picture is all appearance with no substance whatsoever--much like the terrible Popeye picture Williams did at the beginning of his film career. The film must have cost a fortune but perhaps there wasn't enough money left over to hire writers who had graduated grade school.<br /><br />The film is one unfunny joke that goes on and on and on and on. I really am unsure why it was made in the first place--it certainly wasn't made to provide any sort of entertainment.\r\n1\tIt's wonderful to see that Shane Meadows is already exerting international influence - LES CONVOYEURS ATTENDANT shares many themes with A ROOM FOR ROMEO BRASS: the vague class identity above working but well below middle, the unhinged father, the abandoned urban milieu, the sense of adult failure, the barely concealed fascism underpinning modern urban life. <br /><br />But if Meadows is an expert formalist, Mariage trades in images, and his coolly composed, exquisitely Surreal, monochrome frames, serve to distance the grimy and rather bleak subject matter, which, Meadows-like, veers from high farce to tragedy within seconds. <br /><br />There are longueurs and cliches, but Poelvoorde is compellingly mad, an ordinary man with ordinary ambitions, whose attempts to realise them are hatstand dangerous; while individual set-pieces - the popcorn/pidgeon explosions; the best marriage sequence since THE DEAD AND THE DEADLY - manage to snatch epiphany from despair.\r\n0\t\"80 minutes, and it felt twice that long! Brief Crossing is not brief enough. Indeed, the first 50 minutes or so consist almost entirely of a dialogue (more of a monologue, really) of a woman approaching middle age, tediously droning about \"\"men,\"\" disappointment, sex, aging, and her recent breakup, to a French teenager she met in the ship's cafeteria.<br /><br />The tedious monologue continues as they go to duty-free shop, and to a bar, where finally her self-involved rant pushes him away. The \"\"story\"\" can't end there, of course, so she persuades him to listen to her drone on more as she brings him to her cabin.<br /><br />What little romance, sex, or for that matter, anything at all this film has besides bitter rantings is hardly enough to justify the price of a rental unless you are one of those who love dramas where nothing interesting happens at all. Yes, the ending is very nicely done, but it is scant reward to subject yourself to what amounts to a turning your living room into a virtual therapy session with a narcissistic whiner.<br /><br />Of course, some people like it. I could be wrong.\"\r\n0\t\"If you want to know the real story of the Wendigo, I suggest you pick up a copy of Algernon Blackwell's original story. This movie was not only bad but had nothing to do with the book.<br /><br />I loved the book when I read it as a kid (In \"\"Campfire Chillers\"\" by E.M. Freeman)and was so excited to see a movie based on it come out. I was so disappointed when I finally saw it. Another thing is that there were too many PC (Politically Correct) undertones throughout the movie that had no place in the film. When the book was written PC didn't even exist.<br /><br />My suggestion is don't waste your time or money!! If you see it on the video store shelf LEAVE IT THERE.\"\r\n1\t\"Watching \"\"The Fox and the Child\"\" was an intoxicating experience. The lush visuals, integrity of point of view, and utter beauty of the setting and characters left me in a swoon of pleasure.<br /><br />The plot is uncomplicated. Deceptively simple. Within the container of that simplicity a world unfolds that draws you in and leaves you breathless.<br /><br />I laughed. I wept. I learned.<br /><br />This is a movie you can trust yourself to -- give yourself over to. Dare I say it is an act of love intended for any innocent heart. It reaches to the heart of the viewer--of any age--and reveals the world through new eyes, as if seen from the heart.<br /><br />Adi Da Samraj once said that true Art draws the viewer beyond point of view into ecstatic participation in Reality. I feel I have been privileged to watch--no, to participate in--this film, a work of true Art.\"\r\n0\t\"*****probably minor spoilers******<br /><br />I cant say i liked it, but i cant say i didn't...its very strange. It has bad things in it like for example a shark that came out of nowhere with the worst CGI you can imagine,if i was the director i would cut that part for sure, gave me the urge to stop seeing the rest of the movie... For some people it will be boring cause it lacks action, feels home made sometimes... Take for example a scene that one of the friends died and next thing they are doing is what? nop,not crying...their telling horror stories to each other..*sighs*(just after crying for hes lost)<br /><br />Another stupid thing was when they were talking inside the boat they had like \"\"hundreds\"\" of candles in the table in front of them...the boat is surrounded by some kind of rag curtains(old rags covering the windows) and sofas/Couches ...i thought it was dumb, using candles but not thinking about the surroundings, besides being in high sea alone...<br /><br />The good, some scary scenes they are nicely done i liked some. Sometimes horror works better when its hidden when its behind something instead of showing of, so this movie does it good, maybe because its a low budget i don't know, but it works fine for me! You will feel tension if you forget some holes like the ones i mentioned above.<br /><br />Do not expect much of it! but if you like anykind of movie watch this one, be patient, try to enjoy.. lol<br /><br />(sorry about my raw English) =)<br /><br />Cheers\"\r\n0\t\"If the crew behind \"\"Zombie Chronicles\"\" ever read this, here's some advice guys: <br /><br />1. In a \"\"Twist Ending\"\"-type movie, it's not a good idea to insert close-ups of EVERY DEATH IN THE MOVIE in the opening credits. That tends to spoil the twists, y'know...? <br /><br />2. I know you produced this on a shoestring and - to be fair - you worked miracles with your budget but please, hire people who can actually act. Or at least, walk, talk and gesture at the same time. Joe Haggerty, I'm looking at you...<br /><br />3. If you're going to set a part of your movie in the past, only do this if you have the props and costumes of the time.<br /><br />4. Twist endings are supposed to be a surprise. Sure, we don't want twists that make no sense, but signposting the \"\"reveal\"\" as soon as you introduce a character? That's not a great idea.<br /><br />Kudos to the guys for trying, but in all honesty, I'd rather they hadn't...<br /><br />Only for zombie completists.\"\r\n0\t\"The BFG is one of Roald Dahl's most cherished books, but in this animated adaptation the magic just isn't there. This version remains pretty faithful to Dahl's original story so one can't lay the blame on John Hambley's script. If anything the fault lies with the colourless animation, the lethargic pace and the generally lacklustre voice-overs. One would be right to expect this story to make for a happy, vibrant, fun-filled movie..... instead, the film is a hopelessly dull affair that becomes quite tedious to watch. Children who are not familiar with the story should definitely read the book first! All the film will achieve is to put them off read what is actually a children's' classic.<br /><br />Young orphan Sophie (voice of Amanda Root) lives in a none-too-friendly orphanage under the cruel supervision of Mrs Clonkers. One evening she is peering through the window when she spots a massive figure walking stealthily down the village street. The figure realises it has been seen, so it reaches in through the window and scoops Sophie from her bed, placing her into its enormous pocket before fleeing into the night. Sophie soon discovers that she has been kidnapped by a giant from Giant Country, and fears that he will eat her. But to her relief he turns out to be a kind and sensitive member of his species who introduces himself as the BFG (voice of David Jason). The BFG refuses to eat people, instead restricting himself to foul-tasting vegetables known as snozzcumbers. However, Giant Country is populated by numerous other giants who DO feast - every night, as it happens - on poor unsuspecting humans. Sophie and the BFG become great friends, and soon they come up with a plan to thwart the other giants. Together they go to the Queen of England (voice of Angela Thorne) with their remarkable story and beg her to send the army and the air force to fight the man-eating giants. The Queen agrees and so begins a dangerous operation to capture the bad giants before they can harm anyone else.<br /><br />Jason voices the BFG quite well (one of the few pluses in the film) but his good work is almost ruined by somewhat poor sound quality. The rest of the voice work is decidedly uninspired, with very little to bring the characters to life. Similarly, the BFG is the only character that is imaginatively animated - Sophie lacks appeal, and the giants are boringly designed (and look almost indistinguishable from each other). Even the places are uninventive; Giant Country especially comes up short, being nothing more than a barren wasteland with occasional rocks and canyons. At 88 minutes the film is not exactly lengthy, yet it drags quite badly in parts due to the soporific handling of several sequences. Little of Dahl's mischievous humour is conveyed satisfactorily. One chapter in the book deals with the BFG's love of \"\"whizzpopping\"\" (farting) and is laugh-out-loud hilarious. In the film, the same section is totally killed by unfunny handling. I came to the The BFG expecting lots of zest, fun and enjoyment, but what I got was pretty much the opposite! This one is a failed misfire that simply doesn't match the calibre of the book in any department - unfortunately, therefore, it must go down as one to skip.\"\r\n1\t\"The first thing I thought when I saw this films was: It is not really a film, at least it is not what we imagine spontaneously when we hear the word \"\"film\"\". it is entirely symbolic, everything in it has a figurative meaning. So if you are not used to express thing in a symbolic way, you will find it strange, if you are not acquainted with philosophy, religion, spiritual life, you will think it's just a fairy-tale... and even a weird one, chaotic. For me \"\"The legend of Zu\"\" is perfectly transparent. And I do like it. It tells us in images the story about the fight between light and darkness, the fight that is as old as humanity, and every one who is in search of the sens in this life is confronted with it. The film is obviously made by Buddhists. I am not a Buddhist. My religion and the vision of the world and human is different. But as far as we are all humans and have the same human nature we necessarily have common experiences and can understand each other. It is a really beautiful film! And I which we had more films like this - films that have a meaning. There are too many empty stories which are good only to make time pass more quickly.\"\r\n0\tAll you need to know about this film happens in the first five minutes: it looks cool, it has a solid original soundtrack reflective of the late-60s period, and all but a couple of its characters are unlikeable. Once you get that message, you may as well switch to another film.<br /><br />Davies's protagonist ignores his beautiful girlfriend, one of the few people in his life who cares about him. Then by the time he takes her advice to join her in the real world--instead of living a fantasy film of which he's the imagined director--he does so by pushing her aside and pairing up with an actress he's idealized beyond reason. A couple laughs and some thoughtful art direction are the only things worth watching here.<br /><br />The film is also interesting as documentation of Jason Schwartzman's fall from Mount Rushmore. In Rushmore, Schwartzman's annoying brattiness was something to be overcome, but here it's his character's only quality. Schwartzman's family connection clearly landed him in this role; here's hoping his choices improve.\r\n1\tThe film adaptation of James Joyce's Ulysses is excellent. The actors, the voice overs, the direction, it all captures the feel of the novel without sacrificing its own merits. The Milo O'Shea does an excellent job as Leopold Bloom, the cuckolded man married to the sassy Molly. I absolutely love this picture.\r\n1\tI really do not know what people have against this film, but it's definitely one of my favourites. It's not preachy, it's not anchored by it's moral, it shouldn't be controversial. It's just God. Any possible God, no matter the religion. And it's really funny.<br /><br />Jim Carry plays Bruce Nolan, a TV reporter usually stuck on the lighter side of the news, desperate to prove himself (more or less TO himself) that he can be taken seriously and do a good job in an anchor job. This drive is what is slowly driving his beautiful girlfriend Grace (Jennifer Aniston) away. When the final straws are executed, he's quick to not laugh, but yell in the face of God, who in turn gives Bruce his powers. Bruce then makes his life better for himself, until he's guilted into helping others, where he then continues to miss the point of his powers. Meanwhile, his constant excitement about his own life makes him more selfish, leaving his relationship on dangerous ground.<br /><br />OK, that was kinda long. But as a plot, it works well. The step-by-step fashion in which we meet the challenges of being God is much better than clustering his problems together, and is able to hide itself fairly well.<br /><br />As you probably know from hearing about this movie in the first place, Carrey's pitch-perfect acting stays in character (which, luckily enough, is him), and controls and gives atmosphere to the movie scene by scene. Whether they would admit it or not, the role was written or rewritten exclusively for Carrey. Without him, the humour would turn flat, as humour is half execution. And the humour is very good in the first place. But without Carrey, it would kinda feel like a It's a Wonderful Life wannabe.<br /><br />Jennifer Aniston is great and, no matter what some may say, does not act like the only excuse for the third act. At least, you don't think that when you see her. She gives a heartfelt performance and makes you forget you're watching a movie, she and Carrey feel very much like a real couple.<br /><br />The movie feels ggooooodd (see the movie to understand), has a very nice feeling, tackles the idea appropriately and better than expected and overall should never have been called slapped together just to save Carrey's career (which wasn't goin' anywhere.).\r\n1\tThe thirties horror films that are best remembered are always the likes of Dracula and Frankenstein; and there's a very good reason for that, but there were a number of smaller but nevertheless excellent productions, and The Invisible Ray is certainly one of them. The plot is not particularly original and similar plots have been seen many times before (even way back in 1936) but the way that everything is put together is certainly very imaginative and director Lambert Hillyer has created a very nifty little original horror film. The plot focuses on the good hearted Dr Janos Rukh; a man who has discovered a way to recreate the history of the Earth. His discovery leads him to believe that there may be an unknown radioactive element somewhere in Africa and so he sets off along with a team of esteemed colleagues to find it. However, tragedy strikes while on the expedition and the good doctor ends up becoming exposed to the element; which makes him glow in the dark, and also sends him mad...<br /><br />The biggest draw of the film is undoubtedly the fact that it stars the two biggest horror stars of its day - Boris Karloff and Bela Lugosi, and both give excellent performances. Karloff really shows what a good actor he is and his character has plenty of meat for Karloff to impress with. Bela Lugosi has a role which is extremely different from what we're used to seeing him in, and it's a great performance from him also; it's nice to see a bit of versatility from Lugosi. The film does get off to a rather slow start; but things soon start to pick up. The second half of the film is the best and that's really when the film gets exciting and Karloff gets a chance to shine (literally). The film does not put its focus on big special effects and largely relies on the actions of the central character to keep things interesting; and it does work very well. The film remains interesting throughout and boils down to a very decent climax that wraps everything up nicely. Overall, The Invisible Ray may not be one of the very best horror films of the thirties; but it's a very good one and comes recommended.\r\n1\t\"Unfortunately for myself - I stumbled onto this show late in it's lifetime. I only caught a few episodes (about three) before it was cancelled by ABC. I loved the characters, and storyline - but most of all the GREAT actors! I was a fan of Sex and the City, so I saw two characters I recognized (Bridget Moynahan was & The Character \"\"Todd\"\" was \"\"Smith Jared\"\"), as well as Jay Hernandez (From Carlito's Way: Rise To Power) and Erika Christensen (Swimfan). I enjoy watching young actors get their due, and felt like this show would propel their career further along. I hope this at least gets put back out on DVD, and maybe WB will pick it up for a second season sometime? In the meantime, I'm viewing it on ABC's website from the beginning.\"\r\n0\tIt's been a long time since I last saw a movie this bad.. The acting is very average, the story is horribly boring, and I'm at a loss for words as to the execution. It was completely unoriginal. O, and this is as much a comedy as Clint Eastwood's a pregnant Schwarzenegger! <br /><br />One of the first scenes (the one with the television show - where the hell are you?) got it right - the cast was 80% of let's face it - forgotten actors. If they were hoping for a career relaunch, then I think it might never happen with this on their CV! The script had the potential, but neither 80% of the actors nor the director (who's an actor and clearly should stick to being an actor) pulled it off. Fred Durst was the only one who seemed better than any of the rest.<br /><br />I'm sorry, but if you ever consider watching this - I highly recommend you turn to something less traumatic, because not only it's a total loss of time, but also a weak example of what bad cinema looks like.\r\n1\tFor fans of 1970s Hammer type horror films, this movie should be a treat. The only thing I didn't like about the film was the fact that Peter Cushing was wasted on the worst episode. In general, however, this is a solid, spooky little movie. If this is not Amicus' best film, it's certainly one of them. The best episode, rightfully saved for last, is the one featuring Jon Pertwee as a horror film actor--it is really excellent. As good as Pertwee was in this role, it's hard to believe he didn't do more of these types of movies. All in all, this is an entertaining movie, which scared the heck out of me as a child, and which still gives me the creeps to this day.\r\n0\tThis is a very sad movie. Really. Nothing happens in this movie. The Script is bad!!! I guess they've just copy-paste the first 15 pages to 90 pages. The Producers must have thought let's create a Hollywood movie here in Belgium. They didn't succeed. Now in the third week it is only running in Antwerp and Brussels at 22h45 or something. In the past we have had really good movies in Belgium, like Daens. Shades is a waste of your time. Maybe you could sneak in the theater after you've seen a real movie. If you've seen 10 minutes of Shades, you've seen it all. It was advertised to death on local radio and TV. I hope it will disappear in the Shades soon.\r\n1\tIf you love kung-fu films and you haven't seen this movie, you are cheating yourself. This movie is one of the only kung-fu cheapies that could be recommended for fans of all types of film. Normally, it takes a die-hard fan of the genre to see anything in these films, but this one has it all! The story is well told, and complete. The fight scenes are great, and tend to end before you're completely bored with them (unlike Crouching Tiger). Throw in a little mystery and torture and you've got yourself one heck of a movie. See this one at all costs. Heck, my wife even enjoyed it.<br /><br />Wu Du it!<br /><br />9 out of 10<br /><br />\r\n0\t\"I went into this with my hopes up, by twenty minutes into the movie I couldn't have been more let down. Despite thinking that this would be another horribly bad remake, I kept my hopes high that maybe...just maybe someone would get it right this time around. Sadly, Prom Night is about on the same quality level as the recent April Fools Day remake, bad script, bad direction, cheesy overdone acting and generally bad horror.<br /><br />From beginning to end it's boring, repetitive and worthy of about a dozen eye rolls. We've seen it all before and we've seen it done a million times better then this. If you go to see Prom Night in the theater (I'd say wait for the DVD or PPV), get ready for the audience to laugh, because laugh they will. The laughs aren't at points in the movie that are supposed to be funny, they are in response to key \"\"thrilling\"\" moments in the film that are so poorly done you feel as if your watching the newest installment of Scary Movie. Seriously, was this supposed to be a remake or a spoof? The film makers missed the mark so badly here, that a large number of the audience in the theater I attended walked out about halfway through the movie. Which in retrospect, I wish I had done. Not me though, I had to torture myself and stick with it hoping it would get better. Needless to say It didn't. The \"\"horror\"\" scenes are a joke, not even so much because of the acting but because of the direction, the script, the \"\"special effects\"\" and the camera work. The movie manages to look as if they spent a fortune to produce it, but still came out of it with a micro budget movie. I halfway expected to see dollar store tags on some of the props and kept thinking I would spot a porn star in the cast somewhere. <br /><br />This movies scary alright, if this is the future of big budget horror then the horror genre is doomed.\"\r\n0\t\"I watched this film version of R.D. Blackmore's classic novel as a substitute until the 2001 A&E version was released on video. And what a poor substitution it proved to be!!!!<br /><br />This version does not have the authentic, I-feel-like-I'm-there aspect of the A&E movie. The actors are, for the most part, wooden (with Sean Bean the exception) and the \"\"romance\"\" seems forced and contrived. In fact, there is no kissing until the end of the movie!!!! The triangle between John Ridd, Lorna Doone (or Lady Lorna Dugal, whichever you prefer)and the evil Carver Doone isn't mentioned or expanded upon. We don't get much insight into Carver here, or as to why he has some (if any) romantic feelings for Lorna. This movie cuts out many of the key and interesting characters of the novel, such as Counsellor Doone, and John's sharp-tongued youngest sister Lizzie which were crucial to the plot. The screenplay itself is lacking in conviction. The political intrigue also doesn't figure in the script. The way Lorna came into being with the Doones isn't true to the original story. Now, don't get me wrong, Clive Owen is a handsome and talented actor (watch Gosford Park and King Arthur for confirmation) but he comes across as bland and stoic throughout, and long hair (it may have been a bad wig) just doesn't suit him!!!! Polly Walker is a lovely and accomplished actress (see Enchanted April and Patriot Games, in which she also costarred with Sean Bean), but she appears colorless and lackluster. She has a cold sore on her lip that make-up can't hide, and the costumes don't seem authentic. The late Robert Stephens does a respectable turn as Sir Ensor Doone, although he only refers to Lorna as his favorite rather than his granddaughter, which she was reputed to be in the book. Also, it seems to me that Owen and Walker are too old for their roles (maybe it's the make-up) and the scenery is brown, cold, gray and barren, without so much of a hint of a sunny sky. I understand that it is set in Southwest England, but it is green there and they do get their sunshine!!! The portrayal of Tom Faggus' character and his \"\"death\"\", which doesn't happen in the novel, depresses the film even more. The one positive note is Sean Bean's performance as Carver. Although it doesn't even come close to matching Aidan Gillen's portrayal in the A&E movie, Bean does make one mean villain. In short, watch this only if you've got a few hours to kill, but don't expect anything exciting or for it to be true to the novel. See any other version ( but I highly recommend A&E's film) over this tired adaptation.\"\r\n1\tHelena Bonham Carter is the center of this movie. She plays her role almost immobile in a wheelchair but still brings across her traditional intensity. Kenneth Branagh was tolerable. The movie itself was good not exceptional. If you are a Helena Bonham Carter fan it is worth seeing.\r\n0\tThe social commentary was way overblown and the mystery itself is built and solved through a series of implausible coincidences that were entirely unbelievable. Nothing has changed in Fitz's personal life in the past decade that makes it remotely interesting. <br /><br />I even had trouble understanding why he was complaining about his stay in Australia as compared to the opportunities to solve mysteries that he has in England. Can he not insinuate himself on the Australian police? It seems like a very artificial plot point to get him involved in a crime investigation.<br /><br />The latter episodes of the original series were pretty melodramatic and implausible, sometimes bordering on silliness, and this one picks up that mantle rather than returning to the focus of series one. Sad.\r\n0\tWell, you know the rest! This has to be the worst movie I've seen in a long long time. I can only imagine that Stephanie Beaham had some bills to pay when taking on this role.<br /><br />The lead role is played by (to me) a complete unknown and I would imagine disappeared right back into obscurity right after this turkey.<br /><br />Bruce Lee led the martial arts charge in the early 70's and since then fight scenes have to be either martial arts based or at least brutal if using street fighting techniques. This movie uses fast cuts to show off the martial arts, however, even this can't disguise the fact that the lady doesn't know how to throw a punch. An average 8 year old boy would take her apart on this showing.<br /><br />Sorry, the only mystery on show here is how this didn't win the golden raspberry for its year.\r\n1\tThis is the true story of how three British soldiers escaped from the German Prisoner Of War (POW) camp, Stalag Luft III, during the Second World War. This is the same POW camp that was the scene for the Great Escape which resulted in the murder of 50 re-captured officers by the Gestapo (and later was made into a very successful movie of the same name). <br /><br />While the other POWs in Stalag Luft III are busy working on their three massive tunnels (known as Tom, Dick & Harry), two enterprising British prisoners came up with the idea to build a wooden vaulting horse which could be placed near the compound wire fence, shortening the distance they would have to tunnel from this starting point to freedom. The idea to build their version of the Trojan Horse came to them while they were discussing 'classic' attempts for escape and observing some POWs playing leap-frog in the compound.<br /><br />Initially containing one, and later with two POWs hidden inside, the wooden horse could be carried out into the compound and placed in almost the same position, near the fence, on a daily basis. While volunteer POWS vaulted over the horse, the escapees were busy inside the horse digging a tunnel from under the vaulting horse while positioned near the wire, under the wire, and into the woods. <br /><br />The story also details the dangers that two of the three escaping POWs faced while traveling through Germany and occupied Europe after they emerged from the tunnel. All three POWs who tried to escape actually hit home runs (escaped successfully to their home base.). The Wooden Horse gives a very accurate and true feeling of the tension and events of a POW breakout. The movie was shot on the actual locations along the route the two POWs traveled in their escape. Made with far less a budget than The Great Escape, The Wooden Horse is more realistic if not more exciting than The Great Escape and never fails to keep you from the edge of your seat rooting for the POWs to make good their escape. <br /><br />The story line is crisp and the acting rings true and is taut enough to keep the tension up all the way through the movie. The Wooden Horse is based on the book of the same name by one of the escapees, Eric Williams, and is, by far, the best POW escape story ever made into a movie. Some of the actual POWs were used in the movie to reprise their existence as prisoners in Stalag Luft III. I give this movie a well deserved ten.\r\n0\t\"I had no background knowledge of this movie before I bought it, but it sounded cool and I've been wanting to see a really kick-butt Viking movie for awhile now... alas, this film was not what I was looking for. I had hoped for the best, but instead, was delivered a boring Nordic soap-opera that seemed to drag on too long despite its 84 minute running time. The film's premise is intriguing enough: It's about a Viking warlord who defies his God and Odin is so enraged that he curses the warlord's son, named Barek, to death and rebirth as a Berserker. This Barek guy is then forced to live enraged, insane, and violent lifetime after lifetime. The movie is filmed competently enough, with some rich cinematography and quasi-good performances by the actors, but again, I found myself bored and questioning when this dribble would end. The filmmakers had a chance to make something rather entertaining and semi-unique but they dropped the ball. Perhaps it could've been improved with some cheap exploitation tactics thrown in such as gratuitous nudity and lots of gore... I mean, we are talking about \"\"Berserkers\"\" here, aren't we? Vikings were supposed to be BAD enough, what with all the raping and pillaging, so aren't Berserkers supposed to be even more extreme? All in all, unless you're a fan of The Young and Restless (etc...) or, are yourself, in fact, an insane Berserker who likes self torture, I'd probably steer clear of this drab piece of celluloid.\"\r\n0\t\"Do not bother to waste your money on this movie. Do not even go into your car and think that you might see this movie if any others do not appeal to you. If you must see a movie this weekend, go see Batman again.<br /><br />The script was horrible. Perfectly written from the random horror movie format. Given: a place in confined spaces, a madman with various weapons, a curious man who manages to uncover all of the clues that honest police officers cannot put together, and an innocent and overly curious, yet beautiful and strong woman with whom many in the audience would love to be able to call their girlfriend. Mix together, add much poorly executed gore, and what the hell, let's put some freaks in there for a little \"\"spin\"\" to the plot.<br /><br />The acting was horrible, and the characters unbelievable - Borat was more believable than this.<br /><br />***Spoiler***and can someone please tell me how a butcher's vest can make a bullet ricochet from the person after being shot without even making the person who was shot flinch??? I'm in the army. We need that kind of stuff for ourselves.<br /><br />1 out of 10, and I would place it in the decimals of that rounded up to give it the lowest possible score I can.\"\r\n0\t\"I don't remember \"\"Barnaby Jones\"\" being no more than a very bland, standard detective show in which, as per any Quinn Martin show, Act I was the murder, Act II was the lead character figuring out the murder, Act III was the plot twist (another character murdered), Act IV was the resolution and the Epilogue was Betty (Lee Meriwether) asking her father-in-law Barnaby Jones (Buddy Ebsen) how he figured out the crime and then someone saying something witty at the end of the show.<br /><br />One thing I do remember was the late, great composer Jerry Goldsmith's excellent theme song. Strangely, the opening credit sequence made me want to see the show off and on for the seven seasons the show was on the air. I will also admit that it was nice to see Ebsen in a role other than Jed Clampett despite Ebsen being badly miscast. I just wished the show was more entertaining than when I first remembered it.<br /><br />Update (1/11/2009): I watched an interview with composer Jerry Goldsmith on YouTube through their Archive of American Television channel. Let's just say that I was more kind than Goldsmith about the show \"\"Barnaby Jones.\"\"\"\r\n1\tThe second Care Bears movie is immensely better than its predecessor. It has a deeper plot, better character development, and the tunes (especially the closing song) are both catchy and warm-hearted. Sure the movie tends to over stress caring but come on, it IS a Care Bears movie. This movie is a great picture to show to kids because it emphasizes friendship, love, and again, caring. Not to mention the Care Bears are just too adorable!\r\n0\tThe 60s (1999) D: Mark Piznarski. Josh Hamilton, Julia Stiles, Jerry O'Connell, Jeremy Sisto, Jordana Brewster, Leonard Roberts, Bill Smitrovich, Annie Corley, Charles S. Dutton. NBC mini-series (later released to video/DVD as full length feature film) about the treacherous 1960s, as seen through the eyes of both a white family and a black family. The film's first half is driven by the excellent performance of Dutton as Reverend Willie Taylor and evenly spreads the storyline between the families. However, Dutton's character is killed halfway through and the black family is completely forgotten in a dull, incoherent, and downright awful 2nd half. RATING: 4 out of 10. Not rated (later rated PG-13 for video/DVD release).\r\n0\t\"I can't believe I waste my time watching this garbage! I did because Leonard Maltin gave it an \"\"AA\"\" rating, and for TV movies this is usually a reliable indicator of some quality entertainment.<br /><br />The acting was OK, but whoever wrote it should be forever denied access to any medium of communication. The plot is ludicrous, the motivations of the \"\"bad guys\"\" totally absent, and the various family interactions silly and shallow. For example, Dad preaches that violent reaction to aggression is BAD, but he turns out to be an \"\"admirable\"\" person NOT because of his \"\"ignore the idiots\"\" philosophy, but because he's pretty good with his fists...<br /><br />The ONLY message I was able to glean from this pap was that the nuclear family is Good and alternate living arrangements are Bad. Oh, and Bad people happen to Good people.\"\r\n0\tI'm basing this on my observations of one episode I saw last night (9/27/06). I don't think I'll be watching again. The acting was totally wooden, the plot completely predictable, the ending totally unrealistic -- I mean who would believe a 30 million dollar judgment for the death of a recovering drug addict with terminal cancer? The lead actor (Victor Garber) seemed so uncomfortable, almost embarrassed in his role -- perhaps he realized how bad the writing was!! I fully realize that the drama offered this season is pretty poor, but they can surely find better writers. Maybe they are outsourcing the writing to India or China!! I'll bet we won't be seeing this one next season!\r\n1\tI just went to a screening of the film during Expresion en Corto, a short film festival in Guanajuato, Mexico. One of the producers was there and gave a brief introduction. The Film rolled and from the first shot I was amazed: one long continuous shot of a futuristic Paris in glorious black and white.<br /><br />I shouldn't go on with the details 'cause I think it is a film worth seeing. The sci-fi story might be found average for many... to me was really good. The action is great, the camera is free to fly everywhere and I mean everywhere. Things you would not be able to do or see is accomplished beautifully. The cast performance is good, in my opinion no one hits the wrong note.<br /><br />Now, the thing that I found awesome is the animation. 3D grafics look 2D. A BW comic book brought to life. The details on the backgrounds gives more texture as if it had been done by hand (I'm sure it was but when the angles change you see the depth). <br /><br />The producer at the screening talked about the hard work behind the film: 7 years! The director, she said, is brilliant, but perhaps he was quite unexperienced since he only had one short film in his CV. So, many people had true faith in them. They started their own studio from scratch and ever since they faced the challenge they brought upon them.<br /><br />Don't miss it. I think you won't regret it... maybe Richard Linklater for the final look of this film is superior to his I think.\r\n0\t\"I used to be an avid viewer until I personally spent long cold hours helping build a home for the White Family, only to be sickened to see the house a year later. All of the beautiful rock landscaping has been removed, the gorgeous rock sidewalk and front fountain have been removed, all the pine trees and pecan trees in the front have been cut down, sprinkler system has been ripped out. It now looks like a disaster area. They don't even live there any more... they live \"\"in town\"\" and come out only for the weekend. It sickens me to think of all the hours that the great people of Oklahoma donated to these people and to see the result. The story that we all saw on TV wasn't completely the truth... don't believe every thing you see and hear.\"\r\n1\t\"Above-average film and acting partly spoiled by its completely predictable story line. Even the music is chosen so that the words fit the action every time. A scent of \"\"Pleasantville\"\" camp hangs around this flick. As a period piece, it's more accurate than not. Its depiction of the tragedy of company towns and lack of upward mobility is sketchy but moving. Chris Cooper turns in a first-class performance as Howard's coal-miner daddy.\"\r\n1\tWhat can I say, it's a damn good movie. See it if you still haven't. Great camera works and lighting techniques. Awesome, just awesome. Orson Welles is incredible 'The Lady From Shanghai' can certainly take the place of 'Citizen Kane'.\r\n1\t\"These type of movies about young teenagers struggling with their own sexuality were something unique and daring and daring a couple of years ago but more and more movies like this got made over the past few years, making it hard for the movies to still stand out really.<br /><br />Also this movie received little publicity, aside from the usual little film festivals that featured this little French movie, as well as the big festivals that are always fond of these type of little movies about everyday subjects that aren't being handled too often in movies. The film premiered at Cannes in 2007 and actually won some awards there as well.<br /><br />The movie doesn't really stand out from others, since it actually features little new once you've already seen some similar movies such as this one but this however really doesn't mean that \"\"Naissance des pieuvres\"\" is a bad one to watch. The movie is certainly a good watch, that handles its subject well and tells its story steadily and therefore also effectively, in a typical somewhat slow French cinematic pace.<br /><br />It's a coming of age movie, that focus on the life of mainly 3 totally different mid-teenagers. Sexuality is a big theme within the movie, which gets handled delicately and subtle. It makes the movie and its story overall a pretty realistic one, though perhaps a bit predictable, since the movie doesn't quite offer anything original enough within its genre.<br /><br />This type of French movie will probably scare off a lot of people because of the reason that they probably expect it to be very arty, with deep layers and meanings to it. \"\"Naissance des pieuvres\"\" however is a very accessible movie for everyone and you really don't have to be into Euro-teen movies to appreciate this movie. It's a sweet and somewhat sensual kind of movie, due to its subject and visual approach.<br /><br />The movie is also being made realistic by its actors, who don't had and have a lot of experience within the movie business but are authentic looking and feeling within their roles. The strong individual characters provide the movie with some nice themes and good moments.<br /><br />A good movie on its subject.<br /><br />7/10\"\r\n0\t\"Supposedly a \"\"social commentary\"\" on racism and prison conditions in the rural South of the 1970's, \"\"Nightmare\"\" is full of bad Southern stereotypes, complete with phoney accents. Not only would it be offensive to the sensibilities of most American Southerners, this tawdry piece of work comes off as just a thinly-disguised \"\"babe in prison\"\" movie--especially in its uncut original version. Nevertheless, acting is generally above average and the late Chuck Connors, in particular, does a good job of making viewers hate him--even though he looks somewhat uncomfortable in several scenes. There's also a change-of-pace role for the late Robert Reed, who appears as the lecherous warden, and Tina Louise (previously Ginger of \"\"Gilligan's Island\"\") made a rather believable sadistic prison guard. My grade: D. <br /><br />\"\r\n1\tFirst off, I dislike almost all Neil Simon movies. But there is something about this that is unique, that draws me in, and I would say it is among the most entertaining comedies I have seen. The second time I watched it, the connection was clear. When did Neil Simon meet my grandmothers? <br /><br />Ah, afraid they might sue, so he changed them into men. And how dull would it be if they were only housewives, show biz stars is more fun. Well this is a personal review, and my still living grandmother at age 97 (she even outlived Walter Matthau's magnificent impersonation of her!)would deny it -- but some of you must find resonance in these characters.<br /><br />Secondly, I have little tolerance for George Burns, but somehow he turned in one of the finest supporting performances I can recall (and my late grandmother even enjoyed it, although failing to recognize the remarkable similarities she shared with the film character).<br /><br />Very ethnic in flavor, and over the top, you will either laugh and laugh or turn this off. For me, the pleasure lingers.\r\n1\tI love playing football and I thought this movie was great because it contained a lot of football in it. This was a good Hollywood/bollywood film and I am glad it won 17 awards. Parminder Nagra and Kiera Knightley were good and so was Archie Punjabi. Jonathon Rheyes Meyers was great at playing the coach. Jazz (Parminder Nagra) loves playing football but her parents want her to learn how to cook an want her to get married. When Jazz starts playing for a football team secretly she meets Juliet (Kiera Knightlety) and Joe (Jonathon Rhyes Meyers) who is her coach. When her parents find out trouble strikes but her dad lets her play the big match on her sisters Pinky (Archie Punjabi's) wedding. At the end her parents realise how much she loves football and let her go abroad to play.\r\n0\t\"A young scientist Harry Harrison is continuing his late father's scientific research into limb regeneration with flying colours, but his interferingly dominate mother and her doctor lover want to sell off the serum. When he finds out, there is an accident involving Harry losing an arm. So, he tries out the serum and what eventuates is a genetically deranged arm that has a mind of its own.<br /><br />Oh we've seen this oh so many times before, but what lifts this very campy and quite rubbery shonky junk is the performance of movie icons Elke Sommer and Oliver Reed. Actually it's not a bad flick by Fangoria films; just there are better ones out there, which are similar in vein. \"\"Servered Ties\"\" simply lacks it own distinctive style. The oddball nature and unpleasant splatter resembled \"\"Re-animator\"\" and even a touch of slapstick stuck out like something from \"\"Evil Dead 2\"\".<br /><br />The comic story is truly whacked out with it's black humour, but it can get melodramatic and a bit in dry in the fun factor. Surprises do crop up, especially the flick's final outcome. Which is well accepted, as I thought it could have copped out with something more accessible. For a low-budget production the FX makeup can look rigid and very goofy, but there's some grotesque moments that will make you smile than actually cringe. Even a brush of sexual tension streamlines the story, thanks to Elke Sommer's sternly juicy performance as the mother. Oliver Reed is quite humorously deadpan in a wicked sense and he pulls it off extremely well. They were both immensely diverting as the couple you loved to hate. Billy Morrisette is delightful in a erratic performance as Harry. Director Damon Santostefano briskly paces the film and orchestrates some stylish scenes of gripping and bamboozling horror.<br /><br />Yeah it's juvenile and basically silly nonsense, but you got to hand it to it for some undemanding entertainment.\"\r\n0\t\"I give this marriage 3 years and thats stretching it. Adrianne Curry is fouled mouth, spoiled, controlling, loud, and her bi sexual past makes me laugh. She tells Chris he has an image to protect and must avoid strip clubs. He married her. Chris has low self esteem and from a different time warp. I have nothing against Adrianne Curry but this combination is not gonna have a happy ever after ending. Her mother said he was an old rooster and thinks this is his last attempt to recapture his youth. Here 2 very good people who are gonna end up in a nasty divorce. I don't think his old \"\" Brady Family\"\" is gonna fit into his new life. I see them being shut out. Chris said his friends were more important than his family. The supported him and was there for him.\"\r\n0\t\"This is the first Guinea Pig film from Japan and this is the sickest, in my opinion. A bunch of guys torture a girl for several days before finally killing her. And at this point, I will say that these films are NOT real! They are faked horror films which try to be as realistic as possible.<br /><br />The scenes are sickening but also unrealistic in many cases. For example, when they kick the girl in the floor, we can clearly see how they kick and stump the floor near the girl! And how stupid this looks! The sound effects are also unrealistic and don't make sense. Other scenes include animal intestines thrown on the girl, the girl exposed to loud noises for many hours, the ripping off of fingernails, worms placed on the wounds in the girl's body, the eye pierced and mutilated in horrific detail and stuff like that. Very sick and mean spirited film and has absolutely nothing valuable or cinematically significant. This first entry is the sickest and most amateurish Guinea Pig, although it is not as bloody as the next part, Flowers of Flesh and Blood, which tries to be as shocking as possible.<br /><br />Guinea Pig: Devil's Experiment is perhaps the sickest thing I've seen and the closest thing to snuff there is. This is still (of course) faked s(n/t)uff, the only difference to genuine \"\"snuff film\"\" is that no one dies or hurts for real in this film. I cannot recommend this to anyone since thi s is so s****y and repulsive. They who consider this is a great horror film understand nothing about cinema and the real meaning of it. I watched this as a curiosity (as the other parts in the series) and now I know how insignificant trash these are. They work only in shock level and that's not too valuable cinematic achievement. Devil's Experiment is perhaps the sickest film I've seen and Mermaid in a Manhole (Guinea Pig 4) is perhaps the most disgusting film I've seen. So these are pretty extreme in my book, but that's all they are.\"\r\n1\tI just watched this movie on Showtime. Quite by accident actually. If I wouldn't have only had 6 hrs of sleep for the past two days then I wouldn't have came home early from work. If I hadn't came home early from work I wouldn't have seen this movie. I wouldn't have known what I was missing, but I would've missed a lot.<br /><br />That's the way this movie is. It's almost playing on the Kevin Bacon effect. That and causality (hence my verbiage above). Ever character is intertwined in some way or another. Action, reaction, interaction, non-interaction. This movie is just wonderful. I'm going to have to find a copy to buy.\r\n0\t\"What can I say, this is a piece of brilliant film-making that should have won an Oscar. A copy should be kept safe in a secure vault for posterity. It should be required viewing for all high school students across the world. Sam Mraovich is a genius, perhaps the most genius writer/director/producer/chef/babysitter/walmart greeter to ever grace the cinema world with his art.<br /><br />Where do I begin with this one? Every millisecond of Ben and Arthur was so completely breathtaking! And Mraovich as Arthur, wow, he is so attractive I'm surprised he didn't go for Mr. Universe. I couldn't contain myself during the nude scene. I loaned this movie to my brother and he called me on the phone saying how Arthur's nude scene turned him gay. I am totally supportive of course, because of this film and it's beautifully crafted lessons in tolerance. Why just yesterday I burned down a church and I wrote \"\"for Sam and Arthur\"\" in its smoldering ashes.<br /><br />The cinematography was the best thing about this film. When that Fed-Ex plane took to the skies amid the palm trees of Vermont, I wept! Why, I never even knew they had palm trees in Vermont or that people could travel on Fed-Ex planes before this film. It opened my eyes to a new realm of possibilities. This film inspired me to enroll in Sam Mraovich's school of Screen writing, Acting, Directing, Composing, Casting, Producing, Production Design and Real Estate. I just want to say, \"\"Thank you, Mr. Mraovich. Thank you for bringing this creation into the world. We can never re-pay you enough.\"\"\"\r\n1\tHmmmm, want a little romance with your mystery? This has it. I think if the romance was ditched this would have made for a better movie. But how could the romance be ditched when the story's borrowed from something called a Harlequin Romance novel, whatever the heck that is. Had the romance been ditched, the story might have been a little too weak. The mystery here wasn't too bad, quite interesting but nothing on the level of Mission Impossible international espionage. Oh well. I thought Mel Harris was pretty good; her short skirts, i think, added some sex appeal... but this Rob Stewart guy probably could have been better cast, maybe with a more well known TV movie actor. The directing was decent and the writing could have been improved on - both could have been a little edgier, a little darker, more adventurous. One thing that was great about this was the use of real European locations. That could easily have been changed so this could have been filmed in Canada but they really were in magnificently beautiful places like Budapest. Possibly a drawback was the director and/or cinematographer's choice to frame certain shots picture postcard perfect. Not good. Had this been a more dramatic motion picture shot for the big screen, picture postcard perfect scenes really need to take a backseat and just be a nice part of the background. This was just a tv-movie, though, so they had to add some Ummmph to the picture and some of that Ummmph came from the scenery. Overall, twasn't really a bad movie. I'll tell you what, this was absolutely the best Canadian-Hungarian production I have ever seen! (and the only that i know of.) I hereby proclaim this to be a mediocre made-for-tv movie, giving it a grade of C-\r\n1\tObsession comes in many flavors, and exists for a variety of reasons; for some it may be nothing more than a compulsive disorder, but for others it may be an avenue of survival. Lack of nurturing, combined with an inability to negotiate even the simplest necessities of daily life or the basic social requirements, may compel even a genius to enthusiastically embrace that which provides a personal comfort zone. And in extreme cases, the object of that satisfaction may become a manifested obsession, driving that individual on until what began as a means of survival becomes the very impetus of his undoing, and as we discover in `The Luzhin Defence,' directed by Marleen Gorris, a high level of intelligence will not insure a satisfactory resolution to the problem, and in fact, may actually exacerbate the situation. Obsession, it seems, has no prejudice or preference; moreover, it gives no quarter.<br /><br />At an Italian resort in the 1920's, Alexander Luzhin (John Turturro) is one of many who have gathered there for a chess tournament, the winner of which will be the World Champion. Luzhin is a Master of the game, but he is vulnerable in that chess has long since ceased to be a game to him; rather, it is his obsession, that one thing discovered in childhood that saw him though his total ineptness in seemingly all areas of life, and enabled him to cope with the subtle disenfranchisements of his immediate family. So Luzhin is a genius with an Achilles heel, a flaw which perhaps only one other person knows about and understands, and furthermore realizes can be exploited for his own personal gain at this very tournament. That man is Valentinov (Stuart Wilson), Luzhin's former mentor, who after an absence of some years has suddenly reappeared and made himself known to Luzhin.<br /><br />Valentinov is an unwelcomed, disconcerting presence to Luzhin, and once again life threatens to overwhelm him. Not only is he about to face a formidable opponent in the tournament, Turati (Fabio Sartor), against whom in a previous match he emerged with a draw after fourteen hours, but he is also attempting to resolve a new element in his life-- his feelings for a young woman he's just met at the resort, Natalia (Emily Watson). And, genius though he may be, dark clouds are gathering above him that just may push Luzhin even deeper into the obsession that has been the saving grace, as well the curse, of his entire life.<br /><br />To tell Luzhin's story, Gorris effectively uses flashbacks to gradually reveal the elements of his childhood that very quickly led to his obsession with chess. And as his background is established, it affords the insights that allow the audience to more fully understand who Luzhin is and how he got to this point in his life. For the scenes of his childhood, Gorris textures them with an appropriately dark atmosphere and a subtle sense of foreboding that carries on into, and underlies, the present, more pastoral setting of the resort. The transitions through which she weaves the past together with the present are nicely handled, and with the pace Gorris sets it makes for a riveting, yet unrushed presentation that works extremely well. She also underplays the menace produced by the presence of Valentinov, concentrating on the drama rather than the suspense, which ultimately serves to heighten the overall impact of the film, making Luzhin's tragedy all the more believable and unsettling.<br /><br />The single element that makes this film so memorable, however, is the affecting performance of John Turturro. For this film to work, Luzhin must be absolutely believable; one false or feigned moment would be disastrous, as it would take the viewer out of the story immediately. It doesn't happen, however, and the film does work, because the Luzhin Turturro creates is impeccably honest and true-to-life. He captures Luzhin's genius, as well as his inadequacies, and presents his character in terms that are exceptionally telling and very real. It's a performance equal to, if not surpassing, Geoffrey Rush's portrayal of David Helfgott in `Shine.' And when you compare his work here with other characters he's created, from Sid Lidz in `Unstrung Heroes' to Pete in `O Brother Where Art Thou?' to Al Fountain in `Box of Moonlight,' you realize what an incredible range Turturro has as an actor, and what a remarkable artist he truly is.<br /><br />As Natalia, Emily Watson is excellent, as well, turning in a fairly reserved performance through which she develops and presents her character quite nicely. Though she has to be somewhat outgoing to relate to Luzhin, Watson manages to do it in an introspective way that is entirely effective. Most importantly, because of the detail she brings to her performance, it makes her accelerated relationship with Luzhin believable and lends total credibility to the story. You have but to look into Watson's eyes to know that the feelings she's conveying are real. It's a terrific bit of work from a talented and gifted actor.<br /><br />The supporting cast includes Geraldine James (Vera), Christopher Thompson (Stassard), Peter Blythe (Ilya), Orla Brady (Anna), Mark Tandy (Luzhin's Father), Kelly Hunter (Luzhin's Mother), Alexander Hunting (Young Luzhin) and Luigi Petrucci (Santucci). Well crafted and delivered, `The Luzhin Defence' is an emotionally involving film, presented with a restrained compassion that evokes a sense of sorrow and perhaps a reflection upon man's inhumanity to man. We don't need a movie, of course, to tell us that there is cruelty in the world; but we are well served by the medium of the cinema when it reminds us of something we should never forget, inasmuch as we all have the ability to effect positive change, and to make a difference in the lives of those around us. I rate this one 9/10. <br /><br /> <br /><br /> <br /><br />\r\n1\t\"Walt Disney's \"\"The Rookie\"\" is based on the story of Jim Morris, a former minor league picher who made one of the most amazing comebacks in sports history, ending an almost 10 year retirement and making his Major League debut in 1999 at the age of 35.<br /><br />The film opens with a brief synopsis of Morris' childhood, which included a series of re-locations - his father was a military man. And even when his family settled for good in football crazed Texas, Morris' passion for baseball remained strong.<br /><br />The childhood segment then jumps ahead about 23 years to the adult Morris (played by Dennis Quaid) who is now a baseball coach and chemistry teacher at Big Lake High School (in real life it was Reagan County High School in Big Lake, Texas). It is mentioned that he attempted a career as a baseball player but that it didn't work out.<br /><br />Morris's team is struggling and he lectures them about giving up on their dreams. They turn the table on him, telling him that he should try out for a Major League team. At several times when he pitches to them in practice, they express amazement at the speed with which he throws. Morris seems unconvinced but agrees to a deal with his players in which if they win district, he will try out for a Major League team.<br /><br />Big Lake does win district and, adhering to his end of the deal, Morris attends a Tampa Bay Devil Rays try out. Phenomenally, he throws 98 miles an hour - faster than he threw during his minor league career and an outstanding speed even for a Major League pitcher. After another try out with the team, Morris is offered a contract with the Devil Rays.<br /><br />This leaves him with a tough decision - stay in his comfortable life or once again pursue his Major League dream by going through the minor league grind of making little money and spending months at a time away from home. And the decision is even more agonizing than during his first minor league stint because he now has a wife and three children.<br /><br />Morris signs with the Devil Rays, begins at the AA level and moves up quickly to the AAA level, one level below Major League Baseball. But as the season winds down, the chances of him getting \"\"called up\"\" grow increasingly slim.<br /><br />For the most part, I love this movie. There are lots of great performances and likable characters and it's easy to find yourself really pulling for Morris. Also, the movie does a great job portraying professional baseball at both the major and minor league levels. And most of all, it teaches the timeless message of holding tight to your dreams even when they seem distant and almost impossible to achieve.<br /><br />Still, the movie has some flaws. While generally accurate, it exaggerates and even fabricates a few things. Check out http://espn.go.com/page2/s/closer/020410.html for some examples. Also, except for one scene in which he prays with his players, the movie completely ignores Morris' Christian faith. But considering Disney's left wing zeal, that's not surprising.<br /><br />Presumably, a lot of the exaggerations/fabrications were done to make the story more dramatic. Yet the 20 minute documentary on Morris that is included on the DVD features some information that makes his story more dramatic but is excluded from the movie.<br /><br />For example, from birth until his family settled in Texas for good when he was 12, Morris re-located 14 times. And his initial minor league career ended after four surgeries through which he lost half of the muscle in his left (pitching) shoulder, thus making his throwing 98 mph even more inexplicable.<br /><br />To fully appreciate and understand the story of Jim Morris, it's good to not only watch \"\"The Rookie\"\" but to watch the DVD's documentary, check out the aforementioned link to the movie's inaccuracies and probably also to read Morris' biography, also titled \"\"The Rookie.\"\" I haven't read the book but I hope to one of these days.<br /><br />But overall, \"\"The Rookie\"\" is a very good portrayal of a miraculous story and is a powerful testament to the power of dreams and the triumph of the common man. 8/10\"\r\n0\tIt is difficult to find any positives in this movie. Seems as though the producer needed to make a buck without much effort & hence we are treated to a full showing of Galaxy which is the lamest excuse for a movie in history. The police girls looked extremely sexy in their little uniforms. More action shots of the two cops & a lot less of Galaxy would have been the way to go. Of course that would add to the budget so they decided to fill the space with that wretched rerun. Ms Albright does excellent looking sexy & her acting is first rate. Ms Stabs whom I had heard of but not seen on screen before also looked very desirable but seems to lack basic acting talent. Apart from Ms Albright this is real garbage.\r\n0\tWhy watch this? There is only one reason and that is for the greatness of John Saxon. I love his acting. My most favorite appearances by him are in Nightmare On Elm Street 1,3, and 7 as Nancy's father a cop, Black Christmas as a cop, and From Dusk Till Dawn again as a cop. When I was rummaging through my local mall video outlet I came across the film Zombie Death House and I quickly tossed it back but before moving on I noticed that John Saxon was not only an actor in this film but for the first time that I have ever heard of a director. This intrigued me (Also the cheap $9.00 price tag) and I and I had to have it. Upon coming home I realized that this film did not live up to Saxon's other work even his acting, which may have been muddled by the added pressures of directing. But it was not just him the other actors sucked too. It seemed as if they had all been pulled out of a recent porno shoot and told now guys you really have to act. The film even looks of 80's porn quality. I cannot in good faith recommend this film to casual viewers, but if you are an obsessed fan of the 80's who missed out on the culture that came from that era by being born to late, or a fan of crap films than this one is for. Also if you dig John Saxon as I do.\r\n1\tIndeed: drug use, warehouse shoot-'em-ups, 'Matrix'-esque bullet dodging, a futuristic city with a mix of Asian races, and a lonely vampire --all in the same movie-- seems like a story that could only be envisioned by a Japanese pop/rock star. And that is exactly what 'Moon Child' is, and more. While all these elements combined may sound like the perfect subject for a campy B-movie of the week, 'Moon Child' pulls it off with but a few expected bumps and hitches along the way.<br /><br />The film has a gritty, definitely independent feel to it, jumping from one scene to the next not in smooth transition, but rather sporadic leaps and bounds, giving glimpses into the characters' lives and barely scraping at a true plot. But the film makes no excuses, instead turning the story into one of friendship, love, trust, and betrayal all sugar-coated in the aforementioned elements of a futuristic society, warring gangsters, and vampires.<br /><br />HYDE as the somber vampire 'Kei' is excellent, giving depth to the character and balancing-out the overly-zealous acting of Gackt as 'Sho,' an orphan who befriends Kei. Lee-Hom Wang also shines as the vengeful 'Son' who becomes friends with a grown-up Sho. The story revolves around these characters and their extended friends and family through different periods in their lives, and how simple friendship can so easily be turned into grief and betrayal.<br /><br />While the action at times is all-too unrealistic and special effects appear just to show-off, one thing the film never does is presume to be about the immensely popular Asian singers it features. The superstars as actors have their flaws, and so do their characters. The movie rarely gets boring, and ends where it should, after jumping about quite a bit. 'Moon Child' is rather enjoyable, humorous at times, and even very touching: it is definitely worth your time!\r\n0\tThe 1998 Michael Keaton kiddie comedy of the same title was roundly condemned for it's, um, shoddy special effects, but compared to what Screaming Mad George cooked up for this horror comedy they're positively mind-boggling. The killer snowman seems to be made out of styrofoam and his arms look like oversized oven mitts. Which they probably were. The cast lays it on thick in this parody of dozens of other (much worse) movies and Paul Keith as the town doctor is particularly memorable in a small but hilarious role.\r\n0\tI figured that it's about time I let this one out. Pokémon fans are suffering in America these days. Why? Because we rely on Kids WB and 4Kids Entertainment to provide us with our beloved series and movies. As far as the series goes, they do a pretty good job in bringing the fun and magic of the Japanese versions to television. So what is their problem when it comes to the movies? Honestly now, I have seen all three Pokémon movies in Japanese and I will definitely be seeing the fourth one. They are excellent movies. They are all enjoyable and fun to watch. And, after seeing Pokémon 2000 in theaters, I can't help but wonder how these American producers read the Japanese scripts. The way it appears, it seems that they read and see something that says `Insert empty moral here' in big bold faced letters. It definitely appears that way as they used the same wonderful dubbing methods they used on MSB (extreme sarcasm there) and created this crap.<br /><br />*possible spoilers from here on*<br /><br />Well, I guess I should first talk about Pikachu's Rescue Adventure. My first gripe with this came with no narration. I guess they got enough bad comments on the Pokédex narration that plagued Pikachu's Vacation, and, instead of going with a caring, gentle woman's voice as appeared in Pikachu no Natsu Yasumi and Pikachu Tankentai, they just cut the narration all together. This wouldn't have been a problem, except for one thing. Did anyone really understand why the Exeggcute didn't let Togepi go until the end? Possibly the fans, but I'm sure not the parents. Then, there's the theme song. I couldn't help but roll my eyes at this one. The Japanese theme song was `Tankentai wo Tsukurou' and was sung by Japanese children. It was fun and enjoyable. This one: nauseating. Now, one of my favorite parts of the short was the dancing Kireihana. Nice music, fun to watch. That's changed with the Bellossom. The music sucked for one, but on top of that, they had all the Pokémon talk during the music, which turned out to be jumpy, annoying, and just unnecessary. Oh, and then there's the Poliwhirl who thinks he's a Poliwrath. You'd think that guys that work with these characters constantly would at least learn what they are. Basically, not much could save this little ill fated dub, which is very unfortunate considering its potential. But, I haven't touched on the worst of it yet.<br /><br />You'd think that the warning signs would've been apparent to me when I received my issue of Nintendo Power. For some unfathomable reason, I had been placing some faith in 4Kids and the WB. My thoughts were `well, they screwed up on the first movie, but the second is different as far as the theme goes, so they should do well.' That in mind, I just didn't pay attention to the warning signs I encountered in the theaters when the trailers said, `You will believe that one person can make all the difference.' With the way they said that at every turn, I was hoping that this would not turn into a moral fest like MSB did at the end of the English version. Then comes Nintendo Power, in which I see all my fears realized in the words `the main feature 'The Power of One.' At that point, I became a bit more uneasy. `The Power of One?!' Not a good sign. However, I still kept some of my false faith. Big mistake.<br /><br />Sitting in the theater, I was literally getting stomach cramps watching another movie which I loved in Japanese being turned into complete and utter junk. I hear comments that say it was better because the moral was more subtle. I can see a point in that since they didn't pander this thing, repeating it over and over like in MSB. However, it did more damage than anything else in this movie. First of all, the legend that was read throughout was changed a bit to read `the world turns to Ash.' Ah hah. So, Ash is the chosen one? Whatever. In the Japanese version, the inhabitants of Arshia needed a Pokémon trainer to carry out their traditional ceremony. This time, he's the chosen one. A greater way that this did damage was to Lugia. Lugia was one of the coolest characters in a Pokémon movie.... when the movie was ABOUT Lugia. In this one, Lugia is forced to take a back seat to Ash. In the scene where they're flying back to the main island, Lugia and Ash are discussing the conditions of Lugia's existence, not that Ash is going to make all the difference. Overall in this category, Ash wasn't really the `one person' that would make the difference, since he was helped by many along the way.<br /><br />A lot of the other stuff is kind of nit picking. Furura's flute song wasn't nearly as sweet and enjoyable as the Japanese one. Jirarudan's speech to them saying his collection `started with a Mew card?' Ugh. Even worse, Misty's outrage originally concerned the way Moltres and Zapdos were being held. `Why didn't you put them in Pokéballs when you caught them? This is like caging them to be displayed.' Much different from whining about him thinking Pokémon are things to be collected like stamps. If there were any real redeeming values in this, they came from Team Rocket. Some pretty funny lines. Not really to make me laugh out loud, but more to make me giggle and slightly ease the pains in my stomach. Well, that was officially the last American Pokémon movie I'm going to see. I've imported the third one and find it very enjoyable. I would rather not see another Japanese movie be ruined in the same fashion as the first two. I'll be importing the fourth one as well. Forget you, Kids WB and 4Kids. You have forsaken me for the last time.\r\n0\t\"When I went and saw this movie, I had great expectations. But I had so wrong. This movie was exactly as every other horror movies. It's a virus, zombies etc. Exactly as Resident Evil and many, many other movies. But the difference with this, and other movies, is that the story is very week. It's bad actors and boring music. The photo is OK but the rest is total crap. Don't see this \"\"horror\"\" movie, go and see the Ring 2 or any other movie who's much more of a story. I hope they will stop making horror movies who has a virus and the virus spread and make people to zombies. We have seen enough of that. The only good thing in the movie is when they are standing at a roof and shoot famous, infected celebrities.\"\r\n0\t\"How could I best express my feelings about this movie: hideous? a headache? lack of coherent writing? plain stupidity? Try all of the above for this travesty. And that just for the direction.<br /><br />Story? Well I guess there is a story. Two dumb blondes look for a job after they crash a plane into a golf course. They are mistaken for a 'world renounced assassin' (sarcasm) and are 'hired' by two 'mobsters'. One thinks \"\"taking him out\"\" means a date, and the other gets the minor actor she dreams of. And of course, the turtle reserve for the farting turtle, that they build with the casino winnings.<br /><br />Sounds likes all this could be funny? Guess again. They try to make it funny, but its not. Filming sequences aren't well done. I've seen better filming in Hong Kong movies. Visuals are average for a late 80s film. But the problem is that its a 2007 movie.<br /><br />Not worth my time to ever watch this again. It still doesn't beat Danny Glover's \"\"Out\"\" movie from the early 80s as the worst movie of all time, but then again that film is in a class of its own. \"\"F\"\"\"\r\n1\t\"\"\"Pecker\"\" proves that Waters has no intention of changing his tacky ways in his old age. A lot of things have changed since Waters started making films in the 1960s, but 40 years later he is still doing what he wants to do. Over the years, the budget of Waters' films has increased considerably. This is one of his most recent productions, but I was amazed to see that Waters still has that \"\"trailer-park\"\" touch. Edward Furlong plays Pecker, a kid who is obsessed with photography. He lives a quite life in Baltimore, MD, with his friends and family. But Pecker attracts the attention of a New York art agent (the always watchable Lili Taylor), and his life changes for the worst. Once again, Waters makes fun of art, fame and heterosexuality. It is not among his best films, but there are some big belly laughs here (\"\"Memama\"\" has the best lines in the film!). It is consistently clever and funny, and has that very \"\"queer\"\" sensibility that I have come to love in Warters' movies.\"\r\n1\tTrapped: buried alive brings us to a resort that has just opened, and is soon to close.<br /><br />We start with a guy in gear blowing up drifts, to avoid the possibility of avalanches. somehow, that doesn't make sense. anyways, he's about to blow away one particularly big one, when he notices the resort is open. despite his best efforts, higher authority tells him his day is over.<br /><br />soon, as everyone expects, an avalanche hits.<br /><br />Look, i'm not gonna reveal any more, all i can say is this was a B-movie designed for the family channel (which i just saw it on, and the fact it had no commercials proves it's a B-movie) anyways, it's a pretty decent film, but it's partially unreal.<br /><br />firsthand, when people are buried by ice and snow, they're buried. not just traced by powder. or, what about a CD for a screwdriver? it's not possible. and finally, what i can't stress enough, is that an explosion cannot stop a avalanche, guaranteed.<br /><br />furthermore, it's worth a rental or a TV viewing, but not owning. 7/10.<br /><br />The movie is rated PG, but maybe it should have received something a little more strong. a boy nearly loses his foot in an elevator, but his leg is cut around the ankle, a guy is toasted by electricity and diesel, and in the weight room, dead people are laying around.<br /><br />enjoy.\r\n0\tThe world may have ended. Unfortunately this film survived as yet another testament to Canada's inability to make movies that go beyond the execrable. Maybe it's because all our really good people (Norman Jewison, Martin Short et al) go to Hollywood.) In fact it's too bad Short wasn't cast in this apallingly pretentious and banal film. He might have given it some credibility. The Canadian government should realize --- and this movie is a magnificent example --- that shovelling money into the trough does not result in good cinema. If the people lapping up these public funds had had to compete, they might have been forced to come up with something worthwhile. As it is they have produced yet another snickering embarassment.\r\n1\tThe French Naudet brothers did something nobody else did, they had a video camera the day that this tragedy happened. They were in Building #2, when you could see papers drifting down, people hitting the ground from jumping from such a height.<br /><br />I mean it goes as far as when both buildings collapsed they went running, their camera was still running, when the white dust covered them, they found a shop doorway and got inside, but all this footage is real and I think they did a fantastic job of capturing it for us.<br /><br />Ten stars goes to the Naudet brothers that filmed this extraordinary film that I watch every 9/11 so I'll never forget what this country went through. I believe if I remember right, it shows the first death of the priest of the firefighters, while he was being carried to the church and his honorable funeral.\r\n1\tThis is not a bad film. It is not wildly funny, but it is interesting and<br /><br />entertaining. It has a few funny moments. Cher gives a good<br /><br />performance in a role that is very opposite her real-life self. Her<br /><br />performance alone is worth the watch. If this movie had come out<br /><br />today it would not have been nominated, but by '80s standards it<br /><br />was excellent.\r\n1\tDominion tank police is an exercise in contradictive film making. The storyline across the 4 parts blends mindless action, slap-stick humor, touching humanity and thought provoking philosophical questions. It's hard to believe that there was only one director, as the style changes from episode to episode. A must-see movie for anyone who likes anime.\r\n0\t\"William S. Hart (as Jim Treen), the most eligible bachelor in Canyon City, is finally getting hitched, to pretty blonde waitress Leona Hutton (as Molly Stewart). His fiancée doesn't know it, but Mr. Hart is secretly the western town's \"\"Most Wanted\"\" bandit. However, Hart is planning to go straight, due to his marriage plans. Unfortunately, Ms. Hutton discovers Hart's secret stash, whilst cleaning up his untidy cabin; so, she calls off the wedding. Next, Hutton succumbs to the charms of mining swindler Frank Borzage (as W. Sloane Carey).<br /><br />Serviceable entertainment from superstar Hart; he was ranked no less than #1 at the box office, by Quigley Publications, for the years 1915 and 1916 (ahead of Mary Pickford). The principles perform capably. Later on, Frank Borzage was quite a director; and Leona Hutton, a suicide... <br /><br />**** A Knight of the Trails (8/20/15) William S. Hart ~ William S. Hart, Leona Hutton, Frank Borzage\"\r\n1\tThough I'm not the biggest fan of wirework based martial arts films, when a film goes straight for fantasy rather than fighting I get a lot more fun out of it and this film is one of the best in terms of fantastical plotting and crazy flying shenanigans. Ching Siu Tung has crafted here an enchanting treat with fine performance and much ethereal beauty. The great, tragic Leslie Cheung plays a tax collector hero who stays the night in a haunted temple and gets involved with a stunning fox spirit and a wacky Taoist. Cheungs performance is filled with naive but dignified charm and Wu Ma is pleasingly off the wall as the Taoist monk, who shows off some swordplay and even gets a musical number. Perhaps best off all is Joey Wang as the fox spirit, truly a delight to behold with every movement and gesture entrancingly seductive. The film takes in elements of fantasy, horror, comedy and romance, all stirred together into a constantly entertaining package. Ching Siu Tung, directing and handling the choreography gives some neat wirework thrills, and fills the film with mists, shadows and eerily enthralling benighted forest colours, giving every forest scene a wonderfully bewitching atmosphere. Also notable are the elaborate hair stylings and gorgeous flowing garments of the female characters, with, if I'm not mistaken, Joey Wang sporting hair done up like fox ears at times, a marvellous touch. Though the film features relatively little action and some perhaps ill advised cheesy pop songs at times, this is a beautiful piece of entertainment, with swell characters and plotting, even the odd neat character arc, a near constant supply of visual treats and copious dreamy atmosphere. An ethereal treasure, highly recommended.\r\n1\tI suppose I always felt that Hotel du Nord was studio-bound, the movement of people cars and camera were just too effortlessly smooth and stagey to have been filmed on location. But no problem - it's still a much underrated lovely composition from Marcel Carne. The plot seems a bit choppy at times, as if they were making it up as they went along, but because it is unpredictable holds the attention to the bitter end. The money shots when the 2 lovers are alone in their room are saddled with some rather stilted dialogue, but it's all so lovely to fall into any inanity can be accepted. Are these 2 young people symbols of a cancerous hopelessness in pre-War France or simply idiots? Suicide pacts are fairly common; if the suicidees are young and healthy with their lives before them untrammelled would you think anything other than that they were just misguided fools?<br /><br />Arletty played the part of prostitute well - she kept that zipper on her dress busy throughout anyway! I've only seen a few films with Jouvet - he is the most impressive invention as pimp in HDN - my trouble is shallow: every time I see his face I think of Sonnie Hale in Evergreen!<br /><br />A remarkably atmospheric, well acted and photographed film with so much happening it needs a few viewings to get it all in place. Annabella and Aumont made an exceptionally beautiful couple; Francois (Heurtebise) Perier in his 2nd film had a small amusing part as a gay man. All in all: wonderful.\r\n1\tPushing Daisies was a wonderful show. Much like Dead Like Me and Wonderfalls, you can tell was created by Bryan Fuller. I can understand how people who don't have much of a love for theater, cinema, musicals and the like would be annoyed. This is not a typical television program and the fantastic is too much for some. These people seem to need some a little more linear and muted tone to keep them happy. This program explodes with color, winks at old movie scenes, hums with incredible music and talented performances. There is nothing random about the choices that are made from costume to leitmotif. The story takes many twists and turns but all very accessible because the conversations are about love, honesty, courage, loss and so many other things we face every day. The only unfortunate aspect was the ending of the show and that was rushed because Pushing Daisies was canceled. Don't approach this as a typical TV show. Think of it as an evening at the theater, then sit back and enjoy!\r\n1\tThis is a film that on the surface would seem to be all about J.Edgar Hoover giving himself a a big pat on the back for fighting Klansmen,going after Indian killers, hunting the famous gangsters of the 1930's, fighting Nazi's in the US and South America during world war 2 and Commies in New York during the early 1950's. Of course in 1959 we did not know about Mr. Hoover's obsession for keeping secret files on honest Americans, bugging people like the Rev. Martin Luther King, Jr, but worst of all,his secret love affair with his deputy director,Clyde Tolson( If you want to know more about that subject, I suggest seeing the film Citizen Cohn). Hoover aside, This story of a life in the FBI as told by Jimmy Stewart makes for a decent, but dated film. Vera Miles as his devoted wife is also good. But Jimmy is the movie. As much as Hoover controlled production and always made sure the FBI was seen without fault, Jimmy Stewart gave the film a human side,quite an achievement considering Hoover was always looking over his shoulder. The background score is also pleasant. I have read recent online articles suggesting that this is a forgotten film. Jimmy Stewart was one of the greatest film stars of all time and none of his films should be forgotten. TCM was the last network to show it a long time ago and I hope they show it again.\r\n1\tI saw this movie in my childhood. And after 10 years I did not remember anything about this movie but I found out it I also don't know how I was able to find out this movie. Its my life. My all times favorite movie. My words will fall short of true meaning what I have inside for this movie. I follow this movie. It's a brilliant mix of fantasy, comedy, romance, horror, erotic, scary and martial arts. The story about the power of love is pretty touching and warm. It's a masterpiece of Hong Kong Cinema.<br /><br />Sinnui Yauman, is without a doubt one of the best ghost stories ever made into film. Written by Songling Pu and directed by Siu-Tung Ching, A Chinese Ghost Story has it all. Ling Choi Sin played by Leslie Cheung is a young man down on his luck who goes in search of a monastery for lodging, deep in the woods, a place the villagers seem very afraid to go near. The trek alone is perilous with wolves, and a crazy taoist monk lives at the temple.<br /><br />Ling Choi Sin meets Tsing, a beautiful and mysterious young girl who also lives nearby in a deserted temple. She is forced to seduce men for her evil mistress, but when she meets innocent Ling Choi Sin they fall in love.<br /><br />Ling Choi Sin is sort of a bumbling fool but his heart is in the right place, while Tsing tries to protect him from the other spirits in the woods, he tries to protect her from the monk who is trying to kill the spirits in the woods. There's great martial arts, even a monk that breaks out into drunken song as he performs ritual taoist sword forms. The movie does a lot of traditional old martial art films acrobatics, with magic and flying through the air, leaping from tree to tree, with elegant long gowns and scarves, but the movie genuinely flows, and everything is effective.<br /><br />Tsing is to be married to a evil tree monster, which cant be good, and we feel her plight in her home where we meet her sisters and stepmother who is truly not nice.<br /><br />In the end they must fight a tree witch with a deadly tongue, and go with Yin deep into the heart of hell to fight a thousand year old evil to save their souls, and bring Ling's ashes back to her home for a proper burial so she may have a chance at reincarnation.<br /><br />A beautiful story that truly pays attention to details. One is touched in many ways by this movie, you'll laugh, cry, and just have fun with the great martial arts and cinematography. And though at the end, Yin and Ling Choi Sin ride off into the morning sun under a enchanting rainbow, we never know if Tsing was afforded a reincarnation, but we do know her.\r\n1\t\"This is the Columbo that got directed by Steven Spielberg at an early point in his career. It's nothing sensational but some small hint of great things to come for Spielberg can be seen in this movie. The movie is basically in the same style as most of Spierlberg's '70's movies and TV works. So that means that some characters tend to show some quirkiness's and no I'm not just talking about the Columbo character alone. The kind of character quirkiness which perhaps can be best seen in the 1975 Spielberg movie \"\"Jaws\"\". But other than some small hints of typical early Spielberg elements, you can't call this movie the work of- and fine example of a rising director star. Not that its bad, of course it isn't but as I said earlier, it also isn't anything too sensational.<br /><br />This movie began really well and very promising but after it's fine opening, in which as always the murder occurred, the movie became sort of more slow and also dull to watch. Dull because it's mostly a Columbo movie by the book that doesn't have real memorable moments in it, not dull because it's a boring movie to watch.<br /><br />The murder itself was quite ingenious and the concept of having a crime story writer murdering his writing partner showed some great and interesting potential. The story however didn't really explored all of its possibilities. At least that's the feeling this movie left me with.<br /><br />The movie was still a good one to watch nevertheless thanks to the character of Jack Cassidy, who thinks he's smarter then Columbo, due to his mystery/crime writing experience and tries to give him all kinds of possible hints, leading away from himself. But of course Columbo knows better and he is his number one suspect from the first moment on but he as usual plays the game along.<br /><br />The movie does have a good overall style and uses some fine camera position and editing. Funny to see that also most of this was all mostly consistent with Spielberg's later work, especially some of the camera-angles.<br /><br />A fine and perfectly watchable Columbo movie but don't let the name of Spielberg attached to it rise your expectations for it too highly.<br /><br />7/10\"\r\n1\t\"As a huge baseball fan, my scrutiny of this film is how realistic it appears. Dennis Quaid had all of the right moves and stances of a major league pitcher. It is a fantastic true story told with just a little too much \"\"Disney\"\" for my taste.\"\r\n1\tMoon Child, starring Japanese rockers Hyde and Gackt, was a better movie then I expected. In fact, I was very impressed and it immediately became one of my favorite movies.<br /><br />Set in Mallepa, the story follows a group of street orphans, Sho, Sho's brother Shinji, and Toshi who rob and murder to make a living. On one of robberies, Sho encounters Hyde's Kei vampire burning in the sunlight. Through the coarse of events Kei's true nature is shown, yet no one shuns him away.<br /><br />The time passes and implies that the immortal, never-changing Kei has raised Sho, and the two have a an extremely close bond. Sho and Kei then encounter Son in an outrageous gun fight, and they become quick friends. Both Kei and Hyde fall in love with Son's sister, Yi-Che.<br /><br />Time skips ahead again and shows a grown Sho, this time void of Kei. It also explains that Sho and Son have become enemies.<br /><br />Through tragedy after tragedy this movie dives into the reality of life and all it's hardships, focusing on friendship and love. It is a truly touching movie that is sad yet beautiful at the same time.<br /><br />As for the acting, I think Gackt did a magnificent job. Hyde did an amazing job for a first timer.<br /><br />The shots were beautiful, but the movie did have it's rare and short gruesome shots.<br /><br />All in all, I must say this movie is amazing, moving, and I highly recommend it.\r\n0\tAlthough this film was made before Dogme emerged as the predominant method of filmmaking, and before digital triumphed over -- strike that. You get the point. This 1991 masterpiece clearly anticipated those developments. Corin Nemec is just outstanding as the ne'er do well author and narrator. The pace is slow, but elegantly so, because the cinematography is so beautiful. Record it the next time its on T.V., because I guarantee you'll never see a better nostalgia rip-off made-for- T.V. movie. Direct-to-video never felt so good!\r\n1\t\"I was not really a big fan of Star Trek until past 2-3 years. Thanks to the advent of Netflix and post 2000 video technology distribution, I am able to embark into the past of all the great Star Trek episodes. For those that don't really watch every single episode and know them by heart, through TNG, DS9, Voyager, etc., general popular consensus will say -- \"\"I like The Next Generation\"\" the best. That's because Captain Picard and his crew were fresh when they first appeared after decades of Star Trek starvation. But to be quiet honest, I appreciate the creativity of Voyager's episodes more than TNG. Voyager's episodes also progresses through time unlike TNG. Granted Data from TNG is great but it eventually gets old but Voyager's doctor -- now that's creativity! Instead of making artificial intelligence awkward and jerky, give him the freedom to express beyond anything you imagined. Not only is Picardo such a great actor but the premise setting for his expansive, self growth, as a doctor, self realization now that is science fiction at its best! Endgame portray him as a husband married to an \"\"organic\"\", inventing neuro-implant transceiver for human-machine interface, and even -- in the episode before Endgame, to disobey Captain's order and make \"\"human\"\" mistakes. Unlike DS9 which are blessed with 2 beautiful women right from 1st episode, Voyager has to survive 3 seasons without Jeri Ryan and I believe it is Picardo that carried them with his personality. Of course the rest of the Voyager's cast chemistry just flows effortless, Harry Kim and Tom Paris -- very natural. I love Tuvoc occasional humor, despite being a Vulcan. Finally, I'm so glad they got rid of that original female captain -- oh, if you get to watch the rare footage -- thank God for Kate! She has developed through the 7 years into an extremely confident, believable, and respectable female captain. What a GREAT job! Thank you Star Trek for making Voyager, I enjoy every episode, the creative exploration of possibilities, of morals, and of our Cosmic expanse.\"\r\n0\tIt, at all, you have seen when harry met sally, then avoid this one. It will not only make you bang your head on the table as why can't bollywood even make a good remake; but also annoy you with the so called funny moments in it. The charm of the movie is missing. Ranee looks terrible. Saif tries to act like he is one hell of an actor. The plots that have been picked up from the original, don't look effective either. The part where both of them bring their friends along and they hit a note, it just doesn't look appealing. What can be more disastrous? you wanna waste some money, this is what you can get. Otherwise, put some more bucks, and watch the original. Its too good to miss..\r\n1\t\"After too many years of waiting, Anne Rivers Siddons' noted 1979 book \"\"The House Next Door\"\" has finally been filmed. The result veers a bit from the novel which, especially in the first story of the trilogy is understandable if unsatisfying as it's a TV film, the whole of which is absorbing and actually very good, just not as great as the book, one of Stephen King's favorites and one of mine as well.<br /><br />With more running time and fewer constraints as a theatrical release, all the richness inherent in the original three-part story of the ominous ultramodern house could have been explored and nurtured, especially the climactic revelation near the very end.<br /><br />Still, the whole cast does well in this thoughtful tale of mindless malevolence. There are a few unnecessary cheap shocks but the growing atmosphere of dread is well developed. Actually, one of the most disturbing scenes involves an abstract painting of the house by its next-door amateur-artist neighbor who is trying to visualize its corruption on canvas.<br /><br />Be sure to read the great novel.\"\r\n0\t\"First off, let me start with a quote a friend of mine said while watching this movie: \"\"This entire movie had to have been a dare. You know, like, 'DUDE, I BET YOU COULDN'T MAKE THE WORST MOVIE EVER'\"\". With this movie, they've made a good effort at achieving that title. The effects are, of course, poor. The plot/dialogue is like a collage of of bits stolen from every B horror movie ever made. The actors, I'm assuming, are supposed to be in college. Yet parts of it (especially at the beginning) make it seem like they're supposed to be in high or middle school. It makes no sense. The Scarecrow going around killing people isn't the least bit enjoyable. (SPOILER: At the end, when they chant Lester's name and he reappears, the black guy and Scarecrow are both laughing, probably out of relief they were on their last scene, and at the cheesy dialogue.)\"\r\n0\tFirst lesson that some film makers (particularly those inspired by Hollywood) need to know - just 'style' does not sell. I guess Tashan when translated will mean style. Second, if you are hell bent on selling style, that does not spare you from having a decent story.<br /><br />Tashan has some story which could have sufficed with some better director. But it is not slick. For example, all three - Saif, Kareena and Akshay - are narrators at different points in the story. But this setup is not utilized to properly. There could have been a better mix and match of their narrations. Actions sequences are from the seventies.<br /><br />Cheoreography of the film is awful. I think Vaibhavi Merchant just sleep walked through this film. Vishal-Shekhar have put up a good score but it does not belong to this film. Why is there a sufi song (Dil Haara) in Tashan? Why is the cool Hinglish song (Dil Dance Maare) not on Anil Kapoor when he is the one who is English crazy? <br /><br />Akshay Kumar is the saving grace of the film. But he is in his stereotyped self. You won't mind missing this film.\r\n0\tThis is another one of those movies that could have been great. The basic premise is good - immortal cat people who kill to live, etc. - sort of a variation on the vampire concept.<br /><br />The thing that makes it all fall apart is the total recklessness of the main characters. Even sociopaths know that you need to keep a low profile if you want to survive - look how long it took to catch the Unibomber, and that was because a family member figured it out.<br /><br />By contrast, the kid (and to a lesser extent, the mom) behave as though they're untouchable. The kid kills without a thought for not leaving evidence or a trail or a living witness. How these people managed to stay alive and undiscovered for a month is unbelievable, let alone decades or centuries.<br /><br />It's really a shame - this could have been so much more if it had been written plausibly, i.e., giving the main characters the level of common sense they would have needed to get by for so long.<br /><br />Other than that, not a bad showing. I loved the bit at the end where every cat in town converges on the house - every time I put out food on the porch and see our cats suddenly rush in from wherever they were before, I think of that scene.\r\n1\t\"It seems more than passing strange that such utter dreck as \"\"Dukes of Hazzard\"\" and \"\"The Hills Have Eyes\"\" (the new version) can find DVD distributors while older - and far superior works such as this film - are nowhere to be found. With all the on-going debate about the morality (or lack thereof) of warfare, and interest in espionage (consider the multiple Jack Ryan, Bourne, XXX, and \"\"Mission: Impossible\"\" productions, this would seem to be an obvious choice for release on DVD. True, it LOOKS like a 1968 motion picture because it IS a 1968 motion picture. But style consideration aside, this is still a production that actually has something valuable to say, and has plenty of plots twists to keep an audience entertained. If nothing else, will SOMEBODY please consider getting the soundtrack onto some kind of CD, whether it be a compilation with other Morricone music or as a stand-alone. I don't know if industry people bother to read what we fans have to say about their products, but if you are reading this and other comments, please take us seriously. We are paying for your lavish homes with our hard-earned dollars spent on tickets, DVDs and CDs - give us what we want! All that said, if you are reading this and have not seen this film, lobby for it's release so you may see what those of us who have seen it are talking about. You will not be disappointed.\"\r\n1\tAlthough John Woo's hard Boiled is my number 1 favorite movie. But i have to say police story is my number 2 favorite movie. I say this because the stunts, the fights and the action my favorite part of the movie is when Jackie Chan jumps off the rail at the top of the esculator at the mall grabs on to a pole surrounded with Chrismas lights and slid down the pole fell through a skylight and finally land on his back on the hard marble floor. OUCH! Buy it at amazon.com for 14:98. (Or something in 14 dollars.)VHS new line home video. any questions or comments please feel free to reply. (i'm only 14 but i know where you can find any movie ever made.) if you looking everywhere for a movie and can't find it please reply to me. Thank you and good night!\r\n0\tEmma is my favourite Jane Austen novel - Emma is well-meaning despite her flaws, so readers can forgive and love her, and the relationship she has with Mr Knightley, which is warm, familiar, respectful but playful, generating that warm, fuzzy, romantic excitement. Mr Knightley is the perfect man, and Emma is as close as you could get in those times to an independent, clever, confident woman - remember, she is only 21, and was sure to have matured and grown out of her flaws. Who doesn't want to be Emma? Who doesn't want to be told off by Mr Knightley? This version of Emma gives you no sense of the things that I love about Emma. I couldn't even finish watching it, I just found it so awful. I couldn't see that warm, generous side of Emma, which drives the reader to love her: The patience and warmth she shows to her father; the closeness between her and Mrs Weston, which demonstrates her willingness to put her friend's happiness above her own (as she sacrifices the only equal companion in her household by forwarding Miss Taylors marriage). Mr Woodhouse's character in this adaptation just appears bizarre, rather than just quaint, elderly and a bit trying.<br /><br />This adaptation most importantly fails bring to life the relationship between Mr Knightley and Emma. Their relationship is built on mutual respect and affection: Mr Knightley is indulgent of Emma's minor faults trusting that her intelligence and genuine care for others will never allow her to go terribly astray; and Emma looks up to him, though playfully hiding this and continuing to use her own judgement. The dressing down he gives her right at the beginning of the show completely overstates the argument between them, and ruins all possibility of portraying the nature of their relationship as I've described above. Mr Knightley is also insufficiently attractive to bring to life the sexual tension between the leads (or to inspire any admiration from the female viewers).<br /><br />Really horrible. I can't understand why anyone who truly like the novel Emma could like it, unless it miraculously redeems itself after the point I switched it off.\r\n0\t\"Plot Synopsis: Hong Kong, 1966. Paul Wagner, the man who built the Victoria Tunnel, is murdered along with his wife by his associates. His twin sons, Chad & Alex, are split apart. 25 years later, Chad, a karate instructor in Los Angeles, & Alex, a smuggler living in Hong Kong, join forces to avenge their parents' murder & rightfully claim the tunnel.<br /><br />This is the second time that Jean-Claude Van Damme & Sheldon Lettich have worked together, having previously done \"\"Lionheart\"\". This is also the first of three films to feature Van Damme playing dual roles (\"\"Maximum Risk\"\" & \"\"Replicant\"\" are the others). The plot is a very simplistic take on the revenge story, the film's sole redeeming feature being Van Damme's performance as two very different people  the prissy rich kid & the rough-&-tumble, cigar chomping tough guy. As it goes, Van Damme doesn't do a very good job in either role, although his take on Alex is mildly amusing. It is puzzling as to have the brothers mistaken for each other, with them wearing different clothes & having different hairstyles. Bolo Yeung makes a very worthy henchman for the baddies.\"\r\n0\tKnowing Enki Bilal's comics for quite some time, I had to see this movie. I have thought this would be a good way for the artist as Bilal to spread his art and ideas to wider audience. I have also thought this would be a good movie to recommend, and I thought I will enjoy watching it... I was wrong! The movie was a true torture to watch. The idea has potential... but, movie leaves way too much to be desired, and basically everyone who sees this movie is left with impression that he could do it better. I will not make suggestion whether you should see this movie or not. Chances are if you're reading these pages that you have already seen it, or that you're gonna see it - but be prepared for very bad 102 minutes.\r\n1\tMy fondness for Chris Rock varies with his movies,I hated him after Lethal Weapon 4,but I hated everyone in that movie after it.I like him when he is himself and not holding back,like in Dogma. Well this is his best yet,wasn't expecting this to be that good.Laughed my arse off the whole time. Chris Rock delivers a sweet wonderful story backed by some of the funniest comedy I've seen in quite some time. Loved it.\r\n1\tSome comments here on IMDb have likened Dog Bite Dog to the classic Cat III films of the 90s, but although it is undoubtedly brutal, violent and very downbeat, this film from Pou-Soi Cheang isn't really sleazy, lurid or sensationalist enough to earn that comparison. However, it still packs a punch that makes it worth a watch, particularly if gritty, hard-edged action is your thing.<br /><br />Edison Chen plays Pang, a Cambodian hit-man who travels to Hong Kong to assassinate the wife of a judge; Sam Lee is Wai, the ruthless cop who is determined to track him down, whatever the cost. With Wai closing in on his target, Pang will stop at nothing to ensure his escapeuntil he meets Yue, a pretty illegal immigrant who needs his help to escape her life of abuse.<br /><br />A relentlessly harsh drama with great cinematography, amazing sound design, a haunting score, and solid performances from Chen and Lee (as well as newcomer Pei Pei as Pang's love interest), Dog Bite Dog is one for fans of hard-hitting Asian hyper-violence (think along the lines of Chan-wook Park's Vengeance trilogy). Stabbings, shootings, merciless beatings: all happen regularly in this film and are caught unflinchingly by director Cheang.<br /><br />Of course, this is the kind of tale that is destined to have an unhappy ending for all involved, and sure enough, pretty much everyone in this film dies (rather nasty deaths). Unfortunately, there is a fine line between tragedy and (unintentional) comedy, and in its final moments, Dog Bite Dog crosses it: in a laughably over-dramatic final scene, Pang and Wai are locked in battle as a pregnant Yue looks on. Eventually, after all three have suffered severe stab wounds during the fracas, a wounded Pang performs a DIY Ceasarean on (a now dead) Yue, delivering their baby moments before he himself dies.<br /><br />Whilst this film might not be a 'classic' slice of Hong Kong excess, with its deliriously OTT action and stylish visuals, it's still worth seeking out.\r\n1\t\"This is a CGI animated film based upon a French 2D animated series. The series ran briefly on Cartoon Network, but its run was so brief that its inclusion as one of the potential Oscar nominees for best animated film for this year left most people I know going \"\"Huh?\"\" This is the story of Lian-Chu, the kind heart muscle, and Gwizdo, the brains of the operation, who along with Hector their fire farting dragon,he's more like a dog. Travel the world offering up their services as dragon hunters but never getting paid. Into their lives comes Zoe, the fairy tale loving niece of a king who is going blind. It seems the world is being devoured by a huge monster and all of the knights the king has sent out have never returned or if the do return they come back as ashes. In desperation the king hires the dragon hunters to stop the world eater. Zoe of course tags along...<br /><br />What can I say other then why is this film hiding under a rock? This is a really good little film that is completely off the radar except as unlikely Oscar contender. Its a beautifully designed, fantastic looking film (The world it takes place has floating lands and crazy creatures) that constantly had me going \"\"Wow\"\" at it. The English Voice cast with Forrest Whitaker as Lian-Chu (one of the best vocal performances I've ever heard) and Rob Paulson as Gwizdo (think Steve Bucsemi) is first rate. Equally great is the script which doesn't talk down to its audience, using some real expressions not normally heard in animated films (not Disney nor Pixar). Its all really well done.<br /><br />Is it perfect? No, some of the bits go on too long, but at the same time its is damn entertaining.<br /><br />If you get the chance see this. Its one of the better animated films from 2008, and is going on my nice surprise list for 2009.\"\r\n1\t\"Two great comedians in a great Neil Simon movie based on his hit play.<br /><br />Great combination, especially when the comedians in question are Matthau and Burns. Small wonder why Burns won an Oscar for this; he's as sharp and as funny as ever. And Matthau is every bit his match, if a tad more crotchety.<br /><br />This is familiar Simon territory: two old vaudeville partners reunite for a TV special but still can't stand one another after all these years.<br /><br />It's a delight to watch these two pick at each other, their scenes together make this film an absolute delight. Myself, I especially enjoyed the \"\"knock, knock, knock / ENTER!\"\" scene. And if you're a fan of either Burns or Matthau, you'll enjoy it, too.<br /><br />In fact, you'll enjoy the whole movie. <br /><br />Ten stars. Put a little \"\"Sunshine\"\" in your life.\"\r\n1\t\"First of all, let me comment that the audience LOVED it from the first moment. Perhaps current events in the Middle-East led people to take the attitude, \"\"I came for a comedy and by George I'm going to enjoy it.\"\" but for whatever reason, everybody seemed really into the comedy of it. The last few times Woody has tried to do a straight comedy (Small Time Crooks, Curse of the Jade Scorpion, Hollywood Ending) I've felt like the one-liners felt strained and a bit antiquated. I remember thinking at one point, \"\"That would have been funny in the early sixties.\"\" So going in to this movie, I was afraid Woody was becoming tone deaf, however, in this one his comic sensibilities were in perfect tune. Admittedly, there were plenty of my fellow AARP card carrying folks in the screening, but there were also plenty of 20-somethings and 30-somethings as well, and they all seemed to get it and give up the occasional belly laugh in addition to numerous guffaws, chuckles and the like. In many instances, the throw-aways had people laughing so loud you missed the next line.<br /><br />Thematically, Woody was traipsing familiar ground. As I suspected from the trailer, this film had a lot of Manhattan Murder Mystery in it, but then again, there was more than a smidgen of Oedipus Wrecks (New York Stories), Alice, and even a little tribute to Broadway Danny Rose at the very beginning.<br /><br />Even with Woody in the movie, Scarlett, as Sondra, was, at times the Woody-proxy, but her character was far from the Nebbish that, say, Will Ferrell gave us in Melinda and Melinda or Kenneth Branaugh attempted in Celebrity. Instead of archetypal ticks and quirks, Sondra's nerdishness comes directly from the family history which she shares early on. On numerous occasions the \"\"family business\"\" leads her to malapropisms that we get as an audience, while the characters on the screen can only perceive them as strange non-sequiturs. Since we are all in on the joke, we can't help but laugh. But the laughs don't come from recognizing the Woody nebbish, but truly from the character. To a great extent, unlike Farrell, Branaugh, Cusack or even Mia Farrow before her, Scarlett is not required to use the Woody voice to evoke the Woody role. Thus, we don't find ourselves ripped out of the narrative as a Woody's voice suddenly emerges from someone else' face.<br /><br />As my friend commented on the way out, Sid, the character played by Woody, is a supporting role, but more center-stage than I was hoping going in. However, this time Woody seems to have written a character that truly fits his current persona. Unlike his Ed Dobel sage character in Anything Else, or his blind director in Hollywood Ending, this time the character is a comfortable fit. Perhaps more importantly, this time the character works in the story. Within the elevated circles they find themselves in, he is even more fish-out-of-water than Scarlett, which is used to great comedic effect throughout. Sid is a declining, itinerant magician playing to small audiences, but the fact that he is from another era is placed front and center for our enjoyment.<br /><br />But what about Jackman? What about Ian (Swearengen) McShane? I liked both of them to the extent that they are used in the piece. I particularly liked McShane's short but effective turns. Jackman is charming with the ease of \"\"Old Money\"\" that was so often portrayed in films from 50 years ago. (Class echoes from Purple Rose of Cairo?)<br /><br />So what did I think? Short answer, maybe his best straight comedy since 1994's Bullets Over Broadway. Less stylized than Mighty Aphrodite. Less caustic than Deconstructing Harry. Less forced than Small Time Crooks or Hollywood Ending. Woody has finally found a comic voice that works in the 21st century.\"\r\n1\tI really liked this movie! Even though it wasn't anything like any of the books it still the that classic Nancy Drew style. I had been seeing a lot of advertisements for this movie and since I was really into the Nancy Drew books I had really high expectations for this movie and they most definitely met those expectations. Pretty much all of the characters were exactly how I pictured them from reading the books. I am really happy that I saw this movie. All of the actors and actresses really acted like they acted like in the book series. Ever since I saw this movie I have wanted to read every single Nancy Drew book there is out there. All of the actors and actresses really got into their characters and it definitely showed when the aired this movie on the big screen. It definitely seemed like all of the actors and actresses were really in the positions that the characters were in I most definitely give this movie a 10 out of 10.\r\n1\tIt is noteworthy that mine is only the third review of this film, whereas `Patton- Lust for Glory', producer Frank McCarthy's earlier biography of a controversial American general from the Second World War, has to date attracted nearly a hundred comments. Like a previous reviewer, I am intrigued by why one film should have received so much more attention than the other.<br /><br />One difference between the two films is that `Patton' is more focused, concentrating on a relatively short period at and immediately after the end of the Second World War, whereas `MacArthur' covers not only this war but also its subject's role in the Korean war, as well as his period as American governor of occupied Japan during the interlude.<br /><br />The main difference, however, lies in the way the two leaders are played. Gregory Peck dominates this film even more than George C. Scott dominated `Patton'. Whereas Scott had another major star, Karl Malden, playing opposite him as General Bradley, none of the other actors in `MacArthur' are household names, at least for their film work. Scott, of course, portrayed Patton as aggressive and fiery-tempered, a man who at times was at war with the rest of the human race, not just with the enemy. I suspect that in real life General MacArthur was as volcanic an individual as Patton, but that is not how he appears in this film. Peck's MacArthur is of a more reflective, thoughtful bent, comparable to the liberal intellectuals he played in some of his other films. At times, he even seems to be a man of the political left. Much of his speech on the occasion of the Japanese surrender in 1945 could have been written by a paid-up member of CND, and his policies for reforming Japanese society during the American occupation have a semi-socialist air to them. In an attempt to show something of MacArthur's gift for inspiring leadership, Peck makes him a fine speaker, but his speeches always seem to owe more to the studied tricks of the practised rhetorician than to any fire in the heart. It is as if Atticus Finch from `To Kill a Mockingbird' had put on a general's uniform.<br /><br />Whereas Scott attempted a `warts and all' portrait of Patton, the criticism has been made that `MacArthur' attempts to gloss over some of its subject's less attractive qualities. I think that this criticism is a fair one, particularly as far as the Korean War is concerned. The film gives the impression that MacArthur was a brilliant general who dared stand up to interfering, militarily ignorant politicians who did not know how to fight the war and was sacked for his pains when victory was within his grasp. Many historians, of course, feel that Truman was forced to sack MacArthur because the latter's conduct was becoming a risk to world peace, and had no choice but to accept a stalemate because Stalin would not have allowed his Chinese allies to be humiliated. Even during the Korean scenes, Peck's MacArthur comes across as more idealistic than his real-life original probably was; we see little of his rashness and naivety about political matters. (Truman 's remark `he knows as much about politics as a pig knows about Sunday' was said about Eisenhower, but it could equally well have been applied to MacArthur's approach to international diplomacy). Perhaps the film's attempt to paint out some of MacArthur's warts reflects the period in which it was made. The late seventies, after the twin traumas of Vietnam and Watergate, was a difficult time for America, and a public looking for reassurance might have welcomed a reassuringly heroic depiction of a military figure from the previous generation. Another criticism I would make of the film is that it falls between two stools. If it was intended to be a full biography of MacArthur, something should have been shown of his early life, which is not covered at all. (The first we see of the general is when he is leading the American resistance to the Japanese invasion of the Philippines). One theme that runs throughout the film is the influence of General MacArthur's father, himself a military hero. I would have liked to see what sort of man Arthur MacArthur was, and just why his son considered him to be such a hero and role model. Another interesting way of making the film would have been to concentrate on Korea and on MacArthur's clash with Truman, with equal prominence given to the two men and with actors of similar stature playing them. The way in which the film actually was made seemed to me to be less interesting than either of these alternative approaches.<br /><br />It would be wrong, however, to give the impression that I disliked the film altogether. Although I may not have agreed with Peck's interpretation of the main role, there is no denying that he played it with his normal professionalism and seriousness. The film as a whole is a good example of a solid, workmanlike biopic, thoughtful and informative. It is a good film, but one that could have been a better one. 7/10.<br /><br />On a pedantic note, the map which MacArthur is shown using during the Korean War shows the DMZ, the boundary between the two Korean states that did not come into existence until after the war. (The pre-war boundary was the 38th parallel). Also, I think that MacArthur was referring to the `tocsin' of war. War may be toxic, but it is difficult to listen with thirsty ear for a toxin.\r\n1\t\"An hilariously accurate caricature of trying to sell a script. Documentary hits all the beats, plot points, character arcs, seductions, moments of elation and disappointments and the allure but insane prospect of selling a script or getting an agent in Hollywood;and all the fleeting, fantasy-realizing but ultimately empty rites of passage attendant to being socialized into \"\"the system.\"\" Hotz and Rice capture the moment of thinking you're finally a player, only to find that what goes up comes down fast and in a blind-siding fashion;that for inexplicable reasons, Hollywood has moved on and left you checking your heart, your dreams, and your pockets. Pitch is a must-see for students in film school to taste the mind and ego-bashing gantlet that is, for most, the road that must be traveled to sell oneself and one's projects in Hollywood. If your teacher or guru has never been there, they can't tell you what you need to prepare for this gantlet. To enter the\"\"biz,\"\" talent is necessary but far from sufficient\"\r\n1\tBesides the fact that my list of favorite movie makers is: 1)Stanley Kubrick 2)God Allmighty 3)the rest... this movie actually is better than the book (and the TV miniseries though this is an easy feat, considering the director). The flawless filming stile, the acting and (Kubrick's all time number one skill) the music - make it THE masterpiece of horror. I watched the TV miniseries a few years ago and liked the story and I had my hopes about this when I got a hold of it. IT BLEW ME AWAY!!! It is far better than I ever imagined it. It starts slow (Kubrick trademark) and has a lot of downtime that builds up the suspense. The intro scene is a classic by all means and I watched it about 20 times just for the shear atmosphere it induces to the whole film. Also the film doesn't offer a lot of gore (it has just enough and it is by no means tasteless) a trend that I hate in recent day horror films. Just watch it!\r\n1\tA movie/documentary about different people in Austria on the hottest weekend of the year. It follows what they are doing and maybe more what they are not doing. The tempo is very quiet......so you have to relax.......breathe in...breathe out before you see it......<br /><br />First you think....but nothing is happening and you get a little angry over that..and thats the problem, because its the mood of the film and the really nice social realistic pictures which are nice in this film...........a lot of people will say its disgusting......but its not that bad...i think its more used for the marketing....and theres some really funny moments...a 60 old woman stripping.....i guarantee its the most unsexy striptease in film history......its movie which is real..i think thats the word......right up in your face.......and that makes it a bit scary.no computer manipulation here.....its real life...and as we all know movies can win over reality when it comes to doing sick things..........so its much worse in the real world.......<br /><br />If you survive the movie you can start to look at your neighbors and think...maybe they are like the persons in the movie...i bet theres a lot of them out there......sick...crazy people living with a nice facade........after seing the movie i feel its more interesting to look at my neighbors........<br /><br />But maybe you shouldnt see this movie on your first date.........\r\n1\tNot one of your harder-hitting stories, and that's a real strength of this film. There are at least two relationships in which less confident writers would have added some all-too predictable romantic tension. They not only spare the audience this, but throw in some surprises at the same time. There are a few Disney-ish moments, particularly near the end, but they are manageable. Overall, it was worth the rental and it was good, relaxed fun.<br /><br />BTW, if you get the DVD, watch the segment where the director teaches you how to make aloo gobi. We followed her directions and it was BRILLIANT! Next time we will make it the day before we plan to eat it, because this is one dish that definitely gets better with a full night in the fridge to let the spices out!\r\n0\t\"Dear God! I kept waiting for this movie to \"\"get started\"\"... then I waited for it to redeem itself... and when it did neither, I just sat there, dumbfounded that: 1) it could possibly be this bad, and 2) that I had just wasted a couple of hours on just sheer stupidity. I had faith that Drew couldn't possibly have made this bad of a movie... and boy, did I ever lose my faith! Don't bother with this one! Drew tried, but the movie was poorly written, poorly acted, and just poorly conceived! I can't believe a script this bad ever got funded! It had a million chances to actually do something with the idea, (the word \"\"concept\"\" is too big for this movie to even qualify for!) and it STILL didn't go anyplace! Its just pitiful! Where the other reviewer got the idea that it wasn't the worst, baffles me! Because believe me, if it got any worse I'd have slit my wrists before finishing it!\"\r\n1\tOne of the greatest film I have seen this year.Last maybe before sun rise, which is also seen late at night alone in the lab. I like the idea of the film,which suggest free will of man and our weakness against fate.With time past by James and Kathryn are destined to fail and an indescribable sorrow comes. I do like the end. but a big question also comes. The virus shall not be released again, should it?<br /><br />In the last scene in the airport. Jose is sent back to meet James again by future scientists. When he tell him that scientists had already got his message and know someone else would spread the virus. And they two together meet Kathryn when Kathryn tell James the true man is DR. Goines assistant. So it is clearly Jose also get the true information about the virus,(James keep an eye on him at the time remember?) and he has teeth. So why everything is still happen?? Why future scientists don't do anything after the truth is revealed?? My biggest question after the film...\r\n1\t\"A fascinating look at the relationship of a single father in 1998 and a single mother in 1881, tied together by a time-traveling teenager. Reminded me of \"\"Somewhere In Time,\"\" Richard Matheson's \"\"Bid Time Return,\"\" as rendered by Christopher Reeves and Jane Seymour.\"\r\n1\t\"An excellent film depicting the cross currents in the lives of a multi-ethnic mix of not so ordinary people in the rural Pacific Northwest. Solid directing and writing along with fine acting, especially the performances by Kwami Taha and Dan Stowe. Interestingly, this film was made in the same year as the highly successful \"\"Crash,\"\" written and directed by Paul Haggis. The pace of the action may not be as frantic as that in urban Los Angeles, and the characters may seem to be better acquainted with each other in \"\"Apart From That,\"\" but the personal relationships of the characters are as flawed and troubled and their stories as resonant as any of those in \"\"Crash.\"\" For those viewers who appreciated \"\"Crash\"\" this is a must see film. Also, fans of Jim Jarmusch and John Cassavetes will like this movie.\"\r\n0\t\"Yeah, stupidity! I just finish watching and I still have bad taste in my mouth. Too much colors, too much unnecessary \"\"addons\"\" to a story, too much stupid characters (I presume they wanted to achieve comic relief, but I only wanted to cry)... too much of everything. Shame to spoil one of divine stories from \"\"Arabian Nights\"\" like this. Childish, naive (both on a bad way) and with lot of magic-breaking mistakes, I don't think this could keep a child of five for more then ten minutes. Princess is lovely, but should be tongueless, cause actress don't know how to carry a role. Rest of the cast is even worse...our \"\"bad guy\"\" is REALLY bad. Shame that the \"\"good guy\"\" is not better. Only light in this dark is, of course, David Carradine, who goes unfortunately deeply down under his level with this, but at least keep his actor/\"\"fighter\"\" skills at top. I'm still sorry to see him in a thing like this, but glad that I had something to watch in whole charade, so thank you David. Only, ONLY, for him, I give this 2 stars to this fiasco...I would give more for him, but that would rise final score to entire movie. The rest is so bad, that I would, maybe, like to grade it, but there is no grade lover then 1 here, and I think that would be too much.\"\r\n0\t\"Despite an overall pleasing plot and expensive production one wonders how a director can make so many clumsy cultural mistakes. Where were the Japanese wardrobe and cultural consultants? Not on the payroll apparently. <br /><br />A Japanese friend of mine actually laughed out loud at some of the cultural absurdities she watched unfold before her eyes. In a later conversation she said, \"\"Imagine a Finnish director making a movie in Fnnish about the American Civil War using blond Swedish actors as union Army and Frenchmen as the Confederates. Worse imagine dressing the Scarlet O'Hara female lead in a period hoop skirt missing the hoop and sporting a 1950's hairdo. Maybe some people in Finland might not realize that the hoop skirt was \"\"missing the hoop\"\" or recognize the bizarre Jane Mansfield hair, but in Atlanta they would not believe their eyes or ears....and be laughing in the aisles...excellent story and photography be damned.<br /><br />So...watching Memoirs of a Geisha was painful for anyone familiar with Japanese cultural nuances, actual geisha or Japanese dress, and that was the topic of the movie! Hollywood is amazing in its myopic view of film making. They frequently get the big money things right while letting the details that really polish a films refinement embarrassingly wrong. I thought \"\"The Last Samurai\"\" was the crowning achievement of how bad an otherwise good film on Japan could be. Memoirs of a Geisha is embarrassingly better and worse at the same time.\"\r\n1\tI remember when I was five and my parents thought it was a regular cartoon movie....except when the bras and bullets started flying. I have to agree this movie will make anyone and everyone upset because it is set to discriminate everyone and anyone....but the truth is it is funny as hell as it is deep. I recommend this to anyone who likes cult classics. Also try Fritz the cat and the NINE Lives of Fritz the Cat. If I'm correct Ralph Bashki did that movie too.It involves a cat that goes through hard times with family, streets,jobs , etc. When I was old enough I rented all of these movies out. Because Coonskin was an offensive title during that era it was also labeled as Street Fighter. Ralph Bashki also made Cool World starring a very young Brad Pitt. Heavy traffic was another cartoon that dealt with the street life of a young man.\r\n1\tI think that most of the folks who have posted comments on this movie don't understand how to watch a movie and/or have little sense of elegance. First, to assess a movie you need to understand the extent to which everything in the film works together. Modern sensibilities demand great drama. No, I don't mean great setting of characters and plots, but they seem to demand emotional trajectories that are greatly tragic or greatly comedic. This is a subtle movie. Its beauty lies in its subtlety (not to be confused with simplicity). Neither the story nor the characters are simple in this movie. It is a beautifully filmed movie that makes the most of combining sensuousness, politics, human weakness, venality...you name it. The world it's set in would be alien and not understood today...a world where if you have it you have to flaunt it NOW and LOUDLY, even if you only think you have it.<br /><br />Many people today don't understand that Victorian society wasn't really Victorian as people understand that term today.<br /><br />This movie helps set the record straight.\r\n0\tOK its not the best film I've ever seen but at the same time I've been able to sit and watch it TWICE!!! story line was pretty awful and during the first part of the first short story i wondered what the hell i was watching but at the same time it was so awful i loved it cheap laughs all the way.<br /><br />And Jebidia deserves an Oscar for his role in this movie the only thing that let him down was half way through he stopped his silly name calling.<br /><br />overall the film was pretty perfetic but if your after cheap laughs and you see it in pound land go by it.\r\n1\t\"A great movie. Lansbury and Tomlinson are perfect, the songs are wonderful, the dances, with a particular mention for the \"\"Portobello Ballet\"\" are gorgeous. As for the animated section, the match between animals has become an instant classic; the climax with the attack of the armatures is chilling and fascinating. I recommend to see the restored 134 minutes version or at least the 112 minutes video. Here in Italy we have only the 98 minutes version, although the film was presented in its original release at the running of 117 minutes. If possible, watch also the German videocassette: it was generated from the 98 minutes running but it's missing of every refer to World War II and of all the scenes between English people and their Nazi invaders!\"\r\n1\t\"Does anyone know, where I can see or download the \"\"What I like about you\"\" season 4 episodes in the internet? Because I would die to see them and here in Germany there won't be shown on TV. Please help me. I wanna see the season 4 episodes badly. I already have seen episode 4 and episode 18 on YouTube. But I couldn't find more episodes of season 4. Is there maybe a website where I can see the episodes? Because I've read some comments in forums from Germany and there were people which had already seen the season 4 episodes even though they haven't been shown at TV in Germany. I am happy about every information I can get. Thanks Kate\"\r\n0\t\"\"\"A young woman suffers from the delusion that she is a werewolf, based upon a family legend of an ancestor accused of and killed for allegedly being one. Due to her past treatment by men, she travels the countryside seducing and killing the men she meets. Falling in love with a kind man, her life appears to take a turn for the better when she is raped and her lover is killed by a band of thugs. Traumatized again by these latest events, the woman returns to her violent ways and seeks revenge on the thugs,\"\" according to the DVD sleeve's synopsis.<br /><br />Rino Di Silvestro's \"\"La lupa mannara\"\" begins with full frontal, writhing, moaning dance by shapely blonde Annik Borel, who (as Daniella Neseri) mistakenly believes she is a werewolf. The hottest part is when the camera catches background fire between her legs. The opening \"\"flashback\"\" reveals her hairy ancestor was (probably) a lycanthropic creature. Ms. Borel is, unfortunately, not a werewolf; she is merely a very strong lunatic.<br /><br />As a film, \"\"Werewolf Woman\"\" (in English) would have been better if Borel's character really was a female werewolf; with her sexual victimization a great bit of characterization. But, as far as 1970s skin and blood flicks go, this one is hard to beat. Bouncy Borel is either nude or sexily clad throughout the film, which features a fair amount of gratuitous gore. Dazzling Dagmar Lassander (as Elena) and hunky Howard Ross (as Luca) are good supporting players.\"\r\n0\tThe writer/director of this film obviously doesn't know anything about film. I think the DP on this project was tied up and replaced with a monkey, because every seen was either too dark or had the hotter hot spots than the sun. <br /><br />The story was awful, the characters were very one dimensional. For someone to have said that this film was made for poker fans and not film fans, that someone is kidding their self (it was probably the writer/director). No poker fan in this world likes this movie. Even your money man hates this project. To go into a casino and play a few hands doesn't give you the experience to write about poker. Keep your day job. And if it's playing poker, then you must be hurt'n.\r\n0\t\"\"\"New Best Friend\"\" is another entry in the \"\"steal another woman's life\"\" sub-genre; the best of which are \"\"Single White Female\"\" and \"\"The Hand That Rocks the Cradle\"\"; the worse of which you can catch almost any afternoon on the Lifetime Channel. For some reason this type of identity theft happens exclusively to women.<br /><br />There are just two basic ways to play this type of story. You can make the woman evil at the beginning and let the audience watch knowingly as she hatches and implements her evil scheme. Or you use misdirection to make her appear a good person, as a seemingly unplanned series of events break in her favor until she is revealed to be evil in the climatic scene. Unfortunately the makers of \"\"New Best Friend\"\" could not decide how they wanted to play it and things crash and burn early. We first meet Alicia (Mia Kirshner) scamming the college's financial aid office for scholarship money. We now know that she is a bad person and will view all her subsequent activity with suspicion. But the director and editor apparently forgot that this revelation had been made and spend the next 50 minutes laying misdirection to make us think that Alicia is a good person. This introduces the only element of suspense, not about whether she is evil but about when the director and editor will wise up and stop wasting our time with transparent misdirection.<br /><br />\"\"New Best Friend\"\" suffers more than most from the teen movie curse of a cast too old to be portraying undergraduate students. There are really only two big parts, Hadley (Meredith Monroe) and Alicia (Kirshner). They were 31 and 26 respectively at the time of the production. It almost works for the 26 year-old Kirshner when she plays the mousy version of Alicia but it becomes glaring when she is transformed into the glamed-up version of Alicia. Monroe's casting is simply a joke, about like having Nicholette Sheridan try to pass as a classmate on \"\"Lizzie McGwire\"\". She looks much closer to a mid-life crisis than to a term paper.<br /><br />The producers must have owed a lot of favors because this age issue extends to most of the supporting characters. Taye Diggs who plays the town sheriff is younger than most of the students.<br /><br />The basic setup is that Hadley and two other rich party girls (played by Dominque Swain-age 21 and Rachel True-age 35) are undergrad roommates at college. They share (as their student residence) a mansion that is nicer and better furnished than the mansion on Real World-New Orleans (a premise more believable than soccer moms playing students). Alicia moves into the mansion and begins to take over Hadley's life. At least that way Swain finally gets a roommate from her own generation so the two can have a lesbian scene. Swain's supporting performance is the only good thing about \"\"New Best Friend\"\" and her love scene with Kirshner is fantastic, so cool and artsy that it doesn't fit with any of the other segments, maybe it was subcontracted out to a good director and cinematographer.<br /><br />The unintentionally hilarious story is presented in a series of dreary flashbacks of rampant sex and nonstop parties, each proceeded by a shot of a comatose Alicia in a hospital bed. About half of Kirshner's screen time is spent lying motionless with a tube in her mouth. Not a good career move Mia.<br /><br />Then again, what do I know? I'm only a child.\"\r\n1\t\"Considering all the teen films like \"\"the Breakfast Club\"\" and \"\"Pretty In Pink\"\" that are lionized. It is surprising that this one is so ignored.<br /><br />There is no sex in it, but sex is thought of, including the idea that it may matter what others think about it. The kids do not always get along with their parents, but neither the parents or the kids are seen as always right or wrong, and the parents are not seen as monsters.<br /><br />It deals with hero-worship. How one girl does a dangerous thing, which could have lead to real dustier, before realizing that she was wrong.<br /><br />The movie is kind of ahead of its' time. One kid asks another kid what birth control she uses. She says she is doing nothing to need birth control. She replies (wrongly) \"\"oral sex\"\".\"\r\n0\tNu Image, UFO and others produce films for the SCI FI channel that come in with budgets of roughly $2 million. Some feature extensive effects work, others feature recognizable casts and still others feature both -- for $2 million.<br /><br />Mr. Hines initially claimed that this film was budgeted at $20 million dollars but it's painfully obvious that this was probably produced for $750,000 if not considerably less than that. Few sets are utilized, a number of scenes are shot against green screen and most effects seem incomplete and amateurish.<br /><br />It's painful to watch. Not so much because it is poorly directed, poorly executed and misguided but because many of us have been following the progress of this production for quite some time and had high hopes for this film despite its relatively modest budget.<br /><br />Those of us who believed in this movie when it was originally announced have joined the legions of those spoken of by P.T. Barnum.\r\n1\tI love horses and admire hand drawn animation, so I expected nothing short of amazement from Dreamworks new animated picture Spirit: Stallion of the Cimarron. I guess you could say I was a little bit disappointed. You have wonderful animation and at first what seems like a perfect story. A story about absolutely nothing but a horse in nature. The animals don't sing cute songs or even talk -- a major plus. Sadly, the film has an uncalled for narration by Matt Damon; a sappy soundtrack by Bryan Adams; and enough action scenes to compare it to a Jerry Bruckheimer production. If the film makers would have just stayed with simplicity, we'd have a masterpiece here. This is not a great film, but it is good entertainment for small children. I would recommend this film to families because it has its heart in the right place and its the only thing out there right now that isn't offensive to small children. Not bad, but could have been much better. Very pretty visuals though.\r\n1\tThis is a wonderful movie with a fun, clever story and the dynamics of culture differences and the running theme of what's important in life make this a very under-appreciated movie. Don't let the cynics of the world deter you from seeing this. Keaton has wonderful moments and I wonder at the fact that comedy is never appreciated, because actors like Keaton make going from humor to serious bits look tremendously easy. Great movie all around!\r\n1\t\"I've seen this movie twice with my teenagers who love it. This one ought to be a cult fave! The best line, \"\"Your dress is deeply cool!\"\" says the Prince to Cinderella. Kathleen Turner shines as the stepmother. I also like the 1950's era cars and motorcycles. The melancholy prince is a great departure from the typical swashbuckler. He tries to stay cool, but fails to hide his love for the fairy-tale princess-to-be. Her slipper is not glass (truer to the original story), but Cinderella loses is nonetheless but gets it back from the heir to the throne. My only complaint is that it is not shown more and seems to be almost impossible to get. Hopefully Blockbuster or Amazon will start stocking this one sometime soon.\"\r\n1\tThis in my opinion is one of the best action movies of the 1970s. It not only features a great cast but is also loaded with wild shootouts and explosions that are still impressive today. The story is about a Vietnam vet (Kris Kristofferson) being recruited by his brother (Jan-Michael Vincent) to help clean up the criminal element in a small town and what happens when Kris starts taking advantage of his position and becomes as bad as the criminals he was hired to get rid of. It's great seeing Kris play against type. Bernadette Peeters and Victoria Principal both offer great support as the respective ladies of the two male stars. Jan-Michael shows real movie star persona in this film. I don't think Vigilante Force is on video but it occasionally shows up on TV. It's a great flick for guys who like movies.\r\n0\t\"Why every horror director wants to imitate \"\"The Exorcist\"\" is a complete riddle to me, as William Friedkin's \"\"classic\"\" is a very overrated film and, in my opinion, not all that tense or shocking. And yet here's another clean rip-off, a Spanish one this time, that shamelessly repeats the story of a young girl that gets possessed by pure evil and turns against her own family. Paul Naschy (who I must admit looks quite hot here) plays the honorable priest who gets approached by John Gibson because his sister Leila's behavior changed drastically since she met her new boyfriend. At first the priest doesn't believe it but when John's body is discovered with its neck twisted, Leila's demonic behavior becomes more noticeable... \"\"Exorcism\"\" is not only very unoriginal, it's also an insufferably boring film! Here Naschy and director Juan Bosch had an open opportunity to make a religiously themed exploitation flick full of shocks and gore, and yet the result is a tame and overall bloodless drama that'll nearly put you to sleep! The last twenty minutes contain some atmospheric moments, albeit very stupid, and there's quite a lot of stylishly filmed female nudity and sleaze. The absolute lack of budget is no real excuse since Paul Naschy already proved before that he has enough imagination to make up for a shortage in money. This is just an awful film, end of story. Other European \"\"The Excorcist\"\" rip-offs are \"\"The Antichrist\"\" and \"\"Beyond the Door\"\" and they suck as well!\"\r\n1\t\"Everything a musical comedy should be. Gene Kelly (as Joe Brady) doesn't miss a step, and Frank Sinatra (as Clarence Doolittle) doesn't miss a note. Scenes with them together are very good, showing how much talent can add to a somewhat uneven plot. Sinatra's \"\"I Fall in Love Too Easily\"\" is an indication of his then and future best. Kelly's \"\"Mexican Hat Dance\"\" with a young Mexican girl is delightful. Kelly certainly earned his nomination as Best Actor. And there is a bushel of truly funny lines, like: \"\"You think the navy takes dopes?\"\"; \"\"You think anybody sings a sailor to sleep?\"\"; and, \"\"We got in a little trouble, we picked up a little kid.\"\" A thoroughly enjoyable movie, just the thing for shaking off the dust of a recently concluded World War II.\"\r\n1\t\"As with all environmentally aware films from the 1970s SOYLENT GREEN has a rather cheesy view of what ecological meltdown is . Overpopulation means there`s too many people to feed ? I was under the impression that famines were caused by either war or failed economic policies . Stalin`s policy in the Soviet Union in the 1930s left millions dead because of famine and to this day the greatest man made tragedy was Mao`s rural policy in China which led over 30 million starvation deaths in the 1950s . And let`s not forget the great famines in the horn of Africa in the 1980s and 90s which were to do with conflicts not overpopulation . You might like to also consider that two of the most heavily populated areas on Earth , Hong Kong and Macau , have never suffered a famine in modern times . Likewise the expansion of shanty towns around cities as seen here isn`t strictly down to overpopulation - it`s down to economic factors where people flock to cities to find better paid work than in the countryside ( It`s a symptom of industrial progress - not of too many births ) so the image of the streets of New York city being too congested to walk through and of having people sleep in stairwells is somewhat laughable<br /><br />But don`t be fooled into thinking SOYLENT GREEN is a pile of corny tree hugging crap because I consider this to be the best ecological film of the<br /><br />70s . It plays on the contempary audience`s knowledge of the world where Sol and Thorn are beside themselves with joy at finding fruit , brandy and fresh meat . Thorn gasps in amazement at having ice in his whisky , puffs on a cigarette and delivers the classic line \"\" If I could afford it I`d smoke two , maybe three of these a day \"\" . But it`s the visage of the euthanasia chamber that`s memorable as Thorn gazes at the images of wild animals , flowers , running water and snow covered mountains , a world Thorn`s generation has never known . This is a very haunting scene which makes SOYLENT GREEN a very memorable film , combined with the fact it features the final screen appearance of Edward G Robinson as the wise old Jew Sol Roth\"\r\n1\tEsther Williams gets her first post MGM starring role and gets off<br /><br />to a good start. This film is a well acted entertaining suspense<br /><br />with a mature theme that would be repeated a million times more<br /><br />in the future - innocent girl stalked creepy woman hater. Esther<br /><br />looks great and if she wanted to, probably could have gone on to<br /><br />do more and better films but according to her autobiography, <br /><br />pretty much gave up working for marriage. Either way she is so<br /><br />likable and engaging that its fun to see her in a totally different role<br /><br />outside of the 'swimming musical'. Universal was fabulous for<br /><br />making films with former MGM stars after that studio began<br /><br />dropping its biggest names as it began to slide down hill. Stars<br /><br />like Lana Turner, June Allyson and others got to make quality first<br /><br />rate films at Universal as they obviously still had drawing power at<br /><br />the box office. I wish Esther had made more but since she didnt, it<br /><br />makes this one all the more special.\r\n1\t\"You know you're in for something different when a movie has Christopher Walken playing the part of a professional hit man - and he isn't even one of the bad guys! Although it could do with some judicious trimming here and there, \"\"Man on Fire\"\" is a generally effective crime drama that ranges in tone from the openly sentimental to the downright brutal - and just about every tone imaginable in between.<br /><br />Denzel Washington stars as Creasy, a former CIA assassin who has recently quit the business and is seeking some sort of redemption for the sins he's committed. So far, he's been looking for answers in a bottle and the Bible and not doing all that well with either. As the movie opens, Mexico City has been ravaged by a series of kidnappings aimed at the powerful and well-to-do, possibly perpetrated by the very police force assigned to keep law and order in the community. Creasy accepts the position as bodyguard to the daughter of a wealthy business owner who rightly fears for her safety. The first third of the film is devoted to the growing friendship between Creasy and his charge, Pita, a sweet little girl who, slowly but surely, works her way into Creasy's initially hardened heart and affections. The last two-thirds of the film turns into an Avenging Angel melodrama, as Creasy systematically seeks out and eliminates all those responsible for a tragedy that occurs early on in the story.<br /><br />Based on the novel by A.J Quinnell, \"\"Man on Fire,\"\" astutely written by Brian Helgeland and flashily directed by Tony Scott, is a coolly efficient action picture that never shies away from the raw brutality of its subject matter. It takes a risk in asking us to identify with a man who is, for all intents and purposes, achieving his redemption by torturing and murdering (admittedly disreputable) people. These scenes of carnage and violence are both intense and suspenseful, even if they do at times border on the exploitative. Even better are the quiet, intimate moments between Creasy and Pita in the early parts of the movie. Washington and the wonderful Dakota Fanning establish an natural, easygoing rapport that helps to set the stage for the chaos and turmoil to follow.<br /><br />Washington carries the movie with his quality of stoic righteousness, making us understand his character on an emotional level even if what he is doing eludes us intellectually. In addition to the two leads, there are solid performances from Walken, Marc Anthony, Radha Mitchell, Mickey Rourke, Rachel Ticotin and Giancarlo Giannini. But it is Washington and the delightful Ms. Fanning who steal the show.<br /><br />\"\"Man on Fire\"\" would have been better with about a half hour taken out its running time, but this is still a better-than-average crime thriller.\"\r\n0\tWhy would a person go back to a person, who kicks them in the teeth, not once, not twice, but over and over again.<br /><br />This film teaches us that in order to find love we must accept abuse (not just forgive it, but fully accept it). Gosh! No wonder my first relationship only lasted ten years. I obviously wasn't embracing my inner masochist.<br /><br />As Bucatinsky's writing debut, there are many wonderful aspects to this film; however, in order to justify the reunion of Eli and Tom, more character development would have been helpful. We are never acquainted with Eli's masochism, in fact, we are led to believe that he is not a masochist, although Tom's psycho-emotional sadism is highly evident.\r\n1\t\"The Last of the Blond Bombshells is an entertaining bit of fluff. Judy Dench plays Elizabeth, a newly widowed woman at loose ends. She has spent most of her life being the dutiful wife and mother but has never been truly happy.<br /><br />Shortly after her husband's funeral, Elizabeth is having her regular lunch date with her stick-in-the-mud children when she spots a street performer. This sparks memories of when she was a member of an all girl swing band in London during World War II. We soon learn that the band was not exactly all girl as the drummer was a man dressing as a woman ala Some Like It Hot.<br /><br />Elizabeth pulls out her sax (which she has been secretly practicing throughout her marriage) and joins forces with the guitar-playing street musician. Elizabeth is far more talented than the guitarist, and the money begins to flow in. She doesn't take any money as she is wealthy and doesn't need it. Her playing is strictly for artistic fulfillment.<br /><br />Elizabeth is seen one day by Patrick (Ian Holm) who was the drummer-in-drag of the band. It seems that Patrick was - and still is - quite the ladies' man, and Elizabeth - being only fifteen at the time - was the only band member who did not experience Patrick's \"\"talents\"\" other than drumming.<br /><br />Elizabeth is inspired by her granddaughter to get the old group together once again to play for the granddaughter's school dance. Thus begins a delightful trip down memory lane combined with aspects of a humorous road trip movie - all topped off with some really good swing and blues.<br /><br />I guess I'm at the age in which I really enjoy older actresses doing their stuff, and this film is a treasure trove as it not only stars Judi Dench, but she is supported by none less than Olympia Dukakis, Leslie Caron, and a host of seasoned British character actresses. This is all topped off by the extraordinary voice of Cleo Laine.<br /><br />Yes, it is fluff, but totally delightful and exceedingly entertaining fluff.\"\r\n0\tFor starters, I would like to say that I'm a fan of the American Pie series. Even though 'the naked mile' and this one are the two worst, this one seems to be the downfall of the whole series.<br /><br />First of all, the best part of the film was that it was an American Pie film, which is always appreciated.<br /><br />However, there are tonnes of bad things to say about this film. First of all, the story has a very stale 'arc' structure. First, there is the introduction of the characters, then the pledging of the beta house and finally the Greek Olympiad. Each of which has exactly 25 minutes of length. Apart from the general staleness of the plot, there is little to no character development, which makes a double whammy of a bad plot.<br /><br />Apart from that, I deeply disliked the stereotyping in this film. That is, showing the jocks as the extremely cool, only-thinking-about-sex guys, and explicitly displaying the geeks as inferior. Also, it shows females only as sexual objects, and males as only wanting to treat the females as sexual objects.<br /><br />Apart from that, the acting was also poor. With perhaps the exception of Steve Talley.<br /><br />So, in the end, a generally horrid film, if seen from a critical point of view. If seen from a teen point of view, I guess that it's better, but this film is rated 18+ in most countries, so it shouldn't really be seen by minors.\r\n0\tThis has an interesting, albeit somewhat fanciful sci-fi plot, but it's wasted with poor direction and shlocky special effects. Rae Dawn Chong is appealing, despite the lack of a believable story and direction consistent with her talent.\r\n1\tI really loved this movie and so did the audience that I saw it with in Los Angeles. After the film, lots of people were crying and saying how much the film had affected them. I can see why it was such a huge hit in its homeland, Sweden. The film is masterfully directed and each character brilliantly drawn so that by the end you really know these people and care about them. The music is very natural and the main song in the film quite heartbreaking but inspiring. Would definitely recommend this film for everyone to see - even people who don't normally go to subtitled films. Definitely deserved the Oscar Nomination because of the profound themes of the film reflected without pretension in a small-town community with everyday people. It is a film that unites us in this divided world and shows us the potential of the human spirit. A MUST SEE!\r\n0\t\"I saw this film when it first came out in 1978, when I was a sophomore in high school. I took a date to see it. I didn't \"\"get any,\"\" needless to say, because the film was so bad! Joan Rivers' career never tanked as badly as it deserved after making this awful, unfunny crap. In fact, unfunny isn't a severe enough term: this film is ANTI-FUNNY! You walk out feeling like any laughter that might have occurred was beaten out of you before it could happen. This isn't worth watching out of curiosity, or out of any sense of it being \"\"so-bad-it's-good.\"\" Not even the gang at MST3K could've made this worth watching! The fact that Billy Crystal's career survived this early suicide attempt is a miracle.\"\r\n1\t\"When I really began to be interested in movies, at the age of eleven, I had a big list of 'must see' films and I would go to Blockbuster and rent two or three per weekend; some of them were not for all audiences and my mother would go nuts. I remember one of the films on that list was \"\"A Chorus Line\"\" and could never get it; so now to see it is a dream come true.<br /><br />Of course, I lost the list and I would do anything to get it back because I think there were some really interesting things to watch there. I mean, take \"\"A Chorus Line\"\", a stage play turned into film. I know it's something we see a lot nowadays, but back then it was a little different, apparently; and this film has something special.<br /><br />Most of the musicals made movies today, take the chance the camera gives them for free, to create different sceneries and take the characters to different places; \"\"A Chorus Line\"\" was born on a theater stage as a play and it dies in the same place as a movie. Following a big audition held by recognized choreographer Zach (Michael Douglas), Richard Atenborough directs a big number of dancers as they try to get the job.<br /><br />Everything happens on the same day: the tension of not knowing, the stress of having to learn the numbers, the silent competition between the dancersAnd it all occurs on the stage, where Douglas puts each dancer on the spotlight and makes them talk about their personal life and their most horrible experiences. There are hundreds of dancers and they are all fantastic, but they list shortens as the hours go by.<br /><br />Like a movie I saw recently, \"\"A Prairie Home Companion\"\", the broadcast of a radio show, Atenborough here deals with the problem of continuity. On or behind the stage, things are going on, and time doesn't seem to stop. Again, I don't if Atenborough cut a lot to shoot this, but it sure doesn't look like it; and anyway it's a great directing and editing (John Bloom) work. But in that little stage, what you wonder is what to do with the cameraWith only one setting, Ronnie Taylor's cinematography finds the way, making close-ups to certain characters, zooming in and out, showing the stage from different perspective and also giving us a beautiful view of New York.<br /><br />In one crucial moment, Douglas tells the ones that are left: \"\"Before we start eliminating: you're all terrific and I'd like to hire you all; but I can't\"\". This made me think about reality shows today, where the only thing that counts is the singing or dancing talent and where the jury always says that exact words to the contestants before some of them are leaving (even when they are not good). It's hard, you must imagine; at least here, where all of them really are terrific.<br /><br />To tell some of the stories, the characters use songs and, in one second, the stage takes a new life and it literally is 'a dream come true'. The music by Marvin Hamlisch and the lyrics by Edward Kleban make the theater to film transition without flaws, showing these dancers' feelings and letting them do those wonderful choreographies by Michael Bennett. The book in the theater also becomes a flawless and very short screenplay by Arnold Schulman; which is very touching at times. So if it's not with a song it will be with a word; but in \"\"A Chorus Line\"\", it's impossible not to be moved.<br /><br />During one of the rehearsal breaks in the audition, Cassie, a special dancer played by Alyson Reed, takes the stage to convince Douglas character that she can do it. The words \"\"let me dance for you\"\" never sounded more honest and more beautifully put in music and lyrics.\"\r\n0\t\"This film's premise is so simple and obvious that only a Texas millionaire high on oil fumes and whiskey would have a problem understanding it if someone shouted it across the proverbial parking lot. In summary: the oil business is in cahoots with The Government (or Gummint if you prefer), the Gummint is in cahoots with Middle Eastern despots, and the CIA is a singular festering pool of double dealing sons-of-(insert word) willing to toe any line that comes their way. The only people that get done over are the good ones, like Mr Clooney (\"\"Bob\"\"). Oh, and terrorism is a result of the poverty which globalization creates when wicked multinationals stalk the world looking for a tasty takeover or three . That really fits to the profiles of the well-heeled 9/11 perpetrators.<br /><br />In Syriana this facile tissue of political half-truths and Hollywood holograms is stirred up in a repugnant vermicelli of story strands that twist, turn and whirl through the gloopy circumlocutions of their own insignificance until the poor viewer is left alone with the conclusion that: <br /><br />1. the \"\"director\"\" (good joke) should never be let near a camera again <br /><br />2. people like Clooney and Hurt might know how to act, but they sure don't know how to pick a script <br /><br />3. if you want to see a film that deals with corruption in big business and the state, go and see Claude Chabrol's \"\"L'ivresse du pouvoir\"\", which is insightful, funny and brilliantly acted. <br /><br />Empty, doom-laden sententious piffle spun out to evening-ruining length.\"\r\n1\t\"The Matador is a strange film. Its main character Julian, played with an unusual mix of charm and unbalance by Brosnan, is not your typical hero. Julian is a hit man who is experiencing a late mid-life crises. Having spent 22 years in the profession of cold blooded murder he now finds himself stressed out and desperately lonely. And so, after a chance meeting at a bar with Danny (Greg Kinnear), he latches on and begins a halting, awkward friendship. Danny, the quintessential nice guy, is dealing with some stuff in his own life and, truth be told, could use a friend as well. The two make an unexpected connection, and Danny sticks around to hear Julian's story, even after learning the \"\"unsavory\"\" truth about Julian's work.<br /><br />Matador approaches a subject not completely unheard of in cinema, the anti-hero assassin (films like 'Assassins' and 'Grosse Pointe Blank' come to mind). But Matador differs in several key ways. First of all, the killing and gore is implied but never really shown in any detail, meaning that if you are an action movie buff looking for an adrenaline rush this movie will probably disappoint you. And second, unlike most anti-hero films, Matador makes no attempt to show remorse and redemption from its main character. Julian's job is simply presented as an 'it is what it is' kind of thing. This is unusual, given that 99.99% of us would consider killing for money horrific. And yet this unorthodox approach is perhaps what makes the film feel authentic. Although we don't like to admit it, almost anything could become mundane after we did it long enough, maybe even murder. Did Julian's victims deserve to die? Who is paying to have people killed? Who knows. The movie never deals with these questions. The focus is on Julian and his stumbling shuffle into a genuine friendship. If you read about someone like Julian in the paper you would have a passing thought that people like him should be ripped out of society like a cancer, but forced to watch his life you are drawn in by his intense humanity. Sympathy for the devil, I guess.<br /><br />Brosnan's take on Julian is well done and deeply unsettling. He doesn't completely divorce himself from his James Bond good looks and smooth charm, but rather just adds disturbing quirks into the mix. Weird or crude remarks in the middle polite conversations and sudden shifts from suave charm to childish tantrums and sad desperate pleas for acceptance. It keeps you guessing about his grasp on his sanity and how it will affect those around him. It's a bit like listening to a piano player that occasionally and unexpectedly hits a wrong note while he plays, but it works. The films only other major role, that of Danny, is not nearly as meaty. Kinnear turns in a solid if unspectacular performance as a regular Joe with a regular Joe life and problems.<br /><br />The film doesn't really have any huge shocks or M Night Shyamalan twists, but I wasn't able to guess the ending and it felt satisfying. It doesn't have any deep philosophical or spiritual insights and yet it felt very human. And it didn't have any heart pounding car chases or gun battles and yet I thought the pacing was well done and I was never bored. Maybe the only real message here is about the human need to reach out and make connections with one another, and how those needs have no moral prerequisites. Even a murderer needs friends, and even good people can be friends with bad people. It's a comment on the strange, random world we live in. A good film; worth seeing.\"\r\n0\tI really tried to like this movie but in the end it just didn't work for me. I have seen most of Kitamura's output and have found it to be very variable. Alive, like all of his films has an interesting plot, some nifty sequences and a fair amount of creativity. However, these qualities are in painfully short supply in Alive. The plot is cool if not all that original and could have made for a pretty ace film. Unfortunately, the pacing is painfully slow and the film takes an age to get going, before reaching fairly predictable places. The action is just about passable, with the final fight pretty cool, and the earlier one about OK. The earlier one is also marred by overspeedy camera-work, making for less coherency. There are some neat visual effects and some interesting ideas floating around in the dialogue but the film still drags badly. The characters are neither well fleshed out nor well acted and the setting and general color scheme is drab and boring. The film is not completely terrible and has some points of interest, perhaps judicious use of the fast forward button could improve it. With about twenty minutes taken off the run time this could be a pretty decent sci fi thriller. But the full length film is dull. Only recommended to very patient and determined Kitumura fans.\r\n1\tI did not like Chandni Bar from the same director.<br /><br />I did not watch his other movies. They came and went.<br /><br />But Page-3 is nicely made. Seems real. Like Satya from RGV did.<br /><br />The mental sickness of the so called high society is the summary of the movie. In the midst of all the sickness, its difficult to lead a normal life which the protagonist, Konkana Sen, does. Serious movie, not to be watched with children or expecting wives. Page-3 of newspapers is the usual place for reporting the activities going on in the parties of the rich and elite who indulge in much more filth then what is reported. How this Page-3 is also a business prospect is shown in the movie. Event management firms get paid to arrange parties and make a rich but not famous people famous overnight by clicking photographs with the celebrities invited to the party.<br /><br />The western culture has crept into the high society of Mumabi quite deeply. The movie shows it boldly, no holds barred.<br /><br />Madhur Bhandarkar starts a new journey from here.\r\n1\tHow strange the human mind is; this center of activity wherein perceptions of reality are formed and stored, and in which one's view of the world hinges on the finely tuned functioning of the brain, this most delicate and intricate processor of all things sensory. And how much do we really know of it's inner-workings, of it's depth or capacity? What is it in the mind that allows us to discern between reality and a dream? Or can we? Perhaps our sense of reality is no more than an impression of what we actually see, like looking at a painting by Monet, in which the vanilla sky of his vision becomes our reality. It's a concept visited by filmmaker Cameron Crowe in his highly imaginative and consciousness-altering film, `Vanilla Sky,' starring Tom Cruise and Penelope Cruz. At the age of thirty-three, David Aames (Cruise) inherits a publishing empire left to him by his father. His fifty-one percent controlling interest, however, has made him something of a marked man, as there are seven members of his board of directors, and each deems himself more worthy than the young Mr. Aames of the lion's share of the company. And fueling the fires of discontent is their perception that David lacks the focus the job requires.<br /><br />Admittedly, David likes to play; still, he's in control of the business and does what he sees fit, whether the board (he refers to them as the `Seven Dwarfs') likes it or not, and no one has ever had the courage to challenge him directly. But during a lavish birthday party in his honor, one of the corporate lawyers, Thomas Tipp (Timothy Spall) warns David that the seven are up to something behind his back. At the time, however, it's the last thing on David's mind; he's been having a casual affair with a friend, Julie Gianni (Cameron Diaz), but even that moves to the back burner when he meets a woman at his party that he can't get out of his mind. Her name is Sofia (Penelope Cruz), and after knowing her for only one night, she becomes a pivotal part of his life-- which is about to be turned upside down, as on the morning after his party he makes a decision that will change his life forever. And he is about to learn that sometimes, there is simply no going back.<br /><br />Director Cameron Crowe has crafted and delivered much more than just another film with this one; far more than a movie, `Vanilla Sky' is a vision realized. Beginning with the first images that appear on screen, he presents a visually stunning experience that is both viscerally and cerebrally affecting. It's a mind-twisting mystery that will swallow you up and sweep you away; emotionally, it's a rush-- and it may leave you exhausted, because it requires some effort to stay with it. But it's worth it. Think `Memento' with a driving rock n' roll soundtrack and a vibrant assault of colors proffered by the stroke of an impressionist's brush. There's darkness and light, and sounds that pound and drive until you can feel the blood rushing through your veins and throbbing in your brain. And all played out on a landscape of virtual reality swirling beneath that ever expanding vanilla sky. Simply put, this one's a real trip; it's exciting-- and it's a mind bender.<br /><br />As to the performances here, those who can't get past the mind-set of Tom Cruise as Maverick in `Top Gun,' or his Ethan Hunt in `Mission Impossible,' or those who perceive him only as a `movie star' rather than an actor, are going to have to think again in light of his work here. Because as David Aames, Cruise gives the best performance of his career, one that should check any doubts as to his ability as an actor at the door. He's made some interesting career choices the past few years, with films like `Magnolia' and `Eyes Wide Shut' merely warm-ups for the very real and complex character he creates here. And give him credit, too, for taking on a role that dispels any sense of vanity; this is Cruise as you've never seen him before. `Jerry Maguire' earned him an Oscar nomination, and this one should, also-- as well as the admiration and acclaim of his peers. Cruise is not just good in this movie, he is remarkable.<br /><br />Penelope Cruz turns in an outstanding, if not exceptional performance, as well, as Sofia, the woman of David's dreams. There's an alluring innocence she brings to this role that works well for her character and makes her forthcoming and accessible, yet she lacks any hint of mystery that may have added that special `something extra' to the part. But Crowe knows how to get the best out of his actors, and he certainly did with Cruz.<br /><br />He also knew what he was doing with Cameron Diaz, who is absolutely vibrant in the role of Julie. She's never looked better, and fairly sizzles on screen. But make no mistake, this is no `window-dressing' part, and Diaz delivers a complete package with this character. The quality of her performance can be measured, in fact, in the impact she makes with rather limited screen time. And it's the persona she integrates so fully with her innate beauty that makes Julie so unforgettable. Overall, a terrific job by Diaz.<br /><br />The supporting cast includes Kurt Russell (Dr. McCabe), Jason Lee (Brian), Johnny Galecki (Peter), Armand Schultz (Dr. Pomerantz), Noah Taylor (Ed), Mel Thompson (`L.E.' Man), Jean Carol (Woman in New York) and John Fedevich (Silent Ed). About half-way through, this one may have you questioning your own sense of reality; but rest assured, by the end of `Vanilla Sky' all will be revealed. It's a reality-bender, to be sure, and a wild one; but this is exciting entertainment that offers a satisfying-- and unique-- experience, one you have to see to believe. It's the essential, and absolute, magic of the movies. 10/10.<br /><br />\r\n0\t\"Expecting a combination of scifi and period film about Ada Lovelace, Charles Babbage, the history of computers, etc, I was disappointed by this movies nonsensical pseudoscience and mixture of real and fabulous history. It gives the impression that its writer (Lynn Hershman-Leeson) has no real understanding of the Math, technology, or history constituting the film's subject, but is working instead from a sort of fuzzy artistic impression of them. This hits a sore spot with me, as I've long been irritated by the tendency of the arts to glom onto and awfully misuse science terms and ideas to the point of confusion, eg: Emmy Coer: \"\"information waves have a half-life\"\", Ada: \"\"I'm not at all certain that half a life is better than no life at all\"\".<br /><br />This movie does worse than fail to entertain - it misinforms. The only redeeming value I can imagine for it is that it might attract a viewer to learn about the subject it so badly distorts. It's more likely, I think, to promote a superstitious perception of science and technology of any degree of advancement as indistinguishable from magic.\"\r\n1\tThis is such a great movie to watch with young children. I'm always looking for an excuse to watch it over & over. Gena was good, Cheech was fun,the Russian was good, Maria was adorable & of course Paulie was the best!\r\n0\tIt is considered fashion to highlight every social evil as a result of patriarchy and male dominance, however moronic this illogical 'logic' may be. However within the story and theme of the film, there is no grey area and the woman who should be called the film's antagonist, is the ''villain of the story''. Under no circumstances can what she did be justified. Sexuality of women is just hype in this case and has nothing to do with the actuality. It is betrayal of the ultimate sort. The man ended up spending his resources and time in the wasteful raising of another man's offspring. To top it all, the most feeble of arguments raised by the 3 'liberated' female characters in the climax is pathetic. A woman's sexual needs are no excuse for her to commit adultery and continually betray her husband and worse, there are no other children. So in essence his life has been wasted. In some societies where justice still prevails, such situations result in the execution of the unjust.\r\n1\tHi everyone my names Larissa I'm 13 years old when i was about 4 years old i watch curly sue and it knocked my socks of i have been watching that movie for a long time in fact about 30 minutes ago i just got done watching it. Alisan porter is a really good actor and i Love that movie Its so funny when she is dealing the cards. Every time i watch that movie at the end of it i cry its so said i know I'm only 13 years old but its such a touching story its really weird thats Alisan is 25 years old now. Every time i watch a movie someone is always young and the movie comes out like a year after they make it and when u watch it and find out how old the person in the movie really is u wounder how they can go from one age to the next. Like Harry Potter. That movie was also great but still Daniel was about 12 years old in the first movie and i was about 11. SO how could he go from 12 to 16 in about 4 years and I'm only 13. I'm not sure if he is 16 right now i think he is almost 18 but thats kind of weird when u look at one movie and on the next there about 4 years old then u when they were only 1 in the last.I'm not sure i have a big imagination and i like to revile it.I am kind of a computer person but i like to do a lot of kids things also. I am very smart like curly sue in the movie but one thing i don't like in the movie is when that guy calls the foster home and makes curly sue get taken away i would kill that guy if he really had done it in real life. Well I'm going to stop writing i know a write a lot sometimes but kids do have a lot in there head that need to get out and if they don't kids will never get to learn.<br /><br />Larissa\r\n1\tWhen I first saw the Romeo Division last spring my first reaction was BRILLIANT! However, on future viewings I was provided with much more than masterful film-making. This picture has a singular voice that will echo throughout the annuls of film history.<br /><br />The opening montage provides a splendid palette which helmer JP Sarro uses to establish his art on this canvas of entertainment.<br /><br />Sarro truly uses the camera as his paintbrush while he brings us along on a ride that envelops the audience in a tremendous action movie that goes beyond the traditional format we have become accustomed to and dives deeply into dark themes of betrayal, revenge and the importance of companionship. This movie is any director's dream at its very core.<br /><br />However, Sarro was not alone in this epic undertaking. The writing, provided by scribe Tim Sheridan, was just as breathtaking.<br /><br />The dialogue was so precise and direct that it gave the actors such presence and charisma on the screen. Specifically speaking, the final scene (WARNING: SPOILERS!!! SPOILERS!!!) where Vanessa reveals herself to be one of the coalition and a villain all the time, is written in such a dark tone that it is one of the most chilling endings I have ever seen. Sheridan is the next Robert Towne.<br /><br />In a final note it is obvious that this production was no small feat.<br /><br />Therefore much praise must be given to producer Scott Shipley who seems to have the creativity and genius to walk next to Jerry Bruckheimer. Never before have I witnessed a production so grand with so much attention directed at every little detail. A producers job is one of the hardest in any movie and Shipley makes it look easy.<br /><br />All in all this film combines creative writing, stunning production and masterful direction. This is the art of film at its best. When the ending of the film arrives the only thing that is desired is more.<br /><br />The Romeo Division is groundbreaking, a masterpiece and, most importantly, The Romeo Division is indeed art.\r\n0\tSteve McQueen has certainly a lot of loyal fans out there. He certainly was a charismatic fellow, one of the most charismatic the big screen ever knew. But even McQueen can't save this turkey of a film, shot with what looks like a brownie camera in the actual locations in St. Louis.<br /><br />McQueen's a new kid with no criminal record brought into the planning of a bank heist by one of the other gang. There's more than a broad hint that there's a gay relationship going on between young Steve and David Clarke. He's not liked at all by the other heist members, mainly because of his lack of criminal resume. <br /><br />Steve also has a girl friend in Molly McCarthy and she suspects something afoot, especially when he starts hanging around with Crahan Denton and James Dukas as well as Clarke, all pretty rough characters. That would certainly get my suspicions aroused.<br /><br />The Great St. Louis Bank Robbery had two directors Charles Guggenheim and John Stix. Guggenheim did mostly documentaries and Stix didn't do much of anything. One of those two jokers decided Steve's performance was best served by doing a bad Marlon Brando imitation. <br /><br />This film may go down as the worst ever done by Steve McQueen. I'm willing to bet that Dick Powell and Four Star Productions had already signed him for Wanted Dead or Alive because I can't believe they would have if they saw this.<br /><br />Or they would have seen something the public would have overlooked except for the dressing for this turkey.\r\n0\t\"There are many different versions of this one floating around, so make sure you can locate one of the unrated copies, otherwise some gore and one scene of nudity might be missing. Some versions also omit most of the opening sequence and other bits here and there. The cut I saw has the on-screen title WITCHCRAFT: EVIL ENCOUNTERS and was released by Shriek Show, who maintain the original US release title WITCHERY for the DVD release. It's a nice-looking print and seems to have all of the footage, but has some cropping/aspect ratio issues. In Italy, it was released as LA CASA 4 (WITCHCRAFT). The first two LA CASA releases were actually the first two EVIL DEAD films (retitled) and the third LA CASA was another film by the same production company (Filmirage), which is best known here in America as GHOSTHOUSE. To make matters even more confusing, WITCHERY was also released elsewhere as GHOSTHOUSE 2. Except in Germany, where GHOSTHOUSE 2 is actually THE OGRE: DEMONS 3. OK, I better just shut up now. I'm starting to confuse myself!<br /><br />Regardless of the title, this is a very hit-or-miss horror effort. Some of it is good, some of it isn't. I actually was into this film for the first half or so, but toward the end it became a senseless mess. A large, vacant hotel located on an island about 50 miles from Boston is the setting, as various people get picked off one-by-one by a German- speaking witch (Hildegard Knef). Photographer Gary (David Hasselhoff), who wants to capture \"\"Witch Light,\"\" and his virginal writer girlfriend (Leslie Cumming), who is studying witchcraft, are shacking up at the hotel without permission. Along comes real estate agent Jerry (Rick Farnsworth), who's showing off the property to potential buyers Rose (Annie Ross) and Freddie (Robert Champagne) Brooks. Also tagging along are their children; pregnant grown daughter Jane (Linda Blair) and very young son Tommy (Michael Manchester), as well as oversexed architect Linda Sullivan (Catherine Hickland - Hasselhoff's wife at the time). Once everyone is inside, their boat driver is killed (hung) and the boat disappears, so they find themselves trapped and basically at the mercy of the \"\"Lady in Black.\"\"<br /><br />So what can you expect to find here? Plenty of unpleasantries! One of the characters has their lips sewn shut and is then hung upside down in the fireplace and accidentally slow-roasted by the rest of the cast. There's also a crucifixion, witches eating a dead baby, a swordfish through the head, someone set on fire, a possession, a Sesame Street tape recorder, the virgin getting raped by some demon, a guys veins bulging and exploding thanks to voodoo doll pokes and some other stuff. From a technical standpoint, it's a nice-looking film with pretty good cinematography, a decent score and good gore effects. The hotel/island setting is also pretty nice. Blair (particularly at the end) and Ross both seem like they're having fun and Knef is great as the evil witch. Even though people like to ridicule Hasselhoff these days, he's not bad in his role, either.<br /><br />On the down side, despite all the gore, the film seems somewhat dull and it gets monotonous after about an hour. The supernatural themes are muddled and confusing, too. When characters are being swept into the witches lair to be tortured and killed, the filmmakers unwisely decided to superimpose the screaming actors over some silly looking red spiral vortex effect that looks supremely cheesy. And the witch lair itself is vacant and cheaply designed with unfinished lumber. And while most of the cast is at least decent, a few of the performances (particularly the \"\"actress\"\" who plays Hasselhoff's girlfriend and the kid) are so bad they're constantly distracting.\"\r\n1\t\"Those childhood memories...when things were new, and we were filled with curiosity about the world around us; as we took those initial first steps in the long journey we call life.<br /><br />One of the initial memories I have from childhood is this animated program \"\"Galaxy Express 999,\"\" about a young boy named Tetsuro, who goes on a train ride around the galaxy, in the hopes of gaining a mechanical body in order to avenge the senseless death of his mother at the hands of cold-hearted, trophy gathering mechanical hunters. Accompanying Tetsuro on his journey is Maetel, a woman of exquisite golden beauty who reminds him of the mother he lost all those years ago...<br /><br />Back in the early-80's, as a boy who attended kindergarten and the early years of elementary school in Seoul, South Korea, \"\"Galaxy Express 999\"\" was a phenomenally popular animated program imported from Japan, which inspired young boys who tuned in to dream of countless adventures in their often tumultuous and exciting journey through life that awaited them. The memories of tuning into this animated program on weekdays between 8 to 9pm before bed time...<br /><br />Those were some wonderful memories, never to be had again...<br /><br />As I moved to America, and while residing here for over 2 decades, I sometimes wondered about that time and place, in a country thousands of miles away divided from America by an enormously vast ocean, of this childhood program, with its hit theme song, and of the boy named Tetsuro, his protective companion Maetel, the enigmatic train conductor, and of the spacefaring train Galaxy Express 999.<br /><br />Many, many years passed...<br /><br />Last summer while I was in Korea, I was able to track down a copy of the original \"\"Galaxy Express 999\"\" (1979) on DVD, and it brought back a lot of nostalgic, heartfelt memories. \"\"Galaxy Express 999\"\" remains as captivating as the first time you discovered it all those years ago, opening up those nostalgic memories of new discoveries, an important stepping stone for young boys who tuned in and embarked on their life's journey into manhood.<br /><br />Here's to wonderful memories. \"\"Good-bye, Maetel. Good-bye, Galaxy Express 999...<br /><br />Good-bye, to my childhood.\"\"<br /><br />10/10\"\r\n1\tIt was a saturday night and a movie called BASEketball was on TV. I had always wanted to watch it but never got around to it when it was in the cinema. Boy was i mistaken. Words cannot describe how funny this film is, starring the creators of South Park, who share a natural on screen chemistry when being funny. I taped the replay the next day and exactly one week after watching it for the first time, i have seen it 7 times!!. Im obsessed with it, and i know anyone who appreciates trey and matts work will appreciate this movie. A MUST SEE, THIS IS MY #1 COMEDY OF ALL TIME\r\n0\t\"I once used Wesley Snipes' name as a clue to go ahead and watch a new, untried film in which he appears. So now, for the first time, my Snipes-Method of film recommendation has failed. Utterly. I should first have come here to see these reviews.<br /><br />Snipes ought to be ashamed to allow his otherwise earnest efforts to be so wasted in \"\"The Contractor\"\".<br /><br />One of my worst flick fears has come to bitter fruition. I feared that the shaky, blurry, pseudo-documentary, \"\"unconsidered\"\" directing and editing style (first brought to my attention by the Paul Greengrass-directed \"\"Bloody Sunday\"\") might propagate to other films. Greengass' sickening style was then brought to nauseatingly new heights in the last two of the Bourne trilogy films. My fear had come to pass. In my opinion, these films are made really bad by these motion-sickness-inducing methods, which mistake blurry swipes for \"\"action-enhancement\"\". But the \"\"Bourne Franchise,\"\" as Greengrass so loving calls his cash cow, apparently convinced others in Hollywood to go unprofessional in the quest for fast, big bucks.<br /><br />Read my lips, you Hollywood types. Action needs to be clearly photographed and presented, not merely hinted at by poor, lazy cinematographic techniques.<br /><br />And \"\"The Contractor\"\" goes so far as to emulate \"\"The Bourne Ultimatum\"\" in inanely-repeated sound bites, in hopes their juvenile (apparently-evaluated) audiences can't sense them. For example, if I hear a cop radio crackling \"\"Yankee-Romeo\"\" one more time, I'll just scream. The chances are good I won't hear it again: I certainly won't ever view \"\"The Contractor\"\" again.<br /><br />I recommend to those of you who have yet to see \"\"The Contractor\"\": just be content with the tranquility this lack affords to your life.<br /><br />2 out of 10; I am tempted to lower that to a 1.\"\r\n0\tI came into this movie really wanting to line it. I thought the premise had a lot of potential and was ripe for an interesting movie. Don't get me wrong here, I wasn't expecting Citizen Kane, I was taking this for the B movie that it is. That said, it still fell short of the expectation. The historical aspect of the story is glazed over and the ending left me a bit cold. The acting in the movie was very wooden. All in all I give it 4 for a great idea, but the movie could have scored much higher with a bit more attention to movie making fundamentals. Is it worth seeing? I didn't wish for my two hours back, but I don't know that I'd recommend it to others.\r\n0\t\"Space Camp, which had the unfortunate luck to be planned around the time of the Challenger accident, deserves such luck. The \"\"stars\"\" make a mockery of acting, Lea Thomson actually being turned sideways, when asked for more than her usual wide-eyed innocent smile, presumably to mask her risible attempts. The movie is at times hilarious, when it begins to ask far too much of you. A small boy keeps a multi-million dollar robot in his closet which breaks when given too many commands by the hordes of cliched dorm-mates. This hackneyed and unlovable machine, \"\"Jinx\"\", is a major player in the ridiculous premise of the movie, which seems part Short Circuit, part 2001 by the Airplane team. I shan't bore you with this, suffice it to say you can only laugh when faced with it. Having said all of this, it is enjoyable to watch, in a SeaQuest, Saved by the Bell kind of way. The romance and technology, beware, are as unbelievable as each other. Also, if you're an eighties freak, its unmissable for the amusing performances of Kate Capshaw (Willie from Temple of Doom) and, obviously, Lea Thompson. Also, Joaquin Phoenix puts in a dodgy turn as a sort of wannabe Goonie who befriends Jinx. Do not go near this movie if you are not a fan of trash.\"\r\n1\tI have never commented on a film before. I watched this movie with my girlfriend last night. I've read comments saying this movie stays with you. It does. It's been almost 24 hours and I am still completely affected. This movie left me questioning my own self. How can I possibly compare myself to a character such as Ben who is totally selfless. I loved this movie. I love movies that keep me guessing and wondering until the end. I feel two emotions predominantly, happiness and sadness. An amazing feel good movie and a very sad one too. I so wanted Ben and Emily to be together, but in the end, they were, forever. If you haven't seen this movie, get it and watch it. Just make sure you have no distractions. You'll want to see every nuance in this picture. One for my library.\r\n0\tThis is a very bland and inert production of one of Shakespeare's most vibrant plays. I can only guess that the intent was to make the play as accessible and understandable as possible to an audience that has not been exposed to Shakespeare before. By doing this, though - by making every line clear and every intent obvious - they have drained the play of life and turned it into a flat caricature. Somehow, it is actually boring - a very hard feat given such wonderful material.<br /><br />The acting is forgettable at best - Sam Waterston as Benedick and Douglas Watson as Don Pedro. Others, however, do not fare so well. April Shawnham's Hero is a pouty, breathless airhead that frequently provokes winces. Jerry Mayer's Don John is a nonsensical cartoon character on the level of Snidely Whiplash (though Snidley was much more enjoyable).<br /><br />F. Murray Abraham (you know, the guy who killed Mozart?) is not in this version, unless he was in disguise and had his name removed from the credits.<br /><br />Given that the producer, Joseph Papp, is basically a theater god, this production is not only disappointing but head-scratching as well.<br /><br />Don't bother with this. Watch Branagh's Much Ado instead - his version is overflowing with vitality and humor, to say nothing of wonderful performances.\r\n1\t\"This is a film for entertainment; I did not think the world made social commentary from one small film. I personally find this film funny, audacious, and memorable. It is a fantasy not unlike a cinder girl becoming a Princess. This film was done very well I might add, in the 70's a time of the best experiments in film with being able to mention a person's sexuality. This movie is not about a person being homosexual or not, it is however about love, in all it's strange forms. This film does show some of the realities of being gay in the 70's in Hollywood, or in California. Pretty boys being looked after by older not so pretty men. Women who had to stay deeply locked in the emotional closet or risk not having a career. Bathhouses were an integral part of the gay community.<br /><br />THEN the fantasy begins!! Let us mix a lesbian with a gay and add some liquor and what do we have? Well this movie, which in ANY way was better than that dismal redo \"\"The Next Big Thing\"\". Perhaps someone should have asked the entire crew to see this movie and then try to do better.<br /><br />I enjoyed this movie when I saw it in the 70's and it still brings a smile to my lips now. I heartily advise anyone who wants a funny, tender movie- to curl up with some popcorn and have some fun. Some people need to lighten up!!! And this is the film you should do it with!<br /><br />\"\r\n0\t\"Luckily I did not pay to see this movie. Also, I cannot even reveal any spoilers because I willingly WALKED OUT after forty minutes of the movie. It was that bad. I laughed once, when the Yahoo! billboard fell on the guy, and the theme song came on. However, that was only because I thought it was making fun of it, but then I realized it was yet ANOTHER product placement. <br /><br />I loved the cartoon. I used to watch it almost religiously. (although i missed the last episode. I heard that they show Dr. Claw and it was nothing more than a Claw, somebody comment on the show's page) The cartoon had Penny and Brain alot more than the movie had, as to that point. I hated the setup of the whole thing, reminiscent of Robocop. Then Broderick screws with the whole feeling of Inspector Gadget. He is not nearly as clumsy as the cartoon was. Another fact is his gadgets actually work to the point I saw, except for the oil slick. He also screwed with the tone of \"\"Wowsers\"\" which used to be in an excited tone. I felt so disappointed that they slaughtered the cartoon so badly. Everybody else felt that way too. Us 14-17 year olds remember the cartoon fondly and we loved every minute of it.<br /><br />I went into the movie with an open mind, knowing that they would have screwed with the cartoon. I was taken aback at how retarded the movie was. It relied on sight gags, and stupid dialogue for humor. Disney relies on pain and physical humor to push a kids movie along. Product placement is pointless in this film, and it shows. The wise-cracking car is not that good at cracking wise. The gadgets look nice, but they were almost overly glossy. The cartoon was a better look. The silly scenes were crap. In the 40-45 minutes I watched the movie, not one laugh was heard, and they laughed at the Dudley-Do-Right preview. This movie should not be watched by people who want intelligence in their family entertainment. I highly recommend \"\"The Iron Giant,\"\" which was sad, but very very good. This movie is a travesty to the whole family drama.------------1\"\r\n0\t\"Creepy & lascivious wolf. The young \"\"Red\"\" is wearing full make-up, and extremely short shorts & robe. Got about 20 minutes through and realized it could be a pedophile's dream come true. The \"\"up-beat\"\" music sounds a lot like something I'd hear at a strip club. I actually think this movie is a sick joke - it's not a family movie. Gross, glad I was watching this with my daughter, I don't want her to think it's normal for families to view quasi kiddie porn together. Very bad, Very sad it's sold as a family film, Joey Fatone will probably be embarrassed he was in it. And what's with advertising it as a \"\"special effects spectacular\"\"??? The effects do look low budget, gawd awful.\"\r\n1\t\"In Joel Schumacher, you have one of the most inconsistent film makers of all time. But this is common knowledge; I think his main problem is the array of genres that he covers whilst at the same time, failing to develop any sort of certain style that might label him an auteur. Hitchcock liked his suspense and his horror/thriller; Chaplin liked his comedy; Scorsese likes his crime driven mafia stories amongst others and Spielberg likes his large scale, big budget adventure films that combine just enough violence for the adults and fun for the kids. Other more obscure examples include Kubrick and Welles who covered too much to write about here.<br /><br />But Schumacher is the sort of guy who makes a flawed film revolving around a great idea or a really quite enjoyable film revolving around a seemingly dull premise. Falling Down had a great idea behind it but I found it flawed and anticlimactic with too many scenes seemingly relying on comedy. Batman is a superhero; superhero films have been big hits recently so how he managed to make not one but two appalling superhero films is beyond me. Then comes 8MM; a film with a basic premise that is executed in an impressive manner before Tigerland which is Schumacher's best film from what I've so far seen, in my opinion. With the war genre, laughter isn't something you'd associate with it for most of the time. I can remember scoffing at the absurdity of the D-Day landings during Saving Private Ryan: at the time when I first saw the film, I had not much knowledge of the Second World War bar when it began and finished. My eyebrows were up, my mouth slightly open with a weak 'I can't believe it smile' on my face. Needless to say, it was because of that film I searched out learning a bit more on what that event was all about and the war as a whole. In Tigerland, you are invited to laugh at the absurdity of war through Bozz (Farrell), a tough and egotistical soldier training for the Vietnam War.<br /><br />But what's clever here is that there are no jaw dropping war scenes of fighting and death and destruction; just one man and his battle with the system for most of the time. The things he says and the audacity at which he deals with his predicament is reminiscent of a school child winding up a series of teachers at an extremely strict boarding school. Tigerland may borrow from Full Metal Jacket in the sense it is a training routine for the Vietnam War but egos and superegos play more of a part here, I think. The superegos that are the drill sergeants go up against Bozz whose ego is extremely large. There is also the third part of Freud's triangle that sneaks into Bozz: the ID. Compared to all the other soldiers who all have rather large egos, Bozz is the only one brave enough to show it in front of the sergeants thus suggesting he is allows what he shouldn't do to float to the surface and express itself: \"\"You are all dead in this situation!\"\" barks a sergeant. \"\"Any Questions?\"\" \"\"Yeah, if I'm dead how come I can ask a question?\"\" replies Bozz whose punishments such as push-ups and dirt eating seem to un-faze him in true ID style; that is he enjoys the punishments.<br /><br />Also regarding the superegos, Bozz at one point tries to command a group of soldiers in field training. This is something the existing captain of the squad cannot do thus suggesting he is lacking in both the superego required for the job and the confidence to tell Bozz he is in charge. What follows is an actual conversation between Bozz and an existing drill sergeant who gives him his Christian name. This is where Private Wilson's (Whigham) character steps in: His uncontrollable rage and anger at Bozz explodes at certain time all culminating in the film's only real scenes of a shootout which is in the form of a training exercise in a river. Wilson cannot control his impulses and dislike toward Bozz and acts out.<br /><br />What I also liked about Tigerland is that it's shot in such a way that is brave. While lacking in innovation, Tigerland seems to use lower grade film stock or lesser cameras to get across its gritty look. Make no mistake that this could have been a pretty looking film with lots of colour and attractiveness. But, we get a documentary approach in the final piece making everything look like it was shot on a typical everyday camera for TV; the emphasis on the hand held is also apparent but Schumacher is clever: he never allows the film to become too much like a mockumentry whilst at the same time suggesting the film's budget could've been half of what it was. It's worth saying here that Spielberg said he wanted Saving Private Ryan to look like actual reel footage or something along those lines and as if it was recorded from the war scenes.<br /><br />While being very funny and entertaining, Tigerland is still a great study of what makes people tick; not necessarily in war but in the closest possible substitute. Its study on one man and how much he hates the system that he cannot even take it seriously is fascinating as is the drive of each soldier. There are several memorable scenes and situations culminating in a happy, if not unhappy ending that'll open your mind and make you think about what it's perhaps really like in the military.\"\r\n1\tI have seen this film numerous times and for the life of me, I cannot understand why some people compare this to BABE. This film is not about the secret life of ALL animals who secretly can talk. Instead, it is about a Parrot who learns to talk to help his owner, a little girl with a serious stammer, overcome her speech impediment only to be separated from her in a heart-wrenching scene early on. Then the great journey begins. Paulie the Parrot sets out to try and find his one great friend, Marie.<br /><br />Along the way, he meets several wonderful people and numerous nasty people. He falls in love with a girl parrot and loses her. He gets conned into a life of crime and then captured by a bad scientist who wants to exploit him.<br /><br />He recounts his tale to a sympathetic Janitor in the Lab who agrees to help him escape and find his beloved Marie.<br /><br />Tony Shaloub shines as the kindly Janitor who has an open mind and big heart and who determines to help little Paulie despite the risks. Jay Mohr plays the voice of the Parrot AND one of the seedy characters he comes across.<br /><br />There is a little suggestive language but this film is appropriate for most kids and even more so if the parents join in on the fun and watch too. It is a witty, clever, epic animal-adventure story and ultimately a great love story about a Bird and his little girl. He search for Marie ends with a quite an unexpected surprise for most people who don;t know much about Parrots.<br /><br />Kids who have seen the wild Green Parrot Tribes in Los Angeles and Pasadena will especially benefit from seeing this film and understanding that Birds, especially Parrots are not disposable pets. All children everywhere, will see that Pets form deep attachments themselves and that the love and loyalty of a dog or parrot is a gift to be treasured.<br /><br />so no BABE here, more of an incredible journey with a twist.<br /><br />Enjoy and try no to tear up during the sad parts.\r\n1\tThe lovely Danish actress Sonja Richter steals this film from under the noses of everyone, no small feat considering the terrific performances surrounding her.<br /><br />Richter plays Anna, an out-of-work, independent-minded, somewhat neurotic (and perhaps suicidal) actress who lands a desperation job looking after a wheelchair-bound, muted, aged father named Walentin (the great Danish actor Frits Helmuth, who died at 77 shortly after this film was made).<br /><br />SPOILER ALERT<br /><br />Walentin refuses to respond to anyone --until he confronts the gifted Anna, whose whimsical and mischievous manner brings the poor old battered devil back from a self-imposed death sentence.<br /><br />Writer/director/actor Eric Clausen has made a strong film about the difficulty a ponderous businessman son (Jorgen, played by Clausen) has loving a father who has never accepted him. The film sags toward the end, but Clausen has some important things to say about euthanasia, the nature and value of loving and caring, and how one person, the irrepressible Anna, can alter the course of a human life. Highly recommended. Sonja Richter's performance is alone worth the price of admission.\r\n1\tThere have been many film and TV productions of Jane Eyre each with aspects to recommend them, but I suspect this is the one that people will still be discovering and falling in love with decades from now. It's just a classic (and offers much more of the story than others do). Timothy Dalton is utterly in his element as Rochester, rarely missing the mark; his performance is astonishingly nimble and many-colored, while never straying too far from the dark complexities of the character. Zelah Clarke's Jane is more cerebral than otherworldly, but she makes a perfect foil for Dalton (who, appropriately, towers over her!) The nuances of her performance come through better on a second viewing (once you've absorbed the shock of Dalton's charisma). There are some technical faults and a couple of moments where the production values could have been better; though this pretty much was a top-of-the-line production by the BBC's standards of that time. But, it's the performances that are the real pleasure. Don't miss this one!\r\n0\t-me and my sister have right now watch that movie. we have laugh to the deaf. can u imagine on covers there is nomination for Oscar?? --first, musician have mix about 4-5 different style of music... and the music is not synchronized with the scenes and the character moves...<br /><br />---main character Silvester do not fit in there. he look like Mexican Tarzan.<br /><br />----Russian soldiers are everything but not Russian faces :-) -----ok, the main points: 1. airplane called charter painted in black...<br /><br />2. what is an idea when Rambo go to jump from the airplane, but he stuck? rope mix 3. a Girl? the best scene is when she dies. She means a lot to him. he knows her for ages? he cries for her, ... o my god samurai 4. how many arrows is he got? his arrow bag is always full of the arrows? i didn't notice a scene where he collect them - but i have seen the scene where arrow stay in the Vietnam solder head - that is very important 5. how many rockets helicopter can hold??? (real one) i have seen 4. but Rambos have hit about 20 of them.<br /><br />6. the main part. what the Russian special army helicopters do in Vietnam????????? after the war? 7. first scene when he enter into Vietnam's camp... his first idea was to liberate the refuge who is standing on the tree on the open space' wow, what an idea than again: 1. with the knife u can cut the iron wire? maybe only made in Vietnam? 2. mortar - using for hit one running man? o my god, u Americans really need to learn about the weapons! do u know how much it takes to calibrate the mortar (i think writer have been watching to much movies from II world war)\r\n0\tJohnny Weissmuller's final film as 'King of the Jungle', after 16 years in the role, TARZAN AND THE MERMAIDS, is bound to disappoint all but the most ardent of his fans. At 44, the ex-Olympian, one of Hollywood's most active 'party animals', was long past the slim athleticism of his youth, and looked tired (although he was in marginally better condition than in his previous entry, TARZAN AND THE HUNTRESS).<br /><br />Not only had Weissmuller gotten too old for his role; Johnny Sheffield, the quintessential 'Boy', had grown to manhood (he was a strapping 17-year old), so he was written out of the script, under the pretext of being 'away at school'. Brenda Joyce, at 35, was appearing in her fourth of five films as 'Jane' (she would provide the transition when Lex Barker became the new Tarzan, in 1949's TARZAN'S MAGIC FOUNTAIN) and was still as wholesomely sexy as ever.<br /><br />Produced by Sol Lesser, at RKO, on a minuscule budget, the cast and crew took advantage of cheaper labor by filming in Mexico. While the location gave a decidedly Hispanic air to what was supposedly darkest Africa, veteran director Robert Florey utilized the country extensively, incorporating cliff diving and an Aztec temple into the story.<br /><br />When a young island girl (Tyrone Power's future bride, Linda Christian) is rescued in a jungle river by Tarzan, he learns that a local high priest (George Zucco, one of filmdom's most enduring villains) had virtually enslaved the local population, threatening retribution from a living 'God' if they don't do his bidding. The girl had been chosen to become the 'God's' bride, so she fled. Faster than you can say 'Is this a dumb plot or WHAT?', the girl is kidnapped by the priest's henchmen and returned to the island, and Tarzan, followed by Jane, colorful Spanish character 'Benjy' (charmingly played by John Laurenz, who sings several tunes), and a government commissioner are off to take on the Deity and his priest (poor Cheeta is left behind). After a series of discoveries (the 'God' is simply a con man in an Aztec mask, working with the priest in milking the island's rich pearl beds), a bit of brawling action, and comic relief and songs by Benjy, everything reaches the expected happy conclusion.<br /><br />Remarkably, TARZAN AND THE MERMAIDS features a musical score by the brilliant film composer, Dimitri Tiomkin, and is far better than what you'd expect from this 'B' movie! <br /><br />While the film would provide a less-than-auspicious end to Weissmuller's time in Tarzan's loincloth (he would immediately go on to play Jungle Jim, a more eloquent variation of the Ape Man, in khakis), the talent involved lifted the overall product at least a little above the total mess it could have been.<br /><br />Tarzan was about to get a make over, and become much sexier...\r\n1\t\"That film is absolutely fantastic!! If you watch it with your friends it can be a very nice day... Obviously you have to know that the film is stupid and very bad directed and acted (Tomba/Unziker what a couple), and that is probably the worse film in the world, but you can enjoy it very much. We watched it in 19 and it was a very nice evening. The best scenes are the first one, when the criminals kill the friend of Alex, and he tries to act like a desperate, and the result is a comic scene of first category... And then when he shows to Leva (Antevleva, what a name) the \"\"Palassio di giusstissia\"\", and then the accident of Leva, that once is going on her car out of the road, and a second later, the car is completely empty! What a magic!\"\r\n0\t\"At first glance this gives the impression that it is going to be a laughable blaxploitation flick, and it does contain moments where it veers in that direction. However, the basic story idea is much stronger than might be expected, and is a respectable effort at portraying racial issues in the World War II era Army. The recognizable cast is hit and miss, with Glynn Turman, Richard Pryor and the underused Billy Dee Williams faring best. Stephen Boyd, however, stops just short of twirling his bushy mustache in an overindulgent star turn.<br /><br />The obviously low budget leads to inconsistency in the production values. The locations are great, the effects and action are weak. Imagine if \"\"Saving Private Ryan\"\" had consisted of half the platoon getting killed exactly the same way Vin Diesel's Caparzo had (except we do get to see the shot because they effects can't handle it), then Hanks, Damon and Burns drove around in a jeep and shot five Germans for the climax. Yet, the denouement, with the heroic soldiers receiving no respect for their accomplishment because they are black, and Boyd's racist Captain being effected by this, is compelling, as are the sequences of of Turman's character writing in a journal of his imagined exploits if the soldiers were allowed to fight instead of digging latrines.<br /><br />In short, \"\"Black Brigade/Carter's Army\"\" doesn't quite succeed. But it's a respectable failure, not a bad joke. It could be remade as a very good film, and, as it stands, is an interesting effort.\"\r\n1\tThe National Gallery of Art showed the long-thought lost original uncut version of this film on July 10, 2005. It restores vital scenes cut by censors upon its release. The character of the cobbler, a moral goody-goody individual in the original censored release of 1933 is here presented as a follower of the philosopher Nietsze and urges her to use men to claw her way to the top. Also, the corny ending of the original which I assume is in current VHS versions is eliminated and the ending is restored to its original form. A wonderful film of seduction and power. Hopefully, there will a reissue of this film on DVD for all to appreciate its great qualities. Look for it.\r\n0\t\"I thought it was a New-York located movie: wrong! It's a little British countryside setting.<br /><br />I thought it was a comedy: wrong! It's a drama.... Well, up to the last third, because after the story becomes totally \"\"abracadabrantesque\"\", the symbolic word for a French presidential mandate. It means, close to nonsense even it the motives would like to bring a sincere feeling.<br /><br />What Do I have left? Maybe, a good duo of actress: Yes, I know, they are 3 friends, but the redhead policewoman is a bit invisible for me. The tall doctoress surprises by her punch, and McDowell delivers a fine acting as usual, all in delicate, soft and almost mute attitude. This gentleness puzzles me, because as other fine artists or directors, the same pattern is repeating over and over. In her case, it's like, whatever the movie, it's always the same character defined by her feelings, her values, who lives infinite different stories. I still don't know how to set the limit (or the fusion) between the artists and the works.<br /><br />Another positive side of this movie is its feminine touch & the interesting different points of view. The women have each their own way of living, even if they are all single. It brings a lot of tolerance and learning to witness how a same and unique reality can be perceived in as many ways as people.<br /><br />Finally, the movie is quite viewable, but the great final cuts the desire of a next vision.\"\r\n1\tEvening is the beautiful story of the flawed love of a mother. The movie split in time, is magically shot, amazingly acted and has a touching script. Vanessa Redgrave plays Anne Grant Lord, a woman sun-setting out of life. Lying in her bed, her mind remembering and misfiring, she recalls her first mistake. Claire Danes plays the young Anne, giving a youthful vitality to dying bed ridden woman. Daughters Nina (Toni Collette) and Constance (Natasha Richardson) try to decipher the real story from the disheartening dementia. Her first mistake revolves around Harris Arden (Patrick Wilson); the man her best friend Lila (Mamie Gummer) deeply loved. The daughters must come to terms with their mother's past, and their futures. The cast is glowing in Evening. The collective acting energy of this movie could have powered the equipment for the production of this entire film. I am so glad to see Claire Danes working again, especially in this role. She is so young, and alive, fully living the joys, mistakes and heartbreak of young Anne's first mistake. This is a true feat when you realize she is playing a woman, dying in bed. When her life overwhelms her, you can feel her desire to crack and her hopeless hope that she won't. Some of her facial expressions grinded on me a little, but over all her performance was so radiant, I was left with that only as a side note. Toni Collette continues to prove that you can be a powerful actress without being a super model. She plays the black sheep of the family; a little lost. Nina finds a great deal of strength in her mother's mistake. Collette delicately avoids creating a cruel character who revels in the mistakes of her mother, instead choosing the wiser path of learning from her mother's mistakes. There is a great deal of infighting between Nina and her sister Constance. Their fights remind me of ones I have with my sister all the time. Mamie Gummer, who plays Anne's youthful best friend, is wonderful. Her character is stuck between her heart and her status in society. Even when she is crying and her heart is breaking, she is incredibly regal and charming. I can't wait to see her act in something else in the future. Vanessa Redgrave's performance is very hard for me to describe. Her talent at making her mental status ambiguous without being wacko or even especially tragic is why it is so powerful. The audience does not know if she is making up the story because she is slipping away or if these events truly happened. Physically and emotionally speaking, Redgrave is acting in a box. Not much physical space and limited emotional range might have been a stunner to a lesser actress but she makes the limitations work for her. I was constantly amazed. The movie is definitely woman-focused but the men in the movie are not just accessories. Patrick Wilson is mesmerizing as Harris. It is no wonder that everyone in the movie is in love with him, I sure was. Buddy Wittenborn is Lila's brother, spiraling out of control. Hugh Dancy spirals Buddy out of control without sending his acting down the drain. Glen Close has my favorite scene in the movie. It reminded me of the famous scene from Monster's Ball. It is terrible and jaw dropping grief. I was utterly stunned. The one acting disappointment was Natasha Richardson. While her fight scenes were memorable, most of her acting reeks of melodrama. It would have suited her to take an acting bath before we had to breathe her stink. It's a good thing she wasn't in charge of the visuals. The visuals of the movie are sparkling. Cinematographer Gyula Pados couldn't make a film richer in color, light so perfectly matched to mood and emotion. The visual concepts of the flash back sequences are powerful and resonating. There were many scenes that could have been stopped, printed, mounted and sold as art. I admit it, I cried. Evening is a powerful movie. Evening is defiantly a chick flick but a really great chick flick. If you want to impress a woman with a movie choice, pick Evening.\r\n1\t\"In my opinion, the best movie ever. I love when people ask me what this film is about. I usually smile and say \"\"life\"\". They shrug and probably never give it another thought. The fact that everyone from every background can relate to some part of this movie makes it all that much more amazing. Definately a must see for everyone.\"\r\n1\tWhen the Bourne Identity arrived five years ago I have to confess that I didn't think much of it. At the time I was eleven years old, so perhaps I was too young to really get into the storyline and understand the whole scenario. Two years ago when the Bourne Supremacy arrived I thought it was a better movie than Identity but still didn't think it was as good as I expected it to be judging by the trailers. Over the past two years I had been told numerous times that the Bourne movies were amazing, many a time I had to bite my tongue and not say what I really thought about the movies. Until two months ago I couldn't have given a damn about the Bourne Ultimatum, I really had no intentions of watching it. But then I decided to go back and re-watch the first two before I came to any abrupt decisions. So I went out and bought both the original movies. And what a surprise it was to me when I was gripped by them. Identity I found the superior of the two, but Supremacy isn't far behind. They're both slick, action packed and thrilling pieces of cinema that I have watched numerous times since I bought them. Because of this I was first in line today to see the Bourne Ultimatum. And boy did Bourne Ultimatum not disappoint! <br /><br />Matt Damon was never one of my favourite actors until he appeared in the Bourne movies, I'd seen him in the Talented Mr Ripley, but I never thought much of him in general. However, it appears he was born to play Bourne (pardon the pun). Throughout this series we have seen the character change before our very eyes, in this movie we see Matt Damon at his very best, even better than he was in The Departed and I thought he was one of the best things in The Departed. You really do find yourself caring for the character and hoping that he finds out everything. Matt Damon plays the role with a quiet intensity and you always find his character extremely believable. The supporting cast of the movie were also absolutely outstanding. Joan Allen was one of my favourite things in Bourne Supremacy, here she excels herself. Her character is also very believable and she has some superbly acted moments towards the end of the movie. Julia Stiles turns up again as Nicky and finally we learn a bit about her character. Julia Stiles is a very underrated actress and I think she deserves a lot more roles, well decent roles, than she gets. David Strathairn is a newcomer to this series as Noah Vosen, he's definitely the bad guy of the movie and he really excels. He's definitely the nastiest character we've met, and some of the decisions he makes are truly nasty. Strathairn relishes the role and he too gets some superb scenes in the movie. Special mention must also go to Albert Finney who makes the most of his all too brief screen time, I will not say anything about the character, that's best left as a surprise, but trust me his scenes are some of the highlights of the movie.<br /><br />The Bourne movies have always had a strict focus on the storyline more than the action sequences, this isn't to say the trilogy lacks action sequences, good god no there's loads of them dotted all throughout the movies. But running throughout the movie is a very well written and well acted storyline. This storyline concludes in the best way imaginable in this movie. As I watched Supremacy the night before I saw Ultimatum it was nice because I could notice certain little parts. That very final scene in Supremacy, in New York, a lot more important that I ever imagined at the time. Won't spoil it for people but I recommend checking up on Supremacy before you see Ultimatum. Unfortunately though for a lot of people they will go to see Ultimatum purely because of the action sequences. This is the part where I should condemn such people and say they should see it for the storyline, but I'd be lying if I didn't say that my favourite parts of the Bourne series as a whole are the car chases. The mini car chase in Identity is one of my favourite car chases of all time. Well the action in Ultimatum has to be the best of the Bourne series. In fact the movie kicks off with an action sequence in Moscow. So in the duration of the movie we get numerous punch ups, all very violent and shockingly brutal. A bike chase that is absolutely amazing, many foot chases which are even more amazing, a thrilling car chase that is unforgettable, and oh so much more! But the highlight for me has to be the scene in Waterloo station, won't ruin it but for some reason had me gripped.<br /><br />So any flaws for the movie? In my eyes no, but if you are not a fan of the Bourne series or have not seen the previous two then I wouldn't recommend Ultimatum for you. The movie doesn't try to win over any new fans as it sticks to what the franchise does best and just adds a nice bit more storyline and action sequences on top. The Bourne Ultimatum is undoubtedly the best of the series and the best blockbuster of 2007. As a James Bond fanatic it is a great honour for me to say that Ultimatum is a lot better than a majority of the Bond movies, and trust me it takes a lot for me to say that. While Bourne as a whole might not be a better franchise than the Bond series, it is definitely nearly its equal.\r\n1\t\"This show has all the typical characters in a comedy: the good guy, the idiot, the pervert, the rich girl... but it's set on the 70's. That's the only difference that it has with other TV comedies. I don't know how you can like this show. Its humor is pathetic! I mean, the jokes are so direct... A typical dialog is this: \"\"Fez: Oh, Jackie I want to have sex with you. (audience laughs) Jackie: Fez you're a pervert. (audience laughs) Fez: Oh yes I am. (audience cheers and applauds)\"\" This isn't funny. I think that if it didn't have those laughs (I don't know how you call that in English, sorry) you wouldn't laugh at all. This isn't intelligent comedy, this is an insult to the public. I like most of the American comedies, but this isn't good at all. I would give it 4 out of 10. (Sorry for my poor English again.)\"\r\n1\t\"Yesterday I attended the world premiere of \"\"Descent\"\" at the Tribeca Film Festival in NYC. I had a great time. It was sold out and attended by all the major stars including fellow my-spacer Marcus Patrick.<br /><br />I give the movie 7.5 starts out of a possible 10 stars.<br /><br />The movie begins with Maya (Rosario Dawson) at college. You can envision the typical college environment with wild parties and flirtations going on. The photography in this film was excellent. She meets Jared (Chad Faust) and they become sweethearts. It appears like any other relationship in the beginning. The man is in quest of the woman's attention and affection and the woman is playing hard to get. Both played this well. Very innocent flirtation between the two. He invites her to his apartment and everything falls apart.<br /><br />The apartment is very dreary and dark. They eventually end up in the basement which is extremely dark and lit by numerous candles. This actually reminded me of a dungeon. Here is where he shows his true colors and proceeds to rape her. This is a very dark and gritty rape scene. This scene is not for the young or weak at heart. The rape scene is a little long and hard to take, but it is necessary for the rest of the movie that follows.<br /><br />Maya now starts to lose her soul to drugs and sex. She falls into her own abyss. She starts attending the wildest of parties and wakes up one morning in a room with no recollection on how she got there. She is told to go see Adrian (Marcus Patrick). The first thing I remember about this character is that they say \"\"he is the person who saves anyone who needs saving\"\". He is actually the one who introduces Maya to drugs. They begin a relationship of dependency which comes into play later in the movie. The club scenes at this point of the movie are photographed with extreme expertise. I thought they were well done and I noticed that the director of photography was applauded at the end of the showing during the credits by the audience.<br /><br />Maya is then back in college as a TA and who is in her class -- Jared her rapist!! You could see the confusion and emotion on Maya's face. What should I do?? What do I do next?? The shots of her face and the emotions are priceless.<br /><br />What unfolds next is not actually whats happening. She acts interested in Jared. She appears to be looking to revive the relationship and be sweethearts again. I was sitting there saying could this really be happening. It wasn't. Nothing could be farther from the truth.<br /><br />She invites him to her apartment and of course, he shows up. Now her apartment is dark and gritty. She has him strip down completely. He thinks he's going to get \"\"lucky\"\". She then teases him like any woman can. She's caressing him everywhere and he's getting excited. Note:: for anyone who plans on seeing this movie this scene is full frontal nudity - may not be right for the younger viewer.<br /><br />She then turns the situation around and she becomes the beast and proceeds to rape him. Once again, the scene is dark, gritty, and very rough.<br /><br />If you are going to see the movie and don't want to know what happens next, skip this paragraph and go on to the last paragraph.<br /><br />This is where Adrian reenters the picture. Maya has Adrian save(?) her by performing extremely rough male sex with Jared. She thinks this is the final revenge. Adrian continues to take all of Jared's manhood and strips his dignity to nothing. Marcus, as Adrian, plays this scene as believable as anyone can. He is a strong actor playing a strong character and the strength comes out all over the screen. After the movie, during a Q&A session, Marcus explained that this scene required a lot of trust between him and Chad. Maya believes that this revenge will save her but I don't think it does. One of the final scenes has a closeup of Mays's face and you see a tear roll down her cheek. This was a fabulous closeup scene and evokes constant discussion from anyone who goes to see this movie. Did she get the revenge she wanted?? Was it as satisfying as she expected?? In my opinion, it does not. It only makes matters worse.<br /><br />This is an excellent movie, will well acted roles, and I recommend it to anyone who is thinking about going to see it. I would just be a little hesitant if under 17 years of age. Rosario, Chad, and Marcus should be commended for jobs well done. The directing and photography must also be commended. It was a night that I enjoyed.\"\r\n1\tAnd I am a Nicole Kidman fanatic. I would pay to see and hear her read the Moscow phone book, which, for all I know, she may have been doing when she was speaking Russian in this movie. <br /><br />All four of the principals are excellent, but the movie itself is a number of good images and better scenes held together by nothing.<br /><br />While one is always ready to suspend disbelief while watching a movie, this one asks too much of the viewer. <br /><br />It could have been very funny (which it is in parts) or quite frightening (which it is in one scene) but the director didn't seem to know which way to go.\r\n1\t\"I don't think anyone besides Terrence Malick and maybe Tran Anh Hung makes cinema on a purer level than Claire Denis. That said, I don't love this, her newest film, quite as much as her 2001 masterpiece \"\"Trouble Every Day\"\" (although it comes very close), which itself is one of my absolute favorite films. It it only because the narrative here is possibly slightly too elliptical for it's own good. Don't get me wrong, the fact that this film barely has a plot at all is really one of the best things about it, but I think Denis took it about one degree farther than it needed to go and consequently the film does flirt with incomprehensibility, and a few key plot points should have been clarified somehow (like that the main character goes to South Korea to get his heart transplant, instead of just showing him there all of a sudden without any explanation of where he is or why he is there). Also some of the other characters seemed unnecessary and as if they were just excuses for Denis to use actors she likes yet again (Beatrice Dalle's character in particular is a little distracting because you keep expecting that she is going to have some significance). Still, the film is incredibly absorbing and the cinematography is beyond amazing. It is definitely very much a masterpiece in it's own way. At least as good as Denis' more highly-acclaimed \"\"Beau travail\"\", if not better. Claire Denis has to be my favorite French director at this point, better than Leos Carax even. Also I have to admit that the South Korean sequence really does do \"\"Lost in Translation\"\" better than that film itself does (and I, unlike some, am a huge fan of that film as well).\"\r\n0\tJungle Fever is too highly stylized, stereotyped, and comes across as essentially dishonest. Wesley Snipes was wrong for the lead and there was no chemistry between him and Annabella Sciorra. Even though there's plenty of talent in this movie, it's mostly wasted because the parts are reduced to little more than decorative cameos. Also, instead of simply showing racism for the ugly and stupid thing it is, Spike Lee chooses to wave it around like a flag in a most whining and irritating manner. I made it through most of the film but I couldn't quite finish it, and that, for me, rarely happens.\r\n0\t\"I've seen all four of the movies in this series. Each one strays further and further from the books. This is the worst one yet. My problem is that it does not follow the book it is titled after in any way! The directors and producers should have named it any thing other than \"\"Love's Abiding Joy.\"\" The only thing about this movie that remotely resembles the book are the names of some of the characters (Willie, Missie, Henry, Clark, Scottie and Cookie). The names/ages/genders of the children are wrong. The entire story line is no where in the book.<br /><br />I find it a great disservice to Janette Oke, her books and her fans to produce a movie under her title that is not correct in any way. The music is too loud. The actors are not convincing - they lack emotions.<br /><br />If you want a good family movie, this might do. It is clean. Don't watch it, though, if you are hoping for a condensed version of the book. I hope that this will be the last movie from this series, but I doubt it. If there are more movies made, I wish Michael Landon, Jr and others would stick closer to the original plot and story lines. The books are excellent and, if closely followed, would make excellent movies!\"\r\n0\tIt seems like this is the only film that John Saxon ever directed, and that he had the good sense to stop after that and stay in front of the camera. This movie is a dog, from start to finish, and it's dull and wooden with nothing much going for it. A Viet Nam war hero takes a job working for a mob boss, gets a bit too friendly with the wife and then the wife is killed by the mob boss himself & the war hero framed and sent to prison, death row, specifically. Now, this particular prison has been experimenting on inmates and is testing some formula that will turn men into the ultimate killing machine (a zombie). Of course, everything goes wrong and then there's all these infected people trapped in the prison, some of whom are turning into zombies and the rest who suddenly just don't want to be there anymore. This just goes on and on and on with nothing particularly much to show or say for itself, and I stopped it before the end, which seemed like it was coming a few times but no, it was apparently only getting set to take off on a different and equally dull path. If one watched to the end they may well become a zombie themselves, so don't risk it. 2 out of 10.\r\n0\t\"blows my mind how this movie got made. i watched it while i worked at home writing emails and answering the phone -- i ONLY watched it because i hoped the \"\"revenge\"\" part would be good. needless to say, the revenge and the forced plot twists were not worth the emails during which they were watched. in fact, i'm not even sure what happened at the end any more. the acting was as bad as re-enactment scenarios on the \"\"FBI Files\"\" show -- by far, the worst re-enactments (really only \"\"Arrest and Trial\"\" can possibly be as bad at re-enactments). i didn't even know that the leading man was in Third Eye Blind until i looked the movie up here on IMDb, but its obvious why he hasn't made any movies since. i hope he is a good singer.\"\r\n0\t\"Being born in the 1960's I grew up watching the TV \"\"Movies of the Week\"\" in the early 70's and loved the creepy movies that were routinely shown including \"\"Crowhaven Farm\"\", \"\"Bad Ronald\"\", \"\"Satan's School for Girls\"\", \"\"Kolchak the Night Stalker\"\", etc, but this one is just plain dumb.This is obviously the writer's trying to capitalize on the horrific Manson murders from a few years earlier. The movie stars Dennis Weaver of \"\"McCloud\"\" and \"\"Duel\"\" fame as a father who takes his family camping on a beach. The family encounters some hippies who for some reason decide to terrorize the family. The reason for this is never explained, and Weaver's pacifistic stance is hard to swallow. For God's sake, call the police, beat the hell of them or something, just don't sit there and whine about it. The acting is pretty lame, the story unbelievable, etc. Susan Dey looks cute in a bikini but that's about it. Ignore this if it ever airs on TV.\"\r\n0\tWhat a bad movie. I'm really surprised that DeNiro and even Snipes would be associated with something like this. If you're going to make a movie that involves baseball, and shows scenes of baseball, at least make the action look somewhat realistic. Why was the crowd always standing up for no particular reason during games? ***POSSIBLE SPOILER*** And the last scene in the movie....what was that? We are somehow led to believe that DeNiro has found his way onto the field in an umpire's uniform, and that the game is even being played in a torrential downpour....one of the worst ever scenes in a sports movie. 3 stars out of 10.\r\n1\tI absolutely loved this show. I watched it from the time it first aired in the late 90's to the very last episode. In my honest opinion it was a wonderful family drama that is so rare these days. Definitely a show you could watch with a friend or your children. Yes things have changed a bit with Jo since we last saw her in the books, but it's still compelling with great stories and good lessons. The actress that portrays Jo Bhaer (Michelle Burke) does a wonderful job as does as the actor who plays Nick Riley (Spencer Rochfort) Throughout the series we get to see the developing romance between Jo and Nick as well as the daily stories and lessons the kids and students learn. I recommend this show to anyone.\r\n0\t\"That's what the title should be, anyway.<br /><br />This movie combines guns, explosives, and mindless killing to make one flop of an \"\"action\"\" movie. Let me make my point in a series of questions: answers type deal.<br /><br />What happens in the movie? People die.<br /><br />Is that it? Yes.<br /><br />What is the plot about? What plot?<br /><br />What is the point the movie is trying to make? Killing is the only solution.<br /><br />What are the characters like? Extremely flawed and contradictive toward their own personalities.<br /><br />Is there anything good about this movie? Yes. I'm sure they used some nice Panavision cameras in filming it.<br /><br />If you like constant killing and greed, then watch the movie. If you happen to be repulsed by such low-standard \"\"entertainment\"\", then \"\"Made Men\"\" is not for you.<br /><br />To sum it up, the plotline stinks, the characters aren't worth their while, the storyline is completely resistable, and nothing fits together.<br /><br />This proves one thing: the actors, directors, and whoever helped make this movie certainly aren't \"\"Made\"\".\"\r\n1\tLa Teta i la Luna (The Breast and the Moon) describes the life of a 9-10 year old boy named Tete who is obsessed with breasts growing up in Catalunya. I love this movie because the characters are very honest and very human, like all the characters in Bigas Luna's movies (also director of Jamon, Jamon). Tete reminded me of how intriguing and exciting life can be at that age. Also being from Catalunya (North-east of Spain) it brought lots of memories to my mind. This movie shows how beautiful Catalunya is, nice people, nice life and specially lots of non-uptight people.\r\n1\t\"\"\" Så som i himmelen \"\" .. as above so below.. that very special point where Divine and Human meet. I ADORE this film ! A gem. YES amazing grace !<br /><br />I was so deeply moved by its very HUMAN quality. I laughed and cried through a whole register , indeed several octaves of emotions.<br /><br />Mikael Nyqvist ís BRILLIANT as Daniel , a first rate passionate performance, charismatic and powerful. His inner light and exceptional talent shines through in every scene, every interaction ,in every meeting. I was totally mesmerised, enchanted and caught up the story, which is our collective story, the story of life itself.<br /><br />The film was also so inclusive of many archetypes, messiah, wounded child ,magical child, artist, teacher, priest, abuser, abused, victim, bully, divine fool - ALL the characters so real and true to life - all awakened great fondness and compassion in me. <br /><br />It is a real treat to see such a thought provoking yet thoroughly enjoyable, entertaining film. Oh ..mustn't forget the heavenly choir of angels and breathtakingly beautiful sound. <br /><br />THANK YOU ALL - This Swedish film will surely captivate people world-wide. BRILLIANT !\"\r\n0\tThe Cowboys could leave you a little sore in the saddle. Definitely not one of Johns best movies. Don't get me wrong, with any John Wayne move there is always some good spots. And this one has it's fair share. But over all the picture moves slow and just doesn't live up to the aspirations it could have been. Bruce Dern again does an outstanding job as the villain. Roscoe Lee Brown is another bright spot in the movie. The kids in the movie were average but could have been cast better. This would be a good movie for the eight to fifteen year old movie goers.<br /><br />This would be a good family move to watch with your children. Just be aware, there is a couple of scenes that you may want to take a look at before you let the young ones see it. But most kids that I know who have seen the movie like it. Maybe it's because they get to see kids their age do all the grown up work.\r\n0\t\"I paid one dollar for this DVD and at first I was feeling ripped off, but then I started thinking about it and I should be grateful. I have found a holy grail, a real touchstone of bad cinema. If you think the opening dramatic shots of an empty stadium successfully fizzle with Evel's awkward camera address monologue, then wait until the opening credits roll on the chauffeur's butt. The script seems to be pasted together from press clippings, and ESL textbooks. But..... I just can't believe how bad George Hamilton is. He seems to have absolutely no connection to anything he says, the only internal monologue I can detect is \"\"gosh I bet they think I am cute. really cute!\"\". This is an epiphany! I now know how bad it can get.\"\r\n1\tSalva and his pal Bigardo have been at the margin of the law during most of their lives. We see them panhandling in a car of the underground, where their pitch to get donations is so lame, no one gives them anything! Salva, who is a hardened petty criminal doesn't even have any redeeming qualities, that is, until he discovers a reality show on television that gives him the idea of what to do next. Religion and show business prove to be a winning combination, something that Salva capitalizes on.<br /><br />He and Bigardo have been in jail after the accidental death of a priest that was critical of the duo. Salva shows he is a natural for the reality show. He transforms himself into a Christ-like figure who is an instant success in the program. Espe, who is a no-nonsense woman who is show's producer, can't escape from the way Salva pays her unusual attention. Ultimately, Salva is the victim of his own success in the end.<br /><br />Jordi Molla, whose first directorial job this movie is, had some success in the way the film satirizes the role of television. Spain, which was vulnerable to these types of programs, has seen its share of the bizarre, which is what the director felt is an assault on the viewing public and wanted to set his story from the point of view of the people that are making a fortune out of the naive audience.<br /><br />The ensemble cast has some good moments in the film. Mr. Molla, like any actor who decides to direct his first feature, would have been more effective concentrating on the picture in front of the camera. Candela Pena, a good actress, is one of the best reasons for watching the movie. Juan Carlos Villedo, David Gimenez Cacho, Franco Francescoantonio, Florinda Chico and the rest responded well to the new director.\r\n0\t\"In this paranoia-driven potboiler, our reporter hero battles hindersome authorities, duplicitous co-workers, renegade UFO debunkers, and silent, skulking aliens. (Though capable of mind control and zapping objects from afar, it takes three of them to operate a control panel of about two dozen buttons.) The script clomps from event to event,leaving puzzlers aplenty. Why did the aliens blind the dog? Why do they fry the soldiers with radiation when they're only patrolling an empty landing site? And what space dudes worth their moon cheese abduct the ugly photographer first instead of his model? Inquiring minds want to know! Writer-director Mario Gariazzo apparently researched his subject by skimming a stack of UFO-themed tabloids as he took in a Sunn Classics double feature. (The closing screen crawl boasts that it's based on actual events...just like \"\"Plan 9!\"\") Some may feel burned by the abrupt finale, but it should still appeal to conspiracy cranks.\"\r\n1\t\"This movie has to be my favorite of all time. Its not supposed to have a plot, because its makers wanted people (Charlie Sheen, I think)to believe it was a real snuff film. This was an exercise in visual effects, and doesn't cut away when the action happens like every other film does. Movies these days are now all about sound effects, leaving the visuals to be made by computers cause its easier to deal with CGI blood. There still are movie makers who still can't get fake blood to look like the real thing. There is no rape scene because that wasn't the point of making the film. Have you seen the hills have eyes 2? The rape scene was funny instead of shocking. Although i'm sure there are some GONZO porn film makers that have tried to marry porn with horror. But since they probably suck at making films, they probably wouldn't be able to pull it off. The movie \"\"Baise Moi\"\" has a disturbing rape scene because the actresses are actually porn stars and they show everything even though the movie overall sucks.<br /><br />Its too bad that a movie can't be made without thinking of the money aspect of it all, especially when talking about an AO or NC-17 rating. I'm sure Eli Roth has the ability/talent to make his Hostel film series much much better, but he has too tame it down to get an R rating...or at least I hope that his movies sucked because of these limitations.<br /><br />Watch Traces of Death or More than Smashed Pumpkins if you want no frills real footage (accident & crime scenes/footage). Don't forget that this movie was made in 1985. The fact that this film can still stand up against most crap made these days says a lot about this film. That would be like someone saying the 8bit Super Mario Brothers sucks because the PS3 has better graphics.\"\r\n0\tVisually stunning? Most definitely. I have seen few films look this good in some time. Sky Captain and the World of Tomorrow uses striking cinematography, computer graphics, and creative futuristic designs to create a world that is historically familiar yet something quite fresh. The time period seems to be the 1930s or early 40s. The movie tells of recent attacks on New York City by mechanized armies stealing generators and the like for some inexplicable reason. Also, mysterious disappearances of relevant scientific minds coincide. Who can stop them and save the world? Alright, it doesn't take a leap of faith to know it is the Sky Captain himself with his wisecracking reporter girlfriend always hot for a lead, and in the wings his trusty, thoroughly competent sidekick. What Sky Captain has in atmosphere and graphics it lacks in storytelling and characterization. The plot for this film is ridiculous. That being said, the film is going for a serial-like feeling of film serials of yesteryear. They had pretty far out stories and bad acting - but none of them, and I mean none of them, had the budget and big names this film had. Two academy award winning performers and Jude Law could keep a film afloat, one would think, but Sky Captain sinks miserably. Despite its fantastic dark look, I found myself wishing the film would just end and I could get on with my life. I had little interest in a story that generated little interest. I didn't care at all for any of the glib portrayals. Paltrow was just awful. Jolie was a joke with a role with virtually no substance. Law cannot carry the one-liner tradition all too squarely on his limited shoulders. I mean, let's face it, he's not Will Smith, Mel Gibson, or even Wesley Snipes. The sad thing about Sky Captain, at least for me, was that it held so much promise yet delivered so little. I was bored ten minutes into the film - waiting for something to hook my interest - and it never came.\r\n1\t\"Although there were a few rough spots and some plot lines that weren't exactly true to character, this was Classic H:LOTS. The characters, outside of Mike Giardello (Giancarlo Esposito), were true to form, and the reunion scenes of Pembleton (Andre Braugher) and Bayliss (Kyle Secor) were as deep and well acted as anything ever to grace the small screen.<br /><br />\"\"Homicide: The Movie\"\" aka \"\"Life Everlasting\"\" is a fan flick, but stands on its own as well as any 2-hour episode of the series. Fontana, Overmeyer and Yoshimura did a wonderful job in pulling loose ends from 7 seasons and every major cast member of \"\"the best damn show on television\"\" together for the series finale that NBC never bothered to give it. True to \"\"Homicide\"\" form, there were no happy endings, such is life. That's what has always set this show apart from the mindless cookie-cutter cop shows left on television. Kudos to the writers and the cast for creating something over the span of the series and in the movie that challenged television viewers and producers alike.<br /><br />** I call myself a \"\"Homicidal Maniac\"\" if for no other reason than to keep my co-workers in a cooperative mood. **\"\r\n0\tIt's not so much that SPONTANEOUS COMBUSTION had little potential. Indeed the under-explored title phenomenon is quite intriguing and, for at least the opening half, this Tobe Hooper effort promises to entertain in a way only cheesy '90s horror can. But somewhere between Brad Dourif's on-again-off-again performance and the overly intricate plot, this would-be thriller loses its way.<br /><br />Dourif, featured here before his built-in horror fan base had accumulated, is average guy Sam. Of course average guys don't stay average for long in horror movies, so after a well-done origin outline, we see Sam's various body parts start to ignite. Soon he's igniting other people, too, much to the consternation of gal pal Lisa, played unmemorably by Cynthia Bain.<br /><br />While the title of the film implies a fire-happy monster on the loose, director Hooper opted to make Sam an unwilling killer. This approach gives the film an added human depth it would otherwise lack, but it also prevents us from truly fearing the human flamethrower. We're left wondering whether this would have worked better as a straight-up villain-versus-everyone effort ala NIGHTMARE ON ELM STREET.<br /><br />SPONTANEOUS COMBUSTION is a pretty nominal effort when all is said and done. It will carry added appeal for Dourif's fans and those who can't get enough 1990s horror, be it good, bad or in between, but only on a slow night.\r\n0\tCruel Intentions 2 is bloody awful, I mean uber-bad. Words can not explain how bad it is, but I'll give it a go anyway.<br /><br />The plot of Cruel Intentions 2 is very similar to the first film. Sebastian (Robin Dunne), is kicked out of a private school and is forced to move to New York. There he decides to make a fresh start and just a life a normal life and settle down. Unfortunately he has to deal with his step-sister Kathryn (Amy Adams) wants to drag him down. Sebastain starts to fall in love Danielle (Sarah Thompson), the innocent daughter of the Headmaster of the school. Kathryn wants Sebastain to just sleep around with the whole school which had been describe as a 'whore-house'. Kathryn also wants to get revenge with Cherie (Keri Lynn Pratt), who humiliated her during the school assembly. Kathryn wanted to make the freshman into the biggest slut in the school, a similar sub-plot to the first film.<br /><br />Cruel Intentions 2 is basically a cancelled TV-show, which was turned into a prequel. There are so many problems with the film. It is poorly written, unfunny, and badly acted. Luckily for Amy Adams that the show never took off because now she is a fairly big actress. Whilst Cruel Intentions had a sense of realism and can been seen to be set in the real world, Cruel Intentions 2 is set in sitcom land and as described on amazon.co.uk 'a randy version of Saved by the Bell'. There were some dark themes involving sex and drug use in the first film, but in Cruel Intentions 2 tried to make it funny and some of the ideas in the film shouldn't be, such as Kathryn having an affair with a teacher. Other ideas also don't work such as the secret society where all the popular kids meet to discuss the downfall of other students. The film also had a major problem of sexualised 15/16-years-old. I know that teenagers do have sex, sometimes a lot, but when done on film or television, is treated very seriously. One famous sense was when Daneille encourages Cherie (who is around 14/15 in the film) to simulate sex on the back of a horse to the point where she has a orgasm. The idea of turning a girl around 14/15 into a slut is just very wrong with me, and shouldn't be made into a subject of comedy. The jokes in the film fall flat, whether if it's a verbal gag like 'she goes all moist when she sees you' to a visual gag where Sebastian pushes Kathryn face first into mud.<br /><br />There is a lot wrong with this film, which I don't have time to go into, but I say it should be avoid. Just watch Cruel Intentions, whilst not a classic, still is a decent film and treats the subject matter well.<br /><br />This film is just a pervert's wet dream, having school-kids having lots of sex with each other.\r\n0\tI wasted 5.75 to see this crappy movie so I just want to know a few things:<br /><br />What was the point of the dog being split in half at the beginning of the movie, the disease had nothing to do with being split in half.<br /><br />What was the point of dragging Karen into the shed, she already totally infected her room, they could have just locked her in there where she would have been safer.<br /><br />Why would the Hermit be running around the forest asking strangers to help him when he could have just asked his relative, the hog lady, to take him to the hospital?<br /><br />Why didn't any of the characters bother to walk into town to get help when things started getting bad, are they all really that lazy?<br /><br />Even if Paul was threatened by the guy w/ the shotgun for peeping on his wife, Paul could have just sent Jeff or Bert back to the house to ask for help. the girl he loves is deteriorating.<br /><br />What was the point of the box?<br /><br />Why did Jeff go back to the cabin after he left when everyone else was getting infected, if he was that big of a jerk to leave in the first place wouldn't he have just gone back home?<br /><br />If the police went to all the trouble of gathering up the kids and burning them on the fire pit, why did they throw Paul halfway into the river, it wasn't even necessary for the plot because the water was already contaminated.<br /><br />Who makes lemonade out of river water, that crap has dirt leaves and bugs in it. Why couldn't the two kids have just use the tap water, it was contaminated too, so the stupid ending would still work.\r\n0\tWhen I saw that this movie was being shown on TV, I was really looking forward to it. I grew up in the 1980's and like everyone else who has grown up in that era, have seen every 80's teen and summer camp movie out there. So I couldn't wait to see this movie that totally spoofs that film genre. What a disappointment!! The movie was nothing but a bunch of really bad jokes and gags over and over, with hardly any plot and no substance. And the filmmakers attempts at dark humor totally failed-some of these so-called jokes didn't come across as anything but downright cruel and offensive. The only good things about this film were the wardrobe, music, and acting. It was nice to go on a nostalgia trip and see all of the summer clothing styles from the 80's, and the same goes for the music. And the acting was top-notch throughout: almost all of Hollywood's best comedians were present. Too bad they didn't have better material to work with.\r\n0\t\"Suffice to say that - despite the odd ludicrous panegyric to his soi disant \"\"abilities\"\" posted here - the director of this inept, odious tosh hasn't made a film since. Well that is excellent news as far as I'm concerned.<br /><br />Dead Babies has all of the bile of its creator, but lacks the wit and technical proficiency that make Martin Amis the novelist readable.<br /><br />When will the British film industry wake up and realise that if it wants to regain the status it once had it should stop producing rubbish like this and make something real people will actually want to watch?<br /><br />Avoid like the plague.\"\r\n1\t\"I got to say that Uma Thurman is the sexiest woman on the planet. this movie was uber cute and I mean uber cute. It had all the \"\"sex\"\" content that most Ivan Reitman comedies have but with something a lil extra, CHEMISTRY. Uma and Luke both have this awkrawrd but believable chemistry that seem to transcend in each scene . Both seem to create this odd, twisted and interesting relationship with powerful \"\"sexual\"\" tension that you laugh until you can't feel your face anymore. Anna Farris and the rest of the supporting cast seem to play off each other's roles perfectly and even Wanda Sykes' rather small role will keep you laughing. Though these kind of comedies aren't for everybody, but I have to say I went with a person that doesn't usually enjoy these films and he was laughing like crazy. This movie is certainly not for everyone. especially younger children since some moments are little too...well lets say ADULT for younger viewers. All in all I was pleasantly surprised by this movie, tough the ending I found was a little weak compared to the rest of the film. (3 1/2* out of 5*)\"\r\n0\tWhen anti-bush jokes get really easy to do, a show like this had better make sure it has something extra. When that something extra is kid versions of political figures making jokes about the future they don't have yet, it's just plain nonsense. Dick Cheney and George Bush are done well but Dick Cheney mutters mostly. There's also Condoleeza Rice who has a crush on Bush for some reason and Donald Rumsfeld who isn't really that similar to Donald Rumsfeld at all. The democratic characters rarely give their names so it's a mystery as to who could be who aside from Barack Obama and Hilary Clinton.<br /><br />The episodes have coherent stories but that's not nearly enough to keep this from sinking.\r\n0\t\"the movie opens with a beautiful lady in a tattered white gown running through a stereotypical eastern european town. we know she's being followed by something, because she keeps looking behind her. and soon we see she's being chased by a mysterious man in a black trenchcoat. then we realize that the man is actually the vampire hunter and he is after her. but look is that her reflection in the store window??? no its just her identical twin vampire! but unfortunately they both get it.<br /><br />after this brilliant and amazingly fun throwback to the old hammer films of the 60's and 70's (in the credits the twins are listed as the twins of evil, which of course is the name of the final instalment in hammer's karnstein trilogy), the plot pretty much dies.<br /><br />What little plot there is involves dracula (who conveniently changes his appearance each time he is reborn, so the producer doesn't have to rehire the same dracula) coming to a morgue, the med students realizing he's undead and thinking....wow what an opportunity, maybe i'll just disregard all those movies that say that drinking vampire blood turns you into a vampire and use the vampire's blood to find a cure for our jerk friend's ailment. obviously this is a mistake and everyone becomes a vampire.<br /><br />A new concept but pulled off excruciatingly badly. The movie keeps setting up wonderful situations and refuses to do anything with them.<br /><br />For example the med students attempt to bring drac back to life by placing him in a bathtub filled with blood in a secluded run down country mansion. The house itself is scary enough to be the center of the film, but do we stay there? no because they decide to take the vampire to an abandoned swimming pool. sigh. This movie has a real problem with \"\"homages\"\" as i mentioned before the opening scene is straight out of hammer, and this house scene would have been perfect for a hammer-like movie, but the movie rapidly switches gears and changes to a medical horror.<br /><br />The other problem is that they introduce so many characters it is almost impossible to feel sorry for any of them. There are the med students and their wheelchair bound professor-type \"\"friend\"\" the med students are all: arrogant, boring, money hungry, and stupid. how they made it to med school at all amazes me, unless the med school had to meet its muscle bound hunk/big breast quota. and then there is the vampire hunter who remains mysterious through the movie. hey i can respect that but it would be nice if they didn't set it up like the movie would be about him. then you have random priests, cops, and science types. so many people are introduced and then quickly forgotten about until they need that person to either save the day or jump out for a cheap scare that it becomes quickly tedious.<br /><br />Basically this is a lazy movie. no real scares, just a few predictable jump scares. The set up for these is so elaborate it is hilarious. for examp le the bathtub full of blood. it is so obvious that drac is going to pop out of the murky blood. and yet we have to wait far too long to get to the inevitable jump scare. after this he kills one of the dumber and larger breasted med students. we all know she's going to become one of the undead. but what do the others do? bury her in a shallow grave near the house. sigh, so you know who will jump out at you when the cops show up at the house..........<br /><br />Oh well.<br /><br />Maybe someone will get the hint that it is impossible to make a scary vampire movie and just go for atmospheric, and then we will end up with an entire movie that is as good as the opening scene.<br /><br />\"\r\n0\t\"This movie is not as good as all the movies of Christ I've ever seen. And I'm quite amazed that in this story Pilate wants to finish Jesus, when the Scriptures (as well the other movies) state differently. It lacks also a very important issue: The Resurrection.. None of the other movies skip this very important part: the faith of all of us Christians lies in this very event. As Paul says in one of his letters \"\"If Christ did not rise from the dead, our faith is vain\"\". A very impressive scene for me in this movie was seeing on the streets the remains of the palms that were used when Jesus entered Jerusalem. <br /><br />Finally, and in opposition to my Jewish co-commentator, Jesus WAS NOT a myth. And as a matter of fact, he was also a JEW. There are plenty of documents (relgious and secular) that prove the existence of this extraordinary man(or should I said, God become a man) that indeed changed mankind. I strongly advise him(given he is a historian) to read about Flavius Josephus, the most brilliant Jewish commentator of the 1st. Century.\"\r\n1\t\"The silent film the Pride of the Clan starring Mary Pickford was supposed to be set in a fictional island off the coast of Scotland. In actuality, most of the exterior shots were filmed in Marblehead Massachusett on Marblehead Neck near several rocky seaside geographic areas including the Churn and Castle Rock. My initial interest in the film was because of two factors: 1) the Marblehead film location in my hometown and, 2) the fact that my grandmother Lizzette M. Woodfin was hired as a stand-in for Mary Pickford during filming of several scenes including the \"\"cliff scene\"\". Both women were small (5') in stature and both my father and grandmother related the fact that she was a stand-in with her back to the camera for the cliff scene as part of the Chiefton filming set. I just wanted to relate this story for future film historians and buffs. The film itself (my DVD copy is somewhat poor) is very well done with lots of action and expressive acting including several scenes where Miss Pickford portrays a strong woman characterization. I enjoyed it and would love to get a better copy of it although I am unsure whether one exists as I have seen in various movie sites that remaining copies are dark because of deterioration. A very nice film of the silent genre with lots of action!\"\r\n1\tIts a good thing I rented the movie before seeing the viewer rating from this site. It was a wonderful movie that I will be adding to my Christmas selection. The cast was wonderfully chosen and Ben Affleck plays a good leading role. I would tell viewers who have not seen the movie to go ahead and buy it. I rate it right up there with Christmas vacation. The movie was very funny and well written and Ben plays the eccentric rich executive very well. The things he says and does is just how I would imagine a person with too much money to act. The movie is much funnier than The Santa Claus and Christmas With The Kranks. Plus it has a good story line and teaches the true meaning of Christmas which is you can't buy love with money.\r\n1\t\"Finally, after years of awaiting a new film to continue the sexual mayhem of \"\"Basic Instinct\"\", we have been given a great sequel that is packed with the right elements needed for a franchise such as this! I remember everything about the original, the steam, the romance, the sex, the interrogation, the music (by the master Jerry Goldsmith), and everything else from violence and murder, to intense confrontations of all kind! Make no mistake, \"\"Basic Instinct\"\" was a real winner for audiences everywhere. I can remember in 2001 when we were first given the news about such a sequel. Five years later, we have it. I never would have thought it to end up such as this. When it was declared a dropped project, time sure couldn't tell if it was ever a real possibility to begin with. Well, I guess we now know anything's possible in this case. Even if the original director, or writer are not present, all we need is the glamorous, always reliable Sharon Stone, and we have a done deal! Please, hear me out...<br /><br />When people say that this film is bad, I think it is only due to the fact that the style is extreme, and slightly dated. I use the word \"\"dated\"\" only because we have not seen a certain film of the like in many years, and audiences have become adapted to the pointless, boring storytelling seen in other movies that actually make money, and the only reason they make such big numbers is because those films are family friendly. Who needs hole some and clean? Of course it's a pleasant thing to have, but c'mon! Escapism is really seldom these days, and \"\"Basic Instinct 2\"\" gives us real fans what we've been expecting. This film is not an Academy Award winner, nor does it try to be. It simply delivers the die-hard fans what they have been expecting. It's a film for fun. Movies today seem to take themselves way too seriously, but this film is just loose and fun, not taking itself seriously, not too seriously anyway. That said, I shall evaluate the film.<br /><br />The film is a fast-paced film from the first second, as we see Cathernine Tremell in a car, speeding at 110 MPH-and enjoying lustful thrills doing so. Perhaps sex and driving does not mix, because our sexy novelist takes a bad turn and...well, she gets away unharmed, but her studly partner doesn't fare too well. Once again, Tremell is the primary suspect of the accident, and will be put under analyst's and psychiatrists. Dr. Michael Glass (Morrissey) is automatically drawn to to her from the first moment he meets her. Like another criminal investigator before him, he is entranced and seduced, slowly, and surely. His denial of it all begins to crumble around him as she weaves a spell only she has the power to do. Tramell is possibly more dangerous now, than she was before,but like the first one, we'll never really know, will we? Once the seduction is in motion, jealousy, rage, drugs, and a plateful of erotic scenery ensues!<br /><br />This film does not recycle the first one, but rather mentions the previous films incidents briefly from time to time. This is a good thing. It lets us as an audience know that the script has been written to bring the level up a notch or two. Sharon Stone dazzles us again, as though 14 years has not come to pass. Her second run of the deceitful novelist is right on the spot as earlier. Just awesome! David Morrissey is well cast, and manages pretty well. The fact that a non-popular star was chosen, makes his performance all the more enjoyable because we as an audience have no background on him, just what we see him perform. My final thought-8.5 to 9 out of 10. So it's not the first one, nor can it live up to the first ones prize winning place. It can, however, live up to the standards set by the first film, and it does folks! It does.\"\r\n0\tThis is a complete Hoax...<br /><br />The movie clearly has been shot in north western Indian state of Rajasthan. Look at the chase scene - the vehicles are Indian; the writing all over is Hindi - language used in India. The drive through is on typical Jaipur streets. Also the palace is in Amer - about 10 miles from Jaipur, Rajasthan. The film-makers in their (about the film) in DVD Bonus seem to make it sound that they risked their lives shooting in Kabul and around. Almost all of their action scenes are shot in India. The scene where they see a group singing around fire is so fake that they did not even think about changing it to Afgani folk song. They just recorded the Rajasthani folk song. How do I know it because I have traveled that area extensively. They are just on the band-wagon to make big on the issue. I do challenge the film makers to deny it.\r\n0\tAside from the horrendous acting and the ridiculous and ludicrous plot, this movie wasn't too bad. Unfortunately, that doesn't leave much movie not to suck. Do not waste your time on this film, even if you find yourself suffering from insomnia, as I did. Watch an infomercial instead.\r\n1\t\"PUT THE CAMERA ON ME is a deceptively cute film. It is actually a complex glimpse at the psychology of children and offers interesting insights into the development of adults and an artist. On the surface this is a nostalgic look at some home movies made in the 80's by a group of upper class neighborhood kids. One of the film's directors, Darren Stein, had access to a video camera and quickly took over as the artistic leader for all of the movies. Sure, these are just some cute kids having fun. But, this is also much more. This is a look into some moments in time as children grapple with a number of confusing issues that all of us face in life --- fear, sexual awakening, unrequited love, loneliness and just trying to make sense of the adult world which seems to explode all around us. As we get older we tend to forget how overwhlelming the realities of life were when we were little. <br /><br />What makes this film all the more valid is to watch a young Darren Stein turn into a little general of a filmmaker. It is clear that Darren is running this show and these little movies are his vision but they are all informed by his friends, their problems, the interpersonal dynamics and the general confusion regarding the horrors of adult life. A lot of children make home movies, but I've never heard of or seen children create \"\"little\"\" movies about the holocaust, homosexuality, nuclear war and the inability to fit in and make friends. These kids are confronting and dealing with some heavy stuff! <br /><br />The power of this film is the way Stein and Shell pull various scenes together so tightly with running interviews with the kids --- all now adults and all still friends. This adds a new angle to the film. How many of us have stayed in touch with our childhood friends? These guys have. And, many of the issues with which they were dealing are still running between them two decades later. <br /><br />Among the conflicts -- a confession of a crush reveals a heart still broken, a very normal childhood sexual experience continues to be a \"\"sticky\"\" subject between two of the men, some ongoing resentments over the dynamics of relationships and there is still a member of this team who remains very much in charge and in center stage! Which makes perfect sense as one watches these home movies progress over the course of a couple of years. Darren Stein is a director. No doubt about it. <br /><br />Stein and Shell take turns chatting with each other from time to time and one can't help but imagine the awkwardness of allowing us to peek into the young lives of these people. This is particularly true for Stein who has gone on to a great deal of success in the entertainment industry as a film producer, writer and director. From the first moment of PUT THE CAMERA ON ME we can see the emergence of a gay little boy trying to figure it all out. We also see sides of the artistic mind and personality that are not always \"\"nice\"\" or \"\"caring\"\" --- and, this is a bold move for any artist to share with an audience. <br /><br />There are so many revealing moments, but the most disturbing and complex moments involve a movie in which we see a Jewish concentration camp victim being tortured and killed by a Nazi. We discover thru interviews and narration that the Nazi is played by a Jewish child and the part of the victim is played by a gentile child. It is a painfully disturbing moment that glimpses into the darker side of fear and the way children work thru the horrors of the adult world that are beyond adult understanding much less that of a child. <br /><br />This is much more than some home movies. This documentary captures the pain, beauty, joy and sadness of growing up. Powerful stuff --- and well worth seeing! <br /><br />:\"\r\n0\t\"Rented a batch of films from Blockbuster last night, and this was the first one I watched (it was late on a Saturday night, wanted a \"\"horror film fix\"\")...<br /><br />Wow, this was awful, almost embarrassingly so... Stupid slasher-type story I really thought films like Scream had put an end to; amateur actors delivering clichéd' and insipid dialogue that is hard to believe was actually typed and read off a page; and gore scenes that are nothing to get excited about (especially when occurring in a film this poorly scripted).<br /><br />But I've always believed no film is 100% percent totally worthless. Here's the few good things I can say about this mess: <br /><br />#1 Bobbie Phillips: love this actress. She's the only member of the cast who displays any acting talent whatsoever. The only reason I took a chance on renting this is because her name was on the front cover. She acquits her presence in this dreck with professionalism, even though she looks bemused at times that she's acting in such a moronic story.<br /><br />#2 Unintentional Hilarity: This is the kind of film I can remember seeing back when there were still grind house theaters around the country and they used to include crap like this as the third movie on a triple-bill with some prestige thriller movie that was finally making it's way to the hinterlands. Unfortunately, in this direct-to-video age, most viewers have to endure these turkeys alone now without the communal experience of being part of an audience jeering and throwing stuff at the screen because the film is so terrible. Which leads to--<br /><br />#3 Porn Stars Trying To Act!: Mostly on hand because the producers don't need to cajole or plead with them to disrobe for extended sex scenes, but this trade-off usually means they actually get to speak some lines that are supposed to advance a story (other than \"\"ooh yeah baby\"\", or \"\"harder!\"\"). And, proudly, they all deliver expertly at looking foolish when trying to act. I'd almost exclude Ginger Lynn Allen from this group if her character wasn't supposed to be an Irish mom and she's actually attempting at times to do an accent, which just keeps the smiles coming.<br /><br />It's nice to look for the positive in all experiences, and that's what I took from this cesspool a.k.a \"\"Evil Breed\"\"\"\r\n0\tThis movie is a rather odd mix of musical, romance, drama and crime with a sniff of film-noir to it. It's basically one messy heap of different genres, of which none really works out like it was supposed to.<br /><br />This movie is an attempt by Mickey Rooney to be taken more serious as an actor. He's a former child-star who always used to star in in happy comical- and musical productions at the start of his career. In this movie he picks a different approach (although the musical aspects are still present in the movie). But his role is actually quite laughable within the movie. I mean Mickey Rooney as a tough player? He's an extremely small boyish looking man. He actually was in his 30's already at the time of this movie but he seriously looks more like a 16 year old. Hearing him say babe to women and hearing talking tough to gangsters who are about 3 times bigger than he is just doesn't look and feel right. He simply isn't convincing in his role.<br /><br />Because the movie mixes so many different genres, the story also really feels as a messy one. Somewhere in it there is a crime plot and somewhere in it is a romantic plot-line and one about living your dream but none of it works out really due to the messy approach and handling of it all. It just isn't an interesting or compelling movie to watch. László Kardos is also a director who has done only 10 movies in his lifetime, despite the fact that his career span from 1935 till 1957. He must have been a struggling director who had a hard time getting work into the industry and instead once in a while was given a lesser script to work with. His movies are all unknown ones and normally also not of too high quality.<br /><br />Let's also not forget that this is a '50's movie but yet it more feels like a '40's one or perhaps even as one from the '30's. This is of course mostly due to the fact that this movie got shot in black & white. Generally speaking black & white movies from the '50's often have a cheap looking feeling over it and this movie forms no exception.<br /><br />It's a rather strange sight seeing Mickey Rooney and Louis Armstrong and his band as themselves performing together in a sequence. It wasn't the only movie Armstrong appeared in though and he would often pop up in these type of movies, often simply as himself. I guess jazz lovers can still somewhat enjoy watching this movie due to its music, since there is quite an amount of it present in this movie. The movie actually received an Oscar nomination for best original song.<br /><br />An awkward little movie and outing from Mickey Rooney.<br /><br />4/10\r\n1\t\"In Canadian director Kari Skogland's film adaptation of the Margaret Laurence novel The Stone Angel Ellen Burstyn is Hagar Shipley, a proud and cantankerous woman approaching her nineties who wishes to remain independent until the very end, stubbornly refusing to be placed in a nursing home by her well-meaning son Marvin. Filmed in Manitoba, Canada and set in the fictional town of Manawaka, The Stone Angel is a straightforward and conventional interpretation of the book that has been required reading in Canadian high school English classes for almost half a century.<br /><br />The title of the film comes from the stone statue erected on Hagar's mother's grave which serves as a metaphor for Hagar's inability to express emotion during her tumultuous lifetime. Burstyn brings vulnerability and humor to the role but is a bit too likable to fully realize the ego-driven, self-defeating character who managed to alienate her wealthy father, her well-meaning but alcoholic husband, and both of her sons. As she nears the end of her days, she reflects that \"\"pride was my wilderness and the demon that led me there was fear. I was alone, never anything else, and never free, for I carried my chains within me, and they spread out from me and shackled all I touched\"\".<br /><br />Confronting having to spend her last days in a nursing home, Hagar looks back at her life and looks at her failed relationships, her recollections shown in flashbacks without voice-over narration. The story begins with a dance that she attended as a young girl. Chaperoned by her Aunt Dolly, she meets her future husband, the previously married Bram Shipley (Cole/Wings Hauser), a poor farmer whose reputation in the town is sullied because of his association with the Native American population. The young Hagar is played by Christine Horne who is exceptional in her first feature role. Despite Hagar's pleading, her relationship with Bram is rejected by her cold and rigid father whose refusal to attend the wedding starts the marriage off on the wrong foot. This is exacerbated by his leaving all of his money to the town of Manawaka, condemning the young couple to a life of poverty.<br /><br />Going through the motions of her marriage to Bram, Hagar withdraws from social activities to prevent being rejected by the town's upper classes. When she produces two sons, Marvin (Dylan Baker) and John (Kevin Zegers), she is unable to give them the love that they need. \"\"Every joy I might have held in my man or any child of mine or even the plain light of morning\"\", she reflects, \"\"all were forced to a standstill by some break of proper appearancesWhen did I ever speak the heart's truth?\"\" Like the biblical Hagar who fled to the desert because she could not tolerate further affronts to her pride, Hagar leaves Manawaka to live in Ontario but eventually returns to the Shipley farm.<br /><br />As the scene shifts back to the present, Hagar runs away to an abandoned house near the ocean that she remembers from her childhood to escape from being placed in a nursing home by Marvin and his wife Doris (Sheila McCarthy), Here she meets a young man named Leo (Luke Kirby) who takes an interest in her and compels her to look at and take responsibility for the mistakes she made in her life. The Stone Angel pulls out all the emotional stops but never fully develops its characters to the point where I felt any stake in the story's outcome, although the spirited performance by Ellen Page as John's devoted but naive girlfriend and the moving final scenes bring a new energy to the film's second half.\"\r\n1\tFor those of us Baby Boomers who arrived too late on the scene to appreciate James Dean et. al., Martin Sheen showed us The Way in this great feature.<br /><br />The premise is easy enough: cool hood meets small town sheriff and All-Hell ensues, but the nuts and bolts of this movie enthrall the car nut in all of us. <br /><br />No, this isn't Casablanca, nor is it great Literature, but it IS a serious movie about cars, rebellion, and the genius that is Martin Sheen.<br /><br />Enjoy this and appreciate it for what it is, and for what Martin will become. I loved this movie growing up as a teen in the 70's, and you will too.\r\n0\t\"\"\"Power Play\"\" starts off interesting but it goes down hill fast. The only good actor is Tobin Bell and he has a very small part. Beyond Bell, \"\"Power Play\"\" has no redeeming value or interest. \"\"Power Play\"\" has more earthquakes in a few days than California has in a year. The earthquake scene in the mall is so contrived and completely unbelievable. And all the action scenes look like a bunch of third graders putting on a play. It's awful, simply awful.<br /><br />Bottom line, if \"\"Power Play\"\" was made in the 60's or 70's it would be considered a poor \"\"B\"\" class movie. The fact that \"\"Power Play\"\" was made in 2001 is really sad. Is there such a thing as a \"\"D\"\" class movie? If so, \"\"Power Play\"\" casts the mold.\"\r\n1\t\"William (Nicholas Ball) and Emma Peters (Rachel Davies) buy an old house where a brutal murder happened years ago in very bad condition with the intention of restoring it. They move with their daughter Sophie (Emma RidleY), and become friends of their neighbors Jean (Patricia Maynard) and George Evans (Brian Croucher). However, eerie events happen in the house, inclusive the death of Sophie's cat. In Sophie's birthday party, a pipe leaks blood and they leave the place, disclosing a secret later.<br /><br />\"\"The House That Bled to Death\"\" is a scary and one of the best episodes of the series \"\"Hammer House of Horror\"\". The fantastic twist, disclosing a secret, and the tragic conclusion are really excellent. My vote is eight.<br /><br />Title (Brazil): \"\"A Casa Que Sangrou Até Morrer\"\" (\"\"The House That Bled to Death\"\")\"\r\n1\t\"First saw this half a lifetime ago on a black-and-white TV in a small Samoan village and thought it was hilarious. Now, having seen it for the second time, so much later, I don't find it hilarious. I don't find ANYTHING hilarious anymore. But this is a witty and light-hearted comedy that moves along quickly without stumbling and I thoroughly enjoyed it.<br /><br />It's 1945 and Fred MacMurray is a 4F who's dying to get into one of the armed forces. He rubs a lamp in the scrapyard he's managing and a genie appears to grant him a few wishes. (Ho hum, right? But though the introduction is no more than okay, the fantasies are pretty lively.) MacMurray tells the genie that he wants to be in the army. Poof, and he is marching along with Washington's soldiers into a particularly warm and inviting USO where June Haver and Joan Leslie are wearing lots of lace doilies or whatever they are, and lavender wigs. Washington sends MacMurray to spy on the enemy -- red-coating, German-speaking Hessians, not Brits. The Hessians are jammed into a Bierstube and singing a very amusing drinking song extolling the virtues of the Vaterland, \"\"where the white wine is winier/ and the Rhine water's Rhinier/ and the bratwurst is mellower/ and the yellow hair is yellower/ and the Frauleins are jucier/ and the goose steps are goosier.\"\" Something like that. The characterizations are fabulous, as good as Sig Rumann's best. Otto Preminger is the suspicious and sinister Hessian general. \"\"You know, Heidelberg, vee are 241 to 1 against you -- but vee are not afraid.\"\" <br /><br />I can't go on too long with these fantasies but they're all quite funny, and so are the lyrics. When he wishes he were in the Navy, MacMurray winds up with Columbus and the fantasy is presented as grand opera. \"\"Don't you know that sailing west meant/ a terrifically expensive investment?/ And who do you suppose provides the means/ but Isabella, Queen of Queens.\"\" When they sight the New World, someone remarks that it looks great. \"\"I don't care what it looks like,\"\" mutters Columbus, \"\"but that place is going to be called Columbusland.\"\"<br /><br />Anyway, everything is finally straightened out, though the genie by this time is quite drunk, and MacMurray winds up in the Marine Corps with the right girl.<br /><br />I've made it sound too cute, maybe, but it IS cute. The kids will enjoy the puffs of smoke and the magic and the corny love story. The adults will get a kick out of the more challenging elements of the story (who are the Hessians?) unless they happen to be college graduates, in which case they might want to stick with the legerdemain and say, \"\"Wow! Awesome!\"\"\"\r\n0\tthe only value in this movie is basically to laugh at how bad it really is. with a plot that makes your average middle-school writer look good, and acting which is almost as good, it gets my bottom score. one of tom hanks very early films where he obviously didn't have the pleasure to be real picky. the best special effect of the movie consists of a guy dressed up in an incredibly fake rubber monster consume.\r\n0\tWhen thinking about Captivity many words come to mind. Among them are: uninteresting, unentertaining, unsuspensful, unsexy, unfathomable, and unwatchable.<br /><br />I used to hate those movies from the mid to late nineties that were basically ripoffs of Scream but these new Saw knockoffs are beginning to make those films look like classics. They still pander to the same demographic that those other movies were so successful at doing, but now they add a new level of degeneracy that make the twelve to fourteen year old girls they're aimed at feel like they're hardcore AND hip.<br /><br />This movie is a load of boring crap! What the hell has happened to Larry Cohen? His name hasn't been attached to anything good since 1993! Even so, I was still surprised to see that he had anything to do with something THIS bad! Was anyone surprised when the movie's love interest turned out to be one of the psychopaths? Did anyone not know it when they first saw him? Only someone who has never before in his or her life, ever seen another movie!\r\n1\t\"The late 30s and early 40s were a golden age for adventure movies, what with the rise in budgets during the economic recovery, the changes to screen entertainment since the production code became enforced and the general carefree optimism of the times. While most of these were rip-roaring swashbucklers about the wild, superhuman and often frankly misogynistic exploits of heartthrobs like Errol Flynn and Tyrone Power, Gunga Din is very different in its focus, scope and tone.<br /><br />Part of Gunga Din's secret is the division of labour in its writing team. The original story is by Ben Hecht and Charles MacArthur, two of the most skilled and celebrated writers of Hollywood's golden age. However the actual screenplay was the work of Joel Sayre and Fred Guiol, both of whom, Guiol especially, had a background in comedy. What we get from these four is a plot that is well-balanced and engaging, yet also cleverly spiced up with comical touches. Most of the adventure flicks of this time were at least partly comedies, usually featuring one or two comic-relief supporting players, but they didn't use laughs in the way Gunga Din does. Here, all the main characters are capable of being objects or originators of jokes. We see the sinister menace of the bad guys suddenly diffused as the scene dissolves into a light-hearted brawl. The first main battle scene is an even-handed blend of action and gags, in the style of the silent swashbucklers of Douglas Fairbanks, Sr., something which the Flynn and Power vehicles largely failed to replicate. Towards the middle of Gunga Din the action must necessarily take a break and there are lots of talky scenes for the sake of the plot. However the continual forays into comedy  such as the spiked punch routine  make this \"\"slow\"\" portion bearable.<br /><br />Producer-director George Stevens was a natural when it came to this sort of thing, himself having cut his teeth at the Hal Roach studios, and almost exclusively having directed comedy up to this point. This was his first full-on action feature, and he does a startlingly good job. In particular his use of moving point-of-view shots make the battle scenes extra exhilarating. He also brings something you seldom see in action pictures of this era  a sense of real dread and fear. He sets this up with those stark and foreboding mountains dominating many of the shots and dwarfing the characters. The portrayal of the abandoned village and the Thuggee cultists cry of \"\"Kali!\"\" is genuinely haunting. This dimension of fear plays into all the other emotions that are at work here, causing us to worry for these likable characters, and making the comedy a greater relief of tension.<br /><br />A real touch of genius is in the way the eponymous hero is introduced to the audience. We are made aware of Din visually, as he is prominent in a number of scenes before any of the characters actually address him or verbally refer to him. Because of this, we are given the impression that Din is not an important figure within the regiment, but he quickly becomes a notable character to us, and crucially a sympathetic one, as we see him risking his life and giving water to dying men.<br /><br />But the best efforts of writers and directors are all for nought without a capable cast. Fear not, for Gunga Din has a top-notch one! Victor McLaglan and Cary Grant were ideally suited to the material, since their best roles were generally found somewhere on the spectrum between drama and comedy. Grant in particular is at his best, largely believable but just occasionally breaking into that over-the-top whooping and capering that was his trademark. Douglas Fairbanks, Jr. is not quite up to the standard of his heavyweight companions, but he is by no means bad. And of course there is Sam Jaffe, cursed by his looks to forever play these wizened little oddballs, but who else could play them with such dignity and humanity? I have not set out to bash the swashbuckling adventures of Errol Flynn and Tyrone Power, and indeed many of their pictures are absolute classics that I love absolutely. But Gunga Din does things that even the best of those swashbucklers could never achieve. Not only does it dispense with the dashing male lead or the clichéd defiant damsel, it successfully merges the action genre with comedy and poignancy, in a way that few pictures have done before or since. And that's fabulous.\"\r\n0\t\"This is awesomely bad and awesomely embarassing for a Canadian. We grow good wine. Our writers and poets are among the world's best. The National Ballet is rated among the top five companies in the world. BUT WE MAKE BLOODY AWFUL MOVIES! This one isn't especially bad. It's especially typical and typically bad, shot in two bit hotels and public parks with thin direction, high school level acting and \"\"gee whiz...lets see what this button on the camera does??\"\" photography. If Michael Moriarity was so intent on doing a Jack Nicholson impersonation, couldn't he at least have done a GOOD Jack Nicholson impersonation? And if the movie was shot in Vancouver, truly one of the loveliest cities on earth and also a centre of yacht building (part of the \"\"plot\"\") why in God's name do we let that endemic Canadian inferiority complex dictate that it be disguised as Seattle??? Not only am I mad about this film, I'm embarassed and more than a little ashamed. The Australians turn out some splendid stuff. We produce pretentious second rate piffle. Gawd!!!!!\"\r\n1\tI thought this was one of the best movies I've seen in a very long time. It was a great story line and showed that people are so intricate in all kinds of different ways. Have recommended it to all my friends!! I always enjoy a good story line and this movie had one of the best I've seen in a long time. I could see myself having a daughter and doing the same things that Natalie did to find out more about her life and loves. It showed how we not only have lives with our families ; but also have parts of our lives that we don't share with them - as it may not be in their best interest to know all the details of things we don't do that we are so proud of.<br /><br />I look forward to another such movie, and will keep my eye out.\r\n0\tNo cinematic achievements here, however that's not even the important question. How does it fare in its endeavour to be a competent date movie--and star vehicle?<br /><br />The formula requires the cute female lead a la Ryan or Aniston--check; there's a built-in TV audience!<br /><br />Add thick-headed, compliant men, usually including the problem ex-boyfriend/fiancée--check. <br /><br />Assemble a plot that maximizes the bankability of the stars. So far, so good.<br /><br />What is the male lead to consist of? He has to make all the women in the movie and in the audience (and the gay flight stewards) instantly swoon. But...he cannot be so hunky as to threaten to the male audience, and he can't outshine the star. Roll cameras...<br /><br />The problem is Messing thinks she's still in a sitcom...she has only one presentation: as the wide-eyed doormat that she's made a career out of. A capable actress might have pulled it off after the love scene, where things promptly nosedive into the soap suds. <br /><br />You can't help feeling good for Mulroney...you can read it in his face that he sees through all of this. He's gotten all the respect of a lifetime .260 hitter. This time, he smacks one out to the warning track, and no one can figure out what to do, as he amusedly takes home plate.\r\n1\t\"Despite the patronage of George Lucas, this captivating and totally original fantasy in \"\"Lumage\"\" (a combination of animation through live action cut-outs) is about as far removed from the usual kiddie fare as anything made by Ralph Bakshi in his heyday. Brilliantly conceived characters such as the shape-shifting dog Ralph (one of a duo of bumbling, rejected heroes), Synonamess Botch (the hilariously foul-mouthed villain) and Rod Rescueman (the pompous novice superhero) breathe life into a uniquely clever concept: Frivoli vs. Murkwood or, the eternal fight between dreams and nightmares. In this context, the MOR-infused songs on the soundtrack ought not to have worked but somehow they do. It's a real pity, therefore, that I have had to watch this via a truly crappy-looking boot (culled from a TV screening) of the uncensored version  there is also a milder variant that toned down the language for its VHS release  since the film is otherwise unavailable on DVD. Interestingly, both Henry Selick and David Fincher worked on this picture in subordinate capacities.\"\r\n1\t\"Sitting, Typing Nothing is the latest \"\"what if?\"\" fest offered by Vincenzio Natali, and starring David Hewlitt and Andrew Miller as two losers. One is having relationship problems, got canned from his job (because of relationship problems) and the police are out to get him (because of his job and his relationship problems). The other guy is a agoraphobic who refuses to go outside his home, is met by a bothersome girl guide who calls on her Mom to claim she was molested when he doesn't buy cookies from him. Oh yeah, the police are after him too, after the Mom of the girl scout call them in to arrest him.<br /><br />Man, what a day.<br /><br />What if you could make all of this disappear? That is the whole premise behind 'Nothing'. The two fools realize, the cops, the girl scout, the cars, the lawn, the road, everything disappear. There's nothing but white space! This is an interesting concept I thought. I also looked at the time of this, 30 minutes had gone in the movie, and I still had an hour left in the movie. Could the 2 actors make this work and keep us entertained for 60 minutes? Although the actors try, 60 minutes IS a long time and there is clearly dead air in places of this movie. But the two actors, whom are life-long friends with each other and the director, have such great repertoire with each other, that it was fun to watch for the dialogue and improve goofing around the two do. There are lots of supernatural elements, but it's more of their response to these elements that ultimately make this film worth seeing.\"\r\n1\t\"In Rosenstrasse, Margarethe von Trotta blends two stories to create a vibrant tapestry of love and courage. The film depicts a family drama of estrangement between a mother and her daughter, and the story of German women who staged a protest on Rosenstrasse to free their Jewish husbands from certain extermination. In addition to the dramatization of historical events, the focus of the film is on the saving of a child from the Holocaust by a German and the result of the child's experience of losing her mother. While Ms. von Trotta shows that the courage of a small number of Germans made a difference, she does not use it to excuse German society. Indeed, she shows how in the midst of torture and extermination, the wealthy artists and intellectuals of German high society went on about their lives and parties, oblivious to the suffering.<br /><br />Rosenstrasse opens in New York as a Jewish widow Ruth Weinstein (Jutta Lampe) decides to sit Shiva, a seven-day period of mourning that takes place following a funeral in which Jewish family members devote full attention to remembering and mourning the deceased. When her daughter Hannah (Maria Schrader), is forbidden to receive phone calls from her fiancé Luis (Fedja van Huet), a non-Jew, Hannah questions why her mother has suddenly decided to follow an Orthodox tradition that she previously rejected. When Ruth coldly rejects her cousin, Hannah questions her and learns about a woman named Lena who took Ruth in as a child when the latter's mother was deported and murdered by the Nazis, and she vows to find Lena and discover the secret of her mother's past.<br /><br />Her quest takes her to Berlin where she finds Lena (Doris Schade), now ninety years old, and interviews her on the pretext that she is a journalist researching certain aspects of the Holocaust. With unfailing memory, Lena tells her story of how, as a young 33-year old woman (Katja Reimann), she searched for her husband, Jewish pianist Fabian Israel Fischer (Martin Feifel), who disappeared and was presumed to have been imprisoned despite the protection normally given Jews in mixed marriages. Lena, in a radiant performance by Reimann, discovers that her husband and other Jews are being held prisoner in a former factory on the Rosenstrasse.<br /><br />Standing together in the freezing night, German women whose husband are missing congregate outside the building, their numbers growing daily until they reach one thousand shouting \"\"Give us back our husbands\"\". Lena finds Ruth (Svea Lohde), a young girl whose mother is in the building. She takes care of her, protecting her from the Gestapo and raising her after her mother is killed. Lena comes from an aristocratic German family and her brother, recently returned from Stalingrad, is a Wehrmacht officer. After being refused help from her father to free Fabian she enlists the aid of her brother who tells a fellow Officer, \"\"I know what they do to the Jews. I saw it\"\". Given his support, she is bold enough to bypass channels and go to the top where her beauty and charm prove irresistible for the Minister of Culture, Joseph Goebbels, a known womanizer. While this fictional part of the film has been criticized as degrading to the women protesters, it is a historical fact that Goebbels was very active in making the decisions affecting Rosenstrasse.<br /><br />The director Margarethe von Trotta, an activist, feminist, and intellectual, is no stranger to political drama. She directed a film about Socialist Rosa Luxembourg and Marianne and Julianne, a story of the relationship between two sisters, one of whom resorts to political violence to accomplish her liberal objectives. In Rosenstrasse, a film she worked on for eight years, she had to make compromises, adding the present day fictional element in order to have her film produced. That it works so well is a tribute to Ms. von Trotta's artistry and the beautiful screenplay by Pamela Katz whose father was a refugee from Leipzig. The events at Rosenstrasse give the lie to Germans, who say, \"\"there was nothing we could do\"\". Now von Trotta has shown the opposite to be true, that something could be done to resist the Nazis. It is tragic that the example did not catch on.\"\r\n0\t\"The US appear to run the UK police who all run around armed to the teeth and did you know that CID officers change into uniform when they stop work and go down the pub! This has got to be one of the most unrealistic films with the worst portrayal of \"\"real\"\" UK police that has ever been foisted on the unsuspecting public. I can see that Mr Snipes might have needed the money to pay his back tax bill but what the heck a good actor like Charles Dance was doing in it is a mystery.<br /><br />Worse than the worse low budget \"\"B\"\" film of the 50's. An hour and a half of suicide and time I will never get back.<br /><br />Avoid it like the veritable plague.\"\r\n0\t\"Another American Pie movie has been shoved down our throats and this one is the worst one of them all. It doesn't deserve the name American Pie. They should have stopped at \"\"The Wedding\"\".<br /><br />This movie feels like just a stupid porn movie which they slapped the title American Pie on. When i was watching this i felt like i was watching a different series. It doesn't fell like American Pie at all. It has different humor and it is much more rude and has many more sex scenes then the other American Pie movies.<br /><br />I don't recommend it ever. Actually i don't recommend any of the \"\"American Pie Presents\"\" movies. Just stick with the nice original trilogy.<br /><br />2/10\"\r\n0\tAnother big star cast, another glamour's set, another reputed director, another flick filled with songs that's topping the chart buster, but alas what's missing at the day end is a story that every moviegoer expects of from such a big budget motion picture. So much hype is what that was lurking around the movie before it's' red carpet premiere. A hype which went to an extent where Anil Kapoor envisages that the movie would be one of the finest love stories ever made after Dilwale Dulhaniya Le Jayenge. Well Anilji, which movie were you speaking of? Well the plot of the movie is about 6 different couples and 12 different people, who have a total different stance towards life, but despite their different approach towards life they all have one common problem, that's LOVE. Well indeed a luring theme. But little did we expect that the movie would be such boredom that it will let down the last expectation the audience would have from such a multistarrer movie. These are kinda movies which I totally abhor because after spending a hefty buck for a multiplex ticket I get locked in the theatre for 4 hours just waiting in agony for the climax.<br /><br />The trouble begins right from the start. The director gets so confused with the plot that somewhere even he gets baffled as to how to share the time slot to six different star casts. Some of the couples like Anil Kapoor-Juhi and Sohail Khan-(Whoever the female is opposite to him) just doesn't make any sense for their existence in the movie. Salman (Who calls himself rahul in a weird manner for the entire movie. Well something like Rahoooooool) again as usual tries to be extra cool with his Videsi kinda Hindi accent. Hey Sallu Bhai, now that Aish is getting married, at least go get some tip from Abhishek to improve your acting abilities. A simple striptease wouldn't make the movie a box office hit every time. And Anilji stop shaving your trade mark beard or you look totally like a eunuch. And smooching a girl of your daughters' age just looks as uncool as watching Jack Nicholson in a romantic movie. And please Nikhilji avoid putting such superfluous scenes in a movie that is totally not needed for the shot.<br /><br />The other bigger flaw in the movie was that there wasn't any perfect synchronization between the stories of different couples. Every story itself looks as if it is taken from different flicks, put together to form a sadistic plot of Salaam-E-Ishq. Bollywood still has to learn a lot from movies like Snatch, Memento where the director knows the perfect art of threading the different unrelated sequences to form a perfect blended storyline.<br /><br />Somewhere while I was evaluating the pre-release movie reviews someone predicted that the movie wouldn't do good because the title of this movie adds up to the number 28, and 28 is considered a bad number in Numerology. But I totally take my stand by saying the movie will fail not coz of its Numerology defects, but because of the myriads of flaw that persisted in the movie. And when director like Nikhil Advani can make such major blunders in the entire storyline of the movie, any wonder wouldn't have saved the movie from bombing at the Box Office.<br /><br />My suggestion for all you guys is, please avoid watching this movie at any cost. It isn't worth a pie that you pay for the ticket. There indeed are better movies on theater screens currently which are worth watching more than Salaam-E-Ishq.\r\n0\t\"Oh, for crying out loud, this has got to be the LAMEST movie I've seen all year, and I'm sorry the normally awesome John Cusack was even involved in this brainless, twitty piece of Stupidity. Where Sleepless in Seattle delivered what amounts to be the same message, albeit on a more subtle, somewhat more mature level, Serendipity delivers it with a sledgehammer, and then proceeds to pound it into your psyche for the next tedious hour and a half or so (and that's an hour and a half of my life I'll never get back again, thank you very much!!). It's bad enough the main characters of this movie have the emotional maturity level of fourteen-year-olds (actually I've known better fourteen-year-olds...), except maybe for Jeremy Piven, who was enjoyable enough. Just the first 15 minutes or so of the movie where Kate Beckinsale's character plays that annoying silliness of a game about throwing all sensibility to the wind (literally) had my best friend and I irritated beyond belief. I told my husband Rockstar had more intelligence, and at least, the characters in Rockstar weren't half as dysfunctional as the idiots were in this \"\"Serendipitous\"\" mess. It's annoying to watch protagonists who seem to have no clue about choice in their lives, and feel they're nothing more than puppets to destiny and the whims of fate. How utterly tiresome. I'm sure this movie will be more likely enjoyed by those who'd rather not engage in the chaotic messiness of making more complex life choices and then responsibly living with the consequences. After all, here's a movie where our hero and heroine live happily ever after only after wreaking havoc and misery on two other people's lives (namely their respective fiancées), not to mention other relatives and friends, just to get there.<br /><br />\"\r\n1\tI first saw this movie about 20 years ago and have never forgotten it. It's beautifully filmed and the story keeps one riveted for the entire time. It's difficult to believe this was made in 1946, as the tale is still fresh today, and really makes one think. I'm not very knowledgeable regarding film technique however the special effects in this film are terrific considering when this was made. In addition, the acting is superb, and the use of English and American actors quite astounding. I recently purchased the DVD so now I'm able to watch whenever I wish. I highly recommend anyone interested in post-war British films to watch this.\r\n1\tI didn't expect much from this, but I have to admit I was rolling on the ground laughing a few times during this film. If you are not grossly offended in the first ten minutes, this might be a film for you. Ditto if you are the type that would enjoy watching Amanda Peet shuffling cards for an hour and a half. It's certainly not a momentous work of comedy, but given the low-budget indy genesis this is masterful. To level the playing field for comparison, imagine all of the studio films with their budgets slashed by a factor of 100 or so and see what you get! Kudos to Peter Cohen and his network for seeing this through. I look forward to his next effort.\r\n0\tSeriously, I'm all for gooey romantic comedies and will get sucked into Miss Congeniality as easily as Goodfellas...but this movie? It doesn't make any sense!!!! And I'm not even talking about the willing suspension of disbelief kind of not making sense. Why does her family live in England? Or, at the very least, why doesn't she have a British accent? She's sure cozy with her dad and he's surprisingly forgiving of her not being around for the last two years. (On that subject, no one ever makes much of a deal about her being away for so long). And what was with the goofy outfits at the bachelorette party? I'm not even going to get into the fact that the escort she paid for falls in love with her--that could've been overcome by better movie-making. I'm just saying that the characters, the setting, and the plot aren't fleshed out enough to make an even somewhat cohesive story. Oh, and the worst part, in my opinion, is the filmmaker's consistent use of the most unflattering angles on Deborah Messing's nose--I'd have sued the filmmakers if I were her! I mean, honestly, I'm all for women being who they are, but why, in seven loyal years of Will and Grace viewing, have I not ever noticed how incredibly odd her nose is? Oh! Because those producers are kind to her! This movie, like my other least favorite movie ever, Armageddon, is the fault of the filmmakers, not the actors. I can see both Messing and McDermott in these roles with a better writer, director, and producer.<br /><br />This easily gets my vote as one of the worst movies I've ever wasted time on. I'm just glad a friend loaned me her DVD, so all I wasted was time. If there were a way to make this review ZERO stars, I'd do it.\r\n0\tIt's amazing that this movie turns out to be in one of my hitlists after all. It is by far the number 1 worst movie I have ever seen.<br /><br />Not only have I ever been this bored before (luckily not for more then 1,5 hours), the pre-adolescent attempts at humor that feature it are not even close to getting but one of the corners of my mouth slightly tilted. After the first very awkward part, you tend to hope that the other parts will be at least slightly better. You hope in vain, it only goes downhill from there.<br /><br />The movie has no story worth telling whatsoever and repeats this non-story three times. One can only hope that by some miracle all remaining copies of this movie are lost forever and Trent Harris never lays his hands on a camera again...\r\n1\tAlthough I have not seen this mini-series in over twenty years I can still remember how the balance between character,plot and tale of marvelous adventures succeeded. The use of special effects was restrained making a more poetic rather than literal telling of the story. The two versions I've seen were dubbed (English and French)but the actors appear to speak their own language not just Italian so there is a synchronization problem. It does not spoil the story telling. Among the cast Irene Pappas as Penelope is the most recognizable to North Americans. Recommended to all followers of Odysseus' ever returning.\r\n0\t\"This is a total waste of money. The production is poor, the special effects are terrible. In my country they had the courage to put this film on video named as \"\"The Mummy\"\" because of the success of Brendan Fraser`s film. I`m sure that you can find better horror movies.\"\r\n1\tOh yeah! Jenna Jameson did it again! Yeah Baby! This movie rocks. It was one of the 1st movies i saw of her. And i have to say i feel in love with her, she was great in this move.<br /><br />Her performance was outstanding and what i liked the most was the scenery and the wardrobe it was amazing you can tell that they put a lot into the movie the girls cloth were amazing.<br /><br />I hope this comment helps and u can buy the movie, the storyline is awesome is very unique and i'm sure u are going to like it. Jenna amazed us once more and no wonder the movie won so many awards. Her make-up and wardrobe is very very sexy and the girls on girls scene is amazing. specially the one where she looks like an angel. It's a must see and i hope u share my interests\r\n1\t\"Sherman, set the wayback machine for... 1986. The United States was just climbing out of its worst postwar recession, while Japan was enjoying an unprecedented industrial boom. Manufacturing industries were still a significant part of the US economy, and factory workers were a good example of the \"\"average American\"\". The word \"\"downsizing\"\" hadn't entered the general vocabulary yet, but everyone knew the phenomenon. Bruce could be heard on the radio singing, \"\"Foreman says these jobs are going, boy, and they ain't coming back to your hometown.\"\" Chrysler had just been bailed out by Uncle Sam. Bumper stickers could be seen saying \"\"Buy American -- the job you save may be your own.\"\"<br /><br />\"\"Gung Ho\"\" does a better job of capturing the mood of the American industrial workforce than just about any other popular movie made during that period. Certainly the movie has its flaws -- some loose plot threads and mediocre acting jobs by everyone except Michael Keaton and Gedde Watanabe. But the story really is about the meeting of East and West: Keaton's Hunt Stevenson personifies America, brash and confident on the outside yet insecure underneath. Watanabe's Kazuhiro personifies Japan, on top of the heap with a successful system, but wondering if there is more to be learned from their Western rivals. The movie's plot, flawed as it is, simply provides a framework for the conflict, and eventually synthesis, of their two personalities.<br /><br />Keaton's acting overshadows everyone else's, and practically makes the movie by itself. I've always admired Keaton for his ability to deliver lines that feel improvised, no matter what script he's following. His character, Hunt Stevenson, is a likable, affable everyman, a natural leader with a wise-ass streak. But he has a fatal flaw common to many of us: he doesn't want to disappoint anyone. He'll distract the crowd with inspirational anecdotes, and even lie, rather than point out the ugly truth.<br /><br />Kazuhiro is the mirror image of Stevenson: shy and introspective, but also, because of his Japanese upbringing, reluctant to be the bearer of bad news. The scene in which Stevenson first comes to Kazuhiro with the employees' grievances captures perfectly the Japanese approach to workplace conflict. Kazuhiro replies to Stevenson's complaints with \"\"I understand what you are saying,\"\" but won't refuse his requests out loud. Stevenson misinterprets this as agreement, and goes away saying, \"\"Okay, we've got that settled.\"\" (This is still a problem in Japanese-American business relations in the 21st century!)<br /><br />Ultimately, Kazuhiro and Stevenson have the same problem: get the factory working smoothly, meet production goals, and fulfill their responsibility to the workers under them. In working towards this goal, they each have to take a page from the others' book. Kazuhiro's family becoming more \"\"Americanized\"\" is an obvious example. Also note that Stevenson thinks it's odd when Kazuhiro explains how he had to make a public apology to his workers for failing them -- and yet, later in the movie, Stevenson does exactly that himself.<br /><br />The plot and its resolution are a little cornball, but hey, this is a comedy. If you can overlook the movie's flaws, there is a great story about self-realization and open-mindedness here.\"\r\n0\tEn route to a small town that lays way off the beaten track (but which looks suspiciously close to a freeway), a female reporter runs into a strange hitch-hiker who agrees to help direct her to her destination. The strange man then recounts a pair of gruesome tales connected to the area: in the first story, an adulterous couple plot to kill the woman's husband, but eventually suffer a far worse fate themselves when they are attacked by a zombie; and in the second story, a group of campers have their vacation cut short when an undead outlaw takes umbrage at having his grave peed on.<br /><br />The Zombie Chronicles is an attempt by writer Garrett Clancy and director Brad Sykes at making a zombie themed anthologya nice idea, but with only two stories, it falls woefully short. And that's not the only way in which this low budget gore flick fails to deliver: the acting is lousy (with Joe Haggerty, as the tale-telling Ebenezer Jackson, giving one of the strangest performances I have ever seen); the locations are uninspired; the script is dreary; there's a sex scene with zero nudity; and the ending.... well, that beggars belief.<br /><br />To be fair, some of Sykes' creative camera-work is effective (although the gimmicky technique employed as characters run through the woods is a tad overused) and Joe Castro's cheapo gore is enthusiastic: an ear is bitten off, eyeballs are plucked out, a face is removed, brains are squished, and there is a messy decapitation. These positives just about make the film bearable, but be warned, The Zombie Chronicles ain't a stroll in the park, even for seasoned viewers of z-grade trash.<br /><br />I give The Zombie Chronicles 2/10, but generously raise my rating to 3 since I didn't get to view the film with the benefit of 3D (although I have a sneaking suspicion that an extra dimension wouldn't have made that much of a difference).\r\n0\tThis movie had a good story, but was brought down because it didn't have enough horror film elements and violence. It was like watching a live action cartoon. It would of been better if this story is what they planned from the start of the first movie so they could of played seeds for where the series was going.\r\n1\tI don't care how many bad reviews purple rain gets, this movie rocks! Excellent movie, has it all, great music(Prince of coarse!), romance, and drama.<br /><br />This is really a very sad movie, very moving. I don't want to say TO much more, I;m not into giving away the plot, but I will say this-the film is VERY realistic, there are so many romantic relationships that go through these problems, so many familys similiar to the one depicted in the film. I see this as being very realistic and being so real, makes the movie that much more moving. My generation loved this movie growing up, so many of us loved Prince and there is alot to relate to for any teenager who has gone through similiar problems.<br /><br />That said, it's definetly NOT just a movie for teens, Id recomend it to all age groups. And it's not all so dark, the movie has some great music, band performance scenes, and sexy fun scenes between Prince and Appelonia.\r\n1\tThis movie resonated with me on two levels. As a kid I was evacuated from London and planted on unwilling hosts in a country village. While I escaped the bombing and had experiences which produced treasured memories (for example hearing a nightingale sing one dark night for the very first time) and enjoying a life I never could have had in London, I missed my family and worried about them. Tom is an old man whose wife and child have both died and who lives alone in a small country village.As an old man who is now without a wife whose kids have gotten married and live far away in another province, I am again sometime lonely. The boy's mother is a religious fanatic with very odd ideas of raising a child. Since a deep affection has grown between old Tom Oakley and this young lad, Tom goes in search of him and finally rescues him from very odd and dangerous circumstances. At the end of the story there is great tension since due to some bureaucratic ruling it seems that the child is going to lose someone who has developed a loving relationship with him.\r\n0\tEvery once in a long while a movie will come along that will be so awful that I feel compelled to warn people. If I labor all my days and I can save but one soul from watching this movie, how great will be my joy.<br /><br />Where to begin my discussion of pain. For starters, there was a musical montage every five minutes. There was no character development. Every character was a stereotype. We had swearing guy, fat guy who eats donuts, goofy foreign guy, etc. The script felt as if it were being written as the movie was being shot. The production value was so incredibly low that it felt like I was watching a junior high video presentation. Have the directors, producers, etc. ever even seen a movie before? Halestorm is getting worse and worse with every new entry. The concept for this movie sounded so funny. How could you go wrong with Gary Coleman and a handful of somewhat legitimate actors. But trust me when I say this, things went wrong, VERY WRONG.\r\n1\t\"Thomas Capano was not Anne Marie's boss Tom Carper, the Governor was. That is the reason the Feds became involved, he called Clinton and asked him to get the Feds involved in the case. I lived outside of Philadelphia at the time so the case was front page news every day. I also read Ann Rule's book and saw the \"\"City Confidential\"\" segment on A&E. Tom Capano was a megalomanic(sp.), an uber-controller and a monster. He claimed to love Ann Marie but all he wanted was someone that he could control. When she wouldn't let him do that anymore he killed her, the ultimate form of control. I think it's a waste of money that he is still alive.\"\r\n0\t\"Ladies and Gentlemen,please don't get fooled by \"\"A Stanley Kubrick\"\" film tag.This is a very bad film which unfortunately has been hailed as one of the deadliest horror films ever made.Horror films should create such a fear that during nights people should shiver their hearts out while thinking about a true horror film.In Shining,there is no real horror at all but what we find instead is just a naive,foolish attempt made to create chilling horror.Everyone knows as to how good the attempts are if they are different from reality.All that is good in the film is the view of the icy valley. The hotel where most of the actors were lodged appears good too.A word about the actors Jack Nicholson looks like a lost,lazy soul who is never really sure of what he is supposed to do.There is not much to be said of a bald,colored actor who for the most of times is busy pampering a kid actor.No need to blame the bad weather for the tragedy.It cannot be avoided as the film has been made and poor Kubrick is not alive to make any changes.\"\r\n0\t\"Not even Goebbels could have pulled off a propaganda stunt like what Gore has done with this complete piece of fiction. This is a study in how numbers and statistics can be spun to say whatever you have predetermined them to say. The \"\"scientists\"\" Gore says have signed onto the validity of global warming include social workers, psychologists and psychiatrists. Would you say a meteorologist is an expert in neuro-surgery? The field research and data analysis geologists are involved in do not support Gores alarmist claims of global warming. As one of those geologists working in the field for the last 40 years I have not seen any evidence to support global warming. My analysis of this movie and Gores actions over the last couple years brings me to the conclusion that global warming is his way of staying important and relevant. No more, no less. Ask any global warming alarmist or \"\"journalist\"\" one simple question- You say global warming is a major problem. Tell me. What temperature is the Earth supposed to be?\"\r\n0\tthis movie is the worst ive seen.. nicole kidman really dissapointed me.. this movie has nothing. i would not watch it again even if it were the last movie on earth. great actors but bad script.\r\n0\t\"I was dreading taking my nephews to this movie, as I didn't think it was going to be well done. The kids, ages 6 and 10 were set on seeing it, so I caved. I must admit that it was not nearly as bad as I had thought, but was still a far cry from the book. The movie seemed right on with the 10 year old's understanding and sense of humor. I found that the 6 year old understood what was going on and he was presenting solutions to the issues that were taking place. I eventually had to explain that sometimes the movies don't show the best solutions to the problems because it is more fun to watch what happens if they make the \"\"silly\"\" or \"\"stupid\"\" choices.\"\r\n1\t\"Part of what was so great about the classic Looney Tunes cartoons was their irreverence and how they weren't afraid to do anything that they wanted. In this case, Marvin the Martian has an assignment to bring back an earthling. Sure enough, he comes across Bugs Bunny, who warns of a mutiny on the part of Marvin's dog. After Marvin finally traps Bugs - by means of an Acme strait jacket-ejecting bazooka! - Bugs has more stuff planned for the voyage back to Mars. What I mean is, if you thought that it was a major change in the Solar System when they stripped Pluto of its planet status, then you ain't seen nothing yet! Yes, \"\"The Hasty Hare\"\" goes all out. How they buy Acme products in outer space is probably beyond most people, but the point here - I mean \"\"hare\"\" - is to have fun. And believe me, you definitely will. After all, a little space-out never hurt anyone.\"\r\n0\t\"Ridiculous. This movie is actually a vehicle for the Ramtha School of Enlightenment. If you are wondering who the *bleep* Ramtha is: \"\"Ramtha is a 35,000 year-old spirit-warrior who appeared in J.Z. Knight's kitchen in Tacoma, Washington in 1977. Knight claims that she is Ramtha's channel. She also owns the copyright to Ramtha and conducts sessions in which she pretends to go into a trance and speaks Hollywood's version of Elizabethan English in a guttural, husky voice. She has thousands of followers and has made millions of dollars performing as Ramtha at seminars ($1,000 a crack) and at her Ramtha School of Enlightenment, and from the sales of tapes, books, and accessories (Clark and Gallo 1993). She must have hypnotic powers. Searching for self-fulfillment, otherwise normal people obey her command to spend hours blindfolded in a cold, muddy, doorless maze.\"\" John Wheeler, one of America's finest theoretical physicists, would roll his eyes about this movie. He has in the recent past criticized parapsychologists for their misuse and misinterpretations of quantum theory. This movie does the same thing as those fools.<br /><br />There is a great review of this movie at Skeptico. I recommend anyone considering watching this movie read it first before contributing to a cult's coffers.<br /><br />http://skeptico.blogs.com/skeptico/2005/04/what_the_bleep_.html I noticed one reviewer here at IMDb say to take this movie with a grain of salt. It will take enough salt to kill a horse to wade through the garbage-thinking of this movie.\"\r\n1\t\"In Northeastern of Brazil, the father of the twelve years old illiterate Maria (Fernanda Carvalho) sells his daughter to the middle man of a prostitution organization, Tadeu (Chico Dias), to be employed as a housemaid and have a better life. However, the girl is resold to the farmer Lourenço (Otávio Augusto) that deflowers her, and he gives the abused girl to his teenager son to have his first sexual experience. Then she is sent to a brothel in a gold field in Amazonas and explored his owner, the despicable Saraiva (Antonio Calloni). When Maria escapes to Rio de Janeiro expecting a better life, she is explored by the cáften Vera (Darlene Glória).<br /><br />\"\"Anjos do Sol\"\" exposes the sad and shameful reality of child prostitution in Brazil through the fate of the girl Maria. Last year I saw \"\"Lilja 4-ever\"\" that tells an identical story in the former Soviet Union; therefore this problem does exist in Third World countries. Director and writer Rudi Lagemann presents a great movie exposing the reality but never showing nudity or explicit sexual scenes. It is the debut of the promising Fernanda Carvalho, who has an excellent performance in the role of a scared child fighting for survival. Most of the prostitutes are amateurs, and it is impossible to recognize the famous Darlene Glória so different she is after many plastic surgeries. The bitter and hopeless end of the story is also very realistic. My vote is ten.<br /><br />Title (Brazil): \"\"Anjos do Sol\"\" (\"\"Angels of the Sun\"\")\"\r\n1\tGung Ho is one of those movies that you will want to see over and over again. Michael Keaton is put in charge of wooing a Japanese car company to come to his town thus creating jobs for the residents of Hadleyville. What happens after that is one hilarious moment after another. The two cultures clash and it is up to Keaton to hold things together. Look for great performances from Keaton, Gedde Watanabe, George Wendt, Mimi Rogers, John Turturro, Soh Yamamura and Sab Shimomo. All are perfectly cast. Don't be fooled by the low number rating. This is a 7.5 in my book. It is interesting to note that the town name of Hadleyville was also used in High Noon. Yes, there is a real Hadleyville but in Oregon.\r\n1\t\"The arrival of vast waves of white settlers in the 1800s and their conflict with the Native American residents of the prairies spelled the end for the buffalo... <br /><br />The commercial killers, however, weren't the only ones shooting bison... Train companies offered tourist the chance to shoot buffalo from the windows of their coaches... There were even buffalo killing contests... \"\"Buffalo\"\" Bill Cody killed thousands of buffalo... Some U. S. government officers even promoted the destruction of the bison herds... The buffalo nation was destroyed by greed and uncontrolled hunting... Few visionaries are working today to rebuild the once-great bison herds... <br /><br />\"\"The Last Hunt\"\" holds one of Robert Taylor's most interesting and complex performances and for once succeeded in disregarding the theory that no audience would accept Taylor as a heavy guy...<br /><br />His characterization of a sadistic buffalo hunter, who kills only for pleasure, had its potential: The will to do harm to another... <br /><br />When he is joined by his fellow buffalo stalker (Stewart Granger) it is evident that these two contrasted characters, with opposite ideas, will clash violently very soon...<br /><br />Taylor's shooting spree was not limited to wild beasts... He also enjoy killing Indians who steal his horses... He even tries to romance a beautiful squaw (Debra Paget) who shows less than generous to his needs and comfort...<br /><br />Among others buffalo hunters are Lloyd Nolan, outstanding as a drunken buffalo skinner; Russ Tamblyn as a half-breed; and Constance Ford as the dance-hall girl... But Taylor steals the show... Richard Brooks captures (in CinemaScope and Technicolor) distant view of Buffalos grazing upon the prairie as the slaughter of these noble animals...<br /><br />The film is a terse, brutish outdoor Western with something to say about old Western myths and a famous climax in which the bad guy freezes to death while waiting all night to gun down the hero...\"\r\n1\tI don't know why I picked this movie to watch, it has a strange title and from the description it just looked like something different. Every once in a while its good to try a film that's slightly different from the mainstream Hollywood hero/thriller flick and this film certainly was different. Right from the beginning this film had me intrigued but I couldn't figure out why until the end if the film when I realized that the movie was great because the characters were so real. I thought the acting was superb and the character development really makes you care about them and hope things turn out well for them in the end. I think that everyone who watches the film could in some way relate to one of the characters and this makes for great viewing and some good laughs at the sheer ordinariness of the actors. <br /><br />At the culmination of the movie you definitely get a sense of well being, and are left with the 'things are going to be OK' type of a feeling. I'm sure this will have wide appeal and should be given a chance.\r\n0\tThis movie was exactly what I expected, not great, but also not that bad either. In my opinion PG13 movies aren't scary enough so that's why I already knew I was going to be bored throughout the entire film. Sure there were scary things going on in the hotel room, but nothing we all haven't already seen. I guess I didn't like it because I thought there were too many twists and turns happening; it got old and repetitive. I also didn't understand if all the things Cusack was experiencing in the room was real or not. There is no explanation for any of the events that occurred. The movie just drags on and when it finally does come to an end you want it to keep going because you are still waiting around for someone to tell you what the whole movie was about. What I did like was the special effects. Other than that there wasn't much enjoyment from it. Maybe its just me but I thought this was below average.\r\n0\tOnce again a film classic has been pointlessly remade with predictably disastrous results. The title is false as is everything about this film. The period is not persuasively rendered, and the leads seem way too young and too vapid to even be criminals. Arthur Penn's film had style, humor, a point of view, and was made by talented people. Even if the 1967 version didn't exist this would still be an unnecessary film. The 1967 version strayed from the facts, presented a glamorized version of Bonnie and Clyde, but it was exciting, and innovative for 1967, and it had some outstanding performances that allowed you to care. This 1992 remake seems culled from the original film rather than the truth as known and the actors in this version are callow, unappealing, and not the least bit interesting. By all means skip this one and hope the 2010 version will be better. Could it possibly be worse?\r\n0\t\"The main character Lance Barton gets killed and to heaven before his time. When heaven learns about the mistake he is given the body of just deceased rich old and white Mr. Wellington.<br /><br />A young black guy in a old white mans body still behaving like the young black man is maybe funny if you see it done by an old white actor. In this movie I ended up reminding myself several times: \"\"Chris Rock is supposed to be an old white guy\"\".<br /><br />The whole concept does not play as intended: The \"\"illusion\"\" is not transported well and the love story is not believable at all. The fact that all you see is Chris Rock playing a young black guy, because the old white person everyone is supposed to see is only shown in small scenes, is to much of a challenge for the viewers \"\"suspension of disbelief\"\".\"\r\n0\t\"Disjointed, unclear, bad screenplay, poor photography and direction...all in all very obviously an ill-conceived first effort at commercial film-making by the good people at TBN.<br /><br />TBN Pictures has had great success in the past by helping to bring \"\"China Cry\"\", the story of Nora Lam, to the big screen. But \"\"The Omega Code\"\" is an unfortunate miscue. As a Christian who supports TBN and a lot of its programming and who loved \"\"China Cry\"\", I still find it impossible to recommend this film to anyone. They do much good with their ministry, but this isn't an example of it. Don't waste your money...go rent \"\"China Cry\"\" instead.\"\r\n0\tComment this movie is impossible. Is terrible, very improbable, bad interpretation e direction. Not look!!!!!\r\n1\t\"<br /><br />It's a generic coming-of-age story -- think \"\"The Member of the Wedding,\"\" \"\"Summer of '42,\"\" \"\"A Summer Place,\"\" even \"\"Little Women\"\" -- and there are moments where Mulligan might have omitted the soupy music, not used slow-motion, or played down the golden-lit prettiness of the setting. Otherwise, it's done with rare emotional perfect-pitch. Nothing's forced, every line has feeling, and the pacing is just right. Even the below-A-list casting helps: Bigger movie stars with more recognizable personalities might have overwhelmed the material. In particular, Witherspoon is excellent: Her line readings are fresh and original, and her body language is just right for a gawky, hoydenish 14-year-old on the eve of womanhood. Waterston is also very fine, even if he has to spend much of the movie climbing in and out of the family truck.<br /><br />One senses that the film's makers were aware of its unpromising commercial prospects -- no big stars, no big car crashes, no special effects -- and consciously decided to make the best possible movie, box office be damned. It's intimate and honest, and it sticks to the ribs. If you find yourself misting up at the end, you don't have to feel you've been duped.\"\r\n0\t\"Much has been written about Purple Rain, the apparent \"\"quin-essential\"\" musician bio movie, however I'm here to tell you that the movie does not deserve it's high praise.<br /><br />First of all let's get one thing straight Prince is a great musician and Music is the one area where Purple Rain excels. Even the score is mesmerising, and if this was shot purely as a concert film it would be a great experience unfortunately it's not and as such the movie has some problems.<br /><br />First of all is the horrendous acting/writing, Prince's character \"\"The Kid\"\" is supposed to come off as some type of mysterious loner of few words unfortunately this just comes off as corny and incensere. A good loner character should at least have some talkative moments, unfortunately Prince's character rarely has over a few words of dialog in the film and it's hard to believe that he'd get the girl this way. Everything just seems a little off here, which is a shame because you can tell this is a character that's terribly conflicted and lives a very complicated live, but we aren't ever allowed to get inside of it.<br /><br />A surprising aspect of this film is just how much of this takes place in concert. Prince and Morris's lives seemingly take a back seat to the performances here, which I guess makes sense from a business perspective, but it's exhausting to have a 2 hour movie where seemingly half of it takes place on stage, especially when the character's back stories get pushed aside for it.<br /><br />So to sum it up: This isn't a very good movie.\"\r\n1\t\"After gorging myself on a variety of seemingly immature movies purchased on ex-rental DVDs, I figured that the time was right for a little serious drama and who better to provide it than Sam Mendes? For a number of reasons, \"\"American Beauty\"\" doesn't appeal to me as much as this film which is easily the darkest thing that Tom Hanks has ever done and probably one of the most underrated films of the last decade. For this is not a simple gangster tale lifted from its graphic novel origins, and is simply wonderful to watch because of it. And despite my usual allergy to any film with Tom Hanks' name on it (still can't watch \"\"Big\"\" without wanting a cat to kick), I'm glad I gave this a try because this is one of those movies that you'll kick yourself for if you miss it.<br /><br />Normally squeaky-clean Hanks plays Michael Sullivan, a devoted family man and father of two sons growing up during Prohibition in the early 1930's. He is also a professional hit-man to mob boss John Rooney (Paul Newman) but has managed to keep his job a secret from his sons. But after his eldest (Tyler Hoechlin) witnesses his dad involved in a mob killing, the pair are forced to go on the run as John seeks to tidy the matter up. Soon, father and son are pursued to Chicago where a fellow hit-man (a menacing Jude Law) is waiting for them.<br /><br />On the face of it, it reads like a pretty standard gangster film but as I've said, this isn't really about gangsters at all. It's about the relationship between a father and son thrown together in the most tragic of circumstances. Hanks is (*grits teeth*) superb as the tortured man who finds out that everything has its price and little Hoechlin is also good as Sullivan's son. In all honesty, there is not a single performance that I could single out as weaker than the others - the cast is pretty much faultless. As is the cinematography and costumes (and it's not often I praise costumes!) which recreates the 30's with stunning effect. There has been so much effort to get everything right and it pays off in spades. This could easily have looked rubbish - they admit that the early 30's look was difficult to put down - but it doesn't and that deserves every bit of credit. Chicago especially looks fantastic, lined with hundreds of rickety cars from the era and filled with people in monochrome suits and hats. True time-travel, even if a little CGI is needed.<br /><br />The story is also a winner, offering a human face to what is often seen as a stereotypical genre of movie villain. Law is surprisingly menacing as the almost mechanical killer Maguire and proves that you don't have to be Cagney or De Niro or Brando to play a gangster. The film is decidedly noir-ish, driving rain and ill-lit warehouses predominate but at least violence and killing are (finally) seen to have an emotional and psychological impact on those who perpetrate and those who merely witness such acts. The whole thing is evocative of a previous age and previous movies but it sweeps away the old and refreshes with a modern tale of redemption amid the Tommy-Gun shootouts and extortion rackets. It can feel a little slow in places, especially if you're used to masses of gun-play in movies like most modern audiences (like yours truly) but sometimes, words can speak louder than actions. Mendes has delivered a fine follow-up to his Oscar-winning debut, a film which is as intelligent as it is beautiful to watch. \"\"Road To Perdition\"\" may not be to everyone's tastes but this is one DVD I shall not be exchanging anytime soon.\"\r\n1\tKalifornia is a movie about lost ideals. A journey on the darkest road ever. The road of no return. The plot is about a couple that set out to find a better life in California. The man (David Duchovny in his best role up to now) wants to write a book about the famous crimes that have happened in America and his girl - who is a photographer - is going to take the pictures. So they set out on a trail of famous murders not knowing what awaits them on the way. To share the journey expenses they decide to find another couple and they put an ad. But the couple that answers it is not just ANY couple. It is one of the strangest couples ever. The girl is a naive, frail creature that dreams a lot and loves cactuses. The man is exactly the opposite. A cruel ruthless murderer. We learn that early in the film and we follow him along the journey to Kalifornia (not with C as usual, but with K, presumably symbolizing the word killer), along his journey of betrayal, murder and finally defeat. All the leads, Duchovny, Pitt, Lewis and Forbes give really good performances and you have to take into consideration that when this movie was filmed not even one of them was a star. The photography is amazing, with darkness covering the greatest parts of the movie, and the music suits the dark character of the film. On the whole this is a really good movie. Don't miss it. You'll think again before taking some stranger in your car to share the gas with!\r\n1\t\"On Sunday July 27, 1997, the first episode of a new science fiction series called \"\"Stargate SG-1\"\" was broadcast on Showtime. A spin-off of and sequel to the 1994 film \"\"Stargate\"\" starring Kurt Russell and James Spader, the series begins approximately one year after the events portrayed in the film. For ten seasons, it chronicled the adventures and misadventures of an intrepid team of explorers known as SG-1. Originally, the series starred Richard Dean Anderson as Colonel Jack O'Neill (two \"\"l\"\"s!), Michael Shanks as Dr. Daniel Jackson, Amanda Tapping as Captain Samantha Carter, Christopher Judge as Teal'c and Don S. Davis as Major General George S. Hammond. For ten long years, we watched the team battle against the Goa'uld, the Replicators, the Ori and many other aggressors. At the same time, they forged alliances with the Asgard, the Tok'ra, the rebel Jaffa, the Nox and the Tollan. They saved the world no less than eight times over the years and never gave up, not until death claimed them. And sometimes not even then.<br /><br />As with all long-running series, they were numerous cast changes. Michael Shanks left the series in January 2002 at the end of its fifth season in order to broaden his horizons as an actor. Daniel Jackson's successor as the team's resident archaeologist/geek was Jonas Quinn, an alien from a country called Kelowna on the planet Langara, played by Corin Nemec. However, Shanks returned at the beginning of the seventh season in June 2003 and Nemec left at the same time. Unfortunately, he made only one further guest appearance and his character was seldom mentioned afterwards. Don S. Davis left the series at the end of the seventh season in March 2004 as he felt that it was time for him to go. The show's original star and arguably its most popular actor, Richard Dean Anderson, starred in the series throughout its first eight seasons. His participation in the seventh and eight seasons was noticeably less than in the earlier seasons. He finally left \"\"SG-1\"\" in March 2005 in order to spend more time with his then six-year-old daughter. Jack O'Neill was by far my favourite character in the series and, truth be told, I never enjoyed the last two seasons as much as I did the earlier episodes for that very reason.<br /><br />The ninth season represented a new era for the programme. With the departure of its lead actor and the defeat of the Goa'uld and the Replicators in Season Eight, many fans felt the series should go out on a high. Regardless, the series carried on for a further two years with the Ori replacing the Goa'uld as the series' main adversaries. Three new characters were brought in to fill the gaps as it were and help usher in this re-invention. Ben Browder came in as the cocky Southern Air Force pilot Lt. Colonel Cameron Mitchell, the new leader of SG-1. His \"\"Farscape\"\" co-star, the lovely Claudia Black, began to play a prominent role in the series as the vivacious, sexy, hilarious and certainly extroverted Vala Mal Doran, a former Goa'uld host and con artist from another planet. A recurring guest star during the eighth and ninth seasons, she joined the cast full time at the beginning of its tenth and final season. Rounding off the cast was the legendary Beau Bridges as Major General Hank Landry, the new commander of the SGC and an old friend of Jack O'Neill and General Hammond. For the last two years, they starred alongside the \"\"SG-1\"\" faithful (Michael Shanks, Amanda Tapping and Christopher Judge) and became valuable parts of and made equally valuable contributions to the Stargate franchise.<br /><br />Alas, all good things must come to an end. During the initial broadcast of the first several episodes of Season Ten, ratings dropped considerably, resulting in cancellation in its August 2006. After ten seasons and 214 episodes, the dream was finally over. On March 13, 2007, what began with \"\"Children of the Gods\"\" ended with \"\"Unending\"\". The series finale made its world premiere on Sky One in Britain and Ireland before being shown on the Sci-Fi Channel in the United States on June 22, 2007.<br /><br />In the ten years that the series was on the air, it amassed legions of fans and even eclipsed the science fiction series, \"\"Star Trek\"\", in terms of popularity in certain countries. It became the second-longest running sci-fi series in the world, second only to \"\"Doctor Who\"\" (1963-1989), and the longest-running American produced sci-fi series, having surpassed \"\"The X-Files\"\" only a few months before it ended.<br /><br />\"\"Stargate SG-1\"\" represents the cornerstone of the \"\"Stargate\"\" franchise. In 2004, its success and popularity led to the production of a spin-off series entitled \"\"Stargate Atlantis\"\", which was regrettably cancelled after five seasons and 100 episodes in August 2008. Although plans for another feature film fell through, two direct-to-DVD films, \"\"Stargate: The Ark of Truth\"\" and \"\"Stargate Continuum\"\", were released in 2008 and more are planned for the not too distant future. A third live-action series, \"\"Stargate Universe\"\", is also due to premiere at some point next year. (There was, unfortunately, an animated series, \"\"Stargate Infinity\"\", which ran only from 2002 to 2003 but the less said about that the better). Despite the end of \"\"SG-1\"\" and \"\"Atlantis\"\" as continuing series, the future of \"\"Stargate\"\" looks very bright indeed.<br /><br />In conclusion, while \"\"Stargate\"\" has yet to gain the same degree of popular recognition as other major sci-fi television franchises such as \"\"Star Trek\"\" and \"\"Doctor Who\"\", its still relatively new compared to those two sci-fi giants and I have every confidence that it will continue for many, many years to come.\"\r\n1\tFull marks for Pacino's rendering of the speech over the dead kid's coffin; Shakespeare's Mark Antony would be put to shame!!<br /><br />Was it Paul Schrader or was it Ken Lipper who should be complimented on the remarkable dialogues? They are rich and intelligent and well worth your time if you like movies with good scripts. I found the story narrative developing quite well right up to the voice-over postscript.<br /><br />There is little else to talk about in this film; even John Cusack has done better roles than this one. Interestingly, the film is very male oriented--the women are mere appendages.\r\n0\t\"GUERNSEY (Maria Kraakman - Belgium/Netherlands 2005).<br /><br />The mousy Maria Kraakman plays Anna, a woman in her thirties, who finds out her husband (Fedja van Huet) is cheating on her but she doesn't dare to confront him. She painfully avoids any confrontation with human beings, her parents as well as her sister, so we have a main character in a feature film that doesn't do much at all. We barely know anything about her background or her motivations. Just a woman who seems to be stuck in a blind alley, not just during this difficult episode of her life. She obviously suffers from something, but why do we in the audience have to suffer as well?<br /><br />I almost gave up on cinema after seeing this unwatchable mess. These were a very dull and painful 90 minutes. Normally I try to avoid wasting energy on bad film making. I'll take the beating and roll with the punches, but in this case a fair warning is in place. How on earth did Nanouk Leopold get funding (in large part from publicly financed funds) for this turkey? Obviously, there was no script to speak off. It could be compensated by an ingenious filmmaker with cinematographic ideas or a cast with only a little more appeal. None whatsoever, just a vaguely defined concept, \"\"I want to do something from a woman's point of view\"\". The result is an insult rather than a tribute to a female perspective on life.<br /><br />To make things worse, there's not an interesting shot to be found in the entire film. I cannot think of a cast who could have spiced this one up, but Johanna ter Steege is a (small) light in the dark, if possible with this dire lack of material. I'm trying to imagine how Leopold tried directing Maria Kraakman: \"\"Maria, look at the horizon, we'll film you for three minutes, just express sadness\"\". A perfect cure for insomnia. Get a copy and watch this late at night, guaranteed too put you to sleep.<br /><br />Camera Obscura --- 1/10\"\r\n1\tReturn of the Jedi is certainly the most action packed of the series, and is a fine conclusion to the Star Wars Saga. With Han Solo imprisoned by Jabba the Hut and the Empire building a new Death Star, the rebel alliance is facing an uphill struggle against the dark side, and only our favourite heroes can pull it off.<br /><br />The Opening sequence, set on Tatooine, we see Jabba's palace, a pit of slavery and scum, and new home to Han Solo, as Luke and the gang prepare for his rescue, and with Luke's Jedi powers, they have the edge.<br /><br />We also witness a tremendous triple battle at the end. Han, Leia and Chewy battle it out on Endor, desperate to deactivate the shields protecting the Death Star. The Rebel Fleet led by Lando, battle with the Imperial Fleet while they wait for the shields to go down, and Luke has a final showdown with Darth Vader. An Epic end to a Classic Saga, and it's only just of the pace of the first two.<br /><br />10/10\r\n1\tVery different topic treated in this film. A straightforward and simple description of local Chinese customs, by looking at the daily operation of a public bath, run by the old owner and his retarded son, when older son returns home, wrongly believing his father has died. How every man in town makes his daily visit to chat, play games, discuss personal matters and get honest advice, besides the usual spa-like therapies. When old man dies, strong and loyal family ties make older son take charge, so public bath operation is not disrupted. And finally, the arrival of modernization to end this way of spending relaxed hours and getting along. The public bath has to be demolished, making place for a commercial complex to be constructed.\r\n1\tThis very strange movie is unlike anything made in the west at the time. With its tumultuous emotions and net of visions, dreams, and startling images, its effect is both beautiful and unsettling. The actors are choreographed more like dance than acting. It contains the only dream sequence I know of that actually resembles a real nightmare (sorry, Dali fans).\r\n0\tI cannot believe this woodenly written and directed piece of cliche film got made. There are about four good looking shots (the director should think about switching to still photography) and that's it. A strong cast is utterly wasted, scenes repeatedly end at the least interesting moments and the script says nothing new. Please spare yourself this movie.\r\n0\t\"How many centuries will pass until the Japanese/Asian horror films abandon the long-haired ghost-woman shtick? Admittedly, they've managed to rip off \"\"Ringu\"\" a million times, and often it worked well - which just goes to show that originality isn't that much of a requirement in the horror genre (or that I'm very uncritical and easy to please?). However, this time around I found myself a little restless, somewhat bored. It's not a bad film, but it's at least half-an-hour longer than it should be, with its absurd 110 minutes length. Compared to many other Japanese horror films, OMC lacks atmosphere and excitement. Plus, the ending is confusing: it makes no sense at all. As for the ring-tone: Miike could have come up with a melody that is more effective than that forgettable little thing. Even though it was played a dozen times I can't even remember it - that's how scary it was. Speaking of Miike, for him this is something of a commercial venture, so if anyone thinks they might be getting perversion of the \"\"Bijita Q\"\" or \"\"Audition\"\" kind, they're wasting their time.\"\r\n0\t\"1 How is it that everyone can understand each other perfectly without devices like universal translators or translator microbes? Did the creators of this show realize that people who were taken from different parts of the earth, in different time frames (Attilla the Hun wasn't a contemporary of preliterate Hellenic cultures, nor were the Vikings contemporary to the Pyramid builders) speak different languages and can never develop a language so similar to modern day English(except for the inflections they \"\"do not\"\" use), which has been influenced by Latin, ancient Greek, Danish and French? <br /><br />2 Cultural differences can't be overcome so easily, trust has to be won, yet everywhere the team arrives they are welcomed without any suspicion and start ordering people around like they are their appointed leaders. Of course real fans would comment that they are perceived as gods. The people they meet should be shocked by their technology and accuse them of witchcraft and the like.<br /><br />3 Historical background: none. Visually it might vaguely remind you of Greek or Viking culture, but anyone can dress in a bunch of tablecloths or run to a local costume rental for a plastic helmet with horns and claim to look the part. A small-town theater group probably has better props.<br /><br />4 Boring! Another lame Canuck production, which inexplicably ran for ten long years. As a kids show it could make the grade, but anyone who has a little knowledge about human behavior and language couldn't bear to even watch the first twelve episodes of season 1, like I just did. I very much wanted to believe I had found a decent sci-fi show, otherwise I would shut it of and cleansed my computer of this refuge after the first five minutes!\"\r\n1\tI really like this show. That is why I was disappointed to learn recently that George Lopez is a racist, and that he fired Masiela Lusha off the show, simply because he discovered that she wasn't a Latino emigrant, but was an emigrant from Albania. I learned this from people on the show. She was really one of the better parts of the show, and thus, to learn that even among those who you would think would be sensitive to racism, that they can also hate someone, just because of the country where they were born, is really disappointing. I really like this show. That is why I was disappointed to learn recently that George Lopez is a racist, and that he fired Masiela Lusha off the show, simply because he discovered that she wasn't a Latino emigrant, but was an emigrant from Albania. I learned this from people on the show. She was really one of the better parts of the show, and thus, to learn that even among those who you would think would be sensitive to racism, that they can also hate someone, just because of the country where they were born, is really disappointing.\r\n0\t\"This movie is not as horrible as most Sci-Fi Channel movies. I am used to seeing the gray CGI blobs and the amateurish special effects such as close-ups of fake blood that make it very obvious that the blood is strawberry syrup or some other syrup variation. However, I had thought that I had seen all the possible lows that the Sci-Fi Channel could hit. Then I saw this movie.<br /><br />Imagine a hand inside a rubberized sock that is glazed with syrup? Those are the main Alien Vampires in this movie. You can clearly see the fingers inside the rubbery sock puppets. A talking hand comes out of the guts of victims, and the Vampire who is on the Vampire Hunter's team can talk to these Rubber Sock puppets in Transylvanian. How did Alien Vampires learn Transylvanian? And isn't Transylvania in Romania? So shouldn't they be talking Romanian? Why would some little town have their own language? If you can suspend your gag reflex and get past the talking rubber socks with the fingers clearly moving inside the Aliens' heads; then you have to deal with the other alien vampires. There are the \"\"Leatherfaces\"\" who like to wear the faces of their victims. Then there are the just plain ugly ones that all seem to have a lot of facial scars. Then there are the annoying Valley Girls and their boyfriends who are human traitors and sneak into space colonies so that they can sabotage the Defense Systems so that these Space Vampires can attack.<br /><br />Finally, if you think all of the above is funny and worth a laugh, you have to deal with the third rate cast of Network TV rejects that make up this team of stereotypical angry heroes which are constantly fighting among themselves. Why does almost every Sci-Fi Channel movie have to use lead characters that are annoying, abrasive, crude, or just totally unsympathetic? I found myself hoping the talking rubber socks would win.\"\r\n0\tLuise Rainer received an Oscar for her performance in The Good Earth. Unfortunately, her role required no. She did not say much and looked pale throughout the film. Luise's character was a slave then given away to marriage to Paul Muni's character (he did a fantastic job for his performance). Set in ancient Asia, both actors were not Asian, but were very convincing in their roles. I hope that Paul Muni received an Oscar for his performance, because that is what Luise must have gotten her Oscar for. She must have been a breakthrough actress, one of the first to method act. This seems like something that Hollywood does often. Al Pacino has played an Italian and Cuban. I felt Luise's performance to be lackluster throughout, and when she died, she did not change in expression from any previous scenes. She stayed the same throughout the film; she only changed her expression or emotion maybe twice. If her brilliant acting was so subtle, I suppose I did not see it.\r\n1\tThere can be no denying that Hak Se Wui (Election in English) is a well made and well thought out film. The film uses numerous clever pieces of identification all the time playing with modernity yet sticking to tradition  a theme played with throughout the film Where John Woo's Hong Kong films are action packed and over the top in their explosive content as seen in Hard Boiled (1992) and when Hong Kong films do settle down into rhythms of telling the story from the 'bad' point of view, they can sometimes stutter and just become merely unmemorable, a good example being City on Fire (1987).<br /><br />Election is a film that is memorable for the sheer fact of its unpredictable scenes, spontaneous action and violence that are done in a realistic and tasteful (if that's the right word) manner as well as the clever little 'in pieces' of film-making. It's difficult to spot during the viewing but Election is really constructed in a kind of three act structure: there is the first point of concern involving the actual election and whoever is voted in is voted in  not everyone likes the decision but what the Uncles say, goes. The second act is the retrieving of the ancient baton from China that tradition demands must be present during the inauguration with the final third the aftermath of the inauguration and certain characters coming up with their own ideas on how the Triads should and could be run. Needless to say; certain events and twists occur during each of the three thirds, some are small and immaterial whereas some are much larger and spectacular.<br /><br />Election does have some faults with the majority coming in the opening third. Trying to kill off time surrounding an election that only takes a few minutes to complete was clearly a hard task for the writers and filmmakers and that shows at numerous points. I got the feeling that a certain scene was just starting to go somewhere before it was interrupted by the police and then everyone gets arrested. This happens a few times: a fight breaks out in a restaurant but the police are there and everyone is arrested; there's a secret meeting about the baton between the Triads but the police show up and everyone gets arrested; some other Triads are having a pre-election talk but the police show up and guess what? You know.<br /><br />Once the film gets out of that rut that I thought it would, it uses a sacred baton as a plot device to get everybody moving. The baton spawns some good fight scenes such as the chasing of a truck after it's been hotwired, another chase involving a motorbike and a kung-fu fight with a load of melee weapons in a street  the scenes are unpredictable, realistic and violent but like I said, they are in a 'tasteful' manner. Where Election really soars is its attention to that fine detail. When the Triads are in jail, the bars are covered with wire suggesting they're all animals in cages as that's how they behave on the outside when in conflict. Another fine piece of attention to detail is the way the Uncles toast using tea and not alcohol, elevating themselves above other head gangsters who'd use champagne (The Long Good Friday) and also referencing Chinese tradition of drinking tea to celebrate or commemorate.<br /><br />Election is a good film that is structured well enough to enjoy and a film that has fantastic mise-en-scene as you look at what's going on. Some of the indoor settings and the clothing as well as the buckets of style that is poured on as the search and chase for the baton intensifies. The inauguration is like another short film entirely and very well integrated into the film; hinting at Chinese tradition in the process. I feel the best scene is the ending scene as it sums it up perfectly: two shifty characters fishing and debating the ruling of the Triads all the while remaining realistic, unpredictable and violent: in a tasteful manner, of course.\r\n1\tIn 1933 Dick Powell and Ruby Keeler sang and danced their way through three Warner Brother musicals that offered Depression era audiences a momentary distraction from their woes. Gold Diggers of 1933, 42nd Street and Footlight Parade were all set in the world of Broadway Theatre with basically the same theme of the show must go on. In addition to Keeler and Powell the films featured the kaleidiscopic choreography of Busby Berkeley, show stopping tunes and many of the same supporting players.<br /><br />All are arguably classics of their genre but I must admit a clear preference for Footlight due to it's pace energy and lead James Cagney. Warren William in Gold Diggers and Warner Baxter in 42nd Street acquit themselves admirably as the shows production heads- particularly Baxter as the burned out Julian Marsh in search of one last box office smash. Both lack the infectious energy of Cagney however, who perfectly compliments the frenetic pace of putting on a Broadway musical. He is an absolute whirlwind as he deals with production numbers, unscrupulous partners and a gold digging girlfriend.<br /><br />Of course Cagney alone does not make Footlight the classic that it is. The script crackles with some sharp double entendres delivered by a superlative supporting cast featuring Frank McHugh, Hugh Herbert, Guy Kibbee and especially Joan Blondell who cuts everyone down to size. Busby Berkeley's dance numbers are surreal, suggestive and risqué and done just in the nick of time before the arrival of the Hollywood Code in 34. Sadly, the thirties and sometime beyond would never see such a richly made musical with the verve and sass of Footlight again. Gentility and morality made sure of it.\r\n1\t\"This low-budget erotic thriller that has some good points, but a lot more bad one. The plot revolves around a female lawyer trying to clear her lover who is accused of murdering his wife. Being a soft-core film, that entails her going undercover at a strip club and having sex with possible suspects. As plots go for this type of genre, not to bad. The script is okay, and the story makes enough sense for someone up at 2 AM watching this not to notice too many plot holes. But everything else in the film seems cheap. The lead actors aren't that bad, but pretty much all the supporting ones are unbelievably bad (one girl seems like she is drunk and/or high). The cinematography is badly lit, with everything looking grainy and ugly. The sound is so terrible that you can barely hear what people are saying. The worst thing in this movie is the reason you're watching it-the sex. The reason people watch these things is for hot sex scenes featuring really hot girls in Red Shoe Diary situations. The sex scenes aren't hot they're sleazy, shot in that porno style where everything is just a master shot of two people going at it. The woman also look like they are refuges from a porn shoot. I'm not trying to be rude or mean here, but they all have that breast implants and a burned out/weathered look. Even the title, \"\"Deviant Obsession\"\", sounds like a Hardcore flick. Not that I don't have anything against porn - in fact I love it. But I want my soft-core and my hard-core separate. What ever happened to actresses like Shannon Tweed, Jacqueline Lovell, Shannon Whirry and Kim Dawson? Women that could act and who would totally arouse you? And what happened to B erotic thrillers like Body Chemistry, Nighteyes and even Stripped to Kill. Sure, none of these where masterpieces, but at least they felt like movies. Plus, they were pushing the envelope, going beyond Hollywood's relatively prude stance on sex, sexual obsessions and perversions. Now they just make hard-core films without the hard-core sex.\"\r\n1\tThis movie has it all. Sight gags, subtle jokes, play on words and verses. It is about a rag tag group of boys from different ethnic and social classes that come together to defeat a common enemy. If you watch this more than once, you will find you are quoting it like Animal House (and yes I love Animal House also). I put in the top 15 funniest movies. The Major at a boys military academy is paranoid that every kid is bad and wants to cause trouble (in this movie he is right). He is sadistic, uncaring, cruel and has to be taken down. The group of boys that do not get along at first, end up teaming together to survive and get rid of the Major with a wacky plan only Mad Magazine could of wrote. A must see - you will love it!\r\n1\tI can't remember many details about the show, but i remember how passionate i was about it and how i was determined not to miss any episodes. Unfortunately at the time we had no VCR, so i haven't ever seen the series again. However i can remember strongly how i felt while watching it and how thrilled i was every time it came on. Sam Waterstone was my favorite actor these days (i think i was almost in love) and he remains one of my favorite actors to the day, mostly due to his appearance in the series. I would gladly buy/steal/download this series, i think i would go to great lengths in order to see it again and revisit a childhood long gone... Any ideas? Does anybody knows of a site devoted to the series or has the episodes on tape from their first airing?\r\n1\tI watched this flick yesterday and I have to say it's the finest horror film made for $36,000 I've ever seen (Sorry Steckler) The film is definitely worth seeking out if you are a zombie fan. This movie reeks of soul and atmosphere. Some of the shots of the zombs are the best ever committed to film. VERY creepy looking dusty webbed corpses slowly shamble to their screaming victims. Brrrrrrr.<br /><br />Hot saggy Canadian women with sexy accents will keep you preoccupied before the HORROR rears its undead corpse eating head. This film entertained from start to finish. I couldn't ask for more than that. My only complaint is that is was too short.\r\n1\t\"Man, I loved this movie! This really takes me back to when I was a kid. These were the days when the teachers still showed classroom films on reel-to-real and if you were good, they would rewind the movie slowly so you could watch it play backward. I still remember one of the opening lines....\"\"Tutazema was his name, and he was an Orphan. He lived with his sister so and so in the village.\"\" This is a great movie for kids and as enduring as the red balloon. At the end the other Indian boys in the village attach the feathers to Tutazema and he becomes an eagle himself. He gets to live the way he always wanted to. He gets to soar the heavens.\"\r\n1\tModern, original, romantic story.<br /><br />Very good acting of both Nicole Kidman and Ben Chaplin.<br /><br />Miss Kidman does a nice job in imitating a Russian accent. Ben Chaplin is also good as the shy, dull clerk. For the men (and some women) : miss Kidman looks fantastic and is very sympathetic. I forgot what a gorgeous woman she is. It's not hard to imagine that John falls in love with her. Some unexpected turns in the story are good for the suspense. Although I hoped for a happy ending, the last part of the movie was quite a surprise for me. <br /><br />Conclusion : good movie. <br /><br />Les Pays-Bas : huit points.\r\n0\t\"The Underground Comedy movie is perhaps one of the worst comedies I've ever seen. I should have known it was going to be bad when the box had the phrase \"\"guaranteed to offend\"\" written on it... meaning that the filmmakers were going to focus more on grossing you out than making you laugh.<br /><br />This movie is an amateurish jumble of childish skits, bad characters, and worse jokes... from the pathetic Bat-Man sketch to the painfully unfunny Arnold Shvollenpecker skit, they just aren't funny. The few skits that are a little funny are few and far between - watching Micheal Clark Duncan play a gay virgin, for example - but even they go on too long and get ruined from Vince Offer's ineptness at comedy.<br /><br />Keep The Underground Comedy Movie underground... bury it!\"\r\n0\t\"Lauren Bacall and Charles Boyer do not provide the right chemistry here in this 1945 film.<br /><br />There is a good story here about the Axis trying to obtain coal to use for the upcoming war. Unfortunately, this part of the story is not emphasized. Instead, we deal with a supposedly bungling Boyer. By the way, Bacall is as British as Vladimir Putin.<br /><br />The real acting kudos goes to veteran Oscar winner Katina Paxinou. As was the case with her memorable Pilar in the 1943 Oscar winner, \"\"For Whom the Bell Tolls,\"\" Paxinou again plays a Spanish revolutionary but this time she is a double-crossing counter-spy for the pro-Franco group. She is quite a vicious character here;especially, when she throws a 14 year old child out the window. She believed that Boyer had given the child important material to hide.\"\r\n0\t\"Ripping this movie apart is like shooting fish in a barrel. It's too easy. So I'm going to challenge myself to acknowledge the positive aspects of Little Man. First, I'm impressed with the special effects. It really did look like Marlon Wayans' head was attached to the body of a little person. I never doubted it for a minute.<br /><br />Secondly, I loved some of the unexpected cameos. David Alan Grier played an annoying restaurant singer, and his renditions of \"\"Havin' My Baby\"\" and \"\"Movin' On Up\"\" were priceless. John Witherspoon, who, coincidentally, played Grier's father in 1992's Boomerang (if you remember, he \"\"coordinated\"\" the mushroom belt with the mushroom jacket) now plays Vanessa's father in Little Man. So that was fun.<br /><br />Beyond that, this movie is about as believable as White Chicks. How dumb is it when even the doctor can't tell that it's a 40-year-old man and not a baby? He's got a full set of teeth!!! How is it possible that no one seems to notice that it's not a baby? Little Man is so bad that there's a Rob Schneider cameo. And please, if you're stupid enough to waste $8 on this movie, at least do me a favor and DO NOT bring your children. This movie is way too sexual for small children (lots of jokes and innuendo about sex, going down, eating out, etc.), and I felt embarrassed for the parents who brought their kids to the screening I was forced to endure. If you insist on seeing an idiotic film, as least spare your children the pain and suffering.\"\r\n0\tI am a youth pastor's wife and we took some youth to see this film. We then spent an hour trying to explain it to them. They didn't get it and I didn't enjoy it. It is based on a concept that has run through all three of the major religions of the world (the Bible Code, the Torah Code and the Code in the Koran) and is so questionable as to be laughable. This is not a step forward for Christians in the arts, it is a step forward for those who believe we check our brains at the door.\r\n1\tOctober Sky is a highly lauded movie, and it¡¦s easy to see why. The story is easy to comprehend and many turning points are gripping, the actors and actresses do fairly good jobs, especially Jake Gyllenhaal and Chris Cooper, the hero finally gets what he wants, and it¡¦s a true story. Frankly I think the director¡¦s achievement is not comparable to the sparks and heat the original story generates. We don¡¦t see any special narrative or cinematography; the power of the movie relies much on the riveting plot and tough situation the young hero is trapped in that most audience will find themselves identify with the characters. We feel Homer¡¦s desire to earn his father¡¦s recognition and create his own future, and his resilience wins our respect. ¡§October Sky¡¨ reminds me of a later 2001 Japanese production of mini series ¡§Rocket Boy,¡¨ which might owe some of the inspiration from this movie. Actually these two works shot from two different cultures provide interesting comparison. When October Sky unfolds a story of a young man crying out loud to claim his right over his own destiny, ¡§Rocket Boy¡¨ offers a more compromised description that could sometimes constitute an acrid criticism of modern society. Starring the outstanding actor Yuji Oda, ¡§Rocket Boy¡¨ focuses on three men as ordinary as can be: a travel agent who has a dream of becoming an astronaut, a boastful advertising agent who is on the brink of being torn apart by his inferiority complex resulted from the extreme success of his father and older brother (like what Homer feels in his family), and a food company employee who is about to getting married but scared of this idea. The collected social consciousness superimposes its definition of success on its constituents and steps further to force them suffocate their dreams by claiming them ¡§impossible.¡¨ To compensate for his lost ideal, Kobayashi (Yuji) works in the tour operator because it¡¦s called ¡§Galaxy.¡¨ When his client fails him and his girlfriend decides to leave him, he finally finds strength from his father¡¦s words, who had determined to be a sailor but later found life on the sea less attractive as he had presumed. ¡§But I don¡¦t regret it,¡¨ his father told Kobayashi, ¡§at least I tried.¡¨ It is his father¡¦s confession that encourages him to resign his job and apply for astronautships despite the fact that he hurts his legs and needs to move around on a wheelchair. Kobayashi¡¦s effort finally fails, and he goes back to the travel agency. But his ¡§crazy¡¨ courage inspires his friends, and everyone loves him more. Just before the end of the series, Kobayashi is on the job as a guide of a space camp meant to let children learn more about astronauts. After the tour is over we see him leaning against a tree, unfolding a sheet of poster he tears from the bulletin board that says: ¡§Astronauts Wanted for 2004.¡¨ Kobayashi looks at the piece of paper and laughs and laughs, just like a kid looking at his ticket to Disneyland. Kobayashi may never get what he wants, but he dares his destiny and ¡§just does it.¡¨ This series is so heart-gripping not because the hero exhibits any heroic deeds, but his ordinariness and unstoppable urge to realize his dream which make us wonder and envy. Unlike Dilbert or other sarcastic writings, this show enlightens us and teaches us something. Homer and Kobayashi both have the dream, and they do what they can despite other people¡¦s opinions. I recommend other IMDB users to see the Japanese TV series. If you are a nine-to-fiver, you will feel more touched. I feel sorry that IMDB doesn¡¦t have its data, maybe you can ask somebody from Japan to help you.\r\n0\t\"\"\"Plants are the most cunning and vicious of all life forms\"\", informs one dopey would-be victim in \"\"The Seedpeople\"\", a silly, flaccid remake of \"\"Invasion of the Bodysnatchers\"\", \"\"Day of the Triffids\"\", and about a thousand udder moovies. And why are seeds moore dangerous than plants, one might ask? Because, according to the same dolt, \"\"seeds can chase us\"\". Yes, I can remember one horrifying incident when the MooCow was just a calf, being chased all the way home from school by ravenous dandylion seed... Yeah, right. Unfortunately, the \"\"monsters\"\" in this seedy little turkey kind of look like shaggy little muppets, some of which roll around like evil tumbleweeds, others which sail about on strings. There's not even the tiniest inkling of terror or suspense to be found here. For reasons left unexplained, the seed monsters are knocked out by 50 volt ultra-violet lights, even though they can walk about in the daylight, which has about 1,000,000,000,000 times more uv energy. As you can see, not much thought was put into this cow flop. The MooCow says go weed yer garden instead of wasting your photosynthesis here. :=8P\"\r\n1\tI didn't know what to make of this film. I guess that is what it was all about really. I have never seen a film like it and I doubt that I really ever will again. Glover puts together something that is unique to him. I think to appreciate it you have to read some of his poetry, maybe see one of his slide shows. I really like this guy, he is just so bizarre I can't help it. Note: I saw this film before it was through its final editing, so maybe what I have seen and what others have seen are different. I will know, I guess, if I choose to view the film again. I think I will have to be properly drug influenced...\r\n0\tThis movie was extremely boring. It should least not more than 15 minutes. The images of child and animal being killed were little bit disturbing.<br /><br />Usually I don't write comments but this one was so bad having so many good and excellent comments. I think in this case we are one step closer to honest assessment of this title.<br /><br />What more can I say? I fall asleep during this movie 3 times. It was about 4 hours after I had woken up from 8 hours long sleeping period. I think it is the point itself.<br /><br />There is no dialog between characters except maybe 2 sentences at the very end.<br /><br />When you fall asleep once watching it do not try to rewind and catch up because you will fall asleep again.\r\n0\tI watched this movie yesterday and was highly disappointed.<br /><br />Heather Graham and Tom Cavanaugh basically had to carry this awkwardly unbelievable script for five hours (or however long it actually was). From the beginning, every single element of this movie is unbelievable. This movie made me chuckle several times, but they were mainly out of shock that the director/writer actually expected us to believe the many messy scattered elements that attempted to piece this movie together.<br /><br />The movie's focus is Gray (Graham) and her issues with intimacy. Things get interesting when she realizes that she and her brother have unexpectedly WAY too much in common.<br /><br />Interesting, intriguing. However, instead of unraveling this story into something believable and palatable, the director keeps taking Gray into these ludicrous twists that never actually make any sense at all. Being an LGBT individual, this movie seemed to echo what all heterosexuals think we go through in the coming-out process. (I'll be insulted if the writer's queer.) Had it not been for the cute chemistry between Cavanaugh and Graham (which, by the way, was understandably forced), I would give it a negative 3 stars.\r\n0\tCast to die for in a movie that is considerably less. Vanessa Redgrave is dying but before she goes she begins to tell her daughters the story of her life and of her secret love...<br /><br />This is one of those movies which has the look and expectations of being a great film simply because they have so many great actors and actresses in it so it seems to be about something other than the potboiler that it really is. Not bad as such but with Redgrave, Toni Collette, Glenn Close, Meryl Streep, Clare Danes,Natasha Richardson,Eileen Atkins, Patrick Wilson,Hugh Darcy and others (all giving fine performances) you expect more than a weepy story thats a bit more than a harlequin romance.<br /><br />Wait for Cable.\r\n1\t\"Thanks to a smart script and a steady hand from Writer/Director Kevin Meyer, \"\"Perfect Alibi\"\" is an entertaining and very likable mystery thriller. The movie starts methodically and builds up steam as the clues begin to reveal that nothing is what it seems to be. Teri Garr and Hector Elizondo are terrific as they team up to unravel the mystery, reminding me of Nick and Nora Charles, from the \"\"Thin Man\"\" movies. Kathleen Quinlan is excellent as Alex McArthur's tormented wife and the character roles, played by veteran actors Charles Martin Smith, Bruce McGill, Anne Ramsey and Estelle Harris are well done and provide plenty of light moments at just the right time. There's even a cameo by Rex Linn. In all, I felt like I was reading a good book by the fire.\"\r\n1\tGood story. Good script. Good casting. Good acting. Good directing. Good art direction. Good photography. Good sound. Good editing. Good everything. Put it all together and you end up with good entertainment.<br /><br />The shame of it is that there aren't nearly enough films of this caliber being made these days. We may count ourselves lucky that writers/directors like John Hughes are occasionally able to make their creative voices heard.<br /><br />Whenever I notice that I'm watching a film for the third or fourth time and still find it thoroughly satisfying I have to conclude that something about that film is right.\r\n0\t\"OK, aside from the psychedelic background imagery, the info presented here was good. The music I could have done without (not that it was bad music, just that it didn't fit this film at all).<br /><br />As for the content of the film, the director brings up the often-lacking Pagan perspective on Christ's existence and a startling comparison of the deeds and events of Christ's life vs. the lives of mythological figures/deities such as Mithra and Dionyses. Then he brings up the chronology of Christianity's origins and presents an 'ok' case, but not one that blew me away.<br /><br />If the director had stuck with the facts and continued on with them, this film would have been good. However, at this point in the film, it disintegrates into a group of personally-gratifying attacks on Mel Gibson's \"\"Passion of the Christ\"\" and a Christian private school which the director attended in his youth. During an interview with his old principal, (which during the course of, it comes to light that the director set up under false pretenses) I felt that the director was acting sort of childish. He was asking good questions but, like the film itself, the interview crumbled into an attack on this particular private school's rules, not Christianity.<br /><br />All in all, if you're just interested in some info, watch the first 30 minutes or so and then shut it off.\"\r\n1\t\"Gojoe is part of a new wave of Japanese cinema, taking very creative directors, editors and photographers and working on historic themes, what the Japanese call \"\"period pieces\"\". Gojoe is extremely creative in terms of color, photography, and editing. Brilliant, even. The new wave of Japanese samurai films allows a peek at traditional beliefs in shamanism, demons and occult powers that were certainly a part of their ancient culture, but not really explored in Kurosawa's samurai epics, or the Zaitochi series. Another fine example of this genre is Onmyoji (2001). I would place director Sogo Ichii as one of the most interesting and creative of the new wave Japanese directors. Other recent Japanese period pieces I would highly recommend include Yomada's Twilight Samurai (2002) and Shintaro Katsu's Zatoichi: The Blind Swordsman (2003).\"\r\n0\tPerhaps one of the most overrated so-called horror classics ever made, Halloween does feature the memorable Michael Myers and some great acting by Jamie Lee Curtis.<br /><br />However, its rewatchability factor is very close to zero, as there is an unforgivable amount of time spent on dullness/culmination to the actual events.<br /><br />This is the sort of movie you can walk away from to microwave popcorn and not miss anything at all.<br /><br />How it spawned so many sequels, I will never comprehend.<br /><br />Thank God Rob Zombie is remaking this. And generally, I hate remakes.<br /><br />Surely he will more than compensate for all the random time-filling gaps with some quirky points of interest that the original severely lacks.<br /><br />This is a movie we feel we have to like, much like the way we're taught that we SHOULD enjoy Dickens.<br /><br />Don't assume this is a classic.\r\n0\tThis movie is one of the worst ones of the year. The main characters have no chemistry and the acting is horrible. Paul Rudd is the only one that has any talent, and the only one that is not annoying. I have never watched Desparte Housewives, so I don't know how Eva Longoria is on that show, but in this movie she was horrible. It's like she knows nothing about acting. All her character does is whine throughout the film, and she can't pull off being a b**** and still be entertaining. And the other girl, Lake Bell, displays little emotion and it's like you are looking at the cue cards as she reads them.<br /><br />As for the story, it is so cookie cutter. It goes from point A to B with little surprise. So much more could have been used with Kate as a ghost. The plot should have revolved more around her and the things she does as a spirit.<br /><br />FINAL VERDICT: It's not worth watching.\r\n0\tTerrible movie. Nuff Said.<br /><br />These Lines are Just Filler. The movie was bad. Why I have to expand on that I don't know. This is already a waste of my time. I just wanted to warn others. Avoid this movie. The acting sucks and the writing is just moronic. Bad in every way. The only nice thing about the movie are Deniz Akkaya's breasts. Even that was ruined though by a terrible and unneeded rape scene. The movie is a poorly contrived and totally unbelievable piece of garbage.<br /><br />OK now I am just going to rag on IMDb for this stupid rule of 10 lines of text minimum. First I waste my time watching this offal. Then feeling compelled to warn others I create an account with IMDb only to discover that I have to write a friggen essay on the film just to express how bad I think it is. Totally unnecessary.\r\n0\t\"That's the sound of Stan and Ollie spinning in their graves.<br /><br />I won't bother listing the fundamental flaws of this movie as they're so obvious they go without saying. Small things, like this being \"\"The All New Adventures of Laurel and Hardy\"\" despite the stars being dead for over thirty years when it was made. Little things like that. <br /><br />A bad idea would be to have actors playing buffoons whom just happen to be called Laurel and Hardy. As bad as that is, it might have worked. For a really bad idea, try casting two actors to impersonate the duo. Okay, they might claim to be nephews, but the end result is the same.<br /><br />Bronson Pinchot can be funny. Okay, forget his wacky foreigner \"\"Cousin Larry\"\" schtick in Perfect Strangers, and look at him in True Romance. Here though, he stinks. It's probably not all his fault, and, like the director and the support cast - all of who are better than the material - he was probably just desperate for money. There are those who claim Americans find it difficult to master an effective English accent. This cause is not helped here by Pinchot. What is Stan? Welsh? Iranian? Pakistani? Only in Stan's trademark yelp does he come close, though as the yelp is overdone to the point of tedium that's nothing to write home about. Gailard Sartain does slightly better as Ollie, though it's like saying what's worse - stepping in dog dirt or a kick in the knackers? <br /><br />Remember the originals with their split-second timing, intuitive teamwork and innate loveability? Well that's absent altogether, replaced with two stupid old men and jokes so mistimed you could park a bus through the gaps. Whereas the originals had plots that could be summed up in a couple of panels, this one has some long-winded Mummy hokum (and what a lousy title!) that's mixed in with the boys' fraternity scenario. I can't claim to have seen every single one of Laurel and Hardy's 108 movies, but I think it's a safe bet that even their nadir was leagues ahead of this.<br /><br />Maybe the major problem is that the originals were sort-of playing themselves, or at least using their own accents. It at least felt natural and unforced, as opposed to the contrived caricatures Pinchot and Sartain are given. And since when did Stan do malapropisms, and so many at that? \"\"I was gonna give you a standing cremation\"\"; \"\"I would like to marinate my friend.\"\" Stop it! <br /><br />Only notable moment is a reference to Bozo the Clown, the cartoon character who shared Larry Harmon's L & H comic. Harmon of course bought the name copyright (how disconcerting to see a ® after Laurel and Hardy) and was co-director and producer of this travesty. <br /><br />Questions abound. Would Stan and Ollie do fart gags if they were alive today? Would they glass mummies with broken bottles? Have Stan being smacked in the genitals with a spear and end on a big CGI-finale? Let's hope not.<br /><br />I did laugh once, but I think that was just in disbelief at how terrible it all is. Why was this film made in the first place? Who did the makers think would like it? Possibly the worst movie I've ever seen, an absolute abhorrence I grew sick of watching after just the first five minutes. About as much fun as having your head trapped in a vice while a red-hot poker and stinging nettles are forcibly inserted up your back passage.\"\r\n1\t\"Ever wanted to know just how much Hollywood could get away with before the Hayes Code was officially put into effect? Well, unfortunately \"\"Convention City\"\" is lost, so well just have to watch \"\"Tarzan and His Mate\"\" to find out. For 1934, there is a remarkable amount of sexual innuendo and even exposed flesh. Just look at Jane's nude swim. While Tarzan is often thought of as b-adventure films made for young boys and no one else, this picture proves that the series was originally very adult. Over seventy years later, it is still as sexy as it was when it came out.<br /><br />In addition to the envelope pushing taboo nature, it is a superb and exciting adventure story. I've always enjoyed the jungle films that Hollywood churned out in the 30s and the 40s, but there are few from the genre I'd call great films. \"\"Tarzan and His Mate\"\" is by far the best film from this long gone subgenre. The sequences of the attacks on the safari by either apes or natives still manage to create tension today. Also, the animals are all too cool (espescially the apes throwing boulders). The acting won't win any major awards soon, but is certainly more than adequate for this type of picture. The film is once again stolen by Cheetah, the smartest monkey in the jungle. One of the most entertaining examples of pre-code Hollywood out there.\"\r\n0\tAs a huge fan or the Cracker series, I have been waiting 7 years for the next addition. This Episode I'm afraid just does not live up to the legend.<br /><br />Fitz returns to Manchester after 7 years for his daughters wedding and gets involved in a murder investigation were a soldier, tormented by flash backs from his tour of duty in Northern Irland, goes on a killing spree.<br /><br />What I did not like about this episode is the extremely convenient way it is all set up and how fitz is led to the murderer. It is all fat to far-fetched.<br /><br />There are however some good scenes in flash backs from Northern Irland which are filmed great.\r\n0\t\"End of the World is an uneventful movie, which is odd since it is supposed to be about the total destruction of the earth. The main character is some kind of scientist, I'm not exactly sure what kind. He has two jobs at a government(?) facility guarded by four security men. His first job is monitoring transmissions to and from space (although this actually seems more like a hobby he does when not working on job #2). Job #2 requires him to put on a protective suit and go into a dark room...at least that's the best I can figure. Apparently the \"\"plant\"\" is not exactly top-secret, as the scientist brings his wife there. She hangs out (they're on their way to a dinner) while he discovers a message from space: Major Earth Disruption, repeated over and over. He says something about it being the first message from space he's ever been able to decipher; his wife tells him they're going to be late for the dinner party. So they leave and go to the party (!?!). Moments later he finds out that China has suffered a major earthquake. From there, the movie goes... nowhere! Yes, Christopher Lee is in it, but that really doesn't help much. Besides, Lee gives a lackluster performance along the lines of his appearance in Howling II. This movie is boring, but it has enough stupid elements that you might want to suffer through it once if you like Christopher Lee or Z-grade sci-fi. Plus, there's lots of stock footage of the earth being destroyed.\"\r\n0\tThe movie was not a waste except for some boring scenes in between.But the women cast gave a pretty good show than the males who were laughable. <br /><br />But Krista Allen really rocked in the movie .Her voice was so seducing and sexy.The scenes in the bed involving Krista should have shortened but she made it so watchable and sexier than any one could do.Krista really is one of the best in such roles.She also enacted quiet well as the baddie in the last 5 minutes,which is the interesting part of the movie.<br /><br />Burt Reynolds was not that good and this was not his best as an action star.He could have chosen a better script than this.Ireally think he did for money.\r\n0\tI was surprised when I saw this film. I'd heard it was the best ever filmed of the novel. How disappointed I was.<br /><br />How any true Jane Austen fan can rate this adaptation is a mystery to my eyes. The scriptwriters have decided to stick in bits of ridiculous humour which are embarrassing at the best of times, but also ruin the feel of the period. As for the cast: Gwyneth Paltrow makes a rather shallow heroine (but then any 'hot' American star would be questionable in the role), Toni Collette is miscast, and poor Ewan McGregor is made to look laughable!<br /><br />I really could not say a good thing about this film. I seem to be among the very few who don't rate it, but if you want my advice, see instead the TV production starring Kate Beckinsale - believe me, that is far preferable to this superficial trash.\r\n0\t\"This film really got off to a great start. It had the potential to turn into a really heartrending, romantic love story with cinematography that recorded the love between \"\"Harlan\"\" and Tobe in long, poetic and idyllic scenes. It really didn't need to be anything more than that, and for a moment there I became excited that someone was finally making a beautiful film for its own sake, another timeless classic, a modern myth perhaps. Why, oh why, then mess it up halfway through by making the lead character (Norton)another psycho? Maybe I'm missing the point, but do we really need another film about psychos? Or is this need in Hollywood to portray the sick side of human nature indicative of a more general malaise in the movie industry? For a moment there, I was going to make a mental note of the director's name; now I'm left feeling indifferent. At least it should be added in the film's defense that all the actors seemed to invest in their roles. Also, Evan Rachel Wood is really lovely to look at and a good actress with lots of potential.\"\r\n1\tI am and was very entertained by the movie. It was my all time favorite movie of 1976. Being raised in the 70's , I was so in love with Kris Kristoffersons look and demeanor,of course I am no movie critic,but for the time era,I think it was very good. I very much like the combo of Streisand and Kristofferson. I thought they worked very well together. I have seen the movie many times and still love the two of them as Esther and John Norman. I am a very huge fan of Kris and see him in concert when I can. What a talented singer song writer,not to mention,actor. I have seen him in many movies,but still think back to A star is Born.\r\n1\t\"...dont read any plot summaries because in words the plot might seem trivial, brain-dead and pointless. The film is excellent, the acting by both Denzel and Dakota (she will go sky high, trust me on that)are just fabulous, and the plot is mind blowing. Actually \"\"fabulous\"\" is a small word to use for such talented actors. The film is just based on actual facts and some characters are not fictional, a fact that adds up to the shock that i was having during and after the film. If you are fond of both actors and of somewhat deranged films, you still haven't watched your favorite one yet...Trust me, in the end you will have a weird and inexplicable feeling. The film is awesome, see it, rent it, buy it or whatever...just don't miss it\"\r\n0\t\"This is a review of The Wizard, not to be confused with The Wiz, or Mr. Wizard. The Wizard is a late-eighties film about a seriously silent boy's ability to play video games and walk during the entire opening credits. The Wiz is an unnecessary update of The Wizard of Oz, and Mr. Wizard is that guy that attached 100 straws together and had some kid drink tang out of it.<br /><br />Now that we've gotten all that out of the way, let me say this: there's really no reason to see this movie. It's simply a 100 minute Nintendo commercial designed to capitalize on the Powerglove, the Legend of Zelda and Super Mario Brothers 3. I use the word \"\"designed\"\" in the loosest sense possible, because it seems like this movie was written over a weekend by a crack team of people who had never played Nintendo, and directed by a man with less sense of style than my grandmother. Maybe if the writer and director sat down and actually played some games together, they'd realize that they were about to film total rubbish and instead go to vocational school to learn how to install car stereos.<br /><br />I hope that this has been an enlightening experience for you. It sure hasn't been for me. In fact, I think I might have lost a few braincells in the act of watching this movie and writing about it. Next time you're at the video store and you see the The Wiz, The Wizard and The Wizard of Oz all sitting there on the shelf in a pretty little row, give them all a miss and play Duck Hunt instead.\"\r\n0\tThis is another of the many B minus movies tagged as film noir in the hope of generating some interest in something that is devoid of it. All aspects of the film - script, acting, direction - are mediocre. The acting by the three leads is wooden. I guess John Dall was expected to go places in the movie business but then someone realised he had little talent and therefore ended up doing TV work. Lee J Cobb who is usually terrific cannot rise above the poor script and poor direction. Jane Wyatt is supposed to be a femme fatale but comes nowhere near convincing the viewers. The movie does have two of the strangest looking cars that I have ever seen, the one in which John Dall goes after Lee J Cobb is particularly strange. The DVD transfer is typical Alpha.\r\n0\t\"I'm a big fan of 50s sci-fi, but this is not one of my favorites. While the concept behind the movie was a natural vehicle for a classic teeny bopper sci-fi flick, the director counted too heavily on it to carry the movie. It's clear he was working with no money, because the entire movie is loaded with bloated dialogue that goes on and on forever. I have *never* seen so much time-killing in a movie.<br /><br />There are probably less than 60 seconds of \"\"blob footage\"\" in the entire movie, and most of the rest of it is people engaging in a lot of poorly-written, run-on dialogue. It was fun to see Steve M. and Anita C. together, but good heavens...how could casting have thought anyone in their right mind would believe them as teenagers?\"\r\n0\tba ba ba boring...... this is next to battlefield earth in science fiction slumberness. genie francis (aka general hospital's laura) has a small role as a reporter and that in itself should tell you that this movie must be bad.... there is ben kingsley (an academy award winning actor) in this stinker and a few others decent actors. You have to wonder what possessed them to decide to do this awful movie. The music dramatically goes up and down like it's a major dramatic story. Even if you pay attention the plot is impossible to follow. The effects are mediocre as well and seem really dated. All of the actors speak in a monotone voice and have no realism to their dialogue. I could go on and on on how this is a bad movie. At least with Battlefield Earth it's so bad it's funny but this is just b o r i n g. Avoid unless you want to be lulled to sleep.\r\n1\tPhilo Vance (William Powell) helps solve multiple murders among the wealthy after a dog show.<br /><br />Usually I hate overly convoluted mysteries (like this) but I LOVE this movie. It moves very quickly (only 72 minutes), is beautifully directed by Michael Curtiz (he uses tons of camera tricks that just speed the narrative along), has a very ingenious story line (including a solution to a locked room murder that was just incredible) and has a very good cast. <br /><br />Powell is very suave and great as Vance--he doesn't seem to be acting--he IS Vance! Mary Astor isn't given much to do but she adds class and beauty to the production. Everybody else is very good too, but best of all is Eugene Pallette as Detective Heath. He's a very good actor with a VERY distinctive voice and some of his lines were hilarious.<br /><br />Basically, an excellent 1930s Hollywood murder mystery. Well worth seeing.<br /><br />\r\n0\t\"I see a lot of movies. Saw the original wargames years ago and loved it. Computers where still \"\"a big mystery\"\" for the most of us and the movie was convincing, in it's own way.<br /><br />This one, however, looks like a low budget Wednesday night special. Total crap, from start to finish.<br /><br />The plot is so weak, you won't believe it until you see the movie (which I would not recommend in the first place). I can not point out one actor that actually did a good job in this movie. But hey, with that script I would've been surprised if ANYONE could do a good job acting. Lots of cliché scenes. CGI looks like it's taken out of the '86 version.<br /><br />Bah, no, I'm getting in a bad mood just writing about this. Do NOT watch this movie.<br /><br />Life's to short to waste it on watching crappy movies.\"\r\n1\tI Think It's a great movie. because you get to see how Diana's life at home is. she got so much aggression, and she wants to prove that girls can fight too. I think she and Adrian were great actors. Because of this movie I Am Boxing too. It really impressed me. the only negative part I think. Is the end. because It's alright between Diana and Adrian. But you don't get to see how it is at home. And I Didn't really like it that you also don't get to see how her father is doing, and her brother. but i Think it was A great movie and I Think I'm going to watch it a lot more:) I recommend it to anyone, even when you don't like boxing, you get to see a lot more than only boxing. I had a great time watching it.\r\n0\t\"I watched the first 15 minutes, thinking it was a real documentary (with an irritatingly overly dramatic \"\"on camera\"\" producer).<br /><br />When I realized it was all staged I thought \"\"why would I want to waste my time watching this junk??\"\" So I turned it off and came online to warn other people. The characters don't act in a believable way. too much immature emotion. for a guy to travel half way around the world into a war torn country, he acted like a kid. and I don't believe it was because \"\"his character was so upset about the trade center bombings\"\".<br /><br />very trite and stupid.<br /><br />have you seen \"\"city of lost children\"\"? french dark fantasy film about a guy who kidnaps kids and steals their dreams... I liked it!\"\r\n0\tIn an attempt to bring back the teen slasher genre that was taken away by spoofs like Scary Movie and Shriek if you know what I did last Friday the 13th, Valentine fails. Why did people like Halloween? Because it was original, new and went beyond anything that's ever been done. Why did they like Scream? Because at least it made sense. Valentine is just a stupid slasher-flick that has hardly any gore what so-ever. The plot is so similar to Halloween and Urban Legend it's not funny. And the moment the killer comes on screen, you know who it is, it's just sssssssssssooooooooooooo predictable. The teen slasher genre is DEAD Get over it!<br /><br />0 out of 10\r\n0\t\"This documentary is at its best when it is simply showing the ayurvedic healers' offices and treatment preparation. There is no denying the grinding poverty in India and desperation of even their wealthier clients. However, as an argument for ayurvedic medicine in general, this film fails miserably. Although Indian clients mention having seen \"\"aleopathic\"\" doctors, those doctors are not interviewed, and we have to take the vague statements of their patients at face value-- \"\"the doctor said there was no cure,\"\" \"\"the doctor said it was cancer\"\" etc. Well, \"\"no cure\"\" doesn't mean \"\"no treatment,\"\" and what type of cancer exactly does the patient have? The film is at its most feeble when showing ayurvedic practice in America. There it is reduced, apparently, to the stunning suggestion that having a high powered Wall Street job can make your stomach hurt.\"\r\n1\tI've joined IMDb so people know what a great film this is! It's not often you come across a film that's moving and visually cinematic yet humble. You've read the plot so all I want to say is don't watch it because you want to see a clash of cultural religious identity babble ,because that's the typical misconception people read in to,instead just appreciate and realise it's about a father and son on a voyage growing to know each other through their struggles. Buy it and pass it on before film4 get round to it. This was one of the very few films to be nominated for a BAFTA being independent and foreign. The beauty of it is that it manages to appeal to anyone even if you never watch anything subtitled or just used to the Hollywood formula, just a great story that will keep you engaged. The only thing I wish is for it to be longer and see what happens\r\n1\tSaw this film in August at the 27th Annual National Association of Black Journalists Convention in Milwaukee, WI, it's first public screening. THE FILM IS GREAT!!! Derek Luke is wonderful as Antwone Fisher. This young actor has a very bright future. The real Antwone Fisher did a great job writing the film and Denzel's direction is right on the money. See it opening weekend. You won't be disappointed.\r\n0\t\"If you have beloved actors, Peter Falk, Rip Torn, George Segal, and Bill Cobbs, you don't need Billy Burke, Coolio, or any other distractions. Massive talent is totally wasted in \"\"Three Days to Vegas\"\", with the blame falling squarely on the script. My neighbor's vacation films are about as interesting as this misguided road movie. If you want to see how to utilize a veteran cast with a good script, check out \"\"The Crew\"\". There really are no redeeming factors here, and watching these wonderful actors struggling with such weak material is a crime. I wanted to like it, but the shallow script cheats the audience, by essentially giving the actors nothing to work with. - MERK\"\r\n0\t\"At the beginning of the film, you might double-check the DVD cover and re-read the synopsis a couple of times, but no worries. It's NOT \"\"Memoirs of a Geisha\"\" that you purchased; just a movie with an intro that is much more classy and stylish than it has any right to be. Still, the opening is by far the best thing about the entire movie, as it shows how in the year 1840 a Samurai sword master catches his wife committing adultery. He decapitates the two lovers before doing some hara-kiri (ritual suicide through disembowelment). Cut to present day, when the American Ambassador in Japan welcomes a befriended family and drives them up to the same house where the aforementioned slaughter took place nearly one and a half century ago. From then onwards, this becomes a seemingly routine haunted house flick yet the utterly retarded and implausible script still makes it somewhat exceptional. Let's start with the good aspects, namely the original Japanese setting and the presence of the delicious Susan George who is my all-time favorite British horror wench (well, together with Britt Eckland, Linda Hayden and Ingrid Pitt). The bad aspects simply include that the screenplay is incoherent, imbecilic beyond repair and full of supposedly unsettling twists that only evoke laughter. The restless spirits of the house soon begin to entertain themselves by perpetrating into the bodies of the new tenants and causing them to do and say all sorts of crazy stuff. The spirit of the massacred adulterous woman particularly enjoys squeezing into Susan's ravishing booty and transforming her into a lewd seductress! In this \"\"possessed\"\" state, she even lures the American ambassador outside to have sex in the garden of a high society diner party full of prominent guests. So, strictly spoken, it's not really \"\"evil\"\" that dwells in the house; just a trio of sleazy ghosts with dirty minds and far too much free time on their long-dead hands! Obviously these scenes are more comical than frightening, especially since the light-blue and transparent shapes remind you of the cute ghost effects that were later popularized in \"\"Ghostbusters\"\". \"\"The House Where Evil Dwells\"\" is probably the least scary ghost movie ever. Throughout most of the running time, you'll be wondering whether director Kevin Connor (who nevertheless made the excellent horror films \"\"Motel Hell\"\" and \"\"From Beyond the Grave\"\") intentionally wanted to make his movie funny and over-the-top, like \"\"Motel Hell\"\" maybe. But then again, everyone in the cast continues to speak his/her lines with a straight and sincere face, so I guess we are nevertheless supposed to take everything seriously and feel disturbed. \"\"The House Where Evil Dwells\"\" is never suspenseful or even remotely exciting and it doesn't even contain any grisly images apart from the massacre at the beginning. I am fully aware of how shallow it sounds, but the two scenes in which Susan George goes topless are the only true highlights. Well, those and maybe also the invasion of cheesy and ridiculously over-sized spiders (or are they crabs?) in the daughter's bedroom. How totally random and irrelevant was that? If you ever decide to give this movie a chance notwithstanding its bad reputation, make sure you leave your common sense and reasoning at the doorstep.<br /><br />Trivia note for horror buffs: keep an eye open for the demon-mask that was also a pivot piece of scenery in the brilliant Japanese horror classic Onibaba.\"\r\n1\t\"Clark Gable plays a con man who busts into the life of hard-boiled dame Jean Harlow. He tries to sucker her while she brushes him off with her tough-gal attitude. Despite their cynicism and cons they fall in love. When Gable accidentally kills a man during a sting he runs out leaving loyal Harlow to women's prison where she discovers she's pregnant. Anita Loos' and Howard Emmett Rogers' writing is excellent throughout with many well-drawn and surprising characters (including a Jewish socialist woman inmate and a black woman inmate and her preacher father played with hardly a trace of stereotype). Gable and Harlow show their mettle as actors adding telling nuances and quirks to their characters that send them beyond the typical Gable and Harlow roles. And the direction is much better than you'd expect from Sam Wood. One beautiful shot has Harlow being inducted into the prison, then led out into a surprisingly snowy courtyard as the camera tracks after her. This is one of the best of both the \"\"criminals in love\"\" and \"\"women's prison\"\" genres and has some of the best hard-boiled dialogue ever written.\"\r\n1\t\"This is not a movie for fans of the usual eerie Lynch stuff. Rather, it's for those who either appreciate a good story, or have grown tired of the run-of-the-mill stuff with overt sentimentalism and Oprah-ish \"\"This is such a wonderful movie! You must see it!\"\"-semantics (tho' she IS right, for once!).<br /><br />The story unfolds flawlessly, and we are taken along a journey that, I believe, most of us will come to recognize at some time. A compassionate, existentialist journey where we make amends för our past when approaching ourt inevitable demise.<br /><br />Acting is without faults, cinematography likewise (occasionally quite brilliant!), and the dialogue leaves out just enough for the viewer to grasp the details od the story.<br /><br />A warm movie. Not excessively sentimental.\"\r\n0\tStanley Kramer directs an action thriller and leaves out two key things: action and thrills. THE DOMINO PRINCIPLE features Gene Hackman as a convict sprung from prison in order to perform some mysterious task. Richard Widmark, Edward Albert, and Eli Wallach are his operatives --- they presumably work for the government, but that, like most of the movie's plot line, is never made clear. Hackman asks a lot of questions that NEVER get answered so the film goes absolutely nowhere. While it strives to be like NIGHT MOVES and THE PARALLAX VIEW, THE DOMINO PRINCIPLE mixes up ambiguity and mystery with confusion and boredom. The film is extremely well photographed but even that works against it. Kramer's direction is devoid of any style. It's a very sunny movie!<br /><br />The acting is fine with Hackman proving he's pretty much incapable of being bad. Widmark and Wallach are suitably nasty and Albert is well cast as Widmark's cruel lackey. Even the usually obnoxious Mickey Rooney is pretty good as Hackman's sidekick. One oddity however is the casting of Candice Bergen as Hackman's wife. We're told she's done time in prison and she seems to be trying to put on some sort of southern twang. Kramer's idea of making her appear to be trailer trash is to have her wear an ugly brown wig. It's a role better suited for the likes of Valerie Perrine or Susan Tyrell.\r\n0\tThe version of this film I saw was titled 'Horror Rises from the Tomb'. The horror in question is a wicked Medieval magician played by Spanish horror legend Paul Naschy looking like he's playing Abanazer in a church hall panto. He rises from his tomb when a stupid descendant (I think he's a descendant, as he's also played by Naschy)returns to his ancestral home and reunites the magician's head and body, which had been separated by by the witchfinders who executed him, in an attempt to stop him, er, rising from the tomb.<br /><br />Obviously, once head and body are back together all hell breaks loose and lots of people die. Like all good magicians, Abanazer here has a lovely assistant. This one's played by another Spanish horror great, the beautiful Helga Line. Like practically every other woman in the film Line periodically gets her kit off. There's a LOT of nudity in this film, and not just female - we even get to see Naschy's paunchy body, which isn't a pretty sight, I can tell you. Most of the film's sex angle is laughably gratuitous. There's one particularly funny scene where Naschy and Line discuss their evil plans and then suddenly decide to both have a grope of the nubile young blonde they've possessed.<br /><br />It's also pretty gory in places - notably a Herschell Gordon Lewis-esquire moment where Line plunges her hands into a man's chest to remove his heart.<br /><br />The best part of the film is the pretty effective zombies who turn up towards the end. They're quickly scared off by a fire though, and don't bother coming back. Which is a shame. The scene where the zombies rise, however, is the film's most ludicrously inept moment. It all happens in long shot, and we haven't really got a clue what's happening until we see some figures shambling on from the distance. There are several rubbish moments like this, thanks largely to poor editing. When a labourer falls under the hypnotic spell of Naschy's head there's a big close up of his face that seems to last forever and serves no purpose whatsoever.<br /><br />All in all, not a great horror film, but entertaining enough. Of course, the version I saw was a dubbed American version that had probably been chopped to pieces. For all I know, the original Spanish version could be a masterpiece...\r\n1\tLadislas Starewicz's curiosity with insects and cinema melds into a short film about a love triangle between Mr. Beetle, an artistic grasshopper, and Mrs. Beetle. The rather simple story of an adulterous beetle couple that both seek stimulation outside their marriage is similar to a Biograph or Vitagraph short of the time. Starewicz's twist on the story is to use embalmed beetles with wires straightening the legs in frame-by-frame animation. The story builds as Mr. Beetle is unknowingly caught on camera with a dragonfly from the local nightclub by a jealous grasshopper. When Mr. Beetle comes home to find his wife in the arms of her artistic friend, he chases her around angrily, but eventually forgives her and takes her out to see a movie. However, Mrs. Beetle soon learns of her husband's infidelities as the movie they watch is the jealous grasshopper's footage of Mr. Beetle and the dragonfly together. Mrs. Beetle thrashes Mr. Beetle with her umbrella, Mr. Beetle jumps through the screen, and they both end up in jail after the projector they wreck catches on fire. The insects are placed in humanized settings such as a house or a nightclub, and are given human characteristics of jealousy, anger, lust, and revenge. The insect characters carry briefcases, drive motorcars, and even wear shoes yet they also twitch their antennae and open and close their mandibles as real insects would. The novelty of the story doesn't wear itself out, even after multiple viewings, but as fluid as the movements are, the film moves slowly. Action happens with intricate detail, but rapidity and a quicker pace of filming is lost in the process. Despite its pace, the film is an excellent example of Starewicz's early puppetry and is highly recommended.\r\n0\t\"Save the $8.97 you'll spend at Walmart to buy this DVD and go see the real film by Steven Spielberg.<br /><br />I'm a filmmaker, and being an avid fan of H.G. Wells, I had to buy this hoping to sit down and watch three hours of good entertainment. Instead, it took four days to finish watching this because I couldn't stand watching more than 10 minutes at a time. It's horrible.<br /><br />There are reports that Timothy Hines had a $20 Million budget for this production. Where the heck did it go? Did he use most of it to buy a new house? Finance his retirement? Or what? Let me start with what is actually good about this film. It does stay true to the book AND there are a few good performances in it. I can respect the actors who obviously tried to make this a good film. But good performances were quickly overshadowed by horrible... and I do mean horrible special effects. Any freshman film school student could have done a much better job with the CGI. To me, most of it looked like \"\"stop action\"\" card board cutouts that were used rather than sophisticated CGI software that a $20 Million project should be using.<br /><br />There's no excuse for the amateur post production that was applied to this film. My own partner and I sat down and recreated our version of the Ferry scene using software that cost less than $1500.00 and within a day had five minutes of scene that looked better and more realistic than what Hines created. I've seen films with budgets of less than $2 Million look better. Much better.<br /><br />In my opinion the special effects used in the original King Kong were more sophisticated and better than Hines' special effects in this film. IN fact, I have a much better appreciation for Attack of the Killer Tomatoes because of this film. There's no excuse with today's technology for a film to look like a 50's B-Movie unless that was the intention, which shouldn't have been with this particular project.<br /><br />A problem I had with the DVD transfer was that the film is jerky, another demonstration of amateur film-making.<br /><br />Overall, I have to say that I produced a $45,000 project in 2003 that have better cinematography and special effects than this film.<br /><br />I strongly encourage anyone who appreciates good film-making or who is a fan of WOTW to leave this film on the shelf and watch Attack of the 50 Foot Woman instead. It would be easier on the eyes.\"\r\n1\tIt's a great American martial arts movie. The fighting scenes were pretty impressive for American movie made in 90's. Of course the fighting scenes aren't that good as in Honk Kong movies, actually only few American movies have fighting scenes which are as good as in Honk Kong movies, even nowadays. When you watch American martial arts movie, you are expecting to see less impressive fighting scenes, but still having some nice moves, which can be surprisingly good sometimes, or at least that's what I'm expecting from these movies. I was impressed by this film. Some fighting scenes were really impressive, the acting, direction and the plot were good enough, so it's a really worth watching movie, if you like American martial arts films of the 90's.\r\n0\tSpoiler Alert Well I think this movie is probably the worst film ever made. Probably in the style of Ed Wood(without the heart). The lightning is terrible. The music is very bad(piano and orgue... come on!). The acting is... well there is no acting!<br /><br />There's a guy who actually goes in the wood to search for his missing wife and take the time to have sex with a stranger.<br /><br />The killer is a fat, unscary clown who couldn't outrun a turtle!<br /><br />Every members of the cast is stupid and the director put every clichés of slashers movies in the film without effort.<br /><br />The end is so far the most stupid ever made. Think about it: The guy(ken hebert) who's acting skill is about the same as his writing(he's the brain behind this flop) invite a co-worker and two of his friends to his cabin for the week-end and kills them... On monday morning he goes back to is office like nothing happen.<br /><br />The tragedy is that Mr.Hebert try to make us beleive that it's a family affair that goes on for generation(his uncle is the clown killer)<br /><br />So of course NO cops are gonna question him after his co-worker goes missing...<br /><br />WHATEVER.<br /><br />\r\n0\tWhat we have here is a film about how the pursuit of money & revenge can corrupt your soul... or something like that. Guy Ritchie, a director known for his reworking of the gangster genre, bites off more than he can chew with this one.<br /><br />His use of modern film noir to tackle the theme of a man setting himself free by swallowing his pride, being nice to his enemy & giving away all his money falls flat on it's face. When Jason Statham's character no longer fears Ray Liotta, it apparently drives Liotta crazy enough to blow his head off in the final scene. Why? Basically you cannot set up a mafiosi like the Liotta character, who has presumably got to his station in life by displaying the kind of ruthless behaviour evident throughout the film, only then to have him driven to suicide by nothing more than a pitying smile on the face of Statham's character.<br /><br />Before anyone starts to say I'm missing the point... I'm not. I get it OK? Opt out of the quest for riches & you'll find true happiness and inner peace. Be nice to your enemy and this will confuse him into self-destruction. This seems to be the gist of the movie and in itself this is not a bad premise for a story, although hardly original. The problem is that Ritchie simply doesn't have the skill as a movie maker to carry it off. At the moment when even Guy Ritchie realises this, he appears to get bored with the story and begins to insert red-herrings: The scene when Statham gets knocked over by a car - Why? The shooting of some scenes as Marvel comic animations... again, why?<br /><br />There are so many loose threads & unanswered questions left at the end of the movie you could get all 2001-ish about it and try figuring them out, or simply accept that there are no answers & each viewer will interpret things in their own way. Myself? I was so bored with the pompous tone of the film that I simply didn't care. Frankly the ending couldn't come too soon so that I didn't have to sit through any more of this pretentious psychobabble.<br /><br />A waste of two hours of my life.\r\n1\tJoe Don Baker is one of a handful of actors who is often better than his material, and almost always under appreciated. He's been in a ton of films either as a heavy or a hero, and has the type of strong, solid presence that Wallace Beery did half a century before him. Baker can delivery material that would sound ridiculous coming out of another actor, and that's what's so great about him. He really seems to mean what he's saying, regardless of how cliché, obvious or silly, which puts him in a league with Tommy Lee Jones, Oliver Reed and Don Stroud. It's what made the WALKING TALL Trilogy work so well, and that same magic is here in FINAL JUSTICE. This was a substantial hit in theaters and on video in the 80s, and it has aged a lot better than many of the perhaps better known action flicks of the era. By moving the action from Texas to Europe, there's a real timeless quality that doesn't jar you away from the action on screen. To be honest, I've always enjoyed the films of Greydon Clark, who is a no-nonsense director in the same vein as 1970s Clint Eastwood, and this is one of his best. FINAL JUSTICE is one of the lost gems of the late 80s, similar to MAN ON FIRE in its true grit and violence. I suppose if they remake this with The Rock, a whole new audience will come to love it as much as I do.\r\n0\t\"This movie was the worst i've ever seen.<br /><br />It doesn't seem to have a plot but the time you realize this is far beyond the beginning of the movie so you have to watch the shut for a long time to recognize the total incompetence of the director, aka the sloth that plays the tampon chick in the movie, and we do not believe the Willem Dafoe in this movie, he's a clone, because the real Dafoe, like we know from \"\"apocalypse now\"\" and \"\"the boon dock saints\"\", would never agreed to such a script.<br /><br />Duh, (Da)foe wrote this bill shut together with his twenty years minus baby. This movie starts with the credits of the two main characters, Dafoe and Colagrande, and then the two script writers, Dafoe and Colagrande, and then the director, Colagrande.<br /><br />Bottomline (the story); Widow meets guy, guy bangs widow, widow smashes windscreen with guy who banged her.<br /><br />Title in Netherlands; The black widow (different title, same bullshit).<br /><br />DO NOT WATCH THIS MOVIE!!! It's a total waist of time!!!\"\r\n0\tI came away from this movie with the feeling that it could have been so much better. Instead of what should be a gripping, tense story of a boy's fight for survival in the wilderness, it comes off as a National Geographic documentary meets Columbia sportswear ad.<br /><br />The film begins with Brian (Jared Rushton) preparing for a journey by plane to see his father. His mother fortuitously gives him the curious choice of a hatchet as a going-away gift (what's wrong with a Rubik's Cube?), little knowing how badly he will soon need it. Once in the air, the plane's pilot (a blink-and-you'll-miss-him cameo by Ned Beatty) suffers a fatal heart attack, leaving Brian helpless as the plane crashes into a lake. Extremely lucky to walk (or rather swim) away virtually unscathed, Brian must find shelter, food and hope for rescue.<br /><br />Here is where the main problem with the movie begins. By the very nature of Brian's solitude, Jared has very few lines to speak, and so the film ought to have compensated by ratcheting up the tension of each scene. Instead, he is shown walking around, sitting around, and so on, with only a minimal sense of danger. As a result, too much reliance is placed on flashbacks to the parents' troubled marriage as the source of tension. These scenes merely get in the way and don't particularly add much to the story. Even worse, occasionally Jared  his face covered with mud - lets out a primal scream or two, which conjures up unfortunate parallels to `Predator.' Speaking of unfortunate, we could have done with being spared the sight of his mullet, but it presumably helped keep him warm at night.<br /><br />Another disappointment is Pamela Sue Martin in a totally ineffectual performance as the mother. Both she and the father have very little impact in the movie. For instance, we are never shown how they react to news of Brian's disappearance, how they might be organizing rescue attempts, and so on. This is just one source of tension the film-makers would have done well to explore instead of spending so much time on events that happened before Brian embarked on his journey.\r\n1\tA young woman comes to the home town of his husband after he passed away in an accident. She barely settles down in this small town, but shortly after, loses her little son in a kidnapping and all her hopes... This could lead to all kinds following plots in a normal movie: find a new partner and being happy finally; or depressed enough to struggle and finally kill herself... She does try to kill herself, but not after a series of severe fights, with God. She trusts in God, only to find that God seems to forgive everyone, even the killer. Well, I should be careful here about God, the movie doesn't mean a thing against God. The way the movie deals the issue is quite interesting: not in the woman's point of view or from God's perspective (in this way, there would be lots of grass growing, clouds flying views, I suppose). Rather, it's from a third party's eye, the movie let us to perceive and doesn't explain a thing.<br /><br />The movie wouldn't be so interesting were there only the woman. There's this man who's everywhere around the woman and obviously in love with her, but in his own way. He's a funny guy, like a clown I should say, who shamelessly hangs around our heroine. The combination of these two, the woman full of tension, crying and throwing up always, and the man, smiling and talking stupidly, ends up in a good balance of emotions: nothing absurdly wrong or too tedious.<br /><br />Highly recommend.\r\n0\tSAPS AT SEA <br /><br />Aspect ratio: 1.37:1<br /><br />Sound format: Mono<br /><br />(Black and white)<br /><br />Suffering from 'hornophobia', Ollie embarks on a 'restful' boat trip, but he and Stan get mixed up with an escaped convict (Rychard Cramer). Chaos ensues.<br /><br />This feature length comedy - an OK entry which nonetheless unspools like a mere imitation of Laurel and Hardy's best work - marked the final collaboration between L&H and producer Hal Roach. Episodic in structure, the movie culminates in a memorable ocean voyage after The Boys are taken hostage by villainous Cramer (who shoots a seagull to prove how tough he is!). The gags are OK, but inspiration is lacking, perhaps due to the recruitment of actor-turned-director Gordon Douglas, previously responsible for Ollie's first solo effort in the sound era (ZENOBIA, produced in 1939), but whose work here lacks a measure of pzazz. Fair, but nothing special. L&H regulars Charlie Hall and James Finlayson make guest appearances.\r\n0\t\"This movie is so bad, it can only be compared to the all-time worst \"\"comedy\"\": Police Academy 7. No laughs throughout the movie. Do something worthwhile, anything really. Just don't waste your time on this garbage.\"\r\n0\tA good cast (with one major exception) pushes its way through Epstein's smart light satire. Mansfield was never better, or funnier, than she is here paired with Walston, who's a veteran who's determined to become a congressman to get out of the war. He and his buddies -- including suave con-artist Grant -- head to San Francisco on leave and start the city's swinginest party while conniving to escape the service altogether through industrial speaking tours. The only thing about this movie that's not delightful is Suzy Parker's one-note performance as Grant's love interest, which takes up too much of the film's time and slows down the pace in the second half. Walston and Mansfield have good chemistry; the gimmick is that she's set on making love to every serviceman (to do her duty for the war effort, of course) but he's a married man who, nonetheless, loves his wife. They steal the movie with little trouble from Grant (who's amusing here in the first part of the film, when not paired with his non-actor co-star.\r\n0\t\"The concept of the legal gray area in Love Crimes contributes to about 10% of the movie's appeal; the other 90% can be attributed to it's flagrant bad-ness. To say that Sean Young's performance as a so-called district attorney is wooden is a gross understatement. With her bland suits and superfluous hair gel, Young does a decent job at convincing the audience of her devout hatred for men. Why else would she ask her only friend to pose as a prostitute just so she can arrest cops who try to pick up on them? This hatred is also the only reason why she relentlessly pursues a perverted photographer who gives women a consensual thrill and the driving force behind this crappy movie. Watching Young go from frigid to full-frontal nudity does little to raise interest, but the temper tantrum she throws standing next to a fire by a lake does. Watching her rant and rave about her self-loathing and sexual frustration makes Love Crimes worth the rental fee, but it's all downhill to and from there. Despite her urge to bring Patrick Bergin's character to justice, her policing skills completely escape her in the throes of her own tired lust and passion. Patrick Bergin does a decent enough job as a slimy sociopath; if it worked in Sleeping With the Enemy it sure as hell can work in this. But I can't help but wonder if the noticeable lack of energy Young brings to the film conflicts with his sliminess. I'm guessing it does and the result is a \"\"thriller\"\" with thrills that are thoroughly bad and yet comedic.\"\r\n0\t\"It must be assumed that those who praised this film (\"\"the greatest filmed opera ever,\"\" didn't I read somewhere?) either don't care for opera, don't care for Wagner, or don't care about anything except their desire to appear Cultured. Either as a representation of Wagner's swan-song, or as a movie, this strikes me as an unmitigated disaster, with a leaden reading of the score matched to a tricksy, lugubrious realisation of the text.<br /><br />It's questionable that people with ideas as to what an opera (or, for that matter, a play, especially one by Shakespeare) is \"\"about\"\" should be allowed anywhere near a theatre or film studio; Syberberg, very fashionably, but without the smallest justification from Wagner's text, decided that Parsifal is \"\"about\"\" bisexual integration, so that the title character, in the latter stages, transmutes into a kind of beatnik babe, though one who continues to sing high tenor -- few if any of the actors in the film are the singers, and we get a double dose of Armin Jordan, the conductor, who is seen as the face (but not heard as the voice) of Amfortas, and also appears monstrously in double exposure as a kind of Batonzilla or Conductor Who Ate Monsalvat during the playing of the Good Friday music -- in which, by the way, the transcendant loveliness of nature is represented by a scattering of shopworn and flaccid crocuses stuck in ill-laid turf, an expedient which baffles me. In the theatre we sometimes have to piece out such imperfections with our thoughts, but I can't think why Syberberg couldn't splice in, for Parsifal and Gurnemanz, mountain pasture as lush as was provided for Julie Andrews in Sound of Music...<br /><br />The sound is hard to endure, the high voices and the trumpets in particular possessing an aural glare that adds another sort of fatigue to our impatience with the uninspired conducting and paralytic unfolding of the ritual. Someone in another review mentioned the 1951 Bayreuth recording, and Knappertsbusch, though his tempi are often very slow, had what Jordan altogether lacks, a sense of pulse, a feeling for the ebb and flow of the music -- and, after half a century, the orchestral sound in that set, in modern pressings, is still superior to this film.\"\r\n0\tTell the truth I’m a bit stun to see all these positive review by so many people, which is also the main reason why I actually decide to see this movie. And after having seen it, I was really a disappointed, and this comes from the guy that loves this genre of movie.<br /><br />I’m surprise at this movie all completely – it is like a kid’s movie with nudity for absolutely no reason and it all involve little children cursing and swearing. I’m not at all righteous but this has really gone too far in my account.<br /><br />Synopsis: The story about two guys got send to the big brother program for their reckless behavior. There they met up with one kids with boobs obsession and the other is a medieval freak.<br /><br />Just the name it self is not really connected with the story at all. They are not being a role model and or do anything but to serve their time for what they have done. The story is very predictable (though expected) and the humor is lame. And haven’t we already seen the same characters (play by Mc Lovin’) in so many other movies (like Sasquatch Gang?). I think I laugh thrice and almost fell a sleep.<br /><br />Well the casting was alright after all he is the one that produce the screenplay. And the acting is so-so as expected when you’re watching this type of movie. And the direction, what do one expect? This is the same guy who brought us Wet Hot American Summer, and that movie also sucks. But somehow he always managed to bring in some star to attract his horrendous movie.<br /><br />Anyway I felt not total riff off but a completely waste of time. Only the naked scenes seem to be the best part in the movie. Can’t really see any point why I should recommend this to anyone.<br /><br />Pros: Elizabeth Bank? Two topless scenes.<br /><br />Cons: Not funny, dreadful story, nudity and kids do not mix together.<br /><br />Rating: 3.5/10 (Grade: F)\r\n0\t\"Dear Friends and Family,<br /><br />I guess if one teen wants to become biblical with another teen, then that's their eternal damnation - just remember kids, \"\"birth control\"\" doesn't mean \"\"oral sex\"\", I don't care what the honor student says. On the other hand, even if the senator's aid quotes himself as a \"\"bit of a romantic guy\"\", he's still only hitting on a high school girl. If she was my sister, I'd eat this guys kneecaps.<br /><br />Other than that I found out that Mongolians don't kiss the same way the French do and that baseball players named Zoo like delicate undergarments.<br /><br />I think I'd almost rather watch Richie Rich one more time than suffer the indignity of this slip, slap, slop. Thank you, and good night.\"\r\n1\t\"Disregard the plot and enjoy Fred Astaire doing A Foggy Day and several other dances, one a duo with a hapless Joan Fontaine. Here we see Astaire doing what are essentially \"\"stage\"\" dances in a purer form than in his films with Ginger Rogers, and before he learned how to take full advantage of the potential of film. Best of all: the fact that we see Burns and Allen before their radio/TV husband-wife comedy career, doing the kind of dancing they must have done in vaudeville and did not have a chance to do in their Paramount college films from the 30s. (George was once a tap dance instructor). Their two numbers with Fred are high points of the film, and worth waiting for. The first soft shoe trio is a warm-up for the \"\"Chin up\"\" exhilarating carnival number, in which the three of them sing and dance through the rides and other attractions. It almost seems spontaneous. Fan of Fred Astaire and Burns & Allen will find it worth bearing up under the \"\"plot\"\". I've seen this one 4 or 5 times, and find the fast forward button helpful.\"\r\n0\tThis is a really stupid movie in that typical 80s genre: action comedy. Conceptwise it resembles Rush Hour but completely lacks the action, the laughs and the chemistry between the main characters of that movie. Let it be known that I enjoy Jay Leno as a stand-up and as a talk show host, but he just cannot act. He is awful when he tries to act tough - he barely manages to keep that trademark smirk off his face while saying his one-liners which, by the way, aren't very funny. And seeing him run (even back then) is not a pleasant sight. In addition, I have a feeling that Pat Morita - at least by today's standards - doesn't give a very politically correct impression of the Japanese. Don't even get me started about the story. I give it a 2 out of 10.\r\n1\t\"At first this looked like a boring comedy like The Odd Couple, but when I got into it it turned out to be a really funny film. Basically forgetful ex-comedians Willy Clark (Golden Globe winner, and Oscar and BAFTA nominated Walter Matthau) and Al Lewis (Oscar winning, and Golden Glove nominated George Burns) were a great comedy duo, and a brought back together to revive their hospital sketch for a TV show. Willy's nephew, Ben Clark (Golden Globe winning Richard Benjamin) is confident they can get together again with no hard feelings for each other, how wrong he is. They cannot get on all the time, they are both forgetful, especially during conversation, but they do it eventually. Also starring Lee Meredith as Nurse in Sketch (Miss McIntosh), Carol DeLuise as Mrs. Doris Green, Al's Daughter, Rosetta LeNoire as Odessa, Willy's nurse and Muppets from Space's F. Murray Abraham as Mechanic. I think the best line of the film is Burns mentioning that Matthau called him \"\"a son of a bitch bastard\"\". It was nominated the Oscars for Best Art Direction-Set Decoration and Best Writing, Screenplay Adapted From Other Material, it was nominated the BAFTA for Best Screenplay, and it won the Golden Globe Best Motion Picture - Musical/Comedy, and it was nominated for Best Screenplay. Very good!\"\r\n0\tThe first Matrix movie was lush with incredible character development, witty dialog, and action scenes that kept with the flow of the story. These elements -- coupled by incredible special effects of the day -- presented a magical ride that kept you in suspense the entire time. Enter Matrix Reloaded (and its sequel, Revolutions). The problem here isn't the special effects or the fight sequences as some may argue; The brothers have taken well-developed characters from the first film and hollowed them out like rotten tree logs. The connection that was first established between viewers and on-screen characters in the first film is lost when you realize these are not the same characters from the first Matrix movie.<br /><br />To wit, Morpheus was developed as a charismatic, philosophical character with insight far exceeding anyone else in the movie, but here in Reloaded -- we're presented by a different Morpheus who stands hard and hollow, reduced to corny one-liners that contradict the character we saw develop in the first film. This character just didn't feel the same, and this could also be said about the supporting characters in the movie.<br /><br />The removal of 'Tank' was also a disappointment. Tank's involvement in the first film was minimal at best, but he played the role extremely well. In Reloaded, we discover that Tank dies after the events in the first film, and he is replaced by a Jar Jar Binks stunt double that couldn't act to save his live (think stale box of Kellogg's Corn Flakes). His performance left me chuckling throughout, and most of his spoken dialog lacked timing. There was an overwhelming sense that he was either trying too hard to convey his emotions on-screen or the delivery in the script was off; in either case, the experience was humorous! At times I felt embarrassed for the actor....<br /><br />Even Neo's Godly persona was suspect during most of the fighting sequences. The alleyway battle with the 200 Agent Smith clones was certainly exaggerated. One must wonder, for a man so gifted as Neo -- that he would even waste his time engaging in such a fruitless, frivolous battle when more pressing matters attend (especially when you consider his ability to fly or his ungodly ability to bend the Matrix; certainly Neo could have dispatched the clones much quicker, and more efficiently). Again, such acts lend themselves to a script hindered by consistency, and scenes created as filler to keep us from feeling gypped. In jest, our expectations of the characters created in the first film are discarded promptly. Sadly, for those expecting more of the same -- you will certainly walk away feeling gravely disappointed.<br /><br />However, if you take Reloaded as your standard, run-of-the-mill action movie, and forget the incredible story inconsistencies and the untwining of already-established character development from the first film, you should walk away feeling quite pleased.\r\n0\t\"Six GIs, about to be send home and discharged, get drunk and sneak into a cult meeting in Asia. Surrounded by hooded figures, two male dancers pretend to have a fight. Behind them, on an altar, a woven basket opens and a figure painted emerges and begins imitating a snake, finally biting one of the dancers on the neck. The imitation snake is dressed in some scaley looking body tights. (This is definitely a female imitation snake.) The cult member who has sneaked them into the secret meeting has warned the six men repeatedly that the ceremonies must not be interrupted and, most definitely, no photos must be taken or else they will be hunted down and killed. Naturally, the GIs take a flash photo, send the cult members into an angry hysteria, steal the basket containing the \"\"snake\"\" and run off with it into the Asian night.<br /><br />One of the guys, the most offensive and snarky, dies from a cobra bite on the neck, though no one can explain how the snake got into his hospital room.<br /><br />Back in New York, it all seems rather old news as the discharged men settle down into their civilian lives, still maintaining their bond with one another. Their jobs range from manager of a bowling alley (David Janssen) to graduate research student (Richard Long). James Dobson, Jack Kelly, and Marshall Thompson are also part of the neighborhood. Richard Long has a nice blond girl friend. Kelly is a somewhat reckless womanizer. But they all get along well enough and all of them seem happy.<br /><br />Then a dark, shifty-looking, mysterious woman (Faith Domergue) shows up and Marshall Thompson takes a liking to her and insinuates her into the group.<br /><br />Guess what happens. First Janssen is terrified by a shadow in the back seat and dies in a car crash. Then Kelly gets a visit from Domergue. Something scares him so badly he tumbles through the window and dies in the fall to the sidewalk. Long and Dobson begin to suspect what the viewer already knows -- that Domergue has had something to do with the deaths. They also reckon that maybe she's turning into a cobra, which is the case. Dobson confronts her with his suspicions and she proves his point.<br /><br />By this time Long and Thompson are thoroughly frazzled, particularly Thompson, who is in love with Domergue and has discovered that she is attracted to him, too, although he must explain to her what \"\"love\"\" is. No matter. A final reckless attack by the cobra woman against Long's girl friend -- not one of the six original offenders -- and Thompson must throw the snake out the window. On the pavement below, the body changes to that of Domergue. The end.<br /><br />I think I'll skip over most of the questions that the plot raises. I'll just mention one of the more prosaic ones in passing. Who paid for Domergue's fare from somewhere in Asia to New York? Who's paying her utility bills in the hotel? Who paid for her spectacular wardrobe? How come she speaks American English so well? What the hell's going on? The writers and director have clearly seen some of Val Lewton's modest horror films and, though not much effort has gone into this production, they've unashamedly stolen some gimmicks from Lewton. In Lewton's \"\"The Cat People\"\", for instance, the woman is transformed into a black leopard but, with one tiny exception, the threat is always kept in the shadows and is all the more spooky for it. Most of the transformations here use shadows too, but unlike Lewton's, the shadows are clumsy and unambiguous.<br /><br />Lewton also made occasional use of what he called \"\"buses\"\". Lewton's first \"\"bus\"\" was a literal one. A potential victim is hurrying alone through the dark tunnels of Central Park with only the sound of footsteps. Something or someone is following her. She freezes with fright under a street lamp. Something rustles the branches of the shrubs above her. She looks upward. There is a loud, wheezing shriek that makes your hair stand on end. It's a bus using its air brakes to stop for her. The producers used at least two \"\"buses\"\" in this film and they amount to nothing. A guy is walking distractedly across an intersection, for instance, and there is the sudden rumble of a truck that almost hits him. There is no set up to the shot. It's jammed in with a shoe horn.<br /><br />I don't much care for movies that perpetuate the stereotype of serpents as slimy, ugly, venomous, and phallic. As a matter of fact, no snakes are slimy, most are harmless, and many are extraordinarily beautiful. Furthermore, they're more feminine than masculine in their sinuous movements and serpentine approach to goals. You want a reptilian symbol for masculinity? Try a six-lined racerunner. It's a really fast lizard. When it sees something to eat, it rushes up and gobbles it down.<br /><br />Anyway, if you want to see some fine, low-budget scary films, don't bother with this one. Find \"\"The Cat People\"\" or one of Lewton's other minor masterpieces, of which this is an obvious copy.\"\r\n1\tThis is a tongue in cheek movie from the very outset with a voice-over that pokes fun at everything French and then produces a rather naif but very brave hero in Fanfan La Tulipe. Portrayed by the splendid Gerard Philippe, the dashing young man believes utterly in the fate curvaceous Lollobrigida foretells - notably that he will marry King Louis XV's daughter! Problem is, La Lollo soon find outs she too is in love with Fanfan...<br /><br />Propelled by good sword fights, cavalcades, and other spirited action sequences the film moves at a brisk pace and with many comic moments. The direction is perhaps the weakest aspect but the film is so light and takes itself so un-seriously that I could not give those shortcomings a second thought. Look out for Noel Roquevert, a traditional heavy in French films, trying to steal La Lollo, making himself a nuisance, and feeding the script to the fortune teller that reads La Lollo's hand! And what a gem Marcel Herrand is as the megalomanous and lust-driven King Louis XV! That is not all: So many beautiful women in one film makes me wish I were in France and on the set back in 1952! The film may have come out that year but its verve, cheek, superb narration, immaculate photography and the memorable Gerard Philippe ensure that it remains modern and a pleasure to watch. I would not hesitate to recommend it to my grandchildren let alone to anyone who loves movies in general and swashbucklers in particular! Do see it!\r\n0\t\"As far as HEIST movies go, this one is pretty weak. Continuity is pretty lousy, there isn't enough character continuity to really feel like you understand any of the characters. Peter Falk is great, and he is one of the reasons its worth watching. Falk has some great lines, like \"\"he'll be right back, he goin' buy to some saugages\"\" or something like that... there are a few nice scenes, although they are entirely due to the efforts of the actors. Direction, script, and editing is pretty lousy.\"\r\n0\tOverall an extremely disappointing picture. Very, very slow build up to the basic storyline. The role of Maria Schrader searching for her families secret past. (Every take seems to last forever. There is really no rhythm in the film.) ***SPOILERS*** Her Mother Ruth is rescued from the Nazis, by a German woman, played by Katja Riemann. The entire character of Ruth is so one dimensional, so stereotypical. ***SPOILERS END*** The film cuts back and forth between present day New York and Berlin and Berlin 40s something. Please when you do that, give the audience an indication of what time exactly the story takes place. There is never a clear indication of time  very annoying. Worst part is, the end. ***SPOILERS*** The entire show and jabber about the Jews being so terribly tormented, simply by a bureaucratic accident! Give me a break. That's how the Jews got out of the Rosenstrasse? The question of who freed the Jews is NEVER answered. Was is Goebels who freed them? Did Lean Fischer sleep with Goebels? In Venice the film won an acting award for K. Riemann, why?  I have no idea. Must be the Jewish theme\r\n0\t\"\"\"Back of Beyond\"\" takes place at a dive diner/gas station in the middle of the Australian desert run by Tom McGregor (Paul Mercurio), a shy guy who suddenly finds himself in a spot of trouble when some visitors unexpectedly arrive. We get what, at first, confusingly seems like a flashback in which he and his sister (though their relationship to each other is better understood later in the film) are speeding through the desert on his motorcycle. Afterwards, he appears as a terribly quiet, and sometimes, moody character in the presence of the arrivals.<br /><br />We know one thing is for sure and that is McGregor's sort of spiritual sense, his foresight of danger and such--his clairvoyance only slightly relevant to the story, the bulk of which concerns three diamond thieves who's car breaks down and who rely on Tom to help them out of spot without getting in their way. Of course, Tom falls for one of the thieves, a young woman named Charlie, and suddenly, it pits all three already mistrusting allies against each other. But not in a way that really results in anything of much mystery or action. In fact, the whole movie all the while seems to want to build up to something significant, but really fails to do so. Even the ending, of which plays out like a trite campfire tale (and one that really reveals a lot of narrative flaws), is almost just as ridiculous.<br /><br />It may be worth trying if you don't mind the terribly slow pacing, but are in the mood, at least, for something a little different than the usual.\"\r\n1\t\"Have you ever wished that you could escape your dull and stressful life at school or work and go on a magical adventure of your own, with one of your closest friends at your side, facing all sorts of dangers and villains, and unraveling the mystery of a lost civilization that's just waiting for someone to discover all its secrets? Even if you're not quite that much of a fantasy-lover, have you ever wished you could simply experience what it's like to be a kid again, and not have a care in the world, for just a couple of hours? <br /><br />This is exactly what Miyazaki's \"\"Castle in the Sky\"\" is all about. Pazu, a young but very brave and ambitious engineer, lives a rustic life in a mining town until one day, a girl named Sheeta falls down from the sky like an angel and takes him on a journey to a place far beyond the clouds, while all the while they have pirates and military units hot on their trail. Simply put, it is just the incredible adventure that every kid dreams of at one point or another, and I can't help but feel my worries melt away every time I see it.<br /><br />As it is one of Miyazaki's older works and takes much place in the everyday world, the film is not as visually spectacular or deep in its storyline as Spirited Away, Howl's Moving Castle, or even Princess Mononoke. Still, I find it difficult to say that any of these films are superior over the other, because all three of those films are, at some point or another, mystical to the point of being enigmatic, if not perplexing, especially for the youngest of viewers.<br /><br />\"\"Castle in the Sky\"\", on the other hand, doesn't try so much to be an allegory of any kind, and it's not a coming-of-age story either; it is instead quite possibly one of the best depictions of the inside of a child's mind I've ever seen. Not only is the artwork beautiful, but the use of perspective from the kids' eyes is just amazing; whether it's the panning up of the \"\"camera\"\" to see the enormous trees or clouds overhead, or the incredible sense of height from looking down at the ground or ocean while hundreds of feet in the air, I just can't help but FEEL like I'm there with Pazu and Sheeta, just a kid in another world, far far away from reality.<br /><br />Even the kids themselves don't have a complex relationship that suggests a need for hope like Ashitaka/San or Chihiro/Haku; Sheeta is Pazu's angel, having literally fallen into his life from the sky one day, the absolutely perfect person for him right from the very start. As the film progresses, more and more of their true adventurous childhood spirit comes out through their kind words and beautifully realistic facial expressions. Not only are they an adorable reminder of who I used to be, but their endearing friendship never lets up throughout the whole film, only growing stronger all the way to the last frame. For that reason, I've fallen in love with the two of them more than I have with any other Miyazaki couple.<br /><br />At the same time, \"\"Castle in the Sky\"\" is such an easily accessible film because no matter what kind of casual moviegoer you may be, you'll be sure to find your fix here. Mystery, action, drama, comedy, suspense, sci-fi, romance, even some western...it's all here, just about everything people go to the movies for (except maybe horror). This why I can easily recommend it as a first Miyazaki film; it's perfect for those who have no expectations from having already seen the incredible otherworldliness of some of his more recent works.<br /><br />Even the ending song of the film, when translated into English, conveys the sense of longing for the discovery of some kind of lost civilization, and some kind of soul-mate, that could not be found in our mundane lives. \"\"The reason I long for the many lights is that you are there in one of them...The earth spins, carrying you, carrying us both who'll surely meet.\"\" Miyazaki has always provided poetic lyrics to make ending songs out of Joe Hiasashi's gorgeous scores, but this is the only one I've seen that's both a touching love song and an inspirational dream. I have found myself near tears just listening to it.<br /><br />\"\"Castle in the Sky\"\" may not be Miyazaki's most developed, spectacular, or meaningful work, but it's absolutely perfect for what it really was meant to be: a true vision of childhood fantasy, and a wonderful escape from reality for any adults who wish they could have the same wonderful sense of imagination they had when they were just carefree little kids. Sit back, relax, and love it for what it is.\"\r\n1\tThis tender beautifully crafted production delved deep down bitter sweet into my being. The irreverent pupils, the life embittered bus driver and the teachers personalities present a subliminal debate as the story unveils. The adult characters all seem familiar, my teachers, my bus driver, each one of their opinions so plausible and well known. When a key incident happens on the bus we are sent on a circuit of viewpoints. All the time the babble of teenage energy is only just kept under control by the organisers of the trip. Mr Harvey is experiencing much pain throughout . He reminds me of war damaged teachers I did not understand when I was an irreverent pupil.<br /><br />Rhidian Brook and the producers deserve much acclaim for this well shaped British film. The acting unblemished, the scenes appropriate, it should be widely available yet does not seem to have been given the right opportunity.\r\n0\tThe movie uses a cutting edge title for a lame story. Kill Kill, would have been nice. The movie incorporates taboo scenes to make the viewer move back in their chairs. The scenes are unnecessary and choppy. The movie is something a novice screen writer could have conjured. Just a waste of movie props and network money. I have to write 10 lines of text to critique this film when it is not worth 10 lines of my time, but I have to push on to let the people know to avoid the nonsense. If people are counting on you to choose a good movie for movie night, pick something else. If you have a soul don't damage it by subjecting yourself to this filth.\r\n1\tThis film is a wonderfully simplistic work. Enjoyable from start to end it is both sad yet uplifting at the same time. The performances from Miranda Otto (oh, how she deserves so much more recognition!)and George del Hoya are beautiful and yet almost painful to watch, as the two tortured souls come to understand each other. The supporting cast of workers at the Dead Letter Office are wonderful bit-parts in them selves, as is Alice's long-suffering boyfriend, who I couldn't help but feel slightly sorry for. There's one particular scene I could watch over and over (and I have!), it's such a shame that films like these don't get recognition, and therefore bring them futher into the public eye for more people to enjoy. I cried, I laughed and I sighed. I'd recommend this film to anyone.\r\n0\t\"Confounding melodrama taken from a William Gibson story, produced by John Houseman and directed by Vincente Minnelli! Richard Widmark heads up posh, upscale rural nervous asylum, where his loose wife battles with self-appointed queen bee Lillian Gish, and Widmark himself gets the straying eye for staff-newcomer Lauren Bacall, who is putting her life back together after the death of her husband and child. Facetious and muddled, set in an indiscriminate time and place, and with a \"\"David and Lisa\"\" love story hidden in the plush morass. Widmark and Bacall do have some good chemistry together, but this script gives them nothing to build on. For precisely an hour, most of the dialogue concerns what to do about the drapes hanging in the library (this thread isn't used as symbolism, rather it's a red herring in a non-mystery!). The picture hopes to show the loggerheads that disparate people come to when they're working in the same profession and everyone thinks their opinion is right, but unfortunately the roundabout way Minnelli unravels this stew is neither informative, enlightening nor entertaining. ** from ****\"\r\n1\t*Wonderland SPOILERS* <br /><br />July 1st, 1981: five people, Ron Launius (Josh Lucas), Susan Launius (Christina Applegate), Billy Deverell (Tim Blake Nelson), Barbara Richardson (Natasha Gregson Wagner) and Joy Miller (Janeane Garofalo) are attacked while they're asleep and brutally hit on the head with steel pipes in their home at 8763 Wonderland Avenue, Laurel Canyon, LA. Only Susan survives.<br /><br />Main Suspect: John Holmes (Val Kilmer), former king of porn, owner of a 30 cm long dick, and now a hopeless addict.<br /><br />Two investigators, Luis (Frankie G.) and Sam Nico (Ted Levine), are investigating on the case and try to crack it with the help of a witness that claims to know that John at the very least took part in the murders, David Lind (Dylan McDermott), Barbara's boyfriend, and trying to get a witness report out of Dawn Schiller (Kate Bosworth), Holmes' 19-year-old girlfriend and from Susan, who sadly doesn't remember anything more than shadows about the night her husband's head was bashed in and hers almost suffered the same fate, and the name of Eddie Nash (Eric Bogosian), a major drug kingpin (who is always around ladies such as Barbie (Paris Hilton)), comes into light as a suspect planner of the Wonderland massacre.<br /><br />But what did happen that night? And could Sharon (Lisa Kudrow), John's wife, know something about it? 'Wonderland' is a taught, intense thriller, a desperate love story and a story of a man's sad decline all in one; there is a clever use of the 'Rashomon' technique (we see the events of that fateful day and night from the eyes of David, John, Dawn, Susan (albeit very briefly) and Sharon), a nice direction and a great script, but is mostly compelling for the performances, especially Kilmer's, who takes central stage with his hopeless, tormented, sometimes childish Holmes, Lucas', whose Launius is strangely alluring, Kudrow's strong Sharon and Bosworth's innocent Dawn.<br /><br />Wonderland: 9/10.\r\n1\tIn the voice over which begins the film, Hughie(Billy Connolly), a roadie for the great 70's band Strange Fruit, said the reason lightning struck at a rock festival to stop Strange Fruit's set was that God was sick of 70's excess. Indeed, it's been popular to put down that era of music, and see punk as a welcome antidote to it. While I agree the excess was tiresome(as well as the misogynistic urges which came out of it), and like punk, I still am a fan of what is considered classic rock or glam rock, and this film about Strange Fruit's long, strange reunion is an affectionate tribute to those days.<br /><br />One of the reasons the film works is the care of the people behind the scenes. Brian Gibson directed WHAT'S LOVE GOT TO DO WITH IT, about Tina Turner(while I had problems with the dramatic parts of the film, the music was handled very well), writers Dick Clement and Ian Le Frenais co-wrote THE COMMITMENTS and were behind the music-oriented British TV show OVER THE RAINBOW, and the songs Strange Fruit played were co-written by Foreigner's Mick Jones(not to be confused with The Clash's Mick Jones), so it was a meeting of people who knew what they were talking about. Also, two cast members are musicians in their own right(Bill Nye I don't know about, though the film credits him with his own singing, and he certainly looks like a lead singer of that era, while Jimmy Nail was in another British TV show which was music-oriented, though I forget the name, and he was in EVITA), and the others are convincing at it. And while, as I said, a lot of 70's bands like Strange Fruit behaved badly towards women, the movie doesn't make the same mistake(except for the woman who follows Timothy Spall around); as the manager of the reunion, Juliet Aubrey is quite good and plays a fully rounded character.<br /><br />The other actors are all good as well, with special praise to Stephen Rea, who handles the more dramatic role well without sentimentality. There are a couple of plot points which don't work, but overall this is quite enjoyable. Oh yeah, and the music is good too.\r\n0\tI thought this movie seemed like a case study in how not to make a movie for the most part. Since I am a filmmaker, I give it a 2 for consistency.<br /><br />The problems remain from beginning to end with the plot being extremely predictable using bits and pieces of most, if not all, previous successful war stories. The computer generated graphics were too much like viewing a video game at points and there seemed to be no attempt by the director to add some realistic quality to the story. I was interested in the budget to get an idea of what he had to work with, but did not find that information.<br /><br />It seemed like this project pushed the limits of a low budget movie too far resulting in a production that drags the viewer along with the story without their imagination being engaged. The actors weren't bad, but the plot needs more innovation.\r\n0\tYet another film about a tortured self-centered, arrogant, unfeeling hateful, self-destructive lead character we are supposed to care about.<br /><br />Don't get me wrong I am very open to all kinds of off the wall movies that have as the lead character a strongly self-destructive character. What I object to about this one is that there is so little background to this guy. Why did this guy hate himself and the world? Had the script dealt with this more they might have managed to elicit some sympathy for him. As it is he just comes off as an unpleasant hateful character, not tragic, just hateful.<br /><br />After taking great pains to make this guy as crazy and anti-social as possible and making his fate as dark as possible the writer then has the nerve to make a happy ending....<br /><br />This is not the worst film I have ever seen but it is in there putting up a good fight! Man! Don't waste your time.\r\n1\tReign Over Me (titled after the who song) is a movie that is sure to bring a tear to almost everyone's eye. It was a moving story of a guy (sandler) that lost his family in the 9-11 world trade center attacks. Years later, he runs into an old college roommate (cheadle) that he doesn't even recognize due to the post-dramatic stress ensued by the loss of his family. The two rekindle their old friendship and Cheadle's character, Johnson, realizes that he must get Sandler's character, Fineman, some help before it's too late.<br /><br />This was the first movie that has made me cry in a long time. It's completely worth watching and after seeing it, I'm positive the viewer will appreciate his or her family much more.\r\n0\t\"I first heard of Unisol 2 when I drove past a cinema when I was on holiday in America. I really did not take much notice of it until I bought the original on DVD which led me to find out about its three sequels. I subsequently started to read about The Return on the IMDB and asked friends what they thought of it. Despite their horrific criticisms of it, I still went out of my way to see it and was on the brink of buying it until I saw it for hire on DVD. I wasn't expecting much but thought that it must have been half decent to get a theatrical release in the US, after all, how often is it that you see Van Damme on the big screen? Well, nothing could have prepared me for this. It is so bad I almost cried. What a total waste of 80 minutes and £2.50. It is hard to explain how bad this move is. Honestly. This is idiotic film making. No, it's more than idiotic. I just cannot believe how this got made. I cannot believe that someone out there has not murdered Mic Rogers. How stupid can people possibly be - firstly, Van Damme actually thinking the script and finished film was good. Secondly, the fact that Xander Berkley, of Terminator 2 and Air Force One status, commited himself to this film. I simply cannot believe the stupidity of this movie. It takes itself so seriously but comes across to the audience like a spoof. Here is an example: JCVD's daughter (yes, Luc is now a human again)- \"\"I want my Daddy\"\", SETH- \"\"So do I\"\". Oh yeah, and some guy tries to shut down SETH by pulling three huge levers with - wait for it - ON and OFF written on them. The acting all round is like playschool acting. I'm sure Mr Director modelled Luc's reporter girlfriend on April O'Neil from the cartoon Teenage Mutant Hero Turtles - she refuses to go because she '...needs her story'. I mean come on - how many cliches can a film possibly use? Please listen to me fellow IMDB users - don't touch this with a barge pole. To conclude, Universal Soldier: The Return has no relation whatsoever to the first movie. In fact, if they weren't called UniSols then you would never know it was a sequel. Luc is now a human again - what the hell!?! The only place in which he can access the internet is in a stripclub. All the new Uni Sols look like they were dragged off the street, they are that unconvincing. This is pure torture to watch, so do yourself a favour - don't torture yourself. P.S - Best part of the movie: Romeo jumps off a building and shouts 'Oh sh*t'.\"\r\n1\tThis was the most visually stunning, moving, amazing and incredible story I've ever experienced. Quite frankly, even those adjectives just cannot describe it. I can't just choose one scene that stood out for me. I suppose if I had to list a few it would be the reactions of the fireman to the crashing sound of jumping victims; the reaction of people trapped in the elevator, who were unaware of what was going on, as they finally emerge to the horrific scene; the shock and disbelief of the onlookers; and finally the silence. <br /><br />On that day, and even now, I am reminded of Star Wars (1977). Obi-Wan says, `I felt a great disturbance in the Force, as if millions of voices suddenly cried out in terror and were suddenly silenced.' It is amazing how it is so accurate in its description. There was truly a disturbance in the Force.<br /><br />This documentary vividly reveals this disturbance. The feelings are so incredibly visual. The anger, the frustration, the shock, the fear, the exhaustion, and the realization of its very magnitude. It's all there. Not a thing is missed.<br /><br />This is a powerful and most moving documentary and well deserving of the Emmy. Not just because it documents 9/11 but because it is simply everything it should be. <br /><br />If you plan to watch, be sure to grab a box of tissues. You'll need them. I know that I did.\r\n0\t\"Rip off of \"\"Scream\"\" or especially \"\"I know what you did last summer\"\", there's some entertainment here, and a little scary, but they needed some originality.<br /><br />An entertainment score? 6.5/10 Overall? 5.5/10\"\r\n0\t\"Rural family drama--with perhaps a nod to \"\"Ordinary People\"\"--concerns a young boy who withdraws into himself after fatally wounding his older brother in a shooting mishap. Despite downbeat subject matter (given mercilessly glum treatment by director Christopher Cain), there are some dynamics in this sad story worth exploring. Unfortunately, the isolated farming atmosphere and the reluctance of the adult characters to take charge of the situation render the film a stultifying experience. What with Robert Duvall, Glenn Close, and Wilford Brimley in the cast, the movie is nearly a small-scaled reunion of \"\"The Natural\"\". Too bad this project didn't get the necessary talent behind the camera to really eke out a gripping, memorable picture. *1/2 from ****\"\r\n0\t\"Oh, dear lord.... They've turned what was a fairly thought provoking movie into a swaggering testosterone fest.<br /><br />The original 1971 version of this movie was beautifully vague about our hero Kowalski. He was a man trying to drive from Denver to San Fransisco to win a bet. Why was he willing to risk his life for the price of a handful of uppers? We're not really sure.<br /><br />We had a few flashbacks that gave us the picture that he was an adrenaline junkie, and presumably he had led his entire life trying to make it to the vanishing point. That point you see off in the distance where the left and right shoulders of the road come together, and the road itself vanishes. He lives only to be free, and means no ill on anyone. We saw several times when there were accidents he stopped to make sure the other driver was okay before moving on, even the cops that were chasing him.<br /><br />When he saw the futility of his quest he took his life rather than be arrested and live a life of captivity. He died like he lived, running wide open.<br /><br />In the remake Kowalski has a whole history (including a first name, even.) He's trying to get to the hospital where his wife is suffering from complications to her pregnancy. He is a devoted husband, and excited expectant father. He comes to the decision to take his life after hearing his wife died in delivery, but they even leave THAT in question when they suggest that he may have jumped out of the car before it ran into the bulldozers. They even gave the part of \"\"super soul,\"\" the blind DJ (brilliantly portrayed by Clevon Little in the original) to JASON PRIESTLY?!?!?!?!?!? Give me a break.\"\r\n1\tWhat can I say? I know this movie from start to finish. It's hilarious. It's an strong link to my past and will change the way I view film in the future. Hypothetically speaking :) The down-fall? There's no Socrates Johnson!\r\n1\t\"If you see this movie, you know you will see an extense video-clip of popular music. But you will find more. Incredible FX, great music and a nice time to enjoy with your kids. If you compare this movie, you have to remember is a pop extravaganza. Clips of \"\"Man In The Mirror\"\", \"\"Leave Me Alone\"\", \"\"Smooth Criminal\"\" and Beatles' \"\"Come Together\"\".\"\r\n0\tThat is quite an outdated movie which aims to showcase the youth's yearning for freedom in some dehumanizing British school. Oh yes it's like in the army, you learn to obey and do what you're asked to. Yes the young dream of something else but it breaks their dreams and sweeps away their optimism on the threshold of life. Great.<br /><br />Basically that's how you could sum up the nice intentions in If... Nice intentions that arouses no cinematographic challenges: the result is a declamatory movie. Do you see how boring I mean?<br /><br />At least that oldie helped Kubrick cast McDowell in A Clockwork Orange, a movie with a truly powerful social satire and no self-indulgent sentimentalism.\r\n0\tI attempted watching this movie twice and even then fast forwarding the irritating parts but still could not make it to the end.<br /><br />I don't understand how this movie *genuinely* got any good reviews. I think these people giving such good reviews are just trying to hype the movie for marketing purposes. Their reviews seem very unrealistic and it looks like an inside job, which makes things more pitiful. Movies should get true positive comments on their own steam and not contrived ones!! <br /><br />The acting was reminiscent of a cheesy porno movie, and not in a funny way. I don't mind low budget movies with bad acting if they know how to work with it. <br /><br />I found the lead character to be irritating. His facial expressions and humor was unbearably childish. I thought this was intentional to make the womens conspiracy seem more enjoyable and founded, but they were even worse. <br /><br />The script was also very awkward (his bosses overdone business speech) and the unfunny sarcastic remarks. <br /><br />I did not find anything redeeming about this movie other than some of the attractive women.<br /><br />Never have I felt that a rating was this misleading. I was interested by its premise but scared off by everything else. Of course see it if you want, but I just didn't want anyone else to get their hopes up/waste their time. <br /><br />Maybe it is just me... Probably not.\r\n0\t\"This film had so much promise. I was very excited about this film. In the end, it was laughable at best, painful at worst. The acting styles ran the gamut from really, really, flat (the angels, the wife and daughter) to over-animated (Casper's character). I felt that the dialogue was just an attempt to transfer information to the audience instead of real people trying to talk to each other. Pay special attention to the scene regarding \"\"the bug\"\". It's pretty much an insult to the audience's ability to figure things out. In defense of that scene, though, it got the biggest laugh of the whole movie. I had read that they spent alot of money traveling to various overseas locations. Too bad they didn't make use of it. I didn't feel like I was transported to exotic locations. Anybody could insert stock footage of the Coliseum in Rome. However, to end on a positive note, I thought the sets were pretty good. I really liked the graphics that were displayed on the decoding computers. It is my opinion(and that's all it is) that if the SCHMALTZ factor would have been much much lower and the ACTION factor would have been greatly increased, this film would have been good.\"\r\n0\tMost college students find themselves lost in the bubble of academia, cut off from the communities in which they study and live. Their conversations are held with their fellow students and the college faculty. Steven Greenstreet's documentary is a prime example of a disillusioned college student who judges the entire community based on limited contact with a small number of its members.<br /><br />The documentary focused on a small group of individuals who were portrayed as representing large groups of the population. As is usual, the people who scream the most get the most media attention. Other than its misrepresentation of the community in which the film was set, the documentary was well made. My only dispute is that the feelings and uproar depicted in the film were attributed to the entire community rather than the few individuals who expressed them.<br /><br />Naturally it is important to examine a controversy like this and make people aware of the differences that exist between political viewpoints, but it is ridiculous to implicate an entire community of people in the actions of a few radicals.\r\n1\t\"Aside from a few titles and the new Sherlock Holmes movie, I think I've watched every movie Guy Ritchie has directed. Twice. Needless to say, I'm a big fan and Revolver is one of the highlighted reasons why. This movie is a very different approach from Ritchie, when you look at it comparatively with Lock, Stock... and Snatch. Revolver sets us up for a psychological thriller of sorts as a gambling con finds himself at the mercy of a set of foes he didn't expect and a guided walk for redemption that he didn't know he needed. Along with seeing André Benjamin of OutKast fame strut his acting ability, other standout acts are Ray Liotta playing the maniacal Mr. D/Macha and Mark Strong playing Sorter, the hit-man.<br /><br />After being sent to prison by a tyrannous casino owner, Macha, Jake uses his time in solitary to finesse a plot to humiliate Macha and force his hand in compensating him for the seven years he spent. When he wins a card game and amasses a decent sum from Macha, Jake finds himself on the brink of death as he collapses and is diagnosed with an incurable disease that's left him with three days to live. A team of loan sharks, however, have an answer for him and a ticket to life- only if he gives them all the money he has and relents to working for them, all in a ploy to both take Macha down and show Jake how dangerous he has made himself to himself. Along with having the air of death loom, and a pair of loan sharks having a field day with his money, Jake also has to deal with having a hit put out on him, which introduces Sorter - a hit-man under Macha's employ. The depth with the story comes when Jake realizes that some co- convicts he spent time with in solitary may very-well be the loan shark team out to take him for all he has by crafting all of the unfortunate events that Jake seems to find his way into. When faced with this reality though, Zack (Vincent Pastore) and Avi show Jake just how twisted he has become from being in solitary, having only the company of his mind and his ego then makes it so that their actual existence is elusive even to Jake. The movie unravels to a humbling process for both Jake and Macha as they both come to grips with their inner demons.<br /><br />The style of the movie is top-notch as you get the gritty feel of the crime world represented and the characters it includes. Although a lot of nods at Ritchie's previous films are here it still has a presence of its own from the dialogue, the sets and the experimental take on the gangster genre. It's also a great trip on humility and recognizing when you can easily let your ego or a preset notion mask you ability to accomplish what you want or overcome what you should. The characters are well crafted in this movie with all sides being fleshed out and, true to Ritchie fashion, they're all tied in by some underhandedness that throws a wrench in everyone's affairs. I could and would like to go on about this film and its unique nuances but I don't want to take too much away from it if you haven't seen it yet.<br /><br />It may take a few sittings to get through all the intricate layers but it's a great movie and it should be seen. If you're lucky and you haven't seen the watered-down US release, see if you can get the original UK version as it will make for a great discussion piece among friends as you try to puzzle in your take. I saw it with my crew around early-2006 and we're still talking about it with little things we've picked up on today. It has garnered its cult status, and it's well- deserved as the film where Ritchie stepped out the box and broke his norm a bit.<br /><br />Standout Line: \"\"Fear or revere me, but please, think I'm special. We share an addiction. We're approval junkies.\"\"\"\r\n1\tI caught this movie on my local movie channel, and i rather enjoyed watching the film. It has all the elements of a good teen film, and more - this film, aside from dealing with boys-girls relationships and sex and the like, also deals with the issue of steroid use by young people.<br /><br />The film has that real-life feel to it - no loud music, no special effects and no outrageous scenes - which, for this movie, was right. That feel makes it easy to relate to the characters in the film - some of which we probably know from where we live.<br /><br />Overall, a good movie, fun to watch.<br /><br />8/10\r\n1\t\"Well, maybe not immediately before the Rodney King riots, but even a few months before was timely enough. My parents said that they saw it and the next thing you know, the police got acquitted and LA got burned to the ground. It just goes to show the state of race relations in America. The plot has white Mack (Kevin Kline) and African-American Simon (Danny Glover) becoming friends after Simon saves Mack's life in the black ghetto. Meanwhile, movie producer Davis (Steve Martin in a serious role) thinks that gratuitous violence is really cool...until he gets shot. There's also some existentialism in the movie: Mack and his family come to realize that they aren't living as they really want.<br /><br />It seems that \"\"Crash\"\" has somewhat renewed people's interest in race relations, but this one came out much earlier. Maybe we'll never be able to have stable race relations in this country. But either way, \"\"Grand Canyon\"\" is a great movie. It affirms Kevin Kline as my favorite actor. Also starring Mary McDonnell, Mary-Louise Parker and Alfre Woodard.\"\r\n0\tAmelia and Michael are a married couple that are cheating on each other. Amelia has a long-time lover in the hospital and Michael hires a prostitute that doesn't satisfy him. The two smolder with their infidelity but manage to connect to each other in the end.<br /><br />There's not a whole lot to this particular short. The direction is straight-forward and dramatic, which is good, the acting is sincere, but the story leaves a little bit to be desired. Why, exactly, do we care about these two people? It's a little hard to see how this story sticks out from any other infidelity story except that it's much more pared down and doesn't search for meaning in it (a welcoming change of pace if anything).<br /><br />I don't know, it's possible I don't connect to these stories because I've never experienced them. But I have noticed that the blocking in these narratives are typically the same, i.e., a couple talking together while avoiding eye-contact by pretending to be immersed in magazines, etc. The nice things about short films is that they provide a bit more room for trying something different, and I'd like to see a different take.<br /><br />--PolarisDiB\r\n0\t\"In one word... abysmal. I give it one star for the hippie sex scenes and eye candy women, otherwise forget it. Corman's worst effort, bar none. Ben Vereen should have had his name permanently stricken from the cast. I cannot believe that this is now going to be on DVD (as of 2/15/05) with \"\"Wild In The Streets\"\" - another retro stinker. I woke up sick in bed this morning with a cold, decided to watch a movie to cheer me up some, scanned the digital channels... the premise looked interesting enough because I like viewing B-movie sci-fi, hippie culture and rebellious teen flicks. It seemed familiar somehow and with Ben Vereen in the cast, I thought... why not? What a big mistake... it was a horrible start to my day.<br /><br />Only after viewing it, I now know why the familiarity crept into the recesses of my newly-awakened brain. I remembered seeing coming attractions for this film as a 14-year old (I'm 45), back in the early/mid-seventies at the Sombrero, a local art theater that no longer exists... the whole theater laughed hysterically and even groaned out loud at how bad this movie looked. Acting: dreadful, story: awful, cinematography: nearly-awful, music: terrible, sound: horrendous, directing: a joke. If you choose to watch this after my warning, remember... \"\"I told you so.\"\"<br /><br />\"\"Gass-s-s-s\"\" is the perfect title for this film... you feel \"\"gassed\"\" after viewing this putrid movie - or maybe that you should be taken to a \"\"gas\"\" chamber for wasting your brain away. I have seen homemade Super 8 movies that put this film to shame. Definitely a new addition to my all-time Top Ten WORST films... it's up there (er, down there) with \"\"Tentacles.\"\" <br /><br />Ted in Gilbert, AZ\"\r\n0\tThis is one of the weakest soft porn film around. I can't believe somebody wrote this stupid story before making some changes. The guy Mike is a major wimp and moron I can't believe he didn't want to take a shower with his bride-to-be Toni and be in a threesome with the french photographer Jan. He does do a threesome with Toni and Kristi but that was short I hate that every time in Soft Core Porn Films threesomes between a woman, a man, and a woman is short but a girl-girl thing is about an hour. To the makers of these films have the threesomes alot longer this film should've have two threesome scenes not one but two.\r\n1\tJames Stewart and Margaret Sullavan play co-workers in a Budapest gift shop who don't really like each other, not knowing they're really sweetheart pen pals who have yet to meet.<br /><br />A very charming romantic comedy, very engagingly played by it's two likable stars and a very eager-to-please supporting cast. The story is well written and the film has that romantic innocence (don't quite know how to explain it) that films today just don't have. This can obviously be compared to the recent You've Got Mail, and the original wins in every way.<br /><br />This is mandatory viewing each Christmas, I can't think of a better way to jumpstart a Christmas feel than this little gem.\r\n0\tFrom the What Was She Thinking? file: Whoopi Goldberg plays a cop in the future who is teamed with a talking dinosaur (!) for a crime case involving a madman who wants to start another ice-age. Straight-to-tape oddity is embarrassing and ridiculous, a high-concept in search of itself. Apparently this was a labor of love for its writer-director, Jonathan Betuel (who also served as one of the producers); sadly, the end results are anemic, to be charitable. Goldberg's mere presence on-screen can often spark good will and laughter no matter how poor the script, but here she's drowning and you can see the unfunny results. NO STARS from ****\r\n1\tA very strong movie. Bruce is good and Brad also.<br /><br />As I think there are two cities missed in the receptionist list from the list Bruce remembered.<br /><br />That means the woman was a real insurance and she did her job.<br /><br />Well, Novikov property seems to me work in this movie. However, I do believe in Back to the future theory of worlds' multiplicity.<br /><br />So Bruce could save the world, but not his world.<br /><br />In the theory of parallel worlds the man can meet himself.<br /><br />And I do believe there is no problem in that. Here I disagree with Dr. Brown from Back...<br /><br />But the story pf 12 Monkeys has its own beauty. Inspite of all these theories of one world or many or continuum one can believe that he is really insane and the doctor - his girlfriend was just lost.<br /><br />A sequence of events which may lead her to believe that he is from the future. The bullet - well it might be some mistake, some falsification.<br /><br />Well I like this movie - has to buy a DVD.<br /><br />Best.\r\n0\tOk first of all, this movie sucks. But lets examine why. The proposition that a machine is capable of transforming matter into energy, storing it, and then transporting it and reasembling it is at the least intriguing. But that's as far as they take this premise. Instead of delving into what could happen if someone made this kind of machine, they break the damn thing. This could have been a good premise. Living with the responsibilty of this kind of power, and dealing with the constant temptation, ie.. the invisible man. But no.. they break the damn thing. And Lembach wants to leave. So then the doctor jerry-rigs the thing back together, and trys to transport himself. Only to have it goofed up by his beautiful but dumb secretary, (duh). Which wouldn't happened if Lembach hadn't decided to leave. So now he is roaming the country side killing people because his little experiment failed, and they wouldn't give him money. Wah. Then to make the movie worse, throw in a dry British relationship between the two semi-competent professors hired to assist him. Between their loving sessions, they make a couple of half-hearted attempts to find him while he kills off half of London. All of this could have been headed off by not breaking the damn machine, which would never have happened if Lembach hadn't left. This movie tried so I give it an honest 2 stars for effort, but it would have been better if they hadn't broke the damn machine, making Lembach leave, making him try it again. Damn you Lembach!!!!!!!!!!!!!!!!\r\n0\ti can't say i liked this movie very much.it has some amusing moments,but it doesn't seem able to make up its mind whether it is a comedy or a drama.it doesn't really work as either.it's too light in tone to be a drama,and the amusing moments are few and far between.it also doesn't make a lot of sense.things seem to happen for no reason.and it's also extremely convoluted.i feel like they just made things up as they were going.if they had just taken a bit of time to explain things,this might have been a better movie.i would say the ending was anti climatic, but that would mean the rest of the movie had actually been building up to something,which it didn't.it just sorts ends,and that's that.i didn't find it boring,really,but like i said,there there just isn't any point.i'll give Winter Kills a reluctant and weak 3/10\r\n1\tWalter Matthau and George Burns just work so well together. The acidity of Willy with the perplexed amnesic Al is a mixture made in heaven. The scene when they meet again in Willy's flat is a gem and the final scene rounds up the film to perfection. Walter Matthau gives a superb performance as the irascible semi-retired comedian as only he can, the intonation in the voice and the exaggerated dramatics coupled with his general misunderstanding of what is going on form a great characterization. George Burns timing is legendary and nowhere was it better than in this film, his calm aplomb with desert dry replies are memorable. Watch for the scene near the end when Al and his daughter ask something of the Spanish caretaker, and Al's reaction - priceless.\r\n1\t\"Masayuki Suo, who directed this fine film, is on a role. After the decent \"\"Fancy Dance\"\" and the classic (in Japan, anyway) college-sumo comedy \"\"Shiko Funjatta\"\", Suo has followed his own huge footsteps with a smashing success.<br /><br />The story is engaging. We both laugh often (Naoto Takenaka is hilarious, as he is in Suo's two previous films) and really root for the characters. But to me the big bonus is the look this movie gives the viewer into Japanese society - real life in Japan. Suo has a knack for showing real-life activities with entertaining flair. The result is a movie that will pull you in, make you laugh, make you think, and both entertain you and give you insight into today's Japan.<br /><br />Also look for the the main 8 actors from Shiko Funjatta, as they all appear again in various roles, from supporting characters (Takenaka) to short cameos (many).\"\r\n0\t\"I rented this DVD for two reasons. A cast of great actors, and the director, even though Robert Altman can be hit or miss. In this case, it was a big miss. Altman's attempt at creating suspense fell on its keester. After seeing Kenneth Branagh in a good film like \"\"Dead Again\"\", I didn't think he could possibly contribute to such a turkey, and I hope it didn't ruin his reputation. Robert Duvall seems to have fallen the way of most one-time Oscar winners. On a downward spiral that includes acting in eating-money films such as this one. Duvall was once a great actor in excellent films, even though his best performance was not \"\"Tender Mercies\"\", but \"\"The Great Santini\"\". This movie was truly a big waste of time. I give it a 2 out of 10.\"\r\n0\tI have only recently been able to catch up with the films of Marilyn Miller since they are not shown on TCM in the UK.I have been much intrigued over the years because this was one of the superstars of the 20s.What was she really like.To some stars of this era like Jolson some of the magic still shines through,but alas not for Miller.Her dancing seems awkward and poorly choreographed,her singing somewhat limited and as an actress she makes Ruby Keeler seem like Hepburn.Even worse in this film as the public had grown tired of musicals virtually all of the musical numbers have been deleted.So we are left with a comedy of that period with little real appeal.She was being paid $500000 for this!So i have only two conclusion.Either she was poorly served by the cinema or she had no talent at all.I think that the truth is nearer the later than the former.\r\n1\t\"I saw this movie when I was a little girl. And I have enjoyed it every time. Sure the graphics are a little cheesy, compared to now, but back in the 70's it was great. I saw it in the original Spanish version only and thought it was wonderful. That was how I remember my Christmases were with my family - magical. Santa Claus was amazing and I couldn't wait for him to come back each year.<br /><br />If you have a child/children and speak Spanish, bring them up watching this old fashioned version of \"\"Santa Claus\"\". It's a different version than we are used to today, but who says there is one way?<br /><br />It's a fun movie to watch. It teaches children good vs. bad. I don't know how the English subtitled version is or if there is an English one of this, but the Spanish is the best. Enjoy and Happy Holidays! Feliz Navidad!\"\r\n0\t\"For starters and for the record, the term \"\"Necromancy\"\" describes the black magic art of bringing the dead back to life and it does NOT, in any way, relate to having sex with cadavers. That is called necrophilia and, yes, I know it's an obvious difference but I'm already getting a lot of remarks from acquaintances and relatives that I sport a perverted taste in movies! This movie is quite the opposite of perverted or sleazy, in fact, and merely just qualifies as boring, inept and terribly bad. \"\"Necromancy\"\" makes at least one top five ranking, namely in the list of most incoherent movies ever made! Now, director Bert I. Gordon is not exactly famous for delivering masterpieces (on his repertoire there are titles like \"\"Earth vs. the Spider\"\", \"\"King Dinosaur\"\" and \"\"Food of the Gods\"\") but he really surpassed himself here with a totally senseless, redundant and utterly nonsensical tale about witchcraft and secretive little towns. Shortly after the tragic experience of seeing their baby being born dead, Lori and her husband Frank move to the quiet little town of Lillith, where Frank suddenly got offered a prominent job in a toy factory. Lori is suspicious and senses an atmosphere of morbidity, especially with the town's patriarch and \"\"owner\"\" Mr. Cato behaving very obtrusive and mysterious. That's another thing. How can anybody \"\"own\"\" a town and everybody in it? Either way, Lori gradually discovers that everybody in Lillith is a witch and Mr. Cato exclusively lured her to the town because of her supernatural ability to resurrect the dead. Since many years already, Cato has been trying to bring his deceased son back to life and he's prepared to make any human sacrifice it takes. I honestly don't see the point of the whole movie. It's a blatant rip-off of \"\"Rosemary's Baby\"\"  one of the alternate titles even is \"\"Rosemary's Disciples\"\"  but the script is muddled and imbecilic beyond belief. Why isn't anyone allowed to have children for as long as Cato's son remains dead? That's just really selfish! When, where and how did Lori suddenly learn to resurrect the dead? \"\"Necromancy\"\" definitely contains a few genuinely uncanny and atmospheric moments, but these are unwarily accomplished either by complete coincidence or through a total lack of budget. The grainy photography provides the film with an eerie ambiance and the set pieces look cheap enough to be creepy. Orson Welles' performance  undoubtedly the low point of his career  is pitiable, and still it's the best aspect about the entire movie.\"\r\n1\tWhen it comes down to fairy tales, Cinderella was the one that made you cry the most. poor Cinderella is a girl who had her whole life stolen by 2 evil and ugly stepsisters and a slave-driving step-mother. and thanks to Mr. Walt Disney, We got to witness Cinderella in animation.<br /><br />Before the story begins, Cinderella and her father are lonely, and rich beyond their needs. to share his wealth and to give his daughter some sisters, Cinderella's Dad marries a woman, but then dies soon after. the stepmother, only seeing dollar signs in her eyes and slavery in her gorgeous step-daughter, Cinderella.<br /><br />So for many days, Cinderella is a slave to her step-mother and her step-sisters. she has hope however, thanks to her friends, the mice of the home (sounds like Cinderella wasn't playing with a full deck.) she has hope that one day she'll find her prince. the chance eventually comes when the prince of the kingdom needs a girlfriend.<br /><br />9/10\r\n0\tI figured the whole joke of the movie would be to see some rich white guy acting like Chris Rock, and then see Chris Rock react to people's reactions. Instead you just see Chris Rock being himself and people not understanding him. There are maybe 2 scenes in the entire movie where they use their gimmick. This should have been a lot better.\r\n1\t\"If there were two more charming performers than Peter Ustinov and Maggie Smith appearing together in a more charming movie in 1968, I don't know who they were. I first saw this delightful little satiric gem 25 years ago at the age of 16, and I consider any year in which I have failed to sit down to watch it again a wasted one. It's intelligent, quirky, neat, wistful, sweet, gently subversive, and utterly enchanting. The romance of these two social misfits is both richly comic and terribly moving - never more so than in Maggie Smith's desperate attempt to bring up the right card in the deck, a scene that's both ruefully funny and a perfect thumbnail portrait of heartbreaking loneliness. And that final freeze-frame on the anxious, concerned, loving face of Ustinov as he asks, \"\"Are you all right?\"\" - has anyone ever made the look and sound of devotion so perfectly and nakedly honest? I would never want to know anyone well who didn't love this movie.\"\r\n1\tI remember this show from Swedish television. I was only 7 years of age and it scared me beyond belief.<br /><br />I would love to revisit this series and see if it was just as excellent as remember though i suspect my taste and demands have changed.<br /><br />Although this was released before alien and a plethora of other space-thrillers i suspect that it has its root in scary movies from the 50:s and the political climate of the 70:s. When i think of it, this was a real sci-fi, a movie trying to discuss scientific and political questions about who we are and what we are. The term sci-fi has since then become bleak and come to be the term for any movie that has space-ships in them.\r\n1\tSteve Carell has made a career out of portraying the slightly odd straight guy, first on 'The Daily Show', and then in various supporting roles. In Virgin, Carell has found a clever and hilarious script that perfectly capitalizes on his strengths. Carell plays Andy Stitzer, a middle aged man living a quiet, lonely life. Andy is a little odd, but in an awkward nice guy sort of way. One night, while socializing with his co-workers for the first time, Andy accidentally reveals that he is a virgin. His co-workers, David (Paul Rudd), Jay (Romany Malco), and Cal (Seth Rogen) initially tease Andy about his situation. But it's clear that all three have a certain respect for the decent human being that Andy is, and they resolve to help him out by assisting him in ending his virginity. And so begins Andy's quest into adulthood. Andy is the quintessential innocent, and the bulk of the humor derives from his naiveté to the situations he finds himself in throughout the film. Some of the humor is crude gross out stuff, but most of it is just well done intelligent comedy. In addition, I found some parts of the film actually pretty touching as Andy finds himself developing both romantic relationships and friendships perhaps for the first time in his life. I'm not trying to portray the movie as a love story or a drama; it's a rolling in your seats comedy. Still, every good comedy I have ever seen contains enough heart for you to care about the characters. A good comparison would be 'The Wedding Crashers' from earlier this summer. Virgin has a similar humor, but is perhaps a bit more vulgar in some of its jokes. I particularly loved the ending of the film, which I thought was a perfect way to end the flick. Without giving anything away, it reminded me of 'Something About Mary'. Very light and fun; it leaves you laughing and smiling, which is exactly how you should feel when you finish a comedy. I would highly recommend.\r\n0\t\"The word \"\"1st\"\" in the title has more ominous meaning for the viewers of this film than for its crime victims. At least they don't have to stick around and watch this interminable film reach its own demise.<br /><br />1st should refer to: 1st draft of a script; 1st takes used in each performance in the final film; 1st edit in post production; etcetera, etcetera.<br /><br />The movie is not cast too badly, it's just that everything about the film come off as worse than third rate, from the goofy script, to the wooden performances. And while suffering through this cobbled together film, by the 2 hour mark you want to be put out of your misery. At 160 minutes long it is readily apparent that it should have been edited to under 2 hours.<br /><br />Going into details concerning the lame script and acting serves little purposes. Even in the equally awful, Lake Placid, at least the performances Bill Pullman and Bridget Fonda constructed out of an extremely weak script, were nuanced enough to make you laugh at the movie. In 1st to Die, one ends up grieving only for the time lost in waiting to see what happens after the opening scene of the preparation of the female lead's suicide.<br /><br />The editing is so bad one is never introduced to one of the main characters, who I think (were never quite told) is a D.A. She just appears in one scene in the middle of a conversation. Obviously the scene where she is introduced to the viewer was dropped on the editor's floor. And no one realized that a character appearing out of nowhere was an unusual film ploy.<br /><br />In a word, don't waste your time with this one. My wife and I wish we didn't. But at least we created our own diversions by commenting in various places in the film like it was Mystery Science Theater. \"\"Meanwhile, in Cleveland . . . .\"\" !!!!\"\r\n1\t<br /><br />The first thing I have to say is that I own Jake Speed. I've seen it at least 10 times. This movie is one of the most fun movies ever made. The film begins with Margaret (Karen Kopins) trying to find her sister. Her sister was kidnapped in Paris and the family has heard nothing. Along comes Jake Speed (Wayne Crawford), telling her exactly where her sister is and making an offer to find her. Jake Speed is a hero. He doesn't work for money because he just wants to help and have a good adventure. His partner (Dennis Christopher) follows him around and writes their adventures into novels. This film is a great adventure. It's hilarious, it's action-packed, it's just great. I guess it's a cult film with a very small cult following. Crawford is perfect as Jake Speed and throws out some one-liners that you'll never forget. Kopins and Christopher are also good as the girl and the sidekick, respectively. John Hurt, the guy who's stomach blew up in Alien, plays the devilish, pervertish villian which just adds to the fun. In many ways, this film is similar to Indiana Jones, in some ways it's similar to James Bond films. Maybe it should have been called Indiana Bond but whatever it's title is, it's a very enjoyable film.\r\n0\t\"Wow...I can't believe just how bad ZOMBIE DOOM (aka VIOLENT SH!T 3) really is. I'd heard the rumors, read the reviews - but had to make my mind up for myself. Well, let me tell ya - IT BLOWS!!! The worst acting of any film ever made, dubbing that must have been done while everyone involved was completely wasted, inept and laughable gore FX, no discernible plot, \"\"cinematography\"\" that looks like my grandma filmed it with her camcorder, weapons props that are no joke - made out of tin-foil - the list goes on and on...<br /><br />Three guys get stranded on an island where a bunch of weirdos run around with plastic and tin-foil swords. Two of the captives are freed along with a rebel of the island freaks, and are given a day's head start before they are hunted down by the rest of the \"\"tribe\"\"...that's pretty much it...<br /><br />Honestly - this is one of THE WORST films I've ever had the misfortune to subject myself too. The budget had to be about $200 and was spent entirely on the gore FX (which actually may not have been a bad idea...). There is NOTHING to ZOMBIE DOOM other than strung-together ridiculous looking gore scenes with lots of HORRIBLY dubbed dialog. This film makes other no-budget outings like PREMUTOS: LORD OF THE LIVING DEAD look like TITANIC. Some may rank ZD in the \"\"so-bad-it's-good\"\" category - and I guess if you're REALLY drunk or high and watching it with a few friends MST3K-style - I guess it could be looked at that way. But not by me. I hated pretty much everything about it. If ZOMBIE DOOM or ZOMBIE 90 (which is equally appalling and is included as a \"\"bonus\"\" on the Shock-O-Rama release of ZD) is indicative of Andreas Schnaas' other works - then he should be banned from ever having anything to do with making a film ever again under penalty of death. There is one amusing kung-fu battle in the latter half of the film, and a lot of blood - so I'll grant this one a VERY generous 3/10 - Do yourself a favor and skip this.\"\r\n0\t\"I rated Basic instinct 2 high, yet that movie got less than a 4 rating. This film only got a 4 from me, but it has 7.3 from over 600 people. I don't see a reason why they like this film so much.<br /><br />This film is boring, because it hardly ever leaves those rooms in that broken big house. And it only has a total of 5 people in this film. It is almost two hours long which is totally unnecessary. Many of dialogues are slow and meaningless. The film tone is also dark blue which is depressing to watch. The film can just be shorten to a few sentences.<br /><br />This film reminds me of \"\"Three times\"\" directed by Hou Hsiao hsien, that one is equally boring, the dialogues are also equally boring. It also has a high rating! I had to stop watching that one after the first story finished.<br /><br />This film lacks of passion or excitement.\"\r\n1\tThis adaptation of M.R. James's short story 'A View From A Hill' was first shown on British television in 2005, on the little watched digital channel BBC 4. I saw that it was being repeated again on BBC 4, and decided to give it a go, remembering the BBC's successful 1970's adaptations of other M.R. James stories including 'Whistle And I'll Come To You My Lad' and 'The Signalman'. Though not in the same class as these masterpieces, 'A View From A Hill' is nonetheless an enjoyable and at times suspenseful drama.<br /><br />A historian arrives in a small rural village to look over the collection of a recently deceased collector of antique artifacts. Whilst out in the countryside, he sees an abbey that has been in ruins for hundreds of years. But what does this have in connection with an old pair of binoculars and a gruesome legend about the ominously named Gallows Hill? And what do the brusque country squire and his servant know about the situation? Whilst not scary in any way, I enjoyed this little production, and had the running time been longer than 40 minutes it could have become a truly great adaptation. As it is, it all feels a little rushed and a bit more exposition to set the mood would have been welcome.<br /><br />I give it 7 out of 10.\r\n0\tThe only redeeming quality of this overlong miscast melodrama is the scenery of southern France and the voice of Nana Mascouri singing the theme song. Stephanie Powers is miscast and betrayed by a phony accent. As has been pointed out, she is too old to play an 18 year old and looks far too young as a grandmother with a college age granddaughter? Lee Remick is good although she also is ageless in her later years. The talented Joanna Lumley is under utilized and also manages to look forever young when her middle aged son (Robert Urich) finally marries Grandma Stephanie Powers. Stacey Keach's ceaseless arrogance makes you wonder what these women saw in him. Don't know how any viewer could relate to his excessive portrayal? The most credible performance is given by Ian Richardson, who makes the rest of the cast look like rank amateurs. It strains credulity that the handsome male suitors in this epic would remain ever single while they patiently await the subject of their affections to finally consent to accept them. Can anybody believe that handsome Robert Urich would remain single for decades waiting for Stephanie Powers to finally accept his endless marriage proposals? The WW2 engagement between the Wehrmacht and the Marquis is laughable. To begin with, the Germans did not occupy the Provence section of France until late in the war, it was controlled by the Vichy French puppet government. We see the French resistance staging a daylight raid on Mistral's villa to steal sheets after which they all lounge under a bridge waiting for a lumbering truckload of Nazi troops to surprise and annihilate them? If you want to see a well acted mini-series set in a foreign country, don't watch Mistral's Daughter. A far better alternative would be The Thorn Birds.\r\n0\tI'm no horror movie buff, but my wife's nieces and nephews are. So, I saw the first movie. It was gruesome, and tense, but not my taste. Still good though. For similar reasons, at this very moment, I am being exposed to a sequel.<br /><br />The premise itself is beyond absurd. I can buy that disasters occur in the desert. I can buy that mutants exists. I can even buy that the events might be so weird and strange that the military may decide to get involved. It is unlikely, yes, but I'm willing to suspend my belief.<br /><br />HOWEVER, under no circumstances am I willing to believe that the military squad assigned to recon such an area would be unable to fend off the mutants. Being a member of the United States Army, I can assure that while fresh recruits may lack the seasoned eyes and experience of combat soldiers, any such recruits would be integrated into a capable squad.<br /><br />A squad of armed soldiers is not about to be taken out by a few mutants with knives. That's just the way it works. Squad movements, vastly superior firepower, and of course, radio support, would ensure nothing less than total victory. I'm not saying you wouldn't have casualties, but as soon as the area was verified as hostile, military training would take precedence, no-one would go off on their own even to use the bathroom.<br /><br />And if it were discovered that the area was so infested with hostiles that the squad was unable to handle the danger, they would radio in for backup. And believe me, their radios would not be jammed, if there was a chance that normal radios would not do, the squad would have a military issue satellite phone. Chances are, if they were unable to check in every hour, a search would be called.<br /><br />In order to accept this movie, you must accept that our soldiers are incompetent fools, with incompetent leaders, and an incompetent chain of command. While it may still be true that the most dangerous thing in the world is a lieutenant with a map and compass, our military forces are filled with intelligent, well-trained, competent soldiers. Mutants with knives are far below our ability to deal with.<br /><br />With the whole execution of the movie depending solidly on the impossible to imagine, the film fails to deliver. Instead, we are expected to believe that our soldiers, sailors, and airmen are incapable of dealing with even the most mediocre threats.<br /><br />As a combat veteran, I find the movie insulting.\r\n0\t\"Final Score: 1.8 (out of 10)<br /><br />After seeing 'Jay and Silent Bob Strike Back' I must have been on a big Eliza Dushku kick when I rented this movie. 'Soul Survivors' is a junk \"\"psychological thriller\"\" dressed up like a trashy teen slasher flick - even to the point of having a masked killer stalk a cast of young up-and-comers like Dushku, Wes Bentley (American Beauty), Casey Affleck (Drowning Mona) and likable star Melissa Sagemiller. Luke Wilson is also in there, ridiculously miscast as a priest. The movie, the brainchild of writer/director Stephen Carpenter, seems like a mutant offspring of 'Open Your Eyes' or 'Vanilla Sky' and movies where a character (and the audience) is caught in a world of dillusion caused by an accident/death. The movie keeps churning out perplexing images and leaves us in a state of confusion the entire running time until this alternate reality is finally resolved. I don't think these movies are that entertaining- by their very nature- to begin with, but 'SS' is rock-bottom cheap trash cinema any way you slice it. The visuals, the script, the acting and the attempt at any originality all are throwaway afterthoughts to movies like this. Plus, it's PG-13 so it doesn't even deliver the gore or T&A to sustain it as a guilty pleasure (even the unrated version is tame). I had heard that the movie contained some \"\"hot\"\" shower scene between Dushku & Sagemiller. As the movie fell apart in front of me and all other entertainment seemed to be lost I found myself waiting patiently for the shower scene - at least I would get something out of this. Then it comes: the two girls get paint on their shirts, they jump in the shower fully clothed and scrub it off. That's it. People thought this was hot? 'Soul Survivors' is one of those drop-dead boring movies that is so weak and inept that it is hard to have ANY feelings at all toward it. It puts out nothing and is hardly worth writing about. In the end it leaves us empty. Carpenter's finale is a mess of flashing light and pounding sound and that's probably the most lively part. It will no doubt be making the rounds as a late night staple on USA or the Sci-Fi Channel, due to it's low cost and PG-13 rating - and that's probably best for it.\"\r\n1\t\"Jim Carrey is good as usual, and even though there are quite a few \"\"Jim Carrey moments\"\", it's definitely not a \"\"Jim Carrey movie\"\".<br /><br />It's targeted mostly at children, and I managed to enjoy it as such movie. It was promoted in Israel as another Jim Carrey movie, so those who expected a weird over the top comedy were disappointed.<br /><br />The movie has nice moments and works well as a movie for kids. I can't say I LOVED this movie, but then again I'm not its target audience!\"\r\n0\t\"Had the original casting idea been kept (hunting Rutger, not Ice-T), this movie might have worked. Sadly, racism had to come into the picture (literally) and mess it up. The predominantly black production staff couldn't allow the antagonist be black, so they swapped Rutger's and Ice-T's roles. This was only the start of the downward spiral of this film. Ernest Dickerson's news-room approach to 'directing' only verified that this was another affirmative-action job assignment. Master shot, close up, close up. Gads, 'Who's Line Is It Anyway' even uses more creative camera work. Eric's rewrite of 'The Most Dangerous Game' is at least an attempt at modernizing the classic tale, but fails to give us any motivations for why the characters are doing this. We are never given the reasons, other than \"\"no one will miss these people\"\", why the leader (re-written as Rutger) does these things. Aside from a heart-felt performance by John McGinley, and a fair job by Charles Dutton, do not bother with this one. One small bit of trivia, there was a real drunk-driving accident during filming that injured F.Murray Abraham, and resulted in the death of the intoxicated young driver that caused the accident.\"\r\n0\tI first saw this when I was around 7. I remembered what I believed to be a vague outline of what took place. Turns out now, 15 years later, that I remembered everything with great accuracy because it seems the writers never got beyond making an outline to the story. There is no plot to this movie/cartoon. There is no character development, no back story, no character arcs, nothing. The good guys do things because they are good, while the bad guys do things solely because they are bad. One unintentionally hilarious part is when someone who you would think to be important dies and nobody cares in the least. They just shrug their shoulders and move on. There's barely any dialogue either. If you cut out the fight scenes and the running scenes, you lose 70% of the movie.<br /><br />Watch this because you want to see some good animation and for no other reason. Or if you like to look at scantily clad hot cartoon chicks (or scantily clad hot cartoon dudes).\r\n0\t\"A fabulous book about a fox and his family who does what foxs do. that being stealing from farms and killing prey. until a trio of farmers decide they've had enough of this fox and try in various ways to have the problem \"\"solved\"\". They are of course \"\"out foxed\"\" at every turn and while the trio are camped out at the fox hole the family perform raids against the three farmers land.<br /><br />The\"\"film\"\" version ,and I use the term film very loosely, is more of a god awful pastiche of American heist movies particularly the Oceans movies. They they even have George clooney as Mr fox to to add to the insult and manage to miss the point of the story quite completely. So kudos to them .They'll make lots of money and destroy another classic Roald Dahl children book.\"\r\n0\tI wanted to like this film, yes its a SAW, blah blah blah ripoff but I like those films. If done well this had all the ingredients of being a good, not brilliant, but good film....unfortunately those ingredients had gone off! The acting was terrible, and this was first seen when the captives are introduced with their captor one by one (hoods taken off), the remarks and one liners are just terrible, yes I know, bad writing....but this is more than that, it was bad writing coupled with bad acting. Two of the captives had been in a relationship with each other and did not even acknowledge this until a lot further into the film.....<br /><br />Sorry, Im even wondering why I am bothering to review this movie at all.<br /><br />I will end with PLOT HOLES, PLOT HOLES & MORE PLOT HOLES! DISAPPOINTING!\r\n1\t\"Loved it! What's not to like?--you got your suburbia, you got your zombies, you got your family issues, you got your social dilemmas, you got yourself one Fine Retro-1950's-style Flesh Eating Under Class Held At Bay By An Uneasy Worried About Whether They're The Next Meal Upper Crust. You couldn't ask for more.<br /><br />Cast is superb. Carrie Ann Moss is absolute perfection as a debutante social climbing housewife. She's both wanton, and criminally conspiratorial. Every fellow's dream. K'sun is really great as the son just trying to be as normal as possible in this nightmare existence, and somehow succeeding. He's a genuine screen presence. Very photogenic, and natural. Without naming them all, the rest of the cast is wonderful. Henry Czerny plays a suspicious policeman with honed instincts and little squeamishness as if it's his everyday persona. Billy Connolly is delightful as Fido. A fine actor: I wish that he had played the title role in \"\"Braveheart,\"\" with Gibson directing. My sense is that his William Wallace would have been closer to the actual character. His Fido is contained, yet accessible. A nice touch.<br /><br />In short, a great and marvelous satiric poke at morals, values, social pinnings, feelings, growth, coping in uncertain times, and compensatory adjustments to impossible conditions. A true reality show.\"\r\n1\tI saw this film again and noticed how close it is to the novel if we ignore the part about Cary's [Leslie Howard] childhood. Considering that<br /><br />at the time not much can be shown on the screen, [not that there is much in the novel] the obsession of the character with Mildred [Bette Davis] is very well conveyed to the audience. I recommend this film to anyone who ever fell for another person and the other side tried to take advantage of him or her. I have read that Maugham was asked to make a recording of the novel for sale, but when he started to in the studio he began crying and could not finish more than a few lines and whole project was chucked. One can tell the novel is written from the heart and the film is a good<br /><br />adaptation of a part of it at least.\r\n0\tIf this is supposed to be the black experience, let me out at either the front or back door.<br /><br />A mama's boy one day sees 2 young hoods walk by and from then on it's all down hill for him. Angela Bassett, the one shining grace in this film, plays his over protective, religious mother. Despite her anger at how his life has turned, by the middle of the picture, she really decides to accept this. She allows his friends to come in and suddenly it's all right to use the profanity as long as it's not in front of the children.<br /><br />This is a sad state of affairs regarding gangster rap. You knew where this film was heading.<br /><br />I literally laughed out loud when at the end, when Bassett is accompanying her son's body for burial, she states that while his life had been cut short at age 24, he had become a man. What man? He had been a convicted criminal, wrote the most atrocious rap music with constant vulgarity,and scorned society. That scene in the classroom where he tells a teacher that as a sanitation worker, he will earn more than the teacher is a perfect example of what goes on in our schools. The complete and utter lack of respect for the teacher.<br /><br />The east coast, west coast gang rap rivalry is never fully explained. All we see are guns blazing.<br /><br />A terrible picture doing nothing to prevent gang violence. What horrible role models are these rap singers and their foul music. The African American community should take umbrage at their very being. Who was this classless fat slob who portrayed Biggie? He made Rerun from the old television show look thin by comparison. I know it was the streets of Bedford Stuyvesant that changed this chubby little boy into the vulgar monster that he was. What a sorry state of affairs when this is called motion picture entertainment.\r\n1\t\"Even if you're not a big Ramones fan, Rock 'N' Roll High School is *still* the greatest rock 'n' roll movie ever made. Why? Because under all the campiness, it treats with respect the contempt and loathing teens often feel (and justifiably so) for the boring, stupid, fascist, establishment world of adults. That final scene is one of the most glorious and uplifting final scenes to a movie I have ever seen. \"\"Mine eyes have seen the glory of the...\"\" Rock 'n' roll!<br /><br />\"\r\n1\t\"One of my favorite shows back in the '70s. As I recall it went to air on Friday (or possibly Saturday)night on the Nine Network (?) here in Australia. Darren McGavin and Simon Oakland were great together.<br /><br />Each episode usually reached a climax with Kolchack having to engage in hand to hand combat with some sort of supernatural opponent. To their credit, the writers made a concerted effort to get away from the usual round of vampires and ghosts as much as possible.<br /><br />I remember one episode in which the adversary was the spirit of an ancient Indian Chief which/who 'came back' as a massive electrical current which started to kill people in a city hospital. The final showdown saw Kolchack trying to short circuit the 'power beast' amidst an explosion of sparks and billowing flames. Oh well .... you had to be there at the time but it was an interesting idea.<br /><br />McGavin always packed a lot of energy and enthusiasm into his roles and this was one of his best.<br /><br />Definitely deserves a place in TV's \"\"Hall of Fame\"\". To quote Tony Vincenzo .... 'Kolchack you are ON IT '... Or, in the case of the Hall of Fame,'IN it' !\"\r\n0\tI'm surprised about the many female voters who even give this film better marks. My thought about this film was that the target audience is adult and male. Whipped and tortured women, merciless revenge and a high body count are typical ingredients, introduced into film history by the spaghetti subgenre. The opening and the hand-smashing are DJANGO rip-offs. THE SHOOTER however lacks the style of e.g. DJANGO. Score, acting and cinematography are mediocre at best but if you look for the above mentioned ingredients you are in the right place here. And the actors don't have an Italian accent.<br /><br />4 / 10.\r\n1\tThis is the second part of 'The Animatrix', a collection of animated short movies that tell us a little more about the world of 'The Matrix'.<br /><br />In this one we learn how men and machines could not work and live together. It is a little history lesson in the world of 'The Matrix'. Not as good as the first part ('The Final Flight of the Osiris') but still pretty entertaining.\r\n1\t\"From rainy, dreary late winter England of early 1920s...<br /><br />---where there is still sadness and many young widows and disabled vets from the great slaughter of men and killer of their womens' dreams--- known now as World War I...<br /><br />Four women share this lovely small sunny Italian castle on a hill; one a young widow who is drowning her sorrow in frantic partying, two women who will rediscover their own husbands, and a fourth woman who is tired of her famous dead friends...<br /><br />...These four women will come together with two husbands and a former soldier - almost blind - to get a spiritual \"\"makeover\"\" for one great April vacation in early 1920's Italy.<br /><br />NOTE to would-be filmmakers. Study this film for how mood and beauty can tell a story. (Probably not a film to please many men...)<br /><br />NOTE: Stock up on coffee & hot chocolate and invite the girls over on some dreary late winter day...Spring is coming...Enchanted April promises you!\"\r\n0\tReally bad movie, the story is too simple and predictable and poor acting as a complement.<br /><br />This vampire's hunter story is the worst that i have seen so far, Derek Bliss (Jon Bon Jovi), travels to Mexico in search for some blood suckers!, he use some interesting weapons (but nothing compared to Blade), and is part of some Van Helsig vampire's hunters net?, OK, but he work alone. He's assigned to the pursuit of a powerful vampire queen that is searching some black crucifix to perform a ritual which will enable her to be invulnerable to sunlight (is almost a sequel of Vampires (1998) directed by John Carpenter and starred by James Woods), Derek start his quest in the search of the queen with some new friends: Sancho (Diego Luna, really bad acting also) a teenager without experience, Father Rodrigo (Cristian De la Fuente) a catholic priest, Zoey (Natasha Wagner) a particular vampire and Ray Collins (Darius McCrary) another expert vampire hunter. So obviously in this adventure he isn't alone.<br /><br />You can start feeling how this movie would be just looking at his lead actor (Jon Bon Jovi); is a huge difference in the acting quality compared to James Woods, and then, if you watch the film (i don't recommend this part), you will get involved in one of the more simplest stories, totally predictable, with terrible acting performances, really bad special effects and incoherent events!.<br /><br />I deeply recommend not to see this film!, rent another movie, see another channel, go out with your friends, etc.<br /><br />3/10\r\n0\t\"So don't even think about renting this from the shops, because this is one hell of a bad movie. You'd think that JJ Abrahams had written this movie. Basically, a rat is flushed down the toilet and somehow has to get back out. Fans of the completely terrible \"\"Shrek\"\" might enjoy, but \"\"Wallace & Gromit\"\" fans will probably turn away in disgust. Also, why didn't they do it in plasticine or clay? I mean, CGI animation?? For an AARDMAN movie??!! Obviously, Aardman lazed around while they let Dreamworks do the whole thing. Wrong, wrong, WRONG!!! Nearly every single character is awful, apart from that freaky frog guy, who is just right for a movie villain. But everything else about the movie is DULL, DULL, DULL!!! I almost fell asleep with boredom watching this movie. No, wait, actually, I DID fall asleep with boredom watching this movie. It's just terrible. But thankfully, it's not as bad as \"\"Shrek.\"\"\"\r\n1\t\"Lorna Green(Janine Reynaud)is a performance artist for wealthy intellectuals at a local club. She falls prey to her fantasies as the promise of romantic interludes turn into murder as she kills those who believe that sex is on the horizon. It's quite possible that, through a form of hypnotic suggestion, someone(..a possible task master pulling her strings like a puppet)is guiding Lorna into killing those she comes across in secluded places just when it appears that love-making is about to begin. After the murders within her fantasies are committed, Lorna awakens bewildered, often clueless as to if what she was privy to within her dreams ever took place in reality.<br /><br />If someone asked me how to describe this particular work from Franco, I'd say it's elegant & difficult. By now, you've probably read other user comments befuddled by what this film is about, since a large portion of it takes place within the surreal atmosphere of a dream. Franco mentioned in an interview that he was heavily influenced by Godard early in his career, as far as film-making style, and so deciding to abandon a clear narrative structure in favor of trying to create a whole different type of viewing experience. And, as you read from the reaction of the user comments here..some like this decision, others find the style labouring, dull, and bewildering. I'll be the first to admit that the film is over my head, but even Franco himself, when quizzed by critics who watched \"\"Succubus\"\", admitted that he didn't even understand the film and he directed it! Some might say that \"\"Succubus\"\" was merely a precursor to his more admired work, \"\"Venus in Furs\"\", considered his masterwork by Franco-faithful, because it also adopts the surreal, dreamlike structure where the protagonist doesn't truly know whether he/she is experiencing something real or imagined. In a sense, like the protagonist, we are experiencing the same type of confusion..certainly, \"\"Succubus\"\" is unconventional film-making where we aren't given the keys to what is exactly going on. And, a great deal of the elusive dialogue doesn't help matters. \"\"Succubus\"\" is also populated by beatnik types and \"\"poet-speak\"\", Corman's film, \"\"A Bucket of Blood\"\" poked fun at. My personal favorite scene teases at a possible lesbian interlude between Lorna and a woman she meets at a posh party..quite a bizarre fantasy sequence where mannequins are used rather unusually. Great locations and jazz score..I liked this film myself, although I can understand why it does receive a negative reaction. Loved that one scene at the posh party with Lorna, a wee bit drunk, writhing on the floor in a gorgeous evening gown as others attending the shindig(..equally wasted)rush her in an embrace of kisses.\"\r\n1\tMy personal favorite horror film. From the lengthy first tracking shot to the final story twist, this is Carpenter's masterpiece.<br /><br />Halloween night 1963, little Michael Meyers murders his older sister. All-hallows-eve 1978, Michael escapes from Smith's Grove sanitarium. Halloween night, Michael has come home to murder again.<br /><br />The story is perfectly simple, Michael stalks and kills babysitters. No bells or whistles, just the basics. It's Carpenter's almost over-powering atmosphere of dread that generates the tension. Like any great horror film, events are telegraphed long in advance, yet they still seem to occur at random, never allowing the audience to the chance to second guess the film.<br /><br />The dark lighting, the long steady-cam shots, and (most importantly) that damn eerie music create the most claustrophobic and uncomfortable scenes I have yet to see in film. There is a body count, but compared to the slew of slashers after this it's fairly small. That and most of the murders are nearly bloodless. The fear is not in death, but in not knowing.<br /><br />The acting is roundelay good. PJ Soles provides much of the films limited humor (and one of the best deaths), Nancy Loomis turns in a decent performance and then there is the young (at the time) Jamie Leigh-Curtis. Her performance at first seems shy and un-assured, yet you quickly realize that it is perfect for the character, who is herself shy and un-assured and not at all prepared for what she is to face. And of course there is the perfectly cast Donald Pleasence as the determined (perhaps a little unstable) Dr. Sam Loomis. Rest in peace Mr. Pleasence.<br /><br />If the film has a detrimental flaw, it would be the passage of time. Since the release of this film so many years ago nearly countless clones, copies, rip-offs, and imitators have come along and stolen (usually badly) the films best bits until nearly everything about it has become familiar. Combined with the changes for audience expectations and appetites, one finds much of the films raw power diluted. To truly appreciate it in this day and age, it must be viewed as it once was, as something unique.<br /><br />Never the less, I have no reservation with highly recommending this film to anyone looking for a good, scary time. Highest Reguards.<br /><br />10/10\r\n1\tThere is something special about the Austrian movies not only by Seidl, but by Spielmann and other directors as well. This is the piercing sense of reality that never leaves the viewer throughout the movie. Hundstage is no exception. This effect is achieved not only by the depicted stories but also by actors playing. In Hundstage I have never had the feeling that these are actors playing, but real people instead. So real is the visceral feeling of the viewer...Almost as if the grumpy pensioner or lonely lady in the movie are living below you in your block.<br /><br />Any person living in Vienna can without any doubt painfully recognize the people in the movie with their meckern/sudern (complaining), their hidden sexual urges and the prolo macho guys. This is further reinforced by the Viennese dialect which is, according to many, especially made for complaining as a way of life. A special parochialism and arrogance typical for Vienna are also very well portrayed.<br /><br />The Viennese suburbs have a vivid presence in the movie with their stupor and drowsiness where nothing happens. Moreover, they have been turned into a celebration of materialism with shopping malls and huge department stores. Inbetween are the houses of the people where they indulge into what they reckon is pleasure-giving activities, trying to stay in touch with their human selves, yet in vain. The examples are the sexual game of the old lady with the men which bordered on rape, the prolo guy losing his nerves and hitting his girlfriend and the young woman who hitchhikes and irritates her drivers.<br /><br />The film has no soundtrack as it concentrates on the normality/abnormality of its images only. Another typical feature of Seidl (and other Austrian directors) is his showing of disturbingly sexual images. These include the stripping of the old woman for her husband, the sexual scenes in the bath, the sexual game of the lady with the two men in her apartment, etc.<br /><br />In Hundstage Seild has portrayed the lives of people who eventually may be as much Viennese as they could be citizens of Paris, New York or Madrid. The viewers should not despise or feel pity for the Viennese in the movie as they themselves could become victims of the same human estrangement and alienation, albeit in different circumstances. In the end, I believe Seidl's film is a warning to us about the terrible state of human relationships so brutally revealed in Hundstage. And if the viewer does not succumb to the reasons for this evil transformation, Seidl has achieved his goal.\r\n1\t'Moonstruck' is a love story. There is not one romance, there are at least three, but they all have to do with the same family. Loretta's family. Loretta (Cher) is about to marry Johnny Cammareri (Danny Aiello). She doesn't love him, but he is sweet and good man. When he leaves to visit his dying mother in Italy Loretta meets Johnny's brother Ronny (Nicolas Cage). He and Johnny haven't spoken each other in five years and Loretta wants to invite him to the wedding. Of course they fall instantly for each other.<br /><br />How this story and love stories of Loretta's parents and uncle and aunt develop is something you simply have to see for yourself. Every seen is a delight to watch, with Cher as the bright star in the middle of everything. She won and really deserved the Oscar that year. Cage is pretty good, and goofy as well, and Olympia Dukakis as Loretta's mother and Vincent Gardenia as her father are terrific. This movie is funny, charming and therefore highly enjoyable.\r\n1\tBased on a true story of how a man ahead of his time - the great 19th century American poet and humanist Walt Whitman - made a significant contribution to how western medicine treats people with psychological problems.<br /><br />Interested in the treatment of people with psychological problems, he began to associate with psychiatric workers and patients. After seeing the psychological methods of the time (inhumane and ignorantly cruel methods), Walt rejected those methods, and treated patients with compassion and dignity, encouraging other people to do the same> The story of Walt's interactions with psychiatric workers, patients and townsfolk is full of drama, good humor and wisdom. : )\r\n0\t\"Georgia Rule has got to be one of - if not the worst movie I have ever seen in my life. The whole movie has a very surreal feel that made me gasp, \"\"what?\"\" out loud at least 7-10 times throughout its grueling two hour course.<br /><br />Advertised in its trailer as a movie about three generations of women - Jane Fonda as the matriarch, Felicity Huffman as her daughter, and Lindsay Lohan as the rebellious, over- sexed, scantily clad grand-daughter, the viewer thinks this will be a cliché, light, chick-flick about growing up and coming together as a family.<br /><br />Talk about false advertisement at it worst.<br /><br />After many shots of animals doing \"\"funny\"\" things in the background of \"\"pivotal\"\" scenes and not to mention a whole five minutes focusing on an old woman who comes into a doctor's office weekly to have her diaper changed, or the fact that this movie is actually about Lindsay Lohan's character being sexually abused by her step-father, Georgia Rule creates its own genre of cinema : The ungrounded, horribly acted, inappropriate comedy dealing with extremely serious issues in the most awkward, surreal, strange way. If Garry Marshall wanted this movie to be a drama/comedy, then he should have watched The Royal Tenenbaums. Sideways. Junebug. And so on. And so on.<br /><br />The only way I feel I can get a reader to understand the horrific genre that Georgia Rule falls under is to create a hypothetical situation. Say that the movie, The 40 Year Old Virgin, was about the main character being celibate because he was sexually molested as a child. But instead of having the movie take a more dramatic turn, belly laughs and comedy would ensue, with all of the characters' reactions being that of fake, lifeless, human beings pretending to care. <br /><br />Throw in a yellow parakeet, Dermot Mulroney as the flattest, most non-dimensional character that could have been cut completely out of this poorly written script, along with a male character who throws away all of his religious beliefs and morals to be with a trashy, too-tanned girl who shares none of the same interests as he, as well as an an unnecessary car chase scene, unreal moments of characters trying to relate to each other, and you've got Georgia Rule.<br /><br />I found this movie to be an insult to any of those people out there who are struggling filmmakers, screenwriters, actors, editors, etc..who have a lot more talent and aren't getting noticed.<br /><br />Don't see this movie : my rule. <br /><br />And if you must, get sufficiently drunk before hand.\"\r\n1\t\"To start off with, since this movie is a remake of a classic, the rating has to be lowered already. Since this version stars Viggo Mortensen in the lead role of Kowalski, it helps.<br /><br />Isn't this just like the United States government though, to terrorize one of its own citizens. Sounds like Jason Priestley's character from the movie! But it is the truth, the government would do anything possible to destroy a man's life for trying to get home to his wife. A wife, who is in labor no less, and may not make it.<br /><br />\"\"There was a time in this country that the police would escort a man to his pregnant wife.\"\" The words of the Disc Jockey.<br /><br />There were some great shots of scenery in this film, and great car chases and a lot of spirituality. After much consideration, I gave this film a 7.\"\r\n0\t\"Much like Orson Welles thirty years earlier,Mike Sarne was given \"\"the biggest train set in the world\"\"to play with,but unfortunately lacked the ability to do anything more than watch his train set become a train wreck that is still spoken of with shock and a strange sort of awe. Despite post - modern interpretations purporting somehow to see it as a gay or even feminist tract,the fact of the matter is that it was a major disaster in 1970 and remains one today.How anyone given the resources at Mr Sarne's disposal could have screwed up so royally remains a closely - guarded secret.Only Michael Cimino ever came close with the political and artistic Armageddon that constitutes \"\"Heaven's Gate\"\".Both films appeared to be ego trips for their respective directors but at least Mr Cimino had made one of the great movies of the 1970s before squandering the studio's largesse,whereas Mr Sarne had only the rather fey \"\"Joanna\"\" in his locker. Furthermore,\"\"Heaven's Gate\"\" could boast some memorable and well - handled set - pieces where,tragically,\"\"Myra Breckinridge\"\"s cupboard was bare. Simply put,it is overwhelmingly the worst example of biting the hand that feeds in the history of Hollywood.\"\r\n0\t\"I have seen over 1000 movies and this one stands out as one of the worst movies that I have ever seen. It is a shame that they had to associate this garbage to The Angels 1963 song \"\"My Boyfriend's Back.\"\" If you have to make a choice between watching this movie and painful dental work, I would suggest the dental work.\"\r\n1\tWhy do people bitch about this movie and not about awful movies like The Godfather. Titanic is the greatest movie of the 21st Century.With great acting,directing,effects,music and generally everything. This movie is always dumped by all because one day some one said they didn't like it any more so most of the world decided to agree. There is nothing wrong with this movie. All I can say is that this movie, not only being the most heavily Oscar Awarded movie of all time, the most money ever made ever and sadly one of the most underrated movies I've ever seen. Apart from that it is truly the best movie of all time. The only movies that come close to being like all the Star Wars and the Lord of the Rings trilogy or anything by the masters Hitchcock or Spielberg or Tim Burton. These are all good movies and directors but none match up to James Cameron's Masterpiece TITANIC.\r\n0\tThe potential movie extravaganza, set during the 19th century, failed to produce. With big-name actors like Maggie Smith, Albert Finney, and many others, there was no reason for the movie to fail. However, the movie lacked an ending, had a sorry excuse for a plot line, and fell to pieces with its continuity. A typical story of a rich girl and a poor boy, brought together by love and destroyed by beauty (or lack thereof) and disapproval, has a touching side of a mother's early death and an absentee father. The father, played by Finney, is a disturbed man, tormenting his daughter in life as well as death. He believes his daughter's lack of good looks would ruin his fortune by marrying beneath their social status. The actors vainly attempted to salvage what was left of the storyline. Washington Square is a black hole of ruin and destruction, wasting precious time of those who sorrowfully watch. I give this movie a 1 instead of a 0, purely for the actors' attempts. Save yourself, stay clear of Washington Square.\r\n0\tAh yes the 1980s , a time of Reaganomics and Sly , Chuck and a host of other action stars hiding in a remote jungle blowing away commies . At the time I couldn`t believe how movies like RAMBO , MISSING IN ACTION and UNCOMMON VALOR ( And who can forget the ridiculous RED DAWN ? ) made money at the box office , they`re turgid action crap fests with a rather off putting right wing agenda and they have dated very badly . TROMA`S WAR is a tongue in cheek take on these type of movies but you`ve got to ask yourself did they need spoofing in the first place ? Of course not . TROMA`S WAR lacks any sort of sophistication - though it does make the point that there`s no real difference between right wing tyrants and left wing ones - and sometimes feels more like a grade z movie than a send up . Maybe it is ?\r\n0\tIf you enjoy seeing what must have started as a 2 hour movie in unconnected bursts of unwatchability, you'll love this film. Otherwise, you'll just wonder how they could have made such a film from something so simple to translate to the big screen as Inspector Gadget.<br /><br />In the previews for the film, many scenes were shown which were not in the film, and within the film, some scenes just don't make sense. While the movie is slightly less than 1 hour and a half, I can only think of one truly memorable moment, and that is just before or during the credits!<br /><br />\r\n1\tI came across this film by accident when listing all the films I wanted my sister to record for me whilst I was on holiday and I am so glad that I included this one. It deals with issues that most directors shy away from, my only problem with this film is that it was made for TV so I couldn't buy a copy for my friend!<br /><br />It's a touching story about how people with eating disorders don't necessarily shy away from everyone and how many actually have dieting buddies. It brought to my attention that although bulimics can maintain a fairly stable weight, it has more serious consequences on their health that many people are ignorant of.\r\n0\tIt is not often I watch a film that is as dreadful as this one. I continued to watch, every minute hoping that this was intended as a joke only to find it was meant to be taken seriously. Well, as seriously as this genre requests.<br /><br />The acting was disgraceful and the situations horribly contrived and clichéd. If a film was made in 1920 (for example) and had the quality of Hide & Seek (Cord) in its direction we would think that cinema back then was naive. As it happens, this film was made in 2000 and I have yet to see a film from the silent era that has as little charm as this one.<br /><br />Definitely not for the serious movie-goer.<br /><br />[Not worth a rating]\r\n1\t.......Playing Kaddiddlehopper, Col San Fernando, etc. the man was pretty wide ranging and a scream. I love watching him interact w/ Amanda Blake, or Don Knotts or whomever--he clearly was having a ball and I think he made it easier on his guests as well--so long as they Knew ahead of time it wasn't a disciplined, 19 take kind of production. Relax and be loose was clearly the name of the game there.<br /><br />He reminds me of guys like Milton Berle, Benny Hill, maybe Jerry Lewis some too. Great timing, ancient gags that kept audiences in stitches for decades, sheer enjoyment about what he was doing. His sad little clown he played was good too--but in a touching manner.<br /><br />Personally I think he's great, having just bought a two DVD set of his shows from '61 or so, it brings his stuff back in a fond way for me. I can remember seeing him on TV at the end of his run when he was winding up the series in 1971 or so.<br /><br />Check this out if you are a fan or curious. He was a riot.\r\n0\t\"The film is bad. There is no other way to say it. The story is weak and outdated, especially for this country. I don't think most people know what a \"\"walker\"\" is or will really care. I felt as if I was watching a movie from the 70's. The subject was just not believable for the year 2007, even being set in DC. I think this rang true for everyone else who watched it too as the applause were low and quick at the end. Most didn't stay for the Q&A either.<br /><br />I don't think Schrader really thought the film out ahead of time. Many of the scenes seemed to be cut short as if they were never finished or he just didn't know how to finish them. He jumped from one scene to the next and you had to try and figure out or guess what was going on. I really didn't get Woody's (Carter) private life or boyfriend either. What were all the \"\"artistic\"\" male bondage and torture pictures (from Iraq prisons) about? What was he thinking? I think it was his very poor attempt at trying to create this dark private subculture life for Woody's character (Car). It didn't work. It didn't even seem to make sense really.<br /><br />The only good thing about this film was Woody Harrelson. He played his character (Car) flawlessly. You really did get a great sense of what a \"\"walker\"\" may have been like (say twenty years ago). He was great and most likely will never get recognized for it. <br /><br />As for Lauren, Lily and Kristin... Boring.<br /><br />Don't see it! It is painful! Unless you are a true Harrelson fan.\"\r\n0\tMaybe it's the dubbing, or maybe it's the endless scenes of people crying, moaning or otherwise carrying on, but I found Europa '51 to be one of the most overwrought (and therefore annoying) films I've ever seen. The film starts out promisingly if familiarly, as mom Ingrid Bergman is too busy to spend time with her spoiled brat of a son (Sandro Franchina). Whilst mummy and daddy (bland Alexander Knox) entertain their guests at a dinner party, the youngster tries to kill himself, setting in motion a life changing series of events that find Bergman spending time showering compassion on the poor and needy. Spurred on by Communist newspaper editor Andrea (Ettore Giannini), she soon spends more time with the downtrodden than she does with her husband, who soon locks her up in an insane asylum for her troubles. Bergman plays the saint role to the hilt, echoing her 1948 role as Joan of Arc, and Rossellini does a fantastic job of lighting and filming her to best effect. Unfortunately, the script pounds its point home with ham-fisted subtlety, as Andrea and Mom take turns declaiming Marxist and Christian platitudes. By the final tear soaked scene, I had had more than my fill of these tiresome characters. A real step down for Rossellini as he stepped away from neo-realism and further embraced the mythical and mystical themes of 1950's Flowers of St. Francis.\r\n1\t\"Being a big fan of the romantic comedy genre, and therefore having seen a large number of these films, it is rare that one strikes me as totally unique. For that matter, it is equally rare that I am gasping for breath through the laughter during several scenes. The love story is a little thin on the ground, but I'd say that's probably for the best, as this romantic comedy has the emphasis firmly on \"\"comedy\"\", and in any case it stretches the bounds of credibility just a little more than I like most rom com's to do. The four scientists provided some of the funniest moments not just in this film, but in any film I've seen in a long while. I hesitated for the briefest of moments before finally choosing a \"\"10\"\" over a \"\"9\"\" as a rating, as I believe that far too many people use it indiscriminately, and therefore the maximum rating loses some of its impact. I'm also a big Meg Ryan fan, which helps, but this is one of the few films I've seen in which I'd say she is comprehensively overshadowed. She and Tim Robbins are cast as the leads, but for me play second fiddle to the antics of the bumbling intellectuals. A genuine laugh-out-loud type film.\"\r\n0\tWhat starts out as an interesting story quickly disintegrates into nothing. Don't bother watching to the end hoping for an explanation of what is stalking the visitors, there is no ending. No explanation, no resolution, zip. This could have been a good movie it they had purchased an entire script.\r\n1\tI'm stunt, I must admit I never saw a movie with such good story and none stop high special effect martial art fighting scene. If you like the fantastic genre, like me, you will certainly be more than satisfied! All character have very cool power and the special effect are near perfection, in one word, flawless! I will listen to this movie a lot in the next years.\r\n1\tJake's Closet has the emotional power of Kramer vs. Kramer combined with the imagination of Pan's Labyrinth. Even the beginning special effect seems to give a nod to Pan's Labyrinth. But this is a story that takes place in modern times, not in a war sixty years ago and in that way it has even more resonance today. Jake's Closet is about a boy, an only child, practically alone on summer vacation, dealing with his family falling apart. It's a horror movie like The Others and The Sixth Sense, a horror movie for the thinking person. If you're looking for a slasher movie, this won't be your cup of tea but if you're looking for a story that is both touching and suspenseful with good acting, this is the movie for you. At the screening I saw, I swear there was one moment where the entire audience screamed. I highly recommend catching this film.\r\n0\tI want to say the acting is bad, but I think it was the directing that made it so. I never thought much of Highlander (same director) but that one could be blamed on the 80s.<br /><br />This one however, has no excuses. People get shot while exiting trenches with a man in front of him!? Those kind of mistakes, along with an unclear time line, weird battle tactics, sub-par cutting and poor visual effects, makes this one a sub-par film over all.<br /><br />Then like so many other have commented, all this American bullshit. The German general being practically scared of his captured American private. Be prepared to swallow a lot of it, although in small doses.<br /><br />To sum it up, a not horrible but still definitely sub-par war movie in all aspects.\r\n0\tThe only redeeming qualities this movie has are the fairly original death scenes. Other than that this movie is a big DUD. We have Kim Basinger, the beleaguered housewife slowly meandering thru the local mall for the first 30 min. of the movie, which added nothing. Then the movie picks up a bit as she has a confrontation with 4 punks who took up 2 parking spaces on this busy xmas eve. They begin to chase her after offing the local security guard who tried to help her. From there this movie gets worse, way worse. I know its only a movie and you've gotta go with the flow but she's got about a 5 min. headstart and she can't hide or find someone to help her. Instead she drives to a half built subdivision beside a forest. In typical fashion she does everything she can to allow her followers to easily track her. But now she turns into one tough mofu. You get the point. Do not under any circumstances buy or rent this movie no matter how much you like this type. It's so illogical you'll be questioning every scene. It is embarrassing for Basinger and Craig Sheffer and the rest of the cast, as well as the consumers.\r\n1\t\"Why didn't Dynamo have any pants?! Where did they go?? It was never explained. That's why this movie was so awesome. Plus Starsky gave his kids the AIDS!!!! Great acting too. Richard Dawson deserved to win Best Supporting Actor! A I D S My favorite line from the movie was \"\"That hit the spot\"\" A I D S. This movie was for the \"\"birds\"\". I tried to give this movie the \"\"stinkeye\"\" but it continued playing. What am I doing wrong???!!!! I thought the \"\"HATEBOAT\"\" was funnnny lol ;) I would like that for a show. Why wasn't Dynamo wearing pants. I know his arm WAS skewered but... What's up with those crazy futur nets. Why didn't that family feud guy Ray Combs get a net?? He could have used one. AIDSSSSS\"\r\n1\t\"I must admit that this is the type of film that I would normally eschew, but I rented it basically because of the stars. I certainly was not sorry. In fact, as you see, I rated it five stars. This film is the perfect combination of sharp directing and superior acting.<br /><br />Andy and Hank Hanson are brothers who decide to commit the uncouth crime of robbing their parents' jewelry store. The crime goes terribly wrong - thus beginning an examination of the three men in the Hanson family. Through a series of flashbacks, we get to know Charles Hanson and come to an understanding of the strained relationship between father and sons.<br /><br />Younger brother, Hank is basically a screw-up. He has always had trouble holding a job and pretty much goes in the direction of the wind. Hank is insecure, cowardly, and very much under the influence of his big brother. Ethan Hawke has the character of Hank \"\"nailed to a T\"\" and gives what is probably his best performance thus far. He shows us a man who is basically good-hearted but so influenced by outside forces that he is unable to follow through with any important task.<br /><br />Andy - on the surface - appears to be a successful businessman, but we soon discover that he is addicted to drugs and has been embezzling from his company to pay for his habit. It is Andy who concocts the scheme to rob his parents' store, and he gets weak-willed Hank to commit the act. Philip Seymour Hoffman - surely one of the finest actors of our time - plays Andy. Hoffman is an actor who has the ability to portray a man who, on the surface, is a charming businessman liked by his acquaintances but a real slime ball underneath. He is absolutely perfect for the part of Andy or it might be said that he, through his superior acting skills, made Andy the perfect part.<br /><br />Albert Finney plays a father common to his generation. Charles Hanson is not a bad or unfeeling man, but he has a lousy relationship with his sons because he never really understood what was necessary in nurturing a positive bond between his sons and himself. He has always been too quick to criticize and admonish. He always made it clear that he favored his younger son over his older thus causing a wide emotional rift between himself and Andy. As we get to know Charles and Andy, the thought of Andy forming a plan to rob from his father becomes less unbelievable.<br /><br />On a personal note, I cannot believe how much Charles Hanson reminded me of my own father, and how much Andy and Hank reminded me of my own brother and myself. Perhaps this may be one of the reasons that I enjoyed the film so much as this story of a distant, critical father, a more successful older brother, and a less successful younger brother hit so close to home. Fortunately, my brother and I never came to the state of committing a crime against my parents- guess we were made of sterner and more moral stuff.<br /><br />This complex of personalities and actions has been expertly put together by director, Sidney Lumet. At eighty-three, he still has the chops to give the audience engrossing characters and edge-of-seat action that hypnotizes. 12 Angry Men was his first film made fifty years prior to Before the Devil Knows You're Dead, but he hasn't lost any bit of his magic touch in showing us characters that will be long remembered.<br /><br />The events and characters in Before the Devil Knows You're Dead are harsh and unattractive, and this is definitely not a feel-good movie. However, it is two hours of ultimate entertainment which I thoroughly recommend.\"\r\n1\tA great concept, a great cast, and what a pity there wasn't more time to flesh out the story. I loved it and wanted more. Dench, Dukakis, and Laine, now there are some REAL women! Still, Dench and her character alone had enough substance to carry the script over some of its lesser moments. I have it on tape and will continue to watch it, hoping that there is a clue at the end that suggests there will be a sequel.<br /><br />Top drawer! - No Question! - No Argument!<br /><br />\r\n0\tA charming boy and his mother move to a middle of nowhere town, cats and death soon follow them. That about sums it up.<br /><br />I'll admit that I am a little freaked out by cats after seeing this movie. But in all seriousness in spite of the numerous things that are wrong with this film, and believe me there is plenty of that to go around, it is overall a very enjoyable viewing experience.<br /><br />The characters are more like caricatures here with only their basis instincts to rely on. Fear, greed, pride lust or anger seems to be all that motivate these people. Although it can be argued that that seeming failing, in actuality, serves the telling of the story. The supernatural premise and the fact that it is a Stephen King screenplay(not that I have anything specific against Mr. King) are quite nicely supported by some interesting FX work, makeup and quite suitable music. The absolute gem of this film is without a doubt Alice Krige who plays Mary Brady, the otherworldly mother.<br /><br />King manages to take a simple story of outsider, or people who are a little different(okay - a lot in this case), trying to fit in and twists it into a campy over the top little horror gem that has to be in the collection of any horror fan.\r\n1\tI Enjoyed Watching This Well Acted Movie Very Much!It Was Well Acted,Particularly By Actress Helen Hunt And Actors Steven Weber And Jeff Fahey.It Was A Very Interesting Movie,Filled With Drama And Suspense,From The Beginning To The Very End.I Reccomend That Everyone Take The Time To Watch This Made For Television Movie,It Is Excellent And Has Great Acting!!\r\n0\tIt's a real challenge to make a movie about a baby being devoured by wild canines and the mother being wrongly accused of murder funny but against all odds this one succeeds. Meryl Streep gives the performance of her life, melodramatic, overwrought but with that comic genius that keeps you laughing even as a mother struggles with the ultimate horror.<br /><br />If comedies about the infants being eaten by dogs are not your cup of tea you might be uncomfortable watching this and, yes, it is an odd choice of topic for a farce but really very little of the movie has anything to do with that as it focuses on giving Streep a showcase for her Aussie accent and facial contortions. <br /><br />Throwing in a slam at media bias and sensationalism and disregard for either the truth or ethics gives the movie the chance to make the daring point that those things are bad.\r\n0\tNot that I dislike childrens movies, but this was a tearjerker with few redeeming qualities. M.J. Fox was the perfect voice for Stuart and the rest of the talent was wasted. Hugh Laurie can be amazingly funny, but is not given the chance in this movie. It´s sugar-coated sugar and would hardly appeal to anyone over 7 years of age. See Toy Story, Monsters Inc. or Shrek instead. 3/10\r\n1\t\"Tweaked a little bit, 'Nothing' could be a children's film. It's a very clever concept, touches upon some interesting metaphysical themes, and goes against pretty much every Hollywood convention you can think of...what goes against everything more than, literally, \"\"nothing\"\"? Nothing is the story of two friends who wish the world away when everything goes wrong with their lives. All that's left is what they don't hate, and a big empty white space. It's hard to focus a story on just two actors for the majority of your film, especially without any cuts to anything going on outside the plot. It focuses on pretty much one subject, but that's prime Vincenzo Natali territory. If you've seen 'Cube', you know already that he tends to like that type of situation. The \"\"nothing\"\" in this movie is apparently infinite space, but Natali somehow manages to make it somewhat claustrophobic, if only because there's literally nothing else, and nowhere else to go. The actors sell it, although you can tell these guys are friends anyway. Two actors from 'Cube' return here (Worth and Kazan), but are entirely different characters. They change throughout the story, and while they're not the strongest actors in the world, they're at least believable.<br /><br />The reason I say this could be a children's film under the right tweaks, is because aside from a few f-bombs and a somewhat unnecessary bloody dream sequence, the whimsical and often silly feel of this movie could very much be digested easily by kids. So I find it an odd choice that the writers decided to add some crass language and a small amount of gore, especially considering there isn't very much of it. This could've gotten a PG rating easily had they simply cut a few things out and changed a little dialogue. There is very little objectionable about this film, but just enough to keep parents from wanting their kids to see it. I only say that's a shame because not because I support censorship, but because that may have been the only thing preventing this movie from having wider exposure.<br /><br />At any rate, this is a reasonably entertaining film, albeit with a few dragged-out scenes. But for literally being about nothing, and focused entirely on two characters and their interactions with absolutely nothing, they do a surprisingly good job for an independent film.\"\r\n0\tThe acting, other reviews notwithstanding, was remarkably well-done. Brad Pitt handles the role of an annoying, obnoxious Austrian climber quite well. Other acting is fine. The story could have been riveting, but somehow, it misses - one never really understands or cares for the characters shown, and so the story, which could have been quite dramatic, fails to draw in this audience.<br /><br />Beautiful scenery and cinematography, a remarkably dramatic true story, important events that shaped the world that we live in - but I could not, try as I might, involve myself in this story. As an unabashed Brad Pitt fan (I consider him one of the top 5 actors of his generation), I expected to *love* this flick - and yet, it left me cold.<br /><br />It could be a failing within myself, but I tend to point toward the creative end of this movie - direction, scriptwriting, production, editing - somehow, they lost me. It's a shame, because it could have been wonderful.<br /><br />Good acting, dramatic story, beautifully shot - it should have been magnificent. It wasn't. Probably worth watching, just to make your own mind up on it - but don't expect too much, and perhaps you won't be as disappointed as I was. Mostly, it bored me.\r\n0\t\"I watched the Malayalam movie \"\"Boeing Boeing\"\" made in 1985 (which in turn is probably inspired by an English movie of same name) long back. The basic story of garam masala is the same - but it is told in a pathetic way, the classy jokes replaced by routine ones which are found in normal Hindi movies (probably the director did this to suit the taste of Hindi audience)... <br /><br />I haven't seen the English original. But had really enjoyed the Malayalam film (made by Priyadarshan himself)which was a side splitting comedy, back then. Of course the acting by Mohanlal,Mukesh and Sukumari (who did the cook's role) was so natural and spontaneous.<br /><br />Probably, I am too smitten by the Malayalam film that I cannot tolerate even the smaller flaws in its Hindi remake. But I still feel that Akshay Kumar and John Abraham have overacted. Paresh Rawal has done a decent job - but doesn't reach anywhere near Sukumari.<br /><br />But all in all its OK, if one compares it to other recent Hindi comedy movies.\"\r\n1\tI haven't yet read the Kurt Vonnegut book this was adapted from, but I am familiar with some of his other work and was interested to see how it would be translated to the screen. Overall, I think this is a very successful adaptation of one of Vonnegut's novels. It concerns the story of an American living in Germany who is recruited as a spy for the US. His job is to ingratiate himself with high ranked Nazi's and send secret messages to the American's via his weekly radio show. But when the war ends he is denounced as a war criminal but escapes to New York, where various odd plot twists await.<br /><br />If Mother Night has a problem it's that it tends to get a little too sentimental at times. But for most of the film the schmaltz is kept to a minimum and the very strange plot is carried through with skill and aplomb. And there are some fabulous moments of black comedy involving three right wing Christian fundamentalists and a very highly ranked Nazi in a prison cell. Very much recommended.\r\n1\t\"This movie is fun to watch. If you liked \"\"Dave\"\" with Kevin Klein, you will get a kick out of this. Think \"\"Dave\"\" gone South American as Dreyfus plays Jack Noah, an actor between jobs, who is hand selected by the head of the island nation of Parador's secret police, to replace the drunken sot of a dictator, Alfonse Simms, after he has had a heart attack and died. Noah bumbles along, aided in his role by the ex-dictator's mistress, as they attempt to thwart the plans of Raul Julia. Jonathan Winters also makes an appearance as a hearty American émigré who turns out to be CIA. ALso starring Polly Holiday and Fernando Rey. <br /><br />There are a few absurd moments such as the body of the old dictator be kept frozen for a year, and the final scene, where Sonia Braga, who has bee cradling the bloody, bullet riddled body of Dreyfus is seen moments later all in pristine white, with nary a smudge on her. But all in all it is a great romp.\"\r\n1\t\"I find it very intriguing that Lee Radziwill, Jackie Kennedy's sister and the cousin of these women, would encourage the Maysles' to make \"\"Big Edie\"\" and \"\"Little Edie\"\" the subject of a film. They certainly could be considered the \"\"skeletons\"\" in the family closet. The extra features on the DVD include several contemporary fashion designers crediting some of their ideas to these oddball women. I'd say that anyone interested in fashion would find the discussion by these designers fascinating. (i.e. \"\"Are they nuts? Or am I missing something?\"\"). This movie is hard to come by. Netflix does not have it. Facets does, though.\"\r\n0\tStory of a man who has unnatural feelings for a pig. Starts out with a opening scene that is a terrific example of absurd comedy. A formal orchestra audience is turned into an insane, violent mob by the crazy chantings of it's singers. Unfortunately it stays absurd the WHOLE time with no general narrative eventually making it just too off putting. Even those from the era should be turned off. The cryptic dialogue would make Shakespeare seem easy to a third grader. On a technical level it's better than you might think with some good cinematography by future great Vilmos Zsigmond. Future stars Sally Kirkland and Frederic Forrest can be seen briefly.\r\n0\tI expected this to be a lot better. I love Tim Burton's work, so I was really excited to see these online short films. Well, they weren't at all what I had expected.<br /><br />I don't really know what exactly it is I don't like. I guess they're just sort of dull. The sound bothers me, and most of the characters, although I loved Roy the Toxic Boy, and Stainboy.<br /><br />The Match Girl episode probably bugged me the most, although it was pretty funny.<br /><br />I also don't like the way some of the characters die. Like how Match Girl basically set the gas station on fire, or how the Girl Who Stares died, in general. Roy's death was amusing, surprisingly. Death by a car freshener. Very original ;-) That made me laugh so hard...<br /><br />There are some things that aren't appropriate for kids. Just some language and gore. That's about all I have to say! 3/10\r\n0\tThe trailers for this film were better than the movie. What waste of talent and money. Wish I would've waited for this movie to come on DVD because at least I wouldn't be out $9. The movie totally misses the mark. What could have been a GREAT movie for all actors, turned out to be a B-movie at best. Movie moved VERY slow and just when I thought it was going somewhere, it almost did but then it didn't. In this day and age, we need unpredictable plot twists and closures in film, and this film offered neither. The whole thing about how everyone is a suspect is good, however, not sure if it was the way it was directed, the lighting, the delivery of lines, the writing or what, but nothing came from it. Lot of hype for nothing. I was VERY disappointed in this film, and I'm telling everyone NOT to see it. The cheesy saxophone music throughout made the film worse as well. And the ending had NOTHING to do with the rest of the film. What a disappointment.\r\n0\tEver watched a movie that lost the plot? Well, this didn't even really have one to begin with.<br /><br />Where to begin? The achingly tedious scenes of our heroine sitting around the house with actually no sense of menace or even foreboding created even during the apparently constant thunderstorms (that are strangely never actually heard in the house-great double glazing)? The house that is apparently only a few miles from a town yet is several hours walk away(?) or the third girl who serves no purpose to the plot except to provide a surprisingly quick gory murder just as the tedium becomes unbearable? Or even the beginning which suggests a spate of 20+ killings throughout the area even though it is apparent the killer never ventures far from the house? Or the bizarre ritual with the salt & pepper that pretty much sums up most of the films inherent lack of direction.<br /><br />Add a lead actress who can't act but at least is willing to do some completely irrelevant nude shower scenes and this video is truly nasty, but not in the way you hope.<br /><br />Given a following simply for being banned in the UK in the 80's (mostly because of a final surprisingly over extended murder) it offers nothing but curiosity value- and one classic 'daft' murder (don't worry-its telegraphed at least ten minutes before).<br /><br />After a walk in the woods our victim comes to a rather steep upward slope which they obviously struggle up. Halfway through they see a figure at the top dressed in black and brandishing a large scythe. What do they do? Slide down and run like the rest of us? No, of course not- they struggle to the top and stand conveniently nice and upright in front of the murder weapon.<br /><br />It really IS only a movie as they say..\r\n1\t\"This is such a great movie \"\"Call Me Anna\"\" because it shows how a person has suffered for so long without knowing what was wrong with her. For Patty Duke to come out in the publics eye and tell her story is an inspiration to those who suffer from this disease. I have a lot of respect for her as a person. The only thing I don't like is I can't get it on tape, I've tried looking for it but with no success. Any one know how to get it?\"\r\n0\t\"Hear are some of the interesting things our combat hero faith healer Pat, his son Gordon (T.V. ministry seems like a family business.) and Terry Meeuwsen (Won Miss America in 1973 by wearing a swimsuit and showing her legs. Oh my goodness gracious!) say when our poor viewers are sick and need help.<br /><br />1. Someone with an \"\"abscessed right tooth\"\"has just now been healed.2. Someone with \"\"twisted intestines\"\" has been healed.3.Then Terry said there was a person with a \"\"strange condition\"\",(You mean God doesn't know?) a burning in the legs,who has just been healed.4. Then Gordon said there's a man(That narrows it down!) with swelling of the sinuses in his right cheek, with much pain behind the right eye,but he is now healed.5.Someone with a problematic right hip,limited mobility from a stroke, is now able to walk. 6. Terry said she saw someone with severe with severe stiffness in the neck bone, but didn't know the exact ailment(God doesn't know?)-that the person is now healed. 7. Someone paralyzed on the right side, particularly(Not exactly?!) the right side of the face has now been healed.8. A man (That narrows the world population down again.) with a plate in his skull is having a continual problems, and the doctors just don't know what to do. Terry said she saw the bone reforming around the plate(The funny bone?!)and the mans pain is gone,he was now healed.<br /><br />Hers how our war hero Pat helps our sick and poor people. 1. There's a woman in Kansas City (Missouri or Kansas but that narrows it way down.) who has a sinus the lord is drying it up now thank you Jesus. 2. There's a man with a financial need- I think a hundred thousand dollars.(I think their god needs to go to school or something!) That need is being met met right now,and within three days,the money will be supplied through the miraculous power of the holy spirit.Thank you Jesus. 3.There is a woman in Cincinnati with cancer of the lymph nodes. <br /><br />I don't know whether its been diagnosed yet (Ask your vengeful god Pat!) but you haven't been feeling well, and the lord is dissolving that cancer right now!(What?!)4. There is a lady in Saskatoon(I assume Canada.) in a wheelchair-curvature of the spine, The lord is straightening that our right now, and you can stand up and walk!(If you have this condition ignore Pat!) Just claim it and it's yours. Thank you Jesus! Amen, Amen!<br /><br />When Pat Robertson had prostate cancer did he go to Peter Popoff?, Oral Roberts?,Benny Hinn?,Terry or Gordon? No! On February 17,2003 Pat went to a REAL DOCTOR to have his surgery! (You mean he doesn't trust his faith healing friends, Terry or his own son Gordon?!)<br /><br />When LT Pat Robertson was in the Marines during the Korean war He was a liquor officer, responsible for keeping the officers supplied with liquor. He was known to drink himself and frequent prostitutes and he feared he contacted gonorrhea.(Should of asked a faith healer for help!)<br /><br />The reason Pat got out of combat was because his daddy Absalom Willis Robertson (D Va from 1946-66) was Chairman of the Senate Military Appropriations Committee.<br /><br />Terrorist Attacks, September 11, 2001 We have imagined ourselves invulnerable and been consumed by the pursuit of health, wealth,(Pats worth between 150 and 200 million dollars folks!) material pleasures(A mansion in Virginia beach Virginia with a helicopter launching pad!) and sexuality(He had had sex with his future wife before marriage which they had a son!). It (terrorism) is happening because god is lifting his protection from us.( Statement released on September 13, 2001.) Pat Robertson reminds me of Burgermeister on Santa Claus Is Coming To Town and his evil vengeful god reminds me of Venger on Dungeons And Dragons.<br /><br />Spoiled brat Gordon does what daddy Pat tells him to and Terry is a paid yes woman who neither have minds of their own!<br /><br />This will really grab you! The September 5 2005 edition of The 700 Club included a report Christian Broadcasting Network correspondent Gary Lane from outside New Orleans Convention Center which has housed mostly impoverished black disaster victims throughout the weekend.\"\"A number of possessions left behind suggest the mindset of some of the evacuees\"\"Lane said\"\"they include this voodoo cup with the saying\"\"May the curse be with you.\"\" A shot of a plastic cup souvenir cup from one of the New Orleans countless trinket shops appeared on the screen. \"\"Also music CDs with the title Guerrilla Warfare and Thugs 'R' Us.\"\" Lane stated, pointing out a pile or rap CDs strewn on the ground.( His bigoted daddy Absalom has taught Pat racism well!)<br /><br />If any of you good people ever think of donating to these sexist bigoted people please in the name of God don't! Sponsor a softball or basketball team,give to a food shelf, be a big brother or sister to a child but please don't give to these people because they have been around for over 40 years and solved nothing.<br /><br />If you still don't believe me type Pat Robertson overheard during commercial break on the web and hit search and once you hear what hes really like, I know for sure that you will not give one cent to these conning liars! And by the way Terry once had a divorce and Pat has talked against divorce many times on his shows.<br /><br />I like to say hello to the folks in Dover Pennsylvania, Orlando Florida, and to the nice folks who got hit by hurricane Katrina and I hope its a pleasant day. Has Operation Blessing been helpful to New Orleans?(I doubt it!) Please let our readers know! I do! By the way folks if your sick, go to a real doctor and lets everybody laugh at these liars and someday Burgermeister Pat,Gordon and Terry can go someplace else and take their angry god Venger with them!\"\r\n0\tThose 2 points are dedicated the reasonable performance from Akshay Kumar. I know Bollywood films do not really strive to be realistic but PLEASE a Walt Disney production is more realistic than this plot. The father is dying and does what any good parent does...kick his son out the son with his PREGNANT wife. A few things that were too hard to swallow- 1. Priyanka 'cool indoor swimming pool in the bedroom' and to go from that to living hungry in her in-laws garden shed???????? 2. Akshay suddenly got the job as a stunt man, gets bitten by rabified dogs, to then just walk off. This film is an INSulT to our intelligence I really cant believe i contributed financially to the 'people' who made this film by taking my family to see it, we left the cinema with a frown, please do not subject yourself to this mess to watching this take my advice and do not waste your 'waqt'.\r\n1\tI was amazed at the improvements made in an animated film. If you sit close to the screen, you will see the detail in the grass and surface structures. The detail, colors, and shading are at least an order of magnitude better than Toy Story. How they were able to pull off the shading, I will never know. I do hope that PIXAR will provide a documentary on how the film was produced so I can find out how all this was accomplished. Based on this film, I think animated films of the future will be judged on the basis of this film.\r\n1\t\"*** out of ****<br /><br />Yep! Dressed To Kill is that kind of a movie. It's like Kalifornia, but it's different. Remember? That movie from 1993 which stars Brad Pitt as a serial killer who is \"\"welcomed\"\" by a couple of travelers in a trip to California as a buddy who might be a good company along the way. When I watch a movie, I always like not to know anything at all about the plot, before watching it, because the surprises may get even cooler. That's how it was with Kalifornia. When I watched it last year for the first time, I never realized it was a suspense movie, so when I found out, I was shocked, and when the movie went on and on, it got even better and I was at the edge of my seat, almost kissing my monitor, so close I was to it! So, we're discussing about Dressed To Kill, right? Before I watched this movie (today!), I've only watched 2 others movies from Brian De Palma, so I can say I don't really know that well his works, but can tell from afar that these 2 movies for me were as great as they could be. Carrie (1976) and Mission:Impossible (1996). When I watched Carrie on the TV, I was really that desperate to get a DVD copy and I can tell: this movie is great! Mission:Impossible also. And today, I watched a third movie from DePalma. <br /><br />Well, Dressed To Kill is a movie like Kalifornia. When the movie goes on, it goes completely different than what you'd expect. I was watching, very curious, the scene of the museum, where Dickinson follows the mysterious man to his cab and they end together in an apartment room. You may guess what may have happened there. But when the movie reached the scene of the elevator, the movie went completely on a different path. I was watching the rest of the movie, and I really liked it. However, there are some low points... Some characters in the movie are completely silent! Take, for example, the mysterious man from the museum scene. I was always hoping that he could say something but he never did! This was totally ridiculous and was with no doubt something that made me change my mind by not accepting this movie as at least almost something as a masterpiece. Even in the cab scene, where Dickinson tries to apologize because of what happened in the museum, the completely silent man grabs her, pulls her inside the cab, and they start kissing each other. You know, it reminded me of the Mexican TV series of the 70's \"\"El Chavo Del 8\"\", where some characters are completely silent. Getting past these low points of the movie, it is actually a great movie, considering the suspense, the characters and the plot. Dennis Franz is cool as detective Marino! Reminded me of him as Capt. Carmine Lorenzo in Die Hard 2 (1990) where he plays almost the same kind of character. <br /><br />Well, concluding this review, the ending of Dressed To Kill is the same ending as it is in Carrie! I don't know if I really liked that, because I hate imitations! I understand that Carrie is a movie from DePalma, so it's not actually an imitation, because after all it was his idea! But it turned to be a repetitive idea in Dressed To Kill, so DePalma could have done something different instead of showing Nancy Allen waking up from a bad dream the same way it happens to Amy Irving at the ending scene of Carrie. This was, of course, with no doubt, another low point. But if you get past this, you will find that Dressed To Kill is a really good movie, and I assure you that it's not, by any means, a waste of time watching it.\"\r\n0\tIf I only had one camera that was accidentally glued to the floor, enough film for only one take of each shot, and then lost all that film and had to scrounge up some bucks to buy a few digital video tapes, and was forced to make an over-2-hour movie about the French Revolution, and also didn't have any sets and had to have my 4-year-old autistic son paint the backgrounds, and also the only actors I could find were the people who didn't make the auditions of that year's soap opera, and I was also forced to not use any music in the entire film, and also the zoom function on the camera didn't work except for one time when it accidentally started zooming in and couldn't stop, oh and if I hated my audience, then I might make something kind of like this awful, yet mistakenly hilarious, Hell-worthy waste of time. The almost grand looking but completely fake looking backdrops reminded me of some of George Lucas' latest creations, which made it so much more disappointing because through the whole movie, there was that little glimmer of hope in the back of my mind that the film would climax in a lightsaber duel/space laser battle. I don't mean to spoil the movie for those who haven't seen it, but that's not how it ends. The only thing I can think of that wasted more time than watching this movie was writing this review. Peace.\r\n0\tWell, let me start off by saying how utterly HILARIOUS this film is, I simply couldn't keep myself from laughing at the sheer stupidity of it. Don't get me wrong, it IS well acted particularly by Bassinger but the script is just, well the mind boggles truly.<br /><br />The premise is good and up until Della actually witnesses the murder it is engaging but after that it just goes downhill . Half way through the film the protagonist pulls out her toolbox and of course instead of lobbing it at the guy's head, she decides to pull out a screwdriver, car jack and finally a flare (as in for a sinking ship) respectively to kill her victims.<br /><br />Then there is the final line that I promise, if it doesn't have you in stitches then I will eat my own left foot.<br /><br />I would recommend this film to those who simply want to laugh at some good old fashioned, appalling film making. Might I also suggest you watch out for the scene in the scrap yard with the guy falling from the one foot high plank of wood, gets me every time.\r\n1\tMaybe I'm biased to foxes, fox stories and all but I thought this was wonderfully done.<br /><br />I really enjoyed that it was shown when Lily wasn't comfortable, such as the fire and the room (trying not to spoil too much here). I think that's important for kids to see and try to understand.<br /><br />After reading a few others comments I'm a bit confused, one says that at the end -spoiler- the mother and her son appear, as she's been the one telling her son about her story. The movie I saw did NOT have the mother or son at the end, merely a painting of a girl with a fox. Can someone enlighten me on that? Anyway I really enjoyed this movie, although some scenes can be a bit slow which might be difficult for high energy kids to sit through. Still worth it if they can sit still.\r\n0\t\"First off... I never considered myself an Uwe Boll Hater since I think I never even saw one of his movies but after seeing this cheap excuse for a movie named \"\"Seed\"\" (which is the name of the serial killer this movie is about) I am close to joining the hate club. This movie makes absolutely no sense at all... the plot is a joke and although Boll clearly tries to get attention by shocking people 90% of this movie is just plain boredom. You can sum up this movie like this: <br /><br />1. Hooded killer watches clips of animals getting tortured on TV. This is real life footage from pelt farms and the movie opens with the ridiculous reason of \"\"making a statement about humanity\"\" and giving a Peta address. Since this movie has no message at all and is the worst piece of torture porn-exploitation you already have a reason to hate the movie from the beginning onward.<br /><br />2. Death by electrocution with a pretext that gives away what happens later in this movie printed on screen so every retard gets it.<br /><br />3. Cops watch videos of animals, babies and women starved to death and decomposing in Seeds basement, having stupid nightmares and crying into their whiskey because Seed is such an evil bad mofo. Although the acting is OK the movie takes a dive every time it tries to incorporate any emotions... <br /><br />4. Cops bust Seed in his house, act stupid and get slashed in the dark. This sequence reminds me of a video game, you barely see anything except flashlights. Seed is a super killer that is everywhere at once and all cops act stupid enough to be killed... except for one who busts him.<br /><br />5. Seed gets the chair and we see his electrocution as lengthy as everything else in this \"\"movie\"\"... he won't die and we are reminded of the opening statement that he must be set free if he survives 3 electric jolts. Guess what... they just bury him alive to solve the problem.<br /><br />6. Seed comes out of his grave, kills everyone off in another slashing part and then seeks the main cop to take revenge on.<br /><br />7. A woman gets her head bashed in with a hammer in an endless sequence from one point of view just for the fun and shock value of it. <br /><br />8. Seed captures the cops family, lures him to his house, threatens to kill his wife and daughter. After killing his wife with a nail gun the cop shoots himself in the head considering thats whats Seed wants (its hard to get into that guys head since he not just wears his mask even in prison but also never utters a word ... the movie has barely any dialog anyway so don't mind).<br /><br />9. Boll goes for a nihilistic shocker end where Seed locks the daughter in with her dead dad to rot like the persons we saw on video on sequence 3.<br /><br />This is it... no message, no plot, no reason, no face behind the mask, no background except a stupid story that Seed was burnt as a child.<br /><br />This movie relies purely on few key scenes and their shock value. I hardly remember a movie this empty of any emotion or message or entertainment. Its like watching August Underground ... thats fine with me, some people will enjoy this brainless snuff. But what is really hard to stand about it is the pseudo-message in the beginning and the fact that the movie is well made considering camera-work, effects and even the acting is too good for this waste of celluloid. <br /><br />So how does Boll get money to make such \"\"movies\"\" when thousands of talented directors work on shoestring budgets?? \"\"Seed\"\" is not just the essence of ridiculous, its living proof that the free market is flawed ... lucky Uwe that the German taxpayer is paying for a lot of this waste to get deductments.\"\r\n1\t\"I grew up in Brazil and I used to visit and marvel at the beautiful coast where the movie was filmed. The area is called \"\"Parati\"\" and is part of the \"\"Green Coast\"\" of the Rio de Janeiro state. It is some 150 miles from the Rio de Janeiro city.<br /><br />This movie brings back to life the world of 16th century Brazil, where Europeans were barely starting to explore the coastline, which was still in pristine state and sparsely populated by various native tribes. French and Portuguese fought each other for territory and for the upper hand on the Brazil wood trade, all the while negotiating with the natives, who also fought each other for whatever reasons.<br /><br />One French misfit (\"\"a mercenary\"\") is left to die by his own compatriots but manages to escape and is kept prisoner by an all-naked native tribe. While he is a \"\"slave\"\" of the chief, according to the customs of the tribe, he is allowed to live in relative comfort for months until the time is right for him to be killed and eaten in a ritual of revenge.<br /><br />What I love about this film is that it recreates in loving detail the natives' villages and their way-of-life (they walked naked and were cannibals) and asks us to recognize and accept the life in those times as it was: in a gorgeous garden-of-eden, life was messy, violent, full of pathetic superstition and bizarre customs. The Europeans arrive and bring their own problems, including more violence with better weapons and greed. There is no romanticized \"\"noble savages\"\" or \"\"heroic explorers\"\" here, it is just people trying to survive in a tough world.<br /><br />The movie is neither unduly sympathetic nor dismissive of the natives. From what I know of the subject, the depiction is fairly accurate which adds an air of uniqueness to the project: how many movies have you seen regarding the lives of Brazilian natives and their early affairs with Europeans?\"\r\n1\tI saw this movie with a bunch of friends and although only two of us walked out of the cinema thinking how cool it was, the others just laughed and commented on how stupid it was. Well that was because it isn't supposed to be taken so seriously, basically it is a a movie that mocks horror flicks and does a damn good job.. There seems to be another movie coming out like that too, umm... Scary Movie?? Well this is Aussie, and original!!! Jessica Napier does a surperb performance and Sarah Kants has a definate bright future in acting! I hope to see more of them. Molly Ringwald was a good move, and Kylie was an even better move. The Impossible Princess was Queen of the screen!! I recommend seeing this flick, as you'll be guessing until the very end the connection with Raffy, Hilary and The movie that never got finished 20 years ago.\r\n0\tIt was agonizingly bad movie. It will eat your heart out while you watch it. I beg you: don't watch this movie! You will hate you losing 1,5 hours of your lifetime! It's not as some movies that are so bad that you can watch those and enjoy... this movie is boring as... there is nothing as boring as this movie. You will hate yourself after watching this movie till the end. And you will hate yourself that you didn't listen to me.<br /><br />I hate myself. I tortured myself and I did watch this movie to the end. Now excuse me, I will shot myself. I have seen all.<br /><br />Please. Read this very carefully. Don't watch this film.<br /><br />Please!\r\n1\tthis move was friggin hilarious!!! funniest I've seen in a while, akshay and john kick ass as always, and the chicks are hot too. the story is awesome, lots of great jokes, and whoever reviewed this before me is an idiot. to him i say that u are not of Indian background so u wouldn't understand the humor u moron. don't rate movies u don't understand. what did u watch, the subtitle version where majority of jokes are lost in translation? thats what i thought jackass. <br /><br />akshay kumar is the best actor ever and proves once again his versatility, he can do not only action but comedy as well, and is excellent at it. john has proved himself as well, this is his first comedy role and he was also excellent at it.\r\n0\t\"The cult of personality has elevated the status of Roger Corman, Sam Arkoff, Lloyd Kaufman etc. as kings of the B's. Because the folks at Crown International were so key, they haven't been elevated to the status they richly deserve. A film like THE VAN may now seem like a disposable piece of Drive-in esoteria, but it was a sizable hit when it was released (not to mention subsequent re-releases as a double feature with other Crown hits).<br /><br />THE VAN was a perfect example of Crown's hit strategy of seizing upon the mood of movie-goers at the time of a film's release. Here, it was sex, drugs, rock 'n roll and the brief \"\"Custom Van\"\" fad. As others have noted, it is ironic that the \"\"hit\"\" song in the film refers to a Chevy when the title vehicle is a Dodge in the film itself. I had a town Selectman where I was at the time even declare these vans to be \"\"dens of sin on wheels!\"\" A perfect ad line for the film!<br /><br />There are the usual assortment of \"\"good\"\" and \"\"bad\"\" girls, muscle-heads and low-brow hijinks (including a supporting bit by Danny DeVito). In many ways this isn't much different from the old Beach Party movies of the 60's, but now spiced up with Nudity and Drug use. Obviously done on a limited budget and a limited schedule, the film coasts along pleasantly enough with a breezy charm that compensates for some, by today's standards certainly, un-PC views of women.<br /><br />The classic touch is a Toaster for Bobby's den of sin on wheels. Yes, a Toaster! Hey, you gotta have something hot for those munchies!<br /><br />Grindhouse Fest.\"\r\n0\tAfter reading through many of the reviews, I don't know what movie some people were watching, but clearly it wasn't the same one I saw.<br /><br />This movie is horrible. The acting, primarily Moore's, is just terrible. The woman cannot act. Nice tits, but she just can't act. At no point did she come across as the actual character. Instead, it was spoiled Hollywood actress goes to the beach to play make-believe with the boys.<br /><br />And that's what this movie ultimately is -- Hollywood make-believe. The training sequences are over the top. The politics -- over the top. The political correctness -- over the top. The combat scenes -- you guessed it, over the top. Your mission is to get in and get out without being detected. So what do you do? Why shoot off as many rounds and make as much noise as possible, of course. Oh G.I. Jane, you can be my wing man anytime.<br /><br />The premise is good, but as soon as Hollywood gets a hold of it, we end up with Top Gun with tits.<br /><br />What more is to be expected from commercial US films anymore? Not much I guess.\r\n1\t\"Very intelligent humor Excellent performing I can't believe how people could think it deserves a 1/10! I hope this movie will be shown everywhere so everyone can enjoy it If you ever have the opportunity, watch it... don't miss it There is a part when the principal actors are driving and singing \"\"Happy birthday\"\" and \"\"el payaso plinplin\"\" (an Argentinian song for kids (I think... it could also be south American, I'm not sure)). This two songs that have the same melody... but people don't usually realize that... it's just grate! I tried to write this in both Spanish and English, because it's an Argentinian movie... but the page wouldn't allow me :( Hope you enjoy it!\"\r\n1\t\"It's good to see that Vintage Film Buff have correctly categorized their excellent DVD release as a \"\"musical\"\", for that's what this film is, pure and simple. Like its unofficial remake, Murder at the Windmill (1949), the murder plot is just an excuse for an elaborate girlie show with Kitty Carlisle and Gertrude Michael leading a cast of super-decorative girls including Ann Sheridan, Lucy Ball, Beryl Wallace, Gwenllian Gill, Gladys Young, Barbara Fritchie, Wanda Perry and Dorothy White. Carl Brisson is also on hand to lend his strong voice to \"\"Cocktails for Two\"\". Undoubtedly the movie's most popular song, it is heard no less than four times. However, it's Gertrude Michael who steals the show, not only with her rendition of \"\"Sweet Marijauna\"\" but her strong performance as the hero's rejected girlfriend. As for the rest of the cast, we could have done without Jack Oakie and Victor McLaglen altogether. The only good thing about Oakie's role is his weak running gag with cult icon, Toby Wing. In fact, to give you an idea as to how far the rest of the comedy is over-indulged and over-strained, super-dumb Inspector McLaglen simply cannot put his hands on the killer even though, would you believe, in this instance it happens to be the person you most suspect. Director Mitch Leisen actually goes to great pains to point the killer out to even the dumbest member of the cinema audience by giving the player concerned close-up after close-up.\"\r\n1\tI loved this excellent movie. Farrah Fawcett played the part phenomenally and with good heart. She plays a woman who is driven to extreme measures to protect herself and her friends after she is attacked by a stranger. After being rejected by the police she realizes she is on her own.<br /><br />Then one day when she at home alone the stranger breaks into her home and attacks her again. Not being about to call the police or get him out she is forced to spray him in the eyes and imprisons him in her fireplace.<br /><br />I think there is a need for a wake up call to the laws of the land. They are too easy on these criminals. It's time for more harsh punishments.\r\n0\tThis UK psychological thriller is known in the United States as CLOSURE. Exploitation of X-Files' Gillian Anderson, who plays an attractive middle aged businesswoman of substance named Alice. She must attend a business party and invites Adam(Danny Dyer), who just installed a security system for her, to be her escort. On the way home, speeding through the woods on a narrow lane, Alice's auto collides with a deer. After pulling the wounded animal off the road, the couple is savagely attacked by a drunken gang of thugs. Adam is beat to a pulp; Alice is gang raped and both are emotionally and physically devastated by the ruthless attack. When the identities of their attackers are discovered, Alice and Adam set out to exact revenge...brutal revenge. The couple at times find themselves at odds on how to deal with the ruthless attackers. Their final decision is to avenge with no mercy. Let there be no mistake, payback IS hell. Also in the cast: Anthony Calf, Ralph Brown, Francesca Fowler and Antony Byrne. Brutal violence, disturbing images, nudity and graphic rape.\r\n0\t\"\"\"Ghost of Dragstrip Hollow\"\" appears to take place in a spotless netherworld, an era long gone by, where the biggest sin a kid could commit would be in defying the law and getting a traffic ticket. It opens with a young female auto fanatic getting the business from her arch rival, who pressures her into a car race. That's about it for the drag-racing--this B-flick is mostly concerned with rock 'n roll, man! The folks at American International were obviously fond of decent, square teens who liked to party and yet didn't mind an adult chaperone. There are a few amusing double entendres and fruity exchanges (Necking Kid: \"\"We thought we'd come out for some fresh air\"\"...Dad: \"\"Where did you think you'd find it, down her throat?\"\"), but the ghost is a little late in arriving. Brief at 65 minutes, the movie cheats us with a climactic car race that actually takes place off-screen and a pre-\"\"Scooby Doo\"\"-styled unmasking which makes no sense. However, for nostalgia buffs, some mindless fun. ** from ****\"\r\n0\tI watched Cabin by the Lake this afternoon on USA. Considering this movie was made for TV is was interesting enough to watch the sequel. So, I tune in for the airing this evening and was extremely disappointed. I knew I wouldn't like the movie, but I was not expecting to be perplexed by the use of DV (digital video). The movie would have been tolerable if it wasn't for these juxtaposed digital shots that seemed to come from nowhere. I expected the plot line to be tied in with these shots, but there seemed to be no logical explanation. (WARNING: THE FOLLOWING MAYBE A SPOILER!!!!) The open ending in Cabin by the Lake was acceptable, but the open ending on the sequel is ridiculous. I can only foresee Return of Return to The Cabin by the Lake being watch able is if the movie was shown up against nothing, but infomercials at 4 o'clock in the morning.\r\n1\t\"While \"\"The Kiss of the Spider Woman\"\" cast Raul Julia as a political prisoner in an unidentified Latin American country, this time he works for a dictator in a fictional Latin American country. Specifically, the dictator suddenly drops dead, so Julia replaces el presidente with a Broadway actor (Richard Dreyfuss) shooting a movie in the country. From there, Dreyfuss has to figure out how to be a dictator, all the while balancing it with his own life.<br /><br />Is it appropriate to turn the tense situation in Latin America into comedy? Well, \"\"Moon Over Parador\"\" does a good job with it. No matter what they do in this movie, they pull it off. It just goes to show why Richard Dreyfuss is one of the greatest actors of our era, and what we lost when Raul Julia died. Definitely worth seeing. Also starring Sonia Braga (who co-starred with Raul Julia in \"\"TKOTSW\"\"), Jonathan Winters and Sammy Davis Jr.<br /><br />I agree: the first lady is hot.\"\r\n0\t\"This is the second British Rank film to adapt the stories of Sommerset Maugham to film. All but one story from 'Quartet' does not travel well into the contempory era; and the actors speech is decidedly \"\"clipped\"\", as only British pre-1950's actors delivery can be. In anycase 'Trio' seems tighter and more filmic than the first film adaptation.<br /><br />One of the problems these two films can't overcome is that their source material was written 25-30 years prior to the films. Consequently, by the 1950's Maughm's (pre-war) popularist \"\"small morality\"\" storyteling seemed rather quaint, if not downright coy.\"\r\n1\tThis was a great movie that had a lot of under lying issues. It dealt with issues of rascism and class. But, it also had a message of knowing yourself and taking responsibility for yourself. This movie was very deep it gave the message of that you and only you can control your destiny. It also showed that knowing yourself and being comfortable with who you are is the only way you will ever fit into society. What others think of you is not important. I believe this movie did a wonderful job of showing it. The actors I think were able to convey each character wonderfully. I just thought it was amazing how deep this movie really was. At a just glancing look you wouldn't see how deep the movie is, but on further look you see the underlining meaning of the movie.\r\n0\tElvis has left the building and he's lucky because he didn't have to watch this unfunny stinker. Scene after scene director Joel Zwick finds ways to make an unfunny script even less amusing. Filled with unfunny deaths, trite gay characteratures, and hack jokes, this film is more desperate than amusing. This is the sort of film that makes one hope Kim Basinger follows Doris Day into premature retirement. Let us remember her the way she was (talented) and not what she's become. David Leisure, the delicious Dennis Richards and the rest are all wasted talents here. Zwick finds a way to minimize their talents at every turn. The guy playing Elvis sounds more like Gomer than the King.The only really good bit of casting is the young girl who plays Basinger as a preteen. She really looks like her and is actually pretty good. The only other reason to watch this film at all is to look for the Tom Hanks cameo. The cameo isn't all that funny, but at least its not painful. One has to wonder if Zwick has incriminating pictures of Hanks or something that would make him do this movie.\r\n0\tWell, I like to be honest with all the audiences that I bought it because of Kira's sex scenes, but unfortunately I did not see much of them. All sex scenes were short and done in haphazard manner along with all the weird and corny background music just like all other B movies - it just doesn't look much like two people having sex. There is a tiny bit of plot toward the end - Kira's new lover is a killer. Whoa!!! how shocking!!! Why don't we nominate this movie for Oscar Award? I can't imagine how bad the movie would look like if it were R-rated (Mine is imported from UK, rated 18). Conclusion? Put it down and walk away, so yon won't end up with being a moron like me.<br /><br />Score: 2/10\r\n1\t\"\"\"It wasn't me! It was, er, my twin brother Rupert!\"\" Bobby says to Dugan when confronted about being over at Sally's place. I have used this line dozens of times over the years (no one has yet to believe it, though).<br /><br />This movie is one of the all-time best for sheer fun and nonbelieveability. Steven Oliver was perfect for the part of Dugan, so much so that he was in 1978's \"\"Malibu Beach\"\" as the same character (not nearly as much screen time, though).<br /><br />\"\"Nobody calls Dugan a turd!\"\" is another line for the ages. This classic film was definitely worth the price of admission.\"\r\n0\tOk, first of all, I am a huge zombie movie fan. I loved all of Romero's flicks and thoroughly enjoyed the re-make of Dawn of the Dead. So when I had heard every single critic railing this movie I was still optimistic. I mean, critics hated Resident Evil, and while it may not be a particularly great film, I enjoyed it if not for the fact that it was just a fun zombie shoot-em up with a half decent plot. This however, is pure crap. Terrible dialogue, half-assed plot, and video game scenes inserted into the film. Who in their right mind thought that was a good idea. The only thing about this movie (I use the term loosely) that I enjoyed was Jurgen Prochnow as Captain Kirk (Ugh). While his name throws originality out the window, you can see in his performance that he knows he's in a god awful film and he might as well make the best of it. Everyone else acts as if they're doing Shakespeare. And very badly I might add. Basically the only reason anyone should see this monstrosity is if you a.) Are a huge zombie buff and must see every zombie flick made or b.) Like to play MST3K, the home game. See it with friends and be prepared for tons of unintentional laughs.<br /><br />\r\n0\tWhy take a show that millions of us watched and loved as children and make a complete joke of it? They ask why Hollywood isn't making the money it used to. Because they put out garbage and pay actors huge amounts of money to be garbage men and ask us to pay $10 to see their garbage. The TV show was what it was, good people in bad situations where the good IL' boys come out on top. It wasn't Gone with the Wind but it was fun. This movie is garbage! Hollywood can't come up with anything original so they take something that was good and ruin it for some $$$$. I only hope that this movie makes 10x's less than it cost to make. The only one's to have any fun with this crap are the guys who got to drive the General Lee. The audience is the victim.<br /><br />Don't see it, watch the reruns of the TV show instead. They still hold up 20 years later.\r\n1\t\"What can you possibly say about a show of this magnitude? \"\"The Sopranos\"\" has literally redefined television as we know it. It has broken all rules, and set new standards for television excellence. Everything is flawless, the writing, directing, and for me, most of all, the acting. Watching this show you'll find yourself realizing that these characters are NOT real. The acting tricks you into thinking there is a real Tony Soprano, or any character. This show is also very versatile. Some people don't watch the show because it's violent, it's not all about the violence, it's about business, family, and many deeper things that all depend on what you, as a fan see. For me, I don't like when people refer to the show, a show about the Mafia. For me, it's a show about family. A family who, through generations, happen to be apart of the mob. Overall this is a masterpiece of a show. This is what television should be. Right here. Complex characters from stunning acting, magnificent story lines from brilliant writing, and what do you get when you mix these ingredients together? A show that defines excellence, and dares to be different.\"\r\n1\t\"I first saw this film about 11 years ago when my former college Accounting professor recommended it to me. I was amazed that a movie from 1968 could so coherently and hilariously portray computer crime. Maggie Smith is delightful and Ustinov plays the \"\"retro hacker\"\" perfectly. \"\"O Nolo Mio\"\"!!!!!\"\r\n0\t\"This movie was just heckled by MST3K and with good reason. First and foremost because it is a \"\"cop\"\" movie starring Joe Don Baker, who we all know is about as good a cop actor as Michael Jackson is a country western singer.<br /><br />All the typical cop movie plot devices rear their ugly heads, bar fights, children hostages in shoot outs, bad acting, lame police chiefs, bad acting, revenge/justice, endless goons , and of course, bad acting. Don't watch this without an MST3K filter folks.\"\r\n1\tYou know the story - a group of plucky no-hopers enter a competition they seemingly have no chance of winning - it's a tale that has been done to death by Hollywood (Bring It On, The Karate Kid, Escape to Victory, Best of the Best etc). Now Korea gives it a go with a Taekwondo team struggling for glory  and guess what  the result is predictable but ultimately satisfying.<br /><br />The fact that this movie doesn't fall flat on its face is down to the talented young cast who really make you care about the characters, and this in turn keeps you watching to the end.<br /><br />Fans of your typical martial arts movie may be disappointed  Taekwondo does not deliver the usual flurry of moves and acrobatics seen in most Kung Fu films; the action is limited to (albeit impressive) kicking and the occasional punch. This doesn't matter though, since it is the interaction of the characters and their fight to make something of themselves which makes this movie a success.\r\n0\tEven if it were remotely funny, this mouldy waxwork of a film would still be soberingly disrespectful. Stopping just short of digging up the boys' corpses and re-enacting 'Weekend At Bernie's'  but only just  producer Larry Harmon and the director of the frickin' 'Ernest' films use holding the copyright as an excuse to crap all over Stan and Ollie's legacy. Gailard Sartain does a fair Ollie impersonation but Bronson Pinchot wouldn't reach tenth place in a Stan lookalike contest; even if they were both spot on the film would be no less detestable. The less said about the surrounding catastrophe the better. Makes 'Utopia' look like a dignified swan song.\r\n1\tAlthough it has been remade several times, this movie is a classic if you are seeing it for the first time. Creative dialog, unique genius in the final scene, it deserves more credit than critics have given it. Highly recommended, one of the best comedies of recent years\r\n1\t\"The 100 black and white half-hour episodes of the early situation comedy \"\"Mr. Peepers\"\" were originally broadcast from 1952-55 on NBC. Like a lot of baby boomers this and \"\"Ding Dong School\"\" are my earliest memories of television. Since both ran later in syndication it is hard to tell how many of these memories are actually tied to the original broadcasts.<br /><br />\"\"Mr. Peepers\"\" is worth checking out for more than its nostalgia value. It represents a very different style of situation comedy than shows like \"\"The Honeymooners\"\" and \"\"I Love Lucy\"\". The genre could have gone in two different directions in those days and ended up taking the loud abrasive path of those two shows; which is probably why they still seem contemporary. <br /><br />\"\"Mr. Peepers\"\", which was differentiated by its intelligent restrained tone, may appear slow and dull in comparison. But it's really more a matter of adjusting to the different style. Once you get into the characters it will win over most intelligent viewers. Credit should be give to the show's producer, Fred Coe, a key figure in early television whose dramatic anthologies are also worth checking out (\"\"Philco Television Playhouse\"\", \"\"Lights Out\"\", \"\"Playhouse 90\"\", \"\"Producers Showcase\"\", \"\"Playwrights 56\"\", \"\"Fireside Theatre\"\", etc.) even on kinescope.<br /><br />\"\"Mr. Peepers\"\" offered a much more gentle style with Wally Cox (to be the voice of \"\"Underdog\"\" a few years later) in the title role, Robinson Peepers, a mild-mannered high school science teacher. His glasses were his trademark and a symbolic link to his name and role as a passive observer. <br /><br />The series provided Cox with an outstanding supporting cast. Tony Randall played his brash best friend, history teacher Harvey Weskit. Jack Warden played Frank Whip, the loud gym teacher whose mild bullying gave the show most of its conflict elements. <br /><br />There is some love interest competition involving the school's nurse, Nancy Remington (Patricia Benoit), with viewers quickly aligning with Mr. Peepers who seems a much better match for the gentle Nancy. Their on-screen marriage near the end 1953-54 season captured national attention, an early version of the \"\"Who Shot J.R.?\"\" frenzy.<br /><br />Then again, what do I know? I'm only a child.\"\r\n1\t\"Most people who chase after movies featuring Audrey Tautou seem to not understand that Amelie was a character - it is not really Audrey Tautou's real life personality, hence, every movie she partakes in is not going to be Amelie part 2, part 3, etc.<br /><br />Now with that said, I too picked up this movie simply because Audrey was in it. Yes, it's true, there is a big gap after the first scene where she isn't seen at all for maybe 45 min, but I didn't even miss her because I was having so much fun with the other characters. The guy who lies about everything is too funny, the guy who justifies people who run out of his cafe and skip out on the bill by finding coupons and such which balance out the loss, actually.... getting into all the characters here could take quite a while, but this is one of the best movies I've seen in a while.<br /><br />Audrey Tautou's character Irene is not the overdone sugary girl that Amelie was. In fact, as Irene, her rudeness to a bum asking for change caught me off guard at first. In this film, Irene is a girl with good intentions, but over the course of a (very awful) day, her disposition becomes more and more sour and pessimistic.<br /><br />What makes this film completely great is you have all these really interesting stories and plots building... very entertaining to watch, great scenery and shots, very colorful and never too slow, and all of the characters can actually act. The best part of the movie comes with about 20 minutes left.... this is when all of the plots start to mesh together and the ride really picks up and everything ties together and makes sense, and the whole butterfly effect blossoms. I swear, it was the best 20 minutes of film I've seen in quite a while, and the ending.... It made me think \"\"damn I really lucked out finding this movie\"\". The ending to this movie is top notch. Whoever wrote the script for this is brilliant, because not only are there all these other subplots going on, but to somehow make them all tie in together (and in a sensible manner, which is the case here) but also to make each character feel human and come alive, not just some stale persona used as a crutch to build up this whole butterfly effect... very impressive.<br /><br />I highly suggest this movie as it's a great film to watch anytime, in any mood, with any company or alone.\"\r\n0\tIf this documentary had not been made by the famous French director, Louis Malle, I probably would have turned it off after the first 15 minutes, as it was an incredibly dull look at a very ordinary Midwestern American town in 1979. This is not exactly my idea of a fun topic and the film footage closely resembled a collection of home movies. Considering I didn't know any of these people, it was even less interesting.<br /><br />Because it was a rather dull slice of life style documentary, I wondered while watching what was the message they were trying to convey? Perhaps it was that values aren't as conservative as you might think--this was an underlying message through many of the vignettes (such as the Republicans whose son was a draft resister as well as the man and lady who thought sex outside of marriage was just fine). Or, perhaps the meaning was that there was a lot of bigotry underlying the nice home town--as several ugly ideas such as blaming Jews for financial conspiracies, anti-Black bigotry and homophobia all were briefly explored.<br /><br />The small town of 1979 was explored in great depth and an idyllic sort of world was portrayed, but when the film makers returned six years later, the mood was depressed thanks to President Reagan. This seemed very disingenuous for several reasons. First, the 1979 portion was almost 90% of the film and the final 10% only consisted of a few interviews of people that blamed the president for just about everything but acne. What about the rest of the folks of this town? Did they all see Reagan as evil or that their lives had become more negative? With only a few updates, it seemed suspicious. Second, while it is true that the national debt doubled in the intervening years, so did the gross national product. And, while Malle shows 1979 as a very optimistic period, it was far from that, as the period from 1974-1980 featured many shortages (gas, sugar, etc.), strikes, high inflation and general malaise. While I am not a huge fan of Reagan because government growth did NOT slow during his administration, the country, in general, was far more optimistic than it had been in the Ford and Carter years. While many in the media demonized Reagan (a popular sport in the 80s), the economy improved significantly and the documentary seems very one-sided and agenda driven. Had the documentary given a more thorough coverage of 1985 and hadn't seemed too negative to be believed (after all, everyone didn't have their lives get worse--this defies common sense), then I might have thought otherwise.<br /><br />Overall, not the wonderful documentary some have proclaimed it to be--ranging from a dull film in 1979 to an extremely slanted look at 1985.<br /><br />By the way, is it just me, or does the film DROP DEAD GORGEOUS seem to have been inspired, at least in part, by this film? Both are set in similar communities, but the latter film was a hilarious mockumentary without all the serious undertones.\r\n1\t\"Who made this film? I love this film? Somebody has a wacky sense of humor...<br /><br />This Zany, Surreal style of film making is appealing, but it is hard to create - or easy to forget - that substance, and characters who actually have souls, are what give such a film depth. Without that a comedy is just a bunch of ideas. Who cares. It may get laughs, but it goes through you like a half-good hamburger...next...<br /><br />Crosseyed may not intend to change anybody's life, but I appreciate the depth and substance. They sneak up on you. I started this film thinking \"\"Oh, I get it - indie comedy - off the wall - gonzo...yup.\"\" And it is that - but if you pay attention there is sub text and character moments filling it out. In this sense the film breathes. It makes propositions that give pause - if you're available to see them - and then, of course, it goes on its insanely merry way.<br /><br />You will miss the point if you don't sign the contract to suspend belief at moments in the film. Stepping between reality and surreality IS one of the points of this movie.<br /><br />Crosseyed isn't perfect, but smart people made it. I want more.<br /><br />The dining room scenes are an absolute HOOT.<br /><br />Put on your seat belt.\"\r\n1\t\"I LOVE Jack's jokes like 'The cliché is...' or \"\"Over the top cliché guy, black, oily skin, kinda spooky...\"\". He is just hilarious! Daniel's starting to catch up on him to! Good thing Jack's not on the team anymore (in a way) or else it would have been sarcasm mania!!!!I just love all the plots (season 8, a little less, I have to admit), the characters are great, the actors are great, I'm starting to pick up facial expressions (and more) from Jack, Daniel and Teal'c...It just all theoretically possible and exciting...oops! Their I go again!!! Sorry, I'm also starting to pick up traits from Carter, and all of this is driving my parents NUTZ!!!!!!! Well, to conclude, I think it's good for another three seasons or so, especially if they keep on packing the episodes with all this humor, drama, action and so forth!!!!!!!!!!!!!!!!\"\r\n0\t\"Peter Sellers plays Dick Scratcher (ha,ha), a cook for a pirate ship who takes over as captain after he murders the previous one. Although he's witnessed a treasure being buried, he begins losing his memory and the treasure map he obtains becomes blank. Thus, Dick is forced to find someone who can see and communicate with ghosts (do you place an ad for that?) and help lead a path to the treasure. It's mind boggling how anyone could have bankrolled this pointless film. Former Goon Spike Milligan replaced Medak as director, and given Medak's talents in the film The Ruling Class, you can probably guess which of the grainy, poorly lit scenes had Milligan in the director's chair. Peter Boyle makes a brief appearance in the film's first 10 minutes as the doomed pirate captain. He's probably quite thankful that Young Frankenstein was released the same year this was filmed and canned, so that he can keep this off his resume. Franciosa looks dashing as the handsome power-behind-Scratcher but he and Seller both look pretty desperate, with even Sellers' makeup and hair looking quite terrible. They had to know this movie was bombing even as they were filming it. With lines like these, I can understand any possible unease:<br /><br />PIERRE: (about to be hanged) You'll pay for this.<br /><br />SCRATCHER: No, I won't. I'll do it for free.<br /><br />And that's one of the GOOD jokes. It's amazing to me that much of Sellers prolific material is still in the vaults, but this was made available on VHS more than 15 years ago! How about someone stepping up to the plate and releasing in the US the well-received British TV program \"\"A Show Called Fred\"\" starring Sellers, Milligan, and directed by the great Richard Lester?\"\r\n0\tCasting bone to pick: David Jannsen was 38 playing the father of Robert Drivas, who was then, 31 (yeah, I realize he's supposed to be just out of college, but clues in the script have him being a loafer and so he's probably 24-25 in the script--- that still puts Jannsen in parenting classes in Junior High). I assume the AMA wrote medical miracle up in their 1938 Year in Medicine. This movie hasn't aged very well at all and now it's main appeal is just to see a snap shot of Sin City, circa 1969 and all the incessant smoking, the weird hair (Drivas has an atomic comb over that makes him resemble a well-groomed hip Cousin It) and trendy fashions that went along with it. If anyone remembers, LV wasn't exactly London... the city coddled the mob and codger gamblers in those days. Drivas comes off as sexually ambiguous; his dad thinks he might be gay (in a sad irony, Drivas himself died of AIDS at 47) and the soapy conflict is from the generation gap issue (ahem, as if one may call 7 years a gap). Sonny boy wants to be his own man and dad wants to pull him into the casino (Caesar's Palace!), and plies him with girls (including the horny-for-money Edy Williams). Interestingly enough, the son doesn't seem to mind being thought of as gay--- unusual for the time and a cute Brenda Vaccarro is nearby to swoon platonically over him. What nudity there is is awfully lame--- just what was needed to pull the audience in for an 'R' rating in the early days of the MPAA rating system (which then was G-M-R[16]- and X). The editing is HORRIBLE and there's stupid-silly overdubs by The Committee (a late 60's neo-avante-garde comedy troupe that mercifully faded off the map within a couple of years). Don Rickles is on board as a blackjack dealer... seemingly preparing him for a role as a floor manager in the much better CASINO two decades later. Not to give anything away, but they would've dealt with Mr. Rickles' character with power tools and a hole in the desert back then. A curiosity at best, far from Joshua Logan's usual caliber of work. Dos/Dias. Now go watch CASINO again...\r\n1\tIt aired on TV yesterday, so I decided to check it out. This was one of the last Bruce Timm/Paul Dini DTV projects related to their old 1992 Batman the Animated Series, after that Jeff Matsuda came along and re-imagined Batman with his new The Batman series, but anyway, the story of this new Batman movie centers around the appearance of a new vigilante known as Batwoman, however Batman feels the need to stop her because of her extreme methods, and also in the meantime take down The Pengiun and Ruphert Thorn who both are secretly working with Carlton Duquesne(who's having family troubles) and another villain(which is later revealed in the movie) on a weapons smuggling operation,they also put a bounty on the Batwoman. The question is: who is this mysterious Batwoman and is it possible that they could be more then one? It's up to Batman to solve this mystery and stop Penguin's latest operation. For an animated movie, it has a fairly complex plot and a serious tone, which is good. Another plus was the complete redesign of the Penguin who looks much more like the sophisticated Mob Boss we're used to seeing in the comics, unlike his previous designs that borrowed elements from Tim Burton vision of Pengium(sewer rat and circus freak). Even though the movie contains a love subplot it's never carried that far and doesn't derail the movie like say, Batman Forever. The voice acting is standard quality for these direct-to-video projects(if only Batman: Mask of Phantasm took this route), Kevin Conroy still shines as Batman/Bruce Wayne. And like I said despite running for some very short 80 minutes, it manages to make a pretty good(and complex) storyline complete with a few minor twists and bucket loads of action. There are a few downsides, however, Nightwing is nowhere to be seen, and I'm sure Barbara Gordon and Bruce Wayne don't click as a couple, even though is just referenced, Tim Drake(aka Robin) does very little in the movie and to be quite frank, I was never a big fan of Paul Dini and Bruce Timm's Batman character design(especially in their Batman shows post-BTAS), this The New Adventures of Batman and Robin, well, it kinda makes Batman look fat then rather a well-built bulked up individual(kinda like the Jeff Matsuda character model from The Batman). Bruce Wayne seems a bit awkward, those blue eyes make him look more like Clark Kent then Bruce(though it's true they do look very much alike). Another downside is Rupert Throne(no explanation as to why he is in this deal, but it's safe to say he's has goons and what's a cut of the deal) which does very little more then hang out with the Penguim or get himself hurt every time he points a gun at someone(count how many times this happens in the movie and you'll be surprised. Overall, a good Batman animated movie, worth at least a rental.\r\n1\tI work in a library and expected to like this movie when it came out 5 years ago. Well I liked Parker Posey a lot (she's a wonderful actress) and Omar Townsend was really cute as her boyfriend (he couldn't act but when you look like him who cares?) but the movie was bad. It wasn't funny or cute or much of anything. Posey kept the movie afloat with her energy. But she learned the Dewey Decimal system OVERNIGHT and then shelves tons of books to the beat of music??!!!!??? Come on! Also I did have a problem with the way she looked when she became a full-fledged librarian at the end--hair in a bun, glasses, no sense of humor--can we let that stereotype go please? Worth seeing for Posey and Townsend but that's about it. The TV series was much better.\r\n1\t\"Friz Freleng's 'Rumours' is an excellent Private Snafu cartoon that warns against spreading panic-inducing rumours during wartime. Produced, as were all the Snafu shorts, to be shown to military audiences as entertaining instructional films, 'Rumours' is extremely imaginative and crams tons of ideas into its very brief lifespan. When Snafu starts a rumour about a bombing, it escalates into an eventual rumour that America has lost the war. This is illustrated brilliantly by way of a long, rubbery piece of baloney and several strange, fictional creatures who come back to haunt Snafu with ever more terrible news about his country's military. 'Rumours' is inventive, fast paced and funny, all of which help to overshadow the rather laboured, \"\"don't badmouth the military\"\" message. It stands up as one of the best of the Private Snafu shorts.\"\r\n0\tWhat the F*@# was this I just watched? Steven STOP!! Please! This movie is insatiably bad and silly. In a bizarre departure from action and adventure, Mr. Seagal is now fighting (obviously) wish-they-were-vampire 'like' creatures with super human strength.? OK? Oh, and their eyes blink sideways in an inhuman way? Wow! Even still in this movie however, to quell Seagals have-to-have-the-last-punch-and-no-one-can-kick-my-a$$ ego, HE is somehow stronger than they are. However all of the average humans are getting crushed all around him. Come on, I can understand the big mouth neighborhood bully or drug dealer, but these are super human strength people. Oh and get this, Seagal goes through a brief sting of identity issues, because apparently he and his cohorts in the film think he is Wolverine! Oh My GO... And worst than all of that! Yes, there is a worse than that. He has a voice over even changing voice in mid sentence while we are looking at his face. They obviously sound nothing like him and I believe it may be one of the other actors in the film. It was pure madness. Although I wanted to turn it off I always watch a movie to he end. This is an all time low even for your direct to video movies Steven. Awful! Awful! Awful! Two thumbs down! Redemeption qualities? Well I guess so, I will be fair in that aspect. At least some of the special effects were OK, and I like the choice of wardrobe for the actors and actresses. The women all were quite attractive IMO. Still, and I said STILL, it does not make up for the blatant X-Men, Underworld, (insert your favorite zombie, vampire movie here) rip off! The director, writer, producer, ALL should be bansihed & exile from the movie business. I think I feel the way that most people feel about Blood Rayne (and just about all other Uwe Boll pictures) about this film. That's my whole $1.00 on this film. View if you dare.\r\n0\t\"This is one of the worst films I've ever seen. I looked into it mainly out of a morbid curiosity since I loved the novel, and I wish I hadn't. I turned it off after a little less than an hour, though I wanted to turn it off after five minutes. I wish I had. It disregards the novel a lot and changes all sorts of factors. Unless the film managed to redeem itself in the last 50 or so minutes (which would be impossible) I would in no way recommend this. Its an insult to one of the greatest writers of the 20th century. I don't think, as many people say that it is, that \"\"The Bell Jar\"\" is necessarily unfilmable, but this particular rendition could have been done without. I'd almost like to see this one day in the hands of a director and screenwriter who can do it justice.\"\r\n0\tImages are great and reflect well the landscapes of Canada. The story was, on the other side, quite boring; To my eyes it was a love story in the woods just like Titanic was a love story on a boat. I did not feel that Grey Owl was great environmentalist. I usually like Lord Attenborough but this one was ... bad.\r\n0\tIt's like what other Dracula movies always do, the minions of Dracula always on Dracula's side, which is what disappointed me at the ending. Regardless the person wants to stay a vampire or not, I would like to see something like in the first movie that the minion fights against her master. It is much interesting (since you can almost predict how the story goes) than just either the priest or D. win the game (we need some surprising plots!).\r\n1\t\"There are two movie experiences I will always cherish. The first was seeing \"\"Star Wars\"\" for the first time at the age of 10 with my little brother. A close second is sneaking into Halloween at the Tripple Plex with my good friend, Trevor, in late October 1978. Halloween left me breathless, speechless, and downright scared. Everyone knows the story. Young Michael Myers decides to kill his sister on Halloween 1963. He escapes a mental hospital 15 years later to return to Haddofield to wreck havoc once again. He spots Laurie (Jamie Lee Curtis), a shy senior who enjoys babysitting, and begins stalking her. Her partying friends across the street are killed, one-by-one as Michael sets his plot to get her. Ironically, the young boy she tends on Halloween is afraid of the \"\"Boogeman,\"\" and can see him outside. During the murder spree, Dr. Sam Loomis (Donald Pleasance) works hard to find Michael before he unleashes his fury. He has no proof, no evidence, just a hunch he has to sell to Sheriff Bracket (Charles Cyphers). As the plot unfolds, you have a suspense-driven movie instead of a cheap thrill scare. Alfred Hitchcock once said, \"\"You can have four men at a table playing cards and they don't know there is a bomb and it goes off. That is a cheap thrill. However, put four men at a table who discover a bomb and discuss what to do about it--then it doesn't go off, then you have suspense.\"\" Director John Carpenter takes that advice to the hilt in Halloween. The audience will see glimpses of him outside, watching, stalking his victims. We gasp. Will he kill her? When will he kill her? Then, Michael disappears. Carpenter also uses the suspense in lieu of special effects that usually highlight the gore. This movie has little blood, but still provides good scares. One of the best scenes is Michael lifting Bob off the ground. He rears the knife back as it glints off the moonlight, then he drives it. All you hear is a loud thud, then the audience sees Bob's feet drop lifelessly. Carpenter was the first to use a vantage point from the scene of the killer. This also peaks our audience. What will he do? What's going on inside his mind? Finally, Carpenter's hauntingly masterful score adds to the tension. Moreover, the tandem screen writing he did with Debra Hill gives us a story which develops characters we care about. The teens are not \"\"party mad,\"\" but merely going through the rebellious angst of teenage wasteland. Finally, there is some decent acting in this \"\"B,\"\" low-budget thriller. Nick Castle who plays \"\"the Shape\"\" (Michael) adds something to the mindless killer. It is cold, merciless, and without any pathology. Moreover, the personality does everything the same way. He kills only when trapped, or to set up a trap. He splits the victims apart. He also relies on brute strength. And that mask used (a bleached William Shatner mask) gives an impression of something that has no soul or emotion. While Pleasance is melodramatic in his deadpan monologues, he comes across as someone scared, desperate, and determined. It made me wonder if he represented modernism's fading attempt to explain evil. The crown jewel, though, is Jamie Lee Curtis' debut. She plays the Laurie character as someone scared, but also determined and strong who fights back. The end is one that left me speechless. This was the first concept of an indestructible serial killer who could not be stopped. Movies like Star Wars have the advantage that it can be enjoyed numerous times. Halloween, and other scary movies, though, do not have that advantage. So if we could erase our minds of the first time we see a movie to experience it again as fresh and new, Halloween would be the movie I would choose.\"\r\n1\tThis series got me into Deighton's writing and the genre when I was younger and I love this presentation of the story. I would however disagree with the above comment. From what I have read in the past, it is not Holm's performance that lead Deighton to refuse to have the series released but the butchering that all three books received in the translation to the screen. A great example of this is the rewrite of the boarder crossing that ended Samson's field career. The scene is not in the book, the character who dies in the minefield was never in any of the books and the crossing in Sinker was from East Germany to West Germany, not the Polish frontier. This whole storyline is cloth. The changes in Set similarly damage the integrity of the story. My perspective on Holm's performance was that he portrayed the disorientation of Samson during his wife's defection excellently and I believe comported himself well in portraying the aging field agent desperately trying to bridge the class divide. Samson both pays for his father's idealism and suffers due to its influence on his life. As Clevemore comments, had he gotten himself an education he would have probably been running the department. I think the true loss of performance is due to physical appearance more than anything. Holm is diminutive when compared to the Samson of the book - a physically impressive man capable of using his size to impose a presence.\r\n1\t\"I couldn't have been more thrilled; Just eight years old back in 1983, I was going to see a Star Wars movie at the theater! The best day of my life was about to happen. To that time, my only Star Wars experience had been a few HBO showings of Star Wars. I hadn't even seen The Empire Strikes Back yet.<br /><br />And boy, did that day deliver for my less critical eyes. Jabba. Big Rebel spaceships. The Emporer. A green-bladed lightsaber!! Wow! Since that magical day, I must have watched this movie hundreds of times. I can't even form an accurate estimate at this point. With those multiple viewings, I have of course observed that this movie - the REAL Episode III - does have its flaws.<br /><br />Of course in the context of a Star Wars movie, those \"\"flaws\"\" are more like \"\"quirks\"\".<br /><br />Millions had had their magical day in 1977 and 1980. In May of 1983, I had mine. And this was my Star Wars movie.\"\r\n0\t\"this movie is made for Asian/Chinese market, targeting particularly fans of Jay Chou, one of the biggest music star in Asian.<br /><br />Jay Chou is a very talented song writer/singer. He is mediocre as an actor, although he did appear in several big-budget productions (\"\"initial D\"\", \"\"Curse of the Golden Flower \"\"). Amazingly, he won both golden horse (taiwan) and Hong Kong film awards for \"\"initial D\"\".<br /><br />The supporting cast are very well chosen, which appeals basically everyone from China. The cast including many famous movie/TV actors, singers, even sport commentator (Huang Jianxiang from China). However, they were not given enough time to show their talents.<br /><br />The biggest mistake is that Chu took over both director and writer position. He has a reputation of making shallow and brainless movies based off non-coherent scripts. With his poor directing and lam story, the whole talented cast, fancy vision effects and tones of production money was wasted.<br /><br />However, the terrible movie successfully cashed in over 10 million dollars, maybe even more in Asian, which made this one of the biggest box office success in Asian.<br /><br />The bottom line is: you can watch this movie only if you want to see how money and talents are wasted, or if you are simply accompanying your kids who are fans of Jay Chou.\"\r\n1\tKimi wa petto is a cute story about a girl who one day finds a boy inside a box that is outside her apartment one day. She decides to bring him in and fix his cuts. She then leaves a note for him to eats some food she made then go home because she had to go to work. When she gets home however she finds that he is still there. He tells her that he wants to live there with her like a brother or cousin. In desperation to get him to leave she tells him that if he became her pet then he could stay. And as a pet she says that he would have no rights and do whatever she told him. (not in that perverted way!) To her surprise he agrees and from then on he is known as Momo, her pet.\r\n1\t\"A compelling, honest, daring, and unforgettable psychological horror film that touches on the painful experiences of pain caused by rape - \"\"Descent\"\" is a film that went under-the-radar due to its lack of distribution because, frankly, the film is so brutal in its depictions, that if it had been released theatrically, it may have met itself to some strong biased hate.<br /><br />The film deserves to be discovered for, not only its dark themes, and not only for its amazing direction and authentic style - but most of all for its performances. Chad Faust is absolutely stunning, bringing enough sickness and enough vulnerability to make one, not relate to, but understand this fractured man with a twisted perspective on his sexuality with not only the women he rapes, but also the fragile insecurities deep within his own self. It's a supporting performance that is so complex, brave, and emotional on Faust's part. And hard to forget.<br /><br />However, the standout is Rosario Dawson, whose performance here is an absolute revelation. A tour-de-force of realistic dramatic tics, and one of the most subtle, yet loud-as-can-be performances in quite some time. While Dawson is seen in some good supporting performances in some great-to-bad films, she proves here she has what it takes to deliver some emotionally sweeping and moving performances, believably and thematically.<br /><br />One of the best films of its year (and 2007 was a strong one) - had this underrated and intelligent film hit theatrical release, I would be screaming praises for it, as well as Dawson and Faust. Too bad it was way too blunt for a widespread appeal. Films like this deserve better!\"\r\n0\t\"A still famous but decadent actor (Morgan Freeman) has not filmed for four years. When he is invited to participate in a new project, he asks the clumsy cousin of the director to drop him in a poor Latin neighborhood in Carlson to research the work of the manager of a small supermarket. He sees the gorgeous Spanish cashier Scarlet (Paz Vega) and he becomes attracted with her ability. His driver never returns to catch him and Scarlet gives a ride to the actor. But first she has a job interview for the position of secretary in a construction company and the actor helps her to be prepared; then they spend the afternoon together having a pleasant time.<br /><br />I am a big fan of Morgan Freeman and Paz Vega. However, the pointless \"\"10 Items or Less\"\" is absolutely disappointing. This low-budget movie does not seem to have a storyline, and is supported by the chemistry and improvisations of Morgan Freeman and Paz Vega and actually nothing happens along 82 minutes. The ambiguous open conclusion is simply ridiculous, with the character of Morgan Freeman returning to his silver spoon world and telling the simple worker that they would never see each other again. Was he afraid to have a love affair with her and destroy his perfect world with his family? Or was a clash of classes, and he realizes that his fancy neighborhood would not be adequate to a simple worker from the lower classes? My vote is four.<br /><br />Title (Brazil): \"\"Um Astro em Minha Vida\"\" (\"\"A Star in My Life\"\")\"\r\n1\tAfter witnessing his wife (Linda Hoffman) engaging in sexual acts with the pool boy, the already somewhat unstable dentist Dr. Feinstone (Corbin Bernsen) completely snaps which means deep trouble for his patients.<br /><br />This delightful semi-original and entertaining horror flick from director Brian Yuzna was a welcome change of pace from the usual horror twaddle that was passed out in the late Nineties. Although The Dentist' is intended to be a cheesy, fun little film, Yuzna ensures that the movie delivers the shocks and thrills that many more serious movies attempt to dispense. Despite suffering somewhat from the lack of background on the central characters, and thus allowing events that should have been built up to take place over a couple of days, the movie is intriguing, generally well scripted and well paced which allows the viewer to maintain interest, even during the more ludicrous of moments. The Dentist' suffers, on occasion, from dragging but unlike the much inferior 1998 sequel, there are only sporadic uninteresting moments, and in general the movie follows itself nicely.<br /><br />Corbin Bernsen was very convincing in the role of the sadistic, deranged and perfectionist Dr. Alan Feinstone. The way Bernsen is able to credibly recite his lines, especially with regards to the foulness and immorality of sex (particularly fellatio), is something short of marvellous. While many actors may have trouble portraying a cleanliness obsessed psycho without it coming off as too cheesy or ridiculous, Bernsen seems to truly fit the personality of the character he attempts to portray and thus makes the film all that more enjoyable. Had The Dentist' not been intended to be a fun, almost comical, horror movie, Bernsen's performance would probably have been much more powerful. Sadly, the rest of the cast (including a pre-fame Mark Ruffalo) failed to put in very good performances and although the movie was not really damaged by this, stronger performances could have added more credibility to the flick.<br /><br />The Dentist' is not a horror film that is meant to be taken seriously but is certainly enjoyable, particularly (I would presume) for fans of cheesy horror. Those who became annoyed at the number of Scream' (1996) clones from the late Nineties may very well find this a refreshing change, as I did. A seldom dull and generally well paced script as well as some proficient direction helps to make The Dentist' one of the more pleasurable cheesy horrors from the 1990's. On top of this we are presented with some particularly grizly and (on the whole) realistic scenes of dental torture, which should keep most gorehounds happy. Far from perfect but far from bad as well, The Dentist' is a flick that is easily worth watching at least once. My rating for The Dentist'  6.5/10.\r\n0\t\"*SPOILERS INCLUDED*<br /><br />With a title like \"\"Bleed\"\", you know the creative juices weren't running on high when this puppy was conceived. The movie is your basic run-of-the-mill low-budget slasher movie. Oh sure, it tries to be creative with the premise of the \"\"murder club\"\", but we learn that was just a joke anyways. Okay, for those who really care about these things, the basic plot is that new girl in town starts dating her co-worker. He invites her into his circle of friends, and at a party, they tell her how they have a \"\"murder club\"\" and they murder people, blah blah blah. Well, we learn that it was all a joke, but not before our heroine kills a lady in a parking garage. Now, the \"\"members\"\" of the Murder Club are being killed one by one. Oh, and the bad guys wins and the movie ends on a downer. By that time, you won't really care though.<br /><br />In retrospect, the first 10 or so minutes of this movie make no sense. The motivation for the killings in the beginning of the movie is never explained. I would say that it was a way for the director to pad out the film, but on the DVD there are deleted scenes! I'm not sure why anyone would want to see more than the feature length version of \"\"Bleed\"\", but apparently the people behind the DVD thought the viewers would be clamoring for more. On the box, it says there are Easter Eggs, but why the hell I would want to waste my time looking for extras on this movie is beyond me. <br /><br />I was expecting a bad movie, and \"\"Bleed\"\" delivered on that front. It wasn't a fun bad movie though. Everyone looks good in the movie, and there's plenty of nudity, but the acting is just awful. My least favorite character is the guy who ends up being the killer...I think he's supposed to be funny and amusing, but he just ends up coming off as a tool. I think the funniest moment of the movie is when our heroine kills the lady in the parking garage, in a hilariously unconvincing death. Heroine shoves the women into the parking garage cement pole, and the woman looks like she barely hits the thing, and she spits out a mouthful of blood, and \"\"dies\"\". <br /><br />For those who think that movie making is an intricate, creative process done by professionals, check out \"\"Bleed\"\". It will change your mind, and you'll realize any hack get can a movie made. <br /><br />Otherwise, don't waste your time or money on this.\"\r\n1\t\"This interesting Giallo boosts a typical but still thrilling plot and a really sadistic killer that obviously likes to hunt his victims down before murdering them in gory ways.<br /><br />Directed by Emilio P. Miraglia who, one year earlier, also made the very interesting \"\"La Notte che Evelyn Usci della Tomba\"\" (see also my comment on that one), the film starts off a little slow, but all in all, no time is wasted with unnecessary sub plots or sequences.<br /><br />This film is a German-Italian coproduction, but it was released in Germany on video only in a version trimmed by 15 minutes of plot under the stupid title \"\"Horror House\"\". At least the murder scenes, which will satisfy every gorehound, are fully intact, and the viewer still gets the killer's motive at the end. But the Italian version containing all the footage is still the one to look for, of course.<br /><br />A convincing Giallo with obligatory twists and red herrings, \"\"La Dama Rossa Uccide Sette Volte\"\" is highly recommended to Giallo fans and slightly superior to Miraglia's above mentioned other thriller.\"\r\n1\tI saw this on a Cantonese VCD with the English subtitles. I thought the story was good but there were times when some of the subcharacters were grossly over-acting. This took away from the film as did the fairly lame musical score, which really irked me throughout the entire movie. If the musical score was improved I could overlook the few overacted scenes. Then the film would be much, much better.\r\n1\t\"This movie is rich with action and gore. The story line is strong enough to support the action sequences. The English version needs a tad bit of help in the dubbing department but it was still enjoyable. This movie ranks among my personal favorites next to \"\"Hard Boiled\"\" ...\"\r\n0\tGiven the title and outlandish box art, I was ready for just about anything. Perhaps my expectation were forced just a bit to high, because I was left a little dry.<br /><br />A film crew working on a soft-core sex movie end up at a strange house when they get lost in the fog and decide the best way to spend the evening is to have sex. Where hasn't this set up been used before? The difference here is the uber-perverse nature of the sex. Not allowed to show all the goods (groin shots were illegal in Japan for a long time, what is shown is fogged out) the movie tries as hard as it can to show the viewer just how unnatural sex can be.<br /><br />Amidst all the kinky goings on, a mud monster (whose origin I can't fathom) shows up and begins murdering the men and raping the women...then murdering them too. Some of the sights are a bit much, most notably a woman having her intestines pulled out through her vagina or another woman spitting out a mouthful of...stuff, but otherwise the gore is pretty standard fare.<br /><br />Ultimately the film is pulled down by it's own designs; it's too over-sexed to be a strait horror picture and too gruesome to work as a sex flick. The mediums can work, but there need to be a balance.<br /><br />4/10\r\n0\tI suppose if you like endless dialogue that doesn't forward the story and flashy camera effects like the scene transitions in the television show _Angel_, you'll enjoy the film. Me? All I wanted was a nice, tight little story, and it wasn't there. The pacing was practically backward, plot points were buried under a sea of unneeded dialogue, and there was absolutely no sense of dread, or tension, or ANYTHING.<br /><br />Is it the redneck? Is it the Wendigo? No, it's a cameraman on speed. That's not scary. It doesn't generate a single note of tension or atmosphere unless you're scared by MTV. Like those reviewers before me, I too noticed that by the end the movie invokes derisive laughter from the audience.<br /><br />Terrible film.\r\n0\t\"Stalker is right! Girl sees guy, girl wants guy, girl contrives mundane ways to keep bumping into him, girl won't leave him alone, girl pretends to be a patient, girl can't stop talking about him, girl pretends to love another guy (or two), he doesn't pay attention to her because she's annoying, girl STILL won't leave him alone. Played right, Drake's character could have been charming but she's completely, wholly, unrelenting in her pursuit of Cary Grant's character, her girlfriend-in-cahoots is dull, and sadly, Drake's attempt at playing, \"\"charmingly screwball\"\" comes off as, \"\"disturbingly demented.\"\" Grant is himself, as usual, which is fine for Cary but it's as close to a phoned-in performance as I've ever seen from him. The direction is lackluster and the dialog is just plain dim.<br /><br />Screwball comedy is very difficult to do successfully and when it fails, like in this stubbed-out butt of an attempt, it just stinks. Worse still, Drake spends the entire film in need of a lot of Valium and a restraining order. She ruins any humor to be found in this drier than mummy dust relic.\"\r\n0\tIt's Die Hard meets Cliffhanger when a ski resort is besieged by terrorists and it's up to one cop, Jack (Crackerjack) to stop this.<br /><br />A B-action movie that borrows from other films and is quite good with pretty good action, a ridiculous plot (as always in these movies) and three fine stars. Thomas Ian Griffith as the cop and Nastasja Kinski and Christopher Plummer as terrorists. If you don't like stupid B-action movies this is not for you.\r\n1\tThis movie has it all, action, fighting, dancing, bull riding, music, pretty girls. This movie is an authenic look at middle America. Believe me, I was there in 1980. Lots of oil money, lots of women, and lots of honky tonks. Too bad they are all gone now. The movie is essentially just another boy meets girl, boy loses girl, boy gets girl back, but it is redeemed by the actors and the music. There is absolutely no movie with any better music that this movie, and that includes American Graffiti. It is a movie I watch over and over again and never get tired of it. Every time I watch it, I am young again, and it is time to go out honky tonking. The only reason I only gave it a 9 is because you cannot rate a movie zero, I do not feel you should rate one 10.\r\n0\tYet another Die Hard straight to video rip off with cardboard villains How many more of these god awful cheaply (and badly) made rip off of the more popular action movies of the late 1980's and early 1990's are there still lurking out there? For the record (not that you will care really) this one is yet another blatant rip off of a combination of Die Hard, Under Siege and Speed 2 complete with a full complement of clichés and predictability.<br /><br />The non descript villains are the usual selection of cardboard cut out gun toting thugs who are dispatched by various means as the film progresses, the hero naturally is an ex cop or something that has family and attitude problems and of course he brings along to the party not only the usual emotional baggage but also a matching piece of eye candy and his annoying son.<br /><br />The supposed luxury cruise liner that is running between Florida and Mexico is carefully described as a cross between a liner and a ferry  this goes someway to explaining how come they appear to be larking around on a rusty cross channel ferry  in New Zealand! The acting is as wooden as the deck, the script woeful, the one liners predictable, the villains utterly inept and the plot has holes in it you could sail a boat through.<br /><br />There seems to be a never ending tide of this sort of rip off straight to video rubbish polluting the late night slots of television and the DVD bargain bins of supermarkets everywhere (although even this film is so bad it has yet to see a DVD release yet but give it time!) Is there any chance of something at least half decently made, semi believable and most important ORIGINAL?!? No, I thought not..\r\n0\tThis movie fails miserably on every level. I have an idea, let's take everyone involved in this movie and ship them into a hot zone in the middle east. Maybe if we're lucky they'll all be shot and killed and we won't have to ever have our time wasted by them again. Did I mention that I have never been so bitter about a cinematic pile of crap in my entire life? My god, I can't think of anything I've ever seen that was this bad. I'd rather watch Ishtar 25 times in a row than sit through 10 minutes of this sorry excuse for a film. If I ever happen to meet anyone who was involved in this film, I'll spit in their face and then beat them senseless. That's my two cents.\r\n0\tI really looked forward to see Planet of the Apes, but it was a huge dissapointment.<br /><br />The settings and masks are great, but that is the only good aspect of the film. All other things are really annoying. Mark Wahlberg is not acting, he is just in the movie, looking stupid. The other actors are also not very good.<br /><br />But the worst point of all, is the story. It is absolutely ridiculous! For example: the apes are lying unconsiousness on the ground, but the humans don`t attack them, no, they wait until they are up again! This is just one example for the stupid story, but it would take too long to tell them all.\r\n0\t\"This movie was so bad, outdated and stupid that I had rough times to watch it to the end. I had seen this Rodney guy in Natural Born Killers and I thought he was funny as hell in it, but this movie was crap. The \"\"jokes\"\" weren't funny, actors weren't funny, anything about it wasn't even remotely funny. Don't waste your time for this! Only positive things about this were the beautiful wives :) and Molly Shannon who I'm sure tried her best, but the script was just too awful. That's why I rated it \"\"2\"\" instead of \"\"1\"\", but it's definitely one of the worst films I've ever seen.\"\r\n0\tAlthough there were some amusing moments, I thought the movie was pretty lame. The longer it ran, the worse it got. Once the action entered Monument Valley, I found myself watching the magnificent outcroppings more than the increasingly silly and unconvincing interaction of the characters.<br /><br />The character of the daughter was particularly incoherent. First she's in on the deal, then discovers the truth and she bails. Then she's back again, then deserts them again. Then she's back again. There's no apparent motivation for any of her decisions. There were interesting characters, some interesting scenes, and many missed possibilities. I would have to say the pictures was much less than the sum of its parts. Apparently the people who liked Repo Man were inclined to like this one. Searchers 2.0 is no match for The Searchers.\r\n1\tAcademy Award winner Robert Redford (Best Director. Ordinary People 1980) captures the majesty of the Montana wilderness and the strength of the American family in this acclaimed adaptation of Norman Macleans classic memoir.<br /><br />Craig Sheffer stars as the young Norman, and Brad Pitt stars as his brother Paul, an irresistible daredevil driven to challenge the world.<br /><br />Growing up, both boys rebel against their stern Minister father (Tom Skerritt).<br /><br />While Norman channels his rebellion into writing, Paul descends a slippery path to self-destruction.<br /><br />Also starring Emily LLoyd as wild-hearted Jessie Burns.<br /><br />The film won an Academy Award for Best Cinematopghaphy in 1993.\r\n0\t\"Think of this film as a Saturday morning live-action program from ages ago. Even the small tykes will find this one hard to please because it runs like molasses! I can't fully understand how god awful it is to make something too typical and uninteresting, especially in the costume department! Too many warrior-wizard movies out there have used the same old plotline numerous times over, but this is mighty scarce considering its appeal to the little darlings. And who in the world would've let a topless mermaid be cast in the first place? I thought this was a \"\"family\"\" movie! MST3K, here's another fine gem for your 1999 TV season!\"\r\n0\tI saw it, I agree with him 100%, but I didn't care for his delivery. He just came off as an asshole in a poorly edited, contrived juvenile smear campaign. Edit cuts galore, etc... The camera would be focused on him, and you'd see 2 or 3 edit cuts just over the course of a minute or two of dialog. Add in the constant boom mikes in the camera shot, which is a film no-no.<br /><br />This documentary hits a topic with so many angles, so many interesting stories, that the movie is just so easily done. Picking on religious fanatics is like picking on the retarded kid. It is so easy it is just wrong. I mean how hard is it to make these people look like nut bags? To make them contradict themselves, you just let them recite more then a verse or two. I do like when he jumped back in forth between people of the same religion and showed them completely contradicting themselves.<br /><br />I just think he could have done something a little more creative. The part with the neurologist talking about brain activity was never fleshed out. It could have been interesting to show brain scans of people during religious fits compared to drugs, or sex, or ???? He could have played more on the women all rejoicing over the Passion play that looked more like a snuff scene in a new Rob Zombie movie. More could have gone into the history of John Smith, the Mormon founder who had quite the colorful past. Delve into science v.s. religion. One is a very methodical, very strict process for increasing the confidence in theories. It builds on itself from a solid bottom up, a new layer on top of a more proved layer. An enormous burden of proof is required each step of the way. The other starts at the top and comes down with unchallengeable claims. It is so, because well I said so.<br /><br />Done right I'd say turn it into an HBO original series hit a different religion every week.<br /><br />It was an eye opener about one thing. I must have been blind. Good ole G.W.Bush... no wonder he got elected. He had the religious majority. And well... now that is the blind leading the blind.<br /><br />Bill Moyer.. Well.. what can I expect from a guy who hands out at Sutra in Newport beach?\r\n0\t\"The deceptive cover, title and very small hidden print of Power of Prayer tricked me into renting this movie.<br /><br />It started out really well and pulled me in. I REALLY liked it. Between 1/3 and 3/4's of it, the film started throwing in things that were not set up and made no sense. My first thought was, \"\"This is not written by someone who knows how to tell a story.\"\" I ended up re-watching parts of the movie, thinking I had missed something.<br /><br />By the time I reached the last 1/5 of the movie, it was all BORING, ANNOYING, RELIGION THUMPING DIALOG that made no sense, said nothing, and was annoying to listen to; I turned off the sound and did a fast forward to the end.<br /><br />Don't waste your time with this flick.<br /><br />Beware of DVDs labeled Whitlow Films and Level Path Productions.<br /><br />And I'm a practicing Catholic.\"\r\n0\tFreeway Killer, Is a Madman who shoots people on the freeway while yelling a bunch of mystical chant on a car phone. The police believe he is a random killer, but Sunny, the blond heroine, played by Darlanne Fluegel detects a pattern. So does the ex-cop, played by James Russo, and they join forces, and bodies, in the search for the villain who has done away with their spouses. Also starring Richard Belzer, this movie has its moments especially if you like car chases, but its really not a good movie for the most part, check it out if you're really bored and have already seen The Hitcher, Joy Ride, or Breakdown, otherwise stay away from the freeway.\r\n0\t\"This movie is awful. At the end of it you will realize that several hours have been stolen from your life that you can't get back. The \"\"twist\"\" ending is very contrived. The character development leading up to this ending is not consistent with their final actions at the conclusion. Ninety minutes of preparation-- with the premise that the Rob Lowe character will die on Christmas Eve-- is explained away in literally ninety seconds of \"\"No we were just tricking you.\"\" Then the Rob Lowe character is not even upset about it! \"\"I will forgive you if you can forgive me,\"\" is as upset as he gets. If someone took weeks to convince me I was about to die and then said \"\"No, sorry , just fooling you\"\" I would raise some serious hell. I don't feel bad about giving away the spoiler because I might be able to save some of you out there from watching. Please save yourself and DON'T WATCH THIS MOVIE.\"\r\n0\tThis film is deeply disappointing. Not only that Wenders only displays a very limited musical spectrum of Blues, it is his subjective and personal interest in parts of the music he brings on film that make watching and listening absolutely boring. The only highlight of the movie is the interview of a Swedish couple who were befriended with J.B. Lenoir and show their private video footage as well as tell stories. Wenders's introduction of the filmic topic starts off quite interestingly - alluding to world's culture (or actually, American culture) traveling in space, but his limited looks on the theme as well as the neither funny nor utterly fascinating reproduction of stories from the 30s renders this movie as a mere sleeping aid. Yawn. I had expected more of him.\r\n1\t\"Despite some negative comments this film has garnered in the IMDb pages, it's still worth a look as this is a story about survival and camaraderie between two different men with different mentalities while in a difficult mission in the Panamanian jungle.<br /><br />Peruvian director Luis Llosa takes us along to watch this thriller set in Panama. The film has some good moments as Beckett, the veteran marine, takes a newly arrived man, recently sent to try to eliminate a notorious drug cartel head and the corrupt army general who might be the next president of the country. The only problem, Miller, has no experience in what he has been entrusted to achieve.<br /><br />Miller, the arrogant newly arrived man to the jungle and to the guerrilla warfare between the military and drug lords against the infiltrated American intelligence men, learns a valuable lesson from Beckett. What looks good in theory, is irrelevant in the jungle.<br /><br />Tom Berenger, is an actor who doesn't register much, as he proves in this movie, but in the context of the movie, he is right as a man of a few words. Billy Zane playing Miller does what he can with a role that doesn't afford him any glory until the crucial end.<br /><br />For lovers of action film, \"\"Sniper\"\" offers an 112 minutes of action that with a bit of trimming would have made a more satisfying movie.\"\r\n1\tMy children just happened to stop at this movie the other night and as things started to play out it really piqued my interest. I had to head out for bowling league so I had them record it for me on the dvr so I could watch the rest later. Well I just got done watching it and the front of my shirt must be soaked after crying buckets. It was an excellent movie even though I could almost feel the pain and anguish these girls were experiencing. And I never in a million years would have guessed the reason why Alissia had gone from this beautiful girl to an anti-social goth. This was probably WHY my shirt was soaked because I've experienced that same pain that Alissia was feeling. I too would not have sought out this movie, but I'm sure glad I saw it. Very moving, very touching. Great for those who love a good drama or tear-jerker.\r\n0\tFilm starts in 1840 Japan in which a man slashes his wife and her lover to death and the commits suicide. It's a very gory, bloody sequence. Then it jumps to present day...well 1982 to be precise. Ted (Edward Albert), wife Laura (Susan George) and their annoying little kid move to Japan for hubby's work. They rent a house and--surprise! surprise--it just happens to be the house where the murders took place! The three dead people are around as ghosts (the makeup is hysterically bad) and make life hell for the family.<br /><br />Sounds OK--but it's really hopeless. There's a bloody opening and ending and NOTHING happens in between. There is an attack by giant crabs which is just uproarious! They look so fake--I swear I saw the strings pulling one along--and they're muttering!!!!! There's a pointless sex sequence in the first 20 minutes (probably just to show off George's body), another one about 40 minutes later (but that was necessary to the plot) and a really silly exorcism towards the end. The fight scene between Albert and Doug McClure must be seen to be believed.<br /><br />As for acting--Albert was OK as the husband and McClure was pretty good as a family friend. But George--as always--is terrific in a lousy film. She gives this film a much needed lift--but can't save it. I'm giving this a 2 just for her and the gory opening and closing. That aside, this is a very boring film.\r\n0\t\"What boob at MGM thought it would be a good idea to place the studly Clark Gable in the role of a Salvation Army worker?? Ironically enough, another handsome future star, Cary Grant, also played a Salvation Army guy just two years later in the highly overrated SHE DONE HIM WRONG. I guess in hindsight it's pretty easy to see the folly of these roles, but I still wonder WHO thought that Salvation Army guys are \"\"HOT\"\" and who could look at these dashing men and see them as realistic representations of the parts they played. A long time ago, I used to work for a sister organization of the Salvation Army (the Volunteers of America) and I NEVER saw any studly guys working there (and that includes me, unfortunately). Maybe I should have gotten a job with the Salvation Army instead!<br /><br />So, for the extremely curious, this is a good film to look out for, but for everyone else, it's poor writing, sloppy dialog and annoying moralizing make for a very slow film.\"\r\n0\t\"Are you kidding me?! A show highlighting someone who opens cans and envelopes for a meal? How talented do you have to be to do this? She MAY be able to cook but it is NOT portrayed in this half-hour stomach churning painful production. I know she has a Martha-Stewart-esquire empire. So does Warren Buffett but I don't see him with fake knockers opening cans of cream corn and Alpo.<br /><br />She has a nephew named...Brycer. Brycer? Stop talking about anyone a name that stupid.<br /><br />More time is spent on \"\"table-scapes\"\" than actual cooking. Who has that kind of time?! Silicon should be on your spatula, not on my TV. This show should be on Cartoon Network, NOT Food Network.\"\r\n1\tIn this little film we have some great characters but a very shallow plot. It is actually nice to watch because Singleton does a great job at presenting the esoteric conflicts and the interpersonal relationships. This makes the viewer forget the nonexistent realism that this movie supposedly is for. In fact what we have here is all the possible cliches and stereotypes put on celluloid in a rate higher than that of a soap. Definitely not a deep movie (even if it wants to be), but better than an average college movie.\r\n1\tMy son was 7 years old when he saw this movie, he is now on a Russian Fishing vessel and said that the movie he was most impressed with and that has lingered in his mind all of these 39 years is the movie of The Legend of the Boy and the Eagle. He has asked if it were possible for me to get this for him. I am sure that a lot of things go through his head as he has only 3 hours of daylight and he has been on this ship for 3 months and will have 3 more months before his contract expires. Since we have Indian blood he connects to this movie. On January 27th he will turn 47 years old and I would like to be able to obtain this movie for him. He lives in Thailand and has been a commercial fisherman for the past 17 years and as we all know this is one of the most dangerous jobs. Can you help me obtain this movie? Thanking you in advance, Dolly Crout-Soto, Deerfield Beach, FL\r\n0\t\"I am a great fan of the Batman comics and I became disappointed when I could no longer find Batman: The Animated Series on TV anymore. I was excited to learn that there was going to be a new Batman cartoon on TV. I watched the first episode the day it premiered and I was very disappointed.<br /><br />First of all, the animation is very poor. It looks like a cheap, crappy Japanese anime. Then again, just about every modern-day cartoon is like that.<br /><br />The character designs are even worse. Batman looks more like Birdman, Catwoman looks more like Chihuahuawoman, Bane looks more like a red version of the Hulk, the Penguin is a Kung-Fu master, Mr. Freeze is some undead thing with an iceberg on his head, and the Riddler is a Gothic Marilyn Manson look-alike (which is funny because I don't expect people who are obsessed with riddles and puzzles to be Gothic).<br /><br />The worst character design is that of the Joker. They turned him into a monkey/demented Bob Marley/Kung-Fu fighter! The Joker is supposed to be Batman's deadliest enemy, but in this show he hardly poses a threat because his crimes are so stupid and pointless. In one episode his plan was to put his Joker venom in dog food! Oh, how evil! Batman is a fascinating and complex character because he is haunted by the deaths of his parents, which is why he fights crime. This version of Batman doesn't seem haunted by his parents' deaths and is not interesting at all. He's also not a detective, just a fighter. If there's an enemy he can't defeat, he won't study the enemy to find out their weak points like a detective would, he'll just build a giant fighting robot to defeat them. A lot of times this show doesn't even feel like a Batman show, just another brainless anime that's nothing but pointless fighting.<br /><br />What I hate the most about this show is what they did to the villains. They've taken away everything that makes them likable and relatable and turned them into stereotypical evil bad guys. Man-Bat is the biggest example. In the comics, he's a tragic scientist who studies bats to find a cure for his deafness. When experimenting on himself, he accidentally transforms himself into a giant bat creature. In this show, he's a mad scientist who wants to purposely transform himself into a giant bat creature for no apparent reason. Just about all the villains are like that; none of them, with the exception of about one or two, have an actual motive for their crimes.<br /><br />The worst characterization is that of Mr. Freeze. In the comics, Freeze was a just a mad scientist until the genius writer Paul Dini wrote the BTAS episode \"\"Heart of Ice\"\", which gave Freeze a new origin that made him a more tragic, three-dimensional, and likable villain. The episode was so popular that fans accepted it as his actual origin and it was even used in the comics as his origin. Even that crappy movie Batman & Robin used it as his origin. In this show, he's a petty jewel thief before becoming Mr. Freeze. After becoming Mr. Freeze, guess what? He's STILL a petty jewel thief! Great origin. No wonder they used it over the one Dini created.<br /><br />As a Batman fan, I don't dislike this show just because it isn't like the comics because I also liked BTAS, the Batman cartoons that came after it, Tim Burton's Batman films, and obviously, the superb Christopher Nolan Batman films. None of them were 100% loyal to the comics, but they were still very good. The problem with this show is not that it's not exactly like the comics or BTAS, it's that it lacks any sort of depth that makes other Batman media so popular.<br /><br />I've given this show so many chances, but the more I watch, the more I find that disappoints me. I miss the good old days back when Batman cartoons were something everyone could enjoy.\"\r\n0\tOK i will admit, it started out very pleasing and good, but then it just dropped downhill, i cannot believe Sarah Michelle Gellar could have even finished reading the script after about 5 minutes into the movie, the only reason i actually sat through the whole movie, was i wanted to see the twist at the ned, and to my surprise, well, folks i cannot even tell you if there ven was one, because the end just leaves you confused, and then the credit role, i was like what the hell? this did not deserve a theater run, i am sorry, but it didn't i mean it was horrible, the only reaso i gave it a 4 is because it had a few jumpy parts...thats it! you can watch it, im not telling you not to, hey you might even like it or even love it! but if you hate it, don't say i didn't warn you!\r\n0\t\"Harsh, yes, but I call 'em like I see 'em.<br /><br />I saw this in the late 80's, and it was truly one of the most awful, boring films I've ever forced myself to watch.<br /><br />Yes, the cinematography is lovely. The Czech settings are truly stunning. The political backdrop is enticing, but unlike similar \"\"historically set\"\" stories (e.g. _Dr. Zhivago_ (qv)), this one failed to make the politics relevant to the story, or even interesting.<br /><br />Sure, Olin and Binoche are beautiful. But this film manages to make even \"\"erotic\"\" scenes plodding and slow. I'm all for romance, but this movie was so boring, I started hoping the Russians would shoot them all and put an end to my misery.<br /><br />I'm sure if I'd read the book, the story would have made a bit more sense. However, life's too short to expend any more time on this one.\"\r\n0\t1st watched 11/07/2004 - 1 out of 10(Dir-Jon Keeyes): Over-the-top rehash of 70's supposed horror flicks like Friday the 13th(versions 1 thru whatever). I can't think of much redeeming here except(or can I think of anything?)The story revolves around a bunch of stupid people listening to a radio program one year after some kids were slayed in the woods as an 'homage' to this, supposedly. But, lo and behold, one of the stupid people, have connections to the actual event because her sister was one of the ones murdered(again, how stupid is this that she would even be a part of this). Guess what? The murderer is at it again and we're tipped off from the very beginning who it is(so there goes any mystery whatsoever). And besides all this, where are the 'cops' and why doesn't someone call them. I can't believe this movie was financed by someone and made. You would think that by now the American people would be judged a little higher, at least in their movie-going experience, but not so by this filmmaker.\r\n1\ti watched this tape, immediately rewound it, watched it again and laughed twice as hard. I strongly recommend this tape for those who are not hateful of, but uncomfortable around transvestites. It shows you that transvestitism is a feature, rather than the entirety of one's being. The comedy is not single issue. This man is brilliant. All comics should aspire to his level of candor, intelligence and talent.\r\n1\tIf you like CB4, you have no idea what you're missing if you haven't seen this film yet. This movie is crazy hilarious, and incorporates a lot more about the hip hop industry than any other parody movie... It is unfortunate that this movie has not been released on dvd because it is one movie that everybody I've ever watched it with has loved and wanted a copy. If you really want a good laugh and you like hip hop and are a little familiar with some old-school performers, definitley rent this movie. There aren't that many video rental places that have copies of it, but if you happen to come across one you will not be disappointed.\r\n1\tThis is quite the gripping, fascinating, tragic story. Quite good, and for the most part pretty accurate, considering it IS a TV movie rather than a documentary. They did create some fictional characters, and combine several actual people into one character, but otherwise this is a good telling of a very tragic and dark story.<br /><br />The final moments of the movie, depicting the mass suicide/murder, are almost directly taken from an audio recording made by Jim Jones. This recording was made during the final 44 minutes of the Peoples Temple's existence. It is available in several places on the internet. This portion of the film is almost spot on in that regard.<br /><br />To sum up, a documentary this is not. However, it does cover most of the base elements to the People's Temple story.\r\n1\tThat hilarious line is typical of what these naughty sisters say. (It's funny on its own terms and pretty funny unintentionally , too.) Only two of the sisters are really bad. Boy, are they bad, too! One is given to pinup poses and salacious comments where e'er she goes. The other is got up to look like Marilyn Monroe. She has those sensual, slightly parted lips. And, not to give anything away, she is even more bad than the other.<br /><br />All three sisters are played by starlets. The man who stumbles into their lives is played by John Bromfield. He had something of a career.<br /><br />This looks today like possibly the first mainstream soft-core porn ever marketed. Well, of course not the first but the raciest at that time.<br /><br />The girls wear as little as possible and let's not forget about the female audience members: Bromfield is shown shaving with an electric razor -- whose fetish was this? -- bare-chested. He also is shown sopping wet in a swimsuit.<br /><br />There's a real plot here, too: The girls' family, see, is cursed. They are prone to suicide -- or dramatic deaths that can be made to seem like suicide.<br /><br />The movie is not bad. I truly don't know where it was shown. Maybe it was made for drive-ins. Somehow, and I could be wrong, I felt that the typical male audience was not the primary target here. The women are scantily dressed. They often resemble lurid covers of mags like Police Detective or jackets of dime novels.<br /><br />But the guy seems to be the central focus. Not everyone in the movie likes him, but all the girls love him. And I think the audience is meant to also.<br /><br />It's lots of fun -- and on its own terms, too.\r\n1\t\"In the winter of 1931, supposedly 12-year-old Tyler Hoechlin (as Michael Sullivan Jr.) wonders what his mobster father Tom Hanks (Michael \"\"Mike\"\" Sullivan) does for a living. Young Hoechlin follows Mr. Hanks to \"\"work\"\" one evening, and witnesses him blasting away some rival gangsters. This leads - in a VERY roundabout way - to \"\"Godfather\"\"-type Paul Newman (as John Rooney) hiring independent hit-man Jude Law (as Harlen Maguire) to track down Hoechlin and Hanks, who are off to cool their heels in Chicago. Hanks thinks they will be safe with a relative, which is puzzling when you consider the characters' line of work.<br /><br />Looking uncannily like Paul Peterson (\"\"The Donna Reed Show\"\"), Hoechlin does a terrific job for director Sam Mendes; and, getting to work with this cast makes him the luckiest young actor of 2002. But, the most striking thing about \"\"Road to Perdition\"\" is the stunning cinematography of Conrad L. Hall, which deservedly won a career capping \"\"Academy Award\"\" for the late photographer. Mr. Hall's work is truly superlative. This helps make up for the overall impression of a measured, contrived staginess to both the narrative and visuals. The deviating end is abruptly uplifting (the unrelated dog is an example of the aforementioned staginess).<br /><br />******** Road to Perdition (7/12/02) Sam Mendes ~ Tom Hanks, Tyler Hoechlin, Paul Newman, Jude Law\"\r\n0\t\"Note: I couldn't force myself to actually write up a constructive review of Prom Night. It just can't be done. Instead, I went through what I thought about while watching the movie.<br /><br />Things that I thought about while watching Prom Night: <br /><br />-I'm so tired of those dreams where these elaborate deaths will take place, only for the main character to wake up right before she bites it. Of course, when I say \"\"elaborate deaths\"\", I mean off screen throat slashes or stabs in the stomach. Didn't the whole \"\"it's just a dream\"\" thing get ruined by Dallas? Speaking of which, I wonder if a couple stabs in the gut will cause immediate death.<br /><br />-The film is only ten minutes into and I can already count the horror clichés on two hands. Not a good sign.<br /><br />-Even after just meeting the protagonist's boyfriend, I'm convinced he will die. Anybody want to place bets? <br /><br />-The killer in this movie is a teacher that is obsessed with the main character, Donna. (By the way, does anybody think that \"\"Donna\"\" is a horrible name for a main character in a horror film?) He spends three years in a maximum security prison before breaking out and finds Donna celebrating her high school prom. While there is no accounting for taste, I seriously wonder who would take all that time to stalk somebody as dull as Donna.<br /><br />-High schools allow proms to take place at hotels and doesn't keep track of the students. Apparently students are perfectly able to buy a hotel room and go in and out as they please. I suppose if this plot point wasn't in place, the movie would be 90 minutes of people being bored out of their mind and randomly biting the dust whenever they go to the bathroom. I suppose the trade-off for their excitement is my utter boredom with everything. I've already played \"\"count the pieces of chewed bubble gum under the seat\"\" and \"\"guess how much money I have in my wallet\"\" and I'm only in the 20 minute mark. How else will I entertain myself? <br /><br />-Note to self: Don't forget milk and bread on the way home.<br /><br />-Dear screenwriter: You've used up enough false scares to get through this movie and every other horror remake this year.<br /><br />-The 1980 version of this film wasn't that good but compared to this remake it was like Citizen Kane, or at least The Godfather. It had Jamie Lee Curtis in one of her many post-Halloween horror flicks and it did have a little \"\"twist\"\" at the end. I miss Jamie Lee. I wish she'd act more.<br /><br />-Apparently at prom there isn't much dancing going on. Instead the girls get in fights with their boyfriends over where they plan to attend college. I hear all these colleges being brought up by name, and I can't help but wonder who these girls have to cheat off of on the entrance exam to get in.<br /><br />-The killer must carry a bag of really effective cleaning supplies and wipes up his mess between scenes. That's the only logical explanation for why he could stab somebody to death on the carpet or in the bathroom and by the time somebody goes up to the hotel room, there is no trace of a struggle. (On another side note: This is a very lazy killer. Michael Myers went hunting after his victims. Just saying.)<br /><br />-It's official: the entire audience in the theater is rooting on the killer. What triggered it? Was it whenever Donna went back up to her hotel room while sirens were going off ordering everybody to exit the building? Was it her constant dreams, and how even after going through something dramatic in said dream she insisted on reenacting her steps to a tee? Or was it Brittany Snow's unconvincing performance? I'll have to say it was all of the above.<br /><br />-Okay, who had \"\"he dies off screen in the third act\"\"? You win the pot.<br /><br />-Finally, the movie is over. My friend turns to me and says \"\"Donna wasn't too smart.\"\" That's the understatement of the week. Kind of like saying that a tornado is a small gust of wind, or a week long power outage is a slight inconvenience.<br /><br />-I can't wait to get on Rotten Tomatoes and see if anybody gave this move a favoring review.<br /><br />-I can't recommend this. I refuse to recommend this. This is as lazy of a horror film as any, and the only way to enjoy its cheese smelling plot is if you are under the influence of at least ten beers. And unfortunately for theater patrons, alcohol isn't served.<br /><br />Rating: * out of ****\"\r\n0\t\"Watching \"\"Kroko\"\" I would have liked to leave the cinema very much for the first time in my life. I would not recommend to watch this movie: flat main characters - absolutely no development e.g. Kroko the metaphoric German problem child remains a pure metaphor without any capability of positive involvement despite several plot-wise chances to do so. Uninspired actors, non-evolving plot. I guess the movie attempted an environmental survey but did not succeed: camera appeared shaky rather than motivated. Pictures were low - contrast, gray and dark - i am sure deliberately but the components did not add up to a convincing impression of the social milieu. The story had certain potential though, it could have made a good short story.\"\r\n0\tThe plot of 'Edison' was decent, but one actor in particular ruined the entire film. Justin Timberlake ruined the film with every line he uttered during the movie. He is by far one of the worst actors I have ever seen, and should face the same fate as the entire F.R.A.T. squad. <br /><br />Whether it was an emotional scene, an action scene, or even a silent scene, Justin Timberlake managed to ruin it. <br /><br />Do not waste your time watching this film. Don't even bother downloading it, midget porn would be a much better choice.<br /><br />And Justin, if you're reading this, stick to music. Even though you're no good at that, you've done a wonderful job tricking people into thinking you can actually sing.\r\n0\t\"But I doubt many were running to see this movie. Or \"\"Some Came Running Out Of The Cinema\"\". Okay, that's a bit harsh.<br /><br />The film starts in an unintentionally comical way: Frankie-boy comes back to his hometown after many years (this already smells of clichés) and the whole town is shaken by his arrival: he is talked about, everyone wants to talk to him, and every woman he meets flirts with him like there's no tomorrow - even his niece hints that she would gladly have dropped her date to chat with Frankie-boy a little longer! Even his pretty niece wants a piece of him! Sounds like one of those laughable \"\"Mike Hammer\"\" episodes where EVERY single female wants Stacey Keach. And, like Stacey Keach, Frankie-boy is anything but a good-looking woman's wet dream. In real life, someone like Sinatra (without the fame) wouldn't get within 100 m of someone as beautiful as MacLaine. But in this Hollywood movie it's the other way around: MacLaine is absolutely nuts about Frankie-boy, but HE couldn't care less! Sinatra plays his \"\"cool\"\" shtick much too often in his movies, and it is rarely credible. Dean Martin is kind of miscast; he isn't miscast as a card-player, but rather because of the accent which simply doesn't suit him. MacLaine is charming as ever, but she plays a caricature - and this reliance on caricatures is one of the basic problems with the film. The main characters are all some sort of stereotypes out of bad or seen-it-all-before movies and cheap novels; Frankie is the \"\"cool cat\"\" who comes back to town to get all the women, and he couldn't care less about his writing (which, predictably, eventually garners recognition); Martin is a sleazy but friendly card-player; MacLaine is the dumb, but very likable bimbo; Frankie's blond love-interest is a snotty literary expert; Frankie's brother is the successful guy who married into his wife's business and has a lousy marriage; and so on. Clichés.<br /><br />The story contains a couple of coincidences which are a little too far-fetched for my taste: Frankie just happens to bump into his niece in a locale; his niece just happens to be meters away from her daddy when the latter kisses his secretary for the FIRST time; and then there is the awful, stupid ending.<br /><br />In it, a drunk guy bent on killing Frankie-boy somehow manages to find him in a carnival of all places! The place is utterly crowded, with the typical noise and chaos - plus it's happening in the evening - and yet the guy somehow finds Frankie (in spite of being drunk as a doorknob) and shoots at him. But guess who he kills? MacLaine. She jumps in front of the bullet to save Frankie: a cliché which comic-book writers might cringe at. This utterly pathetic, over-dramatic, and annoying ending certainly cannot please any, even semi-intelligent, viewer. And this happens on the same day that MacLaine and Sinatra got married! The writer of this nonsense seems to have read crappy dime novels his whole life - how else is the writing of this movie to be explained? There is even a card game in which a brawl ensues with Frankie & Martin vs. some cliché caricatures out of the writer's \"\"vivid\"\" imagination. (It was like a damn Western suddenly.) Another dumb thing is the way Sinatra was crazy about the boring snotty-nosed bimbo and pretty much ignored MacLaine. As the movie progresses we find out that Sinatra finds MacLaine to be too dumb for him, just as the blond bimbo finds Sinatra to be too low-class for her. There is a certain snobbism and disdain to be detected in the script regarding MacLaine. MacLaine is treated as worthless by everyone, while the blond bimbo is treated as a princess and an intellectual; the ironic truth is that the latter's character comes off as rather dumb and not at all as intellectual; her behaviour, comments, and opinions are mostly clichéd, silly, confused, pretentious, and primitive. At least MacLaine's character KNOWS that she (MacLaine) is dumb. There is another irony that I didn't fail to notice: Sinatra had trouble finding an ending for his latest story - much like the writer of this movie, and that's why he came up with the corny, crappy finale.<br /><br />The film basically has a solid cast, and the photography is nice, but the script, though sometimes okay, relies to heavily on silly nonsense instead of on reality-based characters and events.<br /><br />If you're interested in reading my \"\"biographies\"\" of Shirley MacLaine and other Hollywood intellectuals, contact me by e-mail.\"\r\n1\t\"When I heard that Adrian Pasdar was in drag in this movie, my expectations that I would watch the entire movie were low. The only reasons I gave it a chance were the magnificent Julie Walters and the recommendation of a friend.<br /><br />What i thought would be a broad \"\"Mrs. Doubtfire\"\" type of farce turned out to be a gentle and insightful comedy. Pasdar is entirely credible and empathetic as the ambitious business man who needs to release the female part of his being by cross-dressing on occasions. He transmits these needs to the audience in a thoroughly believable fashion. Julie Walters is magnificent, is as her habit, as the landlady who teaches him unconditional love.\"\r\n1\tFabulous actors, beautiful scenery, stark reality. I won't elaborate on all of the other reviewers' comments because you get the picture! However, the movie isn't for the squeamish. Reality is slaughtering pigs and other livestock in order to survive. I also have Elinore Randall Stewart's homestead book. I read it several years ago, I have to reread it, since I just watched the newly-released, remastered DVD of the movie.<br /><br />I tried to buy the video for several years, finally bought it used from a video store that went out of business. But Yippee! The DVD is now for sale, I purchased it on amazon.com. Not cheap, but well worth it to me. This is a movie I will be watching until the end of my days!\r\n0\tI may not be a critic, but here is what I think of this movie. Well just watched the movie on cinemax and first of all I just have to say how much I hate the storyline I mean come on what does a snowman scare besides little kids, secondly it is pretty gory but I bet since the movie is so low budget they probably used ketchup so MY CRITICAL VOTE IS BOMB!!! nice try and the sequel will suck twice as much.\r\n0\tI have seen every episode of this spin off. I thought the first season was a decent effort considering the expectations of following such a success that is Grey's Anatomy. Thus i have continued to watch. I'm afraid the second season lacks the charm, the chemistry and more importantly the drama of it's predecessor Grey's Anatomy. The relationships seem contrived and the acting is so-so. The writing lacks the intelligence and comedic hints seen in GA. There are shows that a formulaic but do not feel formulaic and contrived, unfortunately PP is not so. I loved Kate Walsh's presence in GA. I'm afraid Kate Walsh's life in LA is simply not interesting.\r\n1\t\"First of all i'd just like to say this movie rawked more than any of the recent crap that hollywood has cooked up out of its bowels. McBain is a true action film with more violence than most viewers can handle. It has all of the classic elements of a late 80's/early 90's action film....the random gratuitous acts of violence (ie. when Walken and crew go in to confront the drug dealers to get money they just show up and kill them rather than letting them live and just taking their money), the snapping of necks, the guys on fire, the guys that get blown off buildings, and of course the guys who are on fire that get blown off of buildings. Walken is at his finest in this picture delivering memorable lines such as, \"\"let's go sit..........out on the deck.\"\" and others that make this film a top buy off of the clearence rack at the local video store. if you have a bloodlust for unnecessary random acts of violence rent this movie today and satisfy your thirst.\"\r\n1\tActually my vote is a 7.5. Anyway, the movie was good, it has those funny parts that make it deserve to see it, don't misunderstand me, is not the funniest movie of the world, and its not even original because its a idea that we have seen before in other movies, but this one has its own taste, a friend of mine told me that this was a film for boyfriends... I think that not exactly but who cares? Also there is another movie that show us almost the same topic, Chris Rock appears in it, the name is Down to Earth, men, that one its a very funny movie, see both if you want and I know that you will agree that Mr. Rock won with his movie. I would liked that the protagonist male character were given to Ashton Kutcher, however, the film is good.\r\n0\tThe episodic version of Robert Heinlein's Starship Troopers plays out at a deathly slow pace, following Johnny Rico leaving his parents, the (not very attractive) girl he lusts for, and joining the mobile infantry. The aliens in the show are nothing like the barbaric bugs from the film, instead being squid-like monsters that shoot lasers out of their mouths.<br /><br />Throughout watching this version, I was continually amazed at just how fruity they've managed to make the whole thing. The show is concerned mostly with the relationships between the recruits, and the aching, prolonged gazes they give each other through their battle armour visors, with 80s synth pop sometimes arriving *during* the sparse battle sequences which at last turning up in the final few episodes. In terms of construction, it owes a debt to Top Gun, sharing much in terms of pacing and content (and all that implies).\r\n1\t\"I have to say that this TV movie was the work that really showed how talented Melissa Joan Hart is. We are so used to, now, seeing her in a sitcom and I really hope that a TV station will show this TV movie again soon as it will show the Sabrina fans that MJH shines in a drama. Seen as we have watched her on Sabrina now for now 5 years and so to give the viewers a taste of her much unused talent would be a plus. Melissa plays her role so well in this wanting her parents \"\"done away\"\" with so she can be with the guy she loves. One thing that all Sabrina viewers will notice, Melissa works with David Lascher in this, well before he took the role of Josh on Sabrina. So it would be kind of neat to see this currently whenever it gets aired again. Hopefully MJH gets some good roles in movies or even in more TV Movies, sort of like Kellie Martin who has always shined in TV Movies. Lots of unused talent waiting to bust out when it comes to Melissa Joan Hart, you shine always Melissa!!!\"\r\n0\tPrevious comment made me write this. It says that Muslims are blonde and Serbs are dark (because our blood is mixed). This comment just says that this opinion can be made by racist.Look,race is nothing.I'm color blind.I look like Pierce Brosnan but I'm no Irish. So what?I might add that I am not 100% Serb,that I have some Austrian and Croat blood within me but whats the point.I'm dark, half-breed?Is that so? Anyone using racial prejudices with such bad intent like Lantos(producer9and director is racist for me.Karadzhic, Izetbegovich, Milosevic, Tudjman they are all monsters and I blame them for destroying my life, my family, my country, Yuggoslavia. Hope they will be all in hell but that wont return our dead relatives back. I am proud of being Serb and I am proud of my cousins, Austrians,Croats,Muslims, Hungarians, Arabs (yes I am from Serbia and I have multiethnical family).This movie doesn't show sufferings of Serbs or Croats within Sarayevo,terrible terrorism of street gangs,Muslim extremism.I add: I kneel and pray for all innocent sisters and brothers Muslim,catholic or orthodox, killed in this war.This film is manipulation with our misery,false humanitarianism's which doesn't help at all.It helps Lantos to fill his pockets with more doe,alright!\r\n0\tWith a cast list like this one, I expected far better. Venessa Redgrave spent the majority of the movie lying in bed. The best actresses in the world cannot make anything very interesting when their acting is limited to lying down and falling asleep throughout the entire movie. The plot summary says that a secret is revealed to the daughters as their mother comes closer to death. The thing is, she never tells her daughters anything except cryptic advice to be happy. All the relationships in the movie are underdeveloped. I also felt that the back and forth between the past and present was unnecessary. It seemed as if the idea was stolen either from the book the Da Vinci Code in which the device was used to increase suspense, or from The Notebook in which they used the device to create the never ending romance of the story's main characters. Either way it was a cheap device in this movie because it didn't work to create anything. It was a way to attempt suspense in a movie that has none. I left wondering why good movies can't be written for women. It really was a disappointment.\r\n0\tI must preface this by saying I am a huge romantic. Hence I really wanted to like this film. So I'm writing my thoughts to save the rest of you from the disappointment I felt watching it. The Leap Years tells the destiny-filled tale of Li-Ann who falls for the suave Jeremy and they commit to meet every leap year. A very romantic premise, based on a great short story and with a cast that doesn't feel like you're watching yet another Jack Neo flick. Then why oh why is it so bad? Firstly, I feel the filmmakers thought they were shooting a music video, because they chose to replace storytelling and any true emotions with cheesy montages, predictable actions and clichéd lines. I am both upset and embarrassed to have been one of the first few in Singapore to watch The Leap Years, but those of us in the cinema would agree that our muffled groans at the cringe-worthy performances spoke volumes. My hope was to watch a romantic movie that would surpass Forever Fever, the best Singaporean romantic comedy so far, and The Leap Years does not even come close. Some blogs have called it The Crap Years which is harsh but ultimately true. Don't waste your money or your emotions like I did. The movie will make you give up on love forever.\r\n1\tA must see for anyone who loves photography. stunning and breathtaking,leaves you in ore. seen it twice once in a cinema and now on DVD. it holds up well on DVD but on the big screen this was something else.<br /><br />Took my two daughters to see this and they loved it, my oldest cried at the end.but she was the one who wanted to see it again tonight when she saw it at the video shop. its simple telling of a child's love for nature and in particular a fox is told well. in some ways it reminded me of the bear in its telling a story not documentary formate. which works for children very well. not being preached to is very important, you make your own mind up.<br /><br />But the star of this film is the cinematographers, how did they do what they did. amazing just amazing.\r\n1\tThis is probably my favorite movie of all time. It is perfection in its storytelling. It will break your heart not because it's over sentimental but because you will truly feel every emotion these characters go through. You feel for Doggie because of the hopeless situation that existed for young girls in China at that time.\r\n1\tPrison is not often brought up during conversations about the best eighties horror films, and there's a good reason for that because it's not one of the best...but as you delve past the classic films that the decade had to offer, this is certainly among the best of the lesser known/smaller films. The film does have some connection to blockbusters; for a start it's an early directorial effort for Renny Harlin; the capable director behind a number of action films including Die Hard 2, Cliffhanger and Deep Blue Sea; and secondly we have an early role for Lord of the Rings star Viggo Mortensen. The film is not exactly original but the plot line is interesting. We focus on a prison that has been reopened after a number of years. This was the prison where a man named Charles Forsyth was sent to the electric chair after being framed by the prison's governor. Naturally, the spirit of the dead man is not resting in peace; and when the old execution room is reopened, the spirit of the dead convict escapes for vengeance.<br /><br />The film is not exactly The Shawshank Redemption, but it does take care to build up its various characters and while the main point of the film is always the horror, the prison drama behind it all does make for an interesting base. This is a good job too because other than the basic premise, the film doesn't really have a 'plot' to go from and we solely rely on the interaction between the characters to keep things interesting. The horror featured in the film is at times grotesque but it's never over the top, which might actually be the reason why this film is seldom remembered, being released in a decade of excess. The murders themselves are rather good and imaginative, however, and provide some major highlights. As the film goes on, we start to delve more into the back-story of the vengeful convict's ghost and while it's fairly interesting, some things about it don't make sense and it drags the film down a little. Still, everything boils down to an exciting climax and overall I have to say that Prison is a film well worth tracking down.\r\n1\tThis movie has it all. It is a classic depiction of the events that surrounded the migration of thousands of Cuban refugees. Antonio Montana(played by Al Pacino), is just one of the thousands to get a chance to choose his destiny in America. This cinematic yet extremely accurate depiction of Miamis' Drug Empire is astonishing. Brian DePalma does an amazing job directing this picture, so much that, the viewer becomes involved with both the storyline, as well as every character in the cast. With Tony's characters' pressence being so believable and strong, Brian DePalma brang out the raw talent exposed by Steven Bauer(Manny, Tony's best Friend), Mary Elizabeth Mastantonio(Gina, Tony's Sister), Robert Loggia(Frank, Tony's Boss)and Michelle Pfeiffer(Elvira, Frank's Wife). I enjoyed every minute watching this movie, and still watch it on a weekly basis. On this year, the 20th Anniversary of this classic crime movie, I for one am a true believer that in another 20 years people will still refer to this movie in astonishing numbers. With other crime movies being so dramatic I find, this movie is a shock to the system.\r\n1\tIf you a purist, don't waste your time - otherwise, hold onto your hat and enjoy the adventure. I loved the Stewart Granger/Deborah Kerr version - I've seen it dozens of times, but this film is every bit as good, only different. I won't detail the differences because it would spoil the film. Also, it is a pleasure to see Alison Doody again (I'm a huge Indiana Jones fan), Patrick Swayze is good as Quatermain, and the supporting cast is superb. I find the quality of the supporting cast one of the trademarks of a Hallmark Production and this film was no exception. The cinematography is splendid and the score is perfect. If you are looking for entertainment, you won't be disappointed.\r\n1\t\"In Iran, women are officially banned from men's sporting events. In June 2005, the Iran's national soccer team has an important game against Bahrain in the Azadi Stadium for the qualification of the World Cup. A group of Iranian girls and lovers of soccer dresses like boys and unsuccessfully attempts to enter in the stadium being arrested.<br /><br />Soccer (and Flamengo's team), beach and movies are my greatest passions; therefore I loved this little gem about a group of girls and their passion for soccer. The director Jafar Panahi, from \"\"The White Balloon\"\", \"\"The Mirror\"\" and \"\"The Circle\"\", shot this movie on the day that Iran defeated Bahrain and qualified to the World Cup in Germany. The dramatic and funny adventure of these Iranian girls is one of the most delightful movies I have ever seen. My vote is nine.<br /><br />Title (Brazil): Not Available\"\r\n1\t\"Holy crap this is so hysterical! Why aren't American comedies written like this? For anybody who thinks comedy has to be dumb-- there is more wit and intelligence in the six episodes of this series than in a shelf of novels! Hugh Laurie is a complete hoot. I couldn't believe it was the same guy as House! There are so many great lines and gags in this series you could watch each show dozens of times and still pick up on new things each time. Rowan Atkinson is hilarious as the verbose and put upon butler Edmund. This is my favorite of all the Blackadder series. And Tony Robinson is wonderful as ever as the somewhat obtuse heart of the series, \"\"the oppressed mass\"\" Baldrick. Some of my favorite lines: \"\"When someone messes with a Wellington he really puts his foot in it\"\" and Baldrick explaining how he got his name and cousin Macadder \"\"the top kipper salesman\"\" and homicidal swordsman from Scotland.\"\r\n1\t\"\"\"Father of the Pride \"\" was another of those good shows that unfortunately don't have a very long life . And that is pretty sad ,specially if you consider that almost all the time the worst shows are still on air ( think in \"\"The Simple life \"\") I admit that are many similarities with this show and \"\"The Simpsons\"\" ,but despite the similarities ,the show have it own merits . The animation is just adequate ,not incredible ,but is good .The best are the characters . All the animals are very likable and funny , and even Sigfried and Roy had their moments . The music was good ,I liked many of the songs .<br /><br />Even if the show isn't very original ,I think that this had lots of potential .Like \"\"Mission Hill \"\" a show that isn't very famous but I liked a lot , this didn't have the appreciation that it deserved . What a shame .\"\r\n0\tLudicrous violations of the most basic security regs are only the beginning. It's hard to see how they achieved such abysmal trash on such a low budget. I turned it off once, then got curious to see if it could get any worse. It did.\r\n1\t\"Diane Keaton gave an outstanding performance in this rather sad but funny story which involved quite a few young people and their deep dark secrets. Diane Keaton,(Natalie),\"\"The Family Stone\"\",'05, who had an only daughter and loved her beyond words can describe. She always called her and told her, \"\"Surrender Dorothy\"\", which was an expression used in the 'Wizard of Oz',1939. A sudden car accident occurs and Natalie gets herself deeply involved with her daughter's friends and lovers. As Natalie investigates, the more truths she finds out about herself and her real relationship with her daughter. Great film to view and enjoy, especially all the good acting from all the supporting actors.\"\r\n0\tThis movie was two and a quarter excruciating hours. Someone please tell me what the point was?<br /><br />I mean, I understand the historical setting. It's supposed to be about a ragtag group of Confederate bushwhackers (terrorists?) on the Missouri-Kansas frontier, taking revenge against all northern sympathizers and abolitionists during the U.S. Civil War. But aside from gratuitous violence there wasn't really much of a point to this movie. Perhaps it was a political statement? That war is really nothing much more than gratuitous violence? If that was the point it was done quite well, but I don't think that was the point. I think the producers really thought they were making a worthwhile movie here, but as far as I was concerned there was a complete lack of any plot. It seemed like I was watching a paperback novel come to life, with the characters looking like what you would see on the covers of such novels.<br /><br />This movie should be burned along with some of the towns this gang torched!\r\n1\tSuch a joyous world has been created for us in Pixar's A Bug's Life; we're immersed in a universe which could only be documented this enjoyably on film, but more precisely a universe which could only be documented through the world of animation. For those who have forgotten what a plentiful and exuberant world animation can offer  when it's in the right hands that is  A Bug's Life is a warm reminder. We walk out of the film with an equally-warm feeling, and a sense of satisfaction derivative of only high-calibre film productions.<br /><br />It is only Pixar's second animated feature. The sub-group of Disney made their spectacular debut and perhaps entirely inadvertent mark on the film world three years prior in 1995, with their landmark movie Toy Story. It was a movie which defied convention, re-invented and breathed new life into animation and defined a whole new level of excellence. Now, they return with their sophomore effort which, to be honest, draws a creeping sense of cynicism in us all prior to seeing the film.<br /><br />After all, it's a film about ants. Well, all walks of the insect and bug world are covered in A Bug's Life, but it is the ant which is the focal point in this film, as humans are the focal point in dramas, romances and so on. How can such an insignificant species of animal such as an ant act as the protagonist of a movie, let alone provide the entire premise of a feature film? Surely they jest. However, we forget that in Toy Story, a bunch of toy-box items were able to become the grandest, most inspiring and lovable bunch of animated heroes and villains ever concocted. The guys at Pixar manage to pull off the same feat, and manage to turn a bunch of dirty and miniscule bugs into the most endearing and pleasant gang of vermin you'll probably ever encounter.<br /><br />Not only are they all entirely amiable and likable  there isn't an unpleasant character in sight; even the villains are riveting characters  but they're colourful, they're eclectic, and they're idiosyncratic. And the array of characters is also gargantuan for lack of a better term, only adding the rich layers of distinctiveness already plastered onto A Bug's Life from the beginning. We shall start with our main character, and our hero. His name is Flik (David Foley), and his character is rather generic to say the least. Out of the thousands of faithful and obedient worker ants residing on the lush, beautiful Ant Island, he is the one considered the 'black sheep' of the clan, as seen in the opening moments of the movie when he inadvertently destroys the season's harvest with his antics.<br /><br />The problem arises in the fact that the ants' harvest is for a bunch of greedy grasshoppers led by Hopper (Kevin Spacey), who are eager to continue to assert their wrath and autocracy amongst the puny little ants; when they show up to Ant Island for their annual banquet and see that their offering is gone, they go insane, for lack of a better term. Hopper offers a proposition to save the ants from total extinction at his pack's hands; however, it's a negotiation which is simply impossible to fulfil. The cogs and clockwork in Flik's mind run at full steam now despite his guilt and shame, and he offers to leave Ant Island in search of some mighty bug warriors who can come to the colony's rescue and fight off Hopper and the grasshoppers.<br /><br />If you think about it, A Bug's Life bears some heavy resemblance to the plot line's of Akira Kurosawa's classic Seven Samurai, or the American remake The Magnificent Seven, in which a village of hapless but good-hearted folk are threatened by malevolent and wicked enemies  one lone village-dweller goes in search for help in the big city, finds it and returns to the colony to drive off evil. In A Bug's Life, the help comes in the form of a down-and-out circus troupe who is mistakenly perceived by Flik as warriors in a bar-room brawl.<br /><br />Much amusement comes out of these scenes, and much amusement comes out of these circus troupe bugs. Among them are an erudite stick insect (David Hyde Pierce), a side-splitting obese German caterpillar by the name of Heimlich and a quasi-femme fatale ladybug who's in fact a gritty and masculine ladybug (Dennis Hopper). It's exceedingly enjoyable watching these bugs on-screen, as it is watching the bugs and the insects interact on-screen, as is the entire movie collectively.<br /><br />As I've said, much amusement and mirth comes out of their characters and joyous interactions with one another, which give way to a bevy of hilarious lines, wonderfully suspenseful and riveting situations and overall a dazzling movie. What makes A Bug's Life even better is that the film isn't restricted simply to children as many may perceive it to be, although children would indeed find more entertainment out of this film  the clichéd kid-friendly situations are a bit more abundant than we'd like. However, it's easy to ignore this fault, and it's incredulously easy to enjoy this film.<br /><br />Although A Bug's Life may not reach the dizzying and landmark standards set by its predecessor, this is still a superb movie, and the start of something promising here. Pixar have proved that they're not just a one-hit wonder, but instead a much-gifted and talented group of film artists in Hollywood. They raise the bar endlessly, and when someone always manages to top their standards, it's only always by themselves. What more is there to say about A Bug's Life other than: see it; it's not quite the best which we've seen from the folks at Emeryville, California, but this beats out the lot of its year  and I'll be damned if this isn't the best animated feature of 1998.<br /><br />8.5/10\r\n0\t\"Of the many problems with this film, the worst is continuity; and re-editing it on VHS for a college cable channel many years ago, I tried to figure out what exactly went wrong. What seems to have happened is that they actually constructed a much longer film and then chopped it down for standard theatrical viewing. How much longer? to fill in all the holes in the plot as we have it would require about three more hours of narrative and character development - especially given the fact that the film we do have is just so slow and takes itself just so seriously.<br /><br />That's staggering; what could the Halperins have possibly been trying to accomplish here? Their previous film, \"\"White Zombie\"\", was a successful low budget attempt to duplicate the early Universal Studios monster films (The Mummy, Dracula, etc.), and as such stuck pretty close to the zombie mythology that those in North America would know from popular magazines.<br /><br />Revolt of the Zombies, to the contrary, appears to have been intended as some allegory for the politics of modern war. This would not only explain the opening, and the change of Dean Jagger's character into a megalomaniac, but it also explains why the zombies don't actually do much in the film, besides stand around, look frightening, and wait for orders - they're just allegorical soldiers, not the undead cannibals we've all come to love and loathe in zombie films.<br /><br />I am the equal to any in my dislike for modern war and its politics - but I think a film ought to be entertaining first, and only later, maybe, educational. And definitely - a film about zombies ought to be about zombies.<br /><br />Truly one of the most bizarre films in Hollywood history, but not one I can recommend, even for historic value.\"\r\n0\tThis is only the second time I stopped a video/DVD part way through.<br /><br />I was willing to give this film the benefit of the doubt at first, even though it managed to be both shallow, clichéd and stupid.. AND joyless, plodding and pretentious.<br /><br />It was like an After School Special directed by that weird grade nine kid who thinks nobody understands him... creepy and sad, with voice-over narration that only the most deluded adolescent would consider poetry... and some singing, and... no, really, the poor child's suffering...<br /><br />Enough, already, especially when it morphed into a brazen, clumsy, and insulting Clockwork Orange ripoff. And did I mention the singing?<br /><br />This isn't the worst film I've ever seen, but certainly the one I've felt least compelled to sit through. I don't recommend it to anyone.\r\n1\tOne of b- and c-movie producer Roger Corman's greatest cult classics was the Ramones vehicle (originally designated for Cheap Trick), Rock N' Roll High School. It's just a simple, technically dated story (but would serve up extra doses of nostalgia humor considering these were the kind of things that made Napoleon Dynamite characters funny--see Eaglebauer's van) about teenagers who love rock n' roll.<br /><br />Students at Vince Lombardi High School are met with resistance by the evil principal, Miss Evelyn Togar (played by cult classic favorite, Mary Woronov) who fears that Rock N' Roll turns kids into uncontrollable, amoral deviants and vows to make a Rock N' Roll-free zone. Actually, she intends to wipe out Rock N' Roll for all students, regardless of whether its at school, and she has the cooperation of most of the adults who might make the plan successful.<br /><br />But not if Riff Randell (PJ Soles) can help it. A Ramones fanatic, she has written some songs (including Rock N' Roll High School) that she wants to give to the Ramones, and in trying to do so, is rebuffed by Miss Togar who does all she can to keep her from going to see the Ramones play in town. It culminates into an ultimate revolt between the obsolete fun-hating adults and the teenagers (in an ending that is reminiscent of Over the Edge, somewhat). After the years of punk, when the fame of garage rockers, The Ramones (and others) would mark another shift in music evolution, it was great to see a movie that celebrated the fun of it all and in such a humorous, exaggerated way.<br /><br />It is mostly mild comedy, but a great feel-good comedy nonetheless when you're in the mood for something more laid back to entertain you. With Jerry Zucker (of Airplane fame) and Joe Dante (of Gremlins fame) both taking part in some of the directing, you can get the idea for what kind of humor you're in for (and not to mention, expect to see Dick Miller even if only for a few minutes in the film's finale). The story must've later inspired (and was consequently updated) by the mid-90s comedy, Detroit Rock City, which some minor character changes in the vehicle for aged glam rockers, Kizz.<br /><br />I would recommend passing on the Corey Feldman vehicle, Rock N' Roll High School Forever, released nearly a decade later. The original is still the best.\r\n0\t\"I usually comment only on movies that I like, figuring \"\"everyone to his/her own taste,\"\" but here I want to make an exception. The premise of this movie, which somehow seems to get lost in the shuffle, is that these two self-centered adults have a perfect right to go off to Las Vegas, get drunk, get married, and inflict incalculable suffering upon their respective broods of children. Even allowing for the culturally sanctioned inebriation, they have neither the courage nor the sense of responsibility to wake up the next morning and undo what they have set in motion. After all, \"\"love\"\" is all that's important, isn't it? To hell with everybody else. Whether or not things \"\"work out in the end\"\" is really not the point; in fact it's quite irrelevant. The point is that disrespect for others, especially if they are young persons, and especially if they are in a position of dependency, is made light of and thereby reinforced by this movie. There are far more innocuous behaviors these \"\"parents\"\" could have performed that would have brought down an army of social workers on their heads in a heartbeat.\"\r\n0\t\"Not that I tinkle myself with glee at the sight of realistic blood shed, but when I put a DVD in expecting a bloodbath, and what I get is one bloody scene (the eyeball) at the tail end of asinine fake slapping, and spinning in a desk chair, I end up thinking \"\"well that's 43 minutes of my life gone forever.\"\" I wouldn't considers this or Flower of Flesh and Blood \"\"movies\"\" so much as an exercise of will; to see if you can sit through them. Flower of Flesh and Blood had a few tough spots to watch. The Devil's Experiment did not. It was at best, stupid, and at worst...well...really stupid. Perhaps my expectation were too high. I put the DVD thinking \"\"oh man, this is gonna be sick.\"\" After watching them fake slap the girl about a thousand times, I was watching it in fast forward.<br /><br />Two kinds of people would be interested in this film. 1) People who seek out F'd up films just to see how F'd up it really is, or 2) horror completest. I sought this and the other Guinea Pig films for the latter reason, but even if I fell into the category of the former, this film wouldn't float my boat. As a matter of fact, I could imagine this film increasing one's blood lust...as in \"\"WOULD YOU JUST KILL THE B*TCH ALREADY!!\"\" So in conclusion, the only reason to own this film is for collection purposes. If you want carnage that traditional horror doesn't provide, get Traces of Death. Sure, that sucks too, but at least you'll get the blood and guts you expect.<br /><br />The only reason I can see for anyone praising this crap is because they feel they're supposed to. No artistic merit that I can comprehend, no reason for it's notoriety, no nothing. Just a lame attempt to be shocking.\"\r\n0\t\"What we have here is a classic case of TOO much patriotism. This is what happens when you live in a small country with very little (next to none, even) cinema history. Whenever somebody does come up with a slightly more ambitious film project  other than the usual dramas about struggling farmer families or long feature slapstick movies of local comedians  everybody feels obliged to love it and even responsible to spread favorable reviews across the countries' borders. This is especially the case when the writer/director of this particular film is already a nation's sweetheart, because he's also the founder and lead singer of a popular rock band. \"\"Any Way The Wind Blows\"\" is by no means a bad film, but it's definitely overrated (if that is even possible within the boundaries of a small country) and has absolutely nothing new or even remotely original to offer. This is basically the Flemish version of classic movies such as \"\"Short Cuts\"\" and \"\"Magnolia\"\" and illustrates a mosaic of characters whose daily lives initially appear to be unrelated but eventually come together in the end. The only thing that seems to unite the eight protagonists at first is the city of Antwerp, where they all live and work, but gradually the deeper relationships between them become transparent and near the climax they all gather for a party. The main problem with \"\"Any Way The Wind Blows\"\", at least according to yours truly, lies with the characters. They really are random, uninteresting and honestly don't experience anything that could be considered out of the ordinary. It was presumably writer/director Tom Barman's intention to depict the average & regular inhabitant of Antwerp but then, seriously, what is the point? One of the characters gets fired from his film projectionist job, another one is a failed novelist struggling with a marriage crisis, two siblings recently lost their father and the most \"\"mysterious\"\" one of them all is followed by the wind wherever he goes. There are a couple of more characters regularly walking through the screen, but they're even less worth mentioning. These people simply drivel on and on about very random topics (like life in the 80's, dates and each other's bowel motions) and philosophy about matters nobody cares about. Some of the dialogs do evoke mild chuckles, especially the interactions between the two twenty-something guys from Ghent, but still nothing extraordinary or even memorable. The film actually works best as a touristy video to promote the city of Antwerp and as an extended & versatile music documentary. There are several stylish & nifty sightseeing images of Antwerp and there's always beautiful music playing, whether really loud or subtly in the background. Generally speaking \"\"Any Way The Wind Blows\"\" is a competently made and stylish effort, but too mundane and slightly boring, and I honestly wonder most of its fans would even had bothered to watch if it weren't a Flemish production.\"\r\n1\tIn the process of trying to establish the audiences' empathy with Jake Roedel (Tobey Maguire) the filmmakers slander the North and the Jayhawkers. Missouri never withdrew from the Union and the Union Army was not an invading force. The Southerners fought for State's Rights: the right to own slaves, elect crooked legislatures and judges, and employ a political spoils system. There's nothing noble in that. The Missourians could have easily traveled east and joined the Confederate Army.<br /><br />It seems to me that the story has nothing to do with ambiguity. When Jake leaves the Bushwhackers, it's not because he saw error in his way, he certainly doesn't give himself over to the virtue of the cause of abolition.\r\n1\tThis movie was a fascinating look at creole culture and society that few African Americans are aware. My own two children are by products of a paternal grandmother whose father was a member of the gens de couleur libre and a black skin woman whose parents were ex-slaves. He married outside of and against his culture and was cut off from all of his family except for one sister who took pity on her brothers plight; raising 8 children during the great depression of 1929; providing the family with food whenever she could. Of course she clandestinely aided this family fearing for her own ex-communication. My daughter was fascinated by the movie. We have made it a part of our library.\r\n1\t\"I was watching this when my wife called to inquire from the other room as to my choice of fare. My comment? \"\"I am watching my Life!\"\"<br /><br />Though younger, but only by 5 years or so, than the \"\"Rocket Boys\"\" I remember the absolute urgency with which Sputnick was greeted by our administrators of education and how the whole Science Fair thing gained momentum and took me and others into the competitive whirlwind. My own tornado landed me in my own State's Science Fair, in Physics by '62, though our group was less successful in gaining the support of, for example, firefighters we approached for guidance and counsel until after a tragic event, our city went so far as to allow us to tour the Nike missile site on Chicago's lakeshore.<br /><br />This movie brought it all back for me and I will bet that it brought it all back for a bunch of us \"\"UberNerds\"\" of the late '50s and early 60's.<br /><br />We are in a similar science brain drainage period now and really need this movie as a country. See It!\"\r\n0\t\"I am starting this review with a big giant spoiler about this film. Do not read further...here it comes, avert your eyes! The main heroine, the girl who always survives in other slasher films, is murdered here. There, I just saved you 79 minutes of your life.<br /><br />This is one of those cheap movies that was thrown together in the middle of the slasher era of the '80's. Despite killing the heroine off, this is just substandard junk.<br /><br />Both priests and college students get a bad rap here. They are pictured as oversexed, sociopathic morons who have way too many internal problems to deal with what looks like junior college campus life...and the college students come off even worse.<br /><br />\"\"Splatter University\"\" is just gunk to put in your VCR when you have nothing better to do, although I suggest watching your head cleaner tape, that would be more entertaining.<br /><br />This is rated (R) for strong physical violence, gore, profanity, very brief female nudity, and sexual references.<br /><br />\"\r\n0\tIf you want to see women's breasts, get a porno. There is no plot, but the last 45 minutes of this movie focus on resolving some sort of dangerous plan. The only value this movie has is that sometimes its so bad its funny, and, yes, boobs are boobs.\r\n0\t\"Although this is \"\"better\"\" than the first Mulva (which doesn't say much anyways, I would rather watch paint dry) it still sucks. Do yourself a favor and avoid anything from these Low Budget Pictures guys. I was suckered into buying a few dvds to support some indy filmmakers and boy did I regret it. Some haven't even been officially \"\"released\"\" yet (not bootlegs-bought from the filmmakers themselves) and I can't even list how bad they all are. Avoid anything with Teen Ape or Bonejack in them as they do pop up in other small indy films that they are friends with. If you are friends of these guys, chances are you were in their movies and had fun making them. But for those that had to watch them? No way. Bad video, bad audio, bad acting, bad plot...etc etc. These aren't even funny. I gave this one a 2 only because Debbie Rochon is in it and that is about it. Maybe it doesn't even deserve the 2. About a 1 1/16th star to show it was slightly better than the first (which I wish I could have rated in the negatives). If you want a decent no budget film, go pick up something from LBP's \"\"friends\"\" over at Freak Productions like Marty Jenkins or even Raising the Stakes. Those are actually decent.\"\r\n1\t\"This film, in my opinion, is, despite it's flaws (which I maintain are *few*), an utter masterpiece and a great and glorious piece of art.<br /><br />What Mr. Bakshi has done here is to create an utterly beautiful film and has shown his immense talent and versatility as a director of animated films. He does not receive 1/100th of the credit he deserves for literally saving the art of animation for an adult audience. If it were not for Mr. Bakshi, I don't believe animation would have survived the Disney onslaught. What is more, with The Lord of the Rings, he has not only created a beautiful animated film, but he has created an entirely new art form - unfortunately one that never quite made it off the ground.<br /><br />Most people will complain about the use of rotoscoping in the film (the use of live action images which are used as background images and often animated over using various techniques from what appears to be small amounts of tinting to full blown animation). But I feel that the people who complain about it simply cannot accept an art form which is out of the norm. No, this is not Disney animation. No it's not live action. No, it's not \"\"cheating\"\" - what it is is a new, fascinating, and absolutely wonderful art form. Something so fresh, and so new that it feels completely at home in such a fantastic tale as \"\"The Lord of the Rings\"\". Bakshi's pioneering use of this technique brings the subtleties of Middle Earth to life is a very dark and mysterious way, in particular, the darker of Tolkien's creatures, particularly the Nazgul, are realized in a way that traditional animation or live action have not been able to accomplish.<br /><br />Peter S. Beagle's screenplay (based very little, as I understand it, on an early draft by Chris Conkling) is a very loyal adaptation of Tolkien's works. Where possible he uses dialogue directly out of the novel and it feels at home in the world which Bakshi has created. There are many cuts that were made to fit the first book and 3/4 into a single 2 hour 15 minute film, but there are very few changes to the storyline. There are a few holes which it would have been nice to have filled: The reforging of Narsil, the gifts of Galadriel, the Huorns at the battle of the Hornburg, but, again, with the time limitations he had (already the longest animated feature in history), these are certainly understandable (though it makes one wonder how they could have been explained in a sequel).<br /><br />Also there is the delightful (one of my favorites) score by Leonard Rosenman (who also scored Barry Lyndon and Star Trek IV (the score for which is clearly based on his LotR work)). It is bombastic and audacious and, dare I say, perfect. It stands on it's own as an orchestral triumph, but when coupled with the images of the film, it enters a whole new world of symphonic perfection. So far from the typical Hollywoodland fare that it turns many people off.<br /><br />The voice actors are wonderful. Of particular note is John Hurt as Aragorn who just oozes the essence of Strider.<br /><br />The character design is also wonderfully unique, though not often to everyone's taste. But remember that it is the duty of the director of an adaptation to show you what he/she imagines, not what you might have imagined, and so Aragorn is realized with a distinctive Native American feel and Boromir appears in Viking inspired garb. This is perhaps not what you imagined, but I can only applaud Mr. Bakshi for showing us what he \"\"saw\"\". It also might be noted that he spent a significant amount of time with Priscilla Tolkien in developing the character outfits for the film.<br /><br />One farther word - the Flight to the Ford sequence, in my opinion, is one of the most subtlety beautiful sequences ever to be caught on celluloid. Bakshi is not afraid to slow down the pace for a moment, and his mastery is clearly shown by the incredible tension is able to build. Bakshi's artistic ability and Tolkien's incredible work fuse in this sequence to a glorious peak which has yet to be equaled.<br /><br />The recent DVD release (2001) by Warner Brothers, is sorely lacking. While we can offer our eternal thanks that the film is finally available in widescreen format, the package is woefully short of extras. How glorious it would have been to have had a director's commentary, been able to see the 20 minutes of extra footage that were removed for the theatrical release. Another delightful addition could have been the assembled the live action footage which was later animated over. Also present in the DVD release is the utterly horrible voiceover at the end of the film which is a departure from the simple voiceover which occurred in the very final frames of the film. This version is plastered and poorly rendered right over the musical climax of the score.<br /><br />Of course, the greatest tragedy of all is that the sequel was never made. We will never be able to see Bakshi's interpretation of Gondor, of Shelob, of Faramir, of the Cracks of Doom, of Eowyn's battle with the Witch King or Gandalf's confrontation with him. We will never be graced with Bakshi's image of Denethor or the Palatir or the Paths of the Dead. It is a shame beyond all shames that we will, in the end, have to accept Peter Jackson's glitz and glitter Hollywood, action film version of these later events in Tolkien's masterpiece, but, I suppose even that is better than having no cinematic version at all.<br /><br />David\"\r\n0\t\"Anne Bancroft plays Estelle, a dying Jewish mother who asks her devoted son (Ron Silver) to locate reclusive one-time movie star Greta Garbo and introduce the two before Estelle checks out for good. Might've been entitled \"\"Bancroft Talks\"\" as the actress assaults this uncertain comedic/dramatic/sentimental material for its duration. Hot-or-cold director Sidney Lumet can't get a consistent rhythm going, and Bancroft's constant overacting isn't scaled back at all by the filmmaker--he keeps her right upfront: cute, teary-eyed and ranting. Estelle becomes a drag on this scenario (not that the thinly-conceived plot has much going on besides). Silver and co-stars Carrie Fisher and Catherine Hicks end up with very little to do but support the star, and everyone is trampled by her hamming. *1/2 from ****\"\r\n1\tSurely one of the best British films ever made, if not one of the best films ever made anywhere. Script, cinematography, direction and acting in a class on their own. This film works on so many levels. So why is it completely unavailable on tape, DVD. Never shown on TV? Why is it hidden away when it is regularly shown at the National Film Theatre in London to packed houses?\r\n0\t\"You have to respect this movie. It may be \"\"just a dumb kid's movie\"\" but it's the #1 most frequently requested film title in online movie forums, requested by people who remember the story but can't remember the title. Therefore what follows is a much-needed, detailed plot description, since I haven't been able to find such a description anywhere else on the Internet.<br /><br />A typical 2-story house is shown in suburbia. 7-year-old Bridget narrates about suspecting something is going on since she and her 11-year-old brother Andrew are getting presents from their parents for no apparent reason. Bridget's present is a stuffed penguin that she immediately names Sweet William. Bridget describes her relatives: Aunt Ruth, a bossy nurse taking care of grandmother, Grams the hugging grandmother who makes dolls out of socks, and her brother Andrew, who's into electronics and is grumpy. Grams accidentally hangs up on the lieutenant-governor, which indicates she's getting in the way while living with the family. The two children eat breakfast while the adults discuss moving Grams to a retirement home. Bridget makes an awful-looking pancake sandwich containing cereal, eggs, bacon, strawberries, and syrup, as Andrew looks on incredulously. The two kids then discuss Grams, and Andrew says bluntly that Grams is being \"\"put out to pasture.\"\" Bridget talks with Grams in the attic, has a play tea party with Sweet William in her bedroom, then a living doll unexpectedly pops out of her bedroom closet mirror.<br /><br />Bridget and the living doll become acquainted. The curly-haired living female doll is named Huggins and lives in Huggaland. Bridget gives Huggins a baseball cap from Andrew's room. Huggins hides under some laundry when Bridget's mother comes by, then the mother throws the laundry into the washing machine with Huggins in it. Bridget rescues Huggins and dries her off with a hair drier. They discuss the problem with Grams getting old and having to move away, Huggins says Bridget could talk to the bookworm in Huggaland about it, since he knows everything. They step through the mirror to visit Huggaland, but one of Bridget's tennis shoes becomes lodged in the mirror.<br /><br />Rather than walk around with one shoe, Bridget goes without shoes in Huggaland. They immediately meet Hugsy, a curly-haired living boy doll in Huggaland. Huggins gives Hugsy the baseball cap. They also meet Tickles, Bubbles, Impkins, and Tweaker, and all the dolls sing a song while sitting on a bridge. Hugsy takes Bridget and Huggins in his hugwagon to see the bookworm, who lives atop a stack of giant books. The bookworm consults \"\"the old encyclopedia\"\" and finds that old age can be cured by eating the fruit of the \"\"youngberry tree.\"\" However, only one such tree exists, and it's in the country of Shrugs, ruled by the mad queen of quartz. The only way to travel to Shrugs is to jump down a deep hole that is located inside a nearby giant book.<br /><br />Bridget and the two dolls gulp three times, jump down the hole, and tumble out. Soon they walk down a sideways sidewalk, hear the sea of glass breaking, and fall off the sidewalk when the sideways gravity ends. They encounter \"\"the hairy behemoth,\"\" which looks like a mastodon, has four tusks, and breathes fire out its trunk. But Hugsy boldly goes over and hugs the behemoth, who thereby turns into a baby elephant whose name is Hodgepodge. Hodgepodge had been under a spell by the queen, and owes Hugsy a favor, so they all ride on Hodgepodge's back to the castle. They enter the castle, are surrounded by troll-like beings, the queen (Queen Admira) comes, and Bridget asks for a few youngberries. The queen refuses, then eats one for herself, and brags about her own youthful good looks while looking in a hand mirror. Hodgepodge faints when the queen says he should be \"\"digested.\"\" The queen is upset when Bridget mentions that wicked witches should have warts, so the queen freezes Bridget and orders the three others to be taken to the dungeon. But the queen carelessly leaves the key to the youngberry tree's dome by the lock to the dome-lifting apparatus.<br /><br />Hodgepodge wakes up in the dungeon and uses his \"\"noodle\"\" (trunk) to pull the jail's door down, thereby freeing himself and the two dolls with him. They find Bridget standing petrified, the dolls hug her, which causes Bridget to be revived. Before they flee, Bridget finds the left-behind key to the youngberry tree dome, lifts the dome off, and they pick some glowing youngberries and put them in a jar. The queen catches them, but the queen's arm is trapped under the descending dome while reaching for the key that Bridget left on the ground. The queen suddenly turns very old since she is deprived of the youth-giving berries, and appears to die. Soon Bridget steps back through the mirror into her bedroom but trips on the bottom of the mirror, spilling the berries onto her floor, and the berries quickly vanish into smoke, one by one. Her mother calls for her and Andrew to say goodbye to Grams, who is leaving for a retirement home. Andrew drops his usual grumpy, standoffish facade and hugs Grams, telling her he loves her and that he doesn't want her to go away. Their father is moved, and decides to keep Grams there after all, and everybody hugs and cries, including Aunt Ruthie, who had been the main person pressuring Grams to move out.<br /><br />Andrew asks Bridget for his St. Louis Cardinals cap, Bridget starts to explain how she gave it to Huggins of Huggaland, but Andrew doesn't want to listen to what he believes are her fantasy stories, so he turns around to look for it in her bedroom. One of the dolls secretly hands the cap back through the mirror to Bridget, Bridget puts the cap on Andrew's head, Andrew is mystified, and leaves her bedroom without saying anything. Bridget cheerfully waves at the mirror.\"\r\n1\t\"If you want your vision of Chaplin limited to a lovable tramp and you get your belly laughs from pathos, watch something else. If, however, you love slapstick comedy as performed by one of the best, do watch this one.<br /><br />The image is of the tramp who really cannot get the girl. He spots another couple kissing on a park bench, and he has a blast ruining their fun.<br /><br />This is one of Chaplin's \"\"park comedies,\"\" filmed in Mack Sennett's park, with pickpockets and cops and couples. These shorts work, as the format allows Chaplin to shine as he weaves through predicaments.<br /><br />I checked the box, as this could be considered a spoiler, though it's not if you've seen these films. Everyone ends up in the pond except Chaplin. He gets the girl, who in this case was played by Minta Durfee, a.k.a. Mrs. Roscoe \"\"Fatty\"\" Arbuckle.\"\r\n1\tI've now seen this one about 10 times, so there must be something about it I like!<br /><br />50's US sci-fi movies were pretty much a mixed bunch: they were either intelligently made and/or thought provoking or cheap and laughable cheese. Forbidden Planet is a bit of both, but in that rarity for the genre, colour.<br /><br />It also had a head start with the script - although Shakespeare might not have recognised it, it was based on his timeless play and thus guaranteed a certain amount of longevity itself if made well.<br /><br />It's the story of one mans murderous id artificially magnified infinitely by machines a dead race left switched on 200,000 years before. Along the way the plot bristles with 50's stereotypes and corn so pure you wonder sometimes why you're watching it, but always do. That love triangle thing...yuk! Disney's cartoonery still holds up well, and the cartoon backgrounds straight off the covers of Galaxy magazine etc look good even after 50 years. Robbie driving the car over the desert in the far distance is a hoot though!<br /><br />All in all, with all faults, the best of its kind and we should be grateful that such a pristine print survives.\r\n1\tHaving read Diamond's book, I was slightly disappointed in the series, but all in all, it is quite informative. Reading the other comments, it is comforting to know that the 'culture warriors' are hard at work, seeing 'attacks' on 'Western Civilization' under every rug.<br /><br />Is Diamond a little preachy ? Sure. Like a lot of academics, he sees his theory as the most important thing ever. He uses the phrase 'guns, germs, and steel' at seemingly every opportunity during the series. We get it, after about the first 10 minutes.<br /><br />Is Diamond a little simplistic (in the series) ? Sure. The part about the Spaniards in South America is particularly amusing, condensing some very long, complicated history down to 'smallpox, swords, and horses', wrapping up the whole conquest of South America in about 15 minutes. But the point remains valid - these things did in fact contribute (but not totally define) the reasons for the Spaniard's success against the established cultures.<br /><br />Is he preaching *against* Western Civilization in any way ? Nope. Not a word. Not to my ear. All he says is that luck played a large part in determining which cultures advanced more quickly, *not* that luck is the only reason.<br /><br />In the end, if you're looking for something that validates your own sense of superiority, then this series is not for you. But if you are interested in all of the factors than influence how societies succeed or fail, this series presents a useful interpretation of the historical evidence.\r\n1\t\"I watched to movie today and it just blew my mind away. It is a real masterpiece of art and I don't understand why most of the people think it's garbage. The main idea of the movie - take your ego away and then you will have true power! This was the main battle at the end of the movie and Guy Ritchie has shown that in a magnificent way. \"\"The greatest enemy will hide in the last place you will ever look\"\" - do you remember this from the movie? Because our true enemy is in us - it is our ego... That voice that always tells us that we are important, that gives us our pride, that tells us not to give, but only to take, that creates our aggression, that wants to be in control, that creates all the negative feelings and thoughts. GR expressed this idea in an astonishing way and has shown that the only way to gain true control is when you loose control and you just let go of your personal importance. A superb movie!\"\r\n1\tIncredibly ARTISTIC NOBODY COULD MAKE THEM NOW I THINK.It seem to be perfect the biggest and the greatest musical ever made listen to the beautiful songs the are quite poetry.I'M Italian AND ADMIRED BY American MUSICAL. why can't you do something like that now?American were the best and for that i absolutely show my devotion to you with this movie.there are words to describes the perfection of this movie. all of a sudden my heart sings, what makes the sunset? i fall in love to easily,jealousy...and the scene with Tom and Jerry. the greatest without reserve. if you you doesn't know your eyes are not open my friends you must see it and appreciate...wake up!\r\n0\t\"30 seconds into the opening credits, I had this feeling that this was going to be a bad movie, but I didn't know just how bad. Then the actor playing the evil Nazi scientist opens his mouth and my friend and I decide that in order to survive this movie, we'll have to turn the volume down, make up our own dialogue and double the speed on the DVD. But that didn't help. About half way through we turned it off. Now, I've lived through some very bad movies before, both with and without the aide of \"\"Mystery Science Theater 3000\"\" and \"\"Svengoolie,\"\" but there are just some movies which I doubt even the Bots can save. The biggest part of the movie that bothered me the most was that the people hypnotized into believing they're zombies had rotting green skin. I guess they were all hypnotized into death, then hypnotized into rotting themselves. Stick to the real B-movie cult classics like \"\"Plan Nine From Outer Space.\"\"\"\r\n0\t\"...well, pop this into the DVD, waste an hour and a half of your life that you will never get back, and find out.<br /><br />Acting? What acting? <br /><br />Production values? ...Production? ...Values?<br /><br />Story? Don't get me started.<br /><br />After many years of posting on IMDb, I never thought I would see a film so bad that I truly wished for a lower rating than one. I always have found at least a reason or two to see merit - if only in the intent or the effort of the writer, the director, the cast, or the producer?<br /><br />In this case, they're all the same guy (!) who really needs to get a handle on the fact, at least as demonstrated by this worthless waste of video tape, that he has no talent. I mean it would be a reasonable excuse if this were some junior high schooler's \"\"production\"\" for his first cinema class, but the referenced \"\"artist\"\" behind this dreck was twenty-six at the time of this miscarriage. <br /><br />Just how did this ever get made? Who in their right mind ever wrote a check for this? Moreover, don't let the box cover fool you: there's not even anything that remotely resembles a good sex scene or any good \"\"exposure\"\" of the hunk on that cover.<br /><br />Two final items: there was one second when this \"\"film\"\" had redeeming value: the aforementioned \"\"talent\"\" gets roundly punched out by his lover. I cheered! And, I did learn one thing from this \"\"film.\"\". There are times when something is so very bad that it is, indeed, truly very funny. But not in any comical manner; it's just sadly humorous. Very sadly humorous.\"\r\n1\tThe Waiting Womans Ward of a large lying-in hospital, with all its joys and sorrows, is the place where LIFE BEGINS.<br /><br />This nearly forgotten drama is a fine little soap opera, replete with comedy and tragedy, all tied into the lives of the maternity staff and their patients. The frankness with which the subject matter is handled points up the movie's pre-Code status.<br /><br />Marvelous Aline MacMahon, as the sympathetic head nurse, is the calm center of the film, the rock around which all the currents flow. Able to handle any crisis or emergency, she is the mothers' best, sometimes last, friend. Surrounding MacMahon is a bevy of excellent costars: Loretta Young as a convicted murderess released from prison long enough to give birth; Eric Linden as her frightened young husband; brassy Glenda Farrell as a dame who hates children; sweet Clara Blandick as a very mature mother in for her sixth birthing; Preston Foster & Hale Hamilton as thoughtful, compassionate doctors and Frank McHugh as a comically frantic father-to-be.<br /><br />Movie mavens will recognize Bobs Watson as a wee tyke who wants to see the Stork; Paul Fix as a nervous husband who promises to behave like a `little soldier;' Gilbert Roland as a distraught Italian husband and Elizabeth Patterson as a snooty doctor's wife interested in adopting Farrell's son - all uncredited.<br /><br />There are a few absurdities in the plot - some of the mothers are obviously much too old; Farrell becomes blatantly drunk in the Ward but none of the staff seem to notice; an obviously psychotic patient is able to wander around at will - but this really only enhances the quirky entertainment value of the film and keeps things from becoming too serious.\r\n0\t\"This is quite possibly the most retarded 80's slasher ever realized, but how can you be harsh on a film that features non-stop images of dozens of gorgeous ladies with exhilarating bodies doing aerobic exercises, taking showers and wandering about in tight gym outfits? Prior to being a horror film, \"\"Aerobicide\"\" is a 90 minutes promo video to encourage the use of steroids, silicons and other body-stimulating fitness products. If you'd leave out all the footage of hunky boys lifting weights and yummy girls wiggling their butts and racks to insufferable 80's tunes, there probably only have about 15 minutes of story left. Plenty of time to improvise a plot about a sadist killer slaughtering young health-freaks with a big safety pin (yeah). The film opens with an unintentionally hilarious scene of a girl getting fried between an electric sun-bathing device. Several years later people turn up dead in the same spa. You don't really need to be an experienced horror fanatic or a rocket scientist to figure out there's a link between the murders and the burning incident, now do you? Investigating the case are a seemingly braindead police officer (and Charles Napier look-alike!) and a beefcake private detective who gets lucky with the bustiest 80's beauty I've ever seen! Looking through the credits, her name's Dianne Copeland apparently, and she didn't do anything else apart from this turkey and an imbecile Troma-movie called \"\"Surf Nazis Must Die\"\". What a wasted opportunity! She may not have been a great actress, but she sure had two other BIG advantages that would help her move upwards in show business. The amount of gore and the quality of the make-up effects are nothing special, neither. We're treated to a couple of bizarre stabbings with a pin and some barbecued human flesh. The plot twists near the end are ridiculous and predictable, but by that time nobody is taking the film seriously anymore, anyway. \"\"Aerobicide\"\" (a.k.a. \"\"Killer Workout\"\") is recommended in case you want to switch of all your brain functions off for one night, but nevertheless feel like watching a film! It actually would make a terrific double-feature with \"\"Death Spa\"\". Both films have a lot of sexy and scarcely dressed babes  and both films are pretty dumb.\"\r\n0\tI like Billy Crystal, and I thought it would be fun to watch this film, since I know he admired Alan King and they would be funny together. I thought I had seen all Billy's movies but couldn't remember this one, and now I know why. It's so full of clichés and phony emotion; you can smell each scene coming (and going!). Billy doesn't even get to be funny very often. He's too busy trying to cry fake tears or show his angst at how badly his father let him down. Alan King himself is fairly likable, as is the subplot about being an extra in the movies. But what a coincidence that Billy just happens to visit his father just as a major health crisis takes place, etc. etc. Or that two busy doctors can just shut down their practices to moon around in LA. And when the end comes, boy, does it come quickly! Almost as though the writers realized they had painted themselves into a corner and the only way out was to do a death scene. Mostly disappointing with a few glimmers of good humor.\r\n0\t\"Hollywood always had trouble coming to terms with a \"\"religious picture.\"\" Strange Cargo proves to be no exception. Although utilizing the talents of a superb cast, and produced on a top budget, with suitably moody photography by Robert Planck, the movie fails dismally on the credibility score. Perhaps the reason is that the film seems so realistic that the sudden intrusion of fantasy elements upsets the viewer's involvement in the action and with the fate of the characters. I found it difficult to sit still through all the contrived metaphors, parallels and biblical references, and impossible to accept bathed-in-light Ian Hunter's smug know-it-all as a Christ figure. And the censors in Boston, Detroit and Providence at least agreed with me. The movie was banned. Few Boston/Detroit/Providence moviegoers, if any, complained or journeyed to other cities because it was obvious from the trailer that Gable and Crawford had somehow become involved in a \"\"message picture.\"\" It flopped everywhere.<br /><br />Oddly enough, the movie has enjoyed something of a revival on TV. A home atmosphere appears to make the movie's allegory more receptive to viewers. However, despite its growing reputation as a strange or unusual film, the plot of this Strange Cargo flows along predictable, heavily moralistic lines that will have no-one guessing how the principal characters will eventually come to terms with destiny.\"\r\n0\t\"\"\"It appears that many critics find the idea of a Woody Allen drama unpalatable.\"\" And for good reason: they are unbearably wooden and pretentious imitations of Bergman. And let's not kid ourselves: critics were mostly supportive of Allen's Bergman pretensions, Allen's whining accusations to the contrary notwithstanding. What I don't get is this: why was Allen generally applauded for his originality in imitating Bergman, but the contemporaneous Brian DePalma was excoriated for \"\"ripping off\"\" Hitchcock in his suspense/horror films? In Robin Wood's view, it's a strange form of cultural snobbery. I would have to agree with that.\"\r\n0\t\"I almost drowned in CHEESE watching this movie. In fact I could not even finish it. I want my money back. One more of Hollywood's feeble attempts to come up with a new idea. Good thing I keep a bowl of lemons in the fridge. Just in case. They should of gave Nic Cage a hat and a bull-whip. Swashbucklin'. Cage's performance in Raising Arizona or Leaving Las Vegas beats this \"\"lemon\"\". People who are completely and totally marketed(and most of them are) should love this movie. If this film had been animated, I would have taken it more seriously. I would of rather paid to see a completely stupid movie that did not try to hide it. In my opinion, this was a incredibly stupid movie and it made a even more incredibly sad attempt to try and hide that FACT.<br /><br />All the SHEEP seem to love it though.\"\r\n0\t\"\"\"National Lampoon Goes to the Movies\"\" (1981) is absolutely the worst movie ever made, surpassing even the witless \"\"Plan 9 from Outer Space.\"\" The Lampoon film unreels in three separate and unconnected vignettes, each featuring different performers. The only common thread is the total lack of any redeeming qualities.<br /><br />Well, maybe there is one. Another reviewer on this site has said that the fleeting nude shots are nice, and he's right. Misses Ganzel and Dusenberry flash their assets prettily, in part one and part two, respectively. But their glamorous displays are, alas, wasted. The directors seem to have forgotten that even T&A needs a credible story to surround it, and there's none in sight.<br /><br />The third segment, starring Robby Benson and Richard Widmark, is the most disgusting of the three, and an unfortunate choice as the windup of this film. Benson plays an eager-beaver young policeman, brightly reporting for his first day of duty, ready to rid the streets of evil. He is paired with an old, cynical cop played by Widmark, and when these oil-and-water partners set out on their first patrol together, we sense a possible redemption of the film's earlier failures. Maybe, just maybe, the cynical old-timer will be reformed by his new partner's stalwart sense of duty and loyalty. Maybe all will end happily after all. But alas, this movie heads straight for the toilet, with no redemption, no happy ending, no coherent story of any kind.<br /><br />Before \"\"National Lampoon Goes to the Movies,\"\" I thought I had already seen the worst schlock that Hollywood could possibly turn out. Unfortunately, I hadn't seen the half of it.<br /><br />\"\r\n0\tI really wanted to like this movie. I absolutely love kenny hotz, and spenny rice has a charming side to him. Not that I like spenny at all. Spenny ruins this movie. He should of let kenny and his hot girlfriend pitch the movie.<br /><br />Anyways, it's pretty boring aside from a scene with Roger Ebert in it. There really isn't too many celebrities in this movie, and most don't seem to say more than one line. Overall this movie was disappointing. I would only suggest watching it if you got it with the season 1 DVD of kenny vs spenny (it comes for free on the 3rd disc). Regardless of this production, I am still very excited to check out The Papel Chase.\r\n0\tI can't believe anyone thought there was anything original or interesting about this movie. I'm a fan of science fiction as much as the next guy, and I can enjoy even old movies with ridiculous premises as long when they are written by someone other than a monkey. (See, for example, my glowing review of Altered States [1980].)<br /><br />A monkey could have explained better exactly why I should for a second take seriously the basic idea behind this movie. The problem is not that the producers had a low budget--it's that they didn't care.<br /><br />Now, to publicly humiliate the worthless magazines whose glowing reviews appear on the box:<br /><br />Chicago Tribune<br /><br />San Francisco Chronicle<br /><br />San Francisco Bay Guardian<br /><br />(Actually, I enjoy reading the latter two. Still, their movie reviewing credibility has gone through the floor. But I know if I ever make a movie with handheld camera, a cheesy plot and stupid effects, I'll show it to these journalists and remind them what they said about Conceiving Ada.)\r\n0\t\"This movie is incomprehendably bad. It begins with several random explosions and then cuts to a sock puppet of a T-Rex that talks (!) to the audience. It goes back and forth between sock puppetry and animation throughout, probably because the film makers couldn't afford live actors. I'll spare you the long, tiresome, relentless plot that drags this pitiful film on for a brutal 85 minutes.<br /><br />One of my friends found this very rare video at a hobby shop somewhere that sells out of print b-movies, and he bought it for the sole purpose of making fun of it, but, as it turns out, our intervention was not neecessary. This film makes fun of itself better than we could.<br /><br />I thought that Ed Wood's \"\"Plan 9 from Outer Space\"\" was the cheesiest movie in existence, but leave it to Japanamation/Lego cars/Sock puppets to outdo him. If you see this movie anywhere, buy it without hesitation. It is very rare and worth many, many good laughs.\"\r\n1\tThis show is beautifully done. When it first came out I though it nothing more than a light-hearted family comedy with quite a few good one-liners. It seemed to express many families really well too, with different concepts of both parent and child, however, like I said, I never thought any more of it then a good watch on an evening. However, my view was shot out the other window when the tragic death of the fantastically funny John Ritter accrued. The programme stood it's ground and really commended the characters life in a very sensitive way that also touched the hearts of all the admire res of John Ritter, a fantastic actor with the talent to do anything. When the show aired after Ritters passing, I really wanted to just give my dad a hug and let him know how much he meant to me. I thought this shone threw the acting talents of the three children, particularly that of Bridget's character, who was worried of the last words she said to him. It reminded me that no matter what horrible things I say to my dad, I don't mean them and it's very important that he knows this. Great Show\r\n1\tScott Bartlett's 'OffOn' is nine minutes of pure craziness. It is a full-frontal assault of psychedelic, pulsating, epilepsy-inducing flashing lights and colours, and the first true merging of film and video in avante-garde cinema. There's no story to speak of, but Bartlett uses images of nature  particularly the human face and form  to provoke a sequence of emotional reactions, integrating these biological phenomena into the highly-industrial form of modern technology. In a sense, the film represents the merging of humanity into his tools, his machinery, his technology. This theme connects loosely with the subplot of HAL9000 in Stanley Kubrick's '2001: A Space Odyssey (1968),' and, indeed, Bartlett's opening sequence of images  flashing colours before a close-up human eye  recalls Dave Bowman's journey through the Stargate. The visuals are richly-coloured, a confronting blend of sharp, vivid photography and increasingly-grainy video, as though we're sitting too close to a television screen {as a matter of fact, the end product was recorded from a TV monitor}.<br /><br />There appears to be some confusion about the film's release date. IMDb lists the film as a 1972 release, but both the National Film Registry and the National Film Preservation Foundation give 1968 as the correct year. Perhaps this disparity reflects the time between the film's completion and its first public screening. Either way, the visuals are distinctly ahead of their time, occasionally reminiscent of a 1980s music video, and some brisk techno music wouldn't have gone amiss, either! 'OffOn' captures grainy, fragmented images, presenting life from the warped perspective of a computer processing too much information. I had a thought  and please don't laugh at this free-thinking interpretation  that an extraterrestrial civilisation capturing Earth's television signals might very well receive such a disjointed, alien documentation of human life, a bizarre montage of only vaguely-familiar imagery that couldn't possibly make any coherent sense. Perhaps this is where Mankind, with all his technology, is eventually heading, towards an irreversible merging of film and video, of purity and artificiality.\r\n0\tBooted out of heaven, a gang of horny naked female angels (with big plastic fangs) have taken up residence in a spooky forest where they feed upon any hapless souls who should wander by. It's not long before a group of friends on a road trip are falling victim to the bloodthirsty babes An independent low budget horror made in the UK, Forest of the Damned takes an interesting premise and flushes it down the pan with some of the worst acting, effects and direction I have seen in a long time.<br /><br />Director Johannes Roberts shows some occasional flair behind the camera  the scenes in the delapidated house are fairly tense and there are some deftly handled 'shock' moments - but for the most part the film is technically amateurish. Throw in some truly awful performances from horror icons Tom Savini and Shaun Hutson, and you have one real bad movie on your hands.<br /><br />Some fun may be derived from the film's sheer shoddiness, and there is loads of female nudity for the guys to savour, but most will find this a chore to sit through.\r\n0\tI'm grateful for one thing and one thing only - that this woman will now be thousands of miles away on an entirely different continent!!! Yay!!! This programme summed up perfectly just how obsessed Victoria Beckham has become with whoring herself and her family out to the media in the name of self promotion and 'Brand f*cking Beckham'.<br /><br />A few years ago I used to really like 'Posh and Becks', I still very much admire David's talent, but I have no respect for him anymore. How can you respect someone who has his wife's hand shoved up his backside working him like a puppet.<br /><br />It was clear the hand of Victoria was all over Beckham's premature departure from Manchester United and now the same thing has happened at Real Madrid. I hope Beckham can live with the fact that although he may be earning squillions of pounds - he's sold his soul for the American Buck and will end his days playing for a team who would struggle to gain promotion from Division One in England (no offence America - but at Baseball and Basketball you rule - football you don't!) <br /><br />Anyway - I digress. It's been years since I've seen such an over-the-top, entirely false performance from 'Posh' - this being topped only during her cringe worthy red carpet performances following the Rebecca Loos 'debacle', when instead of throwing all the cr*p at David he deserved, she desperately clung onto his arm trying to save the million pound money-spinner her marriage has become.<br /><br />This whole PR stunt was pathetic. Why can't she just go over there quietly, support her husband through the biggest mistake of his professional career and keep her head down? When did she become so full of self importance that she feels the move to America should be shrouded by this huge fan fare? <br /><br />Incidentally, I saw the David Beckham documentary last night. At least he has retained a sliver of grace and humility. Two things his wife could do with learning.<br /><br />One more thing Victoria - you complain about constantly being hounded by the paps. Little hint - stop tipping them off about your whereabouts you stupid woman.<br /><br />Good Luck America!!\r\n0\tJean-Claude Van Damme plays twin brothers Alex and Chad, both whom are martial arts expert who team up to take down the mobsters responsible for the murder of the parents in this empty headed martial arts actioner which doesn't have a plot that would make better use of the gimmick of having two Jean-Claude Van Dammes. Some okay actionscenes, but this is not one of Van Damme's best.\r\n1\tI just watched this movie for the second time, and enjoyed it as much as the first time. It is a very emotional and beautiful movie, with good acting and great family values. Inspiring and touching!\r\n1\t\"Probably the finest fantasy film ever made. Sumptuous colour, spectacular sets, incredible, spot-on Miklos Rosza musical score that is perfect for each scene and mood. Acting is superb as well in what could have been stiff and pretentious in lesser hands, but here the poetic dialog is deftly, sensitively spoken (the humour is subtle and delightful as well).<br /><br />Doubtless Spielberg and Lucas were enthralled by this one. Along with \"\"The Four Feathers\"\" (1939), one of the two finest motion pictures released by Alexander Korda and London Films---and one of the finest motion pictures ever made.<br /><br />A true, compelling classic!\"\r\n1\t\"Comment? Like my comment is necessary? We are talking about all time masterpiece, for all seasons and all generations. This is only type of movies that i still have patience to watch. In this, like in other Disney's movies is some kind of magic. All characters are in some way, \"\"alive\"\" and \"\"real\"\" so it's easy to understand message, even if you don't understand language, (like i didn't understood when i first watched movie, because i was about six years old). Maybe my English is not so good, but i learned what i know mostly from this kind of movies, and this is one more great dimension of this kind of movies, which in present time are rare. But there is a one big shame. In my country is now impossible to watch this, or any other Disney's movie! We don't have copyrights, so our children are disabled to enjoy and learn from this kind of movies. So, we will watch this movie again \"\"Once upon a dream\"\" or...?\"\r\n0\tWhoever made this nonsense completely missed the point. Jane is a silly comic strip to titillate without being sleazy.<br /><br />This giant mess tries to be funny and exciting but is just a shambles. There is not one decent performance in it..even the usually reliable Jasper Carrott is painfully unfunny.<br /><br />The American bloke whose name escapes me is just as rubbiush as he was in flash gordon.<br /><br />Maud Adams tries as a villianess but she is a bit long in the tooth for this type of thing. All of these things would not matter if the girl was sexy or funny or likable.She is not. Kirsten Holmes faded into obscurity after this and so much the better.<br /><br />I've flushed more entertaining things than this down the toilet. Avoid\r\n1\tThe feel of this movie was amazing. Adam Sandler's performance was very inspiring. As he played a very rattled and fragile character, he took his ability to the very edge and really worked the role. His character was really interesting. I can see myself reading the script for this movie and not being half as interested in the part as Sandler made me. For someone who plays primarily comedy roles, he pulled off a serious role with what seemed to be his own quirks and input. I especially loved the scene in which Adam and Don's characters rode the motorized scooter around the city. I familiarized with the moment, because it seemed like Don was witnessing one thing Adam does to get away from it all. With his video games, music, and many other things he does to keep him from thinking about the past, riding his scooter with his headphones on seemed like an escape from his thoughts. This movie is definitely worth the watch.\r\n1\t\"Jammin' the Blues is an Oscar-nominated short from 1944 that is basically 10 minutes of improvisational jazz played in one long jam. Marie Bryant sings \"\"The Sunny Side of the Street\"\" at one point for the film's highlight then jitterbugs with Archie Savage to bring this most entertaining \"\"jam session\"\" to its exciting end. The director Gojn Mili was a photographer and that experience shows in some of the double exposure shots of some of the musicians that makes this one of the most innovative angles of the '40s. According to some notes I read one of the musicians was white and had to be filmed in silhouette in reflection of the social attitudes of the time. What a shame. Still, this most unusual film of the time is available on YouTube so if you love jazz, I suggest you seek it out there.\"\r\n1\t\"I looked at this movie with my child eyes, and I wasn't disappointed. The story is well-known, some abandoned orphan has to be brought to his parents by an improbable trio (mamooth - sabertooth tiger and a lazy animal)... And I don't want to forget to mention the incredible small fury animal with his hazenut. This one really made me laugh a lot during the whole picture.<br /><br />Briefly : it works, it is funny and it is a \"\"must-see\"\" with your children (they'll like it).\"\r\n0\tI love Dracula but this movie was a complete disappointment! I remember Lee from other Dracula films from when i was younger, and i thought he was great, but this movie was really bad. I don't know if it was my youth that fooled me into believing Lee was the ultimate Dracula, with style, looks, attraction and the evil underneath that. Or maybe it was just this film that disappointed me. <br /><br />But can you imagine Dracula with an snobbish English accent and the body language to go along with it? Do you like when a plot contains unrealistic choices by the characters and is boring and lacks any kind of tension..? Then this is a movie for you! <br /><br />Otherwise - don't see it! I only gave it a 2 because somehow i managed to stay awake during the whole movie.<br /><br />Sorry but if you liked this movie then you must have been sleep deprived and home alone in a dark room with lots of unwatched space behind you. Maybe alone in your parents house or in a strangers home. Cause not even the characters in this flick seemed afraid, and i think that sums up the whole thing!<br /><br />Or maybe you like this film because of it's place in Dracula cinema history, perhaps being fascinated by how the Dracula story has evolved from Nosferatu to what it is today. Cause as movie it isn't that appealing, it doesn't pull you in to the suggestive mystery that for me make the Vampyre myth so fascinating. <br /><br />And furthermore it has so much of that tacky 70ies feel about it. The scenery looks like cheap Theatre. And i don't say that rejecting everything made in the 70ies. Cause i can love old film as well as new.\r\n1\t\"This is another great movie I had the good fortune to see for the first time on the big screen (thanks to Rick Baker et al). Back in the late 80's I was a relative newcomer to the genre and only really new about the big three JC, SH & YB. I wasn't sure what to expect when I payed my hard earned money to see this in a \"\"Triple bill of Classics\"\" at the old Scala. I need not have worried, I was left breathless by this movie. If you're a fan of Hong Kong Action / Kung Fu movies and haven't seen this movie, do so NOW!\"\r\n0\tBeing a fan of cheesy horror movies, I saw this in my video shop and thought I would give it a try. Now that I've seen it I wish it upon no living soul on the planet. I get my movie rentals for free, and I feel that I didn't get my moneys worth. I've seen some bad cheesy horror movies in my time, hell I'm a fan of them, but this was just an insult.\r\n1\tThe Power of Kangwon Province is director Hong Sang-Soo's second feature effort and clearly much of what he started with in his previous film returns in this film, including the multiple connected narratives (in this case, two), and stories of troubled or troubling relationships, as well as a potent dosage of irony.<br /><br />One thing that's clearly reduced from his previous work is the flights of fancy that included elements of surrealism. However, this film also contains a single moment of surreal that strikes a contrast against the otherwise rather realistic depiction found therein. The two stories follow a young woman who goes on a trip to Kangwon Province with her friends, only to find herself drawn to a stranger, the second about a man who also goes on a trip to Kangwon Province with his friend and struggles with his relationship woes.<br /><br />Again, Hong shows a strong understanding of irony and of the flaws in human nature and yet I don't think he's entirely unsympathetic when it comes to his characters, drawing in just enough compassion to offset the criticism he draws with his irony. I think the think I've come to love about Hong's films is that they just feel so real, especially the complex and conflicted characters. Not to say that every person is a hypocrite or suffering from confused feelings, but rather, that these characters he and the actors present, feel fully developed and believable.<br /><br />This is not a fast moving film. There's a lot of lingering and like the previous film, things don't always connect immediately so patience does pay off and in surprising ways. There doesn't appear to be any element of the film that isn't intentionally placed in the film and it's made my a little hyper-aware of various seemingly extra characters as they get dragged into the mix as the film progresses.<br /><br />Power is an excellent film that manages to inject a level of personal emotion, regret, longing into a story that highlights irony and the fallibility of human decision-making. It's a rather hard balance to keep and it's surprising how Hong manages to pull it off twice in a row. Technical production values have gotten much better since the first film and direction has gotten steady and clear. This film doesn't pack the same emotional wallop that the first does, but gains a lot in its assured exploration and the refinement really helps tighten the overall vision. Great viewing for art cinema lovers. 8/10.\r\n0\t\"I was so excited when I discovered this was available! I couldn't wait to see it. What a waste of energy! It's kind of like that rarities CD by your favorite band you found in the back of the rack at your local music store. Being a hard core fan you were certain that it was a valuable discovery. But once you heard it it became obvious why these dogs never made it onto a real album. This DVD is only recommended for 'completionists' who must have everything Lynch has done. \"\"Six Men Getting Sick\"\" is somewhat visually interesting but short and repetitive. It lacks the power of Lynch's later work \"\"The Grandmother\"\" is quite simply an immature work. It's tedious and looks like a student film. But it was the 70's...It's interesting only if you hope to psychoanalyze the director. But you can see, briefly, the seeds of some of his trademark images and sounds. \"\"The Alpahabet\"\" is forgettable (No really! I can't remember this one at all!) \"\"The Amputee\"\" is pointless. \"\"The Cowboy and the Frenchman\"\" is just plain silly. \"\"Lumiere\"\" is the only worthwhile one in the bunch. Without dialog Lynch tells a disturbing tale comparable with his best work. I had to watch this one several times. But it runs less than 2 minutes. Hardly worth the trouble of renting or buying the DVD.\"\r\n0\tIt seems to me, as a recent film school graduate, that in these times of New Zealand film reaching new heights, the general public seems to think every New Zealand film made is great. Sione's Wedding proves this is dead wrong.<br /><br />It's completely overrated and not funny, and far from the 'hilarious' film other users of IMDb have commented. The only really funny thing I found in this film was Derek the wannabe black guy, but other than that the jokes were recycled crap that we'd all heard before.<br /><br />Being of half-Samoan decent, I wanted to see how the film was going to deal with Polynesian representation. It was a complete balls-up - I know it's a supposed comedy, but I didn't feel like the characters had anything new to say about Polynesian identity, even if it was in a tongue-in-cheek manner. I was most disappointed with the ending of the film and the resolution of the character's relationships - Mikaele was the player who only messed around with white women, comes to slightly turn his ways when the 'Dusky Maiden' comes to town, has an epiphany that maybe he should start looking for a stable relationship, then at the very last minute rejects it and accepts his position as a Polynesian Playboy for palagi women. I didn't understand why they did this.<br /><br />All in all, it was very disappointing. My whole family went to see it expecting to have a good laugh, but ended up being really bitter about paying to see it at the cinema. The jokes are lame at best, the acting, particularly of Sefa's girlfriend, APPALLING, and honestly I would've been happy if I had got my hands on one of those pirated copies of the film to save myself the $15 ticket price.<br /><br />I think the only good thing to come from the movie is that it's the second step (behind No. 2, of course, a far superior film to this one) in the birth of Polynesian cinema. I hope Pacific filmmakers in the future can learn from Sione's Wedding in how to NOT reflect Polynesia and have something more meaningful and sensible to say. Even if it is done in a comedic fashion.\r\n1\tthis is one of the funnier films i've seen. it had it's crude moments, but they were full of charm. it's Altmanesque screenplay, brilliant physical humour, and relaxed friendships were a pleasure to watch, and a slice of life most of us can relate to. and i can say with a measure of honesty that i was afraid for Steve Carell's nipple..i truly was. surprisingly, this is a good-natured, unabashed comedy that is essentially about love, and the many relationships we may find ourselves in along the way. Catherine Keener was terrific as Trish, and all of Steve Carell's friends were flawed but amiable, and so much fun. the idea that they suspected that Carell was a serial killer is a hilarious metaphor for a forty-year old virgin. but the simple truth was that he wanted to be in love first. original, charming, and very funny. highly recommended.\r\n0\t**** WARNING: here be spoilers **** Why do I waste my hastily fleeing years watching garbage like this? This film is an impressive collection of clichés, poor writing, worse directing, and then we haven't even got to the acting yet. <br /><br />And of course, you can predict the whole story from beginning to end.<br /><br />Hero expert fights against stupid, corrupt and incompetent henchmen. One avalanche goes off, burying all the heroes who somehow manage to get out alive in spite of going through all sorts of cliffhanger perils. Corrupt partner who caused the whole thing gets fried alive together with his payoff money. Second avalanche heroically deflected by renegade expert's adventurous experiment. Evil henchmen in the end turn out to have a heart as well. Troubled teenager falls into the arms of her crusty stepmother after being saved by her. Etc, etc, etc, etc, on and on it goes. <br /><br />In fact, there's little reason to warn for spoilers. You could probably work the whole plot out if I gave you the basic ingredients. At least, I wasn't too wide off the mark most of the time, anticipating what would happen next.<br /><br />And then we haven't discussed the factual errors.<br /><br />I agree with a previous commentator that even though there are usually SOME redeeming features even of a bad movie. you'd be hard pressed to find any in this one. I suppose I gave it 2 out of 10 for some nice scenery shots, but that's it.<br /><br />It's been some time since a film made me groan, but this one certainly did.\r\n0\tThis movie was a littttle confusing at first. I usually like Gina Phillips, but this one I have to say was a bad choice just like her doing the movie Ring Around the Rosie, that one also not one her good movies. Jeepers Creepers was way better. Anyway, Faye Dunaway was good. She totally creeped me out and at the end, that was crazy. It was about Jennifer Cassi(Phillips) who comes to her twin sisters funeral. She stays at a house that her sister owns and her grandmother(Dunaway) lives at with an Aunt named Emma. Mary Ellen(Dunaway) is kinda sacrificing her relations to stay alive and as long as she wants to live, she can't die. Even if Jennifer tries to kill her, which she tries. Ravens have a weird part in it. When the relations go to sleep, the Ravens eat there organs, so they can't go to sleep. But they do. Basically it all crazy and Mary Ellen will never die and her relations will be buried, but not dead, b/c they have to suffer forever so Mary Ellen can stay alive. Yeah, I hope this helps. If it doesn't, sorry. Love ya.\r\n0\tAn OK flick, set in Mexico, about a hit-man (Scott Glenn) who hitches a ride with struggling American writer and his Mexican girlfriend after a hit. He pays them to take him to the border  but things get out of hand.<br /><br />It starts well enough, but quickly struggles and dies.<br /><br />**SPOILER**<br /><br />The eventual relationship twist is badly set up and difficult to believe. An absence of passion, and essentially no reasoning behind her leaving one man for the other, made it ridiculous - and the ending was predictable and dull.<br /><br />**END SPOILER**<br /><br />Harvey Keitel is the US agent on the hit-man's trail, but he seems a little confused as to how boring and slow the script is...\r\n0\t\"As a writer I find films this bad making it into production a complete slap in the face. Talk about insulting. I was writing better stories than this in 8th grade. Bad acting, bad writing, bad directing and when added all together the result is complete and total failure. <br /><br />The only thing this movie manages to accomplish is tricking the unsuspecting consumer into wasting their time. Who would green light something so poorly written? It's not artistic, clever, smart, suspenseful, mysterious, scary, dramatic-NOTHING.<br /><br />The characters are flat and boring with no development. The plot is as recycled as an aluminum can. They somehow managed to cast a few very familiar actors who all must be pretty desperate for work or hoping one of these low budget independent movies will turn out to be the next \"\"Pulp Fiction\"\". This script should have been used to line a bird cage, not a movie. <br /><br />Oh and last but not least, a 5'2 105 lb woman of course has the strength to kill men and women twice her size without a struggle and in a single blow. <br /><br />Avoid this bomb like it will infect you with an STD.\"\r\n1\tThis film was excellent - the emotional power of Tom Hulce and Ray Liotta's performances brought tears to my eyes and joy to my heart - this film shows us that there is still hope in the world. If this film had come out at the end of 1988, instead of Rain Man, Hulce would certainly have been at least nominated for a Best Actor Oscar. Definitely a must-see!\r\n1\tJames Stewart stars in a classic western tale of revenge which ties in with the fate of the films other star the Winchester Rifle. Stewart is it goes without saying excellent adding some cold hard obsession to his usual laid back cowboy. The story follows the fate of a Winchester rifle and its owners after being won in a competition by our hero and stolen by the man he is hunting.<br /><br />We meet a selection of gamblers, gun fighters, Indian traders and bank robers as we follow the rifles path through Indian battles, bank heists etc. The supporting cast are all solid with Dan Durya standing out as Waco Johnny Dean the live-wire gunfighter with an itchy trigger finger. Also as a trivia note a very early appearance from Rock Hudson as an Indian chief.<br /><br />The end showdown is a classic a tense rifle battle fought at long range in and around a rocky outcrop. Throw in some good old western action, fist fights, shootouts and horseback chases it makes for a rollicking western adventure. 8/10\r\n0\tMichael Keaton has really never been a good actor; in the Tim Burton Batman movies he always falls in the shadows of his great villains. Here, he stars as a widowed husband that picks up radio frequencies that seems like is dead people that tries making contact with the living...<br /><br />Well, this is supposed to be a pretty shocking thriller, but it really misses about every spot there is shocking you. Because there's way too much stuff that ends up unexplained, undiscovered and uninteresting. So where's the shocking excitement when it all gets so bad movie made in the first place that WHITE NOISE makes a fool out of itself? Truly bad acting and horrifying edited, this movie is nothing to watch. Michael Keaton tries making a thriller comeback but ends up missing the target more than ever.\r\n0\tImagine the worst skits from Saturday Night Live and Mad TV in one 90 minute movie. Now, imagine that all the humor in those bad skits is removed and replaced with stupidity. Now imagine something 50 times worse.<br /><br />Got that?<br /><br />OK, now go see The Underground Comedy Movie. That vision you just had will seem like the funniest thing ever. UCM is the single worst movie I've ever seen. There were a few cheap laughs...very few. But it was lame. Even if the intent of the movie was to be lame, it was too lame to be funny.<br /><br />The only reason I'm not angry for wasting my time watching this was someone else I know bought it. He wasted his money. Vince Offer hasn't written or directed anything else and it's no surprise why.\r\n0\tWhat a joke. I am watching it on Channel 1 and I think watching paint dry is much more entertaining. What happened to Caspar Van Dien that got him roped into this nightmare. Terrible acting, very boring plot and terrible direction. It so terrible, it's funny. It's suppose to be full of suspense, but it more a comedy. If you want to see terrible acting, ridiculous script writing and sub-par plot, check this movie out. If I was Van Dien, I would not only ask for my 10% from my agent, but fire the bastard in the process. What a turkey. It's not even fit to be on MST 3K!! It would be a good movie to cure you insomnia. I especially love the part where Van Dien is throw overboard and then makes it back in just a few minutes! I can only image that this was written by non-union writers taking advantage of the writer's strike. What a horrible movie!!!\r\n0\t\"I guess that this movie is based on some kind of a true story.... It's about two young girls who molest a grown man for 48hrs.; I don't see where the terror comes into play here.... There are some \"\"weird' and \"\"surreal\"\" sequences in the movie. And the two girls (Sandra Locke and...ah...oh well) play the roll of two psycho-man haters to the hilt...they do a pretty good job (although some of it is just a tad over the top). The movie's not good, and it's not horrible; it's just really really dated! I mean this thing is dripping with the 70's.... It's not really bad if you like that sort of thing...you know...that thang?\"\r\n0\tDon't get me wrong , I want to see marijuana legalized as much as the next guy. I shall digress now. The writing, though, was unrealistic. A PTA mom dealing drugs but adamant about her drugs getting into the hands of an underage person. Give me a break. The smugness of very pretty Mary Louise Parkers character was an insult to my intelligence. The characters were not at all likable. Basically, the plot lines went nowhere. I understand its only TV land . The hypocrisy was blatant. Mary Louise Parker is supposed to be a great mom and I am supposed to believe this.... WHY ???? I just got the feeling I was being preached by a show reeking of seediness. Its like saying its OK to cheat on your wife , but with someone of legal age status. OK not exactly the same thing , but I think you people get my point. That save the children stuff is wonderful for campaign trails , I guess, but it does not hold water in a cable sitcom about a suburbanite mom , as the local pot dealer.\r\n0\tMassacre is a film directed by Andrea Bianchi (Burial Ground) and produced by legendary Italian horror director Lucio Fulci. Now with this mix of great talent you would think this movie would have been a true gore fest. This could not be further from that. Massacre falls right on its face as being one of the most boring slasher films I have seen come out of Italian cinema. I was actually struggling to stay awake during the film and I have never had that problem with Italian horror films.<br /><br />Massacre starts out with a hooker being slaughtered on the side of the road with an ax. This scene was used in Fulci's Nightmare Concert. This isn't a bad scene and it raises your expectations of the movie as being an ax wielding slaughter. Unfortuanitly, the next hour of the movie is SO boring. The movie goes on to a set of a horror film being filmed and there is a lot of character development during all these scenes but the characters in the movie are so dull and badly acted your interest starts to leak away. The last 30 minutes of the movie aren't so bad but still could have been much better. The gore in the movie was pathetic and since Fulci used most of the gore scenes in Nightmare Concert there was nothing new here. The end of the movie did leave a nice twist but there was still to much unanswered and the continuity falls right through the floor.<br /><br />This wasn't a very good film but for a true Italian horror freak (like myself) this movie is a must have since it is very rare. 4/10 stars\r\n0\tSTAR RATING: ***** Saturday Night **** Friday Night *** Friday Morning ** Sunday Night * Monday Morning <br /><br />Marshall Lawson (Steven Seagal) is assigned to France on a reconaissance mission along with three new young strike-team recruits after disobeying a direct order from above. However the night before they're due to strike, they are all found grusomely slaughtered by a killer with seemingly inhuman strength. With the French police dallying around with their own investigation, he goes in search of those responsible himself, only to uncover a corrupt faction of the military dealing in a deadly new drug that alters a person's DNA and gives them terrifying new strength.<br /><br />Bad cover. Bad title. Bad post-production tampering. And bad trailer. Pretty bad film. But, I've got to say, I don't think Attack Force is quite his worst. I know this will make me unpopular with most of the other reviewers here (perhaps not Steveday!) but I think a lot of the criticism has stemmed from all the bad news that went before the film rather than the actual quality of it itself.<br /><br />I must say there was nowhere near as much dubbing or ropey editing as I'd been lead to believe. The dubbing there was (which made him sound like Martin Sheen with a groin problem!) was pretty awful and quite frequent but not in use for as large a segment of the film as I'd thought. The plot flowed pretty smoothly as well considering all the messing about with the original finished film called Harvester that went on. Also as another reviewer noted, the film has a nice Gothic look to it, a new touch for a Seagal film.<br /><br />The absolute killer low point, though, was the complete and total lack of any exciting action, with only a few poorly filmed fight scenes for any fun.<br /><br />I have to be honest, though, I would rather watch this again than Flight of Fury, Today You Die or Out for a Kill. **\r\n0\tI read in the papers that W.Snipes was broke so no wonder he would take parts in low budget projects like The Contractor.He is just the next action star to join a growing club:the penniless action stars of the 90s (Van Damme,Segal,Lundgren,Snipes). Here he stars the lead in a cheap action flick which was shot in Bulgaria( we are supposed to believe that the location is London, like only a complete moron would buy that)The story is the one of 1000 other movies: retired special forces good guy gets hired by the government again to do a wet job- after that government wants to get rid of him- good guy gets away after killing bad guys (was that a spoiler? guess not!) The star of the movie: the little girl (Eliza Bennett) outperforms everybody else of the cast!!!One star is for her plus one star for eye candy Lena Headey, makes 2 stars. Only for die hard Snipes fans!Everybody else:avoid!\r\n1\ti was greatly moved when i watched the movie.how jonny could keep such hope and faith was amazing. so many people only care about what they want , and fuss about all the things they don't have . and they are such small things ,like chothes,money a new car . i've seen people in tears because of a blemish. this movie brings everything back to the basics . love,hope the beauty of the simple but so important things in life.it makes our everyday problems seen for what they are Small and really unimportant. you watch this boy and you realize as long as you have been blessed with food ,a roof over your head and your loved ones around you .you are truly blessed.and the saying stop and smell the roses truly has a new meaning.and i know jonny will see this and i want to thank him so much for sharing such faith,strenght,and humor with me .thank you jonny i know you soar the heavens and bring much love and laughter to the heavens above.\r\n0\t\"This kind of film has become old hat by now, hasn't it? The whole thing is syrupy nostalgia turned in upon itself in some kind of feedback loop.<br /><br />It sure sounds like a good idea: a great ensemble cast, some good gags, and some human drama about what could have/might have been. Unfortunately, there is no central event that binds them all together, like there was in \"\"The Big Chill\"\", one of those seminal movies that spawned copycat films like this one. You end up wanting to see more of one or two particular people instead of getting short takes on everyone. The superficiality this creates is not just annoying, it's maddening. The below-average script doesn't help.\"\r\n1\tI watched this movie 11 years ago in company with my best female friend. I got my judgment teeth pulled out so I didn't feel very good.<br /><br />I ended up liking it big time. It's a hard watch if you take in account that it deals with friendship, unwanted betrayal, power, money, drug traffic, and the extreme hard situation that deals with living in a foreign jail.<br /><br />The acting is on it's prime level. Two of the women that I lust the most star and that's a good thing. Claire Danes is as cute and charming as always while Kate Beckinsale is extremely hot and delivers a fine performance. Bill Pullman is also great and demonstrates his histrionic qualities.<br /><br />There are many plot twists to dig from and make it an interesting visual experience. Plus it shows the difficult times at Thailand.<br /><br />This is an underrated movie. Not many films like this one have come up in recent history. It should make you reflex about many things...\r\n0\tScary, but mostly in the sense that will it be over before I turn 70. I saw this as a late night re-run in about 1976 and thought it would never end. Like crackers, it's better than nothing (but just).<br /><br />Ray Milland is a little scary because he looks as if he's been stuffed by a taxidermist. Yvette Mimeux looks as if she's smoked up all the Beautiful Downtown Burbank Brown. <br /><br />It's a sort of Roy Rogers version of Rosemary's Baby. This is one turkey that should never have been made. If you have insomnia and it's 1:30 on Saturday morning and there's nothing on but replays of the 1972 Roller Derby Chamionship, then I guess it beats that. But God help you if this is your only choice for entertainment.\r\n1\t\"Cunningly interesting Western from a director who had few peers in the genre. Much like other Anthony Mann pictures, The Far Country blends a potent pot boiling story with an adroit knowing of impacting scenery. Both of which play out amongst some of Mann's peccadilloes like honour, integrity, betrayal and of course, death! The story sees fortune hunting partners Jeff Webster {James Stewart} and Ben Tatum {Walter Brennan} travel to Oregon Territory with a herd of cattle. Aware of the blossoming gold-boom, they plan to make a tidy profit selling the cattle in a Klondike town. Arriving in Skagway they find self-appointed judge Mr. Gannon {John McIntire} ready to meet out justice to Webster on account of Webster having fractured the law, all be it with honest cause, along the way. In punishment Gannon takes the partners herd from them, but they steal them back and head across the Canadian border to Dawson-with Gannon and his men in hot pursuit. Here beautiful women and a meek and lawless town will fill out the destinies of all involved.<br /><br />Interesting from start to finish, The Far Country benefits greatly from James Stewart's bubbling {anti} hero in waiting portrayal and Mann's slick direction of the tight Borden Chase script. The cinematography from William H. Daniels is superlative, tho not done any favours by current DVD prints, and the film has a few surprises and a \"\"will he wont he?\"\" core reeling the viewers in. Paying dividends on re-watches for hardened genre fans, it still remains something of an essential viewing for first timers venturing into the wonderful, yet dark, Western world of Anthony Mann and James Stewart. 8/10\"\r\n0\tClaustrophobic camera angles that do not help the movie: Too long face only shots where you most of the time get the feeling that the lower half of the film is missing (that the screen is cut off), because there seems to be important actions going on, but you cannot see them. There is anyway already too much confusion in the movie, so these viewing angles make it worse and do not contribute to artful visuals. <br /><br />I like artfully made movies and unconventional camera work. I can handle deep and slow movies. But this one is trying too hard to be something artful and fails in my opinion painfully.<br /><br />Nothing to get attached to, to any of the characters, because they are not worked out well enough. To work out characters more is needed, than just minute long face shots, at least with this set of script+director+actors.<br /><br />I wonder whether some of the not so good acting is due to the script and director or due to the actors. <br /><br />I will stay away from films both written and directed by Le You for sure in the future. <br /><br />What an annoying film even for someone who would be interested in that part of history, and for someone who spent time in Shanghai.\r\n0\tThis is a movie about making a movie. Such movies may be entertaining, but they need some substance, to do so. It did not happen here, I am afraid. Mr Coppola did not inherit his father's skills, unfortunately (neither did his sister, who can however make movies which one might watch).<br /><br />I do wonder how this movie came to get such rave reviews. <br /><br />Let's see: the lead male actor, supposedly a director, is as expressive as a frozen squid and his voice has the same pitch whatever he says, the lead female actress has an expression on her face that never changes, the plot is totally segmented in bits with perhaps one single connecting element, the movie within the movie idea must be more stale than paleolithic rocks... Would that be enough?<br /><br />I regretted every single moment I watched this movie. A walk with the dog is far superior entertainment to this unbelievably lame movie. It's as if a François Truffaut plot were directed by Dick Cheney...<br /><br />Brazil, some other classic SF movies? You must be really joking...\r\n0\tPerhaps not my genre but plot was horrible as was acting by Nancy Allen and Linda Farentino. C. Thomas also seemed uncomfortable in role of being seduced here (while on marijuana? why did this need to be included? this weakened plot considerably). Also Farentino's charac. would have been better had she had more respect for a relationship. Would does movie try to say? not much.\r\n1\tWhen I first heard that Hal Hartley was doing a sequel to Henry Fool, I was excited (it's been a personal favorite for years now), and then wary when I heard it had something to do with terrorism. Having just seen it though, I was surprised to find that it worked, while still being an entirely different sort of movie than Henry Fool. The writing and direction were both dead on and the acting was superb...especial kudos go to Hartley for reassembling virtually the whole cast, right down to Henry's son, who was only four in the original. Like I said though, this movie is quite different from the first, but it works: I reconciled myself with the change in tone and subject matter to the fact that 10 years have passed and the characters would have found themselves in very different situations since the first film ended. In this case, an unexpected adventure ensues...and that's about all I'll give away...not to mention the fact that I'll need to see it again to really understand what's going on and who's double crossing who. While it was certainly one of the better movies I've seen in some time, it suffers like many sequels with its ending, as it appears that Hartley is planning a third now and the film leaves you hanging. I'll be sure to buy my tickets for part 3 ('Henry Grim'?) in 2017.\r\n0\tThe problem I find with this title is that I am not sure if the director is trying to produce a documentary or movie. A blend of the two genres just doesn't work and that leaves the whole thing hung in the middle of nowhere. This is more so as the director has picked the most extremes of what is supposed to be happening around our everyday life making it an unconvincing documentary. If it is meant to be a thriller/drama this is too dull and monotonous. In either case, what is the moral or the message which the director is trying to convey to the audience? That around us there are people who ill-treat others who are willing to be ill-treated? That there are many crazy lunatics around us? So..........so what?\r\n1\tI never saw this movie until I bought the tape last year. I was enthralled and entertained. It has all the elements of what I love to see in a Sci-Fi story, in a book or on the screen. There's social commentary, speculation, and a good story.<br /><br />There's something eerie, and amusing, watching a 1936 view of the 'distant future' of the 60s and 70s.<br /><br />I think it's a must see, and not only for Sci-Fiers.\r\n1\t\"clara bow's beauty and wonderful appeal are the chief reason to watch this film. \"\"hula\"\" is not quite up to par with clara's best films but it is still enjoyable. she dances, she rides her horse, and pursues the man that she loves. this film is just over an hour in length and was directed by future oscar winner victor fleming (gone with the wind).the film moves quickly and clara bow has lots of screen time. if you like clara, i would reccomend \"\"hula.\"\"\"\r\n0\t...thankfully he hasn't, yet! This is crude, simplistic student politics made into drama. It needs the viewer to buy into a series of conceits. Conceit 1: That a British electorate could be swung from being basically right of centre to being overwhelmingly far left. Conceit 2: That all debate in the media and the general public is unanimously ended and that the new Prime Minister's only critics are sinister civil servants, MI5, big business and the Americans (naturally). Conceit 3: That this radical socialist PM can solve all union, economic and social problems with consummate ease in a way that unites the nation. Conceit 4: That severing all ties with the US and NATO is a good thing. Conceit 5: That the Soviet Union isn't a brutal and oppressive regime and that we should have had closer times with them back in the 80's. And finally, Conceit 6: That the reactionary forces of the US would actively seek to launch a coup d'etat against Britain.<br /><br />It's ludicrous and the show only gained the reputation that it did by trying to cash in on some anti-Thatcher feeling in the country and having left wing TV critics singing its praises. When it was made, television was still a hugely popular and influential medium with shows getting huge ratings so a widely talked about drama with a hint of controversy had a good chance of getting a big audience. Ray McInally's performance was great, which is one of the few plus points. History and time has shown the huge weakness in the premise and plot of this show.\r\n1\t\"Has anyone noticed that James Earl Jones is the waiter who is serving when Hagarty's wife reveals that she is pregnant while they are at the restaurant next to the lake. I watched this movie on a video that I had taped off of the television. When I watched this scene I thought I recognized the voice of Jones when the \"\"waiter\"\" laughed at the end. I rewound the tape then slowly stepped through that part as the camera pulled back and showed the waiter. Listen closely as the waiter laughs when Hagarty looks up and tells him that they are going to have a baby, then watch closely or slow down the scene when the camera shows the waiter, albeit, quickly.\"\r\n1\t\"Great voices, lots of adventure and clever dialogue make this a very good movie. The addition of \"\"character\"\" to the three lead animals gives the story a lot more depth and meaning, particularly the relationship between the older fellow, Shadow, and the young hellraiser, Chance. The earlier versions of this film were unable to give the animals any real personality or motive, which is done perfectly here. Sally Field is lovable in anything, but really shines in this film as the proud feline, Sassy. Great contrast between cat and dog perspectives on life, and just the right amount of spirit and warm fuzzies to make the plot and resolution excellent. There's even an uplifting score and beautiful mountain scenery. Definitely perfect for an evening alone or with the kids. Hats off to Disney.\"\r\n0\tThere was nothing of value in the original movie, this one was even lamer. The fact that I even found it to rent was absolutely amazing. Anyone connected to this film has to be high on something! So what was the story line? What was with the girl? Was the viewer supposed to get the story line in the first four minutes of the film. Sadly, I tried several times to watch this. I even borrowed a kid from someone to get some feedback. Kid said it was stupid, and he was four years old. I find that possibly some credit could go to the filming director, as possibly some of the shots made the movie more than a B film. That might be pushing it. I did love the theme song. Good thing it was only a dollar, it was worth it. I suppose you might enjoy the film if you were high as the cast and crew would have to be. Is pot legal in France?\r\n0\t\"I can see where the film makers were going with this. But they never really reach their destination. It's supposed to be a homage to Spaghetti westerns albeit set in a sort of mythical modern time frame.\"\" But unfortunately it fall short in its attempt. It doesn't have that gritty realism that spaghetti westerns are known for. The characters are not vile and desperate enough like their Italian western counterparts. And, failing these two points, it lacks the humor of a successful parody. In fact it looks like they intended to make a serious film, but upon completion realized they had missed the mark so far that it couldn't possibly be taken seriously. Unfortunately, they also missed the humor mark by a mile. A whole lotta bad movie!\"\r\n0\t\"Corky Romano has to be one of the most jaw dropping and horrific \"\"comedy's\"\" ever made.<br /><br />While the sometimes amusing Chris Kattan who pulled off a very funny performance in the hilarious 'Undercover Brother' his character in Corky is so stupid and so unfunny-which is a shame since the premise is a wonderful idea. To bad they ran out of them when they got to page 3 on the script.\"\r\n0\t\"I watched this movie last night and hoped for the best after watching all the cool trailers.Even the cover of the DVD looked good.As soon as I started watching it I was thinking like others \"\"oh my God whats this\"\".There were some moments that were a bit creepy but then the mood was ruined by stupid music.There was rock and opera during what is supposed to be suspenseful scenes.That right there ruined it for me and i was shaking my head thinking damn I wasted money again on a rental and was deceived by the cover art.Nothing against the music itself,it was just in the wrong parts of the movie.Whoever edited the film has no clue what they are doing.The cover showed lightning, implying they were caught in a storm at sea.That would have been more interesting but it didn't happen. The acting wasn't the worst i've ever seen considering they are all unknown and this is obvious their first film.Another reason I was disappointed was the plot made no sense.In the beginning 2 men saw all of the teens get on a boat,then at the end supposedly only 1 girl existed and the others were either her imaginary friends or were ghosts i'm not sure because it was very badly portrayed. WhyteFox who wrote a comment on here claims this is a true story.He or she believes in ghosts and spirits and says there is a haunted boat in the area this movie was filmed.There was no mention in this movie about it being a true story.I have never experienced something like that personally but am not saying it's impossible.I guess if anyone is interested in renting this movie,do it at your own risk.If you like amateur student horror films you may like this.\"\r\n1\tAs we all know a romantic comedy is the genre with the ending already known. The two leads always have to get together. Late in the third act I was trying to figure out how this will wrap up and how they will end up together. A clue was given right from the start, but you'll never realize it until the end. It's a simple hook, but it works. It Had To Be You cover a lot of the usual ground, but takes a fresh spin when ever possible. I liked all the NY characters and I loved the locations. It's a postcard of NY. Also it was nice to watch a film and not find anything offensive in it. So, if you like a good old fashion romantic movie ... then this is for you.\r\n0\tThis film is self indulgent rubbish. Watch this film if you merely want to hear spoken Gaelic or enjoy the pleasant soundtrack. Watch for any other reason and you will be disappointed. It should be charming but isn't - it's just irritating. The characters are difficult to care about and the acting is poor. The stories within the film are also charmless and sinister. I was expecting a heartwarming family film but this also held no appeal to my fourteen year old daughter. It is rarely that I cannot see a film through to its conclusion but this one got the better of both of us.<br /><br />Although the film is set in current times it has the look and feel of a cheap East European film made during the Cold War. There isn't even enough in the way of beautiful Scottish scenery and cinematography to redeem it. A real shame because as a film this is an embarrassment to Scotland.\r\n1\t\"I loved it so much that I bought the DVD and the novel at the same time. The chemistry between the actors (including little Arthur) is amazing and thrilling.<br /><br />It could have used a bit more screen time for the yummy Frederick Lawrence (played by James Purefoy). And Gilbert Markham was amazingly \"\"on it\"\" from the very start of the movie. <br /><br />The one who most thrilled me via surprising shock and awe and wonder was Rupert Graves as Arthur Huntingdon. I adore him in Forsyte Saga, and all else I've seen him in. But he outdoes himself here as Arthur. In my wildest dreams I could not have pictured him playing a demented psycho such as Arthur Huntingdon. But he does. And I love it. And I love him.\"\r\n0\t\"PLEASE TAKE A MINUTE TO READ MY ENTIRE REVIEW. I AM NOT KNOCKING THE FILM ITSELF - ONLY THE DVD VERSIONS CURRENTLY AVAILABLE.<br /><br />***<br /><br />I really wanted to give this film even two stars. I mean how could it possibly rank a mere 1 out of 10!?!<br /><br />Here's how: An epic film adaptation of Tolstoy's novel \"\"War and Peace\"\" with historically accurate battle scenes, courtesy of the Red Army, and an extremely faithful, scene-for-scene adaptation of the novel would be difficult but worth sitting through for seven hours - if that's what you were seeing.<br /><br />The trouble is you can't see that film - anywhere as far as I know.<br /><br />I am attempting to watch the RusCiCo DVD version - widely considered the best version available since it's letter boxed and restores the scenes that were cut from other DVD releases. <br /><br />But, it is one of the worst film prints I've ever seen transfered to DVD. The picture is muddy and inconsistent, often strobing. It's almost tolerable if you crank your brightness, color and picture levels up to maximum.... but the problem doesn't end there.<br /><br />The sound is also way inconsistent, blaringly loud in parts, virtually inaudible in others. <br /><br />And as for languages, it's a HUGE problem for English speakers - the dubbed option has some good actors, and some really terrible ones whose performance grates, and parts of the film just aren't dubbed at all, slipping back into Russian and even French randomly.<br /><br />The subtitled option isn't much better. The subtitles don't appear below the image, but right over it - obscuring some of the beauty (or what's left of it) in the scenery. Furthermore, the subtitles are often a poor translation (a shame given that the script took pains to hew so close to Tolstoy's actual words), and the subtitles too seem to just drop out in parts. <br /><br />So, even if you max out the color, brightness and picture settings, and turn the volume way up, and choose subtitled *and* English dubbed, you're still going to get a film that's annoying to watch and listen to.<br /><br />Can it's content overcome that? It might have been able to, but at seven hours - who can stand it for that long?<br /><br />Maybe someday, someone will come along and restore this - and maybe then I will see a masterpiece - but for now, I just can't give more than one star to something I've only been able to stand watching about the first 12% of.\"\r\n1\tNot only is this film entertaining, with excellent comedic acting, but also interesting politically. It was made at the end of the Soviet Union, but makes fun of the soviet mentality through and through. The story is set during the early days of the soviet union, and it questions the rationale behind the revolution both in cultural and practical terms. Of course, by the late 80s and early 90s, the bizarre strictures of soviet society are already relaxed, but the ideology and mentality is still alive and well and ready for some well-deserved deconstruction. Happily, all this deep philosophical commentary is wrapped in a funny and entertaining package!<br /><br />Jur\r\n0\tIt was almost unfathomable to me that this film would be a bust but I was indeed disappointed. Having been a connoisseur of Pekinpah cinema for years, I found this DVD, drastically reduced, for sale and thought it was worth a shot. The opening few credits, iconic to Pekinpah fans, has the inter-cutting between man and animal, but here we have non-diegetic ambient noise of children playing in a schoolyard while a bomb is being planted. Fantastic suspense. Then, when the perps, Caan and Duval, travel to their next mission, Duval drops the bomb on Cann that his date last night had an STD, found only by snooping through her purse while Cann was being intimate with her. The ensuing laughter is fantastic, and is clearly paid homage to in Brian Depalma's Dressed to Kill, at the short-lived expense of Angle Dickenson. The problem with The Killer Elite is that after the opening credits, the film falls flat. Even Bring Me The Head of Alfredo Garcia has stronger production value, a bold call for anyone who knows what I'm talking about. I use Pekinpah's credits as supplementary lecture material, but once they are finished, turn The Killer Elite off.\r\n1\t\"I waited a while to post a review of this documentary because when I first saw it over 10 years ago, I wanted to think carefully about what I wanted to write. <br /><br />I found from a documentary standpoint that this is a darned good documentary. It did what it set out to do, show me something I had no idea about and kept me interested in this world it explored. I knew nothing of the Drag world and finding out about them and the \"\"Balls\"\" was just spectacular to me. These folks were just so talented with what they do and how they do it, for competition. The catty folks, the complainers (even I was angry when someone told the judge that the coat the Drag Queen was wearing wasn't a man's coat!), the jealous, it's all there like in every other competition. LIKE EVERY OTHER COMPETITION like it. Which I felt was a point.<br /><br />You had the older drag queen talking about how the Balls \"\"used\"\" to be compared to the newer drag queens who have changed the Balls and made more competition categories -- and even those who looked on knowing that the future of Balls would change even more when they were ready to walk the runway. It was interesting to hear that some of the contestants were living out on the street two minutes before the ball but came to compete, it was that important to them! Then there was sad stories, stories of who's \"\"house\"\" and \"\"house mother\"\" brought out the best and the brightest in competition. It was interesting.<br /><br />Now to add after 10 years of seeing this film, I lived through the so called 'Madonna' craze. I spotted a few familiar faces from this documentary who ended up with Madonna during her \"\"Vogue\"\" phase and rightfully so. If not for those individuals, Madonna wouldn't have HAD a \"\"Vogue\"\" phase, I know that now. Credit should be given where credit is DUE. Makes me wonder, if anyone else from mainstream America would watch this documentary, they'll learn they're not as \"\"mainstream\"\" as they think.\"\r\n0\tI'm sorry for Jean, after having such a good original movie to be followed up by perhaps his worst movie in is career. This movie was shot down terribly by horrible acting jobs by Goldbeg(Romeo) and whatever that computers name was. Also, some scenes may have been just a little unnesicary. Truly, bad movie.\r\n1\tThe movie is okay, it has it's moments, the music scenes are the best of all! The soundtrack is a true classic. It's a perfect album, it starts out with Let's Go Crazy(appropriate for the beginning as it's a great party song and very up-tempo), Take Me With U(a fun pop song...), The Beautiful Ones(a cheerful ballad, probably the closest thing to R&B on this whole album), Computer Blue(a somewhat angry anthem towards Appolonia), Darling Nikki(one of the funniest songs ever, it very vaguely makes fun of Appolonia), When Doves Cry(the climax to this masterpiece), I Would Die 4 U, Baby I'm A Star, and, of course, Purple Rain(a true classic, a very appropriate ending for this classic album) The movie and the album are both very good. I highly recommend them!\r\n0\t\"I have to say that there is nothing wrong with low budget films, so that was not my problem with it. My problem with it is that I felt like I was watching my next door neighbor's home movie. IMO everything about it just seemed like a guy wrote out a quick story, grabbed a camera, and started shooting. I understand how hard this must be to do effectively, but when I pay to rent a film, I expect to feel like I am watching some type of professionally made movie.<br /><br />John Schneider has a huge resume, is a great actor, and was fine in this film. The other people in it were not. I understand how it must be fun, and cheaper to use friends, and relatives as the cast, but it doesn't make for convincing acting. It seemed like the way it was shot, he was trying to give many of the scenes a more interesting look, but when the writing, plot, and acting are there to begin with, that type of style isn't necessary, and it is a distraction.<br /><br />Also on a technical level, it had digital artifacts all over the place. In the first scene of all of those fine cars, when they did a slow scan of them, they appeared to jerk back and forth just a little bit. The problem isn't in my viewing equipment, (Benq PE-8700 84\"\" diagonal) but somewhere in the production. I've never seen that kind of artifact in a professionally made film before. Then there was the sound. It sounded like they didn't do any voice-overs, which may be o.k. unless it sounded like the track in this film. It sounded like the built in microphone on the camera.\"\r\n1\t\"Was this based on a comic-book? A video-game? A drawing by a 3 year-old? <br /><br />There is nothing in this movie to be taken seriously at all; not the characters, not the dialog, not the plot, not the action. Nothing. We have high-tech international terrorists/criminals who bicker like pre-school kids, Stallone's man-of-steel-type resilience towards ice-cold weather, dialog so dumb that it's sometimes almost hilarious, and so on. Even the codename that the bad guys use is dumb (\"\"tango-tango\"\"). A film that entertains through some suspense, good action-sequences, and a nice snowy mountainous setting. Oh, yes: and the unintentional humour.<br /><br />The film opens with some truly bad and unconvincing gay banter between our go-lucky and happy characters who are obviously having a \"\"swell\"\" time. Then comes a sweat-inducing failed-rescue part, which should make anyone with fear-of-heights problems want to pull their hair out. And then we have some more bad dialog, and after that some more great action. This is the rhythm of the film in a nutshell. <br /><br />Stallone's melodramatic exchange with Turner, when they meet after a long time, is so soapy, so clichéd, so fake, and so bad that it should force a chuckle out of any self-respecting viewer. Soon after this display of awful dialog-writing, we are witnesses to a spectacular and excellently shot hijack of an airplane. The entire action is one big absurdity, but it's mindless fun at its best. Although the rest of the action is exciting and fun, the airplane scenes are truly the highlight of the film. After the landing, our master-criminals seek for a guide and end up with Stallone and Rooker. They send Stallone to fetch the first case of money, but somehow they do everything to make it as difficult as possible for him to reach it; they take most of his clothes off (so he can freeze) and they won't give him the equipment he needs (so he can fall off). DO THESE GANGSTERS WANT THEIR MONEY FETCHED OR NOT??? Very silly. Apparently they don't trust Stallone, but surely they know that they can always black-mail him by using Rooker as a hostage. Nevertheless, our gangsters make Stallone's climb difficult, if for no logical reasons then to at least show us how truly evil they are - lest there be any doubts. And for those who might still doubt how evil the bad guys are, they overact, brag, and snicker in a truly evil manner. Everyone convinced? Good. You'd better be. Otherwise the writers will throw in a mass execution of twenty school children, just to make sure that the evilness of the bad guys is crystal-clear to everyone.<br /><br />The old guy who flies the chopper... How the hell did he fall for the trap? Firstly, he must have been warned by the MTV airhead about the criminals, and secondly, he must have heard Stallone's and Rooker's voices on the walkie-talkies. A whole bunch of idiotic verbal exchanges take place, with Lithgow having the questionable honour of getting most of the silly lines. \"\"Get off my back!\"\" Lithgow: \"\"I haven't even started climbing on your back.\"\" Or, Lithgow to Stallone: \"\"We had a deal, but now we only have each other!\"\" And as for Lithgow's gang of murderers: these guys never seem to want to kill immediately. They are very creative about it; they philosophize, pretend that they are playing football with your body, and so on. <br /><br />Stallone co-wrote this thing. I have no idea what drugs he was on when he did it. I'd hate to think the script is this bad because of a low I.Q.\"\r\n0\tIt is a great tragedy that both Richard Harris and John Derek are no longer with us. But that shouldn't blind anybody to the fact that in 1981, a pretty ugly blotch appears on both men's CVs. No doubt John Derek conceived this movie doing for his wife what 'Some Like it Hot' and 'One Million Years BC' did for Maryln Monroe and Raquel Welsh respectively, creating an iconic sex symbol for the new decade. Having run to embrace Dudley Moore on the beach in '10' Bo's reputation, an all-star cast and location filming in Sri Lanka meant that nothing could go wrong. Alas, as they say, Mortals plan and God laughs. It is said that when this film premiered in 1981, the Edgar Rice Burrows estate tried to take legal action against it. Bo Derek plays Jane Parker who sets off into turn-of-the century Africa to be reunited with her boozy, abusive Dad, Richard Harris. Daddy Parker is an explorer who has set out to find 'the Great Inland Sea' the stuff of local legend, whose existence has been poo-pooed by conventional wisdom. Harris is worth watching for a wonderfully hammy, tanked -up performance which includes singing an Irish ditty at an Indian elephant that somehow found its way into Africa (did it arrive at the same time as the Orang-Utan from Sumatra???) Furthermore, although Jane professes to despise Parker, Bo and Rich's relationship is creepily incestuous, testimony perhaps to the effects of the tropical heat. Before long, however, local legends start to circulate about a 'Great White Ape' and Jane hears the famous yodel. This is the movie's cue for Miles O'Keefe, a future B-Movie star, making a rather odd debut as the loin-clothed Lord of the Jungle. Unlike Johnny Weismuller with his pidgin English or Ron Ely who speaks the language fluently, the O'Keefe Tarzan is mute. Given some of Bo and Richie's dialog, though, this is probably not a bad thing. Harris and his caravan eventually reaches the Great Inland Sea, located atop a gigantic plateau that seems to run halfway across Africa....hang on, aren't seas, lakes and other watery places generally located in low-lying areas?? Nevermind, it is just one of many anomalies in the John Derek universe. The crew attempt to mount the cliffs and when the ropes snap, Harris roars echoing abuse at the hapless men who have plummeted to their deaths. On another occasion, Jane decides to take a nude swim by the Inland Sea, giving another occasion to see some gratuitous nudity. Out of nowhere a single male lion appears. Now lions usually travel in prides and never go near beaches but later on, Tarzan will be wrestling with a (venomous) boa constrictor. Zoology doesn't seem to have been one of John Derek's strong points..... This being a Tarzan movie, Jane becomes enchanted with the Lord of the Jungle and resolves to take his virginity. But having seen his closeness to some of those chimps, you do have to wonder...Speaking of which, it's not only the Edgar Rice Burroughs estate could have sued. It is highly probable that certain primates were on the phone to their lawyers: the chimps here make you miss Cheeta badly. Especially when they do ridiculous things like ride on the backs of elephants and clap their hands when Tarzan and Jane finally get it on! The climax of this film has Bo and Harris captured by some rather stereotypical cannibals who paint our heroine and prepare to sacrifice/eat/execute her. Suffice is to say that The Great Wooden Ape gets his girl and *SPOILER* Harris gets himself impaled on a huge elephant tusk! This doesn't stop the dying Parker from delivering a rambling monologue to Jane. As far as I am aware, the law suit from the Rice Burrows estate never materialized but 'Tarzan the Ape Man' was crucified at the box office (no kidding?) A pity. John Derek could have directed 'Tarzan the Ape Man 2' with Bo Derek and Miles O'Keefe living in domestic bliss and Dudley Moore as 'Boy.'\r\n0\tBased on the Korean legend, unknown creatures will return and devastate the planet. Reporter Ethan Kendrick is called in to investigate the matter, and he arrives at the conclusion that a girl, stricken with a mysterious illness, named Sarah is suppose to help him. The Imoogi makes its way to Los Angeles, wreaking havoc and destruction. With the entire city under arms, will Ethan and Sarah make it in time to save the people of Los Angeles? Written by Anonymous I think he should have included the following<br /><br />This is the worst movie i have ever seen the best actor in the whole thing was the CG dragon and overall it s u c k-ed i am p i s s-ed at not only with the people who made it but myself for watching save yourself the time read a book or something maybe a little Dr Seuss that should be more stimulating.<br /><br />no wonder the guy is anonymous sorry for the format this site has a lot of rules this is the only way i could get this out without adding more\r\n0\tAs others have pointed out this movie is a load of pretentious drivel for the mindless or masochists.<br /><br />We all know after seeing trainspotting and acid house that Scotland is one of the most depressing places in the first world. But unlike trainspotting and acid house without a good dose of humour or gritty realism movies like this do not work. And even more importantly without a decent script a movie will not work and there is nothing new, inspiring or thought provoking about the script for this movie.<br /><br />The fact that this movie won a couple of Bafta's shows how bad the British film industry is at the moment. I thought the Aussie movie industry was pretty bad at the moment but unfortunately the British industry is even worse.<br /><br />This movie is so bad I wouldn't even bother renting it from the weeklies section.<br /><br />Do yourself a favour and give this movie a wide berth.\r\n1\t\"I'll be honest,I finally checked this movie not because of the stars--though they were reasonably watchable and compelling,particularly the three leads--or even the compelling story of a breach in the Presidential Secret Service(something,I've been informed through the DVD extras of this show,has yet to ever happen.Assuming that's true,that's remarkable!). I got it because it was directed and has a choice cameo by none other than Detective Meldrick Lewis!! Well,okay,Clark Johnson,one of my faves from \"\"Homicide:Life on the Street\"\" and a veteran (mostly) TV director. I'd say that he does about as good as he can with a project that is watchable but pretty average,despite the possibilities.<br /><br />Veteran and ace Secret agent Pete Garrison(Michael Douglass)has to find out both who is blackmailing him AND who killed his friend,targeted and blew up an Air Force One chopper and is gunning for the Prez.(David Rasche. Anyone remember \"\"Sledgehammer\"\"?). His affair with the first lady(Kim Basinger,clearly one of the HOTTER first ladies we've ever had,fictional or real)is certainly not helping his standing. He's got to both ferret out the real mole in the service and avoid the hound dog like hunting of his former best friend and fellow agent and chief(Kiefer Sutherland,almost still completely in \"\"24\"\" mode). Throw in some other pivotal Service agents(Martin Donovan and the foxy,somewhat hard to buy as the gig Eva Longorria) and shady foreign characters and you have a fairly standard political thriller that doesn't aim as high as it purports and reaches the desired,if underwhelming,results.<br /><br />The summary line is about the best way to describe how this show plays out without giving spoilers. The DVD extras to me seemed more insightful and interesting than the movie,though the film itself was entertaining enough to keep most (myself included) interested.\"\r\n0\tThis movie was definitely not one of Mary-Kate and Ashley's best movies. I really didn't like it, and I was kind of disappointed in that movie. For some reason, it seemed like it was a movie that they put together really fast. In some parts, it got so boring that I had to fast forward it. It didn't have any bloopers or any exciting parts like their other movies.\r\n1\tNormally the best way to annoy me in a film is to include some reference to Orson Welles. But here is a sci-fi comedy quoting the War of the Worlds broadcast.... and it is gold! The very concept of a small bunch of diminutive,aggressive and stupid aliens being mistaken as kids in Halloween dress is magnificent. Don't be fooled by the notion that because it seems like a kids' movie it is unsophisticated - it isn't, there's a lot of hidden treasure... A gem!\r\n1\t\"You better see this episode from the beginning, because if you start to watch it any later, you will be confused as to what is happening to Clark's life.<br /><br />Yet, that is the twist; Clark is stuck in an alternate reality. Lana is devoted to him. Lex lost most of his legs and is in a wheelchair due to the bridge accident when he swerved to miss Clark in the pilot of the series. Martha is married to Lionel. About the only constant is his most loyal friend Chloe, who still believes in who he is. And, oh yeah, he doesn't have any superpowers. He is in a mental institution for putting himself in a fantasy world where he does have powers, and is ridiculed for believing so. Aside from Chloe, there is one mysterious figure who believes in Clark: a black man who in the alternate reality is also a resident of the institution, who believes he is from Mars.<br /><br />Clark must stay true to everything he believes is actual reality, and not get brainwashed by the institution's psychiatrist, who is in fact the fourth Phantom Zone escapee.<br /><br />This episode is utterly mind-blowing and shocking. Plus, it provides a fresh twist from the usual type of \"\"Smallville\"\" episode.\"\r\n0\tI saw this movie the other day in a film school class, and I hadn't seen an Almodovar movie before but went in expecting it to be good. Unfortunately, it turned out to be a pointless film with only a couple of laughs mixed in with two hours of sheer boredom. High Heels is just a collection of random scenes that might have worked in their own separate movies but together don't add up to any kind of meaningful whole at all.<br /><br />Or so I thought. Then, the next day, my film professor spent the entire class period explaining all of the movie's hidden little details, like how the mural depicting stereotypical flamenco dancers in the background of the drag queen scene is some kind of commentary on the lack of identity that Spain as a nation has developed under fascist rule. Apparently, the whole movie is chock full of clever little visual tricks and references like this.<br /><br />Great, but you know what? It's still a bad movie. It takes more than depth and complexity to make a good film--you still need to give the audience a reason to keep paying attention, something to interest the viewer enough to actually care about all the subtle tricks. High Heels gives us strange, off-beat characters but keeps them in mostly mundane situations recycled from other movies, and Almodovar doesn't seem to be using them to make any kind of point. What is the significance, for example, of the Hitchcockian surprise character revelation that occurs towards the end of the film? Why is that even in there? Just to surprise us?<br /><br />There is one funny scene that has to do with a news broadcast. And that's it, that's the only entertaining moment. The rest of the movie is just nonsensical filmic references and visual cues that apparently exist only for the sake of showing us how smart Pedro Almodovar is. But no matter what my film professor says, it takes more than self-indulgent trickery for a movie to be good.\r\n0\tHobgoblins is a very cheap and badly done Gremlins rip-off. That's the best thing one can say about this stinkpile. Pretty much everyone in the cast was chosen for their looks and not their acting ability. It was very painful to watch.<br /><br />Avoid this one at all costs.\r\n0\t\"Well, what to say...<br /><br />Having seen the film I still have to wonder what the hell the point of it all really was?? V.Dodgy camera moves in the courtyard at one point... I had to look away from the screen, I was feeling physically sick... Round and Round and Round.... You get the idea...<br /><br />VERY VERY Strange accents at many points.... \"\"Those that should know, know\"\"<br /><br />Unless your getting in for free, or being paid to watch it, or your partner is about to make you paint the house or something.. then forget it...\"\r\n1\t\"Let me start off by saying that after watching this episode for the first time on DVD at 10 o'clock P.M. one night, I could not fall asleep until about 3:00 A.M.<br /><br />This brief review may contain spoilers.<br /><br />I'm a long-time fan of The Sopranos and I can safely say this is the best episode I've seen. I'm not saying everyone should feel this way, but I do. This episode is identical to the weekend I spent with my family, watching over my own father, comatose in the ICU before he passed.<br /><br />The episode begins with Tony in an alternate reality: he is a salesman who's identity has been mistaken for that of a man named Kevin Finnerty.<br /><br />By the time ten minutes had gone by, I knew either Tony was dreaming, or I was watching some other show. It wasn't like the normal Sopranos and I loved it.<br /><br />Option 1 is confirmed when Anthony (or \"\"Kevin\"\") looks into the sky at a \"\"helicopter spotlight\"\" and we see prodding through it, a doctor with a flashlight. We see this only for a moment and the sequence plays out until we go back to real life in a situation similar to the one I just stated.<br /><br />Tony has come out of the coma for only a moment. His boys take A.J. home and Carmella, overcome by stress, breaks down in the hallway: a signature moment in the episode.<br /><br />For the remainder of the episode, we cut in between the real world: the family dealing with the potential negative outcome of this coma, and Tony's alternate reality, which parallels what's going on both in his mind and in the real world around him.<br /><br />Then comes the stellar point in the episode: after A.J. finishes telling his mother he's flunked school, she walks in to see Meadow sitting at Anthony's side.<br /><br />She approaches Tony, and utters the best line of the episode: \"\"Anthony, can you hear us?\"\" In Tony's world, he enters a dark hotel room and turns on a light. He takes off his shoes and goes to the phone. He tries to dial, but he cannot--as if he were trying to say something back to Carmella, but couldn't physically bring himself to do so. Not yet.<br /><br />He sits down and looks out his window. A shimmering light that has reoccurred throughout the episode now seems to call to him from the other side of the city.<br /><br />\"\"When It's Cold I'd Like To Die\"\" by Moby marries perfectly with these last images and helps in creating an emotional roller-coaster of an episode.<br /><br />10 out of 10.<br /><br />P.S.: Watch the next episode. You find out what the light is. It's wonderful.\"\r\n1\t\"On rare occasions a film comes along that has the power to expand the mind, warm the heart and touch the very soul. \"\"LOU\"\" is such a film. I got \"\"LOU\"\" from my wife who got it from a neighbor who is in the film business. She watched it for a second time with me. We were both enthralled. Her as if for the first time again.<br /><br />\"\"LOU\"\" is a magical piece designed to send you back to the moment at which all of your dramas started taking place. It does this while being relentlessly entertaining. Bret Carr's acting and pacing as a director do not let you look away from the screen. He crafts a character which disarms with a bugs bunny like, stuttering innocence, but warmly carried with such underplayed sincerity that you forget you're watching a movie. When the epiphany hits during the brilliant climax, I saw my wife in tears for the second time.<br /><br />As a life coach, I facilitate individual growth and transformation, and this film is a \"\"must see\"\" for life coaches and anyone seeking their own personal growth and transformation. It is a brilliant, creative masterpiece with the power to change lives!\"\r\n1\t\"The Dirty Harry series began with very gritty cop action, and was almost immediately lightened up for \"\"Magnum Force\"\". By the time that \"\"The Enforcer\"\" rolled around, Dirty Harry was little more than a television cop show (saved only by Tyne Daly). After a break of seven years, Dirty Harry has finally gone back to his roots. Maybe he's been gone for too long this time.<br /><br />Clint Eastwood makes the first well-directed Harry film since Don Siegel made the first, which helps considerably. Harry is a darker character once again, not the nice cop he had become. He can once again say things like \"\"Go ahead, make my day\"\" and really mean it. \"\"Sudden Impact\"\" is a true Dirty Harry sequel. \"\"The Enforcer\"\" should never have been made.<br /><br />7.2 out of 10\"\r\n0\tA group of people are invited to there high school reunion, but after they arrive they discover it to be a scam by an old classmate they played an almost fatal prank on. Now, he seeks to get revenge on all those that hurt him by sealing all the exits and cutting off all telephone lines.<br /><br />Dark slasher film with an unexceptional premise. Bringing it up a notch are a few good performances, some rather creative death scenes, plenty of excitement & scares, some humor and an original ending.<br /><br />Unrated for Extreme Violence, Graphic Nudity, Sexual Situations, Profanity and Drug Use.\r\n0\tChillers starts on a cold, dark stormy night as a bus drops off three passenger's outside a bus station, a young boy named Mason (Jesse Emery), a college professor Dr. Howard Conrow (David Wohl) & a woman named Sharon Phillips (Laurie Pennington). Inside they discover that they have missed their connecting bus & are stranded for the night. In the waiting area they find two other people, Ronnie (Jim Wolf) & a sleeping woman named Lindsay (Marjorie Fitzsimmons) who is currently having a terrifying nightmare...<br /><br />While swimming in an indoor pool Lindsay encounters & befriends guy named Billy Waters (Jesse Johnson), the next time Lindsay sees Billy he dives into the pool & then seemingly disappears into thin air before he surfaces. Shortly after Lindsay discovers that Billy Water died in a diving accident 5 years ago...<br /><br />Lindsay wakes up & tells the others about her nightmare, everyone else responds by saying that they too have suffered disturbing dreams recently & decide to share them to pass the time...<br /><br />Next up is Mason who tells a story of how he & two friends, Scott (David R. Hamm) & Jimmy (Will Tuckwiller), are terrorised during a camping trip...<br /><br />Then it's Sharon whose story revolves around a newsman named Tom Williams (Thom Delventhal) who she phones up, in no time at all Tom is at her front door but he actually turns out to be a Vampire...<br /><br />It's Ronnie's turn next & he describes how he discovers that he can bring the dead back to life, unfortunately he brings executed mass murderer Nelson Caulder (Bradford Boll) back to homicidal life...<br /><br />Finally Dr. Conrow tells a tale of how two of his students brought an ancient Aztec war-god named Ixpe (Kimberly Harbour) back to life...<br /><br />Then it's back to the bus station for one last (predictable) twist...<br /><br />Written, produced & directed by Daniel Boyd Chillers is one of the worst horror anthologies I've ever seen & I usually really like this sub-genre. The script by Boyd lacks what is needed for films such as Chillers to work, you can see the final twist coming a mile off & each story is really lame. The first one is totally pointless & didn't seem to have an ending & the best thing about these anthologies are the short snappy stories that are rounded off with a neat twist. The second story is predictable &, again, just ends without any payoff. So it continues throughout Chillers that each story is deeply unsatisfying to watch & have no reward for doing so. The character's & dialogue are poorly written, the stories seem to have no original ideas of their own & as a whole the film totally sucks. At least each story doesn't last long & I liked the idea behind the linking segments.<br /><br />Director Boyd was obviously working with a very low budget & it shows. All I can say is if you want to watch a 15 odd minute short story set entirely within a swimming pool then Chillers is for you. The stories are neither clever, scary or have any sort of tension or build up to anything. Having said that it does have a few nice scenes & some surprising competence shines through on occasion. Violence & gore wise there isn't much happening in Chillers, a ripped out heart, a decapitated head & a bitten off hand is as gory as it gets.<br /><br />Technically Chillers is poor stuff that won't impress anyone. Basic cinematography, bad music, cheap special effects & below average production values. Chillers also features one of the worst closing theme songs ever, period. The acting is also of a very low standard.<br /><br />I am sure a lot of effort was put into Chillers as a low budget film & at least the filmmakers tried so I will give credit for that at least, but that still doesn't stop me from thinking it's crap. Similar anthology films like Tales From the Crypt (1972), Asylum (1972), The Vault of Horror (1973), Dr. Terror's House of Horrors (1965), Creepshow (1982) & Tales From the Darkside: The Movie (1990) are far superior to Chillers so watch one of those instead.\r\n1\t\"Although there is melodrama at the center or rather at the bottom of this film, the story is told beautifully and subtly and the acting is superb.<br /><br />Yaara, studying at Princeton, returns to her native Israel for the funeral of her oldest and dearest friend, Talia. Because Yaara practically lived with her friend's parents after the death of her own mother, she has lost her adoptive sister. And because Yaara, blind from birth, has been guided and guarded by Talia, her friend's suicide is as unbearable as it is inexplicable.<br /><br />Inevitably, the blind girl is the one who determines to solve the mystery of this death. Though without sight, she has insight. Though she cannot see, she is able to find what is out of sight than the \"\"normal\"\" people around her. The film thus becomes an absorbing mystery as Yaara scours for clues in memories of her relationship with Talia, in her adoptive family's house, in tapes, diaries, and people in Talia's past and present.<br /><br />Told from Yara's point of view, the film is also seen from her point of view, as she visualizes what she hears, believes, and imagines. The solution to the mystery is rather conventional, but the search is conducted with such subtle care and the answer rendered so beautifully and without fanfare, that the pat moment is easily forgiven. The truths emerge gradually yet inexorably, clarifying not only Talia's life, but also her relationship with Yaara. Tali Sharon, as Yaara, uses her mobile face and voice effectively, and is utterly believable as both the adult and teenage girl. We accept fully her ability by the film's end to find her place in the world more confidently.<br /><br />Noteworthy is the precision by which places and actions are repeated with small but significant variations that never become tedious, the dead-on acting by the minor characters, and the interesting decision to represent Talia only as a teenager. I will quibble with Yaara's final declaration as stands with Gadi, Talia's last boyfriend, at a cliff's edge, but that trip to the edge is so fascinating that the image will remain in sight longer than her words will be recalled.\"\r\n1\tI know Anime. I've been into it long before it became a national phenomenon; i loved Ranma before most people knew what Dragonball Z even was. And just so you know I'm not bragging about my, let me say this: out of all the animes I've seen, Castle in the Sky is by far one of the best. It's obvious people say Spirited Away is the best, but I really disagree. Most people only know that movie because it one an Acedmy Award; this isn't an exaggeration - I've shown Princess Mononoke and Castle in the Sky to people who'd only ever seen Spirited Away, and they agree that the latter two are the superior of the three. Personally, I'd never thought that anything could compare to Princess Mononoke, until I finally saw Castle in the Sky. I still think that the prior is the better of the two, but Castle in the Sky is easily on par with it; in many ways, Castle has major elements that Mononoke was missing. In either case, if you've only seen Spirited Away, and think that that is Miyazaki's best film, be prepared to have your earth shaken.\r\n1\t\"This was the third Muppet movie and the last one Jim Henson was around to take part in the making of before his premature death in 1990. The first three films starring the famous characters were all made and released into theatres before I was born. I originally saw the first and second installments in the original trilogy, \"\"The Muppet Movie\"\" and \"\"The Great Muppet Caper\"\", around the mid-nineties, as a kid, but didn't see this third one, \"\"The Muppets Take Manhattan\"\", until April 2007. This was shortly after I had seen its two predecessors and 1996's \"\"Muppet Treasure Island\"\" for the first time in many years. This third Muppet movie definitely didn't disappoint me the first time I saw it, and my second viewing nearly three years later may not have impressed me as much, but if not, it certainly didn't go too far downhill.<br /><br />The Muppets' stage musical, \"\"Manhattan Melodies\"\", turns out to be a big hit on their college campus. They are graduating from college, so they will soon be leaving, but decide they will all stay together and go to Manhattan to try and get their show on Broadway. After their arrival, they begin searching for a producer, but after many rejections, they finally decide to part and go find jobs. Most of them leave town, but Kermit stays, and is still determined to find the right producer and reunite the Muppet gang. He gets a job at a New York restaurant owned by a man named Pete. The frog quickly befriends Pete's daughter, Jenny, an aspiring fashion designer who currently works at her father's restaurant as a waitress. As Kermit continues his attempts to reach stardom, now with the help of Jenny, he doesn't know that Miss Piggy has secretly stayed in New York and is now spying on him. She begins to see Kermit and Jenny together, and to her it looks like they're getting close, which leads to jealousy! <br /><br />When I saw this movie for the second time, it looked disappointing at first. It seemed a little rushed, unfocused, and maybe even forgettable around the beginning. There are some funny bits during this part of the film, such as Animal chasing a woman through the audience on the college campus, but for a little while, the film seemed bland to me compared to its two predecessors. Fortunately, it wasn't long before that changed. The film is entertaining for the most part, with \"\"Saying Goodbye\"\", the poignant song the Muppets sing as they part, and a lot that happens after that. The two funniest parts MIGHT be Miss Piggy's tantrums after she sees Kermit and Jenny hugging, but there were definitely many other times when I laughed, such as poor Fozzie trying to hibernate with other bears. The Muppets still have their charm and comical antics, which obviously also helps carry the movie for the most part, as does the plot, a simple but intriguing one for all ages. There are some weaker moments, such as the Muppet babies sequence, and Juliana Donald's performance as Jenny is lacklustre, but neither of these problems are too significant, and are far from enough to ruin the entire experience.<br /><br />I would say \"\"The Muppet Movie\"\", the film that started the franchise in 1979, is the best of the original trilogy, and that seems to be the most popular opinion. This third film is probably the weakest of the three, but all of them are good. Unlike \"\"Muppets From Space\"\", the third of the theatrical films in the franchise made after Henson's sad passing, at least \"\"The Muppets Take Manhattan\"\" is still the Muppets! I won't go into details about what I think of the Muppets' 1999 film, released twenty years after their first one, since I've already explained in my review of it why I found it so disappointing, and even though it does have some appeal, I'm clearly not alone. However, every theatrical movie starring the lovable Muppets that was made during Henson's life is good entertainment for the whole family, even if the second and third installment each showed a slight decline in quality after the one that directly preceded it.\"\r\n0\tI'm guessing the writers have never read a book of any kind, much less a Dickens novel, and certainly not David Copperfield, and that they based their screenplay on another poorly written screenplay, possibly an adaptation of Copperfield, though just as likely anything else, from which they randomly discarded about a third of the pages and then shuffled the rest, along with some random pages from a screenplay that someone's eighth grade nephew had written for an English class, and for which he had received a failing grade. <br /><br />If the casting was a bad joke - e.g., Richards as Kramer playing Micawber - which it was, then the direction and acting were the poorly- delivered punch lines. Getting beyond Kramer as Micawber, if possible, Ham was such a complete ogre, hunch-back and all, that I was half expecting at some point to see him being pursued by an angry pitch-fork and torch wielding mob of villagers. Uriah was almost as much of a clown figure as Micawber. Mr. Murdstone evoked about as much terror as that Muppet vampire from Sesame street. The actor playing older David was, I believe, actually a woman. In any case, looking perpetually as if he wished he could find a mirror to see how pretty he looked, and fancied that he looked quite pretty indeed, he could scarcely convince us that he was writing with a quill pen. And while we're on that subject, in one of the many gross inaccuracies perpetrated by the half-wit producers of this embarrassment, in the unnecessary shots of David writing his story he appears to be somewhere between 18 and 21 years old, when he should be in his forties. Perhaps the greatest transgression, although it's difficult to choose, was the invented showdown between David and Murdstone as he courted a third wife in Switzerland, preceded of course by the invented death of Murdstone's second wife. While they were at it it is a wonder they didn't send Heep to the guillotine, and have him deliver Sidney Carton's famous last words. It couldn't have made things much worse really. It might have been far far better.<br /><br />There are literally thousands of small and large sins against literature throughout this miscarriage of art, and anyone who watches it runs the risk of severe and permanent damage to all aspects of their sensibility.\r\n1\t\"It's a strange feeling to sit alone in a theater occupied by parents and their rollicking kids. I felt like instead of a movie ticket, I should have been given a NAMBLA membership.<br /><br />Based upon Thomas Rockwell's respected Book, How To Eat Fried Worms starts like any children's story: moving to a new town. The new kid, fifth grader Billy Forrester was once popular, but has to start anew. Making friends is never easy, especially when the only prospect is Poindexter Adam. Or Erica, who at 4 1/2 feet, is a giant.<br /><br />Further complicating things is Joe the bully. His freckled face and sleeveless shirts are daunting. He antagonizes kids with the Death Ring: a Crackerjack ring that is rumored to kill you if you're punched with it. But not immediately. No, the death ring unleashes a poison that kills you in the eight grade.<br /><br />Joe and his axis of evil welcome Billy by smuggling a handful of slimy worms into his thermos. Once discovered, Billy plays it cool, swearing that he eats worms all the time. Then he throws them at Joe's face. Ewww! To win them over, Billy reluctantly bets that he can eat 10 worms. Fried, boiled, marinated in hot sauce, squashed and spread on a peanut butter sandwich. Each meal is dubbed an exotic name like the \"\"Radioactive Slime Delight,\"\" in which the kids finally live out their dream of microwaving a living organism.<br /><br />If you've ever met me, you'll know that I have an uncontrollably hearty laugh. I felt like a creep erupting at a toddler whining that his \"\"dilly dick\"\" hurts. But Fried Worms is wonderfully disgusting. Like a G-rated Farrelly brothers film, it is both vomitous and delightful.<br /><br />Writer/director Bob Dolman is also a savvy storyteller. To raise the stakes the worms must be consumed by 7 pm. In addition Billy holds a dark secret: he has an ultra-sensitive stomach.<br /><br />Dolman also has a keen sense of perspective. With such accuracy, he draws on children's insecurities and tendency to exaggerate mundane dilemmas.<br /><br />If you were to hyperbolize this movie the way kids do their quandaries, you will see that it is essentially about war. Freedom-fighter and freedom-hater use pubescent boys as pawns in proxy wars, only to learn a valuable lesson in unity. International leaders can learn a thing or two about global peacekeeping from Fried Worms.<br /><br />At the end of the film, I was comforted when two chaperoning mothers behind me, looked at each other with befuddlement and agreed, \"\"That was a great movie.\"\" Great, now I won't have to register myself in any lawful databases.\"\r\n1\tThis movie is definitely on the list of my top 10 favorites. The voices for the animals are wonderful. Sally Field and Michael J. Fox are both brilliant as the sassy feline and the young inexperienced pooch, but the real standout is Don Ameche as the old, faithful golden retriever. This movie is a great family movie because it can be appreciated and loved by children as well as adults. Humorous and suspenseful, and guaranteed to make every animal lover cry! (happy tears!)\r\n1\t\"Having enjoyed Joyce's complex novel so keenly I was prepared to be disappointed by Joseph Strick's and Fred Haines's screenplay, given the fabulous complexity of the original text. However, the film turned out to be very well done and a fine translation of the tone, naturalism, and levity of the book.<br /><br />It certainly helps to have read the original text before viewing the film. I imagine the latter would seem disjointed, with very odd episodes apparently randomly stitched together, without a prior reading of the text to help grasp the plot.<br /><br />It's amazing to see how \"\"filthy\"\" the film is, given that it was shot in Dublin in 1967. The Irish film censors only, finally, unbanned it for viewing by general audiences in Ireland as late as 2000 (it was shown to restricted audiences in a private cinema club, the Irish Film Theatre, in the late 1970s). Joyce's eroticism is not simply naturalistic and raunchy, it offers many wildly \"\"perverse\"\" episodes. Never mind that so many of these fetishes were unacceptable when the book was published in 1922 - they were still utterly taboo when the film was made in 1967.<br /><br />It is astonishing and heartening to watch the cream of the Irish acting profession of the 1960s, respected players all, daring to utter and enact Joyce's hugely transgressive text with such gusto.<br /><br />Bravo!\"\r\n0\tPretty bad movie offers nothing new. The usual creaks and moans attempt to make-up for a muddled, but thin story. Acting is barely above pathetic. Why Liam Neeson signed on for this is anyone's guess. Owen Wilson truly turns in one of the worst performances in recent horror-movie history. Catherine Zeta Jones is fun to look at and not much else although Lili Tayor did an above-average job. The special effects were fairly memorable and the house itself was breathtaking and hauntingly gorgeous. However they can't makeup for the poor acting and the storyline which appears to have been thrown together at the last minute. Don't bother.\r\n0\t\"A drama at its very core, \"\"Anna\"\" displays that genuine truth that all actors age, and sometimes, fade away. Anna is a character that believes America is her safety net, her home, and it can do her no wrong  but she refuses to belittle herself to do work she doesn't believe in. She is hard-nosed, optimistic, stubborn, and arrogant when it comes to her life, yet not afraid to let others in, yet drop them at a moments notice. Anna flip-flops between personalities, which makes this film ideal of an aging star, but not idea of the viewing audience. \"\"Anna\"\" has been praised for its star Sally Kirkland, and her ability to get \"\"grungy\"\" for the role, but a month into 2008, \"\"Anna\"\" does not remain a staple of film culture. It is dated, dull, and formulaically chaotic.<br /><br />Director Yurek Bogayevicz has a message hidden within \"\"Anna\"\" about the falsehoods of Czechoslovakia, both politically and socially, but Kirkland refuses to let them upstage her. Bogayevicz is not afraid to play with the camera, to use wooden frames to allow Kirkland to stand out, and he is not afraid to lessen the surrounding characters so that when you walk away from the film, it is Kirkland you remember. If it isn't obvious, this film didn't sit well with me. From the opening of the first act and deep within the second, \"\"Anna\"\" felt like a high school theater production. The characters were non-existent, there was no enlightening pre-story, and there was no definition of time or place. There was Sally Kirkland, stubbornly saying that she is better than the other actresses vying for the same lifestyle that she wants. Randomly she encounters a friend, a young girl that has also traveled a long distance to get to America for the glitz and glamour, and two of them (within the span of 20 minutes) build a friendship that could break all walls. It is emotionally boring and unbelievable. Again, randomly, we meet Anna's boyfriend Daniel (played by the weak Robert Fields), who brings nothing to the table in terms of definition or character  only to boost the attention onto Kirkland's Anna. Through the course of nearly two hours, we watch as more random acts coupled with unnamed characters intertwine together to feebly create a story that is held together by loose threads  and SALLY KIRKLAND. Arg, it pains me to continue to say this but \"\"Anna\"\" could have been a fantastic film had Bogayevicz presented equal time between Anna, Daniel, and Krystina, but instead we are forced into a one-sided game where emotional scenes speak louder than plot.<br /><br />Is this where Charlize Theron found inspiration for her beauty-less role in \"\"Monster\"\", or Halle Berry in \"\"Monster's Ball\"\"? Was Sally Kirkland one of the early actresses discover that by letting themselves go for a character Oscar will shine in their direction? Throughout this film I was disgusted by Kirkland's portrayal of Anna, and Bogayevicz's lack of excitement for anything else fluent. Bogayevicz gives us an Anna that doesn't work hard for her parts, doesn't care for others, and is generally mean spirited  yet we are to feel sympathy for her? Near the beginning of the film, she forces what she wants to do onto others, and gets upset when she doesn't get her way. Sure, aging actresses my have that appeal to them, but Kirkland creates a more childish character instead of a mature one. That is where \"\"Anna\"\" could have improved. If this was a mature Kirkland, I would have gobbled it up, but this stammering childish Anna was impossible to believe. While my favorite scene was near the end where Anna goes to watch one of her older films playing (included is absurd make-out characters) and the film burns, this scene is also one of my least favorite. Anna has made a phenomenal life for herself, creating films and building the dream, yet when anyone else wants to enter that spotlight, she gets jealous and outraged. This didn't make for a character I wanted to stand behind nor win Oscars. Coupled with the classic 80s background synthesizer, the outrageous over-the top wardrobe, and the displaced ending (where did that come from and what happened??)  \"\"Anna\"\" slipped far in the scope of amazing cinema. It was a show-piece, an opportunity for an aging star to yell at the world one more time. In this one it worked, but I don't think I will be fooled again.<br /><br />Overall, I cannot say that I was impressed with this film. \"\"Anna\"\" is not a film about an aging film star; it is about Sally Kirkland, and ONLY Sally Kirkland. Bogayevicz tries to do more with the story, but fails either because Kirkland will not allow him or he just realizes that there isn't enough to support a full story. There are one or two decent scenes in this film, but nothing that promotes this film as innovative or influential. Bogayevicz did not create a character that audiences would believe, tear up for, or dedicate a Sunday afternoon with  he created an annoyance. Kirkland wasn't Anna, she was an actress playing her a bit overdone and crusty on the sides. Perhaps I missed the scope of this film, but what makes films like this work is the cooperation of everyone involved. That wasn't the case here. In \"\"Anna\"\", Kirkland orders Daniel to act like a dog (apparently as a symbolic act) and yet during the entire emotional scene, I couldn't help but think that was what Kirkland was like to those on the set. She didn't make this into a film, she transformed it into her own production, and because of it \"\"Anna\"\" failed. I cannot suggest this to anyone  from one Czech to another  skip it! <br /><br />Grade: * ½ out of ***** (for that pesky theater scene that creeped me out)\"\r\n0\tWe've all seen this story a hundred times. You can see each plot turn coming a mile away. The relationship between the mother and daughter is way too sweet and understanding to pass for realistic. Janet Mcteer's performance is stock southern hot- ticket mother in vintage clothes. Should have been made for the Lifetime Channel.\r\n0\tHow can such good actors like Jean Rochefort and Carole Bouquet could have been involved in such a... a... well, such a thing ? I can't get it. It was awful, very baldy played (but some of the few leading roles), the jokes are dumb and absolutely not funny... I won't talk more about this movie, except for one little piece of advice : Do not go see it, it will be a waste of time and money.\r\n1\t... or was Honest Iago actually smirking at the end, as he died?<br /><br />Loved how the Bard's iambic pentameter just rolled of Fishburne's tongue, with excellent clarity and emotion.<br /><br />And how Branagh made Honest Iago seem to celebrate his own evilness...<br /><br />This is a wonderful film.<br /><br />I have often thought that Shakespeare is inherently not film-friendly: He uses words to create pictures in our minds, which creates a perennial battle with the camera, which only knows to show us what we need to think and feel. Every effort to film Shakespeare ought really to be celebrated. It is not an easy thing to do.\r\n0\tYesterday I saw the movie Flyboys and my girlfriend told me it was the worst movie she's ever seen... Since I thought it was pretty awful as well it got me thinking - which film was the worst film I had ever seen and this was the only film that came to mind.<br /><br />Unfortunately it was a couple of years since I've seen it but I remember the horribly miscast Dean Cain as cocky military man (pretty boy Cain doesn't do cocky very well). The strange deal with the CGI-helicopter when it would probably be cheaper to rent a chopper than to hire some CGI-guys to make it, but my guess is that they found the chopper as a free sample for some CGI program or the producer's son liked to play with his new computer. And how did it look?? Awful. And when the dragon charges through the corridors of the complex then reuse the same shots over and over - looks VERY cheap.<br /><br />Avoid this movie - it is truly awful...\r\n0\t\"This is the first of these \"\"8 Films To Die For\"\" collection that I've seen and it's certainly not made me want to see any of the rest...although I've heard at least a couple of them are decent. I don't know, this wasn't terrible but it didn't really do much for me. Your basic dysfunctional cannibal family in suburbia kind of thing, mom & dad died, the family sold the farm & moved to San Francisco (?) where they continued to bring home stray food sources whenever possible. The best part of this was the creepy Goth sister, who of course invites a friend over from school that never leaves. Anyway, of course we have a butcher shop in the basement and so on and so on. This family is sort of like the white-bread version of the Sawyer Clan, they're nasty & they do bad things but they ain't go no soul. I see a lot of reviews from people that liked this, and I guess I don't know what I missed, but I found it to be very mediocre & I wouldn't recommend it to anyone, really. 4 out of 10.\"\r\n0\t\"!!!! POSSIBLE MILD SPOILER !!!!!<br /><br />As I watched the first half of GUILTY AS SIN I couldn`t believe it was made in 1993 because it played like a JAGGED EDGE / Joe Eszterhas clone from the mid 80s . It starts with a murder and it`s left for the audience to muse \"\" Is he guilty or innocent and will he go to bed with his attorney ? \"\" , but halfway through the film shows its early 90s credentials by turning into a \"\" Lawyer gets manipulated and stalked by her client \"\" type film which ends in a ridiculous manner , and GUILTY AS SIN has an even more ridiculous ending in this respect .<br /><br />This is a very poor thriller but the most unforgivable thing about it is that it was directed by Sidney Lumet the same man who brought us the all time classic court room drama 12 ANGRY MEN\"\r\n1\t\"Before Sunrise has many remarkable things going on, almost too many to fit into one review like this, but it's suffice to say that it's one of the most observant character studies of the nineties, maybe even in all of contemporary cinema, to be observant not about love, per-say, so much as it's about a human connection. How does one fall in love at first sight? No one does, at least that's deep down the consensus that Linklater wants to show with his film. And *yet* there is the possibility of as intense a connection, of a bond that can form in those that are young and with many ideas that can be expressed articulately and with a breadth of cynicism and is somehow very tender and true at the same time. Linklater here gives us the story of Celine and Jessie, a French girl and an American boy who get off the same train heading to Vienna, and on the way there start to talking about things, at first arbitrary, then personal (Jessie seeing death for the first time in his great grandfather). Jessie persuades Celine to go along with him on a night out on the 'town', in Vienna, until his plane the next morning.<br /><br />Before Sunrise gives Jessie and Celine, in the midst of the gorgeous Vienna scenery and locales to go on and on about subjects that have a lot of importance, and in a sense is about the act of having conversations, of what it's like to watch people having one leading into another and another. Here it's often about relationships and commitments, as Jessie and Celine tell stories sometimes somewhat inconsequential, or seemingly so, and another that may tell a lot about their essential qualities. We hear confessions of desires for other loves, or what weren't really loves, of being part of a family or part of an upbringing that may or may not inform how you'll love your life, of what it means to believe or not believe in some religious form, or just to have some connection to any faith and the soul (I loved the bit about the quakers in the church), and sometimes laced with cynicism or skepticism. Jessie may be more responsible for that last part, but what's fascinating about the film is that it's never exactly cynical itself, just commenting upon cynicism that lays in the concerns of men and women at that age of their lives.<br /><br />Meanwhile, it's always great to see Ethan Hawke and Julie Delpy in these roles, where they're not incessantly annoying in that 90s Generation-X mode, but are the kinds of people where if not in the central conceit of the film, which isn't a bad one at all but a necessary one, one might think to find walking along the streets of a city somewhere. The conceit is that of an old romantic picture ala Brief Encounter, only here intimacy is expressed in the central characters either between each other, where sweet asides are actually acceptable (\"\"I have to tell you a secret\"\", Jessie says, and then leans in for a kiss, ho-ho), or in the little moments that pop up with other people along the way. I loved the scene with the poet, where it's very cinematic a thing to suddenly find a random romantic bit player in the midst of a romantic picture with such beautiful words at his disposal, or with the palm reader and how the reactions from Jessie and Celine are that we might share, but really are seeing them do it first-hand. All the while Hawke and Delpy embody the roles interestingly- we can see how neuroses are being formed already for their adult lives- as it may lead off into the future...<br /><br />Featuring splendid cinematography and a script with an ear for natural wit and a true sense of what it means to have a moment of happiness, however self-contained, as it may lead into something more. Who's to say you can't suddenly be attached to someone, if only for less than 24 hours, and be that much more attached than a married couple? This is perhaps Linklater's thesis, but there's more to it than just that. It's a very dense film, and one that will have me calling back to it repeatedly. One scene especially, which is both cheesy and brilliant is when the two of them are talking 'on the phone' in front of each other mimicking their expositions might go to the other's friend. A+\"\r\n0\t\"I caught this movie at a small screening held by members of my college's gaming club. We were forewarned that this would be the \"\"reefer madness\"\" of gaming, and this movie more than delivered.<br /><br />Tom Hanks plays Robbie, a young man re-starting his college career after \"\"resting\"\" for a semester. What we, the viewer, find out as the movie progresses, is that Robbie was hopelessly addicted to a role-playing game called \"\"Mazes and Monsters,\"\" a game that he gets re-acquainted with after a gaming group recruit him for a campaign.<br /><br />This movie is laughable on many, many levels. One scene features the group \"\"gaming by candlelight,\"\" which is probably the best way I can describe it. While I'm sure that this was meant to be \"\"cultish\"\" in some way, as most gamers know, it's horribly inaccurate. Most role-play sessions are done in well-lit rooms, usually over some chee-tohs and a can of soda.<br /><br />The acting, while not Oscar-caliber, isn't gut-wrenchingly awful either. This is one of Tom Hanks's first roles, and Bosom Buddies and Bachelor Party were still a year or two over the horizon. The supporting cast, while not very memorable, still hand forth decent performances.<br /><br />Mainly the badness lies in the fact that it was a made-for-TV movie that shows the \"\"dangers of gaming\"\" Worth a view if you and your friends are planning a bad movie night.\"\r\n1\tMan's Castle is a wonderful example of a Pre-Code film. It involves realistic events with truly enjoyable and imperfect characters. Spencer Tracy plays Bill, a free soul without a dime in his pocket. He makes a living doing odd jobs and traveling to a new city when he gets bored of his surroundings. One night, he meets Trina, a beauty by any standards who is cold and alone. She has refused to resort to prostitution so she has not eaten for several days, but the two take very well to each other and form a relationship. His free spirit tempts him to leave her, so life is rocky, but there is a true spark between the two, even if they live in a shack by the river.<br /><br />Tracy is one of the great actors of the silver screen. His characters are amazing and relatable. We can see his thoughts on his face, making him easy to identify with, even if we believe he is behaving badly. Young is great in pre-code films. Her character is very sweet but far from perfect, making her all the more likable.<br /><br />Pre-code elements include skinny dipping, pregnancy before marriage, and crime.\r\n0\t\"\"\"Valentine\"\" is another horror movie to add to the stalk and slash movie list (think \"\"Halloween\"\", \"\"Friday the 13th\"\", \"\"Scream\"\", and \"\"I Know What You Did Last Summer\"\"). It certainly isn't as good as those movies that I have listed about, but it's better than most of the ripoffs that came out after the first \"\"Friday the 13th\"\" film. One of those films was the 1981 Canadian made \"\"My Bloody Valentine\"\", which I hated alot. \"\"Valentine\"\" is a better film than that one, but it's not saying much. The plot: a nerdy young boy is teased and pranked by a couple of his classmates at the beginning of the film. Then the film moves years later when those classmates are all grown up, then they're picked off one-by-one. The killer is presumed to be the young boy now all grown up looking for revenge. But is it him? Or could it be somebody else? \"\"Valentine\"\" has an attractive cast which includes Denise Richards, David Boreanaz, Marley Shelton, Jessica Capshaw, and Katherine Heigl. They do what they can with the material they've got, but a lackluster script doesn't really do them any justice. There are some scary moments throughout, however. <br /><br />** (out of four)\"\r\n0\tI just watched The Incredible Melting Man for the second time, and it was even more boring than when I first watched it. I don't understand why it has become such a 'cult classic' when it is so tediously dull. The opening scene looks promising, when the fat nurse drops the canister of blood and runs for her dear life. After this all that really happens is the melting man stalks around some woods and houses, whilst having flashbacks of his life as an astronaut. The makeup is quite good, and his melting gooey face looks fairly realistic. There is a cool scene where he throws a mans head in a river, and it floats until it reaches a waterfall where it falls on rocks and bursts open. There's not much to wet yourself over though, most scenes are shot in darkness and you can't really see what is happening. There isn't much gore, at least in the Vipco DVD I watched. <br /><br />No, The Incredible Melting Man is not that great at all. I'll give it marks for its cheese factor but that's about it. If you want a TRUE sci-fi/horror cult classic, watch The Deadly Spawn instead!\r\n1\t\"Keep in mind I'm a fan of the genre but have only recently seen this film for the first time. How I've overlooked it all this time is a wonder to me. To me this is a better film then the much lauded \"\"High Noon\"\". It's a great western with excellent acting and a great story. The DVD is in beautifull black and white with outstanding cinematography. If you like westerns or James Stewart this film is not to be missed.\"\r\n0\tWhat a terrible film.<br /><br />It starts well, with the title sequence, but that's about as good as it gets.<br /><br />The movie is something about rats turning into monsters and going on a killing spree. The acting isn't so much poor, but the script is pointless and the film isn't even scary despite the atmospheric music.<br /><br />It really is amazing that some group cobbled together this bag of rubbish and thought it would make a good film.<br /><br />It isn't a good film. It's trash, and I urge you not to waste a minute of your life on it! One out of ten.\r\n0\t\"Perhaps I'm out of date or just don't know what Electra is like in current publications... But the Electra that I read was far more manipulative and always seems to have a plan. She usually used others to do her dirty work and more often than not some sort of double cross was involved. Just when you think you have it all figured out she pull the wool over your eyes and gets her way.<br /><br />This movie was fairly weak on the dialog, the acting wasn't particularly convincing, and the action was spotty. I was really looking for something more along the lines of Frank Miller's book \"\"Electra Assassin.\"\" Which is much darker than anything in this movie.<br /><br />Special effect where cool, action was interesting at times, but more often than not the story and plot was slow or illogical. Tha Hand was not menacing enough, and Electra was not..... bitchy enough. She's the girl you love to hate... but in this story, I just didn't care either way.\"\r\n1\tI really enjoyed this movie. The acting by the adult actors was great, although I did find the main kid a little stiff. But he carried himself very well for being a new talent. The humor is very sublime and not in your face like most Hollywood comedy junk. I.e. The Nutty Professor. If you have a short attention span and are used to the typical Hollywood stuff you probably wouldn't like this as it is a bit slower paced. I picked it up on Blu-ray and I have to say the image quality is top notch. Probably one of the better looking Blu-rays I've seen so far. The extras were cool too. They deleted quite a bit, but that's probably a good thing as most of the deleted scenes didn't really add anything.\r\n0\t\"This movie deserves more than a 1. But I'm giving it a one because so many fricken fan boys have given it a 10 resulting in it getting a rating that'll take it into the top 100 list. Seriously it's not that great its not that bad. Its a stupid cult classic with so many fricken fan boys it's ridiculous. These are the types who probably still laugh at Chuck Norris jokes and still say \"\"I'm rick james b!tch\"\" No matter how old or annoying it gets. I dread having to hear \"\"I'm tired of MFn snakes on this MFn plane\"\" months from now from idiots trying to be funny. Its crappy plot crap acting etc. Its Okay to love a bad movie, but you still gotta admit its a bad movie.<br /><br />Wait for the Marine starring John Cena if you wanna see a real movie\"\r\n1\t\"Both Robert Duvall and Glenn Close played their roles with such believability, I simply cried. Glenn Close's role as Ruth, showed her wanting to deal with the situation, but she was under the domination of her husband. \"\"Let him think about what he did,\"\" Robert Duvall's character, Joe, said staunchly. The story depicted a rural family dealing with an accidental death of a son by his brother, called \"\"The Stone Boy,\"\" meaning he was so distraught and overwhelmed by what he did, he became emotionally paralyzed. Then towards the end when Jason Presson's character, Arnold, let it all out to a stranger, I was so broken hearted for him, that I actually thought of some of the terrible things that I did in my life. I personalized and identified with his character. Frederick Forrest's and Gail Youngs' roles, did NOT add not much to the film. I thought of Frederick Forrest, who played Ruth's antagonistic, womanizing brother, Andy, as a jerk who did nothing to try to help the situation. His wife, Lou, played by Gail Youngs, acted like a crazy-lady smacking Arnold around out of frustration with her own problems without pity and blaming him for her troubles. I could NOT really feel sorry for these two. Though Lou tried to keep her marriage together, she was unsuccessful. Both did NOT deal with their problems effectively. They really did NOTHING for the film and were totally ridiculous. Wilfred Brimley's minor role as the grandfather was, touching for he was the only character that showed Arnold any attention. I felt his role should have been elaborated. The players were just doing what they felt was adequate and sufficient. However, I really liked the ending so much, I actually smiled and cried tears of joy. I felt good. The Hillermans were a family again. I actually wanted to be a part of this family. They were so realistic.\"\r\n0\tIberia is nice to see on TV. But why see this in silver screen? Lot of dance and music. If you like classical music or modern dance this could be your date movie. But otherwise one and half hour is just too long time. If you like to see skillful dancing in silver screen it's better to see Bollywood movie. They know how to combine breath taking dancing to long movie. Director Carlos Saura knows how to shoot dancing from old experience. And time to time it's look really good. but when the movie is one and hour it should be at least most of time interesting. There are many kind of art not everything is bigger then life and this film is not too big.\r\n1\tOK. Who brought the cheese. I love it. During it's run it became a phenomenon. The Anorexic Twins became popular.Bob Saget started making a paycheck (Instead of his REALLY funny stand-up). And people knew who Dave Coulier was. This is when life was good and simple. This is one of the great American classics. It was humorous and always brought home a good lesson. And this is where I differ from the norm: I liked the last few seasons. Like Home Improvement, when children get older there are a lot more you can do with the script. This is why I dare say...It could have gone much later than it did. But anyway. I gave it an 8/10 because of its wholesome, funny story lines, and because of Bob Saget!\r\n0\t\"Okay first of all, I didn't sit down to watch the premier of a \"\"Star Trek\"\" Series to see a cowboy flying around in space. this is how a normal Enterprise episode works<br /><br />1 Archer finds a nebula or something aloung the lines of that and wants to take a closer look but it might destroy the ship.<br /><br />2 he sends a shuttle into the nebula and and the shuttle get damaged...<br /><br />in all of the episodes I have seen, all of the problems are happening because of Archer's stupid mistakes. Oh and did you see the preview of one episode showing Archer and T'pol kissing?!?!?!?!?!?!? I was planning to watch that episode but after that I totally gave up on Enterprise and turned to TV right off. Come on!!!! This is star trek!!!!!!!!!!!!!!!!!!!!<br /><br />Also what was with the banana slug?? In one episode, Hoshi had a banana slug but had to leave it behind for some stupid reason. Okay fine, little dumb to bring you pet slug in space but whatever. Okay that was what I thought until they left it on a desert planet!!!!! A BANANA SLUG CANNOT LEAVE IN A DESERT!!!!!!!!!!!! How dumb are these writers<br /><br />Any ways, just saying if Enterprise is on DON'T WATCH IT!!!!!\"\r\n1\tI first saw this in the movie theater when it came out, and the crowd was really into the movie which made the experience all the more fun. This is a great cast of characters, many big names in it, a few of which were not as recognized then as they are now. I think it's a great idea if you follow any of these actors, or have loved them in other movies, to add it to your watched list. Some of the scenes actually remind me of the type of well-done comedy as in The Birdcage or even The Clue, kind of odd spontaneous-appearing comedy, with some really professional delivery from these beloved actors. The movie did a great job at giving you some insight, perhaps even very realistic, into the culture of a daytime soap.\r\n0\tDespite pretty bad reviews, I just had to give this film a go  it does, after all, star HK super-babe Shu Qi plus 6 other oriental lovelies as a team of all-action cat-burglars. Surely that's worth checking out? Well, as babe-fests go, Martial Angels is hard to beat. The eye candy is top quality. Shu Qi looks as fantastic as always, and of the rest of the girls, Rosemary Vandebrouck and Amanda Strang caught my roving eye in particular.<br /><br />Unfortunately, if one is to judge this movie by any other possible merits, it is an absolute stinker! The story is weak, the action shoddy and the special effects downright pathetic. Director Clarence Fok and Producer Wong Jing have given us a photogenic cast and little else.<br /><br />If Shu Qi is the only reason you're contemplating seeing this one, you would be better off watching Sex and Zen 2 again!\r\n1\t\"This movie has taken a lot of stick. It was slated by critics when it came out and was blamed for wrecking Nicolas Cage's career. The thing I don't think people get is that it's not meant to be an epic, Oscar contender of a movie, it's just some brilliant \"\"Bruck-buster\"\" action at its best. Fast cars, quick editing and a great soundtrack - it does exactly what it says on the tin. Also, for anyone who likes cars its a pure treat. It has everything: Ferraris, Mercs, a Hummer and lets not forget Eleanor! I think you'd be hard pushed to find a better action movie, and personally, a better movie at all!! Then again maybe that's just me!\"\r\n1\t\"I loved this series when it was on Kids WB, I didn't believe that there was a Batman spin off seeing as the original show ended in 1995 and this show came in 1997. First of all I loved the idea of Robin leaving Batman to solve crime on his own. It was an interesting perspective to their relationship. I also liked the addition of Tim Drake in the series, and once again like it's predecessor this show had great story lines, great animation (better then the original), fantastic voice work and of course brilliant writing. The only thing that I didn't like was that was when it was in the US it would often run episodes in a 15 minute storyline. I just wish some of the episodes could be longer. My favorite episode of any Batman cartoons comes in this series, and it's called \"\"Over the Edge\"\", in my opinion as good if not better then \"\"Heart of Ice\"\" and \"\"Robin's reckoning.\"\" Overall a nice follow up, along with Superman this show made my childhood very happy.\"\r\n1\tI am decidedly not in the target audience for this film. I am a man nearly 50 who has only recently stumbled across the world of independent film. This happened quite by accident, with the discovery of a movie called Clerks late one night on television. The first two things I noticed about that film were that it was 1) technically amateurish and 2) brilliantly written. When I read an interview with the director in the local paper and he said that one of his influences was Clerks, I started to get interesting. When he said his main influence was The Station Agent, a movie I'd seen on DVD a week prior, I decided I had to go and check it out. The result could be described along the same lines as Clerks, although the two films are nothing alike content wise. Both films suffer from technical gaffes that are overcome through amazing writing. Whereas Clerks is a day in the life of a man who has nothing in his life at all and is afraid to ask tough questions about himself and his situation, Less Like Me is about a man who seemingly forces himself to be constantly busy, he's always running one way or another, filling his life with little things so that he will never have to deal with the big ones. The themes and ideas of this film are strong and poignant. I can tell from watching it that not much has changed since I was growing up, young men still have the same problems they always have. The writer dresses up these problems and themes in the modern vernacular, crafts wonderfully honest characters, and has them do completely believable things. As far as indie cinema goes, this may not be perfect from a technical standpoint, but from an artistic one, it is very close.\r\n0\t\"It really is that bad of a movie. My buddy rented it because he, well, is an idiot. But then again, I must be an idiot too because I watched the whole damn thing! The actors were on par with high school drama geeks who think that are going places. The only place they will be going is back to waiting tables at Luby's. All I could think of while I was watching this \"\"gem\"\" was how it actually got made. I mean, some \"\"screenwriter\"\" actually thought that this premise was fresh, original and lucrative. Then some moron with money believed in the script so much that he decided to fork some cash over with the naive misconception that he was going to make a return on it. Actors were cast, locations were scouted, make-up artists were hired, computer animators fresh out of Al Collins graphic Design School were brought in and this turd started to take form.<br /><br />There obviously were a ton of things that I hated about this move but the one thing the drove me the craziest was the overuse of music. Every single minute of this flick was scored. There was not a single break in music. And at times it was mixed higher than the dialogue, not that it made you miss some vital plot point or anything.<br /><br />After it was over, we decided to watch Mystic River. It was like driving a 1980 VW Diesel Rabbit then switching to a BMW 740il. You couldn't get two more opposite movies in terms of quality.\"\r\n1\tSure, this movie is sappy and sweet and full of clichés, but it's entertaining, and that's what I watch movies for. To be entertained. Natasha Henstridge is stunning, even with the short hair. Her smile is radiant and her beauty can't be disguised. As for Michael Vartan, I'm sure the women love him. The two of them seemed to really like eacb other in this film. I don't understand the comments that there was no chemistry between them. I guess we see what we want to see.<br /><br />Olivia d'Abo and Michael Rigoli were fun to watch, even if d'Abo's British accent did creep into her supposed Bronx speech. To tell you the truth I hadn't really noticed it until I read these comments, but I went back to the DVD and now her dialogue sounds more British than American to me, but she was ideal for her role with that one exception. <br /><br />It's a story of two nice people who are getting married to significant others, but who find their soul mates in one another. It may be an unlikely story, but who says movies are all supposed to play like documentaries? It is no more unrealistic than any of the dramas that are screened every hour on the tube. That's why we watch them, to escape from the humdrum of daily living for a short time and enter the world of the characters on the screen. I thought these actors did a good job of it, but hey, I'm a sentimental guy who tears up easily. Don't get me wrong though, it has to be a sentimental scene, and this movie had plenty of those.<br /><br />I give it 9/10 only because I'm saving my 10/10 for that yet unseen super magnificent movie that I know will come along some day. If you see it advertised as coming up on the Movie Channel or Lifetime Movies, or whatever, make a note to watch it. I think you'll like it.\r\n0\t\"I disliked this movie for numerous reasons. Within the first ten minutes of the film, I grew extremely disappointed and came to the conclusion that if this movie was going to salvage itself, for me at least, that it was going to have to pull itself out of the enormous hole it had dug. Unfortunately, that did not occur. The two draws of the movie for me were to see Jane Fonda and Felicity Huffman. I don't know enough about Lindsey Lohan's work to have been interested in what she would bring to the film. Afterward, I just felt disappointed in and for all three of them even though there were \"\"moments\"\" in each of their performances. I imagine that for each of them to find their \"\"moments\"\" was a very difficult task given the fact that there was an amazing lack of character development and uninspired dialog. Although the plot is an interesting one, the movie on the whole is so poorly written, directed and edited that anybody's performance as an actor would suffer and be tainted by it. The disrespectful way in which it dealt with sexual abuse and the trite and insulting viewpoint of small-town America, I think, were the two main reasons why this film failed in hitting it's mark. As one reviewer has noted and I would agree, the movie is almost impossible to market given it's finished form. I suspect that, or at least hope that (for the actor's sakes anyway) there are some real gems on the cutting room floor. Sad for us but if that's true then the actors can take solace in that and feel somewhat good about lending their talents and time to such a flop. Oh yeah and another thing...I wished for just once I could go see an American movie which included the sadly disappearing but wonderfully bucolic settings such as the one in this film where the main characters weren't absentmindedly and/or disrespectfully littering the country side with pop cans, smashed CDs and, other such trash!\"\r\n1\t\"I just read the plot summary and it is the worst one I have ever read. It does not do justice to this incredible movie. For an example of a good summary, read the listing at \"\"Turner Classic Movies\"\". Anyway, this was one of my favorite movies as a young child. My sister and I couldn't wait until every April when we could see it on T.V. It is one of the best horse movies of it's time. It is one of those great classics that the whole family can watch. The romance is clean and endearing. The story line is interesting and the songs are great. They don't make movies like this anymore. Good acting and not over the top. Pat Boone and Shirley Jones are at their best, along with many other great character actors.\"\r\n1\tThis is one of the best movies I've ever seen. It has very good acting by Hanks, Newman, and everyone else. Definitely Jude Law's best performance. The cinematography is excellent, the editing is about as good, and includes a great original score that really fits in with the mood of the movie. The production design is also a factor in what makes this movie special. To me, it takes a lot to beat Godfather, but the fantastic cinematography displayed wins this contest. Definitely a Best Picture nominee in my book.\r\n0\t\"Extremely disappointing film based on the James Michener novel.<br /><br />What was even worse was Marlon Brando's performance. His southern drawl was ridiculous. I found myself laughing when he spoke as he sounded like an elderly southern lady coming home to roost. Brando, so great in previous films, was reduced here to a laughing stock. Tyrone Power, in \"\"Witness for the Prosecution,\"\" should have been nominated for best actor instead of Brando here.<br /><br />The film, dealing with racism, dealt with the U.S. government's attempt to avoid marriages between U.S. soldiers and Japanese women.<br /><br />Brando was stone-faced throughout the movie. His moving from anti-these relationships to a pro one occurs when he finds love with an Asian woman. His emotions and talk made it difficult to see how he could espouse such new views.<br /><br />Only the lord knows why Red Buttons and Miyoshi Umeki received supporting Oscars for their performances. Nothing about either performance was equally impressive. Umeki's appearance on the screen was short and without much of anything being depicted on her part. A better performance in this film was done by Miiko Taka, who did nicely as Brando's love interest. She showed great emotion as the anti-American who found love with the Brando character. Her face was etched with the unhappiness she had for losing her father and brother in World War 11. She realized that her dancing was not her way out of this existence that she was living.<br /><br />Martha Scott went from the Hebrew mother Yochobel in \"\"The Ten Commandments\"\" to the bigoted mother of Brando's love interest at first. Her performance together with the one of Ricardo Montalban was wasted. Patricia Owens, as Brando's first love, showed depth and conviction in her performance.\"\r\n1\t\"Antonioni was aiming for another hip masterpiece, this time on the other side of the Atlantic than \"\"Blow up\"\". It wasn´t the success with critics and youth like the former though. Why? Maybe because it was a European´s view of America filled with clichés that didn´t work then and that have not aged well. (The revolutionary students at the beginning is embarrassing.)<br /><br />Maybe when it was released big blockbuster movies and those aimed specifically at the youth market seemed dated. If it had been released a year before maybe hippes in deserts would have seemed fresh... It´s a very interesting film tho, very beautifully shot with some brilliant and Antonionian scenes in between, like the love-making in the desert, the stillness of the desert mansion and the explosive ending... That the leads were two amateurs didn´t help. They were beautiful but inexperienced. Mark Freshette is slightly better than Daria Halprin. It would have been so much better with proper actors! Maybe Michelle Phillips or a young Jessica Lange... The dialog is actually quite funny and poignant at times, tho you wouldn´t know the way the lines are delivered...<br /><br />A very intersting document of the late sixties definitely worth a look for the photography and the soundtrack....\"\r\n0\t\"\"\"Ambushed\"\" is no ordinary action flick. It's much to bad to be ordinary. One man walks toward another with a machine gun blazing. The other man fires one round and fells the man with the greater fire power without so much as a nick from the hail of lead raining down on him. Guess which one is the good guy. Duh. Such is \"\"Ambushed\"\" through and through. Not a good action flick, not a good drama, not a good movie, \"\"Ambushed\"\" fails on all levels with it's cast of B-movie veterans mechanically going through the motions almost as though they know they're making a real loser. Not recommended for anyone.<br /><br />\"\r\n0\tWhat a bad, bad film!!! I can't believe all the hype that has been lavished on this pretentious, amateurish excuse for a real movie!! I left the theater before the end, stunned by how bad the direction and camera-work of that movie were!! And to read adoring paeans that claim there is truth and reality in this film when all it is in reality is a brazen attempt at pulling the wool over the eyes of reviewers and festivals by being cheap and tawdry.<br /><br />At least this film showed me once and for all that the Sundance Festival has become a complete joke and that being shown here is more a label of bad film-making than anything else.<br /><br />Avoid at all costs. You'll want your time back! I know I did.\r\n1\t\"This movie started slowly, then gained momentum towards the middle. However, the fact that the movie ran over two nights broke that momentum at its peak. The second part really got interesting, but then gave way to a simply pathetic ending. Playing football in the yard? Really, could it get any more sappy and maudlin? Now I hear plans for a similar movie based on the '70s. I won't make any great efforts to tune into that one if it's anything like \"\"The '60s.\"\"\"\r\n1\t\"I've bought, \"\" The Feast of All Saints,\"\" and it's not truly a horrible movie, but a lot of things could have been better. It had a lot of historical value, played out by very talented actress/actors, and it's not an everyday occurrence that actors can play out such a role and have it be somewhat believable. There were some parts that were a little mediocre and confusing, but I wouldn't say that the entire movie was horrible. Once you think about that, capturing 1800's New Orleans, and making something out of it, it pretty hard, and much harder to get actors who can strongly signify those parts. But the only big problem I had with the movie was that most of the actors who did play the free people of color, were mostly light skinned Africans, not very universal in casting others who weren't light skinned; one of the old Creole stereotypes that still exists. Whomever did the casting could have picked a wider variety when it came to hue, despite many Creoles are color conscious.Rather picking actors that looked near white in a sense, could have been more thought out.The actors did a great job, the script could have better written, and overall I found the performances were very believable.\"\r\n0\t\"Just a stilted rip-off of the infinitely better \"\"Murder, She Wrote\"\", it is absolutely amazing that this poorly-written garbage lasted for a full eight years. I'm sure most of the people who watched this unentertaining crap were in their sixties and seventies and just tuned in because they had nothing better to do, or simply remembered its star from the old Dick Van Dyke Show. Van Dyke, who only had a decent career in the 1960s, never was much of an actor at all (by his own admission) and he was already far too old to play a doctor when the series began in 1993. He looks absolutely ancient as a result of years of chain smoking and heavy drinking. His talentless real life son Barry, a wooden actor who has rarely been in anything that didn't involve his father, plays his son in the series.\"\r\n0\tIf you made a genre flick in the late 80s, you basically had a 50/50 chance it would either be set underwater or in a prison (sadly, we never got an underwater prison flick). Framed for murder by mafia boss Moretti (Anthony Franciosa), Derek Keillor (Dennis Cole) ends up on death row, right alongside the mob boss' brother Frankie (Frank Sarcinello Jr.). But this is the least of Derek's problems as rogue government agent (and mob stoolie) Col. Burgess (John Saxon, who also directs) is using the prison as a testing ground for a new supervirus. This is the only flick Saxon directed during his storied career. For a guy who has worked with tons of directors, it appears the only ones he picked up any tips from were the cheap-o Italian ones. Sure, it is low budget, but that can't excuse the stilted staging, shooting gaffes, or clumsy exposition in the first 15 minutes. To his credit, Saxon did make it slightly gory and he works in a hilarious nude scene (our lead falls asleep during a prison riot only to fantasize about a female scientist). Cole, who looks like a more rugged Jan-Michael Vincent, is decent as the stoic lead and Franciosa - sporting a really bad rug - gives it his all as the cliché mob boss. The end takes place at Marty McKee's favorite location, Bronson Canyon. Retromedia released this on DVD as ZOMBIE DEATH HOUSE.\r\n0\t\"This is not really a zombie film, if we're defining zombies as the dead walking around. Here the protagonist, Armand Louque (played by an unbelievably young Dean Jagger), gains control of a method to create zombies, though in fact, his 'method' is to mentally project his thoughts and control other living people's minds turning them into hypnotized slaves. This is an interesting concept for a movie, and was done much more effectively by Fritz Lang in his series of 'Dr. Mabuse' films, including 'Dr. Mabuse the Gambler' (1922) and 'The Testament of Dr. Mabuse' (1933). Here it is unfortunately subordinated to his quest to regain the love of his former fiancée, Claire Duvall (played by the Anne Heche look alike with a bad hairdo, Dorothy Stone) which is really the major theme.<br /><br />The movie has an intriguing beginning, as Louque is sent on a military archaeological expedition to Cambodia to end the cult of zombies that came from there. At some type of compound (where we get great 30s sets and clothes) he announces his engagement to Claire, and then barely five minutes later, she gives him back his ring declaring her love for his pal, Clifford Greyson (Robert Noland). It's unintentionally funny the way they talk to each other without making eye contact. This would have been a great movie for 'Mystery Science Theater 3000', if they hadn't already roasted it.<br /><br />It's never shown how Louque actually learns the 'zombification' secret, but he then uses it to kill his enemies, create a giant army of rifle carrying soldiers and body guards. We won't see such sheer force of will until John Agar in 'The Brain From Planet Arous' (1957).<br /><br />Finally Claire consents to marry him if he will let Greyson live and return to America. Louque agrees, but actually turns him into one of his hypnotized slaves. On their wedding night he realizes that Claire will only begin to love him if he gives up his 'powers.' To gain her love, he does so, causing the 'revolt' of the title, in which all his slaves awaken and attack his compound and kill him. Greyson embraces Claire, and we seem to be at the end of a parable: \"\"Whom the gods would destroy, they first make mad.\"\" <br /><br />So really then, it's not that bad of a film, despite the low IMDb rating it currently has. On repeated viewings (?) one can see the artistry in the well formed script! Dean Jagger had yet to develop into a good actor, and is almost unrecognizable in his youngness -- is that really his own hair? We remember him more for his bald, old man roles in 'White Christmas' (1954), 'X The Unknown' (1956) and 'King Creole' (1958). The story borrows a lot of its basic themes from the Halperin brothers better, earlier film 'White Zombie' (1932) in which hapless Robert Frazier (as Charles Beaumont) uses 'zombification' to win the love of Madge Bellamy (as Madeline Parker).<br /><br />If you want real zombie movies (of which there are hundreds!) I'd start with 'White Zombie' (1932), 'King of the Zombies' (1941), 'I Walked with a Zombie' (1943), 'Night of the Living Dead' (1968), 'The Last Man on Earth' (1964) and its two remakes. In the modern era of classy films, there are 'Horror Express' (1972), 'The Serpent and the Rainbow' (1988), '28 Days Later' (2002) and its sequel, as well as many, many, others too numerous to mention.<br /><br />This one is not really a zombie film. Judging this movie on its own terms, it's more of a semi-Gothic romance. As such it ranks a little below some of Universal's bottom billed B horror movies of the late 30s and early 40s. So I'll give it a 5.\"\r\n0\t\"Abysmal with a capital \"\"A\"\". This has got to be one of, if not THE, unfunniest show on TV right now. I'm about as anti-bush as it gets, but this show doesn't even get a chuckle out of me. What you think of Bush as a president has absolutely NOTHING to do with whether or not you'll like this piece of crap show. The \"\"jokes\"\" are not funny at all. For example, in a scene when lil bush has his underwear on his head: \"\"Welcome to camp al-qa-eeda!\"\". There is NOTHING funny about that. Is it even supposed to be joke? The commercials that were shown in the weeks leading up to the show, hyping it up, were funnier than the show itself, and that's just sad. Hopefully this does not even get considered for a second season. It shouldn't even have had a first.\"\r\n1\tWatching this again after a gap of many years and remembering the flop it was upon its original release, I am surprised at how well it has held up. One of the reasons for its failure was that one generation just thought it was over indulgent crap and a younger one was disappointed that it did not show the full hippy glory. Seen now it is clear that Antonioni was already aware of and fascinated by the heady mix of fervent enthusiasm for change and a lack of any clear vision for the future. The lead pair are excellent and it is shameful that they took so much flak for the film's perceived failure. They are ideal and convey perfectly the various contradictions and demonstrate a pure delight in lovemaking. I blame others for the over emphasis on the student revolt sequences at the start but have to say that from there on in this is one of the directors most beautiful looking pictures and he certainly got the very best out of the man made and natural landscapes. Oh, and I haven't even mentioned the highly explosive ending.\r\n1\tPoor geeky Marty (Simon Scuddamore) gets horribly burned due to a cruel April Fool's day stunt gone very wrong. Flash forward a decade and those involved (including Caroline Monroe, known to horror fans for her turns in Maniac, Faceless & the Last Horror Film) in the prank are psyched for the upcoming 10 year high school reunion not aware that a court jester-masked killer is hiding out in the (now closed down) school and out for revenge.<br /><br />Chaulk this one up to being a guilty pleasure, I knew it's a bad film. It has all the characteristics of one. Yet there's just something about it that makes me feel compelled to watch it from time to time (preferably with beer in hand). I'm even willing to overlook the absolutely horrid ending (which, I do have to say, I hate) I guess I like it because it has a fun atmosphere about it and some pretty cool kills.<br /><br />Eye Candy (for the men): Josephine Scandi & Donna Yeager both get topless <br /><br />Eye Candy (for the ladies): a gratuitous cock shot of Simon Scuddamore at the start of the film <br /><br />My Grade: B- <br /><br />Lionsgate DVD Extras: Optional trivia track; trailer for this film; and trailers for My Bloody Valentine (1981), Monster Squad, Dirty Dancing\r\n1\tWell, after long anticipation after seeing a few clips on Bravo's The 100 Scariest Movie Moments I had long awaited to see this film. The plot was simple, beautiful model Alison Parker (Cristina Raines) moves into an apartment building that's a gateway to hell. The Sentinel is a down right creepy film, even if it's a bit slow. It's a mix of The Omen and Rosemary's Baby. The acting is fine, and there are some truly disturbing bits such as the awkward orgy scene with the dead father and the chubby woman in the middle of the orgy eating cake and laughing The ending is a weird mix of deformed people and cannibals. It's a very odd, campy but in the end, I truly believe a great film! One of my favorites from the 70's, even if it's nothing greatly original. It's wacky and extremely creepy! Probably one of my all time favorites. 9/10\r\n0\tThis could have been a good episode but I simply had to turn it off. The British representation was horrible to watch. Have the makers ever set foot in Britain prior to filming? At least set foot in England?? I don't think any British person have had such an accent apart from a comedy skit of The Royal Family! Also with the 2 English boys... well I don't think any English boy has acted, spoke or dressed like any English kid in the history of the British nation since Prince William and Harry's preteen public appearances. To American film makers.. There is more than 1 country in the UK. England, Wales, Scotland and Northern Ireland.. meaning more than 1 culture! I can handle some stereotyping but this was so bad I could not watch it. Fire looked cool though!\r\n1\tLoved this show...smart acting, smart dialog, great storyline with real people....please bring it back or make it available online...really miss it.. Hope Davis really shines in this show. I like the idea of SIX DEGREES... It really makes sense in this insane world. Rid yourself of those stupid reality shows and give this show a second chance Please bring it back Not to grovel..but please! When it went off the air, I watched in online and liked how I could watch it with minimal interruptions, in fact, online ABC makes it easy to enjoy shows when you miss them on prime time...gone are the days of endless taping. Anytime you want to bring it back, I am ready.\r\n1\tI was a fan of the book ever since third grade, so of course I had watched the movie, read the sequel, and then watched the television show. It was a good show in itself, and now as an adult I still enjoy the show. My only real problem with it was that it didn't follow the book. The first time I saw it, I was so disappointed that I turned it off. But that's coming from a girl who owns a first addition of the book. But after time I decided to give it a try again and ignored the book (kind of like what you have to do with the Harry Potter movies). I found the series wonderful! It was clean cut and something that everyone could enjoy, just the right amount comedy to keep everyone going. It is truly enjoyable! Clean and wonderful!\r\n0\t\"I first started watching this show probably around the year of 2003 or 2004 with my friends. Of course, at the time I was younger and enjoyed some of the jokes on this show. I was 11 in 2003, and I am 14 now (2007). Though my age probably plays a major role in how I judge this show, after reading other's reviews, I have come to see that after the third season, this show went down the tubes. I agree. This show is obnoxious, repetitive and usually focuses on the same plot.<br /><br />The show revolves around Timmy Turner, who was granted two Fairy Godparents because basically his life was horrible - his parents were never around, and he had a nasty baby-sitter. The plot of the entire show is that this kid (Timmy) and his Godparents always wish up some destruction that cannot be prevented by making another wish, because something in \"\"Da Rules\"\" says they can't. The show has a lot of lines that keep being repeated, like \"\"magic cannot break true love, super toilet\"\" or even just some scummy jokes lines that Nickelodeon probably thought was funny and decided to put in the episode various times.<br /><br />The show is aimed at kids younger than 10, because it involves gross situations and \"\"kid humor\"\" that most kids of my age wouldn't care for. The character voice selection could've been better too. Timmy has an extremely loud, shrill, feminine voice as does Cosmo. Wanda sounds like an old lady. Timmy's dad sounds like some announcer or game show host, Timmy's mom's voice is too exaggerated to sound feminine. Attitudes in this show are: in some episodes, Timmy talks back and acts spoiled and snobbish. Wanda apparently is smart and wise. Cosmo is stupid, dumb and incapable of thinking as is Timmy's dad. Timmy's mom seems to end up doing whatever Timmy's dad does.<br /><br />The show is too far flung from reality to get my likings anymore. Maybe as a younger kid, I could see more of the humor in this show, but as I grow up, it really grows old. And not to sound conceded or \"\"trashing\"\" but the show does have that mentality that makes you want to commit homicidal activity towards the characters. A show like this just has to be your attitude, if you know what I mean. If not, it basically disgusts you.\"\r\n0\t\"*Contains some spoilers* This movie is cheesy 80s horror in all its awfulness. The plot takes way too long to get off the ground, never steadies itself, and then just plain crashes about 40 minutes into the film. There are a few gem moments for zombie fans, but not nearly enough zombies to create a real sense of terror.<br /><br />The zombies also take a long time to make their appearance. First, there's a whole half of a movie about mobs and prison gangs. The hero of the movie is an ex-Vietnam vet who gets caught up in the mob. The main mob boss sets him up and he goes to jail. In this jail, they are experimenting on the prisoners to find a way to cure them of homicidal tendencies and criminal behavior. But the badie psychotic head scientist/military guy has other plans in mind. He wants to use a slightly different version of the serum to make ....da da da.... super soldiers! After some infected prisoners kill a few guards and most of the prison has a round of infected communion wine, the military/crazy scientist guy goes \"\"hey this might be a problem\"\" and gives a call to the genius scientist turned investigative journalist hot babe ultra-empowered independent woman character, who of course invented the original serum. She goes to the prison to see what's going down, the military guy calls in a few SWAT teams from his secure position outside the prison, and the hero guy takes charge of the few prisoners with a heart of gold when a riot breaks out. The hero guy and the scientist/journalist lady team up to find a cure, save the warden's kids, and deal with some irate prisoners, both infected and not. Meanwhile, the mob boss guy has made a deal to get into the prison so that he can save his imprisoned brother. The military gets ready to blow the place up, and everyone inside scrambles to find a way out.<br /><br />There are a lot of gory scenes where people are killed by being pressed or pulled through prison bars. There's also a creepy decapitation scene and electrocution scene involving the same infected rasta prisoner. Still, the most disturbing scene is in the early part of the film, when a gross corrupt guard rapes a prisoner.<br /><br />The main highlight of this film is one scene towards the end. The hero, woman, and kids are trying to make their way to the only escape route. Their path leads them to a long hallway, on one side there is a wall and on the other are prison bars. Hundreds of bloody zombie hands reach through, gracing their hair and faces as they pass by. There's also a few good scenes of the classic \"\"couple of zombies munching on freshly dead bodies\"\" and \"\"many zombies ripping one guy to shreds\"\" bits.<br /><br />Overall, worth watching if you're researching the zombie genre as it has so many zombie clichés worth noting; it's practically an instruction manual on what not to do when making a zombie movie. But if you're new to zombie flicks and want a real scare, you should look elsewhere.\"\r\n0\t\"This film is terrible. The story concerns a woman trying to find out what has happened to her sister. The film struggles with its identity, lurching from Noir/thriller to erotic, with elements of horror thrown in for good measure. The film has a very confused structure, for example with frequent use of flashbacks without tying these into the story. The plot is poorly developed, and the characterisation made it difficult to distinguish between who was who and the part they were playing. Some implausibilities exist in many films, but the scene where the main protagonist willingly accompanies a virtual stranger to his home, then agrees to go upstairs alone (to where he says she will find a phone), minus the gun she had brought with her, to call the Police, was too hard to believe. Some of the cinematography is very poor: we were watching on a 42\"\" TV so how anyone with a smaller set could work out what was happening in the scenes taken in almost complete darkness is beyond me. Overall, a chaotic mess.\"\r\n1\tI anticipated this movie to be decent and possibly cliché, but I was completely wrong! Charlie Cox (I had never heard of him until now) played an incredibly good leading man; he was so earnest and romantic, me and my friend that saw the movie with me totally fell in love with him.<br /><br />Claire Danes, who I did like before (LOVED her in Romeo and Juliet), made me enjoy her even more. Her acting was fantastic, I couldn't even tell that she was American. The chemistry between her and Charlie Cox was extremely good, the casting was quite perfect.<br /><br />Robert DeNiro and Michelle Pfeiffer were equally well-casted; DeNiro as that gay pirate...priceless, priceless. I laughed so hard at that one scene where Septimus comes on the ship...oh my god, wow. Pfeiffer played a decent villain, I liked her as the snippy mother in Hairspray. But she had the right amount of melodrama and snide comments throughout the movie. <br /><br />Overall, it was funny (but not slap-stick at all!), romantic, the special effects weren't totally frequent but when they were, they were great; the cameos from Ricky Gervais and Peter O'Toole were also well-placed. <br /><br />I totally recommend this movie to anyone who likes fantasy movies like the Princess Bride or even Lord of the Rings. It kept my interest the entire time and I will be buying the DVD when it comes out!\r\n0\tThis was the WORST movie I have ever seen! Molly (molly hall) could not act AT ALL! she had no emotion it was all blah blah blah like she was reading out of a boring text book. The smart kid and the kid who loves food (there names weren't worth remembering) were so annoying it drove me crazy.When ever the talked it was about some scientific thing or food. Mollys Dad didn't show enough emotion about his daughter missing. The police officer and Mollys dad said the same thing like four times. it was just horrible. Everything was repeated way to much. Beatrice should have had something bad happen to her for being so mean. I just wasted a moment in my life by watching this movie!\r\n0\tI hired out Hybrid on the weekend. What a disappointment! A stupid lame attempt at a tele-movie. The guy they got for the lead was totally weak and when running {he did a lot} looked like he was eating those minty sweets...with his backside! The wolf contacts he wore were great, though I feel the actor relied on them too much, as there was nothing menacing about his acting at all. The wise native American Indian chick has to be one of the most stony hard faced hags ever seen. Talk about a sour cow! She smiled about once for the entire film, and I think that is because she had sex. The sex scene was lame too. They may as well have shown blowing curtains, if you can dig that.<br /><br />Last of all, and this is a big pet hate of mine, on the cover and the DVD menu, the losers digitally drew in cool sharp teeth on the guy. They were nowhere to be seen in the film. :(\r\n1\tThis movie could only originate in the 1970's!! It's a bizarre action movie set in a small California workers town. Some sort of mill or plant is closing down, so suddenly, rampant bad behavior is occurring in the streets! The townsfolk's are fed up! So Ben Arnold (Jan Michael Vincent), goes to another town to recruit his brother, Aaron, played by Kris Kristofferson. Aaron is a Vietnam Vet who looks and acts a littleoff balance. He hangs out with a bunch of other surly Vietnam vet's. They come into town to clean it up (they become deputized), but underneath their good deeds, they are actually running gambling houses, asking for protection money, etc.!!! It takes a while for people to catch on, and in a biblical Cain and Abel showdown, Vincent has to take on his older brother. There's an interesting blue-collar sleaze atmosphere to this movie, which makes it interesting (note the cock-fighting scene!). Vincent is almost too angelic in this role  he thinks so highly of his brother, he cannot conceive of him committing the evil deeds he's accused of. He finally comes to his senses  his girlfriend, Victoria Principal, is brutally shot in the back & he himself is beaten up in his home. Kris Kristofferson is creepily effective as Aaron. He coolly denies any wrong-doing, and even gently coos and talks to Vincent's young daughter (she refers to him as 'Uncle Aaron') even while he's threatening her father's life, all the while smiling! Vincent and Kristofferson have good contrasting chemistry with each other. Bernadette Peters makes an interesting appearance as a 'saloon' girl who attracts Aaron's attention. This is a good 70's action movie, if you can find it!! It is NOT available on DVD yet\r\n0\t\"'Metamoprhis' is the story of a dashing young scientist, revered at the local college, is brought under investigation by financial providers for the college. This forces him to take shortcuts in typical bad-Hollywood melodramatic fashion.<br /><br />My first thought after this movies conclusion was this. \"\"Not good, but not bad, for early-to-mid eighties.\"\" Of course, I then realized that it was made in 1990, which almost propelled it down to a '4', but decided to keep it at the mediocre '5' that it is.<br /><br />'Metamorphis' does on a few occasions, seem like a good movie desperately trying to get out. The acting, while not stellar, is mostly competent. You can even see the occasional glisten of a modest quality. Pacing is a large problem with the movie. After thinking I had been watching for ninety minutes, I realized I'd only been watching an hour. Special effects aren't stellar, but the director seems to be mostly competent enough to work around that weakness.<br /><br />The lead, a mildly charismatic male that seems to be attempting a blended channeling of Tom Cruise and Christopher Reeves, reminded me mostly of Matt Dillon's character in 'Wild Things'. The female heroine does an OK job, but does not distinguish herself in anyway. There's a 'naughty girl' role in here, and the actress does what she can with it, but it doesn't seem like much. There is a child actor that the director can't decide if he's morose, cheerful or just weird. <br /><br />Pacing, as I said, is the worst problem with this movie, until a final battle with the bad guy that would make a Power Ranger blush. It is bizarre and inexplicable, until the final scene which is supposed to be dramatic but simply hilarious, saturated with every bad camera trick and overacting that can be compressed in about thirty seconds.<br /><br />A decent one-time watch on the 'Mill Creek 50 Chilling Movie Pack'. Nothing that is going to bring you back, and nothing to buy on its own.\"\r\n0\tA not bad but also not so great heist film. Kirk Douglas is a recently released from prison safe-cracker who, after turning down an offer from the Mob, decides to pull the job himself. He recruits circus gymnast Giuliano Gemma. Mayhem ensues. Douglas and Gemma soon find themselves pursued by mafia goon Romano Puppo as well as entangled in a really goofy love triangle with Douglas's infinitely patient girlfriend (Florinda Bolkan). Director Michele Lupo keeps the pace moving quickly and there's at least one excellent and creative car chase sequence involving Puppo & Gemma. Though an Italian production, most of the filming appears to have been done in Germany. Douglas is fine, not just slumming it in an Giallo quickie. The striking Bolkan gives a terrific performance. The music is by Ennio Morricone and the cinematography is by the great Tonino Delli Colli, who managed to work with everyone in Italy (from Wertmuller and Fellini to Pasolini and Leone).\r\n0\tLethargic direction ruins an otherwise compelling period story that stars the wondrous Zhang Ziyi, in an excellent role as a woman who joins an extremist group in 1928 China, just prior to the Japanese invasion of Manchuria, and reunites with a former lover who is now working for Japan. Every bit of drama and forward motion of the story is sucked dry by director Ye Lou's somnambulist directorial style. Characters stand still staring at each other for long minutes, saying nothing, hand-held cameras hold forever on faces showing interminable reactions way longer than they need to, edits repeat the same reaction is triple redundancy. We know nothing about the characters as the story begins and are given little new information as the story progresses, only silence and static shots of lovers who don't speak, who interaction through silent dances but share no apparent emotional intimacy. A very sleep inducing film.\r\n1\tVerry classic plot but a verry fun horror movie for home movie party Really gore in the second part This movie proves that you can make something fun with a small budget. I hope that the director will make another one\r\n0\tAn absolutely atrocious adaptation of the wonderful children's book. Crude and inappropriate humor, some scary parts, and a sickening side story about the mom's boyfriend wanting to send the boy away to military school to get him out of the way makes this totally inappropriate for the kids who will most likely want to see it because of the book (3-8) yr olds. Don't waste your money, your time, or your good judgement.\r\n0\tPrison is set in Wyoming where work on a new prison has hit a problem so the state board decide to re-open an old state penitentiary that has been closed for 20 years, Warden Eaton Sharpe (Lane Smith) is put in charge. 200 odd prisoners are shipped in & they are put to work fixing the rundown prison up including Burke (Viggo Mortensen) who is ordered to break into the old execution chamber, he duly obliges but when he penetrates the bricked up door an intense beam of light shoots out & all the electrics, gas & fire around the prison goes crazy for a few minutes. Burke has unwittingly unleashed a deadly evil force which is in the mood for some killing & no-one is safe...<br /><br />Directed by Renny Harlin I thought Prison was a poor late 80's horror flick that seemed to forget about the small point of having a story. The script was by Empire Pictures regular C. Courtney Joyner who was responsible for writing such 'classics' as Class of 1999 (1990), Puppet Master III: Toulon's Revenge (1991) & Puppet Master vs. Demonic Toys (2004) amongst other low budget horror crap that even I haven't heard of & seems to take itself very seriously. The biggest problems I have with Prison are that it's far too slow, it's over 30 minutes into the film before the 'evil force' is even released although the pace does pick up towards the end but by then it was too little too late as far as I was concerned, then there's the fact there's no discernible storyline here at all. For a start it never tries to explain why there's an 'evil force' bricked up in the old execution chamber, it never explains why this force decides to kill random inmates when it's supposed to be out on a revenge mission or why it just doesn't kill Warden Sharpe straight away, no explanation is given to where Burke fits into it even though he looks exactly the same as the prisoner who was electrocuted & has come back, there's no real explanation as to how the Warden is connected to everything that's going on apart from two early nightmare sequences in which he seems to be remembering something although it's never revealed what it is or why. To be honest I couldn't really give you a plot synopsis as the film doesn't have a rigid story which it follows all the way through. The character's are dull & forgettable, the murders are few & far between, the pacing is way off, the whole film is a mess & even ghosts can't shoot straight when it comes to trying to shoot the hero. A less than satisfactory way to spend 100 odd minutes, there really are better things you could be doing.<br /><br />Director Harlin's full American flick debut he does a good job & there's a decent atmosphere but after over an hour of constant drab, dull, dark prison cells & corridors I started to get bored. I just think the look of the film is far too repetitive, bland & frankly lifeless. I didn't think it was scary & the gore is pretty tame apart from the best moment in the entire film when a police guard gets killed when a load of barb wire wraps itself around his body & face with a nice close up of his throat being torn open. Other than that there's a burnt corpse & a mangled body which falls from the ceiling & very little else. There is a scene when the Warden burns all the prisoner mattresses in front of them & then makes them stand all night in their underwear in the yard, I was watching this scene & thought that you'd never get away with doing something like that. Over here prisoners have rights & if the Warden did something like that there would be a national outcry from all those humanitarians & every prisoner would sue the Warden, the prison service & the Government for everything they had & they'd win!<br /><br />With a supposed budget of about $4,000,000 Prison actually had a pretty healthy budget although it doesn't really look like it on screen, sure there's a decent cast & the few special effects that are included are good but overall it's set in the same location with limited ambition. Prison was actually shot in a real Wyoming state prison so it certainly looks the business. The acting is alright, Prison proves that sometimes Hollywood stars not only have one crap horror film skeleton in their closets but in the case of Mortensen he has two with this & the awful The Return of the Texas Chainsaw Massacre (1994) both of which I'm sure he'd like to forget about...<br /><br />Prison is a dull, lifeless, colourless & humourless waste of 100 minutes, despite one good gore scene I didn't like it at all as I actually prefer my films to have a story rather than seemingly random events & incidents cobbled together with no narrative sense.\r\n1\t\"Bear in mind, any film (let alone documentary) which asserts any kind of truth, will generate an adverse and proportional amount of cynicism, from those to whom any suggestion of and or search for truths is already meaningless, those of you who are already Masters of psychology, film, and captains of the soul, will no doubt find this movie redundant, after all, you already know everything there is to know. Congrats.<br /><br />For those of us in the minority like myself, I found \"\"The Perverts Guide To Cinmea\"\"....mostly brilliant, and worth watching for those interested in movies, psychology, and modern philosophy.<br /><br />A little like Scott Mclouds' \"\"Understanding Comics\"\", director Sophie Fiennes, inter-grates Slovene philosopher, psychologist, and social critic Slavoj Zizek right into many of the films and specif scenes he discusses. The cover is an image from \"\"The Birds\"\"(Zizek takes a boat out to re-create the shot).<br /><br />Lacanian Psycho-analysis, does not necessarily scream, an evening of great fun...but it is! If you like movies that is.... Having some knowledge of Lacanian psycho-analysis helps (Symbolic, Real, and Imaginary) are terms which get thrown around a little loosely at first, but the scenes which Zizek selects and analyze make remarkably clear what was always for me, a very abstract subject. In fact, it's probably better to have a familiarity with the films he's discussing than with the terminology he uses, which becomes clearer as the film goes on.<br /><br />Why I love, this film isn't because it picks great films to analyze or reveals great truths about Lacan, but shows in a very practical and clever manner, where film and psychology (and by default philosophy) meet.<br /><br />Why is \"\"The Sound Of Music\"\" kinda fascistic, why is \"\"Short Cuts\"\" about more than just class and alienation, why do the birds attack in \"\"The Birds\"\", what is there to learn about the mind from \"\"Alien Resurrection\"\", what does the planet of \"\"Solaris\"\" want, what does \"\"Psycho\"\" and \"\"The Marx Brothers\"\" have to do with each other, and what the hell is David Lynch getting across in movie after movie...well Zizek has some ideas.<br /><br />The role of the voice in both \"\"The Excorcist\"\" and \"\"Star Wars: Revenge Of The Sith\"\", is maybe the movies strongest and most lucid moment, when he gets into feminine sexual subjectivity I begin to wonder...at one point Zizek admits his feeling that flowers are a kind of decorative vagina dentatta, that they are disgusting and should be hidden from children (jokingly, it seems but...).<br /><br />Anyway, it's a fascinating documentary, which anyone who has ever seen a movie, and thought it meant something more than was literally stated, should make an attempt to see.<br /><br />And anyone interested in Slavoj Zizek, this is a must as well, much less dry than \"\"Reality Of The Virtual\"\", and more direct than \"\"Zizek!\"\", two other pseudo-docs, about \"\"the Elvis of contemporary cultural criticism\"\", as he is being dubbed, in the English speaking world.<br /><br />\"\"The Perverts Guide To Cinema\"\" is NOT about the role of sex in cinema. Zizek claims cinema is the ultimate pervert art, because it teaches \"\"how to desire, and not what to desire\"\", and that it is the only contemporary art form that can allow for these desires to be articulated. This is not a film about finding the reality in cinema, it's about finding the cinema in reality, and how important and exciting that can be. Hard to find, and a bit long, but well worth the trouble, one of the most \"\"stimulating\"\" movie watching experiences I've ever had.\"\r\n0\t\"Who me? No, I'm not kidding. That's what it really says on the video case.<br /><br />Plot; short version: Pretty woman stands around smiling. This, for some reason, makes all men kill each other.<br /><br />\"\"Find Ariel...Where's Ariel...Can't Find Ariel...\"\" She's right behind you, you idiot...<br /><br />Most of what can be said about this horrendous little Space Opera has already been said, looks like.<br /><br />A bunch of corny actors playing mostly convicts come in after the first selection of actors is knocked off very quickly. Then they get knocked off in the same way. Every scene is broadcast nearly fifteen minutes in advance. Perhaps it was a drawing of straws to see which actors had the most screen time and bigger pay check. The alien virus/hologram/VR witch/glitch seems physically powerless and doesn't do a thing. Why can't she just stay in the computer instead of doing her \"\"teleporting vampire\"\" routine? (Actually, it would've been more interesting if she had been a vampire, or doing more than just standing around looking at people, which is all she ever does. This is enough to make all the men kill each other. Go figure...)<br /><br />This isn't really a space flick. There are far more shots of the old western trail, 1950's Easy Rider trail, Film noir's night club scene, even a jog on the beach in fantasy-land, none of which has any real depth or even makes any sense. The night club scene is in black and white, of course. Worked with \"\"The Wizard of Oz\"\". Doesn't work so well, here. This is probably a good thing, as those few shots they DO show of space are depressingly silly. You will probably cry during those moments, especially upon seeing that swirling \"\"space ship\"\", which looks about three inches long.<br /><br />Nothing is felt for any of the characters, not because they are convicts or have no personality, but because they are in serious need of acting lessons, except for Billy Dee Williams who really does look depressed and at a loss, probably by being in this work...<br /><br />This is one of those movies that, when viewed with friends, is going to cause some extremely \"\"loud\"\" silences, especially when the nerd throws out his attempt at comic one-liners (including the line about French-kissing a meteor...? Did I hear that right? Perhaps not...)<br /><br />The original virtual reality girls get \"\"killed\"\", which means nothing, as they are not even real to begin with. Well, the other \"\"characters\"\" aren't, either, but that's beside the point. Haha.<br /><br />What's kind of funny is that the scene that graces the video case is some sort of skull-horror-alien looking thing (green filter added on top of that, to give it more of a...uh...green look), which is actually the android after he gets killed and ultimately has nothing to do with anything else afoot.<br /><br />Another odd deal I noticed. Whenever there is an explosion (at least on my cheap DVD copy), everything becomes highly pixelated. I don't mean a LITTLE pixelated, I mean HUGE blocks about 1/16th the size of the screen. Wow.\"\r\n1\tBend it like Beckham is packed with intriguing scenes yet has an overall predictable stroy line. It is about a girl called Jess who is trying to achieve her life long dream to become a famous soccer player and finally gets the chance when offered a position on a local team. there are so many boundaries and limits that she faces which hold her back yet she is still determined and strives. i would recommend it for anyone who likes a nice light movie and wants to get inspired by what people can achieve. The song choices are really good, 'hush my child, just move on up...to your destination and you make boundaries and complications.' Anyway hope that was at help to your needs in a review. Bend it like Beckham great flick\r\n0\tThis movie could have been very good, but comes up way short. Cheesy special effects and so-so acting. I could have looked past that if the story wasn't so lousy. If there was more of a background story, it would have been better. The plot centers around an evil Druid witch who is linked to this woman who gets migraines. The movie drags on and on and never clearly explains anything, it just keeps plodding on. Christopher Walken has a part, but it is completely senseless, as is most of the movie. This movie had potential, but it looks like some really bad made for TV movie. I would avoid this movie.\r\n0\t\"Unspeakably discombobulated turkey, a mix of anti-Nazi musical (!!), pre-war Americana and Agatha Christie whodunit spoof with one big, big problem: it's deadly unfunny. Besides the single-digit I.Q. plot and dialog, the most amazing aspect of \"\"Lady...\"\" is the berserk casting. Gene Wilder (star AND co-writer) tries hard at it all: he plays a romantic lead (with his looks!! and his age!! he and Woody Allen should start a club for clueless, mirrorless ageing comedians), and he tries to be moving and funny and poignant and smart, and tries to sing and dance, and succeeds in NONE!! A looong shot from his good old days with Mel Brooks.<br /><br />For a while I thought I was having a myopia fit, because everybody in the movie keeps saying Cherry Jones is this pretty hot chick, and that Michael Cumpsty is this impossibly handsome stallion!! The guy who plays Claire Bloom's male secretary is a bespectacled balding thin actor as sexy as a chair and is the object of passion of the two leading ladies!! Mike Starr's over-the-top acting as the most incompetent, phoniest cop you EVER saw deserves to rank among the 10 most abhorrent performances in recent film history. The saddest note is to see wonderful Claire Bloom and Barbara Sukowa completely miscast and offensively wasted. At least I hope both stars payed their bills back home (and subsequently fired their agents) with this flop. No wonder acting prodigy Sukowa returned to Germany after she saw what Hollywood had in store for her!!<br /><br />If you want to see how to accomplish a really bad film out of a really bad script with a berserk casting director, study this one - otherwise stay away!!! - 1/10\"\r\n0\tIt could have been a morbidly fascinating look at the life of one of America's most notorious serial killers, but sadly it doesn't even come close. Terrible editing, direction, bad acting, you name it. This movie is literally about 10 minutes of plot stretched into 100. The only redeeming quality is Bruce Davidson as the father, but that's not nearly enough to save this stinker. A 1 out of 10.\r\n0\tMay I start off by saying that Casey Affleck is a very talented actor and I respect his work very much. I wish he was in more movies that showcased his talent. With this said, Soul Survivors was a very, very bad movie. Very bad.<br /><br />I would have to say that I lay almost all the blame on the poor script. Affleck is a very talented actress, Wes Bentley had an outstanding performance in American Beauty, Melissa Sagemiller did well, and Eliza Dushku is currently the it girl in Hollywood. I don't think any of the actors really got into the script, and I understand why. To say that this movie belongs to the horror genre is an overstatement. It did have the twists and turns you would expect, but they just didn't lead anywhere... except to more confusion. I just found the ending very anti-climatic, because it just didn't seem to make any sense or really answer any of the questions that I had about the storyline.<br /><br />I wish I could give this movie a good review, but I can't. In all honesty, the only thing I think you will find scary about this movie is that you paid for it.\r\n0\tEvery once in a while, a group of friends, with a minimal budget but bags of enthusiasm and talent, will create a low budget masterpiece that takes the world of horror by storm. Raimi and co. did it with The Evil Dead, Jackson and pals succeeded with Bad Taste; and Myrick and Sanchez made a mint with The Blair Witch Project.<br /><br />Director Todd Sheets and his chums, however, are destined to wallow forever in relative obscurity if Zombie Bloodbath is anything to go by. A lesson in how not to make a cheapo horror, this miserable effort (about a plague of flesh-eating zombiesnatch) serves as a reminder that, whilst many people these days have access to a video camera, most shouldn't take that as their cue to try their hand at making a full-length movie.<br /><br />It's not that Sheets hasn't got an eye for a nicely framed shot (some of his camera angles and movements are actually pretty good), but rather that a) he has a lousy script b) he has a lousy cast, and c) he doesn't realise that he has a lousy script and cast. Which means that the final film is amateurish in the extreme, and unlikely to be watched in its entirety by anyone other than zombie film completists (like me) or members of the cast and crew (like those who have given the film favourable comments).<br /><br />Zombie Bloodbath is obviously aimed at undiscriminating gore-hounds, and Sheets (who currently has an incredible 34 titles under his belt as a director) certainly goes out of his way to please, with buckets of offal and blood thrown about at every opportunity. But whilst these moments are undeniably yucky, they aren't particularly convincing, and soon get rather tedious.<br /><br />So, to summarise, this is a really bad film, with almost no redeeming features. Except for two:<br /><br />Firstly, it features the single greatest mullet in the history of film, as sported by Jerry Angell, who plays Larry (as well as several zombies). The magnificence of his barnet (coupled with a fetching moustache) is reason alone to watch this film.<br /><br />Secondly, it has 'pathetic stealth zombies': flesh-eating corpses that lie in wait for unfortunate victims to wander by, before leaping from their hiding place to launch a feeble attack, which requires almost no effort to escape from. Best known for lurking behind a door for hours waiting for someone to open it, 'pathetic stealth zombies' also occasionally hide behind low walls, or sit in churches posing as members of the congregation.<br /><br />Normally a film this bad would get 1/10 for me, but, in celebration of Jerry Angell's flowing locks, I will generously raise my rating to 2/10.\r\n1\t\"I saw this film a couple of weeks ago, and it's been stuck in my head ever since. It stars two spellbinding characters in what is unfortunately a mediocre documentary. To get the true story of the Beales, I had to wade through all of the DVD's bonus material and commentaries and search the web.<br /><br />Although the Maysles and their fans (not to mention Edith and Edie themselves) bristle at the suggestion that this film is exploitative, this is exploitation in the truest sense of the word. Very little effort is every made to explain the Beales or how they came to the condition they were in - the Maysles approach seems to be to just turn the camera on and wait for Edith and Edie to say something outrageous. The sound, even on the Criterion re-release is poor and difficult to follow. Although I appreciate this film was made somewhat early in the history of documentary film, it's ironic to compare it to Geraldo Rivera's (!) far superior series on the sexual abuse of mentally retarded patients at Willowbrook State School in Staten Island from 1972, four years before Grey Gardens was shot.<br /><br />To paraphrase a review in the New Yorker, there were many things Edith and Edie needed in their lives, and a documentary wasn't one of them.<br /><br />As for Edith and Edie, the thing I kept thinking while watching the film was \"\"where the hell is their family\"\"? They were living in dangerous, unhealthy, unsafe conditions. How is it that Jackie O, married to one of the richest men on Earth (or the wealthy Bouvier family themselves) couldn't afford to get Edith and Edie a decent home? Or at the very least hire a part-time housekeeper or caregiver to come in and keep an eye on them both? It's shameful and a lasting disgrace to the entire Bouvier family.<br /><br />Although this review may sound negative I would strongly recommend Grey Gardens to anyone who enjoys documentaries. Perhaps someday someone will come along and do a documentary about this documentary - bringing in the rich backstory (and afterstory) of the Beales and the whole subsection of Hamptons society in the 1970's.\"\r\n0\tThis movie only got a 1 because you can't give a zero! if you have a weak tummy AT ALL don't watch. animal rights people you don't want to watch either. it makes people vegetarians i swear i witnessed it happen! the only cool parts are the case and the fact that its a true story. its really really super creepy that this guy worked at ADT while he killed people! still feel safe when you punch in that little code? i don't! He had access to every code in Kansas!!!!!! I hated the movie it was not scary it was mentally scaring! Do your self a favor and don;t rent/buy this movie i think it cost about $20 to make that INCLUDES their OVER paid actors!!!!\r\n0\t\"Maiden Voyage is just that. I'd like to say straight away that I watched 5mins of this before I just couldn't stand it anymore. As already stated in another comment, this film doesn't fall into the whole \"\"so bad it's good\"\" thing, it's just bad. The acting is awful, the sfx are poor, and the story is bland and stupid. Even the extras suck, the \"\"bag guy guards\"\" and such appear to hold their weapons like water pistols.<br /><br />Don't even bother watching this film, the only thing special about it is that, no matter how low your expectations are, you will still be disappointed.\"\r\n0\tThe only real highlight in the movie is the death of the sniveling guy and the reaction of the surviving characters to it.<br /><br />In every other way, this film is a very lame rip-off of Jaws, Lake Placid, and Alligator, with a little bit of Godzilla (1998) thrown in.<br /><br />As is standard for a 1990's-style horror movie, the two non-starring females each take their clothes off at least once. The female lead doesn't, since she obviously has a better agent. <br /><br />The whole movie surrounds the filming of a really dumb extreme sport called blood surfing, in which surfers cut themselves and surf in shark-infested waters. In this film, a giant salt-water crocodile also happens to be in the area. People get eaten. The movie ends.<br /><br />I don't mind a bad horror movie, but I really hate a dull bad horror movie, which this definitely is.\r\n0\tThis inept adaptation of arguably one of Martin Amis's weaker novels fails to even draw comparisons with other druggy oeuvres such as Requiem For A Dream or anything penned by Irvine Walsh as it struggles to decide whether it is a slap-stick cartoon or a hyper-realistic hallucination.<br /><br />Boringly directed by William Marsh in over-saturated hues, a group of public school drop-outs converge in a mansion awaiting the appearance of three American friends for a weekend of decadent drug-taking. And that's it. Except for the ludicrous sub-plot soon-to-be-the-main-plot nonsense about an extremist cult group who express themselves with the violent killings of the world's elite figures, be it political or pampered. Within the first reel you know exactly where this is going.<br /><br />What is a talented actor like Paul Bettany doing in this tiresome, badly written bore? Made prior to his rise to fame and Jennifer Connelly one can be assured that had he been offered this garbage now he'd have immediately changed agents! Avoid.\r\n1\tA lot of the problem many people have with this movie is that they seem to think that the story should have been more entertaining (ignoring it is based on a true story) or ranting against a film that glorifies Che (which it really doesn't). This film is very close to Jon Anderson's definitive bio on Che and gets the story right. Soderburgh does an excellent job of setting the mood for the unraveling debacle that was Che's Bolivian adventure. You really get the impression of the total timidity and bewilderment of the Bolvian peasant to Che's revolutionary ideas or of the difficulties that his men faced with hunger and the terrain. Sorry to bore the attention challenged movie fan out there but that was how it happened. So don't go into this movie expecting a Rambo shoot em up, its a true story!\r\n0\tRKS films always have been commercial films which suited the 90's, from GHAYAL, DAMINI<br /><br />His last few films KHAKEE were watchable FAMILY was crap<br /><br />This film is a decent film but could be better<br /><br />The problem lies in there is lot of old fashioned clichés thrown in and many scenes come out too filmy and lengthy<br /><br />Ajay Devgan's character is shown very well but his character gets heroic which could be subtle<br /><br />The lengthy flashback could be avoided as thigns are simply long drawn<br /><br />Even the street play in the second half look too simplistic and hardly a solution though the message is well brought out<br /><br />Direction by RKS is decent, though it could be better Music is okay<br /><br />Ajay Devgan looks the part very well and is at ease playing his part mostly though at times he does look ill at ease in light scenes He excels in dramatics Vidya excels in the scene front of media Pankaj has a not proper defined role and too filmy yet he excels in his part Darshan Jariwala hams as the old age villain the rest are okay\r\n1\t\"I enjoyed the film and would suggest to anyone just out for a good time. Don't take the film all too seriously because remember it's Disney and it's rated G. It's good clean fun although some parts may be recognised by adults but children would never notice, particularly the \"\"triangle\"\" between Cruella, Le Pelt, and Cruella's faithful valet Alonso. Glenn Close is fantastic and really has made Cruella her own and is believably terrifying even when she is \"\"cured\"\" of her fur loving ways, she can instill fear in the audience with her shrills that literally shake the theater. (I even found myself jumping in my seat when she catches you by surprise with her 'bipolarity' as the dog loving Ella.) All in all I will go see it again in theaters, I found myself enjoying it so much.\"\r\n0\tI agree with the last reviewer that this movie had terrible acting. Yes, there was a lot of gore and some nudity. But it was overshadowed by a slow-moving, meaningless plot and dumb ending. Where was this supposed to be filmed anyway: a Canadian Chinatown or Hong Kong? Hostel was a much better movie and I would recommend seeing that instead. A technical annoyance I had with the DVD is that if you shut off the Spanish subtitles, they return after a few scenes and then you have to go back to the main menu and turn them off again. Also, don't waste your time on the deleted scenes because there's no audio and it just looks like tourist footage.\r\n1\tThis film quite literally has every single action movie cliche and all of them work to its advantage. Straight from Lethal Weapon Gary Busey wisecracks, shoots and chuckles through this film with such reckless abandonment it can't help but amuse and entertain. There are tanks, helicopters, machine gun battles, grenades and ice cream vans and if they aren't good enough reasons to watch this film then how about the best one...Danny Trejo. And if you don't know who Danny Trejo is then you probably won't like this film.\r\n0\tBad actors, terrible script, totally unbelievable ending - this film had it all. After seeing films like this, you wonder why the makers bothered at all. This film has absolutely nothing to say, all the methods used to create a scare have been used over and over again in previous horror films. A total waste of time.\r\n0\t\"We can start with the wooden acting but this film is a disaster. Having grown up in NY I can tell you that this film is an insult to anyone who is familiar with the community or the people. I'm not even a defender of the culture in any way and found this to be a Hollywoodized piece of trash to fit its own fictional, ridiculous culture presentation and language that anyone who watches Seinfeld knows is inaccurate. This is a colossal waste of time and, even worse, is not exactly interesting since the outcome is obvious and the scenes of confrontation are laughably bad. Who acts this way? Nobody.<br /><br />The writer's name sounds Israeli or something of that nature but it is clear he doesn't have a clue about the subject he is writing about. Looking at his bio, it is shocking he lived in New York and wonder how much real connection he had with the community. Even mediocre films like \"\"A Stranger Among Us\"\" are better and more closer to the truth than this dreck. Reading this guy's credits it's no wonder he has written scripts on all C grade films that somehow feature stars. shocking. Perhaps he knows someone because this script is even below par for a bad Dolph Lundgren film.\"\r\n1\tA masterpiece of comedy, a masterpiece of horror, a masterpiece of romance, if there is anything negative to say about A Chinese Ghost Story, it might be that the special effects looked dated in comparison to modern technology. The film has a simple premise: a poor debt collector has to stay in a secluded area while trying to collect a debt. Of course, it happens to be haunted as well.<br /><br />What I wasn't expecting the first time I saw this film is that it's one of the most touching love stories I've ever seen; that is without losing any of the slapstick comedy that will have you in stitches. Unlike some films of Asian cinema, A Chinese Ghost Story isn't hard to swallow for those that aren't versed in Chinese culture. Indeed, it plays on timeless, cultureless themes of the paranormal and romance.<br /><br />Think Evil Dead 2, if they had thrown a wonderful love story into the mix. This film is for real, despite being overlooked by many. It's absolutely among the best I've ever seen. It's ability to combine the best aspects of multiple genres, and cross cultural boundaries in order to appeal to humanity everywhere, is nothing short of fantastic. Highly recommended, 10/10.\r\n0\tFeature of early 21 century cinema of lets pit different evil creatures and bad guys against each other. We haven't seen stuff like this since Godzilla v King Kong and the like. Always sounds great on paper when you're splicing up and in a haze of the good stuff you have an inspired idea and see the whole playing out before you like Beethoven's symphonies. Then you come to writing it. Great ideas like all vampires are female. Ergo hot, seductive deadly but in a way I want to perish sort of way. And all zombies are men. well thats what men are like to a woman just after shes been dumped or cheated on right? So it all looks good up to actually making it. Then the rot starts to set in. Mosters have fight. Nothing much happens. Another fight. Philosophical noodling and cods wallop. Eureka we've found how to win. Big fight again and the End. Sounds great doesn't it? If it was made an indie company it would be great. But this is Hollywood with the eye on the bucks: gloss instead of what the fans want. It all could have been gore soaked beautiful.\r\n1\tI didn't really know what to expect when going out to watch the film, apart from the slightly surreal basic plotline that a lonely man orders a Russian bride over the internet. That and it had Nicole Kidman in it. I absolutely loved the film though, and came out thinking 'wow'.<br /><br />Refreshingly down to earth, the film moves along nicely, with a few suprises at each corner. The relationships in the film are believeable, with Nicole and Chaplin working against each other beautifully. The humour is subtle, with some great 'Office'-like scenes at the bank, and the thriller element add tension without being Hollywood.<br /><br />Overall the film is about real people in an unusual situation. It's less about heroics and more about delicate relationships. Brit-filmmaking at its best...<br /><br />(9/10)\r\n1\t\"This gripping tale of intergenerational love, jealousy and revenge was even more enjoyable to see on DVD years after its PBS broadcast, with a sharper picture and crisper sound. My only reservations are that the plot has a few improbable moments and that some of the stronger Manchester accents are difficult at times. Luckily even missing a word here and there won't spoil the fun: the primary actors are ideally cast. Robson Green brings an enigmatic smile, a go-for-broke temperament and an athletic physicality to his role as a young surgeon who falls hopelessly for the wife of his boss at the hospital where he's just begun to work. Francesca Annis is one of the most striking 50-ish women imaginable; her acting rivals her beauty. (The love scenes between these two demonstrate better than words how little the age difference matters to them!) Each of the supporting characters is sharply drawn and excellently portrayed as well. The mix of pithy dialog and passionate excess makes this a delightful miniseries. As Russell Baker notes in his introduction, you may not be morally improved by viewing \"\"Reckless\"\" -- but you'll have plenty of fun. (The sequel, a part of the DVD box set, provides a wild yet satisfying two-hour denouement. You won't want to miss it if you've enjoyed what came before.)\"\r\n0\tThe film is a bit tedious. It's mostly a silent film, with the bulk o the story provided through a series of voice-overs. While making a silent film like this is not such a bad idea, this is one of those films where the lack of dialog and the repetitive early scenes make it simply tedious. You don't understand the reason for the tedium until well into the picture, and by then it's too late. The first 40 minutes of film is something of a slow piece of Mexican soft porn, and unimaginative soft porn at that. Later in the film the style of the first 40 minutes starts to makes sense, but it's too late, because by then the audience is lost. There is some nice location shooting at the National Autonomous University of Mexico. I've often wondered why more films aren't shot there. The campus is built on the edge of lava fields that lend the campus a very otherworldly feel. My biggest problem with the film is that the director/writer has made the film the way he wanted to see it without regard for how a viewer who doesn't know the story will view it. You can't ignore the audience when you tell a story.\r\n1\tHello Playmates.I recently watched this film for the first time ever and it is also my first experience of Arthur Askey, I have to admit I was very impressed by this film. As a fan of black and white films generally, passport to pimlico, the lavender hill mob and Tommy Trinder (who is apparently a distant relative), this film appealed in that it provided good old fashioned British humour. I notice that there are some on here who have criticised Askey's performance, however in my opinion it stands the test of time as a fine example of forties comic acting and if anything adds to the picture by creating characters that are more than the mere stereotypes which seem to so dominate films now.If you can get hold of this film I would recommend you get hold of it,shame these films generally aren't shown on Sunday afternoons anymore.I am also glad to have had the opportunity to watch another piece of work by Arnold Ridley (Private Godfrey in dad's army).I thank you\r\n1\t\"I for one really like this movie for some reasons I'll go into late but I want to touch on why I think people don't like it. First off, there are people out there who just like to hate Tom Cruise. I don't understand it really. Second, Cameron Crowe I think successfully p***es off two groups of movie-goers with this film. The casual, relaxed, \"\"not looking to think too hard\"\" group of movie-goers are left confused when the plot takes a complete 180 at the end of the movie. And the deep, philosophical, mystery-fans are devastated when Crowe has one of his characters completely explain the mystery.<br /><br />This is a good movie. And Tom Cruise does a very good job in it. I think it's probably his best performance from what I've seen all though I haven't seen all of his movies, or even a majority of them probably. The supporting cast is good as well. Penelope Cruz gives a solid performance and Jason Lee was enjoyable.<br /><br />I like the story, and I think that's what Vanilla Sky is more than anything. It's a mystery, an adventure, and a romantic comedy, but it's mostly just a good story. And it has a lot of philosophical undertones to it, and many similar ideas and stories like this occur in historical philosophy. David Aames (Cruise) is the man that had everything he wanted, more or less lost it, was given a second chance with a catch to regain it all back, and in the end facing his demons and the full scope of what is happening, chooses reality, simplicity, and normality to see if he can finally find the one thing he could never get a grip on: happiness.<br /><br />Many people were disappointed that Crowe laid out the complete mystery at the end. I think it's necessary. The audience then knows beyond a shadow of a doubt that David is aware of his circumstances and it makes the choice at the end all the more powerful.<br /><br />And the music in the movie is great. It's probably what makes the movie as enjoyable as it is. Particularly, \"\"Njosnavelin\"\" by Sigur Ros, which is an amazing song.<br /><br />All in all, I'd give it 3 out 4 stars. It's a movie with some substance for those who like to think things through, and a great story for those looking to relax. That \"\"moderate\"\" approach is probably why people dislike it so much because it isn't a full blown mystery, or a full blown love story. It mixes and matches different elements and genres.\"\r\n0\tOK, so I am an original Wicker Man fan and I usually don't like British films remade by Americans, so why oh why did I put myself through the most painful cinema experiences ever? I am not a Nicolas Cage fan and I had some kind of moment of madness perhaps? The film was appalling! The bit at the beginning with the crash/fire had no relevance to the film at all and the female cop knew where Edward was going, so the bit at the end with the two girls visiting the mainland, well it wouldn't have happened as the whole thing would have been investigated. The history behind the wicker man wasn't really explored - and I guess being set in America didn't really help the whole pagan theme. This film was slow and contained no atmosphere or suspense. I must say that the best bit was right at the end, when Nicolas Cage goes up in flames! I am in such desperate need to see the original again now, in order to cleanse my disappointed soul. I really can't stress how disappointing this film is, please don't see it if you:<br /><br />A) Don't like American re-makes of British Films B) Are a fan of the original C) Hate Nicolas Cage\r\n0\t\"Okay. So there aren't really that many great movies around. Recent gems like American Dream, The Straight Story and even Toy Story 2 don't normally come so close together. But boy (!) does this film counter-balance the quality.<br /><br />I have NO idea what these people thought they were doing. Are the financiers in this world so easily convinced to fund such a crock of ****? I can just see it now...<br /><br />Producer - \"\"So we've got Joe Fiennes. He's cute as a button and was pretty good in Shakespeare in Love. And we've got Rhys Ifans, who isn't cute but was cool in Notting Hill. We'll mix in a really mediocre score, a few forgettable post-Britpop tunes, hemlock root and lizard brains and hey presto you've got the worst film of the new millennium.And believe me, it's gonna be a hard job to make anything as bad as this in the next thousand years.\"\"<br /><br />The Bank - \"\"I like it! Any unnecessary sex? Bad camera movements? And what about the worst accents this side of Devil's Own?\"\"<br /><br />Producer - \"\"Yeah, we got plenty of those.\"\"<br /><br />The Bank - \"\"Sounds great, where do we sign?\"\"<br /><br />Please.\"\r\n1\t\"This is obviously aimed at the same market as Monsters Inc and Shrek, but is different in its less cartoony feel (despite the deliberately cartoony characteristics of the lead creatures). The story is not one that had a massive in your face moral at the end (its more like its tugging at your shirt sleeves) but chooses just to tell a story about relationships between different \"\"animals.\"\" You know the outcome, but you can't help being drawn in.<br /><br /> The characters themselves are far more than their voices (the advantage of less famous actors doing the voices), unlike most Disney movies. They are well rounded and completely believable, strangely. The group dynamics are brilliantly well presented and the character revelations and quirks are subtle and enjoyable. You will find yourself rooting for them far sooner than you would like to think.<br /><br /> The animation is brilliant, as you would expect, and you will be praying for the opportunity to go on the ice slide in the movie. You will fall in love with the characters, especially the comic relief of the prehistoric squirrel and its desperate attempts to bury its nuts. I came out wanting the obligatory merchandise, especially the sloth toy, only to be disappointed the next day when I couldn't find anything vaguely related.<br /><br />Which, strangely, makes the movie all the more pure.<br /><br /> Better than Monsters Inc or Shrek.\"\r\n1\t\"I really like this movie. Bozz is an ultra-cool, not to be intimidated soldier who does not want to go to war. His persona is similar in a way to Yossarian in Catch-22, Joseph Heller's classic novel about men and war. This film, however, is not set in a war zone, but in a pre-war combat prep training. This wonderful film is all about the sickening realization that the Vietnam war was a mistake and those men who were pegged to be sacrificed for a losing cause.<br /><br />Colin Farrell is brilliant as Bozz, a soldier who showed as much genuine love and compassion for his fellow soldier as he did disdain and irreverence for the establishment that was trying to kill him. Bozz is totally cool and non-plussed, testing and tweaking his military superiors, getting their goat at every opportunity. He is a Jesus Christ figure with a psychology degree, \"\"saving\"\" his fellow soldiers and showing the ones in genuine need, the way out of this man's army.<br /><br />The acting and action is crisp and believable and as a \"\"Sleeper\"\", Tigerland goes down with Apocalypse Now and Full Metal Jacket as one of the top three Vietnam films in my opinion.<br /><br />FIVE STARS, a top pick.\"\r\n0\tAnyone who actually had the ability to sit through this movie and walk away feeling like it was a good film does not appreciate quality movies. This movie was an insult to watch, the direction was high school film class quality as well as the cinematography. The Blair Witch Project had better cinematography and I hate that move with a passion! The storyline had the potential to be a very intense very good movie but it fell flat from the first 10 minutes through the rest of the movie. Someone mentioned that this film was about a child's imagination, okay thats all good and fine. But they still could have done better things with this script than what they did. I mean come on, the Indian in the store. Did the kid look at the little idol and suddenly imagine the Indian and the entire story about an Indian spirit called Wendigo? Which they mention to the store employee and she casually says there is no one but me that works here, so you think okay creepy ghost scenario, but then she just barters for the amount on the idol and we forget about the little kid seeing this guy. That was so lame it goes beyond pathetic. The ending left you wondering not only what happened to Otis in the hospital but also with the feeling of OMG!!! Why the hell did I just waste my time watching this!! This is a move that I recommend NOT to watch, there are definitely better quality films out there that won't insult your intelligence! Thank god I never had to pay to see this movie, I would have demanded my money back! For those that were easily entertained by this movie.... it's very sad that you lowered your standards to this level of film making to actually say that it was a good movie.\r\n1\tI saw this film as it was the second feature on a disc containing the previously banned Video Nasty 'Blood Rites'. As Blood Rites was entirely awful, I really wasn't expecting much from this film; but actually, it would seem that trash director Andy Milligan has outdone himself this time as Seeds of Sin tops Blood Rites in style and stands tall as a more than adequate slice of sick sixties sexploitation. The plot is actually quite similar to Blood Rites, as we focus on a dysfunctional family unit, and of course; there is an inheritance at stake. The film is shot in black and white, and the look and feel of it reminded me a lot of the trash classic 'The Curious Dr Humpp'. There's barely any gore on display, and the director seems keener to focus on sex, with themes of incest and hatred seeping through. The acting is typically trashy, but most of the women get to appear nude at some point and despite a poor reputation, director Andy Milligan actually seems to have an eye for this sort of thing, as many of the sequences in this film are actually quite beautiful. The plot is paper thin, and most of the film is filler; but the music is catchy, and the director also does a surprisingly good job with the sex scenes themselves, as most are somewhat erotic. Overall, this is not a great film; but it's likely to appeal to the cult fan, and gets a much higher recommendation than the better known and lower quality 'Blood Rites'.\r\n0\t\"Jesus Christ, I can't believe I've wasted my time watching this movie. I only watched because I have such a crush on Jordan Ladd. But watching this film almost put me off her. This is absolutely awful! I could have been watching Survivor Series 93 over this.<br /><br />The lead guy in this was so bland and generic. I would love it if the great Mistuharu Misawa Tiger Drove '91'd his ass through a glass window. I was enraging every time he was saying \"\"lake\"\" and \"\"cabin\"\". I'd kick his ass.<br /><br />Jordan Ladd, on the other hand, was absolutely wonderful. A true angel. But she couldn't even save this utter joke of a film. Sadly, she couldn't even act like she was off her nut when she took that truth drug. It looked hilarious.<br /><br />I also loved the bit where Jordan accidentally spilled yogurt on her. It reminded me of a time where...nevermind.<br /><br />Anayways, do watch this film because of it's awfulness.\"\r\n1\tHollow Man starts as brilliant but flawed scientist Dr. Sebastian Caine (Kevin Bacon) finally works out how to make things visible again after having been turned invisible by his own serum. They test the serum on an already invisible Gorilla & it works perfectly, Caine & his team of assistant's celebrate but while he should report the breakthrough to his military backers Caine wants to be the first invisible human. He manages to persuade his team to help him & the procedure works well & Caine becomes invisible, however when they try to bring him back the serum fails & he remain invisible. The team desperately search for an antidote but nothing works, Caine slowly starts to lose his grip on reality as he realises what power he has but is unable to use it being trapped in a laboratory. But then again he's invisible right, he can do anything he wants...<br /><br />Directed by Paul Verhoeven I rather liked Hollow Man. You know it's just after Christmas, I saw this a few hours ago on late night/early morning cable TV & worst of all I feel sick, not because of the film but because of the chocolates & fizzy pop I've had over the past week so I'll keep this one brief. The script by Andrew W. Marlowe has a decent pace about but it does drag a little during the middle & has a good central premise, it takes he basic idea that being invisible will make you insane just like in the original The Invisible Man (1933) film which Hollow Man obviously owes a fair bit. It manages to have a petty successful blend of horror, sci-fi & action & provide good entertainment value for 110 odd minutes. I thought the character's were OK, I thought some of the ideas in the film were good although I think it's generally known that Verhoeven doesn't deal in subtlety, the first thing he has the invisible Caine do is sexually molest one of his team & then when he gets into the outside world he has Caine rape a woman with the justification 'who's going to know' that Caine says to himself. Then of course there's the gore, he shows a rat being torn apart & that's just the opening scene after the credits, to be fair to him the violence is a bit more sparse this time around but still has a quite nasty & sadistic tone about it. Having said that I love horror/gore/exploitation films so Hollow Man delivers for me, it's just that it might not be everyone's cup of tea.<br /><br />Director Verhoeven does a great job, or should that be the special effects boys make him look good. The special effects in Hollow Man really are spectacular & more-or-less flawless, their brilliant & it's as simple & straight forward as that. There's some good horror & action set-pieces here as well even if the climatic fight is a little over-the-top. I love the effect where Kevin Bacon disappears one layer at a time complete with veins, organs & bones on full show or when the reverse happens with the Gorilla. There's a few gory moments including a rat being eaten, someone is impaled on a spike & someone has their head busted open with blood splattering results.<br /><br />With a staggering budget of about $95,000,000 Hollow Man is technically faultless, I can imagine the interviews on the DVD where some special effects boffin says they mapped Bacon's entire body out right down to he last vein which they actually did because you know everyone watching would notice if one of his veins were missing or in the wrong position wouldn't they? The acting was OK, Bacon made for a good mad scientist anti-hero type guy.<br /><br />Hollow Man is one of hose big budget Hollwood extravaganzas where the effects & action take center stage over any sort of meaningful story or character's but to be brutally honest sometimes we all like that in a film, well I know I do. Good solid big budget entertainment with a slightly nastier & darker streak than the usual Hollywood product, definitely worth a watch.\r\n0\tI wanted to see it because of two reasons. One, it was the remake of High Sierra with Bogart, two, the Bogart part was played by Jack Palance, whom can play dramatic roles with some subtility, as in The Big Knife.<br /><br />But now I wonder why they decided to shoot this remake. The film follows the same plot as Hig Sierra; only here, the actors don't care, the director is lost in his thoughts, and who knows what the producer was thinking. Jack Palance is getting bored looking at Shelley Winters and Shelley Winters is asking herself what she's doing in this film. I don't even want to compare her to Ida Lupino in the same role. And of course, they had to use the dog story again! They surely could have come up with some different ideas. Perhaps the color makes it nice to see the same location where they shot High Sierra, but that definitely doesn't add any quality to the film.<br /><br />It's a waste of time if you've seen High Sierra before. Otherwise, why not see a pseudo-film noir. As for me, I'd rather die than see it one more time...\r\n1\tFreddy Krueger the dream stalker from elm street returns,the great character actor Robert englund is back in this sequel of nightmare 5, dream child.i hope i got the number correctly.there's been so many,and this one is one of the best,especially for the cameos by;Rosanne Barr (then Arnold)tom Arnold,johnny depp,(who did the very first nightmare in 84)alice cooper(singer)you will see Freddy as a tormented child,a teenager who loves pain,and as a family guy(creepy)the effects are very funny and creative,the cast also includes Lisa Zane(Billy's sister) breckin Meyer(road trip)yaphet kotto(alien,live and let die)and Amanda Donahue(father knows best)i was one of the people 3who saw this in 3d,well the ending.i love 3d movies.i missed the first 3d wave in 1953(i wasn't even born yet)the second wave was in 1983.i like all the Freddy movies.this one stands out as one of the better ones not counting the first which was absolutely brilliant,Freddy became the new monster of the 80s and 90s,along with Jason voorhees,chucky,Micheal myers,and leather face.can you imagine a film with all of them?i recommend this to all Freddy fans and horror fans alike.that Freddy is such a cut up.8 out of 10.\r\n0\tI suppose if you like pure action... you'll find it here. I suppose if you find a gorgeous blonde designed to be screwed... find it here. I suppose if you want to find a couple of extra baddies, headed by 1-2 extra, EXTRA baddy bosses who meat a nasty end... you'll find it here.<br /><br />Overall, routine stuff, and the good guys come out on top big time under extra-ordinary circumstances.<br /><br />What I marvel most at... How the good guys armed only with pistols, can kill dozens of bad guys with machine guns who are shooting at them at point blank range... and missing. The goodies even get time to reload their pistols amid the hail of machine guns bullets.<br /><br />Ho-hum!!!\r\n0\t\"This is an immoral and reprehensible piece of garbage, that no doubt wants to be a Friday the 13th (1980) clone. The poster for this movie makes it look like there's going to be some sort of a cross between Jason and Freddy, which is likely to attract movie-goers. There is NOTHING good or entertaining about this movie about this movie. It just makes me sad, just thinking that some people are going to stumble upon Sleepaway Camp II: Unhappy Campers (1988) on video or DVD, and waste their time with this sad, cynical, depressing movie.<br /><br />Angela Baker (Pamela Springsteen) is a camp counselor at Camp Rolling Hills, who hopes that the other campers are as nice as she is, and that they stay out of trouble. Meanwhile, the other campers are realizing that people are disappearing one by one, with Angela making up the excuse that she had to send them home. Could Angela be the killer, who was once a man, who underwent a sex change operation years earlier? Who knows? Who cares?<br /><br />The 1980s was home to a lot of movies that made the cross between the Mad Slasher and Dead Teenager genres, in which a mad killer goes berserk. Some have a plot, some don't, but they're all about as bad as this one. Sleepaway Camp II: Unhappy Campers is 80 minutes of teenagers being introduced and then being stabbed, strangled, impaled, chopped up, burned alive, and mutilated. That's all this movie is. It is just mindless, bloody violence.<br /><br />Watching this movie, I was reminded of the Friday the 13th movies, in which the message for its viewers was that the primary function of teenagers is to be hacked to death. The filmmakers of Sleepaway Camp II have every right to be ashamed of themselves. Imagine the sick message that this movie offers for its teen viewers: \"\"The world is a totally evil place,\"\" this movie tells you, \"\" and it'll kill you. It doesn't matter what your dreams or your hopes are. It doesn't matter if you have a new boyfriend, or a new girlfriend. It doesn't matter what you think, what you do or what your plans for the future are. You can forget those plans, because you're just going to wind up dead.\"\" <br /><br />And the sickest thing is--and by not giving too much away--the movie simply sets up room for a sequel. Well, why not? They've probably and already taken the bucket to the cesspool by making three or four of these movies. I missed out on the original Sleepaway Camp (1983), and, after watching its first sequel, I will hopefully stay away from the other sequels, as well as the original. And for parents, if you know kids who actually LIKE this movie, do not let them date your children.\"\r\n0\t\"A hard to find film which coasts on the still pervasive mythology of Senator Joe McCarthy as a political demon king. Boyle (as Joe) gives a compelling but historically inaccurate portrayal of the Wisconsin Senator, the caricature McCarthy many take as the real one. Meredith, as wily Army lawyer Joseph Welch, who outsmarted McCarthy at the Army hearings in 1954, is very good, as always.<br /><br />In fact, McCarthy and Cohn were quite right in worrying about the appalling security situation in the Army, and the 1954 Army hearings became enmeshed in the smokescreen used by the Army to deflect the investigation away from their security failings, which the committee were investigating, by counter-charging that McCarthy and Cohn were trying to get favours for their staffer, David Schine, whilst in the service.<br /><br />The film is self satisfied agenda driven polemic, based in the pervasive myths which have passed for the truth with many people for decades-that the \"\"red scare\"\" was essentially phony and McCarthy, HUAC etc were always blasting away at the wrong targets, being no more than lying, career ruining publicity hounds, who were trampling over the constitutional rights of startled innocent liberals, who were accused of being security risks/communists.<br /><br />People who know little about the matter still feel confident in repeating misinformation on McCarthy and the \"\"red scare\"\" to this day-Clooney's Murrow hagiography is an example. The misinformation is pervasive, no wonder people have swallowed it. A recent obit of Budd Schulberg in the serious left wing UK newspaper \"\"The Guardian\"\" headlined that the Hollywood writer \"\"named names\"\" \"\"to McCarthy\"\"- perpetuating the lie that McCarthy \"\"investigated\"\" Hollywood as head of HUAC-the truth being that McCarthy was never even a member of HUAC and he had little interest in the politics of Hollywood types-his investigations were confined almost exclusively to arms of the US government.<br /><br />The mythology about the \"\"red scare\"\" being baseless is now completely exploded by recently opened Soviet and US government documents, if anything McCarthy and co underestimated the sheer scale of Soviet and fellow traveller infiltration in the US, but decades of public misinformation about this period will be hard to correct.<br /><br />One day maybe some really brave Hollywood soul will make a movie telling the truth about how many American men and women clandestinely aided the mass murderer Stalin, and worked to impose his vicious system of government on the western world, giving an accurate account maybe of Joe McCarthy's career-but I won't hold my breath. Till then, we have this mythical, drunken lying scoundrel of popular imagination so familiar in the media....\"\"Tail gunner Joe\"\".\"\r\n0\t\"\"\"A Christmas Story\"\" is one of many people's all-time most beloved films. ACS was able to take the viewer to a time and a place in such a way that very few films ever have. It had a sweetness and goodwill to it that is rare.<br /><br />So I awaited (and awaited) its sequel, \"\"It Runs In The Family\"\" . The film was almost released a couple of times, only to be pulled at the last minute. When it finally came out, IRITF was (and is, I guess) a total failure.<br /><br />The sets and cinematography were just fine, but the directing totally, completely missed the mark. The film was nothing more than a cash-flow formula of lazy casting, lazy writing, and disconnected acting.<br /><br />The narrator, Jean Shepard, who was one of America's great humorists and story-tellers, forced upon us a false reprise of the warm wit he used in ACS. He over-emoted, and why he did that I'll never know. He somehow managed to become an annoying, overwrought parody of himself.<br /><br />The writing and acting in IRITF is inauthentic and forced. The actors may have seen ACS, but whatever wit and nuance that was in ACS mustn't have registered at all on any of them. The acting was embarrassingly slapstick and bereft of any of Shepard's dry humor.<br /><br />ACS will always be a real treasure, but to call IRITF a sequel is to insult all of the fans of Jean Shepard and ACS.\"\r\n0\t\"I am really shocked that a great director like Chuck Jones started out making some of the most incredibly boring cartoons I've ever seen. I did not laugh once throughout this short, and it's a Bugs Bunny cartoon, for Christ's sake! Bugs Bunny cartoons are always funny, not boring! Alas, this short turns out to be Good Night Elmer (another incredibly boring Jones short) with the addition of Bugs Bunny.<br /><br />The first warning sign of a dull cartoon is always no gag payoff. Good Night Elmer was boring because it dragged on the same two gags forever with predictable payoff. This cartoon, on the other hand, is afflicted with the second warning sign of a dull cartoon: there's too much dialogue. The cartoon at least has more than two gags up its sleeve, but most of them seem longer than they are thanks to the immense padding of the dialogue. At one point, Elmer finishes eating dinner, and comments, \"\"That was weawwy awfuwwy good weg of wamb,\"\" possibly the most redundant dialogue I've ever heard in a cartoon (characters reading text out loud in the later-era Woody Woodpecker cartoons doesn't count in my book). Even though this cartoon is only 8 minutes long, it feels like 20 thanks to redundant dialogue like this.<br /><br />Elmer's Pet Rabbit was not a fun cartoon for me, but if you've sold your soul to Chuck Jones and are unable to acknowledge that he directed a few clunkers during his career, you might enjoy it.\"\r\n0\tThis is the worst thing the TMNT franchise has ever spawned. I was a kid when this came out and I still thought it was deuce, even though I liked the original cartoon.<br /><br />There's this one scene I remember when the mafia ape guy explains to his minions what rhetorical questions are. It's atrocious. Many fans hate on the series for including a female turtle, but that didn't bother me. So much so that I didn't even remember her until I read about the show recently. All in all, it's miserably forgettable.<br /><br />The only okay thing was the theme song. Guilty pleasure, they call it... Nananana ninja...\r\n0\tI saw this film at the 2005 Toronto International Film Festival. Based on a novella by science- fiction author Brian Aldiss, this film attempts to tell the story of Tom and Barry Howe, conjoined twins who are plucked from their family by an impresario in order to form a rock band.<br /><br />Almost deliberately gimmicky, the film is also too clever by half (if you'll pardon the pun). By mixing genres, styles and moods, the directors (whose previous film was the excellent documentary Lost In La Mancha) lose their way pretty quickly. I was never sure whether I was meant to take it all seriously or not. Flashbacks, dream sequences, it was all just a bit much. Plus, the promised rock and roll just didn't move me. I was reminded a bit too much at times of Hedwig and the Angry Inch, a film I found original and moving. But in this case, the songs just weren't as good, nor were the main characters sympathetic. A more unfavourable comparison would be the similarly disappointing Velvet Goldmine.\r\n1\tFirst time of seeing Buster Keaton's first feature film and I have to admit I liked it a lot and only wish I'd stumbled across it years ago. The Rohauer blurb at the start warns that the Three Ages single nitrate print was rediscovered and salvaged in 1954 just in time before combustion, and many frames that seemed hopelessly glued together were separated. So, it's rocky viewing in places, but I've seen and survived much worse.<br /><br />It would have been OK as the 3 short films but as a take on Intolerance it's inventive and funny from the start to the finish: In the Stone Age with baddie Wallace Beery riding an elephant and goodie Buster riding a pet brontosaurus; In the Roman Age Buster riding a chariot with wheel locks and adapted for sledging, No Parking signs in Latin; In this technological Age of Speed Need and Greed his car beautifully falls to bits at the first hump. Both him and Beery are after the Girl through the ages, a never ending tussle. Favourite bit: As the caveman he gets knocked backward over a cliff edge but still blows a kiss to the camera - an amazing second or two!<br /><br />Great stuff, reaffirming my love of silent film comedy.\r\n1\t\"I watch Cold Case because of the real life experiences depicted. This one was very close to me and touched me deeply, so beautifully handled, thanks, Merideth. All the characters are well developed 3D especially Coop. The material is still difficult to approach, the US is far behind the developed nations of the world. only this kind of honest actual experiential portrayal and treatment makes an impact on the population. of course, not everyone sees things the same way but i am heartened that 3/4 of the men polled in the under 30 crowd voted the same as me 10. you're reaching the hard ones - i will forever reserve the \"\"best episode\"\" place for this episode. Please continue taking chances and accept my heartfelt gratitude.\"\r\n1\tOf course if you are reading my review you have seen this film already. 'Raja Babu' is one of my most favorite characters. I just love the concept of a spoiled brat with a 24*7 servant on his motorcycle. Watch movies and emulate characters etc etc. I love the scene when a stone cracks in Kader khans mouth while eating. Also where Shakti Kapoor narrates a corny story of Raja Babu's affairs on a dinner table and Govinda wearing 'dharam-veer' uniform makes sentimental remarks. Thats my favorite scene of the film. 'Achcha Pitaji To Main Chalta Hoon' scene is just chemistry between two great Indian actors doing a comical scene with no dialogs. Its brilliant. It's a cat mouse film. Just watch these actors helping each other and still taking away the scene from each other. Its total entertainment. If you like Govinda and Kader Khan chemistry then its a must. I think RB is 6th in my list by David Dhawan. 'Deewana Mastana', 'Ankhein','Shola or Shabnam', 'Swarg', Coolie no 1' precedes this gem of a film. 7/10.\r\n0\tBy far the most important requirement for any film following confidence tricksters is that they must, at least occasionally, be able to pull one over on us, as well as their dumb-witted marks, the cops, the mob and (ideally) each other. But this film NEVER pulls this off. Every scam can be seen coming a mile off (especially the biggen!) Neither are they very interesting, intricate or sophisticated. Perhaps Mammet hoped to compensate for this with snappy dialogue and complex psychological relationships. If so, he failed. The lines are alright, but they're delivered in such a stilted, unnatural, stylised way that I thought perhaps some clever point was being made about us all acting all the time... but it wasn't. As for the psychological complexity, the main character's a bit repressed and makes some ridiculously forced freudian slips about her father thinking she's a whore, but she gets over it. I really liked the street scenes though. Looked just like an Edward Hopper painting.\r\n1\t\"To fight against the death penalty is a just cause. Everyone who is sane in Europe would think so. In the USA everything is different. The film seems to demonstrate in a first stage that justice can be won against the racist bigot death penalty craving American justice. A young man is freed from death row thanks to a law professor who went back to defense counseling for this particular case. But the film has a sequel. Justice in the USA is entirely governed by the aim of vengeance. Miscarriage of justice is just the same governed by vengeance. One person in the local Public Attorney Offfice has a young man prosecuted on false charges. This Public Attorney's officer drops the charges after a while and the young man walks out free. But he loses his college scholarship and he is castrated by some vengeful people for whom there is never any smoke without a fire. He hides his shame and swears to get his vengeance. But he also needs to satisfy his sexual needs which are more mental than hormonal for sure but even stronger because mental and no longer hormonal and he can only do that with little girls. He apparently teams with another serial killer who is after the same kind of preys. One day the local cops follow their intuition, guided by some vague circumstantial elements in the assassination of a young girl, and they arrest the young chap we are speaking of. They beat him up and interrogate him for 22 hours with nothing but blows and blows and telephone books and guns and Russian roulette. He confesses. Sent to death row, he asks his grandmother to go get the law professor in Massachusetts who is the husband of the Local Public Attorney's representative that had him falsely prosecuted some years ago and the vengeance is on the rails. It will fail but it shows that as soon as one in the line of justice, police work and other security forces steps off the line of absolute legality, some unjust act is done that can ruin even the best accusation case and that can nourish the worst deepest imaginable thirst for vengeance. To charge someone on circumstantial elements is just as bad as to let circumstantial elements ruin the work of the police or of justice. The best intentions on the police side are ruined by some personal involvement and vengeful intention, just as much as the life of a person can be jeopardized by circumstantial elements inflated to the size of evidence, which in its turn will jeopardize the whole case by being just circumstantial, hence easily discardable, with a good lawyer. The film then is a deep reflection on the necessity to respect standards and regulations all along the police and justice line if we don't want to make a mistake, which in its turn of course does not justify the death penalty since anyway it goes against the deepest belief Americans are supposed to have: \"\"We hold these truths to be self-evident , that all men are created equal, that they are endowed by their Creator with certain unalienable Rights, that among these are Life, Liberty, and the pursuit of Happiness.\"\" (Declaration of Independence) Life is an unalienable Right that was given to man by his Creator, which means no one but the one who gave it can take it away. Only God can take the life of a person away. The death penalty is the arrogant appropriation of a power that we do not have. Even if we do not evoke God, we cannot justify the death penalty except as an act of vengeance, and here the film shows vengeance is the worst possible motivation in the rendition of justice and in the establishment of public peace. If vengeance is pushed aside there is no other justification for this death penalty. And there can always be a mistake in that pursuit not of Happiness but of vengeance.<br /><br />Dr Jacques COULARDEAU, University Paris 1 Pantheon Sorbonne, University Paris 8 Saint Denis, University Paris 12 Créteil, CEGID\"\r\n1\t\"Cannot believe a movie that can be made that good in 1987 and is virtually unknown in the west. Not to repeat other reviews here. The score is very good and moving. Literally it means \"\"Dawn please never comes\"\" - when it comes, the beautiful ghost and the lover will be apart forever. After 24 years, Joel and Leslie still look great. I enjoyed Joel in God of Gamblers and many movies by Leslie including Better Tomorrow.\"\r\n0\t\"I can not believe such slanted, jingoistic material is getting passed off to Americans as art house material. Early on, from such telling lines like \"\"we want to make sure they are playing for the right team\"\" and manipulative framing and lighting, A Love Divided shows it's true face. The crass manner in which the Irish Catholics are shown as hegemonic, the Protestants as peaceful and downtrodden, is as poor a representation of history as early US westerns that depict the struggle between cowboys and American Indians. The truth of the story is distorted with the stereotypes and outright vilification of the Irish Catholics in the story; a corruption admitted by the filmmakers themselves! It is sad that people today still think that they can win moral sway by making a film so easily recognized for it's obvious intent, so far from attempting art. This film has no business being anywhere in any legitimate cinema or library.\"\r\n0\t\"Special effects? Good.<br /><br />Script? Terrible. No plot. No depth. No meaning. This film rendered Superman as a meaningless hero, a hero with no archetype. In the original film, he represented America in the Cold War. Here, he represented nothing but a Hulk.<br /><br />Sure, the actors were fine. Kevin Spacey was a fine choice, among others.<br /><br />This still does not resolve the problem that this film had no depth whatsoever. I cannot see how anyone can come away with anything meaningful from this film, when Superman was, and is, daily created to be a meaningful hero in not only comics but also in people's minds. This was a real waste of money considering how many directions this film could have taken.<br /><br />Just a few instances: Lex Luthor could have been a villain of global corporatism, political domination, totalitarianism, and on and on and on. He was just another goofball Hackman incarnation.<br /><br />And Superman? For what did he stand in this film? Nothing but another hack \"\"savior\"\" figure.<br /><br />Wait until it comes to the dollar theater if you see it at all.\"\r\n0\tI cant help it but i seem to like films that are meant to be scary and are just plain bad. I have personally listed it in my own top 10 worst movies right under creatures of the abyss!. Watch this film and have a laugh just don't expect to see any academy awards for acting. More chance of understanding the film its self. In all honesty though i have seen much worse than this. Plus some maniac cruising round the desert wiping the same people out that just died is that unbelievable that its got to be original. i think its one of those love or hate movies. you can make up your own mind yes its awful but it pulls it off somehow thats why i love it\r\n0\t\"When I sat down to watch this film I actually expected quite a bit, as the plot takes on quite complex issues. Using football as launching pad for the complication also was an interesting approach. Still unfortunately, despite its bravery of dealing with controversial issues as culture clashes between Muslim and western culture, adding generation conflicts and prejudice towards gays/lesbians, it lets you down towards the resolution with a rather simplistic relief to all the suspense built up throughout the film. This leads me to the impression that the makers took on a little too big a task for themselves to tackle, attempting to be more profound then they managed to deal with.<br /><br />However, this does not mean that the film is directly bad, as it's rendering of the conflicts where quite believable and also amusing. The film succeeds in being engaging and entertaining in this matter, but as mentioned above the writers seem to have spun themselves a little too deep. This has led to some quite unrealistic character behaviour towards the end to confront the surging conflicts. By this dropping the ball at a time where the makers could really have shown brilliance taking the film to another level of appreciation.<br /><br />Even if the film does at no point really attempt to be a profound piece of drama, the setting has so much potential in the plot it becomes a disappointment when \"\"the ball drops\"\". This way the film moves from being a good and reflected comedy to a standard cliché that becomes ridiculous in its happy-ending. Nothing is left out in the Hollywood like ending. So even if the story is engaging and one can stomach the large amount of montages, one can't help but roll eyes towards the resolution. Personally I was close to shouting \"\"finish already!!\"\" at the screen.<br /><br />There were some decent acting in the film, and the two young female central characters had some good moments. So did their parents and other bi-characters. However the handsome Irish coach was an embarrassing piece of acting, that lets the film down quite a bit in terms of realism. He didn't even appear very likable, but rather self involved despite his good deeds, which makes the impending conflict between the girls seem a little strained.<br /><br />I give the film a 4, as it was an engaging story and they sought out a nice perspective to approach the subject from. The script and cast had many good believable characters, giving the audience a chance to recognise either themselves or others. Had the let-downs not been this disappointing, I'd easily give the film a 7 or 8. If you enjoyed this film, I'd recommend the film \"\"East is East\"\", which I think is an as good, if not better rendering of cultural conflict, as well as being amusing and engaging.\"\r\n0\t\"December holiday specials, like the original Frosty, ought to be richly-produced with quality music and a wholesome, yet lighthearted storyline. They should have a touch of the mystical magic of the holidays. Basically, they should look, sound, and feel...well, \"\"special\"\" and they should have a decent and appropriate December holiday subtext.<br /><br />So when I saw Legend of Frosty the Snowman in the TV listings, I got my kids (6 and 8) pumped up for it by telling them the story of the original Frosty and passionately relating how much I enjoyed it as a kid. As my wife and kids cozied up on the couch to watch the movie the expectations were high, but 10 minutes into it my kids were yawning and my wife and I were giving each other \"\"the look\"\" and rolling our eyes. After 35 minutes my kids were actually asking to go to bed -- I guess they were fed up with the insensitive language and pointless, disconnected segments. I was actually embarrassed about their (and my) disappointment with this movie.<br /><br />Unfortunately, Legend of Frosty the Snowman is more like a bad episode of Fairly Odd Parents crossed with a worse-than-normal episode of Sponge Bob than a classic holiday movie. Don't get me wrong...those shows are fine and I like them as much as the next guy, but when I watch Fairly Odd Parents or Sponge Bob, my low expectations (for mediocre, off-color, zero subtext, mind numbing episodes) are always satisfied.<br /><br />We picked out some good books and spent the rest of the evening reading together. A much better choice than the embarrassingly bad Legend of Frosty the Snowman.\"\r\n1\t\"I must admit that at the beginning, I was sort of reticent about watching this movie. I thought it was this stupid, little, romantic film about a French woman who meets in the train an American and decides to visit Vienna with him. I was not actually enchanted about this kind of script, since it continued to make me believe that it is just a movie. Still, I watched it! And I was amazed...\"\"Before Sunrise\"\" is one of the few films who dare to talk in a rather philosophical way, wondering about the fact that in the moment of our birth, we are sentenced to death, or that it is a middling idea that fact that a couple should rest together for eternity, or that, we, humans, can afford sometimes to live in fairy-tales. <br /><br />The ending was wonderfully chosen (we do not know if they will meet again in six months, at six o'clock, in Vienna's station) -in our optimism, we sincerely hope so. The actors acted in a very good manner, so, that, I began to believe that I, myself could live a love-story just like this.\"\r\n1\tTo a certain extent, I actually liked this film better than the original VAMPIRES. I found that movie to be quite misogynistic. As a woman and a horror fan, I'm used to the fact that women in peril are a staple of the genre. But they just slap Sheryl Lee around way too much. In this movie, Natasha Wagner is a more fully-realized character, and the main bad guy is a gal! Arly Jover (who played a sidekick vamp in BLADE) is very otherworldly and deadly. Jon Bon Jovi... okay, yeah, no great actor, but he does OK. At least he doesn't start to sing. Catch it on cable if you can. It's on Encore Action this month.\r\n0\tDespite some mildly thought-provoking oddities in the script and the film's overall curiosity value, Fury of the Wolfman emerges as a dull, uninteresting excursion into lycanthropy, saved only by the statuesque presence of villainess Perla Cristal. The rest of the players, including the hammy Naschy, are a complete write-off (though admittedly none are helped by often atrocious dubbing). Although the screenplay packs in enough variations on werewolf/Frankenstein/Dr Moreau themes to flesh out a dozen movies, the plot is so unevenly developed, the characterizations so feeble and the dialogue so verbosely ridiculous (at least in the English version), that any latent interest in the turgid proceedings is soon quashed.<br /><br />Zabalza's direction seems jerky, even amateurish. His staging is clumsy and ineffective. He is not helped by Villasenor's over-bright lighting. Even promising sets are so unatmospherically photographed that the director's few attempts to give the audience a fright are signaled far in advance<br /><br />Other credits fall into a similar pattern of ineptitude, though the stridently over-emphatic music score and the laughably crude, totally primitive special effects deserve special condemnation.\r\n0\t\"The only way this is a family drama is if parents explain everything wrong with its message.<br /><br />SPOILER: they feed a deer for a year and then kill it for eating their food after killing its mother and at first pontificating about taking responsibility for their actions. They blame bears and deer for \"\"misbehaving\"\" by eating while they take no responsibility to use adequate locks and fences or even learn to shoot instead of twice maiming animals and letting them linger.\"\r\n1\t\"Trio's vignettes were insightful and quite enjoyable. It was curious seeing so many soon to be famous actors when they were very young. The performances and attention to detail were wonderful to watch.<br /><br />Observation. In film it isn't necessary that source material be in alignment with the contemporary era to be interesting or worthwhile. \"\"Small morality\"\" storytelling is quaint (or coy) only in the eye of the beholder--thankfully. Story content--well told--can overcome it's time, subject or place.<br /><br />Ironically, there are quite a few contemporary films today that have not overcome the conventions or cutting edge mores of the present era. Inserting \"\"small morality\"\" content--occasionally--might provide a dimension lacking.\"\r\n1\tThis was a really cool movie. It just goes to prove that you don't need silly litle things like continuity and scripts to make a movie. It traverses continents in seconds, people get shot and nothing happens to them, swords set on fire, samuari fight on sinking galleons, David Essex is the epitome of slimey villainy and John Rhys Davies is just the dude. I enjoyed this movie but I like s**t movies, this is the perfect example of a very s**t movie that just KICKS ASS. If you like Battlefield Earth you'll love this film, its swashbuckling, its fast, its silly, its samuaraitastic!!!!!!!!!!!!!!!!<br /><br />It also looks as if it was made in 1972\r\n0\tI saw this last week after picking up the DVD cheap. I had wanted to see it for ages, finding the plot outline very intriguing. So my disappointment was great, to say the least. I thought the lead actor was very flat. This kind of part required a performance like Johny Depp's in The Ninth Gate (of which this is almost a complete rip-off), but I guess TV budgets don't always stretch to this kind of acting ability.<br /><br />I also the thought the direction was confused and dull, serving only to remind me that Carpenter hasn't done a decent movie since In the Mouth of Madness. As for the story - well, I was disappointed there as well! There was no way it could meet my expectation I guess, but I thought the payoff and explanation was poor, and the way he finally got the film anti-climactic to say the least.<br /><br />This was written by one of the main contributors to AICN, and you can tell he does love his cinema, but I would have liked a better result from such a good initial premise.<br /><br />I took the DVD back to the store the same day!\r\n0\tAn interesting idea (four African American women crushed under society's boot heel take their revenge by robbing banks) is ruined by F. Gary Gray's horribly slow direction and an excruciating script (by Takashi Bufford and Kate Lanier) full of unintentionally funny moments. Instead of delivering a pointed commentary about the role of urban women struggling to stay afloat in a world where men cruelly abuse and humiliate them, Gray, Bufford and Lanier prefers to pummel their unsuspecting audience with highbrow notions of operatic tragedy. It's melodrama at its worst. Gray has his actors linger over every tired line and John Carter's lazy editing refuses to pick up the slack, choosing instead to keep his camera trained on the performers' bemused faces. And bemused they are: although actors such as Jada Pinkett, Kimberly Elise and Vivica A. Fox have some raw talent (Queen Latifah is the fourth and as an actress she's an excellent rapper), they need a surer hand than Gray's to guide them and as a result they come off as shrill and uncomfortable in front of the camera. Steer clear.\r\n1\tMaslin Beach is a real nudist/naturist beach south of Adelaide, on the Fleurieu Peninsula, in South Australia. It is also the name of an Australian film that used the beach as a location.<br /><br />Maslin Beach is labelled a romantic comedy. This could be slightly misleading, as it is not a 'hilarious' film, nor is it really romantic in the traditional sense, but it does have light-hearted moments. Much as life itself, there are also moments of sadness too. It is also entirely shot at the nudist beach mentioned above, and nudity runs throughout the length of film. The viewer quickly learns to accept this as normal, and concentrate on the plot, not the copious amount of flesh.<br /><br />Simon and Marcie (Michael Allen and Eliza Lovell) arrive by car at a beach-side car park. They take their belongings to the beach, and while they are walking, a voice-over from Simon talks about his confusion about what real love is. The rest of the film is an exploration of this, framed by one complete day at the beach. The basic story is of what happens to Simon's love life, but there are also many other characters highlighted in several separate vignettes.<br /><br />When they arrive at the beach, both Simon and Marcie appear bored with each other. Marcie sees them as a 'Romeo and Juliet' romantic couple. Simon is just bored with it all. Next, we are introduced to Gail (Bonnie-Jaye Lawrence), Paula (Zara Collins) and Jenny (Jennifer Ross). They are walking down the beach together discussing Gail's chances of finding the 'perfect' man, aided by the 'powers' of a necklace that brought good luck to her Grandmother. However, there are many more interesting people on the beach, not all of them 'attractive' and young (part of the realism of this film).<br /><br />To service the beach's patrons there is a flatulent, short-sighted ice-cream salesperson with a van. This is Ben (Gary Waddell), who is a friend of Simon, and is also his unofficial counsellor. I would think that this character is the main comic element. It is hard to say though, as there is nothing about Ben that would make you laugh aloud, unless you were intoxicated, male and very young! Maslin Beach does have a major redeeming feature though, and that is that it does not dwell too long on any one subject. As the quality of acting is variable, the script is suspect and everything about Maslin Beach is cheap, the lack of continuity is a positive boon. In fact, there is something about this film (not the nudity) that I find appealing. It is hard to define what it is, but it could be something to do with its bluntness, and downright 'Aussie' attitude to carnal matters.<br /><br />The camera work in Maslin Beach deserves a mention. Sometimes it is very good, with some stunning static shots and 'pans' of the beach, cliffs and a sunset. As nudity is a major factor in this film, framing is an important aspect of the camera work. There is no sense of gratuity in the framing, meaning that the framing is done so that the camera does not dwell on 'private' body parts. This helps to ease any sense of viewer discomfort from being within the subject's 'personal space', and makes the film more tasteful. Not an easy task, given the location for filming.<br /><br />Maslin Beach is neither a 'skin flick' for post-pubescent, testosterone charged males, nor a 'Mills and Boon' romance for under-appreciated women. Maslin Beach does not seem to fit anywhere in genre. The actors are not 'attractive' in the Baywatch sense, and are just 'normal' people that you would see on the beach anywhere. It does not have a message to put across and it would not even act as a tourism advertisement, other than perhaps to Naturists. Apart from the Australian accent, the filming could have been in any sunny country. What makes this film distinctly Australian is the fact that it is pointless (cinema verite?), and only Australian Cinema, and other medium sized National Cinemas, could consider such a rash option. At the same time, these medium sized cinemas have room for experimentation in the quest for identity, and a 'flop' is not going to damage their reputation too much. It is always possible, given that Maslin Beach is now a collector's item, that the film might become internationally popular, but it is very unlikely.<br /><br />During this critique, I have been sounding highly negative, at times, about Maslin Beach. This is not the real position, as I found the film very easy to watch. I enjoyed it as a reflection of near reality and real people (and problems). The problems confronted in the film are those of the everyday, and a little low on spectacle. This does it no harm in my view, and I wish that more films dealt with the everyday like this. There is a connection here with the cinemas of Europe, and with French film in particular. They rarely deal with major disasters or catastrophes, but with the everyday. Hollywood is in direct opposition to this, and rides the crest of the hyper-real action/drama/angst wave. The pace too, is much faster in Hollywood, but it is not reality. Maslin Beach is not exactly 'Jacques Tati' either, but it is on the right track, even if it does ignore issues of multi culturalism, equality, gender orientation and so on, that are of such importance in current cinema. I am sure that you will either love or hate this film, with little room for a middle ground.<br /><br />\r\n1\t\"\"\"Stairway to Heaven\"\" is a outstanding invention of movie making, probably never duplicated. I rank it with \"\"The Wizard of Oz\"\" and \"\"African Queen,\"\" although it is a totally different type of movie than \"\"African Queen.\"\" \"\"Stairway to Heaven\"\" is a psycho-drama that uses performance concepts and technical effects that, to my knowledge, are totally unique. <br /><br />For example, there is the combination of B&W and color footage - as in \"\"Oz,\"\" but the significance of the contrast goes way beyond the simple - but beautiful - effect achieved in \"\"Oz.\"\" In \"\"Stairway\"\" the purpose and effect of the contrast can only be described as powerful.<br /><br />Another brilliant aspect of \"\"Stairway\"\" is the concept of \"\"time\"\" and how it is used here. How could anybody have conceived of a better way to make time stand still  literally? And then there is the Stairway itself!<br /><br />If you have any imagination at all, you will agree with me. \"\"Stairway to Heaven\"\" is a true gem.\"\r\n1\tAs someone who was born to a German mother and English father (who spent five years in a prisoner of war camp) I come from unique position. One of having to deal with the various Nazis on one side of the family and the victors of WW2 on the other. This miniseries cannot delve into every single part of Hitler's psyche and must give the viewer a general flavor of the situation at the time and as best as one can Hitler's state of mind. In this the series does quite well. Carlyle is very good as is O'Toole, I would however liked to have got more information on the relationships with others in party Because Hitler did not do anything on his own. He had people around him that followed him to the letter often without question and certainly without question later on in his murderous career. What was going through Goebbels, Goring and Hess's mind? It would have been helpful to see more of these relationships. But I hope it will make people research the subject more. It might also make people understand why someone like Saddam Hussein cannot be allowed to continue in power.\r\n1\tAh, I loved this movie. I think it had it all. It made me laugh out loud over a dozen of times. Yes, I am a girl, so I'm writing this from a girl's perspective. I think it's a shame it only scored 5.2 in rating. Too many guys voting? It was far above other romantic comedies. Just because I'm female I don't enjoy all chic flicks, on the contrary I prefer other genres. Romantic comedies tend to be shallow and not as funny as they meant to be. But like I said, this movie had it all, almost, in my opinion. Great script, good one-liners, fine acting. Although Eva Longoria Parker's character reminded very much of Gabrielle from Desperate Housewives, but so what? It was awesome. I will keep this film for rainy days, days when I feel low and need a few laughs.\r\n1\t\"Theodore Rex is possibly the greatest cinematic experience of all time, and is certainly a milestone in human culture, civilization and artistic expression!! In this compelling intellectual masterpiece, Jonathan R. Betuel aligns himself with the great film makers of the 20th century, such as Francis Ford Copola, Martin Scorcese, Orson Welles and Roman Polanski. The special effects are nothing less than breathtaking, and make any work by Spielberg look trite and elementary. At the time of it's release, Theodore Rex was such a revolutionary gem that it raised the bar of film-making to levels never anticipated by film makers. The concept of making not just a motion picture featuring a dinosaur, but adapting an action packed, thrilling detective novel, co-staring a \"\"talking\"\" dinosaur with a post-modern name such as \"\"Theodore\"\", and an existential female police officer changed humanity as we know it. The world could never be the same after experiencing such magnificent beauty. Watching Theodore Rex is much akin to looking into the face of God and hearing Him say \"\"you are my most beloved creation.\"\" This is one of the few films that is simply TO DIE FOR!!!\"\r\n0\t\"I'm beginning to see a pattern in the movies I give a 1 to. They are almost all movies that my wife made me watch. Maybe I should stop having faith in her taste in movies. Anyway, this is typical drivel aimed at pre-teen girls but done even more poorly than usual. Once again, the writer broke the cardinal rule of any movie. He/she made the main character unlikable. She starts off by being a complete b*tch to her friend at the beginning, and then finds out when she becomes 30, that she's basically a sh*tty person (having affairs, etc.). Why the F would we feel for this person? OK, let's say we can get past that. Jennifer Garner is about as far from attractive as you can get without having some sort of deformity. I don't know if it's her or the writer's fault, but her character goes well beyond my threshold for annoyance. Here's a tip for future filmmakers: 13 year olds are NOT entertaining, they're annoying. Far and away the most embarrassing moment in the movie came when they danced to \"\"Thriller\"\". Holy crap that was painful. It showed her practicing that dance at the beginning. That explains why she knows it, but an entire club full of people?!? Argh!!! The Macarena would be more believable! All of a sudden she's completely incompetent and has no clue how to do her job and no one notices? At least Tom Hanks' character on \"\"Big\"\" had a job that made sense to a child. These body-switching/child becoming adult overnight movies are really getting out of hand, and this is by far the worst one yet.\"\r\n0\t\"I wasn't really fond of the first \"\"Cube\"\" movie. It was a good idea, but the annoying acting and characters always kept me from liking it too much. Didn't really feel the need to see its sequel but when I heard they were making a third movie that would act as more of a prequel to the original. I was intrigued, thinking that maybe they would fix some of the original's problems and provide us with a memorable cast of characters. Well I thought wrong.<br /><br />\"\"Cube Zero\"\" starts well enough by introducing us with the two characters in charge of watching and maintaining the never-ending maze of traps that plagues the people in the Cube. The filmmakers succeed in providing a sense of mystery with the establishment of the two men's daily routine. Several questions are created from it, concerning the reason why people are send there and also the true nature of the ones who run the entire operation. All of which are left entirely to the viewer. The acting was a bit weak but all in all the movie's first half moved relatively well.<br /><br />With the story moving on, one of the two \"\"watchers\"\" begins to develop serious doubts about what he is doing. And later decides to go and help a group of the people trapped. Here is where everything rapidly starts to dissolve into dull cheese.<br /><br />Sent by the people who run the Cube program we are introduced to the character \"\"Jax\"\". Along with his two underlings play a major reason as to why this movie is failure. To start of \"\"Jax\"\" looks and talks more like a third rate villain taken directly from a James Bond movie complete with the ever \"\"popular\"\" glass eye, that alone ruins any atmosphere created by the first half's relatively nice pace. Whats more is that it begins to feel more like a comedy rather than a serious movie. With some incredibly corny lines, perhaps the screenwriter got bored and didn't care. The acting itself degrades to a further low when the former \"\"watcher\"\" meets the group in the Cube. The entire interaction is painful to watch as is everything else following it.<br /><br />Again failing to impress on anything but weak characters, dialog and acting \"\"Cube Zero\"\" is a waste of time for those searching for a good horror movie.\"\r\n0\t\"It wasn't the most pointless animation film experience ever, but it certainly can't be admired as much as it tries to be good. Combining Dreamworks animation and computer graphics, this is the story of a mustang, later named Spirit (Matt Damon, providing the first person narration), and his journey through across the frontiers of the Old West. Basically he is born free amongst all the other horses in the beautiful countryside, then he is kidnapped to be used as a saddle horse, he manages to throw off all who try to ride him. However when he escapes his cage, along with Little Creek (Daniel Studi), the two of them form a friendship, oh, and he obviously has a thing for Little Creek's female horse. In the end, after a few more escapes, being chased by The Colonel (James Cromwell) and his men, and making a final big leap across a gorge, Little Creek lets Spirit go, and he also releases his female horse, and they run home to their countryside and fellow horses. Also starring Chopper Bernet as Sgt. Adams, Jeff LeBeau as Murphy/Railroad Foreman, John Rubano as Soldier, Richard McGonagle as Bill and Matthew Levin as Joe. I was expecting to see the horses talk in this film, but it turns out to be more like a Dumbo thing throughout, and the songs by Bryan Adams aren't the most engaging, but it isn't a terrible film. It was nominated the Oscar for Best Animated Feature, and it was nominated the Golden Globe for Best Song for Bryan Adams' \"\"Here I Am\"\". Okay!\"\r\n1\t\"I first saw this version of \"\"A Christmas Carol\"\" when it first appeared on television. I actually anticipated seeing the film when it was advertised and it more than lived up to my expectations. I have now purchased the DVD and plan to watch it every year. With the exception of \"\"It's A Wonderful Life\"\" I consider this version of \"\"A Christmas Carol\"\" one of the best Christmas movies ever made. George C. Scott is excellent and a superb cast led by Roger Rees surrounds him! Scott proves once again that he is one of finest actors of our time. Scott has the artistic talent and acting ability to play any role and keep the character unique to himself. How can someone be remembered as both Patton and Scrooge? Scott does so easily. The direction is marvelous with the fine sets, costumes and music that give the movie a special feeling of the time, place and era depicted. You will simply love this movie and will place it among your favorites to watch during the holiday season.\"\r\n0\tThis is the most cliche ridden and worst romantic comedy I have ever seen. Every scene is cringe worthy and the two lead actors - Corey and Danny are soo annoying. Corey is very dumb and naive and should have never listened to Danny's false promises.<br /><br />Neve Campbell and the killer from Urban Legend are the only redeeming qualities in this poor attempt of a film. Danny (Dean Paras) looks in his late thirties and the girl he's trying to bed - Corey looks as if she's still in college.<br /><br />Here in Australia, this film is called Too Smooth; there is nothing smooth about this film at all. 1/10 Avoid\r\n0\tSadly it was misguided. This movie stunk from start to finish. It was hard to watch because I used to watch Clarissa Explains It All every day on Nickelodeon. I LOVED her. Then the next thing I found she did a spread in Maxim and she was gorgeous! I haven't really heard anything about her until I watched this movie on accident. I couldn't believe she would even let something like this be seen with her name all over it. Everything about it was wrong but it still looked like someone somewhere in the team was trying really really hard to save a sunk ship. Too bad.. I hope she continues to act and I would love to see her with a real cast in a real movie.\r\n0\t\"Because of the 1988 Writers Guild of America strike they had to shoot this episode in 3 days. It's pretty much crap, consisting of repeat cut + pasted clips from Season 2 and was described by its writer, Maurice Hurley as \"\"terrible, just terrible.\"\" <br /><br />Why the producers couldn't just wait to shoot something decent who knows. I'm guessing because of the strike the production ran out of money and could only release a flashback episode or maybe Roddenberry was too sick at the time to be able to veto this half-assery. This episode also marks the final appearance of Diana Muldaur (Dr. Katherine Pulaski) on the series.\"\r\n1\t\"I loved this movie. It was so well done! Great acting and drama and historically accurate. I love Romy Schneider movies. This one rocks, not as great as Sissi but still rocks! <br /><br />And Scorpiolina,she commented and said french dubbing. Well this is originally a German movie not french. So yea. Second of all there was a plot, maybe your not familiar with history. Oh and her mother played the part of her governess, not her teacher. And the storyline was actually not Cinderella but Queen Victoria, maybe u missed that detail.<br /><br />But anyway.... yea the history in this movie is great, I love historical movies and Queen Victoria is very fascinating! I love all the historical stuff. Like that guy that was trying to manipulate her mom. And when she ran away and met her future husband and he showed her the \"\"new type of dance\"\" waltzing. When waltzing was new it was considered kinda scandalous because the couples dance so close. Yea her governess was like oh my god!<br /><br />And also the clothes, I love the clothes. The styles are great, hoop skirts are awesome. And of course Romy always looks very pretty.\"\r\n0\t\"I really felt cheated after seeing this picture. It felt like I sat watching this movie 101 minutes for nothing. I don't understand what they were thinking when they made this. It hardly gets into Jeffrey Dahmer murdering and it has no ending. It felt almost like they were leaving this movie open for a sequel. It was like watching a television episode of the Sopranos. It ends suddenly, and you know there's going to be another episode next week. It also felt like I just watched part 1 to a two part movie. There are many possibilities for what went wrong here; they got lazy, they ran out of money, they didn't know the rest of the story, they wanted to make a Dahmer 2. After seeing this movie they all sound very accurate. I was watching Jeffrey Dahmer walking through the woods. All of a sudden I hear this music playing, then writing comes on the screen and says how Dahmer served 2 years of his sentence and was attacked by a fellow inmate and killed at the age of 34. Wow, he goes from a walk in the woods to his death in jail. How about showing how he got there. How about showing Dahmer's trial. How about showing some more detail. I can't even explain what happened in this movie because it jumped all over the place. I actually found myself saying in disbelief, \"\"That's it, that's the end?\"\" I want to conclude this review by saying there is still a good Dahmer movie yet to be made. To the filmmakers I'd like to say, if you're going to do it, do it right.\"\r\n1\tThis film lingered and lingered at a small movie theater in town, and the word-of-mouth buzz got me to see it. A comedy about disabled people - the subject matter keeps lots of people away from a funny and heart-warming film.\r\n1\t\"It took us a couple of episodes to \"\"get into\"\" Dark Angel as a story and a series, since we were transitioning from The Sopranos, a very different mentality framework. But, once we got with the gist of the series, we were very quickly hooked. It's a shame that the series ended just when it was just starting to past good into the excellent category: Dark Angelwas much more than your average TV series. It kicks ass and rocks as far as action goes, but the interactions of the characters and societal reactions to \"\"mutants\"\" reminds us of the constant prejudices that we face (and make) everyday. That the story is set in the future keeps the mood surreal and prevents the anti-discrimination message from being rubbed in our faces (hence not ruining the \"\"fun\"\" for those who don't like to be lectured during entertainment), but every event and human/societal interaction remains relevant to the present. We all make judgments, face our own prejudices, but, in the end, the question of who you are lies in: do you sit back and shut your mind to it, or do you get up and do something about it? For those who have no choice but to fight, for survival or justice, this series empowers them. For those who've never had to face the question, this series \"\"sneaks in\"\" that message under the guise of pure action entertainment. It is much more well-made and well-written than most TV series; I'm highly disappointed it ended before it could really kick into high gear.\"\r\n1\tThis could be difficult to for some people to get into, being used to Hollywood production styles. The directing is uninspired, apparently simply a filming of the stage set-up, and the audio quality is bad here and there (the rustling of people's clothes occasionally competes with their voices, etc.).<br /><br />My friends and I started watching without knowing what to expect, and the first scene almost put us off. It seemed very stagy and cheesy. Then we picked up on the tone of the content, and really started to enjoy ourselves.<br /><br />It is very funny, despite some corniness. Definitely give it a chance if you appreciate great dialog. Also, Helena Bonham Carter is adorable, of course.\r\n0\t\"What a poor image of Professional Police Officers is displayed on the Television in the watching of this alleged Reality show. One can only hope that the actual reasonable suspicion that leads to probable cause that leads to the totality of the circumstances involved to make a \"\"stop\"\" , then the \"\"Pat Down\"\" of the outside of one's Garment, then to be able to articulate why the officer went into someone's pocket and retrieved contraband, was cut out of the scenes, because if it wasn't, the arrest in most places are going to be tossed, should they even get passed a supervisor. A report of a warrant over the radio does not constitute the actual existence of the warrant unless the person dispatching has the original warrant in hand. If the dispatcher is reading from a computer printout, it is good enough for an arrest, but it does not necessarily mean the warrant is still in effect. Since I haven't seen a Dis-claimer from CBS (I may have missed it), CBS could be in trouble.\"\r\n1\tJackie Chan name is synonomus to stunts. This movie never let you down.The opening best chase scene and last roll down scene from the pole is so risky than one wonder ,if he knows the meaning of fear.This movie comes very close to Jackie's best which is PROJECT A.But the main difference being that PROJECT A contains three stars where as in this movie Jackie carries the film entirely on his shoulders.This is perhaps the main reason that this movie made jackie an biggest martial arts star followed by Bruce Lee.The film has nice comic touches too. What makes this film work is Jakie's ability to show his venerable side which his in contract to the typical martial arts action hero.This movie was followed by a sequel which was good but was quite tame in comparison to its predecessor.\r\n0\tI heard many stories about this film being great... Well, I took my chance when I saw it for a cheap price at Ebay last month.<br /><br />I watched it, and I have only a few comments about it:<br /><br />1) Terrible story-line, 2) Terrible acting, 3) Bad fighting-scenes...<br /><br />I never seen any worse movie in my life so far!! When the storyline is bad, than at least make the fights something more interesting. But BOTH are done ridiculously bad...<br /><br />* The only positive thing about this movie (in my opinion) is Nikki Berwick. God, she looks nice in this movie.<br /><br />That's about it...\r\n1\t\"Reign Over Me is a success due to the powerful work by Adam Sandler and Don Cheadle. While comedic actors going dramatic has been seen as somewhat of a distraction, Sandler is no stranger to playing more serious roles. Most of the characters he portrays have an unstable temperament and a vulnerability that can burst at any moment. He might even be typecast for characters with such hidden anger problems. However, this performance has some considerable dramatic weight, unlike his roles in less comedic fare like Punch-Drunk Love and Spanglish.<br /><br />In the film, Alan Johnson (Cheadle) runs into his old college roommate, Charlie Finerman (Sandler), whom he hasn't seen in several years. Five years before, Charlie suffered the overwhelming loss of his wife and three daughters in a plane crash. Charlie barely even recognizes Cheadle's character due to the repression of his memories and consequent reclusive childish lifestyle since the accident. It isn't until Alan persists in engaging him in conversation that Charlie remembers who he is. Their renewed relationship that follows will allow Finerman to have a friend who doesn't speak about his loss, eventually enabling him to confront the thoughts and feelings he has suppressed on his own terms.<br /><br />Though writer-director Mike Binder doesn't show much sense of an individual style and some of his shots and transitions are a bit awkward, he does have a knack of getting decent to great performances from his actors while being a talented and funny writer. He shot this film with a digital camera, as more and more filmmakers are doing today, enabling the crew to shoot the night scenes with limited lighting. This kept the colorful backgrounds of New York City in focus, but resulted in creating frequent digital grain, which resembles blue specks scattered and moving on the screen.<br /><br />Almost every main character in Reign Over Me gives a great performance. Jada-Pinkett Smith and especially Liv Tyler are memorable in their respective roles as a frustrated wife to Cheadle's character and a psychiatrist. However, it is Sandler and Cheadle that give some of their finest work to date. They completely owned this movie. Sandler actually plays a character that doesn't outwardly resemble or act like himself at all, partially credited to his Bob Dylan-esquire wig. Though Cheadle's character has more screen time than Sandler, they both should be considered to be leading roles, as they equally support and help each other throughout the film.<br /><br />Music also plays a great part in this film, especially the title song \"\"Reign Over Me,\"\" or \"\"Love, Reign O'er Me\"\" by The Who, and later covered by Pearl Jam. In one of the most powerful moments of the film, Binder shows Sandler using music to shut out his feelings and memories, but this particular song provokes such intense emotion that rather than diminishing his anger, it incites his emotions. All an all, Reign Over Me is an enjoyable, sad, yet many times funny film, driven by its amazing leading performances.\"\r\n0\t\"I have to admit when I went to see this movie, I didn't really have high expectations. But even with my low expectations I was totally and utterly disappointed...<br /><br />Basically Luke Wilson is a hot shot who tends to go out with slightly crazy girlfriends. There's slight mention of a girl stalking him but that's pretty much it for that character. Which i don't quite mind cause it would probably be just as underdeveloped as the rest of the movie.<br /><br />So while on a subway Rainn Wilson (who i actually liked before this movie) convinces him to talk to a \"\"hot\"\" girl, Uma Thurman. This is strange to say the least, as everyone can clearly see that Uma Thurman does not belong under the category of \"\"hot\"\".<br /><br />Rainn Wilson's performance is also far from \"\"hot\"\". Normally I'm all for his acting, but even he couldn't salvage this movie. His character was jumpy, unrealistic and rather annoying. You could never tell if the writers were trying to make him the comical token closet gay guy, or just desperate. It was almost painful.<br /><br />But anyway, someone steals her purse as she goes to leave the subway, and Luke Wilson being the charming savior he is runs after the robber. Now we all know that Uma Thurman is the superhero, or \"\"G-Girl\"\" as they like to call her in the movie. It still baffles me as to what the \"\"G\"\" stands for, but we'll leave that for the message boards to debate.<br /><br />The sex scenes I assume are supposed to be funny, but I find myself asking who has sex like that? They nearly throw the bed through the wall because of Uma Thurman's \"\"passion\"\" let's say. It makes my head hurt, but not in the \"\"I'm thinking really hard to understand this\"\" way.<br /><br />When Uma insults Anna Faris, calling her a \"\"whore\"\" I had no debate with that. Apart from the fact that she can't choose movies properly, she can't act and relies souly on the fact that she's blonde and typical.<br /><br />Overall I would've walked out of the theater if i hadn't paid $8.75 to see it. The characters are typical and have absolutely no chemistry, especially Uma Thurman. Someone should let her know that just because you move your head a lot doesn't mean you're acting.<br /><br />Also, the script and storyline could've used either a lot of work or a match and some lighter fluid. I actually started to feel embarrassed for the actors, and their dying careers. Overall, if you value your money, and your self respect do NOT waste your time with this pathetic attempt at a movie.\"\r\n0\tExceedingly complicated and drab. I'm a bright guy, but this was just too much for a tired brain. It would really benefit from a few early clues as to who these people are and what they are doing. Probably better for the US market. GC himself hinted that this alone did not supply his Oscar and you can see why.<br /><br />Still the sand dunes are pretty. The nail pulling is nasty. The attorneys drunk dad is a mystery. The cricket is good to see.<br /><br />Very difficult to write the required ten lines on this, despite it being over 2 hours long. Thank heavens they shortened it. Admittedly we don't get to the pictures much, but the last film we saw, Walk the Line, was 10 times better and I don't really like Johnny Cash. My wife says George still looks good with the beard and a few extra pounds so there's that.....am I nearly there yet ?<br /><br />How about now\r\n0\t\"Oh a vaguely once famous actress in a film where she plays a mother to a child . It`s being shown on BBC 1 at half past midnight , I wonder if ... yup it`s a TVM <br /><br />You`ve got to hand it to TVM producers , not content on making one mediocre movie , they usually give us two mediocre movies where two themes are mixed together and NOWHERE TO HIDE is no different . The first theme is a woman in danger theme cross pollinated with a woman suffering from the pain of a divorce theme which means we have a scene of the heroine surviving a murder attempt followed by a scene having her son Sam ask why she divorced ? And being a TVM she answers that the reason is \"\" That people change \"\" rather than say something along the lines like \"\" I`m a right slapper \"\" or Your daddy cruises mens public toilets for sex \"\" as does happen in real life divorce cases . And it`s young Sam I feel sorry for , not only are his parents divorced but he`s as thick as two short planks . Actually since he`s so stupid he deserves no sympathy because he`s unaware that a man flushing stuff down a toilet is a drug dealer , unaware that you might die if someone shoots at you , and unaware that I LOVE LUCY is painfully unfunny . If only our own childhoods were so innocent , ah well as Orwell said \"\" Ignorance is strength \"\" . Oh hold on Sam is suddenly an expert on marine life ! Is this character development or poor scripting ? I know what one my money`s on . And strange that Sam the boy genuis hasn`t noticed that if the story is set in 1994 then why do people often wear clothes , drive cars and ride trains from the 1950s ? But as it turns out during a plot twist it`s the mother who`s the dummy . Then there`s a final plot twist that left me feeling like an idiot for watching this\"\r\n1\t'How To Lose Friends & Alienate People' is a superb film. A hilarious film from start to end. A lovely entertainer. Enjoyed it. Thumps Up! <br /><br />Performances: Jason is fantastic. He's a treat to watch him from start to end. Jeff Bridges is excellent as the boss. He's a Legend. Megan Fox looks amazingly hot, and deliver a good performance. but dude, She's so hot man! Anderson is delightful. She doesn't look old at all, still hot indeed. Kristan Dunst looks lovely and does a pretty good job. Others are also pretty good.<br /><br />'How To Lose Friends & Alienate People' is a excellent entertainer. Don't miss this flick!\r\n0\t\"When you see Boris Karloff and Bela Lugosi as co-stars, you expect to find a well done horror movie, but this was actually quite different, representing as it did what I would describe as an early effort at science fiction. Karloff and Lugosi both play scientists (Rukh and Benet respectively) - competitors to an extent, until Rukh wins Benet over with a demonstration that proves his great theory. The science here was - to say the least - a bit rough around the edges (thus science fiction, with the emphasis on the fiction) but somehow Rukh harnesses some sort of ray from Andromeda that allows him to look at the earth \"\"several thousand million years ago.\"\" In that pre historic time, a huge meteorite slammed into Africa, leaving deposits of a substance the scientists call \"\"Radium X\"\" - which can heal and destroy. A large portion of the movie is set rather tediously in Africa, on a search for the meteorite deposits, which Rukh eventually finds and harnesses to create a great weapon, unfortunately infecting himself with some sort of disease that makes him a great weapon as well.<br /><br />Karloff and Lugosi were both pretty good here. Lugosi pulls off a role in which he's the good guy pretty well, although I frankly found him a bit unconvincing - especially during the scenes set in Africa. The story also plodded along a bit, and while it held my attention it didn't captivate me. Given that this is really a sci-fi rather than a horror flick, and that sci-fi was in its very early stages, I suppose the movie needs to be cut a bit of slack. It was OK - nothing more, but also nothing less than that. 4/10\"\r\n0\t\"Where to begin. This movie started out as something that seemed like a rip-off of \"\"Darkness Falls\"\". An old , disfigured woman living in the woods, giving kids presents for their teeth. Sound familiar? Then it changes. In \"\"Darkness Falls\"\", the tooth fairy only killed you if you saw her. The tooth fairy in this movie killed you no matter what. Why did they need the rocker, his hippie girlfriend or the Bubbas and their sister? I think the movie would've been fine without them. It seems like the producers sat around and decided that they needed to put extra people in the movie just so the tooth fairy would have people to kill. Although, it's nice to see a pretty blonde girl not being portrayed as a bubble-head for a change. Okay to rent, but I wouldn't suggest buying it.\"\r\n1\t\"Best show since Seinfeld. She's really really funny. Her total self centeredness, the hulking gay stoner neighbors, the departures into song or cartoons, make this the freshest show on TV. One of the few shows I make point of watching. The scene with the wise old black lady in the drugstore (\"\"oh wait now that you're close you do look old\"\" turns face with finger and walks away lol), the cough syrup overdose, sleeping with God, it's all so funny or so stupid it's just a lot of fun. The shows weak points are her sister and the cop-only because they're too darn normal!! I really can't wait until the next show, something I haven't felt for any show in a long time.\"\r\n0\tI have seen a lot of movies...this is the first one I ever walked out of the theater on. Don't even bother renting it. This is about as boring a soap opera as one can see...at least you don't have to pay to watch a soap opera, though.\r\n1\t\"Did you know, that Anthony Kiedis, (singer from the Red Hot Chili Peppers) father is in this movie. Blackie Dammit, is Anthony's father. I noticed this after reading \"\"Scar Tissue\"\" Anthony's autobiography, and saw a picture of his father. I thought, \"\"well, that guy kinda looks like that guy from that movie I saw in the eighties. Then I read more and it said his father was an actor that had a few small roles. After checking this site, and comparing with a search on the net, I realized it really is his father in the movie. It's funny, because nowhere in the book does it mention him being in this movie. Perhaps his son was ashamed of his father's acting job in this flick, but he need not be. I think his father, Blackie, did a great job in the show.\"\r\n1\t\"The Finnish version of Robert Altman's \"\"Short Cuts\"\", set in the small rural town of Äänekoski. The episodes present a kaleidoscope of the eternal events, problems and emotions of human life: joy and love, deception and disillusionment, hopelessness and death. I was particularly impressed by two episodes. The first is the story of the young waitress, who tries to stir up a romance for his co-workers: she radiates an overwhelming joy of love and life. The other episode presents and old man dying in a hospital and his wife trying to help him die with dignity. Particularly striking is the way the old couple have to fight their way against the humiliating practices of the hospital and their loneliness contrasted with the \"\"routines\"\" of the hospital crew (despite the signs of occasional empathy). Compared with Altman's classic, this movie is perhaps less professional, but it is definitely a great piece of art.\"\r\n0\tThe movie had so much potential, but due to 70's technology constraints and also a weak script killed the main plot of the film. The book version of the film was much better, and well conceived. If it had been done right in the beginning with sources from the book, it could have been a very cool classic.\r\n1\tI haven't seen much German comedy, but if this film is anything to go by, I'm compelled to see more! The simple but effective storyline takes two very different people on a trip from Germany to Italy after Eva, an unemployed mother of two, discovers that her artist husband is having an affair with the wife of a wealthy lawyer. I won't reveal anything further, but what results is a very funny series of events with the perfect conclusion. My interest in international cinema has expanded since I first saw this film. I recommend it to anyone (any adult... don't let the inclusion of the young children fool you into thinking it's a family film) who love comedy - even those unfamiliar with the language.\r\n1\t\"This is one of the best Fred Astaire-Ginger Rogers films, or at least one of my favorites. Most of the A-R movies feature great dancing but sappy romance stories. This still has the courtship corniness but not as pronounced as the other films.<br /><br />This movie features not just great dancing but likable characters and a bunch of good songs. The music is the central theme here and what's nice is the addition of a tap solo by Rogers. She not only was a super dancer but a very pretty woman and one with tremendous figure. She dances also with Fred, of course, and they're always a fun pair to watch on the dance floor.<br /><br />Growing up in the 1950s watching \"\"Ozzie & Harriet\"\" on television, it was a real kick the first time I saw this to see such a young Harriet Hilliard. No surprise than Ozzie fell for this beauty. Although she had that short early '30s hairstyle, I recognized her voice right away. Also in this movie are quick appearances by Betty Grable and Lucille Ball, but I have to admit that I have yet to out Ball. I can't find her, but I know she's in here.<br /><br />Astaire, except for some obnoxious gum-chewing in the first third of the film, was fun to watch and Randolph Scott - although better in westerns - is likable, too.<br /><br />This is simply a nice, feel-good film and good one if you want to to enjoy the great talents of Astaire and Rogers.\"\r\n1\t\"***Might not consider this having a spoiler, but I'd rather be cautious than careless*** I never saw this movie when I was little. I fell in love with it the first time I saw it with my three year old daughter. I can watch it over and over again.<br /><br />For the little acting Ilene Woods did in her lifetime, she was a wonderful voice for Cinderella; very appealing; very believable. The music really fit the movie perfectly. The acting was great; loved the mice!! You really \"\"hated\"\" Lady Tremain and the step-sisters; they were just awful. The cartoonists depicted the spoiled behavior very well.<br /><br />This is a wonderful movie, especially if you are into love stories. My daughter has seen the movie about 25 times and still gets excited at the end.\"\r\n0\t\"Steven buddy, you remember when you said this: <br /><br />\"\"Try to find the path of least resistance and use it without harming others. Live with integrity and morality, not only with people but with all beings.\"\" <br /><br />you have not been doing that, you have mortally wounded your fans and their morality with these \"\"films\"\" I wouldn't even bother if I didn't know you are so much better than this, I've seen the videos of you teaching, you are so much better than this why why brother why...<br /><br />steamroller productions has been steamrolled I promise bro i am not afraid of you I will tell you the truth to your face so we can fix it.<br /><br />well I like some others fell asleep 90% in, but to be fair i was tired and had a large meal just an hour before hand Sensai, what are you doing. 12 million? really? do you have any idea what we could have done with $12,000,000 It could have been in the theaters and a blockbuster hit, if you wanted we could have donated money from the huge profit to a homeless shelter or something. These post production people are ripping you off man the choreography was non existent, we can do better man, the eye blinking thing was from the men in black movie, i half expected will smith to appear or tommy lee Jones to tell your they were gills not eyelids.<br /><br />Seagal you are an Aikido master, why are you doing this to yourself, to us? when you came on the scene, you had such a fresh direct style, and it was obvious you are a teacher cause the way your moves were so clear and crisp, watching your first three movies i felt like you were teaching me something, now i feel like you are just being ripped off or something i feel like I need to save you buddy, this time you are the one who was killed and I'm gonna go and get revenge for you by helping you make the best movie ever. bro i know who you really are, i know the truth about the Nico movie. let's talk.<br /><br />contact me man i got some fresh ideas I am a nit picker, I swear you will not be disappointed with my attention to detail and we'll do it for the fans man, your fans deserve better, we're hanging on, but the strand is about to snap. I swear I will not let your movie out the door with a single mistake in it I'm still trying to figure out if that was the worst dubbing ever, or you have laryngitis, but i promise you i can do a better impression of your voice than the lame **** who didn't even try. I sure hope you kicked him in the nuts as his payment. i can come up with a story and a plot that can be matched to your avenging the death of your student/daughter/wife/dog/house plant niche and I promise you we will bring you back, I promise, also I want to go in the direction, that makes people think, if you let me in i promise we will make a movie that people will walk away and have to have a discussion about it, a serious thought provoking, perception altering experience.<br /><br />Steven Seagal This is my official in writing permission for IMDb to release my contact info to you for the purpose of resurrecting one of the best martial arts heroes I have ever seen also, for the record hes not Italian, hes Irish and Jew so you call it bad acting i call it terrific acting, because you have believed for 20 years that Seagal is Italian :) kinda changes your perception doesn't it.\"\r\n1\t\"Though this may not necessarily be a so-called \"\"classic\"\" film by today's standards, it's still worth seeing. The main reason why is because after experiencing this film, you get the feeling that you've also experienced the counter-cultural idealism of the 60's, no matter however good or bad.<br /><br />I happened to see this film in an English literature class at SUNY Geneseo, and though at first it appears to be just a meaningless composition of 60's icons, the film is far from being simply \"\"thrown together\"\".<br /><br />My point is that if you leave the film feeling unsatisfied and confused, the film has done it's job: it's conveyed a desolate view of the future that leaves you feeling unsure and angry. It was perhaps this same feeling that the film sought to explore in the youth it exemplified.<br /><br />As such, \"\"Zabriskie Point\"\" may not tell a very good (or interesting) story, and at the same time its characters may be one-sided and predictable. However, it also conveys so well this sort of clichéd, rebellious desire to get out of the existence which both Mark and Daria must share. Even the anti-establishment students are as inauthentic as the gov't they rebel against.\"\r\n0\t\"Where do I begin? I wanted to enjoy this movie, and I did. Still, I wanted to be able to enjoy it for being another zombie film that was worth my loot, and it wasnt. This was a different kind of enjoyment. This was unhealthy, a perverse glee that I partook in watching one of the most ridiculous films Id seen yet. And I dont much care for whatever Fulci's excuses were, there was no excuse for this film going how it went. This was a bad film all the way around, yet I still cant give it below a 4 out of ten, which is what I gave it, because well...at least I was able to laugh at this misfit of a movie.<br /><br />I had to imagine these zombies, that were all over the ceilings of these buildings everywhere...had to imagine that they were either bored as hell so they crawled up on the beems, and perched themselves high on stone erections, or they saw the fleshy living motley band of jerk-offs coming around, so they took it upon themselves to stage numerous aerial ambushes. Hell, what else is there to do when youre dead?<br /><br />I had to laugh at some zombies performing what looked to be martial arts swings, kicks, and jumps, and some shambling about like traditional meatlovers. I feasted my eyes on a floating head that was never explained. I watched in pure horrific delight as the land they were in, the Phillipenes, was absolutely engulfed in fog, heavy doses of fog, and that the ponds were as they were boiling castle moats. I had to even cringe when I saw that the design for a cure for this plague was sketched on a chalkboard as an octagon with lines stretching from each angle, with \"\"Dead One\"\" written in the middle. I had to ask myself...if the science of curing zombies is that easy, then I wonder if I could come up with a little something to start a zombie outbreak here!<br /><br />All in all the effects were overboard, the dubbing horrid, Im sure the original acting as poor, the story absurd, the zombies inconsistent, even in a bad way they couldve all been similar, and the women ugly, but I found myself enjoying this thing. It was a fun watch. It turned out to be a very very bad film, and I would not recommend this thing unless one is into bad directorial exploitation films, but still, again I say...it was worth a good laugh. I crave zombie films no matter what, but when this had Fulci's name attached to it, it shouldve been much better. Let me dare say, Zombie Holocaust was better.\"\r\n1\tAfter watching the Next Action Star reality TV series, I was pleased to see the winners' movie right away. I was leery of such a showcase of new talent, but I was pleasantly surprised and thrilled. Billy Zane, of course, was his usual great self, but Corinne and Sean held their own beside him. It was also nice to see Jared and Jeanne (also from the competition) in their cameo roles. Sean's character, not Billy's, is the hunted, and his frustration at discovering new rules in the game is well played. Corinne walks the tightrope well between her character liking Sean's and only being in it for the money. I loved how the game was played right to the last second. And then beyond! Not a great movie, but an entertaining one all the way and a great showcase for two folks on their first time out of the gate.\r\n1\t\"\"\"Why did they make them so big? Why didn't they just give the money to the poor?\"\" The question about cathedrals was asked by a student to Mr. Harvey during a school field trip to Salisbury Cathedral. \"\"That's a good question,\"\" he replied. \"\"Partly to inspire them - to get them to look up with awe.\"\" I'm not sure that cathedrals have that impact on everyone, but this movie certainly had that impact on me. It was awesome! <br /><br />It didn't start out that way. For a while it seemed to be little more than a depiction of - well - a school field trip to Salisbury Cathedral. If you've ever been on a high school field trip to anywhere this is basically it. You have a group of largely disinterested kids just happy to be out of school for a day, the bus driver who's driven crazy by them and some teachers trying desperately to keep it all under control. Been there, done that, got the t-shirt was my initial reaction. I figured that in the end this was going to be a typical story of a teacher managing to inspire a group of disinterested students. YAWN! But it turns out to be so much more! Timothy Spall was brilliant as Mr. Harvey - a sombre, unsmiling teacher with a strange fascination for cathedrals. Over the course of the movie, his story slowly comes out and becomes the focal point of the story. We also get introduced to some of the troubled students - most notably Helen, also brilliantly played by Nathalie Press, who's into self-mutilation.<br /><br />This isn't a religious movie, but it includes some powerful reflections on religious themes. When Harvey's colleague Jonathon (played by Ben Miles) says \"\"I don't care what anyone believes as long as they don't try to force it on anyone else\"\" Harvey replies, \"\"that isn't tolerance - it's indifference!\"\" - which is, in fact (in my opinion) what often passes for religious tolerance in our society. There are scenes of reconciliation between various characters, and the final scene of the movie was brilliant. As Harvey climbs back on the bus, director Susanna White has the camera slowly pan upwards, so that the final shot is simply of the sky - hearkening back to Harvey's comment that the purpose of the cathedral is to get people to look up in awe. The cathedral accomplishes its goal. We look up into the universe in awe, seeking something greater than ourselves, however we choose to define it. This is a very powerful and very inspiring movie. 9/10\"\r\n1\tit's amazing that so many people that i know haven't seen this little gem. everybody i have turned on to it have come back with the same reaction: WHAT A GREAT MOVIE!!<br /><br />i've never much cared for Brad Pitt (though his turns in 12 monkeys and Fight Club show improvement) but his performance in this film as a psycho is unnerving, dark and right on target.<br /><br />everyone else in the film gives excellent performances and the movie's slow and deliberate pacing greatly enhance the proceedings. the sense of dread for the characters keeps increasing as they come to realize what has been really happening.<br /><br />the only thing that keeps this from a 10 in my book, is that compared to what came before it, the ending is a bit too long and overblown. but that's the only flaw i could find in this cult classic.<br /><br />if you check this film out, try to get the letterboxed unrated director's cut for the best viewing option.<br /><br />rating:9\r\n1\tI originally caught this back in 1996 in its one week run at a movie theatre. I was under impressed by it and my feelings haven't much changed.<br /><br />Documentary about the infamous Edward D. Wood Jr. covering his life and movies. There are interviews with people who worked with him or knew him. They include: Vampira, Dolores Fuller, Bela Lugosi Jr., Loretta King, Gregory Walcott and Paul Marco. Interviews are mixed with clips from the movies or some bizarre recreations. It is interesting (somewhat) but was this really needed? I've seen all of Wood's films and they're just terrible. Wood had ambitions but not a bit of talent to carry them out. I wouldn't say he was the worst director ever but he's down there. Do we really need a docu on a very mediocre film maker? I do like the fact that they didn't try to make Wood out to be some sort of saint. More than a few of those interviewed (especially Lugosi Jr.) pretty much hated the man and it comes through loud and clear. Also they totally ignore his films in the adult film industry in the 1960s and 70s. Still it's of interest if you're a Wood fan. The best interviews are with Vampira (who tears Wood apart) and Dolores Fuller (a long time girlfriend).\r\n0\tAn update of the skits and jokes you would have seen on a Burlesque stage in the first half of the 20th Century. It's a string of several jokes acted out. Some of them you could tell your Grandmother, some of them not, but it's a fairly safe bet she's heard them all before. For what it tries to be, it's not too bad. Before you rent it, remember that it's an older style of entertainment and has more value as history than as comedy or titillation. Robin Williams has a couple of bits, but he's interchangeable with the other players.\r\n1\tJohn Carpenter's Halloween is quite frankly a horror masterpiece. It tells the immortal story of escaped mental patient Michael Myers, who returns to his hometown on Halloween night to stalk and kill a group of babysitters.<br /><br />This was the first and without doubt the best in the Halloween franchise. Carpenter shows great restraint in pacing the story very slowly and building likable characters; unusual for a horror picture.<br /><br />Even more unusual is the non-existence of blood and gore, and yet it remains the scariest Halloween to date. Get that! <br /><br />Halloween marked the film debut of Jamie Lee Curtis and a defining point in the late great Donald Pleasance's career. A true classic.\r\n1\tRather annoying that reviewers keep comparing this to Planet Earth... Of *course* Planet Earth is better - it has much much more of the same. Earth is like an extended trailer for the Planet Earth series, and as such, is inevitably inferior and simplified. But that is not comparing like with like.<br /><br />As a feature-length documentary (or actually as a feature-length anything), it surpasses pretty much anything you will see in your entire life (unless you choose to traverse the Earth in helicopters with long-range cameras for years on end, and wait for months in the most extreme environments to catch a glimpse of the most extraordinary beings on earth, which - lets face it - is unlikely).<br /><br />On the narration: yes everyone in the UK - very much including me - adores David Attenborough, and there's little excuse for him not to be narrating here, but that hardly deserves knocking down a star or three. He wasn't a presenter on Planet Earth, just a narrator, and I'm sure he's modest and gracious enough to realise that anything that gets more viewers in is a Good Thing.<br /><br />Anyone who sees this will be overwhelmed by its awe, majesty and glory. All reviewers agree on that. Those who love it (ie. everyone) will/should go on to see an buy Planet Earth. So three cheers for its cinematic release, and a big boooo for anyone cheap enough to buy this on DVD rather than the Planet Earth box-set. But as works of art they're not in competition here people.<br /><br />The Earth is big enough for both.\r\n0\t\"this movie let me down decidedly hard. it was a great concept that was ruined with a horrible script. The story just didn't flow and was disjointed at best. There were so many elements to this story that were not explained, or were forced into place with out any real thought. elements like the love story could have been expanded on a bit more, and the cannons need to be written in better. the whole main character growing up thing needed more about the training he was receiving and less standing around. everyone likes a good \"\"little guy overcomes\"\" story and this showed promise but with the scripting failures wasn't to be. While it did have some pyrotechnics in the final battle sequence it was lackluster due to a lack of choreography. this made for a maddeningly boring watch<br /><br />it could have been so good :(\"\r\n1\t\"I don't understand your objections to this movie. It is a taut, thrilling extension of the character created in \"\"Basic Instinct\"\". The only part of the story that is the least bit unrealistic, is the fact that Sharon Stone's character is still alive and not in jail at this late date.<br /><br />SPOILER ALERT: As the movie progresses, we are presented with three theories of what is going on: 1) Sharon Stone's character is killing all these people because she's crazy (Risk Addicted); 2) David Thewlis' crooked cop is killing these people in order to frame Sharon Stone's character; 3) David Morrissey's analyst is killing these people for revenge. What upsets most people about the movie seems to be that none of these theories are ever explicated as the \"\"real\"\" story. (Although the analyst is in a psychiatric care facility for killing the cop; the only killing that occurs on screen.)<br /><br />I think this is a brilliant plot device in the spirit of \"\"2001, A Space Odyssey.\"\" WHO CARES what is real? The blonde really is crazy, the cop really is crooked and the analyst really wants revenge. What's important is the interactions between these and other characters in the story. Like real life, everyone is more complicated than anyone thinks and reality is more complicated than a movie. Get over it!\"\r\n0\tSurely no Saturday morning TV kids' show was ever done this poorly. After all, those producers had to count on the audience coming back. Well, in this awful offering, they could at least count the money they saved on sets. The script could have been a reject from some long-forgotten space opera serial, with a few smarmy lines added for cool-dude Gerald Mohr to murmur to Naura Hayden. No director could have done anything decent with such a loony storyline, so the action just plods boringly along. The spaceship props are absurd--a Bulova wall clock and portable typewriter, for example--but the planet sets have got to be some of the worst in cinematic history. Most are crude drawings, and it's all bathed in an often misfocused red light. Even Mohr's bare hairy chest is used as a prop. And it's a bad one--as rib-thin as the plot. Any viewer who can make it to the end of this movie will hear a message from the Martians--and will probably agree completely!\r\n0\tThe movie 'Gung Ho!': The Story of Carlson's Makin Island Raiders was made in 1943 with a view to go up the moral of American people at the duration of second world war. It shows with the better way that the cinema can constitute body of propaganda. The value of this film is only collection and no artistic. In a film of propaganda it is useless to judge direction and actors. Watch that movie if you are interested to learn how propaganda functions in the movies or if you are a big fun of Robert Mitchum who has a small role in the film. If you want to see a film for the second world war, they exist much better and objective. I rated it 4/10.\r\n0\t\"In 1967, mine workers find the remnants of an ancient vanished civilization named Abkani that believe there are the worlds of light and darkness. When they opened the gate between these worlds ten thousand years ago, something evil slipped through before the gate was closed. Twenty-two years ago, the Government Paranormal Research Agency Bureau 713 was directed by Professor Lionel Hudgens (Matthew Walker), who performed experiments with orphan children. On the present days, one of these children is the paranormal investigator Edward Carnby (Christian Slater), who has just gotten an Abkani artifact in South America, and is chased by a man with abilities. When an old friend of foster house disappears in the middle of the night, he discloses that demons are coming back to Earth. With the support of the anthropologist Aline Cedrac (Tara Reid) and the leader of the Bureau 713, Cmdr. Richard Burke (Stephen Dorff), and his squad, they battle against the evil creatures.<br /><br />In spite of having a charismatic good cast, leaded by Christian Slater, Tara Reid and Stephen Dorff, \"\"Alone in the Dark\"\" never works and is a complete mess, without development of characters or plot. The reason may be explained by the \"\"brilliant\"\" interview of director Uwe Boll in the Extras of the DVD, where he says that \"\"videogames are the bestsellers of the younger generations that are not driven by books anymore\"\". Further, his target audience would be people aged between twelve and twenty-five years old. Sorry, but I find both assertions disrespectful with the younger generations. I have a daughter and a son, and I know many of their friends and they are not that type of stupid stereotype the director says. Further, IMDb provides excellent statistics to show that Mr. Uwe Boll is absolutely wrong. My vote is three.<br /><br />Title (Brazil): \"\"Alone in the Dark  O Despertar do Mal\"\" (\"\"Alone in the Dark  The Awakening of the Evil\"\")\"\r\n0\tWhat made me track this movie down was the viewing Vampyres, I thought I have to get the other movies this guy (Larroz) has made, I was sorry I tracked this down,it is a weak attempt at an occult/satanic type movie laden with sex and only sex(with ugly actors and actresses, this is an excuse for sleaze. The only redeeming factor was the setting and atmosphere, avoid this one, too much hype surrounds it, not worth the effort of finding it, this refers to the welcome to the grind house edition. I hope he has some other movies which lives up to Vampyres, Oh and the goat scene was very boring, I understand that this is what carries the hype.\r\n1\tThis Academy Award winning short film can rank among the greatest of the genre. Told completely without dialogue, it is a visual treat about a young boy who buys a gold fish, lovingly places him in a bowl then goes off to school, leaving the gold fish unprotected and a window carelessly open. After a while, a neighboring orange tabby comes poking around, comes in through the window and heads slowly for the bowl. The fish apparently knows something is going on and becomes very excited. As the cat comes very near to the bowl, the fish jumps out. The cat catches the fish, drops him back in the bowl and exits through the window he came in just as the boy, not knowing what has happened, gets back. This was amazingly filmed with real animals; how Cousteau got these animals to behave in this manner is remarkable. I only wish this film were available now for people to see; I only saw it once, in 1959 when it was originally released, but it has remained unforgettable.\r\n1\tThree sergeants in the British army stationed in India, are sent out to stop an uprising of a tribe of murderers known as the Thuggees. One of the sergeants, Cutter, leads away from the camp in search of a golden temple and is captured by the Thuggees lead by the sinister Guru. Gunga Din, the regiment's water boy, goes back to the camp for help and the other two sergeants go after him, but are also captured. Now the major sends a full detail out after the three, but do not realize that they are walking into a trap set by the Thugees. It is though, Gunga Din who saves the day. Excellently made buddy film, even though it is today politically incorrect. Grant, McLaglen, and Fairbanks do give very humorous and thrilling performances with Jaffe very well in the title role and Cianelli very sinister as Guru. Rating- 10 out of 10.\r\n1\tOkay, I know I shouldn't like this movie but I do. From Pat Morita's loveable interpretation of a Japanese stereotype to Jay Leno's annoying yell, I laughed throughout this movie.As long as you take into account that this is not the best movie in the world, it's a good mvie.<br /><br />My favorite part is Morita talking to his boss in Tokyo with the drinking a close second.\r\n1\t\"This movie is a perfect example of a film that divides people into 2 groups.. Those who get the joke and those who don't. People usually attack what they don't understand. This film has a comic style and charm that has been unparalleled since. It's a GREAT comedy.. and a GREAT romance. It's a perfect date movie. A perfect movie for someone who wants a good lighthearted laugh. And if your perspective is too tense, maybe this movie isn't for you, and you may need counseling. It is an injustice that Paramount has kept this film on the shelf since the early 80's, having never seen the light of day on DVD. Yet they feel an Urban version of \"\"The Honeymooners\"\" is a good idea. I find it odd that my two alltime favorite romantic comedies have never been released on DVD. The other being Gene Wilder's \"\"The World's Greatest Lover\"\" which Fox has sat on since the early 80's as well... Yet, \"\"From Justin To Kelly\"\" is in nearly every video store in the country. There is no Justice in the world. Maybe those who took the time to bash this will enjoy \"\"From Justin To Kelly\"\", I'm sure that one is watered enough for them to \"\"get\"\". Sometimes with age people lose their sense of humor... Or sometimes it just goes stale and they find comic satisfaction in reruns of \"\"Full House\"\".\"\r\n1\tThis movie draws you in and gets you hooked on keeping your eyes on the screen. The writer/director is brilliant with the narrative parts and the use of creative and interesting camera angles and perspectives which all add to the gripping hold it will have on you. Insomniac's Nightmare is original and refreshingly different from any other movie you have seen. Is it a dream or reality? This indie will have you discussing the twists and turns it takes through the conscious and subconscious. It has an eery feel with it's dark interpretations of illusions. Dominic Monaghan really became the insomniac. He is a great actor who is not hard on the eyes either! He really poured his whole being into this role. From the storyline to the way it is shot makes this indie one of my favorites. I recommend it highly and eagerly await to see more from this innovative, creative writer/director/cinematographer!!!\r\n0\tReally bad movie. Maybe the worst I've ever seen. Alien invasion, a la The Blob, without the acting. Meteorite turns beautiful woman into a host body for nasty tongue. Bad plot, bad fake tongue. Absurd comedy worth missing. Wash your hair or take out the trash.\r\n1\t\"This is a brilliant sci-fi movie that is very strange in how men and women both view the same film. I have talked to many people about the film and almost every guy loved it and said it was brilliant--while most women thought it was just disgusting and stupid! This is the only movie I know of that has such polarized views based on gender. Perhaps many women just have a lower tolerance for disgusting or depressing plots--but whatever the cause, I have always found this difference fascinating.<br /><br />The film begins with a murder and a subsequent investigation headed by Charlton Heston. This is set in the near future and the head of the huge international Soylent Corporation has been assassinated. As the film unfolds, you quickly realize this is a terrible and highly inequitable future American society. The rich live in gorgeous apartments with security and all the pleasures money can buy(including \"\"furniture\"\"--a euphemism for paid mistresses that come along with the apartment). At the same time, the masses are dirt poor, unemployed and in many cases living in abandoned cars or apartment hallways. Overpopulation and smog have taken a severe toll and the future looks awful indeed! <br /><br />Why the rich man died and the awful truth he could not live with I really should NOT discuss--it could ruin the film for you. However, the film has a great plot and acting and is super-exciting to watch. Plus, it features Edward G. Robinson in his final screen performance as the crusty sidekick to Heston. Though not for the easily depressed or squeamish, this is a great sci-fi film that is allegorical and profound.\"\r\n0\t\"... to not live in Montana and especially not to live there at the end of the 19th century.<br /><br />\"\"A river runs through it\"\" certainly is a well made movie from a cineastic stand-point. Great landscapes, Redford acting well.<br /><br />Unfortunately, the story is bad (if there is a story at all).<br /><br />I felt sorry for the narrator / author, who is as dry, narrow-minded a character as his father, a preacher. Being driven, not driving his own life, he is left to watch his brother, who is also caged in the small town environment, losing his life. The author never even comes close to undestand his brother's motivations, but at least realizes, that he is lacking the slightest amount of homour / fun. All there is, is fly-fishing, where he follows even as an old man the style of his father.<br /><br />The end is not surprising, it is forseeable from the very beginning.<br /><br />Definitely NOT a must-see (3 / 10)<br /><br />\"\r\n1\tThis is one of the best of the series, ranking up there with Resident Evil 3: Nemesis (Or Biohazard: Last Escape) The game has a very good storyline in which you play as Claire Redfield in the search for her brother,Chris Redfield (Whom you probably know from the original Resident Evil) It is as scary as the other Resident Evil, and contains alot more cutscenes.<br /><br />My Rating: **** out of ***** Stars (Rating based on comparison to other videogames)\r\n1\tI grew up with this as my all-time favorite film. The special effects are incredible for the era, and won awards. I can remember the dialogue as if I'd heard it yesterday. It is simply a great, timeless adventure. The music is by Miklos Rosza, who is cinema history's best. Sabu is the Thief. Conrad Veidt is the grand villain. I have a copy within reach, for the next trip down memory lane. Whoa there! Rex Ingram wants out of his genii bottle!\r\n0\t\"This is an interesting idea gone bad. The hidden meanings in art left as clues by a serial killer sounds intriguing, but the execution in \"\"Anamorph\"\" is excruciatingly slow and without much interest. There is no other way to describe the film except boring. The death clues are the only interesting part of \"\"Anamorph\"\". Everything connecting them is tedious. Willem Dafoe gives a credible performance as the investigator, but he has little to do with a script that is stretched to the limit. Several supporting character actors are wasted , including Peter Stormare as the art expert, James Rebhorn as the police chief, Paul Lazar as the medical examiner, and most notably Deborah Harry, who is featured on the back of the DVD case, yet only has a couple lines spoken through a cracked door. Not recommended. - MERK\"\r\n1\tI saw this film about twenty years ago on the late show. I still vividly remember the film, especially the performance of Robert Taylor. I always thought Taylor was underrated as an actor as most critics saw him as solid, almost dull leading man type, and women simply loved to watch his films because of his looks. This film, however, proved what an interesting actor he could be. He did not get enough roles like this during his long career. This is his best performance. He is totally believable in a truly villainous role. From what I have read, he was a very hardworking and easy going guy in real life and never fought enough for these kind of roles. He basically would just do what MGM gave him. This film proves that he could have handled more diverse and difficult roles. The other thing I remember about this film is how annoying Lloyd Nolan's character was. Nolan was a great actor, but this character really aggravated me. The last scene of the film has stuck with me for all of these years. This film is definitely worth a look.\r\n0\t\"Finally i thought someone is going to do justice to H.G. Wells's classic , not another version set in the wrong locale or era , but one based firmly on the book . Well it definitely follows the book pretty closely , and that is the only plus to this mess.<br /><br />This is 180 Min's (yes 3 hours) long , the book is only around 150 pages .<br /><br />If Timothy Hines had the nerve to come on here and say \"\"if you can do any better ...\"\" i would say \"\"yes , i could\"\" and i have never used a video camera or been to any sort or drama school in my life.<br /><br />I paid good money to get this crap over to the UK from the USA , do not make the same mistake as me .\"\r\n1\tIt really is a shame that films like this never snag Best Picture nominations, because this one is simply a winner. This is by far the most consistently hilarious comedy I have ever seen. Its screenplay and design are impeccable, not to mention the incredible cast. I can quote this movie for hours on end. Watch it.\r\n1\tI have to start off by apologizing because I thought the first 75-80% of this film was hilarious. It's mostly because of Brad Pitt's performance. Spot on.<br /><br />The acting by all involved was quite good but Brad stole the movie. The atmosphere was perfect in all respects. I'm not a giant Pitt fan but this has got to be one of his best roles ever.<br /><br />Brutal,Honest,Gritty. All good words to describe this movie.<br /><br />I was reading a previous review and the person said that the reasoning behind Early's violence isn't explained. It is explained but they thankfully don't have to go into graphic detail to get their point across.<br /><br />Overall I gave this a 9 because every scene bar 1 or 2 was effective. I think the humor in the first half or so is perfect for this movie. Underrated.\r\n1\tI loved this movie and will watch it again. Original twist to Plot of Man vs Man vs Self. I think this is Kurt Russell's best movie. His eyes conveyed more than most actors words. Perhaps there's hope for Mankind in spite of Government Intervention?\r\n1\t\"One thing i can say about this movie is well long, VERY LONG! I actually recently purchased this movie a couple of months ago seeing that there was a new version coming out. I was happy to find that it was made in 1978 because The 70's (even though i never lived in them) is actually one of my favourite decades, especially for the music! when i watched this movie the story was actually very good at the start but then after about 50 mins it started to get very boring and repetitive. i will admitt the animation did impress me! it was nothing i had ever seen before and was well pretty cool to see. but the movie honestly could of been a bit better, it could of had alot more talking and story to it than just 15 to 20 minute scenes that just had wierd fighting. then for the last 5 or 10 minutes the movie picked up and got good again but ended unexpectedly. in my opinion i thought it was EXTREMELY long. i know its 13 minutes over 2 hours and that is still long for a cartoon but since it was boring for most of the movie, it made it seem like it was 4 hours long!!!! but overall it is an okay film i guess and i will watch it again on one of those \"\"nothing to do days\"\". i will see the new one and i hope it is better!\"\r\n0\t\"WARNING:I advise anyone who has not seen the film yet to not read this comment.<br /><br />Although I haven't seen them all,The Hamiltons sure did deliver one lowsy piece of entertainment,which it did not entertain me at all!!!!I thought that in common with the semi-bad acting,stupid plot scheme,and the twist at the end of the movie,which was very retarded,this movie sucked!!!Okay,so supposively these are people who eat other people.Yeah......notice I said people not humans,not because they aren't human,or wait I think they are,OH NO WAIT,THEY DIDN'T TELL YOU!!!!!So okay,are these people cannibals,or are they imbreds,or what are THEY!!!!I mean,maybe they're just \"\"THINGS\"\" that came here to see what people taste like or,are they cannibals who have eaten people for a long time now,or maybe this movie was HHOORRIIBBLLEE!!WHICH IT WAS!!!So if you think The Hamiltons is good,I ask of you,why,why,WHY,WHY,why was it so awesome,because to me it was just flat out terrible!!!One big BOOOOOOO for The Hamiltons!!!Go see The Gravedancers,Tooth & Nail,or Borderland for a piece of entertainment!!!!!\"\r\n1\tMEN OF HONOR features Cuba Gooding Jr., in what is probably his best performance to date. He plays Carl Brashear, a man of towering courage and heroism. He's a poor dirt farmer from the South, who wants to become a Navy diver- but has problems because of his race. The head of the diving school, played by Robert DeNiro, is a racist redneck that nonetheless grows to respect Brashear. The film is about how Brashear has to concur the nearly insurmountable odds, not once but twice. The performances are what make this film special. Gooding is great, and DeNiro, the best actor in movie history, gives a towering performance- his best dramatic work in years. Charlize Theron gives another solid performance as DeNiro's much younger wife. The film lays on the patriotism a little too strong (though no where near the level it was in THE PATRIOT), and a few of the characters are just one dimensionally bad (Hal Holbrook's Mr. Pappy is just so evil), but the film is a rarity among films today. It's uplifting and uncynical. A wonderful film.\r\n0\t\"Joe Don's opening line says everything about this movie. It takes place on the island of Malta (the island of pathetic men) and involves Joe Don Baker tracking down an Italian mobster. Joe Don's character is named Geronimo (pronounced Heronimo) and all he does in this movie is shoot people and get arrested over and over agin. Everyone in the movie hates him, just like everyone hates Greydon Clark. I liked an earlier Greydon picture, \"\"Angel's Revenge\"\" because it was a shirne for thriteen year old boys. Avoid this movie at all costs!!\"\r\n0\t\"Although I can see the potentially redeeming qualities in this film by way of it's intrigue, I most certainly thought that the painfully long nature in the way the scene structure played out was too much to ask of most viewers. Enormous holes in the screenplay such as the never explained \"\"your father died today\"\" comment by the mother made it even harder to try to make sense of these characters.<br /><br />This won first place at Cannes in 2001 which is a shock considering. Perhaps the French had been starved for film noir that year and were desperate for something as sadistic as this film. I understood the long scenes as a device to keep the viewer as uncomfortable as possible but when matched with the inability to relate to the main character it went too far for me and kept me at arms distance from the story altogether.<br /><br />This is a film for only the most dedicated fan of film noir and one who expects no gratification from having watched a film once it's over. I LOVED movies such as \"\"Trainspotting\"\" or \"\"Requiem for a Dream\"\" - which were far more disturbing but at least gave the viewer something in the way of editing and pacing. To watch this teachers slow and painful silence scene after scene just became so redundant that I found it tedious - and I really wanted to like this film at every turn.\"\r\n0\t\"It's somewhat telling that most of the great reviews for the film on IMDb all come from people who have only reviewed one film in their entire IMDb career and yes you've guessed it, that film is \"\"Parasomnia\"\". I've often suspected suspiciously good reviews on IMDb for what turns out to be an anything but good films as underhand marketing , but it seems fairly transparent in this case.<br /><br />That's not to say Parasomnia is terrible, but it stops well short of being the good or great film it had the potential to be.<br /><br />On the plus side, it has a great baddie in Patrick Kilpatrick who does a brilliant job projecting menacing and evil, I could easily see him having what it takes to play a truly memorable baddie on a par with Hannibal Lecter. There are some beautiful visuals in the dream sequences, in fact if the film had decided to explore that terrain more it might have been something better. The actual concept of devious misuse of hypnosis is great too.<br /><br />Although I understand suspension of disbelief is necessary for immersion in any good story, it's the mark of a good story that it succeeds in letting you do that. If you find yourself being annoyed at what you find illogical or just plain silly, then the story is losing you and that's what kept happening to me with this film. Other reviewers have mentioned this here and I don't want to get into spoiler territory, but I will say the setup at the ending was particularly ludicrous and disappointing, not too mention the varying mental age of a character that is only supposed to have experienced a few years of life.<br /><br />All in all, there is the germ of a great idea here in diabolically misused hypnotism, but sadly this film fails to realise it into anything special.\"\r\n1\t\"A sweet little movie which would not even offend your Grandmother, \"\"Saving Grace\"\" seems cut from the same cloth as a half-dozen other British comedies over the past two years...underdog is faced with adversity, finds the strength to challenge and learns something about him/herself in the process.<br /><br />Widowed and thus broke, Grace is a master gardener, and is enlisted to help her friend/employee Matthew grow his pot plant. He's been doing it all wrong, so Grace helps him out. They realize that she is the perfect person to harvest pot, which they can both benefit from. He enjoys smoking, she needs to raise funds to pay her mortgage. <br /><br />Highlight is Grace travelling to London to deal some of her merchandise, dressed in what looks like the white suit John Travolta wore in \"\"Saturday Night Fever\"\" and therefore sticking out like a sore thumb. <br /><br />Blethyn is always watchable, and you can't say that about a lot of people..well, I can't, anyway. Ferguson is very good, and Tcheky Karyo, who I liked in \"\"La Femme Nikita\"\", is memorable. <br /><br />Not profoundly moving or insightful, but immensely entertaining, and at a brisk 90 minutes, feels like a walk with friends. 8/10.\"\r\n1\t\"I do try not to take IMDb ratings to heart, but I was flabbergasted when I saw the 5.4 rating to one of my childhood favourites. It doesn't wow me as much at 17, but as a family film this is a sweet and well meaning movie. Kids will definitely love it and won't mind the flaws, and the adults can guess the actor behind each character and admire the subliminal messaging of the film. None of the film was preachy in any way, in fact it has a great message that added to its sweetness. I will admit though that the story is on the thin side, and some scenes like Screweyes's death(which still freaks me out) may be a tad on the scary side. But the animation is well above average with nice colours and good character animation. The music by James Horner is very beautiful, and the song featured is memorable, catchy and amusing. I really liked the characters, Louie is probably the most in-depth of them all, but the dinosaurs were at least engaging. Martin Short's clown was both hilarious and emphatic, the part when he tells Screweyes \"\"I quit!\"\" had me in stitches. My favourite is Screweyes though, an effective villain who is crafty and I suppose intelligent. If anything though, I wish the film kept in the part when he explains how he lost his eye and why he is scared of crows because that way he could've been more developed in terms of depth. The script, while not Oscar-worthy, has its funny and heart-warming parts, and should keep kids and adults entertained. The voice acting for me was what made the movie. John Goodman, Martin Short, Rhea Perlman, Felicity Kendall and Yeardley Smith all gave solid performances, but special mention has to go to Kenneth Mars for he was absolutely superb as Screweyes and almost unrecognisable. All in all, this is a good movie. I don't get the rating, honestly I don't. Sure this film isn't perfect, and it is not as good as a dinosaur movie such as Land Before Time, but it is good fun. 7.5/10 Bethany Cox\"\r\n0\tThis was one of the most boring movies I've ever seen I don't really know why Just your run-of-the-mill stories about guy who is about to get married, and starts to fancy someone else instead. Story has been told a thousand times. Nothing new or innovative about it at all.<br /><br />I don't really know what was wrong with this film. Most of the time when these kinds of actors/actresses get together to make a film that have already been made a million times before, it's really entertaining. There are usually little clever thing in them that aren't really in any other. For some reason, this one just doesn't hold your attention. You can pick out some funny parts, or clever ideas in it, but for some reason they're just not funny, nor clever in any way I wish I new how to explain it, but I don't Just don't waste your time on this one\r\n1\t\"Romantic comedy is not the correct way to describe \"\"How to lose friends & alienate people\"\". The underlying romance in the plot is, for the most part, displaced by a far more interesting \"\"rags to riches\"\" tale. Although the central line of the story is somewhat rushed passed, in several screen shots, it does have a sense of; getting the \"\"nitty gritty\"\" out of the way, focusing on those key relationships which make \"\"office politics\"\" and using those almost irrelevant scenes, used purely for comic effect. Yet it works so well, especially with Pegg in the front seat. The film is ultimately very clever, playing well on the trans-Atlantic relationship Pegg shares with his co-stars and merging the cross between the high and low -life society quite well and quite refreshingly in a storyline that despite predictability is somewhat of a unique journey. The different characters in the film are presented well and casting is definitely a plus point on the film. Both the \"\"trading places\"\" relationship between Pegg and Huston and the \"\"love, hate\"\" relationship between Pegg and Dunst do work so well in a story that is, for want of a better word, charming. Even Fox, whose main asset is of course sex appeal, shocks with what turns out to be quite a dark character and acts that \"\"bimbo\"\" role all to well. Its one of these films where every little detail does pay tribute to a great piece of work. From transsexual strippers to an amazing soundtrack it all meshes nicely into what can only be described as clever comedy.\"\r\n1\tThis Schiffer guy is a real genius! The movie is of excellent quality and both entertaining and educating.<br /><br />I didn't know what a weather girl was before I learned it here.\r\n0\t\"I didn't know much about this movie before I watched it, but I heard it had something to do with quantum physics so I was interested. What I didn't know is that this is NOT ACTUALLY A STORY but a bunch of New-Age blowhards who love the sound of their own voice talking about how little they know about basic quantum mechanics. I say it belongs more in the Documentary category than Comedy or Drama.<br /><br />Marlee Matlin is in the movie, in order to give this New Age symposium *some* sort of a storyline. Her portions of the film feel horribly tacked on and are meant to display the speaker's thoughts so we won't die of boredom. Matlin has a real job as a photographer, unlike the New Age hippie that crashes on her couch. We get to listen to nameless people ramble on about what quantum physics all \"\"means\"\" to them. The one bright spot in this movie was the speaker from India (I assume), but I think he showed up for the wrong film.<br /><br />It looks like Barbara Eden really let herself go and she goes on and on about how quantum science has something to do with her crazy New Age beliefs. It looks like Quark from DS9 was running low on cash and he also makes a brief appearance in the film. There is a lot of whizbang CGI we're supposed to be impressed with; cells in the body are shown as dancing jello molds, because the filmmakers have apparently seen Flubber one too many times.<br /><br />People in the movie say that the Arawak people on San Salvador thought Columbus's ship the Pinta was invisible because natives had never seen clipper ships before, as if people today had any way possible way of knowing. Of course they leave out all of that information and just say \"\"Columbus's ships were invisible to the Indians in America.\"\" The film takes many such arrogant leaps. Thomas Young did a double-slit experiment around 1805 and found that light can look like a particle some of the time, and a wave some of the time. Of course you'd never *know* this from watching this stupid film because the only reference to it is that \"\"atoms can be particles and waves.\"\" And that must mean that people can pass through walls, walk on water, and never grow old if they just wish upon a star!! Then I'm sure Marlee Matlin could stop being deaf if she just *believed* hard enough. I'm being sarcastic, but this film is chock-full of false hope and beliefs that the people espousing them don't really hold.<br /><br />These are New Age kooks who have grabbed onto Quantum Theory as if it reaffirms everything they believe about meditation, zero point energy, crystal healing, etc. If these snake-oil salesmen truly believed the crap they were selling, couldn't they just *wish* their paychecks into existence instead of appearing in this joke of a film? We get to listen to another nameless man, with no credentials that we know of, talk on his couch in front of a fireplace (or TV screen) about how he creates his own life. Every time he was on the screen I wanted someone to rush in and throw a pie in his face. These people take themselves WAY too seriously. Some other balding guy in a suit says that nobody ever *really* touches anything because there's a magnetic force preventing it at the quantum level. If only someone had walked onto the screen and kept punching him in the stomach, screaming \"\"I'm not touching you! I'm not touching you!\"\" A moral relativist in the movie claims that there's really \"\"no such thing as good or bad.\"\" So apparently it's OK that Hitler gassed millions of Jews to death? Another person says that there is \"\"no such thing as love.\"\" It's just a chemical and that we really don't love people, we're just addicted to the chemical rush we have when we're around them. I suspect this guy is doing this film as community service for being addicted to heroin for so many years.<br /><br />We are witness to a truly pathetic sequence where two young adults walk around a wedding reception, seeing everything like RoboCop. They evaluate if women are cows, dogs, or foxes, and a sexual position pops onto the scree. Marlee Matlin gets drunk at the wedding she's supposed to photograph and the next day decides to love herself and take a bath because she's a beautiful and unique snowflake.<br /><br />I liked when the film said people often find evidence for their pre-conceived notions. Perhaps in this review I'm only seeing what I want to see, but I TRULY wanted to see these people get pies to the face, and it never happened.<br /><br />If you've never heard of any of the ideas presented in the film before, you may find them interesting, but there are better sources for all of the ideas here. If you want to watch a good movie that talks about the Heisenberg Uncertainty Principle, go see The Man Who Wasn't There. If you want to read a good book about Quantum Field Theory, read Hyperspace by Michio Kaku. If you want to see a film that talks about different philosophies with imaginative visuals, see Waking Life (although it can feel boring, self-important, and pretentious at times). All in all, you should go and read Quantum Psychology or Prometheus Rising by Robert Anton Wilson instead of wasting your time on this movie.<br /><br />I normally have a very hard time giving movies a score from 1 to 10, but this one was a very easy for me: 1/10 Stars.<br /><br />The movie's title is true. The people in this film don't know #$*! Hands down, the worst movie I've ever seen.\"\r\n1\t\"Anthony Mann's westerns with Jimmy Stewart are slowly gaining for that director a position with John Ford and Howard Hawks as the best film director in that genre. He certainly knows how to give dimension to nice guy Stewart - in Mann's films there is an edge to Jimmy that is slowly demonstrated to the audience. In WINCHESTER '73 it was the relationship of Stewart to his brother and how it twists him into a figure of vengeance. Here it is a \"\"I trust only myself\"\" attitude, which leads to one complication after another. Even before the film properly begins he (as Jeff Webster) kills two of his hired cowboys who were helping on a cattle drive to Seattle because of some dispute (we never are clear about it - either they wanted to leave the cattle drive, or they tried to steal the cattle). <br /><br />He meets his match in Skagway, the port he has to get to in order to take his herd to Dawson. Skagway's boss is a so-called law man named Gannon (John McIntyre) who reminds one of the real boss of Skagway in the \"\"Gold Rush\"\" Jefferson \"\"Soapy\"\" Smith and Judge Roy Bean. The problem is that neither Smith nor Bean would have gotten quite as sleazy as Gannon in turning every opportunity into a chance to make some money. Stewart's herd interrupted a public hanging - so (as a penalty fine) the herd is confiscated (to be sold later for Gannon's profit). <br /><br />Stewart is partner with Ben (Walter Brennan - who oddly enough won his last Oscar playing Judge Roy Bean). They are also joined by Rube Morris (Jay C. Flippen) and also meet two women, the sophisticated Rhonda Castle (Ruth Roman) and the friendly and helpful Renee Vallon (Corinne Calvert). Rhonda works closely with Gannon, but had helped Jeff earlier in fleeing the authorities in Seattle. However, she has a similar \"\"I only trust myself\"\" attitude to Jeff. She does offer him employment to get supplies for herself to Dawson. He, Ben, and Rube go but at night (while the others are asleep) they go back and steal back their cattle. Renee follows and warns them that Gannon and his associates are following. Jeff holds off Gannon long enough for the cattle herd to be brought over the Canadian border, although Gannon points out that since Jeff has to return by way of Skagway Gannon can wait until he does to hang him.<br /><br />The reunited party of Rhonda and Jeff split over the trail to take to Dawson, Jeff opting for a longer and safer route. After he is proved right, they go by his route and reach Dawson only to find there is a lawless element threatening the community due to the gold fields. The herd is sold to Rhonda, and Jeff, Ben, Rube, and Renee start prospecting. There is soon two groups in the town of Dawson. One led by Connie Gilchrist and Chubby Johnson want to build a decent town. But the Mounties won't be setting up a station in Dawson for months. The other, centering around the \"\"dancehall\"\" run by Rhonda, are in cahoots with Gannon who has a vast claim jumping scheme using his gang of gunslingers (Robert J. Wilke - really scary in one sequence with Chubby Johnson and Jay C. Flippen, Jack Elam, and Harry Morgan). Jeff wishes to steer clear of both, and head with his new wealth and Ben for a ranch they want in Utah. But will they get there? And will Jeff remain neutral?<br /><br />The performances are dandy here, including Stewart as a man who is willing to face all comers, but would otherwise be peaceful enough. Brennan is playing one of his patented old codgers, whose love of good coffee has unexpectedly bad results. Flippen is a drunk at first, but tragedy and responsibility shake him into a better frame of mind - and one who has a chance to verbally stab Stewart in the heart using Stewart's own words against him. McIntyre would achieve stardom on television in WAGON TRAIN replacing Ward Bond, but his work in Mann's films show his abilities as a villain (such as his trade post opportunist who outsmarts himself in WINCHESTER '73). He is, as is said elsewhere on this thread, really sleazy - but he has a sense of humor. Roman is an interesting blend of opportunist and human being, whose fate is determined by her better feelings. And Calvert is both a voice of conscience and a frontier \"\"Gigi\"\" aware that she is more than a young girl but a budding woman.<br /><br />Best of all is the Canadian Rockies background - as wonderful in its way as the use of Monument Valley by John Ford. Mann certainly did a first rate job directing this film, and the viewer will appreciate the results.\"\r\n0\tIt seems that several of the people who have reviewed this movie only watched it in the first place because it was filmed near where they live. How's that for a ringing endorsement? If this movie was filmed near where I lived I wouldn't be mentioning it in my review. It is horrid! Several reviews state that this film is a spoof or tongue-in-cheek horror movie, it is neither. It is sad to see this film reviewed as a comedy as that makes it not only a bad attempt at a horror film but as a comedy as well. I did laugh though, at how unbelievably bad the film was.<br /><br />This movie has 2 good things going for it, the mask and the weapon of choice, unfortunately it would have been more interesting watching an hour and a half of the mask and weapon laying on a table then watching this garbage. The social commentary behind the film is also laughable, juvenile and stupid. Don't bother with this movie, you've already wasted time reading this review don't waste anymore on this movie. Arrggghhh! It's infuriating that movies like this even get made. I was expecting the entire cast a crew to be credited to Alan Smithee, a name used when a person, usually a director, doesn't want to be credited with a movie because it's so bad.<br /><br />There is nothing redeeming in this movie, I spent $1.19 on the rental and feel I was ripped off. Avoid. 1 out of 10\r\n1\tI've seen The Blob several times and is one of the better low budget alien invasion movies from the 1950's.<br /><br />A strange meteor lands just outside a small town and an elderly man goes to investigate this. A strange jelly like substance then attaches itself to one of his arms and a young couple who saw the meteor land arrive in time and take him to the local doctor's, where the old man then gets completely absorbed by the mass. The doctor and his nurse are the next victims and the mass is getting bigger. When these incidents are reported to the police, they don't believe the young couple and accuse them of making all this up. They finally believe them when the mass, now huge turns up in the town's cinema and everybody runs into the streets screaming. It then attaches itself on a diner with the young couple and some others inside. The Blob is stopped by spraying a load of fire extinguishers at it and it freezes, which is its weakness. It is then transported by plane to the frozen wastes of the Arctic and disposed of there. But it is only frozen, not dead...<br /><br />This movie has a typical setting for its period: teenagers and a small town. The Blob has a good rock and roll style theme song at the beginning and the movie is atmospheric throughout.<br /><br />The sequel, Beware! The Blob followed in 1972 and a remake came in 1988 but this is the best of The Blob movies.<br /><br />The cast is lead by Steve McQueen (The Great Escape)and is the movie that made him a star and Aneta Corsaut plays his girlfriend. I'm not familiar with any of the other stars.<br /><br />The Blob is a must see for all sci-fi fans. Fantastic.<br /><br />Rating: 4 stars out of 5.\r\n0\tTHE ZOMBIE CHRONICLES <br /><br />Aspect ratio: 1.33:1 (Nu-View 3-D)<br /><br />Sound format: Mono<br /><br />Whilst searching for a (literal) ghost town in the middle of nowhere, a young reporter (Emmy Smith) picks up a grizzled hitchhiker (Joseph Haggerty) who tells her two stories involving flesh-eating zombies reputed to haunt the area.<br /><br />An ABSOLUTE waste of time, hobbled from the outset by Haggerty's painfully amateurish performance in a key role. Worse still, the two stories which make up the bulk of the running time are utterly routine, made worse by indifferent performances and lackluster direction by Brad Sykes, previously responsible for the likes of CAMP BLOOD (1999). This isn't a 'fun' movie in the sense that Ed Wood's movies are 'fun' (he, at least, believed in what he was doing and was sincere in his efforts, despite a lack of talent); Sykes' home-made movies are, in fact, aggravating, boring and almost completely devoid of any redeeming virtue, and most viewers will feel justifiably angry and cheated by such unimaginative, badly-conceived junk. The 3-D format is utterly wasted here.\r\n1\tHomicide: The Movie proved to be a good wrap-up to a well-written, well-directed, and well-acted series. Loose ends were tied up that weren't properly addressed at the end of the final season. The entire series, and especially the movie, provided a life-like look at life (and death) in Baltimore, a culturally unique city with an extremely high murder rate. My attraction to the series began long before I moved to Baltimore, but once I experienced life here for myself, I realized how realistic it was. And the movie certainly retained that spirit. I will certainly miss new original episodes of the series, but am very grateful to NBC and the producers and cast for giving us one last glimpse at the dark side of Charm City.\r\n0\t\"The idea is to have something interesting happening in the first ten minutes to keep the audience hooked. Late Night Shopping manages to avoid interest for much longer than that. When we do get to a point, it is so monumentally moronic that I kept thinking I must have misunderstood it. But I didn't.<br /><br />Sean tells the story of an Osaka landlord who rented the same apartment to two people at the same time who worked different shifts and so didn't realise they were sharing. His friend asks \"\"But what about the weekends?\"\" Sean doesn't have an adequate explanation. Sean then tells the story of his own similar problem, which is that he isn't sure his girlfriend is still living at home as he works during the night and she works during the day so they never see each other. This has been going on for three weeks. But his friend doesn't ask: \"\"Yes, but as I said before, what about the weekends? You must see her then. It doesn't make sense. What are you going on about, Sean? Are you on medication or something?\"\" But let's be generous and assume that they both work seven days a week.<br /><br />We see Sean checking to see if the soap and towels have been used. (In fact, bizarrely, he starts to carry the soap around with him.) But what about his girlfriend's conditioner and shampoo, sanpro and moisturiser, toothpaste and toothbrush. Let's go to the kitchen. What about food and drink? Is any missing? Has any been bought? In the bedroom, has the shared bed been made or not? Are her clothes being used and exchanged for clean ones? Is the laundry basket fuller? In the toilet, is the seat up or down? I mean, good grief!<br /><br />And to cap it all Paul arranges to leave work early to see if his girlfriend is still living at home. Why doesn't he just phone her?<br /><br />But it gets worse. In the last act although no-one told Vincent where the rest of the group are going he manages to find them. Lenny's love interest and Sean's girlfriend conveniently appear to be best friends and also manage to find the group. There isn't even the slightest attempt to explain any of these extraordinarily unlikely coincidences.<br /><br />To be fair the dialogue is OK but not nearly good enough to make up for the weak characters or annoyingly lame story.<br /><br />I heard one of actors interviewed and he promised \"\"no guns, no drugs, no corsets.\"\" I thought, \"\"great\"\". But after half-an-hour of tedium I was yelling at the screen: \"\"I want guns! I want drugs! I want corsets!\"\"<br /><br />It wouldn't have taken much to sort these problems out but on the official website the director boasts that the film wasn't script-edited. That's all you need to know.\"\r\n0\t\"The Ballad of Django is a meandering mess of a movie! This spaghetti western is simply a collection of scenes from other (and much better!) films supposedly tied together by \"\"Django\"\" telling how he brought in different outlaws. Hunt Powers (John Cameron) brings nothing to the role of Django. Skip this one unless you just HAVE to have every Django movie made and even THAT may not be a good enough excuse to see this one!!\"\r\n1\t\"I saw \"\"An American in Paris\"\" on its first release when I was still at school and fell in love with it straightaway. I went back to see it again the next day and have lost count of the number of times I have seen it since, both in the cinema and on TV. It makes fantastic use of some of the best music and songs by the greatest popular composer of the twentieth century (George Gershwin) and features the greatest male (Gene Kelly) and female (Leslie Caron) dancers in Hollywood history. The supporting cast of Oscar Levant (as quirky as ever), Georges Guetary (why didn't he make more movies ?) and Nina Foch (brilliant in an unsympathetic role) are at the top of their form. The closing ballet, superbly choreographed to the title music, makes excellent use of the sights and sounds of Paris and of the images of impressionist and post-impressionist artists. All the Gershwin songs are beautifully staged, but the most memorable are \"\"It's Very Clear\"\" (Caron and Kelly on the banks of the Seine) and \"\"I Got Rhythm\"\" (the kids of Paris joining Gene Kelly in \"\"Une Chanson Americaine\"\"). If you love Paris, see this movie. If you've never been to Paris in your life, see it. But see it !\"\r\n1\t\"Excellent view of a mature woman, that is going to lose everything (even the pruner has a mortgage). The way she gets involved into this special \"\"business\"\", the innocence, and the true love that exists between the people of a little town, it's mixed perfectly to give us as result a fresh, light and funny comedy. I couldn't stop laughing with a very funny scene of two old ladies in a drugstore.<br /><br />I love European films, and with movies like this one, my opinion grows stronger. A movie that I also recommend with my eyes closed, in this same genre, is Waking Ned Devine.<br /><br />Saving Grace, a comedy that many friends enjoyed as much as myself. You will love it.\"\r\n0\tThe Priyadarshan/Paresh Rawal combo has been golden before with the likes of HERA PHERI and HUNGAMA so I went into the movie (at an Indian multiplex) with high hopes, especially after the slick promos. Unfortunately, like HULCHUL before it, this movie was a huge disappointment.<br /><br />Like others have commented, the premise of the movie, which was already stale to begin with, just gets stretched on and on without any development or additional layering. After a while, you just want the movie to end so you can go home (if I had been watching this at home, it would have been much easier to cut my losses). Akshay Kumar's performance is average at best and John Abraham should not try doing comedy again. The comedy aspects of the movie overall were pretty week. I only remember giggling like twice the entire movie. Definitely no sidesplitting belly laughs that consumed me in HERA PHERI or even to a lesser extent in AWARA PAAGAL DEEWANA. Paresh Rawal had a few of his expected classic moments, but overall, because his role and character wasn't given much room to grow, he didn't make much of an impact in this film.<br /><br />Neha Dhupia, who makes only an appearance in the movie, was fun to look at while she was on screen. And some of the songs are fun. Especially the opening and closing songs of ADA and KISS ME BABY, respectively. Otherwise, you're better off just passing on this movie.\r\n0\t\"You can never have seen either film and still know that The Jerk Too is a disaster. The question is not, \"\"How did it get made,\"\" because if you throw money at anyone and tell them to make a film, they will do so.<br /><br />No. The question is \"\"Why, oh why, did Steve Martin allow it to be made?\"\" I think he needed the money to fight a nuisance lawsuit and was determined it not cost him anything. He knew the sequel was going to be so frightful, that out of pride, he wouldn't even count it's royalties as income. <br /><br />The only way this sequel could not be an embarrassment is to have had Carl Gottlieb and Steve Martin revive the nation's favorite poor black family.<br /><br />And \"\"dcreasy2001\"\" (aka Mark Blankfield?): It's just transparently obvious that you worked on this film in some sad capacity, and the only way you can feel better about your involvement is to be the sequel's lone cheerleader as an IMDb user comment. I was praying for you to veer over into satire, but alas, you were really making an effort at spin. Why not 10 stars?\"\r\n0\t\"I watched DVD 1 only. The program proper may have 10 minutes of good information; otherwise it's snotty putdowns of religious people. It's as if director Brian Flemming only recently discovered both atheism and sarcasm, and feels with these tools he can easily bludgeon his opposition.<br /><br />Also, Flemming wanders extensively into his own personal issues, and they take over the movie. It never gets back on topic.<br /><br />Religious people are prone to discount skeptics when their objections to religion are obviously rooted in abusive upbringings. Arguments from such victimized people seem irrational, and therefore unconvincing.<br /><br />Anti-religious people will want more data. We don't need to be told that religious people are nutty, any more than American Jews need to be told how annoying Christmas music gets by mid-December.<br /><br />In the best scene, the Superintendent of Fleming's childhood Christian school rather insightfully confronts the director on his motivations. That seems like the most honest part of the movie, and it was too short.<br /><br />If Fleming were a bit more self-aware, he might have a good story in him about his own (past & current) relationship to Christianity, and the abusive institutions that indoctrinated him in his youth.<br /><br />And perhaps he could lend his \"\"Christ never walked the earth\"\" material to a more serious documentarian. I'm not studying the writings of Saul/Paul to find out how air-tight this all is, but a quick browse of Wikipedia suggests most of these arguments are discredited.<br /><br />The bonus interviews are pretty good, tho they don't bolster Fleming's thesis much. Sam Harris is a good spokesperson for the anti-religious POV, and he doesn't go light on those other, non-Christian religions. Harris also has some good (and easily Google'd) interviews on Salon.com , Amazon.com , and Samharris.org .\"\r\n0\tIf there is one film which is the worst of this year- it's TASHAN The first promo gave an indication that the film will be a boring Dhoom 2 style film, and well i knew first only it would be a bad film whatever it maybe Because of it being a Yashraj film Or maybe seeing the cheesy promo But this film gave me a shock, it was even worst then Dhoom 2 and what i expected First Saif's introduction which is boring Then Saif- Kareena meet, Kareena is so artificial and then Anil Kapoor oh god, what he is doing in such a weird film? What kinda role it is? What acting is he doing? His first scene is alright but then his act gets repetitive and he overacts Then came Akshay who provided some nice scenes, but then the film became more boring and with all the outdated stuff Childhood romance, overdose of childish Rajnikant style action scenes and all boring scenes The ending is another joke<br /><br />Vijay Krishna Acharya would have got 3 films more to direct, if this film had worked, thats the strategy of yashraj, only money nothing else So Vijay is another addition to their list of crap filmmakers Music( Vishal Shekhar) is ordinary<br /><br />Performances Akshay Kumar comes in the film as a whiff of fresh air, he actually provides some engaging moments Saif Ali Khan is irritating, Kareena is equally bad Anil Kapoor hams outrageously and spoils the show even more Rest are okay\r\n1\t\"I think the majority of the people seem not the get the right idea about the movie, at least that's my opinion. I am not sure it's a movie about drug abuse; rather it's a movie about the way of thinking of those genius brothers, drugs are side effects, something marginal. Again, it's not a commercial movie that you see every day and if the author wanted that, he definitely failed, as most people think it's one of the many drug related movies. I, however, think something else is the case. As in many movies portraying different cultures, audience usually fully understands movies portraying their own culture, i.e. something they've grown up with and are quite familiar with. This movie is to show what those \"\"genius\"\" people very often think and what problems they face. The reason why they act like this is because they are bored out of their minds :) They have to meet people who do mediocre things and accept those things as if they are launching space shuttles on daily basis. They start a fairly hard job and excel in no time. They feel like- I went to work, did nothing, still did twice as better as the guys around me when they were all over their projects, what should I do now with my free time. And what's even more boring? When you can start predicting behavior not because you're psychologist, but instead because you have seen this pattern in the past. So, for them, from one side it's a non challenging job, which is also fairly boring sometimes, and from another they start to figure out people's behavior. It's a recipe for big big boredom. And the dumbest things are usually done to get out of this state. They guy earlier who mentioned that their biggest problem is that they are trying to figure out life in terms of logic (math describes logic), while life is not really a logical thing, is actually absolutely right.\"\r\n0\tI am working my way through the Chilling Classics 50 Movie Pack Collection and THE WITCHES' MOUNTAIN (El Monte de las brujas)is something like the 17th movie in the set.<br /><br />The movie had nothing to it to hold my attention at all. The plot was incoherent. The dialog seemed improvised. The acting was poor. The characters were unsympathetic.<br /><br />The best scene is the beginning, with an exasperated woman that is driven to burning her seemingly bratty daughter. However, the only connection this scene has to the rest of the movie, is the lead character, Mario, who has the most stupendous mustache ever. But, that's it.<br /><br />The film was not effective on any level. The music was too intrusive. The lighting was very dark, so that some scenes are almost completely black. It really is barely watchable -- what more can I say?\r\n0\tGeordies...salt of the earth characters...bricklayers...beer...Geordies...happy go lucky...adventures working abroad...salt of the earth characters...warm wonderful people...Tyne Bridge (tear in the eye)...brown ale...salt of the earth characters...cute little Red Indians children in Newcastle United tops...emetic...Geordies...salt of the earth characters...<br /><br />etc etc etc....<br /><br />Please. This is so poor. And you should know better Timothy Spall. They can't have paid you that much.<br /><br />As for Jimmy Nail. Well the kindest thing that can be said is that he is every bit as good an 'actor' as he is a singer and writer. Come on Jimmy, the joke's over. 'Crocodile Shoes' and 'Spender' were very funny, unfortunately I don't think they were supposed to be. With 'Auf Wiedersehen Pet' the opposite applies.\r\n1\tThat was great fun! I never read those Chester-Gould-comics but it's not necessary to know them. Maybe there were some inside jokes I didn't figure out but what the eye doesn't see the heart cannot grieve over. This is such an ironic, colourful film and the actors are good-humoured all together. The setting is similar to that in the Batman` movies, but not as dark and grey. Okay, the story is not so original but there is a plot (which is not self-evident) and a more or less surprising ending.<br /><br />With this movie, you could play an interesting game, if you watch it with friends. Don't watch the credits at the beginning and then look who's the fastest to find out who are the famous actors under their make-up!\r\n1\tI watched this film not expecting much and not knowing anything much about it. I loved it. A very good, tight plot, an intriguing hook in the form of the ugly, fat, deaf girl and the ex-con, and a pace that kept things flowing without being hurried. <br /><br />A much, much better film than the same director's De battre mon coeur s'est arreté, which was boring and unbelievable.<br /><br />The only thing that didn't quite work was that the supposedly ugly, fat girl was neither ugly nor fat: solid, certainly, and far from conventionally beautiful, but with so much character in her face that she took over the screen whenever she was on it. Superb. I wish she was in more films, and better ones than she generally is. I've seen a bit of Gilles' Wife and a bit of The Moustache, and they both looked like rubbish, and I've seen all of De battre mon coeur s'est arreté, and that certainly is rubbish. She seems to have a few coming up, so I'll keep my fingers crossed.\r\n1\tI first saw this movie on cable about 5 years ago and I could not stop laughing. Everything about this movie seemed to click, the storyline, the characters, the setting. As far as film is concerned I wouldn't call this a great movie but for what it is supposed to be it is fantastic. It gets it's meaning across. The cast is maybe as good as any ever put together in a comedy movie. Corben Berbson, Fred Gwynne, Ruben Blades, and Ed O'Neil are hilarious. For this who haven't seen it, I will give you a brief synopsis: Four Criminals meet up in a small town in Montana after receiving a letter from their friend about a bank heist. However when their friend is arrested by two cops who chased him from New Jersey, they try to figure out whats going on and all hell breaks loose. The film is truly a great bank caper comedy and is sort of like a poor mans version of Oceans Eleven, only with four criminals who can't stand each other, and in Montana rather than Las Vegas. All in all if like to laugh I would strongly encourage you to see this movie.\r\n0\t\"Such is the dilemma(above) that Debbie must face at the close of this Sam Sherman production Naughty Stewardesses. Debbie has just hit town, become a stewardess, slept with an elderly rich man(who she describes is in his 50's but obviously hit that mark a decade or two ago), shoots nude scenes for a photographer she just met, and then is the central element to a kidnapping/extortion plot. Through it all and amidst all that emotional upheaval and soul-searching, what in heaven's name will Debbie do? Well, I cannot give it away completely but don't expect any real epiphany here. Let's face it. Naughty Stewardesses is just what it wants to be(at least two-thirds through): a soft core porn film with lots of topless women and a funny in that kitchy 70's way film. There is no grand art here. The movie was designed to make money and exploit a growing trend at the time to put nymphomaniacal stewardesses in films so that the audience could live out vicariously their voyeuristic tastes. By todays standards, the film is pretty tame. What this film DOES do wrong is try to be some kind of statement film at the end. C'mon, anyone here believing that little diatribe by Debbie while on the beach contemplating life. She would spend more time picking out which halter top she will wear that day then do that. And what about the ridiculous plot to steal 50 grand? It didn't make sense to me so how on earth did these characters \"\"dig\"\" it? Anyone buying Cal as a member of the PLO(something like that) or even as a director for hardcore pornography? He would be luck to get work at Seven Eleven! This is, as another reviewer noted, more of a Sam Sherman piece then and Al Adamson piece. You can tell when Al is in complete charge. There is virtually no budget and the film doesn't look nearly as polished as this. Adamson does a decent job directing this time and I have to give Sherman credit to a degree. While this film is bad just for what it was meant to be, it has a certain style to it. I liked the opening credits with the animation and photographs. I even liked the music of Sparrow. \"\"Silver Heels\"\" was a somewhat catchy tune. The movie doesn't look cheap really at all. Compare that to ANY of Al's horror films. As for the cast, yes, Bob Livingston is a bit old for the lead, but some examination went into his character and the obvious thread that young women are attracted to men with money was explored as well. I had major problems with Robert Smedley who was just plain awful in his role. The girls have all got great sets, so what else was required of them huh? Naughty Stewardesses is relatively harmless exploitation film from the 70's and will serve as a living time capsule for certain aspects of life during that decade. By the way, did I mention it is a pretty bad picture?\"\r\n0\t\"Men In Black 2 was a real disappointment for me. While the actors did a pretty good job, especially Smith, there just isn't a cure for a poor script once in production. The movie really had a \"\"sequel\"\" kind of feel, playing off partial events of the first film. The story was, in a word... bad, at best. It wasn't thought out well, and seemed very choppy and incoherent at times.<br /><br />In the first flick, the MIB Organization had a kind of \"\"elite\"\" force feel. You had a few special agents, and it had a \"\"clandestine\"\" kind of feel to it. In the sequel, the MIB Organization has a JROTC Summer Camp vibe.<br /><br />The movie wasn't terrible or anything.. it just lacked the \"\"coolness\"\" (for lack of a better phrase) of the first movie. A lot of the same old humor was recycled from the first to the second, and didn't really add any originality to the MIB Universe.<br /><br />A perfect analogy would be Episode 1 to the first 3 films. Was it decent? Yeah. Is it worthy of bearing it's title? Not really.\"\r\n0\tHaving heard so many people raving about this film I thought I'd give it a go. Apart from being incredibly slow, which I don't mind as long as the wait is worth it, but it just isn't. As many others have said there are so many inconsistencies and so much of this film just doesn't ring true. The reaction of the 4 men switches from shock, horror on finding the body to complete indifference whilst they fish. Surely if they were the type of men that would go on happily fishing, then they would have just reported the body and said they had only discovered it after their fishing trip....why on earth tie the body to a tree, go fishing and then tell everyone you found the body 2 days previously? Its so hard to watch a film knowing that the behaviour of the main characters is so inconsistent. As for the rest of the townsfolk, well you'd think at least one of them might show some curiosity about who actually killed the woman! The body itself, naked except for the knickers....what scenario leads to that? If she was raped then why still the knickers? If she was raped with the clothes on, then why remove them afterwards bar the knickers? If she wasn't raped, then why take all her clothes off bar the knickers....leaving yourself with evidence to dispose of? I truly cant think of any realistic scenario that would lead to that other than killing someone to steal their clothes so you can fill up your jumble sale stall! Oh well its watchable but only just and only because, despite the poor script, the acting is strong.\r\n1\tAfter the success of Die Hard and it's sequels it's no surprise really that in the 1990s, a glut of 'Die Hard on a .....' movies cashed in on the wrong guy, wrong place, wrong time concept. That is what they did with Cliffhanger, Die Hard on a mountain just in time to rescue Sly 'Stop or My Mom Will Shoot' Stallone's career.<br /><br />Cliffhanger is one big nit-pickers dream, especially to those who are expert at mountain climbing, base-jumping, aviation, facial expressions, acting skills. All in all it's full of excuses to dismiss the film as one overblown pile of junk. Stallone even managed to get out-acted by a horse! However, if you an forget all the nonsense, it's actually a very lovable and undeniably entertaining romp that delivers as plenty of thrills, and unintentionally, plenty of laughs.<br /><br />You've got to love John Lithgows sneery evilness, his tick every box band of baddies, and best of all, the permanently harassed and hapless 'turncoat' agent, Rex Linn as Travers.<br /><br />He may of been Henry in 'Portrait of a Serial Killer' but Michael Rooker is noteworthy for a cringe-worthy performance as Hal, he insists on constantly shrieking in painful disbelief at his captors 'that man never hurt anybody' And whilst he surely can't be, it really does look like Ralph Waite's Frank character is grinning as the girl plummets to her death.<br /><br />Mention too must go to former 'London's Burning' actor Craig Fairbrass as the Brit bad guy, who comes a cropper whilst using Hal as a Human Football, yes, you can't help enjoy that bit, Hal needed a good kicking.<br /><br />So forget your better judgement, who cares if 'that could never happen', lower your acting expectations, turn up the volume and enjoy! And if you're looking for Qaulen, he's the one wearing the helicopter.\r\n1\t\"I show this film to university students in speech and media law because its lessons are timeless: Why speaking out against injustice is important and can bring about the changes sought by the oppressed. Why freedom of the press and freedom of speech are essential to democracy. This is a must-see story of how apartheid was brought to the attention of the world through the activism of Steven Biko and the journalism of Donald Woods. It also gives an important lesson of free speech: \"\"You can blow out a candle, but you can't blow out a fire. Once the flame begins to catch, the wind will blow it higher.\"\" (From Biko by Peter Gabriel, on Shaking the Tree).\"\r\n1\tAn entertaining kung fu film, with acting, plot and fight scenes a cut above the average chop socky. All of the cast are likeable characters and skilled martial artists. Alexander Fu-Sheng's proto-Jackie Chan comedy antics are fun to watch, and his austere companion shows particularly impressive skills. For me, the film's only glaring flaw is the size of the cast -- at times, things get a little confused as the film chops and changes between various subplots, and some of the characters are not as fully fleshed-out as one might wish.<br /><br />But a kung fu film should be judged first and foremost on the quality of the action, and Shaolin Temple definitely delivers on that count. The film climaxes with a high-bodycount battle that allows each character to show off his skills against a worthy opponent.<br /><br />Overall, Shaolin Temple is an enjoyable low-budget kung fu movie. Not up to the quality of a good Jet Li film, but definitely worth a look for fans of the genre. My rating: 8/10.<br /><br />Misc notes: The 1987 Warner Home Video release I saw was (predictably) poorly dubbed, and lacked full cast & crew credits.\r\n1\tUtterly tactical, strange (watch for the kinky moment of a drop-dead gorgeous blonde acting as pull-string doll for some rich folks), pointless but undoubtedly compelling late-night feature. This unhinged French production is a stew of perplexedly unfocused ideas and random plot illustrations centred on its very charismatic stars (if somewhat anti-heroes) Alain Delon and Charles Bronson. Really they don't get to do all that much, especially during the confined, lengthy mid-section where they hide themselves in a building during the Christmas break to crack a safe with 10,000 possible combinations. Oh fun! But this is when the odd, if intriguing relationship is formed between Delon and Bronson's characters. After a manipulative battle of wills (and childishly sly games against each other), the two come to an understanding that sees them honour each other's involvement and have a mutual respect. This would go on to play a further part in the twisty second half of the story with that undetectable curve-ball. Still their encounters early on suggest there's more, but what we get is vague and this is magnified by that 'What just happen there?' ending that might just make you jump. YEEEEAAAAAHHHHHHHHH! Glad to get that out of the system. <br /><br />The pacing is terribly slow, but placidly measured for it and this seems purposely done to exhaust with its edgy, nervous underlining tension. Watch as the same process is repeated over and over again, and you know something is not quite right and the scheming eventually comes into play. Now everything that does happen feels too spontaneous, but the climax payoff is haunting. The taut, complex script is probably a little too crafty for its own good, but there are some neat novelties (Coins, glass and liquids try not spilling) and visual symbolisms. Jean Herman's direction is efficiently sophisticated and low-key, but get a tad artificial and infuse an unwelcoming icy atmosphere. The sound FX features more as a potent note, than that of Francois DeRoubaix's funky score that's mainly kept under wrapped after its sizzling opening. Top drawers Delon (who's quite steely) and Bronson (a jovial turn) are solid, and work off each tremendously. Bernard Fresson chalks up the attitude as the Inspector who knows there's more going on than what is being led on. An attractive female cast features able support by Brigitte Fossey and Olga Georges-Picot. <br /><br />A cryptically directionless, but polished crime drama maintained by its two leads and some bizarre inclusions.\r\n1\tThis film is one of Tom Cruise's finest films. He captures the audiences imaginations with his role of David Aames. His character can relate to us all in some way.The story line is very clever and keeps the audience on edge throughout the whole film. I never really watched Cruise movies that much before but after seeing this it shows me his true talent. My favourite part in the movie is the end where it all comes to a big conclusion and he find out the truth. If you have not seen this yet you definitely should give it a try. It's one of those films that once you've started watching it you just got to see it until the end or it will keep you thinking and you will regret it. My opinion is you should just go buy it and take a risk thats what I did and it became one of my favourite films of all time. It's A* 10/10 I promise once you watch it, it will stick with you and you will like it forever.\r\n0\t\"This film is totally garbage. Some imbecilic intellectual comforting himself by making all his best to claim superiority of aristocrat over working class. Nothing more than a piece of self-complacence catharsis. Disgusting.<br /><br />If this kind of a movie is set in US, it will sure make itself a big joke. And simply because it comes out from 'the other side', it makes itself a masterpiece, a wonderful amusement for certain brain-washed and/or brain-washing westerns (some George W. maybe:). A typical cold-war sequelae, some kind of joke anyway.<br /><br />I would say, if this -- like expressed in this film -- is all what Soviet intellectuals had been thinking about all those years, then maybe they deserve all the miseries they claim they had gone through. BUT NO! 'cause like many others, I've read and watched real masterpieces made by real outstanding Soviet intellectuals. For example, something also relevant with dog, \"\"White Bim Black Ear\"\" -- both Gavriil Troyepolsky's book and Stanislav Rostotsky's movie -- is a real masterpiece. Real life, real tragedy, real sad, real pride and dignity, one of the real best of the Soviet era.\"\r\n0\tIf I could i would give ZERO stars for this one, but unfortunately i have to give one...<br /><br />There is no single scene I could laugh about... but the game didn't make me laugh either. So if you're some ill retarded folk, go to your local cinema, watch this movie and give it 10 stars, like some people here already did.<br /><br />but for me... in a movie where children are shot dead to achieve humor... good taste goes over the edge... this was the third time i wasted my time to see a Boll movie and it was definitely my last!<br /><br />0/10... i'm ashamed of being from the same country as Uwe Boll!<br /><br />PLEASE PLEASE KEEP HIM FROM MAKING MORE MOVIES!!!!!\r\n0\tI had never heard of this one before it turned up on Cable TV. It's very typical of late 50s sci-fi: sober, depressing and not a little paranoid! Despite the equally typical inclusion of a romantic couple, the film is pretty much put across in a documentary style - which is perhaps a cheap way of leaving a lot of the exposition to narration and an excuse to insert as much stock footage as is humanly possibly for what is unmistakably an extremely low-budget venture! While not uninteresting in itself (the-apocalypse-via-renegade-missile angle later utilized, with far greater aplomb, for both DR. STRANGELOVE [1964] and FAIL-SAFE [1964]) and mercifully short, the film's single-minded approach to its subject matter results in a good deal of unintentional laughter - particularly in the scenes involving an imminent childbirth and a gang of clueless juvenile delinquents!\r\n1\tThis documentary is incredibly thought-provoking, bringing you in to the lives of two long-time lovers who are in the final stages of AIDS. The past footage of their twenty-some-odd years together really brings their final moments home.<br /><br />If this movie doesn't make you feel the pain and agony of these two fascinating people, you don't have a heart.\r\n0\tFirst of all, I'd like to tell you that I'm into comics, anime, animation and such stuff. It is true that everyone has his own preferences, but you can trust me on this movie. I'll be objective. To begin with the story - it's OK. Follows the story line of the comic books as far as I'm familiar with them. But the animation... Well, it's not actually terrible, but it's definitely cheap and mediocre. It would be a lot better if they didn't try to imitate the anime style and sticked to the original comic book style drawings. If we pretend not to see the rare sloppy effects like fire and lightnings you could tell that the movie is made about 10 years ago and even more. Looks a little bit like the original Vampire Hunter D from 1985. Take a look at Heavy Metal FAKK 2000 for instance - 4 years ago they made a movie that looks a hell lot better! In addition to this the voice talents do nothing remarkable, the music is nothing special. So all in all - it lacks atmosphere. I watched it, but I cannot tell I really enjoyed it. It just does not capture you. There's plenty of blood and violence, but that does not impress me at all. May be it will be shocking for someone who was never watched more mature oriented animations and sees animated blood for the first time (is there anyone around?), but I don't think this is the audience for this movie. So they could add a little nudity and spice to it. The chicks around Lucifer were quite tasty, and hell, we have Lady Death herself! There are few sexy looks, but that's not enough. Instead of Bill Brown's music I think it would look better on a hard rock / heavy metal soundtrack. All in all - the movie isn't that bad, but if you want something better take the original Heavy Metal, Heavy Metal FAKK 2000, Ralph Bakshi's Fire and Ice or Wizards maybe. And of course - Vampire Hunter D: Bloodlust\r\n0\t\"So let me start off by saying that I saw this movie as part of a bargain. I was really bored one fine 1997 day and so I biked over to the movie rental store. I asked the clerk what the worst movie he had in stock was. Without hesitation he walked me over to \"\"Lucky Stiff.\"\" He told me that he'd waive the $1 rental fee (he said it would be wrong to charge more) if I promised to watch the whole movie. So watch it I did, for free...<br /><br />This movie is terrible. God-Awful even. I don't need to go into plot details, read the other reviews. The jokes make no sense. The acting was terrible. I know it was supposed to be a comedy, but the stupidity of the main character was exhausting. You might try to watch it as something to laugh at, but it's so bad that it isn't even funny in that way. Avoid!\"\r\n1\t\"Who can watch a movie, look at Lucy Liu and not be overjoyed. That woman is amazingly beautiful & a talented actress. That's a tough combination to find now a days. And Jeremy Northam. i heard his name plenty of times, but i never really noticed him. My advice to Hollywood is : \"\"use him more\"\".<br /><br />now about the movie: I watched it in one of my graveyard shift. I don't recommend that to anyone. It's a bit to complicated & mysterious for that. i still can't believe i didn't see the ending coming. I'm not gonna say what cause that'll spoil the hole movie. although saying this is spoilment enough.<br /><br />now i'm suppose to cast my vote about this movie. I love the dark mystic story, the actors did a good job & i love the directors (natali) work in the past. There's not a big audience for this kind of thing, that's also pretty risky. you know what, i'm just gonna give this work a 8 cause everybody should see this. Then again, 1 point deduction cause there is always space for improvement.\"\r\n1\t\"When I first saw \"\"A Cry in the Dark\"\", I had no idea what the plot was. But when I saw it, I was shocked at what it portrayed. When I saw it a second time in an Australian Cinema class, I realized a second point: communication issues. You see, when a dingo snatched Lindy Chamberlain's (Meryl Streep) baby, she and her husband Michael (Sam Neill) were grief-stricken but didn't show it. As Seventh Day Adventists, they believed that God willed this to happen, and so they couldn't mourn it. But when people all over Australia saw their lack of sadness, everyone started believing that Lindy did it herself.<br /><br />The point is, the wrong message got communicated to the public, and it turned people against Lindy. Even though this was a pure accident, it still happened. It may be one of the biggest disasters resulting from the existence of mass media, regardless of any media outlet's political views.<br /><br />As for the performances, Streep does a very good job with an Australian accent (no surprise there), and Sam Neill is equally great. You will probably get blown away just by what you see here. Definitely one of Fred Schepisi's best movies ever.\"\r\n1\tThis film could have been a silent movie; it certainly has the feel of one. I was extremely, extremely lucky to see this very rare version of this film. Extase, is a 'symphony of love', and transcends all language versions. French, which is the ultimate romantic language, seems quite suitable for this very sensual and lyrical version.A young Hedy Lamarr lights up the screen, in this film which, in a way is almost like a sex fantasy; but definitely far from being pornographic.Tech qualities may have been a little crude; but that does not detract from the magical spell this film exudes.Many lovers of early cinema, would absolutely adore this film.\r\n1\tIf you love The Thin Man series, you will love this movie. Powell's character of Vance is very similar to his character of Nick Charles. There are even dogs. . .<br /><br />The chemistry between Powell and Astor may not be as fabulous as Powell and Loy, but it isn't half bad.\r\n0\tI thought I was going to watch a scary movie.. and ended up laughing all the way throughout the movie. In the scene where the human transformed to a werewolf I thought they was kidding. Todays computer games have ten times better animations. Low budget, is a fitting comment. I would recommend Wolf (1994) with Jack Nicholson for a good werewolf movie. It has good special effects as they should be (human transforming to werewolf). Unless you wish to have good laugh I would not recommend you to watch this movie. This movie is a joke.\r\n1\t\"Who votes in these ratings? \"\"Jacknife\"\" is a beautifully acted, brilliantly observed piece of work, with actors on top of their game, especially Ed Harris and the peerless Robert DeNiro(please don't mention Marlon Brando in the same breath of this man-see \"\"Taxi Driver\"\" for confirmation of this point). Is it a 'mundane' movie because it doesn't have sex/meaningless action/nudity in it. This movie is about the complexities of the characters involved. Ed Harris makes you feel every moment with him and his emotional outburst towards the end is heartbreaking. The part where he orders a young man in a bar to take off his army clothes is a wonderful observation of how fashion and the movies exploit tragic situations and how frustrated real men must feel to see a young upstart sporting military attire. While we are on this subject, \"\"Casino\"\" 7.8 out of 10? One of the greatest films of all time, from one of the greatest directors, starring THE greatest movie actor of all time, with the scariest film psychotic gangster ever, only warrants just above average? COME ON!!!!!\"\r\n0\t\"Wow... what would you do with $33m? Let me give you a choice; you can either a) shred it and flush it down the toilet or b)make a film based on the premise of Whoopi Goldberg as a hard nut futuristic cop partnered with a rubber dinosaur who uses terms like \"\"I didn't butt trumpet\"\" and blows raspberries on the basis that this is funny. That's right, you would choose the option that has more merit - flushing down the toilet.<br /><br />This has to be seen to be believed. I cannot even find the words to describe how bad this film is. It doesn't even fit into the \"\"so bad - it's good\"\" category. I actually have it on the television as I write - and whilst watching I felt the need to come onto IMDb and register my disgust.<br /><br />Considering Jurassic Park was made a couple of years before, how on earth did they think that audiences would any longer tolerate a man dressed in a rubber suit? WG should have simply walked and damn the consequences. Everyone concerned will go to hell for this criminal waste of money.<br /><br />I have to stop writing - I am about to implode.\"\r\n1\tDistortion is a movie that sort of caught me by surprise.. A sort of multi layered drama that focuses on a man writing a play about his life experiences that are happening to him right at this moment. To be more concise, he feels that his wife is cheating on him, so he hires a private eye to snoop on him. His wife has no idea that this is happening. Meanwhile, the actors in this play are also having a few whoopdedoodles up their sleeves by fooling around with each other and with, shall we say, unscrupulous people in the world of Israel. The whole thing culminates in a theater with all the actors present and the predictable (but not really) happens.<br /><br />The director of the piece really keeps things moving along with the ensemble cast of characters, and edits in a way that makes you pay attention, This is a fun film actually, one which I didn't mind viewing and would recommend people check out.\r\n1\tIf you like film, don't miss this one. If you prefer action, or horror, or romance, then you'll wonder what's happening. Everyone here is stuck in a gangster film. And what happens is transcendental murder.<br /><br />There are few similar films. No doubt it will see limited release, and be hard to find. But the search will be worth it. If you want to study a mileu as a potential symbol, then this is indeed a film to study.<br /><br />You can't watch it once. If you do you'll never see what's happening. Dark City is better. Joe Vrs. The Volcano is more fun. But Mad Dog Time could convert the gangsta crowd to symbolism. . .or at least to think twice before shooting again.\r\n0\t\"I know John Singleton's a smart guy 'coz he made Boyz N The Hood, so how did he write and direct this? It's like the pilot of a bad \"\"going away to college for the first time\"\" teen soap, a parade of boring stereotypes and cliches with some gratuitous violence thrown in to make it a commercial proposition, I guess. Who would've guessed the date-rape victim would dump sausage for seafood? The angry loner would be preyed upon by a group of Neo-Nazis (and would be roomed-up with a black AND a Jew - just for laughs!) Even Laurence Fishburne's creepy reactionary history Professor just irritated me and I love the guy, it's like everyone involved with this movie just lost the plot. Except Busta Rhymes, of course. Big ups.\"\r\n0\t\"It was great to see some of my favorite stars of 30 years ago including John Ritter, Ben Gazarra and Audrey Hepburn. They looked quite wonderful. But that was it. They were not given any characters or good lines to work with. I neither understood or cared what the characters were doing.<br /><br />Some of the smaller female roles were fine, Patty Henson and Colleen Camp were quite competent and confident in their small sidekick parts. They showed some talent and it is sad they didn't go on to star in more and better films. Sadly, I didn't think Dorothy Stratten got a chance to act in this her only important film role.<br /><br />The film appears to have some fans, and I was very open-minded when I started watching it. I am a big Peter Bogdanovich fan and I enjoyed his last movie, \"\"Cat's Meow\"\" and all his early ones from \"\"Targets\"\" to \"\"Nickleodeon\"\". So, it really surprised me that I was barely able to keep awake watching this one.<br /><br />It is ironic that this movie is about a detective agency where the detectives and clients get romantically involved with each other. Five years later, Bogdanovich's ex-girlfriend, Cybil Shepherd had a hit television series called \"\"Moonlighting\"\" stealing the story idea from Bogdanovich. Of course, there was a great difference in that the series relied on tons of witty dialogue, while this tries to make do with slapstick and a few screwball lines.<br /><br />Bottom line: It ain't no \"\"Paper Moon\"\" and only a very pale version of \"\"What's Up, Doc\"\".\"\r\n1\tGédéon and Jules Naudet wanted to film a documentary about rookie New York City firefighters. What they got was the only film footage inside the World Trade Center on September 11.<br /><br />Having worked with James Hanlon's ladder company before, Jules went with the captain to inspect and repair a gas leak, while Gédéon stayed at the firehouse in case anything interesting happened. An airplane flying low over the City distracted Jules, and he pointed the camera up, seconds before the plane crashed into Tower One.<br /><br />Jules asked the captain to follow him into the Towers. The first thing he saw was two people on fire, something he refused to film. He stayed on site for the next several hours, filming reactions of the firefighters and others who were there.<br /><br />The brothers Naudet took great care in not making the movie too violent, grizzly, and gory. But the language from the firefighters is a little coarse, and CBS showed a lot of balls airing it uncensored. The brothers Naudet mixed footage they filmed with one-on-one interviews so the firefighters could explain their thoughts and emotions during particular moments of the crisis. <br /><br />Unlike a feature film of similar title, most of the money from DVD sales go to 9/11-related charities. Very well made, emotional, moving, and completely devoid of political propaganda, is the best documentary of the sort to date.\r\n1\tI totally got drawn into this and couldn't wait for each episode. The acting brought to life how emotional a missing person in the family must be , together with the effects it would have on those closest. The only problem we as a family had was how quickly it was all 'explained' at the end. We couldn't hear clearly what was said and have no idea what Gary's part in the whole thing was? Why did Kyle phone him and why did he go along with it? Having invested in a series for five hours we felt cheated that only five minutes was kept back for the conclusion. I have asked around and none of my friends who watched it were any the wiser either. Very strange but maybe we missed something crucial ????\r\n0\tI'm a big Porsche fan, and the car was the best star in this film.<br /><br />Haim, the now dried up drug abusing child star of the 80's is bland as per usual, and commenting on back up from minor characters/actors would be pointless; needless to say they were all very average. It's a cool movie as a trip down memory lane into the 80's - with some weird clothes, some good shots of the Colorado backdrop and a very harmless albeit mind numbing plot.<br /><br />All in all, please don't waste your time watching this unless you love 80's movies, Corey Haim, or like myself, love old school Porsches (this one in particular looks great) because life's too short to watch crappy movies.\r\n1\tI love this show. Now, I'm not a big fan of many science fiction shows, so if it bares any resemblance to them, I didn't notice. I like the storybook quality of the cinematography. I even like the love story, even though as I am enjoying it I wonder in the back of my mind how the heck that part of the story can truly develop seeing as Ned cannot touch Chuck or else... well, you know. I even like Chuck, I don't find her annoying at all, and I generally hate overly sweet, nice, perfect characters. I even like the narrator's voice, even if it bothers one of my family members and bares some resemblance to some Walgreens commercials. I could nitpick about all the other things about Ned's predicament and how the writers are going to address it in the future but I just rather watch and wait and see what tale the writers weave.\r\n1\tSPOILERS 9/11 is a very good and VERY realistic documentary about the attacks on the WTC.2 French film makers who are in New York to film the actions of a NYFD are being confronted with this event and make the most of it.Before 9/11 nothing much really happens which gives the movie an even more horror like scenario. On the day of the attacks it seems like just another dull day at work but this will soon change.As one the film makers goes on the road with the firemen he films the first crashing plane,this is the only footage of the first impact.He rides with the firemen to the WTC and goes inside the building.As the second plane crashes the people understand that this is not an accident.In the next period of time we see firemen making plans to save as many people as possible,in the meanwhile we hear banging sounds,these are the sounds of people who jumped down from the tower and falling on the ground,this is the most grueling moment in the documentary.Then the tower collapses and our French friend has to run for his life,you hear him breath like a madman while he runs out of the building.Then a huge sort of sandstorm blasts over him and the screen turns black,he was very lucky to survive and now he can film the empty streets of Downtown New York. Because this documentary has got so much historical footage and because the film was ment to be something totally different this documentary will probably stay in everybody's memory.I saw the attacks live at home because I had the afternoon of,so this makes it even more realistic to watch. 10/10\r\n0\t\"Saw this 'film' recently and have to say it was the worst attempt at film making I have ever had the misfortune to see. What the Hell was going on with Coolio? Totally unprovoked shooting at people in distress. Totally uninvolving, slow, tedious and detached. Worse than Spawn. long live \"\"Evil dead II\"\".\"\r\n0\t**SPOILERS*** Slow as molasses mummy movie involving this expiation in the Valley of the Kings in Egypt that has to be aborted in order to keep the native population, who are at the time revolting against British rule, from finding out about it.<br /><br />Given the task of getting to this archaeological dig by his superiors British Capt. Storm, Mark Dana, together with a couple of British soldiers and Mrs. Sylvia Quentin, Diane Brewster, the wife of the head man at the dig Robert Quentin, George N. Neise, make their way to the unearthed mummy's tomb. On the way there Capt. Storm Sylvia and his men run into this desert-like princess Simira, Ziva Rodann.<br /><br />Simira seems to be superhuman in her ability to withstand the rigors of desert life, she doesn't drink water or get tired, but also knows just what Capt. Storm & Co. are looking for and warns him and his group to stay as far away from the dig, Pharaoh's Ra Ha Tet tomb, as possible.<br /><br />At Ra Ha Tet's burial chamber Robert Quentin and his crew of archeologist's together with his Egyptin guide Simira's brother Numar, Alvaro Guillot,already opened his tomb before Capt. Storm can get there to stop them. Quentin violated Ra Ha Tet's body by having Dr. Farrady, Guy Prescott, cut his bandages. This action on Robert's and Dr. Farrady's part has Numar faint dead in his tracks. It later turns out that Numar somehow was possessed by Ra Ha Tet's spirit or soul who took over his body and caused him to age, at the rate of 500 years per hour, to become himself a 3,000 year-old mummy.<br /><br />The movie has Numar dressed in what looks like a pair of pajamas slinking around Ra Ha Tet's tomb and it's surroundings attacking and sucking out the blood in order to survive, like a vampire, of anyone man or animal that he comes in contact with. This blood-sucking adventure by Numar, with him later losing his right arm, goes on for some time until the by now crazed Quentin trying to find the entrance, you in fact thought that he already found it, to Ra Ha Tet's tomb get's himself killed is an indoor rock slide.<br /><br />We learn at the end of the movie that Numar, to absolutely no one's surprise, is actually Ra Ha Tet reincarnated into another, some 3,000 years later, person or life. Numar's sister the mysterious and sexy Simira is not only Ra Ha Tet's sister, since him and Numar are really one and the same person, but also the Egyptian Cat Goddess Babesti! Also not that hard to figure out.<br /><br />With Numar/Ra Ha Tet back in his tomb and all the deaths, due the the Pharaoh's Curse, now at an end Capt. Storm Sylvia and whatever is left of his men and the late Robert Quentin's archaeological expedition trek their way back to Cairo and modern, this in 1902, civilization. The survivors of Pharaoh Ra Ha Tet Curse keep what they found, and unearthed, only to themselves since no one would believe them anyway.\r\n1\t\"This video rocked! Eddie is one of the funniest comics I have ever seen. Not only does he have class, he makes some of the funniest observations on history and culture that I have ever seen. Eddie is the most original and most intelligent comic I've seen in a VERY long time. Tell all those other stand-ups to get off the stage and let this \"\"executive\"\" reign!\"\r\n0\t\"The problem with family dramas is that, outside of TV movies on channels like Lifetime, most people don't want to watch them. And the ones that do get watched tend to be sensationalized and about current or topical problems or issues in the news (or recent news). Movies that explain or explore the human condition aren't popular. Particularly with the young crowd that would be Miss Lohan's fan base or the younger crowd that tends to make movies not simply popular but financially successful for studios.<br /><br />The specific problems I had with this movie is the cartoonishness of some of the characterizations. It was a bit much to blame all of the Lohan's character's acting-out (wrecking the car, drug use, etc.) on what her step-father did to her. While not improbable,it's just a bit much to expect the audience to swallow. Additionally, other aspects, such as her giving the young Morman boy, oral sex, or that she would actually make a good assistant to the vet, who coincidentally happens to have a thing for her mother, etc., all these elements just did not really help this movie along. It placed it more in the element of a situation comedy trying one of their \"\"special dramatic episodes\"\" then it did for a fully realized, well-written feature film.<br /><br />When you watch the DVD and listen to the commentary, particularly for the various alternate endings, you can really see all of this is sharp focus.\"\r\n0\t\"The message of this movie is \"\"personality is more important than beauty\"\". Jeanine Garofalo is supposed to be the \"\"ugly duckling\"\", but the funny thing is that she's not at all ugly (actually she's a lot more attractive than Uma Thurman, the friend who looks like a model).<br /><br />Now, would this movie work if the \"\"ugly duckling\"\" was really unattractive? When will Hollywood stop with this hypocrisy?<br /><br />In my opinion, despite the message that it wants to convey, this movie is simply ridiculous.<br /><br />\"\r\n1\tAs the celebration of Christmas has evolved through the years, whether one concentrates on the religious or the secular traditions, it is a time when people are supposed to behave a little better to each other. That has somehow slipped past one Ebenezer Scrooge, merchant and money lender in 19th century London.<br /><br />As his nephew points out to his uncle, he doesn't keep Christmas in any way because Scrooge feels the whole thing is humbug. The humanity in Scrooge was driven out long ago, he's a hard case, a whole lot like his 20th Century counterpart, Mr. Potter of Bedford Falls, New York.<br /><br />But as Charles Dickens told this tale, redemption is not too late for any of us and a lonely ghost and three spirits visit Scrooge and show him how.<br /><br />A Christmas Carol is such a timeless holiday classic that we sometimes forget that it is as much a social commentary of 19th century Great Britain as Oliver Twist was. The characters in this film are middle and lower class. The Cratchits are a couple of rungs above the street people in Oliver Twist, but they are having to struggle to stay up there. Still love and happiness radiate their home, no thanks to the guy Bob Cratchit works for. <br /><br />Like George Bailey who did a whole lot of good in his life and just had to be reminded how much, Ebenezer Scrooge needed a wake up call as to the potentiality he still had for doing some good in this old world.<br /><br />Patrick Stewart in his live performances and filmed play has pretty much taken over the part of Scrooge. But George C. Scott captures the old miser pretty well in this film. The meanness of him, but with a trace of sadness that makes us root for him to change. Scott joins a fine tradition of people like Reginald Owen and Alastair Sim who've both done great interpretations of Scrooge.<br /><br />Among the supporting roles I particularly enjoyed David Warner as Bob Cratchit and Edward Woodward as a hearty and stern spirit of Christmas present. <br /><br />According to IMDb this is one of 32 versions of A Christmas Carol made that they have archived and it is one of the best.\r\n1\tWhen I first heard about Moon Child, I thought it was a joke. After a few months, I figured I guess it's for real. The few reviews I read that WEREN'T made by squealing fangirls were not very promising.<br /><br />When I was given the opportunity to watch it, I was fully prepared to groan, wince, and otherwise need to close my eyes to avoid the silliness.<br /><br />I was more than a little surprised, and in a good way.<br /><br />Yes, Moon Child has its moments of cheese, camp, and general dorkiness -- I think that's kind of impossible to avoid when it involves Gackt Camui, a man not known for his sanity -- but all in all, it was wholly enjoyable.<br /><br />No, it is not a work of cinema genius but it is very, very heartfelt, amusing, with fun choreography, a touching score, and a fun cast. I know little of Japanese cinema so I can't really judge the acting but considering the fact that the cast was speaking a language or extreme dialect foreign to them at one time or another and that a couple of them have almost no acting experience, I was rather impressed.<br /><br />If you can enjoy a good action movie, a good drama, a good comedy, see this film. At least rent it since it's coming to Region 1.<br /><br />On a side note, there is zero homosexual/homoerotic content in this film. I didn't even see much of a subtext. Don't let people that read too much into things ruin this for you.\r\n0\tThis movie wasn't just bad - it was terrible. After I watched it, I actually felt the need to TAKE A SHOWER to get the filth off of me. There is running 'gag' with an elderly couple making out, it is not funny, but it is disgusting. The monster make up was cool, but that is all. The continuity errors alone will have you angry - at least I was. The editing is really poor.<br /><br />Almost anything else you could possibly do would be better than spending time watching this movie. Even if your group of friends are into 'bad movies' this one is exceptional in its ineptitude, I couldn't even bring myself to laugh at it. You have been warned.\r\n0\tHonestly I can't understand why this movie rates so well here, nor why Bakshi himself thought it was his finest film. I'm a huge fan of Bakshi's earlier work - particularly 'Heavy Traffic' and 'Wizards', but frankly 'Wizards' (1977) was the last good film he made. After that he turned to the mainstream, beginning with the diabolical 'Lord of the Rings' and then knuckling down with sword and sorcery heavyweight Frank Frazetta, for 'Fire and Ice'.<br /><br />What can I say? The story is puerile, the animation is TV quality - I insist that it's considerably worse than his 70's stuff - and whereas 'Wizards' had real imagination, quirkiness, some gorgeous background art, and an underground, adult sensibility, 'Fire and Ice' is just designed for 14 year old boys, and has the intellectual clout of Robinson Crusoe on Mars.<br /><br />Yes, if you liked the Gor books, you might like this. In my view though, this was just another blip in the slide in quality after 'Wizards' from which Bakshi never recovered (though he's done some decent TV stuff fairly recently)<br /><br />4.5 out of 10\r\n0\tI thought the movie was OK but very disappointed that they didn't capture the true image of his life. I was so anticipating to see his mother being an actual Jamaican, that it's driving me crazy. Just watching the beginning of the movie told me that the movie was not accurate. Which I completely lost interest just a matter of seconds from the beginning of the movie. I'm very disappointed, that's like watching a biography story on Mark Anthony and having Arnold play the part. I don't know what the writer was thinking missing a valuable piece of the movie which I'm sure his mother played a huge role in his life. I will say the movie was OK besides the major Fla!!!!!!\r\n0\tA movie that makes you want to throw yourself on a sword. I've seen schlock in my time but after viewing the wretched mess I don't think I can ever watch a another movie again. May God pity the souls who made this.<br /><br />Premise- Ex-Army quiet stud, underwear model type character (well acted actually) goes looking for the girl who sent him a Xmas card while serving in the military. Lands in with her cabin living-granola type family who are right-wing loggers. Family takes to him and it takes 2 hours of our time for the chick to see he's a better catch than her liberal looking ,french wine drinking, porsche driving, loud cell phone talking, lazy, city slicking, Jewish looking fiancé.<br /><br />The Bad- 1d characters, 1d themes. Being beat over the head with the Pro-Military theme. Ed Asner.<br /><br />The Good- commercial breaks were long. Peter Jason. It ended.\r\n0\t\"This is one of the worst movies i have seen to date, the best part was Christian J. Meoli \"\"Leonard\"\" attempting to act jumping up and down outside the bar, kind-of like i wanted to do on the DVD, to spare the rest of humanity the agony of watching this shitty film. It has a great cast so you keep watching waiting for it to get good, i mean with Sean Astin \"\"Andrew\"\" (played his part perfectly, did a great job, too bad it was in this film), Kyra Sedgwick \"\"Bevan\"\", Ron Livingston \"\"Chad\"\", Renée Zellweger \"\"Poet\"\" (they put her name on the cover she has a total of 1 line and less then 4 seconds in the whole movie...<br /><br />If the cast had any dignity, they would go out and buy all the copies of this film and burn them along with Writer / Director George Hickenlooper and Writer John Enbom\"\r\n0\tDisappearance is set in the Mojave desert as Jim (Harry Hamlin) & Patty Henley (Susan Dey) plus their two kids Katie (Basia A'Hern) & Matt (Jeremey Lelliott) along with Ethan (Jamie Croft) a friend of the family are travelling along, they stop at a roadside diner & ask about an old deserted mining town on the map called Weaver. No-one claims to have heard of it but it's definitely there & the family decide to take a detour in order to check it out & take some pictures. Once at the town they take some pictures & have a look around but when it comes time to leave their car won't start & they have to spend the night there. While looking around they find a camcorder videotape which they play only to discover footage of a scared woman saying all her friends have disappeared, the next morning & their car has disappeared as things take a very sinister turn. What is Weaver's secret? Will the Henley's ever leave there alive...<br /><br />Written, co-executive produced & directed by Walter Klenhard I have to say that Disappearance is one of the most frustrating films I have ever watched. For the first 85 minutes it was a pretty good mysterious mix of thriller & horror film but then we are treated to one of the single worst endings ever in motion picture history. The script suggest lots of different things but never elaborates or confirms & I was sitting there genuinely intrigued about what was going on, from the families car mysterious disappearing, the four recent graves, the thing in the abandoned mines, the supernatural sandstorm, the sudden & unexplained disappearance of Ethan & his just as unexplained reappearance, the Sheriff's sinister motives, the compass in the car going crazy, the crashed plane, the townspeople denying Weaver existed & the possible side effects of a neutron bomb being dropped near Weaver in the 40's but they are all tossed out of the window & for all we know could have been totally separate random events. Everything was coming along nicely & was set up for a big twist revelation but none was forthcoming & instead I was treated to the most ambiguous, strange, surreal & downright frustrating ending possible. If nothing else the ending contradicts much of what has gone before & leaves the viewer with more questions than answers. It's almost as if the makers had these great ideas but then didn't know what to do with them & just made the ending up on the spot. I just felt I put so much effort into watching the film which can be pretty slow at times without any sort of reward & in fact the ending felt more like a kick in the teeth or a good two finger salute!<br /><br />Director Klenhard does a reasonable job here, the old ghost town has a certain atmosphere & the large expansive desert locations give a good sense of isolation. It's well made but what were they thinking with that ending? Nothing fits, nothing makes sense & it's just a huge frustrating mess that after sitting through the thing for nearly an hour & a half leaves you confused & wanting to know more. Despite being a horror film there's no blood or gore although there are one or two creepy moments here & there. The film actually reminds of The Hills Have Eyes (2006) remake for large parts as that is what the film is set-up to be before a bizarre ending which does nothing to bring any closure to the film.<br /><br />Technically the film is good with high production values, good special effects, sets, locations & cinematography. Set in America but filmed in South Australia. The acting is fine from a decent cast.<br /><br />Disappearance is a really odd film, for a long time it shapes up to be a neat little horror mystery thriller but it never explains anything which happens & the truly surreal ending just throws up more questions than answers. I really can't see anyone making head nor tail of this, I really can't.\r\n1\tSure, Titanic was a good movie, the first time you see it, but you really should see it a second time and your opinion of the film will definetly change. The first time you see the movie you see the underlying love-story and think: ooh, how romantic. The second time (and I am not the only one to think this) it is just annoying and you just sit there watching the movie thinking, When is this d**n ship going to sink??? And even this is not as impressive when you see it several times. The acting in this film is not bad, but definetly not great either. Was I glad DiCaprio did not win an oscar for that film, I mean who does he think he is, Anthony Hopkins or Denzel Washington? He does 1 half-good movie and won't do a film for less than $20 million. And then everyone is suprised that there are hardly any films with him in it. But enough about, in my eyes, the worst character of the film. Kate Winslet's performance on the other hand was wonderful. I also tink that the director is very talented to put a film of such a magnitude together. There is one lesson to be learned about this movie: there are too many love-stories as it is, filmmakers shouldn't try to add a crummy romance in to every single movie!!! Out of a possible 100% I give this film a mere 71%.\r\n0\t\"***SPOILERS*** Like some evil Tinkers-to-Evers-to-Chance double-play combination we have in \"\"Omen IV\"\" the evil seed of the deceased AntiChrist Damien Thorn come back. Terrorizing his parents his schoolmates his neighbors and finally the entire world as a she named Delia York, Asia Vieila. After being given to a \"\"deserving\"\" couple the Yorks Karen & Gene, Fay Grant & Michael Woods,by the Catholic Church's St. Francis orphanage.<br /><br />Little Delia didn't waste any time making her peasants felt by scratching her mom at a house party. Later Delia almost get killed by a runaway truck only to have herself saved by this \"\"Devil Dog\"\" named Ryder. Going to school Delia takes care of the local bully by getting the big guy to wet himself in front of all his classmates. Later when his father threatens the Yorks with a law suit she has his head sliced off in a self-induced traffic accident! Delia is someone that you never mess with if you know what's good for you.<br /><br />Meanwhile Dalia's dad Gene becomes a big man in town on his own, or so he thinks, by getting elected to the congress as a champion of the clean air and green trees crowd instead of letting the smog and concrete boys take over the neighborhood with his eye now on he White House itself! Did his bratty and strange daughter Delia have anything to do with Gene York's sudden good fortune?<br /><br />It's only later when Jo, Ann Hearen, is hired as Delia's nanny that the truth's comes out about her strange and evil powers. Jo a New Age type realizes that Delia is a bit weird, after turning all her white crystals black, and calls her New Age Guru Noah, Jim Byrnes, to come over and check her out. Noah is so upset by what he sees in Delia Kirilian color vibrations ,all black and blue with a little pinch of red, that it flips him out so bad that he almost crashed into Delia's moms car.<br /><br />Taken on a trip to a psychic festival by Jo Delia turns the entire event into an inferno setting the place, through mental telepathy, on fire and heaving everyone there run for cover including poor Noah who was at the festival and ended up with his leg broken. The and shaken and battered Guru was so shook up by the whole experience that he later checked out of the country to become a hermit in the Tibetan wilderness. <br /><br />Jo herself is later thrown out, with the help of the sweet and cuddly family pet Ryder, of a second floor window to her death because she knew and talked too much. It's when Karen is again pregnant that she decides, finally, to find out the truth about the real parents of Delia. That's when she,and we in the audience, come face to face with the truth. She's not only the feared AntiChrist of Revelations she's his twin sister! Her brother the AntiChrist himself is about to come on the scene as her kid brother the sill unborn Alexander York!<br /><br />Three times were more then enough for the AntiChrist coming back to earth to bring about Armageddon. The movie going public were already getting a little tired of of him and his evil adventures. With a fourth really not necessary since Daimen Thorn, the original AntiChrist, had been dead and buried for years. Were put through the usual ringer with no one believing that little Delia is \"\"Thee\"\" AntiChrist until it was almost too late to stop her in her deadly rounds of destroying the entire human race. The movie as bad as it is is also far too long, 97 minutes, for a horror flick that could well have told it's story is as little as 80 minutes.<br /><br />Having a private eye Earl Knight, Mchael Learner,and later a former Catholic nun sister Yvonne,Megan Lehch,and now faith healer Felichy in the film only to be killed off didn't help the plot either. It only prolonged the suffering of those of us watching the movie. You could see the surprise ending coming almost as soon as the film \"\"Omen IV\"\" began with the bases being cleared for Delia's eventual takeover of the civilized as well as uncivilized world. What was a bit of a surprise was Delia doing it with a little help from friends.\"\r\n0\t\"i saw this film by accident and this movie was an accident...well it must of been. blonde women being stalked,the villain appearing then disappearing getting from one place to another in minute's then disappearing and reappearing,hiding.he was'nt even a super hero so i don't know how he did it.he could'nt frighten a cat and that's not hard to do.<br /><br />the old \"\"mirror in the bathroom\"\"is just not scary anymore in fact it stopped being scary years ago. you had the cop on the trail of the villain,another cliché(played by idris elba with a very convincing American accent,he's from London) the director did'nt have a clue and has made a film full of cliché's and make's \"\"scary move\"\"which was a COMEDY look scary. pathetic!\"\r\n1\t\"Wow, I forgot how great this movie was until I stumbled upon it while looking through the garage. It's a kind of strange combination of a bio of Michael Jackson, a collection of musical vignettes, and a story about a super hero fighting to save some little kids. The vignettes are good (especially Speed Demon), but the best part of this movie is the super hero segment, in which Michael Jackson turns into a car, a robot, and finally a spaceship (and it's just as weird as it sounds). Joe Pesci is hilarious, and has enough cool imagery and great music to entertain throughout!<br /><br />The real gem however is the incredible \"\"Smooth Criminal\"\" video, which makes the movie worth owning for that part alone!\"\r\n1\t\"An old saying goes \"\"If you think you have problems, visit a hospital.\"\" That has been updated in recent years to \"\"If you think you have problems, watch a TV talk show...especially Jerry Springer's!\"\" This movie is one of those that is so bad, it's good! That's why I gave it a seven-it's all right, but not great. It's a great way to waste 95 minutes, just as the daily talk show is advertised as \"\"an hour of your life you'll never get back!\"\" All the familiar themes are here...unfaithful husbands/boyfriends, the wildest audience on television, women flashing Jerry, etc. The shocker was watching Molly Hagan, who normally plays sweet characters (\"\"Seinfeld\"\" and \"\"Herman's Head\"\") playing a trailer-trash mom and Jaime Pressly (\"\"My Name Is Earl\"\") as her equally trashy daughter, performing sexual favors for virtually every man with whom they came in contact. The men (including the staff producer) were presented as quintessential lunkheads who deserved what they got. I don't want to spoil or reveal everything but the movie plays like the daily show. Here in Phoenix, it's shown back-to-back for two hours every morning and, after that, everything else seems to pale. Again, I give this movie a seven...it's good but not great. Jerry Springer is best taken in small one hour doses.\"\r\n1\tThis film is one of the finest American B-movies of the 90s. If you're looking for a serious film, look elsewhere. However, if you're looking for some action, a lot of laughs, and a tongue in cheek variation on cops fighting gangsters, this is well worth watching. Everyone chews the scenery a bit, but that's really what the film is all about, and everyone is quite funny. Donald Sutherland and John Lithgow have great chemistry and need to do another film together.\r\n0\t\"Ignoring (if possible) the tediously gratuitous marijuana smoking (which seems to be mandatory in Australian government-funded films) the cast of this movie gives a reasonably credible performance. That's a far as it goes. The rest is simply awful. The plot's overburdened with \"\"wow\"\" symbolisms which are meant to look good on film but go nowhere. A gross example is the giant peach float, obviously left over from a town parade and donated by the local canning factory. It was just too tempting to waste what was hopefully a free, but nevertheless irrelevant, prop! The peach is given a cursory, unexplained wash-down at one stage but that's where it ends.<br /><br />Similarly, the contrived \"\"black spot\"\" road sign where Steph's parents were killed, is intended to symbolize the eventual escape from her past, but her escape to what? She's had a pretty good deal where she was, especially considering her visual disability and the unending, loving patience and care of her understanding young female guardian.<br /><br />The Guinness' prize for corny melodrama, however, goes to the characterization of Alan. Alan successfully aspires to the noble role of trade union shop steward but \"\"rats\"\" on his fellow workers by becoming a supervisor for a wicked multi-national - hiss! hiss! As a supervisor, Alan performs the boss' villainous dirty work. He implements redundancies until, surprise, surprise, the whole plant is closed and Alan himself is left as a pathetic, unemployed failure. No cliché-free zones here, mate! Not only this, but Alan also loses the seductive Steph from the most unlikely relationship you'd encounter. If you think the plot is melodramatic and didactic, don't ask about detail. What's the significance of the shaving cream on Steph's seductive leg? Why doesn't the hotel, where the couple makes love, eventually twig that someone's gaining illegal entry to one of its grandest bedrooms and, among other pandemoniums, the sheets are regularly soiled - quite spectacularly on one occasion. Summing this movie up in one word: Avoid, Avoid, Avoid.\"\r\n1\tBefore watching this movie I thought this movie will be great as Flashpoint because before watching this movie Flashpoint was the last Jenna Jameson and Brad Armstrong movie I previously watched. As far as sexual scenes are concerned I was disappointed, I thought sexual scenes of Dreamquest will be great as Flashpoint sexual scenes but I was disappointed. Except Asia Carrera's sexual scene, any sexual scene in this movie doesn't make me feel great (you know what I mean). The great Jenna Jameson doesn't do those kind of sexual scenes of what she is capable of. Felecia and Stephanie Swift both of those lovely girls disappoint me as well as far as sexual scenes are concerned.<br /><br />Although its a adult movie but if you aside that sexual scenes factor, this movie is very good. If typical adult movie standards are concerned this movie definitely raised the standards of adult movies. Story, acting, direction, sets, makeups and other technical stuff of this movie are really great. The actors of this movie done really good acting, they all done a great job. Dreamquest is definitely raised the bar of quality of adult movies.\r\n0\t\"This is just plain bad. Sometimes remakes, even if they stray from the original, are good on their own. They can bring another viewpoint and achieve a certain interpretation that makes them unique and enjoyable. This was as poorly thought out and carried out as can be. This wasn't any good even standing on it's own. Viggo Mortenson is a top-notch actor, but some of his selections of roles and projects leaves something to be desired. The original \"\"Vanishing Point\"\" was such a thrilling, psychological adventure; this is not an adventure at all, and is not enjoyable or entertaining whatsoever. This was made from a by-the-numbers approach to film-making, stuffing in plot points that someone in Hollywood believes will please what they see as today's film-going audience. Basically, they see us as a bunch of idiots. It's insulting that someone will put this out as a feature film, and even attempt to remake a cult classic this sloppily. The manipulative plot devices, the \"\"make-it-obvious-so-they-don't-miss-the-point\"\" aspects, ridiculous dialogue, stereotyped characters, amateurish direction...<br /><br />This is plain bad....\"\r\n1\tI have personally seen many Disney movies in my lifetime, though absolutely none of them match up in any way to Bedknobs and Broomsticks. Although I personally wouldn't have crossed live-action with animation, it was an improvement on trying to dress people up as animation characters. The movie pits three evacuees from world war two who are sent to stay with a silent and socially awkward woman in the country. I would have to say that the casting was brilliant. Angela Landsbury made a perfect Miss Price, while David Thomilson made a great desperate entertainer love interest. Endings always surprise me and this was no exception. It was neither happy nor sad, though I do not know if this was intentional. The dialog wasn't great, but considering it was designed to be a kid's movie, that is alright. Overall, I would give the performance nine out of ten, the dialog six out of ten, the casting nine out of ten and the costumes eight out of ten.\r\n0\tAfter reading the book, which had a lot of meaning for me, the movie didn't give me any of the feeling which the book conveyed. This makes me wonder if Kaufman even liked this book for he successfully made it into something else.Either that or he is simply bad. Most importantly where is the lightness?! From the very first scene, music drownes out most of the dialogue and feeling, and this continues right through the movie. I think the makers thought that by having upbeat music playing right through the movie, this would make the story feel light- however they have completely failed here. Instead the music manages to give everything that 'movie feel', in a way dramatising events so that we linger on them, so that everything actually feels heavy.<br /><br />Another example of the how this adaptation fails is by embellishing the story line making it more dramatic. In the movie we see Franz passing Tomas on the street, who is on his way to see Sabina. The introduction of this chance meeting/passing, which im sure didn't happen in the book, gives Tomas' story more significance than it does make it light.<br /><br />There are many other examples where the continuity of the story has been changed, imo for the worst, however this might have been done because the book simply doesn't convert well into a movie, such is Kundera's style. This makes we wonder if all the generous reviewers on this site were writing with their book AND movie experience in mind rather than writing about just the film. A film which is as long as it is uncompelling. For those who haven't read the book yet I recommend just reading that. For those who have, I have to say you will just be wasting your time and probably end up here writing similar stay-clear warnings.\r\n1\tThis is a bad movie in the traditional sense, but taken for what it is meant to be it is quite good. Very funny and well made, although there are a few death scenes that are in bad taste, what with jiggling breasts as a girl suffocates and so on.\r\n1\tJapan 1918. The story of 16-year old Ryu begins with the death of her father. As it will be revealed later, both of her parents have died of tuberculosis. In this desperate situation Ryus aunt has arranged a marriage with a Japanese man in Hawai, whom they know only from its picture. By her arrival in Hawai ryu discovers that her new husband is much older as in the photograph ,and that he lives in very humble circumstances beside a sugar cane plantage were he works on. Ryu not used to the hard labour on the plantage and in despair over her situation in her new home thinks of running away. She soon discovers that she has nowhere to go. The friendship to Kana, a female co-worker of hers, gives her new hope and strength. This picture is based on real events between 1907 and the 1920s, when thousands of Asian woman were married off to men in America, whom they only knew from their picture. This not very well known picture is well written and acted. The location is breathtaking. This film also features Mifune Toshiro in his very last screen appearance as a Benshi (narrator of silent movies). This film gives some insight of Japanese culture here and across the ocean. A must see!\r\n0\tShown in Australia as 'Hydrosphere', this incredibly bad movie is SO bad that you become hypnotised and have to watch it to the end, just to see if it could get any worse... and it does! The storyline is so predictable it seems written by a high school dramatics class, the sets are pathetic but marginally better than the miniatures, and the acting is wooden.<br /><br />The infant 'muppet' seems to have been stolen from the props cupboard of 'Total Recall'. There didn't seem to be a single, original idea in the whole movie.<br /><br />I found this movie to be so bad that I laughed most of the way through.<br /><br />Malcolm McDowell should hang his head in shame. He obviously needed the money!\r\n1\tThere isn't a whole lot going on in this story -- just two men employing very different ways of handling memories of Vietnam. But what it lacks in premise, it more than makes up for in acting and realism. It's a quiet film about the bonds of friendship and shared experience. We even get romance (not gratuitous -- just another very real piece of this story). It's well worth seeing.\r\n1\tSaw this again recently on Comedy Central. I'd love to see Jean Schertler(Memama) and Emmy Collins(Hippie in supermarket) cast as mother and son in a film, it would probably be the weirdest flicker ever made! Hats off to Waters for making a consistently funny film.\r\n1\t\"I would give this show a ten out of ten if it was not for the fart jokes. You people are so damn sensitive it is inane! So quick to point out the \"\"racism\"\" of the show and the jokes, yet are also so quick to say ridiculously sexist, pig-headed crap like \"\"well, duh, some of these other shows do these jokes so much better because at least they have hot women.\"\" So disgusting. Abortion jokes are great because, really, who takes abortion seriously anyways? At least I'm not a*bore*son. I hear that Reba McEntire and Sarah Silverman are teaming up to do a movie about sisters taking a road trip together. Talk about a movie of the year!\"\r\n0\t\"The acting in this movie stinks. The plot makes very little sense, but from what I gathered it's supposed to be about this scientist who develops the ability to turn people's personal items into tiny steel balls that then fly into their mouths and turn them into zombies (or blow their heads up, whichever). And the effects are lousy, too. Most of the movie consists of bad music, with the actors dancing equally as badly to the bad music, interspersed with multiple boring sex scenes. This should be one of the worst things ever made, but for one thing. One element of shear brilliance that makes \"\"Nightmare Weekend\"\" stand above all others. And that special quality is the presence of George.<br /><br />George is the lovable interface device between the scientist's daughter, Jessica, and the home computer security system. With his green hair and nose, balding scalp, and heart-shaped mouth, George is the guardian angel/confidant to Jessica, who asks him for advice on how to meet guys in one of the most dramatic pieces of dialogue ever captured on celluloid. With his monotone synthesized voice, George tells Jessica what percentages of males prefer women in white dresses, and also that hitch-hiking is the third best way to meet guys after discos and bars. Of course, little Jessica just can't seem to stay out of trouble, causing George to execute \"\"Emergency Program Code: Protection Jessica\"\", which results in the violent death of Jessica's would-be assailant via one of the aforementioned steel balls.<br /><br />Kubrick was an utter fool for thinking he could give a computer personality using closeups of a red light. HAL should have been represented by our friend George in order to better translate compassion for his eventual demise. The light and sound show at the end of \"\"Close Encounters\"\"? Not bad, but how much better would that movie had been if the means of first communication with the aliens had been George the Hand Puppet. Bishop, Data, R2  kitchen appliances next to the Almighty George! He might only be in the movie for 8 minutes out of 90, but don't be fooled. This show is all about George. With even that limited amount of screentime, George joins the ranks of such luminous film characters as Hollywood Montrose, Majai, and Pappy from \"\"New Moon Rising\"\" as icons of American cinema. \"\"George to Apache\"\"  you are my hero.\"\r\n1\tNeil Simon has quite a body of work, but it is the Odd Couple that carried him to fame. This film really works. Jack Lemmon & Walter Matthaw have a great chemistry. The supporting cast for this film is stellar as well.<br /><br />It is about 2 men living together who are from opposite planets. The script bristles with humor from this situation. This had been done in some forms previously. This is the one that brings it all together in a very good package.<br /><br />Simon has done some other decent work, but this one is really his best work which made the rest of his work possible. It is hard to imagine Simon ever topping this.\r\n1\t\"As many reviewers here have noted, the film version differs quite a bit from the stage version of the story. I have never seen the stage version of the story, and therefore I have a more favorable review of the film than many other reviewers. Perhaps Richard Attenborough was not the best choice for director of the film, but the film is still an entertaining account of several dancers trying to make the big time in choreographer Michael Douglas' show. The film does right by not selecting any famous actors or performers to wind up in the final try-out group. This way our attention is focused on the dancers' movements and individual stories and struggles as they unfold during a marathon day of try-outs. Douglas is also probably not the best choice for the part. Apparently some songs were cut out in favor of a new one, and the backstage cliché-ridden story of a romantic liaison between a dancer and the choreographer was added. I have to say in all fairness this was the weakest part of the film. The repeated intrusions Cassie made during try-outs appear to mirror the almost desperate pleas one often has to make when engaging in the artistic professions in the absence of talent and/or luck. However, this aspect of the film has been done to death in the past, and it's curious to see this tired old shoe kicking its heel up once again. The revelations of the dancers themselves began promisingly enough with the \"\"I can do that\"\" number, but then it plodded a little at various points while the dancers were telling their stories. Frankly, their stories differed little from real life folks who never get a chance like this. *** of 4 stars.\"\r\n1\t\"I would imagine that if Steve McQueen knew he would go on to become an icon and start \"\"Wanted: Dead of Alive\"\" the same year this film came out, or be in The Magnificent Seven two years later, he would not have done it. But he did, and we are the richer for it.<br /><br />Sure it's a camp classic. Horror the way it was meant to be for the drive-in theater. It's fun and nostalgic.<br /><br />It is interesting that the last lines of the film were:<br /><br />Lieutenant Dave: At least we've got it stopped. Steve Andrews: Yeah, as long as the Arctic stays cold. <br /><br />They never would have imagined 52 years ago that the Arctic would be thawing. The Blob will soon return.\"\r\n1\t\"I'm really tempted to reward \"\"The Case of the Scorpion's Tail\"\" with a solid 10 out of 10 rating, but that would largely be because I think Italian horror cinema of the 1970's is SO much better than the cheesy crap I usually watch. But even without an extra point for nostalgia, this is STILL a genuine masterwork and earning a high rating for its excellently convoluted story, uncanny atmosphere, blood-soaked killing sequences and superb casting choices. In my humble opinion this is actually Sergio Martino's finest giallo, and that has got to mean something, as \"\"The Strange Vice of Mrs. Wardh\"\", \"\"All the Colors of the Dark\"\", \"\"Torso\"\" and \"\"Your Vice is a Locked Room and only I have the Key\"\" are all top-notch genre achievements as well. But this film is just a tad bit superior with its ultra-compelling plot revolving on an insurance fraud gone madly out of control. Following her husband's peculiar death in a plane explosion (!), Lisa Baumer promptly becomes the suspicious owner of one million dollars and she's eager to leave the country as soon as possible. Due to the bizarre circumstances, the insurance company puts their best investigator Peter Lynch on the case and he follows her to Greece. There, Lisa becomes the target of many assaults and the case's mysteriousness increases when it turns out several people are hunting for the money. I'm always overly anxious when briefly summarizing gialli because I don't want to risk giving away essential plot elements. In \"\"The Case of the Scorpion's Tail\"\", the events take an abrupt and totally unexpected turn before the story is even halfway, and I certainly don't want to ruin this for you. Many red herrings follow after that, but Sergio Martino always succeeds to stay one step ahead of you and, even though not a 100% satisfying, the denouement is at least surprising. It's also a very stylish film, with imaginative camera-work and excellent music by Bruno Nicolai. Everyone' s favorite giallo muse Edwige Fenech oddly didn't make it to this cast (she stars in no less than 3 other supreme Martino gialli), but Anita Strindberg (\"\"Lizard in a Woman's Skin\"\", \"\"Who Saw Her Die?\"\") is a more than worthy replacement for her. The charismatic and hunky George Hilton is reliable as always in his role of insurance investigator and  duh  ladies' man deluxe. If you're a fan of giallo, don't wait as long as I did to WATCH THIS FILM!!!!\"\r\n0\tI am a guy, who loves guy movies... I was looking forward to seeing a dragon fighting with the army with cool special effects. All of this happened, however, this movie was the worst movie I have ever seen in my life.<br /><br />The story was standard, but the portrayal of the story was terrible. The scene transitions were the worst I have ever seen. Why would you walk out to a beach to relax if your life was in danger? The serpent dragon's actions itself was very poorly written... and the serpent dragon's attack capabilities varied widely throughout the movie, several times the main characters should have died.<br /><br />The director attempted to infuse a love story in the middle of the movie during the most stressful times, this movie was obviously not watched after it was made, I love movies, but had to force myself to finish watching it, thank god I did not buy this, I borrowed it from a friend.<br /><br />Do not buy this, do not rent it, just watch discovery channel... much more exciting.\r\n1\t\"<br /><br />I have to admit to enjoying bad movies. I love them I watch all of them. Horror especially. My friends and I all gather after a hard week at school and work, rent some crazy tapes, order a pizza and have a blast. One of the ones we got at Hollywood Video, was this one, Zombie Bloodbath. This one had a great box, so I was expecting less than usual.<br /><br />The story is about a housing project that is built over a nuclear facility that has had the above-ground layers bulldozed, and the other underground layers are simply covered up. The inhabitants of this neighborhood find the covered up facility when some kids fall into a hole inside a cave. This wakes up some zombies.<br /><br />From this point on, it's chunk-city. The gore effects and action never stop until the end credits roll.<br /><br />OK, it's not great art, but this one, with it's in-joke dialogue and over-the-top gruesome stuff was our favorite of the evening. Actually, it was one of the best \"\"party tapes\"\" I have ever had the pleasure of watching. And you could tell it was done on no money, with a bunch of crazy people. There are hundreds of zombies, and the Director looks like Brendan Frazer (he has a cameo) and it is just a wild trip.\"\r\n1\tI liked the movie, first of all because it told an interesting story, but the story as told in the movie felt like it was condensed from a much-longer story. Since the book is over 400 pages, that makes sense. It spans a time period from the 1920s to the 1970s, in a fictional South American country, also a lot to fit into the time available. I think it would have been much better as a six-hour mini-series than it turned out as a 140-minute movie.<br /><br />Even though it's rushed, the story doesn't skip so much that it gets confusing. What is told is told fairly well. One fault is that Clara's supernatural powers appear inconsistently; either they should have appeared more evenly through the course of the movie, or they should have been left out. Two more faults (which could be spoilers): Esteban's eventual return to goodness happens somewhat too suddenly, and Ferula's curse seems to wear off, even though the tone of the story suggests that it should endure forever.<br /><br />The acting is excellent. Glenn Close, as the tormented spinster Ferula, is outstanding. Jeremy Irons, as the brutal self-made rich man, is also excellent. Meryl Streep, as the main character Clara, is great, although she's often even better than she was in this movie. There were many well-performed smaller roles too. The biggest fault is that the movie seemed to lack a dialect coach; each actor seemed to speak in a different sort of accent.\r\n1\tThis one stood out for it's originality. I'm seriously tired of seeing Hindi movies that are a hotch-potch of a whole bunch of Hollywood and Brit movies. Some flaws were inevitable, nonetheless, this movie is a must-see. Surya's portrayal of the clean-cut, conscientious cop (as opposed to the pot-bellied, money-hungry ones that we normally see) was awesome. He's come a long way from his work in Nerukku Ner. I liked the movie so much that I had to own it. I'm not usually into the mindless violence type of movies, somehow I actually felt for each character and therefore can't really bring myself to call it 'mindless' violence. I do not appreciate the excessive melodrama and sentimental scenes that go hand in hand with most Hindi and Tamil movies. I absolutely loved this movie for it's lack of the same. ACP Anbuselvan's reaction to loosing his wife, is not overdone, is heart-wrenching and makes me want to bawl my eyes out. There are certain times when I'm watching a movie when I want to hit the FF button. Plenty of times I've wanted to do that at a cinema hall. Never wanted to do so when watching this movie. I'm really hoping that Ghajini releases soon.\r\n0\t\"Look, I'm sorry if half the world takes offense at this, but life is confusing enough. I don't need to watch it that way. I dig Anthony Hopkins, big time. I even watched Fracture, and I knew that would be a steaming pile of Quentin. But this thing is not well shot, and it's not daring--even if it is artsy. Well-produced films have reasons for cuts and fast edits, not this \"\"oh, but it's a realistic interpretation\"\" excuse. This thing'll make your head hurt. It's the fastest moving picture ever to take you nowhere at all. I still love AH, and I'll always give him another chance, but if you aren't made of time to watch bad ideas on screen, skip this.\"\r\n1\tI had been looking forward to How to Lose Friends & Alienate People for months, particularly due to the fact that Kirsten Dunst and Simon Pegg were starring. Simon Pegg is a comedic genius and Kirsten Dunst has always been a favorite actress of mine. How to Lose Friends & Alienate People hit the spot! Of course not perfect, but very enjoyable and funny. How to Lose Friends & Alienate People follows the life of Sidney Young, a smalltime, bumbling, British celebrity journalist, who is hired by an upscale magazine in New York City. In spectacular fashion Sidney enters high society and burns bridges with bosses, peers and superstars. After disrupting one black-tie event by allowing a wild pig to run rampant, Sidney catches the attention of Clayton Harding, editor of Sharp, and accepts a job with the magazine in New York City. Clayton warns Sidney that he'd better impress and charm everyone he can, if he wants to succeed. Instead, Sidney instantly insults and annoys fellow writer Alison Olsen (Kirsten Dunst). He dares to target the star clients of power publicist Eleanor Johnson (Gillian Anderson). He also upsets his direct boss Lawrence Maddox (Danny Huston). Sidney finds creative ways to annoy nearly everyone. His saving grace, a rising starlet Sophie Maes (Megan Fox) who develops an odd affection for him. In time, Allison's friendship might be the only thing saving Sydney from his downward spiraling career. The storyline is very interesting and the acting was top notch with what the actors were given. Simon Pegg is still hilarious as ever! He makes Sydney bumbling, obnoxious, and annoying as real as it gets, but later in time making Sydney not just likable, but also a real character who you root for in the end. Kirsten Dunst and Jeff Bridges were brilliant! Kirsten had some very wonderful acting and hilarious scenes, and Jeff Bridges is just Jeff f*cking Bridges! How can you not like him?! He makes Clayton a very humorous character with some wit and overall you just love the guy. Gillian Anderson, Megan Fox, and Danny Huston were great as the supporting cast. Each had their own personality that were overall pretty unlikable, but that's what just made the film work. One thing I didn't enjoy was how one dimensional some of the characters were. I understand that most were the supporting cast, but some of the cast was underused and could've given the film some more spice to it. How to Lose Friends & Alienate People will never be on anyone's top 10 films ever, or even top 10 comedies ever, but it has a very high entertainment level and some scenes may even charm you as well. How to Lose Friends & Alienate People is definitely one of the better romantic comedies of the year! 8/10\r\n1\tPerhaps the most personal of David Lynch's works is his most accessible. This time, rather than the enigmatic thematic structures that may or may not involve a plot or represent anything more than vivid nightmares, Lynch provides a reflective, fragile meditation on the universal subjects of aging and family and finds reassurance in both. The simple true story of an Iowa farmer (Richard Farnsworth) who rides a lawn mower to Wisconsin to visit his estranged, stricken brother, there are still plenty of the unique and original visual dreamscapes (some rather striking aerial shots of the heartland, filmed by veteran cinematographer Freddy Francis) to make it an undeniable Lynch effort and characterizations that are some of his most unforgettable. Farnsworth is excellent in a stoic yet personable way, allowing the stories he hears on his journey to become a part of his life, and Sissy Spacek turns in some of her finest work in a smaller role as his mentally challenged yet observant daughter (whose painful secret is revealed in a poignant way through a gentle turn in the sensitive script by John Roach and Mary Sweeney) but the rest of the small cast to a person delivers indelible performances, one of the most notable being Barbara Robertson, whose accidental killing of a deer is both uproarious and sad at the same time. But that's vintage Lynch with his ability to engage and unsettle you at his best. To those unfamiliar with Lynch or know him only by his violent, disturbing reputation, this is an excellent place to begin; for those who know his work, this is one of the finest in his repertoire.\r\n1\t\"\"\"Journey of Hope\"\" tells of a poor Turkish family and their odyssey of hope which spirals downward into despair as they travel to Switzerland in search of prosperity. Although this Oscar winning film is fairly well crafted, it is lacking in substance and has many implausibilities. Much of the film's 1.7 hour run time is get on the bus, get off the bus, get on the boat, get off the boat, get in the van, get out of the van, etc.; time which could have been better spent or left out completely. The story has a predictable conclusion, especially for those who have an awareness of the common crime of trafficking in illegal immigrants. A worthwhile and reasonably entertaining watch but over-rated.\"\r\n0\t\"This extremely weak Australian excuse for a motion picture is sort of like the Pavlov Dog Experiment amongst horror movies. You remember this famous \"\"Conditioned Reflex\"\" experiment from your school books, right? The Russian scientist Pavlov proved that dogs tended to salivate before the food actually came into their mouths and this through repetitive routines stimulating the animal's reflexes. Pavlov rung a bell a couple of instants before the food was delivered to the dog and, after a while, he became anxious and excited and already started salivating from hearing the sound of the bell. What the hell has this whole boring explanation in common with a sleazy and low-budgeted Aussie slasher flick, I hear you think? Well, the modus operandi of the maniacal killer in \"\"Nightmares\"\" is an exact variant on Pavlov's experiment. Each and every single murder sequence is preceded by the raw sound and image of the killer breaking a window, because he/she insists on using a sharp piece of glass to slice up the victims. So this means that, after a short while, inattentive and bored viewers can afford to doze off and simply look up again when they hear the sound of shattering glass. That way they still don't miss anything special! <br /><br />Regarding the quality of \"\"Nightmares\"\" as a film I can be very brief. This is a cheap, uninspired and largely imbecilic Aussie cash-in on the contemporary popular trend of American slasher movies. In the early 60's, a four-year-old witnesses the cruel death of her mother as her throat gets slit open in a nasty car accident. Twenty years later the same girl  Helen Selleck  is a successful stage actress, but she still has severe mental issues and regularly suffers from horrible flashbacks and traumatic nightmares. She auditions for a role in a black comedy play revolving on death and gets the part. Shortly after the big premiere, everyone who's even remotely involved with the production gets slaughtered. It is truly retarded how this movie attempts to uphold the mystery regarding the killer's identity and motivations even though even the most infantile viewer can figure it out after the first murder already. I don't think I've ever seen a more obvious whodunit than \"\"Nightmares\"\" and the creators should have just showed his/her face straight away and save themselves from embarrassment. The murders are explicit and very bloody and there's also an unhealthy large amount of gratuitous nudity to \"\"enjoy\"\". However, the production values are poor and thus the movie is never at one point shocking or provocative. The few clips we get to see of the actual play make it appear that it quite possible could be the worst thing ever performed on stage. The only positive elements in the film are the characters of the director and the gay newspaper critic, whom are both delightfully sarcastic and insult the rest of the cast members as much as we do. \"\"Nightmares\"\" is a dreadful piece of exploitative horror cinema, but hey, at least I gave you a golden tip to make it more digestible.\"\r\n1\tI definitely recommend reading the book prior to watching the film. This book won National Book Council Award in 1978 and is a very gripping read (pun not intended). It's not too difficult to read for those out there that don't read often so don't be afraid! The book seems to capture the passion of the relationships more so than the movie and the movie will make more sense after reading the book. Having grown up in Melbourne I could really relate to this book and movie. Very few Australian female writers were around the in the 70's therefore very little is documented about the way of life for a women in an urban city in Australia during this era or class. It's a precious piece of Melbourne history. It's a shame that it is documented as some sort of 80's soft porn movie. It's far from that and as the other reviewer has mentioned please do not read the DVD jacket, it does not represent what the movie is about at all. Those that rent the movie based on this description will only be disappointed. Just remember this movie was made in 1982, so don't expect the Hollywood over dramatization that they seem to incorporate these days. This is what I like about it. It's also great seeing Noni Hazlehurst in this role, she is just fantastic as Nora and it's great watching her really acting, for if you're close to my age you will best remember her for her stints on Playschool and Better Homes and Gardens. Who knew she hid this talent? This movie will give you an entirely new impression of her. A classic Australian Story!\r\n1\tI somehow missed this movie when it came out and have discovered it as late as last week thanks to a friend's recommendation. I can honestly say that I cannot remember another intimate dramatic film, which does so many things so well. The writing is crisp, realistic, nuanced, and even restrained. The cinematography and editing are understated but inspired, enabling the visual storytelling to dominate through marvelous close-ups and framing of images, capturing loneliness and alienation in most memorable ways. The acting is also wonderful, with all of the characters becoming painfully real and vulnerable in the most compelling ways that a film can offer. They reveal their innermost weaknesses with unprotected, raw vulnerability. A real triumph for Roger Michell and Hanif Kureishi, and the rest of the team. A must see for serious film lovers.\r\n0\t\"Wow. Rarely have I felt the need to comment on movies lately, but this one especially is begging for a beatdown. Let's start at the beginning. First, writer-director Susan Montford puts Kim Basinger in the tired old victim role, complete with the requisite abusive husband and dull suburban existence. Let it be said right now that almost all content in this dull movie is completely hackneyed and trite. Montford's pathetic attempt at symbolism involving the Christmas tree with no star is laughable.<br /><br />When She Goes Out for some Christmas wrapping paper one dark and ominous night, Della is furious that somebody double-parked their car on the busiest shopping night of the year. She decides to do something about it, so she leaves a nasty note on the car's windshield. The next fifteen minutes of the movie are devoted to Della walking around aimlessly in the shopping mall. When she finally gets to her car, the thugs confront her about the note, a cop is killed, and she runs, and they catch up to her, and she gets away, and they chase her some more, and on and on. Everything is completely predictable and uninvolving. The thugs are not scary or menacing at all, and they all get picked off one by one in all the usual ways.<br /><br />This is one of those movies in which all the action depends on the characters being as stupid as you can imagine. Why the bad guys don't just kill her instead of waiting for her to hit them with a tire iron is beyond me. And once, just once, in a film like this, does the leader of the pack have to die last? What does it matter that they are all picked off one by one when they are all equally inept? Much of the movie simply consists of Lukas Haas running around in the woods screaming \"\"Della!!!\"\" And the inclusion of Joy Division on the soundtrack of this wretched film is insulting.<br /><br />The part that really made me run for my computer keypad was when Della, exhausted and hurt, cries out to the heavens, \"\"Where are you, God?\"\" Where, indeed, was god when this movie was being made? I give it a 2 only because of competent cinematography and lighting, and it's not as bad as 'BTK Killer,' the ultimate marker for judging any terrible film. Cheers!\"\r\n0\t\"I put this movie on in the hotel room to entertain my children the morning we were leaving to go home, because I had packed away all their toys. (Toddlers don't like to watch \"\"Regis and KAthie Lee\"\" or \"\"The View.\"\") My four year old found one scene funny, but told me the rest of it was \"\"too silly.\"\" This is a FOUR YEAR OLD, folks. Anyone over the age of, say, nine will want to kill their television rather than let this one play itself out.<br /><br />To say this movie is bad is like saying the Holocaust was a little mistake. There are no words for how ridiculous and utterly terrible this \"\"film\"\" truly is. The acting is bad, the plot is stupid, and the script is pathetically unfunny. Since this is supposed to be a comedy, the fact that you cannot even laugh at the badness of the movie makes it even worse. Bronson \"\"Balki\"\" Pinchot is the worst with some weird fake accent (Irish-Pakistani-Bronx-Cockney-Cajun as far as I could tell), but all the characters are awful. I haven't watched a real Laurel and Hardy film in ages, but I KNOW that they HAD to be way better than this. What is the point of ruining a classic comic duo with... this?<br /><br />Bottom line: derivative garbage. Avoid at all costs unless you have some freaky Bronson Pinchot fetish. 2/10\"\r\n1\t\"This is far more than the charming story of middle-aged man discovering the pleasures of ballroom dancing (although it IS that as well). It's the tale of one person learning to love life again, pushing past all the pressures of work and money to discover joy once more. The bonus in this film is a fascinating insight into the slowly changing attitudes of modern Japan toward everything from ballroom dancing to physical contact. There are scenes that will make you laugh out loud ... a few where you'll want to get up and tango ... and many others where you'll just feel good.<br /><br />This is a great introduction to contemporary Japanese filmmaking for those who might be under the impression that all Japanese movies are \"\"heavy\"\" and inaccessible. <br /><br />\"\r\n0\tIf only to avoid making this type of film in the future. This film is interesting as an experiment but tells no cogent story.<br /><br />One might feel virtuous for sitting thru it because it touches on so many IMPORTANT issues but it does so without any discernable motive. The viewer comes away with no new perspectives (unless one comes up with one while one's mind wanders, as it will invariably do during this pointless film).<br /><br />One might better spend one's time staring out a window at a tree growing.<br /><br />\r\n1\tI have passed several times on watching this since I figured it was some dumb, sappy, dated romantic comedy. Well, it is a romantic comedy, and maybe a little dated. However, it is not overly sentimental, touching as it does on themes of office politics, adultery, and loneliness. You think you know exactly where things are headed, but there is an element of unpredictability that keeps your interest, and not everything turns out quite as you had expected. But, there is enough wit and charm to touch the most inveterate cynic. If you meet someone who doesn't like this movie, seriously consider how well you want to know them.\r\n0\tWho were they kidding with this? There was just too much in this film that was hard to digest. Right from when Arjun (Ajay Devgan) unknowingly wishes death on his father to when he arrives in London with his uncle(played by Om Puri) only to abandon him minutes later. The only problem with that theory is that anybody who has ever passed through London Heathrow knows that such a fête would be impossible to pull off and especially not by an Indian. But the film problems do not end there, there's the issue of the two main leads (Salman Khan and Ajay Devgan) passing as rock-stars on the verge of achieving their dreams. I mean yeah we saw success come to Susan Boyle (a woman in the UK achieving her dreams after age 50) but that was a rare case. It was really hard for me to suspend my disbelief because I felt that the casting of Salman and Ajay was just ill-conceived. They would never cast Madhuri Dixit and Sridevi to play the same roles so why should we be forced to watch Ajay Devgan and Salman Khan (men well into their 40s) prance around desperately trying to hang on to their 20s? Let's not even talk about the most self-conscious actress on screen today, Asin. This is her second film (that I have seen) and she is just hopeless as an actress, so conscious of her looks that she only concerns herself with looking good and voguing for the camera rather than giving in a good acting performance. It's just hard to believe that she turned down all those other movie roles to star in this fluff and then be so fluffy as an actress, nothing to write home about at all. And to top all of that, the film just boringly dragged on. There's nothing special about it at all, trust me you will predict every clichéd thing that is going to happen in it.\r\n0\t\"You know the story..Pretty kids alone in the woods,when BAM!something starts cutting them up.<br /><br />Well this crap is no different.A bunch of kids return to a cabin where the male leads twin brother disappeared for years before.Suddenly an \"\"UNKOWN CREATURE\"\" stars cutting them up,and their only help is a doctor/biker.<br /><br />To say this film was bad is an understatement,it's smut! The acting was horrible.<br /><br />The creature looked very cheesy. And as all films do these days they try to get you with a twist ending,which they do not!<br /><br />There is one bright spot to this film- LOST star Maggie Grace as the female lead.\"\r\n0\t\"Once upon a time there was a science fiction author named H. Beam Piper who wrote a classic book named \"\"Little Fuzzy\"\" which was about a man discovering a race of adorable little fuzzy humanoids on another planet. Mr. Piper died in 1964, but Hollywood and many of today's authors starting looting his grave before his cadaver got cold. This is the book where they got the idea for Ewoks from.<br /><br />Skullduggery is such a blatant ripoff of \"\"Little Fuzzy\"\" I can wonder why I'm the only who's ever noticed?<br /><br />But don't take my word for it. Here's a link to Project Guntenberg where you can download a copy of \"\"Little Fuzzy\"\" for free: http://www.gutenberg.org/ebooks/18137\"\r\n1\t\"This movie is horrible- in a 'so bad it's good' kind of way.<br /><br />The storyline is rehashed from so many other films of this kind, that I'm not going to even bother describing it. It's a sword/sorcery picture, has a kid hoping to realize how important he is in this world, has a \"\"nomadic\"\" adventurer, an evil aide/sorcerer, a princess, a hairy creature....you get the point.<br /><br />The first time I caught this movie was during a very harsh winter. I don't know why I decided to continue watching it for an extra five minutes before turning the channel, but when I caught site of Gulfax, I decided to stay and watch it until the end.<br /><br />Gulfax is a white, furry creature akin to Chewbacca, but not nearly as useful or entertaining to watch. He looks like someone glued a bunch of white shag carpeting together and forced the actor to wear it. There are scenes where it looks like the actor cannot move within, or that he's almost falling over. Although he isn't in the movie that much, the few scenes are worth it! Watch as he attempts to talk smack to Bo Svenson, taking the Solo-Chewbacca comparison's to an even higher level! <br /><br />I actually bought this movie just because of that character, and still have it somewhere! <br /><br />Gulfax may look like sh!t, but he made this movie!!! The only reason I've never seen the sequel, or even sought it out, was because of his absence! Perhaps should there be a final film, completing the trilogy, Gulfax will make a much-anticipated return!\"\r\n0\tThis show proved to be a waste of 30 minutes of precious DVR hard drive space. I didn't expect much and I actually received less. Not only do I expect this show to be canceled by the second episode, I cannot believe that Geico will ever attempt to use the cavemen ad campaign EVER again. I would have preferred spending a night checking my daughter's hair for head lice than watching this piece of refuse. I wonder what ABC passed on to make this show fit into the '07 fall schedual, perhaps a hospital/crime/mocumentary reality show featuring the AFLAC duck? In the event that I failed to express my opinion about this show let me be clear and say that it is not too good.\r\n1\tFirst of all, in defense of JOAN FONTAINE, it must be said that Ginger Rogers would have been terribly miscast as Alyce, the young British lady who has the title role. Fontaine makes a fetching picture as the heroine here, but her acting inexperience shows badly and her dancing is better left unmentioned. Fortunately, she went on to better things.<br /><br />But here it's FRED ASTAIRE, GEORGE BURNS and GRACIE ALLEN who get the top billing--and they are excellent. Fans of Burns & Allen will be surprised at how easily they fit into Astaire's dance routines. Especially interesting is the big fun house routine that won choreographer Hermes Pans an Oscar. They join Astaire in what has to be the film's most inventive highlight.<br /><br />Unfortunately, not much can be said for the slow pacing of the story--nor some of the stale situations which call for a lot of patience from the viewer. It must be said that some of the humor falls flat and the usual romantic misunderstandings that occur in any Fred Astaire film of this period are given conventional treatment. Only the musical interludes give the story the lift it needs.<br /><br />Some pleasant Gershwin tunes pop up once in awhile but not all of them get the treatment they deserve. The nice supporting cast includes Reginald Gardiner, at his best in a polished comic performance as a conniving servant, Constance Collier and Montagu Love (as Joan's father mistaken as a gardener by Astaire).<br /><br />It's a lighthearted romp whenever Burns & Allen are around to remind us how funny they were in their radio and television days. Both of them are surprisingly adept in keeping up with Astaire's footwork.<br /><br />Director George Stevens makes sure that Joan Fontaine's hillside dance number with Fred is filmed at a discreet distance but clever camera-work cannot disguise the fact that she is out of her element as Astaire's dance partner, something she seems painfully aware of.\r\n0\t\"Al Pacino? Kim Basinger? Tea Leoni? Ryan O'Neal? Richard Schiff? My mouth was watering. I dropped everything to watch this movie on Cable. 30 minutes in I was having trouble staying awake. 60 minutes in and I hit the record button and fell asleep. Finished watching it the next morning. Shouldn't have bothered. What a waste of a great cast and an idea that could have been an interesting story of a \"\"Day in the Life...\"\" Cure your insomnia if you have it and watch this movie. I guarantee you at least an hour and a half of uninterrupted sleep. Dialogue horrible. Continuity non-existent. Camera work could have been done with a hand held Super 8 and looked better. <br /><br />This movie was a total disaster.\"\r\n1\t\"And that's why historic/biographic movies are so important to all of us, moreover when they are so well done, like this one!<br /><br />Before I saw \"\"The Young Victoria\"\", I knew a few things about Queen Victoria, but in the end I got much more knowledge about it. <br /><br />Emily Blunt is simply GREAT as Victoria (Who would guess that!) and She probably will get a nomination at this years Oscar's. Personally, I'm cheering for her...<br /><br />For technical issues, I am pleased to say that is a very successful production, with wonderful Art Direction/Set Decoration and, of course, like It was expected to be, a terrific periodic Costume Design! <br /><br />The one drawback is that I want to see more and know more about this interesting queen, but foremost, incredible woman and mother! <br /><br />BRAVO: 9 out of 10!\"\r\n0\tAs the film begins a narrator warns us THE SCREAMING SKULL is so terrifying you might die of fright--and if such happens a free burial is guaranteed. Well, I don't think any one has died of fright from seeing this film, but a few may have died of boredom. THE SCREAMING SKULL is the sort of movie that makes Ed Wood look good.<br /><br />Very loosely based on the famous Francis Marion Crawford story, SKULL is about a wealthy but nervous woman who marries a sinister man whose first wife died under mysterious circumstances. Once installed in his home, she is tormented by a half-wit gardener, a badly executed portrait, peacocks, and ultimately a skull that rolls around the room and causes her to scream a lot. And to her credit, actress Peggy Webber screams rather well.<br /><br />Unfortunately, her ability to do so is the high point of the film. The plot is pretty transparent, to say the least, and while the cast is actually okay, the script is dreadful and the movie so uninspired you'll be ready to run screaming yourself. True, the thing only runs about sixty-eight minutes, but it all feels a lot longer. Add to this a truly terrible print quality and there you are.<br /><br />There are films that are so bad they are fun to watch. It is true that THE SCREAMING SKULL has a few howlers--but the film drags so much I couldn't work up more than an occasional giggle, and by the time the whole thing is over your head will roll from ennui. If it weren't for Peggy Webber's way with a scream, this would be the surefire cure for insomnia. Give it a miss.<br /><br />GFT, Amazon Reviewer\r\n1\t\"Though I did not begin to read the \"\"Classics\"\" in literature until I was 47, it's never too late. Jane Eyre is a favorite for many reasons, mainly because there isn't a part of the book I liked less, only parts I enjoyed more. The 1983 TV mini-series with Zelah Clarke and Timothy Dalton was everything I hoped it would be. I saw it as a full length movie in 2006. Dalton's 'Mr. Rochester' was very good but I absolutely loved Zelah's 'Jane Eyre'. Relecting on another 'Classics' movie I saw recently, I was disappointed in the production, direction and dialogue. It was only faithful to the avarice and arrogance of Hollywood. Artistic license to the great works in literature is nothing short of plagiarism. Using the title after such license is fraud. Leave it to the Brits to get this one right (among others). You won't be able to reread the book without reliving the movie with it's proper context and spirit. Well done BBC.\"\r\n0\tLiving in the Middle East (in Israel), I was excited when I bought my ticket for Syriana. Having seen the trailer, and being a thriller-lover, I expected to see first of all a fast moving, breath catching movie, which wisely dips in global policy-making and the relation between oil, power and corruption, from a fresh angle. Well, I almost left the movie in the middle. The pace was painfully slow, almost all characters were stereotyped, the intertwined editing made understanding the logic very difficult, but, as Steve Rhodes wrote in his review, in the end you don't care. Save your money, save your time, choose another movie.<br /><br />Robi Chernitsky\r\n0\tConnie Hoffman is very pretty and is attractively topless at times.<br /><br />That's it, folks. The sole reason for even considering whether to watch this film or not.<br /><br />These 70s sexploitation period pieces are sometimes entertaining by virtue of their very datedness (flared trousers, big hair, Zapata moustaches etc.). This one isn't.<br /><br />The script is bad, the acting is bad, the direction is bad, and the idea of having a senior citizen romantic leading man is exceptionally bad.<br /><br />The title, hinting at a sex comedy, is grossly misleading.<br /><br />I heartily recommend avoiding this one like the plague.\r\n0\t\"I couldn't believe it. I had to rub my eyes a few times. Was it true? <br /><br />Yes, there were Billy Dee Williams, Jeff Conaway, Maxwell Caulfield and Tracy Scoggins - all of them have some manner of talent but here they all were in what basically adds up to a Cinemax-style skin flick set on board a spaceship!<br /><br />Sad as it is, \"\"Alien Intruder\"\" tries to be unique, with a computer virus/alien demon/harpy/whatever else you want to call her named Ariel (Scoggins) infiltrating this sort-of high-tech virtual reality station on board a spaceship where four men are allowed to live out their fantasies as the system is over-seen by their captain (Williams).<br /><br />Interesting? Maybe, but here everything just plays out like a well-padded episode of \"\"Red Shoe Diaries\"\". Williams out-classes everything right and left, and looks like he'd rather be doing anything else, ANYWHERE else. Ah, the things people do for money....<br /><br />The FX are pretty static, maybe even less than what you'd expect for a straight-to-video cheapie like this. Unfortunately, even the female nudity is less than you'd expect. SEXUAL INNUENDO is the real star here and, of course, it gets ALL the best scenes.<br /><br />If you like a movie that's all tease and no brains, check out \"\"Alien Intruder\"\". Of course, you'll probably have to look no further than Cinemax at 2 or 3 in the morning.<br /><br />No stars, not even for what star power this flick can muster.<br /><br />Leave this one lost in space.\"\r\n0\t\"In spite of having some exciting (and daring) sequences, NBTN just never gets going. There are exploding boats, hat pin murders, mass suicides, pathologists with body parts, and all sorts of classic mystery/horror scenes, but they're interspersed with extended periods of pure exposition. Everybody in the movie looks bored. This is a shame because many of the sequences would be considered daring at the time this was filmed.<br /><br />Add to this the \"\"too-proper\"\" Brit characters and you feel like you've drifted into a Sherlock Holmes movie.<br /><br />Finally, the cinematography is very ordinary. There are lots of opportunities for beautiful shots of of the countryside, or complex shots of someone being pulled into a huge bonfire, but the whole thing is unimaginative and dull.<br /><br />Definitely only for Lee and Cushing fans.\"\r\n0\tI didn't expect much from this film, but oh brother, what a stinker.<br /><br />I found this gem in a giant crate of awful $5 DVD's at Walmart (where else)? As cheap as this disc was, I feel ripped off. The special effects had a high school look to them, the camera work marred by wobbly tripods and sketchy lighting and the acting was a perfect example of the 'Christian School'. One can imagine the long and exhausting 'prayer meetings' by the production company after seeing the rushes come back - the people who bankrolled this thing must have had seriously anti-biblical feelings towards the inept production company that cranked this thing out. Think of their anguish as they saw their $914.86 investment go up in smoke.<br /><br />Someone asked why Christian movies are so bad - perhaps the Xian film-makers need to look at GOOD movies and attempt to copy some of the things that make them so good. Believable stories and characters, less hysterical arm-waving and fanaticism, oh, and a story that appeals to -everyone-, not just true believers. I.e. Stop The Sermon, Save It For Church. Take the Omen or Prophesy series, for example. Excellent films with compelling story lines, great cinematography and intense music. No hysterical arm-waving. No preaching.<br /><br />If this film had a laugh track it would have been MUCH better.\r\n1\tI always follow the Dakar, so when my husband bought Charlie's 'Race to Dakar' DVD home I couldn't wait to watch it! Of course we'd seen the broadcast of the race when the actual race was on, but that never gives the background and specific teams.<br /><br />If you watched Long Way Round then you won't be surprised by the language which frankly I find more amusing than offensive.<br /><br />I think the only thing that annoyed me about the DVD was Charlie's hair, but he had it styled before Dakar so my feminine need for neatness was assuaged; tho' I could have lived without the 'flame' undies lol As with LWR, the preparation was every bit as interesting as the race itself. I nearly cried when Charlie broke his hand, and winced at every bruise he sustained while training....and of course the death of Andy Caldicott...that was an appalling tragedy, but then every year there's something.<br /><br />Russ drives me nuts, although his attitude has improved a thousand times from the argumentative cynic he was in LWR. It's great to see him get along so well now with Charlie.<br /><br />What I learned from this odyssey was - 1. never let Scorpion prepare your vehicle for ANYTHING! - they had months to prepare the X5, and still the day before the team left for Lisbon, Scorpion had only done half of things that needed to be done, and the vehicle was a pain throughout the whole race; 2. the Dakar organizers need to put a lot more work into their rider/driver retrieval plan - leaving Matt (and presumably a large number of other riders/drivers out to dry the way they did was nothing short of culpable negligence; 3. Charlie has an endearing enthusiasm for 'rough and tough' adventure but needs to toughen up a lot to really perform as he'd like; and finally, 4. Charlie and Ewan are planning another of these epos called the Long Way Down in 2007, and I can't wait to get my hands on it! :D If you love bikes and/or genuinely nice blokes 'having a go', you have to watch this, I guarantee you love it. It's very entertaining.<br /><br />In conclusion, to Simon Pavey - you sir are a hero, I was so impressed by the your 'quiet achiever' manner and the fact that you actually finished.....just incredible considering what an monumentally difficult race it is. And to Charlie, Matt and the rest of the team - full marks for pulling it off. To think that a relatively green team could have achieved so much is truly admirable. You're all wonderful.\r\n0\tUniversal Soldier: The Return is not the worst movie ever made. No, that honor would have to go to a film that attempted to make some sort of statement or accomplish some artistic feat but failed in a pathetic or offensive manner. However, perhaps no movie I have ever seen has tried for so little and succeeded so completely as did Universal Soldier: The Return. <br /><br />This film is a sci-fi/action travesty that has virtually nothing to recommend it. The acting is as bad as any movie I've ever seen. The plot is terrible and predictable. The special effects are pathetic. In short, anyone even remotely connected to this film should be ashamed of themselves. US: The Return makes previous Van Damme fare seem like groundbreaking cinematic masterpieces. Some movies are so bad, they're good. Believe me when I tell you that this is not one of them. I'm really not sure what else to say here. I doubt many people were considering seeing this movie if they hadn't already, but just in case: don't.\r\n1\t\"Since the title is in English and IMDb lists this show's primary language as English, i shall concentrate on reviewing the English version of Gundam Wing(2000) as presented in the Bandai released DVD set. My actual review for the whole series is under IMDb's entry of \"\"\"\"Shin kidô senki Gundam W\"\"(1995).<br /><br />Very little is changed in respect to plot, script and characterization its adaptation to English and it really depends on your own taste to choose which language to watch this show in. Purists can stick to Japanese all they want, but for a more \"\"realistic\"\" experience i recommend the English track since all the characters, except Heero Yuy, are not Japanese.(most of them are Caucasian in fact with a couple of non-Japanese Asians.) For one thing, the characters' personalities come across more \"\"directly\"\" than in the Japanese version. The contrast between the characters is stronger thanks to some give-or-take performances but a very well cast group of actors.<br /><br />Wing Gundam's pilot Heero Yuy is a highly trained soldier who suppresses his emotions but slowly learns the value of his humanity. Voiced by Mark Hildreth who's deadpan delivery can be criticized as \"\"bad acting\"\" but it matches Heero's personality very well.<br /><br />Deathscythe Gundam's Duo Maxwell, ever cheerful in the face of death is given a crash course in the cherishing the value of life and friends. He is possibly the best acted character in the whole show, masterfully played by Scott McNeil. He may sound a little too old for his age, but Duo's English voice easily out ranks his irritatingly nasal Japanese one.<br /><br />Trowa, the pilot of Heavyarms, is a lost lonely soul who's only purpose so far has been combat; despite his inner desire to form connections with the people around him, he only knows how to kill, not to befriend. Kirby Morrow gives a somber but realistic performance as Trowa Barton.<br /><br />Quatre Rebarba Winner is voiced by Brad Swaile who has no trouble brining out the caring nature of the character and the shattering of his innocence as he experiences horrors of war and death first hand. A huge plus point is that Quatre no longer sounds like a girl(and yes he is voiced by a female actress in the Japanese version) but a bona fide typical 15 year old guy.<br /><br />The impulsive but determined Wufei Chang voiced by Ted Cole may seem a little over-the-top but it plays out in stark contrast to the more subdued roles of Heero and Trowa.<br /><br />Relena Darlian sounds older in English, voiced by Lisa Ann Bailey. This might not sit well with her youthful personification early in the series but as her character matures later into the story, her voice follows suit and ends up fitting in very well with the character development.<br /><br />Zechs Merquise would be one of the more drastically changed voices when compared to the Japanese version. Both voices bring out different sides to the same character. His Japanese voice is haughty, authoritative and commands respect , keeping in line with his high ranking status and charismatic nature. His English voice by Brian Drummond is more subdued, sounding more devious and \"\"snake-like\"\", highlighting Zechs' secretive nature regarding his hidden agendas and staunch beliefs in his ideals.<br /><br />The members of OZ are a mixed bag really. Treize Kushrenada voiced by David Kaye is given a more realistic and down-to-earth performance compared to his larger-than-life Japanese style of speaking. However, Lady Une does not convey her split personality as contrastingly as in the Japanese version and Lucrencia Noin just sounds.........bored most of the time. The cannon fodder pilots and military leaders are nothing to speak of either.<br /><br />I would have appreciated if they took the time to give different characters different accents to reflect their ethnic backgrounds. The Maganac Corp's voices were generally uninspired but could have been more interesting if they were given middle eastern accents. The members of the Romerfeller Foundation would have also sounded better with some classy European accent that reflects their status of nobility.<br /><br />Despite underwhelming acting from the side characters, the main cast manage to carry the show and it results in an overall less over-the-top and more realistic rendition of Gundam Wing's script. Very faithful to the original Japanese script, keeping all the underlying thought provoking ideas and themes about politics, war and human nature. Sadly, it also retains the flaws of the original Japanese script.\"\r\n1\t2054. Paris is an Escher drawing with people and vehicles scurrying along at multiple levels in an obvious homage to Fritz Lang's Metropolis. Paris is both ultramodern and crumbling into decay. And in the blink between surveillance sweeps, a pretty young medical researcher is kidnapped just after leaving her sister in a seedy nightclub. A tough police captain investigates. Shown in stark black and white, with the gloomy corridors, shadowy alleys and single source lighting characteristic of the most hard-boiled of film noir, comparisons to Sin City are inevitable. But the story owes more to Masamune Shirow and William Gibson than to Frank Miller, as high tech surveillance, near-invisible stealth suits and ruthless super-corporations are as much a part of the landscape as guns and cars. The film never quite generates the doom-laden atmosphere of Gibson's cyberpunk vision, with its tech-heavy marginal characters clashing with industrial types from corporations that all seem to have their own Ministry of Fear, but the viewer definitely gets the sense that future Paris is no Utopia and future science is less than benevolent. And as the police procedural plot line unfolds we are taken into the darker recesses of individual ambition beneath the shiny veneer of Avalon corporation's cultivated PR image. The motion capture process used here produces a look somewhere between B&W comic books and next generation rotoscoping, and is either captivating or intrusive depending on your tastes. Nevertheless, a great visual sense is on display here, and future Paris is filled in down to the tiny details giving the picture a unique look which is in turns both spartan and baroque. Worth a look.\r\n0\t\"I guess I have still enough brain left to NOT find this movie funny. -Great comedians - but a very poor movie! The \"\"best\"\" performance still did NINA HAGEN <br /><br />TRIVIA: Did you realize that it the \"\"real world\"\" scenes (in Hamburg) the cars are almost ONLY new BMWs ?? <br /><br />I guess I have still enough brain left to NOT find this movie funny. -Great comedians - but a very poor movie! The \"\"best\"\" performance still did NINA HAGEN <br /><br />TRIVIA: Did you realize that it the \"\"real world\"\" scenes (in Hamburg) the cars are almost ONLY new BMWs ??\"\r\n1\tWhen John Singleton is on, he's *on*!! And this is one of his better films. Not quite as tight as Boyz-n-the-Hood, but close to it (and with much of the same stellar cast). This film was very well written, very well put together, and very well shot. There's very little to criticize, and most of my complaints are superficial (eg: where did Fudge get the money for 6 years of college and a lot of expensive stuff? No mention of a rich background... And why doesn't Professor Phibbs have an office? A professor of his stature *should* have one... And while we're at it, for an engineering student, hick or not, Remy's a pretty dumb character - I'd think that he'd have a bit more in the way of basic intelligence - he talks and acts like a total buffoon).<br /><br />But that aside, the film was very sharp. A good array of characters and points of view; and Singleton doesn't take sides in the story - many of the characters are unsympathetic, and he does a good job of interspersing the Panthers and Supremacist scenes together to show the folly on both sides.<br /><br />Much of the cinematography was excellent; I especially loved the scene where Kirsty Swanson gets intimate with Taryn and Wayne each scene spliced together really well. Also the Malik/Deja scenes were really well shot as well.<br /><br />The dialogue was a bit much at times; this film had a tendency to get *really* preachy at times, and it also tends to hammer the points it was making over your head when the points would be just as clear with out the bluntness (we really didn't need the US flag with 'UNLEARN' typed onto it, give some credit, we're not morons...). And to top it off, although *most* of the time Singleton uses melodrama quite well, sometimes it gets *way* too cheezy (like Deja's death, which is fine until she screams out 'WHY!!!' which simply ruined the entire effect and scene).<br /><br />But the acting, in general, was top of the line. Fabulous performances by Omar Epps (perhaps the best I've ever seen), Kirsty Swanson (who knew Buffy could act??), Michael Rapaport (surprised the hell out of me...after True Romance and Beautiful Girls I though he was a one-role actor), and of course Ice Cube and Laurence Fishburne are *always* outstanding.<br /><br />Downside? Jennifer Connelly was flat; though it's not completely her fault: her role was stereotypical and one-dimensional. Generic to the highest degree. And Tyra Banks, who had the role, was nothing short of horrid. She whined and whined and whined. Yet another in the long line of models-turned-actresses who failed miserably (though there are a few who prove the exception to this rule).<br /><br />Finally, the soundtrack! Wow! An amazing soundtrack (which is definitely worth buying!) which fits the film like a glove. Each scene has a twin song (although the Tori Amos songs started to *really* annoy me by the end...not her best work). Liz Phair, Rage Against the Machine, Ice Cube...how can one go wrong??<br /><br />All in all: a really good watch, a really strong cast, great script, great film. 8/10.\r\n0\t\"I believe that war films should try to convey the terror of war, avoid idealism and respect some rudimentary military principles. Zvezda barely does the first. Zvezda being a Russian war film, I was expecting patriotism, sentimentality, beautiful poetic pictures, a lush score, Slavic cheekbones and cruel Germans. What I didn't need was the naive love non-affair, the unrealistically silly war scenes and the abuse of the syrupy soundtrack in a film which avoided carefully all historical or political references (Stalinism, Nazism, Holocaust) only to end on a passing but nonetheless insulting to our sense of history endnote about \"\"liberating Poland\"\". A missed opportunity as a film but not as propaganda apparently.\"\r\n1\t\"This movie was very, very strange and very, very funny. All of the actors are quite real and very odd. The overall \"\"look\"\" of the film was different, too, sort of dreamy and bleached-out, which only added to the spacey, fumbling, weird vibe of the whole thing.<br /><br />It's not for everyone, I mean, it's not what you would call \"\"mainstream\"\" but that is what I liked about it. It's unlike anything I have ever seen before . . . unpredictable, with a weird rhythm and punch lines in the strangest places. The kids are so heartbreakingly goofy (and pimply) that you can't help but feel for them. In other words, these are far from \"\"hollywoodized\"\" versions of teenagers.<br /><br />All of, which for me, makes it a good thing.\"\r\n0\t\"while being one of the \"\"stars\"\" of this film doesn't necessarily give me sage insight, i do know quite a bit of what was first there...and what ended up on the screen. i remember seeing the original cut of \"\"incoming freshman\"\" and being very pleased. it was funny, sexy, raunchy, all the main requirements of a drive-in film. you have to remember this was shot and released before all the rest...animal house, porky's, etc...so in its own way, this flick was truly ahead of its time. for whatever reasons, the film was given to the main distributors who editing out half the original film, and then edited in (should i say \"\"shuffled?\"\") THE most random scenes ever. the fat guy, the people with goat heads....what the heck was all that?! i'm sure it was put in for additional T&A, but it was so slowly paced, it caused anything going on prior to it to grind to a screeching and painful halt. but all in all, it's a fun memory for me...especially in that i'm able to say that the worst movie i've ever seen...i'm in!\"\r\n0\t\"The story and the show were good, but it was really depressing and I hate depressing movies. Ri'Chard is great. He really put on a top notch performance, and the girl who played his sister was really awesome and gorgeous. Seriously, I thought she was Carmen Electra until I saw the IMDb profile. I can't say anything bad about Peter Galleghar. He's one of my favorite actors. I love Anne Rice. I'm currently reading the Vampire Chronicles, but I'm glad I saw the movie before reading the book. This is a little too\"\"real\"\" for me. I prefer Lestat and Louis's witty little tiffs to the struggles of slaves. Eartha Kitt was so creepy and after her character did what she did The movie was ruined for me; I could barely stand to watch the rest of the show. (sorry for the ambiguity, but I don't want to give anything away) Sorry, but it's just not my type of show.\"\r\n0\tIt's possible that A Man Called Sledge might have been done irreparable damage on the cutting room floor. Maybe someone will demand a director's cut one day, but I seriously doubt it.<br /><br />James Garner decided to cash in on the spaghetti western market and in doing so brought a whole lot of Americans over to fill the cast out. Folks like Dennis Weaver, Claude Akins, John Marley. And of course we have Vic Morrow who both wrote and directed this film.<br /><br />Garner always gets cast as likable rogues because he's so darn good at playing them. But he has played serious and done it well in films like The Children's Hour and Hour of the Gun. He can and has broken away from his usual stereotyped part successfully. But A Man Called Sledge can't be counted as one of his successes.<br /><br />He's got the title role as Luther Sledge notorious outlaw with a big price on his head. After partner Tony Young gets killed in a saloon and Garner takes appropriate Eastwood style measures, he's followed from the saloon by John Marley.<br /><br />Marley's spent time in the nearby territorial prison and it seems as though gold shipments are put under lock and key there on a rest stop for the folks transporting the stuff on a regular run. Garner gets his gang together for a heist.<br /><br />Here's where the movie goes totally off the wall. Usually heist films show the protagonists going into a lot of methodical planning. Certainly that was the case in The War Wagon which some other reviewer cited. But in this one Garner decides to break into the prison as a prisoner of fake US Marshal Dennis Weaver and cause a jailbreak at which time the gold will be robbed. <br /><br />That was just too much to swallow. If taking the gold was this easy it should have been done a long time before. But I will say for those who like the blood and guts of Italian westerns, during that prison break there's enough there for three movies.<br /><br />That's not the whole thing, of course the outlaws fall out and we have another gore fest before the film ends. But by that time the whole film has lost a lot of coherency.<br /><br />The great movie singer of the Thirties Allan Jones is listed in the credits. But for the life of me I can't find him in the film. Maybe a chorus of the Donkey Serenade might have made this better.<br /><br />Couldn't have hurt any.\r\n0\tThe peculiar charisma of Martin Kosleck brings a certain believability to his character of the frustrated artist. He imbues his dialog with an odd sense of realism, making the sculptor Marcel a convincing individual. The character manages to come across as a real person and not so much a typical B movie villain.<br /><br />The story line is nothing to write home about, and many scenes are dull. What makes it work is the strange chemistry between Kosleck and Rondo Hatton as the Creeper. Kosleck's talkative, philosophical character is contrasted with Hatton's low key, monosyllabic approach. The character of the Creeper isn't developed much beyond a basic monster level, but Hatton suggests undeveloped possibilities and makes you wonder about his back story.<br /><br />This movie was on Shock Theater a lot when I was a kid, so I have a certain nostalgic fondness for it. It's worth seeing once, anyway, for those who enjoy Forties horror movies.\r\n0\t\"To say this film stinks would be insulting to skunks. As the other commenter says, this movie is insulting to anyone over the mental age of 7 (it is especially, incredibly insulting to gays). It is awful - and not in a \"\"so bad it's funny\"\" sort of way either - it's just plain awful. No, I have to say it: IT STINKS! (sorry skunks).<br /><br />From the opening credits to the end titles there is hardly more than 10 seconds of this movie worth opening your eyes for. The \"\"plot\"\" is incoherent, the characterization non-existent, the acting is of the over the top mugging \"\"look at me I'm being funny!\"\" school and so it goes on. The set pieces are clumsily set up (if at all) and are badly executed, it's just awful on every front - apart from the music maybe, I don't remember thinking the music stinks (apart from the songs).<br /><br />To be fair to the makers, they lay their cards on the table pretty quickly: the opening credits include the title \"\"Also starring Ertha Kitt as the voice of Betty the meteor\"\" (since as the meteor in question turns out never never say anything but make an occasional purring noise they may well have lifted Ms. Kitt's contribution from one of her records) and the second line of the movie runs something like: \"\"...and scientists have discovered new facts about the rings around Uranus.\"\" Uranus - \"\"Your Anus\"\" geddit? geddit? huh? huh?? Your Anus? The humour really is that cheap.<br /><br />It says strange things about the \"\"comedies\"\" of that period in that it was perfectly permissable for the hero to deliberately shoot people dead in the street but not say \"\"sh*t\"\" out loud.<br /><br />I paid fifty pence (about $1.00) for this movie in a sale. I feel ripped off.\"\r\n1\t\"Nathan Detroit (Frank Sinatra) is the manager of the New York's longest- established floating craps game, and he needs $1000 to secure a new location. Confident of his odds, he bets the city's highest-roller, Sky Masterson (Marlon Brando), that he can't woo uptight missionary Sarah Brown (Jean Simmons). 'Guys and Dolls (1955)' is such a great musical because it deftly blends the contrasting styles of film and stage. During a dazzling opening sequence, crowds of pedestrians move in rhythm, stopping and starting as though responding to backstage cues. Even the walking movements themselves are stylised and angular, halfway between a walk and a dance. Mankiewicz's New York City is a glittering flurry of art deco colour and movement, a fantasy world so completely removed from reality that even the business of underground gambling and criminal thuggery seems perfectly genial. <br /><br />As I write this review, I've just received word that Jean Simmons has passed away, age 80. This, unbelievably, was the first time I'd seen her in a film, yet she dazzled me from the beginning. Her idealistic and sexually-repressed Sarah comes out of her shell following an alcohol binge in Havana, letting loose with an adorably playful rendition of \"\"If I Were A Bell.\"\" Even though both Simmons and Brando were non-singers, producer Sam Goldwyn decided not to dub their vocals, contending that \"\"maybe you don't sound so good, but at least it's you.\"\" Despite Goldwyn's backhanded confidence, the pair both do well to carry entire musical numbers themselves. Simmons suggests the same child-like liveliness that Audrey Hepburn might have brought to the role, and Brando exudes such self-assurance and charisma that it doesn't matter that his singing voice isn't quite there.\"\r\n1\t\"Here's a decent mid-70's horror flick about a gate of Hell in NYC that just happens to be an old brownstone. Seems like there's lots of gates of Hell around, but of course this unwitting model happens to decide she needs some space from her boyfriend/fiancée and so she just happens to pick one, which is disguised as a nice and reasonably priced apartment. She meets several strange neighbors, and even attends a birthday party for a cat. Upon meeting with the Realtor because she hears strange noises at night from upstairs, she finds out that she and an old priest are SUPPOSED to be the only tenants. Whoa! Then who are all these weirdos? Her boyfriend (a slimy lawyer, played by Chris Sarandon) starts poking around and finds that things are not what they seem, not by a long shot. This has some decent creepy scenes and the idea of the creaky old folks that are her \"\"sometimes\"\" neighbors being other than what they appear is fairly intriguing. A bit of decent gore and even a parade of less-than-normal folks towards the end make this a decent watch, and while I've seen this many times on TV the uncut DVD version is much better, of course. Not a bad little horror flick, maybe a good companion piece to \"\"Burnt Offerings\"\". 8 out of 10.\"\r\n0\tWhen i got this movie free from my job, along with three other similar movies.. I watched then with very low expectations. Now this movie isn't bad per se. You get what you pay for. It is a tale of love, betrayal, lies, sex, scandal, everything you want in a movie. Definitely not a Hollywood blockbuster, but for cheap thrills it is not that bad. I would probably never watch this movie again. In a nutshell this is the kind of movie that you would see either very late at night on a local television station that is just wanting to take up some time, or you would see it on a Sunday afternoon on a local television station that is trying to take up some time. Despite the bad acting, cliché lines, and sub par camera work. I didn't have the desire to turn off the movie and pretend like it never popped into my DVD player. The story has been done many times in many movies. This one is no different, no better, no worse. <br /><br />Just your average movie.\r\n1\tDragon Hunters has to be the best-looking animated film I've ever seen. It was jaw-dropping. The film is about a couple rogues in search for some cash, their weird furry blue dog that pees fire, and a girl who dreams about becoming a knight, and they are sent on a quest to go to the ends of the earth to kill the world gobbler, an impossibly immense dragon. But honestly, it doesn't even matter what the film is about. Because, it is jaw-droppingly gorgeous. The gravity in this fantasy world is different, so blocks of architecture and spheres of land float around amidst cathedrals and castles and villages alike, and there are forests of floating lily pads. The world is so creative, so uniquely beautiful, with a sort of muted storybook look to it. The world looks like a set of gorgeous paintings. The monsters are visually stunning as well, like a fire dragon comprised of a swarm of evil red bats. Some of the plot isn't too original, like the main protagonists wanting their farm a la Of Mice and Men and never seem to be able to make it in the world; but the gorgeous graphics, some seriously sinister scenes, and emotion-evoking dialog makes this film spectacular.\r\n0\tMy wife and I just finished watching Bûsu AKA The Booth. She fell asleep during some parts of the movie. I really wish I had taken a snooze with her, but the unfortunate fact is that the main character's voice is so loud and grating that it was impossible for me to sleep. When our protagonist speaks, it makes me want to hear Regis Philbin and William Shatner sing karaoke. He also has no redeeming qualities. I was hoping he'd get hit by a bus five minutes into the film.<br /><br />Don't get me wrong, I love Asian horror cinema, but The Booth is extremely irritating and full of scenes that really make no damned sense at all. If you want some good Asian cinema, check out A Tale of Two Sisters or Into The Mirror. Avoid The Booth like the plague, especially if you suffer from frequent migraines.\r\n1\tConsidering the big name cast and lavish production I expected a lot more of this film. The acting for the most part is great, although the story they have to work with is mediocre at best. However the film still warrants watching because of the acting and the stars and some and up and coming young talent.\r\n1\tMy college professor says that Othello may be Shakespeare's finest drama. I don't know if I agree with him yet. I bought this video version of the film. First I love Kenneth BRanagh as Iago, he was perfectly complicated and worked very well in this adaptation. SUrprisingly, he didn't direct it but played a role. Lawrence Fishburne shows that American actors can play Shakespeare just as well as British actors can do. not that there was a British vs. American issue about it. In fact, if we all work together then Shakespeare can reach the masses which it richly deserves to do. Apart from other Shakespeare tragedies, this is dealt with the issue of race. Something that has existed since the beginning of time. The relationship between Iago and Emilia could have been better and shown the complicatedness of their union together. While Othello loves Desdemona with all his heart, he is weak for jealousy and fears losing her to a non-Moorish man like Cassio. It's quite a great scene at the end of the film but I won't reveal the ending. IT's just worth watching. I think they edited much of the lines to 2 hours but they always edit Shakespeare.\r\n1\twhen you add up all the aspects from the movie---the dancing, singing, acting---the only one who stands out as the best in the cast is Vanessa Williams...her dedication, energy and timeless beauty make Rosie the perfect role for her. Never have i ever seen someone portray Rose with such vibrancy! Vanessa's singing talent shows beautifully with all the songs she performs as Rose and her acting skills never cease to amaze me! Her dancing is so incredible, even if as some people say the choreography was bad---her dancing skills were displayed better than ever before! I'd recommend this version over the '63 just because i find that although lengthy the acting by Vanessa is superb-----not to mention the fact that Jason Alexander and the rest of the cast are very impressive as well (with the exception of Chynna Philips...what in hell were they thinking when they cast her?)<br /><br />All in all I'd say this version is wonderful and I recommend that everyone see this version!\r\n1\tFaithful adaptation of witty and interesting French novel about a cynical and depressed middle-aged software engineer (or something), relying heavily on first-person narration but none the worse for that. Downbeat (in a petit-bourgeois sort of way), philosophical and blackly humorous, the best way I could describe both the film and the novel is that it is something like a more intellectual Charles Bukowski (no disrespect to CB intended). Mordantly funny, but also a bleak analysis of social and sexual relations, the film's great achievement is that it reflects real life in such a recognisable way as to make you ask: why aren't other films like this? One of the rare examples of a good book making an equally good film.\r\n0\tTHE TEMP (1993) didn't do much theatrical business, but here's the direct-to-video rip-off you didn't want, anyway! Ellen Bradford (Mel Harris) is the new woman at Millennium Investments, a high scale brokerage firm, who starts getting helpful hints from wide-eyed secretary Deidre (Sheila Kelley). Deidre turns out to be an ambitious daddy's girl who will stop at nothing to move up the corporate ladder, including screwing a top broker she can't stand and murdering anyone who gets on her bad side. She digs up skeletons in Ellen's closet, tries to cause problems with her husband (Barry Bostwick), kills while making it look like she is responsible, kidnaps her daughter and tries to get her to embezzle money from the company.<br /><br />Harris and Kelley deliver competent performances, the supporting cast is alright and it's reasonably well put-together, but that doesn't fully compensate for a script that travels down a well-worn path and offers few surprises.\r\n1\tWhat more could anyone want? He's a history lesson, foreign language tutor, NRA representative and ambassador to Burundi dressed in a nice silk frock and heels. I laughed so hard I left a puddle. His woes about puberty, transvestism, public school, and done in several languages made the absolute finest stand-up routine I have ever seen. I think about it now, years later when I see cake (tea and cake or death) and hear something translated into French (the mouse is under the table, the cat is on the chair and the monkey is on the branch. I like his versions of what Jerry Dorsey could have been named before he settled on Englebert Humperdinck. I really hope to see a lot more from this wonderful guy. He has a lot to teach us, and a wonderful way of telling it. Thanks for your time.\r\n0\tIf you have seen Friends, the writing will feel very familiar. Especially the last 3 or 4 seasons of Friends often share the same comedy setups.<br /><br />The show is about a group of people whose connection is that they shared the same class when they were still rather young (about 10 years old I think). Now, they're in their mid-twenties, and they meet again on a class reunion. This is where the series starts.<br /><br />A typical episode deals with multiple story lines at once. They're usually not connected in any way. Each story line is cut up into multiple sections, which are then shown in a mixed order.<br /><br />The sketches is where my problems lie with this series. As in the later seasons of Friends, it's often a rather silly setting with hard to believe situations. One of the main characters does something really stupid that's hard to believe. The situation is then heavily exaggerated, as if it wasn't silly enough. If you're into this kind of in-your-face humor, then maybe you'll like this series. For me it is a great turn-off.<br /><br />The reason I started watching Friends is because of the first few seasons. There are interesting and especially credible story lines, with some romance in it that makes you root for the characters. The Class has none of this. The characters are simply too forced and stereotypes are pushed too far. It's therefore not possible to relate to them and like them.<br /><br />At least with friends, it took several seasons before it ran out of steam and the character traits were all milked out. But in The Class, it seems it has run out of steam before it even started.\r\n1\tDressed to Kill starts off with Kate Miller (Angie Dickinson) having a sexually explicit nightmare, later on that day she visits her psychiatrist Dr. Robert Elliott (Michael Caine) for a session in which she admits to be sexually frustrated & unfulfilled in her current marriage. Kate then visits a museum & picks up a stranger, they go back to his apartment for casual sex, when done Kate is set to leave but is attacked & killed in the buildings elevator by a razor blade wielding blonde woman. Prostitute Liz Blake (Nancy Allen) discovers the gruesome scene & sees the killer but manages to escape. Detective Marino (Dennis Franz) says he suspects Liz as being the killer as there are no other witnesses so Liz teams up with Kate's son Peter (Keith Gordon) to track down the real killer, clear Liz's name & see that justice is done...<br /><br />Written & directed by Brian De Palma I thought Dressed to Kill was a good solid psychological murder mystery. The script is measured & slow at times but it likes to focus on the character's so you really know them, the entire first twenty minutes is just developing Kate as a character before she is suddenly killed off, then the film switches it's attentions to Liz & no one else gets a look in. This way Dressed to Kill is quite absorbing & engaging, unfortunately the character's themselves aren't exactly likable. I found some of the dialogue quite funny at times, especially the dirty talk that Liz spouts occasionally. The killers motives are somewhat plausible but I guess you'd have to be pretty messed up to do anything suggested in Dressed to Kill. It's a good film but it didn't excite me that much & I didn't really find any character to root for or like. The film tacks on a needless & unnecessary twist ending that I didn't really see the point of.<br /><br />Director De Palma directs with style & visual flair, from the art museum sequence to a car chase & as a whole it's impeccably filmed throughout. I'd imagine that every shot in Dressed to Kill had a great deal of thought put into it. I felt the film was a bit flat & uninspired at times though, nothing about it really excited me that much. There is a fair bit of nudity, some sex & rape along with a few bits of gore & violence, Kate's murder by razor blade in the elevator being the highlight, if that's the right word. However, it's by no means as shocking or controversial when viewed today as many would have you believe.<br /><br />With a supposed budget of about $6,500,000 Dressed to Kill has that glossy high production value feel of a Hollywood film. The New York locations are nice, the cinematography is good & as a whole it's extremely well made. I thought the music was inappropriate & was far to loud & intrusive. The acting is OK but despite his top billing I didn't think Caine had that much screen time. Allen was married to director De Palma at the time Dressed to Kill was made, interestingly out of the four films she appeared in made by De Palma in two of them, this & Blow Out (1981), he cast her as a prostitute... A body double was used for Dickinson as she pleasures herself in a shower at the start.<br /><br />Dressed to Kill is a good thriller that is well worth watching but I didn't think it quite lived up to it's lofty reputation. Good but not brilliant.\r\n0\t\"I saw this move several years ago at the Central Florida Film Festival if I recall. I liked it, it showed great potential. I guess most people here are blasting this film because the film did seem hobbled together (by the filmmaker's own admission on the official site -- the short was exhibited as a \"\"rough-cut\"\").<br /><br />But nonetheless, it was an easy-going comedy. I think many people try to read far too much into a comedy. All they are supposed to do is make you laugh -- that's all. I did just that at its showing, so it succeeded on that level. Just my 2 Cents Anyway.\"\r\n0\t\"The Mummy's Tomb starts with a review of the events in The Mummy's Hand and then moves the story forward several years and across the ocean to the United States of America where the current high priest and the mummy Kharis set out to wreak havoc and take revenge on those who violated the tomb in the past.<br /><br />While I absolutely loved \"\"The Mummy\"\" with Boris Karloff as the mummy Imhotep, and quite liked \"\"The Mummy's Hand\"\" with Tom Tyler as Kharis (which is the direct prequel to this film), I was not as taken with \"\"The Mummy's Tomb\"\".<br /><br />It is made in a similar style as the previous film and has a somewhat similar plot albeit in a new setting. Lon Chaney Jr is okay as Kharis, but doesn't really stand out. And I guess that's my main criticism of this movie-that nothing really stands out. There's nothing really terrible here, but nothing really outstanding either, so the viewer is left with a rather bland mummy's tale.\"\r\n0\tI caught this movie on Sci-Fi before heading into work. If you've any interest in seeing Dean Cain dive and avoid being enveloped in flames at least a dozen times, this movie is for you. If that doesn't peak your interest, well, I'm afraid you'll wish that YOU were the one about to be enveloped in flames, because this movie is pretty bad. The acting, to begin with, is awful, awful, awful. The characters are all completely obnoxious, and the dialogue is worse than your typical Z-grade, Sci-Fi movie. Towards the end, the movie began to remind me of 'Hollow Man' (complete with escape via elevator shaft), except with a Dragon, not a naked, invisible man. Unlike other similar flicks, however, this one wasn't even awesomely bad...it was just plain bad.\r\n1\t\"I'm not a follower of a certain movie genre. I classify movies only as industrial or non-industrial. Valentine is the second industrial movie of the director Jamie Blanks, after his Urban Legends. Unlike Urban Legends the screenplay and the story line is very weak. Yet again unlike Urban Legends the basic elements of the movie is so dashing and iconic, and that is what makes Valentine the best. <br /><br />As the first basic and iconic element, the growing hatred of the serial killer is so down-to-earth. Since his secondary school years, he has grown up with his wounds he had accumulated in his soul against his classmate girlfriends, who have made fun of him. When you concentrate enough on this first element while watching the movie, you will come to see this point of view of Humanism: \"\"Noone is entirely good or evil. In fact, somebody known as evil can be secretly kind hearted.\"\" Just because the story line and the direction is very weak, we are not as satisfied as we deserved. <br /><br />The second iconic element is, of course, the magnificent togetherness of the late 90s' super starlets: My favourite is Jessica Cauffiel who is killed within the coolest way to be killed. An arrow shot from a bow broaches her tummy and stays stuck in, while she was playing hide-and-seek with her blind date, never able to met with. Katherine Heigl is the first starlet getting killed in a biology laboratory while trying to hide under human body models lying on the surgical operation tables. Denise Richards is killed third, while she just found a Valentines' Day gift for her at a whirlpool bath. Jessica Capshaw is killed last in a confidential and unseen way, then she is calumniated to be as the serial killer. Marley Shelton is the unluckiest one with a vicissitude of fortune that she is going to be killed within the most confidential way that we will never know, 'cause the movie is coming to an end before she is getting killed. Finally, Benita Ha is the luckiest one since she was not a classmate of the serial killer, David Boreanaz.<br /><br />The third and the last iconic element is the soundtrack from the blind date labyrinth scene, the Valentines' Day celebration at Dorothy's house scenes and ultimately the killing themes. Everybody has loved the soundtrack as far as I know. Hard Rock never suits better within a serial killer-mystery movie.\"\r\n0\tThis was an atrocious waste of my time. No plot. The acting was so far below par, it should be used as an exemplar in acting classes of what NOT to do. It is merely a commercial rip-off of the earlier Universal Soldier, which also scrapes the bottom of the acting barrel. Its sad that VD needs to assert his ego every few years, and sadder still that people will pay good money to sit thru it. This kind of schlock gives Martial Arts movies a bad name. By comparison, it makes Segall, Norris, and Arnold look almost talented.<br /><br />Perhaps VD should take the Leslie Nielson track and do send-ups of his genre. At least then we could be laughing with him instead of at him.\r\n1\tWhen you read the summary of this film, you might come to think that this is something of an odd film and in some ways it is, for the primary character of this film, Gerard Reve (Jeroen Krabbé) is haunted by visions and hallucinations. The visions Gerard see are all (more or less) subtle hints to what will happen to him as the story continues and it is great fun for the viewer to try and figure out the symbolism used in the film. Despite the use of symbolism and a couple of hints to the ending of the film, the film maintains a very high level of excitement throughout and does not get boring for one minute. This is mostly due to the great performances of Jeroen Krabbé and Renée Soutendijk (Christine) and the great direction of the whole by Paul Verhoeven. His directing style is clearly visible and one can say, looking at it from different angles, that 'De Vierde Man' is a typical Verhoeven film. It will not only seem typical for people familiar with his American films because of the nudity and the graphic violent scenes, but it will also seem typical for people familiar with his Dutch films, because of the same things and his talent to tell a great story. When people watch Verhoevens American films, short sighted people might say, he has no talent in telling a good story and only focuses on blood and sex. That is what some people think, whereas I think that he is a very talented director who tries to convey a deeper message in each with each film. Although not a good film, Hollow Man (his last American film) is an example that Verhoeven can do more than science fiction splatter movies and maybe companies should trust him more and offer him more various films to helm. He needs that. Just watch his Dutch films. Not only do they show that he needs a certain amount of freedom, but they also show that he has remarkable talent. 'De Vierde Man' brought him one step closer to Hollywood and is certainly one of his best.<br /><br />8 out of 10\r\n0\t\"As far as cinematography goes, this film was pretty good for the mid 50's. There were a few times that the lighting was way too hot but the shots were generally in frame and stayed in focus. The acting was above average for a low budget stinker but the direction was horrible. Several scenes were dragged out way too long in an attempt at suspense and the effects were non-existent. The attack by the skull in the pond should have been completely removed from the final cut and every attempt to bring life to the skull was obvious with stick pokes and strings. I also couldn't help but think the budget didn't allow them to furnish the house so they kept making references to the movers and that all the things in storage should be coming soon. Honestly...it would have been more entertaining if it were a worse movie. It wasn't bad enough to be a \"\"good-bad\"\" movie but wasn't good enough to be \"\"good\"\" either. Get the MST3K version...it's more fun.\"\r\n1\tThis film seems to get bad critiscism for some reason. Probably just by the mass populace. Anyhow, this is actually a very interesting movie. The film is an under-budget sci-fi movie which actually works, due to an interesting storyline and well done scenes. <br /><br />This movie may not be for everyone though. If there are any Sci-Fi fans reading this, I truly recommend this movie if you like good ole science fiction. The film has crazy ideas. The setting includes nations going to war with GIGANTIC machines which the entire countries invest all it's money in! The world has been divied up into territories. Anyone can challenge anyone else to a war, or rather, a 'robot-duel'. The method of warfare is cleaner than nuclear war, since now everyone is wearing those breath masks. Definetly a movie that makes you think. Intelligent, well written, and good effects for the measly budget.<br /><br />I tend to like movies which have small budgets and actually work.\r\n0\t\"This film is so bad and gets worse in every imaginable fashion. Its not just the poor acting and script nor is it the lame and perverse time one wastes on watching it. What really puts this film in my hall of shame is the apparent struggling that the writers and producers do with the film to try and make it funny. The actress replacing Jean Reno's descendant is to old and learned her lesson in the first film so they add a new girl who is to be married. Nearly all of the original extras and gags return however this time makes me want to ripe my eyes out of my sockets because it's a waste of perfectly good film. The torture of the constant camera cuts and shots in any scene in this movie can put the viewer into violent convolutions. This second film takes the successful original and drags it out of its coffin and parades the corpse out in the public square and perversely degrades not only the original idea and its legacy but our intelligence as well. This film unlike the spruce goose could not fly for it had no plot in the principals returning for a 'necklace'. No script since it was apparently written and added to daily. No attention to camera or shots in mind. Poor lighting and special effects done for the sake of doing so. This film would not even pass for a student film in basic Film 101. How this pile got through no one can tell. It was a big loosing investment and it appears that no one had the strength to put this unnatural cruel mistake out of our miseries. This movie has one good part ...its END! This film is my #1 worst film of all time, finally \"\"Howard The Duck\"\" is no longer the goose.\"\r\n0\t\"Once again Canadian TV outdoes itself and creates another show that will go unwatched after its premiere episode. <br /><br />Last time I remember sitcoms were supposed to induce a reaction we in the business call laughter. How funny is it to beat the stereotype of all white people thinking that all Muslims are terrorists? OK maybe one joke just to stick it to the masses. But not 30 minutes. It's called beating a dead horse. Even SNL would know to give up after a commercial break.<br /><br />Also, let's have a little conflict in these scripts. Will she or won't she be able to serve cucumber sandwiches to break the fast on Ramadan? When will Ramadan start? Ohhhhh this is Emmy winning stuff here. <br /><br />And the characters! What characters?! They are all cardboard cut-outs without anything interesting to make us want to follow them from one situation to the next. That's the point of the situation comedy. We need to have strong, interesting, dynamic characters so that we are constantly drawn to the TV set each week. We have to care about these characters to worry about what trouble they're going to get into next week. If I never see these characters it'll be too soon. Thankfully I can't remember any of their names (note to CBC - that's not a good sign).<br /><br />And the acting is so bland. It's more so a problem in casting than in the actors. None of these people actually embody the characters they play. They just seem to act their part as though they were working on a movie of the week. Sitcoms require actors who live and breathe that character - make us fall in love with them - where they become inseparable from the character the portray. Watch any American sitcom and you'll see how easily identifiable characters are. Part of the problem is that the actors seem to treat this project as though it might be a platform to bigger and better things instead of being their one big character of a lifetime for whom they will spend the next 8 years portraying. That level of disinterest in the characters and the project shows. But to be honest, considering the lame concept and the horrible writing, there's not much for the actors to do but say their lines and try not to bump into any furniture. As another commenter mentions, this seems like a TV movie and not a sitcom.<br /><br />And the directing or lack there of! What can I say, Canada has so much talent, look at what the Comedy Channel is doing with Puppets Who Kill and Punched Up. Look at the Trailer Park Boys (not the movie cause it bit the big helium dog). Look at any American show to see the potentials our talent as that's where many of our stars go to find decent work.<br /><br />Give credit to the CBC, they really know how to build publicity for a non-event. Remember \"\"The One\"\"? No - well don't even try to learn any characters names in this show, as it's sure to go the way of the dodo.<br /><br />Let's all hope for a full blown ACTRA strike so that nothing like this emerges from the Ceeb for a good long while.\"\r\n1\t\"Charles Boyer is supposed to be Spanish, and he's come to London to buy coal in \"\"Confidential Agent,\"\" a 1945 film also starring Lauren Bacall, Katina Paxinou, Peter Lorre, Dan Seymour, and Wanda Hendrix. Boyer is Luis Denard, and everyone is out to stop him except Bacall. His papers are stolen, he's accused of murder but he's determined to get coal for his people so that they can fight the Fascists.<br /><br />This film has its good and not so good points. It rates high for atmosphere and for suspense, and it is highly entertaining. Bacall is incredibly beautiful, Boyer is passionate, Paxinou is mean, Lorre is slimy, Hendrix appropriately pathetic, and Seymour outrageously wonderful.<br /><br />The not so good points: Bacall is supposed to be English, and Boyer Spanish. Uh, no. Boyer is terrific in his role even with the wrong accent, but Bacall is 100% American, not of the British upper class. The two have no chemistry. Conclusion: Bacall is somewhat miscast. Her acting isn't up to snuff either; she's better in other films. But she's an astonishing looking woman, and much can be forgiven.<br /><br />Paxinou is nearly over the top and hateful. Dan Seymour almost steals the entire film as a hotel guest who studies human nature. It's a great part and his performance is perfect, while some of the direction of the other actors isn't as good. This was definitely a case of no small parts, only small actors. Seymour wasn't a small actor.<br /><br />Definitely worth seeing even with its flaws.\"\r\n1\t\"Blade Runner (Deckard is a Replicant!), <br /><br />City of Lost Children (augmented senses or whatever used and abused and mostly, well, just giving us far less than what we might dream of), and<br /><br />Dark City: <br /><br />These really ought to be added.<br /><br />For a while now, I've been waiting for an animated film that might affect me as much as Miyazaki's stuff has. This one is the 1st.<br /><br />Hmm, scratch the \"\"animated\"\" part of that.<br /><br />I have an intense love-hate relationship with film noir and, hey, if you don't leave, it must be mostly love, right? But, there are so many sci-fi and noir themes totally submerged in this film that it's just a wonder to watch.<br /><br />These people did an incredible job!\"\r\n1\tLa Coda Dello Scorpione (a.k.a. Case of the Scorpion's Tail) was director Sergio Martino's follow-up to the wonderful giallo Strano vizio della Signora Wardh. This is the quintessential giallo, featuring all the aspects fans of the genre have come to know and love. Twisty plot, beautiful girls, black gloves, sharp blades, and a bit of gore all come together to make one heck of a piece of Italian exploitation.<br /><br />A group of gialli favorites, both in front of and behind the camera, work to make this one of the best non-Argento gialli around. There's the aforementioned Martino adding his touches as director, giallo great Ernesto Gastaldi as the writer, Bruno Nicolai creating the music, and a host of giallo stars and starlets, such as George Hilton, character actor Luigi Pistilli, and the fetching Anita Strindberg.<br /><br />With all this talent behind it, does Scorpione deliver? You bet. The film works on many different levels. It's a thrilling murder mystery, a tense and violent horror film, and a suspenseful thriller. All in all one of the best gialli around.<br /><br />Martino definitely knows what fans want when it comes to gialli. At some points in the film, he almost seems to be channeling Argento in his approach. For example, there is a direct rip-off of the scene in Bird With the Crystal Plumage where the killer tries to break through the door, that actually outdoes Argento's flick.<br /><br />Are there any problems with the flick? Hmmm... only minor ones. First, any scenes that aren't following the murders or the budding romance between the two leads begin to bore. But just before you fall asleep, the killer will pop out of nowhere and you'll be right back in the swing of things.<br /><br />Also, towards the end, the twists get a little too bizarre. I mean, what purpose did the scorpion pins really serve? If you don't play close attention to the dialogue, you could easily become lost with the twisting, weaving storyline.<br /><br />But these minor quibbles aside, La Coda Dello Scorpione is a tense, suspenseful, classy and all around entertaining film for giallo fans. Seek it out!\r\n0\t\"It should come as no shock to you when I say that Alone in the Dark is a crappy movie. To put it bluntly, it's as if a dung monster defecated, ate the result, and then vomited. The final product would still outshine this movie.<br /><br />Seemingly based on an ancient (!) Atari video game, the movie has something or other to do with a portal to the bowels of the earth, the unleashing of demons, and ancient civilizations. Something about there being two worlds, that of darkness and that of light. (Guess which one's ours.) Oh, and 10,000 years ago a really super-duper advanced civilization opened the portal, demons came over and had a blast, then wiped out the civilization. Which is why we've never heard of them, conveniently enough.<br /><br />Christian Slater, perhaps pining for the days of Heathers and Pump up the Volume, plays Edward Carnby, a paranormal researcher to whom Something Bad happened when he was 10 years old. He's hot on the trail of one of the artifacts of said advanced civilization. Carnby used to be part of a secret institution called 713, which has been trying to figure out what happened to that long-ago civilization. But Carnby believed he wasn't going to be able to find the answers he sought, so he left the group.<br /><br />But see, these beasties are out, and they get their prey in varying ways, such as gutting them, splitting them down the middle, implanting neurological control devices in them, or just turning them into killing zombies. Yes, it's another zombie movie.<br /><br />That's about as distilled I can make the plot. It's pretty convoluted and incomprehensible. In similar movies, one might see the intrepid researcher/adventurer figure things out a step at a time, and when we the audience are mentally with the researcher, it's a lot of fun. But when the scenes shift from attack to attack with no perspective or context... not so much fun.<br /><br />The acting is dreadful, save for Slater, who (although he almost seems embarrassed to be in the movie) showed he was capable of carrying the acting load. He had to; get this - Tara Reid is cast as a museum curator! Honest to goodness, I thought I'd seen the casting of a lifetime when Denise Richards was cast as a nuclear physicist in Tomorrow Never Dies. But Reid here matches Richards, crappy emoting for crappy emoting. Hightlights include Reid pronouncing \"\"Newfoundland\"\" as \"\"New Fownd Land,\"\" Reid delivering most of her lines in a dazed, throaty monotone (kinda like she'd been on an all-night bender for the past week before filming), Reid - a museum curator, mind you - spending a lot of the movie in a midriff-bearing top and hip-hugger jeans. Oh yeah, she was as believable as Jessica Simpson giving stock quotes. Oh, why must the pretty ones be so dumb? (Note: I don't think Tara Reid's all that good looking. She looks like she's in perpetual need of food.) Almost everyone else in the cast is completely forgettable, except perhaps for Steven Dorff, who played Burke, one of the leaders of 713. Dorff's character wasn't terribly well developed, but nothing in the movie was, from the sets to the characters to Tara Reid. But I digress.<br /><br />Anyway, the perplexing and utterly preposterous storyline is tough enough to follow with the film moving at such a breakneck pace, but director Uwe Boll tosses in a pounding, mind-deadening soundtrack; it's so loud you can't hear what the actors are saying in some of the scenes! That can't be right. Given the acting level, however, perhaps thanks are in order to Mr. Boll.<br /><br />Oh, and a fun note. The opening moments of the movie include narration... of the words that are crawling across the screen at the same time. Remember the first Star Wars? You heard that now-familiar Star Wars theme while the prologue crawled. There was surely no need for narration; why do I need some doofus to read what's on the screen for me? Were the producers simply looking out for blind people? Maybe that also explains why the soundtrack was so loud - they were also looking out for hard-of-hearing people. Also, the narrator inexplicably had a lisp for the first few lines of the crawl - then lost it. Bizarre.<br /><br />Alone in the Dark is a loud, dopey mishmash of dreadful acting, an incoherent script, and ham-handed directing. Hardly a note rings true. There's so much chaos that the audience simply gives up caring about the characters and roots for their demise. Even in the dark, the demonic creatures seem cooler and much more developed by comparison.<br /><br />Ironically, since there were only three other people in the theater, I watched this Alone in the Dark. I wonder if Uwe Boll planned it that way? I can't quite give this the lowest rating, because I had low hopes for it to begin with - and because it never grabbed me enough for me to get worked up about it. It's atrocious, although Slater redeems himself a tiny bit.\"\r\n0\tAfter watching about half of this I was ready to give up and turn it off, but I endured to the end. This is a movie that tries to be a romantic comedy and fails. The acting is poor---much worse than the acting in 80s T&A movies.<br /><br />There are several attempts at humour that fail miserably and the movie is 100% predictable. Perhaps if you are a teenager this movie will hold some appeal, but for those that have seen many movies, you will know how the film turns out after the first 10 minutes. The rest of your time will be spent in agony waiting for the ending credits to roll.<br /><br />Don't waste your time watching this.\r\n1\t\"I think that this is possibly the funniest movie I have ever seen. Robert Harling's script is near perfect, just check out the \"\"quotes\"\" section; on second thought, just rent the DVD, since it's the delivery that really makes the lines sing.<br /><br />Sally Field gives a comic, over-the-top performance like you've never seen from her anywhere else, and Kevin Kline is effortlessly hilarious. Robert Downey, Jr. is typically brilliant, and in a very small role, Kathy Najimy is a riot as the beleaguered costumer. I was never much of a fan of Elisabeth Shue, but she's great here as the one *real* person surrounded by a bevy of cartoon characters on the set of \"\"The Sun Also Sets\"\" -- that rumbling you feel beneath you is Hemingway rolling over in his grave. Either that, or he's laughing really hard.<br /><br />Five stars. Funny, funny, funny.\"\r\n0\t\"\"\"Voodoo Academy\"\" features an \"\"Academy\"\" like no other, one that houses only six male students in one bedroom. These teenage guys are instructed in religion by a sinister young priest, who enjoys tormenting and comforting them simultaneously. The sole administrator of this \"\"Academy\"\" is a young and seductive headmistress, and she retains her handsome charges on a short leash, so to speak.<br /><br />Sexual overtones abound, and the director obviously has high regard for young male bodies. These young actors occasionally strip down to their designer underwear to sneak about the \"\"Academy,\"\" and their sexuality is the entire focus of the movie. If you're not interested in the male form -- stay away!<br /><br />Burdened by weak and awkward dialogue, this low-budget exploitation piece just stumbles along with a few laughable special effects tossed in between the yawns. The mood is claustrophobic, with tediously long takes, a handful of cheap sets and few costume changes. These visual elements come interspersed with seemingly unending sequences of banal dialogue, intended as character and plot development. It gives one the feeling it was filmed in three days...\"\r\n1\tThis is almost typical Lynch. However, What makes this film slightly unusual for Lynch is the fact that it looks very raw, almost amateurish. But i believe Lynch does this on purpose to give a greater sense of realism, which serves to increase the intensity of surreal moments.<br /><br />However, a lot of Typical Lynch motifs are present, such as: floating camera work; haunting music; long (excruciating) pauses; hanging curtains; dim lights growing darker at a slow (almost indiscernible) pace; extreme close ups; themes of women in trouble; over-bearing, incompassionate, all knowing characters facing off with characters who are distraught, temporarily oblivious, in the dark and so on...<br /><br />The performances are great and the short is thought provoking. As usual, Lynch leaves almost everything up to interpretation. Many questions are left unanswered and this ignites the imagination.<br /><br />Another brilliant effort from Lynch. I only hope he makes some shorts, more along the lines of his sony playstation 2 commercials. They were inspired.\r\n0\t\"Where's Michael Caine when you need him? I've seen most of the many seasons of MST3K, but this rare pre-1st season flick (episdoe K-20) is easily one of the worst movies ever made. Three \"\"stars\"\", Lee Majors, Chris Makepeace and Burgess Meredith, struggle through the worst batch of cinematography ever, delivering lines which must have been written by a secret Dick Cheney-style workgroup composed of Exxon and GM lawyers trying to cut funding for mass transit and energy efficiency research. Looks like it was filmed in almost total darkness, possibly on Super 8. Makes Logan's Run look like the cinematic Sistine Chapel crossed with Shakespeare. I can't imagine watching it without the commentary of Crow and Servo since it's unwatchable even with it. Clearly what's needed in Hollywood is some sort of 401K which prevents the need for actors to take on bad movies like this in order to pay for their health care. With its \"\"rights to pollute and drive\"\" theme, by the end, I'm half expecting to see a Charlton Heston cameo where he delivers his \"\"cold dead hands\"\" speech. Lee, I could have forgiven you for this in 1989, but 1981?\"\r\n0\t\"I picked this movie on the cover alone thinking that i was in for an adventure to the level of \"\"Indiana Jones and The Temple of Doom\"\". Unfortunately I was in for a virtual yawn. Not like any yawn i have had before though. This yawn was so large that i could barely find anything of quality in this movie. The cover described amazing special effects. There were none. The movie was so lightweight that even the stereotypes were awfully portrayed. It does give the idea that you can solve problems with violence. Good if you want to teach your kids that. I don't. Keep away from this one. If you are looking for family entertainment then you might find something that is more inspiring elsewhere.\"\r\n1\tThis is a kind of movie that will stay with you for a long time. Soha Ali and Abhay Deol both look very beautiful. Soha reminds you so much of her mother Sharmila Tagore. Abhay is a born actor and will rise a lot in the coming future.<br /><br />The ending of the movie is very different from most movies. In a way you are left unsatisfied but if you really think about it in real terms, you realize that the only sensible ending was the ending shown in the movie. Otherwise, it would have been gross injustice to everyone. <br /><br />The movie is about a professional witness who comes across a girl waiting to get married in court. Her boyfriend does not show up and she ends up being helped by the witness. Slowly slowly, over the time, he falls in love for her. It is not clear if she has similar feelings for him or not. Watch the movie for complete details. <br /><br />The movie really belongs to Abhay. I look forward to seeing more movies from him. Soha is pretty but did not speak much in the movie. Her eyes, her innocence did most of the talking.\r\n0\tHerbie, the Volkswagen that thinks like a man, is back, now being driven by Maggie Peyton (Lindsay Lohan), a young woman who hopes to become a NASCAR champion. The only thing standing in her way is the current champion, Trip Murphy (Matt Dillon), who will do anything to stop them.<br /><br />The original love bug wasn't that good. Even as a kid, I remember not liking it very much. I had some hope for the sequel though. I mean the cast is pretty good and the trailer makes it seem like a pretty fun movie. Unfortunately, Herbie is no better now than he was before. The film is defiantly weak for people over the age of 12. It will probably entertain the kids but that's all.<br /><br />I realize it's a kids film and all but they could have made the film a little more interesting. There were very few laughs and it got boring near the end. Most of the actors seemed dead in their roles too. Lindsay Lohan was alright as Maggie Peyton. She usually gives better performances like in Freaky Friday and Mean Girls. Matt Dillon gave the best performance out of everyone. He was very good as the bad guy even though he didn't have a lot to work with. Justin Long, Breckin Meyer and Michael Keaton are really just there and they don't do anything special.<br /><br />Angela Robinson directs and she does an okay job. She tries to keep the film interesting but she's working with a weak script. Thomas Lennon and Ben Garant wrote the screenplay and would it be any surprise to you that they were also responsible for Taxi and The Pacifier? These two make light films yet they fail to really make the stories interesting or enjoyable. It's not completely their fault but hopefully next time they will try harder. In the end, Herbie is a safe, predictable family film that's worth watching if you're a kid. Everyone else is better off skipping it. Rating 4/10\r\n0\tWow, i'm a huge Henry VIII/Tudor era fan and, well, this was .... interesting. The only one I watched was the Catherine of Aragon one. And wow...just wow. I've seen bad acting before, but this reached new heights. When the actress who played Catherine was umm.. crying? she wails and screams and i have to admit i rewinded many times... many, many times .... funny, funny stuff. The only person who even showed any slight sliver of talent was the actress playing Anne Boleyn (i might be prejudiced though, i do have a slight obsession with Anne Boleyn, she was a really facinating woman, read up on her, it's worth it!) Also, i have read a lot about the Tudor time period and i think that the characters weren't very acurately displayed, they were all very stereotypical. Only see this movie if you are prepared to see a very important time period, and the important lives of those involved turned into a laughing stock.\r\n0\tThere is no question as to who is in command of the training of cadets in this film: Major Chick Davis (Pat O'Brien). O'Brien plays an officer who adheres to military discipline in the creation of a new kind of soldier from his cadets--the bombardier. But he is not so rigid as to be unfair or unfriendly. In fact, he even changes his opinion as to the value of women working in the military. He's tough when he has to be, yet at other times he is a clear mix of coach and pastor, roles he perfected in other films. His character is the foundation of the action around which everything revolves. O'Brien seems natural in the role, and plays it in fine fashion. Two things help this movie: O'Brien's performance and the spectacular special effects ending.\r\n1\t\"With Iphigenia, Mikhali Cacoyannis is perhaps the first film director to have successfully brought the feel of ancient Greek theatre to the screen. His own screenplay, an adaptation of Euripides' tragedy, was far from easy, compared to that of the other two films of the trilogy he directed. The story has been very carefully deconstructed from Euripides' version and placed in a logical, strictly chronological framework, better conforming to the modern methods of cinematic story-telling. Cacoyannis also added some characters to his film that do not appear in Euripides' tragedy: Odysseus, Calchas, and the army. This was done in order to make some of Euripides' points regarding war, the Church, and Government clearer. Finally, Cacoyannis' Iphigenia ending is somewhat ambiguous when compared to Euripides'.<br /><br />The film was shot on location at Aulis. The director of photography, Giorgos Arvanitis, shows us a rugged but beautiful Greece, where since the Homeric days time seems to have stood still. He takes advantage of the bodies, the arid land, the ruins, the intense light and the darkness. The harshness of the landscape is particularly fitting to the souls of the characters. The camera uses the whole gamut of available shots, from the very long, reinforcing the vastness and desolation of the landscape, as well as the human scale involved, to the extreme close-ups, dissecting and probing deep into the soul of the tormented characters. In particular, the film's opening, with a bold, accelerating tracking shot along a line of beached boats, followed by an aerial view of the many thousands of soldiers lying listlessly on the beach, is a very effective means of communicating Agamemnon's awesome political and military responsibility.<br /><br />No word but \"\"sublime\"\" can describe the stunning performances of Costa Kazakos (Agamemnon), Irene Papas (Clytemnestra), and Tatiana Papamoschou (Iphigenia). Kazakos and Papas embody the sublimity of the classical Greece tragedy. Kazakos' character is extremely down-to-earth, and his powerful look into the camera, more than his words, reveals the unbelievable torment tearing his soul. Irene Papas is the modern quintessence of classic Greek plays. In Iphigenia, she is terrible in her anguish, and even more so for what we know will be her vengeance. Tatiana Papamoskou, in her first role on the screen, is outstanding in her portray of the innocent Iphigenia, which contrasts with Kazakos' austere depiction of her father, Agamemnon.<br /><br />Cacoyannis is faithful to Euripides in his representation of the other characters: Odysseus is a sly, scheming politician, Achilles, a vain, narcissistic warrior, Menalaus is self centered, obsessed with his honor, eager to be avenged, and to have his wife and property restored.<br /><br />The costumes and sets are realistic: no Hollywood there. Agamemnon's quarters resembles a barn, he dresses, as do the others, in utilitarian, hand-woven, simple garb. Clytemnestra's royal caravan is made up of rough-hewn wooden carts.<br /><br />The music is by the prolific contemporary music composer Mikis Theodorakis. Theodorakis' score intensifies the dramatic and cinematographic unfolding, reflects on the psychological aspect of the tragedy, and accentuates its dimensions and actuality.<br /><br />This film and the story it narrates offer considerable insight into the lost world of ancient Greek thought that was the crucible for so much of our modern civilization. It teaches us much about ourselves as individuals and as social and political creatures. Euripides questions the value of war and patriotism when measured against the simple virtues of family and love, and reflects on woman's vulnerable position in a world of manly violence. In his adaptation of Euripides' tragedy, Cacoyannis revisits all of these themes in a modern, clear, and dramatic fashion.<br /><br />The relationships governing the political machinations are clearly demonstrated: war corrupts and destroys the human soul to such an extent that neither the individual nor the group can function normally any longer. With the possible exception of Menelaus, whose honor has been tarnished by his own wife's elopement with her lover, everyone else has his own private motivation for going to war with Troy, which has nothing to do with Helen: the thirst for power (Agamemnon), greed (the army, Odysseus), or glory (Achilles). And so in a real sense, Helen became the WMD of the Trojan War. The war, stripped of all Homeric glamor and religious sanctioning, was just an imperialist venture, spurred primarily by the desire for material gain, all else being a convenient pretext.<br /><br />Another conflict raised in the film is that between the Church and the State. Calchas, who represents the Church, feeling the challenge to his priestly authority and wishing to destroy Agamemnon for the insult to the Goddess he serves, tells him to sacrifice his daughter. In consenting to the sacrifice, the King comes closer to his moral undoing, but in refusing, loses his power over the masses (his army), who are brainwashed by religion. Of course, for Agamemnon, it's a game. The King must go along with the charade whether he honestly believes in the Gods or not, until he realizes, too late, that he has ensnared himself into committing a despicable filicide.<br /><br />Is it a sacrifice or a murder, and how can we tell the difference between the two? By focusing on the violent and primitive horror of a human sacrifice--and, worst of all, the sacrifice of one's own child--Euripides/Cacoyannis creates a drama that is at once deeply political and agonizingly personal. It touches on a most complex and delicate ethical problem facing any society: the dire conflict between the needs of the individual versus those of the society. In the case of Iphigenia, however, as in the Biblical tale of Abraham and Isaac, the father is asked to kill his own child, by his own hand. What sort of God would insist on such payment? Can it be just or moral, even if divinely inspired? Finally, does the daughter's sacrificial death differ from the deaths of all the sons and daughters who are being sent to war? These are many deep questions raised by a two-hour film.\"\r\n1\t\"Michael Curtiz directed this 1930 very-stylish whodunit from a script by Robert Presnell Sr., Robert N. Lee and Peter Mine. The original novel they adapted was \"\"The Kennel Murder Case\"\", perhaps from a writer's standpoint the best of the Philo Vance mysteries by the strange S.S. Van Dine. Vance was a long-worded and superior detective genius, and his character being assigned to William Powell probably meant the executives at Warner Brothers were aware of the possibility that in less-engaging hands this detective might alienate viewers. Fortunately they assigned suave William Powell first to the character.; later he was played by Basil Rathbone, Warren William, and Paul Lukas before being consigned to \"\"B\"\" picture status.The other question as always with Warner Brothers executives is why they chose Vance as a character; their penchant was to choose men who operated outside the law, with no apparent discrimination between a vicious murderer and a champion of individual rights against all comers. This film has a despicable villain who gets murdered, and a claustrophobically challenging locale inside an apartment complex. The characters are unarguably unusually well-realized, the direction rather good and unusually swift-paced; and except for a darkish B/W look, the film avoids the comedic asides, superfluous characters and irrelevant dialogue characteristic of many early detective entries. Jack Okey did the good art direction. The music by Berhard Kaun is serviceable; Orry-Kelly did the costumes. William Reese provided the mostly-indoor cinematography. In the interesting cast, Powell is THE Philo Vance of his time, mostly sober-minded with just a hint of sardonic humor here and there. Eugene Palette is better than usual playing very straight as an admiring police partner to Vance, with his very professional timing. The other actor who comes off best is handsome Paul Cavangh, very effective as always in what was written as a red herring part. Mary Astor is attractive but at this point in her career she talked a bit too fast to be as effective as she later proved. Also in the cast were Helen Vinson as the villain's woman, Jack La Rue, Ralph Morgan (best known as Frank Morgan's brother), Robert Barrat as the villain everyone has cause to kill, Archer Coe, and Frank Conroy as his likable brother with Robert McWade as the D.A.; quirky and funny Etiienne Girardot has a delightfully witty part as the funny little forensics doctor who comes onto the crime scene. James lee as the abused Chinese servant is excellent and intelligent. The story breaks into four parts. First there is shad doings at a dog show, where Vance, Coe and Cavanagh are all showing West Highland terriers. Cavanagh's dog is killed, by Coe, to prevent him winning the title over his own entry. The second portion of the scene involves a leave-taking; someone is confused enough by who has gone where, after Coe parts from his girl friend, Vinson, to murder his nice brother by mistake. Enter Vance, to find out who did in Archer Coe in a locked room and how, with the help of Palette; the romantic difficulties are straightened out, the Chinese servant is exonerated, we find out who broke the expensive vase, who will marry whom, how Archer Coe was done in and why the butler did not do it--but someone else with a good excuse did. This is a more-than-good little mystery, which skilled Hungarian-born director Curtiz took quite seriously. He used wipes, swift cuts, changes of camera angle and alternations between straightforward and daring camera-work to achieve variety, interest and a sustained pace. Many writers, critics and experts, myself included, consider this to be the best of the Vance projects, although others are estimable as well.\"\r\n0\tUnfortunately I made a mistake and I paid 7 Euros at the movie theater to watch this shallow meaningless movie. My points;<br /><br />Film is based on 2 things;<br /><br />1) Ethnical point of View: As it happens on most of the American Films, the writer thinks itself as an expert after learning 2 or 3 things about the Asian culture. But unfortunately it is not enough. Knowing kunefe and 2 names of other foods doesn't make a person understand a culture. For example shaving is the sign of clean life in Asia but everyone was trying the girl to stop that. Lebanese people are Christian (Ok they got that) and their cultural forms and beliefs and approaches are completely different from other Arabic countries. The main difference between eastern and western culture is we don't make ethnocentrism. So we don't judge people after their first question about our life as the father figure did in all of the film. <br /><br />2) Sexual revolution of a girl: There is nothing much to say about this. Show me 10 girls which had these on their sexual awakening than I will say that I am wrong.<br /><br />I wrote this comment because the producers are promoting the film in the black humor genre. Please watch Dr.Strangelove and understand the meaning of black humor. A black humor has to reflect the truth and has to focus the audience to the funny parts of it. Where is the truth? Where is the meaning about the movie.\r\n0\tI knew I was going to see a low budget movie, but I expected much more from an Alex Cox film. The acting by the two leading men was terrible, especially the white guy. The girl should have won an Oscar compared to those two. This movie was filled with what I guess would be inside jokes for film industry people and a few other jokes that I actually understood and made me laugh out loud, which is rare. Without these laugh-out-loud moments I would have given this film 2/10. What happened to the Alex Cox who made all the 80s classics?<br /><br />SPOILER:<br /><br />There were a couple of questions I had after the movie was over. Why did the Mexican guy go to the other guy's house at the beginning? What did his daughter say he got 100 people fired from his last job? Why was she breaking her own stuff when she was mad at him? I guess I should have gone to the Q&A after the movie, but I didn't want to get up at 10am.\r\n1\t\"I went into this movie perhaps a bit jaded by the hack-and-slash films rampant on the screen these days. Boy, was I surprised. This little treasure was pleasantly paced with a somber, dark atmosphere. More surprising yet was the very limited amount of blood actually shown. As with most good movies, this one leaves something to the imagination, and Bill Paxton did a superb job at directing. Scenes shot inside the car as are well done and, after watching the \"\"Anatomy of a Scene\"\" episode at the end of the video tape, It was good to see that some of the subtle, yet wonderful things I had noticed were intentional and not just an \"\"Oh, that looks good, keep it\"\" type of direction. This is a moody movie, filled with grimness. Still, for the dark subject, a considerable portion of it is filmed in daylight, even some of the more disturbing scenes. The acting is exceptional (Okay, I've always been a fan of Powers Booth), and never goes over the top. Au Contraire, it is very subdued which works extremely well for this type of film. If there is any one area where this film lacks, it is in the ending, which seems just a bit too contrived, but still works on a simpler level without destroying the mood or the message of the movie. What is the message? It's something that each individual decides for themself. Overall, on the 1-10 scale, this movie scores an 8 for those who like the southern gothic genre (ie: \"\"Body Heat\"\" or \"\"Midnight in the Garden of Good and Evil\"\"), and about a 5 for those who don't.\"\r\n0\tI could not, for the life of me, follow, figure out or understand the story. As the plot advances it too stays incomprehensible. I'm going to guess and say that there was a preproduction story/plot problem that never got sorted out. The producers could never separate the many details that the novel, or any novel, has the time and space to create from the other idea, which was to make a movie about a serial killer and the killer's pursuit by the police. They ended up with too many things happening in a proscribed feature film time limit. Too bad really because they had a solid cast, a director who knows how to move things around and excellent cinematography. In fact, a well made movie that one could enjoy and relax with for a couple of hours.\r\n0\tThis film was abysmal. and not in the good way as some have claimed. First off the main character is a very unattractive gingerman. Second - WTF is going on with this van love. The plot, basically, is: boy wants sex so buys a van (which, in fairness is quite cool). Unbelievably given that he looks like a newt he scores with lots of chicks! And he fails with some. Then he scores with a really hot chick and realises he loves this dowdy bird who played hard to get. Then he drag races with the hot chicks boyfriend. And he tips his van. At which point danny devito saves the day. Although he didn't need to because in tipping the van the ginger kid crossed the line first. I gave this 2 *'s as i'm willing to assume that there's some sort of 70's Vanning subculture i'm not getting and also because there's some 70's boobage too.\r\n1\tWWE's last PPV of 2006, proved to be a hit with the fans, but for one reason only, the ladder match which was only scheduled to be Paul London and Brian Kendrick against William Regal and Dave Taylor. But with the recent crap PPV being December to Dismember, WWE knew that it had to do something to get the fans talking again, this proved useful when it introduced MNM and The Hardy Boyz to the mix and announced that the match was going to be a ladder match.<br /><br />The match was brutal and one of the best ladder matches I have ever seen, but Joey Mercury's face was a total mess. Johnny Nitro didn't even check on his partner, they just carried on like nothing happened, and Taylor and Regal did nothing during the match except hit people with a few ladder shots. In the end London and Kendrick retained the titles.<br /><br />Elsewhere on the show Kane defeated MVP in a decent inferno match when he set MVP's stupid costume on fire. Chris Benoit downed Chavo Guerrero in a decent match, Gregory Helms defeated Jimmy Wang Yang to retain the WWE Cruiserweight Title in a solid effort.<br /><br />But the main event was a total mess, King Booker teamed with Finlay to take on John Cena and Batista. The action was shoddy and no one cared who Batista picked for his partner.<br /><br />Overall Results: Kane defeated MVP in an inferno match.<br /><br />Paul London and Brian Kendrick retained the WWE Tag team titles against The Hardy Boyz, MNM and David Taylor and William Regal in a ladder match.<br /><br />Chris Benoit defeated Chavo Guerrero to retain the US title in a decent match.<br /><br />Gregory Helms defeated Jimmy Wang Yang to retain the Cruiserweight Championship.<br /><br />The Boogeyman beat The Miz in a terrible match.<br /><br />The Undertaker defeated Mr Kennedy in a last ride match.<br /><br />John Cena and Batista defeated King Booker and Finlay in an abysmal match.<br /><br />Overall Grade - B\r\n0\tI went to see it in hopes of some good old fashioned Alice Entertainment.Once I realized I would not be getting that,I watched it for a pretty well made movie (in terms of filming,and yeah..that was it).But aside from it having a good film quality,considering I had been watching grainy movies all day long,there was nothing good about that movie.<br /><br />He killed 42.Why were Tweedle Dee and Dum played by Mudler and Scully?Serisouly,Who can answer that for me?Who can answer anything awful about this movie for me.<br /><br />I agree with whoever said it was just one big long inside joke for the staff.That's all it seemed to be.<br /><br />Poor Mr.Carroll.I'm so sorry somebody did that to his wonderful tales.\r\n0\t\"There is no way to avoid a comparison between The Cat in the Hat and The Grinch Who Stole Christmas, so let's get that part out of the way. First of all, let me start by saying that I think Grinch was an underrated and unappreciated film. Cat was... well, just awful.<br /><br />Jim Carey was cast because he is a brilliant physical comedian, and fearlessly commits to over the top, outrageous characters. Mike Myers fell back on his old bag of tricks.<br /><br />Why, why, why Mike Myers?? The kids could care less, and the Austin Powers demographic isn't going to spy this film. So, what was the studio thinking?<br /><br />The Cat was also apparently related to Linda Richmond. Can we talk? Why a New York Accent? Not entirely consistent with anything Dr. Seuss has ever written. Myers was even allowed to sneak in his Scottish shtick. I wonder how many different voices the director and the studio tried to edit out of before they just gave in and said \"\"as long as you don't say fahklempt', you can keep the accents.\"\" Meyers never seemed to find any sort of comfort, either with the costume, make-up, or dialogue.<br /><br />The jokes, what few there were, were crude and age inappropriate. When Myers picks up a garden hoe and delivers to the camera: \"\"dirty ho\"\", everything but the rim shot was missing, and even that wouldn't have helped.<br /><br />The same folks who created 'Whoville', clearly had a hand in the creation of the town and the houses in 'Cat'. The sets and props were very appealing, giving the viewer a much needed distraction from the bad writing, direction, and Myers.<br /><br />There was some fun to be had with Alec Baldwin and Kelly Preston. Dakota Fanning was the only actor who seemed to be aware she was in a movie based on a Dr. Seuss classic, and stayed true to the genre.<br /><br />Call the SPCA. This Cat should be neutered and never be allowed to reproduce again. Please, please, no sequel.\"\r\n0\tJerry spies Tom listening to a creepy story on the radio and seizes the opportunity to scare his nemesis.<br /><br />I didn't find this particular episode that funny: the humour seemed rather constrained and the whole set up was kinda lame (Jerry is essentially the 'bad guy' in this one, tormenting poor Tom for no particular reason).<br /><br />There is the occasional flash of inspiration (such as Tom's literal 'heart in mouth' experience, and the moment when his nines lives are sucked out of his body), but, on the whole, this effort lacks the frenetic pacing, excellent animation and sheer wit of most of T&J's other cartoons.\r\n1\tThis movie is wonderful. The writing, directing, acting all are fantastic. Very witty and clever script. Quality performances by actors, Ally Sheedy is strong and dynamic and delightfully quirky. Really original and heart-warmingly unpredicatable. The scenes are alive with fresh energy and really talented production.\r\n1\t\"I understand that Paramount wanted to film this with the Rodgers and Hart score, but couldn't work out the copyright problems, so Burke and Van Heusen who wrote the between them the most songs for Bing Crosby contributed a very nice score.<br /><br />I read Leonard Maltin saying that this movie, \"\"fit Crosby like a glove\"\" and I couldn't have put it better. No, it's not Mark Twain's satire, it's a Bing Crosby film and in 1949 Crosby was the most bankable star in Hollywood. For once Paramount used technicolor and Rhonda Fleming was never lovelier on the screen. This was a woman that technicolor was invented for.<br /><br />William Bendix's Brooklyn origins kinda stand out, but it's to a good comic effect. The trio of Crosby, Bendix, and Sir Cedric Hardwicke have a rollicking good time with Busy Doing Nothing. Bing has one of his patented upbeat philosophical numbers with If You Stub Your Toe On The Moon.<br /><br />The third song he sings Once and For Always by himself and with Rhonda Fleming. That song was nominated for best song, but lost to Baby It's Cold Outside. <br /><br />Nice also that Bing managed to record the score for Decca with Rhonda Fleming and Bendix and Hardwicke.<br /><br />One thing I like about this film is that it shows Crosby's comic talents without Bob Hope. I like the Road pictures, but Bing was a comic talent onto himself and this film better demonstrates than any other.<br /><br />This is Crosby at the top of his game.\"\r\n1\tConvoluted, infuriating and implausible, Fay Grim is hard to sit through but Parker Posey is really the only actress who could take this story and run with it. She's at once touching,funny, cunning. The supporting actors commit to it as well.<br /><br />I wont even try to tell you the plot.. It involves characters from Hartley's Henry Fool and attempts a tale of international espionage.<br /><br />The film works well if you continue along with it-understanding it is. in a sense, completely ridiculous. It becomes more and more ridiculous as you plod along. (I resisted the temptation to turn off the DVD twice).<br /><br />Fay Grim requires an adventurous film-goer willing to tackle something that isn't cookie-cutter. In the end, it offers something that defies description.\r\n0\t\"By 1941 Columbia was a full-fledged major studio and could produce a movie with the same technical polish as MGM, Paramount or Warners. That's the best thing that could be said about \"\"Adam Had Four Sons,\"\" a leaden soap opera with almost terminally bland performances by Ingrid Bergman (top-billed for the first time in an American film) and Warner Baxter. Bergman plays a Frenchwoman (this was the era in which Hollywood thought one foreign accent was as good as another) hired as governess to Baxter's four sons and staying on (with one interruption caused by the stock-market crash of 1907) until the boys are grown men serving in World War I. Just about everyone in the movie is so goody-good it's a relief when Susan Hayward as the villainess enters midway through  she's about the only watchable person in the movie even though she's clearly channeling Bette Davis and Vivien Leigh; it's also the first in her long succession of alcoholic roles  but the script remains saccharine and the ending is utterly preposterous. No wonder Bergman turned down the similarly plotted \"\"The Valley of Decision\"\" four years later.\"\r\n0\tBut, lets face it... it got a few nostalgic sighs out of me.<br /><br />The show is just so consistently great that it is allowed to have a few hiccups. I get a new season, and just power through them like I have 2-days to live. I like the idea of wrapping it up, but it was much more of an end of season episode which would explain the following:<br /><br />Dr.Cox isn't supposed to be bald for a couple more episodes, only explanation I can think of is they changed the rotation of the episodes or had to re-shoot the beginning.<br /><br />and that my friends, is why the hell cox is bald.<br /><br />Anyways, the show is awesome...bring on the 7th season.\r\n0\tOK, as everyone has pointed out, this film is a complete dog. To some degree this is because it was a gory sexploitation film that had a lot of material excised (or darkened down to near invisibility) to escape the censor's X-rating; but the film has many other flaws as well.<br /><br />To begin with, the scriptwriter seems to have got his werewolves and vampires mixed up. The baddies in this film are furry and don't like silver but in every other respect they behave like vampires. Now you just can't do that with a crappy genre flick, you've got to stick to the rules of the genre or the fans get all confused and annoyed by suspending disbelief in the wrong thing. In fact the whole (confusing and poorly presented) plot is something that has already been done for vampires, but doesn't make any sense in a werewolf movie.<br /><br />Secondly, the werewolf costumes are the lamest you have ever seen. Anybody in the werewolf movie business ought to know that the werewolf costumes and transformations are something the fans assess critically, yet some of these werewolves are just plain goofy.<br /><br />There are a couple of slightly good bits. I actually quite liked the score. Others have mentioned Sybil Danning's tits. And...<br /><br />(***SPOILER***, if such a thing can exist)<br /><br />I also quite liked the plan for attacking the werewolves' stronghold. There are so many horror movies that rely on characters behaving stupidly, but in this case they first acquire a very sensible and effective anti-werewolf arsenal and go slaughter the monsters. I mean, you can kill werewolves with silver bullets, and we have some pretty powerful firearms these days. Shouldn't be too hard to put two and two together, hmm? But in typical style this movie goes over the top and adds some other very zany and amusing anti-lycanthrope weapons.\r\n1\t\"Sidney Franklin's \"\"The Good Earth\"\" has achieved classic status thanks to a timeless story and superb acting, especially from Luis Ranier, who won an Oscar for her portrayal of O-Lan. Rainers performance is so complete, she is nearly unrecognizable. Having very little dialogue throughout the entire film (and it is a long one), Rainer relies instead on facial and body language. She looks and acts Chinese to the point that anyone unfamiliar with her work could easily mistake her as such.<br /><br />The film remains relevant today because it explores the rags to riches story and the universal themes that come with it. When Lung and wife O-Lan finally achieve financial success after years of famine and poverty, they find a life full of possessions but lacking in meaning. It is only when they return to the earth after fighting off a swarm of locusts (the special effects used to create them are still incredible and beautiful to watch) that they again find fulfillment. A common formula told with the unique perspective of a Chinese family (especially for 1937) makes the film a classic. Money isn't worth anything without friends and family, a point that the film drives home perfectly in it's last 10 minutes with an emotionally fulfilling conclusion.\"\r\n0\tWant a great recipe for failure? Take a s****y plot, add in some weak, completely undeveloped characters and than throw in the worst special effects a horror movie has known. Let stew for a week (the amount of time probably spent making this trash). The result is Corpse Grinders, a movie that takes bad movies to dangerous and exotically low places.<br /><br />The movie utterly blew. My words cannot convey how painful it was to watch. This is not one of those bad movies that you and your friends can sit around and make fun of. This is not Plan 9 From Outer Space. This is a long, boring, sad waste of time. Corpse Grinders II is the biggest waste of energy and talent I have ever seen. I depresses me when I realize that people actually took time out of their lives to act in this shit, if you can call it acting. But than again, when you have poor direction, poor storywriting, poor everything, acting is the last thing to criticize.<br /><br />This movie is like a huge, disgusting turd that you yearn to quickly flush out of existence, fearful that a friend or loved one might somehow see it. I really with I could somehow destroy every copy of this film, so it will not pollute the minds of aspiring filmmakers. Thank you, Ted V. Mikels, for giving me new found respect for every movie I have ever seen. You have shown me what is truly awful, and why I should appreciate all those movies that are merely crappy or boring.\r\n1\tAn excellent movie and great example of how scary a movie can be without really showing the viewer anything. It's a set of four stories all revolving around the tenants of a charmingly old-fashioned house and their various gruesome and horrific fates, all tied together by a wrap-around story about a Scotland Yard inspector searching for a missing horror film star. It starts out with a story about a mystery writer whose main character becomes a little too realistic, followed by a story about two old romantic rivals who become obsessed over a wax figure in a museum, then a story about a sweetly angelic little child who is anything but, and closing with the story of what happened to the missing film starand what he does to the inspector. It's a gorgeous print that lets you really appreciate the work of director Duffell and what he was able to accomplish with a very small budget. Add to that the acting talents of Peter Cushing, Christopher Lee, Denholm Elliott, Joss Ackland, Ingrid Pitt and Jon Pertwee and you've got a movie that can be enjoyed again and again. Just don't answer the phone if anyone from Stoker Real Estate calls to offer you a bargain on a beautiful house in the English countryside\r\n0\t\"As a history nut who is particularly interested in this particular historical event, I was very disappointed with the movie. Granted, the costumes and staging was quite authentic, but the Hollywood portrayal of this \"\"British Little Big Horn\"\" was truly boring.<br /><br />The amount of film footage dedicated to marching or parading troops has to have been unprecedented in film history. Eveytime I heard triumphant background music begin, I knew I had to prepare myself for another laborious scene of meaningless filler. Obviously, the producers had invested heavily into \"\"staging\"\" and were determined to get their money's worth.<br /><br />Despite the outstanding cast, their dialogue was, again, boring and their characters were never developed. Whenever Peter O'toole or Burt Lancaster finished a scene, I would cringe with disappointment. Their given lines were so weak and meaningless that I could hardly believe these were the same two great actors who portrayed Lawrence of Arabia and the Bird Man of Alcatraz respectively.<br /><br />There are worse epics, but this one is not much better.\"\r\n0\t\"A teenager who seems to have it all commits suicide. It leaves his family and his best friend (Keanu Reeves) asking a lot of questions...and blaming themselves.<br /><br />Good idea, badly handled. For starters this HAS been done before 1988--mostly in TV movies and After School Specials. Aside from some swearing and dialogue (hence the PG-13 rating) this added nothing new. The outcome is predictable and Reeve's attempts at acting were truly painful to watch. He's good NOW but not in 1988. Aside from that his character was dressed like a slob and always looked so dirty is was hard to build up sympathy.<br /><br />That aside the movie is dull. I saw every scene coming and every \"\"surprise\"\" was telegraphed. I basically couldn't wait for this thing to get over.<br /><br />I have a vague recollection of seeing it in a theatre in 1988 and hating it (it bombed BADLY). It still looks lousy almost 20 years later. The subject is worth handling but it's been done better (with better acting) in countless other movies. \"\"Ordinary People\"\" comes to mind. You can skip this one.\"\r\n1\t\"While a 9 might seem like an unusually high score for such a slight film, however, compared to the hundreds and hundreds of series detective films from the 1930s and 40s, this is among the very best and also compares very favorably to Powell's later \"\"Thin Man\"\" films. Now this does NOT mean that the film is that similar to the Thin Man movies, as THE KENNEL MURDER CASE is not a comedy but more a traditional mystery-detective film. Now you'd think that not having Nora Charles or Asta or a traditional comic sidekick (something found in practically all series detective films) along for fun would be a detriment, but I didn't miss them at all because this was such an exceptionally well-written film--having a genuinely interesting case as well as uniformly excellent performances by all.<br /><br />The film begins at the dog show and is called The KENNEL Murder Case, though this Philo Vance film actually spends little of the time at the dog show and dogs are not a super-important part of the film. Instead, a thoroughly hated man is killed and left in a completely sealed room--an idea repeated in quite a few other detective films (such as CRIME DOCTOR'S STRANGEST CASE). However, how all this is explained seems pretty credible and fit together very well--keeping my interest throughout. I sure wish other detective films of the day had as intelligently written plots and exceptional acting as this one. This one is definitely a keeper.\"\r\n1\t\"I remember being terrified of movie blood when I was younger, and gradually getting less so, until getting jaded enough, as I'm sure many other viewers have become, so that the barrage of gory films produced in last few years have entertained me but not scared me or made me squirm. \"\"The Dentist\"\" turned that around.<br /><br />The setup seems simple: a mentally unstable dentist wreaks havoc on the insides of mouths, and perhaps bodies as well. A clever twist, though, is that the dentist is the film's protagonist, so instead of being some one-dimensional bad guy with no clear motivation, his development is the most extensive of any character and he is very human and believable. The viewer thus feels sympathy for him as well as his victims, and instead of hoping for justice to come to him, I found myself hoping he would somehow find a way to cover up his tracks and return to a normal life.<br /><br />What really \"\"makes\"\" a horror movie is the violence. And \"\"The Dentist\"\" does it better than any other film I can think of. First off, the film has tons of tension, which is something that modern gore films tend to lack. In one scene (), the dentist is emotionally distraught and has to see a young child patient for the first time. As he reaches into the child's mouth, you hope that, for the dentist's and the child's sake, the encounter ends without injury. I won't spoil what happens. Second, when the gore does come, it hits all the worst, squirmy nerves. Once again, I won't give anything away.<br /><br />Of course, being a movie that you've never heard of, it does have flaws. Most importantly, it's exclusively for horror fans. Also, as another reviewer mentioned, by taking place over a span of just a few days, we don't really get any background on the characters. And the tension drops a little bit during the very end. But really, the fact that we would even want to know background about the characters is evidence to how good it is, and the bulk of the film is solid enough that any small lapses in tension can be forgiven.<br /><br />It's strange, after years of being accustomed to movie gore, to suddenly want to cover my eyes at the sight of blood. \"\"The Dentist\"\" made me scared and thoroughly uncomfortable, and for this it earns my full approval.\"\r\n1\tWhen I first saw this film on cable, it instantly became one of my favorite movies. I'm a big fan of James Earl Jones and Robert Duvall. The movie paints an accurate picture of the South and the racist attitudes. Most of the attitudes came from Soll, an old plantation owner who uses convicts for labor. Soll is what makes the move, his funny ramblings give us insights in to the way The South was back then. I suppose that if Soll lived today he would be diagnosed with Alzheimer's Disease. None the less his attitudes towards a little boy who comes to work for him and the convicts is complex. While he has racist views, he's grown to trust some of the convicts who are all black. The two convicts he trusts most are Jackson(Mel Winkler) and Ben(James Earl Jones). The conversations between Ben and Soll are the best in the movie, they have real chemistry. James Earl Jones and Mel Winkler both but in great performances as well as Hass.<br /><br />This movie should have gotten more notoriety. However it's on DVD and worth the money.<br /><br />Rayvyn\r\n0\tOkay, I've always been a fan of Batman. I loved the animated series, and even Batman Beyond. I even read a batman comic now and then. So as can be imagined--I was a little excited when I heard about this series, and then I was SEVERELY disappointed. This series is nothing. It doesn't even begin to compare with the original series. It's like one long TOY commercial. No depth whatsoever. And what the heck was with the Joker? Who,in my most humble opinion, is the best Batman villain of ALL time and they KILLED him. I wish I could say his design was the worst part. Actually, I wish I could say there was anything about this series that was remotely creative or interesting. In short (because believe me I could say so much more)do NOT waste your time on this show, or your money.\r\n0\t\"Wow. Who ever said that Edward D. Wood Jr. never influenced anybody? This steaming pile of donkey excrement is a perfect case in point; it makes \"\"The Violent Years\"\" look like \"\"Casablanca\"\"! \"\"Santa Claus\"\" also makes Keith Richards' worst flashbacks look like my first nocturnal emission. I've had nightmares, you know, waking up and sweating bullets, that will never come close to the visceral terror that Santa Claus unearthed from the seemingly pure soil of my very being. However, I can think of some parties where this film might actually go over well. Also, if you're looking for the perfect example of a Santa-Satan dichotomy on VHS tape, look no further. Don't check out this movie, as I've been notified the MST3K version is now available. Move over Satan, here's \"\"Santa Claus\"\".\"\r\n1\tThis Movie has great fight scenes. Now its true that the acting is a little rough. But If I wanted to see a movie based on acting skills I would watch a Cheesy movie Like American Beauty. But If you want to see a movie with true martial arts in it and with Amazing stunts WITHOUT the use of wires and flying threw the air like so many movies around now which are over killing the matrix. Then Watch this. Now it's true the two main stars in the show where in the kid show the power rangers and another cast member of that show has a bit part in this movie. But hey the fight scenes are enough to make Jet Li p**s his pants. And the stunts are worthy enough for Jackie Chan to sit threw and admire.\r\n0\t\"Despite the rave reviews this flick has garnered in New Zealand, any hype surrounding the production is sadly undeserved. Apart from a clichés-only plot, the movie is let down by some weak acting, accents, and overall lack of tension.<br /><br />Whilst having the overall look of a big budget (for NZ), the feel is decidedly small-town Kiwi...<br /><br />Has anyone not seen The Brothers ?? ( http://imdb.com/title/tt0250274/ ) Those who have will pick the similarities straightaway....I've heard comments that scenes like the boys playing basketball etc were shot to poke fun at the clichéd \"\"boys talking crap\"\", but it comes across as forced...<br /><br />I believe Oscar Keightley sees himself as deeply ironic, but again his delivery always seems merely vaguely self conscious.<br /><br />Those who have any doubts left at all that Samoans-living-in-NZ culture has been deeply , hopefully not permanently ,affected by American speech , culture, and everything inbetween will certainly have their minds made up at the end of this movie.<br /><br />Robbie magasiva always looks good on screen , but is let down by the script..<br /><br />It always rubs me up the wrong way when a \"\"comedy\"\" has scenes that are set up in such an obvious way, you are left feeling like having a good groan at the clichéd punchline - see the wanna be white boy...<br /><br />I know someone who found this movie hilarious -however, that person has the brains of a tadpole, and would struggle to spell her name if offered a million dollars....<br /><br />That kinda sums up the mentality of this flick , OK but not great , fun but not funny.....Wake up NZ - this is NOT a 5 star movie despite all the glowing (middle class white guilt ?? :-) ) reviews....<br /><br />My advice ? if you watch it, get drunk first!!!\"\r\n1\t\"Sergio Martino is a great director, who has contributed a lot to Italian genre cinema and, as far as I am considered, his Gialli from the 1970s are the undisputed highlights in his impressive repertoire. \"\"La Coda Dello Scorpione\"\" aka. \"\"The Case Of The Scorpion's Tale\"\" of 1971 is one of these impressive films Martino has contributed to Italian Horror's most original sub-genre, and another proof that the man is a master of atmosphere, style and suspense. My personal favorite of the Martino films I've seen so far is still the insanely brilliant \"\"Your Vice Is A Locked Room And Only I Have The Key\"\" of 1972, followed by \"\"Torso\"\" (1973) and \"\"The Strange Vice Of Mrs Wardh\"\" (1971), all of which I personally like even more than this one. That's purely a matter of personal taste, however, as \"\"La Coda Dello Scorpione\"\" is an equally excellent film that is essential for every fan of Italian Horror cinema and suspense in general.<br /><br />The film, which delivers tantalizing suspense from the very beginning has a complex and gripping plot that begins with the mysterious demise of a millionaire who has died in a plane crash. Insurance investigator Peter Lynch (George Hilton) is assigned to verify the circumstances the insurance company which is due to pay a large sum to the deceased man's wife. Soon after Lynch begins to investigate, a person is brutally killed, which is just the beginning of a series of murders...<br /><br />\"\"The Case of the Scorpion's Tail\"\" excellently delivers all the elements a great Giallo needs. The film is stunningly suspenseful from the beginning, the score by Bruno Nicolai is brilliant, the plot is wonderfully convoluted, and the killer's identity remains a mystery until the end. Regular Giallo leading-man George Hilton once again delivers an excellent performance in the lead. Sexy Anita Strindberg is absolutely ravishing in the female lead. The includes the great Luigi Pistilli, one of the most brilliant regulars of Italian genre-cinema of the 60s and 70s, and Alberto De Mendoza, another great actor who should be familiar to any lover of Italian cinema. Athens, where most of the film takes place, is actually a great setting for a Giallo. The atmosphere is constantly gripping, and the photography great, and Bruno Nicolai's ingenious score makes the suspense even more intense. Long story short: \"\"La Coda Dello Scorpione\"\" is another excellent Giallo from Sergio Martino and an absolute must-see for any lover of the sub-genre! Stylish, suspenseful, and great in all regards!\"\r\n1\t\"There was some hesitation from my part about what this movie had to offer. For starters, the casting didn't seem right. Kiefer Sutherland had already done very well in \"\"24\"\" and the preview didn't seem to offer anything challenging to him or the audience. Eva Longoria appeared out of place, and the rest didn't seem very interesting.<br /><br />When the film finally ended, I was not completely displeased for I had seen a decent thriller that could have been much better, had the responsible parties taken a little more care to watch for the narrative gaps and given a little more care to character development. We have seen threats of this type before, and that made the main conflict much more challenging to the writers. As an audience, we don't want to sit through the same old story again. We want to see something different, be thrilled and entertained.<br /><br />There is nothing wrong with the casting. From Kim Basinger's delicious first lady. She carries herself with enough grace and sex appeal to make the part memorable. Michael Douglas has been and done that before. Unfortunately, the president is much of a non entity to even care about his fate. Sutherland rehashes his \"\"24\"\" tough guy approach with enough power to make it big enough for the big screen, and Eva does a passable job, as the newcomer.<br /><br />Don't expect as many twists and fireworks as some of the established classics (\"\"North by Northwest\"\" and \"\"The Fugitive\"\" come to mind). Leave your expectations outside and enjoy the ride for whatever it might be. It's o.k.\"\r\n0\t\"I do not even want to call this thing a film - it is a movie that should not have won any awards. The acting was horrible as were the silly scenarios. This is exactly the sort of film that so many folks think caters to an NRI audience but is in fact loathed abroad for its awkwardness and the overwhelming sense of \"\"trying\"\" throughout the movie. <br /><br />I find it strange that so many actors conversant with the English language have such a hard time doing so convincingly in front of the camera. I'm sure many readers know what I am talking about - all those token English phrases thrown into a movie, in Hindi and in regional cinema for cool points. There are few Indian movies in which the English seems completely genuine - Being Cyrus was a recent one. Although not a great film, it was a good film and the language did not seem \"\"put on\"\". <br /><br />I feel ashamed that P3 was awarded the NFA in 2005. The only semi-enjoyable parts of this rubbish were Konkana and a somewhat catchy background score. Other than that, do not even waste your time with this film.\"\r\n1\t\"This is one of my all-time favorites. Great music and some funny bits. I laugh every time at Millie, the maid pretending to be a débutante, holding her dainty hankie while chatting, and mindlessly polishing furniture with it as she chats. I just never can get past her French accent never being a problem as they try to pass her off as the boss's daughter.<br /><br />Seeing a teenage Mel Torme and the very young Frank Sinatra singing is such a treat. My mom saw Frank Sinatra at a theater about the same time this movie came out. She said they couldn't clear the \"\"bobby-soxers\"\" out between movies (in those days you didn't have to leave between showings). This movie shows you how attractive and appealing the young Frank was and allows you to appreciate his early talent as well. And Victor Borge gets in a bit of his routine in, which is a bonus. <br /><br />This is a fun movie with a sweet, simple storyline. Very enjoyable.\"\r\n0\t\"Not that I was really surprised....movies are never as good as the books that they originated from. I was looking forward to seeing this movie because this is one of my favorite books, even though I knew it would probably suck. I was hoping to be pleasantly surprised. However, they strayed from the book's storyline too much, and the movie version did not convey how horrible this house really was. Ending was different too. Lara Flynn Boyle looked terrible due to some really bad cosmetic surgery. The acting was unremarkable at best. Perhaps if a theatrical version was made so that they wouldn't have to stay so much in Lifetime's \"\"made for TV movie\"\" box, it would be a better flick. If you saw this movie I highly encourage you to track down the book and read it. I doubt you'll be disappointed and hope you enjoy it as much as I do every time I read it.\"\r\n1\tWhat is so taboo about love?! People seem to have major problems with the transgenered.<br /><br />The title of this movie didn't catch my eye. It was a grainy shot about 4 minutes into the movie is what made me stop channel surfing. I could not believe how freaking amazing this film was. It touches on so many levels of human emotion that it did not once fail to move me in some way. It is by far one of the best independent films I have ever seen. I did not view these characters as either gender, just human. I would recommend it to anyone who loves movies. Especially independent films. Praise to all fearless filmmakers!\r\n0\t\"OK, first of all, Steve Irwin, rest in peace. You were loved by many fans. Now...this movie wasn't a movie at all. It was \"\"The Crocodile Hunter\"\" TV program with bad acting, bad scripts, and bad directing in between Steve capturing or teaching us about animals. He was entertaining as an animal seeker/specialist. Millions will miss him. But the whole movie idea was a big mistake. The plot was so broken, it was almost non-existent. Casting was horrible. The acting wasn't even worth elementary school-level actors. The direction must be faulted as well. If you can't get a half-way decent performance out of your actors, no matter how bad the script is, you must not be that good in the first place. I could have written a better script. I wish I had never been to see this movie. Of course, I watched it for $3 ($1.50 for me, $1.50 for my son.) while out with friends who insisted upon seeing this instead of Scooby Doo Live Action. My son, who is not so discriminating, liked the movie alright, but he still has never asked to see it again. If you want fond memories of Steve Irwin, buy his series on DVD. Avoid this movie like the plague. If I were Steve, I know I wouldn't want to be remembered for this movie. Respect him: avoid this movie!\"\r\n1\t\"I have to say that this miniseries was the best interpretation of the beloved novel \"\"Jane Eyre\"\". Both Dalton and Clarke are very believable as Rochester and Jane. I've seen other versions, but none compare to this one. The best one for me. I could never imagine anyone else playing these characters ever again. The last time I saw this one was in 1984 when I was only 13. At that time, I was a bookworm and I had just read Charlotte Bronte's novel. I was completely enchanted by this miniseries and I remember not missing any of the episodes. I'd like to see it again because it's so good. :-)\"\r\n0\tI have read the whole 'A wrinkle in time' book and then saw the movie. The movie contained all the elements in the book but since the book was 190 pages and the film was 2 hours it felt really crammed in with too many effects and bad acting.<br /><br />A wrinkle in time is about a girl named Meg, Charles Wallace, and Calvin must team together to find Meg's father and get off the island Camazotz. <br /><br />The beginning of the film is really a stinker. The acting is awful, the direction is laughable, and so far the situations aren't necessary. I really was crushed to see the same person Madeleine Engle that wrote the book and created the movie, made a great book, and a terrible film. The acting is worse than any straight-to-video acting. Yes, I got to admit there was cool effects. But seriously they were all done terribly and not serial in any way possible. If you read the book you will be crushed by the movie. I wish could give it a 0 but sadly I can only give it 1. A half could have been useful.\r\n0\t\"Well, I saw this movie yesterday and it's - unfortunately - worse than you could think. First of all the plot is idiotic, it has no sense at all. The screenplay is full of intentionally funny dialogues. The audience was laughing many times. And the suspense is very low. Actors play so-so, with an exception of Sharon Stone, who has some good moments but also some awfully bad acting moments. The saddest parts are when she tries to be aggressively sexy and says things like \"\"I want to *beep* you \"\" and it looks like, let's say it gently, a very very mature woman acting rude and not sexy at all. That erotic tension from BI1 is totally gone. From the technical point of Basic Instinct 2 is a mediocre movie - better than typical straight to DVD, but on a far lower lever than the original movie. For instance the scene of crazy joyride is done poorly. The director of Basic Instinct 2 is no Paul Verhoeven and it shows. The new composer is no Jerry Goldsmith and its shows. The script is done by people who are no match for Joe Eszterhas. There's no substitute for Michael Douglas in it. The film looks cheap and badly edited at times. I'm sorry but my first thought after I left the theater was: \"\"Why heaven't they made this movie earlier and with original talents behind the success of the first movie?\"\" All to all the original movie is like Citizen Kane compared to this. The first Basic Instinct is a classic and was a kind of break-thru in the popular cinema. It was provoking, sexy and controversial. It had the best Sharon Stone's performance in her career. It had this specific Paul Verhoeven's style. Unfortunately Basic Instinct 2 is a unintentionally funny movie, badly directed and a sure Razzie Award Winner in many categories. It's a pity that they made this film.\"\r\n0\t\"\"\"National Lampoon Goes to the Movies\"\" (1981) is, simply put, the worst movie ever made, far lamer than even the inept \"\"Plan 9 from Outer Space.\"\"<br /><br />The Lampoon film is told in three segments, each one supposedly a spoof of a conventional movie genre, but each one landing at our feet with a sickening thud. There is no rhyme or reason for these execrable vignettes, and no discernible story lines.<br /><br />Another reviewer on this site has written that the only good points about the film are the nude scenes. True, Misses Ganzel and Dusenberry do flash a bit of flesh, and very nice it is too. But the directors seem not to realize that even T&A needs a good story to surround it. There's none of that here.<br /><br />Probably the worst of the three segments is the last one, featuring Robby Benson and Richard Widmark. Here, we see Benson as a young, eager-beaver policeman being paired with a cynical oldtimer played by Widmark. And for just a moment, those of us who are still watching this odious cinematic exercise are heartened by the thought that we are about to see a redemptive tale about how the young, idealistic cop brings about a purifying change in the old-timer's approach to police work. But no such luck. As we've said, this film has no redeeming values. It is sickening all the way to the final fade-out -- which, perversely, is stretched out longer than it should last on the screen. Apparently the film makers knew they had a bad thing going, and wanted to make the least of it.\"\r\n0\tA fun concept, but poorly executed. Except for the fairly good makeup effects, there's really not much to it. There are obvious problems; for example, after taking what seems to be weeks and weeks to get from fat to normal size, the main character seems to go from normal size to deathly thin in days... and once he's deathly thin he stays pretty much equally deathly thin for what seems to be a long time.<br /><br />In any case, the movie has far worse problems than that--the cinematography is decidedly low-budget-TV-show quality and most of all the acting is pretty awful all around. Robert John Burke seems to always be trying for some kind of weird snarling Charlton Heston impersonation and is literally painful to watch... the only scary thing is that Lucinda Jenney and Kari Wuhrer are both even worse.<br /><br />The only reason why I'm giving this movie as high as I am is that once the movie enters its last 1/3 or so and Joe Mantegna's character takes over, the movie develops a fun, campy 'cheesefest slaughterhouse' feel, and the gangster's crazy schemes for tormenting the totally obnoxious gypsies are somewhat fun to watch. The ending, if predictable, is also nicely mean. Avoid unless you're a King-o-Phile or are REALLY psyched up at the idea of the voice of Fat Tony from the Simpsons terrorizing a gypsy camp.\r\n1\tA very funny east-meets-west film influenced by the closure of GM's Flint, Michigan plant in the eighties and the rise and integration of Japanese automakers in the US. Set in western Pennsylvania, it features great performances by Michael Keaton, Gedde Watanabe, and George Wendt. Music by blues legend Stevie Ray Vaughan.\r\n0\tI watched the Unrated version of this film and realised about 30 minutes into it that I was never getting my time back. I persevered to the end hoping that the dialogue would improve, the martial arts would look realistic eventually, the special FX would actually look special. I was so wrong. I love Horror, I am a complete gore hound. I number some of the eighties splatter flicks amongst the greats of the film world. This however was not made in the eighties, if this film had come out in the early eighties the fax could be forgiven for looking so bad. It wasn't so it hasn't got that defence. The dialogue is terrible with so many bad lines I was wincing at the writing rather than squirming at torture. I don't like Hostel, never have, I thought it was over rated, over hyped and I felt nothing for the protagonists, however it shines as a beacon to greatness next to this garbage. The back of the cover for Live Feed promised a twist you would never see coming, I'm still waiting for the twist that was promised.\r\n1\t\"Madhur Bhandarkar goes all out to touch upon taboo issues and gives the most realistic picture of the modern society. One gets the impression of the director even from his earlier movies like Satta and Chandni bar. The issues just hinted on in the latter movie are explored and exposed in totality here. The casting is amazing and one can see the judgements on each scene from many angles. Mostly, the movie leaves you wondering on lots of facts around. As you start guessing the things, you end up at most being close, but missing the mark in many a scenes. It leaves a lasting impression in the end.<br /><br />Actors to watch are Konkana Sen Sharma, Boman Irani & Atul Kulkarni among others. The dialogues are well written and you feel you've lived around some of these people. There are still some scenes that make you think of more depths. The songs are in the background saving time and Lata's voice in a very meaningful song \"\"Kitne Ajeeb\"\" leaves you feeling you're left all alone in the midst of the modern society!\"\r\n1\t\"Bogdonovich's (mostly) unheralded classic is a film unlike just about any other. A film that has the feel of a fairy tale, but has a solid grounding in reality due to its use of authentic Manhattan locations and \"\"true\"\" geography, perhaps the best location filming in NYC I've ever seen. John Ritter reminds us that with good directors (Bogdanovich, Blake Edwards, Billy Bob) he can be brilliant, and the entire ensemble is a group you'll wish truly existed so you could spend time with `em. One of the few romantic comedies of the last 20 years that doesn't seem to be a rip-off of something else, this is the high point of Bogdanovich's fertile after- \"\"success\"\" career, when his best work was truly done (\"\"saint jack\"\", \"\"at long last...\"\", \"\"noises off\"\".\"\r\n1\tHalloween is not only the godfather of all slasher movies but the greatest horror movie ever! John Carpenter and Debra Hill created the most suspenseful, creepy, and terrifying movie of all time with this classic chiller. Michael Myers is such a phenomenal monster in this movie that he inspired scores of imitators, such as Jason Vorhees (Friday the 13th), The Miner (My Bloody Valentine), and Charlie Puckett (The Night Brings Charlie). Okay, so I got a little obscure there, but it just goes to show you the impact that this movie had on the entire horror genre. No longer did a monster have to come from King Tut's tomb or from Dr. Frankenstein's lab. He could be created in the cozy little neighborhoods of suburbia. And on The Night He Came Home...Haddonfield, Illinois and the viewers would never be the same. There are many aspects of this movie that make it the crowning jewel of horror movies. First is the setting...it takes place in what appears to be a normal suburban neighborhood. Many of us who grew up in an area such as this can easily identify with the characters. This is the type of neighborhood where you feel safe, but if trouble starts to brew, nobody wants to lift a finger to get involved (especially when a heavy-breathing madman is trying to skewer our young heroine.) Along with the setting, the movie takes place on Halloween!! The scariest night of the year! While most people are carving jack-o-lanterns, Michael Myers is looking to carve up some teenie-boppers. Besides the setting, there is some great acting. Jamie Lee Curtis does a serviceable job as our heroine, Laurie Strode, a goody-two-shoes high-schooler who can never seem to find a date. However, it is Donald Pleasance, as Dr. Sam Loomis, who really steals the show. His portrayal of the good doctor, who knows just what type of evil hides behind the black eyes of Michael Myers and feels compelled to send him to Hell once and for all, is the stuff of horror legend. However, it is the synthesizer score that really drives this picture as it seems to almost put the viewer into the film. Once you hear it, you will never forget it. I also enjoy the grainy feel to this picture. Nowadays, they seem to sharpen up the image of every movie, giving us every possible detail of the monster we are supposed to be afraid of. In Halloween, John Carpenter never really lets us get a complete look at Michael Myers. He always seems like he is a part of the shadows, and, I think that is what makes him so terrifying. There are many scenes where Michael is partly visible as he spies on the young teens (unbeknownst to them), which adds to his creepiness. If you think about, some wacko could be watching you right now and you wouldn't even know it. Unfortunately for our teenagers (and fortunately for us horror fans), when they find Michael, he's not looking for candy on this Halloween night..he's looking for blood. Finally, Michael Myers, himself, is a key element to this movie's effectiveness. His relentless pursuit of Laurie Strode makes him seem like the killer who will never stop. He is the bogeyman that will haunt you for the rest of your life. So,if you have not seen this movie (if there are still some of you out there who haven't, or even if you have), grab some popcorn, turn off every light, pop this into the old DVD and watch in fright. Trick or Treat!\r\n1\tThis film has a special place in my heart, as when I caught it the first time, I was teaching adult literacy. It rang very true to me and even an outstanding student I had at the time. There are scenes which make you gulp with sudden emotion, and those which even put a smile on your face through sheer identification with the characters and their situation. <br /><br />Excellent performances by Jane Fonda and Robert DeNiro that rank with their best work, a great turn by a young Martha Plimpton, an inspiring story line, and a haunting musical score makes for a most enjoyable and rewarding experience.\r\n1\tA talking parrot isn't a hugely imaginative idea for a new film, but Paulie turns a simple idea into a brilliant, heartwarming film that will delight the whole family. It manages to bridge the gap between sentimental trash and cruel harshness during Marie and Paulie's separation, and all the events in the film lead to a hugely satisfying emotional conclusion. The animal training is well-done - everyone will be affected when Paulie spreads his wings and flies for the first time. Paulie is a great character and should have received way more success, though this film wasn't a highlight of 1998, unlike Saving Private Ryan. This hour and a half will surely be an enjoyable one and one that you will remember. Paulie's story is a moving, sad, happy and interesting one - from the moment he is first seen to the moment he is united with his original owner, you will enjoy following him and watching him learning about friendship and the grim realities of life along the way. Not one to be missed if you have any kind of heart or emotion. 9/10\r\n0\t\"As usual, I am making a mad dash to see the movies I haven't watched yet in anticipation of the Oscars. I was really looking forward to seeing this movie as it seemed to be right up my alley. I can not for the life of me understand why this movie has gotten the buzz it has. There is no story!! A group of guys meander around Iraq. One day they are here diffusing a bomb. Tomorrow they are tooling around the countryside, by themselves no less and start taking sniper fire. No wait here they are back in Bagdad. There is no cohesive story at all. The three main characters are so overly characterized that they are mere caricatures. By that I mean, we have the sweet kid who is afraid of dying. We have the hardened military man who is practical and just wants to get back safe. And then we have the daredevil cowboy who doesn't follow the rules but has a soft spot for the precocious little Iraqi boy trying to sell soldiers DVDs. What do you think is going to happen??? Well, do you think the cowboy soldier who doesn't follow rules is going to get the sweet kid injured with his renegade ways?? Why yes! Do you think the Iraqi kid that cowboy soldier has a soft spot for is going to get killed and make him go crazy? Why yes! There is no story here. The script is juvenile and predictable! The camera is shaken around a lot to make it look \"\"artsy\"\". And for all of you who think this is such a great war picture, go rent \"\"Full Metal Jacket\"\", \"\"Deerhunter\"\" or \"\"Platoon\"\". Don't waste time or money on this boring movie!\"\r\n0\t\"After Harry Reems' teenage girlfriend is raped by Zebbedy Colt (The Night-Walker), Reems becomes despondent and consoles himself by having sex with some lesbians. Meanwhile, Colt, who carries a cane and dresses like a magician, rapes some more women. Eventually, Reems decides to track him down and end his crime spree. Despite being shot on film and marginally nasty, it looks like any other 70's porno and is ineptly executed. The rape/abuse scenes are surprisingly restrained and the attempt to cash in on \"\"Death Wish\"\" is laughable. R. Bolla (\"\"Cannibal Holocaust\"\") plays a cop. Colt, who is usually over-the-top, wigs out in a couple of scenes, but he's too well behaved for my money. This roughie could have been much rougher.\"\r\n1\tAs it is generally known,anthology films don't fare very well with American audiences (I guess they prefer one standard plot line). New York,I Love You, is the second phase of a series of anthology films dealing with cities & the people who live & love in them. The first was 'Paris,J'Taime', which I really enjoyed. The film was made up of several segments,each written and/or directed by a different director (most of which were French,but there is a very funny segment directed by Joel & Ethan Coen). Like 'Paris', this one is also an anthology, directed by several different directors (Fatih Akin,Mira Nair,Natalie Portman,Shakher Kapur,etc.),and also like 'Paris'deals with New Yorkers,and why they love the city they live in. It features a top notch cast,featuring the likes of Natalie Portman,Shia LaBeouf,Christina Ricci,Orlando Bloom,Ethan Hawki,and also features such seasoned veterans as James Caan,Cloris Leachman,Eli Wallach and Julie Christie. Some of the stories really fly,and others don't (although I suppose it will depend on individual tastes---I won't ruin it for anybody else by revealing which ones worked for me & which ones didn't). Word is that the next entry in the series will be Shanghai, China (is Rome,Italy,Berlin,Germany or Athens,Greece out of the question?). Spoken mainly in English,but does have bits of Yiddish & Russian with English subtitles. Rated 'R'by the MPAA for strong language & sexual content\r\n0\t\"This movie probably had some potential for something; my bewilderment is how these utterly prosaic unfunny themes keep making it to theaters, it's as if ideas are being recycled just because generations are. Truly the decerebrate oafs behind most films are like dogs, they return to ingest their own vomit. Well, they're 19 bucks richer now because of me. This was not at all imaginative, there was no redeeming moment, anything remotely funny was shown in the trailer (and nothing amusing was in the trailer), performances were strained (especially Molly's, totally unconvincing). What was theoretically supposed to be some comic relief was the homoerotic friend with a penchant for Disney films; none of his analogies hit home, his little moral speeches were flat, I was literally waiting for them to go on to say something meaningful, only to find out he was done. The so-called \"\"hard 10\"\" is the most insipid plastic creature there is (apart from having a horse-like face with a weird smile); I honestly found her friend Patty (referred to as the Hamburglar) to be much better looking than her. But then again, gentlemen prefer brunettes ;) Well, anyway, the whole premise is that society is superficial and if love is true it transcends all social facades; the way they showed this, with a dude shaving another's scrotum and the million-times-mutilated-and-beaten-to-death-horse premature ejaculation routine (with obvious allusions to American Pie and Happiness - the latter in the disgusting scene denouement involving the family dog). I feel as if the movie was like adjoining ridiculous jokes into an unformed wretched ball of raw sewage. Goes to show marketing can push anything out there, shine whatever fetid mass and call it gold, people will come (worked for me). Done with tirade.\"\r\n1\t\"I don't want to bore everyone by reiterating what has already been said, but this is one of the best series ever! It was a great shame when it was canceled, and I hope someone will have the good sense to pick it up and begin the series again. The good news is that it is OUT ON DVD!!!! I rushed down to the store and picked up a copy and am happy to say that it is just as good as I remembered it. Gary Cole is a wonderfully dark and creepy character, and all actors were very good. It is a shame that the network did not continue it. Shaun Cassidy, this is a masterpiece. Anyone who enjoys the genre and who has not seen it, must do so. You will not be disappointed. My daughter who was too young to view it when it was on television (she is 20) is becoming very interested, and will soon be a fan. She finds it \"\"very twisted\"\" and has enjoyed the episodes she has seen. I cannot wait to view the episodes which were not aired.<br /><br />This show rocks!!!!\"\r\n0\tI watched this movie when Joe Bob Briggs hosted Monstervision on TNT. Even he couldn't make this movie enjoyable. The only reason I watched it until the end is because I teach video production and I wanted to make sure my students never made anything this bad ... but it took all my intestinal fortitude to sit through it though. It's like watching your great grandmother flirting with a 15 year old boy ... excruciatingly painful.<br /><br />If you took the actual film, dipped it in paint thinner, then watched it, it would be more entertaining. Seriously.<br /><br />If you see this movie in the bargin bin at S-Mart, back away from it as if it were a rattlesnake.\r\n1\t\"Another small piece of the vast picture puzzle of the Holocaust is turned face up in this docudrama about the Rosenstrasse Protest in Berlin, an event I had not known of, that began in late February, 1943. The details are given in an addendum that follows this review.<br /><br />The film narrative sets the story of this protest within another, contemporary story that begins in New York City, in the present. Here a well off, non-observant Jewish woman, whose husband has just died, shocks her children and others by insisting on an extremely orthodox mourning ritual. She goes even further, demanding that her daughter's non-Jewish fiancé leave the house.<br /><br />The distressed daughter, Hannah (Maria Schrader) then learns for the first time from an older cousin that during WWII, in Berlin, her mother, then 8 years old, had been taken in and protected by an Aryan woman. Hannah drops everything, goes to Berlin, and finds this woman, Lena Fischer, now 90. Hannah easily persuades the woman to tell her story. It all seems rather too pat.<br /><br />The film thereafter improves, focusing through long flashbacks primarily on the events of 1943 that surrounded the protest, in which the fictitious central character is the same Mrs. Fischer at 33 (played magnificently by Katja Riemann), a Baroness and accomplished pianist who is married to Fabian (Martin Feifel), a Jewish concert violinist, one of the men detained at the Rosenstrasse site.<br /><br />The narrative does briefly weave back to the present from time to time and also ends in New York City once again. While scenes in the present are color saturated, the 1943 scenes are washed out, strong on blue-gray tones.<br /><br />The quality of acting is generally quite good, what we might expect given the deep reservoir of talent in Germany and the direction of Margarethe von Trotta, New German Cinema's most prominent female filmmaker, herself a former actress.<br /><br />The story of the protest is told simply. Only one feature is lacking that would have helped: still-text notes at the end indicating the eventual outcome for those people taken into custody at Rosenstrasse, an outcome that was, as the addendum below makes clear, incredibly positive.<br /><br />\"\"Rosenstrasse\"\" has not fared well in the opinions of most film critics. Overly long, needlessly layered, purveyor of gender stereotypes, manipulative with music: so go the usual raps. It is too long. But I found in this film an austere, powerful, spontaneous and entirely convincing voice of protest from the women who kept the vigil outside the place on Rosenstrasse where their Jewish relatives and others were detained. I found nothing flashy, contemporary or manipulative in this depiction.<br /><br />The very absence of extreme violence (no one is shot or otherwise physically brutalized) intensified my tension, which increased incrementally as the film progressed. You keep waiting for some vicious attack to begin any minute. The somberness of the film stayed with me afterward. I awoke often later in the night I saw the film, my mind filled with bleak, melancholic, chaotic images and feelings conjured by the film. For me, that happens rarely. (In German and English). My rating: 8/10 (B+). (Seen on 05/31/05). If you'd like to read more of my reviews, send me a message for directions to my websites.<br /><br />Add: The Rosenstrasse Protest: Swept up from their forced labor jobs in what was meant to be the Final Roundup in the national capital, 1700 to 2000 Jews, mostly men married to non-Jewish women, were herded into Rosenstrasse 2-4, a welfare office for the Jewish community in central Berlin.<br /><br />Because these Jews had German relatives, many of them highly connected, Adolf Eichmann hoped that segregating them from other prisoners would convince family members that their loved ones were being sent to labor camps rather than to more ominous destinations in occupied Poland.<br /><br />Normally, those arrested remained in custody for only two days before being loaded onto trains bound for the East. But before deportation of prisoners could occur in this case, wives and other relatives got wind of what was happening and appeared at the Rosenstrasse address, first in ones and twos, and then in ever-growing numbers.<br /><br />Perhaps as many as six thousand participated in the protest, although not all at the same time. Women demanded back their husbands, day after day, for a week. Unarmed, unorganized, and leaderless, they faced down the most brutal forces at the disposal of the Third Reich.<br /><br />Joseph Goebbels, the Gauleiter (governor or district leader) of Berlin, anxious to have that city racially cleansed, was also in charge of the nation's public morale. On both counts he was worried about the possible repercussions of the women's actions. Rather than inviting more open dissent by shooting the women down in the streets and fearful of jeopardizing the secrecy of the \"\"Final Solution,\"\" Goebbels with Hitler's concurrence released the Rosenstrasse prisoners and even ordered the return of twenty-five of them who already had been sent to Auschwitz! <br /><br />To both Hitler and Goebbels, the decision was a mere postponement of the inevitable. But they were mistaken. Almost all of those released from Rosenstrasse survived the war. The women won an astonishing victory over the forces of destruction. (Adapted from an article posted at the University of South Florida website, \"\"A Teacher's Guide to the Holocaust.\"\")\"\r\n0\t1st watched 5/17/2002 - 3 out of 10(Dir-Ewald Andre Dupont): Fairly lame account of the Titanic disaster is the first filmed version of this much-heralded event. The replication of the disaster is not bad, but the drama around it is at some times silly, badly acted and way-too soap opera-like. The story is very much the same as the most recent Oscar-winning one except that we are shown how the crew tried to hide the actual disaster that was occurring until almost too late. Good for nostalgia purposes only and to get a feel for what James Cameron was competing against(barely) in his recreation.\r\n0\t\"When I saw the commercial for this, I was all about seeing it. Now, forgive me, but it's been so long since I've seen it that I don't recall how it went. Suffice it to say, the movie I saw bore no resemblance to the \"\"movie\"\" they sold me on.<br /><br />I was bored, annoyed, and incredibly disappointed by this movie. And if it wasn't bad enough, they had to sink it even further with that awful reggae music. Not exactly mood-setting music for a horror movie, eh mon? I guess if you never saw the commercial (or trailer, I suppose) you may think this is some hot stuff. For my money, the commercial was way better.\"\r\n0\tMy spouse & I found this movie to be very schlocky. It started out good, but quickly got unbelievable & ridiculous. Most of the acting was poor, with the exception of the little girl, Abbie, who really was terrific. In addition, the dialog was predictable & lame - especially Gideon, the Angel's. Also, without giving away anything, when one of the characters has a tragedy, she almost appears nonchalant. At first we thought it was 'shock', but then we realized that it was just a terrible script. We love almost all of the Hallmark movies & their heart-warming stories, but this movie doesn't rise to the occasion of being one. There are so many great ones - don't waste your time with this horrible movie.\r\n1\t\"Barbra Streisand is a tour de force in this Hollywood story. Her performances and the songs are one-of-a-kind and are special in the halls of great movies. The scene where she is introduced to the unexpecting audience by Kristopherson, against the crowds' wishes and hers, only to turn them around with her magnificent performance of \"\"Woman In the Moon\"\" is one of the best examples on film of how well a great performer can win over an audience. It's real. The scene where she records Evergreen ranks with the best in the business.. all live, no lip-sync, very special. Streisand is often criticized for being a Diva, but she delivers on this one. She is majestic singing \"\"With One More Look At You. She deserved the Oscar she and Paul Williams got for Evergreen. Kristopherson had his moments too, far above most of his movie appearances. This version of the \"\"Born\"\" franchise ranks with the first one of 1937 (Janet Gaynor, Frederic March)although I will always enjoy Judy Garland and James Mason musical remake of 1954. I haven't seen the DVD yet and don't know about its quality.\"\r\n0\t\"1/10 and that's only because I don't go lower with my ratings.<br /><br />skip this \"\"movie\"\" and wait for the last movie of the \"\"Trilogy\"\", don't buy or rent it. trust me you won't be missing a thing. the Architect brings no new info: _(spoiler)_ there have been more NEO's before him, he's like nr.6 or something. you could already figure something like that out from the first movie: Agent Smith telling us the first Matrix created didn't work because it was too perfect. Trinity died and Neo's \"\"love\"\" brought her back, where have I seen this before ? Oh right in the first movie the roles where reversed ! same as the action-scenes nothing new just with more opponents. the Action-scene (the 20+ ships) in the BIG battle which we didn't see (maybe in Revolutions ?), betrayed by someone (hmmmm, maybe the guy holding the knife who wanted to stab Neo?!) who pushed the EGM-button to soon.<br /><br />all in all a shameless ploy to make money (especially off the guys who went to see it more then once), which evidently worked like a charm.\"\r\n1\tIf you didn't enjoy this movie, either your dead, or you hate Adam Sandler or Don Cheadle.<br /><br />An Excellent cast, all of who gave good performances. This movie proved that Adam Sandler is good actor, despite what critics say. Adam Sandler is becoming a very well respected actor. It all started with his performance in Big Daddy, then he did a couple bad movies, then he broke through with terrific performance in 50 First Dates, The Longest Yard, then Click, and now Reign Over Me.<br /><br />Back to the movie. Adam Sandler plays a man who has lost everything. The closest thing to family he has are a mother-in-law and father-in-law. After his old college roommate (Cheadle) ran into him, he seems to turn his life around. I will say no more, because I do not want to ruin the movie, but I strongly recommend this movie. One of the best movies of 2007.\r\n1\t\"Part Two picks up... not where the last film left off. As part of the quasi-conventionality of Steven Soderbergh's epic 4+ hour event, Che's two stories are told as classic \"\"Rise\"\" and \"\"Fall\"\" scenarios. In Part Two, Che Guevara, leaving his post as a bureaucrat in Cuba and after a failed attempt in the Congo (only in passing mentioned in the film), goes down to Bolivia to try and start up another through-the-jungle style revolution. Things don't go quite as well planned, at all, probably because of Che's then notorious stature as a Communist and revolutionary, and in part because of America's involvement on the side of the Bolivian Government, and, of course, that Castro wasn't really around as a back-up for Che.<br /><br />As it goes, the second part of Che is sadder, but in some ways wiser than the first part. Which makes sense, as Guevara has to endure low morale from his men, betrayals from those around him, constant mistakes by grunts and nearby peasants, and by ultimately the enclosing, larger military force. But what's sadder still is that Guevara, no matter what, won't give in. One may see this as an incredible strength or a fatal flaw- maybe both- but it's also clear how one starts to see Che, if not totally more fully rounded, then as something of a more sympathetic character. True, he did kill, and executed, and felt justified all the way. And yet it starts to work on the viewer in the sense of a primal level of pity; the sequence where Guevara's health worsens without medicine, leading up to the shocking stabbing of a horse, marks as one of the most memorable and satisfying of any film this year.<br /><br />Again, Soderbergh's command of narrative is strong, if, on occasion, slightly sluggish (understandable due to the big running time), and one or two scenes just feel totally odd (Matt Damon?), but these are minor liabilities. Going this time for the straight color camera approach, this is almost like a pure militia-style war picture, told with a great deal of care for the men in the group, as well as Guevara as the Lord-over this group, and how things dwindle down the final scene. And as always, Del-Toro is at the top of his game, in every scene, every beat knowing this guy so well- for better and for worse- that he comes about as close to embodiment as possible. Overall, the two parts of Che make up an impressive package: history as drama in compelling style, good for an audience even if they don't know Che or, better, if they don't think highly of him. It's that special. 8.5/10\"\r\n1\tA solid, if unremarkable film. Matthau, as Einstein, was wonderful. My favorite part, and the only thing that would make me go out of my way to see this again, was the wonderful scene with the physicists playing badmitton, I loved the sweaters and the conversation while they waited for Robbins to retrieve the birdie.\r\n0\t\"This film is mediocre at best. Angie Harmon is as funny as a bag of hammers. Her bitchy demeanor from \"\"Law and Order\"\" carries over in a failed attempt at comedy. Charlie Sheen is the only one to come out unscathed in this horrible anti-comedy. The only positive thing to come out of this mess is Charlie and Denise's marriage. Hopefully that effort produces better results.\"\r\n1\tAs a kid I thought this movie was great. It had animals, it had beautiful music, and it had my favorite actor: Michael J. Fox. Now, I still love this movie, for different reasons. It has well trained animals that are put through various stunts and scenes that look excellent on camera. It has beautiful, well-written musical that fits the scenes perfectly, with rousing fast-paced melodies and the heart wrenching main theme, that still makes me cry. Even when people hum it. And it has my favorite actor, Michael J. Fox. <br /><br />Based on a book, this is the story of three house pets, an intelligent, overly-trusting and considerably paternal lab by the name of Shadow, a witty and vain - but still smart - cat with a fear of water named Sassy and a street-smart ridiculously curious and slightly neurotic bulldog, Chance. The three are taken to a friend's farm when their family goes away. Dismayed and worried, the pets break out and plan a trip across the Sierra mountains for the trip of their lives. A truly incredible journey. So what, maybe home IS just over that mountain. But what if it isn't? <br /><br />I suggest Homeward Bound for people that like the three amazing actors providing the voices for the lead animal characters, and for anyone else that ... yeah, everyone go watch it.\r\n0\tI came here for a review last night before deciding which TV movie to settle in front of, and those I found made this one look unmissable. How misled I feel!<br /><br />Firstly, it needs to be pointed out up front that this is very much a housewife's daytime movie. The performances are wooden, every sentence is an attempt at 'poignant' in the way that housewife's daytime movies and bad soap operas always are, and it is based in that predictable and well-trodden premise that men (particularly soldiers) are essentially violent and incompassionate. The whole movie is about the 'drama' apparent in the moments when the male characters threaten to develop a second dimension.<br /><br />If that sounds tolerable (or even enjoyable) to you, then be warned. Linda Hamilton's German accent, while quite good, is painfully distracting - as is her face, for some reason. The other performances are no doubt an enduring source of embarrassment to their perpetrators, with painfully thin and obvious characterizations being the order of the day. There are few surprises, but do watch for the 'Monty Pythonesque' endless supply of food and drink that miraculously appears from the hungry soldiers' knapsacks!<br /><br />I wasn't expecting action, but I had hoped for beautiful or textural or emotionally charged. What I got was a particularly bad Christmas 'feelgood' story that will have an intelligent audience cringing with the crapulence of it all.<br /><br />Watch it under the folowing circumstances: 1: There's nothing else on. 2: You are a fan of predictable 'housewife takes on men and wins' TV movies. 3: The only way you can appreciate a true story is when Hollywood turns it into a feature film. 4: You've imbibed enough nog that your emotions are easily stirred by unsophisticated storytelling.\r\n1\t\"Robert Wuhl is teaching a class of film students at New York University in Manhattan, New York.<br /><br />He covers fallacies of history and truths that are no longer generally known. I would like to see much more of this show. It is very entertaining. Mr. Wuhl uses examples and \"\"show and tell\"\" to get his points across. He explained that the person who actually rode the Midnight Ride of Paul Revere was not Paul Revere! Henry Wadsworth Longfellow used Revere's name because it sounded better.<br /><br />I've watched Robert Wuhl for many years, from the time he was doing stand-up comedy and all the way through \"\"Arli$$\"\" on HBO. He's a good actor and a good stand-up comedian, but he's an excellent teacher! I highly recommend that you watch an episode of this show. It is well worth your time.\"\r\n0\tThis movie was horrible. I swear they didn't even write a script they just kinda winged it through out the whole movie. Ice-T was annoying as hell. *SPOILERS Phht more like reasons not to watch it* They sit down and eat breakfast for 20 minutes. he coulda been long gone. The ground was hard it would of been close to impossible to to track him with out dogs. And when ICE-T is on that Hill and uses that Spaz-15 Assault SHOTGUN like its a sniper rifle (and then cuts down a tree with eight shells?? It would take 1000's of shells to cut down a tree that size.) Shotguns and hand guns are considered to be inaccurate at 100yards. And they even saw the reflection. What reflected the light?? I didn't see a scope on that thing. Also when he got shot in the gut and kept going, that was retarded he would of bled to death right there. PlusThe ending where he stuffs a rock or a cigarette in the guys barrel. It wouldn't blow up and kill him. The bullet would still fire kill Ice T but mess up the barrel.\r\n0\t\"I thought \"\"What's New Scooby-Doo\"\" was pretty bad (yes, I'm sorry to say I didn't like it), since Hanna-Barbera didn't produce it and it took a drastic step away from the old series. When I heard \"\"Shaggy and Scooby-Doo Get a Clue\"\" was in the works, I thought it could be better. But when I saw a pic of how Scooby and Shaggy were going to appear, I knew this show was going to be bad, if not worse. I watched a few episodes, and believe me, it is just yet another \"\"Teen Titans\"\" or \"\"Loonatics Unleashed\"\"-wannabe. No longer are Scooby and Shaggy going against people wearing masks of cool, creepy monsters that rob banks. Now they are going after a typical super-villain whom wants to destroy the world. Shaggy and Scooby-Doo have become more brave, too. Also, since Shaggy IS NOT going to be a vegetarian in this series, Casey Kasem (whom actually IS a vegetarian), the original voice of Shaggy, will NOT voice Shaggy. He will only voice Shaggy if he doesn't eat meat, and that was just a stupid corporate-done change to update the franchise, as if the Internet jokes weren't enough. So Scott Menville (whom previously voiced Red Herring on \"\"A Pup Named Scooby-Doo\"\") voices Shaggy here. Believe me, the voice is REALLY BAD! It makes Shaggy sound like a squeaky 10-year-old, and I must agree the voice definitely fits his new ugly look. However, Kasem DOES voice Shaggy's Uncle Albert, which is a sort of good thing. Scooby-Doo, on the other hand, does not look that well. He seems to have been designed to look more like the CGI Scooby-Doo from the live-action movies. Also, Scooby's Frank Welker voice (need I mention Brain the Dog again?) still hasn't improved. Robi, the robotic butler, is practically worse than Scrappy-Doo! He tries to be funny and does \"\"comical\"\" impressions and gives safety tips (\"\"Remember kids, don't stand under trees during a thunderstorm!\"\"), but it just doesn't fit into a Scooby-Doo cartoon. Again, the Hanna-Barbera sound effects are rarely used here. However, on one episode, \"\"Lightning Strikes Twice,\"\" they use the \"\"Castle thunder\"\" thunderclaps during it, almost extensively! (Although they DO still use the newly-recorded thunder sound effects, too.) Scooby-Doo hasn't use \"\"Castle thunder\"\" sound effects since 1991. But my question is, why use \"\"Castle thunder\"\" on \"\"Shaggy and Scooby-Doo Get a Clue,\"\" while NOT use it on the direct-to-video movies or even on \"\"What's New Scooby-Doo!\"\" (Two episodes of WNSD used it, and it wasn't enough, unfortunately.) If WNSD and the DTV movies used it, then they might be better than this crappy cartoon. The day this show premiered, I watched the first episode, and it was SO bad I turned it off after only five minutes! To get my mind off of this poor show, I rented \"\"Scooby-Doo, Pirates Ahoy!\"\" which came out around the same time. And you know what? The \"\"Pirates Ahoy\"\" movie was actually BETTER than \"\"Shaggy and Scooby-Doo Get a Clue\"\" (and even better than \"\"What's New, Scooby-Doo!\"\") And it looks like the new designs that the characters have isn't permanent to the franchise. The direct-to-video movies coming out while this show is being made use the regular character designs, thankfully. But, whether you loved or hated \"\"What's New Scooby-Doo,\"\" I don't recommend it. But if you HATE the old series, THEN you'll love it! (Oh god, I hope the old Scooby-Doo cartoon stay better than this new $#*%!) Anyways, like WNSD, a really bad addition to the Scooby canon.\"\r\n0\t\"A terrible amateur movie director (no, not Todd Sheets), his new friend and sister explore a cave. The friend and sister fall in and get rescued. Meanwhile a gang of horribly acted girls are defending their 'turf'. Whatever the heck that means. This film and I use the term VERY loosely is so bad that it's.. well bad. The humor is painfully unfunny, the \"\"action\"\" merely sad. Now I've seen some atrociously awful 'horror' films in my time & failed to grow jaded in my approach to watching low-budget films, yet I still weep openly for anyone who choose to sit through this. ONLY for the most hardened maschocists amongst you. but the rest run away FAST!!<br /><br />My Grade: F\"\r\n0\t\"Not a very good movie but according to the info it's pretty accurate in depicting torture techniques. The purpose of the film was to show the brutality of the NK POW camps and that's done effectively enough, with surprising frankness for the time. Whatever technical flaws exist (and there are plenty) by watching this you'll see a forgotten corner of a forgotten war and some pretty nasty stuff - again, nasty because it's being done north of the DMZ and not in Guantanamo Bay.<br /><br />I don't think any of the Korean veterans brought up his torture when running for office, and if you watch the movies like this one and Pork Chop Hill in comparison to the Vietnam films. I don't know if it was the people in '54 being trapped in the WWII concepts (the boys tend to wisecrack a lot) or the war or what, but it's interesting to see this from the same system that 16 years later would be making movies like \"\"Go Tell The Spartans\"\".\"\r\n1\tI voted this a 10 out of 10 simply because it is the best animated story I have been able to see in quite some time. The animation is stunning. The artwork behind each and every landscape was beautiful. From the colors to the lighting to the not standard fare of artistry. I was amazed. Moving beyond the beauty on the screen, you are immersed in a storyline that is at once timeless and at the same turn fresh. Character development is brief yet these touchstone moments are exactly what is needed to clue the viewer in to what and why and how the character has come to where they stand. I'm impressed with the entire affair and think this is a must see for the entire family.\r\n0\t\"If there were a movie that deserved a 0 out of 10, this would be it. 'House of the Dead' redefines the term \"\"bad movie\"\". Other bad movies, such as 'When A Stranger Calls' or 'Premonition', will actually look much better when compared to 'House of the Dead'. The basic \"\"plot\"\" of House of the Dead is a group of twenty-somethings travel to a remote island to attend the \"\"rave of the century\"\". When they get there, they only find some tents, a bar, a stage, and some bloody t-shirts. They decide to stay anyway, and they are soon attacked by zombies.<br /><br />There is absolutely nothing redeeming about this movie. It is not entertaining. Instead, it is painful to watch because of how terrible it is. The acting is unbelievably bad. In a DVD interview, one of the actors claimed that Uwe Boll, the director, is not afraid to tell someone when they are doing a good job or a bad job in a scene. This is a blatant lie. The script appears to have been written by an 11-year-old, who decided to include a scene of someone throwing up on a girl's chest and to include the hilarious line, \"\"it smells like someone farted out here.\"\" The characters have no personality or depth and they do some of the most moronic things ever seen in a horror movie. Somewhere along the way, the characters also magically transform into a SWAT team to take down the zombies. It's like they don't even have to aim their guns and they automatically shoot the zombies in the head.<br /><br />The scariest thing by far about this movie is the directing. There is something wrong with Uwe Boll. Boll's camera work is astonishingly disjointed. His pans to zombies running through the forest are more silly than menacing. Worse yet, Boll actually thought it would be a good idea to include small bits of footage from the House of the Dead video game into the movie. Quite often, and at the most random times, you will suddenly see an animated zombie getting shot. It makes no sense. No one in their right mind would think that was a good idea. It's like Boll wants to remind us repeatedly that this movie is supposed to be based on the video game. Uwe Boll also decided it would be cool to include slow motion 360 degree rotating shots during the action scenes, a la 'The Matrix'. Unfortunately, he does it way too often and each shot is nauseating. The soundtrack to this movie also boggles the mind. Most action scenes are accompanied by loud rap track. This also adds to the ensuing headaches caused by the atrocious 'House of the Dead'.<br /><br />'House of the Dead' isn't bad because it's based on a video game. In fact, it has very little to do with the video game. It also does not fit into the category of 'so bad that it's good'. It does however fit into the category of 'so bad that it's painful'. This movie just plain sucks. Uwe Boll should never be let anywhere near another movie set. Even his presence will curse a production. To all the directors out there: whenever one of your movies gets a bad review, all you have to do is remember that you didn't make 'House of the Dead' and you will feel much better. I will never get those 90 minutes of my life back. To sum it up, words really cannot describe just how bad this movie is. Everyone involved in the production of this film, especially Uwe Boll, should be ashamed of themselves. Although what I have said may make 'House of the Dead' sound funny, it really isn't. Nothing about it is funny. Avoid this at all costs.\"\r\n0\tI will admit that I did not give this movie much of a chance. I decided pretty early on that this just wasn't my kind of movie.<br /><br />For the most part, it has an excellent look in terms of its cinematography. The scenes of early 70's Manhattan look very good, as does the lead actress. It is a very crisp black and white, which could almost make the movie feel undated and fresh. However, some of the other techniques the filmmakers employ shoot that prospect all to hell. The disjointed editing is VERY late-60's, somewhere between surrealism and new wave. The story also feels like it came from a very specific time, somewhere between free love idealism and artsy experimentation.<br /><br />The film follows a young girl around the city as she looks for a man who she had anonymous phone sex with. As she meets other odd characters, she reveals her quirks and they reveal theirs. The movie seems to be meant as an off-the-wall, irreverent comedy, but adds an avant-garde feel. I would expect that if you like Andy Warhol movies, you would be very excited to discover The Telephone Book.<br /><br />Some problems I had: Near the end of the movie, one character tells a rambling anecdote that lasts over twelve minutes-brutal to sit through. Also, there is a very explicit animation sequence that I found gross and juvenile that serves as the film's climax. I did laugh out loud four or five times, and I liked the ending (minus the flat-out disgusting animation). And when the film switched to color for the final phone-booth-at-night sequence, I actually liked the way it looked even better. It ended up being one of those experiences where I felt like I could have really liked it if it been a little different. But this is what the filmmakers gave us. It is obscure, artsy, and way left of the dial, but none of those are reasons to recommend it on their own. I didn't find it to be unique or creative so much as forced and pretentious.\r\n1\tDig! I would say to anyone even if you don't like Metallica to see 'some kind of monster' it is a spinal tap type documentary about one of the biggest bands in the world acting like mental kids during a breakdown of sorts. It's fun and fascinating. Along the same lines comes dig! A film about 'the Dandy Warhol's' and 'the Brian Jonestown massacre' two Portland bands who start off a kind of music scene in there home town only for one of the bands to become huge and one to fall by the wayside into the musical history books. Right from the start the two bands pull in opposite directions just on their ability to make decisions whether good or bad. Filmed over seven years and at times painful to watch we see the dandy's meteoric rise to fame (thanks to that vodaphone ad!) and the Jonestown seminal fall from scene instigators to bickering wannabes. As the bands become more disjointed the friendships are stretched tension tight and at several points snap into arguments and even on stage fights. All of this is half funny and half tragic and believe it or not is perversely watch able. Like I said at the beginning you can watch the Metallica film even if you have no interest in the band. Dig! on the other hand is slightly different and is more enjoyable and a whole lot easier to watch if you have a passing interest in either band. Still a good film and more a testament to not be in a band than encouraging that as a career path. Dig! Is a mad ride on rock and roll's coat tails and a fine example of the pitfalls and pleasures of being or wanting to be famous.\r\n1\tI like this presentation - I have read Bleak House and I know it is so difficult to present the entire book as it should be, and even others like Little Dorrit - I have to admit they did a very good show with the staged Nicholas Nickelby. I love Diana Rigg and I could see the pain of Lady Dedlock, even through the expected arrogance of the aristocracy. I am sorry, I think she is the best Lady Dedlock... I am not sure who could have made a better Jarndyce, but I am OK with Mr. Elliott. It is not easy to present these long Dickens' books - Oliver Twist would be easier - this is a long, and if you don't care for all the legal situations can be dreary or boring. I think this presentation is entertaining enough not to be boring. I just LOVED Mr. Smallweed - it can be entertaining. There is always a child - Jo will break your heart here... I think we should be given a chance to judge for ourselves...<br /><br />I have to say I loved the show. Maybe if I read the book again, as I usually do, after seeing the movie, maybe I can be more critical. In the meantime - I think it is a good presentation.\r\n0\t\"I think we all begin a lot of reviews with, \"\"This could've made a GREAT movie.\"\" A demented ex-con freshly sprung, a tidy suburban family his target. Revenge, retribution, manipulation. Marty's usual laying on of the Karo syrup. But unfortunately somewhere in Universal's high-rise a memorandum came down: everyone ham it up.<br /><br />Nolte only speaks with eyebrows raised, Lange bitches her way through cigarettes, Lewis \"\"Ohmagod's!\"\" her way though her scenes, and Bobby D...well, he's on a whole other magic carpet. Affecting some sort of Cajun/Huckleberry Hound accent hybrid, he chomps fat cigars and cackles at random atrocities such as \"\"Problem Child\"\". And I want you to imagine the accent mentioned above. Now imagine it spouting brain-clanging religious rhetoric at top volume like he swallowed six bibles, and you have De Niro's schtick here. Most distracting of all, though, is his most OVERDONE use of the \"\"De Niro face\"\" he's so lampooned for. Eyes squinting, forehead crinkled, lips curled. Crimany, Bob, you looked like Plastic Man.<br /><br />The story apparently began off-screen 14 years earlier, when Nolte was unable to spare De Niro time in the bighouse for various assaults. Upon release, he feels Nolte's misrep of him back then warrants the terrorizing of he and his kin. And we're supposed to give De Niro's character a slight pass because Nolte withheld information that might've shortened his sentence. De Niro being one of these criminals who, despite being guilty of unspeakable acts, feels his lack of freedom justifies continuing such acts on the outside. Mmm-kay.<br /><br />He goes after Notle's near-mistress (in a scene some may want to turn away from), his wife, his daughter, the family dog, ya know. Which is one of the shortcomings of Wesley Strick's screenplay: utter predictability. As each of De Niro's harassments becomes more gruesome, you can pretty much call the rest of the action before it happens. Strick isn't to be totally discredited, as he manages a few compelling dialogue-driven moments (De Niro and Lewis' seedy exchange in an empty theater is the film's best scene), but mostly it's all over-cranked. Scorsese's cartoonish photographic approach comes off as forced, not to mention the HORRIBLY outdated re-worked Bernard Hermann score (I kept waiting for the Wolf Man to show up with a genetically enlarged tarantula).<br /><br />Thus we arrive at the comedic portion of the flick. Unintentionally comedic, that is. You know those scenes where something graphically horrific is happening, but you can't help but snicker out of sight of others? You'll do it here. Nolte and Lange squawking about infidelity, De Niro's thumb-flirting, he cross-dressing, and a kitchen slip on a certain substance that has to be seen to believed. And Bob's infernal, incessant, CONSTANT, mind-damaging, no-end-in sight blowhard ramblings of all the \"\"philosophy\"\" he disovered in prison. I wanted him killed to shut him up more than to save this annoying family.<br /><br />I always hate to borrow thoughts from other reviewers, but here it's necessary. This really *is* Scorsese's version of Freddy Krueger. The manner in which De Niro relishes, speaks, stalks, withstands pain, right down to his one-liners, is vintage Freddy. Upon being scalded by a pot of thrown water: \"\"You trying' to offer sumpin' hot?\"\" Please. And that's just one example.<br /><br />Unless you were a fan of the original 1962 flick and want a thrill out of seeing Balsam, Peck, and Mitchum nearly 30 years later (or want a serious head-shaking film experience), avoid a trip to the Cape.\"\r\n1\t\"\"\"Gandhi as a husband and father?\"\" has always been discussed by people in India. 'Gandhi...my father' is a story that only a few would have known to such details. Surely an insight into Gandhi's personal life.<br /><br />Overall, I liked the movie for story and cinematography. Jariwala, Akshay Khanna, and Shefali Shah have all done a good job. Most scenes of the movie would be nice desktop wallpapers...commendable job. Traditional Indian folk music as background score during certain parts of the movie gives a good feel of the happenings.<br /><br />However, what I didn't quite like was the narration style. At several points, I found the tone over-dramatized.<br /><br />Overall, good work by Anil Kapoor Productions. I would recommend it as \"\"must-watch-once\"\". 8/10\"\r\n1\tI got to see this on the plane to NZ last week, and was wondering how it would measure up to both the UK film and the book. I have to say I was favorable impressed. If anything the fanatical attachment to the Red Sox during the lean years works even better than the original devotion to Arsenal FC, who have had success through the years. As a Brit I was also interested to see that you don't need to understand baseball to get what's going on. One question springs to mind - Was the screenplay written using the Sox as the team even before they finally broke the Curse of the Bambino? Or was another team in the frame? As a Red Sox fan myself (weird I know, a Brit who understands baseball) I have to say that it added to the enjoyment.\r\n0\t\"... and in *no way* as clean, logical, and understandable as in pictured in that pathetic sum of tired Hollywood cliches.<br /><br />I'm 27, and I've spent 16 years of my life struggling through delusional phobia and paranoid hallucinations. Like the main character in the film, I was successful mainly because of logic : because I kept thinking over and over to keep delusion away from reality, and to know what was really going on and what wasn't. In the end, I was really successful because of medication, by the way, but I certainly escaped madness because I knew before I took medication the difference between what was real and what wasn't.<br /><br />So, I feel entitled to tell you that this movie is a total fraud. Not only does it cheat with the main character's story (who wasn't faithful to his wife, who was bisexual - something really important here), but mostly, it shows a comforting, tamed view of schizophrenia - which is entirely missing the point.<br /><br />Schizophrenia is a mind structure, not a disease. A schizophrenic *isn't* a \"\"normal man with a disease\"\", it's someone who from early on views and feels things differently from most people : for him, things like time, space, and people's personalities aren't solid things. He feels it can be bent, it can change, it can mutate, and maybe even disappear. To cope with this, a schizophrenic has a rich, very imaginative inner world which \"\"normal\"\" people don't expect - but he's trapped in it because he can't relate with most people, and his world gets poorer and poorer until he finishes in a blank, delusive dead end.<br /><br />This is very different to what's depicted in this ridiculous \"\"cure\"\", tear-jerking movie. It should be violently frightening. People other than the main character should appear strange, weird and absurd, like in Lynch's \"\"Eraserhead\"\", for example. There should be *really* impressive, weird, gross hallucinations, because that's what schizophrenia is all about. It's not about *details*.<br /><br />I mean, watch \"\"Naked Lunch\"\", \"\"Lost Highway\"\", read P.K. Dick's \"\"Martian Time-Split\"\" or \"\"Ubik\"\", DO watch \"\"The Cell\"\", \"\"Perfect Blue\"\", \"\"Dark City\"\", or play \"\"American McGee's Alice\"\" on PC, and you may have a vague idea of what it's like. Don't watch the \"\"feel good\"\" movie of the month, with banal situations, cleaned characters and visuals, and stupid plot tricks. \"\"The Cell\"\" is the most accurate movie about a schizophrenic's mind, his visions and his inner consistency - it's violent, weird, confusing, and very, very scary.<br /><br />Once again, Schizophrenia isn't about details, it's not a neat, tame trick played to you. It jumps in your face and won't let you go : walls fall apart, people turn into strange hostile creatures, you feel like you go backward in time, you're not sure you're who you think you are, everything feels... strange, unnatural. Believe me, this is much much more than what's depicted in this soap-like melodrama\"\r\n1\tThe unflappable William Powell. He is a joy to watch on the screen as he makes his way through situations without a care in the world. He always seems on top of his game and shows little care for anyone who doubts him. The murders are projects, barely human beings. I have noticed this is a staple of the whodunnit. Other than an occasional weeping widow, the victims fulfill the function of being the reason the movie exists. Nothing more. There are enough twists and turns to keep things interesting along the way and Powell is a master at this. There is a lot of political incorrectness, especially as it relates to the Asian performers. This is a little hard to take. The cast is great, and Curtiz's direction is also a consistent asset.\r\n1\tExcellent endearing film with Peter Falk and Paul Reiser joining forces as father and dad.<br /><br />Dad shows up one evening to state that after over 40 years of marriage, mom (Olympia Dukakis) has left him.<br /><br />The rest of the film depicts the father and son on a day trip to get dad's thoughts off what has occurred. With them away, the daughters can play detectives.<br /><br />The story shows the adventures of father and son in their discussion of life, what should have been, why mom was complaining about dad as they discuss their philosophies of life.<br /><br />We see an unexpected fishing trip and pool playing which leads to a near brawl. Both men seem to break out of their daily lives.<br /><br />The end is a downer as we learn why mom suddenly left. It becomes a story of courage and the human spirit in the face of adversity. It's never too late to change.\r\n1\tThe film is not visually stunning in the conventional sense. It doesn't present a series of pretty pictures. Instead it is a visually interesting film. It forces the viewer to constantly process or perhaps imagine the context of the various shots. This sort of thing is easy to try but hard to succeed at. The film refuses to use the crutch of a genre to help the less than fully engaged viewer get what's going on. Instead the film touches on and moves through a number of different genres. The trick to loving the film is being able to enjoy this playfulness. I suspect 99% of North American viewers will just not get it. If you try to pin down the narrative of this film, or the philosophical message, or the symbolist structure, etc. you will waste your time. There are none of these. The film only feints towards these genres and others at times. The only unifying force in the film is Claire Denis's own sense of what fits together. There are so few feature length films that come close to satisfying Kant's description of what art is, namely the enjoyment of the power of judgment itself instead of simply subsuming experiences under concepts. Film usually takes the easy way out and opts for the simpler pleasure of understanding what's happening. Most film is not art. Most film doesn't come close to art. When a film does, as this one does, and is still enjoyable by a large range of viewers, it's something of a miracle. My on negative comment is that at times I find the film too simplistically buying in to the various narrative threads that run through it. The Tahiti father-son narrative, even though it's not exactly conventional, ends up making things a little to clear and simple. It dominates too much.\r\n1\tThis film is one of the more risqué black and white films of this time in the early 1930's before the Hoyts Code was enforced. It's the story of a young beautiful woman moving to New York and making her way to the top of the business by using her body as a tool to get there.<br /><br />Barbara Stanwyck plays the young and beautiful Lily Powers who indeed does a fairly well job with her performance. Lily moves to New York and makes her way up the business place by sleeping with all the men. Stanwyck does an outstanding performance as being a strong woman who uses men as one time deals, hardly any emotion towards them playing them as if they were pawns. Lily Powers is a woman who doesn't have love on her mind just power and money.<br /><br />I thought this movie to be a little bit different then other films I have seen because there is hardly any background music heard. I believe it is only because this is when people were first introduced to live sound and dialogue between the people of the film. The few times the music is heard is during the beginning as we are shown how she makes her way up the chain. The filming and different scenes were something fantastic! The director of this film did all the right angles and all the right tricks, making this film full of realism.<br /><br />This film was all together an alright movie.The ending to this movie wasn't as good as it should have been, but it didn't entirely ruin it. Baby Face had its slow moving scenes throughout the movie, and perhaps a few predictable parts such as who she will sleep with next. But this is a lovable movie that can be watched more then once, and suggested to some people and friends.\r\n0\t\"This film reminded me so much of \"\"A History of Violence\"\" which pretended to be a close study of violence and violent behavior but ended up just being nothing short of a cheap action movie masquerading as some thinking film on violence. Dustin Hoffman and his new British bride move to a small English town and encounter endless harassment from the local drunks who do nothing but hang at the pub all day and make trouble. Don't these men have a job? Anyway, Dustin takes all he can take and by the end of the film he holds up in his house and fights off each one of the drunk attackers by such gruesome means as boiling whiskey poured over someone, feet being blown off by a shotgun and someones head getting caught in a bear trap. Funny that someone would have a need for such a large bear trap in a small British town except maybe put a mans head in it.<br /><br />Sam Peckinpah who made the \"\"Wild Bunch\"\" which also covered the topic of blood letting violence in which no one was spared. But it was done with style, and you believed it. Straw Dogs is not believable. First of all the location is wrong and does not work. Why place it in England? I would think maybe in some inner city location or a small town in the American South in the 1930's or something. Second it is not in my view ever really explained clearly why these men are so quick to violence except maybe they got drunk and felt a need to kill Hoffman and rape his wife.<br /><br />Sam Peckinpah missed the mark on this one.\"\r\n0\t\"I'm glad some people liked this, but I hated this film. It had a very good idea for a story line, but that's where it ended. It was badly written, badly acted and badly made.<br /><br /> It had some interesting plot points, but they were just skipped over too fast, the writers needed to realize what to keep in and expand on these bits, like lying about why she was kidnapped, and ditch the dross. Instead it was \"\"what's going on?\"\", 5 seconds later they tell you.<br /><br />This film had no suspense, and I was bored from start to end. I just wanted it to finish.<br /><br /> Go and rent misery, or best laid plans if you want suspense or twists that keep you guessing to the end.\"\r\n0\tAt least the seats in the theater were comfortable and I ate the pop corn as loud as possible to drown out the inferior dialogue. This is absolutely not a girls film. Any blokes who like it, are the ones us ladies can be sure to stay far away from. Dumb story, mediocre dialogue and an overall cheap looking film. I've seen many, many movies but this one is the new winner in the bad category. If you do happen to see it, the one thing you'll look forward to is the ending. So you can finally run out of the theater as fast as you can.\r\n1\t\"> Contrary to most reviews I've read, I didn't feel this followed any of the other rock movies (\"\"Spinal Tap\"\", etc.) The story was more unique, although I feel most people wanted to see the \"\"sex, drugs & rock and roll\"\" vices that the band kept alluding to.<br /><br />> As an American, I knew a few of the actors - Spall, Connelly & Rea. Surprised to find out \"\"Brian\"\"/Bruce Robinson was in Zifferedi's (<sp?) classic \"\"Romeo & Juliet\"\". Guess I'll have to rent that next.<br /><br />> \"\"THE FLAME STILL BURNS\"\" - My wife, who hails from Mexico, didn't follow the English/British language too well, missed some of the jokes (which I dutifully explained) but she cried her eyes out at the concert scene. She loves the song so much now.<br /><br />> Funny that Amazon.com has the soundtrack for $30+usd when I bought the DVD in the bargain bin at Wal-Mart for $5.50usd. Price non-withstanding, I first saw this on late night cable and have been dying to find it ever since.\"\r\n0\tI saw this film recently in a film festival. It's the romance of an ex-alcoholic unemployed man who just came out of a big depression and a single middle-aged woman who works in an employment office (INEM). I found the story very simple and full of clichés, taking the 'social' theme of the movie and turn it in to a romance comedy. The lead actor did a good job, he definitely looks like an alcoholic man, but Ana Belen is not believable as a working class woman, she looks, acts and talks very much like a 'high-standing' woman. What I mean is that Ana Belen plays herself. She does it in all her movies anyway. The whole mise-en-scene of the film was very poor. The photography is ugly, not using well at all the panoramic aspect ratio. The dialogue sounds totally scripted and dull most of the times. The comic situations are typical from Gomez Pereira, but in this case they are not funny at all and are resolved poorly. In my opinion this film is not worth watching. Only if you really love Pereira's previous films you might enjoy this one a little bit. Anyway, I walked out of the theater because I felt I was wasting my time. The film-maker was by the door. I wonder what a director feels like when he sees someone walking out of one of his films, specially one that is made to please everybody.\r\n0\t\"There are so many stupid moments in 'Tower of Death'/'Game of Death 2' that you really wonder if it's a spoof. At times, it felt like I was watching a sequel to Kung Pow rather than a Bruce Lee film.<br /><br />To be honest, this film has bugger all to do with 'Game of Death'. If anything, it's more a sequel/remake of 'Enter the Dragon', incorporating many elements of that film - particularly the actual footage. Bruce Lee's character Billy Lo (apparently) investigates the sudden death of his friend and encounters a piece of film that was left with the man's daughter. When the body is stolen during the funeral (!), Billy is also killed and it's up to his wayward brother to avenge both men's deaths.<br /><br />Tong Long stars as brother Bobby Lo and doesn't really have the sort of charisma to carry the film. His fighting abilities are very good however. Bruce Lee obviously turns up thanks to (no longer) deleted footage simply to cash-in on the legacy. Saying that, on the whole, the footage is actually edited-in better than in 'Game of Death' but it doesn't stop the film from being a mess.<br /><br />OK, so the fights are actually very entertaining (dare I say mind-blowing) and make the film at least watchable. But there are so many daft elements to this film that it really tests your patience. First off, there's the supposed villain who lives on his palatial estate... or is that mental institution? Seriously, the nutter eats raw venison, drinks deer's blood, carries a monkey on his shoulder and owns some peacocks and lions (?!). This attempt to make him look tough and intelligent just makes you feel sorry for him - you half expect someone to escort him back to his room.<br /><br />In fact, this middle section is awful and when the scene involving a naked hooker and a lion suit arrived I turned it off. However, I did finish the film and was kind of glad I did because the fight scene towards the end (much like 'GOD') was the whole reason for watching. While the story is an embarrassment, the action is very good and contains excellent choreography.<br /><br />But even the finale disappoints if the premise was anything to go by. What we were told was that the 'Tower of Death' was a pagoda that was upside down and underground. This sounded great, like a twist on Bruce Lee's original idea with different styles of fighting on each level. Could this be the 'Game of Death' that was originally planned? No! The film should have been named \"\"Generator Room of Death\"\" because thats as far as the tower goes. Of yes, there were indeed one or two 'different' styles... there were foil clad grunts, leopard-skinned henchman and stupid monk. It's as though Enter the Dragon had never been made, with the plot being a poor imitation.<br /><br />Worth watching once for the fast paced fight scenes, but so stupid sometimes that it hurts. If this was intended, then fine. Thumbs up, however, for recreating that projector room scene from 'Enter The Dragon'.\"\r\n1\tBetter than the typical made-for-tv movie, INVITATION TO HELL is blessed with excellent casting (Urich, Lucci, Cassidy, McCarthy, pre-Murphy Brown Joe Regalbuto, Soleil Moon-Frye) and a high concept update to the familiar Faustian plot. Urich is likable as always and Lucci is particularly fetching and devilishly over the top in the mother of all femme fatale roles. Kind of a hybrid version of STEPFORD WIVES and THEY LIVE, the movie commits early to its apocalyptic Miltonesque vision and horror fans will likely not have many complaints until the soppy, maudlin denoument. 7/10\r\n1\tI love this movie and never get tired of watching. The music in it is great. Any true hard rock fan should see this movie and buy the soundtrack. With rockers like Gene Simmons and Ozzy Osbourne you can't go wrong.\r\n0\tI saw mommy...well, she wasn't exactly kissing Santa Clause; he has his hand on her thigh and wicked thoughts in mind.<br /><br />This was enough to emotionally scar a young boy who wanted to believe. He grew up to be a bitter man who was upset at the quality of the toys being made, and the lack of Christmas spirit.<br /><br />Expecting a real slasher flick, I was very disappointed that less than a handful of people dies, and there was no nudity at all. What a bummer.<br /><br />I wanted to like this flick, but it was just too slow and really didn't have a good script. I didn't expect great acting, but I sure wanted some action. There just wasn't any.\r\n0\tCome on Tina Fey you can do better then this. As soon as the movie started i knew how it would end. Sure it was funny at times. Even laugh out loud funny. But there isn't enough laughs to save this movie. I don't recommend buying this. At the most i recommend renting it but thats all. Baby Mama has some funny scenes but is predictable and fails to have the heartwarming ending it strives for.<br /><br />Tina Fey and Amy Poalher made a good team. Mean Girls is one of my favorite movies. Tina Fey and Amy Poalher both did great in that and they do good in this. But this isn't there best. Baby Mama had a great supporting cast. Dane Cook, Sigourney Weaver and Steve Martin add to the casts greatness.<br /><br />Another pregnancy movie has hit the cinema world. After the great Knocked Up and Juno, Baby Mama looks very average when compared. Knocked Up and Juno are Hilarious, Heartwarming and have endings that leave you with a smile on your face. Baby Mama's ending was unfunny and dull.<br /><br />Baby Mama wasn't the best comedy of the year and it doesn't try to be. I recommend it but don't expect it to be totally hilarious. Expect a average comedy that doesn't give the big emotional ending it tries to have. I give Baby Mama.....<br /><br />4/10\r\n0\tIt makes one wonder how this show is still on the air. There's been one couple that has stayed together, married, and has children, but everyone else has broken up. What's the point of continuing this? The show can be entertaining at the beginning. You see all the girls swooning over one man, that almost all of them like instantly. It's just like in real life! The girls start to take sides, bitch one another out, and show their true selves (or so we think). But that one man is left to decide who to pick that he thinks he can marry and live happily ever after.<br /><br />What is true love exactly? How can you fall for someone when you're forced to pick them? This show is unbelievable. You thought dating online was bad, but people have to go on TV to find love? It's not realistic. How could a girl be with a man when he is going out with several others, making out with them? None of these questions are answered, and finally when the show ends, you know there won't be a happy ending in the future. For all we know, everything is scripted.\r\n0\tI see a lot of people liked this movie. To me this was a movie made right of writing 101 and the person failed the class. From the time Lindsey Price the videographer shows up until the end the movie was very predictable. I kept on watching to see if it was going anywhere.<br /><br />First we have the widowed young father. Cliché #1 movies/TV always kill off the the mother parent if the child is a girl, or a brood of boys so the single father can get swoon over his dead wife and seem completely out of his element taking care of the children. Starting from from My 3 Sons to 2 1/2 Dads. These movies are usually dramas and comedies are TV shows.<br /><br />Cliché # 2 When a pushy woman has a video camera in her hand she will play a big part in the movie. And will always have solutions or even if that person is a airhead <br /><br />Cliché #3 If the person in peril is a foreigner they have to be of Latino origin. And they must be illegal. Apparently there are no legal Latino's and illegal Europeans, unless if there is a IRA element involved.<br /><br />Cliché #4 The said Latino must be highly educated in his native country. In this case he was a Profesor who made 200 per month. And the said highly educated Latino must now act like he hasn't brain in his head now and lets the air head side kick take over.<br /><br />Cliché #5 The crime the person committed really wasn't a crime but a accident. But because in this case he has lost all of the sense he had when he crossed the boarder he now acts like a blithering idiot and now has put his own daughter in peril by taking her along on a fruitless quest to the border with the idiot side kick.<br /><br />Cliché #6 One never runs over a hoodlum running from a crime , but some poor little cute kid. This is because the parents of the child have to play a big part of the movie, and because the the person who accidentally killed the child can have ridiculous interaction with the parents.<br /><br />Cliché #7 Name me one movie in which one cop is not the angry vet and they get paired up with a rookie. Even if they are homicide detectives who have to be the most experienced cops on a police Force. Sev7n and Copy cat and Law and Order come to mind right away. And the vet even though gruff on the outside has a heart of gold.<br /><br />Cliché #8 Let's go and round up some unemployed Soap Stars. Now I like Lindsey Price. But Susan Haskell IMO can not act her way out of a paper bag and when she use to be on One Life To Live as Marty he swayed from right to left every time she opened her mouth. It use to get me sea sick. She might be anchored on land better now, but she still cannot act.<br /><br />The movie might have been more insightful if it wasn't filled with clichés. I don't think a movie has to be expensive or cerebral to be good. But this was just bad.<br /><br />***SPOILER**** Now I am not going to spoil the ending. Oh heck I will because I feel it will be a disservice to humanity to let a person waste time they will never get back looking at this movie. It involves Cliché #6 and #7. Unless a person has never seen a movie before you had to see what was coming. The father makes even a dumber mistake runs from the cops at the end and gets shot by the angry veteran, who all of a sudden is very upset. You would think she thought the poor guy was innocent all through the movie and she shot him by mistake. When she didn't. Now for the little girl who the dad brought along with him. Guess what happen to her? Times up, she ends up living with the family whose child was killed by her father!! Come on! You all knew that was going to happen, because she is a replacement child!! That is why she did not go and live with the Lindey Price character. <br /><br />This movie was a insult as far as I was concerned. Because there were so many avenues this movie could of explored and went down but it chose to take the cliché ridden one. The 2 stars are for 2 of the stars, the little girl, who I thought was very good and Lindsey Price who character was annoying but she did what she could with it. My advice is take a vice and squeeze your head with it instead of looking at this dreck\r\n0\t\"The name \"\"cult movie\"\" is often given to films which continue to be screened, or to sell in home movie format, more than a generation after they were first released. Superchick, which was first released in 1973, now comes into this category. Its cult status is largely due to ongoing interest in it by those women who regard it as an early and effective feminist film.<br /><br />Despite the \"\"Superwoman\"\" connotation, \"\"Superchick\"\" is not a cartoon character but a very competent young lady working as an air stewardess - a career option which in the 1970's was commonly regarded as one of the most glamorous open to any girl, and which also enables her to emulate the traditional matelot who reputedly has a wife in every port. Since she holds black belt status in karate, she is in a position to make it quite clear that she is very happy with her bachelor existence, and is in no way beholden to any of her extensive suite of male admirers. This film is a situation comedy which avoids the generally much shorter lived appeal of outright farce. Its appeal to feminists is also heightened by a climax in which our heroine uses her karate abilities to avert a hijacking and save all the other passengers on her plane from a potentially unpleasant fate. To ensure that this film will appeal to men as well as to their partners, the Director has wisely ensured that is liberally sprinkled with eye candy.<br /><br />Superchick can be enjoyed by those who are not too critical and want a very light easy to watch comedy which they will forget soon after viewing. It is so forgettable that they will probably find it equally enjoyable if watched again in a year's time; despite its age it may therefore retain its status as a cult movie for some time to come. However the dialogue and acting would make it hard to give this film a rating of more than 4/10.\"\r\n1\tYeah, it is. In fact, it's somewhere in my top 20 all time favorite movies. Number 15, I think. Anyways, I'm usually not one for plots, but I think plots work better in anime and RPG video games, (Final Fantasy 7, for example) and not movies. But this one has it all. Vivid drawings of planets, stars, an extremely well written screenplay. While this is not really for children, they can still watch it, it contains no graphic blood, guts and silicone. But I don't think they're going to understand it.\r\n1\tAs far as I can recall, Balanchine's alterations to Tchaikovsky's score are as follows:<br /><br />1) The final section of the Grossvatertanz (a traditional tune played at the end of a party) is repeated several times to give the children a last dance before their scene is over.<br /><br />2) A violin solo, written for but eliminated from Tchaikovsky's score for The Sleeping Beauty, is interpolated between the end of the party scene and the beginning of the transformation scene. Balanchine chose this music because of its melodic relationship to the music for the growing Christmas tree that occurs shortly thereafter.<br /><br />3) The solo for the Sugar Plum Fairy's cavalier is eliminated.<br /><br />It seems to me the accusation that Balanchine has somehow desecrated Tchaikovsky's great score is misplaced.\r\n0\tWhen this movie was released, it spawned one of the all-time great capsule movie reviews: Sphinx Stinks. It does, but in a mesmerizing sort of way. The casting is silly, starting at the top: Frank Langella and Sir John Gielgud as Egyptians? Not enough makeup in Cairo for that, at least not while this film was being made. But it's rather amusing to see them try. The performances run the gamut from mummy-like (sorry, the obvious observation) to over-the-top, with very few stops in between. The Lesley-Anne Down character seems as though she couldn't find Egypt on a map, much less expound upon its archaeological treasures. That's due at least in part to some really bad writing, one of the curses that will be visited upon every viewer of this movie. It's my opinion that movies involving a curse or that draw their basis from a subject that is somewhat esoteric, such as Egyptology, are ripe for silly, overwritten dialogue. It doesn't disappoint, and the convergence proves a double-whammy. The plot has one driving source of dramatic tension: Can this get dumber and less believable? The answer is, usually, YES. The location shots are beautiful, and the set design is generally very good, the only consistent reminders that this wasn't some low-budget production. That and the fact that there are so many well-known faces doing service in such an unintentional laugher. Cheap, no; cheesy, yes.\r\n1\t\"Talk about a blast opening, \"\"Trampa Infernal\"\" has the coolest opening credits ever! Guided by musical tones that are perhaps slightly inspired by the legendary \"\"Friday the 13th\"\" theme (Tsh-Tsh-Tsh-Ha-Ha-Ha), the names of the lead players appear on screen split up in giant syllables. Promising intro of a totally obscure Mexican slasher/backwoods survival thriller and it only becomes cooler with every minute that passes. Two extremely competitive and testosterone-overloaded paintball enemies challenge each other to the ultimate showdown in a sleazy bar. According to a newspaper article, there's a savage bear loose in the nearby woods and it already killed multiple of the hunters that tried to catch it. The challenge includes that whoever kills the bear will be declared the ultimate macho hero with the biggest set of balls. Upon arrival, however, it quickly becomes obvious they're not up against a bear but a bewildered and utterly maniacal war veteran with quite an arsenal of weapons in his hideout and numerous combat tricks up his sleeve. After a whole decade of tame and derivative American slashers, this early 90's Mexican effort looks and feels very refreshing and vivid. The formula is simplistic but efficient, the lead characters are plausible enough and the building up towards the confrontations with the sadist killer is reasonably suspenseful. The maniac must have been a fan of Freddy Krueger and Michael Myers, as he also uses a self-made glove with sharp knives attached to it and a white mask to cover his face. The murders are pleasingly nasty and barbaric, which I was really hoping for since the awesome aforementioned opening sequences, and waste a whole lot of gratuitous blood. The forestry setting and particularly the camouflaged booby traps are joyously spectacular. \"\"Trampa Internal\"\" is a Mexican slasher/survival sleeper hit that comes warmly recommended to the fans of the genre.\"\r\n0\t\"Whale-hunters pick on the wrong freaking whale.<br /><br />A group of yahoo whale exploitists capture a female and string her up by her tail-fin. The whale's mate sees the whole thing including the moment the female's unborn baby slips out and slops onto the deck. 'Captain Nolan' (Richard Harris) could tell that the big male is really mad by the way it stared him down as if to say, \"\"Get out of town before high-tide.\"\" <br /><br />This story of revenge has Harris' presence and Bo's beauty, but not much else. This was Bo's first 'released' film, though her first acting job was four years previous in 'And Once Upon a Love' released in 1981 as 'Fantasies' (directed by John Derek).<br /><br />P.S. Today, the date of this review (November 20), is Bo Derek's birthday. I hope Bo has a 'whale' of a good time..... get it?..... whale?..... hee-hee.\"\r\n0\t\"Of all the films I have seen, this one, The Rage, has got to be one of the worst yet. The direction, LOGIC, continuity, changes in plot-script and dialog made me cry out in pain. \"\"How could ANYONE come up with something so crappy\"\"? Gary Busey is know for his \"\"B\"\" movies, but this is a sure \"\"W\"\" movie. (W=waste).<br /><br />Take for example: about two dozen FBI & local law officers surround a trailer house with a jeep wagoneer. Inside the jeep is MA and is \"\"confused\"\" as to why all the cops are about. Within seconds a huge gun battle ensues, MA being killed straight off. The cops blast away at the jeep with gary and company blasting away at them. The cops fall like dominoes and the jeep with Gary drives around in circles and are not hit by one single bullet/pellet. MA is killed and gary seems to not to have noticed-damn that guy is tough. Truly a miracle, not since the six-shooter held 300 bullets has there been such a miracle.\"\r\n1\t\"Although Cameron Grant was clearly hired to replace Andrew Blake over at Ultimate Pictures when the latter started his own company (Studio A), he practically outdid the \"\"Master\"\" right out of the gate when it came to setting up steamy sex scenes. So, while all the window dressing Blake had pioneered (starlets in fetish lingerie and sun glasses, coiffed and made up as if they're about to hit the catwalk) remained very much present and accounted for, Grant added his own personal spin to the carnal content. In doing so, he raised the heat to a level that had eluded Big A ever since his first  and IMHO best  film NIGHT TRIPS. Cam's maiden effort, ELEMENTS OF DESIRE, might still have been handicapped by an overly slavish adherence to the Blake aesthetic (with a surfeit of girl on girl gropes), but his subsequent DINNER PARTY already shows him at the top of his form in what must surely rank as his masterpiece.<br /><br />The title spells out the premise as a group of well to do friends and acquaintances gather over dinner to swap sexy stories, with an extended orgy at the conclusion. Scrumptious Juli Ashton and Tammy Parks smear food stuff all over each other's flawless physiques in their kitchen sequence that is sure to delight those with a taste towards combining pleasures of the palette with those of the flesh. Busty Crystal Gold (here : \"\"Catalina\"\") was rarely more than a reliable second-stringer, adding spice to several Ona Zee bargain basement noirs, yet looks absolutely stunning here in a romantic four poster frolic with Fabio lookalike Vince Voyeur. Beautiful blondes Kylie Ireland and Yvonne, making out with Marc Davis (for the record, the latter two were an item at the time) under a waterfall, complete the eye candy section of the movie.<br /><br />Time to get cooking ! Early Jenna Jameson (\"\"Daisy\"\" back then) foreshadows the greatness to come as she drains Frank Towers (\"\"Mark Slade\"\" on his subsequent shift to the gay side of the industry) of all vital juices, albeit with a little help from brunette Diva for effective contrast, the scene's stylish industrial setting providing an atmospheric backdrop to the full tilt sex taking place. Impossibly hunky construction worker Gerry Pike seeks to cool off on a sweltering summer day by hosing down, a prospect too tantalizing for prim 'n' proper business woman Asia Carrera (at her all time most achingly pretty) to pass up. Best of show must be the imaginative sequence that has nasty Norma Jeane and handsome Sean Michaels teasing the pants off each other  for starters !  while separated by a glass partition right until the predictably splashy conclusion.<br /><br />With sex that proves either artsy or hot, and more often than not both, Grant has concocted a veritable smörgåsbord of fleshy wares to continue the film's gastronomic analogy the title implies. Couples may be the prime intended audience, but an alternation between naughty 'n' nice should rightfully include that \"\"something for everything\"\" recipe so many adult features are aiming for. Acting as his own DoP, the director shows great eye for detail, like the shot of Asia Carrera's pristine white shoes being spattered with mud, enriching his vision. This marks him out as a great filmmaker rather than a merely serviceable one, as was the case with Nick Steele who stepped up to take his place at Ultimate  effectively making him a replacement's replacement ?  when he packed up for greener pastures.\"\r\n1\t\"I have just recently been through a stage where I wanted to see why it is that horror films of the 90's can't hold a candle to 70's and 80's horror films. I have been very public in this forum about the vileness of films like The Haunting and Urban Legend and such. I feel that they (and others like them) don't know what true horror is. And it bothered me to the point where it made me go to my local video store and rent some of the classic horror films. I already own all the Friday's so I rented The Texas Chainsaw Massacre, the original Nightmare On Elm Street, Jaws, The Exorcist, Angel Heart, The Exorcist and Halloween. Now the other films are classics in their own right but it is here that I want to tell you about Halloween. Because what Halloween does is perhaps something no other film in the history of horror film can do, and that is it uses subtle techniques, techniques that don't rely on blood and gore, and it uses these to scare the living daylights out of you. I was in a room by myself with the lights off and as silly as I knew it was, I wanted to look behind me to see if Michael Myers was there. No movie that I have seen in the last ten years has done that to me. No movie.<br /><br />John Carpenter took a low budget film and he scared a generation of movie goers. He showed that you don't need budgets in the 8 or 9 figures to evoke fear on an audience. Because sometimes the best element of fear is not what actually happens, but what is about to happen. What was that shadow? What was that noise upstairs? He knows that these are the ways to scare someone and he uses every element of textbook horror that I think you can use. I even think he made up some of his own ideas and these should be ideas that people use today. But they don't. No one uses lighting and detail to provoke scares, they use special effects and rivers of blood. And it is just not the same. You can't be scared by a giant special effect that makes loud noises and jumps out of a wall. It's the moments when the killer is lurking, somewhere, you just don't know where, that scare you. And Halloween succeeds like no other film in this endeavor.<br /><br />In 1963 a young Micael Myers kills his sister with a large butcher knife and then spends the next 15 years of his life, silently locked up in an institute. As Loomis ( his doctor) says to Sheriff Brackett, \"\" I spent eight years trying to reach him and then another seven making sure that he never gets out, because what I saw behind those eyes was pure e-vil. \"\" That sets up the manic and relentless idea of a killer that will stop at nothing to get what he wants. And all he wants here is to kill Laurie. No one know why he wants to kill her, but he does.( Halloween II continues the story quite well )<br /><br />What Carpenter has done here is taken a haunting score, mendacious lighting techniques and wrote and directed a tightly paced masterpiece of horror. There is one scene that has to be described. And that is the scene where Annie is on her way to pick up Paul. She goes to the car and tries to open it. Only then does she realize that she has left her keys in the house. She gets them, comes back out and inadvertently opens the car door without using the keys. The audience picks up on this but she doesn't. She is too busy thinking about Paul. When she sits down, she notices that the windows are fogged up. She is puzzled and starts to wipe away the mist, and then Myers strikes, from the back seat. This is such a great scene because it pays attention to detail. We know what is happening and Annie doesn't. But it's astute observations that Carpenter made that scared the hell out of movie goers in 1978 and beyond. <br /><br />Halloween uses blurry images of a killer standing in the background, it has shadows ominously gliding across a wall, dark rooms, creepy and haunting music, a sinister story told hauntingly by Donald Pleasance and a menacing, relentless killer. My advice to film makers in our day and age is to study Halloween. It should be the blue print for what scary movies are all about. After all, Carpenter followed in Hitchcock's steps, maybe director's should follow in his.<br /><br />Halloween personifies everything that scares us. If you are tired of all the mindless horror films that don't know the difference between evil and cuteness, then Halloween is a film that should be seen. It won't let you down. I enjoy being scared, I don't know why, but I do. But nothing has scared me in the 90's, except maybe one film ( Wes Craven's final Nightmare ). If you enjoy beings scared, then Halloween is one that you should see. And if you have already seen it a hundred times, go and watch it again, back to back with a film like Urban Legend. Urban Legend will have you enticed at all the pretty faces in the movie. Halloween will have you frozen with fear, stuck in your seat, not wanting to move. Now tell me, what horror film would you rather watch?<br /><br />And just to follow up after seeing Zombie's version, it makes you appreciate this that much more. This is a classic by definition. Zombie bastardized his version, but it doesn't take away from the brilliance of this one.\"\r\n1\tThis movie had an interesting cast, it mat not have had an a list cast but the actors that were in this film did a good job. Im glad we have b grade movies like this one, the story is basic the actors are basic and so is the way they execute it, you don't need a million dollar budget to make a film just a mix of b list ordinary actors and a basic plot. I like the way they had the street to themselves and that there was no one else around and also what i though was interesting is that they didn't close down a café to set there gear and that they did it all from a police station. Arnold vosloo and Michael madsen did a great job at portraying there roles in the hostage situation. This was a great film and i hope to see more like it in the near future.\r\n0\tYeah, I'm sure it really could be a nation . . . if four of them all stood at the four corners of the world and the other two cloned themselves a few billion times. Man, I am REALLY glad that I saw this movie on FEAR.net instead of renting it. I'm a big fan of the George Romero movies and I'm pretty sure that if he saw this movie, he'd probably throw up while laughing too hard. I mean, what was with the raccoon girls posing as zombies and walking around like Charlie's Devils? It really helped too that the music composer chose the crappy fashion show music for when the zombies walked up to their killer, especially the part where they go into the warehouse posing as the furniture shop/police station/apartment/flat/whatever room it was with the gong in the background, and the live woman was arguing about the closed furniture shop. I couldn't even tell what nationality the killer was, and the fact that his accent indicated some multiple nations didn't help either. Oh well, what can I expect from a movie where they throw in a random fight scene for no good reason in a warehouse where they apparently ship boxes of air around the world. So, for all of those who worship Mystery Science Theater 3000 or if you just like reaming on bad C movies (C for Craptastic), then this is the movie for you . . . or not.\r\n1\t\"I would strongly recommend this film for any musical fan whose been dying to see a musical make a faithful transition from stage to screen. Sure it's long, but it's length is a testimony to how true to the original musical script the film is being. The sets and cast really make Sweet Apple, Ohio the place to be. Fosse protege Anne Reinking also does a splendid job with choreography giving the dances a nice small town, period feel.<br /><br />The casting at a glance may look strange to some but they really are qute marvelous(reading \"\"annonymous\"\"'s comments on Jason Alexander's performance made me sick). In fact, his perforamnce literally steals the show. As Albert, he mixes his own unique blend of manic nervousness with Dick Van Dyke-esque charm to create a new and improved Albert. The fact that he can dance and sing like nobody's business doeesn't hurt either. George Wendt is another stand out, who improves upon Paul Lynde's take on Harry McAffe by making him less manic and more down to Earth and strict. His whole character and body language scream \"\"over my dead body\"\". Marc Kudisch takes the Elvis aspect of Conrad Birdie to new heights with his subtle insertion of a \"\"thank you very much\"\" in \"\"Honestly Sincere\"\". His physicality though harkens back more to young Elvis then the bloated, stubly Conrad of the original film. The fact is that this movie differs so greatly from the original film (which added drawn in happpy faces, turtles on speed and the Russian ballet!!!) what did any of taht have to do with Bye, Bye Birdie, I wonder? The only possible advantage the original version has over this one is Ann Margret. Otherwise the update is better in every possible way. Where the old version cut many songs and increased dance breaks nwhere there was no need for them (and for all intents and purposes ended the movie in the middle of the play), the new version has restored the original music score and has added some great new stuff as well (\"\"A Giant Step\"\" being the standout in that category). We know live in trying times but if you want to get your mind off your troubles and put on a happy face then this is one worth checking out.\"\r\n0\t\"\"\"Sky Captain and the World of Tomorrow\"\" (an amazingly incovenient title) is simply a bad movie; it has no heart, no deep ideas, nothing very special about it. Yes, the CGI backgrounds look interesting, but the result is that the whole thing is shot in an annoying soft focus. Additionally, the movie uses music the same way as, say, \"\"Gilligan's Island\"\" or the Scooby-Doo cartoons-- IT NEVER STOPS. Terribly, simply terrible. There are no fresh ideas, either, just gobs and gobs and gobs and... etc., of bits taken from older movies and serials. There is no gatekeeper here, the movie just seems to exist because it can. Save your money and your time. Not entertaining at all.\"\r\n0\tThis movie is one of the worst comedy movies i have ever seen. I hate these Napoleon Dynamite rip-offs. Just face it people the dumb humor has been mastered already. Make something new for once. All these new comedies are just horrible. And coming out of SNL Andy Samberg is not ready for a lead role yet. I hope he can bounce back from this awful movie. And Will Arnetts character is just plain bad. Hey Will, did you read the script. The plot is truly the worst ever written. Now you tell me if this is weird. (this is the movie) Rod Kimble's step dad Frank is dying and the family needs $50,000 to pay for the heart surgery so Rod is planning this huge jump to raise money for Frank. Only so that Rod can beat Frank in a fight and prove his manliness. Yes thats the movie, you tell me, would u spend $7.00 to see that piece of crap!<br /><br />3/10 just horrible<br /><br />-adam\r\n0\t\"Nikolai Gogol's story \"\"Viy\"\" has been filmed again and released to home video in the US via Faith Films.<br /><br />The original story concerns a priest who has to watch over the body of a witch with only his faith to protect him. Greatly expanded and set in America, though clearly filmed in Russia (the houses,clothing and furnishing are all wrong despite the English signs), this is an odd film that doesn't really work.Part of it is the weird setting that tries very hard to be backwoods America but clearly isn't.There are also some weird, intentionally oblique moments as the main character being a reporter at the start and a priest a short time later. I'm not sure why they did that, even after watching the making of piece on the DVD) The other problem is the dubbing which is beyond awful. Its done in such away that everyone speaks when their lips are not on camera- or if they are the voices don't even remotely match the lip flaps. I don't know if its Faith Films fault or that of the producers who made the film hoping to dump into the West (revealed in the making of piece).<br /><br />The film isn't very good. As I've said it has all sorts of technical issues that just make this an odd ball curio. Despite some really good looking horror images the film never works as a horror film. As film to engender faith its much too confused in this retelling to amount to make anyone feel anyone closer to god.<br /><br />Given the choice I'd give it a pass, even at a bargain bin price. My advice would be to find the 1960's version of the tale called Viy which will bring both some shivers and some understanding about a belief in god.\"\r\n0\tVery rarely do I give less rave reviews on a show or film I dislike on IMDb, but Mighty Morphin Power Rangers is just so painstakingly dreadful, it's terrible.<br /><br />I wouldn't have minded if this had been an animated series- would've been better that way I guess, but as a live-action show, it typifies the terms 'cheesy' and 'campy'. Of which Power Rangers is. Five multi- coloured, spandex wearing teens battle evil by using their martial arts skills. The costumes are horrid- they look like something that is reminiscent of what track and field athletes and female gymnasts would wear. The acting is woeful, and the fight choreography is so shockingly bad and so lame to watch, it makes Jean- Claude Van Damme, look as equally as good as Bruce Lee, which is an understatement in itself. In fact, they look as if they are jumping and dancing about; like it was some version of the 'Nutcracker', or they were doing ballet, rather than fighting. Besides, there are some cartoons that heavily feature martial arts and yet it is done in a fun-yet not so cheesy way that makes it look silly.<br /><br />Kids show or not, this is just so lame and on the verge of absurdity. And even though this version is set in America, you could be forgiven into thinking that as you watch some of the fight sequences that they were not filmed in the US, but rather in Japan; thus the somewhat 'fake' fighting and footage was borrowed from the Japanese version-only to be juxtaposed onto the US version.<br /><br />If you like this type of thing, then stick with Sentai- the Japanese equivalent.\r\n0\t\"had some lovely poetic bits but is really just an artsy-fartsy toss-together with no direction or resolution. how do these people get through film school? who gives them money to make this crap? could have been so much more, fine lead actor, and i always like Fairuza Balk, but come on, the alt-rock metaphor of just staring vacantly unable to find anything compelling is just so tired, and it sure doesn't make for good films. the director needs to go away and live life for a good long while and not come back to the camera until they really have something to say. this is like the throw-spaghetti-at-the-wall school of art-making, just juxtapose a bunch of earnest imagery and hope hope hope like hell that poetry emerges. that can work, if the director actually has any kind of vision, or has a brain that knows when it's in the presence of potential, but here it's just space filler, of no consequence. i felt the lazy ending coming moments before it hit, and was yelling \"\"you lazy bastard\"\" at the screen when the credits popped up.\"\r\n0\tThis was an incredibly stupid movie. It was possibly the worst movie I've ever had the displeasure of sitting through. I cannot fathom how it ranks a rating of 5 or 6.............\r\n1\t\"All I can say is, first movie this season that got my attention. I picked it because of the actors, Gere and Claire, and the story looked promising..I have just watched it and i can say - i'm overwhelmed. There are shocking scenes, true..but that's what makes it more realistic. We shouldn't run away from our reality, these things are happening right this moment. And there are experts who are trying to change things and make things better and who get laughed out about their commitment to the cause. Actually I can't seem to feel the \"\"Hollywood touch\"\" in the movie..and that's what makes it better. Both Claire and Richard did a great roles, and deserve a 10 from me.\"\r\n0\tHaunted Boat sells itself as 'The Fog' meets 'Open Water'. In many ways this is accurate. There are scares and weird looking people to keep you interested.<br /><br />However the acting ability is poor at best. Showing clear signs that this is merely a bunch of friends making a horror film. Which in all credit they do to the best of their ability. When you accept the low budget makes it very difficult for special effects, with the ghosts looking pretty much like men with rubber masks on.<br /><br />Many aspects of the film are creepy and strange. But it suffers for using too many twists and turns in a short space of time which just leaves you bored and confused. In terms of keeping you awake the film does it very well. Ignoring the irrelevant twisting every 5 seconds near the end, you actually want to know what is going on. And are willing to wait the 1hr 35 minutes for the climax.<br /><br />This is no Ghost Ship but it'll definitely do for an evening in front of the T.V.\r\n0\tAmerican film makers decided to make a film they think is Japanese. The characters all badly represented, the actors are not even Japanese and the set is cheap, unreal and definitely doesn't represent Kyoto in Early 20ties and 30ties. Who ever read the book understand that the script writers didn't add any extra value to differentiate the movie from the script. Worse, they even changed the original plot line with a few goofs. Rob Marshall is using for his two main characters two well known Chinese actors who joined before in crouching tiger hidden dragon. Marshall probably saw one Chinese movie and tho they represent Japanese culture. Seeing those two actors together again even makes the movies more ridiculous. Quentine Tarantino's last scene in Kill Bill #1 is ten times more Japanese made than that of this movie.\r\n0\tThis is truly an awful movie and a waste of 2 hours of your life. It is simultaneously bland and offensive, with nudity and lots and lots of violence. However, the nudity is not that exciting, and the violence is repetitive and boring. Also, the plot is flimsy at best, the characters are unrealistic and undeveloped, and the acting is some of the worst I have ever seen. <br /><br />I have heard that this movie is supposed to be funny, but it's not. I did not laugh once while watching it, nor did I even crack a smile. The makers of this film tried to combine a comedy movie with an action movie, and they failed on both counts. <br /><br />Some poorly made movies are funny because they are so bad, but this is not one of them.\r\n1\tA glacier slide inside a cavernous ice mountain sends its three characters whoosh down a never-ending wet-slide tube that has enough kick to dazzle kids the same way mature audience may be dazzled by the star gate sequence that closes 2001: A Space Odyssey. Miles apart in vision, but it is a scene of great rush and excitement nonetheless. A magnificent opening sequence also takes place where a furry squirrel-like critter attempts to hide his precious acorn. You've probably seen this scene in the trailer, but as it takes place he starts a domino effect when the mountain starts cracking and, results, an avalanche. The horror just keeps going as the critter tries to outrun the impossible. <br /><br />The movie traces two characters, a mammoth named Manfred (Ray Romano) and a buck-toothed sloth (John Leguizamo) as they try to migrate south. They find a human baby they adopt and then decide to track the parent figures down to return to them. They are joined by a saber tiger named Diego (Denis Leary) whose predatory intentions is to bring the baby to his tiger clan, by leading the mammoth and the sloth into a trap. Diego's meat-eating family wants the mammoth most of all, but Diego's learned values of friendship make easy what choice to ultimately make at the end. <br /><br />There are fatalistic natural dangers of the world along the trip, including an erupted volcano and a glacier bridge that threatens to melt momentarily that is reminiscent of the castle escape in Shrek. Characters contemplate on why they're in the Ice Age, while they could have called it The Big Chill or the Nippy Era. Some characters wish for a forthcoming global warming. Another great line about the mating issues between girlfriends: `All the great guys are never around. The sensitive ones get eaten.' Throwaway lines galore, whimsical comedy and light-fingered adventure makes this one pretty easy to watch. Also, food is so scarce for the nice vegetarians that they consider dandelions and pine cones as `good eating.' <br /><br />The vocal talents of Romano, Leguizamo and Leary make good on their personas, while the children will delight in their antics, the adults will fancy their riffs on their own talents. There is some mild violence and intense content, but kids will be jazzed by the excitement and will get one of their early introductions of the age-old battle of good versus evil, and family tradition and friendship are strong thematic ties. The animators also make majestic use of background landscapes that are coolly fantastic.<br /><br />\r\n1\t\"I have seen this film only once, on TV, and it has not been repeated. This is strange when you consider the rubbish that is repeated over and over again. Usually horror movies for me are a source of amusement, but this one really scared me.<br /><br />DO NOT READ THE NEXT BIT IF YOU HAVE'NT SEEN THE FILM YET<br /><br />The scariest bit is when the townsfolk pursue the preacher to where his wife lies almost dead (they'd been poisoning her). He asks who the hell are you people anyway. One by one they give their true identities. The girl who was pretending to be deaf in order to corrupt and seduce him says \"\"I am Lilith, the witch who loved Adam before Eve\"\".\"\r\n0\tThe longer this film went on-and it seemed to tediously go on for ever- the more annoyed I became, as quite frankly, what a waste of time sitting through this total nonsense. How on earth do people get to make films like this,or indeed receive finance for such rubbish? Don't be fooled by the relatively high ratings on IMDb as it just proves you can fool some of the people all the time. And in this picture the main players have an obsession with guns, so it is not difficult to work out the way this movie will ultimately unfold. America can never understand that the rest of the world finds it bizarre how society in the USA has such an obscene and fatal 'gun culture'. <br /><br />Anyhow:<br /><br />The lead actor portrays a loser who escapes into a fantasy world of being a cowboy in an Urban sprawl.He comes across a family with two spoiled brat children, a teenage girl and boy; taken care of by a strict single parent father who can barely cope. The cowboy is seduced by the teenage girl or vice-versa, and the impressionable boy is seemingly taken in by the lunacy of the loser.<br /><br />The cowboy spends the whole time in a state of unreality and depression.A total loser who prefers to go to the beach then work for living, and then commits a burglary on his family as he is too lazy to make money legally.<br /><br />Ask yourself:<br /><br />Who wants to watch either a sad failed loser in a fantasy world holding a death wish, or indeed view a poor family who are in effect not much better than white trash?!<br /><br />This film is pointless drivel.<br /><br />It only saves itself from getting the lowest mark possible by some half listen able music:<br /><br />2/10.\r\n0\t\"Before writing this review, I went back and reread the reviews of others. This movie was a particular disappointment to me, since it features two of my favorite dancers, Gene Kelly and George Chakiris, boasts a score by the often wonderous Michel LeGrand (\"\"Wuthering Heights,\"\" \"\"Ice Station Zebra,\"\" \"\"The Thomas Crowne Affair\"\"). The dancing was stilted, unmotivated and unoriginal, the songs forgettable, the story a joke. Even the costuming was not particularly flattering. Only the photography correctly captured the proper mood and spirit. I'm glad other people enjoyed \"\"The Young Girls of Rochefort,\"\" though I most certainly did not.\"\r\n0\tFrom the opening dialog and scenes, I knew I knew I was in for a train wreck. Didn't want to look, but couldn't turn away. If it weren't for the meer eye candy of this film, I would have given one star. The fact that the interaction between characters and relationship behavior were so far fetched, added by poor direction and horrible story make this movie nothing more than a low-budget disaster. Money is definitely not a necessity to make a good film. But this movie fails so horribly there was no chance to rebound.<br /><br />If you were stuck out in the woods, your childhood best friend dying from an unknown disease, other friends dying around you, stranded in a strange place, what would you do?<br /><br />A.) Run away from everyone and try your luck on your own. B.) Have sex with your friends girlfriend. C.) Take a hot bath to relax your sorrows to include shaving your legs. D.) Bash in the head your childhood best friend and life-long crush with a shovel. E.) All of the above.<br /><br />According to Eli Roth, none of these answers are that far fetched. In fact, all are plausible and well represented in Cabin Fever. The total lack of reality and illogical attempt at explaining what people would do in traumatic situations throws this film in the bonehead bin at your local rental store. Stay away. Stay far away.\r\n0\t\"Woman with wig, who \"\"dyes\"\" her hair in the middle of the film (=takes of wig) presumably does not see what the audience can see from miles away:<br /><br />*** begin spoiler alert *** that her hubby is having an affair with her best girlfriend and they both try get rid of her. *** end of spoiler alert ***<br /><br />And what a spoiler that was: the title already gives it away, doesn't it? Bad acting, bad script: waste of time Oh yeah: in the end, she lives happily ever after....<br /><br />If you liked this movie, you'll really love \"\"Cannibal women in the Avocado Jungle of Death\"\"....\"\r\n1\tAbhay Deol's second film, written by Imtiaz Ali, maiden directorial effort by Shivam Nair. Soha probably has her first (?) meaty role as Megha, a girl who has run away from home and is waiting at the Delhi marriage registrar's office for her boyfriend Dheeraj (Shayan Munshi) to meet her. She waits and waits and finally is spotted as a damsel in distress by Ankush (Abhay Deol). They spend many days together as he extricates her from one distressing situation after another and finally falls in love with her. Then the boyfriend returns! Aage pardey par dekhiye! Sound familiar? This is yet another adaptation of Dostoyevsky's White Nights with a tiny bit of borrowing from Le Notti Bianchi (very tiny though - Ankush keeps the lovers apart by telling the boyfriend she is dead!). But this is an earthier and more realistic (duh) adaptation than the much hyped and overblown Saawariya. I wonder why no one brought this little gem up when we were all discussing Saawariya like crazy a few months ago.<br /><br />The Delhi settings are wonderful - there is the obligatory run through old Delhi, shots of Jama Masjid from a roof top, Connaught Circus, streets with rickshaws (What? How?). The colorful light fixtures in the hotel are enough to tell you this is a seedy joint with rooms for hire by the hour! <br /><br />The more I see of Abhay the more I like this young man. In this second film he is quite good as the for hire witness who is given a purpose in life by a beautiful woman. Soha looks beautiful, and when she smiles she fits the role, but I found her unconvincing in the more serious moments. I am not quite sure that she has it in her to be a great actress, or maybe she will blossom late like the brother. The music by Himesh Reshammiya is not that great and in fact the movie falters at the songs, they kind of interrupt the narrative and do not sit well with the characters trying to sing them. The supporting cast is excellent and I give this White Nights adaptation a thumbs up. BTW - the fact that I love Abhay Deol's cute dimples has NOTHING to do with my rating.\r\n0\tI have to say as being a fan of the man who created Halloween/The Fog/Christine/The Thing - probably his best films.<br /><br />Then you got this POS. I can't logically think he put any effort at all into this like he did with Cigarette Burns. At least his son made a decent soundtrack.<br /><br />You have to look at this from the standpoint that it didn't seem like a movie. It looked as if someone else directed it for one thing. I won't believe Carpenter put any effort into this at all.<br /><br />I was just listening to his old school H2/H3/The Fog soundtrack and it was awesome, especially for the times.<br /><br />He was using a style that no one had and it worked so well for his films.\r\n1\t\"I have just watched the whole 6 episodes on DVD. The acting throughout is excellent - no question. There was not quite enough action for me I must say. No real suspense as such, just plenty of first class character development. Nothing like Tinker Tailor in terms of \"\"whodunnit\"\". If you like a good story slowly and carefully told then this is for you. Peter Egan as the lead Magnus Pym is excellent.<br /><br />The film portrayed the life of a traitor. A man who should have been a loyal member of the British Intelligence Service but who was so damaged psychologically by his unhappy childhood that deception became his way of life in all things. As a child he adored his father but his father was exposed time & time again as a crook and a con man. Pym betrayed not for ideology or money but because he needed to deceive those closest to him (wife, son, mentor). Pym is fatally damaged by his father's influence - it has eaten his moral fibre away. He has no real love or loyalty in him.<br /><br />Heavy psychological stuff and not many light moments in the 6 hour series. Very well done though.\"\r\n1\t\"Hint number one - read the title as \"\"the Time of the Mad Dog,\"\" or perhaps dogs. This is a pretty good ensemble piece (look at the cast and rent it - you know you're curious already), and first-time director Bishop gives them their chance, taking his time, letting the characters interact and chew the scenery as they wait - not enthusiastically - for the return of \"\"the big boss\"\" and whatever revenge ensues.<br /><br />For some of us, the highlight is seeing Christopher Jones after his self-imposed exile from films; he remains a commanding film presence. And yes, with Christopher Jones, Larry Bishop and Richard Pryor involved, this IS the \"\"Wild in the Streets\"\" reunion party!\"\r\n1\tAlthough she is little known today, Deanna Durbin was one of the most popular stars of the 1930s, a pretty teenager with a perky personality and a much-admired operatic singing voice. This 1937 was her first major film, and it proved a box-office bonanza for beleaguered Universal Studios.<br /><br />THREE SMART GIRLS concerns three daughters of a divorced couple who rush to their long-unseen father when their still-faithful mother reveals he may soon remarry--with the firm intention of undermining his gold-digger girlfriend and returning him to their mother. Although the story is slight, the script is witty and the expert cast plays it with a neat screwball touch. Durbin has a pleasing voice and appealing personality, and such enjoyable character actors as Charles Winninger, Alice Brady, Lucile Watson, and Mischa Auer round out the cast. A an ultra-light amusement for fans of 1930s film.<br /><br />Gary F. Taylor, aka GFT, Amazon Reviewer\r\n1\tA great Bugs Bunny cartoon from the earlier years has Bugs as a performer in an window display at a local department store. After he's done for the day the manager comes in to tell him that he'll be transferring soon. Bugs is happy to oblige into he figures out that the new job is in taxidermy...and that taxidermy has to do with stuffing animals. Animals like say, a certain rabbit. This causes a battle of wits between the rascally rabbit and his now former employer. I found this short to be delightful and definitely one of the better ones of the early 1940's. It still remains as funny nearly 60+ years later. This animated short can be seen on Disc 1 of the Looney Tunes Golden Collection Volume 2.<br /><br />My Grade: A-\r\n0\tYes, I am just going to tell you about this one so don't read if you want surprises. I got this one with the title Christmas Evil. There was also another Christmas horror on the DVD called Silent Night, Bloody Night. Whereas Silent Night, Bloody Night (not to be confused with Silent Night, Deadly Night) had lots of potential and was very close to being good, this one wasn't quite as good. It started out interesting enough watching the villain (if you can call him that) watching the neighborhood kids and writing in books about who is naughty and nice, but after awhile you are looking for some action and this movie doesn't deliver. You need character development, but this goes overboard and you are still never sure why the heck the guy snaps. About an hour in he kills three of four people while a whole crowd watches in terror, and the guys he kills aren't even his targets they are just making fun of him. This is one of many unsuccessful attempts by the killer to knock of the naughty. He then proceeds to try and kill this other guy, and he tries to break into his house by squeezing himself into the fireplace. He promptly gets stuck and barely manages to get out. He then enters through the basement and then tries to kill the guy by smothering him in his bedroom. He can't seem to kill the guy this way so he grabs a star off the tree and slits the guys throat. What the heck was a tree even doing in the bedroom in the first place? Oh yeah, the killer before this kill stopped off at a party and had some fun too. Well that is about it except for the town people chasing him with torches and the unresolved part with his brother and that tune he wants to play. What was that even about? He kept talking about something that was never really explained. How does it end you ask, well since I have spoilers I will tell you. He runs off the road in his van and proceeds to, well lets just say it was lame!!!!!!!!!!!!\r\n1\tI saw only the first part of this series when it debuted back in the late 90's and only recently got a chance to watch all three parts via Netflix (convenient service by the way). All in all, I liked this lighthearted, sometimes genre challenged, mini series. The story of a younger man falling for an older woman seems to work and the actors are all fine. Yes, it does have some romance clichés of running in the rain or a train station goodbye, but the characters have a chance to be explored so it doesn't seem cheesy, like it would be if this were some Tom Hanks vehicle or similar. Robson Greene, who at times reminds me of a separated-at-birth Scott Bakula does a fine job of someone who is head over heels in love and the ebb and tide of desire and rejection throws the series into watchable fare. Personally, I think the series could have been done with two episodes, but that's up for debate I suppose. Apparently, there's a sequel, and that should be arriving tomorrow via Netflix.\r\n1\t\"Well it was a nice surprise after all. its trailer did not predict a good film at all, it was even a bit misleading. Especially the part of Jeff Bridges was a positive surprise, well written, sardonic and funny. Less real though, I do not think a guy who got where he got would show signs of such irreverence towards everything that his current company stands for. One does not become a top suit just to doubt it all suddenly again. The ending of the film, during the showing of Dolce Vita, was too corny, cliché and quite disappointing. And of course a guy like Pegg's character would not last past his first week in a blitz New York magazine like this. I hope one day I will see a decent role written for Megan Fox, here she looked a poor actress playing a bimbo. And by the way, I do not see why she is the \"\"sex symbol\"\" of the year, I see hotter girls on nearly every cover of every magazine.\"\r\n1\t\"\"\"All the world's a stage and its people actors in it\"\"--or something like that. Who the hell said that theatre stopped at the orchestra pit--or even at the theatre door? Why is not the audience participants in the theatrical experience, including the story itself?<br /><br />This film was a grand experiment that said: \"\"Hey! the story is you and it needs more than your attention, it needs your active participation\"\". \"\"Sometimes we bring the story to you, sometimes you have to go to the story.\"\"<br /><br />Alas no one listened, but that does not mean it should not have been said.\"\r\n0\t\"Wow. The only people reviewing this positively are the Carpenter apologists. I know a lot of those. The guys that'll watch John Carpenter squat on celluloid and pinch out a movie and proclaim it a masterwork of horror. This \"\"movie\"\" is utter crap. It looks and sounds like a porno (good lord, the soundtrack is awful...), and has sub-par porn acting, which is shocking, because normally Ron Perlman is really a very good actor. I honestly have no idea what Carpenter was thinking when making this. Most likely \"\"Beans, beans, beans..\"\" until somebody fed him and rolled him up into a blanket for the day... They say nothing about the abortion debate whatsoever, when they could have had a very interesting central theme (how do religious zealot anti-abortionists feel when it's the devil's baby?) but instead they chose to have Ron Perlman and his terribly acted kids kill a bunch of people and have the horribly cast doctors try to calm the hysterically bad pregnant girl. Not a single person from this episode or what have you should come away unscathed. It's just awful. Like, Plan 9 From Outerspace awful. Like, good god please would somebody turn it off before I soil myself awful. Try watching this and The Thing in the same day and your mind will implode.\"\r\n1\t\"In the movie several references are made in subtly to Blade runner, but one of the most obvious is the fact the Cain 607 and his unit are all genetic constructs, breed to be expendable warriors. But as favorite quote of mine from the movie is, \"\" you should have made them smart as well as fast\"\". Kurt Russell did a incredible job, his facial expressions or lack of in the movies gave more in the way of relating the story then the rest of the cast combined. Even when he falls in love with Sandra but does not know how to deal with these emotions, and his tears after being expelled from the group, or his shuddering when he is given a hug, and his attachment to the mute young boy who in many ways reminded Todd of himself, and what he could have been if not for his selection to be a soldier.\"\r\n1\t\"A film that can make you shed tears of sadness and tears of joy would be considered quite a step in the career of a common filmmaker. The fact is, Steven Spielberg, probably our greatest story-teller, has been doing this in various movie formats for years. THE COLOR PURPLE, at the time, was considered risky, especially after action classics like JAWS and RAIDERS OF THE LOST ARK. In hindsight, this film should have come as no surprise, for Spielberg had made us cry tears of joy and sadness in E.T. Critics called COLOR PURPLE his entrance into intellectual fare. It is quite an entrance. No special effects, no swashbuckling, just brilliant story-telling based on a literary classic by Alice Walker. One surprise is how Spielberg could present such a moving film about African-Americans in the deep south. Slavery is gone, but in the south depicted here, it seems as though blacks are using other blacks as slaves. <br /><br />Spielberg is always put down for sentimentalizing his pictures or adding an element of childishness to please the audience. This is really the first of overlooked films from his career that you cannot make these observations. It is the first in a line of films people either didn't see or wouldn't see because there are no aliens. EMPIRE OF THE SUN, ALWAYS, SCHINDLER'S LIST, etc.. His awesome talent is obvious with this specific picture because A) he uses mostly untrained, first-time actors, B) he tackles a subject most felt was unadaptable to the screen, and C) it is pure drama with no strings pulled where characters grow and change over the passage of roughly 30 years. It is almost epic-like in look and scope and the fact that it did not garner a single Academy Award from 11 nominations is a travesty and an insult.<br /><br />Whoopi Goldberg is fabulous as the tortured Celie, an unattractive woman given away by her incestuous father to an abusive Danny Glover, who she only knows as \"\"Mister\"\". The film follows a path of occasional beatings and mental torture she goes through while with \"\"Mister\"\". The PG-13 rated film is pretty open to the sexual issues raised by the Walker novel. This is not \"\"The Burning Bed\"\" in Georgia by any means. There is no blatant revenge taken as might be expected. It happens gracefully. Goldberg perfectly plays a human being, someone in need of love and someone who deserves it. The films' most poignant and heartbreaking moment comes when Goldberg and her sister, Nettie (played by Akosua Busia) are separated, maybe forever. (Possibly foreshadowing Holocaust separation of child and parent?) You may have to check for a pulse if you are not moved by this sequence.<br /><br />The color purple stands for the beauty of the fields and flowers surrounding these poor people. There really is something to live for, but love triumphs over all. Spielberg bashers take note: the guy can make an unforgettable classic without any cute aliens.<br /><br />RATING: 10 of 10\"\r\n0\t\"When I read the back of the DVD case, I thought that it sounded really interesting... so... I had my mom throw it into the pile of movies in the \"\"4 for 20 dollars\"\" section at Blockbuster. When we got home and popped in the movie... twenty minutes into it, we found ourselves turning to each other going \"\"this sucks. Let's put in something else.\"\" I'll admit, a few of the lines from the friends at the café made us smile a little bit. But come ON, at least get some decent actors! Every once in a while in a movie, if the acting is bad and the movie isn't going at a painfully slow pace and actually seems interesting, I can gut it out and get a few laughs at how they're over(or under)doing their lines. But I can only take so much. Crying scenes looked like the actors were having hysterical fits of laughter, there was no delivery for their lines... amateur doesn't even come close to the acting in this film.<br /><br />Anyone who came on here saying that this film was good had to have been on some REALLY good drugs while they were watching the movie. It's the most pointless thing I've ever had the displeasure of watching. DO NOT WATCH OR BUY THIS MOVIE!!!!!\"\r\n0\t'Succubus', the edited version of 'Necronomicon Geträumte Sünden', is a struggle to sit through, even at a lean 76 minutes; any more of this dreadfully boring and pretentious Euro horror tripe and I may have slipped into a coma.<br /><br />Jess Franco once again delivers a truly awful piece of 60s trash that appears to have been made by a cast and crew out of of their heads on Class A hallucinogenics, since not one second of this mess made any sense whatsoever. Apparently, this is one of the better of his 180+ films  it's hard to believe that there are worse efforts out there.<br /><br />The unfathomable plot deals with Franco's usual themes of sex, violence and lesbianism and throws in a bit of S&M for good measure, and yet it still manages to remain mind numbingly tedious.<br /><br />I may leave it quite a while before entering the world of dodgy Euro Horror again  life is too short to be spent watching bilge like this.\r\n0\t\"I missed the first 10 or so minutes of the movie but don't think watching it from the beginning would've made any difference. I found the film extremely boring and was disappointed with the acting. I remember Patrick Swayze and some of the other actors (Roy Marsden, for instance) in outstanding roles but they all disappointed here due to a very weak script. \"\"Kind Solomon's Mines\"\"...the very short part of the movie inside the \"\"mines\"\" was about as exciting as watching paint dry and I doubt that even a pre-school kid would've been spell-bound by watching the fight of the \"\"warriors\"\". The entire movie was reminiscent of a cheaply produced American TV series. Give me Indiana Jones any day!\"\r\n1\t\"This is how I feel about the show.<br /><br />I started watching the show in reruns in 2001.<br /><br />I enjoy the show but it had too many faults.<br /><br />I HATE THE MICHELLE & JOEY CHARACTERS!<br /><br />Stealing story lines from old TV shows. They even stole from \"\"The Partirdge Family.\"\" Then in 1 episode \"\"The Partridge Family\"\" was mentioned.<br /><br />Actors playing different roles in different episodes. MTV Martha Quinn the most notable doing this, especially when she played herself in 1 episode.<br /><br />The Michelle character COULD NOT take a joke but then they had this little kid act out \"\"revenge\"\" to her sisters for a joke by them on her.<br /><br />Story lines that came & went in 1 episode. Joey getting the TV show with Frankie & Annette, never heard from it again after that. Danny all of a sudden playing the guitar. 1 episode he is coaching soccer, 1 episode he is coaching softball/baseball. 1 game & you are out huh Danny? <br /><br />Jesse & Joey keep getting jobs REALLY QUICKLY with no experience. Only in a TV show.<br /><br />I did like the D.J. & Stephanie characters. Wish Jodie Sweetin could have learned from Candace Cameron Bure & had a clean NON drug adult life.\"\r\n0\tI got the DVD very cheap and I'm a total Drewbie, and thats probably the only constellation where this movie could ever interest anyone.<br /><br />An early Drew movie, she's looking great, and she gets a quite lot of really cute scenes of her, like a shower scene, a sexy dance scene, quite a number of sexy outfits etc. She does never show the friendly charm we know from her more recent movies.<br /><br />The movie itself is pretty average or sub-average, and much more looking like being made for the TV than one for the cinema. There is no real horror or tension built up and the dialogs are often cheesy.<br /><br />The most interesting part is probably the end because I honestly don't understand it. But maybe there is nothing to understand about it anyway. But at least you don't get the end you would be expecting, and it also comes much sooner than one would have expected.<br /><br />Overall I think this movie is exclusively for Drewbies.\r\n1\tAlain Chabat is a fine actor, writer and director but maybe a trifle misguided to take an 'idea' credit for a story that probably had them rolling in the aisles when Aristophanes was still learning that it's 'i' before 'e' except after 'c'. But, like I said, Chabat is a fine actor and he can do charm when he needs to. I'm also gradually overcoming an aversion to Charlotte Gainsbourg who also turns in an accomplished performance. If you absolutely insist on knowing, the 'plot' is the one about the guy well into his forties and more than content to be single. This doesn't sit well with his mother and five sisters and to get them off his back he makes an 'arrangement' with the sister of a colleague to pose - for fifteen thousand euros -as his new girlfriend, allow the romance to come to fruition with a wedding and then jilt him, thus getting him off the hook. Naturally they wind up together but along the way there's some sub-Benedek and Beatrice duelling and all things considered it's a pretty painless ninety minutes and performing so well at the French box office that a sequel may not be out of the question.\r\n0\tIf you hate redneck accents, you'll hate this movie. And to make it worse, you see Patrick Swayze, a has been trying to be a redneck. I really can't stand redneck accents. I like Billy Bob Thornton, he was good in Slingblade, but he was annoying in this movie. And what kind of name is Lonnie Earl? How much more hickish can this movie get? The storyline was stupid. I'm usually not this judgemental of movies, but I couldn't stand this movie. If you want a good Billy Bob Thornton movie, go see Slingblade.<br /><br />My mom found this movie for $5.95 at Wal Mart...figures...I think I'll wrap it up and give it to my Grandma for Christmas. It could just be that I can't stand redneck accents usually, or that I can't stand Patrick Swayze. Maybe if Patrick Swayze wasn't in it. I didn't laugh once in the movie. I laugh at anything stupid usually. If they had shown someones fingers getting smashed, I might have laughed. people's fingers getting smashed by accident always makes me laugh.\r\n1\tClaire Denis's Chocolat is a beautiful but frustrating film. The film presents a very interesting look at the household of a European colonial family living in Cameroon, giving the viewer an informative perspective on the lives of many characters and their interaction. However, the development of these characters is often maddeningly insufficient. For example, a central theme in the story is young France's inability to form strong relationships with others. Although this portrayal is executed flawlessly, notably in the way that Denis frames the story with scenes from France's return to her childhood home, the girl's lack of intimacy with the film's other characters makes it difficult for a viewer to invest much interest in her development (or lack thereof) as a protagonist. The general stagnation of the film's character development makes it difficult to become engaged in the loosely organized plot. The film raises a great deal of tension between characters, particularly between Aimee and the men in her life, but never fully addresses this social friction, leaving the viewer unsatisfied. The final few scenes are powerful but depressing. Denis's work is certainly interesting from an intellectual and historical standpoint, but if you are looking for a film with adventure or drama, Chocolat is definitely not the best choice.\r\n1\t/The first episode I saw of Lost made me think, i thought what is this some people who crashed and get chased by a giant monster. But it's not like that, it's far more than that,because their is no monster at all and every episode that you see of Lost , well it's getting better every time. a deserted island with an underground bunker and especially the connection between the people who crossed paths with each other before they crashed. That's the real secret.<br /><br />This series rules and I can't wait to know what's really going on there I hope that they don't air the last 2 episodes in the theaters,this series deserves a 9 out of 10\r\n0\tOkay, I've tried and I've tried, but I STILL DON'T GET this Guy Maddin thing. Tales From the Gimli Hospital left me cold, that movie about the Austrian villagers and the one about the Ice Nymph were pretty to look but lacking in the story department...and this nudie movie about abortion and hockey is just boring. I'm glad Maddin has an appreciation for silent film, but I dislike his films for the same reason I dislike the films of Quentin Tarantino: they're empty homages to better, more imaginative films--films that advanced the art form or broke new ground--and are all style and no substance. No amount of jump cuts and odd camera angles can disguise the fact that Maddin is an unoriginal David Lynch wannabe, though he DOES have one advantage over Tarantino: he generally doesn't write embarrassing dialogue, because most of his films rely on intertitles. The bottom line is, Maddin's schtick is clever clever film-making for aspiring film majors.\r\n1\t\"This is the funniest stand up I have ever seen and I think it is the funniest I will ever see. If you don't choke with laughter at the absolute hilarity, then this is just not your cup of tea. But I honestly don't know anyone who has seen this that hasn't liked it. It is now 17 years later and my friends and I still quote everything from Goonie Goo Goo to the fart game, Aunt Bunnie to the ice cream man, Ralph and Ed to GET OUT!! There are just so many individual and collective skits of hilarity in here that if you honestly haven't seen this film then you are missing out on one of the best stand-ups ever. Take any of Robin Williams, Damon Wayans, The Dice, George Carlin or even the greats like Richard Pryor or Red Foxx and this will surpass it. I don't know how or where Murphy got some of his material but it works. That is what it comes down to. It is funny as hell.<br /><br />Could you imagine how this show must have shocked people that were used to Eddie doing Buckwheat and Mr. Rogers and such on SNL? If you listen to the audience when he cracks his first joke or when he says the F-word for the first time, they are in complete shock.<br /><br />His first time he says the F-word is when he does the skit about Mr. T being a homosexual.<br /><br />\"\" Hey boy, hey boy. You look mighty cute in them jeans. Now come on over here, and f@** me up the ass!\"\"<br /><br />The crowd erupts in gales of laughter. No one was expecting the filthy mouth that he unleashed on them. But the results were just awesome. I have never been barraged with relentless comedy the way I was in this stand-up. In fact, the next time my stomach hurt so much from laughing wasn't until 1999 when I saw SOUTH PARK: BIGGER LONGER AND UNCUT . That comedy was raw and unapologetic and it went for the jugular, as did DELIRIOUS. I don't think it is possible to watch this piece of comic history and not laugh. It is almost twenty years later and it is still the funniest damn thing on video.<br /><br />\"\" I took your kids fishing last week. And I put the worm on the hook and the kids put the fishing pole back in the boat and slammed their heads in the water for two minutes Gus. Normal kids don't do shit like that Gus. Then they started movin their heads around like this and the m****f***** come up with fish. Then they looked at each other and said Goonie Goo Goo! I said can you believe this f****n shit?!\"\"<br /><br />See it again and be prepared to laugh your freakin ass off!<br /><br />10 out of 10\"\r\n0\tCorridors of time. The movie you can watch if you're looking for a sophisticated way of suicide. Some use guns, ropes, or gas, but you want to ruin your brains ? Do not wait any longer ! Corridors of time is probably one of the biggest possible mistakes : thinking Christian Clavier is able to act and to bring you fun. I do not miss the 45 francs this poor thing cost me : sometimes, one has to reset its evaluation system looking at the absolute zero. This film deserves a 2/10, but that's only because I like Jean Reno. Too bad for him, he also stars in Ronin. I think I'm gonna dislike him...\r\n1\t\"After her Oscar-nominated turn in \"\"Secrets & Lies\"\", Brenda Blethyn starred in the equally great \"\"Saving Grace\"\". And let me tell you, this is not the sort of movie that you find every day.<br /><br />After her husband commits suicide, Grace Trevethyn (Brenda Blethyn) discovers that his irresponsible financial decisions have left her with a massive debt. Fortunately, she finds a way to make ends meet: marijuana. That's right, Grace starts cultivating it.<br /><br />Every aspect of this movie was played to great effect; there isn't a dull moment anywhere in it. And I sure didn't see that end scene coming! But anyway, you gotta see this movie. You just might feel more than a little festive after seeing it. If nothing else, it might function as a good lesson about knowing one's finances. But of course, there's a LOT more to it than that!\"\r\n1\t\"The story of the untouchable who acted like a great soldier, saving the lives of hundreds if not thousands, is told in the 1939 film \"\"Gunga Din.\"\" Based loosely on the Rudyard Kipling poem, the film is brilliantly directed by George Stevens and stars Cary Grant, Douglas Fairbanks Jr. and Victor Mclagen. The title role is played by Sam Jaffe, well known in my era as Ben Casey's boss, Dr. Zorba, a name that became synonymous with big, out of control hair. Say \"\"Dr. Zorba hair\"\" to anyone of my generation, and they know what you're talking about.<br /><br />Set in India at the time of the British occupation, three soldiers - two romantic, dashing figures in Grant and Fairbanks, and McLagen as a big lug - are cut-ups - in reality, three overgrown boys. Gunga Din is the water carrier, treated somewhat meanly - verbally, anyway - by McChesney (McLaglen), but Cutter (Grant) is fond of him. When he catches Din (pronounced Deen) practicing being his soldier walk and salute as he apes the unit during their maneuvers, Cutter gives him a few pointers.<br /><br />The merry band of musketeers is going to break up when Ballantine (Fairbanks) announces he's about to be married to a lovely young woman (Joan Fontaine) and leaving the service. However, when Gunga Din and Cutter run across Thugees, a murderous cult led by a guru (Eduardo Cianelli), Gunga Din escapes to warn the unit, and Ballantine insists on re-enlisting to help save Cutter. It's a buddy movie after all.<br /><br />\"\"Gunga Din\"\" starts out lightheartedly, with slapstick and wonderful, broad comedy, particularly by Cary Grant, who is quite funny. Both he and Fairbanks are so handsome, it's hard to decide which one to look at first. Much of the film is made up of huge action sequences which are very exciting. In the last part, the story becomes very dramatic and culminates in a tense, thrilling battle.<br /><br />Grant has the showiest role, Fairbanks is the lovesick romantic, and McLaglen as McChesney, mostly due to his treatment of Gunga Din, is the most unlikeable character, although one detects his soft heart in his love for his elephant Annie. His softness comes through toward the end of the movie, particularly in the very touching, tear-jerking final scene.<br /><br />Always a gentle and likable actor, Sam Jaffe gives a beautiful performance as Gunga Din, a simple, brave man with a big smile, powerful imagination and lofty dreams. Without much dialogue, Jaffe conveys Gunga Din's soul magnificently.<br /><br />This is truly the ultimate adventure film, massive in scope, with good acting, rousing scenes, a wonderful musical score, and some beautiful cinematic images. Another one from that remarkable year, 1939. Highly recommended.\"\r\n0\t\"Bette Davis brings her full trunk of tics to this miserable flop which is another variation on the \"\"hilariously mismatched\"\" lovers theme. Sadly, Cagney and Davis are truly mismatched in acting styles and the mix is not simply unpalatable but distasteful. The only distinction in the film comes from Eugene Pallette who, literally, phones in his usual part as the deb's misunderstood dad. Jack Carson's performance can only be described as an act of mayhem on the audience\"\r\n1\t\"I just watched this film again and remain dismayed at the number of cynics who dismiss it as just New Age pap. A great film, one that takes its time to develop, it keeps coming close to going over the edge but never does and ultimately is meditative, affecting, and truer to life than most films people who dismiss its \"\"coincidences\"\" can see. I was angry at the time that movies like \"\"Prince of Tides\"\" and \"\"Bugsy\"\" (though I liked the latter) were nominated for best picture that year (let alone that \"\"Silence of the Lambs\"\" won!) and this was ignored completely except for one nomination for best screenplay. Upon revisiting it, I think history supports my initial reaction!\"\r\n0\t\"My title above says it all. Let me make it clearer. If you have seen the BBC's \"\"Planet Earth\"\" , which I am sure most of you have , then you are not gonna like this movie too much. And I own all the discs of \"\"Planet Earth\"\" I had seen the rating for this movie very high , and read good reviews about it. I was excited to check it out.<br /><br />Alas, I went to the theater and the movie started , I saw it was a Disney movie with production companies listing BBC and Discovery. And when they started the first scenes about the polar bear, I recognized them from my DVDs at home of \"\"Planet Earth\"\".<br /><br />The movie continued and went on and on and on , me and my friends kept on recognizing the scenes were all from \"\"Planet Earth\"\".<br /><br />We were very very disappointed , as I think 90% of the footage is from \"\"Planet Earth\"\" . I am saying 90% , because some of the scenes I didn't recognize. I have a feeling that I simply didn't remember them.<br /><br />So finally what this movie really is , is a compilation of different footages from the different discs of \"\"Planet Earth\"\" , with a narration aimed at kids. Yes, the narration is quite kiddish. Let me give you an example. When they show the polar cubs walking away from the mother cub , the narrator says \"\"The polar cubs are not like human kids. They don't always listen to their mothers\"\" ( I don't remember the exact words , but this is how it is ) So in a nutshell. This is condensed \"\"Planet Earth\"\" for kids !\"\r\n0\tI don't think any movie of Van Damme's will ever beat Universal Soldier but u never know. This movie was good but not as good as 1st. VD returns a Luc & must do battle again. He tries 2 b funny here but its maybe worth a smirk of a chuckle. VD has a kid this time from Ally W., good it showed a pic of them 2. Goldberg was cool, he does his famous move-forgot what its called cause i don't watch wrestling-sucks. VD & Goldberg had some good fights. It was the ending like the 1st but just not that good. VD does his best move in his career, like always-the HELICOPTER KICK. Even though, the final ending should've been longer. Anyway, it is worth seeing but it will never top the original.\r\n0\t\"This is an attempt, by both author Edgar Rice Burroughs and filmmakers, at an Arabian \"\"Tarzan of the Apes\"\". But, this desert-set film shows none of the majesty present in Burroughs' more successful jungle adventure. The focus is on the love between handsome English noble Jon Hall (as \"\"El 'Lion\"\" Chatham) and exotic Arab beauty Kathleen Burke (as \"\"Princess\"\" Eulilah), with revenge happening to coincide with their urge to merge. The opening states that, although guilty of conduct unbecoming, the lad's mother is living - but, she never re-enters the picture. Unfortunately, \"\"The Lion Man\"\" has deteriorated, and is looks like it's missing footage.<br /><br />*** The Lion Man (1936) John P. McCarthy ~ Jon Hall, Kathleen Burke, Ted Adams\"\r\n0\t** HERE BE SPOILERS ** <br /><br />Recap: Mia (Helin) is returning home from capital Stockholm to rural Rättvik to celebrate her fathers 70th birthday. She is by far the youngest child, and has two sisters Eivor (Ernst) and Gunilla (Petrén). Eivor has a family and still lives in Rättvik and Gunilla has divorced and moved a town away. Mia is still single and is focused on her career. There are a lot of jealousy and almost animosity between the sisters and conflicts arise all around as they confront each other and each have personal problems they have difficult to handle. As the party goes on (and alcohol consumed), more and more secrets become unveiled and more and more conflicts arise...<br /><br />Comments: To be the work of a new writer/director it was disappointing to see this movie to follow in the exact same tracks that older Swedish comedy/dramas has been following for years. There are really no new elements or ideas. This movie draws upon three basic areas. 1) Embarrassing humor only based on characters making a fool of themselves. 2) Sorrow and 3) Anxiety. This move has the focus on the last one, almost forgetting the first point as the movie goes along. No loss though, since the humor that is there is not funny. The performances from the cast are good I guess, though it is lost behind all the anguish and soon forgotten. I had hopes that there would be new ideas and influences, but there were none. To conclude, there are better ways to spend one's time than watching this.<br /><br />3/10\r\n0\tsomewhere i'd read that this film is supposed to be a comedy. after seeing it, i'd call it anything but. the point of this movie eludes me. the dialogue is all extremely superficial and absurd, many of the sets seemed to be afterthoughts, and despite all the nudity and implied sexual content, there's nothing erotic about this film...all leaving me to wonder just what the heck this thing is about! the title premise could have been the basis for a fun (if politically incorrect) comedy. instead, we're treated to cheap, amateurish, unfinished sketches and depravity and weirdness for its own sake. if i want that, i'll go buy a grace jones cd.\r\n0\tI'll be blunt and to the point. This film is not good at all. The film buff part of me hated the acting, script, story, direction and almost all of the editing. Amanda Peet has proven that she can act, as she was a high point of 'The Whole Nine Yards'. So she should have avoided this movie with a ten foot pole. However, the infantile part of me found this film to be very funny. If you can forget about how underpar the production quality is, and if you find smut jokes funny, then you should be all right. And for those of you who can't get off your pedestal, thats your choice. My inner child hasen't died, and I laughed a fair bit. Even then, only a 3 out of ten, because as a movie, it really does stink.\r\n1\t\"Surreal film noir released soon after the \"\"real,\"\" genre-defining classics \"\"The Maltese Falcon,\"\" \"\"Double Indemnity\"\" and \"\"The Postman Always Rings Twice.\"\" Welles films shouldn't be evaluated against others. He was playing by different rules. In fact, he was playing. This starts where other femme fatale films leave off, so the vaguely logical (but interesting) whodunit is embellished with a display of Wellesian scenes (typical rapid-fire style), dialog (lots of \"\"hard-boiled\"\" philosophy), and unusual acting (good Hayworth presumably intentionally one-dimensional). To Welles \"\"genre\"\" may have meant \"\"formula\"\" but he seemed to like using \"\"mysteries\"\" as backgrounds for his \"\"entertainments.\"\"\"\r\n0\tThis film just goes around in circles, and the viewer does not know where they are. At first I thought..mmmmm, could be kinda cool movie this, but it just drags on and on, and eventually you don't know what's going on. The lead female is a good actress and played her role well, and the psycho fella, is creepy, but after a bit you don't really care what happens, because this film just drags on. Shame really, this could have turned out a lot better.<br /><br />Would say though that the lead female and psycho fella, will have a good career ahead of them , but will they remember this film, for making them known, or for being the film they regret they ever made.\r\n0\tThis is a bigger budgeted film than usual for genre director Honda (with more evidently elaborate sets)  though the special effects still have that distinctive cheesiness to them (witness the giant bats and rodents on display). It also utilizes a surprising number of American actors: Joseph Cotten playing the visionary scientist looks ill-at-ease and frail (but, then, his character is supposed to be 204 years old!), an innocuous Richard Jaeckel is the photographer hero while, as chief villains, we get Cesar Romero and Patricia Medina (both essentially campy). As I've often said, I grew up watching English-language films dubbed in Italianbut hearing Hollywood actors in Japanese is another thing entirely! <br /><br />LATITUDE ZERO feels like a juvenile version of a typical Jules Verne adventure, and is fairly entertaining on that level; indeed, it's preferable to Honda's low-brow variations on the monsters-on-the-rampage formula because of the inherent quaint charm of the set-up in this case. The plot involves the kidnapping of a famous scientist by Romero  he was intended to establish himself in the underwater, technologically advanced city devised by Cotten (to which the world's foremost minds are being recruited). We're treated to plenty of silly battles between the rival subs, but the most amusing scenes are certainly the raid on Romero's cave  in fact, Cotten doing somersaults and fending off men in rubber suits (via flames and laser emitted from his glove!) must surely count as the nadir of his acting career; the other elder in the cast, Romero, is more in his element  after all, he had been The Joker in the BATMAN TV series and movie of the 1960s! Cotten has a scantily-clad blonde physician on his team, and is assisted by a hulking Asian; Romero, on the other hand, is flanked by an Oriental femme fatale  who, however, ends up getting a raw deal for her efforts (the girl's brain is eventually transplanted into a hybrid of lion and condorwhich is among the phoniest-looking creatures you ever saw!). Apparently, a 2-disc set of this one from Media Blasters streets on this very day!!\r\n0\tGenerally I don't do minus's and if this site could i would give this movie -3 out of 10 meaning I really hated this movie. I thought Uwe Boll's alone in the dark was the worst i've seen yet but at least i gave it a 2.5 out of 10 in my opinion(Stephen Dorff shooting at nothing made me laugh so i boosted the ratings a bit). Hell if it was if compared to bloodrayne, Bloodrayne would win a Oscar for best movie if they were competing.<br /><br />Now to the plot, this movie is about the BTK killer which is fine but they've could have done better. The start looked OK but that's it I had to fast forward most of it because the death's where boring. I like killer movies and even if they suck they could still get some cool deaths. I'm not a fancy movie expert but believe me he would have shot himself if did see this. Sorry for rambling but there's nothing good to say about it, because it looks like someone took a camcorder and film this.. this.. thing of disaster. Uwe Boll your movies are no longer on my list of worst movies ever this took the cake.<br /><br />Well sorry i couldn't explain the plot(if there was one) but that was the best i could. Now if you don't mind i'm going to crawl into a corner and move back and forth and reminding me of how bad this movie scared me for life.... OK not for life\r\n1\t\"This is a great film Classic from the 40's and well produced. There are very dramatic scenes in this film with John Garfield,(Al Schmid),\"\"Force of Evil\"\",'48 and Dane Clark,(Lee Diamond),\"\"Last Rites\"\",'88, fighting the Japs during WWII being completely surrounded and with only one machine-gun. When Al Schmid was able to go home after being wounded with a horrible injury, his problems just started to begin with his family and engaged girl friend. Dane Clark gave an outstanding supporting role as Lee Diamond, who did everything to help his buddy Al get his life together again. There is never a complete victory to War and lets not forget all the Brave Wounded Military personnel in Veterans Hospitals from All the Wars and our present Iraq Vets!\"\r\n1\t\"Elvira Mistress of the Dark is just that, a campy concoction of fun, sex appeal, horror and comedy all poured into a low cut black gown and toped with a sky high black bouffant hair-do. This movie is sure to delight any fan of Elvira's. It takes you upclose and personal with Elvira and probes deep into her...um past revealing her enormous... ancestry.<br /><br />The movie takes you on a ride with Elvira as she goes from TV Horror Hostess with the Mostess to her home town of Fallwell Mass to claim her inheritance from a deceased Great Aunt. Where she encounters a stuffy town, a studly cinema owner, a creepy Great Uncle who seems to be after her for more than her good looks. A slew of high school kids that immediately love her, and a town board who are will do anything to get her out of town, even if it means burning her at the stake! Watch Elvira woo the kids, stalk the stud, avoid her creepy Great Uncle and thumb her nose at the stuffy uptight 'preservatives' who have no kind words for her, in Elvira Mistress of the Dark!<br /><br />As Elvira would say \"\"I guarantee it'll be a scream! (screams in background) Whoa! Good thing I didn't say it'd be a gas!\"\"\"\r\n1\t\"Good horror movies from France are quite rare, and it's fairly easy to see why! Whenever a talented young filmmaker releases a staggering new film, he emigrates towards glorious Hollywood immediately after to directed the big-budgeted remake of another great film classic! How can France possibly build up a solid horror reputation when their prodigy-directors leave the country after just one film? \"\"Haute Tension\"\" was a fantastic movie and it earned director Alexandre Aja a (one-way?) ticket to the States to remake \"\"The Hills Have Eyes\"\" (which he did terrifically, I may add). Eric Valette's long-feature debut \"\"Maléfique\"\" was a very promising and engaging horror picture too, and he's already off to the Hollywood as well to direct the remake of Takashi Miike's ghost-story hit \"\"One Missed Call\"\". So there you have it, two very gifted Frenchmen that aren't likely to make any more film in their native country some time soon. \"\"Maléfique\"\" is a simple but efficient chiller that requires some patience due to its slow start, but once the plot properly develops, it offers great atmospheric tension and a handful of marvelous special effects. The film almost entirely takes place in one single location and only introduces four characters. We're inside a ramshackle French prison cell with four occupants. The new arrival is a businessman sentenced to do time for fraud, the elderly and \"\"wise\"\" inmate sadistically killed his wife and then there's a crazy transvestite and a mentally handicapped boy to complete the odd foursome. They find an ancient journal inside the wall of their cell, belonging to a sick murderer in the 1920's who specialized in black magic rites and supernatural ways to escape. The four inmates begin to prepare their own escaping plan using the bizarre formulas of the book, only to realize the occult is something you shouldn't mess with Eric Valette dedicates oceans of time to the character drawings of the four protagonists, which occasionally results in redundant and tedious sub plots, but his reasons for this all become clear in the gruesome climax when the book suddenly turns out to be some type of Wishmaster-device. \"\"Maléfique\"\" is a dark film, with truckloads of claustrophobic tension and several twisted details about human behavior. Watch it before some wealthy American production company decides to remake it with four handsome teenage actors in the unconvincing roles of hardcore criminals.\"\r\n0\t\"I'm a big fan of Lucio Fulci; many of his Giallo and splatter flicks are amongst my favourites of all time, but this made for TV movie is extremely sub par and not what I've come to expect from the great Italian director. The film is neither interesting, like some of Fulci's more tame Giallo's, or gory like the majority of his cult classics; thus leaving it lacking in both major areas, and ultimately ensuring that the film isn't very good. The film works from a plot that has been used many times previously, but still it's an idea that always has the chance of springing an interesting story just because it focuses on the theme of the afterlife, which is the ultimate unknown. This film focuses on Giorgio Mainardi; a man that isn't exactly well liked and after he dies of an apparent stomach hemorrhage, there aren't many people that are sad to see him go. This means that his ghost is trapped somewhere between life and the afterlife, and so he decides to try and get to the bottom of his death, and his only ally in this endeavour is his daughter.<br /><br />The video that I saw this film on is proudly proclaimed that the film is \"\"in the style of HP Lovecraft\"\", and that's one of the most blatant attempts to sell a film I've ever seen. There is nothing even slightly reminiscent of the great horror writer in this tale, and the reason for that tagline would appear to be because of title similarity to the Stuart Gordon/Lovecraft film, 'From Beyond' - which is a lot better. The film does benefit from a distinctly Italian style, and the score is rather good. Unfortunately, however, Fulci has seen fit to positively roast every scene in it - and so the theme quickly becomes annoying. The plot plays out in a really boring way, and most of the scenes simply involve the ghost 'desperately' trying to find things out, or the daughter placing her suspicions over her family members. This movie was made for Italian TV, and so it's not surprising that it's all rather tame. There's a little bit of gore and a nightmare sequence with zombies; but this isn't the Fulci we all know and love. Overall, this film is extremely mediocre and not a good representation of Fulci's talents. Not worth bothering with, unless you're a Fulci completist.\"\r\n0\tI liked the initial premise to this film which is what led me to hunt it out but the problem I quickly found is that one pretty much knows what's going to happen within the first 20-30 minutes ( the doubles will come from behind the mirror and take over everybody).<br /><br />There is no real twist (which is fine) , but the final reveal doesn't make a great deal of sense either (how can she be racked with uncertainty and fear for the whole film, if she's an evil id from beyond the mirror?).<br /><br />Admittedly the scenes 'beyond the mirror' were chilling when they first appeared and the blonde's murder is also effectively creepy, but ultimately alas this seems to be a film in search of a story or a more engaging script, piling atmosphere upon atmosphere and over the top scary sound design for 80-90 minutes does not really cut it, in fact it gets quite dull.\r\n1\t\"Despite being quite far removed from my expectations, I was thoroughly impressed by Dog Bite Dog. I rented it not knowing much about it, but I essentially expected it to be a martial arts/action film in the standard Hong Kong action tradition, of which I am a devoted fan. I ended up getting something entirely different, which is not at all a bad thing. While the film could be classified as such, and there is definitely some good action and hand to hand combat scenes in the film, it is definitely not the primary focus. Its characters are infinitely more important to the film than its fights, a rather uncommon thing in many Hong Kong action movies.<br /><br />I was really quite surprised by the intricacy of the characters and character relationships in the film. The lead character, played by Edison Chen (who is really very good), becomes infinitely more complex by the end of the film than I ever thought he would be after watching the first thirty minutes. The police characters also defied my expectations thoroughly. In fact, the stark and honest portrayal of the seldom seen dark side of the police force was quite possible my favorite aspect of the film. I don't know that I would say Dog Bite Dog entirely subverts typical notions of bad criminal, good cop, but it certainly distorts them in ways not often seen in film (unfortunately). So many films, especially Hong Kong action films I find, portray police in what is frankly a VERY ignorantly idealized light. This is one of my least favorite things about the genre. I was pleasantly surprised to see that Dog Bite Dog actually had some very unique, and really quite courageous, ideas to present about the police force. There are negotiation scenes in this film that I have never seen the likes of before, and doubt I will ever see again, and am sure I will remember for quite a while. Also, the criminal characters are shown from an interesting perspective as well, there is some documentary footage in the film of Cambodian boys no older than ten being made to fight each other to the death with their bare hands, which I thought was one of the film's most powerful and moving moments. It says a lot about the reason these guys are the way they are, rather than simply condemning them. Also, the relationship between Chen's character and the girl he meets in the junk yard reveals a lot about his character. It wasn't until this element entered the film that I really started to see the film as an emotional experience rather than only a visceral one. There is something about most on screen relationships that doesn't quite get through to me, but for some reason this one really did. The actress does an incredible job with this role which I imagine was not easy to play.<br /><br />Dog Bite Dog also features some really breathtaking cinematography, all though it is unfortunately rather uneven. There were some moments that I found really striking, particularly in the last segment of the film, but there was also a good deal of camera work that was just OK. Another slight problem I had was with the pacing, which I also felt was uneven. I found a lot of the \"\"looking for a boat\"\" scenes to be a little alienating, all though it quickly picks up after that. The action scenes are short and not too plentiful, but are truly powerful and effecting, particularly towards the end. The fight choreography is honestly not all that impressive for the most part, all though to its credit it is solid and fairly realistic, but the true strength is the emotional content behind the fights. The final scene, while not a marvel of martial artistry or fight choreography, is one of the most powerful final fights I have ever seen, and I've seen quite a few martial arts films.<br /><br />I suppose the biggest determining factor of whether or not one will get much out of Dog Bite Dog is whether or not you can connect with the characters. All of them are certainly some of the more flawed characters one is likely to see in a film of any kind, but there was something very human about all of them that I couldn't help but be drawn to and really feel for them, particularly Chen's girlfriend. I should say that I doubt most people will like the film as much as I did simply because I imagine that most people will not like or care about the characters in the same way, but I still recommend it highly all the same. It is truly a deeply moving and effecting film if you give it a chance.\"\r\n1\tOrigins of the Care Bears & their Cousins. If you saw the original film you'll notice a discrepancy. The Cousins are raised with the Care Bears, rather than meeting them later. However I have no problems with that, preferring to treat the films as separate interpretations. The babies are adorable and it's fun watching them play and grow. My favourite is Swift Heart Rabbit. The villain is a delightfully menacing shapeshifter. I could empathise with the three children since I was never good at sports either. Cree Summer is excellent as Christy. The songs are sweet and memorable. If you have an open heart, love the toys or enjoyed the original, this is not to be missed. 9/10\r\n0\t\"Granted, this seems like a good idea. Steve Martin, Goldie Hawn, and John Cleese in a Neil Simon comedy. Where can you go wrong? Watch the movie, and you'll find out.<br /><br />In truth, Martin, the lead, is mis-cast. He's not doing the great slapstick he's known for, from movies like \"\"The Jerk\"\", but instead plays a sort of in-between character that doesn't work. Hawn, with no one to play off of, is terrible. Cleese is the only even partially funny member.<br /><br />To top it off, the plot is pretty stupid. I can't say how much of it may have been changed, but the characters seem to lack the slightest bit of common sense. They blunder through New York, not doing anything right, and unfortuneatly, nothing funny. Not only is the whole premise completely unbelievable, it seems to give the message that people who don't live in New York aren't very bright, a theme repeated throughout the movie.<br /><br />In summation, instead of seeing this, go rent the original \"\"Odd Couple\"\" again.\"\r\n1\t\"Jonathan Demme's directorial debut for Roger Corman's legendary exploitation outfit New World Pictures rates highly as one of the finest chicks-in-chains 70's grindhouse classics to ever grace celluloid. Beauteous Russ Meyer starlet Eric (\"\"Vixen,\"\" \"\"Beyond the Valley of the Dolls\"\") Gavin gives a robust, winning performance as a brassy, resilient new fish who does her best to persevere in a grimy, hellish penitentiary. The always fabulous Barbara Steele offers a deliciously wicked portrayal as the mean, crippled, sexually frustrated warden (her erotic dream about doing a slow, steamy striptease in front of the lady inmates is a real dilly). Longtime favorite 70's B-movie actress Roberta (\"\"The Arousers,\"\" \"\"Unholy Rollers\"\") Collins delivers a hilariously raunchy and endearing turn as a cheerfully forward, foul-mouthed kleptomaniac felon who tells a gut-busting dirty joke about Pinnochio. Lynda Gold (a.k.a. Crystin Sinclaire of Tobe Hooper's \"\"Eaten Alive\"\" and Curtis Harrington's \"\"Ruby\"\") makes her lively film debut as uninhibited wildcat Crazy Alice. And the ever-cuddly Cheryl \"\"Rainbeaux\"\" Smith does a lovely, touching reprise of her fragile frightened innocent role from \"\"Lemora: A Child's Tale of the Supernatural.\"\" <br /><br />Although this picture does deliver the expected ample amount of coarse language, nudity, rape and violence, it's still by no means a typically crass and sexist piece of lurid mindless filth; the movie very effectively explores the many ways in which men cruelly exploit women and strongly asserts the pro-feminist notion that women can overcome any obstacles if they band together into a group so they can bravely face their misogynistic oppressors as one mighty fighting force. Demme's zesty, confidant direction comes through with a glorious abundance of astutely observed incidental details and delightful moments of engagingly quirky human behavior. Furthermore, both Tak Fujimoto's vibrant cinematography and John Cale's marvelously dolorous oddball blues score are 100% on the money excellent. Patrick Wright (Sheriff Mack in the uproariously awful cheap-rubber-monster-suit creature feature howler \"\"Track of the Moonbeast\"\") has a sidesplitting bit as a jerky cop who has his car stolen by a trio of prison escapees when he stops at a gas station to use the bathroom. Lively, rousing and immensely enjoyable, \"\"Caged Heat\"\" qualifies as absolutely essential viewing for 70's drive-in movie fans.\"\r\n0\tAbsolutely horrific film. Ameteurish and it isn't funny at all. Lead character played by Mehmet Ali Erbil is very annoying. Edits by E.T and star wars is just plain stupid.<br /><br />Actor Yilmaz Goksal is the only good think about this movie. He should master his English and move to Hollywood. Hollywood can not find an actor with his qualities. Other than Goksal this movie is a garbage.<br /><br />Director Gani Mujde is a comic writer and this movie is his worst written work to this date.<br /><br />Music of Cem Karaca is another plus of this waste of money. Actor Sumer Tilmac also have some presence. Actor who plays the three sons has no talent what so ever.\r\n1\t\"There aren't many overcoming-the-odds stories quite like that of Christy Brown. Born with cerebral palsy in 1930s Dublin, his parents thought his handicap was mental as well as physical. Though eventually properly diagnosed, Brown, in a lower working-class family with nearly 20 children, had to push himself just to be appreciated by his family. Through the use of his only fully-functioning limb, his left leg, he taught himself to write and paint, both skills he developed expertly. <br /><br />But what makes the film version of Brown's autobiography \"\"My Left Foot\"\" such a great retelling is its humility. Both director/writer Jim Sheridan and star Daniel Day-Lewis have managed to tell this story in a way that doesn't scream for attention and resort to melodrama. Cheesy struggles and scenes of frustration as well as glorious moments of minute victory are easy pitfalls of a story so miraculous, yet \"\"My Left Foot\"\" stays real and intrinsically inspired.<br /><br />Day-Lewis is the easiest to highlight. Playing anyone with such serious physical impairments has to be a demanding task. Not only does Day-Lewis give us a very complete picture of Christy, but he also manages to chronicle the growth, improvement and inner change of the character in different stages of his life. He plays Christy at 17 when he had limited language capability and was emotionally volatile just as crisply as he does the intellectually learned Christy who struggles to cope with why he can't find non-platonic love. The latter theme is the film's strongest and it would've been nice for Sheridan and co-adapter Shane Connaughton to really flesh that out. Regardless, Day-Lewis gets us to understand and sympathize with all those elements, giving a performance that's so believable you often don't have time to think \"\"wow, he's such a great actor.\"\" Those are the most commendable performances.<br /><br />Equally important but through more subtle means is Sheridan's work on the film. This story is about day-to-day life and struggles. Although Christy has such a unique set of circumstances hampering his life, his struggles are not unlike our own and Sheridan grasps that concept completely. Christy struggles with love, parental attention, questions of self- worth and capability. His struggles are just more physically manifested (literally and figuratively) than ours. <br /><br />Sheridan gives us moments that capture the spirit of the large Brown family and Christy's unique place in it. The drama evolves naturally when tensions are highest and the humor comes in much the same way. The dinner scene when Christy learns that his doctor/teacher -- the woman he loves -- is going to marry his brother Peter is the film's finest example of both Day-Lewis and Sheridan's efforts. It's built up to so well by Sheridan that it comes out when we're ready and Day-Lewis takes us from there with his stunning work.<br /><br />The other strong component of the film is Brenda Fricker as Mrs. Brown. I did not know she'd won the Oscar, but there was something about her performances as Christy's loving and wise mother that just screamed Oscar-worthy. Her love for Christy and constant fighting for him just seems so convincing and heartfelt and she earns a lot of sympathy given her situation.<br /><br />The emotional punch of the film given the story is surprisingly minimal. Perhaps that was part of the sacrifice of trying to create a film that feels organically human. The two should be reconcilable, but I imagine it's challenging to tell a story that feels true-to-life and one that provides enough dramatic moments to take our emotions on a roller coaster. The choice to downplay the latter was definitely the wise one for \"\"My Left Foot.\"\" Brown's circumstances speak for themselves -- they don't need to be squeezed for weightier dramatic impact.<br /><br />~Steven C<br /><br />Visit my site moviemusereviews.com for more\"\r\n0\t\"I knew my summary would get you. How is this movie like a Pet Rock and Disco?! Well, unless you lived through the 1970s or 80s, you probably can't understand WHY anyone would like a New Coke or own a Pet Rock (and frankly, at least in the case of Pet Rocks, I STILL don't understand it completely). They're just a couple things that seemed to make sense at the time but really baffle the younger generation. The same can be said for Kay Kyser and his band. At the time (the 1940s mostly), they were very popular and had enough clout that the studio starred them with Boris Karloff, Bela Lugosi AND Peter Lorre in this film. Yet, if you didn't live at that time (it was well before my time), you wonder why anyone liked this sort of \"\"entertainment\"\". After all, Kyser and his band mates are incredibly obnoxious and their humor is very, very broad (i.e., unsophisticated and cheesy). Frankly, I couldn't stand their antics nor did I appreciate that there were just too many musical numbers in the film. Because of these factors, the great supporting cast was given a back seat and fans of these actors will probably be disappointed.<br /><br />The film involves Kyser and the band coming to a mansion where a young lady and her wacky aunt live. Once there, the bridge is washed out and strange happenings begin. Eventually, it culminates in some attempts on Sally's life and a séance (of sorts). It's all played for laughs--and it's really not a horror movie despite the cast.<br /><br />Overall, it's passable entertainment at best. As a Lugosi and Karloff fan, I sure felt cheated having to watch Kyser and his knuckleheads.\"\r\n0\t\"When I was little my parents took me along to the theater to see Interiors. It was one of many movies I watched with my parents, but this was the only one we walked out of. Since then I had never seen Interiors until just recently, and I could have lived out the rest of my life without it. What a pretentious, ponderous, and painfully boring piece of 70's wine and cheese tripe. Woody Allen is one of my favorite directors but Interiors is by far the worst piece of crap of his career. In the unmistakable style of Ingmar Berman, Allen gives us a dark, angular, muted, insight in to the lives of a family wrought by the psychological damage caused by divorce, estrangement, career, love, non-love, halitosis, whatever. The film, intentionally, has no comic relief, no music, and is drenched in shadowy pathos. This film style can be best defined as expressionist in nature, using an improvisational method of dialogue to illicit a \"\"more pronounced depth of meaning and truth\"\". But Woody Allen is no Ingmar Bergman. The film is painfully slow and dull. But beyond that, I simply had no connection with or sympathy for any of the characters. Instead I felt only contempt for this parade of shuffling, whining, nicotine stained, martyrs in a perpetual quest for identity. Amid a backdrop of cosmopolitan affluence and baked Brie intelligentsia the story looms like a fart in the room. Everyone speaks in affected platitudes and elevated language between cigarettes. Everyone is \"\"lost\"\" and \"\"struggling\"\", desperate to find direction or understanding or whatever and it just goes on and on to the point where you just want to slap all of them. It's never about resolution, it's only about interminable introspective babble. It is nothing more than a psychological drama taken to an extreme beyond the audience's ability to connect. Woody Allen chose to make characters so immersed in themselves we feel left out. And for that reason I found this movie painfully self indulgent and spiritually draining. I see what he was going for but his insistence on promoting his message through Prozac prose and distorted film techniques jettisons it past the point of relevance. I highly recommend this one if you're feeling a little too happy and need something to remind you of death. Otherwise, let's just pretend this film never happened.\"\r\n0\t\"Granting the budget and time constraints of serial production, BATMAN AND ROBIN nonetheless earns a place near the bottom of any \"\"cliffhanger\"\" list, utterly lacking the style, imagination, and atmosphere of its 1943 predecessor, BATMAN.<br /><br />The producer, Sam Katzman, was known as \"\"King of the Quickies\"\" and, like his director, Spencer Bennett, seemed more concerned with speed and efficiency than with generating excitement. (Unfortunately, this team also produced the two Superman serials, starring Kirk Alyn, with their tacky flying animation, canned music, and dull supporting players.) The opening of each chapter offers a taste of things to come: thoroughly inane titles (\"\"Robin Rescues Batman,\"\" \"\"Batman vs Wizard\"\"), mechanical music droning on, and our two heroes stumbling toward the camera looking all around, either confused or having trouble seeing through their cheap Halloween masks. Batman's cowl, with its devil's horns and eagle's beak, fits so poorly that the stuntman has to adjust it during the fight scenes. His \"\"utility belt\"\" is a crumpled strip of cloth with no compartments, from which he still manages to pull a blowtorch and an oxygen tube at critical moments!<br /><br />In any case, the lead players are miscast. Robert Lowery displays little charm or individual flair as Bruce Wayne, and does not cut a particularly dynamic figure as Batman. He creates the impression that he'd rather be somewhere, anywhere else! John Duncan, as Robin, has considerable difficulty handling his limited dialogue. He is too old for the part, with an even older stuntman filling in for him. Out of costume, Lowery and Duncan are as exciting as tired businessmen ambling out for a drink, without one ounce of the chemistry evident between Lewis Wilson and Douglas Croft in the 1943 serial.<br /><br />Although serials were not known for character development, the earlier BATMAN managed to present a more energetic cast. This one offers a group going through the motions, not that the filmmakers provide much support. Not one of the hoodlums stands out, and they are led by one of the most boring villains ever, \"\"The Wizard.\"\" (Great name!) Actually, they are led by someone sporting a curtain, a shawl, and a sack over his head, with a dubbed voice that desperately tries to sound menacing. The \"\"prime suspects\"\" -- an eccentric professor, a radio broadcaster -- are simply annoying.<br /><br />Even the established comic book \"\"regulars\"\" are superfluous. It is hard to discern much romance between Vicki Vale and Bruce Wayne. Despite the perils she faces, Vicki displays virtually no emotion. Commissioner Gordon is none-too-bright. Unlike in the previous serial, Alfred the butler is a mere walk-on whose most important line is \"\"Mr Wayne's residence.\"\" They are props for a drawn-out, gimmick-laden, incoherent plot, further saddled with uninspired, repetitive music and amateurish production design. The Wayne Manor exterior resembles a suburban middle-class home in any sitcom, the interiors those of a cheap roadside motel. The Batcave is an office desperately in need of refurbishing. (The costumes are kept rolled up in a filing cabinet!)<br /><br />Pity that the filmmakers couldn't invest more effort into creating a thrilling adventure. While the availability of the two serials on DVD is a plus for any serious \"\"Batfan,\"\" one should not be fooled by the excellent illustrations on the box. They capture more of the authentic mood of the comic book than all 15 chapters of BATMAN AND ROBIN combined.<br /><br />Now for the good news -- this is not the 1997 version!\"\r\n0\tExcruciatingly slow-paced, over-scripted black comedy with a too-clever premise and bad acting.<br /><br />Maybe this would have worked as a Twilight Zone or Tales from the Crypt episode, but by the last half, you just want it to get to its predictable ending and be done with it already.\r\n1\t\"While Fred Schepisi's \"\"I.Q.\"\" doesn't really have any important qualities, it's still worth seeing. Walter Matthau plays Albert Einstein, trying to help mechanic Ed Walters (Tim Robbins) fall in love with Princeton mathematics doctoral candidate Catherine Boyd (Meg Ryan). Probably the funniest scene is when Dr. Frizzyhead and friends (Lou Jacobi, Gene Saks and Joseph Maher) try to make Ed look like a scientist: he ends up looking like a French impressionist.<br /><br />Obviously little of the movie is historically accurate, but that's not the point. It's not intended as anything except a light comedy, quite the opposite of Robbins's most famous movie from 1994 (The Shawshank Redemption). A movie about Einstein's whole life would have to focus not only on his scientific achievements, but also his political activism, namely how he wrote a letter on behalf of the Scottsboro Nine and came out against nuclear weapons (it got to the point where the FBI kept a file on him).<br /><br />So anyway, this one is acceptable. Also starring Stephen Fry, Tony Shalhoub, Frank Whaley, Charles Durning and Keene Curtis.\"\r\n1\tTHE SOPRANOS (1999-2007)<br /><br />Number 1 - Television Show of all Time <br /><br />Everyone thought this would be a stupid thing that wouldn't go past a pilot episode. The Sopranos has become a cultural phenomenon and universally agreed as one of the greatest television shows of all time. <br /><br />James Gandolfini plays the enigmatic New Jersey crime boss, Tony Soprano, accompanied by a stellar cast. Edie Falco is superb as the worrying, loving upper-middle class mother; Tony Sirico is tremendous as a superstitious, greying consiglieri who is often very funny. <br /><br />While the show has often been criticised for the negative stereotype of Italian-Americans as mafiosi, and to an extent this is undeniable, I can see so many positives from the show. The portrayal of strong family values, friendships, love and compassion; could this be present in a coarse television show about gangsters? Yes. Furthermore, other burning issues are discussed such as terrorism, social inequality and injustice, homosexuality, drugs etc. This is no shallow, dull show about tough guys and violence. It has so much more. Many of the issues we see on the show are very real. <br /><br />The writing which has been pretty much great has infused so successfully current issues and managed to imbred them within the characters' lives, which makes the whole thing more interesting.<br /><br />Credit must go to David Chase who has created an excellent television treasure and to James Gandolfini, for envisioning, television's most complex and enigmatic character. <br /><br />Simply exceptional.<br /><br />10/10\r\n0\t\"... so I thought I'd throw in a few words about William McNamara. Not a bad way to spend a couple of hours if you want to see him in his tighty-whities -- it's obvious he pumped up for this role and he looks pretty darn good in them -- or less. There's an extended sequence in a cave where he has to strip down to his undies. There's a nice bit where he has to chase after Miss Eleniak in the buff, with only his hands cupped over his groin. William McNamara is naturally a little on the skinny side, but he has a nice, generous handful of a booty. Also, there's a moment when he's getting out of bed that if you pause the action at just the right moment you can see the whole enchilada. If you're inclined to do so, and come on, half of the people who choose to watch a movie about Navy men on a \"\"road trip\"\" are. I'd just like thank Dennis Hopper for his equal opportunity gratuitous nudity. Can William McNamara act? Heck if I know.\"\r\n0\tImagine you're a high-school boy, in the back of a dark, uncrowded theater with your girlfriend. How bad would a movie have to be, in order that you would feel compelled to leave the theater and head home before it ended? This movie is that bad. Really. Movies often become so bad that they're good; this movie is beyond that stage of bad-ness. It is painfully bad. Horribly, terribly, crime-against-humanity bad.\r\n1\tWhat starts out as generational conflict in this movie, ends in understanding, solemnity and grace. The movie meanders through Europe with the father and the young son cramped in a car over 3000 miles. The cramping forces lifestyles, beliefs and life skills to collide. There's really no clear winner. It all adds up in the end as experience, experience of multiple layers of life. For those interested in understanding Islam, this movie offers a generous and gentle outlook, without being pushy about the agenda. It's a coming of age story for the young son, his dismissive and rebellious nature turning to openness for receiving more ways of life.\r\n1\tThe only show I have watched since 90210! Why did they discontinue it? It was the only show that captured the essence of Hawaii and made you feel like you are a part of it all! The least they should do is release it on DVD! <br /><br />I checked out similar shows, but nothing has come close. The cast had incredible chemistry and I looked forward to each episode with much anticipation. <br /><br />They made a big mistake by pulling that show. If anyone has any info regarding where I can obtain a DVD of North Shore please post a few lines here. Thanks! Aloha!\r\n1\t\"Not only was this movie better than all the final season of H:LOTS. But it was better than any movie made for TV I have ever seen!<br /><br />Looking at the \"\"Top 250\"\" I see that only one small screen movie has made it: How the Grinch Stole Christmas. I think it is time to increase that group to 2.<br /><br />I will admit that the original series had several shows that were better than this, but I didn't mind. I just LOVED being able to enter the world of the Baltimore Homicide Squad again!\"\r\n1\t\"This is bar none the most hilarious movie I have ever seen. Beginning with the four delinquents being sent off by their fathers to Wienberg Military Academy, a tone is set that steadily continues all throughout this goofball film, and it does not let up for a second.<br /><br />It's tough trying to describe this film; the humor elements are so spot on and brilliantly concieved that upon a first look it appears as nothing more than a stupid 80's teen lust comedy. But it is oh so much more than that! Fresh from the minds of those folks over at MAD Magazine, Up the Academy serves up a formula and style that I have never since seen duplicated by ANY of the \"\"funniest\"\" offerings to come out of Hollywood in years past. Basically the film is so full of infantile cornball material that you might guess that the writers were a couple of 14 year olds themselves. See this movie if you love to act \"\"immature.\"\" A classic. *****\"\r\n1\t\"When I was born, this television series was the number one show on T.V.!! America epitomized the feat of the ultimate fatted calf country with big ambitions, limitless potential, and a very comfortable economy!! After a big Sunday dinner, why not sit back and watch \"\"Bonanza\"\", IN COLOR!!! This homey western evokes an American tradition which accompanies the complacency of the typical U.S. household during the era in which it was viewed.. The breathtaking cinematography of Lake Tahoe symbolized an infinite prosperity of the emerging American culture!! Western Movies were so popular that Western Television Shows followed suit!! This was a period in time in our country which yearned for a concise reflection on our own country's struggle for survival!! The end result of the trials and tribulations at the Ponderosa Ranch, as demonstrated in this series, sparked a realization that Americans are now auspiciously enjoying the fruits of the Cartwright's painstaking labor!!<br /><br />The T.V. Show \"\"Bonanza\"\" was popular for so many different reasons, mostly on account of the fact that the late fifties and early sixties had not yet established the divisiveness of two different cultural mindsets which was ready to surface with our nation! The unification of ideologies in the United States which prevailed during the debut of \"\"Bonanza\"\" was a big reason for the show's success!! In the show's later years, \"\"Bonanza\"\" had established a firmly entrenched core market television audience!! The cast to \"\"Bonanza\"\" became famous, and the wholesome entertainment of \"\"Bonanza\"\" encompassed a camaraderie for the All-American idealist!! Everybody liked \"\"Bonanza\"\" and a lot of Americans totally loved it!! Reflecting on rough and tumble family values is a favorite past time of many Americans, and the television show \"\"Bonanza\"\" was perfect for that frame of mind!! I liked the show a lot, and most people I know like it as well!! Certainly, my entire family loved \"\"Bonanza\"\"!! This show was one of the all time American classics in the history of television!!\"\r\n0\tThere is no reason to see this movie. A good plot idea is handled very badly. In the middle of the movie everything changes and from there on nothing makes much sense. The reason for the killings are not made clear. The acting is awful. Nick Stahl obviously needs a better director. He was excellent in In the Bedroom, but here he is terrible. Amber Benson from Buffy, has to change her character someday. Even those of you who enjoy gratuitous sex and violence will be disappointed. Even though the movie was 80 minutes, which is too short for a good movie (but too long for this one),there are no deleted scenes in the DVD which means they never bothered to fill in the missing parts to the characters.<br /><br />Don't spend the time on this one.\r\n0\t\"Contrary to its title, this film offers no spice and thus audience is subjected to a tasteless dish. All Humor appears forced, theatrical, mechanical, staged, reminiscent of those Pakistani plays available on video, including even the mannerisms. Everybody is screaming, shouting and doing odd things for no reason. The premise looks interesting as it is a straight lift from Hollywood's 'Boeing Boeing\"\". John Abraham who is so natural in almost all his films is a complete misfit here. If we keep morality factor aside, even then the bizarre events looks trite. Akshay Kumar and Paresh Rawal, two experienced stalwarts try hard to lift the film by being natural but in vain. At least, the characters of three girls should be made contrasting in order to bring some interesting elements but sadly here too all of them appears those brainless, buxomed bimbettes (3Bs) who talk, behave and even scream in quite similar fashion. The major hole in the plot is what made the protagonist keep the three girls at his same home pretending that they will never get to know about each other? Just to do some Sex, what else? The same could be done in hundreds of other ways. Therefore so much dramabaazi for no reason is not something audience will digest easily. But surely, great flesh show and tempting promos always gives such films a great initial. Now for those who call it a situational comedy, I call it a pathetic taste. Sense of humor of such cinema going audience is surely gone corrupted and demented to the extent that they are connecting to a sadistic, weird and maddening type of humor, where it is not the characters that they laugh at but rather at themselves and at their own frustrations that look how senseless we have become that in order to laugh we have to bear with such things?\"\r\n1\t\"\"\"Cinema is dead, long live the cinema!\"\" said Peter Greenaway, one of the most innovative and productive contemporary directors, at the last year's Romanian film festival Anonimul, which got to the third edition and takes place in the Danube Delta. This year the direction prize went to Jafar Panahi's \"\"Offside\"\". I got to see it this evening in Bucharest at the festival's retrospective. Cinema is dead but still very lively. Panahi's film tells in a compelling manner how Iranian society looks. Digitally filmed, \"\"Offside\"\" is a story inspired by a real-life event happened to Panahi's daughter: the trouble and risk took when decided to attend a football match. This is forbidden in Iran as we are informed. What Panahi manages to do is to render with few means, but with, probably, a lot of work, intelligence and humor the cultural patterns in a society that places women at a distinct level. The absurdity of the laws becomes comical. The film has a happy end, after all because Iran's team goes to the World Cup. What I appreciated most was the concept, the idea behind this film. I would be very interested to see Panahi's other films that were forbidden in Iran as well. I guess that he can be thought as an activist director.\"\r\n0\t\"*WARNING. THERE MIGHT BE SPOILERS AHEAD, IF YOU CARE.*<br /><br />Okay, the basic premise of this homegrown Texas film is: College kids + spookhouse + evil magic book = scary stuff. In practice, it equals a lot of time looking at the time to see how much longer this movie is going to drag on. A bunch of frat boys, along with assorted girlfriends & volunteers, is setting up a charity haunted house. The project is being presided over by a thoroughly repellent character, whose main purpose seems to be verbally & physically assaulting as many cast members as possible. I had a hard time believing that anyone would even attempt to work with this person in any capacity: he's nothing but rude and abusive to everyone, including his girlfriend and his buddy. Regardless, the kids are visited by local character & annual pumpkin-carving champion \"\"Pumpkin Jack\"\", an elderly coot who is described as the \"\"Santa Claus of Halloween\"\", and who drops off a load of props for the house, including an ominous book that figured prominently in the irritatingly strobe-flashed prologue(where a gaggle of robed cultists get turned into stir-fry). Needless to say, some damn fool starts messing with the book, and eventually most of the costumed monsters turn into real ones, and the remaining few normal folk have to try and survive. There's some good stuff in this film, but not much: everything is shot well, and the makeup effects are decent. On the other hand, the performers either underact, or overact drastically; much of the plot makes little sense outside of a \"\"this happens so that can happen\"\" series; there is hardly any musical score to speak of, just snatches of songs throughout the film; and the movie takes an hour to actually get anywhere. That last problem is the most telling: two-thirds of the 90 minute running time is used to repeatedly set up the characters. Tom is a nice guy dating Heidi the control freak, but he used to date Jill, who is now dating Dan the jerk, but she's started a relationship Kira the girl who wears too many shawls/capes. Dan is a really big jerk, Gary likes to play jokes, and Steve & Lily like to have a lot of sex. Stuff that could have easily been dealt with in 20 minutes or so drags on and on, to the point where the lesbian \"\"sex\"\" scene(calm down, it's pretty tame) left me looking for the fast forward button. That leaves us with half an hour of lo-calorie scares, a klunky ending and a deep-seated dislike of ol' Pumpkin Jack, who I blame for the whole mess. Unless you can get this on some sort of deep-discount rental(and really have seen everything else in the store), put it back on the shelf and keep looking.\"\r\n0\t\"Witty. Quirky. Genuine. Surreal. Butterfly wings? One could ask what all of these words best describe, and some (those in fuse with the international film community) may quickly say Happenstance, but others may jump aboard the more American train and immediately yell, The Butterfly Effect. Strangely, I would be one of those screaming for that sci-fi Kutcher film mainly because none of those words that I initially mentioned at the start of this paragraph accurately depicts the Tautou feature that I witnessed. Sure, we all loved her in Amelie and thought she was the daughter of Jesus in The Da Vinci Code, but in this film first-time director (of a feature film at least) Laurent Firode doesn't give Tautou the opportunity to shine. Sadly, he gives nobody the opportunity to really demonstrate themselves because he is too delicately caught up in the moments of \"\"random chance\"\" to bring this film to anything but just a shimmer (never a true boil). Firode has ample, and I use \"\"ample\"\" as a small word, moments throughout this film where he could have built us a fantastical story, a genuinely whimsical fairy-tale of love and coincidence, but instead he fell face-first into a mud-bucket of chaotic intertwining that overwhelmed us with inconsistent characters and a story that left us gasping for less.<br /><br />Tautou's beautiful face adorns the cover of this box, but do not be so taken immediately as I did in assuming that this was going to be another monumental journey into Tautou's French cinema. Tautou is in this film, do not get me wrong, but one could argue that she is not at the center of this story. Firode's job is to create a series of random events that eventually will lead to an audience friendly (albeit confusing) ending which exemplifies that meaning of refreshing \"\"melodrama\"\". He utterly, utterly fails. Firode fails by giving us, the audience, too many characters. With too many characters he gives us too many random interventions, and by the end you don't really care who is who, or what is what, or how is how; your main focus happens to be centered solely on the ending credits and the time destination of their arrival. Tautou could have saved this film from the disaster it was if only Firode would have given her the center. Alas, he did not, but attempted to seemingly force a group of 12 through a theoretical film hole about the size of a penny. It just didn't work and we were left with a jam in which we were completely stuck.<br /><br />Firode fails because he focus' so intently on the minor details that, for one of those rare film occurrences, he actually forgets the central focus. I can say that there was no defined central focus to Happenstance. In the beginning he attempts to create one with our two supposed main characters discovering that they share the same birthday and their horoscope promises love by the moonlight, but we never go back to that throughout the film. Instead, again, we are bombarded with new characters, stuffy scenes, and meaningless drivel obviously chosen to direct us away from an actual story and more into a world full of \"\"ifs, ands, and buts\"\". I couldn't do it. I couldn't believe this film. Writer Firode (yes, the same guy directing this garbage) uses a technique so primitive in this film that I immediately felt like ending it immediately. He must have been assuming that many of us were incapable of actually following the storyline (or the scientific premise) because he grabs the aid of a homeless person to actually fill in the respective blanks. I didn't need this, nor do I think Firode needed to belittle his audience in this matter. While there were other elements that just didn't seem to work for me at all (again, felt like a jumbled Parisian collage of shredded paper), this was the icing on the cake. I don't need my hand held through films.<br /><br />I will give this film one star for credit. This is a rather difficult genre to master successfully. Time travel films are especially hard because of the innumerable amounts of possibilities that are never accounted for, but with Happenstance it works because Firode semi-explores the different avenues. While I will counter with saying that he does not do it well, it did make for at least five full minutes of enjoyment. I liked where Firode was headed with this film, he had a genuinely diagramed story, but the final execution just blew this film to shreds. Firode could have saved this film if he would have strengthened his characters, while lightening up his premise and story. I think my overall mood of this film would have changed if just these two simple directions were taken. Oh, how I only wish I could time travel back to the production of this film to show Firode the errors of his ways.<br /><br />Overall, for the first time (and probably last), this was a Tautou film that I must say utterly disappointed me. From the choppy opening to the apathetic ending, I just felt that Happenstance failed due to Firode's leadership and horrid marketing. Marketing is something that I didn't mention before, but why would anyone purchase this film thinking that it was an Amelie 2 (per the title released in Hong Kong), and why would you place Tautou squarely on the cover knowing full well that she wasn't carrying this film at all. I believe that from the first minute that passed on my DVD player, this film was in shambles. While I will applaud his subject, everything else was well below the level of mediocrity. I cannot suggest this film to anyone.<br /><br />Grade: * out of *****\"\r\n0\t\"me, my boyfriend, and our friend watched this \"\"movie\"\" if thats what u wanna call it, and we agree with the last person, but we were stupid and bought the damn thing, we thought it really was about diablo so we bought it.<br /><br />we hate it Really SUXZ!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! so beware: DO NOT BUY THIS THING THEY CALL A MOVIE!!!!!!!!!!!!!!!!!!!!!!!<br /><br />we would return it, but don't no if anybody would want this stupid movie.<br /><br />oh and another thing, the shouldn't call it \"\"The Legend of Diablo\"\" they should of called it \"\"Legend of Azar\"\".<br /><br />and this movie is rated R????? this should not of even been not rated.<br /><br />we think that diablo would be crying his eyes out laughing at this stupid movie.<br /><br />this is a movie that would have been done by a Church.<br /><br />theses \"\"actors\"\" are never gonna become nothing because this movie.\"\r\n0\tThis movie sucked. The acting sucked, the script sucked, and the movie overall sucked. There were two threads in the movie that were not developed and the viewer had to do a bit of work to figure out what was happening.<br /><br />I'm not saying that it needs to be spelled out, but you suddenly find things happening and being said as if you have the slightest clue as to what they are. Examples:<br /><br />The heroine's negative comments about the hero. The audience is never shown how she even knows anything about the guy and how he is tied into her fiance's death. The viewer has minimal exposure to the guy's death as well.<br /><br />Also, all of a sudden there is a scene with a bunch of guys loading up and cocking machine guns and that is all you see before cutting back to the other scenes. No explanation what-so-ever about the guns and the folks with them.<br /><br />We gave it a 3 because we didn't feel like we wanted our time back. It was fun to bad-mouth the movie while watching it, so it at least gave us a bit of entertainment. ;-)\r\n1\t\"Call me stupid, but I absolutely loved the 2001 horror movie, Valentine. It was so well-made, well-written, well-acted, well-directed, etc! Everything about it was wonderful! There were parts that were relatively routine (Lily's death), very funny (www.Bleed-Me-Dry.com), completely horrifying and creepy (Paige's death), and just plain heartbreaking (the first scene). I think the entire cast did a great job, especially the three leads: David Boreanaz, Denise Richards (both of whom I met, and got autographs from, during the filming of this movie - VERY nice people!), and Marley Shelton.<br /><br />I am very sick of people calling this movie \"\"another Scream clone\"\". This movie is, in no way, a Scream clone. In fact, this film runs rings around Scream. It actually makes SENSE! Scream was also NOT the only movie to feature a masked killer in it. Excuse me, but it looks like Scream was also a clone too (ahem..., Friday the 13th, Halloween, and many other scary movies also featured masked killers). I also think that the novelty of the cupid-masked killer is brilliant. It's so strange to see a sweet, cupid face doing all of these horrible things. Another novelty (the nose bleeding) makes way for a fantastic ending! The ending gives me chills every time I see it!!!!! So, even if you didn't like it the first time, watch Valentine again and give it another chance!<br /><br />PS- Keep an eye out for my new website (WWW.LOVE-HURTS.ORG)! Coming soon...\"\r\n1\t\"The problem with the 1985 version of this movie is simple; Indiana Jones was so closely modeled after Alan Quartermain (or at least is an Alan Quartermain TYPE of character), that the '85 director made the mistake of plundering the IJ movies for dialog and story far too deeply. What you got as a finished product was a jumbled mess of the name Alan Quartermain, in an uneven hodge podge of a cheaply imitated IJ saga (with a touch of Austin Powers-esquire cheese here and there). <br /><br />It was labeled by many critics to have been a \"\"great parody,\"\" or \"\"unintentional comedy.\"\" Unintentional is the word. This movie was never intended to be humorous; witty, yes, but not humorous. Unfortunately, it's witless rather than witty.<br /><br />With this new M4TV mini-series, you get much more story, character development of your lead, solid portrayals, and a fine, even, entertaining blend. This story is a bit long; much longer than its predecessors, but deservedly so as this version carries a real storyline and not just action and Eye Candy. While it features both action and Eye Candy, it also corrects the mistake made in the 1985 version by forgetting IJ all together and going back to the source materials for AQ, making for a fine, well - thought - out plot, and some nice complementing sub-plots. <br /><br />Now this attempt is not the all out action-extravaganza that is Indiana Jones. Nor is it a poor attempt to be so. This vehicle is plot and character driven and is a beautiful rendition of the AQ/KSM saga. Filmed on location in South Africa, the audience is granted beautiful (if desolate) vistas, SA aboriginal cultures, and some nice wildlife footage to blend smoothly with the performances and storyline here.<br /><br />Steve Boyum totally surprised me with this one, as I have never been one to subscribe to his vision. In fact, I have disliked most of his work as a director, until this attempt. I hope this is more a new vein of talent and less the fluke that it seems to be. <br /><br />This version rates a 9.8/10 on the \"\"TV\"\" scale from...<br /><br />the Fiend :.\"\r\n0\tthis film was shrouded in scandal for so long that it became a very sought after item...the outrage, the mystery, etc. it had everything to be a great piece of film-making, but ultimately fails in every extent. it's a terribly bad comedy, a pathetic horror movie, a lame erotic film.<br /><br />the 2 disc DVD includes a gorgeous booklet with stills, interviews, essays on bestiality, etc. as well as an extensive interview with the more-than-pretentious director. for those who have heard about it but never seen it, the package will seem fantastic until one actually sees the film. disc 1 contains the edited film, badly translated to English but with good visual quality. disc 2 contains the director's cut, in an awful transfer, in french.<br /><br />what can I say about the actual beast? a hand puppet of Kermit the frog would have been more effective and shocking.\r\n1\t\"At times, this overtakes The Thing as my favourite horror film. While Carpenter's film is the more efficient and more entertaining flick, Kubrick's is more artistic, more thought-provoking, and probably scarier. It's one of the few films where I can look past its flaws and truly and wholly love it. I try not to compare it to the book  which I've only read once, a number of years ago, and which scared me to death  because the two don't have a lot in common, besides the story and characters obviously. It's almost as if Kubrick was banking on people's love of the novel in order to make his film more frightening. And it that way, it's certainly one of the most interesting book adaptations ever made, as well as one of the greatest horror films.<br /><br />What makes the film so terrifying is not the jump scares, not the blood and gore, not the various ghosts that pop up from time to time. It's the destruction of Jack Torrence. Some people have complained about the casting of Nicholson in this role, saying that it's too obvious that he's going to go crazy in the film, given his past roles and his appearance. I disagree. We know he's going to go crazy  since most of us have read the book  and Jack's appearance only furthers this notion. But it's the way he acts at the beginning that makes us truly scared. He's calm, quiet, patient. He engages in inane small talk with the hotel managers and even with his own family. And with a wife and son as irritating as his, it's a small wonder that he manages to do so. But once he gets to the Overlook, he changes. He becomes irritable, angry, on edge. The scene that always shocks me is when Wendy interrupts him typing, and he utterly loses it, telling her to \"\"leave him the f*** alone\"\". This is the first f-bomb dropped in the film, and it's a shock to the system. From then on, all bets are off.<br /><br />Another thing I love is the multiple interpretations present in the film. We're never really sure if what we're seeing is actually happening. Many critics have noted that whenever Jack talks to a ghost, there's a mirror present, showing that he may as well be talking to himself. But what of the other characters? Wendy never sees anything until the film's climax, until she is given a tour of the hotel's many ghostly inhabitants, but she is well aware that something is wrong, while Danny connects with the place almost immediately. His psychic powers are not in question  how else would Hallorann know to come to the hotel?  but does he ever see any of the ghosts that his parents witness? It's easy to claim that Jack merely loses it, being trapped in a hotel with his family, and Wendy later does as well  seeing your husband attempt to kill you with an axe will do that  but what of Danny? It appears that his body is taken over by Tony, but how do we know for sure? None of these characters are reliable witnesses. Hallorann probably would be, and he warns of the dangers in 237, but he's killed as soon as he arrives at the Overlook (a scare Kubrick achieves by playing on the assumptions of fans of the novel). And that final shot. Has there ever been a more enigmatic ending in cinema? Has Jack really been there before? Or was his body merely 'absorbed' into the hotel? When talking about the acting in this film, any discussion begins and ends with Jack Nicholson. Shelley Duvall gives one of the most annoying performances in cinematic history  probably on purpose, to give Jack's character more of a reason to snap  and Danny Lloyd is no better, but Jack is a powerhouse. Part method, part improvisation, he's simultaneously terrifying and appealing. For better or for worse, he's the character with whom we identify with, not the annoying kid or nagging wife. We all want to have a hotel to ourselves for a season, be able to do whatever we want. Who cares if it's haunted? Of course, the technical aspects are terrific. Kubrick's long takes, strange angles, and bizarre imagery all contribute to the horror. The use of colour, mirrors, long hallways, and every other motif only heightens this. And don't even get me started on that score. I don't know if the film would be half as scary without that haunting, electronic tune. Its strangeness perfectly reflects the hotel, the mood, and the entire film itself.<br /><br />I know King doesn't like this film, but King's input on cinema is nothing to brag about. As great of a novel writer he may be, his screenplays are terrible, and his attempt at directing is better left unnoticed. This is not a very faithful book adaptation, but it doesn't need to be, and it really shouldn't. Part of the horror of the film is that the viewer doesn't have the book to fall back on; there's no reassuring source material. Kubrick masterfully alters the narrative to terrify the audience even more. If only for that, this is one of the most innovative films in any genre. And it's got everything else on top of that.\"\r\n1\t\"I remember watching this in the 1970s - then I have just recently borrowed a couple of episodes from our public library.<br /><br />With a nearly 30 year hiatus, I have come to another conclusion. Most of the principals interviewed in this series - some at the center of power like Traudl Junge (Hitler's Secretary),Karl Doenitz (head of Germany's navy) Anthony Eden (UK) - are long gone but their first hand accounts will live on.From Generals and Admirals to Sergeants, Russian civilians, concentration camp survivors, all are on record here. <br /><br />I can remember the Lord Mountbatten interview (killed in the 1970s) <br /><br />This is truly a gem and I believe the producer of this series was knighted by Queen Elizabeth for this work - well deserved.<br /><br />Seeing these few episodes from the library makes me want to buy the set.<br /><br />This is the only \"\"10\"\" I have given any review but I have discovered like a fine bottle of wine, it is more appreciated with a little time...\"\r\n0\tOliver Hardy awakens with a hangover and soon learns that his uncle is coming to see Ollie's new wife and baby. The problem is, they don't exist--Ollie apparently made them up! So, it's up to him and his pal to locate a lady with a baby who will agree to pose as his family.<br /><br />This isn't a particularly unique story idea, as I've seen at least a couple other silent shorts with this exact plot. The best of these was Bobby Vernon's DON'T KID ME. It is much better than ONE TOO MANY--probably much of this was due to it being made a decade later--when comedy became a bit more sophisticated and relied less on pointless slapstick. Now I am not against physical comedy, but in some slapstick films, people starting shooting guns wildly, kick and strangle each other, etc. with little provocation. Sadly, at the end of ONE TOO MANY, that's exactly what they do. None of it makes sense and it was as if they'd just run out of story ideas.<br /><br />Overall, not exactly a milestone in entertainment. There's just not enough payoff to merit watching it unless you are an obsessive silent fan like myself.\r\n0\tHave you ever wondered what would happen if a couple of characters from Beverly Hills 90210 were thrown into a Thai jail?If so, this is your movie. This is Midnight Express for the MTV crowd. That would be ok, but the story was poorly executed. Contrived plot twists, poor dialogue and unresolved issues abound. This slight film did not earn the right to be as cryptic as it ends up being. Potential spoiler and impossibly preposterous plot line-the faux tension filled moment when the hotel employee discovers the girls do not have a room there and is about to kick them out. (This moment is innappropriately played with the same solemnity and gravity as the moment when they are arrested at gunpoint). Later the same hotel employee is somehow found-and Bangkok is a big city, mind you, Ive been there- and testifies against the girls, as if a couple of free Mai Tais warrant 40 years in prison. C'mon. Rent Another Day in Paradise instead.\r\n1\tThe Thing About My Folks is a wonderful film about relationships - first and foremost an adult son and his father, but also that son with his wife, his sisters and his mother. Paul Reiser has written a semi-autobiographical movie about his relationship with his father. The movie is funny, poignant and thought-provoking. It led me to re-evaluate my own relationship with both my now-deceased father and my adult son. Peter Falk is excellent as Paul's father - the role could not have been better cast. I hope that both Mr. Falk and Mr. Reiser are recognized in next year's movie awards for their efforts - Falk for his performance and Reiser for his script.\r\n1\t\"Although others have commented that this video is just an edited version of the two shows: \"\"Fire in Space\"\" and \"\"Living Legend\"\", if you watch the original shows you'll find that dialogue from this video edition was edited out. I found this video version much better because scenes and lines were added to it. I would say if you want to see the show in its original version, see the video versions on VHS. They have more to offer the fan than the original episodes being offered on DVD now. Another good video is Conquest for the Earth, which had more scenes from Galactica 1980 than did the actual broadcasts themselves. Overall, I rate this as a 10 because it gives you more to enjoy than what the networks wanted to show in the time slot they gave the producers.\"\r\n1\tAs Jack Nicholson's directorial debut, Drive, He Said displays at the least that he is a gifted director of actors. Even when the story might seem to lose its way to the audience (and to a modern audience - if they can find it, which pops up now and again on eBay - it might seem more free formed than they think), the film contains vivid, interesting characterizations. The film tells of two college kids: the protagonist is Hector (William Tepper, in what borders on a break-out performance), a star of the Leopards, the college basketball team he plays on. While he has to deal with a coach (Bruce Dern) who puts on the pressure to stay focused, and a on and off girlfriend (Karen Black) with her own emotional problems, there's Gabriel (Michael Margotta), the other kid. Gabriel, it seems, is just a little more than freaked out by the possibility to be drafted, and so in his own radical mind-state he does what he can to keep out. But as Hector tries to find the balance between his oncoming fame and those he loves, Gabriel is going over the threshold of sanity.<br /><br />Nicholson, on the technical side of things, displays a fascinating editing style that keeps things on edge during the basketball scenes, and implements darkness in many other scenes with a documentary-feel throughout. And from Tepper, Black, and even Robert Towne (writer of Chinatown, Last Detail, and Mission: Impossible among others, who rarely acts) he garners some credible acting work. Though in Tepper there is a tendency to downplay his emotions. In some scenes, for example, when he could act brilliantly sarcastic, he doesn't play it for what it's worth. From Margotta, on the other hand, there is a vibrant, twisted force in his performance, and as he descends it's frightening, but perhaps understandable from the times (and what a climax). Dern steals most of his scenes, by the way, in a performance that should have garnered him an Oscar nomination. Every line of his dialog is appropriate, true, and it's never hammed up like in recent coach movie performances. <br /><br />But what drags down the film is that elements involving the characters aren't explained to the degree one might wish more. The film was based on a novel by Jeremy Larner, who co-wrote the script with Nicholson, and I was expecting that the film to be longer than it was. It's a slim volume with a lot of information, about the times, about the sport, about the underlying feelings that were with those of the younger generation. Nicholson presents us with these characters and situations, and rarely are they shown to what's motivating them (the anti-war protesters not included, their part's understandable enough). Gabriel is perturbed by what's going on in Vietnam, but what else is there? Hector, too, is a guy who has apprehensions about being drafted for the NBA, and he still loves to play, but what's holding him back? This whole atmosphere is intriguing, how the late 60's college/basketball experience was, but that intriguing quality, which does lead to some unconventionality, is kept at a point where it can't go too further. Overall, the effect of the film as a whole is bittersweet, and somewhat memorable for its good points, and not for it's low ones. And, for sure, you can tell who's behind the lens every step of the way. B+\r\n1\tThings to Come is indeed a classic work of speculative fiction; both an essay on the destructive nature of war and the terrors of progress. It makes some surprising accurate depictions of the war that was to follow a few years later, but is woefully naive in it's Utopian ideals.<br /><br />Raymond Massey, Cedric Hardwicke, and Ralph Richardson make up a fine cast, although the drama is played more as a stage piece, than a work of cinema. There are grandiose, if somewhat stilted speeches, often delivered as if the actor is trying to reach the back of the theater. However, there are some profound words there. Is technology the savior of mankind, or the instrument of its destruction? The film is a visual feast, if one can detach oneself from the age of the effects. Sure, Hollywood is more sophisticated today, but rarely as inventive. For the imaginative, the third act is a treat: a world with underground cities, massive deco bombers, space cannons, gyro copters, and secret organizations of scientist saviors. It has all of the makings of a sci-fi pulp adventure, but instead uses the trappings for a philosophical exercise.<br /><br />Things to Come and Metropolis were the hallmarks of neolithic Hollywood science fiction cinema. They are operatic in scope, and visually inspiring. Technology has long left them behind, but their ideas still burst forth. There is an artistry there, one with more heart and emotion than the computer generated mass-produced cinema of today. These films are the products of artisans, not industrialists.\r\n1\tThis movie really surprised me. I had my doubts about it at first but the movie got better and better for each minute. <br /><br />It is maybe not for the action seeking audience but for those that like an explicit portrait of a very strange criminal, man, lover and husband. If you're not a fan of bad language or sexual content this really is not for you. <br /><br />The storyline is somewhat hard to follow sometimes, but in the end I think it made everything better. The ending was unexpected since you were almost fouled to think it would end otherwise. <br /><br />As for the acting I think it was good. It will not be up for an Oscar award for long but it at least caught my eye. Gil Bellows portrait of a prison man is not always perfect but it is very entertaining. Shaun Parkes portrait of Bellows prison mate Clinique is great and extremely powerful. On the downside I think I will put Esai Morales portrait of Markie.<br /><br />Take my advice and watch this movie, either you will love it or dislike it!\r\n0\tLIVE A LITTLE, LOVE A LITTLE is one of Elvis' weirdest movies. Part slapstick, part fluff, part surreal and part strange. Elvis meets up with a very off-beat girl with an annoying voice. She looks like Jennifer Aniston. Story doesn't make much sense as is the case with most Elvis Presley movies, and there a bunch of odd characters galore. Not much music in this one, but what there is I liked, although none are memorable. Strange continuity. Elvis and Michelle Carey go into her beach house at night, but a few minutes later a delivery boy comes in and it's stark daylight!! What?? That's about the essence of the movie. What?? Oh, two good things about the movie: A) Elvis looks great and B) the dog steals the show.\r\n0\tAfter seeing the trailer of this film in the cinema, i thought that it was an original concept for a thriller, setting it in the competitive world of computer companies. The all star cast was another message that this film would probably be good. But when i didn't go to watch it in it's first week of release then it disappeared by week 2 i feared something was a miss. Patiently i waited for it's DVD release, then bought it rushing home for an enjoyable evening's viewing. The anticipation on the way home was far better than the film. For a start the direction is appalling. There's no thought gone into it at all and the director just makes up a part for himself, so he can appear in the film. I wouldn't be rushing out to employ him in the future. Secondly the lead role is completely miscast as Ryan Phillipe. Phillipe normally the cool character as in Cruel Intentions and Way of the Gun but in this he's supposed to be a bumbling hero which he attempts to portray by slipping when he's running and having geeky friends, but he just doesn't look right. The female stars, Rachel Leigh Cook and Clare Forlani don't feature enough but when they do neither of the performances are close to their bests. The only highlight of the film is Tim Robbins in a role that could have been made for him and it's his fiery temper and mysterious ways that drag the film along. The final point is that this film is another one which fills the trailer with scenes you don't see in the film and instead feature only in the deleted scenes section of the DVD. Causing even more disappointment as although some of these scenes are crude they do fill in important gaps in the story.\r\n0\tWhat to say about this movie. Well it is about a bunch of good students who have some bad drugs and turn into delinquent students that sell more of the bad drugs to people. Two of those people have adverse effects as one turns into a toxic avenger type and his girlfriend throws up some creature that grows in the school's basement. That is about all there is to it and they stretch it out for 84 minutes. This movie is pretty bad and should be locked away forever. Though that is not fair, some people like Troma's movies and they can watch it if they want. Troma movies for me though, are the worst movies there are out there. I just watched this one out of morbid curiosity.\r\n1\tOkay, okay, maybe not THE greatest. I mean, The Exorcist and Psycho and a few others are hard to pass up, but The Shining is way up there. It is, however, by far the best Stephen King story that has been made into a movie. It's better than The Stand, better than Pet Sematary (if not quite as scary), better than Cujo, better than The Green Mile, better the Dolores Claiborne, better than Stand By Me (just barely, though), and yes, it's better than The Shawshank Redemption (shut up, it's better), I don't care WHAT the IMDb Top 250 says. <br /><br />I read that, a couple of decades ago, Stanley Kubrick was sorting through novels at his home trying to find one that might make a good movie, and from the other room, his wife would hear a pounding noise every half hour or so as he threw books against the wall in frustration. Finally, she didn't hear any noise for almost two hours, and when she went to check and see if he had died in his chair or something (I tell this with all due respect, of course), she found him concentrating on a book that he had in his hand, and the book was The Shining. And thank God, too, because he went on to convert that book into one of the best horror films ever.<br /><br />Stephen King can be thanked for the complexity of the story, about a man who takes his wife and son up to a remote hotel to oversee it during the extremely isolated winter as he works on his writing. Jack Nicholson can be thanked for his dead-on performance as Jack Torrance (how many movies has Jack been in where he plays a character named Jack?), as well as his flawless delivery of several now-famous lines (`Heeeeeere's Johnny!!'). Shelley Duvall can be thanked for giving a performance that allows the audience to relate to Jack's desires to kill her. Stanley Kubrick can be thanked for giving this excellent story his very recognizable touch, and whoever the casting director was can be thanked for scrounging up the creepiest twins on the planet to play the part of the murdered girls.<br /><br />One of the most significant aspects of this movie, necessary for the story as a whole to have its most significant effect, is the isolation, and it's presents flawlessly. The film starts off with a lengthy scene following Jack as he drives up to the old hotel for his interview for the job of the caretaker for the winter. This is soon followed by the same thing following Jack and his family as they drive up the windy mountain road to the hotel. This time the scene is intermixed with shots of Jack, Wendy, and Danny talking in the car, in which Kubrick managed to sneak in a quick suggestion about the evils of TV, as Wendy voices her concern about talking about cannibalism in front of Danny, who says that it's okay because he's already seen it on TV (`See? It's okay, he saw it on the television.').<br /><br />The hotel itself is the perfect setting for a story like this to take place, and it's bloody past is made much more frightening by the huge, echoing rooms and the long hallways. These rooms with their echoes constantly emphasize the emptiness of the hotel, but it is the hallways that really created most of the scariness of this movie, and Kubrick's traditional tracking shots give the hallways a creepy three-dimensional feel. Early in the film, there is a famous tracking shot that follows Danny in a large circle as he rides around the halls on his Big Wheel (is that what those are called?), and his relative speed (as well as the clunking made by the wheels as he goes back and forth from the hardwood floors to the throw rugs) gives the feeling of not knowing what is around the corner. And being a Stephen King story, you EXPECT something to jump out at you. I think that the best scene in the halls (as well as one of the scariest in the film) is when Danny is playing on the floor, and a ball rolls slowly up to him. He looks up and sees the long empty hallway, and because the ball is something of a child's toy, you expect that it must have been those horrendously creepy twins that rolled it to him. Anyway, you get the point. The Shining is a damn scary movie.<br /><br />Besides having the rare quality of being a horror film that doesn't suck, The Shining has a very in depth story that really keeps you guessing and leaves you with a feeling that there was something that you missed. HAD Jack always been there, like Mr. Grady told him in the men's room? Was he really at that ball in 1921, or is that just someone who looks exactly like him? If he has always been the caretaker, as Mr. Grady also said, does that mean that it was HIM that went crazy and killed his wife and twin daughters, and not Mr. Grady, after all? It's one thing for a film to leave loose ends that should have been tied, that's just mediocre filmmaking. For example, The Amityville Horror, which obviously copied much of The Shining as far as its subject matter, did this. But it is entirely different when a film is presented in a way that really makes you think (as mostly all of Kubrick's movies are). One more thing that we can all thank Stanley Kubrick for, and we SHOULD thank him for, is for not throwing this book against the wall. That one toss would have been cinematic tragedy.\r\n0\t\"Words fail me.<br /><br />And that isn't common.<br /><br />Done properly this could have been great, funny spoof B-movie sci-fi, but sadly, it was not to be. Rarely in the field of drama have so many competent actors struggled so vainly with such a dogs-breakfast of a script. I can only endorse the previous reviewer's comments - go clean the bathroom. In fact do ANYTHING except watch this film.<br /><br />Positives: Lucy Beeman's nose. Negatives: Everything else.<br /><br />Most apposite line: \"\"This isn't going anywhere\"\".<br /><br />If only every plastic surgeon could meet with such a fate.\"\r\n1\t\"Clint Eastwood returns as Dirty Harry Calahan in the 4th movie of the Dirty Harry series. Clint is older but he's still got it, Harry was told to have a vacation after some trouble that happened because of a robbery (where the memorable \"\"Make My Day\"\" catchphrase comes from!) But the city he took a vacation was worse, a woman turned vigilante after a rape attack in a funfair and starts getting the punks one by one. The last movie to see Sandra Locke in a Clint Eastwood movie! An improvement after The Enforcer which was a bit more of a comedy and less serious. Clint Eastwood's sunglasses were Gargoyles which are best known for the sunglasses that are worn by Arnold Shwartzeneger in The Terminator. Worth a watch if you like Clint Eastwood, the Dirty Harry films or like action crime thrillers.\"\r\n1\t\"While there aren't any talking animals, big lavish song production numbers, or villians with half white / half black hair ... it does have 1 thing ... realistic people acting normally in a strange circumstance, and Walt & Roy did in their eras with the studio. If you thought think \"\"The Castaways\"\" or \"\"The Island At The Top Of The World\"\" weren't identical, or you hold them to a higher authority than Atlantis, then your idealism is just as whacked as keeping your kids up till midnight to watch a friggin' cartoon.\"\r\n1\tSo many consider The Black Cat as the best Karloff/Lugosi collaboration. I disagree. The Invisible Ray is their best. A great storyline, fantastic special effects, and classic Karloff over-acting. I love it!!\r\n1\tWith the current trend of gross out humor, this film is the granddaddy of them all. While some of the humor is dated, every skit will either shock, repulse, or make you laugh out loud. Most memorable is the sex games commentary and, of course, the VD commercial. It doesn't always work, but pays off when it does. I give this a 7.\r\n0\tThis series would have been a lot better if they had just done one simple thing: Made Ian McShane Code Name: Diamond Head instead of Code Name: Tree. Diamond Head the character needs someone who could handle the role of the lovable rogue, which McShane proved he could do with the Lovejoy series. Roy Thinnes, the actual Diamond Head, is really only so-so in the role. McShane is not really that good as the bad guy Tree. France Nuyen's character, Tso-Tsing, can't seem to make up her mind as to whether she's the hapless victim or the tough-and-ready-to-fight woman. She really earned her pay at the end when she had to play the role of Diamond Head's lover. After viewing an episode or two, I ended up not caring what happened to anyone. Tree gives us a lot to hate him, but Diamond Head gives us nothing to like him. Unfortunately, the spy genre in the 1970s was not quite as it was in the 1960's.\r\n0\tOn Steve Irwin's show, he's hillarious. He doesn't even try to be funny and he just is but his movie wasn't even what I would call a movie-I mean when that guy on his car is trying to kill him he's just saying 'Oh, this is one nasty bloke!' and looking straight into the camera. He put his face in the camera too much! And then when the guy falls off the car wouldn't you expect him to be dead? And Terri had the worst acting I'd ever seen! Like when the crocodile almost ate Steve she just says 'Steve'. She didn't sound scared or anything, it was just 'Steve'. I mean I hate to sound mean but that was not worth seeing. I love Steve Irwin but his movie was just too stupid.\r\n0\tThis movie was a rather odd viewing experience. The movie is obviously based on a play. Now I'm sure that everything in this movie works out just fine in a play but for in a movie it just doesn't feel terribly interesting enough to watch. The movie is way too 'stagey' and they didn't even bothered to change some of the dialog to make it more fitting for a movie. Instead what is presented now is an almost literally re-filming of a stage-play, with over-the-top characters and staged dialog. Because of all this the storyline really doesn't work out and the movie becomes an almost complete bore- and obsolete viewing experience.<br /><br />It takes a while before you figure out that this is a comedy you're watching. At first you think its a drama you're watching, with quirky characters in it but as the movie progresses you'll notice that the movie is more a tragicomedy, that leans really more toward the comedy genre, rather than the drama genre.<br /><br />The characters and dialog are really the things that make this movie a quirky and over-the-top one that at times really become unwatchable. Sure, the actors are great; Peter O'Toole and Susannah York, amongst others but they don't really uplift the movie to a level of 'watchable enough'.<br /><br />The story feels totally disorientated. Basicaly the story is about nothing and just mainly focuses on the brother/sister characters played by Peter O'Toole and Susannah York. But what exactly is the story even about? The movie feels like a pointless and obsolete one that has very little to offer. Like I said before; I'm sure the story is good and interesting to watch on stage but as a movie it really isn't fitting and simply doesn't work out.<br /><br />The editing is simply dreadful and times and it becomes even laughable bad in certain sequences. <br /><br />More was to expect from director J. Lee Thompson, who has obviously done far better movies than this rather failed, stage-play translated to screen, project.<br /><br />Really not worth your time.<br /><br />4/10\r\n0\t\"Another day stuck indoors, another film to watch. Having finally completed my Christmas shopping yesterday on a cold and foggy afternoon, I had nowhere else to go to escape \"\"The Land That Time Forgot\"\". Or rather, I had nothing else to watch.<br /><br />Doug McClure, that bastion of leading-man actors, leads a handful of Allied sailors sunk by a U-Boat somewhere in the Atlantic in 1916. Capturing the U-Boat (in a scene that defies logic and reason), they eventually find themselves on a strange island, apparently untouched by human hands. Together, they explore the land and discover dinosaurs and Neanderthals! Can they escape before becoming a permanent resident of the land that Time forgot? <br /><br />Despite being made few years before \"\"Star Wars\"\", these films are light-years apart in terms of special effects. The model shots are little better than anything you would expect to see in an episode of Gerry Anderson's \"\"Stingray\"\" and the creatures aren't much better either. When the T-Rex (I'm assuming that's what it was) was killed, it fell in the same way that zombies do when you kill them - frozen in mid-walk and collapsing, arms and legs held out like a sleeping cow that's been pushed over. Granted, the sets aren't too bad but the lousy acting and endless explosion noises (which all sound the same) do their best to ruin credibility and your enjoyment of the picture as a whole. Characters are neither believable or worthy of your sympathy as they fire their guns at seemingly anything that moves. In the end, I just didn't care if they got off the island or not and by the time the end came, I was more relieved than entertained.<br /><br />Costumes are authentic enough until the cavemen arrive and it is bear-skin bikinis and loin cloths all round. And although it was fairly obvious from their actions, you wouldn't have known that some characters were German from their accents. The whole thing just lacked some polish and cohesion, leaving the viewer confused in places and nonplussed in others. Overall, this film barely registers a ripple of excitement these days although you can find some small amusement in trying to work out where Colin Farrell is. I spotted his name in the credits and half expected a baby to appear with an Irish accent and suspect facial hair. Oh well. Nothing particularly great here to see then, but just about OK if you're eating your lunch and the weather is preventing further activity.\"\r\n1\tAs an old white housewife I can still appreciate that Laurence Fishburne is one of our finest actors. anyone who appreciates his work like in Deep Cover might enjoy watching the incredible acting range of this actor. Since I think this is his directorial debut it might prove even more interesting. All of the acting is quite good. If you can't take lower Manhattan junky worlds or the reality of crime life (not glorified action shoot-em ups) then this is not a film you would enjoy. It is Mr. Fishburne's usual contribution to incredibly subtle relationships. I would love to see Larry and Anthony Hopkins go at each other some day in a movie.\r\n1\tStar Pickford and director Tourneur -- along with his two favorite cameramen and assistant Clarence Brown doing the editing -- bring great beauty and intelligence to this story of poor, isolated Scottish Islanders -- the same territory that Michael Powell would stake twenty years later for his first great success. Visions of wind and wave, sunbacked silhouettes of lovers do not merely complement the story, they are the story of struggle against hardship.<br /><br />The actors bring the dignity of proud people to their roles and Pickford is brilliant as her character struggles with her duties as head of the clan, wavering between comedy and thoughtfulness, here with her father's bullwhip lashing wayward islanders to church, there seated with her guest's walking stick in her hand like a scepter, discussing her lover, played by Matt Moore.<br /><br />See if you can pick out future star Leatrice Joy in the ensemble. I tried, but failed.\r\n0\t\"I must say that I am fairly disappointed by this \"\"horror\"\" movie. I did not get scared even once while watching it. It also is not very suspenseful either.... I was able to guess the ending half way through the movie... So.. what's left?<br /><br />\"\"The Ring\"\" is a trully scary movie... I wish other movies would stop copying from it (e.g. the trade-mark: long hair). Please give me some originality.<br /><br />Will not recommend this movie.\"\r\n0\tI have yet to read a negative professional review of this movie. I guess I must have missed something. The beginning is intriguing, the three main characters meet late at night in an otherwise empty bar and entertain each other with invented stories. That's the best part. After the three go their separate ways, the film splits into three threads. That's when boredom sets in. Certainly, the thread with the Felliniesque babushkas who make dolls out of chewed bread is at first an eye opening curiosity. Unfortunately, the director beat this one to death, even injecting a wild plot line that leads nowhere in particular. Bottom line: a two-hour plot-thin listlessness. If you suffer from insomnia, view it in bed and you will have a good night sleep.\r\n0\t\"The proverb \"\"Never judge a book by it's cover\"\", was coined as a warning to those who fail to look beneath the surface. <br /><br />As I viewed the artwork to,\"\"King of the Ants\"\" I instantly thought HORROR! The arcane imagery proudly displayed on the cover & back spoke of a dark vision, the synopsis promised a story of murder, betrayal, & retribution. Instead what I discovered beneath that surface, was less interesting than what you can find under your average rock.<br /><br />\"\"King of the Ants\"\" features Chris L. McKenna as Sean Crawley, an average guy ready to make a name for himself in this world, even if it means murder. Except Sean Crawley is someone you don't care about, never once did I feel any compassion or sympathy for this character. In fact he's downright unlikable, but not as much as Daniel Baldwin (Ray Mathews)who turns in an uninspired performance as a made all the worst by the utterly laughable dialogue he is forced to recite. Throw in Kari Wuhrer as a grieving widow who apparently has unconditional trust (esp. in the homeless), and little to no common sense, and George Wendt as Duke, which is basically a sober Norm from Cheers but MEAN!<br /><br />Now there are a couple of interesting \"\"hallucination\"\" sequences in this film (the source of the cover images) but this film never delves further into that world. It prefers to bombard you with unmotivated characters, bad dialogue, and unlikely event after unlikely event. Oh the Horror!\"\r\n0\tI love Columbo and have seen pretty much all of the episodes but this one undoubtedly ranks as the worst of the lot. A mind-bogglingly tedious, pointless, muddled pile of unwatchable drivel that wastes both the time of the viewing audience and of the acting talents of an exceedingly bored-looking Peter Falk. The 'plot', such as it is, just seems to be made up as the film goes along with not even the slightest hint of the ingredients to the formula that made the show such a brilliant success to start with. One part of the proceedings which I found extremely puzzling ( or possibly annoying ) was Peter Falk's character being introduced to the guests at the wedding as 'Lt' Columbo. If the producers insist on keeping Columbo's first name a secret, why couldn't they have omitted this line altogether as it sounds ridiculous? Like I said, this is the pits and all true Columbo fans would do well to avoid it like the plague.\r\n1\t\"this was a fantastic episode. i saw a clip from it on YouTube, and i vowed that should it ever show on TV, i would glue myself to the set in order to watch. i wound up watching it with a friend of mine, who happens to be gay, and the two of us cried at the end. this was a truly well-written, heartfelt episode of the forbidden love between two cops who, i felt, really were (in Coop's words) \"\"the Lucky Ones\"\". it is episodes like this one that really make Cold Case one of the most captivating and much-loved works of television magic on CBS. i anxiously await more episodes, and a re-run of \"\"Forever Blue\"\" because i will always watch it again and again.\"\r\n0\tWell, I can once and for all put an end to the question: 'What is the worst movie ever made...ever?' It is Flight of Fury, starring and co-written by Steven Seagal. Sure there are lots of famously bad movies, but this one takes the cake in that it takes itself so seriously.<br /><br />It is a Romanian-made film that speaks to just how far Romania has to go to catch up with Bollywood. It also speaks to just how utterly devoid of intellect and talent Steven Seagal has become. This movie is so bad that you literally feel violated after watching it and need to crouch in the corner of the shower and cry, knowing that nothing will make you feel clean again.<br /><br />It was released only on video (I can't imagine why) and I suspect the workers that had to make the DVD's had to wear protective gear and receive regular counseling.\r\n0\t\"I found the documentary entitled Fast, Cheap, and Out of Control to be a fairly interesting documentary. The documentary contained four \"\"mini\"\" documentaries about four interesting men. Each one of these men was extremely involved with his job, showing sheer love and enjoyment for one's job.<br /><br />The sad part, I must say, would have to be the subjects in which these individuals worked/studied. They were interesting for about five minutes, afterwards becoming boring and lasting entirely too long.<br /><br />The video was filmed in a very creative way though. I very much enjoyed the film of one thing with a voice dub over another. It played out excellent and also coincided nicely with the music.\"\r\n0\tOn his birthday a small boys tells his mother he is not her son, and that he wants to go home to his real mother.<br /><br />In some ways Comedy De L'Innocence feels like it comes from a different time of movie-making, perhaps the 60's or 70's. Certainly it reminded me of Losey's Secret Ceremony (1968), and Richard Loncraine's Full Circle (1977), both of which deal with loss, grief and relationships between parents and 'lost' children (curiously both films star Mia Farrow).<br /><br />All three films are populated with unsympathetic characters who behave in strange and unexplained ways. All three films have a chilly feel, both emotionally and literally. All three films focus on mother-child relationships, and ultimately all three films pose the question - 'what is real, what is imagined?' <br /><br />Beautiful but flawed, it offers no easy answers and leaves much hanging, unexplained and strange.\r\n0\t\"Well I watched this last night and the one thing that didn't make it completely terrible is that it was straight forward. There was no beating around the bush that this kid was the Anti-Christ. However the movie was just poorly written. For example, they never explained how they made the dentist incident an \"\"Accident\"\" or at the end how the cop just miraculously ended up at the house in time to save the kid without the police even being called yet. The death scenes were just really bad and not entertaining at all. The kid they chose to play the Anti-Christ was boring and they really could've picked a better kid. Just don't waste your time watching this.\"\r\n0\tWhen HEY ARNOLD! first came on the air in 1996, I watched it. It was one of my favorite shows. Then the same episodes started getting shown over and over again so I got tired of waiting for new episodes and stopped watching it. I was sort of surprised when I heard about HEY ARNOLD! THE MOVIE since it doesn't seem to be nearly as popular as some of the other Nickelodeon cartoons like SPONGEBOB SQUAREPANTS. Nevertheless, having nothing better to do, I went to see the movie anyway. Going into the theater, I wasn't expecting much. I was just expecting it to be a dumb movie version of a childrens' cartoon like the RECESS movie was. I guess I got what I expected. It was a dumb kiddie movie and nothing more. There were some good parts here and there, but for the most part, the movie was a stinker. Simply for kids.\r\n1\tI loved this movie! Chris Showerman did an amazing job! Not only is he an incredible actor, but he is gorgeous with an awesome physique! He did a great job on the delivery of his lines, plus transformed into George better than Fraser did. A great performance for his first major roll! This movie is full of hilarious scenes that every child will love. My kids have watched this movie numerous times since we purchased the DVD the day it came out. In addition to the movie, the extras on the DVD are just as hilarious. Two thumbs up on this one! I highly recommend it to everyone!\r\n0\tI saw this movie with low expectations and was not disappointed. Its so bad that it is actually funny in a very cringe worthy way.<br /><br />Gael is absolutely terrible, I mean he just cannot act, period. He should give up now, as acting is clearly not his thing.. His co-stars are about the same caliber, i'm sure my 5 year old cousin could do a better job than all of them! The director should be ashamed to have put his name on something so ridiculous.. Somehow I don't think an Oscar is on the cards for this guy.<br /><br />I have never written a comment on IMDb, but this movie was so bad I felt compelled to do so.<br /><br />If you get the chance to see this film, don't 0/10 if there was a 0\r\n0\t\"I honestly want the last 30 minuets of my life back.<br /><br />The only person that is fit to watch this movie is Helen Keller I kept saying to myself this has to get better this has to get better.<br /><br />Then the zombies finally showed up and they had some raccoon paint on there eyes.<br /><br />They talked like regular people.<br /><br />One drove a car.<br /><br />Some voodoo woman asked what one of the \"\"Zombies\"\" wanted and the \"\" zombie\"\" said ( I want to Dance)<br /><br />( THAT WAS IT) Out came the movie I couldn't take it any longer Can I sue for a ½ hour of my life?????\"\r\n1\t\"For people interested in business and the corporate world, this show is simply the best of the best. As one of the former contestants of the show wrote in his blog about this innovative show: People in business finally had an audience. The whole idea is perfect; having a group of businesspeople competing against each other in business-related tasks, set in the best place in the world, New York City. Donald Trump is perfect as the boss, even though his ego is bigger than the whole universe times infinity. He also makes a lot of questionable decisions about whom to fire, which is one of the negatives about the show.<br /><br />Season 1: Great season overall, the best season of the \"\"normal\"\" ones. This season was the one that was most about actual business skills. Later on the series almost drowned in marketing related tasks with way too many product placements. Great and interesting contestants overall, with the most likable character ever in this series: Troy. I know I'm not the only person who suspect that the Trump World Tower-episode where he got fired was rigged to have Amy and Nick win this particular task.<br /><br />Season 2: Also a great season. The tasks were still pretty much OK, and it had many interesting contestants. Jen M was terrible and should never had made it to the final, IMO. Also, this season had the worst firing ever (Pamela).<br /><br />Season 3: Terrible. Actually, I liked the concept of book smarts vs. street smarts, but the cast was so utterly terrible (it turned out that Trump hated the cast as well) that the whole season was a total disaster. Best moments was the second episode (motel renovation), with PM Brian fired, a guy who added nothing but huge amounts of comedy value.<br /><br />Season 4: An excellent season, much because of the interesting and entertaining contestants this season (especially Randall, Alla, Marcus and the total disaster whose name was Toral). The \"\"Take me out to the Boardroom\"\" episode is one of the absolute classics of this show, ending with the well-remembered quadruple firing. Sadly, I think we got robbed for the Randall vs. Alla final. I think Trump was afraid that she could have won, and prevented that from happening.<br /><br />Season 5: A boring season with really no special things to it. Brent was just an embarrassment and obviously only there to create drama. The tasks were terrible overall (how has creating a jingle anything to do with business at all?). I guess the best man won, but personally I couldn't care less.<br /><br />Season 6: I can see why they wanted to try out L.A. as a new location for the show, but looking back it was a mistake. New York will always be the place for this. This season added so many new things, most of them terrible (like losing team having to sleep outside in tents, winning PM continues to be PM ,for example). The tasks were terrible and Trump also chose the wrong winner. James deserved it, no doubt.<br /><br />Season 7: Celebrity edition. Best season ever. Totally different rules (like the use of rolodexes), but all fun and entertainment. The biggest problem was that many of the contestants were not real celebrities at all, especially the women where everyone were unknown to me except for Omarosa, who is a total disgrace to everything she takes part in. This looked to be Gene Simmon's season, but after he made a complete fool of himself during the Kodak task , another man emerged from the shadows: Piers Morgan. Never has anyone dominated a season like he did. He crushed his opponents and also came across as a guy with a great sense of humor (although some uptight Americans (not all Americans, of course, don't take me wrong) sadly didn't have the social skills to understand it). WAY TO GO PIERS!!<br /><br />For fans of this i highly recommend the UK version starring Sir Alan Sugar as the boss. In fact, the British version is way better, and that says something since the American (and original) truly is a great show. One thing about the UK version is that the contestants normally tend to behave like decent human beings in the boardroom, unlike the constant yelling and rude behavior that takes place in the US version.\"\r\n1\tIn Mexico this movie was aired only in PayTV. Dietrich Bonhoeffer's life, is a true example about a good German and specially, about a good man. The conversations between Tukur's character and the Nazi prosecutor are specially interesting. A true ideas' war: two different Germans, both with faith in there believes. Bonhoeffer was a very complex person: man, freedom fighter, boyfriend, churchman and a great intellectual; Ulrich Tukur is outstanding as Bonhoeffer. I recommended this film a lot, specially in this difficult times for the planet. In Mexico we don't know a lot about Pastor Bonhoeffer life and legacy, this is a great work for rescue a forgotten hero.\r\n1\tCult classics are nearly impossible to predict. Who could guess that Vision Quest, Fight Club, and 2001: A Space Oddysey, movies that were panned by critics and audiences alike upon their release, would become immensely popular? Like many IMDBers, I consider myself a movie expert. Unlike the majority of those who hated Envy(evidenced by a dismal 4.4 rating), I found Envy to be one of the funniest movies in the last decade.<br /><br />The plot of the movie is ridiculous. The dialogue isn't clever, the scenes have little continuity, and the script seems like it was written by a fourth grader. But that's exactly why the movie is so hilarious. You see, in order to appreciate the accidental genius of Envy, you have to enjoy the movie from an ironically-detached point of view.<br /><br />Why do I love Envy? Because the movie is bad to the point that it becomes good. This is the recipe for a cult classic, and Envy definitely fits the bill.\r\n1\t\"I watched this with my whole family as a 9 year old in 1964 on our black and white TV. I remember my father remarking that \"\"this is how it could have happened - Adam and Eve.\"\" I vividly remember the scene when Adam finds Eve, her eyes were blackened. I asked my father why were her eyes blackened and he told because she was tired and hungry. Having not seen this episode in 45 years, I still remember it vividly - the TV transmissions back and forth with the home planet, scenes of bombs shaking the headquarters, with the final scene of the two walking off, Adam carrying his pack and Eve following. It may not have been a theatrical work of art, but it certainly left an impression on me all these years.\"\r\n1\tThis is an almost action-less film following Jack, an insomniac, as he goes through hallucinations, is visited by dead friends, throws himself off a building, and, for a lot of the time, can't tell reality from hallucination.<br /><br />Dominic Monaghan, as Jack, is truly believable. Confused, and scared but lethargic and, at times blankly accepting of what he sees, we follow him trying to sort out what he's seeing and find a way to sleep.<br /><br />Introduce a talking dog (another hallucination) and children that suddenly appear in Jack's bathroom and bedroom without any explanation as to how they got there (more hallucination) and you have an interesting, mind boggling, 43 minutes And the shower scene is enough to get any Dom fan coming back for more.\r\n0\t\"Yes, I was lucky enough to see the long-running original production of Michael Bennett's hit musical. It was an amazing experience and I paid to see the movie when it hit theatres back in 1985. It is awful. Almost everything fails. First off, Attenborough (a fine actor, a good director with the right material) is a sorry choice - almost as bad as when John Huston was hired to mangle ANNIE. The camera is always in the wrong place - they chop up the songs and the CASTING!!! They are awful - the power of the play was these dancers - these hungry, talented performers just wanted a chance to show what they could do and when they got their chance - you couldn't take your eyes off of them. But this cast just gets by dancing, does a \"\"nice\"\" job singing but none of them spark one bit. In fact, look up the cast on IMDb - none of them really went on to do anything much. (OK, OK, Janet Jones married Gretzky - sheesh). So this cinema trainwreck does not capture for one second the magic, the desperation, the passion of the stage musical. A total strike-out! (But even though they try to smother the music - the great music still rises up at times and reminds people how great the score was).\"\r\n0\t\"Without a doubt, this is one of the worst pictures I ever actually paid money to see - the kind of flick you choose out of desperation at the mall cinema during a Christmas holiday when you have missed the start times for anything good but still are dead set on seeing a movie! And that is exactly how I came to see this stink bomb...<br /><br />At the distance of the better part of three decades I can still smell the rotting fish that constitute this story line. Unbelievable plot - that a killer whale carries a grudge against an individual not of the sea - is laughable. And that's about all, except for a completely out-of-place \"\"love theme\"\" that plays over the finish of a film devoid of a love story. At least Charlotte Rampling is lovely (in a two dimensional role) but Richard Harris just chews up the scenery. He was no Captain Quint (Robert Shaw) and this is no \"\"Jaws\"\". Mercifully, I have put most of it out of mind and when I run across it on television air casts I move on immediately. \"\"Danger, Will Robinson!\"\" See the current t.v. commercial showing a husband and wife whale-watching (\"\"Orca - I love Orca...\"\") - at least it is over in sixty seconds. This flick represents 92 minutes of my life that I will never get back.\"\r\n1\tKate Beckinsale steals the show! Bravo! Too bad Knightly ins't as good looking as Jeremy Northam. Mark Strong did a fabulous job. Bernard Hepton was perfect as Emmas father. I love the end scene (which is an addition to the novel-but well written) when the harvest is in and Knightly dines with his workers and high society friends. Emma must show that she accepts this now. She is a changed woman. That is too much too quick, but OK. I'll buy into it. Samantha Bond plays Emma's ex-governess and confidant. She is wonderful. just as I would have imagined her. I believe that when the UK does a Jane Austen its the best. American versions of English literature are done for money and not for quality. See this one!\r\n0\tI think this is almost all I need to say. I feel obliged to explain my actions though. I've basically never seen such an armateur production, and I mean that in all senses of the word. Although the physical camera work, boom MIC operation and other technical aspects of this film are laughable, unfortunately its not the only areas.<br /><br />Unlike some classic independent films that have been saved by their scripts great characterization and plot, this unfortunately has an awful script, awful acting and worst of all, awful annoying characters.<br /><br />It's a crime that for the every independent film that gets, distribution like Haiku Tunnel, there's a 101 other indie films that died silent deaths. I don't know who the Kornbluth brothers know at Sony, but that can be my only explanation as to how this amateur family production ever got distribution. I'm quite bemused as to why they picked this up.<br /><br />The ONLY part of this film that holds out any intrigue is its title. However, the reason for that is even a let down. I hope this review will save a few people that may be intrigued by this films title from going to watch it. I've seen a lot of films in my time, and I'm very forgiving when in the cinema, but this was too much. I'll never forget 'tunnel', for marking an important point in my life experience of cinema. Shame it's such a low point.<br /><br />\r\n1\t\"When you see the cover of the DVD you're convinced this is some Class B cheesy cheapie, a film made for $1,000 in somebody's backyard.<br /><br />Wrong! <br /><br />This is quality material and really good. It's a comedy and a clever one at that. It also is very touching in spots, with a nice spot of kindness. The production values are very good (this looks excellent), the actors are known, the film's direction and sets are great. It's amazing. Who would have thought?<br /><br />Carrie-Ann Moss, playing against-type, is terrific, as\"\"Helen Robinson,\"\" the June Cleaver-like wife; Billy Connolly is great as the grunting good-hearted zombie \"\"Fido;\"\" Tim Blake Nelson (\"\"Mr. Theopolis\"\") is a hoot is the neighbor with the sexy zombie girlfriend \"\"Tammy,\"\" and Henry Czerny and Dylan Baker as dads (check) are excellent, too K'Sun Ray as young \"\"Timmy Robinson,\"\" shouldn't be overlooked, either. In fact, he probably has more lines in the movie than anyone.<br /><br />If I explain the story it will sound so stupid that few of you would watch it. You'll just have to take the word of the people here who liked it and found it to be a very, very pleasant surprise. You need a dark sense of humor, though; an appreciation of the absurd.\"\r\n1\t\"A movie you start watching as a late night cable porn..... It is hot in that department but it has even a lot more.... It has a sense of humor... some action in and out of the \"\"bed\"\" and it has reasonable acting as well as a story worth watching...A definite adult only movie but well worth watching...\"\r\n1\t\"Weak start, solid middle, fantastic finish. That's my impression of this film, anyway. I liked Simon Pegg in the two films I've seen him in--- Hot Fuzz, and Shaun of the Dead. His role here, though, took a completely different turn. Shows his range as an actor, but nonetheless I really disliked th character as he was portrayed at the beginning.<br /><br />There's a kind of humour I call \"\"frustration comedy.\"\" Its supposed \"\"jokes\"\" and wit are really nothing more than painful and awkward moments. Much like the Bean character Rowan Atkinmson plays. There are a number of other comedic actors who portray similar characters too. I don't mean to bash them here, so will not.<br /><br />But do be warned that if you are like me, and you dislike smarmy and maddeningly bungling idiots, Pegg shows just such characteristics for the first third of this film. It DOES get better, however.<br /><br />I read somewhere that this is based on a true story. Hmmm. Maybe. The film's story stopped being annoying, and became kind of a triumph of the \"\"little guy\"\" in the final third. I don't need all films to be sugar and light--- but coincidentally, as this film got better, it also started to be more and more of a happy ending.<br /><br />It was also a pleasure to see an old favourite, Jeff Bridges, play a role so masterfully. I liked \"\"Iron Man,\"\" but was saddened by the fact that Bridges' character was a villain. Purely personal taste, of course, as his acting in that was superb. Nonetheless, he was a marvel here as the Bigger Than Life man of vision, the publisher of Sharps. It was nice to see him in a role that I could actually enjoy.<br /><br />Overall then, I liked it! I just wish I had come in 40 minutes late, and missed the beginning.\"\r\n1\t\"Very few movies have had the impact on American culture the way Urban Cowboy has. Thank god it was temporary. But UC is almost in a class by itself as one of those flicks that when you're flipping channels at 3:00AM you just can't take your eyes off....my top three are Animal House and Walking Tall BTW but that's beside the point. I remember Urban Cowboy hit the theaters and overnite there were honkytonks being opened on every corner, men were sporting cowboy hats with their penny loafers, and if you didnt know how to two-step you were considered a social moron! Personally I think it's a great movie. Travolta really surprised me on the heels of SatNiteFever. Who'd a thunk. He's actually believable too. The soundtrack is awesome. Too bad Charlene Tilton, of TV's Dallas fame ruined Johnny Lee's career cause that guy was just terrific. The show stealer here is Scott Glenn as the greaser ex-con redneck cowboy. And I ain't got nothing against greaser ex-con cowboys semi-being one myself, but I've always envied what I feel to be the greatest power line of all time....\"\"Pack-at S*#t!\"\" Sort of like Clint's \"\"make my day.\"\" And watching him slap Sissy around is the closest thing I'll see to my Julia Roberts fantasy so..... Like I said, beautiful. 9/10\"\r\n0\tHaving enjoyed Mike Myers previous work (Waynes World and Saturday Night Live) my expectations of a 60s bond spoof were fairly high. It became plain after the first minute that this was an exercise in how to be as puerile and unfunny as possible. I swit ched off after ten minutes. I watched it the other day a second time to see whether I had been unfair the first time. I switched it off after ten minutes. I find it hard to believe how even a twelve year-old boy could find this funny. The dialogue is an e mbarrassment, Myers is painful to watch (as is Heather Graham) and the succession of characters including Fat Bastard makes matters even worse. Apart from the mildly amusing title and the psychedelic set design this is one of the worst films I have ever seen. I personally recommend you avoid this like the plague, though several friends of mine enjoyed it (maybe they were blindfolded at the time).º\r\n1\tTen out of ten stars is no exaggeration. This documentary provides the viewers with unique footage about the 2003 coup in Venezuela. This great film is now the minimum knowledge requirement if you want to express a competent opinion about Venezuela or Hugo Chavez.<br /><br />The dramatic, electrified atmosphere, the unique footage will allow you to experience a true historic moment. You'll feel like you're in the middle of the situation. <br /><br />The film will help you gain unique insight in the happenings of 2003 and will help you hear a side you will rarely hear on TV. It's something you shouldn't miss.\r\n0\tI can't believe I wasted my time with this movie. I couldn't even call it a movie. It was so bad with nothing to recommend it. <br /><br />I like low budget movies and weird flicks but this one had me bored to death. Badly made and bad acting ruined it from being curious. You have to wonder what these people were thinking when they spent money to produce this movie. I wonder what I was thinking watching it to the end. I recommend this movie to no one. How did they release this? Was there an audience who likes this kind of movie? There must be because you can find this at almost any video store. But why?<br /><br />Deserves to be forgotten.<br /><br />If you like bad movies then this is for you.\r\n0\t\"Little Mosque is one of the most boring CBC comedies I have ever seen. They have a way of producing the easiest comedy programming they can for the oldest most-easily-offended viewers which for CBC means 85 year old farmers in Saskatchewan. The jokes are all predictable and so deathly lame I can't believe it. The performances are very hammy and over acted but I don't blame the actors since those kind of one dimensional stereotyped characters are probably exactly what the CBC asked for and demanded. Very lame show with bad jokes they tried to present as \"\"controversial\"\" well it is less controversial than the other boring CBC comedies like The Hour Has 22 Minutes, Royal Canadian Air Farce and Rick Mercer's Report.\"\r\n0\tThis is by far the worst horror/thriller I've seen in my 29 years. If someone offers this to you for free tell them NO. This movie makes you a dumber person for knowing you watched it. The plot isn't even the worst part of this movie.....its the acting, camera work, lighting, and sound. there is absolutely nothing to like about this movie. whoever paid to have this film made is broke now. I hope the director never gets the greenlight for another movie. In its defense this movie was made quickly to try to capitalize on the actual BTK killer's capture but I've seen movie of the weeks that looked like Oscar winners compared to this.\r\n0\t\"Over several years of looking for half-decent films to rent for my kids, I've developed a sixth-sense for spotting the really cheesy, direct-to-video efforts that are really painful to sit through (for anyone over the age of eight). I dropped the ball on this one and the kids spent half the movie asking me \"\"what did she say that for?\"\" and \"\"why did he do that?\"\" and my eyes got sore from rolling them every minute or so as characters did a really bad job of introducing seemingly random plot changes. And the next time someone decides that having absolutely no skill with a sword is simply \"\"bringing realism\"\" to a film, please run them through with a dull butter knife. \"\"Prehysteria!\"\" was head and shoulders above this. Arrgh.\"\r\n1\tMy only minor quibble with the film I grew up knowing as STAIRWAY TO HEAVEN, is the fact that the wonderful RAYMOND MASSEY is relegated to the last twenty or so minutes in the trial scene. And the trial itself, IMO, is the least interesting portion of this fascinating fantasy.<br /><br />David NIVEN and KIM HUNTER are wonderfully cast as the young lovers, but it's ROGER LIVESEY who gives the liveliest and most credible performance. French accented MARIUS GORING is a delight (he even gets in a remark about Technicolor) as the heavenly messenger sent to reclaim Niven when his wartime death goes unreported due to an oversight. Goring has some of the wittiest lines and delivers them with relish.<br /><br />Seeing this tonight on TCM for the first time in twenty or so years, I think it's a supreme example of what a wonderful year 1946 was for films. The Technicolor photography, somewhat subdued and not garish at all, is excellent and the way it shifts into B&W for the heavenly sequences is done with great imagination and effectiveness.<br /><br />The opening scene is the sort that really draws a viewer into the fantasy aspects of the story--and Niven's tense talk with radio operator Hunter while his plane is crashing toward earth, unexpectedly leads to a memorable romantic encounter. Truly a marvelous film from beginning to end, another triumph for Michael Powell and Emeric Pressburger.\r\n0\tThe director Sidney J. Furie has created in Hollow Point a post-modern absurdist masterpiece that challenges and constantly surprises the audience. <br /><br />Sidney J. Furie dares to ask the question of what happens to the tired conventional traditionalist paradigms of 'plot' and 'characterisation' when you remove the crutches of 'motivation' and 'reason'. <br /><br />The result leads me to say that my opinion of him could not possibly get any higher.<br /><br />One and a half stars.<br /><br />P.S. Nothing in this movie makes any sense, the law enforcement agents are flat out unlikeable and the organised criminals are full on insane.\r\n1\t\"The bittersweet twist to this movie contains a wonderful element of romanticism that evokes an impetuous passion! These characteristics of idealistic imagery which \"\"Moonstruck\"\" possesses, spur on an end result of a resounding thumbs up verdict by virtually every prominent critic in Hollywood. Let me describe the circumstances to this film, simply put, they are \"\"yesteryear\"\". \"\"Moonstruck\"\" is a cohesive film which sparks the naivety of an old Italian neighborhood in New York City. New York City has always been one big melting pot that is galvanized by many bicker-some mannerisms which are indicative of typical New Yorkers, this includes a lot of Italian Americans living in New York as well! The mid and late eighties brought on an abrupt conclusion to many strong associations with various cultural stereotypes. Ethnicity polarization was a firmly embedded scourge in American history that was far more prevalent several generations before this movie was made. These generalizing proclivities still exist today, however, they are more mollified and less identifiable! For this Italian family of a bygone era, confusion, indecisiveness, agitation, and yes, of course, love, all have the comical camaraderie of an utterly human understanding to them! The kindred spirits with everyone in \"\"Moonstruck\"\" seems to be that of comprehending individual frailties. One might wonder about Cher playing the lead role, as she is more known as an entertainer than a big box office first billing star in a movie. In \"\"Moonstruck\"\", however, I think she was incredibly well suited to her role, and came off as thoroughly believable in a relatively unbelievable situation. All of the characters in \"\"Moonstruck\"\" are very rough around the edges, really tough, and not afraid to have a formidable duel with adversity. The most hilarious aspect to their lives is imperfection, and they are thoroughly aware of the fact that weathering the storm definitely serves a constructive purpose! I thought the acting in this movie was sensational. All relationships in this movie garner an auspicious potential to vividly illuminate because everybody knows how everybody else's basic nature is really like!! For this family, nothing is glamorous, nothing is pretentiously romantic, and nothing is overly emotional (just moderately so). The fact is, this entire family is plainly and perpetually afflicted and overcome by an extremely zealous and candid cupid in all of their lives. Taking moon beams literally can indeed have a pleasantly enervating impact on one's resolve, masqueraded mystique, and resistance to the proverbial am ore'. Thus signifying everything!! The homey and mercurial tenet in this film is basically one of ; Be honest, get angry; Be honest, get confrontational; Be honest, get distorted and emphatic; Most importantly; Be honest, and fall in love!! This is Cher's best performance ever as an actress!! Nicholas Cage, Danny Aiello, and Olympia Dukakis, were wonderfully flawed in \"\"Moonstruck\"\" Such performances by these three were perfectly appropriate for the kinetic energy of the characters in this movie! Director, Norman Jewison (Famous for \"\"Cincinnati Kid\"\", \"\"Thomas Crowne Affair\"\", and most famous for \"\"In The Heat Of The Night\"\" which won the academy award for best picture in 1967) depicts many keen and humanistic instincts in the process of purveying the deliberate incongruity to this film! I am Italian American in descent, (Partially anyways) Cher is not Italian, and, for that matter, neither is the writer nor the director! I guess since non-Italians like eating our food, they may as well use our culture to make a fabulous film too! It is refreshing to know that a film can be marvelous and have an incredibly happy ending!! For those of you who didn't like this movie, I just have one thing to say \"\"Snap Out Of It!!\"\" This movie \"\"Moonstruck\"\" is totally happy go lucky!! Totally eighties!! and Totally five stars!! See it!!\"\r\n0\tThis was, so far, the worst movie I have seen in my entire life, and I have seen some REALLY bad movies. I saw this movie at my local video store, and the cover looked like it could be a decent horror movie. Little did I know that the cover would be the best part of the movie. Where to start? The filming of the movie was scattered and boring. At one point, there is a one-minute scene of no one talking, just a car driving to a ranch on a normal sunny day. Nothing happened, they just drove in silence. The whole movie is boring, with annoying, unbelievable dialogue and basically no plot to speak of. If you rent this movie, watch it with some friends and it might make a good comedy. Otherwise, when you see this movie, run.\r\n1\tGuinea Pig: The Devil's Experiment is without a doubt ***** stars on first view, its a raw realistic creepy and disturbing look into the dark side of human nature. This movie gets right to the point, you may be thinking what point? The point is to satisfy fan's of just extreme violence and gore. This movie has some gore, more or less just torturing a women violently. There are really only 3 scene's that could be considered gore. I'll tell you one thing though Guinea Pig: The Devil's Experiment makes Hostile look like Sesame Street. If you thought Hostile was a crazy brutal disturbing torture flick then you ain't seen the half of it until you've seen Guinea Pig: The Devil's Experiment.<br /><br />Movie Rating 0-5, Gore 0-10<br /><br />Guinea Pig: The Devil's Experiment (Uncut) ***** (7)\r\n0\tThis is by far THE WORST movie i have ever watched. I've seen some pretty awful movies in my time but this ones takes the cake, no, wait, i mean the the whole damn bakery. It is so bad that i believe a word to describe the way you will feel after watching this atrocity has yet to be created. Please just do yourself a favor, if you ever get the urge to watch this and watch thirty minutes of that annoying purple dinosaur Barney, then multiply that thirty times fold and you would still only get a small fraction of the horror you would be in store for. In summation, i guess you really can call it a horror movie, but only if you're willing to be scared senseless by the worst acting in the business and utterly pointless story.<br /><br />Real Rating, -10 Disgusting\r\n0\tInteresting idea and storyline which didn't quite work.<br /><br />When you see the film, maybe you will feel as dissatisfied with the ending as I did. I didn't really know who to root for in the movie, Taye Diggs looked bored as the detective, the rest of the characters seem so one-dimensional and unpleasant.<br /><br />If the victim Alicia(Mia Kirschner) had been more of a nice girl, we might actually have enjoyed seeing the plot unfold and the perpetrator brought to justice. The problem was that she was as bitchy as the other girls, turning from sweet girl to conniving opportunistic cokehead. I can't understand the moral message of this film, and as a detective story and thriller it doesn't work.\r\n1\t\"This is one of the weirder movies I have recently watched. That's because it seems less like a movie and more like an experimental film. Kurasawa's experiment was to take a variety of individuals who live at a garbage dump and weave their experiences into a tapestry that offers glimpses of their generally harsh existences. Not every episode is depressing and harsh, but overall this is definitely the tone. Let's see,...we have a case of incest/rape, attempted murder, wife swapping, alcoholism, infidelity, death of a little boy after eating tainted fish, a man with severe depression (he never talks during the movie and looks very scary), a hopeless dreamer who would probably be diagnosed with schizophrenia, a mentally retarded young man who thinks he is a street car conductor and spends all his waking moments \"\"driving\"\" his street car through paths among the garbage piles, a man married to a total shrew (I think I liked her character even less than the incestuous rapist!), etc., etc. In fact, it is depressing enough that it seemed almost like an Ingmar Bergman movie set in Japan, as Bergman made MANY movies that tended to deal with mental illness and the hopelessness of life. Is it any wonder that after making this film Kurasawa tried to kill himself?! So, did I like it? No. It was not a fun experience. But, it was a very well-made movie that definitely kept my attention and as a result, I really wanted to see what happened to these people. It was sort of like watching a train wreck--you don't WANT to see all the carnage but you can't help but watch! Of all the vignettes, I think that the older man who tended to look out for everyone and who didn't really seem to fit in (he was too well-adjusted and wise to be living in a garbage dump) was perhaps meant to represent Kurasawa himself. Maybe. I dunno.<br /><br />If you've seen a variety of Kurasawa films and have a high tolerance for strange art films, give this one a watch. However, do NOT make this your first experience watching his movies--it's sure to scare away many viewers!\"\r\n0\tI bought Unhinged because I got suckered by the gory picture on the cover. If you want to see all the good parts of the movie just look on the back of the box. All the kills are shown and I can honestly tell you that they look much better in the still frames than they do in the movie.<br /><br />Having said that, let's look at the plot. A group of college girls driving to a rock concert (by way of the deep, dark woods in one of the longest driving sequences ever captured on celluloid) slide off the road. No visible damage is done to the car but apparently it was enough to put one of the characters in a comatose state for the rest of the film (or perhaps she read the script and was already in a coma before filming began).<br /><br />The two remaining girls wake up in a big, isolated house. The house, by the way, is fabulous and manages more drama just by its presence than any of the actors in the film. For some reason, though, this house has no roads going to it. The only way you can get to the main road is by hiking five miles through the woods. The girls spend the rest of Unhinged sitting around listening to weird conversations between an old rich bitch (who looks like George Washington in drag) and her equally homely, sexually repressed daughter. The girls apparently were in no hurry to get back from that concert anyway being that they packed more clothes than the cast of Gilligan's Island for that three hour tour.<br /><br />By the time we, the viewers, get to the kill scenes, we no longer care. We wish that someone would kill us just to end our suffering . Unhinged finally wraps up with a quite shocking ending that deserved to be in a much better film. It's almost as though the ending, the one good idea in the film, was written first and then the writers tried to make a movie leading up to it.<br /><br />Unhinged is ultimately a boring film with bad acting, inept directing, and a plot with more holes than a leper in a porno film (sorry. I'm not sure where that came from). You will get an idea of how bad this movie is during the opening credits when, for some reason that is never explained, the screen goes black for about two minutes while the characters talk about nothing worth remembering. Don't waste your time. You'll just feel Unhinged and want your time and money back.\r\n1\t\"In 1930,Europe received quite a shock when Luis Bunuel's 'L'Age Dor' was released, causing a riot in Paris when screened there,resulting in it being banned for something like over forty years. Three years later,in 1933,when Europe had gotten over the shock,it was once again turned on it's ear with 'Ekstase',a symphony (of sorts)to love. The film starred a young,unknown German actress named Hedwig Kiesler,who would later change her name to Hedy Lamarr,when she moved to America to escape the madness of Adolf Hitler,as Eva,a young bride who has just married a cold,distant loveless husband (played by Emil Jerman),only to discover that she has made a major mistake. One divorce later,Eva is footloose & fancy free & is out one day, skinny dipping in a lake,when she discovers Adam,a handsome,young engineer (played by Aribert Mog)who takes a real fancy to her (and she,him). After a wild night of passion,Eva's ex-husband turns up once again,hoping to win Eva back,only to find he now has a rival. I won't spoil what transpires. Czech director, Gustav Machaty (who directed the original screen version of 'Madam X',another parable in romantic obsession) directs from a screenplay by Jacques Koerpel,Frantisek Horky & Machaty,from the novel by Robert Horky. The film's velvety cinematography (which reminded me of Avant Garde photographer,Man Ray's photos of the era,which goes for some impressionistic use of light & shadow,a lot)is by Hans Androschin & Jan Stallich). The film's brisk editing is by Antonin Zelenka & the films art direction, which goes for a lush,nearly Art Deco look,is by Bohumil Hes). If I have any quirk about this film, it is the music score,by Giuseppe Becce,which goes for an over the top,melodramatic feel to it that gets old fast (certain themes are repeated over & over again,wearing out it's welcome,fast---kind of like some of David Lean's over use of certain musical themes,especially in 'Lawrence Of Arabia',and 'Dr.Zhivago'). Some years back,a brand new restored print was made up of the best source material,cobbled together from various European existing prints available,restoring it to what is quite possibly the closest version of what it originally looked like before the Vatican condemned it as \"\"decadent\"\" (yeah,right...like the Church never did anything wrong),and the Hayes office cut it to ribbons,when it was finally released in the U.S.A. in 1936,in a \"\"Hayes Office\"\" approved cut (likewise). Minimal dialog in German with English subtitles (it was meant to be a mainly visual experience). Not rated,but contains that infamous nude skinny dipping scene by Hedy Lamarr (done tastefully,mind you) & some suggestions of sexual content (likewise)that would scarcely earn it a PG-13 rating,nowadays. Worth a look if you have any interest in early European cinema,or Avant Garde/Experimental cinema\"\r\n1\tYet again, Madhur Bhandarkar takes you on a ride to the wild side. And a remarkable one it is, literally and figuratively.<br /><br />Mumbai hi-society -- stars and starlets, glam dolls and witch doctors, business tycoons and broker types, yep the whole stinking lot -- are in sharp focus here. In typical tabloid fashion, their worlds unfold, with every colorful story a clever sub-plot in itself.<br /><br />A struggling starlet dumped by the producer after getting her pregnant, the stewardess and her high-profile husband, the pedophile businessman and his neurotic wife, the reporters and the police captain; all shades on display and countless hues in between.<br /><br />Bhandarkar does a swell job of digging up the dirt on the drama kings, the dancing queens and the living dead. Atul Kulkarni packs a punch, as does Boman Irani and Sandhya Mrudul. Konkona Sen Sharma is effective as the ex-crime beat reporter, but she could have been dolled up a little in keeping with the job change and the party circuit.<br /><br />Highly focused (running time 140 min) and refreshingly different film, well worth the money.\r\n1\t\"I thought How The Grinch Stole Christmas was a pretty good movie.It wasn't horrible, nor was it great, but it was enjoyable to watch.I felt as if Jim Carrey got a little annoying at times.They made the Grinch seem like a special education person, when all he needed to be was evil and devious, but yet he turned out kind of retarded.I did think the scenery, when not inside the Grinch's cave, was beautiful, and there was a few parts where I laughed, but most of the time I thought it was just annoying.This movie could've been \"\"SO\"\" much better if they had changed the Grinch's personality, and they had included some more laugh scenes, because most of the humor wasn't funny.I liked How The Grinch Stole Christmas anyway, but it's not anything to get excited about seeing.\"\r\n1\tThis story is a complex and wonderful tale of the last Harem of the Ottoman empire, well told and provoking we see the inner workings of a world now gone, and learn about the people who lived there.<br /><br />I enjoyed the story, characters, acting and scenes. A few scenes suffered from quick editing and the sub titles sometimes disappeared too quickly, otherwise a wonderful piece.<br /><br />The main character Safiya is played wonderfully by Marie Gillain who I am pleased to say did a fantastic job without over doing it. The scenes with her and Alex Descas (Nadir) are charming and lovely.<br /><br />I recommend this film for anybody looking to watch something less Hollywood and more authentic to the world they are emulating.\r\n0\t\"This is the worst ripoff of Home Alone movies that I have EVER seen! Watch part 1 and two, but don't let anyone say that this is BETTER than the first two! I mean, really, you don't make a movie, then make a sequel with the same characters and actors, and then make another sequel with DIFFERENT characters and actors! I mean, it would have been OK if this wan't a \"\"Home Alone\"\" movie, but they DID make it a Home Alone movie. Culkin is too old now, so you're suppose to STOP making sequels! Goodness, this movie makes me SICK! Buy part 1 and 2.\"\r\n1\t\"This is an extremely dense, somber, and complicated film that unravels quite slowly, revealing excruciating detail, like the attention paid in a novel, and watching this film \"\"IS\"\" like watching a novel unfold. While I didn't care for the narrator, as I felt he was out of balance with the rest of the performances, this film features some of the best ensemble acting I have ever seen, and the lead, Summer Phoenix, is fabulous. Her innocence and naivete some might find implausible, sort of a cross between Cinderella and Alice in Wonderland. I can buy that critique, but she's still fabulous, partially because she's unlike anything I've ever seen before.<br /><br />This film is unbelievably beautiful, filmed by Eric Gautier, and part of what is so unique about this film is how it doesn't ever show what you'd expect. It's always surprising, and despite it's length, the film never reveals more than it needs to. At 163 minutes, it's extremely concise, to a fault, I'd say, which is one of the wonders of this film. It's filled with brief moments which are simply stunning, some of the best you're likely to see all year, and all these moments add up in the end to an extraordinary film experience. The family moments are unique, Ian Holm is brilliant, and what this film has to say about the theater hasn't been seen in films since Cassavetes' \"\"Opening Night,\"\" or perhaps Chaplin's \"\"Limelight.\"\" But, believe it or not, this film is much \"\"less\"\" conventional. I never knew where this film was going, and now, having seen it, it still has multiple possibilities. This is a powerful, incredibly provocative film.\"\r\n0\tdon't expect much from this film. In many ways this film resembles a film that Doris Day starred in in 1956,title, Julie. In this film Doris,who was a flight attendant,stewardess,in those days,landed the air craft after her derange husband,played by Louis Jordan shot the captain. She did a far better job,more convincing,than Kim Ojah,who took control of a 747 and manage to land it without much help from the control tower. I know a little about 747 aircraft,i use to be a flight attendant myself. Like i said,do not expect much from this film,it was done on a cheap budget. The producers were to cheap to use a plane with the name of a airline on it. Oceanic is one name that several movies have used. The only writing on this plane was the name of the company that made the aircraft.\r\n1\t\"I've read one comment which labeled this film \"\"trash\"\" and \"\"a waste<br /><br />of time.\"\" I think this person got their political undies tugged a bit<br /><br />too much.<br /><br />I just rented the new Criterion DVD's of both Yellow and Blue.<br /><br />These films--although hardly great--have at least become of<br /><br />historical interest as to the so-called \"\"radical student<br /><br />political-social movement\"\"of the late '60s.<br /><br />I hadn't seen either picture and from their notorious reputation, I<br /><br />was expecting some real porn (there isn't any.) There is frontal<br /><br />nudity (including the still verboten frontal male nudity (automatic<br /><br />NC-17--the Orwellian-X) in the U.S. But I wasn't expecting the films<br /><br />in-your-face democratic socialist message.<br /><br /> Though it tends to the simplistic , I thought it occassionally made<br /><br />its points well. Both films occassionally had me laughing out loud<br /><br />and the director's commentary made it clear there was plenty of<br /><br />parody in the film. Especially the supposedly \"\"pornographic\"\" sex<br /><br />scenes. The first such scene is very realistic. The lead couple is<br /><br />clumsy, inept, funny and endearing in their first copulation scene.<br /><br />The second--which caused the most complaints--has faked<br /><br />cunnilingus and fellatio. And the last is the end of an angry fight,<br /><br />that is believable.<br /><br />The extras include an informative introduction to the film, an<br /><br />interview with the original American distributor and his attorney,<br /><br />excerpts from trial testimony in the U.S. and a \"\"diary\"\" commentary<br /><br />by the director on some scenes.<br /><br />This is the film that \"\"blue noses\"\" wouldn't let alone and led to the<br /><br />pivotal \"\"prurient interest with no social redeeming value\"\" standard<br /><br />that, thankfully, still stands.<br /><br />Those with an interest in the quirks of history will find this a must<br /><br />see.\"\r\n1\t\"Look, if I were interested in a Nancy Drew book, what I would do is pick up a book and read it. I'm not. Ever since I can remember I read people trashing movies because it wasn't like the book. I'm sorry - in the digital age we can no longer watch movies on flip books, however I'm sure you can still find a few short silent films in book form. When Lord of the Rings came out, people complained. When the third one won an Oscar - \"\"The book was better.\"\" When I watched To Kill a Mockingbird, \"\"the book was better.\"\" Now a bunch of people are upset, yet again, because Nancy Drew wasn't like the book. I'm not saying Nancy Drew is going to win any Oscars - if anything it'll be one of those Nickelodeon Blimps or Kids Choice Awards. I'm saying give film a break. It's film, not paper. As a movie, I found Nancy Drew quite enjoyable - featuring cameos from Bruce Willis and Adam Goldberg (The Hebrew Hammer) and supporting roles featuring Tate Donovan (Jimmy Cooper on the O.C.) and Rachel Leigh Cook (She's All That). This is the first time I've seen Emma Roberts in a movie and, frankly, I enjoy her work more than most of Julia and of Eric's; her character stays consistent throughout the film and reacts well with conflict. A lighthearted movie in the spirit of Harriet the Spy is nice now and again.<br /><br />I give it ten stars because I thoroughly enjoyed the movie, would love to see it again, and will probably buy it upon DVD release.\"\r\n1\tThis movie is good. It's not the best of the great CG kung fu flicks but its pretty good. First thing first, the story is actually good. The whole idea of gods vs fallen gods type deal with super powers is pretty cool. My problem is theres too many characters! It got very confusing when they switched scenes! The special effects were INCREDIBLE! The fighting scenes were very fast paced and complex. This movie practically all computer generated. The acting is superb, as always expected from such high profile players. Ekin Cheng makes an excellent protagonist, loner character. Zhang Ziyi did nothing for me in this movie. I thought she would have a bigger part but she did one fight scene and a whole lot of yapping. The bad guy, the whole skull army and the whole blood cloud thing is very frightening. The music is also excellent. To me this story deserve at least a mini-series and not just ONE movie. Theres too much story to cram in 2 hours. Maybe if there was a book or something, I would be able to keep up with all the characters and the details. This movie sacrifices story integrity for action. I reccomend Storm Riders over this any day.\r\n0\t\"Comparison with American Graffiti is inevitable so save your money and time by renting that timeless classic. Speaking of timeliness, there was an episode of Cheers where Norm and Cliff competed on who can find the most anachronism in a movie. They would have loved this movie everything from some of the songs and some of the clothing were wrong. There were sly reference such as 'they paved paradise to put up a parking lot'. The filmmakers hoped to elicit some smiles from us but basically made me groan.<br /><br />The characters in this movie are incredibly politically and socially astute for teenagers. Almost as smart as the people who were in their thirties and forties when they wrote the darn movie. Very little of what the characters said were believable. Combine the bad writing and bad acting this movie just totally fail. Although, there were two exceptions Kelli Williams liven things up as the future flower child and, despite what another reviewer said, Rick Shroeder was quite good. Showing that brooding characteristic that would come to full boil in his eventual appearance in \"\"N.Y.P.D. Blues\"\".\"\r\n1\tFirst off, this really is my favorite film ever. I don't need to give anyone a description because every a**hole does that. I am literally obsessed with this practically bloodless, cheesy, lame effects having', boom-stick showing', badly edited, 80's metal horror masterpiece. The director (I heard) had hoped for a hit at the box office so that he could do sequels and have a FREDDY/JASON type of deal for himself. Damn, I wish that could've went down like that! The soundtrack's banging'. The acting's good....CHECK THIS MOFO OUT. and any die-hard fans out there, feel free to email and chat sometime. Midgetorgy....I can be found at YAHOO.\r\n1\tI am curious of what rifle Beckett was using in the movie, and also the caliber of the bullet that he was suppose to be firing. If this is loosely based on Carlos Hathcock's sniping, I am guessing that it is a 7mm. round. I am also curious of the rifle itself. He also made a comment in the final Sniper movie about the rifle that the Vietnamese man let him use that belonged to his father. Beckett mentioned that he thought it was the best sniper rifle ever made. I would like to know which rifle that is also. I know that this particular rifle was made around WWII or beforehand. I just couldn't get a close enough look at it watching the movie to identify it.<br /><br />As for Mr. Hathcocks kills, his longest shot was 1.47 miles, and he had 93 confirmed kills and 14 unconfirmed kills. After his wounds somewhat healed from being burned in Vietnam, he spent the rest of his career teaching snipers in the USMC the skills that they would need in the field. His sniping career is still mentioned to our brothers and sisters that train in the USMC. I found out his name from my friend who is a former Marine. Any information would be great.\r\n1\ti liked this movie a lot.I rented this expecting something not too bad to spend an evening.It turned out a particularly satisfying experience. Some scenes were hilarious and managed to be so in a movie not intended to be just a stupid slapstick comedy but with some meaning and moral values.It manages on both counts.The leads are all good but especially the guy who stars,also wrote and produced the movie.I've never seen any of these actors before, but they were likable and made me care about what happens to them in the end which is saying a lot.The script is clever and involving and has a refreshing feel to it. I think you wont be disappointed to watch this.\r\n1\tBelieve it or not, at 12 minutes, this film (for 1912) is a full-length film. Very, very few films were longer than that back then, but that is definitely NOT what sets this odd little film apart from the rest! No, what's different is that all the actors (with the exception of one frog) are bugs...yes, bugs! This simple little domestic comedy could have looked much like productions starring the likes of Chaplin, Laurel and Hardy or Max Linder but instead this Russian production uses bugs (or, I think, models that looked just like bugs). Chaplin and Laurel and Hardy were yet to be discovered and I assume Linder was busy, so perhaps that's why they used bugs! Using stop-motion, the bugs moved and danced and fought amazingly well--and a heck of a lot more realistically than King Kong 21 years later! <br /><br />The film starts with Mr. Beetle sneaking off for a good time. He goes to a bawdy club while his wife supposedly waits at home. But, unfortunately for Mr. Beetle, he is caught on camera by a local film buff. Plus, he doesn't know it but Mrs. Beetle is also carrying on with a bohemian grasshopper painter. Of course, there's a lot more to this domestic comedy than this, but the plot is age-old and very entertaining for adults and kids alike.<br /><br />Weird but also very amazing and watchable.\r\n1\tThis is one of the very few movies out there which are very erotic without being pornographic, despite there being only a very rudimentary plot. There's not much live sound or dialogue; instead, the actors do voice-overs describing their experience, why they participated, etc.<br /><br />It's a document.<br /><br />It's mind-blowing.<br /><br />I can totally understand why nobody else ever tried to do something like this. There already is something like this. This. :-)<br /><br />NB: The producer doesn't have the rights to distribute a DVD version. I've also never seen it being sold anywhere; one may email Mr. Boerner and order a copy on VHS.\r\n0\t\"I chose this movie by the cover which was a bad move. It wasn't funny at all and the main characters were obnoxious. The girl was beautiful but the story and the acting were terrible. It had absolutely nothing to do with surfing. Terrible movie with a surf \"\"theme\"\" that had nothing to do with surfing and no real surfers. Catherine Zeta Jones was beautiful and the movie will probably see a resurgence just becuase she is in the limelight now, being married with Gordon Gekko and all, but if you haven't seen it don't waste your time. A bad movie with GREAT surfing, REAL surfers and AMAZING, BEAUTIFUL cinematography was IN GOD'S HANDS.\"\r\n0\tAntitrust falls right into that category of films that aspire to make some great point while being uplifting yet falls completely flat. I don't hate the film, but it is missing key elements, such as suspense. There have been other attempts to make an engaging film about computers, such as Hackers and The Net. They all fall short. The improbable ending of both The Net and Antirust seem to be nearly identical. These movie endings suffer from one huge error in perception: People in the PC business having this over-indulgent self ego that assumes the general population lives it's life waiting to hear the latest news about PC's and software. I have worked for many companies and industries, and they all seem to suffer from an expanded view of their own self-importance, as does this film.<br /><br />The way they introduced plot lines was pathetic. Showing Milo, who is deathly allergic to Sesame Seeds, almost ingest one from a restaurant breadbasket crossed the line of stupidity. Only his 'girlfriend' prevented him from sure death. This makes one wonder how Milo could have survived as long as he did, braving the perils of Big Mac buns and Sesame Seed breadsticks, as they cloak themselves as, well.... Sesame Seed breadsticks and Big Mac buns.<br /><br />Antitrust also doesn't provide much suspense. The patterned and predictable plot twists are easily figured out long before they are revealed (come on, was anyone REALLY stunned when Yee Jee Tso was killed?), thereby destroying any real shock value. And here again we have yet another film/story where at the end, the bad guys are chasing the good guys to 'get the disk'. We need to have a moratorium on this Simple Simon plot line for about 20 years. Still, I pressed on. Maybe the ending would be the payoff, but no. The completely ridiculous ending where we have the head of company security, another supposed evil guy, turn around and be the good guy that enables Milo to bring down N.U.R.V CEO Gary Winston was laughable. And of course, the news coverage of the arrest of Gary Winston is more fevered than when Hinckley or Oswald was brought into custody. Gary Winston, played by Tim Robbins, is a cardboard cutout of the same character Robbins played in Arlington Road. But that fits perfectly here in Antitrust, which should be called 'Anticlimactic' or 'Anti-Original'.<br /><br />In the years to come, this film will likely be banished, to be shown only on your local third rate UHF channel.\r\n0\t\"This movie starts out promisingly, with an early scene in which Frank Morgan advises against Gary Cooper's marriage to his daughter, Anita Louise. Frank Morgan, playing an unabashed gold-digger, loudly complains to Cooper about his perceived penury at the hands of his family - including his daughter, Anita Louise. I am a fan of all 3 actors. Frank Morgan is (to my mind) a Hollywood treasure, Cooper a legend, and Louise a very lovely, versatile and under-appreciated actress seldom seen in the leading role. I also have nothing against Teresa Wright, and while not blessed with great range, she usually delivers heart-warming performances.<br /><br />From a promising opening, the story slides downhill all the way to the end. I found nothing humorous about burning down the home of Cooper's would-be in-laws. The butler in such a fastidious, non-smoking household would never just blithely walk away, allowing Cooper to continue smoking, or alternatively he would certainly supply him with some means of disposing of his ill-timed cigarette. Moreover, nobody with any common sense would permit himself to be left holding a lit cigarette without asking for some means of disposing of it. And finally, nobody in his right mind crushes out a cigarette in a handkerchief and sticks it in his pocket! This whole sequence just made Cooper seem foolish and gauche. It is a poor contrivance - ill conceived and filmed in a way that induces ridicule not laughter. <br /><br />The forced medical examination of Cooper is equally contrived. Nobody lets himself undergo a complete medical examination without his being advised of its purpose or giving his consent! That Cooper did so is too removed from reality to be funny - it's absurd! Stealing babies from hospitals is a serious legal offense, and that, too, is nothing to laugh about. Finally, the scenes of Cooper's overly fastidious, neurotic attention to his baby's feeding and weight may have struck a nerve with a few people who have experienced anxiety over their own newborn babies. But to me they just seem tedious and slow. The wardrobe and prop departments went over the top in those scenes, while paradoxically, the script writer went to sleep.<br /><br />The lines are just not in the script to generate humor. They just miss on all cylinders. The laughs come not a mile-a-minute, but more like a light year-a-minute. The only time the movie has any energy or humor is when Frank Morgan is on camera.<br /><br />The scene that is totally wasted is when both of Cooper's love interests and their respective fathers are cooped up in the same hotel room together. There is probably a rich vein of humor somewhere in that mine, but none of it was extracted.<br /><br />In the end, one of the two very likable girls is going to get hurt. Predictably, it is the Anita Louise character, who gets jilted on her would-be-wedding night! While it is not on camera, that is her fate, and it is not particularly funny - even as a loose end. She hadn't done anything in this film to make me unsympathetic (unlike Gail Patrick, say, in My Favorite Wife). Consequently, I was expecting (perhaps \"\"hoping\"\" is a better word in the context of the film!) for Anita Louise to enjoy a happy ending, too. The fact that such a nice character is essentially wiped out at the movie's end really undermines the effect of the \"\"happy ending\"\" for Cooper and Wright.<br /><br />I kept waiting for something to happen, for the witty dialog so characteristic of movies of the era... And it never delivered. A good performance by Frank Morgan in a slightly different role is totally wasted here.\"\r\n1\tI had no idea what this movie was until I read about it in the L.A. Weekly. I generally agree with the reviews in the LA Weekly and decided to get a ticket for this film. the film stars molly parker (from my favorite television show Deadwood) and Lukas haas -- who I suspect we will be seeing more of in the very near future. The film is funny, heartwarming, features great acting, and beautiful photography. i don't know if the film has distribution, but I hope it does - or will - soon. this is destined to be a real indie gem. it even has music by my favorite band the silver jews! the only disappointment was that molly parker wasn't there at the screening. even without her there... this was hands down the best film i saw at the festival.\r\n1\tDisney (and the wonderful folks at PIXAR of course) offer a nice, humourous story combined with the best of computer animation. I admit that maybe the 'faces' of the bugs were a little more static than in 'Antz' and they only had four legs (in 'Antz' six...). But backgrounds were superb and animation was breathtaking. But let this be a lesson: it was not the computer who made it such a success : it was the man behind the machine, who added the nice little twists, which I missed in 'Antz'. Some highlights were of course the 'bloopers' at the end (So keep watching at the end, it's worth it!), which were highly amusing and original. The line 'Filmed entirely on location' was intended for the more attentive viewer.\r\n1\t\"I bought this a while ago but somehow neglected to watch it until last night. I do like Juliette Lewis although I'm indifferent to Brad Pitt. After this viewing I have to admit he's a perfectly fine actor - his character was entirely believable, and I didn't think \"\"Brad Pitt\"\" at all.<br /><br />Unfortunately I can't say the same for David Duchovny. I'm an X-Files fan and I had to look twice to confirm the date of this movie, as I'd thought it was made a few years later. I like Duchovny but found his character a little two-dimensional here, except where he's doing voice-overs. That part was strong, seemed in character, good intonation, etc. Otherwise I kept thinking \"\"Agent Mulder\"\", which is a pity.<br /><br />Michelle Forbes was a treat. Why haven't I noticed her before? (I'll be looking up to see what other roles she's done and seeing those asap) I am slightly concerned about stereotyping re Lewis, this film, and \"\"Natural Born Killers\"\" (a firm favourite). Interesting though to see a contrast of characters - in NBK she's a willing accomplice, whereas here she abhors the violence and tries very hard not to acknowledge Early's dark side until it's thrust in her face.<br /><br />I enjoyed this film almost unreservedly. Apart from Duchovny's character not seeming fully-formed (and perhaps being \"\"washed out\"\" somewhat by Pitt's), it was perfect. I was also pleased with the ending - glad that the innocent heroes did not die, yet they had to suffer first. It was realistic, tense, disturbing.<br /><br />If you like NBK you may well like this movie, and vice-versa.\"\r\n1\tI actually quite enjoyed this show. Even as a youngster I was interested in all sports and that included horse racing. It was always going to be difficult to make a series based on racing corruption and at the same time get permission from the race tracks to record filming about this controversial subject. One episode I particularly remember centred around a horse expected to win a big race that looked a bit off colour. A syringe was found on the stable floor and everyone thought it had been drugged but nothing showed up in the blood tests. All too late they realised the horse hadnt been doped but had had its knee cartilage removed. Like running a car with no oil and the engine seizing up, the horse broke down with tragic consequences.\r\n0\tA terrible movie containing a bevy of D-list Canadian actors who seem so self-conscious about the fact they are on-camera that their performances are overly melodramatic and quite forgettable.<br /><br />This film is badly written, badly edited, and badly directed. It is disjointed, incomprehensible and bizarre - but not in a good way. McDowell does a great job with what he is given, but is the only one in this film to do so - he really has a bad story and script to work with. It's not even camp enough to be funny.<br /><br />I have yet to see Van Pelleske act in a credible manner, and even the sub-characters like Eisen (with his nasal, whiny voice) confirm that we are on a lot in Toronto rather than on a barge off Africa.<br /><br />Didn't the director see that the 'creature' looks like a jazz dancer in an alien suit? The fight between the blue bolts of lightning and Pelleske's orange wisps of 'magic' (!?! for lack of a better word), is obviously the result of bad actors, with no choreographer, overlaid with completely derivative special effects. Was there even a director on set or in the editing room for this disaster film (not the good kind)? <br /><br />Learn from the mistakes of others ... don't even waste your time with this one, you'll regret it like I did. I have nothing more to say about this waste of celluloid.\r\n1\tAs I've noticed with a lot of IMDb comments, certain reviewers seem to demand that every film they see have smugly intelligent plots that wallow in there own cleverness. I am not one of those people. If I watch an action film, I want to see explosions, gunfire and heroics. If I watch a comedy, I want to have tears of laughter in my eyes. You get the idea. Therefore watching a horror film, I primarily want to be scared. The Grudge is a very scary film, in both it's well executed 'jump' scenes, and it's creepy imagery. I've been a horror film fan for many years, and I'm talking about the masters such as Dario Argento, rather than directors of some of the treadmill teen horror flicks that are churned out these days. If you want to be scared, watch this film. Way scarier than the original Japanese 'Ring' (which I also think is a great film).\r\n1\t\"It is Queen Victoria's misfortune to be defined as an historical figure according to her relationships with men.Shortly after she succeeded to the throne she came under the influence of her Prime Minister Lord Melbourne to the extent that she became known as \"\"Mrs Melbourne\"\".After the death of her beloved husband,Albert,she was referred to as \"\"The Widow at Windsor\"\",and years later,a long friendship with her Scottish ghillie John Brown earned her the nickname \"\"Mrs Brown\"\".Such is the price women paid in a patriarchal society. The reality is somewhat different and \"\"Young Victoria\"\" goes some way towards putting the record straight,depicting the queen as an intelligent and independent young woman conscious of the inequities in her society and at her court. Courts have always been hotbeds of seething jealousy,plotting and counter-plotting,naked ambition and sometimes,outright murder. As an 18 year old innocent,Victoria ascended to her uncle's throne,thus initiating a positive orgy of intrigue and a power-struggle between Prime minister Lord Melbourne and his rival Sir Robert Peel. Lord Melbourne cuts a dash in the Old Public School Man kind of way with his finely-honed cynicism and his well-polished gems of advice. Hardly surprising then that the young queen finds herself in awe of him,and even perhaps a little in love,an awe that he ruthlessly exploits,drawing a fine line between attempted seduction and attempted sedition as he forces his policies through against Victoria's better judgement. Into the arena rides Prince Albert,on a mission from King Leopold of Belgium,keen on political rapprochement between Great Britain and the rest of Europe. At first a reluctant suitor,he soon falls in love with the English queen and palliates the influence of the politicians and courtiers. \"\"The Young Victoria\"\" is a beautifully photographed,brilliantly-scored and very sumptuous movie.I note that it has been criticised in some quarters for this sumptuousness as if a movie about 19th century English Royalty should somehow have shown the Empress of India and her family living in rags in a filthy workhouse........I don't think so. I must single out the remarkable Miss Emily Blunt whose beauty reminded me of the young Princess Margaret's.Hers is obviously the pivotal role, and she has absolutely no trouble in dominating the film despite strong performances from Mr Jim Broadbent,Miss Miranda Richardson and Miss Harriet Walter,all immeasurably more experienced. The music is suitably regal and forms a cohesive part of the whole movie without being in any way obtrusive. The fact that Britan flourished more under its two great queens,Elizabeth the First and Victoria,than at any other time is a matter Feminists might like to make more of,but,I suspect,like Prime Minister Margaret Thatcher really powerful women make them feel uncomfortable.If you can work out why there might be a Ph.D . in it.\"\r\n1\t\"I saw this movie in 1969 when it was first released at the Cameo Theater on South Beach, now the famous Crowbar Night-club. It was the last year of the wild 60s and this movie really hit home. It's got everything; the generation gap, the sexual revolution, the quest for success, and the conflict between following one's family \"\"traditions\"\" to those of seeking ones own way through life.<br /><br />It was a fast paced, highly enjoyable movie. Vegas was at it's hippiest peak, Sin City in all it's glory. Beautiful women, famous cameos, laughs, conflict, romance, and even a happy ending. A very enjoyable time over all. <br /><br />The poster from this film rests on my bedroom wall. I look at it and I go back in time; a time of my youth and my times with my dad, a great time in my life.\"\r\n1\t\"These days Spielberg's \"\"The Color Purple\"\" is mostly remembered for being nominated for eleven Oscars and winning zilch. What's even more alarming is that Spielberg himself wasn't even nominated for Best Director. Needless to say, the film-makers deserved more acclaim than they were accorded.<br /><br />The story concerns the trials and tribulations of Celie Johnson (Whoopi Goldberg), an African-American woman dominated at first by her incestuous father and then by her abusive husband. The film spans several years and focuses mainly on Celie's relationships with the women around her. It's told from a decidedly female perspective but you needn't fear that it's a saccharine 'chick flick'.<br /><br />The story is an interesting one, livened with humour at times although the central character's struggles are paramount. Some may not appreciate the change in tone towards the film's end but I didn't mind even though similar content in a lesser film would likely have me rolling my eyes.<br /><br />The film received three Oscar nominations for acting: Whoopi Goldberg (Best Actress), Oprah Winfrey (Best Supporting Actress) and Margaret Avery (Best Supporting Actress). I think that Goldberg and Winfrey were certainly deserving and Danny Glover was unaccountably stiffed.<br /><br />As already mentioned, Spielberg didn't receive a Best Director nomination for his efforts. Such an omission beggars belief, since Spielberg's direction here is top-notch. I'm not especially crazy about Quincy Jones's score but it's not below average by any means.<br /><br />In the end, the story is a satisfying one, well-told by a master film-maker working from Pulitzer Prize-winning material. Give it a try and you'll probably be as baffled as I am about how it could be so poorly treated on Oscar night.\"\r\n1\tIf you are the sort of person looking for a realistic film or one with a strong and believable plot, then this film is NOT for you. Nope--you'll hate it. However, for those who like sweet, slightly screwball comedies, then you'll have a nice time watching this slight film.<br /><br />Tony Randall works for the IRS and he investigates a very nice farmer who never realized he needed to file an income tax return. However hard he tries to convince them of the seriousness of his visit, everyone in the family is thrilled to have company. They dote on him and treat him like one of the family,...and have plans on getting him hitched to their daughter, Debbie Reynolds. That's really about all the plot there is. But the film gets high marks for a fun script and decent acting. A really nice little curio from the late 1950s.\r\n1\t\"In New Orleans, an illegal immigrant feels sick and leaves a poker game while winning the smalltime criminal Blackie (Walter Jack Palance). He is chased by Blackie and his men Raymond Fitch (Zero Mostel) and Poldi (Guy Thomajan), killed by Blackie and his body is dumped in the sea. During the autopsy, the family man Lieutenant Commander Dr. Clinton Reed (Richard Widmark) of the U.S. Public Health Service finds that the dead man had pneumonic plague caused by rats and he needs to find who had any type of contact with the man within forty-eight hours to avoid an epidemic. The City Mayor assigns the skeptical Captain Tom Warren (Paul Douglas) to help Dr. Clint to find the killers that are infected with the plague and inoculate them.<br /><br />\"\"Panic in the Streets\"\" discloses a simple story, but it is still effective and with a great villain. The engaging plot has not become dated after fifty-seven years. Jack Palance performs a despicable scum in his debut, and the camera work while he tries to escape with Zero Mostel is still very impressive. My vote is seven.<br /><br />Title (Brazil): \"\"Pânico nas Ruas\"\" (\"\"Panic in the Streets\"\")\"\r\n1\tFollowing a sitcom plot is so mindlessly easy that having her character simultaneously operate both within and without the context the rest of the cast inhabit is the kind of experimentalism that sitcoms could really use. The supporting characters ground the show in a sitcom reality which provides a contextual counterpoint to Sarah's erratic persona which, beyond general insensitivity, has no specific recurring traits for behavioural expectations to be based on, making her less a character than a canvas to be repainted in every episode if not scene. Sarah's ability to see everything from an outside perspective enables her to parody aspects of social behaviour that are subtle enough to usually go unnoticed. Every time she speaks it's like a self-contained 5 second skit. She overemotes a lot, demonstrating the countless things a smile or change in vocal pitch can signify, but never sticks with one idea long enough for you to get comfortable and form expectations that will be satisfied. This may be the most creative, original and experimental TV program ever.\r\n0\t\"\"\"Handsome Guys With Bad Haircuts !!\"\" \"\"Beautiful Girls Without Any Clues !!\"\" \"\"Stupid Gangsters Who Cannot Shoot Straight !!\"\" From Dragon Dynasty comes the Hong Kong gangster drama, \"\"Dragon Heat.\"\" For reasons which will probably forever be completely obscured, the production and casting call for this 'criminals-on-steroids' movie somehow got both Maggie Q and Michael Biehn to sign on as villains. But they don't get all that much to do in this horrid slug-fest.<br /><br />They are two of the best contemporary actors around, each with their own resume' and list of accomplishments, and Biehn in particular has had the courage to take some rather challenging and non-heroic roles.<br /><br />Maggie Q was the super-bad \"\"Mai\"\" in \"\"Live Free Or Die Hard,\"\" so 'nuff said.<br /><br />Biehn is, of course, famous for being the soldier-from-the-future who made \"\"The Terminator\"\" of 1984 such a believable science-fiction/fantasy romp, by crashing up against Big Arnold, who is now the Governator of California !! <br /><br />Michael Biehn is almost wholly wasted in this terrible train-wreck of a police drama. There is absolutely no reason for that, as the incredibly convoluted plot -- given mostly in Chinese, as it is a Hong Kong story -- could have been better elaborated for non-Chinese audiences with a foreign narrator.<br /><br />In other words, if Biehn had been used as something like an Interpol observer or coordinator, or an agent under deep cover, who needs to get some 'splaining given to him every five or ten minutes, that would have been great. But no, he's brought in as a part of an odd group of special forces-type bad guys who seem to be freelancing their own corrupt deal, in the middle of somebody else's totally corrupt deal involving the local king of corrupt deals. <br /><br />Yes, there, I said it all. Confused ? Me too. \"\"Welcome to the party, pal.\"\"<br /><br />In the truly superb Hong Kong crime drama, known by its English title as \"\"Breaking News,\"\" there are also a number of fascinating characters at work, but there is only one story line in the plot. <br /><br />Bad guys vs. good cops. In this wretched and excessively violent foray into the world of a Hong Kong Triad, or gang, it seems that the hot-shot police force is little more than a parade of ducks in a shooting gallery, the way the criminals mow them down.<br /><br />So, not surprisingly, there's an almost otherwise incomprehensible scene ( several scenes, in fact ), where kids are trying to shoot wooden ducks in an arcade game, to win stuffed animal prizes. And so the hot shot good-guy police officers quite naturally intervene on their behalf, so that the arcade owner has to give up the Kewpie dolls.<br /><br />There's also a half-hearted attempt at creating a \"\"love interest\"\" between one of the 'visiting cops' and the sole female 'visiting cop'.<br /><br />The visiting cops are supposed to be material witnesses against the Triad gangster leader, who gets hijacked on the way to his court appearance, but not by his own team but by the mercenaries ( Biehn, Maggie Q, and some others ). These killers all want something but we don't get to learn about what it is, until the very end of the film !! That was a stupid mistake inside of the overall story.<br /><br />You cannot build suspense in a crime drama without something to obtain, or get, or get away from, being introduced very early in the story.<br /><br />Add to that some \"\"cut-away scenes\"\" done for purely artsy effects, all showing the bad-bad guys' and the regular bad guys' recent pasts, and any film buff can readily understand why this barking dog gets a 1 rating from this fan of all things cinematic with criminals and conspirators and Hong Kong.\"\r\n1\t\"I love Korean films because they have the ability to really (quiet eerily really) capture real life. I tend to watch Korean movies just for that reason alone. I've seen this directors other movies before. The one that comes closest to the feelings I got from this is Oasis and another awesome film called This Charming Girl.<br /><br />However, my title summary is supposed to be from a Chrstian perspective so I'll just start doing that instead of just showering it with praise.<br /><br />For a non Christian perspective Director Chang-dong Lee has captured an unbiased and almost eerily real portrayal of a modern Protestant church (regardless of denomination) warts and all. I've always been waiting for a Christian film that truly portrays the darker recesses of church life. Because Christian films tend to speak in a language that is different to those they want to share their faith to. Many films with religious undertones, though having good motives, tend to just have the resonance of a Disney film or after school special. They need to show life as it is. Real people curse, real people lust, real people fall. And though Christians believe that salvation is available to those that seek it, we are still challenged by the everyday horrors of this life. And Do-yeon Jeon's character is a totally honest and almost brutal portrayal of a woman that found God, but because of life's bitter realities, loses that love for Him she once had. She doesn't deny God exists. It is just that she refuses to accept to live with the idea that He is an all loving and forgiving God.<br /><br />In her decent to the edges of morality and madness, her character asks questions that are in the mind of every one, religious or not.<br /><br />\"\"If God is Love, why does He allow such terrible things to happen?\"\" This film doesn't answer that, rightly so. And I believe the last 10 minutes of the film, though open to interpretation, leaves us with a hopeful future for our main character and brings the idea of \"\"secret sunshine\"\" full circle.<br /><br />I don't believe for a second that this film tried to be religious or had in any way tried and set out to be that. There in lies the reason why it worked even more. It's real, it's honest. And because of that, it is by far the best summation of a real Christian life I have seen on film.\"\r\n0\t\"This is a truly awful \"\"B\"\" movie. It is witless and often embarrassing. The plot, the basic \"\"making into show business\"\" routine, is almost nonexistent. In fact, the film is merely an excuse to push the war effort and highlight some popular music groups of 1942, including the Mills Brothers, Count Basie, Duke Ellington, Bob Crosby, and Freddy Slack. Each group gets about the standard three minutes, the exception being the Mills Brothers, who for some reason warranted two numbers. Ann Miller doesn't get to dance until the last couple of minutes of the film, and she has little to do but strut her stuff amid a barrage of patriotic propaganda.<br /><br />The most interesting moment in the film, in my view, occurred in the Duke Ellington segment. The band appears to be playing in a train, standing in awkward positions. (In the deep South at the time, the band was segregated in railroad cars when traveling.) Johnny Hodges is seen next to Duke, and Harry Carney may also be identified. In the last moments of the film, trumpeter/violinist Ray Nance rushes down the aisle to the camera and does an \"\"uncle Tom,\"\" bugging his eyes and wiggling his head the way Willy Best did in many films. For modern viewers, especially jazz fans, this homage to segregation is sad indeed. Some movies go best unseen.\"\r\n0\tThe first scene in 'Problem Child' has a baby peeing into a nun's face. For this movie, that's witty. A nasty, mean-spirited 'comedy', it's inept on so many levels it beggars belief. John Ritter is the kind father who adopts the child from Hell, and kudos to him for maintaining his dignity in the surrounding onslaught of one-note, annoying performances and puerile humour. And what the hell's Jack Warden doing in this mess? Slackly directed by Dennis Dugan and obnoxious in its attempts to turn on the sentimentality when it's done with the crudity, the movie is made so badly it's quite a bizarre experience. But never mind all that. The lowlight of the whole thing is Michael Oliver, the most repulsive and unlikeable kid actor ever to hit the screen  believe me, you will want to smack him right in the mouth.\r\n1\t\"My favorite Jackie Chan movie will always be \"\"Drunken Master\"\" (1978), followed by this film from 1985, \"\"Police Story.\"\" In it, Chan plays a Hong Kong super-cop who busts a notorious crime lord and his gang, and is then assigned to protect the man's girlfriend (Brigitte Lin) so that she can turn state's evidence. As the story goes on, the gangster sends his goons to dispatch Lin, but Chan takes matters into his own fists and feet, while keeping girlfriend Maggie Cheung at bay. Like \"\"Drunken Master,\"\" \"\"Police Story\"\" has many of the signature stunts and over-the-top martial arts/action choreography that Chan has become famous for, climaxing in a battle royal at a crowded shopping mall. In his role as director, Chan exceeds in excellence, giving a charismatic and funny performance that accentuates the action. While light on the overall slapstick humor of \"\"Drunken Master,\"\" at heart \"\"Police Story\"\" is just that, a police story, a gritty cop-thriller that would be oft-copied over the years to come.<br /><br />10/10\"\r\n0\tYes there are great performances here. Unfortunately, they happen in the context of a movie that doesn't seem to have a clue what it's doing. During the first 45-60 minutes of this all the music takes place as realistic performance. Suddenly, about an hour in, the characters who, until this point, had always spoken to each other, suddenly start singing to each other. To further confuse things, a little further in, out of nowhere, they actually do about 15 minutes of sung-through dialog, then seem to drop that idea and move on to other things, such as a number that begins in a jazz club with a drummer and two electric guitars suddenly turning into a fully orchestrated piece with a massive unseen string section. On top of all this inconsistency in how the music is used, is the composers' clear inability to actually write music in the style that is supposedly being portrayed. While the first couple of pieces do sort of mimic the 1950s Motown sound, the rest of the film is just (bad) Broadway show music. Then there's the pure silliness of snippets of a group doing a bad Jackson family imitation and Eddie Murphy morphing from Little Richard to James Brown to Lionel Richie. When he started channeling Stevie Wonder I couldn't help laughing out loud. This was clearly one of those films that make me appreciate how little time I have on earth and resent that I wasted two hours of it watching this film.\r\n1\t\"Although I really enjoyed Jim Carrey's latest \"\"serious\"\" performances (\"\"The Truman Show\"\", \"\"Man on the Moon\"\"), I've always thought his real genious lies in physical comedy. This is not to say he is a fantastic, talented actor: those bozos at the Academy Awards seem to dislike him so much, he has never had a (truly deserved) nomination or award. Well, any \"\"institution\"\" that nominates for 11 Oscars a bore such as \"\"Titanic\"\" shouldn't be taken seriously.<br /><br />On with the review. \"\"The Grinch\"\" is the sweetest, best looking, best acted, more enjoyable seasons film since \"\"The Nightmare before Christmas\"\". Both movies seem very similar, too, with their highly stylized sets and the premise of someone stealing Christmas. Both make their principal actors seem like the villains (one in a higher degree than the other), both pack a strong moral lesson, and both are truly enjoyable.<br /><br />That is, until you realize that Jack Skellington is a doll, and The Grinch is a human being. But a human being that is so incredibly expressive, so fluid in his movements, so cartoon-like, so unreal, that never gets in the way of the movie. He can be hilarious, he can be a sad soul, he can be angry. He lives in a 3-dimensional world, where 3-dimensional people live. He jokes, he laughs, he cries, and ultimately he saves the Christmas. I loved this film to bits, and cannot wait for it to come out on DVD. This is one of those films you will really enjoy 10, 20 years from now. As timeless as they come.\"\r\n0\t\"This movie is basically about some girls in a Catholic school that end up getting into trouble because of putting red dye in one in one of their school mates shampoo and after being reprimanded for this act they decide to take off to Florida for a vacation. On their way there they meet up with some guys in a local diner and decide that they would both meet up with each other in another location later on. The girls end up on a road side near the woods and stop for awhile and while one of the girls decides to walk around a bit she sees a murder happen in which the local sheriff himself is involved. She becomes scared and runs to tell the others what happened. The other girls decide to go take a look with her and two of them get killed by the killer. Then the two remaining girls are caught by the killer and are placed in local jail cell. The deputy sheriff meanwhile is keeping watch over the girls and despite their insistence that the sheriff is the killer he ignores them both and acts as ignorant and everybody else in this movie who just can't put two and two together much less some lousy detective work at that. The best part was the rape scene between the killer and one of the girls where he decides to rape her in her jail cell and it seems that the girl actually WANTS to be raped by this man and the bare chest scene I admit was good but before their lips meet he has other things in mind. This movie reminds me of the low-budget thriller \"\"Blood Song\"\" with Frankie Avalon staring in it, the same motive just a different character part. It's not a movie worth renting not even for an 80's low-budget movie and the ending was the worst ending I have ever seen in a movie and it left me wanting my money back!\"\r\n1\tThis is a really good film and one that I've enjoyed watching several times. Michael Caine's awesome as always. Michael Caine has received kind of a reputation for taking any role in any movie no matter what the quality or lack of same but he does a good turn in playing Sidney. From the start it's so well written. Who would have thought that Ira Levin who wrote such creepy stuff as The Boys from Brazil and Rosemary's Baby could write something this witty. Let's face it - Michael Caine, Chris Reeve, Dyan Cannon, Henry Jones... how are you going to go wrong with a cast this good directed by Sidney Lumet.<br /><br />I'm really reticent to go on because if anyone were to give away anything about this film it would be a crime. Just watch it and adore it.\r\n1\t\"\"\"Creep\"\" is a new horror film that, without a doubt, will please many genre fans simply because it's so down to the point and unscrupulous! It has many genuine shock-moments, a whole lot of repulsive gore-sequences and a rare claustrophobic tension. What it hasn't got is logic and a solid plot but, to tell you the truth, that didn't bother me for one second. When the end-credits start to roll, there are still many unanswered questions to ponder on but director/writer Christopher Smith (in his debut) seemly preferred to fully focus on tension and adrenalin-rushing action instead of long, soporific speeches and theories that could explain the existence of the \"\"creep\"\" in the London subway. The story revolves on the young and haughty Kate, who leaves her own party in order to go and meet the famous actor George Clooney who's in town to present his new film. She falls asleep in the subway, misses the last train and she finds herself trapped in the underground subway network. Things really get terrifying when she encounters a mad-raving lunatic who lives in the old tunnels and kills/kidnaps people to experiment upon. Even experienced homeless people, security guards or sewer-workers can't rescue her from this ravenous monster! I really dug the creep-character! He's nauseating, hideous and primitive but in a strange way fascinating. Christopher Smith only leaves us clues and hints, and it's merely up to the viewer to guess this vile creature's origin and background. I reckon this isn't very original, and I'm sure many people won't appreciate the lack of content, but I forgive Smith and I think it's better this way than going over the top completely, \"\"Jeepers Creepers\"\"-style (that particular film started out great as well, but as soon as the Creeper's identity was clear it turned into a very mediocre horror effort). The obvious aspect-to-love is the outrageous gore! There's some severe butchering going on in this film and the make-up, as well as the sound effects, are very convincing. The ominous setting of the abandoned London subway during night is effectively used. There also is some acting-talent present in this film, with Franka Potenta (Run Lola Run) returning to graphic horror nearly five years after the cool German film \"\"Anatomie\"\". Creep is terrific entertainment when you're in an undemanding mood and Christopher Smith definitely is a director I'll keep an eye on. Make sure you don't have to take the subway right after watching this film...\"\r\n1\t\"Here's what I knew about \"\"Atlantis\"\" before watching it:<br /><br />* - It's officially Disney's first animated sci-fi adventure. I'm not sure how accurate that is (I like to nitpick) but it made me curious first time I heard it described.<br /><br />* - The preview looked, for the most part, damn cool. Evidently, it was also \"\"too cryptic\"\" according to some critics after the fact.<br /><br />* - It apparently did SO badly that Disney said, \"\"Screw it, let's re-release 'Spy Kids'\"\".<br /><br />So, with all that said, how is the movie?<br /><br />Hella-cool.<br /><br />I'm a sucker for animated fantasy that involves stirring music and rampant special effects anyway, but \"\"Atlantis\"\" goes all out. It's a throwback to all the CGI eye-candy shots in \"\"Beauty and the Beast\"\" and \"\"Aladdin\"\", so much so that it's almost an effects animator's Best-Of Show. The characters maybe aren't that memorable (except, perhaps, for the ship's medical officer), and the plot's a little dull, but this isn't a movie you watch for the plot.<br /><br />Here's a controversy that bothers me. The \"\"failure\"\" (as in, it \"\"only\"\" took in, like, five-hundred-million or something; I know animators who'd kill to see fifteen bucks of that) of this movie compared to the popularity of \"\"Shrek\"\" and \"\"Monsters Inc.\"\" has been seen as evidence of the death of traditional animation. I don't think that's true. How do you account for the \"\"South Park\"\" movie? What about \"\"Final Fantasy\"\"? Really, the story and the artistry is everything, not the method. I don't know what Disney's comeback movie will be like, but I don't think they're out of the picture yet.\"\r\n0\tNine minutes of psychedelic, pulsating, often symmetric abstract images, are enough to drive anyone crazy. I did spot a full-frame eye at the start, and later some birds silhouetted against other colors. It was just not my cup of tea. It's about 8½ minutes too long.\r\n1\t\"Fairly funny Jim Carrey vehicle that has him as a News reporter who temporarily gets the power of God and wrecks havoc. Carrey is back in familiar ground here and looks to be having a good time, and Jennifer Aniston as his put upon girlfriend is also charming and affecting. The story is predictible to the extreme but the cast (including Morgan Freeman as \"\"God\"\") is great and makes the film worth catching. GRADE: B\"\r\n1\t\"This is one of those movies that's difficult to review without giving away the plot. Suffice to say there are weird things and unexpected twists going on, beyond the initial superficial \"\"Tom Cruise screws around with multiple women\"\" plot.<br /><br />The quality cast elevate this movie above the norm, and all the cast are well suited to their parts: Cruise as the irritatingly smug playboy who has it all - and then loses it all, Diaz as the attractive but slightly deranged jilted lover, Cruz as the exotic new girl on the scene and Russell as the fatherly psychologist. The story involves elements of romance, morality, murder-mystery, suspense and sci-fi and is generally an entertaining trip.<br /><br />I should add that the photography is also uniformly excellent and the insertion of various visual metaphors is beautiful once you realize what's going on.<br /><br />If you enjoy well-acted movies with twists and suspense, and are prepared to accept a slightly fantastic Philip K Dick style resolution, then this is a must-see. <br /><br />9/10\"\r\n1\t\"The Last Hunt is the forgotten Hollywood classic western. The theme of genocide via buffalo slaughter is present in other films but never so savagely. Robert Taylor's against-type role as the possessed buffalo and Indian killer is his finest performance.<br /><br />In the 1950s, your mom dropped you and your friends off at the Saterday matinée, usually featuring a western or comedy. But it was wrong then and now to let a youngster watch psycho-dramas like The Searchers and The Last Hunt. Let the kids wait a few years before exposing them to films with repressed sexual sadism and intense racial hatred.<br /><br />Why did Mom fail to censor these films? Because they featured \"\"safe\"\" Hollywood stars like Taylor and John Wayne. But the climatic scene in The Last Hunt is as horrifying as Vincent Price's mutation in The Fly.<br /><br />The mythology of the white buffalo, part of the texture of this movie, was later ripped-off by other movies including The White Buffalo, starring Charles Bronson as Wild Bill Hickock. The laugh here is that Bronson used to play Indians.<br /><br />Today a large remnant bison herd resides in Yellowstone National Park in Wyoming. In the winter, hunger forces surplus animals out of the park into Montana, where they are sometimes harvested by Idaho's Nez Perce Indians under a US treaty right that pre-dates the Lincoln Presidency. Linclon signed the Congressional act which authorized the continental railroad and started the buffalo slaughter.\"\r\n0\t\"The original 1965 Japanese film \"\"Gamera\"\" http://pro.imdb.com/title/tt0059080/ was essentially an updating of the darker, less kid-oriented Gojira (Godzilla)for 1960s sensibilities. Gamera, of course, is a giant, flying, flame-throwing turtle who literally consumes energy - not quite as big as some versions of Godzilla, but generally similar in most ways. <br /><br />This version of the original film was edited and recut by the notorious Sandy Frank. And just like the Americanized version of Godzilla (\"\"Godzilla King of the Monsters\"\"), \"\"Gammera the Invincible\"\" gets more than just the spelling wrong. The American scenes are not nearly as ludicrous and annoying as those added to the great Gojira, but don't really add much to the story either because there is little follow up on them. <br /><br />The film starts off promising, there are a few scenes worth of character development, and there are enough personalities to create some tension outside of the main plot. Once Gamera appears, however, the film begins to descend into a fairly run-of-the mill kaiju film.<br /><br />The acting is good enough- even the American add-ons are OK. The directing is pretty good for this period and genre, and the special effects are not bad at all for their time (all miniatures). Some of the sets and backdrops are actually very good. <br /><br />The biggest problem here, of course, is that there is little to nothing original about this film. Gamera, however, develops a much more unique personality in his later films - most of which are worth watching if you are a kaiju fan.\"\r\n0\t\"I rented the video of \"\"The Piano Teacher\"\" knowing nothing about it other than what was written on the video box. I did this with some trepidation because films that win awards at Cannes are usually very good or very bad. Unfortunately, this one falls in the latter category. About one quarter of the way into it I found myself saying out loud, \"\"This movie is boring.\"\" About half way through I was saying to myself, \"\"Where have I seen this before?\"\" At the three quarters mark I had figured it out.<br /><br />In spite of its literary origins, this film is essentially a remake of Robert Altman's much earlier (1969), and better, \"\"That Cold Day in the Park.\"\" Although the details obviously differ and Altman's work was more plot-driven and less of a character study, the two films are thematically identical. There is nothing \"\"new\"\" to be seen in this production. Every aspect of it has been done before: a character spiralling out of control with increasingly self-destructive behavior (Abel Ferrara's \"\"Bad Lieutenant\"\" 1992); a perverse and doomed 'love' culminating in an operatic (near) death scene (David Cronenberg's \"\"M. Butterfly\"\" 1993); uncommonly brutal sex scenes (David Lynch's \"\"Blue Velvet\"\" 1986); and so on. Hence, I am bemused by the fact that so many found the film to be \"\"shocking,\"\" \"\"shattering,\"\" etc. This highly derivative film seems to have been made for the sole purpose of making viewers feel uncomfortable, and clearly succeeded with some. However, I largely attribute such a reaction to a lack of film-viewing experience. See enough movies and you really will, eventually, have seen it all. And while it is true that I saw the expurgated 'R-rated' version, I doubt that the additional scenes would change my overall opinion of \"\"The Piano Teacher.\"\"<br /><br />Technically, the film is not without merit. There is some very good camera work and the lighting is excellent. Isabelle Huppert's creditable performance also helps save it from being a waste of time. This is the first of Haneke's films that I've seen, and if I were to see more I expect I would have the same opinion of him that I have of Ferrara: an interesting director but not nearly the genius others make him out to be. Rating: 4/10.\"\r\n0\t\"There is one good thing in this movie: Lola Glaudini's ass! Sorry to be so blunt but it's the truth. Too bad she didn't do a nude. It would at least have made this mess tolerable. We see another chick's boobs but she's nowhere near Lola. And man, is Armand Assante old or what? The man looks like crap! \"\"Consequence\"\" is the usual B-Movie you would expect. The story had potential. It's like they had good ideas but didn't know how to execute them. The cinematography is just plain awful. Ugly! The directing is uninspired and the end result is a bland thriller with lame twists and washed up actors. Lola Gaudini is great as the vixen in a cheap, slutty way but not even she saves \"\"Consequence\"\" from being trash and not funny trash, just plain old stinking trash.\"\r\n0\tBela Lugosi plays a doctor who will do anything to keep his wife looking young and beautiful. To this end, he drugs brides during their wedding ceremonies to make it look as if they are dead so he can steal their bodies. I'm not exactly sure what he does with the bodies. I don't remember it ever being fully explained. All I know is that he extracts something from them and injects it in his wife. (I'll just guess that it's spinal fluid. Spinal fluid was all the rage of mad scientists in the 40s.) You can pretty much guess the rest from here.<br /><br />There are a couple (well, really more than a couple, but I'll only write about two) of problems that I have with this movie. One is the way Bela is used. Sure, he does a decent enough job in his own overacting sort of way (BTW, the rest of the cast is simply abysmal). But, to have him hiding in the back of a hearse or having him creep into the female reporter's bedroom to do nothing is just silly. Also, why have him beat and/or kill every henchman he has? Is it to make him look evil? Well, someone who is kidnapping comatose brides doesn't really need to be made to look more evil.<br /><br />The second problem I have is the idea of drugging brides. Why brides? Wouldn't any female under the age of 20 do? Watching Bela go through these gyrations to get his victims, I was reminded of the idiotic Fisherman in I Still Know What You Did Last Summer. In each case, there would appear to be an easier way of reaching your objective than employing a seemingly impossible plan that depends way to much on circumstances out of your control. (BTW, an alternate title for this movie is The Case of the Missing Brides. I guess that partially explains the need for 'brides'.)\r\n1\t\"If you want mindless action, hot chicks and a post-apocalyptic view of Seattle, then this is the show for you!<br /><br />The concept of Dark Angel isn't anything new (in fact, there's controversy over whether James Cameron stole the idea from a book), but I spend the entire hour watching it every Tuesday from start to finish.<br /><br />Jessica Alba is smoking and Max' friends (original Cindy, Kendra) are just as hot. <br /><br />The fight scenes are getting better, but the dialogues between Original Cindy and Max need to be a little bit better (the slang sounds forced and it sounds like someone living in the suburbs wrote it).<br /><br />In my opinion, Dark Angel is a great guilty pleasure filled with everything an action fan could ask for, but if you're looking for hard hitting, award-winning drama, go watch \"\"The West Wing\"\" or something.\"\r\n1\tThis is one of my favorite Govinda movies of all time and best film of 1994. David Dhawan does a great job in directing this movie, he makes it funny and adds family drama. Govinda is Excellent as Raja Babu and gives a great performance. Karishma Kapoor is an actress i hate, this film she is a little less annoying but still annoys in some scenes. Kader Khan is a maestro in acting and yet gives a superb performance. Aroona Irani is terrific as the mother and gives a outstanding performance. Shakti Kapoor is brilliant as Nandu the sidekick. This film has Comedy, action, family drama and romance a full on entertainer.\r\n0\t\"\"\"When a small Bavarian village is beset with a string of mysterious deaths, the local (magistrate) demands answers into (sic) the attacks. While the police detective refuses to believe the nonsense about vampires returning to the village, the local doctor treating the victims begins to suspect the truth about the crimes,\"\" according to the DVD sleeve's synopsis.<br /><br />An inappropriately titled, dramatically unsatisfying, vampire mystery.<br /><br />Curiously, the film's second tier easily out-perform the film's lackluster stars: stoic Lionel Atwill (as Otto von Niemann), skeptical Melvyn Douglas (as Karl Brettschneider), and pretty Fay Wray (as Ruth Bertin). The much more enjoyable supporting cast includes bat-crazy Dwight Frye (as Herman), hypochondriac Maude Eburne (as Aunt Gussie Schnappmann), and suspicious George E. Stone (as Kringen). Mr. Frye, Ms. Eburne, and Mr. Stone outperform admirably. Is there another movie ending with a mad rush to the bathroom? <br /><br />Magnesium sulfate Epsom salts it's a laxative! <br /><br />**** The Vampire Bat (1933) Frank Strayer ~ Dwight Frye, Melvyn Douglas, Maude Eburne\"\r\n0\t\"When anyone comes into a film of this type of film it's not without saying that an overdose of that great over-the-counter brain-medicine, Suspension of Disbelief, comes in mighty handy.<br /><br />Jeanette MacDonald plays two roles: Anna/Brigitta, the woman who Nelson Eddy has ignored since the beginning of time, but who also is -- an angel sent to Earth.<br /><br />My reaction when I saw this was a mute gasp of \"\"Hunh?\"\" Where have I seen this before? It turns out, I have seen it before, but in a movie made much later than this one. DATE WITH AN ANGEL, a forgettable pile of dreck made in 1987, cashed in on the ethereal beauty of one Emmanuelle Beart who had no speaking lines, also wore a blond wig, and made life hell for soap-actor Michael Knight. Much worse in every conceivable angle with ultra-low 80s values but more than likely an updated version of this 1942 turkey.<br /><br />Anyway, not to elaborate, this is not a memorable film and stands as a doorstop of information because it was the last time MacDonald and Eddy, neither very good actors but terrific singers, would be together playing up the \"\"innocence\"\" and \"\"clean-cut\"\" romance that they were known for. After that you may need a cold shower, not because there are any steamy scenes here, but to get rid of the memory.\"\r\n0\t\"This movie blows - let's get that straight right now. There are a few scene gems nestled inside this pile of crap but none can redeem the limp plot. Colin Farrel looks like Brad Pitt in \"\"12 Monkeys\"\" and acts in a similar manner. I normally hate Colin because he is a fairy in general but he's OK in this movie. There were two plot lines in this movie-= one about a kid who throws rocks through windshields of moving vehicles and the other about a woman with a moustache. Let's face it- this movie has no freaking idea of what it wanted to say or where it wanted to go. THe characters story lines intertwine on some levels but are in no means worthy of being included in a script. The whole thing is weak and pointless and then there is an occasional OK scene. But overall- Don't bother unless you love irish accents so much that you can watch mediocrity and it is rescued by everyone sounding like the Lucky Charms elf -an American fetish that has catapulted some truly crappy movies to success.\"\r\n0\t\"Contrary to most other comments about \"\"Syriana\"\" on the IMDb web-site, I and my family found watching this film on DVD at home a complete waste of time and space.<br /><br />In short, this was a film based on a script whose writer was being too clever by far. Rather than trying to tell a complex story in an intelligent and clear manner, it was assumed that constantly throwing mostly vague and hard to connect with each other 30-second vignettes of different story-lines from a dozen or so \"\"story-lines\"\" at the audience made for great and clear viewing. No, sir, it does not. What does make for great viewing is total clarity, precision, plots and story-lines - and characterisations - which have a beginning, a middle, and an end.<br /><br />This kind of cinematic presentation - akin to the Dim Sum experience in a Chinese restaurant - is pretentious and unintelligent in the extreme.<br /><br />Thank goodness, then, for the TV and DVD presentations of the Hollywood and British film noirs of the 1940s and 1950s whose writers, director, and actors knew the value of clear story telling, diction, and acting that meant something.<br /><br />This is one DVD that this family will not be sitting through again.\"\r\n0\t\"A BDSM \"\"sub-culture\"\" of Los Angeles serves as backdrop for this low budget and shabbily constructed mess, plainly a vanity piece for its top-billed player, Celia Xavier, who also produces and scripts while performing a dual role as twin sisters Vanessa and Celia. A question soon develops as to whether or not some rather immoderate camera, lighting and editing pyrotechnics can ever reach a point of connection to a weak and often incoherent narrative that will not be taken seriously by a sensate viewer. Celia is employed as a highly motivated probation officer for the County of Los Angeles, while her evil natured twin has become an iconic figure within her fetishistic world largely because of erotic performances upon CD-ROMS, but when disaster befalls \"\"Mistress Vanessa\"\", virtuous Celia, determined to unearth her sister's vicious attacker, begins a new job as a \"\"sex slave\"\" at the private Castle Club where the specialty of the house is a \"\"dungeon party\"\". Two FBI field agents (whose deployment to the Vanessa case is ostensibly required due to her involvement with internet BDSM sites), in addition to a Los Angeles Police Department homicide detective, are assigned to investigate the crime, while endeavouring to provide security for Celia whose enthusiastic performance in her new vocation is avidly enough regarded by her customers as to have created conditions of personal danger for her. Flaws in logic and continuity abound, such as a homicide being allocated to L.A.P.D.'s Operations-South Bureau, a region of the metropolis that is far removed from the setting of the film. Direction is unfocused and not aided by erratic post-production editing and sound reproduction. The mentioned photographic gymnastics culminate with a batty montage near the movie's end of prior footage that is but tangentially referent to the scenario. One solid acting turn appears among this slag: Stan Abe as a zealous FBI agent.\"\r\n1\t\"I wish \"\"that '70s show\"\" would come back on television. It was the greatest show ever!!! They should make episodes between the other episodes but of course that would be confusing. But I wish it would come back and make more episodes. Please come back... The show was absolutely hilarious. You couldn't laugh without seeing an episode. There is a really funny part in every episode and plus the show was so much better when Hyde and Jackie were going out with each other. Those were the best episodes. \"\"That '70s show is the best\"\".... It will be and always will be the best show ever. It was really sad when the show ended. They should make new episodes.\"\r\n0\t\"This movie is most possibly the worst movie I have ever see in my entire life! The plot is ridiculous and the whole \"\"Little Man\"\" crap is just so stupid. The entire movie is unrealistic and dumb. Let's face it, It's just a \"\"Black Comedy\"\". This is just a pointless horrible piece that should have never made it to theaters. The jokes are not funny and the acting is horrendous. Please, I beg of to you save your money than see this worthless piece of crap. I had to endure sitting through Little Man for an hour and a half wishing my eyes would bleed. I am disgusted that something like this would even be thought of! Who writes this crap? The actors have NO talent what so ever, how do these people get into Hollywood? They are making money off this junk!\"\r\n1\t\"Seldom do we see such short comments written by IMDb filmgoers. Perhaps it's because this lightweight dark comedy entertains and pleases without depth, or are we missing something? I'd watch it again if I had some incentive.<br /><br />So what's a happenstance? To the French it is \"\"Le Battement d'Ailes du Papillon\"\" Serendipity? Fate? Perhaps it's an event that is the culmination of a series of random happenings. We've all had these (it's called life) but when looked at in this way, you begin to get the feeling that \"\"random\"\" might be more like \"\"fated.\"\"<br /><br />A 'happenstance' in this film might be an occurrence as minor as knocking a few leaves of lettuce off the back of a truck or as major as basing a major life decision on the accuracy of a stranger tossing of a pebble. All these incidents cause other events that ... well you get the picture? Dominoes. Multiply those by 30 characters and an average of 6 each and you have to really stretch your imagination to accept the remote chance that this scenario could happen. And I think that there's a diagnosis for those who believe that life is like this. But then this is the magic world of cinema.<br /><br />We admit that it is fun to watch the way the writer/director weaves together these unrelated events into a story which enmeshes the lives of these French citizens. If you have a couple of hours and are looking for a whimsical escape, here's the place to do it. Or if you're recovering from surgery and aren't going anywhere anyway, this will engage you while your stitches are healing. <br /><br />\"\"Happenstance\"\" will not go down as an award winner but it should develop a cult following. Stranger things have happened.<br /><br /> Soren Kierkegaard is attributed with the following: \"\"Life can only be understood backwards; but it must be lived forward.\"\" If you looked at the detail in many of your own life experiences (meeting your first love, finding the perfect gift, your last auto accident) you would find a series of seemingly random events leading up to it.<br /><br />That's the answer! I forgot to bring along an existentialist to explain \"\"Happenstance\"\" to me.\"\r\n1\tWithout doubt the best of the novels of John Le Carre, exquisitely transformed into a classic film. Performances by Peter Egan (Magnus Pym, The Perfect Spy), Rudiger Weigang (Axel, real name Alexander Hampel, Magnus' Czech Intelligence controller), Ray McAnally (Magnus' con-man father) and Alan Howard (Jack Brotherhood, Magnus' mentor, believer and British controller), together with the rest of the characters, are so perfect and natural, the person responsible for casting them should have been given an award. Even the small parts, such as Major Membury, are performed to perfection. It says a lot for the power of the performances, and the strength of the characters in the novel that, despite the duplicity of Magnus, one cannot help but feel closer to Magnus and Axel than to Jack Brotherhood and the slimy Grant Lederer of U.S. Intelligence. I have read the book at least a dozen times, and watched the movie almost as many times, and continue to be mesmerized by both. If I had one book to take on a desert island, A Perfect Spy would be the choice above all others.\r\n1\t\"Some war movies succeed where others do not, and that can be judged from a variety of angles. The humanistic angle, one where you can feel the raw emotions (the terror of being under attack, the camaraderie amongst soldiers, the arduous trials people face inside them when in combat, etc..) are always movies I find compelling. Movies like Das Boot and A Midnight Clear are but two examples of movies that you sense a connection to the characters in the film.<br /><br />This film succeeds on that level as well. It speaks of \"\"The Highest Honor\"\" and that honor is doing the right thing. These 23 soldiers did the right thing, they had honor and it is recognized in a way wholly incompatible with Western thought, but it is, to the very end, a true story of honor. Unforgettable movie. Based on the true story.\"\r\n0\t\"Okay, I struggled to set aside the fact that in selling EVP as real the movie was basically lying to me from the get-go. I reasoned that hell, I don't believe in vampires but I still liked Dracula so I could live with this.<br /><br />However, even with that accepted the movie is just not very good. It's competently made and acted, but it doesn't really capture you at all. There are several \"\"jump\"\" moments, and I just looked at them and thought \"\"yeah, I didn't expect that\"\" without actually jumping in the slightest.<br /><br />Also the resolution doesn't make sense. If the force behind this is capable of doing the things it seems to be, then why the hell does it need to use a proxy? Plus, the end caption was absurd. They obviously put it there as part of the \"\"give the movie credibility by claiming it's all real\"\" thing, but for that to work it really needs to be at the start. But they can't put it at the start because then they give the plot away... sticking it in at the end just made it stick out like a sore thumb.\"\r\n1\tYes, I loved this movie when I was a kid. When I was growing up I saw this movie so many times that my dad had to buy another VHS copy because the old copy had worn out.<br /><br />My family received a VHS copy of this movie when we purchased a new VHS system. At first, my mom wasn't sure that this was an appropriate movie for a 10 year old but because we had just bought a new VHS system she let me watch it.<br /><br />Like I said, this movie is every little boys dream The movie contains a terrific setting, big muscled barbarians, beautiful topless women, big bad monsters and jokes you'll only get when you get older. So, a couple of days ago I inserted the video and watched the movie again after a long time. At first, I was bored, then started thinking about how much I loved this movie when I was kid, and continued watching. Yeah, the experience wasn't as great as I remembered The acting is pretty bad, the storyline is pretty bad, the jokes weren't funny anymore, but the women were still pretty. Yes, I've grown up. Even though the movie experience has changed for me, I still think it's worth 7 stars. For the good old times you know\r\n1\tTo make it short and not to spoil everything this film is about Kip (Giovanni Ribsi), a car thief, who messes up a big delivery of stolen cars (50 in total). He is then threatened to be killed by the man who gave him the order'. The objective now is to get 50 cars stolen in 3 days, with the help of Randall (Nicolas Cage), a retired' booster and also Kip's brother and a couple of old friends of Randall's. As you can see this is the same old, big bro' needs to get lil' bro' out of trouble routine and of course Randall is the best thief there ever was. Of course as in all other movies there are also a few setbacks and surprises you never would have thought of, but at times it is predictable too, so there is nothing fancy about the story. <br /><br />You are by now probably wondering why this is about 51 times the HOT STUFF, since there are only 50 beautiful, fast, cool and expensive cars to be stolen. Well the other hot item in this film is Sway (Angelina Jolie (who will be a big STAR (trust me))). She is not only very convincing in the role as a car theft, but she is pretty hot too. OK not hot as in pretty, but hot as in damn cool and sexy. She was very believable in this role, probably because she is some kind of a wild woman in real life too (don't believe me, read her biography) and for the sexy part well just see for yourself man. I only know, that she plays the kind of girl I like in this film, because she is not too mainstream, a bit alternative look and she even comes with a tattoo.<br /><br />OK the only downsides I felt while watching this movie was, that there is not very much action, there is one totally unrealistic scene, the story is only OK and that there are not much jokes. Hey but after seeing the whole film I must say: WHO CARES. Why must I say that, well because it was still entertaining; had a couple of cool car chases; good music; some Bruckheimer scenes (where the combination of music and the lines of actors make your eyes go wet); good actors who all did their jobs; pretty cars; one cool, wild, sexy lady (yes, I mean Mrs. Jolie) and last but not least very nice and cool tools to boost the cars with. So some downsides here but still a pretty good and entertaining movie. All in all the best way to describe this film is that it is an overall OK movie with a cool  feelgood ending.<br /><br />As for Nicolas Cage, well He is actually one of my most favourite actors in the action genre nowadays after such good films as The Rock, Con Air, Face / Off, Snake Eyes and finally this one. Plus what actor has had so many good action / thriller's in the last years and such successful ones ? Well no one!!! Maybe Jackie Chan, but he is one of my favourites too. One thing that is true though about Mr. Cages Bruckheimer films is that they keep getting worse. The Rock, was a clear 9, Con air was a nice 8 and this well this clearly is a 7. Not that that mark is bad. Does it not show that his films under Bruckheimer keep getting worse and that maybe Cage has to think longer before he accepts a role in a movie and probably he should make a few less movies ? No it doesn't show us that, because almost all of Cage's films were successful in the last few years, except for 8mm and Bringing out the Dead. 8mm was not great, I admit that, but that was never Cage's fault and the story seemed good to me. About the latter film I can not say anything, cause I have not seen it yet. One thing though I know for sure, if Bruckheimer would have asked me for those three films, I would have said YES to all of them. I would have said yes to The Rock, because the story was great and because you would get to play with Sean Connery and Ed Harris. I would have said yes to Con Air, because there would be a lot of action in it, because the story was good and because you got to act with John Malkovich and Ving Rhames. In this one I would have starred because I would have gotten a big paycheque, I would have been able to ride some cool and fast cars and because I would have been able to kiss Angelina Jolie (can't wait to see her in that Lara Croft outfit). This one was a good choice of Mr. Cage and it certainly was worth a look at in the theatre.<br /><br />7 out of 10\r\n0\t\"I'm gettin' sick of movies that sound entertaining in a one-line synopsis then end up being equal to what you'd find in the bottom center of a compost heap.<br /><br />Who knows: \"\"Witchery\"\" may have sounded interesting in a pitch to the studios, even with a \"\"big name cast\"\" (like Blair and Hasselhoff - wink-wink, nudge-nudge) and the effervescent likes of Hildegard Knef (I dunno, some woman...).<br /><br />But on film, it just falls apart faster than a papier-mache sculpture in a rainstorm. Seems these unfortunate folks are trapped in an island mansion off the Eastern seaboard, and one of them (a woman, I'd guess) is being targeted by a satanic cult to bear the child of hell while the others are offed in grotesque, tortuous ways. <br /><br />Okay, right there you have a cross-section of plots from \"\"The Exorcist\"\", \"\"The Omen\"\", \"\"Ten Little Indians\"\" and a few other lesser movies in the satanic-worshippers-run-amok line. None of it is very entertaining and for the most part, you'll cringe your way from scene to scene until it's over.<br /><br />No, not even Linda Blair and David Hasselhoff help matters much. They're just in it to pick up a paycheck and don't seem very intent on giving it their \"\"all\"\". <br /><br />From the looks of it, Hasselhoff probably wishes he were back on the beack with Pam Anderson (and who can blame him?) and Linda... well, who knows; a celebrity PETA benefit or pro-am golf tour or whatever it is she's in to nowadays.<br /><br />And the torture scenes! Ecchhhh. You'll see people get their mouths sewn shut, dangled up inside roaring fireplaces, strung up in trees during a violent storm, vessels bursting out of their necks, etc, etc. Sheesh, and I thought \"\"Mark of the Devil\"\" was the most sadistic movie I'd seen....<br /><br />Don't bother. It's not worth your time. I can't believe I told you as much as I did. If you do watch it, just see if you can count the cliches. And yes, Blair gets possessed, as if you didn't see THAT coming down Main Street followed by a marching band.<br /><br />No stars. \"\"Witchery\"\" - these witches will give you itches.\"\r\n0\tNo matter how you look at this movie, it is just awful.<br /><br />If you view it as a horror, then it is an unscary movie with the monsters being hand puppets.<br /><br />If you look at it as a comedy, then you will notice most of the humor falls flat and is just lame.<br /><br />If it is a romance you will wonder why a guy would stay with such a B**ch!<br /><br />If you look at it as an action you can't really pull for the whiny hero.<br /><br />As you can see this movie just fails to deliver anything remotely entertaining. As mentioned the monsters are obvious puppets and this film was another attempt at a Gremlins type movie. This however has the worst looking monsters of that genre. Critters looked pretty good, so did the Ghoulies, heck even the puppets from the Munchies looked better than these. The characters in this film are thouroughly unlikable. The hero is a whiney security guard, his girlfriend is always complaining, they have a tramp friend who has a jerk military boyfriend, and another friend who is a spaz. At one point in the movie the hero and the military guy fight with rakes...this movie is just utterly stupid. I like the scene when they are in the dreaded club scum (which is obviously not a club, but more likely a diner) and the hero tells the waitress that none of them are 21. Give me a break, I am 25 and I look younger than any of them.\r\n1\tI originally saw this film years ago during Cinemax Friday after dark series(back when the cable box was built like a keyboard),and it intrigued me. Even though there is a pointless aspect to the film it is well acted.The performances of Depardieu & Dewaere are very enjoyable.They have a good chemistry together & Miou-Miou makes a pink fur look breathtaking.A movie like this probably wouldn't be made in these politically correct times(at least not in the US), since it seems to sensationalize things like violence,robbery,& casual sex. This movie proves that with a talented cast & also talented directing a good movie is a good movie no matter the subject.It saddened me to find out Patrick Dewaere committed suicide & in the near future I,ll will check him out with Depardieu & Miou-Miou in Get Out Your Hankerchief.\r\n0\tA wealthy Harvard dude falls for a poor Radcliffe chick much to the consternation of his strict father (Ray Milland).<br /><br />Syrupy, sugary, and most of all, sappy story about a battle of the 'classes' when rich-kid Ryan O'Neal brings home a waif of a librarian for his snobbish parents to ridicule. Ali MacGraw is the social derelict with the filthy mouth while John Marley plays her devout-Catholic father, but no one in the film is more annoying than O'Neal himself with his whimpering portrayal as Harvard's champion yuppie.<br /><br />Followed 8(!) years later by 'Oliver's Story'.\r\n1\tThere is no director I like more than Mamoru Oshii. But sadly, even though he directed quite a few films that gained huge international attention, there are still a fair few of his films that have slipped through the cracks. Tachiguishi is one of them, and even though I loved it to bits, it's not hard to see why distributors in the West are somewhat reluctant to release it.<br /><br />In between his big and serious films, Oshii is known to do some smaller and quirkier projects. While Tachiguishi definitely falls into this category, Oshii has really outdone himself with this one, creating something that is very hard to classify, even as a freaky Japanese flick. Go figure.<br /><br />At its very core lies a documentary not quite unlike Otaku no Video. But rather than make a fool of an existing subculture, Oshii invents his own and delves into the lives of culinary heroes, scrounging away food for free and upholding the Japanese culinary level. Oshii's approach on the subject has close ties with Dai-Nipponjin, as the subject is handled with a deadly sense of gravity while the images on screen look as ridiculous as can be. Deadpan humor taken to the extreme.<br /><br />But that is not all, rather than simply shooting his mockumentary Oshii decided to make it using a new visual technique baptized superlivemation. A weird mix of live action, photography, digital animation and puppets on a stick. Performed and acted out (or posed, if you want) by the greats of the Japanese animation industry no less, as the project was supposed to be as low-budget as possible.<br /><br />And if you think that just about covers it, know that the film is extremely dialogue-heavy, making it a good companion piece for Innocence. The influence of the grifters is analyzed from all kinds of cultural, political and even philosophical angles, fired at the audience through a continuous stream of monologues and dialogues. And to make it even worse, the whole film is completely grounded in actual Japanese history and customs, making it even harder for a foreigner to get a good grip on the material. Needless to say, multiple viewings are advised to make the best of all the details tucked away inside the film.<br /><br />That said, on a conceptual level the film is easy to follow and already pretty hilarious. Various grifters are introduced as were they the most influential historical figures of post-war Japan. The film plays like you'd expect a serious documentary of any other important figure to unfold, but somehow the big and crudely animated cut-out photography limbs of which figures are assembled don't quite make it all that serious. The range of characters introduced is sublime, Shinji Higuchi taking the cake as cow-creature wearing a nose ring while taking on the fast-food chains with his gang of bull/people.<br /><br />Oshii regular Kenji Kawai provides, besides a pretty comical performance, a score ranging from atmospheric and dark to wacky, strange and comical. A lot of fun is to be had from the exaggerated noises and effects, complementing the animation and totally contradicting the tone of the rest of the film.<br /><br />Visually the film is very atmospheric, though it must be said that the animation is pretty scarce and while effective, remains toned down, only to burst out in hyperactive weirdness from time to time. Which is not exactly a bad thing, seeing how Tachiguishi is so dialogue-heavy. Despite that, the film is still a visual masterpiece as each frame looks absolutely lush and is tailored to match and improve the general atmosphere of the film.<br /><br />Beware though, because Tachiguishi does demand a lot from the viewer. If you don't speak Japanese, there is a lot of reading to be done and there are many cultural references that demand some attention. On top of that, the monologues in the film area quite extended and can be hard to follow. The film still lacks English subtitles and even though my French was largely sufficient to get what it was all about, I'm sure I missed many of the finer points of the film.<br /><br />Tachiguishi is not an easy film to get into, but around halfway through it reaches full steam and it doesn't let off from there on. I still hope to see this one again with English or Dutch subs. A dub would actually be best for a film like this (much like Container), though I guess a quality anime dub is a bit too much to ask for.<br /><br />With all of that said, I can only congratulate Oshii on another marvelous film. It's rare to find a film that blends and mixes so many styles and influences to create something that is so unique and still works. The film is smart, looks and sounds great and is filled to the brim with creativity. It is immensely funny, even if you can't catch all the details on the first viewing. But be sure to at least get this with decent subs, as the automated English translation that is floating out there is completely worthless and does the film no justice at all.<br /><br />Tachiguishi caters to a very specific audience and I'm not surprised the French got their release while the rest of Europe (and the rest of the Western world) is still waiting for a sign of this film. But for those that like Oshii, appreciate dry and deadpan humor and crave creative spirits, it is a film that cannot be missed, even though it could just as well misfire. 4.5*/5.0*\r\n1\tI admit that I am a vampire addict: I have seen so many vampire movies I have lost count and this one is definitely in the top ten. I was very impressed by the original John Carpenter's Vampires and when I descovered there was a sequel I went straight out and bought it. This movie does not obey quite the same rules as the first, and it is not quite so dark, but it is close enough and I felt that it built nicely on the original.<br /><br />Jon Bon Jovi was very good as Derek Bliss: his performance was likeable and yet hard enough for the viewer to believe that he might actually be able to survive in the world in which he lives. One of my favourite parts was just after he meets Zoey and wanders into the bathroom of the diner to check to see if she is more than she seems. His comments are beautifully irreverant and yet emminently practical which contrast well with the rest of the scene as it unfolds.<br /><br />The other cast members were also well chosen and they knitted nicely to produce an entertaining and original film. It is not simply a rehash of the first movie and it has grown in a similar way to the way Fright Night II grew out of Fright Night. There are different elements which make it a fresh movie with a similar theme.<br /><br />If you like vampire movies I would recommend this one. If you prefer your films less bloody then choose something else.\r\n1\t\"This movie has everything that makes a bad movie worth watching - sloppy editing, little to no continuity, insane dialog, bad (you might even say non-existent) acting, pointless story lines, shots that go on FAR too long...and it's perfect for MST3K-style riffing, not to mention the \"\"Corpse Eaters Drinking Game\"\": Scribble on forms...take a shot - Sign your name...take a shot - Catch a bad Foley edit...take many, many shots.<br /><br />The only reason I didn't rate it higher than 8 is because there's not enough gratuitous nudity and because despite its insane badness, it's only an hour long - hell, a movie like this should have been at least 20-30 minutes longer!\"\r\n1\tTo say this film is simply a demonisation of Catholics and a misrepresentation of history is untrue. That is not what this film is.<br /><br />What this film is is a comment on the abuses of the Church (although this could be substituted for any powerful body), the ways that this abuse affects people and families and the way so many people choose to simply allow and often participate in the abuse without thinking for themselves. The fact that it is the Catholic church which is in the wrong is simply because of the nature of the true story the film is based upon. To label this as propaganda against Catholics seems to miss the truth about what the Catholic Church has done at times; its history is often not great and is something that films like this highlight and that needs to be highlighted. Yes we should comment on the abuses committed by other organisations but that is not for the remit of this film.<br /><br />It is an amazing film which brought me to tears and well worth watching - 'if we do not study the past, we are bound to repeat it'\r\n0\tThis was another obscure Christmas-related title, a low-budget Mexican production from exploitation film-maker Cardona (NIGHT OF THE BLOODY APES [1969], TINTORERA! [1977]), which  like many a genre effort from this country  was acquired for release in the U.S. by K. Gordon Murray. Judging by those two efforts already mentioned, Cardona was no visionary  and, this one having already received its share of flak over here, is certainly no better! The film, in fact, is quite redolent of the weirdness which characterized Mexican horror outings from the era, but given an added dimension by virtue of the garish color (which, in view of the prominence of reds  apart from St. Nick himself, the Devil plays a major role in the proceedings  throughout, was essential). Anyway, in a nutshell, the plot involves Satan's efforts to stall Santa Claus' Christmas Eve rendezvous with the Earth's children; there is, however, plenty more wackiness along the way: to begin with, our portly, white-bearded and chronically merry man-in-red lives in a celestial palace who, apart from accompanying toy-maker kids from all over the world on his piano as they sing (laboriously for the whole first reel!) in their native tongue, visits Merlin  the famed magician at King Arthur's court, here bafflingly but amusingly prone to child-like hopping and mumbling gibberish!  once every year to acquire potions which would bring somnolence to the young and render himself invisible (by the way, the Wizard's anachronistic presence here is no less unlikely than his being a cohort of Dr. Frankenstein in SON OF Dracula [1974]!!); incidentally, by this time, he always seems to have gained some excess weightso Santa has to work out in order to be able to fit into each proverbial chimney! The Devil's antics (enthusiastically rubbing his hands together at every turn and generally hamming it up) to hold up St. Nick's delivery program, then, is perfectly puerile: indeed, their tit-for-tat shenanigans resemble an old Laurel & Hardy routine more than anything! To pad out the running-time, we focus on three sets of children: one, the lonely son of a rich couple who wants nothing more for Christmas than their company (projected as a wish-fulfillment fantasy where the boy finds his parents wrapped in extra-large packages!), a girl from a poor family who yearns to own a doll of her own (the horned one first tempts her to steal one, then invades the little one's dreams  to no avail) and a trio of brats who, egged on once again by Satan, think of nothing but causing mischief and eventually fall out amongst themselves. There is definitely imagination at work here, but it is applied with little rhyme or reason, while the overall juvenile approach keeps entertainment (unless one counts the film as a guilty pleasure) well at bay!\r\n0\tWell, maybe I'm just having a bad run with Hindi movies lately. I asked the video store guy for Apharan (Prakash Jha) but being a new release, wasn't available yet. So I had to settle for this one. It turned out to be the stupidest Hindi movie I've seen (and I've seen quite a few). No wonder BOllywood is the laughing stock of the whole world! If IMDb had negative ratings, I would give Garam Masala a -10.<br /><br />I remember seeing a TV show about the jazzy premiere they had for its release in Mumbai. All the usual celebs and their sideys showed up. For some strange reason, people expect good stuff from Piyadarashan. I did not like Hulchul, Hungama, or his other films. Hulchul, probably dubbed from Tamil or Telugu, came across as very loud, in-your-face fare that again didn't make much sense except in a Bollywood flick. This latest piece of utter CXXP proved that this guy has NO BRAINS. Who made him a director, even a Bollywood director at that??? <br /><br />Anyhow, to the film now. What starts off as a romantic escapade turns into a non-sensical woman-hunt. Two fashion photographers working for a magazine share an apartment (isn't it similar to No Entry where the 2 dudes work for a gossip magazine and share an office? Jezuz Christ, now they're copying their own stories!) Well anyways, there's some cook or chef that tries to help one of the dodos in his quest for multi-lateral love (aka multi-tasking + multi-timing). What happened in the end, I've no idea. I switched off mid-way. What ridiculous junk. I can't believe they even released it. And how sadistic to wallow in their own filth! For which audience did they make it - the poor illiterate Indian masses (700 Mil at last count) or the well-heeled NRI desis staying in Phoren? Either ways it doesn't matter. Neither group has any clue what makes a good movie and probably deserves such god-awful stuff.<br /><br />Its a short review because there's nothing to write about but the usual bag of F-grade garbage. Bollywood should change its name to Follywood. And yes, this review is much better than the movie itself.\r\n0\tI'm not alone in admiring the first Superman movie, a film that Richard Donner executed masterfully. I am also not alone in scorning Richard Lester's Superman 2... which brings us to the Richard Donner cut of the same movie, sadly it is still an absolute abomination.<br /><br />Superman's world is one where suspension of disbelief is required in strong doses, but Superman 2 stretches things too far. It doesn't matter who directed Superman 2 because the script insults the intelligence of a first grader. In a sense there is no plot because the characters have zero motivation to act the way they do, unlike the original superman. With or without his powers, Superman's strength (or lack thereof) is handled in the least believable manner. There is too much to criticize, so I will not bother. I condemn this movie... perhaps the slapstick in the Lester version is more appropriate to the moronic script this movie is based on. Super-Duper bad.\r\n1\t\"After a chance encounter on the train, a young couple spends a single night strolling the streets of Vienna, discussing life and love. The primary reason to see \"\"Before Sunrise,\"\" is to watch a young Julie Delpy deliver her lines. As \"\"Celine,\"\" this sexy, brainy, soulful brown-eyed blond is sort of a cross between Brigitte Bardot and Joni Mitchell as they were in their mid-twenties. Risking overstatement, Celine is practically the ideal woman, unusually beautiful and very feminine while being natural, unpretentious, introspective, and selflessly loving. We can easily forgive that she is a bit eccentric and talks a blue streak, for her sincere, intelligent remarks are occasionally penetrating. Further, her varied expressions are nothing short of captivating and she speaks English with a French accent that is very endearing. <br /><br />If there is a fly in the ointment of this good movie, it would have to be her unkempt and disheveled costar. Ethan Hawke as \"\"Jessie\"\" comes off like a vaguely appealing slob, sort of a Maynard G. Krebs of the nineties. Attempting to appear detached and nonchalant, he sort of drags himself through certain shots. His pants fit poorly, his tee shirt is coming untucked, his wavy dark hair (his most attractive feature) needs a good washing, and someone really should have showed him how to properly trim his youthful goatee. Nevertheless, he is supposed to represent an unwashed youth on a two-week train ride around Europe, so the look he has cultivated is probably pretty genuine. His oft-cynical observations and wry sense of humor seem to impress the unapologetically romantic Celine, although she is occasionally disturbed by the extent of his alienation. When he finally admits to her that he is utterly sick of himself and likes being near her because he feels like a different person in her presence, we know he is getting somewhere. <br /><br />After blowing their collective funds on a series of cafes, bars, and silly diversions, they agree that because they may never see one another again, they should make the most of it. Jesse bums a bottle of red wine off a sentimental bartender so that he and his newfound lady love may repair to a local park in the middle of the night to lie on the grass, looking up at the moon and the stars and watching the sun come up. <br /><br />Given his boundless luck in the romance department, it is especially irksome when Jessie, as the very definition of a naive jerk, foolishly allows this wonderful young lady to slip from his grasp. He contents himself with a half-baked plan, quickly devised at the railroad station when he bids her adieu, to reunite at the same spot in half a year. When the appointed time comes, you just know this beautiful and unusual girl will be involved with another, perhaps even married and pregnant. For whatever reason, she probably won't show, while Jesse, who ends up working at Target or (if he's lucky) the local library, will go back to Vienna, desperate to see her again, only to wind up alone.<br /><br />Despite what for me was a very discouraging conclusion, \"\"Before Sunrise\"\" is a beautiful movie. I highly recommend both it and the sequel, \"\"Before Sunset.\"\"\"\r\n1\tThings to Come is that rarity of rarities, a film about ideas. Many films present a vision of the future, but few attempt to show us how that future came about. The first part of the film, when war comes to Everytown, is short but powerful. (Ironically, film audiences in its release year laughed at reports that enemy planes were attacking England--appeasement was at its height. Wells' prediction was borne out all too soon.) The montage of endless war that follows, while marred by sub-par model work, is most effective. The explanatory titles are strongly reminiscent of German Expressionist graphic design. The art director was the great William Cameron Menzies, and his sets of the ruins of Everytown are among his best work. Margaretta Scott is very seductive as the Chief's mistress. The Everytown of the 21st century is an equally striking design. The acting in the 21st century story is not compelling--perhaps this was a misfired attempt to contrast the technocratic rationality of this time with the barbarism of 1970. Unfortunately, the model work, representing angry crowds rushing down elevated walkways, is laughably bad and could have been done much better, even with 30s technology. This is particularly galling since the scenes of the giant aircraft are very convincing. This is redeemed by Raymond Massey's magnificent speech that concludes the film--rarely has the ideal of scientific progress been expressed so well. Massey's final question is more relevant now than ever, in an era of severely curtailed manned spaceflight. The scene is aided by the stirring music of Sir Arthur Bliss, whose last name I proudly share.<br /><br />Unfortunately, the VHS versions of this film are absolutely horrible, with serious technical problems. Most versions have edited out a rather interesting montage of futuristic workers and machines that takes us from 1970 to 2038. I hope a good DVD exists of the entire film.\r\n0\tMann photographs the Alberta Rocky Mountains in a superb fashion, and Jimmy Stewart and Walter Brennan give enjoyable performances as they always seem to do. <br /><br />But come on Hollywood - a Mountie telling the people of Dawson City, Yukon to elect themselves a marshal (yes a marshal!) and to enforce the law themselves, then gunfighters battling it out on the streets for control of the town? <br /><br />Nothing even remotely resembling that happened on the Canadian side of the border during the Klondike gold rush. Mr. Mann and company appear to have mistaken Dawson City for Deadwood, the Canadian North for the American Wild West.<br /><br />Canadian viewers be prepared for a Reefer Madness type of enjoyable howl with this ludicrous plot, or, to shake your head in disgust.\r\n0\t\"Trying to conceive of something as insipid as THE SENTINEL would be pretty difficult. The problems are many. The result is terrible and loaded with plot holes.<br /><br />Michael Douglas stars as Pete Garrison, a Secret Service agent who \"\"took one\"\" for Reagan during the attempt on his life. Years later we find Pete assigned to the Whitehouse Family, mainly as a guard for the First Lady (Kim Basinger, L.A. CONFIDENTIAL). Troubles arise as we see Pete's close involvement with the First Lady, and a sudden threat against the President himself (David Rasche, UNITED 93). When Pete fails a polygraph test, he's singled out as a disgruntled agent by investigator David Breckinridge (Kiefer Sutherland, 24 TV series).<br /><br />As the presidential assassination plot unfolds, Pete finds himself on the run from his own people. His only confidant is the First Lady, and she's reluctant to tell anyone about their affections for one another (which is why Pete failed the polygraph in the first place). But is Pete really innocent? Or is he simply trying to buy time until he can kill the President? If he is innocent, how can he help prevent the assassination attempt while running from the Secret Service? <br /><br />The one, big, overwhelming problem with this film is that there's no justification for the reason behind the presidential threat. Isn't that what the movie's supposed to be about? One would think so! But the audience is never let in on why the assassin(s) want to kill the Prez. Hmm. Someone forget to put that in the script somewhere? <br /><br />And what's with David Breckinridge's (Kiefer's) new partner, Jill Marin (Eva Longoria, CARLITA'S WAY)? Seems that she was put in the film strictly as a piece of a$$-candy. What was her purpose again? Did she do anything other than look nice in tight pants and a low-cut blouse?<br /><br />There are so many problems with the basic premise of The Sentinel as to be laughable. The action is too easily stymied by the \"\"What the...?\"\" responses sure to be uttered by those unfortunate enough to watch the movie.\"\r\n0\tI consider myself to be a bit of a snob when it comes to everything and although the cinematic experience is more suited to explosions than high drama, I can be very stuck up about films, too.<br /><br />Not all art films, however, are better than King Kong. I quite possibly would give Kong two stars, double this film's haul.<br /><br />My guess is that people got so excited about this because it was almost identical in style to what you can see in a play. For the less discerning art-buff, a film that looks like a play is 'great art'.<br /><br />This film, however, was useless.<br /><br />There was hardly any story so it relied on high drama. The only drama in this film was whether the cat would drop off the roof or not. So, deep and meaningful dialogue, then? No. Great acting? Hardly.<br /><br />To be excessively fair: Some of the scenery was interesting, though: Communist flats, city vistas (Petersburg?) and the Soviet trams still in service.\r\n0\tThis movie is traditional bollywood fare as far as the star power, sentimentality and love triangle of emotions. What really bothered me about this movie was the makers' absurd notion of surrogate mother. A whore who conceives a child with someone after have sex with the man (of the family desiring a child) is not a surrogate mother. Neither is she a good candidate for a surrogate mother. I have seen Indian movies and television shows that made 10 to 15 years ago that dealt with this issue more intelligently. The whole concept of the movie is ridiculous and absolutely implausible. I realize that most bollywood movies aren't meant to be plausible, but they don't pretend to be either. This movie wants us to emote along with the characters, but this can't done with such a ridiculous, contrived conflict. I would have expected better from Abbas and Mustan.\r\n1\tPost-feminist depiction of cruelty and sadism.<br /><br />Spoiler alert! <br /><br />This underrated gem of a film tells the story of Flavia, a Fifteenth Century girl of Noble birth walled up in a convent after defining her father and indeed the whole of Medieval Christian society by viewing a fallen Islamic warrior as a human rather than demonic figure.<br /><br />Unable to accept the patriarchal rule of the convent (explicitly stated in a scene where the Bishop arrives flanked by soldiers and monks) Flavia begins to explicitly question the society in which she finds herself and, through butting up against a whole system of subjugation, repression and violence, inevitably brings a tragic end not only to herself but all those around her.<br /><br />Billed as a piece of nunsploitation this is far from the truth. This is a film depiction the consequences of violence, the effects of patriarchal dominance, the nature of rebellion and the corruption of the human spirit.<br /><br />I described it in the title of this piece as 'post-feminist' and in the end Flavia's triumphs must always be corrupted, compromised and perverted by men. Even Flavia's gruesome end is perpetrated by men for men (the women turn away and only the monks look on without horror.<br /><br />As to the much discussed violence: this is a depiction of the effects of violence and the horrors of a world driven mad by religious excess. To have shied away from the violence would have limited the film's impact, would have cheapened the film and allowed it to be assimilated within the Patriarchal discourse it is exposing. In addition it is a realistic portrait of medieval society.<br /><br />Beautifully filmed, brilliantly acted (notably by Florinda Bolkin and Maria Casares), containing a wonderful score by piovani and still challenging after all these years Flavia is a classic of European Cinema.\r\n0\tUnless I'm sadly mistaken, I rented A Nightmare on Elm Street 3 several years ago and there was a music video, I'm pretty sure which was called Dream Warriors, at the end of it, and I rented this one on DVD hoping that the video would be there because it was one of the funniest things I've ever seen. It's amazing how stuff from the 80s is so funny now, but nothing is funnier than 80s rap videos. There was this rap group singing that song Dream Warriors on the VHS version of this movie after the credits, and they're all wearing like denim jackets with no shirt underneath and form fitting jean shorts that are all frayed at the bottoms like Daisy Dukes. What could make a rap group look more foolish I can't imagine.<br /><br />(spoilers) At any rate, I was disappointed in looking for that video on the DVD version, so all I had was this mediocre installment in the Freddy Krueger series. The movie sort of starts off with the same idea as part 2, with the main character witnessing all kinds of gruesome murders and then sort of coming out of a trance and finding himself with the bloody hands. Kristen Parker (Patricia Arquette) has a nightmare about the infamous house that Nancy Thompson used to live in, then runs to the bathroom, the sink's handles turn into Freddy's hands and attack her, and then she wakes up standing in her bathroom having slit her own wrists. From there, the movie turns into the usual mental hospital installment. <br /><br />`Larry' Fishburne, tired of always playing the bad guy in his roles, was happy to take on the role in this film as a nice-guy orderly, stern but accommodating when the patients want to bend the rules a little. Not surprisingly, he turns in what is by leaps and bounds the best performance in the movie. Arquette later goes on to become an accomplished actor, but had not perfected her acting skills when she starred in this film. The characters in the movie are mostly all patients at the mental hospital that Kristen is placed into after cutting her wrists. All of them are cynical and uncooperative, almost none believing that they really belong there at all. Eventually, they realize and are able to convince the staff that they are all having dreams about the same man and it's not just some kind of group hysteria.<br /><br />Heather Langenkamp has returned in her famous role as Nancy Thompson, this time grown up into a dream researcher as a result of her childhood experiences involving Freddy Krueger. Not surprisingly, she is able to quickly relate to the hysterical Kristen and the rest of the patients, since she had experienced exactly what they're going through. There are some interesting murders in this installment, and the technology used for the special effects have taken a huge jump. There is a gigantic, worm-like Freddy that tries to swallow Kristen whole, there is a scene where a television turns into Freddy and with mechanical arms he picks up one of the patients there for some late night entertainment and punishes her for sitting too close to the TV, but there is also an unconvincing go-motion scene where a couple guys have a fight with Freddy Krueger's skeleton, which has been rotting in the trunk of some car in a car junkyard. And one of the more groan-inducing scenes was one where Freddy attacks one of the patients in his dream (the one famous for sleepwalking), tearing the muscles and tendons out of his arms and legs and leading him around like a puppet. Ouch.<br /><br />We get a peek into Freddy's past in this installment. Not only do we meet his mother, but we also find out the circumstances that led to Freddy being fathered by more than 100 maniacs. In fighting Freddy, the patients all band together and, in their dreams, use their special powers (most of which reflect their shortcomings in real life) to fight him. One student, bound to a wheelchair, is able to walk in his dreams, another has the hilarious powers of what he calls the `Wizard Master,' another is `beautiful and bad' (she has lots of makeup, her hair stands up in a foot-high Mohawk, and she has knives). Clever, but the movie falters when it has only one of the patients, the one who can't speak, not have any powers in his dreams until the climax of the movie, when he suddenly realizes that he can talk in his dreams (at just the right moment to save the day). His dream power was a little too obvious to have been left out for that long, but collectively, now you see why the movie was subtitled Dream Warriors.<br /><br />Altogether, this is not an entirely weak entry into the series. The acting is pretty shoddy, but it's actually pretty good for a horror movie. Larry Fishburne vastly overshadows the rest of the cast, displaying wonderful acting skills early on in his career, and the movie is not simply a rehash of either of the first two  a problem that plagues the Friday the 13th movies much more than the Elm Street films. The characters are never developed enough to allow for the later creation of much tension, which is why most of the deaths come across more as creative ways to kill off someone in a horror film than the tragic loss of the life of one of the characters that we've come to know and root for their triumph over evil. But then again, not a lot of horror movies take the time to really develop their characters to the point where you throw up your hands in defeat when they are killed, or are on the edge of your seat as they run for their lives. But it's important to note that the few horror films that actually do that are almost invariably the best ones\r\n0\t\"I am a 11th grader at my high school. In my Current World Affairs class a kid in my class had this video and suggested we watch. So we did. I am firm believer that we went to the moon, being that my father works for NASA. Even though I think this movie is the biggest piece of crap I have ever watched, the guy who created it has some serious balls. First of all did he have to show JFK getting shot? And how dare he use all those biblical quotes. The only good thing about this movie is it sparks debates, which is good b/c in my class we have weekly debates. This movie did nothing to change my mind. I think he and Michael Moore should be working together and make another movie. Michael Moore next movie could be called \"\"A Funny Thing Happened on Spetember 11th\"\" or \"\"A Funny thing happened on the way to the white house\"\".\"\r\n0\t\"No, I haven't read the Stephen King novel \"\"Thinner,\"\" but I choked down the film version. Horror movies are an acquired taste. Regular movies give an audience a hero to applaud as he strives to achieve a goal. In horror movies, audiences are invited to savor the demise of characters. In director Tom Holland's low-fat but tasteless revenge chiller \"\"Thinner,\"\" nobody wins and everybody deserves the bite that is put on them. Gluttonous New England attorney Billy Halleck (Robert John Burke of \"\"Robocop 3\"\") has a weight problem. Although he rocks the bathroom scales at 300 pounds, he appears happily married to a trim, delectable wife, Heidi (Lucinda Jenney of \"\"G.I. Jane\"\") with a yeasty teenage daughter.<br /><br />Fat doesn't mean stupid here. Halleck displays his sagacity in court when he wins an acquittal verdict for sleazy Mafia chieftain Richie Ginelli (Joe Mantegna of \"\"House of Games\"\"). Driving home from a victory feast, Billy hits an old gypsy woman crossing the street and kills her. A cover-up occurs, and Halleck's friends get him out of the soup. The disgruntled gypsy father Taduz Lemke (Michael Constantine of \"\"Skidoo\"\") retaliates with a curse on the corpulent lawyer and the two town officials that exonerated him. Suddenly, Halleck finds himself shedding pounds no matter how much chow he chomps. When he begs the vengeful Gypsy to lift the curse, the old man refuses. Desperately, Halleck resorts to Richie. While Halleck struggles with the gypsies to remove the hex, he learns that his loyal wife has turned his attentions to the town's hotshot doctor.<br /><br />\"\"Thinner\"\" qualifies as not only laughably inept horror flick, but the filmmakers also rely on stereotypes of men and women. Tom Holland, who directed \"\"Child's Play\"\" (1988), and scenarist Michael McDowell, have served up such a slipshod script that you cannot relish watching Billy get his just dessert and shrivel up. \"\"Thinner\"\" boasts few shocks and fewer surprises. The filmmakers may have regurgitated King's novel, but they have filleted whatever sense of horror and humor it contained. Holland and McDowell introduce characters, such as the Mafioso, then inexplicably let them off the hook. One minor character shows up long enough to die and have a chicken's head stuffed in his mouth.<br /><br />The stereotypical behavior of the characters may offend audiences, too. \"\"Thinner\"\" depicts women as oversexed vixens and men as swine. When Halleck sneaks home from a clinic, he finds his doctor's sports car parked at his house. His suspicions ripen into jealousy and he cooks up a scheme to get the curse transferred to this wife. Even the premature ending lacks any satirical flavor. Oscar-winning special effects wizard Greg Cannom of \"\"Van Helsing\"\" and make-up artist Bob Laden do a fabulous job beefing up actor Robert John Burke to look obese. They succeed, too, in making him shrivel.<br /><br />Only die-hard Stephen King fans will be able to stomach this misogynistic gooledyspook.\"\r\n1\t\"This 2004 Oscar nominee is a very short b/w film in Spanish. A young woman goes into a café, gets a coffee, and notices a couple of musicians standing silently with their instruments. All the patrons are motionless, like mannequins. One guy, however, is quite jolly and breaks into a song about what goes on at 7:35 in the morning. There is one surprising moment after another until the end which is quite, well, surprising. The people, the place, everything looks quite ordinary. And like the musical piece \"\"Bolero\"\", the thing keeps building until the climax. With its structure, theme,movement and wit,it is an 8 minute masterpiece.\"\r\n1\t\"THE JIST: See something else.<br /><br />This film was highly rated by Gene Siskel, but after watching it I can't figure out why. The film is definitely original and different. It even has interesting dialogue at times, some cool moments, and a creepy \"\"noir\"\" feel. But it just isn't entertaining. It also doesn't make a whole lot of sense, in plot but especially in character motivations. I don't know anyone that behaves like these characters do.<br /><br />This is a difficult movie to take on -- I suggest you don't accept the challenge.\"\r\n0\tThis one acts as a satire during the women's rights movement era. Of course, that doesn't mean COACH (the movie) is a wonderful experience to behold. It runs into the same vein as FASTBREAK (which was better, but still tame), and is basically standard fare fluff. What I mean for this movie being uninteresting is simple to recognize. Anybody who serves time away from a normal job by training a bunch of lunatics earning their way to sudden victory makes waste. It's the same feeling you may get after watching this. A nice attempt at casting the opposite sex for a man's duty, but I expected better things.\r\n1\tAnna (Charlotte Burke), who is just on the verge of puberty, begins to have strange dreams which start affecting her in real life--especially involving a boy named Mark (Elliott Spiers) who she meets in her dreams.<br /><br />Very unusual fantasy with some truly terrifying moments. Despite the fact that this is about a teenage girl and has a PG-13 rating, this is NOT for children. Also, if you hate fantasies stay far away. But if you're game for something different this fits the bill.<br /><br />Well directed by Bernard Rose with a just beautiful music score and a few nice, scary jolts. The only thing that prevents this from being a really great movie is Burke--she's not a very good actress (it's no surprise that this has been her only film) and it hurts the movie. However, everybody else is just great.<br /><br />Spiers is very good as Mark; Glenne Headley (faking a British accent very well) is also very good as Anna's mother and Ben Cross is both frightening and sympathetic as Anna's father.<br /><br />A sleeper hit when released in 1988, it's since faded away. That's too bad--it's really very good.\r\n1\tThis is a film i decided to go and see because I'm a huge fan of adult animation. I quite often find that when a film doesn't evolve around a famous actor or actress but rather a story or style, it allows the film to be viewed as a piece of art rather than a showcase of the actors ability to differ his styles.<br /><br />This film is certainly more about style than story. While i found the story interesting (a thriller that borrows story and atmosphere from films such as Blade Runner and many anime films), it was a bit hard to follow at times, and didn't feel like it all came together as well as it could have. It definitely had a mixed sense of French Animation and Japanese Anime coming together. Whether thats a good thing or not is up to the viewer. Visually this film is a treat for the eyes, and in that sense a work of art.<br /><br />If you like adult animation, or would like to see a film that is different from most films out at the moment. I would recommend it. All i can say is that i enjoyed the experience of the film but did come away slightly disappointed because it could have been better\r\n0\tthis animated Inspector Gadget movie is pretty lame.the story is very weak,and there is little action.most of the characters are given little to nothing to do.the movie is mildly entertaining at best,but really doesn't go any where and is pointless.it's watchable but only just and is nowhere near the calibre of the animated TV show from the 80's.it's not a movie that bears repeat viewing,at least in my mind.it's only about 74 minutes long including credits,so i guess that's a good thing.unlike in the TV show,the characters are not worth rooting for here.in the show,you wanted Inspector Gadget to save the day,but there,who really cares?anyway,that's just my opinion.for me Inspector Gadget's Last Case is a disappointing 3/10\r\n0\tWhen you go at an open air cinema under the Greek summer night you usually don't care what the movie is! Edison started really good with some good effort from the singers-who-want-to-be actors and a once again great Morgan Freeman but... (In a movie there is usually a good start to catch audience,done, a bit boring yet story filling middle of the movie that is more about characters and less about action ,done, and the third part is something really good so that you can remember the movie...) when you see 30 elite police officers (packed with weapons that can demolish a building) shoot at a guy behind a car, fail to hit him even once while he kills all (but 3) and then the guy takes out a flame thrower (to kill the rest 3) ,you realise that the Greek summer sky filled with stars is way too good to be distracted by a movie like this!\r\n1\t\"Credited by Variety to be one of the greatest documentaries to ever come out of Canada. Al Pacino, Roger Ebert, Neil Simon, Matt Dillon as well as a constant slew of celebs make this film a Canadian classic. The film is really best described as \"\"Roger & Me\"\" meets \"\"The Player\"\". Watch as Kenny Hotz and Spenny PITCH their script to the big boys of Hollywood. Called the only American film to ever come out of Canada, This film opened the Toronto Film Festival in 1997, Winner of the 'Best Indie Film Award Toronto'. Europe premier was at the prestigious HOF film fest in Germany. U.S.A. premier U.S. Comedy Festival Aspen 1999. More information available at www.kennyhotz.com\"\r\n1\tNow this show looks like most of the other shows of it's type from the mid-90's, but the only thing is about this one is that it's different, they use a lot of comedy and action in this one and maybe a little bit of drama too. I personally thought it was a good show, I can't understand why would they cancel it. The good thing is that the fan base of this show is still alive ever since 1997 up to date.<br /><br />My hopes is that the WB bring back the show or even do a movie, which I know is gonna be impossible to do, but hey it doesn't hurt to dream, doesn't it?<br /><br />Anyway, I would recommend if you hadn't seen it to find the DVD of all 13 episodes, because the characters are great, the story lines are good, the comedy is good and well the whole show is just great.\r\n1\tA brilliant Russian émigré devises the Stanislavsky' system for winning at contract bridge - which makes him and his beautiful wife the GRAND SLAM Sweethearts of America.<br /><br />What could have been just another silly soap opera is elevated by fine production values & excellent acting to the status of a very enjoyable little comedy. A few unexpected touches are thrown in to keep the viewer's attention engaged - the way in which the principle cast is introduced as faces on a deck of cards; the introduction of a zany acrobat into the plot for no other reason than to enjoy a bit of lunacy; and the way in which a wide variety of different kinds of Americans are shown to be transfixed by listening to the broadcast of the concluding game.<br /><br />Paul Lukas & Loretta Young do very well as the Bridge Sweethearts - Lukas suave & sophisticated and Miss Young passionately loving and beautiful (even if the script keeps her puffing on a cigarette a bit too much). They are fun to watch, even when their behavior is not always the most believable or compelling.<br /><br />Frank McHugh gives another good performance as a relentlessly cheerful ghost writer who adores Miss Young. The delightful Glenda Farrell eschews her customary wisecracking persona in a small role as McHugh's ditsy gal pal. Roscoe Karns handles the fast-talking dialogue as a brash radio announcer. Diminutive Ferdinand Gottschalk is wonderful as a snobbish bridge expert.<br /><br />Movie mavens will recognize Dewey Robinson as a belligerent nightclub patron; Emma Dunn as a sob sister reporter; Paul Porcasi as the owner of the Russian nightclub; Charles Lane as a Russian waiter; and Jimmy Conlin as a kibitzer at the final bridge game - all uncredited.<br /><br />The film takes advantage of the fad for contract bridge which had swept across the country since its development in the 1920's. It expects the viewer to have a basic knowledge of the intricacies of the game and makes no attempt to explain anything to the uninformed.\r\n0\tI haven't seen the first two - only this one which is called Primal Species in England. I don't think I'll be bothering to look them out though.<br /><br />This is an awful film. Terrible acting, bad dialogue, cheap rubber monsters. Everything about it is so nasty. The most sympathetic characters die really quickly and leave you with the annoying ones, especially one called Polchak, who is an incredible jerk. No-one like that would survive 5 minutes in the army. He lasted for ages but I was pleased when he finally got his head got chewed off - I was having nightmares he was going to survive. The Colonel was rubbish too - all moody pouts and clueless shouting. And the specky Doctor looked and acted like she was out of a porno. I was waiting for her to take her glasses off, shake her hair and turn into a vamp, but she didn't. Pity that, as it would've livened the film up no end.<br /><br />Didn't Roger Corman used to make half decent films once?\r\n0\t\"Ursula Andress' naked body is one of those things that make you believe in God. The other two women (especially the one who plays the maid) have great bodies as well. Then why is the higher grade that I can give to a film with such quality and quantity of nudity only 3 out of 10? Because, to get to Ursula's unbelievable body, we have to sit through a movie that is otherwise unfunny and boring (keep in mind that I watched the full 101-minute version, not the 78-minute American one which probably cuts out a lot of the extraneous material). In typical Italian-comedy tradition, most of the characters are exaggerated caricatures (the army freak, the \"\"latin lover\"\", the constant drunk, the naive maid) that are not funny, simply overacted. Final word: watch this, but keep your finger on the fast-forward button, you're gonna need it. (*)\"\r\n1\t'Deliverance' is a brilliant condensed epic of a group of thoroughly modern men who embark on a canoe trip to briefly commune with nature, and instead have to fight for their sanity, their lives, and perhaps even their souls. The film has aged well. Despite being made in the early Seventies, it certainly doesn't look particularly dated. It still possesses a visceral punch and iconic status as a dramatic post-'Death of the Sixties' philosophical-and-cultural shock vehicle. There are very few films with similar conceits that can compare favourably to it, although the legendary Sam Peckinpah's stuff would have to be up there. Yes, there has been considerable debate and discussion about the film's most confronting scene (which I won't expand upon here) - and undoubtedly one of the most confronting scenes in the entire history of the cinematic medium - but what surprises about this film is how achingly beautiful it is at times. This seems to be generally overlooked (yet in retrospect quite understandably so). The cinematography that captures the essence of the vanishing, fragile river wilderness is often absolutely stunning, and it counterbalances the film as, in a moment of brief madness, we the viewers - along with the characters themselves - are plunged into unrelenting nightmare. 'Deliverance's narrative is fittingly lean and sinewy, and it is surprising how quickly events unfold from point of establishment, through to crisis, and aftermath. It all takes place very quickly, which lends a sense of very real urgency to the film. The setting is established effectively through the opening credits. The characters are all well-drawn despite limited time spent on back story. We know just enough about them to know them for the kind of man they are, like them and ultimately fear for them when all goes to hell. The conflict and violence within the movie seems to erupt out of nowhere, with a frightening lack of logic. This is author James Dickey's theme - that any prevailing romanticism about the nature of Man's perceived inherent 'goodness' can only wilt and die when his barely suppressed animal instincts come to the fore. There are no demons or bogeymen here. The predatory hillbillies - as the film's central villains - are merely crude, terrifyingly amoral cousins of our protagonists. They shock because their evil is petty and tangible. The film has no peripheral characters. All reflect something about the weaknesses and uncertainties of urbanised Homo Sapiens in the latter 20th century, and all are very real and recognisable. Burt Reynolds is wonderful in this movie as the gung-ho and almost fatally over-confident Survivalist, Lewis, and it is a shame to think that he really couldn't recapture his brief moment of dramatic glory throughout the rest of his still sputtering up-and-down career ('Boogie Nights' excluded, perhaps). Trust me, if your are not a Reynolds fan, you WILL be impressed with his performance here. John Voight is his usual effortlessly accomplished self, and Ned Beatty and Ronny Cox both make significant contributions. This is simply a great quartet of actors. To conclude, I must speculate as to if and when 'Deliverance' author James Dickey's 'To the White Sea' will be made. For those that enjoyed (?) this film, TTWS is a similarly harrowing tale of an American Air Force pilot's struggle for survival after being shot down over the Japanese mainland during WW2. It's more of the typically bleak existentialism and primordial savagery that is Dickey's trademark, but it has all the makings of a truly spectacular, poetic cinematic experience. There was the suggestion a few years ago that the Coen brothers might be producing it, but that eventually came to nothing. Being an avid Coen-o-phile it disappoints me to think what might have been had they gotten the green light on TTWS, rather than their last couple of relatively undistinguished efforts. Returning to 'Deliverance', it's impossible to imagine a movie of such honest, unnerving brutality being made in these times, and that is pretty shameful. We, the cinema-going public, are all the poorer for this.\r\n0\t\"Hip. Erotic. Wickedly sexy ... whatever. It's \"\"The Terminator\"\" with werewolves.<br /><br />No, seriously. The cop saves the girl (waitress!) from the big monster and refers to himself as her 'protector'. The lead actor Ryan Alosio does a pretty good job of emulating Kyle Reese ... there's a massacre in a police precinct ... the bad guy is muscular with red eyes ... and it even contains dialogue along the lines of \"\"You said it yourself, he won't ever stop. Never.\"\" The dire script comes from a first-time screenwriter who, thank God, hasn't sold anything since this, and it's all thrown together by famously bad director Richard Friedman.<br /><br />The movie opens in a strip bar (always a good sign), and a mean-looking biker guy bursts in for no apparent reason, pursued by three cops. One of them is black, and (shock horror!) he's the one who gets killed in the first five minutes. The film goes downhill for the next hour or so, then picks up a little with some decent action sequences, before rounding it all up with an abysmal ending.<br /><br />For the most part, the cast come across as competent actors doing what they can with a bad script and a director who's willing to settle for less. If nothing else they appear to be learning how to act in this movie and Alosio, along with some of the supporting cast, shows signs of talent. DarkWolf in his human form is played by gargantuan Kane Hodder -- famous for his numerous portrayals of Jason Vorhees in the 'Friday the 13th' movies. He's decent enough, especially considering he isn't used to speaking roles.<br /><br />It's become famous amongst groups of horny teenage boys for the lesbian rooftop scene between Andrea Bogart and Sasha Williams, who gets her kit off a couple of times in the grand tradition of former 'Power Rangers' actresses. And it's unnervingly clear that the editor spent WAY too much time on that scene ... anyway, the main redeeming feature is that the physical werewolf effects are rather good, and the design of the wolf isn't bad at all.But the CGI is bad. Just plain bad. I mean seriously, if you can't reach some level of realism - why bother? Just throw a little extra money into the make-up! Aside from the terrible script, this movie does have it's moments, many of which are unintentionally funny. It's good for a laugh if you don't have anything better to do, but just don't spend any money on it. Please.\"\r\n1\tI did not know for some time in my youth all that could in general be known about this film however the ways of making a film was not what in fact drew my attention, what made this motion picture one the most liked films even to this very day that I have ever seen was of the Heroism,bravery and the Honor to have served in Her Majestys Service.This film is not always what it seems and that is perhaps as it should be,however I cant say enough for the courage exhibited by Sgt.Cutter in defense of The Uniform that he too would of sacrificed his life to save from peril of the sort that they and the troop were threatened with the emergence of this thugee group.<br /><br />To be certain Sgt. Cutter is the kind of individual you might suggest something about and then you watch this unequivocal belief not only in each other but in her Majesty the Queen of England.I think for all of his lust for money and the such that that character was great.A reckless brave courageous soldier who did not know fear.I think Grant was excellent in this role,truly a very capable rendering made compelling by the uniform that he wore.I never felt Ballantine was a shoe-in ,in fact there was so much confidence in there assumptions that you might be well not to look to close because it is still only a picture.What do I mean?This picture is still only a motion picture and like the times in which these events take place as well as when the picture was actually made provide a look at how things were done then and what or why there are so many different opinions as to this motion picture will distract your attention.Both Ballantine and MaChesney are equal in there dedication with both men from time to time providing a unflinching daring as to there jobs as men in the service of Her Majesty.These three seem to bring things off rather well and I believe it is a useful,even enjoyable interlude when Ballantine has a date with destiny or so it would seem only to have fate as you would have it intervene.Is it Believable?I don't know.I think it is very fitting when the company having escaped the clutches of death in Tantrapur and they are dragging there tails as they are approaching the main gates to the Regiments Post when Ballantine allows the other two to know that he is leaving the service,and getting married and going into the tea business.MaChesney says he could sign up for another 9 years.It will make a man out of him.I like that sentiment.<br /><br />I don't think there is any doubt as to just what it means to have brave dependable courageous soldiers representing your very best interests.Where does this end,in fact it may never end.Those interests are so well placed as to what is important in this world that I enjoy this picture today as much as perhaps I enjoyed the picture when I was ten years old.I had never known about the truthfulness of this film up to recently when I went into history and found the information about Kali.There is quite a good deal to learn however once all is said and done about the historical significance of the Goddess of Kali,this motion picture takes on a quality that I refer to as intelligence.This is a very honest attempt to convey a belief in what is being attempted.I think this is an excellent film.George Stevens directed.<br /><br />There is a few items to be aware of I don't think all the information will jive with history however when the Journalist is addressed as Mr.Kipling things can get very emotional because all the rest are characters but this is Rudyard Kipling?George Stevens went over the top to convey a time and a time before when these events actually occurred.The information is honest,compelling and it will not only draw you in but you will need to understand about why we so love Gunga Din.There is in the distance the Black Watch is out in front and they are approaching a most certain peril and possible defeat unless the troop can be warned.Sgt.Cutter is seriously wounded and Ballantine as well as MaChesney are restrained.Din having a deep wound at the base of his back as the result of a bayonet thrust deeply into his body from behind is up to the demand of having to warn the Colonel of impending peril.With a effort worthy of our most sincerest desires in this life time Din slowly climbs and manages to scale the steeple which rests as the top of the tuggee temple.The sound of Gunga Dins horn allows the approaching army to be forewarned.A very large scale battle ensues and the enemy is nullified.It is so Dramatic and tense filled position that as Gunga Din lay Dead on a pile of rocks which his bullet riddled body now shows,Sgt.Cutter says good work soldier.I don't know of any more dramatic moment nor one where we learn what sacrifice means then when the troop is forewarned of the impending peril.<br /><br />The end is far from being anti-climatic,it is the telling of who Gunga Din is and what he means now to the honored men in uniform for whom he willing sacrificed.Ballantine knows his heart and asks the Colonel to take care of his enlistment papers and this makes MaChesney quite pleased with the Colonel being honest places the enlistment papers in his pocket to be dealt with at perhaps at a more appropriate time.The Colonel says at the place where now all are gathered that we have all done enough soldiering for one long day and further comments on how pleased there efforts were in defense.MaChesney says he would rather here that from the colonel than get a bloomin medal.This is a very sober point and then he comes to Din.Now here is a man who has no actually status so I am going to appoint him a corporal and his name shall be written on the rolls of our honored dead.The poem is read as though it was just penned by Kipling himself who stands by the gravesite with the colonel and the rest of the men.Gunga Din Bravo!\r\n1\tPerhaps, one of the most important and enjoyable Greek films i've seen in the last ten years..Excellent performances(especially yiannis zouganelis is great), well-written script and effective direction from a very special, for the Greek very average standards, auteur. A film, obviously influenced by Sam Peckinpah's Straw Dogs, that could be a masterpiece if it avoided some evident and exaggerative situations and symbolizations in the end. Nevertheless, this is a movie which deserves our attention and belongs to that rare category of Greek movies which should be watched outside Greece. It's a shame that in Greece didn't work commercially, in addition with other fake and cursory big productions like Politiki Kouzina..\r\n0\tThis film has a very simple but somehow very bad plot. The entire movie is about a girl getting sucked through a gate to another dimension then years later it gets opened again by a witch while a group of friends (including the lead actor who is having trouble getting over his ex girlfriend who is one of the other campers along with her new partner... another girl... that's right they're lesbians and there is some nudity of course for no particular reason). Unfortunately demon follows the now adult girl back through. Also unfortunately, none of this is ever explained. Where exactly were they? Where did the demon come from? How did she survive as a child in a place full of evil demons? Who the hell trained her and made her a gladiator type outfit? The acting is terrible I think but it's hard to tell because the writing is so bad maybe there was just nothing they could do with it. I give it a three because the wrestler was pretty good and the effects were pretty fun even though they were very cheap. I would not recommend it, it wasn't quite bad enough to be funny.\r\n0\t\"Isabelle Huppert is a wonderful actor. The director of \"\"La Pianiste\"\" understands this, providing the viewer with long takes of Huppert's face, and these are a pleasure to see. Huppert is not an animated actor--she registers emotion with the smallest lift of an eyebrow or flicker of a smile.<br /><br />Other than the enjoyment of watching an experienced actor excel in her profession, there is nothing in this movie that makes me want to recommend it. (Well, if you enjoy self-mutilation, sado-masochism, and bizarre behavior, \"\"La Pianiste\"\" might work for you. Other than these attributes, I could not find any redeeming value in it.)<br /><br />Buried in all this strange material there is a kernel of truth. People who compete at the very highest level--musically, athletically, whatever--begin as strange people, and are shaped into stranger people by the competitive environment.<br /><br />Not worth a trip to a movie theater to relearn this life lesson. <br /><br />\"\r\n1\t\"This 1998 film was based on a script by the late Edward D. Wood, a script that featured NO dialogue in the tradition of films such as THE THIEF. While much of Wood's work was quirky low-budget entries into various genre-film traditions, his first released feature GLEN OR GLENDA was a truly visionary attempt to express the inexpressible through primitive avant-garde techniques. I WOKE UP EARLY THE DAY I DIED represents THAT side of Ed Wood, the experimenter, although this film is a comedy (a nightmarish comedy, however!), while the cross-dressing theme of GLEN OR GLENDA was taken so seriously by Wood that there was not room for comedy there. From the first few seconds of this film I knew that I was being taken to a new cinematic world, and I can't really compare that world with anything else. The technical side of the film--production design, sound design, music scoring, photography, etc.--is groundbreaking on any number of levels. In particular, although the film has no \"\"dialogue\"\" there is sound of all kinds and also \"\"language\"\", but you'll have to see how it's done yourself, as the cleverness and surprise of the methods provides a level of excitement throughout. The Glen or Glenda-esque technique of juxtaposing stock footage for surreal effects works well in the film and is kept to a minimum. The whole film is played at a hysterical fever-pitch, and Billy Zane provides an amazing tour-de-force performance that shows what a brilliant physical comedian and actor he is. In a just world, he would have been given some award for this performance. He even LOOKS like Ed Wood, and as played by Zane this character is at various timesfunny, sleazy, tragic, sympathetic, and anonymous(sometimes simultaneously!!!). What a shame that this film was caught up in legal troubles and never received a North American theatrical or video release, only playing a few festivals. Right now, it's only available on video in Germany (in fact, my copy is from a German source--the excerpts from Wood's screenplay that are shown on the screen from time to time are translated into german, although the newspaper headlines (that great low-budget technique of giving plot elements, especially those that would be too expensive to film, via newspaper headlines is used here in the Wood tradition)that Zane sees are in English). I think that this film could have gotten a word-of-mouth following had it been played at midnight in some large cities with some careful promotion. And if played off city by city slowing on the art-film circuit, it could have done well. In fact, if the legal issues can be resolved, I'd like to suggest that the film should STILL be given a theatrical release, especially a MIDNIGHT \"\"cult\"\" release. This is a classic waiting to be discovered.<br /><br />Did I \"\"understand\"\" every scene? No, but I \"\"felt\"\" every scene emotionally. Did everything \"\"work\"\" in the film? Perhaps not. I've only seen it twice, and the first time I saw it I was interruped a number of times. However, with all the assembly-line junk playing the multiplexes and with so much \"\"alternative\"\" film being fetishistic or pretentious shot-on-video film-school rejects, we need actual Hollywood-made experimentation like this. The recent Bob Dylan film \"\"Masked and Anonymous\"\" took similar chances as did something like Steven Soderbergh's FULL FRONTAL. This film could find an audience much larger than either of those. If you are reading this review a few years from now and the idea of this film sounds intriguing, see if it has ever been released on video. You will NOT be bored. Invite some friends over...make it a party. Play the amazing soundtrack LOUD. I have a feeling that, wherever he is in the afterlife, Ed Wood is happy with this film and feels as though his unique vision has been justified and validated somewhat by the making of this film. Wood's probably also laughing that, just like he always seemed to get the bad breaks in life, the film made in tribute to him after his death is held up in lawsuits and sits unreleased in the country of its making.\"\r\n0\t\"Janeane Garofalo has been very public in her displeasure about this film, calling it, among other things, anti-feminist. She has also said on her radio show she hates making \"\"romantic comedies\"\" because she doesn't believe in them. I wholeheartedly agree with Janeane here. This film is a trifle at best. She does her best, but overall, it was just another boring, unbelievable \"\"romantic comedy\"\" that has no basis in the real world. Whereas there will be some who will say \"\"suspend your disbelief\"\", one grows tired of having to suspend it nearly every time you get a romantic film from Hollywood. Janeane's character, for some reason, is usually filmed in shadows and darkness, which makes her look unattractive, while Uma's character is filmed in lighter tones (which probably displeased Janeane and is probably one of the reasons she detests this film). That really hurts the film if we are to buy the premise that Janeane is supposed to be the better looking of the two. As many have said here and on other comment threads, Janeane is not ugly, but in fact, quite beautiful. I haven't read one review where someone said Uma was better looking. Having said that though, I believe that Ben Chaplin's character would more than likely stay with Uma, not Janeane. Many men don't like really intelligent women (and many women don't like really intelligent men), and sadly, Ben probably would have stayed with Uma. And despite the director's attempt to make Janeane unattractive, it doesn't work. Her natural beauty comes through anyway.<br /><br />I think a lot of Janeane's male fans who are obsessed with her like this film because they like to think of themselves in the Ben Chaplin character, and actually scoring with Janeane. Janeane is a lot more complicated than the character she plays here (real life is always much more complex than Hollywood can imagine), so take a cold shower gentlemen. This is the role that Janeane is best known for, and that's a shame, as this really isn't that good of a film.\"\r\n1\tI'm from Belgium and therefore my English writing is rather poor, sorry for that...<br /><br />This is one of those little known movies that plays only once on TV and than seems to vanishes into thin air. I was browsing through my old VHS Video collection and came across this title, I looked it up and it had an IMDb score of more than 7/10, that's pretty decent.<br /><br />I must admit that it's a very well put together movie and that's why I'm puzzled. This is the only film made by this director...? How come he didn't make lots of films after this rather good one...? Someone with so much potential should be forced to make another movie, ha ha ;-) <br /><br />Anyway, I really would like to see that he pulls his act together and makes another good movie like this one, please.....?\r\n1\tThis is my first comment on IMDb website, and the reason I'm writing it is that we're talking about ONE OF THE BEST FILMS EVER! 'Ne goryuy!' will make you laugh and cry at the same time, you will fall in love (if you're not a fan yet!) with Georgian choir singing tradition, and possibly you will accept the hardships of your own existence and just feel good after watching it:) What I like a lot about this film is that actors in the non-leading roles create vivid and memorable characters and are just as interesting and important as the central character. The film is starring Vahtang Kikabidze (who is great), but you will remember every single face around him in the film. You will find yourself quoting their lines, that have become household names for so many Russian-speaking people. A film to live with. Simple, yet deep, you will want to watch it again and again.\r\n1\tThe story: On the island Texel, photographer Bob, who makes a photo shoot for a magazine, meets the mysterious Kathleen. Her free spirit and lust for life intrigues Bob, who has suffered a very traumatic experience shortly before. Her life is not so simple as it seems, however. Through Kathleen, Bob gets entangled in a dangerous network. Will Kathleen be able to win his trust?<br /><br />Review: The dialogue in this movie is very natural and the story unfolds nicely although it stays a bit on the surface and it would have been nice if the character's 'psychology' would have been worked out a little more. Why do these people do the things they do? What motivates their choices? This is what gives a movie depth and something to think about in my view. The story never reaches an emotional climax, even though the characters go through enough to justify that. So you don't get to know the characters on that deeper level. The actors deliver good work and play in a very natural and 'believable' way, but I think it would have suited the movie better if Kathleen had been played by a younger actress, as this character's naiveness doesn't quite work for a grown-up woman. Camera-work is nice, and there are some great shots of the nature on the island. I give the movie a 7/10.\r\n0\t\"Shintarô Katsu gained tons of fame playing the wonderful character, Zatoichi. The Zatoichi films had a weird and unbelievable concept--a blind guy is the greatest swordsman in Japan and spends each movie righting wrongs and exacting retribution on evil doers. He's a heck of a nice guy and the films are exciting and addictive (I've actually seen every movie). It is because of this I saw this final installment of the Hanzo the Razor series, as I assumed it would be very similar....and boy was I wrong! It turns out that the Hanzo films are extremely sexual in nature and they also promote the rape of \"\"women who deserve it\"\". You see, Hanzo is a policeman from the Meiji period and he regularly takes evil women into custody and interrogates them by violently raping them with his \"\"penis of steel\"\". How he made his member so strong is something you have to see to believe, but it certainly is NOT for the squeamish.<br /><br />Overall, I just can't recommend anyone sees these violent and misogynistic films. However, from looking at the other reviews, I can see that they are still very popular...and that is pretty scary. Despite some decent acting and amazing fight scenes, the films just are like brain pollution--and I'd hate to imagine how the films might have contributed to violence towards women.\"\r\n1\tPerhaps the most polished and accomplished of all Indian films - Pakeezah does not fall into any of the traps commonly associated with Bollywood film (ie tackiness, farce, wholesale and unsuccessful imitation of western film themes/genres). Pakeezah is indigenous to the Sub-Continent and authentic, almost Madam Butterfly-like in plot. Characters are well-developed, direction, although sometimes unrefined by today's standards, perceptive and convincing. The Urdu-speaking milieux at the time of Pakeezah were masters of understatement and how the dialogue conveys the subtleties of the age! The acting (particularly the 'looks' and the dynamic between characters) are a delight to behold although the nuances may be lost on contemporary viewers or those not acquainted with the mores and customs of Muslim India.<br /><br />Coupled, with a captivating screenplay is a beautiful musical score, enhanced by the protagonist displaying eminent command of classical Indian dance (kathak). As is the case with most romantic tragedies, the heroine must die, but she does not take her leave of the audience without the viewer feeling he/she has been party to a truly memorable cinema experience. Pakeezah is surely the pinnacle of what Indian cinema has produced and is unlikely to be paralleled.\r\n0\t\"Was this movie stupid? Yup. Did this movie depth? Nope. Character development? Nope. Plot twists? Nope. This was simply a movie about a highly-fictionalized Springer show. It shows the lengths that some people will go to get their mugs on TV. Molly Hagan did a great job as Jaime Pressly's mom. Jaime is....well...GORGEOUS! This flick wasn't so much made to be a \"\"breakthrough\"\" movie, rather, it was intended to life in a trailer park (I live in a trailer park and ours is nothing like the one in this movie) where everyone sleeps with everyone else, all the girls get pregnant by different guys, and all the guys drive rusted-out '66 Ford pickups (exaggeration, of course, but that's the picture everyone sees when you mention \"\"trailer park\"\"). Some people over-analyze movies (case-in-point: Star Trek freaks). I watch movies purely for the entertainment value; not to point out that the girl is wearing a different shirt in a different scene (read the \"\"Goofs\"\" bit about Connie's shirt. Could it have been better? Sure. But it was funny as hell.\"\r\n1\t<br /><br />Human Body --- WoW.<br /><br />There are about 27,000 Sunrises in human life....<br /><br />Hardly one thousand Sunrises will be watched by 90% of Humans on this planet....<br /><br />Our days are limited...<br /><br />Excellent movie for all women.... makers of human body...<br /><br />Thanks and Regards.<br /><br />\r\n0\t\"In the first 20 minutes, every cliche possible was trotted out by the hack writer and director. There was the NTSB primary investigator with the tortured family life; the politically-tortured NTSB board member played by [I can kill ANY TV] Ted McGinley; the tortured father of a crash victim; and the torturing sleazy ambulance-chasing lawyer.<br /><br />Hollywood still has no concept of the fragility of aircraft. The crashed plane was a 737 and it was mostly sitting on the ground like a hippo who decided to take a nap. The first third of the fuselage was intact, the rear half of the plane was intact and the debris field showed no wings or engines. Most of the people should have walked away in light of how many people survived that plane that got shredded in Iowa after it lost its hydraulics. Most of this TV plane wasn't even burned.<br /><br />It reminded me of the scene in \"\"Air Force One\"\" where the 747 hits the water and then skips along like it's made of inch-thick steel.<br /><br />The show was so bad it was impossible to watch. Even my wife, who is more accepting than I, was commenting on technical flaws. What had me stunned was how this POS could ever get made. Are the producers of these things so used to clichés that they can't even recognize them? Somebody read this script and said: Yes, I want to spend a million bucks making this real. I wish I was the guy's next appointment. I have title to a wonderful bridge in New York that I'd sell cheap.\"\r\n1\t\"\"\"Such a Long Journey\"\" is a well crafted film, a good shoot, and a showcase for some good performances. However, the story is such a jumble of subplots and peculiar characters that it becomes a sort of Jack of all plots and master of none. Also, Western audiences will likely find the esoterics of the rather obscure Parsee culture a little much to get their arms around in 1.7 hours. Recommended for those with an interest in India.\"\r\n1\t\"Director Edward Montagne does in a little more than one hour what other, more expensive and hyped films fail to do. Mr. Montagne shows us a police story written by Phillip H. Reisman Jr. that while, is not one of the best of the genre, it keeps the viewer involved in all that's going on.<br /><br />This is clearly a B type movie. In fact, the best thing going for \"\"The Tattooed Stranger\"\" is the opportunity to take a peek at the way New York looked in those years. The crystal clear cinematography by William O. Steiner, either has been kept that way through the years, or has been lovingly restored.<br /><br />There are great views of New York in the opening sequence. Later we are taken to Brooklyn to the Dumbo section and later on the film travels to the Bronx and the Gun Hill Road area with its many monument stores in the area.<br /><br />John Miles and Walter Kinsella made a great detective team. Patricia Barry is perfect as the plant expert from the Museum of Natural History. Jack Lord, who went to bigger things in his career, is seen in a non speaking role.<br /><br />It was great fun to watch a city, as it was, because it doesn't exist any more.\"\r\n0\t\"I saw this film at its premier at Sundance 09.<br /><br />Since American Beauty is a movie that had something to say, I had hopes for Towelhead. Unfortunately, it was a disappointment. In fact, of countless movies I've seen in almost a dozen Sundance festivals, Towelhead is the only Sundance movie I've ever wanted to walk out early from.<br /><br />The worst problem with Towelhead is that it so obviously originates with a collection of \"\"provocative\"\" concepts concerning cultural stereotypes, rather than with an organic human drama. The screenplay derives from the novel of the same name by Alicia Erian. The famous Edith Wharton quote comes to mind: I have never known a novel that was good enough to be good in spite of its being adapted to the author's political views. That observation is especially devastating for Towelhead because its political views are so stale and simplistic. If there ever was a time when Towelhead's white male villains, condescending portrayals of blacks, ironic treatments of foreign cultures, etc., were fresh, it's long past.<br /><br />For a more detailed review, please look up any of the many professional reviews available online. Almost all rate this movie poorly and expose the shallow and manipulative tissue it is based on.<br /><br />On the other hand, the amateur reviewers seem more easily bamboozled. As you read through the reviews in this and similar sites, you'll frequently come across superlatives: \"\"stunning,\"\" \"\"breathtaking,\"\" \"\"profound,\"\" \"\"shocking,\"\" ... It embarrasses me to read them, but it does not surprise me. Indeed, I've encountered many people who seem to regard any book or movie dealing with racial, cultural, gender, or sexual issues as deeply moving, thought provoking, full of profound insight. If you are such a person, by all means, rent Towelhead and be moved by it. On the other hand, if you set your standards higher, you can safely pass on this one.\"\r\n1\tWhen reading a review from another user, saying that it's a terrible game, I could not stand idle and do nothing!<br /><br />Well, this game is great, from the news clips (with two real persons, full of humour sense and credibility!), to the story, I find it very good! I only complain about the enemies start blinking when they die, until they disappear; and some frustrating situations on the LEILA VR missions, when riding the bike, here and there...<br /><br />Except that, it's a great game, with a great story, good graphics, excellent characters, great soundtrack... I recommend it! Surely! It can be a bit old, but still enjoyable! At least, on the Dreamcast... but the PS2 version shall be the same.\r\n1\tI loved this film, at first the slick graphics seemed odd with the grainy footage but I quickly got into it. There must have been thousands of hours of footage shot and I really admire the work done in cutting it down. If you're easily shocked by drugs or violence it might not be the film for you but there are some great characters here, (and some real tossers). Technically I liked it a lot too, they must have used a new de-interlacing algorithm or maybe it was just that the footage looked so dark anyway but I wasn't annoyed by the usual artifacts seen in video to film transfers. (Open Water drove me nuts, mostly because there are cheap, progressive cameras available now and I see no excuse in not shelling for one if you intend to screen in the cinema). Sorry that's my own little rant. I definitely recommend this film if you've ever been involved with the music scene, it has some tragic moments but most of it is hilarious, I might be accused of laughing at others misfortune but it's a classic piece.\r\n0\tI'm a fan of arty movies, but regretfully I have to report this movie to be pretentious drivel. Agonisingly slow to develop a non-existent plot based on a promising premise, the experience is, shall we say, trying. Even after bad movies I feel that I learn something, or enjoyed some aspect, but there there was nothing to appreciate. The premise was not uninteresting, but the movie starts and ends there. The acting was OK, though the characters were utterly boring. For the protagonist to aim at such an audacious goal, she is mightily empty. Pity. I usually enjoy movies that are unformulaic, but lack of formula should not be confused with zero content.\r\n0\t\"The head of a common New York family, Jane Gail (as Mary Barton), works with her younger sister Ethel Grandin (as Loma Barton) at \"\"Smyrner's Candy Store\"\". After Ms. Grandin is abducted by dealers in the buying and selling of women as prostituted slaves, Ms. Gail and her policeman boyfriend Matt Moore (as Larry Burke) must rescue the virtue-threatened young woman.<br /><br />\"\"Traffic in Souls\"\" has a reputation that is difficult to support - it isn't remarkably well done, and it doesn't show anything very unique in having a young woman's \"\"virtue\"\" threatened by sex traders. Perhaps, it can be supported as a film which dealt with the topic in a greater than customary length (claimed to have been ten reels, originally). The New York City location scenes are the main attraction, after all these years. The panning of the prisoners behind bars is memorable, because nothing else seems able to make the cameras move. <br /><br />**** Traffic in Souls (11/24/13) George Loane Tucker ~ Jane Gail, Matt Moore, Ethel Grandin\"\r\n1\tAnd I really mean that. I caught it last night on Vh1, and I was not expecting it to be so good. This is now one of my favorites. I must add that it has a killer soundtrack.\r\n0\t\"..Oh wait, I can! This movie is not for the typical film snob, unless you want to brush up on your typical cinematic definitions, like \"\"continuity editing\"\" and \"\"geographic match\"\". I couldn't tell where I was in this movie. One second they're in the present, next minute their supposedly in the 70's driving a modern SUV and wearing what looked like to me as 80's style clothing. I think. I couldn't pay long enough attention to it since the acting was just horrible. I think it only got attention because it has a 3d which I did not watch. If you're a b-movie buff, and by b-movie I mean BAD movie, then this film is for you. It's home-movie and all non-sense style will keep you laughing for as long as you can stay awake. If your tastes are more for Goddard and Antonioni, though, just skip this one.\"\r\n1\tThis is the epitome of fairytale! The villains are completely wicked and the heroes are refreshingly pure. Danes, Deniro,and Pfieffer are wonderful as well as the new actor who plays the role of Tristan. Outstanding performances, delightful magic, funny and dramatic, and a perfect fairytale ending make this film absolutely fabulous! I'm not so sure all content is appropriate for younger children but for an older audience, there are plenty of hilarious subtleties! The previews do not do this movie justice! My fiancé and I were quite skeptical but were so thrilled we had taken a chance on this movie that I can only hope to assure anyone on the fence about this movie to give it a try!\r\n1\tMan On Fire tells a story of an ex-special forces guy with a drinking problem who accepts a job as a personal bodyguard of a little girl in Mexico during the wave of kidnappings for ransom. At first he's not to friendly, but then they befriend with each other, he decides to stop drinking etc., etc... then one day she gets kidnapped... and killed...<br /><br />And HE, won't stop at anything to get the revenge.<br /><br />That's basically the story of Man On Fire but expect some big twists at least a few times including the ending which is beautiful and will probably make you cry.<br /><br />That's also because of the great music Harry-Gregson Williams with Lisa Gerrard (Gladiator) composed.<br /><br />But the strongest part of the movie... wait... the thing is, everything here is perfect.<br /><br />First - acting. Denzel Washington is at his best, Mickey Rourke and Christopher Walken good as always, great Radtha Mitchell and AMAZING young Dakota Fanning. And that's not the end of the list...<br /><br />Then come the cinematography which is dazzling and along with superb editing, should have won an Oscar for sure.<br /><br />The story is... not just a revenge movie. The story is intelligent, the story makes you think... and is pure beautiful. Really.<br /><br />This is one of those movies you need to see in your lifetime, at least once!\r\n0\t\"Horror movies can be a lot of fun with low budgets, bad acting, and a bit of panache. I think the film is just missing panache, because, one thuddingly dull scene after another, people make laughably harmless claw-handed grabs at the air. If it weren't so boring, it might be funny.<br /><br />A horror film can go a long way with a tired concept like \"\"college kids in a haunted house,\"\" in much the same way the Evil Dead movies had a lot of fun with a similar standard plotline. Hallow's End, unfortunately, doesn't go a long way. Actually, it doesn't go anywhere. It spends the better part of an hour setting up faceless and anonymous characters with what seem like endless interpersonal drama. I have nothing against character development, not even in a horror movie, but these are strictly one-dimensional characters (the alpha-male, the milquetoast, the... um... throwaway characters that exist mostly for sex scenes.) Spending forty-plus bloodless, droning minutes with them was more horrific than when the bloodshed started.<br /><br />Well, implied bloodshed anyway. When the college kids turn into whatever they dressed as for their haunted house (one's a vampire, one's wearing O.R. scrubs and some white pancake) they look pretty much the way they did in their amateur haunted house costumes; The Dead Hate The Living, using a similar theme, is a masterwork in comparison. There isn't really any gore to speak of, nor are there any real scares.<br /><br />I've thought about this one from almost every approach. If it was supposed to be a tight, suspenseful horror movie (which would explain why things moved so slowly), the pathetic sex scenes and cheap monsters would invalidate it. If it was supposed to be a genuine blood & guts horror movie (which would explain the schlock)... where's the blood and guts? And the anticlimax is one of the unexciting endings to a movie I've ever seen. It's the kind of movie that, though it doesn't have a narrator through the film, is bookended by voice-overs because all of the meaningless dialogue just wasn't enough.<br /><br />This was a hard one... coming out of it, I wonder if I've just sat through a christian horror film. Maybe the \"\"I know hell exists\"\" of the opening wasn't meant that way, but there are some hints (or misdirection-- I'm not sure which). For all the profanity in the film, a line like \"\"gosh-darnit\"\" comes off a little absurd, and so does most of the crucifix worshipping, god-fearing, and satan-dreading, especially after some lecherous T&A sex scenes (one heterosexual, one lesbian).<br /><br />If it a christian company (Highland Myst's logo even has a bit of a crucifix resemblance), then this film weighs in heavily for the atheist camp. An omnipotent being can't be this bad a filmmaker.<br /><br />\"\r\n0\tWe all know what's like when we have a bad day at the office, right? Well, this Neil Simon comedy looks at what it's like when you have the worst of all days just trying to get to the office. Sometimes, it's just not worth going, know what I mean? And, sometimes, it's just not worth doing something when it's already been done before, in 1970, with Jack Lemmon and Sandy Dennis... and much better also.<br /><br />It's not that Steve Martin is a lousy comedian or wrong for the role as the harried and stressed advertising exec; quite to the contrary, on both counts. And, it's not that Goldie Hawn is equally inept either; her work has been consistently good, if not great, ever since I first saw her in TV's Rowan and Martin's Laugh-In of the 1960s.<br /><br />The problem with this movie is that it's not about the hapless couple at all: it's really about New York and why everybody should come to New York to live and love their lives away in married bliss  sort of  in the greatest city in the world. That's if you're a New Yorker...<br /><br />Look, the 1970 movie is still an excellent comedy that realistically explored all the things that can go wrong when you take a trip somewhere, and included most of the situations and sight gags that you can imagine about what can happen to you in a strange environment. This 1999 version unfortunately goes off into gratuitous tangents specifically for an audience these days that expects or wants to see excess. For example, not content with the star appeal of the main players, there is a cameo (relatively long also) from Rudy Giuliani, then mayor of New York, as we all know. What  Giuliani bucking for President even then? Worse  a walking talking advertisement for the kinder face of New York.<br /><br />And then we have John Cleese, reprising his role as Basil Fawlty  but this time, as a prancing cross-dresser also  once again browbeating hotel staff, sycophantically sucking up to rich customers and generally making himself look like the idiot he is, in this role. And, in the process, doing great damage to the memory of Fawlty Towers, arguably the best British comedy series, bar none...<br /><br />Why was this 1999 movie made? In the 1970s, New York was a dying city, in many ways. It was almost literally bankrupt. So, when made in 1970, that was the city you saw: grim, dark, moody, unsettling and not the place that the harassed couple finally chose for their new life together in the Big Smoke (as it was then, polluted and all). By 1999, things had gotten better: glitz was back, New York was thriving, it was the Big Apple, ready for you to bite into, if you had the moxie...<br /><br />So, naturally, the couple in this second coming find that moxie within themselves and finally join the fabulous fray to continue the American dream of life, liberty and the pursuit of happiness. Hence, this movie is truly comic but not for reasons that the producers perhaps envisaged. As much as I like Steve Martin and Goldie Hawn in comedy, this movie is a travesty of the much better one made with the great Jack Lemmon. If you've seen the latter, then definitely don't bother with this one.\r\n1\tDomino is a great movie. It's about a young woman names Domino Harvey (Kiera Knightley) who becomes a bounty-hunter because of her boredom with her lifestyle. She joins with two fellow hunters (Mickey Rourke & Edgar Ramirez) and the adventures begin. The script is good. Very down-to-earth and realistic with the tone of the film. The only problem I had with this movie is that it concentrates on the different things that they do, instead of the character of Domino.<br /><br />Even with that, Kiera Knightley gives a fierce performance. She shows the right amount of anger and dedication in this performance. Mickey Rourke follows up his Oscar-Worthy performance in 'Sin City' with another tough-guy performance. Edgar Ramirez really doesn't do anything except speak Spanish every once in a while and stare at Kiera. Delroy Lindoi gives a good supporting performance. Mo'Nique was herself, although she did surprise me on one particular scene. Lucy Liu has great chemistry with Kiera Knightley in her scenes with her.<br /><br />The best thing about the movie though, is the direction. Tony Scott's fast-paced style really brings the movie to life. The cinematography is some of the best, I've ever seen. It takes a regular movie and puts on acid. All the blacks are blacker, the whites are brighter, and it has a sort of green glow to it. The action scenes are exhilarating.<br /><br />OVERALL: If you liked Sin City & Man on Fire, you'll like Domino.\r\n0\t\"THE CHOKE (aka AXE in the UK) is a slasher produced supposedly as a straight-to-DVD movie. I say \"\"supposedly\"\" because the title of the movie does not have the \"\"V\"\" in brackets to indicate that it was a made for DVD movie (even though it does have the appearance of one).<br /><br />The plot is simple  a band is holding a gig in a former meatpacking factory and they are killed one by one.<br /><br />I think most would agree that the movie was never going to be a masterpiece, but this does not excuse the faults here. Even straight-to-DVD movies such as BACHELOR PARTY MASSACRE (which has a very low IMDb rating) have a lot of redeeming qualities and sometimes come off as being one of the so-called \"\"so bad, they're good\"\" movies. However, THE CHOKE falls far short of being either a serious slasher (such as HALLOWEEN) or being a \"\"so bad it's good\"\" movie (such as THE NAIL GUN MASSACRE).<br /><br />The movie does start off good with a character killed using a drill. The blood effects were very cheesy but understandable given the very low budget. But, from there onwards, it's downhill all the way.<br /><br />There are so many faults in THE CHOKE that I could spend all day talking about them. But, a few obvious ones stand out and I'll go into them.<br /><br />The aforementioned gig that the band holds seems to start off with around 50 people present but after the music stops, there seems to be only around 8 people left (and yet they're all meant to be locked in!).<br /><br />The characters in this movie are not likable at all. Most of the band members are aggressive foul-mouthed morons or just downright weird. No one really cares about what happens to them, and even their supposed friends forget about them when they've been dispatched. The highlight of the movie is the presence of a homeless man who seems to regard the meatpacking factory as some kind of church (seriously!). He spouts some really funny lines for no apparent reason. But sadly, even his presence can't save the movie.<br /><br />There are too many scenes of people walking around and talking without any characterisation. Around 65 minutes of the film is spent watching characters walk around talking. Characters disappear for long periods of time without explanation. As in other straight-to-DVD movies such as CROCODILE and GRIM WEEKEND, the characters spend a lot of time swearing at each other aggressively without any provocation at all. There are plenty of over-the-top outbursts (mainly from the male characters) and one nearly results in a full-blown fight. In fact, the format could be said to go as follows: characters walk around--murder takes place--characters walk around--murder takes place. You get the idea.<br /><br />The dialogue is terrible and it seems that few lines are spoken without the f-word being used. Perhaps this was meant to be funny, but it just comes off as sad. And more to the point, we have all seen this done a thousand times before (usually to much greater effect).<br /><br />The movie is totally devoid of any suspense at all. The dead bodies serve to provide the only indication that the characters are in danger. A maniac is running around loose and yet the characters just behave like total morons. They make little attempt to get out of the factory or find a weapon with which to protect themselves. And much of the time, they don't even pretend to be scared.<br /><br />In the same vein as DRIVE-IN MASSACRE, the killer is not seen at the time the murders are being committed (with the exception of the final murder when the killer's identity is revealed). A random weapon appears out of nowhere to kill the victim in question. There is no one seen stalking the characters at any time. In DRIVE-IN MASSACRE, this served to make the film funny (unintentionally of course), but here it is not funny at all.<br /><br />And, as another reviewer has pointed out, the soundtrack includes music that is very bad, even for those who like punk rock. The extras look uncomfortable dancing to it. The score (at the end, there is no music at the beginning!) consists of a band of Sugarbabe wannabes singing some very bad song that is completely unrelated to the movie.<br /><br />Don't misunderstand the points made in this review. This reviewer likes bad movies (such as THE NAIL GUN MASSACRE and BACHELOR PARTY MASSACRE) as much as the classics (such as HALLOWEEN and Friday THE 13TH). But, it seems that THE CHOKE tried too hard to fit into one of those categories without fitting into either. And even as straight-to-DVD movies go, this is a poor effort.<br /><br />On a positive note, the film does contain some fairly good gory murder scenes. But, when the surviving characters do not take the situation seriously, these scenes lose their importance quickly as the intensity they provide disappears into oblivion.<br /><br />Fans of the traditional 1980s B-movie slashers should take steps to avoid this movie. And fans of the classics such as HALLOWEEN and Friday THE 13TH should do everything in their power to avoid it!\"\r\n1\tThe only other review of this movie as of this date really trashes the stars and the movie itself. I usually like to read the user comments to give me an idea of what to expect from a movie I don't know much about. It's unfortunate when there aren't many comments for a certain tile, because when there is only one review and it unreasonably trashes the movie and cast, you don't get an idea of what to expect. I read the review before watching this title and I don't know where all the venom for this movie and the stars came from. Douglas and Blondell were both very talented and attractive people who usually delivered, even when the material was not the greatest. I found the movie and the performances fun and enjoyable. It isn't one of the great all-time classics, but a pleasant and funny diversion-much more than you can hope for in most newer movies. If you are a fan of these stars, you will not be disappointed.\r\n1\tI'll keep this one quite short. I believe that this is an extraordinary movie. I see other reviewers who have commented to the effect that it's badly written, poorly shot, has a terrible soundtrack and, worse, that it's not real in its portrayal of life. OK, so it may not be quite believable for its whole length, but this movie carries a message of hope which some others seemed to have missed. Hope that it isn't too late to save people from the terrible things that go on in so many lives. Gangland violence is real, right? Is it right, no! This movie carries an important social message which the cynics may dislike but which nonetheless is to be praised, rather than denigrated. I have watched this movie with great enjoyment at least eight times, each time with equal enjoyment and each time with the feeling that maybe the world could be made better and is not beyond saving (well not until 2008 anyway). 9 out of 10 from me for this one. It's very nearly perfect in my view. JMV\r\n0\tNaturally I didn't watch 'GI Jane' out of choice. I was more or less forced to watch this film round my ex-girlfriends house.<br /><br />GI Jane loses its credibility straight away by trying to convince the viewer that it is potentially a real scenario, which of course it isn't. The result of this is that the story becomes automatically bound by constraints, restricting the amount of humour (of which there is none) or entertaining action scenes, and soon becomes too serious. The film therefore becomes extremely boring and predictable.<br /><br />'GI Jane' fails where other action films succeed, mainly because films such as James Bond, Dirty Harry and various others are larger than life, yet never proclaim to be otherwise. They are escapism, and therefore entertaining. 'GI Jane' tries to be real and fails.<br /><br />This is a very disappointing film from Ridley Scott, with a very non-credible storyline, unremarkable acting, and the only reason I give it 2/10 instead of 1/10 is for some of the technical work.\r\n0\tFor the initial 20 minutes or so (I was watching it on a PS2 so I've really no idea how long it took) Alienator sets up an interesting premise. I don't think I've seen a slasher movie with an alien from another planet as the baddie before. However, interest soon turns into stunned disbelief as you realise the 'alien' is a huge body-builder woman in a steel bikini. Yes, Alienator is patently ridiculous.<br /><br />Don't think I hold that against it. In the world of shlock-horror, patently ridiculous can often be a good sign. However, the blatant stupidity of its premise is all the movie really has going for it. Alienator is funny as hell, but it is also a shambolic suckfest of the highest order. Actors heap on failed attempts at seriousness, potentially genius lines of pure cheese dialogue are stumbled over with unnerving incompetence and the direction fails to sum up even one or two decent set-pieces. By the time the movie's finished you can barely see the original concept through the haystack of total tripe the team piled on it.<br /><br />Add to this the fact that the 'Alien' just kills people by vaporising them, as opposed to doing any 'slashing' as such and you have a giant throbbing heap of good ideas being left to rot. You'll laugh at Alienator, but AT it, not with it. If that's your thing then go ahead and check it out.\r\n0\t\"Well, basically, the movie blows! It's Blair Witch meets Sean Penn's ill conceived fantasy about going to Iraq to show the world what the \"\"War on Terror\"\" is really about. The script sounds like it was written by 8th grader (no offense to 8th graders); the two main actors over-act the entire film; they used the wrong kind of camera and the wrong type of film(not that i know anything about those things--but it just didn't look like real documentaries I've watched), and worst of all Christian Johnson took a great idea and made it suck. It reminded me of the time I tried to draw a picture of my dog and ended up with a really bad stick figure looking thing that looked more like a giant turd. I'd rather watch the Blair Witch VIII, than sit through that again.\"\r\n1\t\"This is a lovely tale of guilt-driven obsession.<br /><br />Matiss, on a lonely night stroll in Riga (?) passes by a woman on the wrong side of a bridge railing. He passes by without a word. Only the splash in the water followed by a cry for help causes him to act. And then only too little and too late.<br /><br />The film chronicles his efforts at finding out more about the woman. On a troll of local bars, he finds her pocketbook. He pieces more and more of her life together. His \"\"look\"\" changes as his obsession grows. He has to make things right. In a marvelously filmed dialog with the \"\"bastard ex-boyfriend\"\" he forces Alexej to face up to the guilt that both feel.<br /><br />Haunting long takes, a gritty soundtrack to accentuate the guilt, barking dogs. Footsteps. Lovely film noir with a lovely twist. A good Indie ending.\"\r\n0\tSTAR RATING: ***** The Works **** Just Misses the Mark *** That Little Bit In Between ** Lagging Behind * The Pits <br /><br />In this debut effort for Nick Park's beloved man and dog, they are forced to fly to the moon when good old Wallace runs out of cheese.<br /><br />As well as being the shortest feature at just 22 minutes, this W/G adventure is also the earliest and it kinda shows. The plasticine animation is a little creaky and funny here, sort of reminiscent of the Mork animation about the little man in the box.<br /><br />Admirable though the craftsmanship behind it is, I've never actually been hugely into Wallace & Gromit (maybe a bit too clean and traditional for someone of my generation.) The only one I've really enjoyed is The Wrong Trousers (and that was more from when I was younger and less aware of, shall we say, the seedier pleasures of life.) I was driven to actively seek out this early effort due to the resurgence in popularity as a result of the hugely successful recent film adaptation.<br /><br />As technically impressive as the first two (all things considered!) this one lacks the emotional angle it's successors were to possess. That being said, it's fairly good fun as a first try and certainly set the standard for greater things to come. Two stars, but a good two stars. **\r\n0\tImpenetrable rubbish. This has to be one of the worst movies I have ever seen. The dialogue is ghastly, the horror effects are laughable. The only thing that kept me watching was the ever-splendid and totally underrated Michael Cule.\r\n1\tCastle in the sky is undoubtedly a Hayao Miyazaki film. After seeing it for the first time I'm glad to say that it doesn't disappoint. On the contrary, you get your time's worth, which means (as to what Miyazaki's films are concern), that is nothing less than excellent! <br /><br />Produced early in his cinematic career, Castle in the Sky anticipates many of the trade marks in his later movies, with strong (but young) female characters, forced to grow up due to external circumstances, helped out by very interesting (and some times lovable) supporting characters. And, of course, the usual battle of nature versus civilization, flying machines (lots of it!!), beautiful painted sceneries  but alas, no pigs ( at least that i've noticed, after all I have only seen it once). Never the less, Miyazaki had already got his theatrical debut two years earlier, with Nausicãa, which was a dress rehearsal for Princess Mononoke, his magnum opus. Castle in the Sky is set a bit a part from these two, with a soft action packed first 30 minutes, resembling his TV series Conan, and his directed episodes of Meitantei Holmes. In here we are introduced to Sheeta, a girl who literally falls from the sky, only to be found by Pazu, a young boy working in a little countryside mining town. Intrigued by her amnesia and suspecting a connection between her and the mysterious flying city of Laputa, Pazu is set on helping her find out where she came from, whilst escaping the army and a gang of air pirates. As the movie progresses, the plot gets heavier and much more interesting, revealing Myiazaki at his best. <br /><br />The sound track is very reminiscent of Spirited Away, (or vice versa, as Castle in the sky was produced first), and much like its director, Joe Hisaishi _the composer_ starts with a very light score, that gets more complex and beautifully fitting as the plot goes forward! <br /><br />A note to the English dubbing, with a good interpretation from the two lead stars, although Anna Paquin's Sheeta has a very thick accent (which the actress still had at that point in her career), and a heads up for Mark Hamil as Muska, making up for a delighting yet devilish villain! <br /><br />Don't miss this one people!\r\n0\t\"a movie that attempts to be far smarter than its makers are capable of producing. the movie twists and turns through miriad plot \"\"surprises\"\" at a desperate attempt to kep the audience guessing, offcourse puncturing the \"\"plot\"\" with steamy scenes they thought would help it along.<br /><br />james belushi is involved in this pseudo-intellectual attempt and just sleep walks through the movie. the same applies for the other \"\"actors\"\". the plot is quite silly and tacky. whih in itelf is not such a crime, but towards the end, the tremendous plot-twists get very tiresome and boring.<br /><br />however, the movie does manage to generate some interest in the middle. in all worth a lazy watch on a really boring day, but don't fret if you miss this one.<br /><br />a rather lame 4!\"\r\n0\t\"I guess this would be a great movie for a true believer in organized Christian Dogma, but for anyone with an open mind who believes in free will, rational thinking, the separation of Church & State and GOOD Science Fiction it is a terrible joke!<br /><br />There are some well known actors who were either badly in need of work or had a need to share their personal beliefs with the rest of us heathens.<br /><br />I WAS entertained by this movie in the same way I was entertained by \"\"Reefer Madness.\"\" That movie attempted to teach drug education by scare tactics the same way this movie tries to teach \"\"Christian\"\" principles with the threat of hell and misery for otherwise good people who don't share their interpretations of our world.<br /><br />It had me howling with laughter and at the same time scared me to realize how many people actually believe that our society should revert to the good old days of the 19th century!\"\r\n0\tOh Geez... There are so many other films I want to see out there... I got stuck with my nephew for the weekend and this is what he wanted - Yeah...<br /><br />I used to watch this show when I was in college...it was mindless, kinda fun, and somewhat action-oriented. The show had a good heart tho...and the characters were cute; no one ever got killed or even hurt badly... it was like a cartoon come to life. Cut to 2005...What happened? This one doesn't work. As others have said, there simply isn't a cohesive story and the performances are weird...almost annoying - definitely not faithful to the original characters...the whole thing is a like a Mad TV skit and it lasts over 100 minutes! This was one of the few times I've been EMBARRASSED watching a film. What were they thinking? As best I can tell, must've been for the product marketing, toys, etc. All I can say is, let this one die a quick death. It makes the original Dukes of Hazzard seem like Masterpiece Theater...<br /><br />I think the only remake left to do from TV is Gilligan's Island... Good Luck!\r\n0\t\"I just finished watching this film and WOW was that bad. Actually the only thing that kept me watching was that it was SO MONUMENTALLY bad it was kind of entertaining. The action of the characters is hilarious, from the hyper-dramatic way they fall to gunfire, to their incredibly bad acting (were the bad guys all just pulled off the street, or were they actually actors?), to incredibly bad delivery of lines, to their inexplicable actions (if you are going to try and shoot someone through a doorway as they enter, obviously the thing to do is shoot directly at the doorknob!!). This film must break some record for worst written and delivered lines.<br /><br />The camera work was also really bad - you can hardly see what's going on in the fight scenes due to switching camera angles and shakiness.<br /><br />I would have voted \"\"1\"\" except that I do like Chiba and sidekick Sue Shihomi, and I was entertained by a couple of scenes: 1) breaking of a villain's arm so the bone pops out of the skin (that's gotta hurt) 2) a drug kingpin eating a brown-furred animal (a monkey??) by hacking away at the carcass with a meat cleaver 3) Sonny Chiba's performing some impromptu eye surgery on a guy with his fingers.<br /><br />I am actually a big fan of Sonny Chiba but this one is really not worth anyone's time. I've seen about 7 or 8 of his films and have come to the conclusion that the only ones worth watching (and they are great!) are the Street Fighter series, and The Killing Machine. I've also heard the Executioner and Golgo 13 are good. I recommend sticking to those ones.\"\r\n1\t\"Like \"\"My Sassy Girl\"\", this movie is based on a true story posted from the internet, but that's where the similarities end. The story is generally about this rebellious guy named Ji-Hoon (Kwon Sang Woo) who is still trying to finish high school, whose parents hire a tutor named Su-Wan (Kim Ha Neul), a woman who comes from a poor background, but happens to be the same age as him. Add to that some obstacles, martial arts (thugs are always after Ji-Hoon for revenge), a scorned, thuggish love-sick girl who is after him, his proclivity for ditching the lessons, and you generally can guess the whole story. Did I mention it's a romantic comedy? This movie has some good fight scenes, great visual humor and a lot of spunk, thanks to the good chemistry between Kim Ha Nuel and Kwon Sang Woo, that bring a lot of energy to the story. The romantic elements also work because of that reason. And, I must say, I'd want a girlfriend more like Kim Ha Nuel than that girl from \"\"My Sassy Girl\"\" (personality-wise, at least). She has some spunk, but it's more on the cute, sweet, good-hearted way. Characters are already mostly likable (so one might say it had less of a hill to climb than \"\"My Sassy Girl\"\"--an obstacle that worked for that movie to its credit), and the movie is quite clever and interesting most of the way. The story kind of sags, though, about 2/3 of the way (where it sort of treads on familiar, standard fare, where nothing really interesting happens), but near the end, it picks up a bit again. Overall, a fun, cute movie. 8/10\"\r\n0\t\"We see a body of dead girl in a morgue with the coroner trying to close the eyes of the girl, but whatever he tries they won't stay open. After this we move into the future and we follow a group of former school friends who hide a terrible secret, but suddenly they start getting picked off one by one in many grisly ways. Through flashbacks we learn of this awful suicide of a shy girl who was trying to be one of the group, but she was shut out by them because they dug up her past and found out some weird occurrences. So, is she back from the grave seeking revenge? <br /><br />Oh what a great and always spooky story! Well, that's what I hoping I could say. And 'hoping' was as good as it got. This is an forgettable, so-so supernatural horror flick that I actually watched before, but I went in thinking it was my first viewing. So to my surprise it hit me when I started picking up on certain things, but like I said it's quite a forgettable mix that it felt like a first viewing again. \"\"Nightmare' is just another type of it's field that adds a 'few' changes to the gruel. Oh, please give me something that's a bit more fresh. It doesn't have to be entirely original, but this is one formulaic and at times quite tired J-horror flick. Even though it strings along the usual ghost story involving you guessed right an evil looking, vengeful chick spirit.<br /><br />But in spite of my negativity of it being the same old, same old story and jolts. This one kind of entertains when its being grisly and popping in some creepy visuals. The deaths are vividly displayed with bite and some originality. While, the gloomy atmosphere alienates the audience with it's murky lighting. The first scene involving the spirit terrorising one of the girls is one blood-curdling experience, but really when it's not trying to shock you. I found it rather coma inducing and I thought about getting some shut-eye. That might be harsh, but it just didn't go anywhere of any interest between those shock moments. You could say that because the supposed mystery is really not much of one, the unsure story is just simply flat and the characters are a self-centred bunch that you don't really care what happens to them. The disjointed story should have focused more on the spirit than that of these bland characters who have one unconvincing group relationship. It just overplayed its cards by becoming overly muddled and taking too long to get going that when it comes to the climax it's just plain ludicrous. The film's haunting ending is a high point, though.<br /><br />The film looks fine, although it could have done without the snazzy, quick fire editing and the music score was a bit overbearing in playing up the mood. The performances tread a fine line, but Gyu-ri Kim is strong in the lead role.<br /><br />It's nothing new and it shamelessly steals ideas, but if you can look past that it delivers some nasty thrills. Although, I found the handling of it rather lethargic, despite the odd effective chills. A standard effort all round I guess, but still it's equally missable.\"\r\n0\tDo not be mistaken, this is neither a horror, nor really a film. I firmly advise against watching this 82 minute failure; the only reason it merited a star was the presence of Chris Pine.<br /><br />Nothing happens. You wait patiently in the hope that there may be a flicker of a twist, a hint of surprise, a plot to emerge - but no.<br /><br />The characters take erratic turns of pace in their actions and yet don't have the time to develop - thanks to the thrifty editors and frankly ashamed writers - before returning to an idyllic and playful (bring on the teen rock montage) state. The only thing that could have made it worse would be adding the perishable token ethnic 'companion'.<br /><br />Their encounters with obstacles (be they human or physical) are brief, confusing and entirely pointless.<br /><br />Chris Pine fights to keep himself above the surface whilst being drowned by a misery of a lightweight cast. Lou Taylor Pucci couldn't be dryer if he spent the summer with Keanu Reaves combing the Navada desert.<br /><br />Watch 'The Road', watch '28 days Later', watch day time TV...anything but this; I implore you. Suffer the boredom, unlike you may be led to believe in the film, this film is no cure.\r\n0\tThis is a worthless sequel to a great action movie. Cheap looking, and worst of all, BORING ACTION SCENES! The only decent thing about the movie is the last fight sequence. Only 82 minutes, but it feels like it goes on forever! Even die-hard Van Damme fans(like myself) should avoid this one!\r\n1\t\"\"\"Life hits us in the face........we must try to stay beautiful\"\"<br /><br />Debut movie from one of Belgian's best artists (he sings songs), Tom Barman. A long awaited movie and---happy happy joy joy for Flemish filmmaking---really worth watching, and a promising piece of work! It takes us into the lifes of 8 main characters that live through a Friday- and night. The title says a lot about the way we spend time with them: we float as they do into Friday night's party where they kinda' meet.<br /><br />It's rhytmic style is very 'thought off'. Superb use of music. It sometimes takes the upperhand to the images and then you feel its power. Gainsbourg! QOTSA! The party scene (20minutes???) is a thrilling visual experience cause of the way that it's shot. It keeps you really with it while it's set in a small place with a lot of people having a big party.....so hard to shoot.<br /><br />Thank you menijèr Barman for making this daring movie in these, already some years going, poor times of Flemish filmmaking. You made my day!\"\r\n1\t'Renaissance (2006)' was created over a period of six years, co-funded by France, Luxembourg and the United Kingdom at a cost of around 14 million. The final result is a staggering accomplishment of comic-book style animation, aesthetically similar to what Robert Rodriguez and Frank Miller achieved with 'Sin City (2005),' but this film employed motion capture with live-actors to translate their faces and movements into an entirely animated format. Presented in stark black-and-white, the film looks as though it has been hoisted from the very pages of the graphic novel on which it was based, and the futuristic city of Paris looms ominously above us. Directed by French filmmaker Christian Volckman, in his feature-length debut, 'Renaissance' draws significantly from other films in the science-fiction genre, and the tech-noir storyline isn't something we haven't seen before, but, from a technical standpoint, it is faultless.<br /><br />The year is 2054. The city of Paris is a crumbling metropolis filled with dark alleys and deserted footpaths, the recent installation of modern technology merely offering a thin mask to the pitiable degradation of the darkened buildings. The city's largest corporation, Avalon, achieved wealth through offering citizens the promise of beauty and youth, and the company's research department is continually striving to invent greater means of eliminating the aging process. Ilona Tasuiev (voiced by Romola Garai in the English-language version, which I watched) , a brilliant young scientist, is mysteriously kidnapped on her return from work, and so it falls to legendary detective Barthélémy Karas (Daniel Craig) to uncover her current whereabouts. Possibly holding the key to the woman's disappearance is Bislane (Catherine McCormack), Ilona's hardened elder sister, whose trustworthiness is in question, and Jonas Muller (Ian Holm), the dedicated medical doctor who adored Ilona as his own daughter.<br /><br />The eerie, dimly-lit city of Paris is reminiscent of Ridley Scott's 'Blade Runner (1982),' and some of the technology looks as though it might have been borrowed from Tom Cruise in 'Minority Report (2002)' {which was, coincidentally, also set in the year 2054}. However, despite this familiarity, Volckman has created an exciting world for his characters to inhabit. Blending classic film-noir and science-fiction, the result is an eye-catching collage of harsh lighting and dark shadows, which, I should warn, occasionally becomes difficult on the viewer's eyes. The dialogue is a little banal at times, and the story, though engaging, doesn't offer anything strikingly original {except for the ending, which I thought was a bold twist on the usual formula}, but 'Renaissance' is intended to work best as a visual treat, and that it succeeds in this regard cannot be denied.\r\n0\tThe only possible way to enjoy this flick is to bang your head against the wall, allow some internal hemorrhaging of the brain, let a bunch of your brain cells die and once you are officially mentally retarded, perhaps then you *MIGHT* enjoy this film.<br /><br />The only saving grace was the story between Raju and Stephanie. Govinda was excellent in the role of the cab driver and so was the Brit girl. Perhaps if they would have created the whole movie on their escapades in India and how they eventually fall in love would have made it a much more enjoyable film.<br /><br />The only reason I gave it a 3 rating is because of Govida and his ability as an actor when it comes to comedy.<br /><br />Juhi Chawla and Anil Kapoor were wasted needlessly. Plus the scene at Heathrow of the re-union was just too much to digest. Being an international traveler in the post 9/11 world, Anil Kapoor would have got himself shot much before he even reached the sky bridge to profess his true love :) But then again the point of the movie was to defy logic, gravity, physics and throw an egg on the face of the *GENERAL* audience.<br /><br />Watch it at your own peril. At least I know I have been scarred for life :(\r\n1\tBeside the fact, that in all it's awesomeness this movie has risen beyond all my expectations, this masterpiece of cinema history portrait the overuse of crappy filters in it's best! Paul Johansson and Craig Sheffer show a brotherconflict with all there is to it. As usual a woman concieling her true intentions. The end came as surprising as unforssen as the killing of Keith Scott by his older brother.<br /><br />The scenes in 'wiking land' are just as I remember it from my early time travels. - To be honest my strong passion for trash movies makes this one a must have in my never finished collection.<br /><br />I recommend this movie to all the people in love with the most awesome brother cast from One Tree Hill.<br /><br />-Odin-\r\n1\t\"\"\"The Notorious Bettie Page\"\" is about a woman who always wanted to be an actress but instead became one of the most famous pin up girls in the history of America. Bettie Page played by Gretchen Mol was one of the first sex icons in America. The type of modeling Bettie Page took part in included nudity and bondage which lead to a U.S Senate investigation in the 1950s.<br /><br />Walking out of the film, all I could think about was how far we have come in terms of pornography since the 1950s. You can go on the internet now and find some of most disturbing and shocking images ever shot, that the footage questioned in \"\"The Notorious Bettie Page\"\" seems almost childlike and innocent. Most of the footage including the bondage did not feature nudity when Bettie Page was involved yet today we have sick images where we can see women having sex with animals. I find that maybe the envelope has been pushed a little too far since the 1950s because looking at this movie in terms of today's pornography, it was very tastefully done.<br /><br />To be honest, I was pretty impressed with \"\"The Notorious Bettie Page,\"\" I found the film to be very well done and interesting. The movie is exactly what the trailer leads you to believe it will be and is a very interesting look at one of the first female sex icons in America. Gretchen Mol looks just like Bettie Page and gives a very fine performance. I also thought that since the movie was shot in black and white it made the film seem realistic because it made the audience believe they were watching a film created in the late 1950s.<br /><br />My only complaint about the film was the running time, there seemed to be a few scenes that were cut and seemed to be a little shorter than they should have been. I looked this up and it seems that 10 minutes was cut from the film since its original showing at the Toronto Film Festival. Also the ending was pretty tame and I was expecting a little more from it or maybe some paragraphs to come on the screen to tell the audience more about Bettie Page's life where the film left off. Those are my only two complaints about the film other than that the directing was solid, the acting was great especially Gretchen, and the writing was good.<br /><br />Mary Harron, who directed \"\"American Psycho\"\", which is one of my favorite films, is the director and writer of \"\"The Notorious Bettie Page.\"\" I feel that Mary is a very talented director who knows how to create a setting and create great movies based on characters because like \"\"Psycho\"\", Bettie Page is a character study and a fine one at that. Harron captures the 40s and 50s with ease as well as all the characters. She is a very talented director who I hope will be around for many years to come.<br /><br />Bottom Line: \"\"The Notorious Bettie Page\"\" is definitely worth a look. It's a very interesting story that shows how far America, as well as the world, has come in terms of pornography. The film also provides a fine performance by Gretchen Mol who literally nails the role of Bettie Page on the head. And top it off with a talented director who was able to capture the look and feel of a previous era and you have a good movie on your hands. Sadly, this film is probably going to flop since not many besides people who grew up in this era will show interest in the film but I think it's worth checking out.<br /><br />MovieManMenzel's final rating for \"\"The Notorious Bettie Page\"\" is a 8/10. It's an interesting character study about one of the most famous pin up girls and sex icons in American history.\"\r\n1\tI'm a big fan of films where people get conned, and House of Games is almost the pinnacle of the 'films where people get conned' genre. In short, it's an exceptional thriller that keeps you on the edge of your seat by providing interesting characters with many levels, and never truly revealing what's happening, while throwing in many twists and surprises to upset completely what you've just seen. The film cons the audience on many occasions, and despite us knowing this; it's still difficult to guess where it's going, and every twist comes off as a surprise. As mentioned, I'm a big fan of cons in movies and the plot of this one follows a female psychiatrist who receives a patient with a huge debt owed to a fellow gambler. She then goes to the gambler in an attempt to help out her patient, and on the way gets drawn into the art of reading people in order to pull off a con.<br /><br />House of Games breathes a sleazy atmosphere throughout, and David Mamet does well in establishing his film's setting in the underground levels of the city. The film is well acted also, with all concerned bringing life and believability to their characters with the greatest of skill. Joe Mantegna stars as the con man at the heart of the film, and although his performance is a little under wrought, he's always solid and believable as the villain of the piece. Lindsay Crouse stars alongside him as the psychiatrist seduced by his work, and again is believable in her role. She may not be the greatest looker, but at least she can act. The way that the film executes it's plot is the main star of the show, however, and you will no doubt be amazed on multiple occasions as to how the film constantly manages to amaze and deceive the viewer. At times it's almost like we are in the thick of the action and being conned by the con men in the film. Another thing that's great about this film is the way that it shows the audience how to pull off certain cons, which is useful if you're interested in making twenty bucks, say. All in all, House of Games is a truly first rate thrill ride.\r\n1\t\"Having read the reviews for this film, I understandably started watching it with a great deal of doubt in my mind that it would actually be any good. However, this is one of the best films i have seen in a long time. The majority of reviews that i had read, said that the complicated plot made it too hard to follow. And whilst some parts do leave you confused, the ending ties up so many loose ends that you feel like kicking yourself because you've missed so much. It's not like \"\"Lock, Stock...\"\" or \"\"Snatch\"\", in the sense that it isn't that funny (in fact, it's pretty dark), and it is a lot more intelligent, in the way that you see parts of scenes from different viewpoints (and, in one of the best scenes of the film, Jason Statham spends five minutes in a lift having an argument with himself). The way in which it is similar to the two films i just mentioned, is that it is full of memorable characters, specifically Statham, who gives a fantastic performance as the lead, and Ray Liotta, who spends most of the film in Speedos, but gives a great performance none the less. If you've got time, and have time afterwards to think about the film, and even watch it again, you really start to see all the symbolism and hints that are laid out through the film. I think it's fantastic, and that Guy Ritchie is a director on top of his game.\"\r\n0\t\"What kind of a documentary about a musician fails to include a single track by the artist himself?! Unlike \"\"Ray\"\" or countless other films about music artists, half the fun in the theater (or on the couch) is reliving the great songs themselves. Here, all the tracks are covers put on by uninteresting characters, and these renditions fail to capture Cohen's slow, jazzy style. More often, the covers are badly sung folk versions. Yuck.<br /><br />The interviews are as much or more with other musicians and figures rather than with Cohen himself. Only rarely does the film feature Cohen reading his own work (never singing)-- like letters, poems, etc. The movie really didn't capture much about the artist's life story, either, or about his development through the years. A huge disappointment for a big Cohen fan.\"\r\n1\t\"'What I Like About You' is definitely a show that I couldn't wait to see each day. Amanda Bynes is such an excellent actress and I grew up watching her show: 'The Amanda Show.' She's a very funny person and seems to be down to earth. \"\"Holly\"\" is such a like-able person and has an \"\"out-there\"\" personality. I enjoyed how she always seemed to turn things around and upside down, so she messed herself up at times. But that's what made the show so great.<br /><br />I especially loved the show when the character 'Vince' came along. Nick Zano is very HOT and funny, as well as 'Gary', Wesley Jonathan. The whole cast was great, each character had their own personality and charm. Jennie Garth, Allison Munn, and Leslie Grossman were all very interesting. I especially loved 'Lauren'; she's the best! She helped make the show extra funny and you never know what she's gonna do or say next! Overall the show is really nice but the reason I didn't give it a 10 was because there's no more new episodes and because the episodes could've been longer and more deep.\"\r\n0\t\"I have to admit that I'm a great fan of this show, so you must know how disappointed I got when I watched this movie. First of all, the plot was awful, I thought it was going to be something more interesting, like to see what happened to Arnold fathers, or something more interesting, but NOOOOOOO, a maniac wants to destroy Arnold's house, between many other places, so many people tries to stop this.<br /><br />I must admit that the plot wasn't so bad after all, but what really sucked were the steps that Arnold and his friends do to stop this maniac, they become friends of a spy,; they drive a bus (based on a video game, for God sake), and to worse everything, they make super-moves on the bus, things that many persons had already tried and died, but not Arnold, Gerald and Helga, 'cause they are experts on a video game.<br /><br />Honestly, my mom, my sister, even me got really disappointed after watching this movie, 'cause it was the worst way to finish a really good cartoon. I must admit that I used to enjoy \"\"Hey Arnold!\"\", it was one of my favorite cartoons on Nickelodeon, but after this crap of movie, I'm not quite sure if I'm going to watch \"\"Hey Arnold!\"\" as I used to watch it on the past.<br /><br />Other thing Nickelodeon, with that enormous number of dynamite I can assure you that not a simple street would explode, I think that the whole city could explode with that, oh, and please, if all of your future movies from good cartoons are going to be like that, don't do more movies, you give a bad critic to cartoons that used to be good.<br /><br />Honestly, I think this was the worst way to end this show, a good show transformed into this crap of movie.\"\r\n0\t\"After a fairly lengthy partially pixelated nude shower scene, we're off to the races for this \"\"Blair Witch Project\"\"-esquire horror film about three girlfriends venturing to a desolate cabin deep in the woods to get away from their hectic lives for a girls' weekend out and smoke pot. They meet two guys who seem friendly enough, so they drink and tell ghost stories, until late in the movie some of them get picked off.<br /><br />This is a fairly slow movie, with needlessly drawn out 'suspense' scenes, the bad acting can't carry the myriad of scenes where nothing happens but mindless banter, and the movie as a whole is a dud, a deathly-boring dud at that. Nothing at all happens until the last half hour and when it did I was to numb to really care.<br /><br />Eye Candy: Ashley Totin shows T&A; Evy Lutzky gets topless briefly; and Jennifer Hart shows her right tit <br /><br />My Grade: D\"\r\n1\tA must see by all - if you have to borrow your neighbors kid to see this one. Easily one of the best animation/cartoons released in a long-time. It took the the movies Antz to a whole new level. Do not mistake the two as being the same movie - although in principle the movies plot is similiar. Just go and enjoy.\r\n0\t\"If you're watching this without an inkling of an idea what the story is about, then you're in for quite the surprise. Even then the synopsis has painted a picture of a rather sane storyline, but the actual film is anything but.<br /><br />As the synopsis went, it tells of an obsessed mountain climber, which you'll see as the prologue before the opening credits and text crawl, which tells you of the presence of Chronopolis, an imaginary city that exists in dreamy manuscripts of the mind (note to self  this spells trouble with flashing lights), where its inhabitants are immortals yearning for a change in their omnipresence. They can see our world, and notice of all persons this mountain climber, and the synopsis explained that they decided to contact him through alchemy, creating an intelligent sphere to meet the man.<br /><br />What that translated to, is a repetitive piece of animation that a 5 year old kid could produce. Have shapes created, though credit goes to the stop motion style, and put it through a mind-numbing loop. And repeat until your eyes start to close, then move on to the next scene. If anything, the Chonopolisians (if this term exists) really love their sticks and balls, constantly playing at conjuring up that magical sphere, and having a field day playing with it before releasing it to the \"\"other\"\" world. It gets no better as well, when the man interacts with the sphere in yet another hypnotically boring and sleep inducing sequence.<br /><br />Thank goodness of course that the run time is shorter than what's advertised, which is 57 minutes (or less) against the 70 stated. While firmly dated, its dull colours, non-existent story, scratchy soundtrack and repetitive pictures will win over no fans. Don't waste time.\"\r\n1\t\"This was a wonderful little American propaganda film that is both highly creative AND openly discusses the Nazi atrocities before the entire extent of the death camps were revealed. While late 1944 and into 1945 would reveal just how evil and horrific they were, this film, unlike other Hollywood films to date, is the most brutally honest film of the era I have seen regarding Nazi atrocities.<br /><br />The film begins in a courtroom in the future--after the war is over (the film was made in 1944--the war ended in May, 1945). In this fictitious world court, a Nazi leader is being tried for war crimes. Wilhelm Grimm is totally unrepentant and one by one witnesses are called who reveal Grimm's life since 1919 in a series of flashbacks. At first, it appears that the film is going to be sympathetic or explain how Grimm was pushed to join the Nazis. However, after a while, it becomes very apparent that Grimm is just a sadistic monster. These episodes are amazingly well done and definitely hold your interest and also make the film seem less like a piece of propaganda but a legitimate drama.<br /><br />All in all, the film does a great job considering the film mostly stars second-tier actors. There are many compelling scenes and performances--especially the very prescient Jewish extermination scene towards the end that can't help but bring you close to tears. It was also interesting how around the same point in the film there were some super-creative scenes that use crosses in a way you might not notice at first. Overall, it's a must-see for history lovers and anyone who wants to see a good film.<br /><br />FYI--This is not meant as a serious criticism of the film, but Hitler was referred to as \"\"that paper hanger\"\". This is a reference to the myth that Hitler had once made money putting up wallpaper. This is in fact NOT true--previously he'd been a \"\"starving artist\"\", homeless person and served well in the German army in WWI. A horrible person, yes, but never a paper hanger!\"\r\n0\tI'm afraid that I have to disagree with the majority. I found Spike Lee's latest a wee bit boring! Although he was trying something different, i.e. not just documenting the rise and fall of the serial killer, I don't think it worked too well.<br /><br />There's really a bit too much going on - Vinny (John Leguizamo) and Dionna's (Mira Sorvino) relationship, Ritchie's (Adrien Brody) lifestyle and then the local mafia types. The story is good, but at the end thats all you have - 2 or 3 stories. With such a provocative killer could Mr Lee not have put more into that side of the film? ><br /><br />There are some good points though. All scenes with the 'Son of Sam' killer David Berkowitz look very nice (colour saturation etc...)and the acting is pretty good throughout.<br /><br />Overall I felt that the different stories would of worked well on their own or else without the killings. It just wasn't strong enough in the end.<br /><br />\r\n1\t\"I've been a fan of Xu Ke (Hark Tsui) for many year since school. This film is the best fantasy movie in years. I dont think \"\"action\"\" is the right genre, though there're lot of action and KongFu scenese. Wait, did I mentioned this is an ORIENTAL fantasy moive? please, keep in mind that DO NOT use hollywood formula to rate this film. And for the guy who \"\"poo\"\" around, I don't blame you, 'cause you still young and need to know more about \"\"culture\"\".\"\r\n1\tThis is a great movie to see with your girlfriend. My friend and I both love dance and ran into this movie at the video store. We had to get it. With no violence and such a warming story its a great movie to relax to and just enjoy your night. I would recommend this movie to any family or just a bunch of girls looking for a cute movie.\r\n1\t\"Jimmy Cagney races by your eyes constantly in this story of a stage-producer who is vigorously struggling against the upcoming \"\"talking\"\" movies.<br /><br />This story of love, deceit, women and dancing is presented in such a manner that as a viewer you are never treated to a dull moment. The direction of the mass scenes in the rehearsal rooms was enormously well done. The story never really got lost in this frantic pace.<br /><br />Some parts of the material presented here have become a little dated but that doesn't matter because when you look at this in a 1933 time-frame it is fabulous to watch this next to a lot of the other drags of movies that were released during that time.<br /><br />Jimmy Cagney is a sight for sore eyes in this film, never loosing his composure as the ever-working producer of previews made for the movie theaters as intros. In this way he tries to save his ass from going out of business, he was a broadway producer before he started this. Joan Blondell is fabulous as the neglected love-interest, Nan, she gives such a spirited performance that is so unusual for movies of that time, so cool to watch a woman who is portrayed as a strong woman for a change.<br /><br />The only problem I had with the film were the enormous productions at the end. These were magnificent in itself, beautifully choreographed and wonderfully produced, but they just didn't seem to fit in the story. The only link they have to the main story is that Cagney had to put on 3 previews in 3 days to get a contract and that's what he did. I had a hard time believing that this was what the girls had been rehearsing during the entire movie and that these sets could fit in a movie theater. In this way the \"\"Sitting On A Backyard Fence\"\" was much more appropriate to the story.<br /><br />The productions at the end seemed to drag this frantically paced story to a halt and that was not a good thing. I was tired after seeing the first Musical sequence and then I realized there were another two coming up. These sequences got a lot a chuckles from the audience as well.<br /><br />All in all a great film with a sour ending.<br /><br />9/10\"\r\n0\t\"I have heard a lot about this film, with people writing me telling me I should see it, as I am a fan of extremely bloody, gory movies. I got my hands on it almost right away, but one thing or another always kept me from watching it- until now. I would have been better off not remembering I even had it.<br /><br />This movie was atrocious. The worst thing though is that it could have been so much better than it actually was. I know it was a story by Clive Barker and all, and no I have not read that story- but it appears to me that if you haven't then you will be, as I was, completely clueless and utterly disappointed.<br /><br />The film begins good enough- the actors are convincing, the story interesting. The first scene is bloody- a great way to catch your attention. I thought the blood looked a bit bad, but seeing as it was the very first scene I did hope for improvement later on. I was wrong. <br /><br />The blood and effects are so horrible, it was almost an insult to my intelligence to be expected to believe that, for instance, someone could knock a person's head right off their shoulders using only a meat hammer. WTF? CGI blood (did they even use ANY \"\"real\"\" blood at all? My home made stuff looks better than any used in this film!), unbelievable acts of dismemberment (eyeballs popping out just from getting hit in the back of the head; arms cut neatly off- does no one remember there are BONES all throughout our bodies?!), too-dark scenes (every scene is either an odd yellow color, or in hidden in shadows)...it just gets worse and worse. I found myself pointing out mistake after mistake. There's just too much. Add that to the fact that what could have and should have been a great serial-killer movie turns into some demonic/supernatural/monster movie at the end...no thank you! It should have been kept as a creepy guy butchering people in the subway- OK, with a conspiracy theory thrown in- and an overzealous photographer. Maybe they murder people and sell the meat via the meat plant? Plausible, doable...and a lot better I think than the \"\"real\"\" story. That could have and should have worked. Instead it became a \"\"creatures living at the end of the old tunnel and everyone knows about it but you, and unless you read the book, well...you just won't ever understand it\"\" fiasco. Tragic, what an awful thing to do to a movie with such potential. If you like mindless fake blood and gore, you'll love this. But if you have half a brain in your head then you will completely hate it. Stay away- far, far away.\"\r\n0\t\"This show made me feel physically sick, and totally detached from British society as a whole. It was programmes such as this and Blue Peter that pretended that there were/are no class divisions in Britain. They'd always say things like; \"\"Go into your loft and you may find this..\"\" or \"\"Go into your back garden tonight and...\"\" - what about us 'scummy' working class kids who never never had a \"\"loft\"\", and a \"\"back garden\"\" which was nothing more than a 1 meter square of balcony on the 14th floor of a council block? Public service broadcasting - yeah right! And on top of that, it was awfully depressing to see those stupid, middle class, up-their-own-backside kids mess about with bits of old plastic having 'fun'... do me a favour, and \"\"why don't you\"\" go and slit your wrists or do a coke overdose on \"\"Mama and Papa's\"\" money... you make me sick\"\r\n1\t\"This is an excellent film dealing with a potentially exploitative subject with great sensitivity. Anne Reid, previously best known in the UK for her TV roles including 'Dinnerladies' (a Victoria Wood scripted series on in-company catering workers, if you're wondering), gives a performance of finely judged understatement as May, a late-60s bereaved mother of two chattering class adults in an inner-London borough. Her husband Toots (Peter Vaughan) dies on their visit to the male of the latter species (Bobby), and we see the pair being rather casually greeted by Bobby and his family. May's teacher daughter Paula (Cathryn Bradshaw) lives nearby, however, and the relationship between May and Paula initially appears closer. Thus when May decides she cannot live in her own home and comes back to London, she is able to stay in Paula's house and do some child-minding of Paula's more appreciative offspring.<br /><br />It is on May's visits to Bobby's house that she embarks on an affair with Darren, a mid-30s friend of Bobby who is working on a house extension. In what may be the first mainstream British film to so portray it, it is May and not Darren (Daniel Craig*) who initiates the encounter, and, at least to begin with, it seems that the relationship is founded on mutual respect. There is no explicit sexual content (at least in the DVD I saw: differences in the IMDb cast list suggests the existence of other versions), and the physical basis of the affair is handled directly but not exploitatively. More strongly portrayed is the relationship between May and daughter Paula, a recent convert to 'therapy and self-exploration', who announces that mummy has never been supportive of her. Paula is also Darren's lover, and when she finds May's explicit but rather poor drawings of Darren and May together, things go downhill in dramatic but controlled fashion. Only in an English film, perhaps, could a daughter announce that she is going to hit her mother, politely ask her to stand up, and duly wallop her.<br /><br />In the mean time, May is being drawn into a putative relationship with a decent but older (of her own generation) member of Paula's writing group. The contrast between the ensuing unwanted intercourse and her affair with Darren is clearly made; it is at that point that May starts to acquiesce to Paula, and Darren's worm begins to turn (he reveals on cocaine that he may have been after her money, if not all along, but for some of the ride). So May finds herself superfluous to both of her children's needs, and finally does return home (but later leaves on a jet plane for pastures new).<br /><br />The film's strength is that it portrays with unflinching but sympathetic truth the nature of contemporary adult parent-sibling relationships, where bereavement may leave the surviving parent feeling more alone than if they had no-one to care for them. This is not new, but the openness of the portrayal of sexual need in the over-60s may well be. The darkness of the film's content, from a screenplay by Hanif Kureishi, stands in contrast to the way in which it is lit (it seems to be perpetual summer), and the overall mood is uplifting - it could so easily have been yet another piece set in a dour and rainy England. The ending is perhaps under-written, as we don't know where May is going or for how long - perhaps she's Shirley Valentine with a pension, she's certainly no Picasso. Anne Reid is, however, revealed as a fine actor whose professional life will surely have changed forever. Like Julie Andrews in Torn Curtain (said by Paul Newman), \"\"There goes your Mary Poppins {read Dinnerladies} image for good\"\".<br /><br />* Yes, he: announced Oct 2005 as the new James Bond.\"\r\n0\tTHE ALARMIST is so abysmally scripted that you have think to yourself why on earth did an up and coming actor like David Arquette agree to be in it. It has to be one of the weakest plots I have ever seen and without any humour at all, it borders on the brink of tedious. It staggers along to a dreadful conclusion which appears to only happen because the director got bored and just wanted to wrap up quickly in order to get home for his dinner. Stay away!.\r\n1\tOne of the best true-crime movies ever made and very faithful to Truman Capote's book which invented the true-crime novel genre. Haunting Quincy Jones musical score and terrific acting by Scott Wilson and Robert Blake as Dick and Perry, the killers. Why Wilson didn't go on to be a big star after this movie is a mystery to me.<br /><br />The black and white cinematography and editing in this movie are top notch. The re-creation of the murders is frightening and since it leaves the actual murders to your imagination, even more scary than if they had shown the shotgun going off. The movie was filmed in the actual Clutter house which had been sold to another person after the murders. The movie has a very documentary feel---besides the scenes at the actual Clutter home other scenes were filmed at the gas stations and stores the killers actually went to. Nancy Clutter's beloved horse, Babe, is even in the movie. Will Geer has a great turn as the prosecutor in the short trial scene which is not only filmed in the actual courtroom but has several of the real Clutter murder jurors portraying themselves as the jury for the movie. <br /><br />This is a solid movie, scary every time you see it.\r\n1\tRiget II is a good sequel, but not quite as good as the first one. This series don't seem to be quite as serious as the first one. There are much more comedy in this, good one, though.<br /><br />We're back at the Danish Rigshospitalet, the Danish national hospital. Mrs. Drusse is just about to leave the hospital as her work is done, but fate want's it otherwise. She is soon chasing ghosts and Helmer is doing everyone mad and it's soon to get much worse as black powers are unleashed in the Kingdom.<br /><br />This story involves a lot more comedy that the previous. By all means lot of fun, but it makes you take the series a little less serious. The story has kept a lot of elements from the last series and added some new ones. It's well written, but some of the new elements are just kind of silly, but they save it by making it more like a comedy. Good story, but not as good, original and thrilling as the first series.<br /><br />The actors are the same with some addition to the regular cast. They are all very good. It's an odd story and setting. Some parts are a total freak show and the characters change during the show so to keep it serious and keep it real is not an easy job. Yet, these actors handle this whole situation perfectly.<br /><br />Much of the good qualities from the first series are kept intact. The cinematography is one of those qualities. The hand-held camera that made Trier world famous gives suspense and reality to the series. It gives the camera a unique ability to move and follow the characters and Trier makes use of these abilities. Good, movement, great lightning and good composition and editing makes this enjoyable to watch.<br /><br />Be prepare to see better effect in this sequel that in the first. Also be prepared to see some more. I didn't think that green thing looked all too good. Thought it was unoriginal and didn't fit. Never the less, the effects like the ghosts are really good. The non-digital effects looks good too. Little Brother looks just really odd, but you accept it. All over I'd say effects are from OK to good.<br /><br />The music is also quite good. Moody and nice. Some of it are really touching. It fits really nice. As the first one there are rather little music in the action scenes and it works very well.<br /><br />All together this makes a good sequel. If you'd seen Riget you can see this one without being disappointed. It has many of the same qualities as the first series. However, I would recommend seeing the first series before seeing this. These two makes up a series you don't wanna miss.\r\n0\t`The Matrix' was an exciting summer blockbuster that was visually fantastic but also curiously thought provoking in its `Twilight Zone'-ish manner. The general rule applies here- and this sequel doesn't match up to its predecessor. Worse than that, it doesn't even compare with it.<br /><br />`Reloaded' explodes onto the screen in the most un-professional fashion. In the opening few seconds the first impression is a generally good one as Trinity is shot in a dream. Immediately after that, the film nose-dives. After a disastrous first 45 minutes, it gradually gains momentum when they enter the Matrix and the Agent Smith battle takes place. But it loses itself all speed when it reaches the 14-minute car chase sequence and gets even worse at the big groan-worthy twist at the end. Worst of all is the overlong `Zion Rave' scene. Not only does it have absolutely nothing to do with the plot, but it's also a pathetic excuse for porn and depressive dance music.<br /><br />The bullet-time aspect of `The Matrix' was a good addition, but in `'Reloaded' they overuse to make it seem boring. In the first one there were interesting plot turns, but here it is too linear to be remotely interesting. The movie is basically, just a series of stylish diversions that prevent us from realising just how empty it really is. It works on the incorrect principle that bigger is better. It appears that `The Matrix' franchise has quickly descended into the special effects drenched misfire that other franchises such as the `Star Wars' saga have.<br /><br />The acting standard is poor for the most part. The best character of course goes to Hugo Weaving's `Agent Smith'- the only one to be slightly interesting. Keanu Reeves is the definitive Neo, but in all the special effects, there is little room to make much of an impact. Academy Award Nominee Laurence Fishburne is reduced to a monotonous mentor with poor dialogue. Carrie Ann Moss' part as the action chick could have been done much better by any other actress. <br /><br />A poor, thrown-together movie, `The Matrix Reloaded' is a disappointment. Those who didn't like the first one are unlikely to flock to it. This one's for die-hard fans only. Even in the movie's own sub-genre of special effect bonanzas (Minority Report, The Matrix etc.) this is still rather poor. My IMDb rating: 4.5/10.\r\n0\tMae Clarke will always be remembered as the girl whose face James Cagney showed a grapefruit into in the same year's THE PUBLIC ENEMY. She will not be remembered for this weird little story about a a hood's girl who finds that her past will always be with her.<br /><br />In some ways, this looks a bit antique for 1931, almost as if you are looking at 1928's famously inert LIGHTS OF NEW YORK. But don't be fooled. Although Ted Tetzlaff's photography is still in the big scenes, there's lots of movement, indicating distraction to the moviegoers in the set-ups to them. But in competition with the fast-paced stuff that it seems that everyone was doing at Warner's, this attempt to bring the woman's viewpoint into the genre as a tearjerker doesn't work, nor is Mae Clarke the actress to carry the effort.\r\n0\t\"The TV productions at the 2000's start were between weak and bad. Before marks like (Alias, Lost, Prison Break, Desperate Housewives, or Monk) the TV didn't have the right hit yet, which could capture the attention and the interests of the 2000s' viewer. Titles like (Relic Hunter), (Mutant X), (The Lost World), (Sheena), or even (Baywatch Hawaii) weren't encouraging for you to watch and follow, or at least weren't that captivating and interesting all the time as what preceded them. (Special Unit 2) was no exception. In fact it's Men in Black meets The X Files' spoof ! (As if these were the special unit 1). But even according to this brilliant formula; it didn't work well. It was promising; at the time there was some saturation out of the \"\"supernatural\"\" cases after a decade of many X files already, so the natural spirit to lampoon it naughtily too (imagine Mulder as womanizer !). However (Special Unit 2) wasn't the strongest in this, or a strong when it comes to make a comic Sci-Fi show. It was highly ridiculous, where for instance every sexy situation must turn into ugly disgusting one. It enjoyed that bad taste sickeningly. (Michael Landes) was non-charismatic and mostly unbearable as a comedian. His chemistry with (Alexondra Lee), as well as any supposed sexual attention, was all languid. Sure the show got a funny look but overall it was unfunny work. It's clear that there was nothing more interesting than its main idea. Among (Evan Katz)'s other works as a co-writer and a co-producer like (Seven Days) before or (24) later this must be a low point !. Despite the distinctive personality, it managed to be a silly jest for most of the time. Therefore if that was there goal, so they made one of the silliest indeed ! And truly, it would be one of the rarest times to be thankful for the cancellation of a show after 19 episodes of it only !\"\r\n0\tThis movie is bad news and I'm really surprised at the level of big name talent who would ever agree to appear in such a piece of junk as this. I imagine there were a few strangled agents sprawled across Hollywood Blvd. as a result of this fiasco. What really gets you is that it could have been good. The directors star appeal and the subject matter was sufficient fodder to spark interest and ticket sales, but this is a flop. The multiple story lines all go from bad to silly by the pictures end, and you end up feeling like a mouse in a maze looking for a piece of cheese that turns out to be rotten. What Spike is able to achieve is revenge against any Italians who may have beat him up when he was a kid or insulted him, as the movie does quite a number on perpetuating outdated and probably offensive Italian stereotypes. As with any Spike Lee film there is some really thought provoking and magical camerawork. He does have the gift of grabbing your psyche and transporting you into his vision if only for a few memorable scenes. But the question remains...can you endure the other 2 hours of head scratching and clock watching as you wonder and wait for the ending that has to be there somewhere.\r\n1\t\"A hilarious Neil Simon comedy that evokes laughs from beginning to end. The late Walter Matthau is the grouchy ex-comedian who is persuaded to join together with his ex-partner (the late Oscar-winner George Burns) for a final reunion show on stage.<br /><br />Benjamin Martin is Matthau's agent and nephew, and the two have just as much chemistry as Matthau and Burns. I love Matthau's grumpy character--he's just the same as he always is, and yet also very different.<br /><br />Burns, as the absent-minded old man, is just as funny as Matthau.<br /><br />Matthau: Want some crackers? I've got coconut, pineapple and graham.<br /><br />Burns: How about a plain cracker?<br /><br />Matthau: I don't got plain. I got coconut, pineapple and graham.<br /><br />Burns: Okay<br /><br />Matthau: They're in the cupboard in the kitchen.<br /><br />Burns: Maybe later.<br /><br />Or how about this:<br /><br />Matthau: When I did black, the whites knew what I was saying!<br /><br />You've got to see it in the movie to understand it!<br /><br />All in all, a refreshingly hilarious, sweet, heartfelt, warm, belivable character comedy with a heart and some of the most memorable quotes of all time. <br /><br />They just don't make them like this anymore! In a time when all the newest comedies are crude, juvenile and stupid, this leans back towards the tender core of what comedy really is--funny characters, smart and funny dialogue, and grand entertainment.<br /><br />One of the best buddy comedies of all time, right up there with \"\"Planes, Trains and Automobiles,\"\" \"\"Lethal Weapon,\"\" and \"\"The Hard Way.\"\"<br /><br />You may have a hard time finding this for rent or on TV, but trust me, it will be worth your time!<br /><br />4.5/5 stars.<br /><br />- John Ulmer\"\r\n0\t\"What a mess!! Why was this movie made? This, and other movies of its \"\"caliber\"\" should be teaching tools on how not to make a movie. Children may like it, but anyone over 10 may or will disapprove. To make matters worse was the fact that such great talent like Whoopi Goldberg and Armin Mueller Stahl were entirely wasted in a film unworthy of any notice.\"\r\n0\tI guess I've seen worse films, but that may be becuz I'm so jaded by how standard these bad horror movies are. The killer monster thing is really really bad, basically its a guy in some kind of green body suit. There is much worse acting as far as B movie go, but don't think for a second this was anything stellar, hell no. It actually did have a plot with substance, but was still pretty stupid. Basically its just a bad low budget horror movie. But at least its not as bad as titanic, that movie sucks balls, this one just sucks. The blood looks really fake in this movie. Thats one complaint I have about all the horror of the new millinium, low grade gore, looks stupid. A good gruesome death scene with really fake blood is so stupid. At least there was a nice shower scene\r\n0\t\"In 1993, \"\"the visitors\"\" was an enormous hit in France. So, the sequence was inevitable and unfortunately, this sequence ranks among the worst ones ever made. <br /><br />This is a movie that doesn't keep its promises. Indeed, it's supposed to tell a sole story. Jean Reno must go in the twentieth century and take Christian Clavier back in the Middle Ages so that time can normally follow its course. The problem is that Clavier feels completely at ease in the world of the twentieth century, and so make him get back in the Middles Ages is rather hard... Instead of this, the movie goes on several other stories without succeeding in following the main plot. As a consequence, the movie becomes sometimes muddle-headed, sometimes a bit of a mess.<br /><br />But the movie also suffers from the performance of nearly all the actors. Reno and Clavier fall into the trap that however they could avoid in the first movie: they're going over the top and become annoying. Then, why did Jean-Marie Poiré the film-maker engage Muriel Robin in the female main role? He made a mistake because she seems ill-at-ease and is absolutely pitiful. The other actors aren't better: Marie-Anne Chazel is nonexistent and Christian Bujeau, unbearable.<br /><br /> Of course, the movie contains a few good moments with efficient gags but it often falls into vulgarity and easiness. Certain sequences and dialogs are affected. It also appears hollow because Poiré takes back elements that secured the success of the first movie. Thus, a young girl takes Reno for a close relative of her family and asks him to take part in her wedding.<br /><br />A labored and disappointing follow-up. Anyway, what's the interest of this movie otherwise commercial?<br /><br />\"\r\n0\tdont ever ever ever consider watching this sorry excuse for a film. the way it is shot, lit, acted etc. just doesn't make sense. it's all so bad it is difficult to watch. loads of clips are repeated beyond boredom. there seems to be no 'normal' person in the entire film and the existence of the 'outside world' is, well, it just doesn't exist. and why does that bald guy become invincible all of a sudden? this film is beyond stupidity. zero.\r\n1\t\"Ralph and Mumford, misfits in their own land, get duped into being unwitting pawns of Synanomess Botch. Twice Upon a Time is the story of them, the characters they meet, and their struggle to set things right. With a surprisingly impressive soundtrack and wonderful voice acting by some of the best in the business, this offbeat movie hits the mark.<br /><br />The animation process, while similar to that of the cut out \"\"South Park\"\" style, is much smoother and far more three-dimensional. If I didn't know that the animation was this style, I would swear that is was traditional pen and ink. If you can watch this film in Dolby Surround or THX, PLEASE DO! You won't really miss anything if you don't, but if you do, you will get much more out of the experience!\"\r\n1\tIt's very sly for all of the 60's look to the movie. The humor is quite gentle, but it grew on me much more than I expected. The cast is first-rate and they appear to be having a wonderful time. Ustinov wanders through the film muttering some quite funny things under his breath, and it's all very inconsequential; I'll buy the movie as soon as it comes out on DVD. The plot is that Ustinov as an embezzler released from prison posing as a computer whiz and embezzling money from an American company with an office in London. Maggie Smith is his secretary for a while, and watching her get fired from many different jobs is part of the fun. Bob Newhart is his usual deadpan self, and Karl Malden has fun as the dense and sleazy executive running the London office. The ending is funny and nicely cynical.\r\n0\tI must be that one guy in America that didn't like this movie. I guess this just wasn't my style or something, I just don't see what's so fascinating about it, this was *barely entertaining, let alone one of the greatest achievements in cinema history. <br /><br />It's about a guy that came from nothing, and goes on to become a drug lord. Pretty simple way to describe an entire movie, and that's exactly my feeling about the entire movie. Contrary to what a lot of people think, just because a movie is about mafias/drug trade/criminal groups doesn't automatically make it a great movie, don't forget good storytelling.\r\n0\t\"This movie is great, mind you - but only in the way it tells a very BAD story. Stella is so terribly crude, and never learns better. Her husband is incredibly snobby and small-minded. Neither ever learns better. Is this realistic? Somehow, Stella understands that her daughter is ashamed of her gaudy manners & dress, yet cannot understand that she just needs to tone it all down? I don't think so. Stella is a GOOD woman, and a VERY GOOD mother. Giving up herself, so her daughter can be associated with a bunch of bigoted snobs is disgusting. <br /><br />Much of what we see might have been normal for the times - people having a beer or two, enjoying a player piano, dancing - but it is made out to be some sort of moral inferiority. \"\"I can't have our child living this way!\"\" Spare me. <br /><br />This story tells me one thing: that the Unwashed Working Class cannot ever hope to aspire to the heights of the Upper Classes. And that is simply a load of hogwash.\"\r\n1\t\"For quite a long time in my life, I either did not like this film, or I liked this film but not as much as many more. I watched it recently (at a sleepover, funnily enough) and I liked it more than I had done since I was under 6 or something. I now appreciate it more, as I do with a few other Disney classics that I have watched recently (including \"\"Sleeping Beauty\"\" and \"\"Pinnochio\"\" or however you spell it). <br /><br />I now very much appreciate the animation, the clever \"\"Disney\"\" plot turns, the humour from the mice, the emotions expressed and the plot. The animation is very well done, often it seems you are wherever the other characters are, watching them. The animation also does well portraying the styles of the backgrounds, including the town (which is shown twice briefly). Disney changes this from the original fairy tale in a surprisingly good way, injecting clever plot turns ,such as the mice making the clothes and the key part (usually I do not like Disney films very much if they are not that similar to the original story, but with this I am not overly bothered. I feel they made necessary changes to make this a good Disney film. Often I do not think Disney changed the book in a good way in some of their films). <br /><br />You know the story already, Cinderella is a girl working for her horrible stepmother and stepsisters. She goes to a ball with the help of her fairy godmother and loses a glass slipper...<br /><br />This is a film very much to be watched with other people. Immediate family is not good enough. To enjoy this, I recommend you watch it with friends (and immediate family, if you like. :-) ). <br /><br />I recommend this to people who like Disney at least a little bit, people who like fairy tales and for people who like mice. Enjoy! :-)\"\r\n0\t\"What's to like about this movie???<br /><br />It is in colour! <br /><br />It has some impressive underwater photography! <br /><br />It has a rhythmic musical score in the background that works well at times! <br /><br />So 3 out of 10! <br /><br />Sometimes the music is speeded up! Especially when the shark or the baddies are about to move in! <br /><br />Sometimes it is slowed! As if to convey to the audience it's about to be time for sympathy! <br /><br />As another one bites the dust! As if in a \"\"spagetti Western\"\" this has much similarity to! <br /><br />It's not that the Italians can't produce quality productions! There was a series of TV movies with a heading like \"\"Octopus\"\" numbered about 1 to 7, screened on SBS TV in Australia in the 1990s about mafia-type conflicts! And they were excellent! But alas, you won't find it here!!!<br /><br />I assumed it was made about 1960s! Sadly it was 20 years out of date, as evidenced by a funeral scene near the end! <br /><br />Then there was the razor-sharp bite of the speedy shark that makes for a red dust repeatedly emerging in the bluish waters! <br /><br />Amidst it all, either in bar-room brawl or in observing the latest sea-side bloody demolition by the relentlessly hungry shark, the mate of the hero looks on through his glasses of little concern, as if he too was bored in his relentless role amidst a lack of much evidence of plot or anyone's character development! <br /><br />At least the hero indicates a fleeting concern belatedly, for his ex-wife! <br /><br />But of course, even if the music fails to awaken our realisation, we have the sinister sound in the baddies' voices, as if to nudge us that another dark deed is about to emerge! <br /><br />And near the end, someone thought of a twist! Just when we thought it was all totally predictable! But stay tuned, folks, for you may find another twist! If you are watching closely! To, more or less, warm your heart! <br /><br />Follow the advice of the hero, and have a few beers along the way! It'll make your viewing of \"\"Night of the Sharks\"\" more enjoyable! <br /><br />Then you'll be ready for something like a \"\"007\"\" movie to ease your way back into reality when this is over!!!\"\r\n0\t\"I just watched this horrid thing on TV. Needless to say it is one of those movies that you watch just to see how much worse it can get. Frankly, I don't know how much lower the bar can go. <br /><br />The characters are composed of one lame stereo-type after another, and the obvious attempt at creating another \"\"Bad News Bears\"\" is embarrassing to say the VERY least.<br /><br />I have seen some prized turkeys in my time, but there is no reason to list any of them since this is \"\"Numero Uno\"\".<br /><br />Let me put it to you this way, I watched the Vanilla Ice movie, because it was so bad it was funny. This...this...is NOT even that good.\"\r\n0\t\"Misty Ayers had a smoking body, and that's all this movie was about. Pure exploitation flick. I started playing a game with myself, counting the number of times they looped the stock orchestral music. And of course the music is completely unrelated to the scenes. Case in point: casually walking into a room and saying \"\"Hello\"\" was scored with chase music from a roman epic. I'd like to know why this film sat on the shelf for 11 years before being released. What I learned from this movie: that women's low-rise panties existed in 1954. I'm talking Sigourney Weaver in the original Alien movie panties. At least 20 of the first 30 minutes is Misty leisurely taking off and putting on her clothing (except for bra and panties, sadly). Also includes horrendous dubbing, leading to a \"\"Look out! Godzirra!\"\" effect.\"\r\n1\t\"Canadian filmmaker Mary Harron is a cultural gadfly whose previous films laid bare some the artistic excess of the Sixties and the hollow avaricious Eighties. With \"\"The Notorious Bettie Page\"\" she points her unswerving eye at Fifties America, an era cloaked in the moral righteousness of Joe McCarthy, while experiencing the beginnings of a sexual awakening that would result in the free love of the next decade. Harron and her co-writer Guinevere Turner, are clearly not interested in the standard biopic of a sex symbol. This is a film about the underground icon of an era and how her pure unashamed sexuality revealed both the predatory instincts and impure thoughts of a culture untouched by the beauty of a nude body. If the details of Bettie's life were all the film was concerned about, then why end it before her most tragic period was about to begin. Clearly, Harron is more interested in America's attitudes towards sexual imagery then and now. Together with a fearless lead performance by Gretchen Mol and the stunningly atmospheric cinematography of W.Mott Hupfel III, she accomplishes this goal admirably, holding up a mirror to the past while making the audience examine their own \"\"enlightened\"\" 21st Century attitudes towards so-called pornography. As America suffocates under a new conservatism, this is a film needed more than ever.\"\r\n0\tWhen In Rome is a definite improvement on Getting There. Getting There I found too predictable, contrived and slow, and to this day I still consider it as the Olsen twins' worst. However, while When In Rome isn't a terrible movie, it's not a great one either. If I had to sum it up in one word, I would say passable. It is good fun for teenagers, but I think adults won't find much to go on.<br /><br />When In Rome does have its good points. Mary Kate and Ashley Olsen are actually quite decent actresses, certainly very pretty as well. I will admit when I was 10 or so, I really liked them, and in general I kind of like them still. And I have enjoyed some of their movies like Passport To Paris and New York Minute. Back on target, both girls don't do that bad a job, in fact they are very appealing. Plus their outfits are to die for, and the scenery of Rome is absolutely breathtaking. The soundtrack ain't half bad either.<br /><br />However, where the film is brought down is in the plot and the script. The script is on the most part clichéd and has hints of deja vu. The plot, like most of the Mary Kate and Ashley movies, is very predictable, and anyone familiar with any other of the Olsen twins' work, will find some rather unoriginal elements to it. Most of the characters are cardboard thin, and you don't learn very much about them, and sometimes the pace is uneven. Sadly, the breathtaking scenery is spoilt by rather slapdash camera work, that looked rushed constantly.<br /><br />All in all, does have its good points, and certainly watchable. However, for my taste, it is harmless and predictable teenage fluff. 4/10 Bethany Cox\r\n0\tFirst of all my heartfelt commiserations to anyone who bought a cinema ticket in the hope of seeing a film in the same mould as the fantastic Gregory's Girl and Local Hero but ended up leaving the theatre feeling disappointed and vaguely cheated. While it's true that sequels are usually, bar a few notable exceptions, a mistake and exist merely to provide studio executives with an opportunity to cash in on the success of a previous film by offering us either a thinly disguised retread of the original story or a plot line so far removed from the intentions of the original that the resulting film makes no sense. In the case of Gregory's Two Girls, Bill Forsyth has the dubious honour of managing to commit both sins - on the one hand revisiting the plot of Gregory's Girl, while at the same time serving up a frankly incredible and moronic storyline involving Scottish arms dealers. Schoolboy Gregory is now a teacher at the same school where at the tender age of sixteen, he harboured a hopeless passion for the football playing Dorothy. Although now thirty five, Gregory still harbours a hopeless passion but now for the football playing Frances, also sixteen, despite the fact that music teacher, Bel has made it clear that she is attracted to him. His passion for Frances and his desire to impress her lead to his involvement in a scheme to expose a local arms dealer who also happens to be an old schoolfriend. There's no point in going any further as the rest of the story is forgettable and the ending makes no real sense at all. The main problem lies with the character of Gregory himself, in that there is no sign of the endearing and charming sixteen year old Gregory who actively and comically pursues Dorothy convinced that he would eventually win her over. At thirty five, Gregory is presented to us as a rather sad and friendless creature whose life is neither active nor comic. Outside of work his time is spent watching videos of Noam Chomsky and reading magazines about international injustices. As his friends and family from the previous film have seemingly vanished, save two pointless scenes with his younger sister, who no longer offers him advice or seems at all interested in his life, we are left confused about what it is Gregory really wants, who he is and why he is the way he is. Why for example is he friendless? Why does he never see his father, who is clearly still alive? Why has he returned to teach at the school he once attended? Why is he so interested in Noam Chomsky and injustice? Why has he become so apathetic? Why is he attracted to Frances? Why isn't he attracted to Bel until the last twenty minutes of the film? What in heaven's name do Bel or Frances see in him as he is neither drop dead gorgeous or even interesting? Why does he continue to try and impress Frances even after he and Bel have become an item and when their association threatens to completely disrupt his life? Are we really to believe that a Scottish arms dealer openly selling weapons of torture to oppressive regimes could manage to evade media scrutiny but fall foul of a couple of school-kids? Does Gregory really think that dumping a handful of computers into the sea will change anything? To make matters worse, actor John Gordon Sinclair attempts to rehash his performance as the adolescent Gregory right down to the facial expressions and awkward body language. Unfortunately on a thirty five year old it just comes across as odd and vaguely creepy. On top of that, it's hard to feel any sympathy for, or empathy with a teacher who has erotic dreams involving sex with one of their uniform wearing pupils while they both lie on a pile of gym mats. Rather than being amusing it simply smacks of paedophilia. It's hard to know what was going through Bill Forsyth's head when he wrote this script or why he thought fans of the original film would embrace a story so completely lacking in the charm, wit and warmth that turned the first movie into a classic. I can only assume that the plan was to craft a film about a man who was refusing to grow up and commit to adult life and perhaps whose happiest memory was of being sixteen and pursuing the best looking girl in the school but who by degrees is forced to accept that a life lived in the past is no life at all.That at least could have been the basis of a film which was thematically interesting and intelligent. As it is Gregory's Two Girls adds up 116 wasted and pointless minutes saying nothing and signifying even less. Gregory's Girl was responsible for launching Bill Forsyth's career, here's hoping that Gregory's Two Girls won't be responsible for sinking it.\r\n0\tViewers gushing over everything including the title sequence (now THAT is funny) would have us believe this is some sort of cinematic miracle, but, trust me folks, this is one of the most embarrassingly bad films you could ever see, and if you're not laughing at it five minutes in, I'd say you've lost your sense of humor.<br /><br />David Niven plays a doomed and bravado-besotted RAF pilot who somehow thinks it appropriate to engage an impressionable (female) air traffic controller in an emotional conversation about love, just as he's plunging to his certain and fiery death. (Isn't it romantic...) Of course, he's spared by a quirk of metaphysical chance, and washes up on the beach, just as this same air traffic controller is riding by on her bicycle. (They immediately clinch).<br /><br />Looking past the bizarre homo-erotic subtexts, (so over the top you really need to refer to them as supertexts, from a naked boy sitting bare-butted in the sand playing the movie's twilight-zone-esquire theme on his little flute, to a celestial courier so campy/queen-y his makeup is caked on more thoroughly than the ladies'), the most bizarre aspects of the movie are how it weaves such bad caricatures of national and racial stereotypes into a convoluted attempt to argue some kind of point about the universal nature and power of love. We get it--fly boys like girls in skirts and heels, and girls like 'em back, and, apparently, all you have to do is cry a little to make it noble enough for your movie to get 10 stars on IMDb...<br /><br />As for the quality of the production, the continuity/editing is poor enough to induce cringing, and the lighting is, perhaps, even worse than that, but you hardly have time to notice because the script is so bad. There are games played with Technicolor, (whatever passes for heaven is in black and white if you can figure out the sense in that), and foreshadowing, (so funny my fellow audience member who usually like movies like this actually cheered and laughed when then the doc's motorcycle finally ended up in a fiery wreck), and freeze-motion, (which is funniest of all because the female lead is so poor at standing still you know the stage hands were guffawing off camera).<br /><br />The best shots are the early ones on the beach, but, after that, it's all downhill. The (moving like an escalator is moving) staircase is hardly the Odessa Steps, to say the least, and I'd really caution anyone from feeling like they'd have to see this lame attempt at movie-making on their account. The movie overall is bad enough to be funny, and that's about the best thing I can say for it.\r\n0\t\"This is a very cheaply made werewolf flick. The video is dark and poorly lit. The audio is uneven and poorly recorded and mixed. The script is cliche ridden junk with the usual characters like the tough detective who shoots werewolves with his silver handgun! [filled of course with silver bullets]. The acting is as wooden as the characters. The FX are non-existent,lots of extreme close-ups of werewolf jaws and biting. the only thing that is shown is lots of soft-core T&A. Instead of dropping $30 for this tripe check out a really great recent werewolf pic: \"\"Dog Soldiers\"\" with Sean Pertwee.\"\r\n0\tMy friends and I went into this movie not knowing what to expect, but hoping for the best. When we came out, we were only slightly more informed on what the plot of the movie actually was. Though not the worst movie I've ever seen, I definitely do not recommend spending your money to see it in theaters. Maybe have a friend rent it for you (it's not even worth the rental cost, either) if you really want to see it.<br /><br />When a movie is so convoluted that you have no idea what's going on until the last five minutes, there's really not much that can be said in its defense. The acting was decent, more than you'd expect to get from this movie, and some of the shots were good, but it was all bogged down by a lame plot and poor script.<br /><br />This movie was actually so bad that as soon as it got out, I went and purchased a ticket to see a good movie just to cleanse my mind. I recommend that all of you just skip the first step and go see a good movie instead.\r\n0\t\"Has to be one of the worst wastes of 35mm movie film ever unleashed on the public, the sequel to the at least entertaining pseudo-documentary original film \"\"The Legend of Boggy Creek\"\". Bad script, worse acting, etc., etc., Dawn Wells had to be hoping that Gilligan would come rescue her and take her back to the island just to escape from this piece of clap-trap.\"\r\n1\t\"Tarantino once remarked on a melodrama from the 1930s called Backstreet that \"\"tragedy is like another character\"\" in the film. The same could be said- and not withstanding bringing up Tarantino- for Sidney Lumet's best work in years, a melodrama where character is of the utmost concern not simply because of what's at stake with the cast involved. Kelly Masterson doesn't have a masterpiece of a script here (it basically breaks into crazy killer mode by the end in a series of climactic events that only work by the very end, and even there suspension of disbelief is paramount), but her script does convey character before plot, and in a story where the actions surround a heist it's crucial to know who these people are beat by beat. It's bleak as hell, unforgiving as Satan, but also absolutely riveting 90% of the time.<br /><br />Chalk it up not just because Lumet knows how to handle a non-linear script where we see the day-to-day actions of character to character before during, and mostly after the botched 'mom-&-pop' jewelry store robbery occurs, but because of the formidable cast assembled (which, I might add, is Lumet's specialty). Philip Seymour Hoffman and Ethan Hawke are brothers with their own respective financial f***-ups, and the former approaches the latter on what looks like a fool-proof heist: looting their own mother and father's jewelry store in Westchester. Hawke's Hank involves another shady character though, murders occur, and suddenly it's tragedy on a Greek scale affecting the brothers and their father, played by a perfect Albert Finney. It's the kind of material that most actors love- characters who, like in Dog Day Afternoon, are painfully human, flawed to the bone but only wanting love &/or things to be set right, and have the complete inability to fulfill their wants and needs.<br /><br />In this case though Hoffman and Hawke are matched splendidly; Hoffman has, until the aforementioned last ten minutes, a super-calm and occasionally joking demeanor that reveals him as the brains of the operation, but then smaller scenes where he breaks down emotionally (i.e. with Finney or the car scene with Tomei) push his talents to the limit; Hawke, meanwhile, is called a loser by his ex-wife and daughter, can't pay any debts at all, and is called a baby by his own father, and he fills the bill of the part in all the ways that matter- he's not quite as flawed as his older brother, but who wants to pick a straw for that title? And Finney, as mentioned, is spot-on all the way through, making his turn in Big Fish look like child's play (the final scenes with him are terrifyingly tragic, his face recoiling in a horror that has built up all through the second half).<br /><br />Also featuring supporting turns from a finely ditsy and perversely two-timing Marisa Tomei, Bug's Michael Shannon as bad-ass white trash, and Amy Ryan, Brian F. O'Byrne and Rosemary Harris making brief, exact impressions, this is a film with a tremendous lot of skill and heart- but not a forgiving heart- with a story that doubles back on details not for showy plot devices but to make clear every step of a family's perpetual downward spiral. If it's not as mind-blowing as Serpico or Network or the Pawnbroker or 12 Angry Men it comes as close as anything Lumet's done since.\"\r\n0\t\"I had to endure teen-aged, high school angst and family conflict for almost all of the show. I really do not care about high-school girls fretting about their relationships. I've spent my time in Hell dealing with such issues and I care nothing about fictional teenies going through \"\"lite\"\" versions of the horrors I endured. I want science fiction. That's the only reason I'm here. There were a few seconds of science fiction late in the show. We FINALLY see a proto-Cylon. It was good but with one problem. Its red eye-dot would lock onto an object of interest. We all know that Cylon eyedots always scan back and forth, giving the machine a map of the world. The red eye-dot does not ever stop moving back and forth.<br /><br />I really hope the writers fix this abuse before the second episode.\"\r\n0\tThe only thing worse than surfers without any waves is a film about surfers without any waves. For viewers who love surfing this film will be a gigantic disappointment since the total number of minutes of surfing footage struggles to reach three.<br /><br />The story is a slice of life about beached surfers who are waiting not for the perfect wave, but for any wave at all. J.C. (Sean Pertwee) is an aging super surfer who is flirting with a commitment with his girlfriend Chloe (Catherine Zeta Jones). Just as he is about to find grown up bliss with the woman he loves, three old surfing friends turn up and convince him to hit the beach looking for monster waves at the Bone Yard. The trouble is, there are no waves until the very end of the film, so most of the story dissipates itself on a meandering succession of disconnected beach happenings.<br /><br />The acting is mostly mediocre. Sean Pertwee has a few comical moments, but mostly his acting was mundane. Ewan McGregor was decent as the drug dealing wild man, by far the most interesting and peculiar character of the bunch. Probably the funniest performance was turned in by Peter Gunn as Terry who turned his corpulent body into a continual sight gag. Catherine Zeta-Jones was sexy as usual, but her character didn't really have enough meat for her to show much acting ability.<br /><br />There is really not much here on which to comment. I rated it a 3/10. It's a real beach bummer.\r\n1\t\"The person who wrote the review \"\"enough with the sweating and spitting already\"\" has no grasp of what cultural, literary, or psycho- critique is. He dismisses Zizek's interpretations because they don't seem \"\"in line\"\" with what the director originally intended. So What? The importance of a director's (or author's) intention is not important in critical theory. This is known as the author's \"\"Intentional Fallacy\"\" and should be avoided.<br /><br />http://en.wikipedia.org/wiki/Intentional_fallacy A text or movie CAN be analyzed through a number of theories, many of which disagree with one another, as well as completely ignore the author's intention. This is the most fundamental idea of Critical Theory.<br /><br />Because of this, whoever wrote that wall of text wasted a lot of time and effort on insulting Zizek. In reality, anyone who studies theory would immediately discredit this guys opinion (I suggest you should too) as it is completely off point.<br /><br />That being said... If you are at all interested in Freudian, Laconian, or Kristevian discourse, this movie is a must. It connects these theories with popular film, making them much more palpable and enjoyable than simply reading or thinking about them.\"\r\n1\tWith part reconstruction and part direct shooting, the directors made a formidably limpid documentary on a coup d'état against President Chavez in Venezuela, organized by a foreign secret service and fully supported by the wealthy Venezuelan minority, the political opposition, the Church (a cynical laughing cardinal) and the US government. It was another chapter in the history of US foreign policy, which Steven Kinzer calls 'Overthrow' or 'sowing democracy American style'. In fact, this foreign backed intervention was not only a coup d'état against President Chavez, but also against the democratic majority which elected him. <br /><br />That this is a brilliant documentary is mightily confirmed by the violent reactions for and against it on Internet. As Saint Augustine said: 'Men love truth when it bathes them in its light; they hate it when it proves them wrong.'<br /><br />This movie is a must see for all those who want to understand the world we live in.\r\n1\t\"I decided to watch this because of the recommendations from this site. I would have to say it was worth the effort. However, you should take heed that this film will go on for 210 minutes. If you don't have the staying power, get it on tape and watch it over a couple of nights.<br /><br />Now to the film, what I say will contain \"\"spoilers\"\" and if you don't mind, here goes: <br /><br />Alexandre is a promiscuous bum, a womanizer and a gigolo. He lives with an older woman called Marie. Marie owns a retail shop and she provides for Alex. Alex spends his days at cafés and restaurants. The story reveals that Alex had previously impregnated Gilberte whom he used to live with. Gilberte dumped him for a less attractive man that she did not love because Alex had abused and battered her. At this point, Alex was willing to get a job and and help raise their child before he found out Gilberte had aborted it and planned to marry someone else. <br /><br />By chance, Alexandre meets a nurse nymph called Veronika and they striked up a relationship. Veronika fell in love with Alex for the first time after all the sordid sex she had with men in the past. Marie and Veronika struggles for Alex's affection and had a ménage à trois to boot. Finally at the end, it's revealed Veronika is pregnant with Alex's child and Alex asked her to marry him. We assume (as aforesaid with Gilberte's situation) Alexandre will even get a job and be the provider for his new found love and family. There is hope! <br /><br />With the title of \"\"La Maman et la putain\"\", I deduce Jean Eustache was relating to Françoise Lebrun's character of Veronika. She was a whore and then she became the mother. Hence, the mother and whore is the same person? Anyway, what do I know! French films are mostly (not all) very chatty, aimlessly political, preaching, theatrical, insipid, lamenting and full of quotes. Lebrun and Léaud played their obdurate characters well and held the film together as some part of the script became a little lost and disjointed. <br /><br />Not a bad effort. 7/10.\"\r\n0\tYou might be tempted to rent this film because Peter Sellers appears in it. That would be a mistake. This is one of the most pointless films ever made. I kept waiting for something funny to happen, but nothing funny appears in this movie. Even the film industry recognized this was a very weak film and didn't even try to promote it. Its a wonder that it was ever put on video.<br /><br />I wonder what sort of contract caused Sellers to be in this film. I also wonder why the people responsible for this film were allowed to go on to make other bad films. Surely this film is a waste of the money used to create it, and a waste of anyone's time watching it. Surely there are high school students who would be able to write/produce a film which as a plot.\r\n1\t\"Strangely, this version of OPEN YOUR EYES is more mature and more nuanced. Aided by hindsight, Crowe's screenplay is a lot tighter and more fleshed out than Amenabar's original. The Spanish filmmaker should get credit for thinking of the story first, but there's no doubt that Crowe has improved on it -- if just slightly. Notice that you have no idea what the lead did in OPEN YOUR EYES, but you know almost everything about the lead in VANILLA SKY. That's what i mean by more \"\"fleshed out.\"\"\"\r\n0\tIf this movie were more about Piper Perabo's character and less about the bar, this might have been halfway decent. Piper's Violet Stanford and Karen Friendly (Adventures of Rocky and Bullwinkle) both have a virgin kindegarden teacher quality to them that's endearing. Here's hoping she'll find a better movie to be in.\r\n1\tThis is the movie I've seen more times than any other (I believe I saw it on average once every year since it was released). And every time I see it, it is equally fantastic and always reveals something new to me. The cast was most probably a combination of the very best there ever was in ex Yu cinematography. This movie is an absolute must for any self respecting movie lover. In the same league: Maratonci trce pocasni krug, Balkanski spijun and Otac na sluzbenom putu. This is a poker of movies everyone should have in his private video collection.\r\n0\tThis film is probably pro-Muslimization. <br /><br />Why do I write that? The main character has a Muslim father and a Christian mother. He lives his first 20 years in a Christian village. In the end of the film he seemingly is a Muslim because of his head-wear, that he has kept his amulet, and his general clothing. He has a six year old child, who wears the same head-wear and therefore is probably a Muslim, although the mother is a Christian. The main character thus chooses to, it seems, to be a Muslim and his child becomes a Muslim. No one of the other male main characters, which are Christians, seems to breed a child. There are more Muslims in the world of this movie at the end of it, it therefore seems.\r\n1\t\"Life Stinks (1991) was a step below Mel Brooks other productions. He stars as a rich man who wages an insane wager with his \"\"friends\"\". Brooks claims that he can life like a homeless man for a month. His shocked and amused friends accept this unusual wager. During his \"\"stay\"\" in the Bowery, he meets a bunch of odd homeless people, one of them catches his fancy (Lesley-Ann Warren). They strike up a friendship as she teaches him the many tricks she learned whilst living on the street. Can Mr. Brooks survive on his own without the luxuries of being filthy rich? Will he win this unorthodox wager? Who are his true friends? Find out when you watch LIFE STINKS to find out!<br /><br />This film has been slagged unfairly. Sure it's not a classic like his earlier films but it's still enjoyable. I liked the way Mel Brooks pays homage to Charles Chaplin in this film. If you have watched Chaplin's earlier silent films then you'll get the humor as well.<br /><br />Recommended for Mel Brooks fans.\"\r\n1\tYou don't need to read this review.<br /><br />An earlier review, by pninson of Seattle, has already identified all the main shortcomings of this production. I can only amplify its basic arguments.<br /><br />Bleak House was a relatively late Dickens novel and is much darker than his earlier work. This is taken too literally by the director, Ross Devenish, who piles on the gloom and fog too much. When Ada, Rick and Esther appear, half an hour into the opening episode, it is a relief just to be in daylight for the first time. In some of the murkier scenes it was hard to see what was actually on my TV screen. I watched the whole thing in one day, starting in mid-afternoon. As daylight faded this became less of an issue, but I have a pretty good TV and I have never encountered this problem before at any time of day.<br /><br />The pacing is very deliberate (i.e. slow). I am sure this was intensional, but it is overdone. There are numerous shots of people trudging though the muck and gloom of Victorian London that are held longer than is necessary to establish the mood and atmosphere. A good editor could probably take several minutes out of each fifty-minute episode, without losing a line of dialogue, just by trimming each of these scenes slightly.<br /><br />I don't want to overstate these two problems. You soon adjust to the look and pace of this production. The more important issue is that it doesn't always tell the story very effectively. Earlier Dickens novels are as long as Bleak House, but are not nearly so intricately plotted. For example, I recently re-read Nicholas Nickleby because I was intrigued to see how Douglas McGrath crammed an 800 page book into his two-hour movie. The answer is simple: the book is full of padding. McGrath cut great swathes of the novel while still retaining all the essential story elements. This would not be possible with Bleak House. <br /><br />This production needs its seven hours. Probably, it needs even longer, because many elements of its convoluted plot are not sufficiently clear, or as well handled, as they need to be. A few random examples will illustrate the problems.<br /><br />The maid, Rosa, appears from nowhere with no background, so Lady Dedlock's attachment to her is largely unmotivated.<br /><br />Sergeant George's acquiescence in Tulkinhorn's demand for a sample of Horton's handwriting is somewhat fudged.<br /><br />It is not made clear enough that Esther is actually in love with Woodcourt when she agrees to marry John Jarndyce. Neither is it clear that they have agreed not to announce their engagement, or why.<br /><br />Ada and Rick's secret marriage is omitted. In one episode they are merely lovers, in the next, people are suddenly referring to them as husband and wife.<br /><br />Mrs Rouncewell is only introduced at a late stage in the story and Sargeant George's estrangement from his family is left unexplained - as is the means by which she is discovered.<br /><br />Tulkinhorn's dedication to maintaining the honour and respectability of the Dedlock family is understated, so his motive for persecuting Lady Dedlock is more obscure than it need be.<br /><br />The involvement of the brick makers with both Tom and (later) Lady Dedlock is somewhat opaque.<br /><br />It is not obvious that Guppy renews his offer to Esther because her smallpox scars have all but vanished.<br /><br />This is only a selection: there are others. They are not major problems and the main thrust of the story is clear enough. Nonetheless, they are minor irritations that detract from its power: you shouldn't have to puzzle over little plot points. However, there are more important structural problems that do weaken the story in its later stages.<br /><br />The whole business of Tulkinhorn's murder is somewhat thrown away. Bucket immediately pinpoints Hortense as a suspect, which undermines the suspense of Sergeant George's predicament and the importance of finding Mrs Rouncewell. It also diminishes the impact of the sub-plot in which suspicion is thrown on Lady Dedlock and weakens the scene in which Hortense is unmasked in front of Sir Lester.<br /><br />A more serious problem is that the murder, its investigation and the subsequent search for Lady Dedlock, dominate the story for over an hour, during which time we completely lose sight of the other main plot strand: the legal case and its effect on Rick. His failing finances, his gouging by Vholes and Skimpole, Ada's despair, his declining health and so on, are all put on hold for an entire episode. This may be how Dickens wrote the book (I haven't read it for years) but a good screenplay should keep the different plot strands moving forward together.<br /><br />Finally, Smallweed's role in the story is so diminished that he is almost superfluous. His discovery of the new will, that triggers the final phase of the story, is also thrown away. It happens off screen.<br /><br />Despite all of this, it is still a very good production. Many of the performances are outstanding. Individual scenes are beautifully realised. Its accumulating sense of tragedy is very powerful. I would still be recommending it as a superb adaptation of a great book, had it not been for the 2005 production. In fact, I probably wouldn't be fully aware of its defects if I hadn't seen how Andrew Davies did it better. I have been critical of Davies's Jane Austen adaptations, but I have to admit that he really knows how to tame Dickens's sprawling books.<br /><br />This is an impressive and gripping drama and well worth seven hours of anybody's time. Nonetheless, its probable fate is to be viewed mainly as a cross-reference to the near-definitive 2005 version.\r\n1\tWith a well thought out cast, this movie was a great comedic relief. The plot is well-written and the cast was knockout. Every bit as good as the reviews suggested (a rarity) and was highly entertaining. Being a huge John Candy fan myself, this movie was no disappointment.\r\n1\tBrokedown Palace is truly a one of a kind. It's an amazing story, showing two girl's plight for freedom against the Thailand justice system. They soon find themselves placing faith into a system they know nothing about.<br /><br />Alice Morano (Claire Danes) and Darlene Davis (Kate Beckinsale), are two best friends, strait out of high school. They suddenly change their vacation plans from Hawaii to Thailand, and are immediately captivated by a young man, Nick Parks. He flirts with them both, and suggests that the three of them go to Hong Kong for the weekend.<br /><br />When the two arrive at the airport, they are immediately searched for drugs. Someone tipped off customs, and in an instant, their life is changed forever. In the mix of the confusion of settling into their new life, they learn about a highly respected lawyer, named Hank Green (Bill Pullman).<br /><br />An American who knows the Thai justice system, he fights for the girl to be free. But they soon find out, when they leave or go is all up to them.<br /><br />If you're looking for a great movie that'll stay with you for years - Brokedown Palace is definitely the way to go.\r\n0\t\"Unless you are already familiar with the pop stars who star in this film, save yourself the time and stop reading this review after you've reached the end of the next sentence.<br /><br />FORGET YOU EVER STUMBLED UPON THIS FILM AND GO WATCH SOMETHING ELSE.<br /><br />But if you insist on reading, consider: <br /><br />Lame vehicle for Japanese teen idol pretty-boys featuring nonsensical, convoluted \"\"plot\"\" that drags out for an insufferable amount of time until you're ready to scream.<br /><br />Nothing in this film makes sense. It's an endless series of people expressing various emotions, from joy to anger, from happiness to tragedy, FOR NO GOOD REASON. We can obviously see something incredibly \"\"dramatic\"\" is happening, but we just don't GIVE A CRAP WHY 'cause there's no backstory.<br /><br />By the time this film is over, you will be sick and tired of these stupid, lanky, girly stars' faces. You'll be revolted at having spent all this time watching them smile, sneer, cry, look mysterious, be \"\"serious,\"\" and any other pointless expression they slap on their faces.<br /><br />That some moron would ever go so far as to refer to this piece of insipid trash as being the \"\"soul\"\" of any of its \"\"actors\"\" should prove to you beyond the shadow of a doubt what the trailer and countless adoring comments on this site will not tell you: <br /><br />Only the \"\"converted,\"\" mindless minions will like this film, the majority of them teenage girls with a pathological adoration for anything androgynous. Freud would have a field day.<br /><br />Unless you're one of these mindless \"\"fans,\"\" stay the hell away from this abomination.\"\r\n0\t\"There are plenty of comments already posted saying exactly how I felt about this film so Ill keep it short.<br /><br />\"\"The Grinch\"\" I thought was marvellous - Jim Carrey is a truly talented, physical comedian as well as being a versatile clever actor (in my opinion). Mike Myers on the other hand gets his laughs by being annoying. I used to like him very much in his \"\"Waynes World\"\" and \"\"So I Married an Axe Murderer\"\" days - but Ive never been fond of Austin Powers and \"\"the Cat In The Hat\"\" has just finished me off. <br /><br />This film was horrible - the gags were horrible! inappropriate for children not only in adult content but in the fact that some of them were so dated they havent amused anyone for 50 years! The plot was messy, messy, messy! Its a shame really because the children were very likeable as was \"\"Mom\"\". They probably could have picked a better villain than Alec Baldwin - but he could have pulled it off if it weren't for Myers ugly, revolting over-acted portrayal of the Cat.<br /><br />I mean - did Myers even glance at a script? Was one written? The other actors seemed to have one - but the Cat just seemed to be winging it!<br /><br />On the other hand I would like to mention that the sets and props were marvellous!!! But unfortunately they cant save this film.<br /><br />Poor Dr Seuss - the man was a genius! Dont ruin his reputation by adapting his work in a such a lazy, messy way!!!<br /><br />1/10\"\r\n1\tThough this movie has a first rate roster of fine actors, special effects that are excellent, and a story line that is full of surprises, it wasn't picked up for studio distribution and went directly to DVD. Perhaps it contains too much 'anti-police force' information, or perhaps it is juts one too many action flicks released during a glut, but whatever the reason the big screens missed the opportunity, fortunately the new concept of releasing direct to DVD allows us to enjoy it.<br /><br />The theme is old: rookie reporter uncovers an inner circle of cops that are corrupt - in this case the F.R.A.T. (First Response Assault and Tactical) team, a group of well trained policeman created to clean up the mythical city of Edison from its low point of crime, drugs, prostitution etc. Working undercover the temptation of pocketing the confiscated goods and money proves too much of an opportunity and now, 15 years after its formation, FRAT is responsible for murder, drug trafficking, terrorizing innocent people etc. The lead dog is Lazerov (Dylan McDermott, who makes a terrifyingly real gangster!) and his partner Rafe Deed (LL Cool J, even more buff than usual and proving he can be a sensitive actor). Reporter Pollack (Justin Timberlake) catches wind of a 'bad mistake' and reports his theory of fraud and corruption to his paper's boss Ashford (the always reliably fine Morgan Freeman). Gradually Polack convinces Ashford and subsequently Wallace (Kevin Spacey, also a consistently fine character actor) and they aid Pollack in this investigative reporting. The closer Pollack gets to the truth the more surprises and bad incidents happen and the story runs pall mall toward a series of unexpected results.<br /><br />Timberlake lacks the charisma to carry the lead, especially in the company of such seasoned actors. But LL Cool J, Freeman, Spacey, and McDermott keep the well-oiled machine of a movie rolling to the very end. No, it is not a great movie, but it is one that makes for an edge of the seat action flick with a message. Grady Harp\r\n0\tThe acting was horrendous as well as the screenplay. It was poorly put together and made you almost want to laugh at the several terribly acted out murder scenes. The ending was even worse. Everyone kept dying, but somehow the ending made it look like everything was perfectly OK! They did not give enough history about the obsession the teacher had, etc. The movie needed more time to perhaps develop a better storyline. The only reason I give this 3/10 is that I kind of feel bad for the young actors. They needed better coaching. They could have really made this an OK film, but the screenplay and acting failed miserably.\r\n0\t\"This movie is a terrible waste of time. Although it is only an hour and a half long it feels somewhere close to 4. I have never seen a movie move so slowly and so without a purpose. This is also a \"\"horror\"\" film that takes place a lot of the time during daylight. My friend and I laughed an insane amount of times when we were probably supposed to be scared.<br /><br />The only thing we want to know is why such a terrible movie was released in so many countries. It cannot be that high in demand. <br /><br />The supermodel Nicole Petty should stick to modeling because although she is beautiful she lost her accent so many times in this movie, half of the time she is British and half the time she is American.\"\r\n1\tI for one was glad to see Jim Carrey in a film where being over the top wasn't the goal. His character is like all of us. Wanting more - better things to happen to us and expecting God to deliver.<br /><br />Morgan Freeman made a great God. With a sense of humor and a genuine sense of love for each of us yet ready to take a little vacation when the opportunity presents itself.<br /><br />I thought Jennifer Aniston's character was a little too vulnerable and understanding towards Carry's basically self-centered TV anchorman wanna-be but that's the way it was written.<br /><br />I think the previews ruined several potentially very funny scenes because everyone who saw them knew what was coming before it happened.<br /><br />I have read a number of the reviews and it seems some people are looking a little too deep. This is a summer comedy and is not meant to solve the problems of the world although there are a few messages we could all take to heart.<br /><br />A funny film.\r\n0\t\"Devil's Experiment: 1/10: Hardcore porn films fall into two categories those with a semblance of plot (Gee that is one lucky pizza boy) and those without (Anal Amateurs 36). Devil's Experiment falls solidly into the latter category. <br /><br />It is of course the horror version of hardcore porn. An almost completely plot less 43-minute wait for the money shot. Shot on video in 1985 it consists of three relatively non-descript Japanese boys torturing one fairly unattractive Japanese girl. The tortures range from the banal (slapping her 50 times, kicking her a hundred), the silly (tying her to an office chair and spinning her around), the fear factor (a bath of maggots and sheep guts) and finally the money shot. (A well executed eyeball piercing). <br /><br />That's it, no plot, no motive, just Blair Witch tree shots and torture. The girl looks bored and with the exception of yelling, \"\"no one expects the Spanish Inquisition\"\" during the office chair scene I was bored silly. Staring dumbfounded at the screen, waiting for the money shot. Just like hardcore porn.\"\r\n0\t\"...they bothered making this movie? Anyone? I didn't think so.<br /><br />If you are looking for a coming-of-age movie, go rent Summer of '42. This is no Summer of '42.<br /><br />When your big stars are Nolte & Sarsgaard, & Sarsgaard gets more screen time, that is your first warning sign And, of course, for such an \"\"artsy\"\" movie, there is plenty of cursing & skin flung around, just to make it look \"\"artsy\"\".<br /><br />Sarsgaard did his usual uninteresting, cardboard character, punctuated by moments that were supposed to be intense. The intensity is that of someone with bi-polar disorder.<br /><br />Miller is most famous for her looks & what she had to say about the city of Pittsburgh after this movie. Pittsburgh SHOULD hold a grudge against her. She misrepresented an actual Pittsburgh native.<br /><br />Foster gave Sarsgaard a run for his money in the cardboard acting style. Wow! Was this his first role after high school graduation?<br /><br />So, we have this weird triangle. Foster has a crush on Miller, but is with his boss/girlfriend. He can't take Miller to bed, & won't take his boss to bed. So, he hangs with Sarsgaard & Miller, & watches them get it on.<br /><br />Then, after one of Sarsgaard's pseudo-intense moments, Foster & Miller get it on, a scene that we are \"\"treated\"\" to in every sloppy, moaning detail. Finally, just to round it all out, Foster & Sarsgaard get it on, with Foster in the Miller role. Now I know how 2 guys get it on (as if that was ever anything I needed to know).<br /><br />After all that, all that's left is the tragic ending for one character & the retrospective views of the remaining 2. It gets me right in the pit of my stomach. Oh, wait! That was the pepperoni pizza I just had.<br /><br />I'd like back the time this movie took out of my life, please.\"\r\n1\tThis is movie is very touching. I don't care what people say about this movie, this is a very good movie. The performances by Amitabh Bachchan's role has the dying father is great, because he wants to teach his son how to handle life in case something happens to him and Akshay Kumer was great in his role as the spoiled Aditya Thakur. The supporting role of Shefali Shetty who played the role of Sumitra Thakur was magnificent. Priyanka Chopra was good in her small role she had in the movie. Ragpal Yadav as the brain-dead servant and Boman Irani as the show-off father-in law have a very good connection and the comedy scene's were hilarious. The direction is very good.\r\n1\tOne of my all-time favorite so-laughably-lousy-that-it's-totally-lovable el cheapo and stinko nickel'n'dime independent horror creature features, an enjoyably dreadful marvel that was released by the formidably fecund exploitation outfit Crown International Pictures so it could play numerous crappy double bills at countless drive-ins back in the 70's and eventually wound up being rerun like crazy on several small-time secondary cable stations throughout the 80's. I naturally first saw this gloriously ghastly abomination on late-night television one fateful Saturday evening while in my early teens and have had a deep-seated, albeit completely irrational abiding fondness for it ever since.<br /><br />A meteorite falls out of the sky and crashes into the still waters of a tranquil country lake, thereby causing a heretofore dormant dinosaur egg to hatch. Of course, the baby dino immediately grows into a gigantic waddling, grunting, teeth-gnashing prehistoric behemoth with goofy flippers, an extended neck and a huge mouth full of little sharp, jagged, stalagmite-like chompers. Our Southern-fried male cousin to the Loch Ness Monster promptly starts chowing down on various luckless local yokel residents of a previously quiet and sleepy hillbilly resort town. It's up to drippy stalwart sheriff Richard Cardella, assisted by the painfully idiotic hayseed comic relief brotherly fishing guide duo of Glenn Roberts and Mark Seigel, feisty gal pal Kacey Cobb and terminally insipid nerdy scientist Bob Hyman, to get to the bottom of things before the over-sized gluttonous Jurassic throwback ruins the tourist trade by eating all the campers and fisherman that the hick hamlet makes its cash off of.<br /><br />Director/co-screenwriter William R. Stromberg displays a wonderfully woeful and thoroughly clueless incompetence when it comes to pacing, atmosphere, taut narrative construction and especially eliciting sound, credible acting from his hopelessly all-thumbs rank amateur community theater level cast. The performances are uniformly abysmal: Cardella is way too bland and wooden to cut it as a solid heroic lead while the pitifully dopey redneck comic antics of Roberts and Seigel provoke groans of slack-jawed disbelief -- you aren't laughing with these two atrociously mugging clods so much as at them, particularly when the insufferable imbeciles discover a severed head bobbing up and down in the murky lake water. Better yet, a clumsily integrated sub-plot concerning a vicious on-the-loose criminal leads to a spectacularly ham-fisted supermarket hold-up scene which degenerates into a hilariously stupid mini-massacre when a young lady shopper interrupts the stick-up artist in mid-robbery! A subsequent car chase is likewise severely bungled as well; it's so limply staged and unimpressive that one feels more relieved than scared when the monster abruptly pops up to devour the nefarious fugitive. Moreover, David Allen's funky herky-jerky stop motion animation dinosaur is the authentic gnarly article, projecting a certain raw charisma, sneaky reptilian personality and overall forceful screen presence which makes all the horrendously underwhelming human characters seem like pathetically unbecoming nobody bores in comparison. And as for the rousing conclusion where the sheriff takes on our slavering beastie with a bulldozer, the operative word for this thrilling confrontation is boffo all the way.\r\n1\tWell, it definitely is unlike anything else directed by Lynch. No supernatural stuff, no violence, no profanity. Nevertheless, it is a beautiful flick. It's a little slow but perhaps that was intentional because it's the story of an old man's 6-week(that's my best guess for its duration) journey. The characters are everyday people and thus, they are believable. The performances are good and the final scene was incredibly touching. Everyone who has a sibling can relate to it. Lyle and Alvin don't even have to say anything. For a moment they are back in the old days and all the fighting is forgotten.\r\n1\t\"In this swimming pool, this pond, there are water lilies and there are frogs. Frogs sit on water lilies. The frog and water lily have a parasitic relationship. Marie(Pauline Acquart) is a water lily, a synchronized swimming groupie with a crush on Floraine(Adele Haenel), a frog, the captain of her team. Floraine's teammates shun their leader because the preternaturally curvy and well-proportioned blonde conveys a loose persona that betrays the syncrhronized swimmer's mindset of conformity and discipline. But Floraine has a secret; the bombshell has a bombshell, which \"\"Naissance des pieuvres\"\" reveals to the audience, visually, before she confides in Marie.<br /><br />Floraine has never gone, as they say, all the way, with a boy.<br /><br />At a party, we see a double-image of the burgeoning sex bomb checking her make-up in a bathroom mirror. \"\"Lolita\"\" is a fata morgana. Marie gets to know Floraine's double while her imitation breaks the water lily's heart. While the frog goes through the motions of catching flies for appearance's sake, she gets chummy with the water lily when no one's looking. In the film's most startling scene, the water lily agrees to give the frog a hand in losing her virginity through the mechanical act of oral stimulation. Floraine wants boys to like her, but she doesn't like boys, seemingly, but it's more important to the frog that she's popular. When the water lily finally kisses the frog, the frog remains a frog. The frog can't transform into a water lily, or a princess, because the water lily lost the frog's respect. After their lips unlock, Floraine tells Marie, \"\"See, it's easy,\"\" which is the frog's way of equating their kiss with the orgasm that her friend gave her as nothing more than a rite-of-passage without any strings attached. Floraine's beauty is a burden. She carries the weight of meeting boy's expectations. Florence uses Marie to have one final fling before her fata morgana subjugates its imitation into the closet.<br /><br />The other water lily, the other frog, Marie's best friend Anne(Louise Blachere) and Floraine's frustrated boy-toy Francois(Warren Jacobs), just like any water lily and frog, have a parasitic relationship, too. While Floraine uses Marie for love, Francois uses Anne for sex. But that's life; that's the treachery of growing up, in which even a friend will turn on a good friend if the opportunity to move up the food chain presents itself. At a McDonalds, the water lily chastises the other water lily after bathing extensively in the frog's afterglow. Physical beauty is a currency. Marie gets to call the shots because Anne, although far from being ugly, is overweight and has an unflattering hairdo. Anne tries to fight back by using her breasts as ample retaliation(the magnifying glass from her Happy Meal incidentally comments on Marie's flat chest), but the tadpole(Marie thinks she's better than Anne, better than a water lily) points out that her breasts are a byproduct of fat. <br /><br />Teenaged girls can be brutal to each other.<br /><br />Later, in the final shot, \"\"Naissance des pieuvres\"\" suggests that Marie has a double, too, and this symbiosis among water lilies has the potential to turn parasitic in the near-future, if it not already has. Teenaged girls can be brutal to each other in a way that no boy could match.\"\r\n0\t\"Okay, I remember watching the first one, and boy did it suck. After watching it, I just laughed it off and told myself, \"\"oh boy, just another low budget B-movie. I'll never see a part 2 to this one.\"\" Then, about 1 1/2 years later, there came part two. It sucked even more. But, I just laughed it off again and said, \"\"there's no way I'm ever gonna see a part 3 to this one.\"\" Then, about 1/2 a year later, part 3 came out. I was stupid enough to rent it and boy, I just snapped after watching it. God, I never actually realized how much movies can suck these days. Just save yourself $7.50 and don't rent the whole series. Trust me, it's worth every penny.\"\r\n1\tHi:<br /><br />I heard about lost from a co-worker that had obvious differences of opinion on entertainment, he loved it. Well I watched an episode or 2 in the early seasons and was bored, so I tuned it out. After a few years I stumbled upon lost; bored with the current sci-fi fare. Wow was I surprised. Can you say gravity well, damn I got sucked in. The pace and scripting are very good, some of the flash forward/backs are so so with the lamer characters, but over all good. My favorite characters are Ben, Locke, Jacob, Richard Alpert, Sayid Jarrah, Sawyer, Hurley, Daniel Faraday, Jin & Wife, Walt, Charlie, Desmond, and Jack's dad. Jack and Michael definitely are immature asshats, very spoiled and immature. Kate 1 step above them, Juliet was way more classy than Kate. Mr. Eko way under-rated and on the level of Charlie if not more, too bad they both died. The guy dressed in black talking to Jacob (way back) is a genuine curiosity. As a whole great, very layered series: looking for more.<br /><br />regards\r\n0\tWilliam Shatner in small doses is tolerable. Unfortunately, instead of leaving his character as a minor irritation, and in that moderately amusing, it has been seen fit to enlarge his role and overdo it. Just as occurred in the original Star Trek series. I guess I will never understand American humour, which frequently goes 'over the top' to get the message through. I vote with my feet. I no longer watch the show, which is a shame, because the rest of the cast were good. It is pity that Shatner's overdone role also, affects James Spader's performance. But the majority demonstrate the way society is going, I guess. I don't travel the same routes. Frank\r\n0\tThe storyplot was okay by itself, but the film felt very bubbly and fake. It also had the worst ending. They were probably going for a surprise ending, but all it did was leave me the question of what the whole point of the story was. All other teen movies are better than this one.\r\n0\tAnother vast conspiracy movie that tries to blame the US government and the Armed Forces (especially the Army) for every disaster since the Great Flood. Anyone who has ever served time in the US military can see how bogus this film is. Uniforms, equipment, sets, and mannerisms are all wrong. (And of course, all Senior Officers are either corrupt criminals or total idiots.) Blatant propaganda with no attempt at objectivity. Most of the theories presented have been disproven over the past few years. Uses every cliche', rumor, and Urban Legend from the Gulf-all are presented as gospel. (The truth is, no one knows for sure why some GW vets are sick and others are healthy as horses.) PS This is not new. War is NOT fun and I know WWII, Korean, and Viet Nam vets with some pretty serious ailments, too. (And the government has the responsibility to take care of all of them.) Sensationalistic movies like this will not solve the problem!\r\n0\t\"I'm glad I rented this movie for one reason: its shortcomings made me want to read Allende's book and get the full story. <br /><br />Pros: the movie is beautiful, the period is depicted well and consistently (to the best of my knowledge), and Meryl and Glenn do good jobs.<br /><br />Cons: This is the worst acting job I've ever seen from Jeremy Irons--I kept wondering if something was wrong with his mouth. (And I hate the terribly English way he says \"\"Transito.\"\") Winona Ryder does nothing believable except look young and idealistic. Most of the other performances are OK, but so few things hang together in the character arcs and the relationship development that I was frustrated and angry well before the end. <br /><br />I'm very curious now whether this movie is typical of Bille August's work. I may have to drop another couple of bucks to rent Smilla's Sense of Snow.\"\r\n0\t\"This film is absolutely awful, but nevertheless, it can be hilarious at times, although this humor is entirely unintentional.<br /><br />The plot was beyond ridiculous. I don't even think a 2 year-old would be convinced by the ludicrous idiocy that the film-makers tried to slap together into a story. However, on the positive side, some of the horrifically inane plot twists provide a great deal of humor. For example, \"\"Wow, Lady Hogbottom has a giant missile hidden in her back yard!\"\" It gets worse (and even funnier), but I'll spare you.<br /><br />The acting is generally laughable. Most of the kids' roles are sort of cute, but not very believable. On the other hand, Annie is pretty awful all-around. The adults don't take their roles seriously at all, but this is largely a good thing. If they'd tried to be believable, the film would've been even worse. Which is difficult to imagine.<br /><br />Once you get past the overall crappiness of the movie, there are actually a few standout moments of almost-not-crappiness. The scene where Lady Hogbottom's son runs away with the maid is surprisingly hilarious, though it's an annoying letdown when they get caught by the police. The butler character, while very minor, is a ray of sunlight that almost, but never quite pierces through the gloom.<br /><br />Watching this movie actually caused me physical pain. Nevertheless, there were a few redeeming parts that made it almost watchable without beginning to hemorrhage internally. Judged on its good parts alone, the movie would be about a 5; unfortunately, the rest of the movie hardly deserves a 1. Thus, I give it a 3.<br /><br />That's being pretty generous, I'd say.\"\r\n1\tWent to see this finnish film and I've got to say that it is one of the better films I've seen this year. The intrigue is made up of 5-6 different stories, all taking place the very same day in a small finnish town. The stories come together very nicely in the end, reminding, perhaps, a bit of the way Tarantino's movies are made. Most of the actors performed very well, which most certainly is needed in realistic dramas of this type. I especially enjoyed the acting by Sanna Hietala, the lead actress, and Juha Kukkonen. I noticed btw that IMDB has got the wrong information about Sanna. Her name, as you might have noticed in my review ;), is NOT Heikkilä, but Hietala.\r\n0\t\"This is not really a proper review since I did not see most of the film. I stopped watching it. The film is very violent, with nasty drug dealers and street punks, but that is not why I stopped watching.<br /><br />Here was the problem: I watched just enough to be introduced to several characters, all of whom were not interesting. Everyone was a tedious, despicable psychopath, with no engaging personalities, giving me nothing to look forward to. I found myself not the least bit curious about what they would do next or what might happen to them.<br /><br />If there had been even one person of interest, and I don't mean good or nice person, I mean an interesting person, I could have stayed with it. Watch \"\"State of Grace\"\" to see what I mean. In that film the Gary Oldman character is a complete lunatic, but he is *very* interesting. Al Pacino perhaps did a good job in Scarface, but his character just did not engage me.\"\r\n1\tThe League of Gentlemen is one of the funniest, strangest, darkest and most unforgettable comedies of our time. So much so, it paved the way for more comedies of its ilk, many of which have copied the style, but have never succeeded.<br /><br />Unlike every other sketch show around, the characters of The League of Gentlemen are all loosely connected. Firstly they all live in the fictional town of Royston Vasey, in the back of beyond of Northern England. <br /><br />The first characters to greet newcomers are Tubbs and Edwrad, the pig-faced owners of a supposedly local shop situated so far away most of the residents probably don't know of its existence. Other oddities include: the Denton family, with an obsession with hygiene, chastity and toads; Hillary Briss who sells a special yet thankfully unknown brand of meat; Pauline, a restart officer with a sharp tongue and even sharper pens; Mr. Chinnery, kind-hearted vet and menace to all things four-legged; Geoff Tipps, a plastics salesman with a vicious sense of humour, often involving guns, electric tubes and . . . . . . . PLUMS!!!!! <br /><br />Despite being a comedy at heart, The League of Gentlemen often transcends genres whilst never appearing to be spoofing or ripping off other people's material. There are several horror references such as the disappearance of a hiker, a pair of silent twins, an obsessive circus owner, and a sudden outbreak of nosebleeds. Even more striking are moments when the series takes on a more sobre tone and aforementioned characters such as Pauline and Geoff are shown in a more sympathetic, vulnerable light. The film adaptation is the best demonstration of this, but some fans may decide they belong local.<br /><br />The equally underrated third series also takes a different route, instead of sketches each episode focuses on an individual character with each storyline leading to one conclusion involving a plastic bag and a runaway theatre company van. Although many fans may not enjoy the structure of the film or the third series as much as the first two, they're certainly signs to how inventive The League of Gentlemen can be, and how unafraid to explore new areas.<br /><br />In short, The League of Gentlemen is definitely worth a look, as like the welcome signs says: YOU'LL NEVER LEAVE!\r\n1\tFirst of all for this movie I just have one word: 'wow'. This is probably, one of the best movies that touched me, from it's story to it's performances, so wonderfully played by Sophia Loren and Marcello Mastroianni. I was very impressed with this last one, because he really brought depth to the character, as it was a very hard role. Still, the two of them formed a pair, that surprised me, from the beginning until the end, showing in the way, a friendship filled with love, that develops during the entire day, settled in the movie. The story takes some time to roll, as the introduction of the characters is long, but finally we are compensated with a wonderful tale about love and humanity. If you have the chance, see it, because it's a movie that will stay in your mind for many time. Simply amazing - 9/10.\r\n1\t\"Though \"\"The Sopranos\"\" is yet another gift from the megahit \"\"The Godfather\"\" and sequels, which dramatized and to a certain extent glamorized the mafia, \"\"The Sopranos\"\" takes another tack. No suited up, classy mobsters here with homes in Lake Tahoe and stakes in Vegas casinos - these guys are goombahs, with a front of waste management, who deal with things that fall off the back of trucks, topless bars, protection money - in short, what the neighborhood mobs were all about.<br /><br />Colorful characters dominate this series, which doesn't hold back on the sex and graphic violence. Tony Soprano (James Gandolfini) is a mob head with a wife and two children, living in New Jersey, who suffers from panic attacks as he tries to balance his biological family with his mafia one. To get to the bottom of his attacks, he sees a psychiatrist, Jennifer Melfi (Lorraine Bracco), who is afraid of him and yet attracted to him at the same time. Tony's henchman - Paulie, his nephew Christopher, his Uncle Junior (the titular head of the mob), his good friend Pussy - are all fully fleshed-out characters.<br /><br />As we learn going through the series, there are enemies not only from without, but from within, and one of those enemies includes Tony's sickly but horrible mother (Nancy Marchand), who convinces Junior that Tony is a danger to him. Tony's sister Janice, meanwhile, is searching for money in her mother's house with a stethoscope and a Geiger counter. Tony has mistress problems, and a wife (Edie Falco) who puts up with a lot because she loves him, all the while keeping ties to her Catholic religion. \"\"The church frowns on divorce,\"\" she tells one woman contemplating a split. \"\"Let the Pope live with him,\"\" is the response. As far as Tony's mistress problems, his psychiatrist points out that Tony is attracted to demanding women for whom nothing is ever enough, and asks him if it sounds familiar. Yeah, it sounds like his mother.<br /><br />I'm of Italian descent, and yes, I'm sick of Italians being shown in a negative light and everyone assuming all Italians are mobsters. Yet you can't help liking this show, which is a constant reminder of our culture. (Thanksgiving, it's pointed out, isn't turkey and sweet potato pie - it's the antipasto, the manicotti, the meatballs and escarole, and then the bird!) Not to mention, the right-on pronunciation of words like melenzana (mullinyan), escarole (scarole), manicotti (manigot) etc. The only un-Italian thing about Tony is that he doesn't have a finished basement, something unheard of in the rest of my family (except my parents never had one either).<br /><br />The standouts in this show are Gandolfini, as a ruthless gangster on antidepressants, Falco, who is brilliant as his wife, and Bracco as the tortured Jennifer. But everyone is excellent. If you can take the violence and the language, this is a great show, an unrelenting portrait of New Jersey mob life.\"\r\n1\tBrilliant movie. The drawings were just amazing. Too bad it ended before it begun. I´ve waited 21 years for a sequel, but nooooo!!!\r\n0\tThis movie could had been an interesting character study and could had given some insight on its subject but real problem with this movie is that it doesn't have any of this in it. It doesn't give any insight-, or solutions to the problem. It's just the portrayal of 'old' male sex addict and the problems this is creating for his every day normal life and family. Why would you want to watch this? It's all so totally pointless and meaningless.<br /><br />It also really doesn't help that the main character is some wrinkly 50+ year old male. You'll have a hard time identifying yourself- and sympathize for him. He just seems like a dirty old playboy, who is an a constant hunt for woman and sex. He has all kinds of sexual intercourse's about 3 times a day with different woman and not just only with prostitutes.<br /><br />It also doesn't have a bad visual style, though it all feels a bit forced. But nevertheless it's all better looking than most other direct-to-video productions. Who knows, if the film-makers had been given better material to work with, the movie would had deserved a better faith.<br /><br />The story really gets ridicules at times. There are really some pointless plot-lines that are often more laughable than they were obviously supposed to be. I'm talking about for instance the whole Ordell plot-line. Things get worse once they movie starts heading toward the ending. Also the whole way the story is being told, cutting back and forth between the events that happened and the main character's sessions with his psychiatrist feels a bit cheap and simple.<br /><br />But as far as bad movies are concerned, this just isn't one of them. It's not really any better or worse than any other random straight-to-video flick, with similar concepts.<br /><br />Still seems weird and quite amazing that they managed to cast Nastassja Kinski and Ed Begley Jr. in such a simple small insignificant production as this one is. Guess they were really desperate for work and money.<br /><br />4/10\r\n0\t\"Chris Rock deserves better than he gives himself in \"\"Down To Earth.\"\" As directed by brothers Chris & Paul Weitz of \"\"American Pie\"\" fame, this uninspired remake of Warren Beatty's 1978 fantasy \"\"Heaven Can Wait,\"\" itself a rehash of 1941's \"\"Here Comes Mr. Jordan,\"\" lacks the abrasively profane humor that won Chris Rock an Emmy for his first HBO special. Predictably, he spouts swear words from A to Z, but he consciously avoids the F-word. Anybody who saw this gifted African-American comic in \"\"Lethal Weapon 4,\"\" \"\"Dogma,\"\" or \"\"Nurse Betty\"\" knows he can elicit more laughter with the F-word than Martin Lawrence and Eddie Murphy put together. Sadly, despite a few witty one-liners, \"\"Down To Earth\"\" hits Rock bottom both as a contrived comedy and an improbable interracial romance.<br /><br />\"\"Down to Earth\"\" utterly destroys any good will that the Weitz Brothers generated with their landmark gross-out face \"\"American Pie.\"\" This disposable drivel qualifies as a contrived as well as confusing comedy with a thoroughly improbable color-blind interracial romance. Unfortunately, a more than competent castamong them \"\"The Full Monty's\"\" Mark Addy, Chazz Palminteri of \"\"Analyze This,\"\" \"\"SCTV's\"\" Eugene Levy, and newcomer Brian Rhodes as Charles Wellington, Jr.are wasted in flat-footed, sketchy roles. Hardcore Rock fans will undoubtedly accuse their favorite comedian with trying to fix something that was never broken. Abysmally written by Lance Crouther, Ali Le Roi, Louis CK, and Rock, \"\"Down To Earth\"\" casts Chris as a messenger who rides a bike by day in the Big Apple and gets booed off the stage at night in Harlem's celebrated Apollo Theatre. Poor Lance Barton (Chris Rock) suffers from severe stage fright. Nevertheless, his charitable manager Whitney Daniels (Frankie Faison of \"\"Hannibal\"\") sticks with him through thick and thin. After Lance learns the Apollo Theatre will hold one final amateur night extravaganza, he implores Whitney to get him in the line-up. Excuse me, but if Lance is such a deadbeat stand-up comic, why does the Apollo keep inviting him back? Meanwhile, fate has something else in store for Lance. While pedaling home on his bike, our protagonist spots a pretty lady, Sontee (Regina King of \"\"Jerry Maguire\"\"), crossing the street, but he doesn't see the bus that collides with him and kills him. Wham! Lance Barton levitates skyward with a halo wreathed around his head. In Heaven, which resembles a cruise ship nightclub, Lance learns that an overzealous angel, Mr. Keyes (Eugene Levy of \"\"Stay Tuned\"\"), timed his death 40 years ahead of schedule.<br /><br />Heavenly honcho Mr. King (Chazz Palminteri of \"\"Analyze This\"\"), God's right-hand guy, apologizes and escorts Lance back to earth. The snag is Lance cannot reclaim his corpse, so he must inhabit another body. The best that Mr. Keyes can come up with is ruthless, white, 60-year old tycoon Charles Wellington. Wellington's adulterous wife Amber (Jennifer Coolidge of \"\"American Pie\"\") and his unscrupulous personal aide Winston (Greg Germann of \"\"Sweet November\"\") have just tried to poison him. Reluctantly, before Wellington's body vanishes, Lance accepts it conditionally as a loaner until Keyes can locate a more appropriate body. Meanwhile, Lance-as-Wellington encounters Sontee again. She is a nurse activist protesting his decision to privatize a Brooklyn community hospital that serves the poor. While Regina King brings a surfeit of charisma to her role as a crusading health care worker, she plays a character who bypasses credible motivation in her affairs with Wellington. Although he is no longer black, Lance not only tries to woo Sontee but also win a gig at the Apollo.<br /><br />\"\"Down To Earth\"\" features Rock in his most unfunny role. The comedian's reason for making this movie seems questionable. Reportedly, he ate lunch with Warren Beatty and told Beatty that he loved the original script that scenarist Elaine May had penned for Beatty. Initially, Beatty tried the race-reversal gimmick himself in his own version by trying to cast Muhammad Ali in the title role of \"\"Heaven Can Wait.\"\" The deal fell through, and Beatty headlined the movie himself. According to Rock, his longtime co-writers and he thought that they could 'annihilate' this classic. Moreover, he justified his choice of \"\"Heaven Can Wait\"\" based on his philosophy to \"\"Do Something you can only do when you're hot.\"\" Earlier, Rock rejected a script about a busload of touring rappers, because he saw little opportunity to stretch his image in such an outing. As a lifeless comedian in \"\"Down to Earth,\"\" Rock doesn't so much stretch his image as he inverts it for the worst! This half-baked concert film with an annoying plot does as much to cremate his comic reputation as it does the Weitz Brothers! You know a film about a comedian is in dire straits when a scene at the nightclub is played so you cannot hear the jokes, only the laughter. Similarly, the casting of Mark Addy as Wellington's butler who speaks the Queen's English but is in reality a commoner from Michigan defies logic, too. Addy is an actual Englishman, and he doesn't have to fake an accent; his accent is genuine. The major overriding quandary with \"\"Down to Earth\"\" is the on-again-off-again, look-a-like switcheroo that the characters make so Chris Rock doesn't disappear completely from the sight for more than a few seconds. Although Chris spends half the movie as white guy Wellington, audiences see him largely as Lance, undercutting the comic irony of watching his stocky, bald-headed, Caucasian white, alter-ego perform ghetto humor and chant derogatory hip-hop lyrics. Incredibly, Rock served double-duty as the film's executive producer and one of its four scribes. The mystery is how such a wealth of talent could grind out such an awkward, misguided muddle of a comedy. About the only redeeming feature of \"\"Down to Earth\"\" is Jamshied Sharifi's superb orchestral film score.\"\r\n1\tThis movie was nominated for best picture but lost out to Casablanca but Paul Lukas beat out Humphrey Bogart for best actor. I don't see why Lucile Watson was nominated for best supporting actor, i just don't think she did a very good job. Bette Davis and Paul Lukas and their three kids are leaving Mexico and coming into the United States in the first scene of the movie. They are going by train to Davis's relatives house. Davis and Lukas were in the underground to stop the Nazis so they are very tired and need rest. But when they arrive home, their is a Nazi living there and their's not much either can do about it. It turns out the Nazi only cares about money and is willing to make a deal with Lukas. Their is more to the plot but you can find that out for yourself.\r\n0\t\"Most would agree that the character of Wolverine is one of the most intriguing characters in comic book history. I'm no Marvel expert, but I did grow up with the adventures of the X-Men and definitely approved of Hugh Jackman's now widely known portrayal of the scruffy Logan. I enjoyed the first X-Men, found the sequel too heavy and messy and liked the third one as comic book entertainment. All through the three movies, I probably enjoyed Jackman more than anything else. I figured the idea of making an \"\"origins\"\"-movie about Wolverine could very well end up being a better movie than all of the three X-Men movies. If we concentrate on one character, I figured there could be a movie that achieves what I found the second movie failed at - being a fairly complex and character driven comic book adventure.<br /><br />The reason that the Wolverine-movie fails is not because the competition is tougher after The Dark Knight. It's not even because of a plot development that is beyond obvious and rudimentary - even though that certainly isn't good - no, it's because the movie doesn't even seem to try. To begin with, this does not qualify as good entertainment. There is something about the action in this movie that comes off as so very, very automatic. With no greater special effects or elements of suspense, and when one event will make you predict the following five, it almost feels like an Uwe Boll movie, imitating an action/adventure movie concept that you've seen a dozen times before. Of course, nothing in this movie is as downright awful as a piece of Bolls**t but when everybody's talking clichés as if they are part of a chain of events that is so standard, you at least make the connection and that surely is bad enough.<br /><br />But there is an even bigger problem. Even a generic action movie is a generic action movie and, by the way, that makes you forgive a lot of plot holes and character stupidities. I think you find the most fundamental flaw in the very title. I mean, \"\"Origins\"\". Really? What to the people behind this movie think about that title? What do they mean?? You want to know the origins of Wolverine? He grew up with his brother. They ran away from home during dramatic circumstances. Then they went off to war. All of them! The Civil War, World War I and II and Vietnam too. Why did they do this? Still unknown. Eventually, the brother (Sabertooth, played by Liev Shrieber) became evil. \"\"How?\"\" you ask. I don't know, it was somewhere between Omaha Beach and Hanoi. \"\"Yeah, but why?\"\" you still ask. I just said I don't know!! The movie doesn't explain. He's evil alright! \"\"Yeah, but... you know, 'origins'\"\"... Yeah, well that's an origin! I mean, duh! Anyway, eventually they end up with a super secret team of mutant elite soldiers. Something with the government, ho-hum. Wolvie gets enough and leave his brother. For six years he's a happy lumberjack with a loved one, who ends up a little defenseless around the time Sabretooth suddenly appears again. \"\"Yeaaah... but... whyyyy?\"\" - Oh shut up! - and Wolvie decides to be a guinneapig for a bunch of evil scientist who make him a flesh-covered metal war animal. He goes after all the bad guys and they come after him and after all the fighting he ends up with his memory wiped, cue X-Men the first movie.<br /><br />There. That's the origin. You can also find it on the back of the DVD cover. The actual movie won't tell you anything else. With no worthwhile scenes of action, no good heroes, villains or characters in general (lines from my couch audience: Fat suit! Token black guy! Oh, I give you 200 in cash if that girl survives this movie.., That is supposed to be Gambit...? mmhm, yeah well... uh-huh, right), not one line of memorable dialog and zero lines to cover a T-shirt with, added to that the common stupid things that ruin the plausibility in general that you might usually forgive...... well, that sounds pretty much like a waste of time, right? Fans will check this out, or have already. There's no stopping that. But if you liked the X-Men movies for no other reason than that they were well-made and entertaining - see them again and do yourself no favors by trying to look for origins where there are none.\"\r\n1\tThere are some things I will never understand; why underwear comes in packs of threes when clearly thats not enough is an example. Similarly, I will never understand this film, and that is brilliant. If you approach this film expecting an actual movie, you might as well be approaching Satan expecting a hug; although that may well be possible if you greet this film's Satanic figures. Take Pitch for instance; the most ineffectual, camp, unhellish portrayal of a devil since Freddy Mercury and Wayne Sleep joined forces to create a ten foot Satan costume from red body paint and horns covered with condoms. However, it does create some of the most hilarious moments of any film ever. Seriously, this is no understatement. The same can be applied to every other character, bar the little girl who acts so sickly innocent she's probably overcompensating for some serious crime she's part of. Then again, if Santa's inter-space recon station is real, there is no chance she could have avoided him this long. Put simply, if you haven't seen this movie, you cannot consider yourself a serious buff. The achingly funny characterisation, acting, concept, and almost-under-the-radar racism makes this a must see above any film to date (if you're after pure laughter that is).\r\n0\t\"This is listed as a documentary, it's not, it's filmed sort of like a documentary but that I suspect was just because then they get away with a shaky camera and dodgy filming. This has just been released in the UK on DVD as an \"\"American Pie style comedy\"\" it's not that either.<br /><br />Basically it follows around a group of teens on spring break as they go to Mexico for cheap booze and with the quest being to get there virgin friend finally laid. Throw is a couple of dwarfs, also on the same sort of quest and you have a non-hilarious tale of drunk teens trying to get some girls.<br /><br />Considering the 18 Rating this has very little nudity, and practically zero sex scenes, mainly I guess the rating is for swearing of which there is plenty.<br /><br />If you like crude Jackass behaviour without the humour, then this may be your thing, if you have any brain cells left then I would probably avoid this!\"\r\n0\tOK, the movie is good but I give it a 1 because the idea of a computer virus becoming an organic virus is pure fairy tale. This kind of crap just adds to those uncomputer savvy moron's paranoid delusions that a computer virus is exactly like an organic virus. First of all, strings of code and dozens of 1s and 0s add up to computer virus. An organic virus is much more complex, even though it's way tinier. Though, it's considered one of the simplest forms in the universe, organic virus's attach burrow into your cells and attach themselves to the RNA, then change your own RNA code. Explain to me how something like that could be processed from a monitor? Maybe the radiation has some effect on the user's cornea that turns your eyeballs into these viruses? I could see that, but obviously, the writer didn't think of that.\r\n0\tThis movie is NOT funny. It just takes the D&D nerd stereotypes and amplifies them. All the main characters make less than 30k a year, they all live with their parents, they're all socially retarded, and they have no luck with women. The jokes are horrible and unimaginative, such as two of the gamers getting beat up by a black midget because one of them had a KKK looking hood on (it was his wizard costume) and the other guy had on a John Rocker warm up (oh how funny, he's a nerd so he doesn't know about sports). You may have to be a childish high-schooler to find any of this stuff funny. Poorly done mockmuntaries are so painful to watch, but obviously extremely cheap to make. I feel sorry for Kelly LeBrock and Beverly D'Angelo. I guess these are the only opportunities available for hotties way past their prime.\r\n0\t\"It's not often I feel compelled to give negative criticism of a film; after all I often feel the maxim, \"\"if you don't have anything good to say don't say it at all,\"\" would be apt advice for the many naysayers we listen to everyday who nitpick at things we like. If it's all the same to you the reader though I feel compelled to point out that with the lone exception of Christopher Walken in a returning role as Gabriel this movie is pathetically HORRID. I say this to you to warn you in advance that even if you are a fan of Walken's deadpan delivery and style or liked the original \"\"Prophecy\"\" that you will be sorely dissapointed. If you buy it, return it. If you rent it, make sure it's only ninety-nine cents.<br /><br />What's wrong with this movie? A full list would take too long to read and would bore you to tears, but a short summary would be the following: the once rather crystalline clear picture of the relationship between angels and mortals of the first film is ripped to shreds. Gabriel is turned from the rather morbid right hand of God he once was (and in this role he is WICKEDLY funny in the first) to little more than a thug for heaven. Since Walken is so good at playing heavies (we all remember Frank White from \"\"King of New York\"\") he is still enjoyable but the supporting cast is an unmitigated and unconvincing mess of mortals and angels alike who couldn't buy a clue for 50 cents. If you can figure out the plot you're a smarter man than I. One gets the feeling we wander aimlessly from scene to scene just to move the film along to Walken's next big line. By the end of the movie you're actually wishing he'd blow his horn and make the walls of Jericho fall on the people who made this un-natural disaster.<br /><br />Bottom line - it's an insult to our intelligence that they made a sequel to this film in the first place. The original told the right story, answered the questions that should have been, and left alone the ones you were meant to ponder afterwards. There are no compelling reasons to follow these characters that was in the first - the priest who lost his faith, the little girl who kept the \"\"big secret\"\", the teacher who protected her children - even Lucifer himself was more interesting BY himself in the first film than all the other characters in the sequel put together. I feel sorry for anybody who sees this film and not the first because they'll probably never want to watch the original and that's a real tragedy.\"\r\n0\t\"Absence of a GOOD PLOT, absence of decent ACTING, absence of good CINEMATOGRAPHY, absence of decent looking SPECIAL EFFECTS...need I go on? Review MAY contain SPOILERS. The actors appear to be READING their lines, and not very well at that. Most of the \"\"actors\"\" were acting like they were in a SECOND GRADE play. The story appeared to have been written by one of the aforementioned second graders...it's not really all that convoluted...it's just so SIMPLE and DUMB, that a person thinks they must be missing something so they think it is convoluted. Nope it's not, it's EXACTLY as SIMPLE as you think it is. I UNDERSTOOD the \"\"film\"\", that's how i KNOW that it STUNK! MOST of the film just had people sitting around talking(reading their lines), TRYING to look sinister. The narrator was ANNOYING. The \"\"special effects\"\" were LAUGHABLE. I love low budget movies. I also like Carolyn Munro, Tom Savini, Jack Scarry, and Michael Berrymore...just not in THIS movie...you can tell they weren't getting paid, or weren't getting paid much, because neither their hearts NOR their talents were in it. I LOVE Tony Todd...however, he was only adequate in this movie. In fact, Tony Todd's performance is the ONLY reason I gave it 3 stars instead of 1...and Tony was only in it for a whole TWO MINUTES (seriously)! I would suggest to fast forward the DVD to the two minute Tony Todd segment. If I had gone to the theater, and paid more than a DOLLAR to see this \"\"film\"\" I would have been P.O.'D and demanded my money back. Hopefully the people who made this will do better next time.\"\r\n1\t\"An American in Paris is a showcase of Gene Kelly. Watch as Gene sings, acts and dances his way through Paris in any number of situations. Some purely majestic, others pure corn. One can imagine just what Kelly was made of as he made this film only a year before \"\"Singin' In The Rain\"\". He is definately one of the all time greats. It is interesting to look at the parallels between the two films, especially in Kelly's characters, the only main difference being that one is based in Paris, the other in L.A.<br /><br />Some have said that Leslie Caron's acting was less than pure. Perhaps Cyd Charisse, who was originally intended for the role could have done better, however Caron is quite believable in the role and has chemistry with Kelly. Oscar Levant's short role in this film gave it just what it needed, someone who doesn't look like Gene Kelly. Filling the role as the everyman isn't an easy task, yet Levant did it with as much class as any other lead.<br /><br />The song and dance routines are all perfection. Even the overlong ballet at the end of the film makes it a better film with it than without. Seeing that there really wasn't much screen time to make such a loving relationship believable, Minnelli used this sequence to make it seem as if you'd spent four hours with them. Ingenious!<br /><br />I would have to rate this film up with Singin' since it is very similar in story and song. Singin' would barely get the nod because of Debbie Reynolds uplifting performance.<br /><br />Full recommendation.<br /><br />8/10 stars.\"\r\n0\t\"Look,I'm reading and reading this comments and there's a lot of it that I wanna say but I will try to make it short but clean...<br /><br />First of all, lets forget all of the things how bad this movie was made...How it didn't show anything of Notorious and I agree with the most people here saying that it was \"\"Hollywood\"\", I mean, what did you expect a real life story? When will people wake up and see that u will never ever find the real truth about 2pac and Biggie... Its all covered up and buried deep down.<br /><br />Second, I'm not against neither 2pac or Biggie I love them both but 2pac and Lil Kim DID get embarrassed in this movie for sure...<br /><br />Next, for all of ya that are saying that the movie is awesome and cant see the truth, either u are too blind too see it because u think u know something about BIG or you don't know anything about him at all and u love this Hollywood teenage movies. Use your mind and see though the clouds... There is a lot of it you could say when it gets to this topic, I did not say 60% of what I have to say because its a very wide topic but for the movie I can only say that it could have been a little bit, I mean a much better done. But anyways I'm just some person giving her opinion....No hard feelings...<br /><br />Look, I love hip hop and I live for it but after seeing this movie every person with a little intelligence could see that this is not how someone is suppose to live. With all do respect for 2pac and BIG, like all the other artists who are making for a living like this should turn the other page because u are ruining the youth....Bringing the wrong message to the children and that is: not going to school but living from the streets, hustling and just grabbing for the paper....<br /><br />The true hip hop is suppose to be about love and intelligence, be smart and all.<br /><br />OK I know that many of you will think that I'm crazy, but this is just my point of view. Look I am maybe wrong about something and Im not saying this is a completely bad movie because even if I'm in hip hop for 17, 18 years I still don't know anything bout 2pac or Biggie no matter how many articles I read or how much I support them and listen to their music...Like most of you all out there. Only people who were really close to them and the killers know the truth behind all this.<br /><br />And for the end I just wanna say for all of ya Biggie and Tupac fans and family, this two men were and will be the greatest of all time, no matter how they lived their lives but PLEASE IN THE FUTURE TRY TO BE BETTER, LEARN AND LOVE EACH OTHER, THINK GOOD EVEN FOR THE ONES THAT Don't LIKE YOU, BECAUSE AT THE END...ITS NOT ABOUT HOW MANY MONEY OR FAME U COULD GET AND HOW FAST U COULD GET TO THE TOP, ITS ABOUT ACCOMPLISHING YOUR SELF TO THE FULLEST AND FEEDING YOUR SOUL, YOUR BODY AND MIND...BECAUSE IF U MANAGE TO DO THAT, YOU WILL BE LIVING A LIFE EVEN AFTER DEATH!!!! PEACE AND LOVE TO YA ALL!!!! RIP BIGGIE,2PAC,AALIYAH,LEFT EYE,JAM MASTER JAY AND THE OTHERS WHO MAKE A CHANGE IN THIS WORLD!!!!\"\r\n1\t\"First off, I'm a huge fan of 80s movies, and of Jennifer Conelly as well. So yesterday, I wandered into a local used book/movie store and found a VHS copy. I read the back and it sounded good and for $3.99, it was a good deal. So I took it home and popped it in the VCR. What a sweet movie! At my age now, I relate more to movies like About Last Night or St. Elmo's Fire, but still I remember what it was like to be 15/16 and in love with an older guy, etc. We all have those little crushes when we're younger. And if it doesn't work out, we're heartbroken and we think that we'll never get over it. But of course we do. Many times. It's that sort of sweet quality that I really got from this movie. The feeling of \"\"Oooh! I remember when something like that happened to me...\"\" is all through it. The characters are interesting and well-developed. I recommend it to anyone who likes 80s movies, teen films in particular, or to anyone who just wants to go back and remember a simpler time in their lives.\"\r\n0\t\"I was expecting a documentary that focused on the tobacco industry in North Carolina. Instead I watched a man who rues the fact that his great grandfather lost his tobacco empire to the Duke family. And this went on and on. If Mr. McElwee's family had prevailed over the Dukes I doubt that Mr. McElwee would have any problems with the death toll caused by tobacco-related diseases. I grew up near the area where Mr. McElwee's family began it tobacco business ; I expected more than McEwee's continual focus on his family. I learned very little about the history of tobacco in the NC economy and the ramifications to the state's economy by tighter regulation of tobacco. The countless references to the movie \"\"Bright Leaves\"\" are out of place - So what if Gary Cooper played Mr. McElwee's great grandfather? Does the viewer gain any understanding of the role of tobacco in the North Carolina economy by the showing of old film clips of a fictionalized film? I didn't.\"\r\n1\tIf the creators of this film had made any attempt at introducing reality to the plot, it would have been just one more waste of time, money, and creative effort. Fortunately, by throwing all pretense of reality to the winds, they have created a comedic marvel. Who could pass up a film in which an alien pilot spends the entire film acting like Jack Nicholson, complete with the Lakers T-shirt. Do not dismiss this film as trash.\r\n0\tI thoroughly enjoyed Bilal's graphic novel when it came out, and was amazed when I saw the trailer for this film, and even more so when I found that Bilal had directed it himself. The film, however, was a major letdown. The visuals are nowhere near the rich and gritty texture of the original artworks, and the story is poorly told. Bilal seems to have chosen to focus on the more esoteric aspects of the graphic novel, and he doesn't do a very good job at it, either.<br /><br />The most enjoyable part of the original graphic novel was the friendship-hate relationship between Nikopol and Horus. They were both out of their right time and place, forced together by circumstance. Most of all, they were funny and likable. Not so here. Nikopol has no discernible personality whatsoever, and Horus is a pompous twit who just wants to get laid. Even though the film is French, Horus doesn't have to be!<br /><br />We have all seen films we enjoyed, but wouldn't recommend to everyone, for some reason or other. I wouldn't recommend Immortel to anyone, except maybe as a warning not to overreach your talent and resources. Bilal's a master storyteller, but obviously not a master of every visual medium.\r\n0\tI thought Hedy Burress (who managed to escape from the watery grave of part one) was going to be in part 2 Guess not. I just think they should of killed her off like in Friday The 13th Part 2 (you know what I mean).<br /><br />This movie like Scream 3, and Urban Legend 2 followed movies within a movie.<br /><br />This was PURE CRAP! The whole Movie within a Movie crap.<br /><br />BAD STAY AWAY!\r\n0\tThis movie offers NOTHING to anyone. It doesn't succeed on ANY level. The acting is horrible, dull long-winded dribble. They obviously by the length of the end sex scene were trying to be shocking but just ended up being pretty much a parody of what the film was aiming for. Complete garbage, I can't believe what a laughable movie this was. <br /><br />And I'm very sure Rosario Dawson ended up in this film cause she though this would be her jarring break away indi hit, a wowing NC-17 movie. The problem is no adult is going to stick with this film as the film plays out like a uninteresting episode of the OC or something aimed at teens. Pathetic.\r\n1\t\"Let me be up-front, I like pulp. However it is like one of these \"\"easier dives\"\" that you see at the Olympics. It has to be marked down a little because it is easier to give a cheap thrill than drag you inside the world of, say, a late medieval painter.<br /><br />This is only a two hour ghost train ride and while often (or more accurately, most of the time!) ludicrous and unlikely it always goes forward and it always entertains. If not always in the right way. Check out the memorable quotes section for a chuckle.<br /><br />(However quite why it has been given a \"\"Worst Film\"\" Razzie is baffling - I bet there was a thousand worse films made in 2006, but this film got the treatment because it was viewed as a fashionable victim.) <br /><br />Head case and popular novelist Catherine Tramell (Sharon Stone) is now over in London writing a novel, but death and destruction follow her around like flies follow a horse during a spot of hot weather. God heavens, she can't even visit the toilet without tripping over at least two corpses and I am sure if she opened the closet in her vast penthouse flat one would come tumbling out in grand Hollywood style.<br /><br />Yes, clearly a very dangerous lady to be circling around (if you like your pulse to be above zero), but is she personally responsible? I mean why would anyone put two-and-two together and start thinking she might be a murderer? Equally her reaction to such accusations seems very casual. However is this just a personality disorder (some form of b/s risk addiction) or further evidence of her guilt? <br /><br />For reasons I cannot fully understand or explain Stone is assigned to psychiatrist Michael Glass (David Morrissey) for evaluation rather than taken down the cells following another \"\"lover found dead in mysterious circumstances\"\". Thankfully (for Stone) he is far crazier than any of his patients and has a troubled home/working life of his own. In the blink of an eye the relationship changes from doctor to patient and then it is hard to tell because it all becomes something of a revolving blur.<br /><br />In to this heady mix comes Roy Washburn (a strange Welsh sounding David Thewlis) who tells the love struck doctor - in his capacity of policeman of many years standing - that the lady in question may be dangerous. I mean, hold the front page. However Glass is now too glassy-eyed to realise or care. Like a dizzy boxer in front of a prime-time Mike Tyson he ripe for the big take-down, however not before finding that Washburn might have a secret or two himself.<br /><br />Now comes Millena Gardosh (Charlotte Rampling) a fellow psychiatrist and a rare example (in this film) of someone who isn't barking mad or else a murder suspect. Presuming that she has actually watched the finished film she must look back with nostalgia when her underwear came off with the ease of Stone's - thankfully (for us at least) those days are long gone. Strangely she doesn't think Stone is quite as dangerous as everyone else - or else she doesn't think the script is good enough or her cheque large enough to do any proper acting.<br /><br />After several laps of the track roughly outlined above it comes to a climax that mixes provincial rep with a cliff-hanger/twist, that while as farcical as the rest of the movie, gives us enough elbowroom for Basic Instinct 3 - highly unlikely this may be at this point in time.\"\r\n0\tI had high hopes for this film, since it has Charlton Heston and Jack Palance. But those hopes came crashing to earth in the first 20 minutes or so. Palance was ridiculous. Not even Heston's acting or Annabel Schofield's beauty (or brief nude scenes) could save this film. Some of the space effects were quite good, but others were cheesy. The plot was ludicrous. Even sci-fi fans should skip this one. Grade F\r\n1\tThis is absolutely the best none-animated family film I've seen in quite a while, back to the first Homeward Bound. Paulie is a humerous movie about life through a parrot's POV. It's a really touching movie and ranks high among family films, up to Disney status, IMHO.\r\n0\t\"Rather than move linearly from beginning to end, this story line of a gay couple impacted by AIDS \"\"orbits\"\" in time around their \"\"perfect day.\"\" The film is organized as a life remembered in asynchronous fragments rather than in a sequential flow as one directly experienced.<br /><br />The narration has its lyrical moments, particularly in describing the impact of loss anticipated or experienced. The dialog unfortunately lacks such grace. The script frequently compels the actors to say startlingly stupid or insensitive things that seem utterly out of character at the moment. On their second accidental encounter, clearly smitten with each other, sensitive Phillip encourages a reluctant Guy to tell him about his difficult week. But the moment Guy begins to open up, Phillip, an English Major, blurts out \"\"You're not a Crisis Fairy, are you?\"\" Later, watching his lover's naked, chiseled body stride across the bedroom toward him, our young Shakespeare in love begins to render the beauty of the moment in words, \"\"The way you cut through space....I can't even describe it\"\"--but lacks the verbal skills to complete his thought. This kind of drivel continues through the AIDS Hospice scenes, bejeweled with lines like, \"\"What made me think death would be all neat and tied up with ribbons?\"\" and \"\"You make Florence Nightingale look like Nurse Ratchet.\"\" <br /><br />The film often suffers from a bruising lack of subtlety. Unlikable characters are far more jarring and steamroller-flattened than they need to be. Phillip's thoroughly annoying friends--an arrogant trust fund brat and a whining, needy dweeb--maintain a running caustic diatribe about every one crossing their path. Such patter could offer a writer a wealth of opportunities for clever social commentary, but sadly, their remarks are merely unpleasant, ungraced by wit or insight. It's hard to know if our scriptwriter intentionally crafted intellectually limited characters or if he was simply running his tether's perimeter.<br /><br />The plot may be what most appeals to and resonates with those who praise this film. It does seriously explore 1980's US middle class gay life: first encounters, courting, coupling, nesting, the complexity of open relationships, friction and fracturing, dissolution, physical abuse, rapprochement, forgiveness, terminal illness, death and survival. Leads Phelan and Spirtas give fair to good performances rendering complex characters over time. Their fetching good looks help explain both the chemistry that held these two together through insensitivity and selfishness as well as the chemistry that helped some some viewers overlook this film's painful weaknesses. The decision to chop the plot arc into tidbits and present them in out-of-sequence flashbacks added complexity without any evident dramatic utility, and in several cases left the sequence and thus the implications of a given event unclear.<br /><br />Could I recommend the film? To sticklers for literary and technical quality, absolutely not! For easy going viewers in serious need of an AIDS survivor catharsis or in the mood for a guilty-pleasure tearjerker with a little eye candy thrown in, maybe. But better written alternatives exploring the impact of AIDS on relationships of that era include: Philadelphia, And the band played on, Longtime companion, Angels in America, An early frost, Parting glances, Love! Valour! Compassion! and even Jeffrey.\"\r\n1\tThis almost unknown gem was based on a French farce--which shows, and I mean that as a compliment. <br /><br />Caroline (Lee) is being courted by a wealthy Argentinian (Roland), who asks her father for her hand in marriage. But Caroline is already married to Anthony (Colman), who has just arrived by plane and launches immediately into an audience-directed reminiscence about the last time Caroline decided she was in love with someone else: a dilettante-ish sculptor (Gardiner). The film plays out the story of Anthony's strategy in uncoupling Caroline from her sculptor, and how that experience aids him with her Argentinian.<br /><br />It is perfectly cast: Ronald Colman is at his most sophisticated and charming, Reginald Gardiner is at his most priggish, Gilbert Roland is at his most exotic, and Anna Lee is just deliciously whimsical. The film is wonderfully directed by Lewis Milestone (who also produced); the whole production feels like a labor of love. There are wonderful touches, such as Colman breaking frame and addressing the camera, and exceptional use of a sliding bar-cabinet door. It is a sin that it hasn't been released on DVD--this is the kind of film that can singlehandedly awaken interest in classic film.\r\n1\tThis program is a lot of fun and the title song is so catchy I can't get it out of my head. I find as I get older I am drawn to the wrinklies who get things done, and these four are excellent in their endeavors. Some of what they do is outrageous but brilliant considering that now days with our PC world we'd never be able to do it in real life. I always learn something from the shows. But if you like mystery, drama, comedy, and a little forensic work you'll love this show. It reminds me of Quincy, ME in one way and Barney Miller in another the way they work and inter-react with each other. They screw up a lot but they get the job done, and that's what counts.\r\n1\t\"Basically the exact same movie as \"\"House of Wax\"\" - Vincent Price's first genuine horror hit released the previous year - but seriously who cares, because \"\"The Mad Magician\"\" offers just as many sheer thrills, delightful period set-pieces, joyous 3-D effects, sublime acting performances and macabre horror gimmicks as its predecessor! \"\"Never change a winning team\"\" is exactly what writer Crane Wilbur must have thought when he penned down Price's character Don Gallico, another tormented soul besieged by fate and out for vengeance against those who wronged him. Don Gallico is about to perform his very first own illusionist show as Gallico the Great and plans to exhibit the greatest magic trick in history; entitled \"\"The Girl and the Buzz Saw\"\". Gallico's promising solo career is abruptly ruined before it even begins when his previous employer Ross Ormond appears on stage and shoves a contract under his nose, stating that all of Gallico's inventions are the rightful property of the company. The sleazy and relentless Ormond, who by the way also ransacked Gallico's once beloved wife, takes off with the buzz saw trick and programs it in the show of Gallico's rival The Great Rinaldi. Inevitably Gallico snaps and sadistically butchers Ormond, but  also being a master of creating disguises  recreates his victim's image and even starts leading a double life. \"\"The Mad Magician\"\" is an amusing and thoroughly unpretentious 50's horror movie in Grand Guignol style, with a whole lot of improbably plot twists (the landlady turns out a brilliant crime novelist?) and a handful of fantastically grotesque gross-out moments (although they obviously remain suggestive for most part). The 3-D delights near the beginning of the film, like a yo-yo player and a goofy trick with water fountains, merely just serve as time-filler and contemporary 50's hype, but it's still fun to watch even now and without the means to properly behold them. \"\"The Mad Magician\"\" is also interesting from a periodical setting point of view, as the events take place around the time fingerprints were starting to get used as evidence material and the character of Alice Prentiss is an obvious reference towards famous crime authors of that era. Needless to state that Vincent Price remains the absolute most essential element of triumph in this film, as well as from nearly every other horror movie this legendary man ever starred in. Like no other actor could ever accomplish, Price depicts the tormented protagonist who gradually descends further and further into mental madness in such an indescribably mesmerizing way. You pity Don Gallico, yet at the same time you fear him enormously. You support his vile acts of retaliation and yet simultaneously you realize his murderous rampage must end in death. Vincent Price simply was a genius actor and, in my humble opinion, the embodiment of the horror genre.\"\r\n1\tConsidering it was made on a low budget, THE DAY TIME ENDED manages to make the most of its budget with some surprisingly good special effects work.<br /><br />The story involves a family who are about to move into their solar-powered home in an isolated part of the Mojave Desert in southwestern California, only to find it trashed--by motorcycle vandals, they think. But their youngest daughter (Natasha Ryan) has begun to see mysterious things--a green pyramid, strange humanoid figures, etc. And only recently, the light from a trinary star explosion has caused extremely unusual auroras to show up in the desert skies. Thus the family, led by Jim Davis and Dorothy Malone, finds themselves face-to-face with strange alien forces who have put them in a time-and-space warp.<br /><br />Mixing in elements of 2001: A SPACE ODYSSEY and CLOSE ENCOUNTERS OF THE THIRD KIND, THE DAY TIME ENDED, despite its obvious flaws and uneven acting, remains interesting due to the superb special effects work of David Allen. The desert setting is very appropriate for this film's close encounters; and while the movie cannot really be compared with either Kubrick's or Spielberg's films, THE DAY TIME ENDED is much better than many other 2001/CLOSE ENCOUNTERS knock-offs. I give credit to director John 'Bud' Cardos, whose 1977 thriller KINGDOM OF THE SPIDERS made for an interesting precursor to ARACHNOPHOBIA, for at least trying--and on that basis, I give THE DAY TIME ENDED a 7 out of 10.\r\n1\t\"Deliverance is a stunning thriller, every bit as exciting as any good thriller should aspire to be but also stomach-churningly frightening. Though it is not a horror movie, it is just as terrifying as any classic horror film. The very thought of being a normal red-blooded male enjoying an adventure weekend miles from any form of civilisation, only to be captured and sodomised by a couple of violent hillbillies, is surely the worst nightmare of 99.9% of the world's population. It would have been easy for Deliverance to slip into exploitation territory, but John Boorman has cleverly avoided the temptation to go down such a route and has made a film that explores, questions and challenges the very meaning of masculinity. With so many films, you come away wishing to heaven that you could step into the hero's shoes, performing heroic deeds and saving the day and getting the girl.... but with Deliverance, you come away praying to God that you'll never have to experience what these four protagonists go through.<br /><br />Four city guys - Ed (Jon Voight), Lewis (Burt Reynolds), Drew (Ronny Cox) and Bobby (Ned Beatty) - head out into the wilderness to spend a few days canoing down a soon-to-be-dammed river. The guys are riding the rapids in pairs, and Ed and Bobby inadvertently get a little too far ahead of the others so they pull in to the riverside and await their pals in the adjacent woodland. Here, they fall foul of two local woodlanders (Bill McKinney and Herbert Coward), who tie Ed to a tree, while one of them strips and rapes Bobby instructing him, perversely, to \"\"squeal like a pig\"\". Lewis and Drew arrive unseen and Lewis, being a fair archer, kills the rapist while the other hillbilly beats a hasty retreat into the forest. Under great emotional stress, the four canoeists decide to conceal the event and get out of the area. But they find the river increasingly dangerous to negotiate as they journey downstream, and the risk to their lives heightens when the surviving hillbilly returns to take shots at them with his rifle from some unseen vantage point in the rocky cliffs beside the river.<br /><br />Deliverance is very powerful as a survival tale, but even more powerful (and disturbing) as a study of macho attitudes being torn apart and left in humiliated tatters. Though all the performances are remarkable, one must take particular note of Beatty's efforts in a role that many actors would've turned down. The film is very similar thematically to the 1971 film Straw Dogs - both films deal with terrifying sexual violence in isolated locales, and in both the eventual violent revenge exacted by the victim does not result in any sense of satisfaction. The backdrop of the rugged countryside in Deliverance is beautiful to look at, but it also adds to the tension by placing the four canoeists in a setting where they are at the mercy of the hillbillies and the landscape, with nobody to rely on other than themselves. This truly is suspenseful film-making at its finest.\"\r\n1\tHere is one movie that is genuinely funny at every single moment that it covers. How can it not be given that this movie stars the creators of South Park and is directed by David Zucker? When I first saw this movie, I did'nt immediately realise that Coop and Doug were really Matt and Trey but their talent in acting and writing came out as quite impressive. I was pleasantly surprised to learn that they were really Matt and Trey, later on. The humor is sometimes crude, sometimes foul, sometimes brilliant, sometimes subtle, sometimes loud and sometimes stupid but overall, this is one hell of a movie that is without doubt, under rated. Well actually, its insane. Totally insane.\r\n1\tHaving not seen the previous two in the trilogy of Bourne movies, I was a little reluctant to watch The Bourne Ultimatum.<br /><br />However it was a very thrilling experience and I didn't have the problem of not understanding what was happening due to not seeing the first two films. Each part of the story was easy to understand and I fell in love with The Bourne Ultimatum before it had reached the interval! I don't think I have ever watched such an exquisitely made, and gripping film, especially an action film. Since I usually shy away from action and thriller type movies, this was such great news to me. Ultimatum is one of the most enthralling films, it grabs your attention from the first second till the last minute before the credits roll.<br /><br />Matt Damon was simply fantastic as his role as Jason Bourne. I've heard a lot about his great performances in the Bourne 1+2, and now, this fabulous actor has one more to add to his list. I look forward to seeing more of his movies in the future.<br /><br />The stunts were handled with style - each one was done brilliantly and I was just shocked by the impressiveness of this movie. Well done.\r\n1\t\"I very much enjoyed \"\"The Revolution Will Not Be Televised\"\". It gave me, once again, a positive feeling about the power of people to decide for themselves how they wish to be governed.<br /><br />It is unfortunate that in Venezuela the twenty percent of wealthy citizens have made all of the decisions for the eighty percent of the poor for decades, if not centuries. However, when their coup failed; after the interim government dissolved the Supreme Court, and The Constitution, and the Ombudsman, and the Electoral Boards, and all Civil Rights, no one took the plotters out behind a barn somewhere and shot them. They haven't even gone to jail. The major plotters are living in Florida, carrying on. And the protection that they had was the \"\"Bolivarian Constitution\"\" passed by a large majority of the Venezuelan People. It is not only History that Bites. Democracy can give you one hell of a nip if you let it loose. And in Venezuela it is loose.\"\r\n0\t\"I don't remember the last time I reacted to a performance as emotionally as I did to Justin Timberlake's in \"\"Edison.\"\" I got so emotional I wanted to scream in anguish, destroy the screen, readily accept the hopeless cries of nihilism. Timberlake is horribly miscast; in fact, casting him is like casting Andy Dick to play the lead role in \"\"Patton,\"\" or Nathan Lane to play Jesus. But that is almost beside the point.<br /><br />Timberlake is simply a bad actor and he would be equally terrible in any role. I used to have problems with Ben Affleck's acting talent, but Timberlake makes Affleck look like Sir Ian McKellen or Dame Judi Dench. With his metrosexual lisp (read lithp), his boyish glances and emotional expressions which derive from something like \"\"The 25 Cliché Expressions for Actors,\"\" he poisons the screen upon which he is inflicted mercilessly, and no matter how you slice it, I do not and will not buy his role as an amateur-turned-crusader-for-justice journalist. It simply will not fly.<br /><br />However, Timberlake alone isn't to blame for his failure. Director David J. Burke puts him not only in the (essentially) primary role, but also places him aside Morgan Freeman, Kevin Spacey, John Heard, Dylan McDermott, Cary Elwes and (I'm surprised he was as good) LL Cool J. I can imagine one almost physically suffering watching some of this cast interact with Timberlake.<br /><br />There is an upside to this of course: the moment any of these actors interact without Justin there it feels like a double relief. A pleasure, if you will. Freeman and Spacey may not have more than 10 minutes of screen time alone together, but that ten minutes is blissful in contrast to their scenes with our so-called hero. Dylan McDermott is also a breath of fresh air.<br /><br />But enough of Timberlake bashing - words aren't enough in this particular case to do the trick. \"\"Edison\"\" is a very, very run-of-the-mill corruption story. It's plot ranges from cliché to simply preposterous. I do, however, admire the motivation behind making it, which I interpret as an homage to films like \"\"Serpico,\"\" or \"\"Donnie Brasco,\"\" or maybe even \"\"Chinatown.\"\" Don't get me wrong - \"\"Edison\"\" is not even in the same ballpark as these films, but I can stretch my suspension of disbelief to admire its reason for existence, perhaps to justify my sitting through it.<br /><br />The script, in and of itself, features some surprisingly bad writing. Yes, it has some decent interchanges, but any conversation between Piper Perabo (who is wasted here) and Timberlake seems like it was lifted straight out of a Dawson's Creek episode. It's your typical far-too-glib-for-reality, let's-impress-the-audience-with-how-well-we-articulate (and fail) dialogue. This dialogue, mind you, is punctuated by great music at the wrong moments - sometimes it feels like \"\"Edison\"\" wants to morph into a music video, where the emotion of the scene is not communicated through acting, but precisely through the badly chosen music and variant film speeds (read slow-motion).<br /><br />Thinking about it, \"\"Edison\"\" is a curiosity. It's sure as hell got a cast to kill for but the performances are marred by Timberlake who simply doesn't work. In film as in most art, if one thing is off, the whole thing feels off. Directors must make tough choices. David J. Burke missed the mark here. Some of the scenes play well in and of themselves, but as a whole, they don't seem to fit like puzzle pieces from different puzzles forced into one incoherent picture. And it's not particularly an exciting puzzle to begin with.\"\r\n0\t\"Have you ever had a cool image in your mind that you thought it would be nice to be in a movie: Like seeing a detective peeking through the cracks of a broken fence of some abandoned house? Or seeing a woman walking down a street looking cold and intense and awfully alert? Yeah. Imagine stretching that image to a whole movie, you pretty much got the idea of Broken, though there's no detectives in this movie, I'm just using it as a visual example. But, the intense looking woman is here and she filled pretty much 99% of the screen time. I got nothing to complain about that woman, she's a perfect choice for this role.<br /><br />I consider myself a very open minded individual who can find enjoyment out of all kinds of artistic expressions and I can truly enjoy some really moody stuff. It would be really cool if I can frame one of the scene from this movie and hang it on the wall. Let's be honest here, the acting is superb. Some of the expressions on the actors face are what keep me watching.<br /><br />Now onto the problem of this movie. Beyond the mood, there's not much anything else here. The director basically took an obsession of an idea and ran it far beyond what it was worth. I don't consider it to be a spoiler if I say the obsession is \"\"mirror\"\". Let's face it, this singular idea is all over the bloody place and that's all the director got to work with. Granted, there are a few twist and turn here and there. If you paid any attention, nothing is going to surprise you in the end, obvious plot holes aside.<br /><br />Now, I'm not picking bones with this style of art since I enjoyed them most of the time. I still believe that we should judge an art base on the medium it uses to express whatever the artists want to express. Movie is not a piece of music, or a picture, or a painting, or even a poem, and certainly not just a cool image in your mind. It's all that plus a good story and character development. I consider the Lynch style of movie making cheating. It is irresponsible and cheap and a waste of the medium. We gave movies 2 hours running film time for a good reason. Therefore, we should judge it differently than judging a single frame of imagery such as a photograph or a painting.<br /><br />This movie is not completely Lynch style, thank goodness. It has a linear development and eventually came to a conclusion. It does not have much story or character development. It presented itself rather seriously with characters composed of common folks, thus distance itself from other fantasy stuff at least from the surface. It does not offer any explanation of the fantasy element nor did it ever attempt to build a coherent world around it. The oddity came from nowhere and seems rather isolated and accidental. Maybe the coherency remains in director's head but from what I can see he did not put much effort into realizing it on the screen.<br /><br />Where did he put his effort in then? It seems that he spent a lot of effort in building the mood and enhancing it with the music. The music often built up tension which eventually turn into a tease. Only in the later part of the movie the scare and tension materialized.<br /><br />In the end, I felt like: OK, I know what you are trying to say here but is that the point you are trying to make by spending two hours building up all these tension? It is rather irrelevant with who the characters are and what kind of life they have. And we are given very little about who the characters are. All we have is this circumstance that just took placed. Disappointing but I guess the director did not have much material to work with and it shows.\"\r\n0\t\"I am terribly sorry, I know that Faßbinder still is called one of the greatest directors in post-war Germany and that most of his films are considered \"\"master-pieces\"\", but when I see \"\"Lili Marleen\"\" today, in 2004, I wonder what everyone is up and away about this movie! The acting is simply terrible - Hanna Schygulla is all the smiling like an idiot! -, the changings between Nazi-glamour and battlefields are ridiculous, the whole film looks as if it was made within two days in an attic. Probably it was exactly that way and many people seem to take this for \"\"real art\"\", but for me this movie is simply bad & cheap. Compare this to Viscontis \"\"La Caduta degli Dei\"\" and tell me again that \"\"Lili Marleen\"\" is a good movie...\"\r\n0\tThis is a film that makes you say 2 things... 1) I can do much better than this( acting,writing and directing) 2) this is so bad I must leave a review and warn others...<br /><br />Looks as if it was shot with my flip video. I have too believe my friend who told me to watch this has a vendetta against me. I have noticed that there are some positive posts for this home video; Must have been left by crew members or people with something to do with this film. One of the worst 3 movies I have ever seen. hopefully the writers and director leave the business. not even talented enough to do commercials!!!!!\r\n0\tPersonally, while I'm able to appreciate really good movies, I also have a strange ability to somewhat enjoy even the most crappiest of crap. You know, those times when you just want to sit there and watch some horrible cookie-cutter action movie to kill time. This is the only movie that I can remember actually shutting off in the middle, and I have absolutely NO intention of going back to finish it. The plot was so contrived and predictable, I was calling out what the next scene would be easily (and I'm usually not very good at this). The actors were horrible, I've seen better acting in middle school plays. Even the scene cuts were bad, the flow was all wrong.<br /><br />This movie is like a parody that forgot the funny.\r\n0\tLesbian vampire film about a couple on holiday who are staying on the grounds of what they think is an empty manor house but is really being used as a pair of lesbian vampires. As the vampires bring in the occasional victim the couple go about their business until the two groups come crashing together.<br /><br />Great looking film with two very sexy women as the vampires there is nothing beyond the eye candy that they provide to recommend this cult film. Yes its a sexy vampire story. No it is not remotely interesting beyond the women. To be honest there is a reason that I've been seeing stills of this film in horror books and magazines it looks great, but other than that...<br /><br />For those who want to see sexy vampires only.\r\n0\t\"The next time you are at a party and someone asks, \"\"The other day I heard the expression 'Author's will'. Does anyone know what it means?\"\" Tell them to sit through 'Head Above Water'. The only way Diaz could possibly have survived this movie was by means of this literary device commonly used by bad writers. There are some comic scenes and you will have a few laughs. However the film does not stand up to the most minor logical analysis. Why does Keitel tie Diaz's hand in front of her instead of behind? Why so she can do the chainsaw gag of course. For me the best part of this movie was that I saw it on a cable channel instead of spending four bucks at the video shop.\"\r\n1\tI think this movie is absolutely beautiful. And I'm not referring only to the breathtaking scenery. It's about two unhappy English housewives who decide to rent an Italian castle to take a break from their not so happy home lives. In the end four women total rent the place together, all with different personalities and different reasons for being there. In this magically beautiful place they all find the peace they're longing for and interestingly that peace comes from inward reflections and resolutions, more so than without. I also find it wonderful because of the relationships that are developed out kindness and understanding. The acting is a joy to watch in itself. I especially love the characters of Lottie (Josie Lawrence) and Lady Caroline (Polly Walker).\r\n1\tThis film has great acting, great photography and a very strong story line that really makes you think about who you are, how you define yourself, how you fit in, whether you accept to play a role or break free... There already are excellent comments dealing with these aspects. I want to comment on the formal setting of the film. Basically, it's two people on a roof. There is unity of place and time, with 2 protagonists, and the radio acting as the choir. Many directors have turned Greek tragedies into film, many directors have filmed contemporary stories as if they were a Greek tragedy, but no director, in my opinion, has succeeded as admirably as Ettore Scola in approaching the purity and force of the great Greek tragedies both in story line and formal setting. A masterpiece.\r\n0\tbad acting, bad southern accents, inconsistent cinematography, horrible script...<br /><br />I was looking forward to this film at a recent film festival and was so discouraged after seeing it. It contains quote/unquote name talent, but they do not deliver. Of course the basis for this is the uneven and uninteresting story that is told.<br /><br />don't bother\r\n0\t\"This movie had potential, but what makes it really bad is Lindsay Crouse's acting. I've never seen her before in anything else and maybe there are some Crouse fans out there that like her in something else, but her performance in this movie is bad.<br /><br />Her delivery is robotic. When she delivered her lines it appeared that she was trying to make sure she had the lines right and was simply reading off the list in her head. So, her voice has very little inflection. I can't believe someone that bad at acting was given a lead role in a movie. She has to know somebody in the biz.<br /><br />Now I hate to be this mean about her, but the comment has to be \"\"this\"\" long and her performance is what sticks out more than anything else.<br /><br />However, I liked where the story was going so I continued to watch it. The first part of the script has the makings of a good movie. But the end was disappointing as well. Maybe if her acting had been better, I would have liked it.\"\r\n1\t\"This is one of the all-time great \"\"Our Gang\"\" shorts. Spanky is at his very cutest and funniest, and the babies that he get's left to babysit are also hilarious. Tiny Spanky is coerced by the gang into watching all their little siblings. The opening shot of them all in baby carriages, being entertained by various things hung by the gang from fishing poles is a beautiful gag.<br /><br />Spanky's appearance wearing his huge toy knife when asked to babysit by the older fellows is priceless, as is his response --\"\"Hey, where do you get that stuff -- I don't take care of no babies!\"\" The tiny fellow saying \"\"remarkable\"\" throughout the film, all the beautiful sight gags, and Spanky telling the babies \"\"all about Tarzan\"\" add up to make this one of the best \"\"Our Gang\"\"'s you'll ever see.\"\r\n0\tHuman pot roast Joe Don Baker (MITCHELL) stars in this dull, unremarkable `action' movie as Deputy Geronimo, a fat, gassy slob who sits around in a stupid looking cowboy suit, listening to country music and eating too many donuts. Meanwhile, a vaguely criminal guy named Palermo (played by the guy who owned the drill in Fulci's GATES OF HELL) stumbles into Joe Don's territory and shoots the sheriff in a poorly edited scene. Joe Don- slowly- gives chase and offs Palermo's brother after uttering his now legendary catch phrase `It's your move. Think you can take me? Well, go ahead on'. For some reason Joe Don, a Texas lawman, must transport Palermo to Italy (`Mr. Palermo's been a major source of embarrassment to the Italian government,' says Mr. Wilson, another vague character played by Bill McKinney, who was in MASTER NINJA 1, SHE FREAK, and a lot of good Clint Eastwood movies). <br /><br />Anyhoo, Joe Don's plane must land on the island of Malta, where Palermo escapes with the help of a briefcase and a guy who looks like Jon Lovitz. And that's where the movie grinds to a halt. For the rest of the movie, Joe Don looks for Palermo, looses Palermo, ends up in a jail cell, is yelled at by the Malta chief of police, and then is let go with a warning not to look for Palermo any more. Then Joe Don keeps looking for Palermo, looses Palermo, ends up in a jail cell, is yelled at by the Malta chief of police, and then is let go with a warning not to look for Palermo any more. Then Joe Don looks for Palermo, looses Palermo, ends up in a jail cell, is yelled at by the Malta chief of police, and then is let go with a warning not to look for Palermo any more. This is one aggravating movie.<br /><br />At one point Joe Don is thought to be dead at sea. All the other characters wonder if he's dead or not, finally concluding that he is. But then he shows up (he was rescued by a poor family) and no one mentions the fact that he was missing at sea for several days. Even his cute, Julia Louise-Dreyfuss-esque sidekick doesn't welcome him back. She does, however, offer to help him find Palermo, so Joe Don looks for Palermo, looses Palermo, ends up in a jail cell, is yelled at by the Malta chief of police, and then let go with a warning not to look for Palermo any more.<br /><br />Highpoints include, a bizarre carnival with strange colorful floats, some sexy strippers, a shoot out involving a kid dressed like Napoleon AND a cart of tomatoes, a chase scene involving a guy dressed like a monk, and any scene without Joe Don. Lowpoints include Joe Don threatening a stripper with a coat hanger.<br /><br />It should be noted that this is from Greydon Clark, director of ANGEL'S REVENGE, who appears as the sheriff. Ick!<br /><br />\r\n1\t\"I know that originally, this film was NOT a box office hit, but in light of recent Hollywood releases (most of which have been decidedly formula-ridden, plot less, pointless, \"\"save-the-blonde-chick-no-matter-what\"\" drivel), Feast of All Saints, certainly in this sorry context deserves a second opinion. The film--like the book--loses anchoring in some of the historical background, but it depicts a uniquely American dilemma set against the uniquely horrific American institution of human enslavement, and some of its tragic (and funny, and touching) consequences.<br /><br />And worthy of singling out is the youthful Robert Ri'chard, cast as the leading figure, Marcel, whose idealistic enthusiasm is truly universal as he sets out in the beginning of his 'coming of age,' only to be cruelly disappointed at what turns out to become his true education in the ways of the Southern plantation world of Louisiana, at the apex of the antebellum period. When I saw the previews featuring the (dreaded) blond-haired Ri'chard, I expected a buffoon, a fop, a caricature--I was pleasantly surprised.<br /><br />Ossie Davis, Ruby Dee, the late Ben Vereen, Pam Grier, Victoria Rowell and even Jasmine Guy lend vivid imagery and formidable skill as actors in the backdrop tapestry of placage, voodoo, Creole \"\"aristocracy,\"\" and Haitian revolt woven into this tale of human passion, hate, love, family, and racial perplexity in a society which is supposedly gone and yet somehow is still with us.\"\r\n0\t\"Not much to say beyond the summary, save that this is an example of J. Edgar's Hoover's constant attention to maintaining a good \"\"PR\"\" profile. They don't make movies this bad very often, especially with the likes of Jimmy Stewart and Vera Miles in the blend. Too bad. <br /><br />\"\r\n1\tAll I can say is, if you don't fall in love with Big and Little Edie after watching this movie, then you're not human! Even after watching it for the first time, I was hooked. It is a mesmerizing experience that is difficult to describe, as I'm sure other fans will attest to. After watching it, you will cry to think that these two wonderful ladies are no longer with us. At least we have Grey Gardens to remember them! I think we all long to possess the fierce independence these two ladies were graced with. Although I have always admired Jackie Onassis Kennedy, she does not stay in your heart the way Big and Little Edie do. What a rare treat to have know such people; I only wish I had!\r\n1\tHighly regarded at release, but since rather neglected. Immense importance in the history of performing arts. A classic use of embedded plots. One of my favourite films. Why hasn't the soundtrack been re-released?\r\n1\t\"Following my experience of Finland for slightly more than a week, I'd say this movie depicts the nature of the Finnish society very accurately. Especially the young-couple-with-a-baby-having-serious-issues phenomenon is very familiar to me, as I witnessed the exact same thing in person when I was in Finland. The relationships and problems of people, fragility of the marriage institution, the drinking culture, unemployment and the ascending money problem, all are very well put, without any subjectivity or exaggeration.<br /><br />There are some points in the film that are not necessarily easy to comprehend and tie to each other, but the joint big picture is nonetheless rewarding. Not each one of the short stories is exciting or profound, but as said above, the big picture does not fail to deliver the feeling of \"\"real life\"\" and captivate the viewer. I happen to think in a calm moment: What is happening in the lives of all these people on the street? Well, this is what is happening. Movies like this are good to feed your imaginative power. It would be safe to assume this film could apply to the life in many countries, but it particularly reflects Finland as it is, and pretty damn well.<br /><br />One comment about the acting: Being the fan of Finnish cinema I am, I've never seen any of these actors on any other movie, but I found the acting in this feature right next door to perfect overall. Maybe not a masterpiece, but a very good try by the entire crew. I'll be keeping an eye on the future releases of the director and the cast..<br /><br />7,5 / 10\"\r\n1\tthis movie was one of the best disney movies i've ever seen. great for the entire family to watch. the ideas may be a little far-fetched, but it's a feel-good comedy and the acting is great. love the little boy, j.p. and academy award winner adrien brody's part may have been very short, but very memorable. highly recommended.\r\n1\tThis Hong Kong filmed potboiler packs in more melodrama than week's worth of 'The Young & The Restless'. This one is more of a throwback to the original 'Emmanuelle' trilogy(especially 'Goodbye Emmanuelle') than a D'Amato sleazefest. Chai Lee(Emy Wong)undergoes a stunning transformation from dour nurse to hot-to-trot streetwalker. Future Italian porn star/politician, Illona Staller, who would later go by the name Ciccolina(and have sex with an HIV positive John Holmes) plays Emy's competition. Exotic locales and some decent soft-core scenes round this one out. Recommended for fans of the original 'Emmanuelle', of which I am one!\r\n1\tThis was directed by Ruggero Deodato, a true icon to many horror film fans after he directed the seminal and notorious Cannibal Holocaust. However, don't expect to find any such notoriety in the film reviewed here as it proves to be incredibly tame in comparison and plays more like a Conan inspired outing for a young audience.<br /><br />Such a description may instantly put off most fans of the whole Conan inspired Sword & Sorcery genre but before you turn your nose up at this, it has to be said, this movie is just so much fun!<br /><br />It's mostly played for laughs and features two HUGE and highly likable heroes in the form of David and Peter Paul aka. the Barbarian Brothers who both seem to be having a ball with their characters.<br /><br />B-Movie favourite Richard Lynch turns up as the main villain in the piece and it's also great to see roles for Big George Eastman and Michael Berryman.<br /><br />Added to this, the ladies are stunning to behold and suitably scantily attired throughout the films duration (a staple and much welcomed ingredient in the genre!)<br /><br />What can I say, - this simply is a really fun and lighthearted take on the genre and I recommend it wholeheartedly!\r\n0\tJason Alexander is a wonderful actor, but it's ridiculous to cast him as a cuddly romantic lead. The fact that he dances so well, croons so effectively, and throws himself into the part so completely somehow just made him seem all the more creepy. In his more cutesy moments (with the girl in the train station, in the final number with Rosie), I couldn't take my eyes off him he was so repellent. You keep expecting him to drop the nice-guy act and start snarling. Vanessa Williams was the real star, the only performance that was better than the 1963 movie. By the way, if you see a production of the stage musical, the 1963 movie and this 1995 movie, you'll see three versions that have more revisions (different songs, same songs assigned to different characters and in different situations) than any other musical I've ever seen.\r\n0\tAn offensively over-the-top action adventure,FIRST BLOOD PART II seemed to catch the mood of the US at the time of it's release in the mid-80's,with right-wing Reaganism and virulent anti-red feelings still not finished yet,though the emergence of a certain Mikhail Gorbachev in the heart of the 'Evil Empire' in Moscow would soon render these types of films redundant;even Reagan himself eventually admitted this truism.<br /><br />In that sense,we can be most grateful to 'Gorby',not for his disarmament treaties with the US,nor his policies of 'glasnost',or even his support of democracy being restored to the Eastern European countries in the former Soviet Union's backyard.No,it's the final diminution of foolish,jingoistic,bloated cold-war adventures like this.The first RAMBO film was hardly perfect,though at least was a mildly literate and adequate action thriller with a not too bad storyline.In this sequel,any sense of even the remotest conviction is instantly jettisoned for silly,senseless plotting and incident in which Rambo single-handedly takes on scores of brainlessly stereotyped Vietnamese and Russian troops to rescue American POW's ten years after the conflict ended,with the Americans on the losing side.<br /><br />Perhaps the reason why the film was a huge box-office success was to let many Americans wallow in fantasy;they may have lost the war,but there was still unfinished business at hand,and ludicrous comic-strip heroics with a robot-like hero killing virtually every red on sight,with as much hardware as possible,fulfilled such whimsically far-fetched ideals.<br /><br />This could have been entertaining on a SUPERMAN/SPIDERMAN level,but sadly everything is played absolutely straight.But that is not to say that there is no humour in the film;sadly it is virtually all of the unintentional kind.The action scenes,though technically adequate,never once carry the slightest bit of conviction or persuasiveness,because they are always placed in the most spectacularly unbelievable of contexts;namely,our hero Rambo is always unscathed (aside from a few cuts and bruises here and there) despite the tons of explosives,grenades,gunshots,etc.going around him.<br /><br />In between the mayhem,what there is of a script consists of the dullest clichés and banalities.Stallone,who co-wrote the script with James Cameron (a long way from the exciting TERMINATOR made the previous year),deliberately seems to have given the Rambo character as little to say in understandable English,and merely comes out with moronic grunts,almost as though he has invented his own brand of patois only understandable to himself.Maybe his colleague Cameron was thinking of The Terminator again with so little communication involved for the lead character! In this sense Rambo seems even less of a human than the Terminator did! The rest of the cast do little better with good actors like Charles Napier and Richard Crenna doing their admirable best with the hackneyed dialogue they are given,and Steven Berkoff hamming it up outrageously yet again with another of his Russian KGB/Red Army villain roles.Berkoff's overplaying is mildly enjoyable but not remotely menacing.How come that Sly managed to survive Berkoff's electric shock torture to kill yet more of those Red Commie scumbags? Well,credibility is never this film's strong point.It is a work of fantasy comparable with THE WIZARD OF OZ.At least that WAS meant to be a fantasy,and an immortal classic it turned out to be.This is only a classic of the most dismal,and indeed offensive,kind.And as for Sly's climactic speech...,rather hypocritical after slaughtering all those people,eh? By the way,in the same year,he also made ROCKY IV..........<br /><br />RATING:3 out of 10.\r\n1\tI first saw Enchanted April about five years ago. I loved it so much that my husband surprised me with a copy the following Christmas. It's about two women who decide to rent a castle in Italy for the month of April, leaving their humdrum lives behind them. They are very sad women at the outset of the film, and you can't help but root them on as they plan this get-away with two other women they invite along to share the expenses. This is perhaps the most feel good movie I have ever seen. It' pure and simple, with no car chases, no animosities and no deaths. It was made with care and in very good taste. You cannot help but smile all through it -- except when you're crying happy tears!\r\n0\tI actually saw this movie in the theater back in it's original release. It was painful to watch Peter Sellers embarrass himself so badly. The story was incredibly lame and difficult to follow, and the ending was ridiculous. It was just sad to see how the mighty had fallen. I won't say that I'm a huge Peter Sellers fan, but I did thoroughly enjoy the Pink Panther series and I felt that he gave a strong performance in Being There. But this film should never have been made. From what I've read, he pursued producing this film against the advice of the people around him. Fine, but that still doesn't excuse the studio actually releasing the film.\r\n0\t\"In 1988, Paperhouse was hailed as a \"\"thinking man's horror film.\"\" Wow, you might say, sign me up. This thing is a mess. It features a one time young actress who has a range of like 1 to 2. G. Headley with a bad British (dubbed) accent, and a story with no chills, thrills or spills.<br /><br />It isn't even interesting psycho-babble. One will only laugh at its cheap effects and long for a showing of Leprechaun 5.<br /><br />The story involves a girl with glandular fever who escapes in her dreams. WHat you get isn't good horror, art house or even a decent after-school special. I found myself after the two hour point saying..where did my two hours go.<br /><br />The direction is uninspired and I wished it could even be pretentious...something interesting..it seems like the producers were on lithium.<br /><br />Even in the dream world things are boring.<br /><br />A short no on this one.\"\r\n1\t\"I enjoyed this film. I thought it was an excellent political thriller about something that's never happened before - a Secret Service agent going bad and involved in an assassination plot. Unfortunately, for Michael Douglas' character, \"\"Pete Garrison,\"\" they think HE's the mole but he isn't. <br /><br />He's just a morally-flawed agent having an affair with the First Lady! Since he's doing that, he's unable to give an acceptable polygraph exam and that makes him suspect number one when it's revealed there is a plot to kill the President.<br /><br />\"\"Garrison\"\" is forced to go on the lam but at the same time he's still trying to do the right thing by protecting the President. Douglas does a fine job in this role. I don't always care the people he plays but he's an excellent actor. Keifer Sutherland (\"\"David Breckinridge\"\") is equally as good (at least in here) as the fellow SS boss who hunts down Douglas until convinced he has been telling the truth. When he does the two of them work together in the finale to discover and then stop, if they can, the plot. The crooks are interesting, too, by the way. Also, I have never - and never will, unfortunately - see a First Lady who looks as good as Kim Basinger<br /><br />This is simply a slick action flick that entertains start-to-finish. Are there holes in it? Of course; probably a number of them, and a reason you see so many critical comments. However, it is unfairly bashed here. It just isn't intelligent enough for the geniuses here on this website. My advice: chill, just go along for the ride and enjoy all the action and intrigue. Yes, it gets a little Rambo-ish at the end but otherwise it gets high marks for entertainment.....which is what movies are all about.\"\r\n1\ti know technically this isn't the greatest TV show ever,i mean it was shot on video and its limitations show in both the audio and visual aspect of it.the acting can at time be also a little crumby.but,i love this show so much.it scared the hell out of me when it first aired in 1988.of course it would i was 5 years old.but i recently purchased the DVD of the first 3 episodes,which unfortunately i hear is now deleted.and i also heard warner's aren't going to release any more due to the first DVD's bad sales.also the TV show didn't have the same feel as the movies,in fact i thought it had a more sinister tone.even though the colour palette is similar to nightmare on elm street 4(both that film and the TV show were made the same year),this has more of a serious tone whereas the fims were progressively getting more and more sardonic and jokey.not a bad thing,i like freddy as the clown wise cracker.but i think that was the strenght of this TV show,you didn't have freddy popping up every minutes cracking a joke before and after he kills somebody.in fact this has more of a dream feel to it,reinforced by the soft focus of the lense.im not sure if its deliberate on the part of the shows creators or just to the limitations of being shot on video. i love this show,and taken not as a companion piece to the movies can be very enjoyable.much better than anything on TV today.\r\n0\tWhen i got this movie free from my job, along with three other similar movies.. I watched then with very low expectations. Now this movie isn't bad per se. You get what you pay for. It is a tale of love, betrayal, lies, sex, scandal, everything you want in a movie. Definitely not a Hollywood blockbuster, but for cheap thrills it is not that bad. I would probably never watch this movie again. In a nutshell this is the kind of movie that you would see either very late at night on a local television station that is just wanting to take up some time, or you would see it on a Sunday afternoon on a local television station that is trying to take up some time. Despite the bad acting, cliché lines, and sub par camera work. I didn't have the desire to turn off the movie and pretend like it never popped into my DVD player. The story has been done many times in many movies. This one is no different, no better, no worse. <br /><br />Just your average movie.\r\n0\tWhen I started watching this movie I saw the dude from Buffy, Xander, and figured ah how nice that he's still making a living acting in movies. Now a weird movie I can stand, given that it's a good dose of weird like for example David Lynch movies, twin peaks, lost highway etc. And you sort of have to be in the mood for one. This one however made me mockingly remember the crazy websites about there about conspiracy theory's that make absolutely no sense. I mean come on people Nazi's who conspire with America to make an unholy trinity of evil powers? I was surprised they didn't mention the hollow earth in this movie with Hitler flying saucers and lizard people. Maybe if you had like 60 grams of heroine with this movie it would make some sort of sense, but seriously I don't condone drugs like I don't condone this movie. It should be burned, shredded and forgotten just so good ol' Xander might get another acting job. It wasn't his acting though, that was alright, but the script just didn't make any sense. Sorry.\r\n1\tIt's a good movie maybe I like it because it was filmed here in PR. The actors did a good performance and not only did the girls be girlish but they were good in fighting so it was awsome! The guy is cute too so it's a good match if you want to the guy or the girls.\r\n1\tThis was a great movie! Even though there was only about 15 people including myself there it was great! My friend and I laughed a lot. My mom even enjoyed it. There was two middle aged women there and a mid 20 year old there and they seemed to enjoy it. I love the part where Corky and Ned are like both liking Nancy and stuff its cute lol. And when she gets her roadster and Ned is there. Yeah This was a great movie even thought people underestimated it lol. Go See it i bet you'll enjoy it!! I really enjoyed it and so did my friend. <br /><br />People were so tough on this movie and they hadn't even seen it. I bet next time they will give the movie and actresses a chance. They all did a great job in my opinion. But if you have young kids its still appropriate. I will probably take my 7 year old niece to watch it too.\r\n0\tI think it's time John Rambo move on with his life and try to put Vietnam behind him. This series is getting old and Rambo is no longer a solider but a cold blooded killer. Ever time he turns up on the screen someone dies. Vietnam was not a fun place to be and frankly I am tired of Hollywood making it seem like it was. This is not the worst of the films concerning Vietnam, that honor goes to John Waynes Green Berets. In any case John Rambo carrying around a 50 cal Machine Gun taking on what seems to be half of the Viet Cong army plus a good many Russians is an insult to watch. What is worse is Rambos cheesy speech at the end...Please!! Oh yeah I heard they are making another one...\r\n1\t\"I watched this movie with some curiosity. I wanted to see if 1) Paul Muni could play Chinese and 2) Luise Rainer deserved her Oscar. I came away from the film thinking YES! Having seen Muni in only one film where he was quite hammy, I expected the same type of performance here. I was happily proved wrong. Although some might criticize him as being too childlike and stereotypically simple in the Hollywood idea of Asians, I thought he was just right in the role. Keye Luke, if he'd been given the chance to play a lead role, might have played him in much the same manner.<br /><br />I was particularly impressed by the camera work and the use of crowd scenes, especially during the sacking of the palace where O-Lan was once a slave. The graphic and grim atmosphere of the firing squad and the drought made this an epic quite unlike others of the same time where it was all glitz and glitter. I watched this film from beginning to end enthralled. I can't say the same for the \"\"epics\"\" of today.\"\r\n0\t\"I grew up on the 'Superman II' theatrical version (\"\"S2T\"\") and as a kid, I loved it more than Part I since not only did it contain more Superman and three Superman-type villains, it started off with a bang  the best Clark Kent to Superman transformations and rescue scenes. Kids no longer had to impatiently wait for Superman to appear on screen, as in part I. Now as an adult, I can see how the mighty had fallen with S2T (See: my review.) I've always heard of the back-story on how they prematurely and unjustifiably fired the original's director, Richard Donner from part II. (It must have been a rarity back then to film two separate movies simultaneously, now it's common: 'Back to the Future' and 'Matrix' 2 & 3 for example.) Unfortunately, after finally seeing the Richard Donner Cut (or, \"\"S2RD\"\") I still can't fully recommend it. Gone, was the great Superman change scene, the entire Paris rescue, as was the wonderful recap of part I in S2T's opening. In fact, they all but wrote the words: \"\"Previously on Superman\"\" in S2RD. The special effects weren't great in either Part I or S2T , but S2RD, they were mostly downright laughable  such as Lois falling from the Daily Planet window. I will admit, some new scenes worked and some they took out were welcomed departures, such as any scene in the \"\"honeymoon suite.\"\" Overall, if you grew up on S2T as I did, and loved it as a child  not nitpicking as I do as an adult, you should absolutely see S2RD as it's almost a brand new childhood experience with dozens of new scenes. (Spoiler alert) Unfortunately, the worst change comes last: gone was also the weird amnesia kiss from S2T replaced with the exact same ending as 'I.' This is not only a lazy, unoriginal copout, it doesn't make sense on why Clark would go back to that diner, if those events never actually happened. And will he continue to \"\"turn back time\"\" for every confrontation?\"\r\n0\tNot even the most ardent stooge fan could possibly like the movie, (I one of them) the stooges just aren't given any material to work with. It is really a shame too because this is the only feature length movie the stooges did with Curly, and this one effort by them is painfully unfunny, when it could have had great potential. Awful musical numbers don't help any either. The short they did with the same title has more laughs.\r\n1\tTiempo de valientes is a very fun action comedy.After his great fist movie called El fondo del mar and the spectacular TV pro-gramme Los simuladores,Damian Szifron made another great work.Tiempo de valientes looks,for moments,a movie made in Hollywood.Diego Peretti and Luis Luque are two great actors and here,they have great performances.The movie is very fun and funny and it has superb moments.Tiempo de valientes is a very fun action comedy that I totally recommend if you wanna have a great time.And I have to congrats Szifron for all the talent he has.<br /><br />Rating:9\r\n1\tI really thought they did an *excellent* job, there was nothing wrong with it at all, I don't know how the first commenter could have said it was terrible, it moved me to tears (I guess it moved about everyone to tears) but I try not to cry in a movie because it's embarrassing but this one got me. It was SOOO good! I hope they release it on DVD because I will definitely buy a copy! I feel like it renewed my faith and gave me a hope that I can't explain, it made me want to strive to be a better person, they went through so much and we kind of take that for granted, I guess. Compared to that, I feel like our own trials are nothing. Well, not nothing, but they hardly match what they had to go through. I loved it. Who played Emma?!\r\n1\t\"This production was made in the middle 1980s, and appears to be the first serious attempt to put BLEAK HOUSE on celluloid. No film version of the novel was ever attempted (it is remarkably rich in subplots that actually serve as counterpoints to each other, so that it would have been very hard to prune it down). The novel was the only attempt by Dickens to make a central narrator (one of two in the work) a woman, Esther Summerson. Esther is raised by her aunt and uncle, who (in typical Dickens style) mistreat her. She is illegitimate, but they won't tell her anything about her parentage. Later we get involved with the gentry, Sir Leicester Dedlock, and his wife. Lady Honoria Deadlock (Dame Diana Rigg) is having an increasingly difficult time regarding her private life and the meddling involvement of the family solicitor Tulkinghorn (Peter Vaughn). We also are involved with the actions of Richard Carstone (Esther's boyfriend) in trying to win a long drawn out estate chancery case, Jarndyce v. Jarndyce, which everyone (even Richard's cousin John Jarndyce - played by Desmond Elliot) warns is not worth the effort.<br /><br />Dickens had been a law reporter and then a parliamentary reporter before he wrote fiction. Starting with the breach of promise case in PICKWICK PAPERS, Dickens looked closely at the law. Mr. Bumble said it was \"\"a ass\"\" in OLIVER TWIST and Dickens would consistently support that view. He looks at the slums as breeding grounds for crime in TWIST, that the law barely tries to cure. He attacks the Chancery and outdated estate laws, as well as too powerful solicitors and greedy lawyers (Tulkinghorn, Vholes) in BLEAK HOUSE. In LITTLE DORRIT he attacks the debtors' prisons (he had hit it also in David COPPERFIELD). In OUR MUTUAL FRIEND he looks at testators and wills. In THE MYSTERY OF EDWIN DROOD he apparently was going to go to a murder trial. Dickens was far more critical of legal institutions than most of his contemporaries, including Thackeray.<br /><br />But the novel also looks at other problems (like charity and religious hypocrisy, the budding Scotland Yard detective force, social snobbery in the industrial revolution). He also uses the novel to satirize various people: Leigh Hunt the writer, Inspector Fields of Scotland Yard, and even the notorious Maria Manning. Most of these points were kept in this fine mini-series version. If it is shown again on a cable station, catch it.\"\r\n0\tTo say that Thunderbirds is a horrid, forced, in-your-face, ugly looking, nasty to listen to and painful to watch film wouldn't be saying enough. There are only two reasons I can think of why you'd watch this film: 1; you've seen Thunderbirds when you were young (like I did) and are curious as to what it is like but you will really only be watching to find out how badly they screwed things up. Or, 2; you're seeing it with someone under ten years old.<br /><br />Thunderbirds manages to cock up everything it attempts. The list goes on and on but there are other more subtle, humiliating things that are painfully obvious when you think about it. From the off, Thunderbirds is wrong, wrong, wrong. The whole moral message and 'goal' is set up in an excruciating way: Jeff Tracy (A new low for Bill Paxton) tells his youngest son Alan he's not yet proved himself to be a Thunderbird after Alan randomly and stupidly decided to go down into Tracy Island's bowels to fire up Thunderbird One. The whole film is then a series of events and miss-fires consisting of Alan trying to prove himself whilst his father and other brothers are trapped in space aboard Thunderbird five.<br /><br />The film relies on kid actors to carry the film: A 16 year old Alan Tracy (Corbet), a 16 year old Tin Tin (Hudgens) and a 14 year old Fermat (Fulton) who is Brains' son. To say that watching the 'adventures' they get up to is painful is an understatement. Frequently trying to act and utilise the script whilst combating the evil 'Hood' (Kingsley) in ridiculously unfunny and hammy ways acts as the entertainment for the duration of the film; it only differs when everyone's in a different location. Also, the whole 'mind control' thing was very tiresome and basically dragged the film down as it was overused and offered a way for our heroes to see a weakness in The Hood  forced and incidental.<br /><br />I know that most 'film's for kids' these days try to integrate some sort of material for adults but in Thunderbirds it's done in a way that fetishises Lady Penelope. Sophia Myles plays Penelope and I think it's no coincidence she's a little older than the rest of the kids  at 24 years old, it's almost too good to be true. Her scenes are often highly charged and carry an erotic push. We see her in the bath, bubbles up to her neck watching TV; in comes her butler and sneaks a peek as she seductively changes channels with her wet, bare and bubble covered foot. Frequent shots of her massive, bright pink high heeled shoes filling the screen during various scenes: This first happens when she is actually tied up with the second happening during a fist fight with another woman! Twinned with this, her bright pink costumes that reveal just enough yet cover just enough are particularly outstanding as is the way she moves and talks with that posh, dominant, English accent; sounding like a commanding mistress (Well, she is LADY Penelope after all  and you'd better make sure call her that) The whole thing is laughable but the editing is so quick that the kids won't notice but it sure as hell is there.<br /><br />The actual plot of The Hood doing all that he does just to rob a few banks is very bizarre, the characters that are his bodyguards: a geeky looking woman and hard bodied black man who gets agitated a lot. Are we supposed to be laughing at this? What about the fight scenes? Poorly choreographed stunts and what the hell was with the silly noises? It's utterly, utterly laughable.<br /><br />The list goes on. The way Bill Paxton plays it all so seriously, like he was told they were doing it one way but it was made another, the way Ford motor company have their logo slapped all over the place. News bulletin: sponsored by Ford, the camera even moves to endorse Ford several times when cars are in shot, the way the CGI looks like something out of a computer game video clip  it's infuriating. The fact we are told to believe that a 16 year old girl can swim in the freezing Thames, against the current, rescue a downed monorail (monorail over the Thames!?), get back to the hatch and thus; save the day all the time holding her breath. It is absolute bull and the makers know it  I don't even know if a 10 year old would swallow it.<br /><br />In short: avoid, avoid, avoid. Thunderbirds is infuriating, unfunny, poorly scripted and even the Rolls Royce was taken out and replaced by a flying car  everything that could go wrong, did go wrong.\r\n0\t\"This was a truly insipid film. The performances are third rate, and the dialogue is so stilted that at times it seemed to have just rolled over and died. My reason for renting this was simple: Find a movie with scriptwriting. I needed a visual aid for my presentation, so I figured why not use a clip? Boy was I wrong. After searching my local video store, I came upon this, where it was suspiciously titled \"\"Starstruck\"\". I thought, \"\"What the hey\"\", and decided to give it a try. Well, I was very unhappy with my results. There was maybe one scene I could use, and meanwhile, I was practically falling asleep because of the sheer banality of the flick. So.....I took this back and picked up Ed Wood. There's a movie I can use as an example. Then again, anything would be presentable compared to the drivel that is \"\"Starfucker\"\".\"\r\n1\tI have no idea how to describe this movie, and also would love to provide others the same opportunity I had - seeing it with no prior knowledge of what to expect. I enjoyed it immensely but can also say I barely understood what was going on, if in fact there was anything to understand in the first place. Fans of David Lynch (tangentially) or especially Guy Maddin films should particularly enjoy this, and any fans of the comic book EIGHTBALL will probably be beside themselves with joy and wonder (it came as close as any film I've seen to the tone and mood Dan Clowes creates so effectively).<br /><br />One slight note just to warn anyone easily offended - this movie, if rated, would be NC-17 for sure. Fans of male full-frontal nudity, however...hmm, well...yes. This is weird wild stuff.\r\n0\tI've seen my share of Woody Allen's movies, and while they're not always great, you can usually be sure you're going to be entertained. Probably the last really good ones were Bullets Over Broadway ('94) and Mighty Aphrodite ('95) - since then the ones I've seen have been patchy but watchable. And so when I was invited to see the new Woody Allen movie Melinda and Melinda, which I wasn't even aware had been released yet, I went along happily. I hadn't really heard much about it so I hoped I would be pleasantly surprised.<br /><br />What I got was definitely the worst Woody Allen movie I've seen. The premise is over-explained, the cast is terrible, the script is slow and lifeless. Too many scenes said nothing and yet were stretched out, I assume to fill out what would have otherwise become a 15 minute short film.<br /><br />I don't mind the concept behind this film - two directors discuss how a simple situation could be interpreted as a comedy or a tragedy, and obviously the film proceeds to show us that, by playing out both scenarios. The problem is neither of these 'two films' are any good at all. The comedy isn't funny and the tragedy isn't very tragic. It seems like Allen came up with a good idea but then ran out of steam, or time, to actually complete the film.<br /><br />The general level of acting is notably bad also - Will Ferrell is the only one who brings anything to the table, and it's basically a Woody Allen impression. Previously good actors like Chloe Sevigny just come off as annoying, and the worst of the bunch is Radha Mitchell as Melinda (which is a shame, because her character is in nearly every scene!).<br /><br />To be fair to the actors, the script they are working with is lacking if not non-existent. Definitely a long way from the Allen we know and love from classics like Manhattan or Annie Hall.\r\n0\t\"Shlock-merchant Leo Fulci takes a change of pace by making a trashy, barely coherent sword and sorcery fantasy movie instead of his usual trashy, barely coherent horror. <br /><br />A wimpy Orlando Bloom type called Ilias, from some society vaguely resembling Ancient Greece travels across the ocean to caveman territory on some vaguely defined quest to battle evil, where he joins up with a animal loving hunter to battle the wolf-man and mutant minions of a vampiric topless evil sorceress. Wackiness ensues. The sorceress, is oppressing the local cavemen and wants the magic bow for herself. She sends various minions, each weirder than the last, after our heroes who win through in the end, striking a blow for oppressed cavemen everywhere. This movie contains a steady stream of WTF? elements and moments.<br /><br />For some reason the entire movie is shot in soft focus and the picture is further blurred by the constant presence of mist on screen. This may have been an attempt to create atmosphere or to hide how fake everything looks. Either way, it failed. There is no atmosphere, unless it is one of scuzziness and mild bewilderment and there is no hiding how lame everything looks. The wolf-man minions look like a poor man's wookie. For some reason the director fell in love with shots of them leaping through the air in slow motion, Six Million Dollar Man style, toward our heroes when they attack. There are probably about a dozen of these shots throughout the movie and it gets goofier every time. The other minions of the topless sorceress, other than the generic leather clad humans, are some lumpy white mutants who appear to be covered in cobwebs. Needless to say they are slow and unthreatening and when they speak sound like gay Hispanic, lisping Daleks. The fights are stilted and unconvincing and the special effects are woeful. Oh yeah, the music is cheap synthesiser stuff that the makers of Doctor Who would have been embarrassed to have used.<br /><br />Ilias, our nominal hero is bland and forgettable. He also looks a complete wuss, especially with his midriff revealing leather outfit and big hair, and is clearly a moron. Sure, he's a dynamite shot with his magical bow but he only takes about three or four arrows with him in his mission to battle this entire continent of evil. Needless to say he runs out of arrows within a few minutes and has to be saved by more traditional sword and sorcery hero, Mace. When he meets Ilias he establishes himself as the taciturn loner type, claiming he has no friends but no sooner can you say latent homoerotic subtext they are bosom buddies, traipsing the misty hills together. Mace promises to take Ilias with him in return for bow related favours. Ilias asks where he is going. \"\"Wherever my legs take me,\"\" is his reply. Good enough for Ilias. Mace is also animal lover and outrageous hypocrite. He proclaims his great love of and affinity toward animals, citing the usual stuff about how he prefers them to humans because humans can be soooo mean. He says he would never hunt and kill an animal to feed himself but he will steal meat off other people who have hunted down animals. He is also not above randomly killing innocent passers by for no good reason. Not long after they meet, he is testing out Ilias' bow and the movie cuts to some random caveman, minding his own business, walking along and Mace shoots him dead. There is no indication this poor soul did anything to deserve this and even Ilias, who supposedly hails from a more moral and civilised society doesn't even raise an eyebrow. <br /><br />The films villainess is quite unusual. For the entire movie she is completely naked except from a g-string and a golden mask that encompasses her entire head. It's like Fulci included her to make the movies obligatory T&A quotient but decided she was bit too much of a butterface at the last minute. She spends a lot of time seemingly being pleasured by her pet snakes and dreaming about being shot by a faceless bow wielding man who is dressed like Ilias. Wow, such symbolism! Later on in the movie she wimps out when she can't beat Ilias and Mace and promises to make herself the sex-slave of some ancient warrior dude if he kills them for her. Hardly the world's most scary villain and not really a step forward for women's rights. I think he sic's the cobweb creatures on our heroes and impersonates Mace in a situation where there is no no-one else around but Mace to fool. Was he really worthy trading your self respect for, Ocron? <br /><br />There are quite a few other WTF? moments. Most of them come toward the end of the movie. Ilias wusses out, I forget why, possibly his permed hairdo got mussed, but realizes the error of his ways and returns to aid Mace in fighting the forces of evil. All of a sudden, for no reason, his bow can suddenly fire out multiple target seeking bolts of energy. The bolts can also shoot through solid rock when necessary. Needless to say his makes short work of the hordes of bad guys who have captured Mace.<br /><br />The climax is also rather nonsensical. Mace decimates Ocron's remaining forces using the bows targeted laser attack capability. He then is able to shoot Ocron from a kilometre away using its shoot through rock capacity. She starts dying. Her mask is ripped of revealing a hideous Muppet head. She staggers around screaming and turns into a dog and wanders off with another dog. Mace smiles. Roll credits.<br /><br />Strangely enough as far as these dodgy low budget sword and sorcery movies this one is reasonably lucid and focused. Any one who has seen Wizards of the Lost Kingdom can tell you how nonsensical and meandering these movies can truly be.\"\r\n1\t\"I just viewed MURDER AT THE VANITIES in the newly-released Universal Pre-Code set, and I was amazed at how much I enjoyed the vehicle end to end. Most of the other commentators have covered the story, a murder mystery within a musical, but I wanted to add a few additional notes. Brisson and Carlisle are relatively bland, compared to even most of the minor players, and neither one really seems to have the proper voice for what they're singing (Carlisle being a trained opera singer, Brisson a bit wobbly on some of his high and low notes). The great Victor McLaglen and Jack Oakie play well off each other, with an excellent sense of timing that keeps the ball rolling between musical numbers. Yes, Lucille Ball and Ann Sheridan are Vanities girls, but let's not forget the splendid jazz singer Ernestine Anderson in the \"\"Ebony Rhapsody\"\" number. Gail Patrick makes one of her early appearances, sounding a bit like Eve Arden; Patrick would go on to become the executive producer of the Perry Mason TV series. Then there's Jessie Ralph as the wardrobe mistress--you'll spot her also in David COPPERFIELD (as Aunt Peggoty) and THE BANK DICK. The music is very good--Brisson introducing the standard \"\"Cocktails for Two\"\" in two different scenes; \"\"Sweet Marihuana\"\" with barely clad peyote button girls in the background (blood dripping on one chorine's white skin was wonderfully chilling); the \"\"Ebony Rhapsody,\"\" with Duke Ellington's Orchestra and a bevy of beautiful dancers, both black and white, mixing it up. And I believe this is one of the only early musicals to feature such a mix--and the costumes leave nothing to the imagination.\"\r\n0\twow...this has got to be the DUMBEST movie I've ever seen. We watched it in english class...and this movie made ABSOLUTELY no sense. I would never, EVER watch this movie again...and my sympathy to those who have ever PAID to see it.\r\n1\tThe funky, yet strictly second-tier British glam-rock band Strange Fruit breaks up at the end of the wild'n'wacky excess-ridden 70's. The individual band members go their separate ways and uncomfortably settle into lackluster middle age in the dull and uneventful 90's: morose keyboardist Stephen Rea winds up penniless and down on his luck, vain, neurotic, pretentious lead singer Bill Nighy tries (and fails) to pursue a floundering solo career, paranoid drummer Timothy Spall resides in obscurity on a remote farm so he can avoid paying a hefty back taxes debt, and surly bass player Jimmy Nail installs roofs for a living. Former loving groupie turned patient, understanding, long-suffering manager Juliet Aubrey gets the group back together for an ill-advised, largely ineffectual and hilariously disastrous twenty years later nostalgic reunion tour of Europe. Our lovably ragged bunch try gamely, but fumblingly to reignite a flame that once burned quite brightly back in the day. Scraggly zonked-out roadie Billy Connelly and cocky eager beaver young guitarist Hans Matheson tag along for the delightfully bumpy, trouble-plagued, but still ultimately rewarding and enjoyable ride.<br /><br />Director Brian Gibson shows tremendously infectious respect and adoration for both his amiably screwy characters in particular and loud, ringing, flamboyantly overblown preening 70's rock in general, this imbuing this affectionate little pip with an utterly engaging sense of big-hearted charm and tireless verve. The astute, sharply written script by Dick Clement and Ian La Frenais likewise bristles with spot-on dry wit and finely observed moments of joyous on the road inanity, capturing a certain bittersweetly affecting and frequently uproarious vibe that gives the picture itself an irresistibly luminescent glow. Ashley Rowe's lovely, elegant cinematography ensures that the movie always looks quite visually sumptuous while the perfectly catchy and groovy music does the trick with right-on rockin' flair and aplomb. Kudos also to the across-the-board terrific performances that vividly nail the burnt-out soul and tattered, but still fiercely beating heart of a past its prime has-been ragtag rock outfit desperate to regain its erstwhile evanescent glory in one final bid for big time success. All in all, this radiant and touching gem rates highly as one of the true seriocomic sleeper treats from the 90's.\r\n0\t\"About three minutes into this thing I started fast-forwarding, pausing only during the nudity (why is it that bad movies always include such good looking women?). In ten minutes I was done, and wishing I could get my money back from the rental store. The people who write these movies should be sanctioned by the MPAA. Come on writers - the bad guys ALWAYS get into the car with the bomb activated by the good guy's remote control! That's the way its been done since the days of the Ottoman Empire! Also, to add insult to injury, the \"\"twist\"\" at the end was so formulaic, that it could have come from any action movie written in the past 25 years. Burt Reynolds was fine, but he should concentrate on real movies.<br /><br />This movie is just a waste of time - Run away! Run away!\"\r\n1\t\"Anyone who has experienced the terrors of divorce will empathize with this indie film's protagonist, a scared little boy who believes a zombie is hiding in his closet. Is Jake (a mesmerizing Anthony DeMarco) simply \"\"transferring\"\" the trauma of two bickering parents to an understandable image? Or could the creature be real? Writer/director Shelli Ryan neatly balances both possibilities and keeps the audience guessing. Her choice of using one setting - a suburban house - adds to the feeling of desperation and claustrophobia.<br /><br />Brooke Bloom and Peter Sean Bridgers are highly convincing as the angry, but loving parents. However it is the creepy minor characters, Mrs. Bender(Barbara Gruen), an unhinged babysitter and Sam Stone (Ben Bode), a sleazy Real estate agent that linger in the mind. Jake's Closet is a darkly inspired portrait of childhood as a special kind of Hell.\"\r\n1\t\"A bit of Trivia b/c I can't figure out how to submit Trivia: In the backdrop of this performance, one of the images is<br /><br />George Serat's \"\"A Sunday Afternoon on the Island of La Grande Jatte\"\" painting (seen best in chapter 18), this painting is the subject of a Sonheim musical Sunday in the Park with George.<br /><br />A bit of Trivia b/c I can't figure out how to submit Trivia: In the backdrop of this performance, one of the images is<br /><br />George Serat's \"\"A Sunday Afternoon on the Island of La Grande Jatte\"\" painting (seen best in chapter 18), this painting is the subject of a Sonheim musical Sunday in the Park with George.\"\r\n0\t\"Certainly not horrible, but definitely not good.<br /><br />Cry, The Beloved Country (1995) was directed by Darrell Roodt and written for the screen by Ronald Harwood (Adapted from the 1946 novel by Alan Paton). Starring James Earl Jones and Richard Harris.<br /><br />The film is about pre-Apartheid South Africa, and the stories of a black man and a white man intertwining. The pious but naive preacher Stephen Kumalo (James Earl Jones) receives a letter from Johannesburg saying that he must come immediately; he later finds that his son has killed a man. The rich farmer/landowner James Jarvis (Richard Harris) finds that his son, a fighter for black rights, was the one killed by Kumalo's son. In this they connect.<br /><br />I cannot compare it to the 1951 film of the same name, for I have not seen it. Or the 1974 musical titled Lost in the Stars for I have also not seen it; both look better than this one. But Cry Freedom, on the other hand, I have seen; it has a much more urgent air to it, like it actually is trying to say something where the film Cry, The Beloved Country seems to have no idea where it is going. Very \"\"Wishy-washy\"\". I refuse to compare the film to the novel (except that I did enjoy the novel more than I enjoyed the film) because novels and films are two extremely different media and there is no point in trying to transfer directly one to the other or compare them via the same means.<br /><br />Frankly, this movie blew. Well, I guess it wasn't that bad, --Five-out-of-ten, -- but it wasn't that good either. Both of the leads, both very capable actors pull some of the most wooden performances I have seen with some of the most awkward dialogue in film history (but that can be blamed on he screenwriter, Ronald Harwood, who is also oddly off is game with this film, having also written the sublime The Pianist, and Being Julia). Among other things the point and themes of the novel are lost almost entirely in its transition to film for the third time; there is little, if any, tension with any moment of the film, racially or suspensefully. The music doesn't help. The painfully misplaced and boringly pastoral orchestra tracks really help with this dulling down of the film. One upside is the cinematography, with many rather good or great shots, but unfortunately, this does not help the film too much.<br /><br />The last, striking words of Alan Paton's novel are displayed in the last moments of the film. It is too bad that they seem to be so disconnected from the film that was just shown. I don't know what Nelson Mandela might have seen in this film.<br /><br />Thanks for your time.\"\r\n0\t\"This film was not nearly as much of a chore as I expected it to be. There are a few seconds of brilliance in this somewhat idiotic hardcore UFO conspiracy paranoia-fest. Most of the acting is mediocre, but fairly typical for 1970s-style stuff replete with pregnant pauses. A photographer and a model witness some strange goings-on in the woods and soon fall victim to these same goings-on. Flying saucers are spotted, more people disappear - but is it the aliens or our own government's ultra-secret group of cover-up guys? Soon enough, a reporter and a \"\"UFOlogist\"\" (apparently modeled on the character of the writer-director) are drawn into this unraveling fiasco and become the target of the ultra-secret agents who are as menacing as they are improbable and witless. Then the fun really begins.<br /><br />The movie, predictably, makes about as much sense as the average UFO conspiracy theory, but should be commended for taking itself so seriously. The camera work is OK for a low-budget film, the pacing is pretty good, the script is silly and absurd, and there are continuity issues which are fun to look out for. What are the few seconds of brilliance I mentioned? Honestly, I can't say much you without writing a spoiler. Suffice to say that the end of the film is, at least, worth fast-forwarding to if you can't take the middle.\"\r\n1\t\"In New York, Andy Hanson (Philip Seymour Hoffman) is an addicted executive of a real estate office that has embezzled a large amount for his addiction and expensive way of life with his wife Gina (Marisa Tomei). When an audit is scheduled in his department, he becomes desperate for money. His baby brother Hank Hanson (Ethan Hawke) is a complete loser that owes three months of child support to his daughter, and is having a love affair with Gina every Thursday afternoon. Andy plots a heist of the jewelry of their parent in a Saturday morning without the use of guns, expecting to find an old employee working and without financial damage to his parents, since the insurance company would reimburse the loss. On Monday morning, we would raise the necessary money he needs to cover his embezzlement. He invites Hank to participate, since he is very well known in the mall where the jewelry is located and could be recognized. However, Hank yellows and invites the thief Bobby Lasorda (Brian F. O'Byrne) to steal the store, but things go wrong when their mother Nanette (Rosemary Harris) comes to work as the substitute for the clerk and Bobby brings a hidden gun. Nanette reacts and kills Bobby but she is also lethally shot. After the death of Nanette, their father Charles Hanson (Albert Finney) decides to investigate the robbery with tragic consequences.<br /><br />\"\"Before the Devil Knows You're Dead\"\" is a comedy of errors, disclosing a good story. The originality and the difference are in the screenplay, with a non-linear narrative à la \"\"Pulp Fiction\"\". The eighty-three year-old Sidney Lumet has another great work and it is impressive the longevity of this director. Philip Seymour Hoffman is awesome in the role of a dysfunctional man with traumatic relationship with his father that feels the world falling apart mostly because of his insecure and clumsy brother. Marisa Tomei is still impressively gorgeous and sexy, showing a magnificent body. The violent conclusion shows that the world is indeed an evil place. My vote is seven.<br /><br />Title (Brazil): \"\"Antes Que o Diabo Saiba Que Você Está Morto\"\" (\"\"Before the Devil Knows You're Dead\"\")\"\r\n0\t\"This Charles outing is decent but this is a pretty low-key performance. Marlon Brando stands out. There's a subplot with Mira Sorvino and Donald Sutherland that forgets to develop and it hurts the film a little. I'm still trying to figure out why Charlie want to change his name. Every movie with \"\"Charles\"\" has been pretty bad.\"\r\n1\tI remember seeing this film years ago on, I think, BBC2. I would very much like to view it again - does anyone know how I can obtain a copy? As I remember, it was an especially powerful movie, in particular the scene that stands out is of the horses wearing gas masks. Apart from that I really can't recall too much about the story - which is why I want to view it again! I have trawled the web but am unable to find a copy, which is unusual in my experience - perhaps there is no DVD or VHS of this film on the market. Would appreciate any help anyone can give me on this. Thanks very much in advance for your assistance. Best regards, Albany234@googlemail.com\r\n0\tThe original Trancers is not by any means a great movie. It had massive plot holes and very little in the way of internal logic. However, it was entertaining, better done than most low-budget B-movies, and could be surprisingly witty. Unfortunately, Trancers II is none of these.<br /><br />Trancers II suffers from many of the same problems of most flop sequels. The plot is thin enough to see through and the writing is insipid. It seems that the people behind this movie felt that bringing the familiar faces of the first movie back would be enough, and didn't bother with anything else. Not even veteran B-grade actors like Tim Thomerson and Jeffery Combs were able to drag this film out of the muck.<br /><br />A brief plot overview: Jack Deth (Thomerson) is a cop from the future who was sent to 1985 to save the ancestors of members of his government. Trancers II takes place six years after the events of the first Trancers. Jack Deth is married to Lena (Helen Hunt), the woman he met in the first movie, and both live with Hap Ashby, the man Deth was sent into the past to protect. It is discovered that the brother of Whistler (the bad guy from the first movie) has traveled back in time to create an army of Trancers, people turned into mindless killing zombies, to kill Ashby. Complicating Jack's mission is the fact that his first wife, who had died long before Jack traveled to the past, was also sent back to stop Whistler's brother, and now Jack finds himself working with her.<br /><br />I have two real problems with this movie. One is that the method of creating Trancers in this movie is radically different from the methods used in the first movie. What makes it annoying is that, in a rather poor example of Soviet Revisionism, they act like it was always the technique.<br /><br />The other thing that annoys me is that the love triangle between Deth, Lena, and Alice Stilwell (Jack's first wife) is given very little screen time. This bothered me particularly because it was much more interesting than the actual plot of the movie. It felt like it was just something that was thrown in to fill space in the movie. Alice's character in particular seems very unconcerned with the fact that she is reunited with her husband only to find he's re-married, making her either very shallow or very poorly written.<br /><br />The only reason I can think of for watching this movie is if you're interested in watching the entire Trancers series (currently totaling six movies). Otherwise, even if you're a fan of the original Trancers, stay away from this tepid sequel.\r\n1\tHak hap(Black Mask)is what I'd like to call a ballet with fists and explosions. Sure the plot has been tried and heard before, (A biologically engineered soldier that is part of a elite fighting force of supermen that decides he feels that killing and brute force aren't the ways to settle every thing and becomes a pacifist, and a librarian. But when he learns that the rest of his group is trying to get an antidote that will keep them alive by taking on the police -his best friend is a cop- he becomes the black mask.) the style that the movie goes for, very visual, works and at least for me is entertaining. I love martial arts movies that are a spectical. People flying around lighter than air and recovering a split second after impact keeps the pace and action non stop. But that is what this movie is about anyway right, a showcase of Jet Li doing what he does best, and that is spectacular showmanship of his skills, which to say the least are top notch. As with most of the fast action martial arts movies ala. Jackie Chan and Sammo Hung that are just now showing themselves here in the states for the first time, these movies are low on plot and high on amazing physical feats. But I must say, even with the large holes left in the plot (like how do we see him safe in his apartment when just one scene before he had 20 men that are no more than 15 feet from him with sign of escape? Who knows the scene just cuts to him in the apartment.......ohh well suspension of belief I guess) , the movie to me stays interesting. It is only until the last 20 minutes that the film seems to feel like it could have been a little shorter. But still all around a great high paced action movie.\r\n0\tWhy did the histories of Mary and Rhoda have to be so dour? Divorced women with indifferent daughters. And why very little reference to the original show and characters? The daughter characters were silly and uninteresting. Why can't there ever be daughters who like their mother's on TV? It makes sense that Mary would leave Minneapolis, and Rhoda would return to NYC, but why couldn't Phyllis or Sue Ann Nivens be guest stars? It just seems a pitiful way to remember such wonderful characters. It was good to see Mary and Rhoda together of course, but it could have been better, much better. Well, there has been a Mary Tyler Moore Show Reunion, a Dick Van Dyke Show Reunion, hopefully Mary will do better next time if she revisits her old Mary Richards stomping grounds again.\r\n1\tI just saw this movie the other day when I rented it, and I thought this was going to be just another movie with a girl trying to prove a point, but Diane joined boxing because she wanted to. I thought this movie was good. I gave it a 8/10. That's how good it is. Plus a movie with Michelle Rodriguez is always good. Even is she's been in only six.\r\n1\tthis is one amazing movie!!!!! you have to realize that chinese folklore is complicated and philosophical. there are always stories behind stories. i myself did not understand everything but knowing chinese folklore (i studied them in school)it is very complicated. you just have to take what it gives you.....ENJOY THE MOVIE AND ENJOY THE RIDE....HOORAY!!!!\r\n1\tme and my sister use to rent this every time we got movies and our parents would get so mad at so (but they let us anyways) and I love it...I can't find anyone that lives near me that knows what I am talking about...I'm glad to see that I'm not the only one that loved this movie...I wish i could find this on DVD somewhere!! I would love to watch this now just bc I loved it so much as a little kid...and I'm 15 now!!! I remember so much about it...thats where I got the little bunny fufu song from and all my friends know the song but not the movie!! I think the little girl got there by sliding down the slide on her little playground thing\r\n0\tIt is enjoyable and fast-paced. <br /><br />There is no way on Earth that the actor playing Mat could be eighteen. However, the main thing is that he does act eighteen very convincingly. It must be a credit to his audition that he convinced them to cast him. I quite soon accepted him as being a naive young country boy.<br /><br />While his was the best performance, most of the others were also very engaging. In particular, the interplay between the policemen was natural and well-balanced, and worked very well.<br /><br />It is only about 45 minutes long, so the plot is not complex. More key is the style of the whole thing. It is very slick and vibrant, and the backdrops are atmospheric, especially from the fact that all the colours are extremely rich. The gangland is identifiable to foreign audiences, but still manages to be distinctly Australian.\r\n0\t\"This self proclaimed \"\"very talented artist\"\" have directed easily the worst Spanish film of the 21st century. Lack of emotion, coherence, rhythm, skills, humor... it repeats the same situation over and over again. It shows no character development. It does not even show any violent and/or sexual content, and it does not add anything new to the psycho-killer sub genre. So lame it should be shown at film schools as an example of \"\"what not to do\"\" in a first movie.<br /><br />BTW where the hell is the \"\"talent\"\"? there are scenes which have been shot almost identically; there are scenes which have two or more master shots and it is quite awful to see the action jumping from one master shot to another without a reason. The camera almost never moves, as if the \"\"very talented artist\"\" was afraid of showing his lack of visual skills. The actors playing the main roles act like amateurs, and the supporting cast is hardly believable. There are more holes than plot in the script (if ever there was one)...<br /><br />A really disheartening movie, and a whatsoever talented director.\"\r\n0\tTrot out every stereotype and misrepresentation you've heard about semi-devout Mormons, and you'll see they've all starred in this ridiculous excuse for a film. Finally Kurt Hale's fortunes have changed (thank goodness) and hopefully it will be a long while before we see any of his features in theaters.<br /><br />The cinematography was amateurish (I think they used a camcorder for some of the basketball scenes). The plot was limp and very unfunny. You really didn't understand why anyone did anything. It was like I had sand in my eyes, and a 300-pound lady was sitting on my face, it was that painful.<br /><br />The only reason I didn't give this movie a negative rating was because the scale won't let me.\r\n0\t\"I'd have to say that this was a little embarrassing for the 'King of the Cowboys'; made in 1948, the picture came out a decade after Roy Rogers' earliest pictures in which he had a starring role. Roy's character comes off as a bit clueless in this one, along with his female co-star Jane Frazee, who alternates her allegiance between Roy and Robert Livingston, portraying chief bad guy Bill Regan. The whole story seems kind of muddled, with missed opportunities for what could have been an entertaining hour or so. Like the legend of the 'Hangman's Hotel' for example, which says the hanged man comes to life at midnight. With Andy Devine in the cast as Cookie Bullfincher, you would think the story would get a little mileage out of that set up. Instead, you have some convoluted proceedings that would have been better served if this had been a Bowery Boys flick. It was a sad attempt at a haunted hotel gimmick that relied on poor old Genevieve, who truth be told, wound up getting more screen time than Trigger, who's contract as 'Smartest Horse in the Movies' didn't have anything to say about getting upstaged by a mule. And then you have Foy Willing and his Riders of the Purple Sage replacing Bob Nolan and the Sons of the Pioneers for your musical interlude. I don't know about you, but it was already half way into the picture and I was still looking for Pat Brady - oh well! <br /><br />Yet there was still an interesting element to be found here if you were looking hard enough, and that turned out to be Roy's athletic dismount of Trigger while still on the run from the bad guys. OK, it was probably a stunt double, but I haven't seen that one before in a couple hundred Westerns.<br /><br />Jane Frazee does the honors as the female lead in this picture, as she would in four other films opposite Roy in the 1947/1948 time frame. In \"\"Under California Stars\"\", she appeared as Andy Devine's cousin, appropriately named Caroline Bullfincher. You're never quite convinced what side she'll come in on in this story though, since she starts out pretending to be someone she's not, and winds up on the good guy side almost by accident.<br /><br />Fans of the old Laurel and Hardy films might be as surprised as I was to see James Finlayson here as the Sheriff of Sintown. I would have liked a little more comedy relief written into his role, but he played it pretty straight after all. I had to wonder, when it was all over, why he and old Vanderpool (Charle Coleman) wound up in the mine shaft with Cookie when there was no reason for that to be. Just a way to close it out I guess, with about as much thought as went into the rest of the picture. I hate to be that harsh, but if you've seen enough Roy Rogers flicks, you've got to know that this was not one of his finer efforts.<br /><br />Say, Sintown - I wonder if that's the same place that grew up to be Sin City?\"\r\n1\tI saw a special advance screening of this today. I have to let you know, I'm not a huge fan of either Dane Cook or Steve Carell, so I really had no expectations going into this. I ended up enjoying it quite a bit.<br /><br />Dan in Real Life is the story of a widower with 3 daughters who goes to spend a weekend with his family. While at a bookstore, he meets the woman of his dreams, only to find out that she happens to be his brother's girlfriend.<br /><br />This movie is pretty well made- the soundtrack, cinematography, and acting are all top-notch, especially Steve Carell. My problem with it was mostly that there seemed to be a lack of character development, mostly with Dane Cook's character. We never really get a close look at the relationship between Dane and Steve's characters, and I felt that it could have helped a bit in showing what Dan's inner conflict about being in love with Dane's girlfriend was like. Other than this though, Dan in Real Life is definitely a solid, sweet film- definitely a nice break from all the horror and action movies we've been getting this year.\r\n1\t\"I originally saw this very dark comedy around 2000 or so on cable TV. What a surprise and delight! Everyone is covertly armed in this movie! Dreyfuss plays the \"\"mental\"\" don (remember the New York don who was supposed to be schizophrenic? Art imitates life or vice-versa?). Diane Lane and Ellen Barkin are at their most beautiful and NOT to be toyed with! Thus proving that beauty and toughness DO go together! Then there is the great \"\"bullshit\"\" scene between Barkin and Jeff Goldblum (Rita and Mickey) where they verbally play off the world \"\"bullshit.\"\" This film is both subtle and bald. For all the shooting, it can be a very quiet film. And, you have the opportunity to see several actors in their final or near final roles. Joey Bishop. Richard Pryor. Henry Silva. It is not a film for everyone. But, if you like a film that has a lot of word play and keeps moving without blowing up everything in sight, this is the film for you. Roger Ebert dumps on this film. He's flat wrong. THIS is a fine, fine film! Maybe just not one for Ebert. I consider it as a 10 because of how well it is done and how funny the script can be, while not really being a straight comedy kind of film. I like it so well that I bought it on DVD because it just doesn't get shown very much on cable TV. Now, it's all mine!\"\r\n1\t\"Moe and Larry are newly henpecked husbands, having married Shemp's demanding sisters. At his music studio, Shemp learns he will inherit a fortune if he marries someone himself! <br /><br />\"\"Husbands Beware\"\" is a remake of 1947's \"\"Brideless Groom,\"\" widely considered by many to be one of the best Stooge films with Shemp. The remake contains most of the footage from that film. The new scenes, shot May 17, 1955, include the storyline of Moe and Larry marrying Shemp's sisters, along with their cooking of a turkey laced with turpentine! A few new scenes are tacked onto the end of the film as well(a double for Dee Green was used; if you blink, you will miss the double's appearance.) <br /><br />\"\"Husbands Beware\"\" would have made for a good film with just the plot line of marrying the sisters. Budget considerations, coupled with fewer bookings for two-reel comedies, influenced the decision to use older footage.<br /><br />Although completely new films were still being made by the Stooges, most of their releases by 1955-56 were made up of older films with a few new scenes tossed in. \"\"Husbands Beware,\"\" while one of these hybrids, is watchable and entertaining; we get to see most of \"\"Brideless Groom\"\" again, and the new scenes are funny enough to get the viewer through the film. This film is one of the last Stooge comedies to feature new footage of Shemp, and it was released six weeks after his death.<br /><br />7 out of 10.\"\r\n1\t\"\"\"9/11,\"\" hosted by Robert DeNiro, presents footage from outside and inside the Twin Towers in New York, on September 11, 2001.<br /><br />Never too grisly and gory, yet powerful and moving. \"\"9/11\"\" is a real treat. Anyone not moved by this television show is immune to anything.<br /><br />5/5 stars --<br /><br />\"\r\n1\t\"\"\"Foxes\"\" is one movie I remember for it's portrayal of teenagers in the late 1970's. As I am exactly Jodie Foster's age, I related to this movie. It deals with the frustrations, temptations, relationships & rebellion of youth. The soundtrack is great with inspiring rock eg. \"\"More Than a Feeling\"\" by Boston and sad numbers like \"\"On the Radio\"\" by Donna Summer. The music of my late teens. Yep, I'll always remember this one, even if it wasn't huge.\"\r\n1\t\"Although released among a flock of revenge-minded action flicks (KILL BILL VOL. 2; THE PUNISHER; WALKING TALL), MAN ON FIRE works as well as it does thanks in large part to the always-watchable Denzel Washington, one of the best actors around today.<br /><br />In MAN ON FIRE, based on A.J. Quinnell's 1980 novel (first filmed in 1987, with Scott Glenn), Washington plays a down-on-his-luck ex-mercenary who has now stooped to drinking from a flash of Jack Daniels, until his old partner (Christopher Walken) offers him a chance at redemption. He is hired on as a bodyguard to the 10 year-old daughter (Dakota Fanning) of a Mexican businessman (Marc Antony) and his American-born wife (Radha Mitchell). While he and Fanning work like oil and water first (not mixing very well), he really gets to form a bond with her, encouraging her to do better at swimming, while he at the same time attempts to deal with the demons of the past. It is that very bond that will force Washington back into his old line of work when Fanning is kidnapped and held for a $10 million ransom, and he is nearly killed. With almost any other stock action hero (Schwarzenneger; Segal, etc.), the subsequent bloodbath would be the same repetitive schlock we've seen a million times before. But Washington's character, though he's killing for a reason, does not particularly enjoy doing what he does. Still, he gets help from a very intrepid Mexican newspaper reporter (Rachel Ticotin) out to expose \"\"La Hermanidad\"\" (The Brotherhood), the kidnap gang responsible for Fanning's abduction.<br /><br />MAN ON FIRE is flawed to some extent because of the hyper camera work, nearly headache-inducing montage editing, and various film stocks that are par for the course of its director Tony Scott (TOP GUN; CRIMSON TIDE), but which are not necessarily unique to him (witness Oliver Stone's use of montage in JFK or Sam Peckinpah's in his classic 60s and 70s films). Still, Scott gets a very good performance from Washington, as well as Fanning, who comes across as far more than a typical movie-brat kid. Harry Gregson-Williams' south-of-the-border Spanish guitar score is enhanced by soundtrack splashes of Chopin, Debussy, and even Linda Ronstadt's classic 1977 country-rock version of \"\"Blue Bayou.\"\" Although the film overall is quite violent, it is no worse than most action films of the last ten years, and overall it is much better than most.\"\r\n1\t\"It's true that Danny Steinmann's \"\"The Unseen\"\" is a simplistic horror thriller with a very predictable plot, no particular attempts for twists or surprises whatsoever and featuring literally every single cliché the genre has brought forward over the decades, but that doesn't necessarily make it a bad film. On the contrary, my friends and I were pleasantly surprised by this obscure but nevertheless intense little 80's shock- feature that mainly benefices from a handful of brutal images and a downright brilliant casting. The beautiful and ambitious reporter Jennifer Fast and two of her equally attractive friends travel to a little Californian town to shoot a documentary on the anniversary festival, but their hotel forgot to register their booking. In their search for a place to stay, the trio runs into the exaggeratedly friendly but suspicious museum curator Ernest Keller who invites the girls to stay at his remote countryside mansion. One by one the girls experience that Keller and his extremely introvert and submissive sister Victoria hide a dark and murderous secret inside their house. \"\"The Unseen\"\" can easily be described as a cheap and ultimately perverse amalgamation of the horror classics \"\"Psycho\"\" and \"\"The Texas Chainsaw Massacre\"\". The plot is a series of familiar themes that became notorious and endlessly imitated due to these two films, like twisted family secrets in the cellar, voyeurism, crazed inbred killers and a very unappetizing treatment of chickens. Still, I don't consider these to be negative remarks, as \"\"The Unseen\"\" is a completely unpretentious and modestly unsettling thriller that clearly never intended to be the greatest horror classic of the decade. Although the denouement of the plot is pretty clear quite fast, director Steinmann attempts to maintain the mystery by keeping the evil present in the house \"\"unseen\"\" like the title promised. The casting choices and acting performances are truly what lift this sleeper above the level of mediocre. Sydney Lassick, immortalized since his role as the overly anxious psychiatric patient Charley Cheswick in \"\"One Flew Over The Cuckoo's Nest\"\" is truly the ideal choice for the role of Ernest Keller. His persistent friendliness and almost naturally perverted appearance are exactly what the character needed. Also Stephen Furst, who eventually turns from the unseen into the seen, gives away a tremendous performance as \"\"Junior\"\". He looks and acts like an authentic handicapped man and his attempts to get close to Jennifer in the basement are genuinely unnerving. \"\"The Unseen\"\" is a slow and predictable but nevertheless potent early 80's film that will certainly appeal to fans of 70's exploitation and generally weird stuff.\"\r\n0\t\"** CONTAINS SPOILERS ** <br /><br />The truly exquisite Sean Young (who in some scenes, with her hair poofed up, looks something like Elizabeth Taylor) is striking in her opening moments in this film. Sitting in the back of a police car waiting to signal a bust, her face and body are tense and distracted. Unfortunately, once the bust is over Young's strained demeanor never changes. This is one fatally inhibited actress.<br /><br />One has only to compare Young to the performer playing her coworker and best friend, Arnetia Walker, to grasp what is missing in Young. Walker is open, emotional, and at ease at all times...in that there's no apparent barrier between what she may be feeling and her expression of it. She is an open book. Young, on the other hand, acts in the skittish, self-conscious way you might expect your neighbor to act were they suddenly thrown into starring in a film. Basically, she doesn't have a clue.<br /><br />With this major void looming at the center of the movie, we're left to ponder the implausiblities of the story. For instance, after Miss Young is kidnapped by the criminal she's trailing and locked in a closet, she breaks the door down when left alone. Granted, she's dressed only in a bra and panties, but in a similar situation, with a psycho captor due to return any moment, would you head for the door...or take the time to go through his dresser, take out some clothes and get dressed? I would guess that this and other scenes are trying to suggest some sort of mixed emotions Miss Young's character is experiencing, but Young can not convey this type of complexity.<br /><br />There are a few affecting moments in the film, such as the short police interviews with the criminal's past victims, but overall this is an aimless endeavor. It's too bad Miss Young was replaced while filming the pair of comic book style films that might have exploited her limitations with some humor (BATMAN and DICK TRACY), because her floundering while attempting to play actual people is oddly touching. Watching Miss Young try to act, at least in this \"\"thriller\"\", is a sad spectacle.\"\r\n1\t\"This made for television version of the legendary stand against hopeless odds is more objective, more realistic than earlier filmed versions of the events, though the one movie made after this went perhaps too far in humanizing the figures of Sam Houston, Bowie, Travis and Crockett.<br /><br />The focus here is on Jim Bowie, played with sharp, cynical detachment by James Arness who is apparently still alive at age 85. Then 65, he made a comeback to acting after years away from the screen to do this part.<br /><br />Puerto Rican-born Raul Julia humanizes Gen. Santa Ana as no one since J. Carol Naish back in '54 had done. However, the Mexican dictator is portrayed as a lecherous, vainglorious popinjay--gaudier uniforms have never been seen before or since. He receives excellent advice from the European officers he has hired but, convinced of his own infallibility, he does not heed it.<br /><br />Alec Baldwin is the one actor whose age is appropriate to the character he plays: Col. William Travis. His portrayal is earnest. He is almost in awe of the older men who share command with him.<br /><br />The one jarring note was Brian Keith as Crockett. In a coonskin cap and carrying Ol' Betsy, he stumbles about as if he had wandered in from another movie. With no conviction in the portrayal, the character is reduced to a few stage conventions. <br /><br />The script reveals some historical facts overlooked or suppressed in earlier film versions. We learn that Jim Bowie was, in the person of Santa Ana, fighting his own brother-in-law. The Mexican soldiers performed poorly in part because they were armed with rifles left over from the Napoleonic Wars a generation earlier. \"\"Santa Ana likes a bargain.\"\" Bowie wryly explains. The whole project of defending the former Spanish mission as a fort was militarily ill- advised--a fact explored in greater depth in the 2004 film \"\"The Alamo\"\".\"\r\n0\tI watched Free Money last night & it was the longest 90+ minutes of my life. With such an intriguing cast, I really thought that I was in for a treat - especially since I'm a Brando fan. WRONG! What a waste of talent. It's almost embarrassing to watch at times (like the cattle prod scene), & there were so many missed opportunities for humorous setups (why didn't they show Charlie Sheen's character going back to tow Brando's truck?) Ugh. It tries to be a slapstick comedy, but I just wasn't buying into it. Skip this one. Only for die-hard Brando fans.<br /><br />I'm giving it 2 out of 10 because I still think the worse movie ever made was Skidoo.\r\n0\tThe concept for Sarafina appears to be a sound one, that is aside from the musical perspective. It attempts to combine upbeat African music with a story describing the atrocious conditions and atmosphere that black people were forced to endure at the time the film was set. The contradictions of each of the two elements are too glaring and the film never justifies such rapid shifts between jubilation and terror. Had it simply been a drama reflecting these conditions it may have been a good film, however the scenes of school children being shot down by soldiers don't exactly sit well next to the songs. <br /><br />Aside from the poor premise the acting isn't the best either, Goldberg gives a mediocre performance as does the remainder of the cast. Overall a disappointment.<br /><br />3/10\r\n1\tHenry Fonda brilliantly captures what we have long believed Abraham Lincoln was like. It is a fooler. Through Fonda's performance we are led to believe (on the surface) that Abraham Lincoln was a country bumpkin. But, through his confrontation with the lynch mob and especially during the court proceedings, you can see that beneath the exterior posturings is a brilliant man who has a very good command of what is going on around him and how to influence the people around him. <br /><br />In this movie Henry Fonda shows that he has a very good grasp of how to present humor. It is an aspect of him that has been lost over the years. When he is telling stories and jokes he has the timing down perfect. There is a sequence in the trial that had me laughing quite hard. He shows this gift again in The Lady Eve in 1940.<br /><br />The ending by John Ford is absolutely brilliant with Henry Fonda going to the top of a hill and in the distance a tremendous storm symbolic of the Civil War. He goes forward into history. The movie is fiction but the insight into Lincoln is tremendous. Definitely worth seeing again.\r\n1\t\"Thank God this wasn't based on a true story, because what a story it is. Populated by despicable characters whose depravity knows no bounds, Before The Devil is a mesmerizing, jaw-dropping excursion into perversion which would be laughable (and sometimes is, even with - or perhaps because of - the sickeningly tragic undercurrent of human dysfunction throughout) if it weren't carried out with such magnificent, overwhelming conviction by its stars. The excellent script by Kelly Masterson and superb direction by none other than Sidney Lumet doesn't hurt either.<br /><br />The main dysfunction here is of a family nature, with the two majorly screwed up brothers (brilliant portrayals from Philip Seymour Hoffman and Ethan Hawke) deciding to rob their own parents' jewelry store, an attempt that goes pathetically awry.<br /><br />The story is told with time-shifts (which are noted on screen, such as: \"\"Charlie: Two Days Before The Robbery\"\", so no one should be confused); some people have said they didn't like this device but I thought it worked perfectly, adding to the skeweredness of the whole affair, considering that the two brothers in question are hardly playing with full decks - between them you couldn't make a decent poker hand to save your life. Throw in these cheesy extra tidbits: one of the brothers is a drug addict, married to Gina (Marisa Tomei, also excellent), who is having an affair with the other brother, toss in some monumental sibling rivalry, along with the fact that said drug addict brother hates his father (a wrenching performance from Albert Finney), who has apparently caused him serious past pain, and you've got a Shakespearean/Greek tragedy on your hands. Proceed with caution.\"\r\n0\tThis film is too skeletal. It's a fairly low-budget film (I hope!) which excuses it somewhat, but the lack of a decent cast and a fleshed out plot hurts it too much. Phillips is quite believable in his role as a torn-apart son of a well-off family who's searching for himself (though his family is...er...well, a little too white...), but the rest of the cast is grasping at straws. Every moment that has potential is ruined by excessive melodrama, and there are *way* too many sub-plots (which is an obvious sign of plot-deficiency. They needed filler...) I wouldn't recommend this film to anyone who isn't either a hard-core Phillips fan, or who has absolutely *nothing* to do. 4/10.\r\n0\t\"Didn't care for the movie, the book was better. Does anyone know where it was filmed? *** this was my first visit to your site...just found the answer to my question. so now I look like a dummy, but I think I'll still submit my comments. and yes, British Columbia is lovely ***Or why they took it from its South Carolina Coastal setting?(this question stands) The place was essential to the fabric of the book and its change was part of my disappointment with the movie. Oh, I just read where I need to write at least ten lines. Here's my other main issue with the film. Kim Bassinger was too vapid and not at all what I pictured from the book. I know, the book was the book and the movie; well not so good. I found the character in the book much more empathetic. Also the book evoked rustic, almost primitive images of the monastery. While the \"\"castle\"\" in the film was much more visually impressive, it distorted the feel of the story and seemed at odds with the characters.\"\r\n1\tNice movie with a great soundtrack which spans through the rock landscape of the 70's and 80's. Radiofreccia describes a generation, it describes life in a small village near Correggio (hometown of Ligabue, the singer who wrote the book that inspired the movie), it describes life of young people and their problems relating to the world. It reminds of Trainspotting, with a bit of Italian touch.\r\n1\t\"Often laugh out loud, sometimes sad story of 2 working divorced guys -- Lemmon a neurotic clean \"\"house husband\"\" and Matthau a slob sportswriter -- who decide to live together to cut down on expenses. <br /><br />Nicely photographed and directed. The script is very barbed -- that is, there's always more than one side to almost every line. Particularly funny scene involves 2 british sisters (Evans and Shelley) who seem amused by everything anyone says, but when Lemmon busts out his photos of kids and, yes, ex-wife-to-be, he has the girls sobbing along with him before Matthau can show up with the promised drinks!<br /><br />Very entertaining.\"\r\n0\t\"Wow, what a great cast! Julia Roberts, John Cusack, Christopher Walken, Catherine Zeta-Jones, Hank Azaria...what's that? A script, you say? Now you're just being greedy! Surely such a charismatic bunch of thespians will weave such fetching tapestries of cinematic wonder that a script will be unnecessary? You'd think so, but no. America's Sweethearts is one missed opportunity after another. It's like everyone involved woke up before each day's writing/shooting/editing and though \"\"You know what? I've been working pretty hard lately, and this is guaranteed to be a hit with all these big names, right? I'm just gonna cruise along and let somebody else carry the can.\"\" So much potential, yet so painful to sit through. There isn't a single aspect of this thing that doesn't suck. Even Julia's fat suit is lame.\"\r\n1\tThis is definitely one of Jet's best efforts. Few actors are able to play the stoic as Jet Li can. The action is rapid-fire, and special-effects boosted for intensity purposes. As a result, it may take Americans a little off-guard. A little suspension of disbelief goes a long way in a Jet Li film. I feel that it is an excellent introduction to Jet's work and look forward to further masterpieces (especially Fist of Legend) making it into the US market. A nice mixture of gunplay and physical conflict will satisfy most action flick enthusiasts.\r\n1\t\"I caught this at a screening at the Sundance Film Festival and was in Awe over the absolute power this film has. It is an examination of the psychological effects on our brave soldiers who join the military with hopes that they will protect and serve our country with honor as well as be taken care of by our government for it. The film details the psychological changes that takes place in boot camp as the soldiers are turned into \"\"killers for their country\"\" and put into the war and the after effects once they return home. It also portrays the effect that killing has on the human psyche. It pays homage to the Soldiers and never ever criticizes the soldiers unlike other films, instead criticizes a system that is not prepared to and does not take care of all the physical and psychological needs of the returned Vets.<br /><br />This film is powerful, moving, emotional and thought provoking. It stands as a call to arms to support our troops not only by buying stickers and going to parades but by actually listening to them, and helping to support a change in the way their health and well being is taken care of after the killing ends.<br /><br />The best film of the Festival so far, ****/****\"\r\n1\t\"\"\"Enter the Fat Dragon\"\" is one of the funniest martial art movies I had the opportunity to see. Sammo Hung portrays a Chinese farm boy that comes to visit a city friend. Just like Tang Lung of \"\"Way of the Dragon.\"\" Wherever Sammo goes, trouble starts, therefore he has to rely on his martial art skills to solve the differences. Luckily, Sammo's character learns martial arts by imitating and mimicking his idol, Bruce Lee. He even strokes his nose with his thumb exactly the way Bruce Lee does and also releases his screeching yell. He also uses nunchucks in a scene. It was like watching a fat Bruce Lee. There's a great showdown near the end of the movie which consists of foreign fighters. Sammo has to encounter each opponent one by one. Sort of like \"\"The Game of Death\"\", where each fighter possesses a different martial art discipline from one another.<br /><br />This is one of the films I really enjoyed watching and also the very first Sammo Hung movies I've seen. Excellent fight scenes and a lot of laughs. A rare classic Sammo Hung film I highly recommend for all you martial art fans out there. 8.5/10!\"\r\n1\t\"The movie is wonderful. It shows the man's work for the wilderness and a natural understanding of the harmony of nature, without being an \"\"extreme\"\" naturalist. I definitely plan to look for the book. This is a rare treasure!<br /><br />\"\r\n0\tThis was a great book and the possibilities for a truly great film were definitely there. But the casting decisions completely wrecked the movie. Hanks is a great actor to be sure, but lacks the smarmy, morally ambivalent characteristics needed for the lead role. Jeff Daniels would have been my choice.<br /><br />Putting Melanie Griffiths in, for eye candy reasons, is understandable, but again, she did not portray the depth or ambivalence, so need to pull this off.<br /><br />This movie is a great example of how every decision, even those early on in the movie production can make or break a file.\r\n0\t\"With a title \"\"borrowed\"\" from Werner Herzog and liberal helpings of Kubrick, Haneke and Noe it is painfully obvious that Thomas Clay considers himself a cut above the usual sort of rubbish our British cinema churns out. \"\"Robert Carmichael\"\" (for short) sets itself up as a realistic study of youthful alienation and at the same time seemingly a critique of the Iraq war. The problem with the realism is that the characters are so patently unrealistic and atypical - contrary to the fetid imaginings of \"\"extreme\"\" filmmakers most teenagers are not drug addled rapists. As a critique of the Iraq war, a film about youth violence (by a talented classical musician - subtext society has damaged this sensitive individual)is so infantile as to hardly bear thinking about. There are signs of technical ability but some reviewers have overstated this. Like Kubrick and Noe he does show that the desire to shock linked with supposed serious intent may be the worst cinematic con trick of recent film. People liked \"\"Clockwork Orange\"\" and \"\"Irreversible\"\" because they liked the rapes and the violence, but most of all they liked feeling culturally superior for liking things that most hated. So too much Kubrick and not enough Haneke (a serious and moral filmmaker) here labels this as one of the most moronic films in years. (I am not against violence in film. To do it seriously is a hard trick though - people in cinemas cheered Alex in \"\"Clockwork Orange\"\" showing how Kubrick's supposed intent was missed by miles. Gratuitous violence is much easier to achieve and is less offensive than the pretensions of many art-film directors.)\"\r\n0\t\"STRANGER THAN FICTION angered me so much, I signed up on IMDb just to write this review. STRANGER THAN FICTION is a surprisingly complex, touching and thought-provoking movie until the very end. Once you suspend multiple lapses of logic (why didn't Will Ferrell hear Emma Thompson's voice 10 years ago when she fist started writing her book? \"\"The phone rang. The phone rang again.\"\" How could she not know it's him calling? etc.), the movie challenges one's thoughts about mortality, fate, and sacrifice.<br /><br />The brief history of literary themes provided by Dustin Hoffman should especially entertain former English majors. And Maggie Gyllenhaal is always a pleasure, even though Will Ferrell might just as easily be an ax murderer as a bumbling soul. Her quick trust of him is a mighty big leap of faith.<br /><br />Ah, but the ending. Until the very end, I would have given 9 out of 10 stars to this movie. The movie as a metaphor for life's journey, as a tribute to the notion of 'writing true,' as a reminder that great literature is either comedy or tragedy, but not both, is outstanding. The entire movie leads the viewer to understand and accept the moment of Will Ferrell's fate. And no matter how endearing a character he may have become, we know full well why we will accept the ending. The last act occurs, the screen goes white, the credits roll. A profound and powerful end to an almost perfect film. An end that would have been debated for weeks.<br /><br />NO!!!!!!!!!! No credits rolled. Say it isn't so. Say Hollywood didn't tack on another 10 minutes of crap that completely undermined the integrity and heart of the movie. Dustin Hoffman got it right when he said, \"\"It's no longer a masterpiece; it's OK.\"\" An apt review of the movie. Except to me, it wasn't even OK. I was so offended about the betrayal of 'writing true,' about the decision to pander the film that I actually burst into angry tears explaining this on the ride home from the movie. I don't often cry. I could care less about most movies, but I am still angry about this one.<br /><br />My questions for Zack Helm, the writer, are this: did the original movie end when the screen went white? And were you forced by the vapid movie powers-that-be to tack on an ending unfaithful to the core of the movie? Or did you tack that maudlin ending on yourself? I've read you're brilliant. I hope your original script ended the movie the first time.<br /><br />I know Zack Helm will never see this review, and I've been unable to find a contact for him to ask myself. But, please, movie-goers, am I the only one who feels this way about STRANGER THAN FICTION? One good thing came from me seeing this movie: I doubly admire LOST IN TRANSLATION now.\"\r\n0\t\"Tierney's an authentic tough guy, but this movie misfire from normally competent RKO undercuts his impact at every turn. The script is about as plausible as OJ Simpson at a Ten Cmmandments dinner. Just count the times Tierney's incredible car companions swallow one lame excuse after another for his evasive and violent acts. The old cliché about it \"\"only happening in the movies\"\" applies here in spades. Then there's the guy playing the watchman, who appears to have wandered in from a boozy WC Fields comedy, ruining the menacing mood in the process. The static one-room sets don't help either, and neither does director Feist's obvious lack of feel for the material. Then add a final car chase missing both imagination and pay-off, and the results are pretty flat. In fact the movie only picks up in the station-house scenes where hard-bitten cops discover the hidden powers of innocent-looking gas station attendants. Too bad that Tieney's career never really gelled. I gather that was due largely to being as big a tough guy off-screen as on and getting in one sleazy scrape after another. His ice-cold manner and clarity of emotion remind me at times of Lee Marvin at his tough-guy best. Anyway this project might have worked as a radio play, but as a movie with a promising noir title, it's a disappointment.\"\r\n1\t\"i think that this film is brilliant.there are many reasons why but these are some of them 1)the good acting by Tom and Tyler 2) brilliant machine gun scene that was a piece of brilliance 3) i thought that the ending was a good twist because i never expected that at the end all credit to Sam Mendes.as well as a these 3 points the film form of the film is good as well. i am a film student at college and we studied this film in great detail and it was one of the best films i have seen in many years. i'd just like to say a big thank you to all of the people involved in making this film. lastly i would like to say the best scene in the film is the machine gun scene where John Rooney gets kill it is just pure brilliance in shooting the scene in silence until John Rooney says \"\" i'm glad it's you\"\" it is a lot better like that i think because the viewer creates there own sound and that sound is totally different for every viewer just brilliant.<br /><br />thank you for reading this comment written by Ross Kirk aged 16\"\r\n1\t\"GBS wrote his own screen adaptation of this Nobel Prize winning play but didn't live to see it produced (he had won an Oscar in 1938 for his brilliant adaptation of his 1914 play PYGMALION). When Otto Preminger mounted (produced and directed) this production in 1957, seven years after Shaw's death, he had noted British author Graham Greene do the adaptation and it was a solid choice.<br /><br />Taking a cue from Shaw's own screenplay, Greene uses material from the stage Epilogue to create a framing device to meld the two acts of the play (one early and one late in Joan's story) into a unified and most satisfying whole. Where on stage the shift in tone is buffered with an intermission, here it works just as well with a return to KING Charles Balois's bedchamber (where the man Joan put on the throne is dreaming of the events which led to his current situation), and more material from Shaw's Epilogue - the introduction of the shade of John Gielgud's Warwick (the English \"\"king maker\"\").<br /><br />The majority of the language is solid GBS, and the performances from stalwart Shauvians (like Felix Aymler's Inquisitor or Harry Andrews' de Stogumber) to relative newcomers (the film established Jean Seberg's career) are first rate. It may jar some, only familiar with Richard Widmark's many movie villains, to see him playing a frail and somewhat silly Dauphin, but the performance - oddly top billed - is professional, even if arguably miscast.<br /><br />The symbolism of the opening credits and the director's choice to use the visual vocabulary of black and white filming all serve Shaw and the story well. Go in expecting quality entertainment and you won't be disappointed.\"\r\n1\t\"The first thing you meet when you study fascism is ostracism:because this\"\" philosophy \"\" is a fake one,there's a need to use scapegoats to assess the \"\"thought\"\".Ettore Scola's movie,probably his masterpiece, focuses on the outcasts,the scapegoats of the regime.<br /><br />Of the historical event (Hitler and Mussolini's alliance),we will see almost nothing:some military march,some garlands,some scattered voices ..Our two heroes are not invited for the feast of virility. \"\"Genius is essentially masculine\"\" :this is the golden rule Antonietta (a never better Sophia Loren)embroidered on her cushion;Antonietta ,whose world amounts to her kitchen,whose pride is her offsprings .At the beginning of the movie,she's a victim of this hypermacho world,but she does not realize it.She thinks she should be happy.Gabriel,on the contrary ,is politically aware,he knows about the cancer that is destroying inexorably his country.But as a gay man,he is no longer part of it,he's about to be arrested.<br /><br />Forgetting everything that comes between them,they realize what they have in common and they make love.This is an act of rebellion,particularly for Antonietta ,whose ethic should forbid such a thing.Becoming an adulteress in a land where politics and religion combine to repress women as ever leads her to some kind of political awareness.One of the last shots shows her listening to the news on the radio.<br /><br />Expect the unexpected and maybe a doctrine which denies the human being his intimate personality will see that its days are numbered.\"\r\n1\tThis is arguably the best film director Haim Bouzaglo made until now. A skilled TV director, well-trained in story-telling and in directing his actors through long epics he tried to catch in this very low-budget film the essence of the very special psychological situation the Israelis live though under the permanent danger of the terror attacks, resulting in 'distorted' lives. Each character trying to live his own life, to watch and control the other, while being himself watched and controlled by other characters and mostly by the continuous pressure, by political and historical forces well beyond his control. Some call this destiny, but destiny has a very concrete representation in this film.<br /><br />There is no explicit political saying in 'Distortion'. Characters never discuss politics, not even at the level of saying 'bastards!' when they hear that a new terror attack happens. Their reaction to events is to localize the attack and to count the victims using the official and media terminology for the dead and the wounded. They do not really live but rather survive on borrowed time happy to have survived one bomb, and waiting for the next one to happen. Personal, social, professional life seems to work someway, but is deeply flawed and influenced by events. The main character played by the director is a playwright whose mid-life personal and creative crisis is amplified by the pressure of the events and by the fact that he is lucky enough to leave a terror attack site minutes before the bomb explodes. He hires a private detective to follow his girlfriend who is a TV investigative reporter whom he suspects is falling in for the subject of her next show - another failed man, former military, whose business and family life dismantles under the events. He starts to write a play that carbon-copies the reality and will bring it to the stage, in theater in film scene that reminds Hamlet as well as 'Synecdoche, New York'. It's not that I would dare suspect Charlie Kaufman looking over the shoulder of Bouzaglo, he certainly needs not that, but the Israeli director screen is brilliant into anticipating the later film (and the first directed by Kaufman). As in the American film actors play real persons and start interacting with them in an reality-meets-stage-meets-reality melange which never lacks logic, at least not artistic logic.<br /><br />Bouzaglo directs his actors with the usual talent, trusts them and allows them the freedom of living through the situations rather then acting them. His style is much more free here than in his TV series, and the 'distortion' effects, although borrowed from American horror movies work pretty well all over. The ending seemed to me a little rhetorical and unsatisfying dramatically, but the shade of the suicidal killer who is haunting the film and the whole situation in a temporal loop will also follow the viewer when remembering later this film.\r\n1\tFor me this is Ealing Studio's most perfect film - as fresh and relevant half a century later as it was the day it was released.<br /><br />As a satire on economic notions of 'growth' and the commercial need for in-built obsolescence, it could scarcely be more up-to-the-minute. And of what other film can it be said that the hero literally wears the plot?<br /><br />Oddly, there are parallels with Jurassic Park, in which messing with the environment will literally turn round and bite you. But Spielberg shied away from the book's brilliant central conceit to tack on some nonsense about 'children'. Hmmm.<br /><br />In The Man In The White Suit, Alec Guiness plays an idealistic young scientist who comes up with a cloth that never gets dirty and never wears out. Suddenly workers and capital at the northern English mill where he is working are united as never before in protection of their livelihoods.<br /><br />Of course, being Ealing, it's a comedy, but it needn't have been. The complex interplay of vested (should that be suited?) interests plays out beautifully, as one by one all parties realize that 'progress' is a threat, and that disposability and waste are what keep the looms turning.<br /><br />But, yes, this is a comedy - albeit a pointed one - and amid the political ironies are delicious performances, and some good old-fashioned knock-about laughs.<br /><br />Nonetheless, it's the biting satire that endures - dazzling and white.\r\n1\t\"Several years ago when I first watched \"\"Grey Gardens\"\" I remember laughing and finding it hilarious camp. Years later I still laugh out loud when I watch it, but after many viewings I've come to see the beauty in the strange, twisted relationship between the inseparable \"\"Big\"\" Edith Bouvier Beale and her daughter \"\"Little\"\" Edith Bouvier Beale.<br /><br />Mother and daughter living together in their decaying 28 room East Hampton mansion add a whole new meaning to the term \"\"Shabby Chic\"\". With innumerable cats, raccoons and opossums as roommates this Aunt and Niece of Jackie O. allowed filmmakers Albert and David Maysles into their mansion to film them living life day to day. The result is a hilarious, beautiful, sad and moving account of true love and anarchy rule.<br /><br />The relationship between Big and Little Edie is a testament to the unbreakable bonds of love. And their lives an example of drive, determination and free-will. This movie has more to recommend it than I can put down into words. It is a rare experience that you must see for yourself.<br /><br />\"\r\n0\tIt's like a bad 80s TV show got loose and tried to become a soft-core porn movie. Oh my god was it bad. The plots of each character had little relevance. The plot itself wasn't anything to speak of. Something about a stalker, I guess. In the end he shoots himself? It's not really clear, but somehow there's a volleyball game involved. And the main character (Randy) sleeps around a lot. The only reason my friends rented this movie was because Casper Van Dien was in it, and they ended up wanting to fast forward to the scenes with him in it, which were barely watchable at that. Thank god I didn't spend any money on it, but I want that hour of my life back.\r\n0\t\"Otherwise it is one of the worst movies I've ever seen - and I mean ever. My wife and I were both bored out of our minds within 10 minutes. Not to mention being boring, it is entirely unbelievable. Women (non-lesbian) don't bathe together - nor do they \"\"accidentally\"\" kiss. Brothers and sisters don't live together well into their 30s and run around swing dancing together and engaging in footraces in central park. Men don't find out their wife and sister romantically kissed the night before the wedding and then never discuss it with said wife. Absolutely ridiculous.<br /><br />Heather Graham is possibly the worst actress in films today. She smiles when she should be crying and vice versa. The only movie she has ever been good in is Boogie Nights - and that is because she wasn't acting.<br /><br />I cannot stress enough how bad this movie was.\"\r\n0\t\"This is a baffling film. <br /><br />The beauty in sexual relations between men and women is shown degraded by a set of men and women who can only be described as a collection of oddballs and misfits.<br /><br />Greenaway acknowledges his inspiration to Fellini's film \"\"8 1/2\"\" but whereas Fellini is a titan of world cinema, Greenaway is not.<br /><br />He has none of the maestro's lightness of touch nor his ability to convey feelings and emotions with a deftness of clarity.<br /><br />He is pretentious, the film being divided into chapters with a written introduction to each, as if the viewer has to be guided into the film except that the written notices only stay on screen for a few seconds, not long enough to be read by the audience with the result that they are mostly ignored.<br /><br />As for the women, only two can be described as lookers, Palmira, played by Polly Walker and Giaconda played by Natacha Amal. The rest ooze with ordinariness. Both the women and the men retreat from the harsh light of reality into the dim shades of fantasy.<br /><br />Greenaway obviously wants to make the point that sexual fantasy does not lead to happiness. The women themselves are depressing since they render their services in exchange for money. Relations between men and women are debased into a commercial transaction.<br /><br />There is no sense of joy or happiness or love in the film, indeed there are several scenes that are deeply unpleasant :<br /><br />The suggestion of an incestuous relationship between father and son, Philip and Storey Emmental played respectively by John Standing and Matthew Delamere. The callous disregard of both men that Giaconda is carrying their child, she in fact, gets pregnant twice, the first foetus being aborted and the second time, she is sent away to a destination chosen by the men from a flight book. Both men having sex with a woman who has no legs, (the half woman in the title). The beastiality that exists between Beryl, played by Amanda Plummer, with a pig named Hortense. Father and son sharing women between them. Women enjoying being beaten sexually. The father sleeping with the corpse of his dead wife.<br /><br />Mercifully, none of these scenes are shown sexually, only hinted at.<br /><br />The hinted degradation of women is such that there cannot be any wonder that the film was booed at when it was first premiered at Cannes. What is more extraordinary is that the actresses in the film lined up to defend it, showing yet again that there is no limit to the naivety of women and that women will fool themselves into being exploited by men.<br /><br />Greenaway's directorial style is pretentious, it is a triumph of style over substance, a depiction of Film as Art accompanied by the abandonment of common sense.<br /><br />Greenaway tries to attain the sublimity of surrealism but only succeeds in showing the banality of human relationships.\"\r\n1\tThe Sentinel i was hoping would be a good film and boy i was right.A great story first of all from a novel and i thought this was an original story but i guess it wasn't and it was a very smart story. Michael Douglas in this film is very good and Keither Sutherland is too,but however it is very hard to shrug him off his role as Jack Bauer in 24 but eventually you do and he is very different in The Sentinel than he is in 24.also another person trying to shrug off their TV role but failed.Eva Longeria.She wasn't that good in the film and had a back seat in the entire thing.After i saw the film i had constant dreams about The Sentinel and couldn't sleep.Overall Sentinel is a good film and i would recommend it.\r\n0\tThis movie has some of the worst acting that I have ever seen! Some scenes are original such as the nails coming through the floor. This nail trap catches these bad guys. The rest of the movie degrades as you go. I can't believe that this movie is not even in the bottom 100 movies of all time. I also can't believe that there are sequels! The next crap movie that I want to watch is R.O.T.O.R. Could R.O.T.O.R really be much worse than this?<br /><br />\r\n0\t\"...you know the rest. If you want a good zombie movie, DON'T RENT THIS MOVIE. If you want a documentary-esquire look at \"\"hood life\"\" you're at the wrong place as well. If you're looking for a laughable piece of film, this is a real winner! The acting is as flat as a piece of paper. The best example of this is definitely the officer investigating the drive-by. I can tell that he did the voice for the 911 operator as well by the flat tone of his voice. If I could hear a cardboard box talk, it'd probably sound like this guy. Oh yea, and the \"\"zombies\"\" did their best snake impression which is on par with their FANTASTIC acting overall (note sarcasm...HOW DID THIS NOT WIN AN Oscar FOR BEST MAKE-UP) The Quiroz......did not do any sort of directing. I felt like I was watching an improvisational period piece (the period is more like 1990's LA) The direction is however one-uped by the worst script I think to ever grace a movie. I haven't heard such lovely lines, like the epic one word beginning to the movie \"\"F**k!\"\", since Ice Grill which was another \"\"urban\"\" thriller. This only works of course in conjunction with the also-epic hip-hop soundtrack! All 3 or so songs of it! All in all, what the hell did you expect from a movie entitled \"\"Hood of the Living Dead\"\"? I rented this movie with full intention to laugh at its every scene, and boy it delivered and MORE! I would definitely recommend this to anyone who wants to get together with a bunch of guys and laugh at a low budget horror (yea right...) movie for the night. A memorable experience for sure!\"\r\n0\t\"Film starts with 3 people meeting each other in the bar. OK. They're talking about their imaginary lives, lying all the time, with no reason. Still OK.From time to time, they even make you laugh. Interesting. First 30 minutes you actually enjoy it! But then...things become worse...Nothing's happening...for a long time...and then, when something happen, all you can see are naked old \"\"ladies\"\" touching each other! Not OK. Disgusting! By the way, this part should be the top of the movie, but it's everything except that! Movie has no point,it's boring, and sick! <br /><br />The strangest thing is that here(Belgrade, Serbia) on FEST (film festival), this movie was the most popular according to researches, of course, before people watched it! I even thought(before watching): \"\"Hay, this might be interesting, although it's a Russian movie\"\"! But, God, No!!!!\"\r\n0\t\"I am commenting on this miniseries from the perspective of someone who read the novel first. And from that perspective I can honestly say that while enjoyable, I can see why it hasn't been rebroadcast anytime recently. More specifically, this mini has some serious problems, such as:<br /><br />1) It is terribly miscast. The actors who played the younger generation were all 15 to 20 years older than the characters. Ali McGraw (45 at the time) was playing Natalie Jastrow who was supposed to be about 26. Jan-Michael Vincent (39 at the time) was playing Byron Henry who was supposed to be about 22. The other Henry children, and Pamela Tudsbury, were also played by actors way too old for characters who were supposed to be in their 20's.<br /><br />2) Some of the acting was absolutely awful. Ali McGraw at times almost made this mini unwatchable. I have seen more convincing performances in high school plays. <br /><br />3) The directing was poor. To be fair to Ali McGraw, the bad acting and character development were probably the directing. The portrayal of Hitler was way overdone. His character came off looking and behaving more like a cartoon villain than the charismatic, sometimes charming, but always diabolical genius Herman Wouk painted him as in the novel. Some of the other characters are done so stereotypically (Berel Jastrow) they do not gain the depth of character that Wouk created for them.<br /><br />4) This mini is very dated. The hokey music, the pretentious narration (it sounded like a junior high school history film narration), and the entire prime-time soap opera feel of the mini made it almost comical at times. Also, too often Byron and Natalie are costumed and made up to look like they are in 1979 rather than 1939.<br /><br />Someone who watches this without the benefit of reading the novel first will probably not sit through it all, because it will come off more as a late 70's / early 80's \"\"take myself too seriously\"\" prime-time soap drama, rather than the television version of what is certainly a modern American classic.<br /><br />Remakes of older movies and the like are sometimes poorly done, but this is probably one case where a creative and inspired director could make a very stunning, memorable, and critically acclaimed production. I don't ever see that happening since a remake would have to be just as long (15 hours) or longer to do it right, and given the short attention span of most of the current American viewing public, it wouldn't fly.\"\r\n0\tPlease note that I haven't seen the film since I discovered it in 2007, and my town is smaller and doesn't carry it. However, I really want to say something about it. I'm actually doing research for university on the title character Richard Maurice Bucke and would like to point out that the person they based the main character on was in reality completely different!!! Hollywood's ideas of people and artistic license granted, the real Dr. Bucke totally endorsed hysterectomies to cure insanity in women, and would never have practiced anything as liberal as represented in the film. I think it's laughable to see various film critics who write for legitimate newspapers who say this film has some historical basis! The only actual fact I can see is the friendship between Dr. Bucke and Walt Whitman. Please don't waste your time on a film with such a disregard to the horror that real women experienced at the hands of this doctor who has now been glorified by the film industry.\r\n1\tI'm totally surprised by some of the comments on this forum, and many of the reviews. I think Tony Scott made a good movie here. Yes, it is highly stylized, flashy and over the top, but it is very entertaining. I'm glad at least Ebert and Roeper agrees with me :) <br /><br />This movie may not be for anyone, but if you like over-the-top, dark humor, cool action and dialog, you should see it. <br /><br />I've previously seen Scott's Man on Fire, Crimson Tide and Enemy of the State - all good movies, but I like this one more. It's like a roller-coaster ride, with great soundtrack selections, visual styles and in a time when all movies seem to be pg13, it is nice to see that someone isn't afraid of showing nudity, gory violence, and have explicit dialog.<br /><br />It doesn't hurt that Keira is super-hot, and even shows nipples in this one, either...\r\n0\tMad Magazine may have a lot of crazy people working for it...but obviously someone there had some common sense when the powers-that-be disowned this waste of celluloid...the editing is el crapo, the plot is incredibly thin and stupid...and the only reason it gets a two out of ten is that Stacy Nelkin takes off some of her clothes and we get a nice chest shot...I never thought I would feel sorry for Ralph Macchio making the decision to be in this thing, but I do...and I REALLY feel bad for Ron Leibman and Tom Poston, gifted actors who never should have shown up in this piece of...film...at least Mr. Leibman had the cajones to refuse to have his name put anywhere on the movie...and he comes out ahead...there are actually copies of this thing with Mad's beginning sequence still on it...if you can locate one, grab it cuz it is probably worth something...it's the only thing about this movie that's worth anything...and a note to the folks at IMDb.com...there is no way to spoil this movie for anyone...the makers spoiled it by themselves...\r\n1\tI don't know the stars, or modern Chinese teenage music - but I do know a thoroughly entertaining movie when I see one.<br /><br />Kung Fu Dunk is pure Hollywood in its values - it's played for laughs, for love, and is a great blend of Kung Fu and basketball.<br /><br />Everybody looks like they had a lot of fun making this - the production values are excellent - and modern China looks glossier than Los Angeles here.<br /><br />The plot of the abandoned orphan who grows up in a kung fu school only to be kicked out and then discover superstardom as a basketball play (and love and more etc;) is great - this is fresh, fun, and immensely entertaining.<br /><br />With great action and good dialogue this is one simply to enjoy - for all ages - and for our money was one of the best family movies we're seen in a long time.<br /><br />Please ignore the negative reviews and give Dunk a chance - we were really glad we did - a GOOD sports comedy movie.\r\n1\t\"First let me say I am not from the south but I am an American. I don't love Country music but I can stomach it. I would never wear a cowboy hat but I wear hats. I don't live in a trailer but I do eat tuna salad and own a home. What does that have to do with this comment? A lot if you are one of those people who say only \"\"country\"\" people love this movie. This movie is loosely based on the \"\"They loved and lost\"\" premise. James Bridges directs an American love story as real as it gets. In an era of Jerry Springer and \"\"Lets put it out there\"\" mentality, this film rings truer than ever. <br /><br />Bud is \"\"coming of age\"\" and embarks on a life of his own with a little help from his aunt and uncle so he moves to the big city with them. Bud finds himself drawn into the local honky tonk world for the only escape a blue collar man can afford. He quickly meets Sissy who is from a similar background and the two have a whirlwind romance filled with painful ups and downs. <br /><br />(*This plot takes so many turns that one has to just sit for a few minutes before they get hooked. Marriage is a focus here that is often missed. Early in the film they marry and we view the transition from being single to married. The film highlights some of the modern struggles a woman has when she marries an old fashioned man. It also brings into view the male ego with women and competition.)<br /><br />Bud is challenged and is excited when Micky's puts in an electronic bull. Sissy gets ideas of having fun on it too but is quickly reminded that she is married and need to start \"\"acting like it.\"\" The emotion between the two characters is raw and expressive and the plot continues from there especially when they (NOTE THIS IS GIVING SOME OF THE STORYLINE AWAY) split and Sissy falls for an ex con with a penchant for abuse and cruelty. She soon realizes that the grass is not always greener on the other side.<br /><br />How anyone can compare Bud to Vinnie Barbirino is shocking to me. John Travolta gave an exceptional performance that was worthy recognition. He was believable and real. The scene where he shaves his beard and you first see him at the bar..still gives me goosebumps. Mind you I am not a huge Travolta fan, but come on, I see why Sissy was kicking of her boots so early in the film. Deb Winger was so real that you found yourself sympathizing with her as she pens a note of emotions to Bud, after sneaking in to clean his house during their break up. <br /><br />The supporting cast was incredible. Wes played by Scott Glenn gave a first rate performance that made you hate him and curse him as he abused Sissy. Madolyn Smith-Osborne, as Buds Mistress/girlfriend was so authentic that large chested girls across the U.S. prayed to wake up flat chested to wear the clothes she donned in the film. My biggest kudos's go to Barry Corbin and Brooke Anderson as Bud's aunt and uncle. They seemed like someone's aunt and uncle somewhere in Texas and however small their role, they made the film so much bigger and lifelike. Two memorable scenes were the Dolly Parton contest and the unforgettable scene where Bud and his aunt stand outside after one of the characters death. The dialog between them is touching.<br /><br />If you can watch this for what it is, a true American love story. Then I recommend that you take it for what it is...a film before it's time that gave us voyeurism into a world unlike our own but real enough for our enjoyment and entertainment. If this world sounds similar to yours then you will enjoy it so much more. Lastly, the music however dated, is sure to send you back in time if you are over 30 years of age.\"\r\n1\tThis is one of the funniest movies that I have seen this year. The people that made it must be so incredibly whacked and twisted. It is a beautiful thing. There were a lot of quality one-liners. This movie blew Uncle Sam out of the water (it was made by tha same people, i think)\r\n0\t\"Being a fan of Billy Bob Thornton, and the diversity of his skills, I noticed this movie listed, and was surprised I hadn't heard of it.<br /><br />I'd traveled more than usual during both the period it was being filmed in 2000, and when it hit theaters more than 2-1/2 years later (that passage of time is the first clue all was not well with the production).<br /><br />Now Patrick Swayze can't act for sour apples, but Thornton has more than enough ability to make-up for the difference between them. And Charlize Theron is someone whom it would be a pleasure to see, even if it showed her watching paint dry.<br /><br />Being curious, I checked this site's production info. It made a whopping < $600 per screen its opening weekend, and just over $400 each, after its month's theater run in latter 2002. Overall gross was $261K, which I'd doubt could cover cast and crew's hotel and food for a week on location.<br /><br />The story is pretty benign, and even the use of the usually interesting locale of Reno is as dull as the rest of the goings-on.<br /><br />It's something like several SNL bits all pieced together, none individually too great at all, and the overall presentation even worse.<br /><br />Whatever, the expenses for this production had to be considerable - even if all worked for less than their usual fees - so the one thing which made it a barely tolerable opus was the quality of the filming and Billy Bob's present (albeit understandably somewhat laconic here , compared with his usual work.<br /><br />Think of the three superb, totally diverse characters he portrayed in \"\"Sling Blade,\"\" \"\"Bandits\"\" and \"\"Bad Santa,\"\" and you know he realized this work was below standard, long before the viewers had the opportunity to confirm this. One star for him, even here, and one because production was better than, say, the typical \"\"Lifetime\"\" flick.\"\r\n0\t\"With a movie called \"\"Gayniggers from Outer Space\"\" how could you go wrong? Just throw in some over the top stereotypes for the characters, use the Village People as the main suppliers for the soundtrack, and throw in tons of gay-gags. Plot is unimportant. Too bad, this film doesn't contain any of this and every joke misses the spot. The characters all look alike apart from the german gaynigger, one or two jokes work, the rest fails.<br /><br />The title made me laugh and I was prepared to laugh even more about the film. My expectation were to high apparently.\"\r\n1\t\"\"\"Perhaps we can arrange a meet. \"\" \"\"Where are you now? \"\" \"\"I'm sitting in my office. \"\" \"\"I doubt that. \"\" \"\"Why would you doubt that? \"\" \"\"If you were in your office right now we'd be having this conversation face-to-face. \"\"<br /><br />Bourne remains street tough, and elusive. Only his inhuman resilience leads the film a little too far into fantasy. Conversation is macho, to the point with only shards of Bond type gallows humour. Its all about the action.<br /><br />The feeling that there is something going on at another level to the world we live in is what the trilogy coveys so well. A scene set in Waterloo with a Guardian journalist does this to great effect. There is no meeting of worlds - you are in it or just a superfluous body.<br /><br />If the shaky cam doesn't annoy you too much, enjoy this film and hope they somehow keep the franchise going.\"\r\n0\tThis movie could have been so much better, especially considering the talent. Larenz Tate's portrayal of Frankie Lymon was not good, especially in musical performances. He doesn't lip sync well and his stage mannerisms are Larenz Tate, when he should have been Frankie Lymon. The portrayal of the women as a bunch of gold diggers has Hollywood written all over it. The powers that be obviously pushed it, but it only made the characters more unrealistic. The positives of the movie were Miguel Nunez's portrayal of Little Richard, and the cameo of Little Richard himself. Lela Rochon is eye candy, as usual, even in a conservative role. It's too bad that the talents of Halle Berry and Vivica A. Fox were wasted. The whole Frankie Lymon saga was fascinating in real life. Too bad this film was a wasted opportunity.\r\n0\t\"There's enough star power in THE HOUSE OF SPIRITS to create another galaxy, yet the final product is pretty debatable. The film and its messages are very noble, and I think perhaps most would agree with them. (Liberal Democracy good, violent fascist regime bad; open-mindedness good, racism bad, etc). Unfortunately, we're battered from head to toe with these, and as much subtlety is used as I've described them. <br /><br />Ultimately, we are left watching very noble people without any flaws squaring off with nasty cretins who have no redeeming qualities. It radiates with all the suspense of a badly orchestrated \"\"pro\"\" wrestling match.<br /><br />Jeremy Irons plays the patron, a man of many contradictions. Meryl Streep as his gifted bride and Glenn Close, as her sister in law. When the camera stays with these folks, the movie tends to move, and is quite enjoyable. Unfortunately, THE HOUSE OF SPIRITS engages with simply way too many subplots, and characters pop up and out of the picture like shooting gallery targets. We don't get to know them, hence we don't get to care for them. The result is boredom. <br /><br />If Bille August, the director and screenwriter (from Isabel Allende's book) had either lengthened the film or snipped a few characters, this film might have worked completely. As it stands, it was a nice try, with nice messages, and a bonecrushing yawnfest.<br /><br />Not recommended.\"\r\n1\tBettie Page was a icon of the repressed 1950s, when she represented the sexual freedom that was still a decade away, but high in the hopes and dreams of many teenagers and young adults. Gretchen Mol does a superb job of portraying the scandalous Bettie, who was a small town girl with acting ambitions and a great body. Her acting career went nowhere, but her body brought her to the peak of fame in an admittedly fringe field. Photogrsphed in black and white with color interludes when she gets out of the world of exploitation in New York, this made-for-TV (HBO) film has good production values and a very believable supporting cast. The problem is, it's emotionally rather flat. It's difficult to form an attachment to the character, since Bettie is portrayed as someone quite shallow and naive given the business she was in. The self-serving government investigations are given a lot of screen time, which slows down the film towards the end. But it's definitely worth watching for the history of the time, and to see the heavy-handed government repression that was a characteristic of the fifties. 7/10\r\n0\tWhat did producer/director Stanley Kramer see in Adam Kennedy's novel and Kennedy's very puzzling screenplay? Were there a few pieces left out on purpose? And what about Gene Hackman, Richard Widmark, Edward Albert, Eli Wallach and Mickey Rooney? What did they see in this very muddled story?<br /><br />And why did Candice Bergen, who gave a horrible performance, accept such a thankless role?<br /><br />The Domino Principle wants to be on the same footing as The Parallax View or The Manchurian Candidate and misses the mark by a very wide margin. A major misfire by Stanley Kramer.\r\n1\t**************Possible spoilers********** There is only one reason why I saw this movie and that was because I have a massive crush on Richard Belzer.(I don't know that much about humor) There were some part that were funny Like the Barbie and Ken Spoof and the dealers and the president skit. Mind you this is sometimes raunchy(Dare, I say crude?) It was at times funny, but it could have been better. Probably if they spent more time in the humor and less time getting women undress, the movie would had been funnier. Some skits just make you want to gag, and cringe, others skits make you laugh and oddly enough think. Sadly this movie is dated. If you have a mad crush on Richard Belzer(So worth it) it's worth checking it out and seeing chevy chase.\r\n1\tI just read the comments of TomReynolds2004 and feel I have to jump in here. I understand he doesn't like the film, but his reasons are not evident. My feeling regarding this film is that it is not afraid to travel the darker roads of loneliness, failure, disappointment and sorrow. Each of these two people, as portrayed, have plenty of reasons to be bitter and angry, yet find tenderness and comfort in each the other. Only great acting could make this work without becoming an emotional quagmire, sentimental and sappy. I really became interested in these people because of their overwhelming humanity given to them by such strong performances. I have every reason to dislike Jane Fonda for her Vietnam era actions, but personal feelings apart, she is fabulous in this role. Robert DeNiro is superb as a man whose intelligence and goodness begins to fail him in a world indifferent to his abilities. This is the first I have seen DeNiro using tenderness rather than toughness to sell a character and I really like it. This film was a big surprise when I first viewed it and I look forward to seeing it again.\r\n0\tThe original Lensman series of novels is a classic of the genre. It's pure adventure SF with some substance (here and there) and I've always wondered why Hollywood hasn't filmed it verbatim because it's just the kind of thing they love: massive explosions, super-weapons, uber-heroics, hero gets the girl, aliens (great CGI potential), good versus evil in the purest form, etc etc. Instead (and bear in mind I'm a Japan-o-phile and anime lover) we get this horrendous kiddies movie that rips the guts out of the story, mixes in Star-Wars (ironic as the latter ripped off the books occasionally) pastiches and dumbs the whole thing down to 'Thundercats' level. To see Kimball Kinnison, the epitome of the Galactic Patrol officer and second stage Lensman portrayed as a small boy is pitiful (etc). I just can't understand why the makers did this because they obviously had the rights to the story and could have made far more money (FAR!) by telling straight. It makes no sense.\r\n0\t\"During the early 1980's, Kurt Thomas was something of a hero in the United States. Inevitably, men in his position get offered film roles that exist solely to capitalize on that. I have no idea what Thomas was paid to make this film, but I would have to be paid a big heap of money to agree to make a national fool of myself in a motion picture. The film is obviously derived from \"\"Enter The Dragon,\"\" as are most martial arts pictures. Only instead of a real martial art, they concoct an absurd new martial art, accurately described by one critic as \"\"a cross between Kung Fu and break dancing.\"\" A gymnast (Thomas, of course) is hired to rescue some lady from an impenetrable fortress, yet every room has a prop that is exactly what Thomas needs to kick the assistant baddies. Of course, he fights his way to the lead villain, and of course they have a fancy-dancy fight, with an ending that will surprise only those who have never seen a marshal arts film. There are touches which nostalgic types will like, particularly the mullet haircuts of Thomas and many of the male co-stars have. But the only reason to watch this film is if you have a grudge against Kurt Thomas, who now wishes he had never set foot on the film set.\"\r\n1\tFirst of all, when people hear 'GUY RITCHIE', they immediately think of SNATCH. Yes, Snatch was a good movie, but the problem is that everyone associates Guy Ritchie to Snatch. They don't expect him to explore new frontiers. This movie REVOLVER is different than snatch; it's much darker and is very complex. The reason I gave a rating of 10 is because I've had to watch Revolver 3 times to understand everything. So this movie toys with your head. It's very cleverly written.<br /><br />This movie is different than Snatch. It was done wonderfully, the cinematography is beautiful, and you can recognize Guy Ritchie's personal touch (style of directing) in it.<br /><br />What won me over was the complexity of the protagonist and how we are left with more questions than answers.\r\n0\tThis is an incomprehensible horribly low budget piece of awfulness.<br /><br />I don't even have the vocabulary to say how dire, turgid, boring, confusing, and just plain strange this effort is (Hey what d'ya know I do....) Set in a post-Apocalyptic America some guys meet on a beach and slaughter and chaos ensue - it was all so incomprehensible I couldn't make head or tail of any of it.<br /><br />Seriously how this got picked up by National Lampoon totally defeats me: it really is awful.<br /><br />And not in a its so bad it's good cult way.<br /><br />It is just awful, awful, awful, awful.<br /><br />Honestly. If you still don't believe me then watch it with every intention of loving it then come back here and tell me what you think. Even gerbils on acid couldn't hope to understand this.<br /><br />Avoid or even better destroy...\r\n1\t\"I rented this some years ago, the video store had only VHS at the time. Straight to video was hitting it's strides (you know, where the box covers use the same font and color schemes of successful films).I didn't know what to expect other than what was printed. First thing I thought while watching was \"\"what the hells' wrong with the sound?\"\"-Obviously there was no dialogue dubbing. Words echoed, so I stopped munching on whatever I had to pay closer attention-mind you there's no Shakespeare here!,just simple talk. The story is simple enough, boy meets girl etc.. What struck me as humorous and heartfelt was, the people in the movie didn't seem like caricatures written into the story,but rather non-actors plucked temporarily from their real jobs(uniforms included). All the while, you begin to sense what the filmmaker is after,then see that there are no attempts at cheap humor(people hurting their privates,using vulgarities this couldn't have hurt the marketing. There was something honest about it. I thought if they'd have a bigger budget then it would have been better, which i'm sure they considered daily,but, they went ahead and made it. This, I felt, was what independent film-making is all about.The word \"\"Indy\"\", is thrown around as if it's a Genre..Ha!..that's funny!\"\r\n1\t\"I love the Satan Pit!!! David Tennant is such a great actor and so is Billie Piper!!! Who else loves Will Thorp to pieces??? He is so cute, isn't he? I hated the bits where he got possessed by the devil and where he got told to \"\"go to hell\"\", as Rose so bluntly put it. Mind you, he was quite funny when he said, \"\"Rose, do us a favour, will you? Shut up!\"\". Mr Jefferson was so brave, wasn't he? Dying to save the others. I felt really sorry for Toby (Will Thorp) when he came out of the possession for the 2nd time because he was so scared. I was like \"\"Oh my god if I was Rose I'd be so scared for him\"\". And when she hugged him I was like \"\"grrrrrr, he's mine! hands off!\"\" but I thought that was really sweet. And the doctor....well, I thought he was gonna say to Ida \"\"tell Rose I love her\"\" but he didn't. Oh well.\"\r\n0\t\"Kevin Spacey is very talented, but unfortunately directing is not his forte. I had high expectations about the film before I rented it and maybe that is why I disliked it so much. I admire Spacey's attempt at making a film that takes place mostly in one small setting, but it's not the attempt that counts. I found the film dull, boring, and stretched out. The acting was nothing spectacular. Gary Sinise has done much better, especially since he is conscious in most of his other films. Skeet Ulrich was disappointing, but this was one of his first films (I did get a kick out of how young and chubby this Scream star looked). The only thing that impressed me about this film was the one shot of the car wreck from above. The center line of the road was perfectly centered and the camera moved on along the line and past the wreck. However, that shot was very \"\"Usual Suspects\"\"ish and my guess is Spacey got the idea from that earlier film of his (which is very good mind you). If you want to see a fabulous film that takes place in one small setting, watch Hitchcock's Lifeboat. Maybe Spacey should have watched it before filming this.\"\r\n1\tRed Eye is a good little thriller to watch on a Saturday night. Intense acting, great villain and unexpected action.<br /><br />Some might not want to see this movie because it goes for a very short 85 Min's and 88% of the movie is on a plane and just talking. Don't worry they pull it off very well with the smart and witty dialog.<br /><br />A PG-13 movie seems to be new grounds for director Wes Craven. But surely enough he has fit as much violence as he possibly can into this thriller.<br /><br />This movies strongest point is its cast. This film needed good actors to deliver the dialog and thrills. If they didn't have those actors the film would have been lost and boring. We had Rachel McAdams from Mean Girls and Wedding Crashers. Cillian Murphy from Batman Begins and 28 days Later. Rounding off this cast is Brian Cox from X-men 2.<br /><br />The pacing in this film was great. Just when your thinking its going to get boring they throw a twist at you. Luckily this isn't a long movie and doesn't feel like it either. Much better then the other flight movie Flight Plan.<br /><br />Here is my Flight Plan comment: http://www.imdb.com/title/tt0408790/usercomments-578<br /><br />I recommend. Not too long and not too shabby.<br /><br />8/10\r\n1\tMelvyn Douglas once more gives a polished performance in which, this time, he inhabits the role of a detective who can't place love before duty and adventure, and the warmly beautiful Joan Blondell (who, far from being illiterate, as one reviewer suggested, wrote a novel about her early life) is as enjoyable as ever as his ever-suffering sweetheart.It's almost a screwball comedy, almost a Thin Man-type movie, almost a series, I guess, that didn't quite make it to a sequel. It doesn't quite reach classic status, but it has all the ingredients for a fun 85 minutes with an episodic but pacey script, fine character actors, and direction that keeps it all moving fast enough so that you nearly don't notice that Williams (Douglas) isn't exactly Columbo when it comes to detecting. I wish there were more films like this.\r\n1\t\"As is well-known among long haired youngsters who are incredibly interested in this Herr Graf's silent rants, during summertime aristocrats like to travel to exclusive and distinguished places in order to avoid the heat as well hordes of coarse people taking their ease. Such bizarre travels around the world also happen in \"\"Three Ages\"\", a charming and elegant piece of silent work directed by old hands, namely Herr Buster Keaton and Herr Eddie Cline.<br /><br />Obviously this German count liked most the first segment focused on the Stone Age due to the affinity that this aristocrat feels about that ancient time. preferring that to the second segment which takes place during the glory of Rome (It should have included the cause of the fall of the Roman empire, that is to say, Barbarians, or the same thing, Germans). Of course, the third segment takes place during modern times but this Teutonic aristocrat thinks that even 100 years ago should qualify as modern.<br /><br />The leitmotiv that moves Herr Keaton and his companions to travel and endure the strange and hilarious happenings during three different ages, is the search for love, a very complicated subject to understand for aristocrats who prefer the search for money and self interest. Every time that \"\"Three Ages\"\" is shown in the Schloss theatre, it is always a pleasure to watch a funny, witty silent film (even for a serious German count), an oeuvre full of gags and gadgets, puns, pratfalls and acrobatics, visual and astounding technical tricks, an absolute silent delicatessen that is perfect to allow one to endure the various and coarse summertime severities.<br /><br />And now, if you'll allow me, I must temporarily take my leave because this German Count must flirt with an old Teutonic heiress who doesn't look her age.<br /><br />Herr Graf Ferdinand Von Galitzien http://ferdinandvongalitzien.blogspot.com/\"\r\n1\t\"I just watched this for the first time in a long time - I had forgotten both how imaginative the images were, and how witty the movie is. I had not forgotten however the opening scenes which are (with the scene at the Candlelight Club in Waterloo Bridge) among the most romantic ever filmed.<br /><br />Anyone interested in politics or history will love the movie's offhand references - anyone interested in romance will be moved by Hunter-Niven, and anyone who loves visual imagery will enjoy the depiction of the afterworld.<br /><br />My favorite movie remains \"\"Odd Man Out\"\" made near the same time - but this one is superb. <br /><br />\"\r\n1\tDebut? Wow--Cross-Eyed is easily one of the most enjoyable indie films that I've watched in the past year, making it hard to believe that Cross Eyed is the writer's debut film. I mean--I logged onto IMDb to find more films by this writer...because Cross Eyed has that unique signature --you want to see what else this writer might have to say. These days, its rare to see a movie that is well-written, well-directed, well-edited and well-acted. For me--Cross Eyed encapsulates what movie making should be about--combining the best of all film elements to create a clever, artistic and poignant tale. More, please.\r\n0\tOn a distant planet a psychopath is saved from execution by a space monk. He releases a few fellow inmates and breaks out of the prison in a spaceship. They dock onto a ludicrously enormous spacecraft that is orbiting a supernova star. This massive craft is populated by only three people, presumably because the budget of the film did not extend to hiring many actors. Anyway, to cut a long story short, the three goodies end up in a game of cat and mouse with the baddies.<br /><br />The psychopath in this movie is curious in that he is annoying. 'Annoying' is generally not a term one would use to describe a lunatic - unhinged, frightening, dangerous maybe but not 'annoying' but he is. The three people manning the giant ship are seriously unconvincing as warranting such important roles - this ship is practically the size of a city! Considering that the film is set approximately 50 years in the future, it is somewhat optimistic that such a huge man-made craft could exist, never mind the fact that it is used for such a relatively mundane task. Despite the vast size of the spaceship, the crew all have appallingly kitted out, tiny rooms and the dining room consists of what appears to be a plastic table and chairs. But there are a lot of corridors.<br /><br />The film is fairly well acted and it works as an averagey sci-fi thriller. But nothing great.\r\n0\tWelcome to a bad ghost story and someone's nightmare. This horror tale finds a newly married husband(John Hudson)and wife(Peggy Weber)haunted by the memory of his previous wife and screaming skulls found throughout their empty mansion and lily pond. Is the husband really trying to drive his already anxious bride insane? Or is it the learning challenged gardener Mickey(Alex Nicol)who has taken care of the mansion's grounds since the death of the original mistress of the house? This low budget horror flick has a story line that keeps you involved all the way the finale. Special effects are pretty bad even at 1958 standards. I swear at times the screaming skull sounds much like it should be in a Godzilla movie. Also in the cast as Reverend Snow is character actor Russ Conway. By the way...the lurking gardener(Nicol)is the film's director. You can catch this as part of AMC's Monsterfest.\r\n1\tI am a big fan a Faerie Tale Theatre and I've seen them all and this is one of the best! It's funny, romantic, and a classic. I recommend this for all ages. It's great for little kids because it's well, Cinderella and great for adults and teen because it's funny and not over the top. I watched it when I was little and I still watch it now. It has great lines that my family and I quote all the time. The acting is great and it never gets old. If you like fairy tales and romances you will love this. I've watched many a Cinderella movie in my time and this is the best of them all. (Sorry Disney) I highly recommend this movie and all the Faerie Tale Theatre shows. They all appeal to all ages and are all unique and very entertaining.\r\n0\t\"Somebody called Howard Koch a schlockmeister but he did write the screenplay for \"\"Casablanca\"\", didn't he? Or didn't he. Maybe there's more than one Koch slinking around in Hollywood, and I'm not too fond of \"\"Casablanca\"\" anyway. Wait a minute -- yes, there is another Howard Koch slinking around Hollwyood. That's the one who wrote \"\"Casablanca.\"\" No matter. I'll put as much care into this comment as \"\"Howard W. Koch\"\" put into this production, which is to say only a little.<br /><br />You know what this sounds like? Somebody read Cliff's Notes on Shakespeare's \"\"King Lear\"\" and decided, since no original thoughts were aboard the Inbound Inspiration Express, to update it and Hollywoodize it with a happy ending.<br /><br />There are differences. Lear decides to divvy up his vast estates between three sisters and before doing so, asks them how much they love him. Two of the sisters throw themselves at his feet and brown nose him to get at his money. The third is the good girl and refuses to go operatic on Lear. But in the play, Lear remains alive to regret his decision to give the two connivers his stash and deprive the honest girl. He winds up crazy and naked during a gale on the moors, putting flowers in his hair and hallucinating. Kids can do that to you. (Take my kid, for instance. After all the effort I squandered on raising him, does he show any interest in becoming a doctor or a lawyer? No.) In the end, everybody in the play dies.<br /><br />In the movie, evidently, the good sister is morose and suicidal but when she tries to off herself, somebody jumps in and saves her, so the ending is, more or less, happy. That's the difference between Hollywood and a genuine tragedy, unless you define Hollywood as a tragedy sufficient unto itself.\"\r\n1\tI know that there are some purists out there who poo poo anything that is not exactly like the original, however sometimes spin-offs can stand on their own merits. I like the new Iron Chef because it is similar enough to the Japanese version but at the same time caters to American spirit. I love Alton Brown as commentator, because he explains things with flair. The Iron Chefs themselves are very interesting. I know the originals were probably the best chefs on the planet at the time, but Bobby Flay is the only American Iron Chef to beat them. Mario Batali seems to have the most fun when cooking, making comments and being flashy while creating. I have watched the series and find all the players work together well. The judges are not always the best choices, however. There are a few exceptions, like the lawyer turned foodie, but most of the judges are questionable in being able to handle what is served. I enjoy watching the chefs hustle and the challengers are surprising. The food at the end always looks amazing and sometimes it inspires me in the kitchen. Perhaps that is all anyone can ask, to want to really eat what is served. The only thing I would really change about the series is to ask folks on the show to lighten up a little. Sometimes the mood becomes a bit too tense, and that isn't always fun to watch when you are expecting more amusement. I liked the version with William Shatner (Iron Chef USA) because it was so over-the-top like the original, but I can tell it was a pretty expensive proposition. I wish he had stayed with this version and been the host - between Bill Shatner and Alton Brown, that would have me grinning for an hour. As long as you don't expect the original Japanese version and can accept this series on its own merits, you may find it to be an enjoyable hour.\r\n0\t\"The movie had a cute opening, I truly believed I was in for one of the best romantic comedies i've seen in a while... there was something particular \"\"foreign\"\" about the way the movie was set up, realistic yet somewhat abstract and mystical. But then the story line started becoming more and more unrealistic. To say that the ending was CORNY and PREDICTABLE would almost be an understatement... The most typical romantic ending where everything goes great for every 'likable' character. A scene where the main character realises that he has made a mistake and chases the \"\"woman of his dreams\"\" only to confess his love for her in front of a sympathetic crowd of on- lookers. Come on. In the end, the 'good guys' win, 'bad guys' loose... You get the picture. A WASTE of a potentially interesting movie.\"\r\n0\t\"One of the most popular rentals at my local video store is not Borat or The Departed but a 2005 documentary about Jesus Christ called The God Who Wasn't There by director Brian Flemming, an ex-Christian Fundamentalist. Flemming, in his 62-minute documentary, asserts that Jesus was not a historical figure but a legend based solely on Pagan traditions. Using interviews with authors, philosophers, and historians to debunk the long-held Christian belief that Jesus, the son of God, lived among men, was crucified, and was resurrected, Flemming compares the Christ story with those of cult figures Isis and Osiris in Egypt, Dionysus and Adonis in Greek mythology, and Roman mystery cults such as Mithraism and finds many surprising similarities.<br /><br />In addition to his evidence about Pagan cults, he also states that the earliest sources for the Christ story, the four gospels, were written forty or fifty years after the date given for Jesus' crucifixion and that the letters of St. Paul show little evidence of Jesus being a flesh and blood figure. Flemming, unfortunately however, is not out to conduct a solid investigation of the truth about Jesus' life but to use the subject only as a point of departure for a full throttle attack on Christianity and all religion. Most of the interviews are with those philosophically aligned with the director including avowed atheists such as Biologist Richard Dawkins and author Sam Price. The only Christians interviewed are those on the fringe such as Scott Butcher, the creator of the website Rapture Letters.com, and Ronald Sipus, principal of the fundamentalist Village Christian School, which Flemming attended as a boy.<br /><br />Like Michael Moore's interview of Charlton Heston in Bowling for Columbine, his interview with Sipus is so contentious that Sipus walks out in the middle. In a sarcastic tone, Flemming tells us how wrong Christianity was wrong about the sun revolving around the earth, then points to atrocities committed in the name of Christianity such as those by cult leader Charles Manson who killed 11 people and Dena Schlosser, who cut her baby's arm off for God. He also lifts a statement from a book by LaHaye and Jenkins that says that Christians \"\"look forward to the day when all non-Christians are thrown into a lake of fire, howling and screeching.\"\" To further turn us against Christianity, Flemming shows us extended clips from Mel Gibson's The Passion of the Christ, detailing in minute detail each scene of violence and torture. What could have been a serious discussion on a very interesting subject eventually becomes a childish rant and a polemic against all religion. In the process of condemning those who used Christianity to commit unspeakable acts, he ignores such people as socialist Muriel Lester, a famous Christian pacifist, Rigoberta Menchú Tum, a Mayan Indian of Guatemala who helped found the Revolutionary Christians and received the Nobel peace prize in recognition of her work for social justice, and Mother Teresa, whose work was about respect for each individual's worth and dignity.<br /><br />His most telling argument is his comparison of Christian doctrine with the Pagan cults and he makes some good points, yet Flemming does not tell us that while some aspects of these cults may resemble Christian doctrines, there are no texts or source materials for these cults before 300AD, long after the New Testament. Also it is important to note one major difference. The immediate goal of the initiates was a mystical experience that led them to feel they had achieved union with their god. This is anathema to Christianity which believes that a Church hierarchy including priests and bishops all the way up to the Pope are required to interpret God's will to mankind.<br /><br />Although I am not a Christian and have some doubts about whether or not Jesus Christ was in fact a historical figure, the truth is that, in the long scheme of things, it may not matter. What matters is that a message was introduced to mankind and spread around the world that contributed to mankind's spiritual evolution. Regardless of the distortions and crimes later committed in its name and there were many, Christianity as conceived was a doctrine of compassion and love, and a moral and ethical code that furthered respect for our fellow man.<br /><br />While I applaud the fact that the film was made and that a taboo topic was discussed, what is sorely needed is not another divisive attempt to use religion as a field of combat but to see it as a common thread that can bring the world's people together. While there is room for debate and discussion on religious subjects, in the words of Annie Besant, \"\"spiritual truths are best seen in the clear air of brotherhood and mutual respect. The God Who Wasn't There is recommended only for those whose idea of a good time is to trash the religion of others.\"\r\n0\tThis would have to be one of the worst, if not the worst, movie I've ever nearly seen. (I couldn't watch it all the way through). Purely and simply it's gratuitous violence just for the sake of it and the ridiculous story line only adds to the lacklustre and incompetent filming. Sick. And only suitable for those with a love for manic mutilation. After murdering several hundred men, women and children, Seed is finally caught after effortlessly killing several more police officers that finally get a tip as to his whereabouts. He's sentenced to death by electric chair and miraculously survives! Buried alive, he digs his way out and plots revenge against those that put him away and flicked the switch. Needless to say, more gruesome murders ensue...\r\n0\tI agree with the previous comment, what a disappointment. Rented it thinking it was going to be a good movie since Mira and Olivier where in it. I was surprised by their performance, expected more since they're good actors.<br /><br />Thought it was a slow beginning but it got worse. I even laughed at some bad stunts!! when is supposed to be a mystery movie. You can even guess who is the killer beforehand!!! <br /><br />For real what happened?? <br /><br />Sorry to say but don't even bother you'll waste time and money.<br /><br />Boring!!!\r\n0\tThe cover on the DVD and disc is freaking awesome, you would think they made a movie about sweet tooth from twisted metal black which is still a really great idea, but this movie's actors are worst then Ben's performance in pearl harbor, porno's have better quality and better actors. i was gonna buy the DVD but luckily i rented it first, the plot and script are also horrible, nothing seems to go to together so the movie really never makes sense. The poor attempts to frighten you using flashback scenes are worse then ones used in 80's sitcom shows and in the end it'll leave you wanting to bang your head against the wall of your house.\r\n1\tAlthough DiG! was being hailed as being closest to what the music industry is like it is highly fabricated. The director has misled the audience into believing the Brian Jonestown Massacre disappeared off the face of the earth post-'98. And the rivalry between the Dandy Warhols and Jonestown has been milked. The truth of the matter is not really exposed in this film.<br /><br />That said this film is endlessly quotable and is an interesting watch as we get a look at two groups of very talented musicians creating their art. One of the best things this film has going for it is a unique perspective between the indie music scene and the larger corporate scene.<br /><br />Recommended mostly for the music and the two fantastic bands.\r\n0\t\"For the first couple of seasons, I thought The Apprentice was a highly engaging and exciting show. The combination between reality TV and a 16 week job-interview was innovative, and the producers of the show managed to keep the show relevant and not too \"\"out there\"\".<br /><br />The new season 6 is nothing more than a big joke and it has absolutely nothing to do with business - at all. In the earlier seasons they used to put a lot more emphasis on the business-related tasks - now the focus is mostly in the boardroom where the contestants are expected to do EVERYTHING to keep them on the show (that means lying, trash-talking, backstabbing etc.). The boardroom can be entertaining to watch, but it's entertainment at it's low-point - Sometimes you wonder if you are watching a repeat of an old Jerry Springer episode. The tasks on the show are, at most, boring and mostly a showcase for the companies who are dumb enough to pay NBC for the publicity. And what is the deal about half of the contestants living in tents in season 6? That is just plain stupid and has nothing to do with business in real-life. <br /><br />I have absolutely NO respect for any of the contestants this season, they all seem like idiots to me. In earlier seasons at least some of the contestants had a bit of integrity, now it seems like the contestants would kill their own mother to keep them on the show. It also seems like Donald Trump's massive ego becomes bigger and bigger for every season that pass by and to be honest, I can't see why anyone with a common sense would want to work for him. His rationality in the boardroom mostly doesn't make any sense at all and sometimes it seems he just like to trash people for what it's worth.<br /><br />R.I.P The Apprentice. Please NBC, for God's sake, get the show off the air as soon as possible. It's just too embarrassing to watch. The Apprentice was once a great TV-show, but now it's just a big fat joke.\"\r\n1\tBill and Ted are back, only this time an evil dude from the future has sent back an evil Bill and Ted to destroy them, thus destroying 'Wyld Stallions' and the basis for human society in the future. This time Bill and Ted have to travel through the afterlife 'Totally Bogus' and save humanity 'Excellent'<br /><br />With much of the same zany humour and some wonderful new characters like the grim reaper, station and robot Bill and Ted (stations creation) Bogus Journey once again entertains, and is worth watching for its soundtrack alone.<br /><br />7/10 <br /><br />A most triumphant sequel <br /><br />Party on Dudes! Hehe\r\n0\tSteven Seagal movies have never been Oscar material but with each passing release they get worse and worse.<br /><br />This one starts with Seagal getting picked up by the FBI because he killed a few people 'in self defence' he's active military so is saved from jail to rescue a stolen Stealth plane that will be used by the cliché 'evil English villain' that Hollywood is so obsessed with including these days.<br /><br />Suffice to say the film has terrible dialog that is almost always delivered with a hefty topping of cheese and lack of acting talent. The story isn't interesting and there are segments of it which make absolutely no sense and do not add anything to the story, characters of movie as a whole such as the 'lesbian' interaction between the two main females in the cast which is there purely for titilation to get viewers and yet isn't even titilating just confusing as it makes no sense as to why it happened when it didn't need to.<br /><br />In short a terrible script with bad dialog, delivered by sub-par actors, boring and at times badly choreographed action scenes, and non-relevant parts that only serve to achieve the near-impossible and make the movie even worse.<br /><br />Save 98 minutes of your life and give this miss, even if you are Seagal's most ardent fan.\r\n0\t\"This movie got off to an interesting start. Down the road however, the story gets convoluted with a poor illustration of ancient black magic rituals. The male lead was very good , even though he gets the worst end of the stick in the climax. In comparison, this is \"\"Boomerang\"\" meets \"\"Extremities\"\".\"\r\n0\t\"He pulled the guys guts out his butt! That's a spoof right?! No one really writes that it just happens like improv gone horribly wrong. I think any way. This movie must be a spoof because who would say they wrote that script otherwise. Can anyone imagine the entire cast sitting around as the director and writers go over the storyboard.<br /><br />Director says, \"\"next our inbreed villain uses his 24 inch machete to disembowel our token creepy neighbor. Get this, he is going to pull the guts out his bunghole\"\"<br /><br />\"\"Brilliant!\"\" the entire cast proclaims.<br /><br />No way can that happen, nobody writes that stupid! Gotta be a spoof.<br /><br />I loved the part where the skinny introspective gal beats the inbreed freak to death with the cast iron skillet she finds on the floor of the cave. I wasn't sure the inbreed cannibal types bothered to cook much. Maybe that explains why the skillet was lying on the floor in the dark at just the right time to kill the malformed hulk. Seems ironic that after the freaky guy had bested martial arts expert porn queens and a couple out doors type jocks he falls so easily to the frying pan of a skinny defenseless girl next door. <br /><br />What the heck is that Richard Greco guy doing in this? Did he fire his agent or something? <br /><br />Can anyone explain the ending to me please because I didn't get it either? I can't quite figure why the nice hero girl wanted to kill the funny lady who was making her some tea. Never mind I don't want to know.\"\r\n1\tA fine effort for an Australian show. which is probably not surprising seeing as there seems to be somewhat of a resurgence in quality Aussie drama. dare i compare this show to the brilliance of love my way? no. but it is reminiscent of early secret life of us. the cast is great, gibney works her magic in the first two episodes i have seen, the British cast is strong also especially the callum and lizzie characters. but abe forsythe may be the saving light (not that it needs saving) if this show is to get another season. i wasn't a fan of his performance in the awesomely awesome marking time mini series a few years back but he was great as hal in always greener. its also good to see brooke satchwell again. lets hope the show keeps improving with each episode.\r\n0\tFour porn stars romping through the Irish woods sounds like a film to watch. We have Ginger Lynn Allen, Chasey Lain, Taylor Hayes, and Jenna Jameson all together in one film. Are you licking your lips? Well the mutant creatures who resulted from centuries of inbreeding were certainly licking their lips as they feasted on the entrails of their victims.<br /><br />Yes, there was some flesh exposed - far too little considering the cast - but, it was soon ripped open to expose dinner for these creatures. There was definitely some action that probably has not been seen before, and more than one person lost their head in the situation.<br /><br />Unfortunately, director Christian Viel did not show much promise and I am not likely to watch his later efforts.\r\n0\tI can't believe it that was the worst movie i have ever seen in my life. i laughed a couple of times. ( probably because of how stupid it was ) If someone paid me to see that movie again i wouldn't. the plot was so horrible , it made no sense , and the acting was so bad that i couldn't even tell if they were trying. that movie was terrible rating: F\r\n1\t\"Criticism of the film EVENING, based on the novel by Susan Minot and adapted for the screen by Minot and Michael Cunningham, has been harsh, so harsh that it may have discouraged many viewers from giving the film a try. The primary criticism has centered on the fact that very little happens in this film about a dying woman's fretting over a mistake she made one summer in her youth, that famous actors were given very minor roles, that the entire production was over-hyped, etc. For this viewer, seeing the film on a DVD in the quiet of the home, a very different reaction occurred.<br /><br />Ann Grant Lord (Vanessa Redgrave) is dying in her home by the ocean and her medication and memories allow her to share a man's name - 'Harris' - with her two grown daughters Nina (Toni Colette) and Constance (Natasha Richardson). As her daughters sit at her bedside Ann relives a particular summer when she was a bridesmaid for her best friend Lila (Mamie Gummer) - a marriage both Ann (Claire Danes as the youthful Ann) and Lila's alcoholic brother Buddy (Hugh Dancy) objected to, feeling that Lila was simply marrying a man of her class instead of the boy she had loved - Harris Arden (Patrick Wilson), her housekeeper's son who had become a physician. Harris, Buddy, Lila, and Ann are woven together in a series of infatuations and romances that have been kept secret until now, 50 years later, as Ann is dying. The older Lila (Meryl Streep) visits Ann at the end and the secrets are revealed: 'there are no such things as mistakes - life just goes on.' The film is a delicate mood piece and the script by Minot and Cunningham is rich in atmosphere and subtle life lessons. Yes, there are gaps in the story that could have used more explanation, but in order to maintain the aura of nostalgia of a dying lady's words, such 'holes' are understandable. The film is graced by the presence of not only Redgrave, Richardson (Redgrave's true daughter), Collette, Gummer (Streep's true daughter), Meryl Streep, Claire Danes, Eileen Atkins, Glenn Close, Hugh Dancy and Patrick Wilson, but also with an ensemble cast of brief but very solid performances. The setting is gorgeous (cinematography by Gyula Pados) and the musical score is by the inimitable Jan A.P. Kaczmarek. Lajos Koltai (\"\"Being Julia') directs. Judge this film on your own.... Grady Harp\"\r\n0\tThis was one of the worst movies I've ever seen. Horrible acting,Not funny at all, and well just boring.<br /><br />I can only assume all these 10 out of 10 fav. all time movie comments are actually the actors themselves in disguise.<br /><br />Idk what the runtime on this movie is I'm sure its listed on this page It certainly felt like an eternity <br /><br />If your looking for a tough challenge,attempt to sit through this awful movie.<br /><br />otherwise<br /><br />Don't waste your time as I did on this one\r\n1\tIn this sequel to the 1989 action-comedy classic K-9, detective Dooley [James Belushi] and his dog Jerry Lee return to fight crime, but this time they are teamed up with another detective [Christine Tucci] and her partner, a mean Doberman named Zues who does not get along with Jerry Lee very well. Dooley does not get along with his new partner much either. That all changes as the movie goes along. The movie is intense as their is a guy that really wants to kill Dooley for the way he treated him in the past. There is some dramatic scenes dealing with the death of Dooley's wife that don't really seem to be with the tone of the movie because the rest of the movie is action sequences, dog poop jokes, fart jokes, and jokes about dogs biting bad guys in a certain area. I know that that seems like very low humor, but some of it is actually very funny. I didn't see this movie for the jokes, I saw it for two reasons. The first reason is because I am a big James Belushi fan and the second is for the action sequences. James Belushi is funnier than he was in K-9 and the action sequences at are better too. It would have been nice to see more characters from K-9 to return, but it's still a fun movie. If you are a James Belushi fan, you'll love this movie.\r\n1\tMarlene Gorris has established herself as one of the world's great directors. This sensitive, visually beautiful film is based on a story by Vladimir Nabokov and captures well that writer's dark irony. John Turturro gives what I consider to be his finest performance (I am usually not a fan of his); and Emily Watson is brilliant as well. Well worth seeing.\r\n1\tI had the pleasure of viewing this beautiful film last night, with the wonderful addition of a question and answer session with the director following the viewing. I suspect that the first commenter has never lost a parent or someone very close to them in death. I have had many such losses, and this movie spoke to me. One of the major themes is how we don't deal with questions/issues/stories with our loved ones until it's too late--they're too incapacitated or dead before that happens. Talk to your loved ones, listen to and record their stories, tell people you love them, resolve differences. I loved the message that there are no mistakes. I love the director's portrayal of the relationship of the two daughters--as one of six siblings, it's clear to me he understood how complex those relationships are. His history as a cinematographer also comes through loud and clear--what a beautiful movie! The casting is outstanding--a film not to be missed!\r\n0\t\"I saw this obvious schlock fest on a video store shelf. And before i got my first VCR I figured I'd christen it with this little gem and it's bad film-making at it's finest!<br /><br />The dialog is inadvertently hilarious. And it contains a cameo with Donald Trump. Anthony Quinn is in it inexplicably. And much like Christopher Walken seemed to want to star in every bad movie in his later years. This movie is Mr. Quinn's Country Bears.<br /><br />It features lines like, \"\"Shut up and let me FIGHT!!!\"\"<br /><br />And \"\"You're saying a lot of sh_it!\"\" <br /><br />And the priceless comeback: \"\"Unfortunately it is sh_it, tough angry sh_it!\"\"<br /><br />You'll be awed by a fight scene as Bo does a SOMMERSAULT across a billiard table! And does a nice kung fu kick when she comes up from the roll! Chop socky action and T and A thrills!!!<br /><br />What schlock movie fan could ask for more? Oh, and when Mr. Quinn's character commits suicide and and comes back to haunt Bo as a ghost she asks him why he killed himself rather then deal with his debilitating illness? He says, \"\"Real men don't eat quiche.\"\"<br /><br />Uh, aaa, yeah. If Bo was a smart cookie she woulda called for an exorcist right then and there!\"\r\n0\t\"Although Misty Ayers (burlesque stripper) is certainly attractive as the blonde lead, this flick is just an excuse to let her strip down to her underwear a few times (no nudity in 1954 when this film was made; not 1965).<br /><br />The guy who hires her to work in a whorehouse resembles Bud Abbott of Abbott & Costello. Most of the other woman are unattractive, and the drunken woman is semi-amusing in a creepy way.<br /><br />A 2 out of 10. Ms. Ayers has a curvacious physique, but you can't judge any acting talent because the ENTIRE film is post-dubbed. Some of these \"\"exploitation films\"\", usually made later than this one, are interesting in some way, but this is really a bore fest. Sid Melton (MAKE ROOM FOR DADDY) directed. There are some Samurai-like facial expressions and interesting apartments, but there's really NOTHING here.\"\r\n1\tThis show started out with great mystery episodes. I think everyone is in the first 15 or 16 episodes. After that, the show started playing short episodes with Shaggy, Scooby doo, and Scrappy doo.<br /><br />I think Hanna Barbera Productions had to change 20 minutes episodes into short episodes. Some of the voice actors became unavailable. After 15 or 16 episodes, Frank Welker (who played Fred) became unavailable. I think the voice of Velma changes after first 12 episodes, because the first voice actress who played Velma was unavailable.<br /><br />And the network ordered the Hanna Barbera studio to make more shorts with Shaggy, Scooby doo, and Scrappy doo, because the ratings were high. So they had to make more shorts. I wish they were mysteries like 15 episodes. Still it is a good show.\r\n1\tWith the mixed reviews this got I wasn't expecting too much, and was pleasantly surprised. It's a very entertaining small crime film with interesting characters, excellent portrayals, writing that's breezy without being glib, and a good pace. It looks good too, in a funky way. Apparently people either like this movie or just hate it, and I'm one who liked it.\r\n0\t\"Watching it now it's still as skanky and sexist as I remember. comes from a time when girls were \"\"Dolly Birds\"\" and basically men's playthings. It's hard to take in that it is from the Hammer studios and the fact it's available on DVD when good films are not. Our nations shame where the working class are portrayed as work shy layabouts or worse! Trouble is you can't help feeling nostalgic for a Clippie on a bus. Try to hold your stomach contents when you see Olive in a fluffy? Blue \"\"saucy\"\" nightie or something similar like Shirley Bassey used to wear for a concert in 1972. Warning this film shows the illegal practice of towing a motorcycle combo by a red double decker bus, which I've been informed is not a Routemaster but a Bristol.<br /><br />Look just don't bother watch something decent instead like Porridge or Dad's Army...or a fly crawling up a wall.\"\r\n1\tThis picture was banned from American movies houses in the 1930 because of nudity by Hedy Lamarr, (Eva Hermann) which caused all kinds of problems among the ladies in the 1930's but not so much for the male population. This story concerns a young woman named Eva Hermann who gets married to an older man and is carried over the threshold on the wedding night and the husband never consummates the marriage and worries about all kinds of very petty things like his shoes and killing bugs. Eva leaves her husband's house and lives with her father and tries to explain her situation. On a hot Summer day Eva takes a ride on her horse and decides to go for a swim naked in a lake in the woods. Her horse runs off and she runs after him and is observed by a young man who finds her clothes and returns them to Eva. These two people become very acquainted and there is a romance that starts to bloom. There are many more interesting problems that arise as you view this film to its very end. Enjoy a great Classic film which was a Shocker Film in 1933. Enjoy.\r\n0\tA woman (Sylvia Kristel) seduces a 15 year old boy (Eric Brown). They have sex...but it's all tied into some stupid plot or something.<br /><br />Easily one of the most disturbing sex comedies ever. Does anyone realize this movie is making light of child molestation? I suppose it's OK cause it's a teenage boy--if we had one with a man seducing a teenage girl there would (rightfully) be outrage. Sorry, but having it done to a boy doesn't excuse it. It's still sick. I realize Brown was of age (he was actually 18 when this was made) but he LOOKS 15. I just find it disturbing that some people find this OK.<br /><br />Plot aside the acting sucks (Kristel is beautiful--but can't act; Brown is easily one of the worst child actors I've ever seen) and the constant nudity gets boring and isn't even remotely erotic.<br /><br />I saw this drivel at a theatre back in 1981. I was 19 and with my 14 year old cousin (who could easily pass for 18). HE wanted to see it--I didn't but I decideD what the heck? We got in and I actually bought tickets for three teenage boys who were obviously underage. My cousin thought is was boring and the three other kids left halfway through! Let me make this clear--three TEENAGE BOYS left a movie with tons of female nudity! That should give you an idea of how bad this is. I'm surprised this was ever released. A 1 all the way.\r\n0\tThe dialogue was pretty dreadful. The plot not really all that inspired beyond the obvious twist it presents. Not visually stunning. Actually visually annoying at times. Most definitely one of those films you find easier to finish if you keep one finger on the fast forward button. If you could watch it for free, have absolutely no other options open at the moment and you really dig seeing the little poltergeist lady... well maybe I'd recommend it to you, but not anyone else I could think of at the moment.\r\n1\tI stumbled upon this movie on cable and was totally hooked. The story of a group of surfers who ride the big waves, waves that are monstrously huge, waves that would make any rational person run away in terror is a one that manages to be spectacular and make you understand why people spend their lives chasing waves. There is nothing special about the film, other than it brings together some very interesting people who are are in love with what they do and lets them talk. Sure there are scenes of them surfing, but what makes this movie so special is the people. Here are a bunch of guys who are so enthusiastic about what they do that it crosses over to the people watching. Half way into this movie you'll want to go off and learn to surf as well. Few documentaries have ever managed to covey the passion that these people have and its the films ability to make us feel it that makes this a great film. See it.\r\n1\tI liked Top Gun. It held my interest. Predictable plot, decent character development and story line. It is pretty similar to High Noon in that the town people appear weak and scared to stand up to a villain. This movie has some quality actors who really did not get a chance to share all of their talents. Also some of the actors did not receive credit for their roles. Denver Pyle was a good looking man in his younger days. John Dehner, Rod Taylor are outstanding in their roles. Sterling Hayden did the best that he could with poor material. It is hard to imagine him as a gunslinger. Laura, played by Karen Booth, was a nauseating character. She seemed flattered that two men may have been fighting over her. Ugh. Finally, How can people travel without luggage? Especially women.\r\n1\tThis is a bit of a puzzle for a lot of the artsy Lynch crowd. They tend to try to write this off as some kind of meaningless, crude, side project of Lynch's. Like this is Lynch passing gas between his real pieces of film art. Well it may be a fart, but its one of those intriguing farts that you catch of a whiff of and are embarrassed to admit you enjoy.<br /><br />Dumbland distilled down beyond this is art. What can you do with aspects of modern life but laugh at it. If you took it seriously you would go nuts. You hook into it, smell it, taste it, feel its agonies, its unreasoning stupidities, and then express it in any medium you choose. Thats called art, and art isn't dumb. But it is Dumbland.\r\n1\tI thought it was one of the best sequels I have seen in a while. Sometimes I felt as though I would just want someone to die, Stanley's killing off of the annoying characters was brilliant. It was such a well done movie that you were happy when so and so died. My only problem was in some scenes it looked like someone with a home camera was filming it and it was weird. Judd Nelson is cute, at least in my opinion and he was excellent in the role as Stanley Caldwell. Brilliant movie.\r\n0\t\"Saw this piece of work at a film fest in CA. My god, what was the director thinking? Film professors should use this film as a case study on what NOT to do when making a short film. First off, this project makes absolutely no sense whatsoever. The film takes place partially in \"\"The Waystation\"\", some stupid vapid bar in the middle of nowhere, where nothing really takes place.<br /><br />THe acting is beyond bad. So bad in fact that I almost thought it was a comedy. The lead actress Julia Reading is a step below the acting in most amateur porn films. There is one or two decent performances, including the guys who played Jacob and Fenner but it's like the director had no clue on how to work or use his thespians. The only thing worse than the acting was the dialogue, which bordered on absurd. The writer (whom I assume is also the director) writes each character like they are auditioning for a comic book villain.<br /><br />The overall production value is pretty good, but to be honest, with a film this bad it's easy to overlook it. The production design is pretty good, although the Waystation looks like any ordinary bar. The costumes and make-up are okay, and I understand the production was working with a low budget. It's just when the characters speak, or they try and push the plot forward, the film unravels into a muck of crap.<br /><br />As I've said, this film is god awful. It's like the director/writer watched a lot of sci-fi films and threw all the parts he liked into a blender and came up with this. My only hope is that he used other people's money on this, because if he used his own, he's a total sucker.\"\r\n1\t\"I have to admit right off the top, I'm not a big fan of \"\"family\"\" films these days. Most of them, IMHO, are sentimental crap. But this one, like TOY STORY, the previous film from Pixar, is a lot of fun. The two lead characters were perhaps a bit too bland(especially compared to the two leads in ANTZ, but otherwise this film is better), but the rest of the film more than made up for it. The animation looked great, the humor, though broad, was consistently good(I especially liked Hopper's line \"\"If I hadn't promised Mother on her deathbed that I wouldn't kill you, I would kill you!\"\"), and the actors doing the voices, except the two leads, were all terrific(Denis Leary doing an animated movie; what a concept). And like everyone else, I loved the outtakes! I hope the video has the new ones.\"\r\n0\t\"Something I really love about this woman's short films was the elusiveness of theme -- especially in \"\"Living with Happiness.\"\" This film has some nice beginnings -- unusual location and the potential for a strange cinematic treatment, but fails to succeed with clunky expositional dialogue, patchy performances and very television coverage.<br /><br />It's once again charming television and very ordinary cinema. The ideas are so fleshed out that they almost feel pat like a television commercial. But the sentiment is good so we can't complain too much.<br /><br />I really would love to see this director make a full length animation and try and work with a producer who doesn't demand so much boring clarity.\"\r\n1\tIn Black Mask, Jet Li plays a bio-engineered super-killer turned pacifist, who has to fight against other super-killers. Bad plot, bad sfx(60 million dollar budget), but the fighting scenes were excellent! Jet Li is the greatest martial-arts star alive!\r\n0\t\"Veteran director and producer Allan Dwan, whose huge string of films includes both the utterly forgettable and the recurrently shown (for example, John Wayne in \"\"Sands of Iwo Jima\"\") tried his hand at a big musical with \"\"I Dream of Jeanie.\"\" Harnessing a lead cast of singers with little past film experience and, as it turned out, virtually no future, he spun a fictional and in no small part offensive story about the great American songwriter, Stephen Foster.<br /><br />Bill Shirley is the young, lovestruck Foster whose kindness to slaves includes giving the money saved for an engagement ring to pay the hospital cost for an injured little black boy. His intended is Inez McDowell (Muriel Lawrence) whose pesky younger sister, Jeanie (Eileen Christy), is slowly realizing she's in love with the nearly impecunious song-smith. Foster is in love with Inez who is revolted by the composer's Number 1 on the Levee Hit Parade Tune, \"\"O Susannah.\"\" Enter minstrel Edwin P.Christy (Ray Middleton) to help launch the profit-making phase of Foster's career.<br /><br />This is, by the musical-film standards of the early Fifties, a big production. The sets are lavish in that special Hollywood way that portrayed fakes with all the trimmings. The singers aren't half bad and the Foster songs are almost impossible to ruin.<br /><br />But this is also a literal whitewash of the antebellum South. The biggest number features black-face for all on stage, an historical anomaly and a contemporary piece of unthinking racism. Were these portrayals of blacks anywhere near reality, the abolitionists would be rightly condemned for interfering with so beneficent an institution.<br /><br />\"\"I Dream of Jeanie\"\" apparently sank into the studio's vault with barely a death whisper. Now revived by Alpha Video for a mere $4.99 it's a period piece with charming songs and repulsive sentimentalizing about the victims of America's great crime, slavery.<br /><br />This was what Hollywood was putting out two years before Brown v. Board of Education. Must have warmed the hearts of some moviegoers who wore their bed linen to the theater.\"\r\n0\t\"This is the first of \"\"The Complete Dramatic Works of William Shakespeare\"\" BBC series I've seen, and if all of them are like this, I might watch no more. Being practically the full text of the play is everything this \"\"Romeo & Juliet\"\" has going for it, lacking in all other departments. Alvin Rakoff reveals himself as a dreadful director, both in the technical and artistic aspects. In the former, because he commits mistakes that even a first grade film student would wisely avoid. Take in consideration, for example, the badly edited first shot of Abraham and Balthasar in the opening scene, or the Nurse's entering of Friar Lawrence's cell, asking where's Romeo with him being so very in front of her that she'd clearly see him even if she was blind. And, in the latter, because every single one of the performers is misdirected, even if some of them are good actors. Rebecca Saire looks exactly the way I've always imagined Juliet to look like, and she doesn't seem to be a bad actress for a teenager, but her performance totally lacks passion of any kind. Patrick Ryecart as Romeo is even worse, being not only as dull as Juliet, but also way too old and not even good-looking, coming across as a combination of Malcolm McDowell and the Chucky doll. Putting them together makes impossible to think they feel anything for each other, let alone being the main players of the greatest love story ever written. Alan Rickman, in his screen debut, plays Tybalt like if he was Darth Vader, which is a huge mistake that takes away the complexity that Shakespeare intended, no character being a hero or a villain but all flawed human beings. This Tybalt is so mean-looking that we don't believe the characters' pity after his demise. As for Paris, I kept thinking of \"\"Prince Valium\"\" from Spaceballs. Only Celia Johnson manages to do the character of the Nurse some justice.<br /><br />At 168 minutes, this production is unable to make us empathize with the characters, because the characters don't empathize with each other and never seen to believe their own roles. The best screen version is still Franco Zeffirelli's. But, to be fair, this BBC one isn't nearly as bad as abominations like George Cukor's flamboyant geriatric version, or the crime against Humanity that is Baz Luhrmann's feature-length MTV video. 4/10.\"\r\n1\tAfter all these years I still consider this series the finest example of World War II documentary film making. The interviews with the many participants from all countries set this apart from any other project. It would be great to see a contemporary documentarian(Ken Burns ?) take on this topic and try to gather information from veterans before they are all gone. With modern technology to improve old archival footage and lots of information that has been unearthed since 1974 when The World At War was produced, an updated version of this series would be welcome. The History Channel has made some fine shows dealing with many aspects of WWII but an expansive series such as the World At War has not been successfully attempted since the original. If you are interested in this era don't miss this series. It is required viewing.\r\n0\tI didn't really like this movie that much at all. It wasn't really funny and in some cases it was just downright stupid. Rob Schneider is definitely one enormously talented individual and while his acting was fine in this, it just seemed like a real waste for him to star in. I mean there were some parts that were okay and somewhat humorous in a cute kind of way but that's about it. The only thing that actually caught my attention during this whole ordeal of over the top jokes was that there were some very good looking females present and I'm not one to watch a movie solely because of that but in this case it was the only nook where even the slightest case of redemption could be found. All in all it was a couple notches below an average movie!<br /><br />Final Query:<br /><br />Theaters: So glad I didn't squander too much money on this.<br /><br />DVD Purchase: Ummm, let me think....no!<br /><br />Rental: If you have a prehistoric sense of humor then why not.\r\n1\t\"I remember when I first saw this short, I was really laughing so hard, that like with a lot of other films that I have seen, no sound came out! Curly is really great at \"\"singing\"\" opera in this one, I am surprised that he did not consider a career as a professional singer, because he was really good! <br /><br />If you noticed, this was filmed near the end of Curly's career as a Stooge, you could really tell he had changed, because he had lost weight and was thinner, his voice was deepening, his face was getting lined with wrinkles, though he still could pull it off, he looked like he was fifty at the age of forty. This was because he was suffering many minor strokes before his big one that ended his career. Be he still managed to pull it off in his last ones! <br /><br />If you don't mind the fact that Curly was really getting very ill at this point, this is actually one of their funniest shorts. I know that I didn't mind the fact that Curly was really changing, because I still thought that he was great! <br /><br />10/10\"\r\n0\t\"\"\"Blood of the Sacred, Blood of the Damned\"\" is the third installment of the Gabriel Knight games, a series of adventure games about the roguish writer/paranormal detective, Gabriel Knight. Gabriel and his companion, Grace, have been asked by Prince James of Albany to investigate a series of mysterious attacks by so-called \"\"night visitors.\"\" When the son of Prince James is kidnapped, Gabriel pursues the night visitors to Rennes le Château, where he begins piecing together a mystery relating to the Holy Grail.<br /><br />Despite the marketing, this game is not about vampires. Vampires have a token appearance in the game, but never command center stage, as did the voodoo hounfor in \"\"Sins of the Fathers\"\" or the werewolves in \"\"The Beast Within.\"\" Gabriel and Grace make no attempt to uncover the true nature of vampires, or to research lore on vampires. Although the vampires do murder three people during the course of the game, their victims are chosen at random and have nothing to do with the main plot.<br /><br />A large part of the charm of the first two Gabriel Knight installments was in the relationships which Gabriel formed with the villains. Through these relationships, the player could not help but sympathize with the villain, and thus the villain was transformed into more of a human and less of a monster. However, in \"\"Blood of the Sacred,\"\" Gabriel's only interaction with the villain is through a single, cheesy interview, which does nothing to endear the villain to the player.<br /><br />The roles that Gabriel and Grace play in this mystery are fairly futile. Gabriel spends his time snooping into the identities of members of a treasure-hunter tour group staying at his hotel, but what he uncovers amounts to nothing more than a red herring. Grace spends her time researching the mystery of Rennes le Château, but all her research is rendered superfluous by the presence of a perplexing ally who has known the answer to this mystery for centuries.<br /><br />The actions of this perplexing ally and his polar opposite --- the vampire leader --- are insupportable. The ally leaves hints about the mystery of Rennes le Château in broad daylight and expects Grace (and not the other treasure hunters from the tour group) to find them. However, he could have revealed the mystery to Grace in its entirety on day 1, instead of putting the kidnapped child at risk for an additional 48 hours. And in the end, he simply tells Grace the mystery in its entirety anyway.<br /><br />Meanwhile, the vampire leader fails to achieve the goals of centuries of scheming, because he chooses to refrain from action for two days after the kidnapping of the child. The only reason given for his decision to delay action is that he wants to savor his victory.<br /><br />The game would have been much better had it been purely focused on the Holy Grail. The kidnapping and vampires should have been omitted, replaced with a race against the Vatican to uncover the mystery of Rennes le Château. Since Gabriel is portrayed more than once as reluctantly Catholic, this conflict would have had many opportunities for character development.<br /><br />All in all, the game was a disappointing installment in the series, despite an improved interface and the return of Tim Curry as the voice of Gabriel Knight.\"\r\n1\tI remember watching this film a while ago and after seeing 3000 miles to Graceland, it all came flooding back. Why this hasn't had a Video or DVD release yet? It's sacrilegious that this majesty of movie making has never been released while other rubbish has been. In fact this is the one John Carpenter film that hasn't been released. In fact i haven't seen it on the TV either since the day i watched it. Kurt Russell was the perfect choice for the role of Elvis. This is definitely a role he was born to play. John carpenter's break from horror brought this gem that i'd love the TV to play again. It is well acted and well performed as far as the singing goes. Belting out most of Elvis's greatest hits with gusto. I think this also was the film that formed the partnership with Russell and Carpenter which made them go on to make a number of great movies (Escape from New York, The Thing, Big trouble in little china, and Escape from L.A. Someone has got to release this before someone does a remake or their own version of his life, which i feel would not only tarnish the king but also ruin the magic that this one has. If this doesn't get released then we are gonna be in Heartbreak Hotel.\r\n0\tI hate this movie. It is a horrid movie. Sean Young's character is completely unsympathetic. Her performance is wooden at best. The storyline is completely predictable, and completely uninteresting. I would never recommend this film to anyone. It is one of the worst movies I have ever had the misfortune to see.\r\n1\tThis film may have a questionable pedigree because it was made for TV, but it is one of the best movies I've seen. The film and its actors won several awards. It is gripping, fascinating, and it will absorb you completely. The story of a chase for a killer in iron-curtain Russia by people who are willing to risk their careers to try to save lives of future victims would be a compelling story if it were fiction -- but it's ostensibly a true story. I highly recommend it.\r\n1\t\"I admit not being that fond of Oliver! as a young child--it's long, and the story is a little slow-moving because of all the musical numbers. As a teenager I discovered that the fun of this movie is the experience itself. Rather than thinking of it as an adaptation of Oliver Twist, think of it as a celebration of the classic story. The adaptation is loose at best, but really, if you're watching a musical, you ain't there for the story.<br /><br />The music is the core of this movie, and an overwhelming majority of it is stellar and very catchy. Most or all of the cast was involved in the stage version of the musical, and it shows in their performances--and I consider this a plus. The performances are all in a more \"\"stagey\"\" style of acting typical of much older films, and they are very entertaining. The exception is the kid playing Oliver, whose job seemed to be to look cute and stay out of the real performers' way.<br /><br />Fagin and the Dodger are the real stars of this movie. Oliver Reed also does a fantastic job maintaining an intimidating screen presence as the menacing Bill Sykes. Even Sykes' dog Bullseye puts on a good performance.<br /><br />This movie isn't for everyone. People who hate musicals will despise it, as will those who take musicals too seriously. Nitpicking over faulty historical details or mistaking exaggerated stage-type acting for bad acting will ruin anyone's enjoyment. Just sit back and enjoy the entertainment--it's much better if you remember that, as a musical, it's a fantasy loosely organized around the book, not a strict adaptation.\"\r\n0\tA few weeks ago, I read the classic George Orwell novel, 1984. I was fascinated with it and thought it was one of the best books I've read recently. So when I rented the DVD, I was intrigued to see how this adaptation measured up. Unfortunately, the movie didn't even come close to creating the ambiance or developing the characters that Orwell so masterfully did in his book. The director seems to think that everyone watching the movie has read the book, because he makes no attempt to demonstrate WHY the characters act and feel the way they do. John Hurt, the main actor, is droll the entire way through, and hardly does any acting until the end. We never really find out what he does for a living, or why his love affair is forbidden, or what the political climate is and why the main character desires rebellion. This book cannot be done justice in movie form without proper narration and explanation of the political system oppressing the characters, and the fact that those are missing is the greatest shortcoming of this film. Besides that, John Hurt was a terrible casting choice, looking about 15 years older than the 39 year old Winston he was supposed to be portraying. On a more positive note, however, the rest of the cast was well chosen. It's just too bad they were put in such a horribly adapted film with the wrong lead actor. -Brian O.\r\n1\t\"I love the series! Many of the stereotypes portraying Southerrners as hicks are very apparent, but such people do exist all too frequently. The portrayal of Southern government rings all too true as well, but the sympathetic characters reminds one of the many good things about the South as well. Some things never change, and we see the \"\"good old boys\"\" every day! There is a Lucas Buck in every Southern town who has only to make a phone call to make things happen, and the storybook \"\"po' white trash\"\" are all too familiar. Aside from the supernatural elements, everything else could very well happen in the modern South! I somehow think Trinity, SC must have been in Barnwell County!\"\r\n0\t\"I have seen some pretty bad movies, and this is right up there. No plot to speak of, it's like one of those bad coma episodes on a soap-opera. I just wanted to smack that little girl because, well lets just say, she's real suspicious all the way through the movie. The monsters running around wearing some bling was funny. I also saw a bit of \"\"Silent Hill\"\" in there. And I read that this was done by, and or stared a Finnish metal band, Lordi. So it's no wonder that it didn't make much sense. It seem to be a vehicle for promoting there band and nothing more. The FX are very good, the look of the movie, the monsters, and even the acting also good. But the story and the telling of it, just aren't there.\"\r\n1\tA mix of comedy, romance, music(?!), action and horror. A knockout. This is one of the reasons people rave about Hong Kong cinema. If you're looking for something totally original, look no further. Entertainment at it's peak.\r\n1\tAfter you've seen this small likable and comical film, you will for sure feel better. Cheer to Yves B. Pelletier to have given birth to this small magnificent movie moment, that according to me, will be recognized as a marking movie of year 2004 for the Quebec. The actors Isabelle Blais, Emmanuel Bilodeau, Sylvie Moreau and Stéphane Gagnon all deliver a touching performance. I would compare the feeling that this wonderful story gives you to the ones that Le Fabuleux Destin d'Amélie Poulain have given me. So if you've like the Jean-Pierre Jeunet magnificent film, I would say that you should also like the first movie from Yves B. Pelletier, Les Aimants\r\n0\t\"Why do I watch movies like this ? - other than I have some weird misguided masochistic belief that one day I will find a true gem amongst all this dross I can't think one one good reason. This movie was dross from start to finish - but semi-hilarious dross. Where else but in a bad Italian dubbed movie could you find heated exchanges of surreal mangled English like this one between a honest military type and the sinister chief of a secret X-files like organisation dedicated to hiding \"\"The Truth\"\":<br /><br />Man in Black: Silence is best for us until we are able to prove that the UFOs have no bellicose motives.<br /><br />Military Type: In any event I find your interference abusive.<br /><br />Man in Black: Whoever has to impose his will is.<br /><br />I rewound the DVD (you know what I mean) a good half dozen times and I still can't make those lines mean anything sensible. My other fave line was:<br /><br />\"\"We can be quite hard on those who contravert our interests.\"\"<br /><br />It's English Jim, but not as we know it. <br /><br />The other highlights of this dull plonker of a movie for me were the totally spaced out acting of the photographer character at the start. Saddled with the worst haircut EVER in the history of everything, the man just wandered around looking like a stunned fish in a bad wig till kidnapped and forced to look at a piece of Plexiglas by some aliens. The aliens are most effectively not seen as a POV shot - hand held camera with a fish-eye lens - sort of spooky the first time but, used over and over again it lost its power (incidentaly, if it is a Point of View shot, it means the aliens always walk out of rooms backwards for some reason).<br /><br />The film was set in \"\"England\"\". This meant the Spanish Italian set designers put some British number plates on a couple of English cars and put a Union Jack on our hero's press card... and that was about it. No other attempt to make it look like the UK at all.<br /><br />Favourite moment? When the Foley artists didn't notice that characters they were foleying (is there such a word?) were no longer walking on gravel but were now on the lawn so their feet kept on making loud \"\"crunch! crunch!\"\" noises. Other than that, another total waste of 90 minutes of my life. I hope they prove those UFOs have no bellicose motives soon...\"\r\n1\tI must confess to not having read the original M R James story although I have read many of his other supernatural tales. I've also seen most of the previous BBC Christmas Ghost Stories and this one, in my opinion, surpasses most of them, only equalling The Signalman.<br /><br />I can't really fault A View From a Hill - the direction and 'mood' is perfect, as is the acting, lighting and, of course, the story and writing. I thoroughly enjoyed this and can only hope for more of this quality from the same director and production team. I understand that the BBC plan to make some more (not necessarily based on M R James stories) so that's promising.<br /><br />10/10\r\n1\t\"The Ghost Train is a treat to those who appreciate the typical 1940's humour. It incorporates World War Two into the plot but not as much as I initially believed it would, and the characters are a unique blend who play their roles fairly well. Askey, playing the role of Tommy Gander, is what brightens the story up for the parts which could of been portrayed as boring or \"\"dragging\"\".<br /><br />The story of the haunted station is actually spooky even for present day standards. It is unique and the way the characters communicate with each is fantastic to liven up the mystery which is The Ghost Train. Gander is basically a nuisance to all the other members while the rest get along fairly well. He is always centre of attention and can be dubbed as being \"\"annoying\"\" but that is by those who do not appreciate 1940's humour. His humour is innocent and childish which makes it sweet to watch.<br /><br />If it was not for Askey/Gander, than this film would of been shorter in action, enjoyment and the result would be not as effective in my opinion.\"\r\n1\t\"Kubrick proved his brilliantness again, now in a suspense-horror film based on Stephen King's book titled the same way. Jack Torrance is a man in his forties, married, with one child, and with a past of trouble and alcoholism. The Overlook Hotel in Colorado suspends service during the winter because of its extreme weather, and there is a well-paid job for the person who takes care of the facilities during those five months; and Torrance, who was looking to become a writer, found it perfect. But, the manager advised Torrance about the loneliness in this place during the winter, potentially dangerous, and told him that some caretaker in the past went crazy and murdered his family. Even before they got there, his son Danny, who has some sort of imaginary friend who illuminates him the future (shinning), knew the place wasn't good and didn't want to go. Once they installed themselves in the hotel, things started right but within a month, Jack began acting strange, irritated, and depressed. At this point, we know something is going to happen, but don't know when and how. Scary things happen such as the appearance of two twin girls talking to Danny, and someone who attacked him violently. They are not alone in this place. Later on, Jack started to see other people and immediately felt good with them, like if they were his family; among them the famous psychotic caretaker, Delbert Grady. Grady tells Torrance that he must kill his family because they are \"\"intruders\"\" in the hotel. Obeying this order, Jack went for the objective and many of the most scary things I've ever seen happen here. The ending is spectacular and the viewers will stay interested and shocked until the last minute.\"\r\n0\t\"I don't believe there has ever been a more evil or wicked television program to air in the United States as The 700 Club. They are today's equivalent to the Ku Klux Klan of the 20th century. Their hatred of all that is good and sweet and human and pure is beyond all ability to understand. Their daily constant attacks upon millions and millions of Americans, as well as billions of humans the world over, who don't happen to share their bigoted, cruel, monstrous, and utterly insane view of humanity is beyond anything television has ever seen. The lies they spout and the ridiculous lies they try to pass off as truth, such as the idea of \"\"life after death\"\" or \"\"god\"\" or \"\"sin\"\" or \"\"the devil\"\" is so preposterous that they actually seem mentally ill, so lost are they in their fantasy. Sane people know that religion is a drug and shouldn't let themselves get addicted to that type of fantasy. However, The 700 Club is in a class by itself. They are truly a cult. While I believe in freedom of speech, they way they spread hatred, lies, disinformation, and such fantastic ideas is beyond all limits. I hope that one day the American Psychiatric Association will finally take up the study of those people who delude themselves in this way, people who let themselves sink so deeply into the fantasy land of religion that they no longer have any real concept of reality at all. Treatment for such afflicted individuals is sorely needed in this country, as so many people have completely lost their minds to the fantasy of religion. The 700 Club though, is even more horrible as it rises to the legal definition of 'cult' but due to The 700 Club's vast wealth (conned daily from the millions of Americans locked in their deceitful grip) they are above the law in this country. For those of you who have seen the movie \"\"The Matrix\"\" you know that movie was a metaphor for religion on earth: the evil ones who are at the top of each of the religions who drain the ones they have trapped and cruelly abuse for their own selfish purposes, and those millions who are held in a death sleep and slowly being drained of their life force represent those many people who belong to religions and who have lost all ability to perceive what is really going on around them.<br /><br />In less civil times, the good townsfolk would have run such monsters as those associated with The 700 Club out of town with torches and pitchforks. But in today's world where people have lost all choice in their choices of television that is presented to them, we have no way to rid ourselves of the 700 Club plague. <br /><br />The television ratings system and the \"\"V\"\" chip on TV's should also have a rating called \"\"R\"\" for religion, so that rational people and concerned parents could easily screen such vile intellectual and brutal emotional rape, such as presented by The 700 Club every day all over our country, from themselves and their children.\"\r\n0\tThe dancing was probably the ONLY watchable thing about this film -- and even that was disappointing compared to some other films. My gawd!<br /><br />To me, this is the worst kind of film -- one that assumes it's a work of art because it has all the trappings of film-as-art. Yes, it's beautifully photographed, but ultimately lacks the depth and tension of the dance around which the film supposedly surrounds itself. Tango is a tease, it's hot, it has drama, it's audacious -- precisely what this film is not.\r\n0\t\"What a boring film! To sum it all up, its was basically just Nana Patekar beating up his daughter-in-law Karisma Kapoor, while she tried to flee from the village, with her son. Can someone say BORING??? The concept wasn't too bad, but it was poorly executed. The Canadian locales, and some of the village scenes were nicely shot. However, overall the cinematography came up short. The story could have been great, but the movie just seemed to drag on. There is only so much stupidity a person can take, let alone three bloody hours of it.<br /><br />The best part of the whole movie was the song \"\"Ishq Kamina\"\", and that was only five minutes long. Other than that, this movie was a piece of crap.\"\r\n1\tThis movie has Wild Bill Hickok, Calamity Jane, Buffalo Bill and General Custer all together. Gary Cooper plays Wild Bill and Jean Arthur plays Calamity Jane and Charles Bickford plays the bad guy who sells weapons to the Indians and you can hardly recognize him. This was the first time Cecil B. DeMille and Gary Cooper worked together and the next movie the made was basically the same but set in a different time. This movie starts out with Lincoln's assassination and it also deals with an Indian war. Calamity Jane is in love with Wild Bill and Buffalo Bill has gotten married and now wants to stay home. This movie also deals with Custer's last stand and is far from accurate. Gary Cooper is good as usual and i usually don't like Jean Arthur but i liked her here.\r\n0\tI'm surprised that anyone involved with the production of this series would actually admit responsibility. The script is so unfunny it must have been written by someone who failed the entrance exam for the Canadian Comedy Writers' Union (and that's saying something!). Get out your binoculars if you want, but there's nothing resembling a joke in sight. Ronnie Corbett must have been flat broke to demean himself with this rubbish. The rest of the cast are so lacking in any kind of acting or comedic ability I'm amazed it lasted past the first episode - correction, past the auditions. All I can say to those who are amused by it is that they must be very easily entertained. And it's obvious that the production costs must have been all of ₤100 per episode. And just in case anyone thinks I'm commenting as a foreigner who is unfamiliar with English humour, I must add that I am indeed English.\r\n0\tIts hard to make heads or tails of this film. Unless you're well oiled and in the mood to mock, don't view Santa Claus. It mixes Santa, Satan, Merlin, and moralizing in a most unappetizing way. It certainly is not for fretful children.\r\n0\t\"Amateur, no budget films can be surprisingly good ... this however is not one of them.<br /><br />Ah, another Brad Sykes atrocity. The acting is hideous, except for Emmy Smith who shows some promise. The camera \"\"direction\"\" needs serious reworking. And no more \"\"hold the camera and run\"\" gimmicks either; it just doesn't work. The special effects are unimaginative, there's a problem when the effect can be identified in real time. If you're going to rip off an ear, please don't let us see the actor's real ear beneath the blood. The scenery is bland and boring (same as Mr. Sykes other ventures), and the music is a cross between cheap motel porn and really bad guitar driven metal (see the scenery comment).<br /><br />Did I mention the lack of any real plot, or character development? Apparently, the scriptwriter didn't.<br /><br />Whoever is funding this guy ... please stop. I've seen some of his other \"\"home movies\"\" (which I will not plug) and they are just as bad. Normally, a \"\"director\"\" will grow and learn from his previous efforts ... not this guy. It's one thing to be an amateur filmmaker, but anyone can be a hack.<br /><br />Definitely not even a popcorn film ... of course, chewing on popcorn kernels would be less painful than this effort.<br /><br />Award: The worst ever military push-ups in a film.\"\r\n0\t\"In light of the recent and quite good Batman the Brave and the Bold, now is the time to bear a fatal blow to that mistake in the life of Batman. Being a huge fan since the first revival by Tim Burton 20 years ago, I have been able to accept different tonalities in the character, dark or campy. This one is just not credible : too many effects, poor intrigues and so few questions. What is great about Batman is the diversity of his skills and aspects of his personality : detective, crime-fighter, playboy, philanthropist etc. The Batman shows him only in his karate days. And by the way, how come the Penguin is capable of such virtuosity when jumping in the air regardless of his portly corpulence ? And look at the Joker, a mixture of Blanka in Street Fighter 2 and a stereotypical reggae man, what Batman fan could accept such a treason ? Not me anyway. Batman is much better without \"\"The\"\" article in front of his name.\"\r\n1\tI saw this movie by luck, just because I was going through a phase where I had a new found admiration for Bill Pullman and wanted to see all of his recent movies and thank God I did! This Movie has stuck with me ever since and remain one of my favorites! The story revolves around two girls who embark on a dramatic journey in a foreign country where they'll learn the true meaning of freedom.<br /><br />Alice and Darlene were just trying to spend a vacation together before going to college but their trip ended up a much more complicated story. The struggle they go through as they are arrested in Thailand and became prisoners is very moving and intense. The acting is amazing, the images extraordinary, the soundtrack is fantastic and so right for the movie and the message transmitted definitely powerful. I actually can't even find the right words to describe how this movie makes me feel every time I watch it. I know some people haven't appreciated as much as me by the rating the movie has but I swear, this one, you have to see!!! I promise it will stick with you!\r\n0\tThis is meant to be a comedy but mainly bad taste, and nothing remotely causing a smile in the film. The movie is about a couple trying for a child, and those people in real life who are in that situation will wince at the depictions that are portrayed. For instance scenes at a fertility clinic are not in the least funny and are quite frankly embarrassing. The male lead who plays a construction worker and in his hard hat comes across as a poor excuse for a reject from Village People. The female lead is trying to look 20 years younger than she is. Both leads come across as unappealing,unattractive and completely unconvincing. There are various ridiculous and totally unassuming gratuitous scenes in the film, for example with a budget airline, which is devoid of any humor. The only reason I give this 3/10 instead of 1/10 is one mark for Shirley Maclaine, who is a a class above anything else in the pic, and one mark for some half decent(albeit old) music.\r\n0\t\"Feeding the Masses is just one of many recent mediocre zombie movies to be after your hard-earned dollars. Suggestion? Keep your hard-earned dollars and let's just say that good old TheatreX took one for the team on this one. Guess what the plots about? Zombies taking over. This time though, for the sake of originality (?) this film takes place in Rhode Island, and to be honest I'm not sure I've ever seen a zombie flick based in Rhode Island. A TV station, controlled by the government, is supposedly keeping up \"\"normal\"\" broadcasts so that any remaining citizens won't think that there's any problem in the world, that is, those that never look or go outside, anyway. I will say though that a few of the commercials broadcast by this station were probably the most amusing part of this film. There is actually somewhat of a story to this but I'm not bothering with that because after a while you'll either not care or have fallen asleep. At any rate, this has plenty of terrible acting to throw on top off all the \"\"seen it all before\"\" stuff that gets trotted out before the camera. Trust me, you can find plenty of other things to do with your time than watch this. 3 out of 10.\"\r\n1\tWith rapid intercutting of scenes of insane people in an asylum, and montage/superimposition of images, and vague, interwoven narratives, this is a very hard movie to follow. Apparently a man (Masue Inoue) takes a job as a porter or janitor in an asylum so he can be near his imprisoned wife, and maybe to rescue her. But she's clearly mad, huddled on the floor, with a vacant expression much of the time and fear, misery, and confusion written on her face the rest of the time. The film-maker switches to her point of view sometimes, and we see vague images of her at the side of a pond drowning a baby, or clutching at a drowned child. She's tormented by something. When the point of view shifts to her or other mad folks, the filmmaker uses distorting lenses and such things, showing us what mad people see and then how they react. And the place is swarming with mad folks, laughing, hiding, and in one case dancing frenetically night and day. At one point the man tries to take his wife outside, but the night outside the door terrifies her and she runs back to her cell. Gradually the man slips into a nightmare in which he's interrupted in another attempt to steal her away, and he kills the doctor and many attendants, and all the while the mad folk laugh and applaud. When he wakes he is relieved, and mops the floor. Some fascinating shots of Japanes life, streets, buildings in the 1920s.\r\n0\tI have recently watched this movie twice, and I can't seem to understand why the h*ll the makers made this pile of crap. I mean, yes, It gives a great impression of Hitler's environment, and I mean the way they reproduced Austria in the late 1890's, WWI and the Inter-war period. What I can't understand is why they pictured Hitler as a 100% pure evil, mad, unreliable, mentally unstable freak. He was after all a very thoughtful, loving and intelligent man who of course had his dark sides, no doubt about that. But why in heaven's name portray him in this way? All of his positive aspects have been cut out of the scenario, leaving nothing but a very propaganda-like portrait of a man who had the biggest influence on modern civilization ever. Yes, he threw Germany into the devastating 2nd World War. Yes, he was racist, and yes he was at times menially unstable especially at the end of the war. All true. But again; why the hell did they plain LIE to the public? To warn us?<br /><br />I absolutely don't think this movie was a warning. The true danger of Hitler and the Nazi's was the fact they were able to rise to power at moments of severe global weakness. The fact this evil was so recognizable yet so embraced by almost every German alive (not to mention Austrians and a LOT of other people) makes it a warning to modern civilization, NOT the fact Hitler was such a 'weirdo'. If it would have been like the makers make us believe - I would have been convinced that the German people were retarded. A man like the one in this movie would have never gotten anywhere near party leader - not to mention ReichsKanzler. <br /><br />4/10\r\n1\t\"This movie is an awesome non-stop laugh riot incorporating all the usual ingredients of a Dawid Dhawan comedy - bumbling heroes , buffoonish supporting characters , made-up dolls for heroines , nasty villains , wisecracks , rocking soundtrack + choreography and a little dose of action . <br /><br />Amitabh Bachchan and Govinda both are in double roles of policemen and conmen . The heroine of Amitabh the cop is Ramya Krishnan and Raveena is opposite Govinda the cop . Heroines are mere rouge-smothered props as usual . The conmen have no heroines . Paresh Rawal carries his villainous act in DAUD forward (He played a similar Don in KHOOBSURAT too) . Asrani shines in a brief role . He does a retake on his famous \"\"Angrezon ke zamaane ke Jailer\"\" act in SHOLAY .<br /><br />Govinda is impeccable as usual - as a wisecracking , good-humoured policeman Pyaare Mohan and as a conman Chhote Miyaan . He imitates Bihari style of Hindi speaking with hilarious results . Amitabh Bachchan , believe it or not , pales in comparison with him . But still AB is fine . Madhuri Dixit does a cameo as herself in the song \"\"Makhna\"\" . She dances like wind . <br /><br />Viju Shah's music is awesome . Check out \"\"Kisi Disco Mein Jaayen\"\" , \"\"Makhna\"\" and the title track .<br /><br />Do not go looking for any LOGIC since it is a comedy and the screenplay is of convenience completely . Just Enjoy Yourself .\"\r\n1\tI don't remember when I first heard about this movie, but I rented it about six years ago, and it still remains one of my favorite comedies. I will admit, you probably will despise this movie if you know nothing about rap music. But if you are a rap fan, even a casual one, you will love the inside jokes and references. One of the best lines in the movie is about the difference between a b**** and a h**; I still use this line today and get lots of laughs with it. One of the best performances comes from Larry Scott, who played nerd Lamar in `Revenge of the Nerds'. It is unfortunate that this movie will likely never get a DVD release.\r\n0\tI first saw this movie when I was about 10 years old. My mom bought it at our local Kmart because it was on sale for $5 on VHS. She thought that it would be a nice Christmas movie for me and my brothers to watch. This movie, however, scared the hell out of me. You may be asking yourself, how could a movie about Santa Clause scare anyone? The plot of the movie revolves around Satan sending one his minions, Pitch, to earth in an attempt to kill Santa and ruin Christmas. That's right, Satan sends a demon up from hell to kill Santa Clause. Pitch stalks Santa throughout Christmas eve in an attempt to trap him on earth when the sun rises on Christmas day, for if Santa doesn't make it back to his home in space, he turns to powder. Don't get me wrong, the movie is funny and fairly entertaining, however, the image of demons and devils dancing in the depths of hell (which occurs at the beginning of the movie) is just downright creepy.\r\n0\t\"Alone in The Dark is one of my favorite role-playing-games of all time. I remember spending whole nights facing the PC screen, trying to escape that mansion and actually being startled at times when monsters came surprisingly charging in. Now, mind you - I am weary of \"\"computer-game-generated\"\" movies. I don't remember a single success story in this new Hollywood genre, although some are entertaining enough to be watchable. And yet, I am such a big fan of the game that I couldn't resist. My rationale was that if the movie had a plot that so much as resembled the game's, it would be OK. <br /><br />Man, those were 90 minutes (which seemed like 300) of my life that I'll never get back. If I had that chance, I would have gladly spent them rearranging my sock drawer instead. This isn't even in the \"\"so bad it's funny\"\" category. You would think even Christian Slater had a bit more sense than joining this stink bomb. Now, Tara Reid... I'm not complaining about her presence. However, if the purpose of putting this chick in a starring role is to have a sex scene, - which I totally understand and support (hey, I'm a guy!) - I've seen more of her body on press conferences.<br /><br />There is no plot to speak of. Won't waste your time pitching it to you. The credibility of the story sinks below 'I did not have sex with Ms. Lewinski'. The acting is but a few notches above 'Street Fighter', which, by the way, being one of the worst movies I've seen, I would recommend OVER this one.<br /><br />Kids, I recommend the Video Game. It has far better story, acting and much more thrills. As for the movie, here's a spoiler - it STINKS! Wait for the porno version.\"\r\n0\tI loved the original. It was brilliant and always will be. Strangely though, I actually looked forward to seeing the re-make. I'm usually a little bit against re-makes because there's far too many of them, but somehow this intrigued me. I was really enjoying it to begin with. Caine brilliant, as usual, and Jude Law managing to hold is own next to him. It was quite clever how it was modernised and it was working. What stops this from being really good is the last seven minutes. It goes completely away from the original, so far in fact that is ceases to be clever and just gets annoying. The end in the original was fantastic! So much tension was built up and it was unbelievably clever! This? It grows not in tension but in frustration as it seemed they decided to make Caine's character a homosexual. It was if they were trying far to hard to be different. And then... BANG! Law's dead. Roll Credits. This film is worth the watch simply for the performances, but those last seven minutes really do drag it down. What a pity....\r\n0\t\"I can only believe that Garson Kanin must have been two people. The one who wrote the brilliant \"\"A Double Life\"\" and the funny \"\"Born Yesterday\"\" and co-wrote such excellent screenplays as \"\"Adam's Rib\"\" and \"\"Pat And Mike\"\" with his wife Ruth Gordon and then the one who wrote and/or directed such tiresome, sad drivel as \"\"Bachelor Mother\"\", \"\"Some Kind Of A Nut\"\", and this. The cast tries, but the script is so tired and clichéd that even the efforts of the always wonderful Brenda Vaccaro are defeated. The script sinks to it's nadir in the truly offensive sequence in which Janssen's character tests Drivas's character to make sure he's not gay. An ugly sequence, but sadly one which could easily play in a film today. \"\"Ethnic\"\" jokes are now totally verboten, but \"\"fag\"\" jokes are still \"\"good, clean, family fun\"\".\"\r\n0\t\"that's incredible! Fidani (who he was also a spiritist) was one of the cheapest director of all the world. This movie stole the original title of Leone's \"\"Duck you sucker!\"\" but tell the boring story of a Pinkerton agent against the killer \"\"Testa di Ferro\"\" (the improbable Gordon Mitchell, a stuntman). All is poor and crazy in this pelicula filmed into the dear landscapes of Lazio. The story is bad and crazy at the same time. Fidani was not able and ingenuos at the same time. Into the story happened some kind of crazy illogical things (like the discussion into the Sheriff's house and the demential appearance of Butch Cassidy !?!?!?!?!? yes, really Butch Cassidy,who is portrayed like an idiot). Terribles nuit americaine, absurd comportaments, illogic plot, bad acting and a fugace appearance by one of the most rewarded anchorman in the story of italian television, Renzo Arbore. Ah, of course: Klaus Kinski. Yes is great and terrible, but i'm sure he was in it only for money an for playing with iron horses) 2 of 10 but...DON'T MISS IT!!!!!\"\r\n1\t\"In a famous essay he wrote about Charles Dickens, George Orwell points out that many readers always regretted that Dickens never continued writing like he did in PICKWICK PAPERS: that is, he did not stick to writing funny episodic novels for the rest of his career. This would not have been too difficult for Dickens. His contemporary Robert Surtees did precisely that, only concentrating on the misadventures of the fox hunting set (MR. FANCY ROMFORD'S HOUNDS is a title of one of his novels). Among hunters and horse lovers Surtees still has a following but most people find his novels unreadable. Dickens was determined to show he was more than a funny man (and don't forget, his first book, SKETCHES BY BOZ, was also a funny book). So Dickens third book is OLIVER TWIST (which got pretty grim at points). Orwell says that for any author to grow they have to change the style of their books. Dickens would definitely (and successfully) have agreed to that.<br /><br />But Orwell overlooked the genre writer who transcends his fellows. Surtees, as I said, is a genre writer concentrating on hunting - but not everyone is interested in hunting. But P.G.Wodehouse saw himself as an entertainer, poking fun at the upper reaches of the British social system. His Earl of Emsworth is prouder of raising the finest pig in England than being...well Earl of Emsworth! His Psmith is always prepared to counterattack when he is supposed to be submissive to an unfair superior. His Stanley Uckridge will always have a \"\"perfect\"\" scheme that should net a huge profit (but always manages to come apart at the end). And best of all, his Jeeves will always put his brilliant brain to work rescuing the inept Bertie Wooster, his boss. Since Wodehouse had a limited view of his mission as a writer - he was there to do cartoon figures of fun for the entertainment of the world - his books never lost their glow. They served (and still serve) their purposes. In fact, compared Wodehouse with his far more serious contemporary Evelyn Waugh, who also wrote funny books, but of a more intellectual type. The best of Waugh remains among the high points of 20th Century British literature: BRIDESHEAD REVISITED, DECLINE AND FALL, and the rest. But in his determination to make his points, if his points failed to interest the reader the book frequently collapsed. For every VILE BODIES there was some failure late in his career like THE ORDEAL OF GILBERT PINFOLD. While Wodehouse could do lesser hack work too, his falling did not go as far as Waugh's did.<br /><br />Wodehouse also was a gifted lyricist (when you hear \"\"Bill\"\" in the score of SHOWBOAT, it is not Kern and Hammerstein's tune, but Kern and Wodehouse's tune transposed from \"\"Oh Lady, Lady\"\" a dozen years earlier). He was a handy dramatist too. So it is pleasing to see that he took his novel A DAMSEL IN DISTRESS and turned it into the screenplay here.<br /><br />It has the normal Wodehouse touches. That perfect butler Keggs (Reginald Gardiner in a wonderful performance) is a scoundrel in rigging a \"\"friendly\"\" gambling game of chance among the staff of the stately home he heads. He is also unable to refrain, occasionally, from singing Italian opera - despite Constance Collier's attempts to control his impulse. This is typical Wodehouse characterization. So is the way the love affair between Lady Alyce and Jerry keeps going well and going down due to the antics of Keggs and young Albert, both of whom want to win that game of chance pot of cash. Wodehouse always does that type of plot switch, with antagonists switching their point of view depending on their present state of interest.<br /><br />Wodehouse was also lucky here to have Burns and Allan to work with. It is generally considered that of all the films they made as supporting actors together (such as SIX OF A KIND and WE'RE NOT DRESSING) George and Gracie did their best support with Fred Astaire. The Fun House sequence, which includes the song \"\"Stiff Upper Lip\"\", is wonderful, as is an earlier sequence where the three do a \"\"whisk broom\"\" dance (that Astaire learned from Burns). But Gracie's marvelous illogical logic is used by Wodehouse in scenes with Gardiner (see how she manages to confuse him into giving her more money than her change deserves to be - only Albert happens to notice Keggs/Gardiner's mistake, and looks at Gardiner as though he's either stupid or mad). Her dialog with Lady Caroline (Collier)'s son Reggie (Ray Noble, the British band leader)leading him to imagine that he will marry her, but saying goodbye to Gracie as she drives off with George to get married is wonderful too.<br /><br />The film supposedly failed at the box office because of the lack of Ginger Rogers in it, and the weakness of Joan Fontaine. Fontaine is not doing a remarkable job in the role, but the flaw is really Wodehouse's - he didn't make the character very interesting. But the film can stand without that, given the other performers and their characters, Gershwin's music, and Wodehouse's marvelous sense of fun.\"\r\n0\tLoved the original story, had very high expectations for the film (especially since Barker was raving about it in interviews), finally saw it and what can I say? It was a total MESS! The directing is all over the place, the acting was atrocious, the flashy visuals and choreography were just flat, empty and completely unnecessary (whats up with the generic music video techniques like the fast-forward-slow mo nonsense? It was stylish yes but not needed in this film and cheapened the vibe into some dumb MTV Marilyn Manson/Smashing Pumpkins/Placebo music video). Whilst some of the kills are pretty cool and brutal, some are just ridiculously laughable (the first kill on the Japanese girl was hilarious and Ted Raimi's death was just stupidly funny). It just rushes all over the place with zero tension and suspense, totally moving away from the original story and then going back to it in the finale which by that point just feels tacked on to mess it up even more. No explanations were given whatsoever, I mean I knew what was happening only as i'd read the story but for people who hadn't it's even more confusing as at times even i didn't know where it was going and what it was trying to do- it was going on an insane tangent the whole time.<br /><br />God, I really wanted to like this film as i'm a huge fan of Barker's work and loved the story as it has immense potential for a cracking movie, hell I even enjoyed some of Kitamura's movies as fun romps but this film just reeked of amateurism and silliness from start to finish- I didn't care about anyone or anything, the whole thing was rushed and severely cut down from the actual source, turning it into something else entirely. Granted it was gory and Vinnie Jones played a superb badass, but everything else was all over the place, more than disappointing. Gutted\r\n0\tI feel like I've been had, the con is on, don't fall for it. After reading glowing reviews (the Director was a film reviewer with Sky for years so must have a lot of mates in the press ready to do him a favour by writing favorable reviews) I expected solid acting, atmosphere, suspense, strong characterization, an intriguing plot development and poetic moments. Sadly, 'Sixteen years of Alcohol', doesn't deliver on the critics promises, for the most part, sacrifices these qualities in lieu of cheesy low budget special effects (what was that clichéd cobweb scene in there for?), unrealistic fight choreography and mindless mind numbing narration, cliché edits and camera angles.<br /><br />'Sixteen years of Alcohol' starts off interestingly with some beautiful location shots in Scotland, but it's straight downhill from here. Unfortunately, instead of spending some time building atmosphere, creating characters we might care about, or building suspense - the director opts to begin driving you crazy with self indulgent heavy handed twaddle voice-over's. The lead characters are so unsympathetic and are so badly acted - the audience doesn't care what happens to them, desperate Actors do desperate things...like this movie!. To make matters worse, the 'homage's' (typical of a director trying to pay his dues to past masters) are either utterly cliché or unconvincing. The soundtrack is the only thing that lifted me and kept me in the cinema but even that failed to support the dramatic narrative other connecting a period of time to the action.<br /><br />For some reason the movie got increasingly flawed and to be quite honest annoying. I still watched the whole damn thing!<br /><br />I guess I liked the attempt at gritty realism in the film but even that was destroyed when they were often inter-cut with weird and abstract, sometimes pointless scenes. You don't need a huge budget to make truly moving film, so much has been said about how little money they had to make this film, half a million is not a little bit of money...SO NO EXCUSES! Sometimes I wonder what the actors...Or their agents were thinking!<br /><br />Pass on this turkey unless you're masochistic or mindless anyway....NOT MY THING<br /><br />1.5/10\r\n0\t\"I will give it a 3 just because it showed history that we need to know about, to prevent it from happening again. I agree with the comments from the gentleman from UK. The movie was pretty terrible. All cliché, no real plot. Historical and technical inaccuracies abound. Look up the technical specs on DE 529, or any Everts class Destroyer Escort, and you will see what I mean. I now its black history month in the US, and Im going to be called a racist just for saying this, but the history of this ship is not that great. They did some escort work, chased a \"\"submarine\"\" that turned out to be a hulk that they rammed. Sorry, but black people did a lot more in WWII then this silly movie gives them credit for. This movie makes them look like whiners. Let the name calling commence, I can handle it.\"\r\n1\tIt was only when I saw Napoleon Dynamite that I remembered seeing Cracker Bag. Just beautiful sentiment and yet never stooping to being soppy. There is some terrific cinematography and the lead girl is quite brilliant. It captures more than the nostalgia of the time. It has a real heart to it. It is the Achilles wound of childhood that is exquisite and painful. A simple story is always effective when done well. This Glendyn Ivin has a big future and I for one, am looking out for his next project. The follow up is always the most difficut thing. It's like the second album blues for most people. <br /><br />I just hope his next film is not something lame like a shark film. Cheers to all. Enjoy your cinema.\r\n1\tThe title of this film nearly put me off watching it. Not being a Manchester United fan, the mere mention of Beckham was a bit off putting, however I put my prejudices behind me and I'm glad I did.<br /><br />I wasn't expecting much of a film, but I was pleasantly surprised. The film sped along with me never looking at my watch and I enjoyed every second of the film. If you liked East is East then you'll love this film. OK so the storyline is nothing new, and the classic storylines are contained within the film but it's all done very funnily, and with a breath of fresh air. The film moves very fast and keeps the audiance entertained. The occaisional funny moments are a good chuckle and not some poor attempt at humour, and best of all it's a good british comedy.\r\n0\tSo that´s what I called a bad, bad film... Poor acting, poor directing, terrible writing!!!! I just can´t stop laughing at some scenes, because the story is meaningless!!! Don´t waste your time watching this film... Well, I must recognize it has one or two good ideas but it´s sooooo badly writen...\r\n1\tI must say, I was surprised with the quality of the movie. It was far better than I expected. Scenario and acting is quite good. The director made a good job as well. Although some scenes look a bit clumsy, it is a decent movie overall. The idea was definitely brilliant and the truth did not reveal itself till the very end. The mental hospital atmosphere was given quite good. The plot was clear, consistent and well thought. Some people may find it a bit boring though since the story line is very focused and they take their time for character and story development. Moral of the story, it is a decent movie for its genre and it is astonishingly good.\r\n0\t\"Gregory Peck's acting was excellent, as one would expect, and the cinematography quite stunning even when playing directly into some melodramatic \"\"moment.\"\" But, the rest of the film was overacted and hard to watch, for me anyway. I tried to like it, but had to fast-forward through the last thirty minutes or so. I feel I wasted a couple of good hours. Had it not been for Gregory Peck, I wouldn't have lasted fifteen minutes. 4/10.\"\r\n1\t\"Damn, I've seen this movie for at least 4 times now and I still don't get bored watching it.<br /><br />The visuals are so good and together with the music which is totally awesome and perfect fitting this movie is mind-blowing to me.<br /><br />The CGIs are quite bad IMHO, but the whole visuals with the black and white feeling about it and the totally sterile interiors were just... Just a genius perfect combination for such a movie. The whole feeling about the feeling is indescribable, the plot is so good.<br /><br />However although, the movie had little flaws, like e.g. sometimes I thought the movie was a bit too \"\"slow\"\", but I don't mean the scenic parts by that, I totally loved those.<br /><br />Also I got distracted very often by the totally complex story, like when he is in the underground bunker-like thing of digicorps, where all their data is saved, and has this conversation with the guy down there... but that may also just be me :D And the end could have been displayed somehow more emphasized, they should have made the getting-back-true-memory-part a bit longer and \"\"louder\"\" but then again without all these flaws the movie would have been so good i would have never stopped watching it again and again...\"\r\n0\tIt's terrific when a funny movie doesn't make smile you. What a pity!! This film is very boring and so long. It's simply painfull. The story is staggering without goal and no fun.<br /><br />You feel better when it's finished.\r\n0\tThis sequel is a total rehash of the first film. A completely pointless movie. It basically just took every single sceanrio of the first film and they redid it in Omen IV except with a female antichrist this time. It even ends the same way as the first one! The music is too busy and interfering, and because its pretty much a copy of Omen I, it's extremely predictable. It's not a horrible movie, it's not terribly made, there is much worse movies out there, this just had absolutely no point in being made. The Omen remake from 2006 is much worse, even more pointless than this, so I guess it has that. If you someone pointed a gun to your head and you had to choose to watch this sequel or the 2006 reamke, I guess I'd choose this.\r\n0\tRichard Farnsworth is one of my favorite actors. He usually gives solid performances, such as in The Straight Story, and The Grey Fox. He also does fairly well here, but the rest of the film suffers from a low budget, poor writing, and so-so photography. The Miller-Movie formula gives it a 4. Richard gets a 5.\r\n0\tWell this just maybe the worst movie ever at least the worst movie i have ever seen. They have tried out these 666 child of Satan the anti Christ kinda movies about 1000 times and none of them is good and this just maybe the worst of them. They think that it's going to be better movie as more they use that fake blood. This movie doesn't have any idea in it, actors and filming is just terrible. Cant even make out that 10 line minium of this movie. Really nothing to tell about but that it's just horrible. How they can make movies like that in their right mind just can't understand that. This cant be a Hollywood movie, is it? Just don't go watch this use your money more wisely.\r\n0\t\"Belmondo is a tough cop. He goes after a big-time drug dealer (played by Henry Silva, normally a great villain - see \"\"Sharky's Machine\"\"; but here he is clearly dubbed, and because of that he lacks his usual charisma). He goes to the scuzziest places of Paris and Marseilles, asks for some names, beats up some people, gets the names, goes to more scuzzy places, asks for more names, beats up more people, etc. The whole movie is punch after punch after punch. It seems that the people who made it had no other ambition than to create the French equivalent of \"\"Dirty Harry\"\". Belmondo, who was 50 here, does perform some good stunts at the beginning; apart from those, \"\"Le Marginal\"\" is a violent, episodic, trite, shallow and forgettable cop movie. (*1/2)\"\r\n0\t\"Before seeing this movie, I would've said that I loved everything Kathy Bates has done. Now it's everything-minus-one. James Woods is pathetic...not his character, his acting. Someone should've told him that \"\"poor\"\" is not synonymous with dirty, nor ignorant, nor cliche. Ditto for Randy Quaid's stereotyping. The only redeeming feature is Henry Thomas, who isn't a strong enough actor to carry this sodden mess. If you enjoy the country, you'll enjoy the scenery. That's the best I can give it.<br /><br />I'm a serious fan of both independent and quirky films, but this is simply terrible.\"\r\n0\tOh Dear Lord, How on Earth was any part of this film ever approved by anyone? It reeks of cheese from start to finish, but it's not even good cheese. It's the scummiest, moldiest, most tasteless cheese there is, and I cannot believe there is anyone out there who actually, truly enjoyed it. Yes, if you saw it with a load of drunk/stoned buddies then some bits might be funny in a sad kind of way, but for the rest of the audience the only entertaining parts are when said group of buddies are throwing popcorn and abusive insults at each other and the screen. I watched it with an up-for-a-few-laughs guy, having had a few beers in preparation to chuckle away at the film's expected crapness. We got the crapness (plenty of it), but not the chuckles. It doesn't even qualify as a so-bad-it's-good movie. It's just plain bad. Very, very bad. Here's why (look away if you're spoilerphobic): The movie starts out with a guy beating another guy to death. OK, I was a few minutes late in so not sure why this was, but I think I grasped the 'this guy is a bit of a badass who you don't want to mess with' message behind the ingenious scene. Oh, and a guy witnesses it. So, we already have our ultra-evil bad guy, and wussy but cute (apparently) good guy. Cue Hero. Big Sam steps on the scene in the usual fashion, saving good guy in the usual inane way that only poor action films can accomplish, i.e. Hero is immune to bullets, everyone else falls over rather clumsily. Cue first plot hole. How the bloody hell did Sammy know where this guy was, or that he'd watched the murder. Perhaps this, and the answers to all my plot-hole related questions, was explained in the 2 minutes before I got into the cinema, but I doubt it. In fact, I'm going to stop poking holes in the plot right here, lest I turn the movie into something resembling swiss cheese (which we all know is good cheese). So, the 'plot' (a very generous word to use). Good guy must get to LA, evil guy would rather he didn't, Hero Sam stands between the two. Cue scenery for the next vomit-inducing hour - the passenger plane. As I said, no more poking at plot holes, I'll just leave it there. Passenger plane. Next, the vital ingredient up until now missing from this gem of a movie, and what makes it everything it is - Snakes. Yay! Oh, pause. First we have the introduction to all the obligatory characters that a lame movie must have. Hot, horny couple (see if you can guess how they die), dead-before-any-snakes-even-appear British guy (those pesky Brits, eh?), cute kids, and Jo Brand. For all you Americans that's an English comic famous for her size and unattractiveness. Now that we've met the cast, let's watch all of them die (except of course the cute kids). Don't expect anything original, it's just snake bites on various and ever-increasingly hilarious (really not) parts of the body. Use your imagination, since the film-makers obviously didn't use theirs.<br /><br />So, that's most of the film wrapped up, so now for the best bit, the ending. As expected, everything is just so happy as the plane lands that everyone in sight starts sucking face. Yep, Ice-cool Sammy included. But wait, we're not all off the plane yet! The last guy to get off is good guy, but just as he does he gets bitten by a (you guessed it) snake (of all things). Clearly this one had been hiding in Mr. Jackson's hair the whole time, since it somehow managed to resist the air pressure trick that the good old hero had employed a few minutes earlier, despite the 200ft constrictor (the one that ate that pesky British bugger) being unable to. So, Sam shoots him and the snake in one fell swoop. At this point I prayed that the movie was about to make a much-needed U-turn and reveal that all along the hero was actually a traitor of some sort. But no. In a kind of icing on the cake way (but with stale cheese, remember), it is revealed that the climax of the film was involving a bullet proof vest. How anyone can think that an audience 10 years ago, let alone in 2006 would be impressed by their ingenuity is beyond me, but it did well in summing up the film.<br /><br />Actually, we're not quite done yet. After everyone has sucked face (Uncle Sam with leading actress, good guy with Tiffany, token Black guy with token White girl, and the hot couple in a heart warming bout of necrophilia), it's time for good guy and hero to get it on....In Bali!!! Nope, it wasn't at all exciting, the exclamation marks were just there to represent my utter joy at seeing the credits roll. Yes, the final shot of the film is a celebratory surfing trip to convey the message that a bit of male bonding has occurred, and a chance for any morons that actually enjoyed the movie to whoop a few times. That's it. This is the first time I've ever posted a movie review, but I felt so strongly that somebody must speak out against this scourge of cinematography. If you like planes, snakes, Samuel L.Jackson, air hostesses, bad guys, surfing, dogs in bags or English people, then please, please don't see this movie. It will pollute your opinion of all of the above so far that you'll never want to come into contact with any of them ever again. Go see United 93 instead. THAT was good.\r\n0\tI too was intrigued by the high (8.5) rating for this film, and was very disappointed. I had just seen a couple of good foreign films and was looking forward to making it three in a row, but it was not to be. I went with a spanish speaking friend who felt the same way. There is not much of a plot, if any. I don't necessarily need that in a movie, but it needs to somehow entertain or bring me in. The best I could say would be that it aspires to be an Altman-esque film, albeit with an extremely small ensemble. Sure, there are moments, but a few moments easily get thinned out by 97 slow minutes of nothing. I do not understand the high rating for this film. I give it a 3.<br /><br />\r\n0\t\"I've read a few books about Bonnie and Clyde, and this is definitely MORE accurate than the Beatty/Dunaway version, in that its costumes and locales echo actual photographs taken of the gang. Particularly well done is the death of Buck Barrow, and the capture of his wife Blanche. This actress looks looks exactly like the photographs taken that day of Blanche grieving over her dying husband. However, this movie is still Hollywood, and our anti-heroes stay pretty to the end, even after being shot full of holes (in life, Bonnie was badly burned in an auto accident the year before their famous ambush, and did not look like a perky cheerleader at the time of her death). The script is tedious, and the acting is poor, particularly the leads. Very disappointing. Stick with Beatty and Dunaway. Their's may not be \"\"the true story,\"\" but it's a great film.\"\r\n1\tThis early version of the tale 'The Student of Prague' was made in Germany in 1913, starring Paul Wegener (who was also in 'The Golem' a few years later). In this film he plays a dual role (technically impressive for a 95 year old film to see them in the same shot) after meeting a mysterious old man who makes a pact with him for gold - the gold he needs to woo a countess he's previously saved from drowning.<br /><br />Moving at a fast pace (the film runs just over an hour) and fairly well written and characterised, 'The Student of Prague' has echoes of the Faust legend as well as Dr Jekyll and Mr Hyde, starting as it does with a pact with a mysterious figure of potential evil, and developing into good and evil sides of the same person.\r\n1\thi, im scott (A.K.A woody7739) i Love the film Twisted Desire, And i love watching Melissa Joan Hart on the t.v as i think she is fine. I am a real fan of sabrina the teenage witch too, so this helped my watch it (don't ask). i love the way that nicole plans out her parents murder very carfully, as she makes sure that someone else pulls the trigger and practices on the bottles, so she wont give away her fingerprints (a very well planned out idea), back i guess it all backfired on nicole as she got caught as her old boyfriend comes along and puts a hidden camera under his shirt. i give this film a nine out of ten, and put it in MY top 10 films list. And last but not least if anyone see's this film in the shops please tell me as i seen it on tv and didn't record it. bye\r\n1\t\"This is definitely an appropriate update for the original, except that \"\"party on the left is now party on the right.\"\" Like the original, this movie rails against a federal government which oversteps its bounds with regards to personal liberty. It is a warning of how tenuous our political liberties are in an era of an over-zealous, and over-powerful federal government. Kowalski serves as a metaphor for Waco and Ruby Ridge, where the US government, with the cooperation of the mainstream media, threw around words like \"\"white supremacist\"\" and \"\"right wing extremists as well as trumped-up drug charges to abridge the most fundamental of its' citizens rights, with the willing acquiescence of the general populace. That message is so non-PC, I am stunned that this film could be made - at least not without bringing the Federal government via the IRS down on the makers like they did to Juanita Broderick, Katherine Prudhomme, the Western Journalism Center, and countless others who dared to speak out. \"\"Live Free or Die\"\" is the motto on Jason Priestly's hat as he brilliantly portrays \"\"the voice,\"\" and that sums up the dangerous (to some) message of this film.<br /><br />\"\r\n1\t\"I once lived with a roommate who attempted suicide, and our apartment was in a building where you could get a fifty dollar noise violation for sneezing after midnight - so, needless to say, I can easily relate to Polanski's \"\"The Tenant.\"\" <br /><br />But I also enjoy the film for other reasons. I'm not sure that it works, on the whole - the Polanski character's descent into paranoia and madness, which takes up the final half hour or so, seems rather jarring and bizarre. Ebert, for one, was totally unconvinced, and he slapped the movie with a vicious one-star review. But I think that individual scenes and moments work beautifully, so even though I don't quite understand the whole film - what does Egyptology have to do with it, for example? - I still have an overall positive impression of it.<br /><br />I love the obnoxious friend portrayed by Bernard Fresson, for example. God, how many times have I settled for having stupid friends like that instead of no friends at all! I love the movie theater scene - the funniest \"\"making out\"\" moment in the history of film, I'd say. And boy, do I love Isabelle Adjani - she's so foxy in this movie, it's almost unbelievable. And she gives a great performance, as always.<br /><br />Polanski is a good actor, too; I don't agree with the occasional disparaging remarks made about his performance here. His character is supposed to be low-key and thoughtful, so his low-key performance fits. I, for one, found him perfectly sympathetic - though he did lose me a bit when he started dressed in drag for no clearly discernible reason.<br /><br />Yes, the movie's obscure. And slow. But it captures the alienating qualities of apartment living - something I've done entirely too much of - so I dig it. It's funny how all you need is a common reference point, and suddenly a weirdo movie like this becomes deeply significant! Definitely worth picking up for pocket change on DVD.\"\r\n1\tI found the film quite expressive , the way the main character was lost but at the same much more clear about certain things in life than people who mocked him ( his flatmate for example ) .<br /><br />he was tortured and you loved to watch him being tortured ! it had this perverted side which was frightening but we were all happy to see him come out of the misery again .<br /><br />it was like a game character or pan-man through a mine-land or to enemy and we love to watch him under sniper attack or fire but then at the end we are happy to see him survive ... <br /><br />.\r\n1\tThis movie is among my favorite foreign films, some of the others are Amilee and My Life As a Dog. The similarities with those movies as with so many great foreign films, is that it takes a mundane slice of life and transforms it into a profound heartfelt lesson. <br /><br />In Japan, a man who is bored with his mundane life and the rut of his married life, sees a beautiful Japanese woman staring out the window of a dance studio. In the instant that it takes his train to pass, he is enthralled by her. But is it only by her beauty, by her faraway glance, or a connection that they will both discover that they share? <br /><br />Shall We Dance has memorable wonderful characters who have to deal with painful realities by transcending them through the world of dance. Breaking traditional moulds and stereo types of Japanese society, they risk all for happiness and find that joy is not too far away. It is one of those movies that is so magical and meaningful and, in itself, transcends the mundane by showing the true magic and miracle that life can be.\r\n1\t\"In this movie the year 2022 looks much like the seventies. This is amusing at first, but soon the viewer perceives how very different that decadent futuristic world is despite the appearances, how many things that we take for granted could become unavailable.<br /><br />Characters often interact in a peculiar way, with no tact or manners or respect. I believe this is intentional, not bad acting. After all, who witnessed the social changes in the 60s and 70s may well assume that by 2022 an overpopulated city's inhabitants behave like that.<br /><br />I didn't like most of the action scenes, apart the death of the priest: too cheap even for the seventies. The plot isn't too polished. But the great scenes and ideas - like the death of Sol, the way rioters and dead bodies are dealt with, the \"\"furniture\"\" - outweigh the shortcomings of this film.<br /><br />8 out of 10.\"\r\n0\t\"In his 1966 film \"\"Blow Up\"\", Antonioni had his hero question truth against a backdrop of British youth protesters. By setting such questions against a fabric of hippie youth movements, Antonioni questioned, intentionally or not, the effectiveness of these organisations. How can you fight for a cause when what you think is true may actually be a lie? On the flip side, the film said that we must fight and actively challenge what we see precisely because others may be deceiving us with false images and false truths. Though the hippie aspects were the most tacky parts of \"\"Blow Up\"\", they created a nice texture and gave the film more meaning than it might otherwise have had. It was a very cautionary and mature little film.<br /><br />With \"\"Zabriskie Point\"\" Antonioni throws away all the ambiguities and subtleties of \"\"Blow Up\"\" and goes full blown hippie. The result is a film awash with bad metaphors, stupid ideas and heavy handed storytelling. How could somebody, who across his career displayed such restraint and intelligence, make something so silly? <br /><br />The film opens with a nice series of close ups, as we watch a group of radicals discussing the meaning of revolution. Suddenly one man (Mark) gets up and leaves. He hates the rigid and ordered nature of revolution. He recognises that, though revolutionaries fight for freedom, to bind oneself to such a militant cause is to effectively give your freedom away. And so like Jack Nicholson in \"\"The Passenger\"\", Mark just wants to be free.<br /><br />As such, Mark buys a gun and goes solo. He takes orders from no one. When police raid his university campus Mark shoots a guy and runs away. He then flees to a nearby airfield, steals a small private plane and flies out to the desert. Antonioni treats the desert as a peaceful utopia, and contrasts it with the ruthlessly capitalist cities, with their billboards and hollow modern appliances. He sees the desert as a sort of Garden of Eden.<br /><br />In the desert, Mark meets Daria and quickly falls in love. Antonioni then gives us a ridiculous sex scene in which hundreds of hippies have sex in the sand. Free from the constraints of modern life, these tree-huggers and student radicals can now celebrate their individualism by humping in the sun.<br /><br />The film ends with Mark dying and Daria fantasising about blowing up the mansions and stately homes of the rich capitalists who killed him. It's Antonioni's challenge to his audience. Pick up the guns, pickets and explosives, he says. Tear the walls down before they cage you in!<br /><br />Of course the film had no effect on its audience. They recognised \"\"Zabriskie Point\"\" as being just another self centred commercial attempt at being radical. A sort of commodified radicalism. It felt untruthful and tame.<br /><br />Thematically the film is pretty stupid. Antonioni basically says that if you are unhappy with the modern world, and the fat cats who exploit you, you should either flee to the desert (Mark) or actively fight the system (Daria). That's all well and good. But though artists constantly warn us of such dystopian nightmares, they're all mostly unable to show us how to effectively administer change. Like the end of \"\"Fight Club\"\", nihilism and violence achieve nothing. In the real world, social change tends to be instigated by humble inventors, spurred ahead by minor technological advancements. I mean, what liberated women more than contraceptives?<br /><br />3/10 - A very bad film. The problem is, Antonioni does not really believe in rebellion. He is a quiet and contemplative man. An introvert who seems to have made an extroverted film simply to garner more adoration from the counterculture who embraced his earlier film, \"\"Blow Up\"\". As such, \"\"Zabrinskie Point\"\" comes across as a very pretentious and stupid film. It's essentially a 50 year old man say \"\"Look at me, I'm a daring rebel!\"\"<br /><br />There are many films in which the audience is encouraged to fight \"\"the system\"\", but they all fall into one of four categories. In the first category you have films like \"\"Network\"\", \"\"Cool Hand Luke\"\", \"\"Cuckoo's Nest\"\" and \"\"Spartacus\"\". These all show that the lives of freedom fighters all end in failure, though in each case the \"\"spirit of revolution\"\" survives. The message is that you can not effect change, but by dying or failing, the optimistic notion of change survives through martyrdom. Essentially we must keep on failing rather than give up hope.<br /><br />Then you have films like \"\"Fight Club\"\", \"\"Zabriskie Point\"\" and \"\"Falling Down\"\", which simply encourage you to explode. Tear it all down. Blow it all up. Everything is a lie, so you might as well go out guns blazing. These films are borne out of angry, reactionary feelings, rather than any sort of common sense.<br /><br />Then you have the \"\"flight rather than fight\"\" category. Terrence Malick and Antonioni are the masters of this genre. Films like \"\"The Passenger\"\", \"\"Red Desert\"\" and \"\"Badlands\"\" show human beings running from worlds they do not like and forging islands or peaceful havens for themselves. Both directors are pessimists, in that Malick has his islands destroyed and Antonioni has his islands offering no sense of happiness or solution.<br /><br />Then you have the fourth category. Films like Donnersmarck's \"\"The Lives of Others\"\", Ashby's \"\"Bound For Glory\"\" and Kubrick's \"\"A Clockwork Orange\"\", treat artists as a force of change and rebellion. In these dystopian worlds, in which everyone is content to be a slave to the state, it is the unbridled creativity and freedom of will of the artist/criminal who keeps the system in check. By simply existing outside of the herd, you create waves. Your comments, actions and critical eye, challenges the status quo. As such, Donnersmarck's film has novelists and artists undermining Nazi Germany, whilst Kubrick has Alex the artist/criminal fighting Nazi droogs, painting the town in blood and sperm.\"\r\n1\t\"Greetings again from the darkness. Remember all the \"\"What happened to Woody Allen?\"\" jokes? Even Mr. Allen poked fun at the fans who wanted him to continue making his same \"\"funny\"\" films. As with any great artist, Mr. Allen's craft evolved over the years and he lost some fans, while picking up others. Last year's masterpiece \"\"Matchpoint\"\" showed he is still every bit as relevant and poignant as he was in the days of \"\"Annie Hall\"\" and \"\"Manhattan\"\". What is most striking to us 40 plus year fans is that Mr. New York himself seems to have a bit of a crush on the mother country. Apparently he actually likes England!! While filming \"\"Matchpoint\"\", Mr. Allen became enamored with Scarlett Johansson and her real life spirit and sense of humor. This attraction motivated him to write his best comedy in years. Scarlett, while risking overexposure, must be given credit for not just picking films that cast her in some glamorous light. She is unafraid to look and act like a real person. In \"\"Scoop\"\", she flashes some real on screen comedy chops and, in many scenes, delivers the real punchline to Mr. Allen's straight man. Of course, any time Mr. Allen decides to put himself in front of the camera, he will get more than his share of one liners and social commentaries in - which is fine, because few do it better.<br /><br />Very nice support work from Ian McShane and Hugh Jackman. In fact, Mr. Jackman provides a few glimpses into why many of us thought him the best choice to replace Brosnan as the new Bond. As with most of Allen's films, the star is the script, not the actors. Although Scarlett delivers superbly here and is a nice contrast to the polished Allen and Jackman, what makes this one crackle is the dialogue ... especially the banter between Allen and Scarlett. If you are not a huge Woody the actor fan, fear not. He does limit his screen time and he is quite effective, except in two or three brief scenes that almost seem out of place. Another Woodman tradition is a sparkling musical background and \"\"Scoop\"\" is no exception ... especially the Strauss composition.<br /><br />\"\"Scoop\"\" is a nice cross between \"\"Annie Hall\"\" and the best of the Marx Brothers films or the Cary Grant comedies. Yes it is an adult comedy, but it is actually very cute ... especially for a serial killer and talking ghost comedy!!\"\r\n0\tThe film is worth watching only if you stop it after half an hour. It starts of with funny conversations in a bar and makes one expect a good, funny story is to come. Well, I can tell you it will not come. It will deteriorate in minutes into a movie that challenges your patience as well as your feelings of shame for the actors to an extend you will probably not be pleased to witness. <br /><br />In an interview I heard that the director wanted to express in this film the feeling of a loss of identity that, according to him, the majority of the people in this globalizing world experience. I was amazed to hear that. Am I living in the same world he lives in? OK a lot of people do walk around in the same clothes as mine and listen to the same music and all, but that doesn't make me feel like I am losing my identity. What does Khrzhanosvky think, that we are not more than the clothes we wear and the movies we watch? Am I shortsighted or is he?<br /><br />Well my vote: the good start of the movie saves it from getting a 1, a decent 4 is my conclusion.\r\n0\tThis movie is so bad it's good -- in an unintentionally funny way. I couldn't stop watching it, I was laughing so much! It's like a parody of a romantic thriller, except it's not a parody. <br /><br />Alexandra Paul plays Emily Wendell, an oppressed preacher's wife who falls hard for Luke (Corey Sevier), a hunky and mysterious drifter who we eventually learn was in prison; the only thing Sevier is guilty of, though, is bad acting! Mind you, he's no worse than the other actors. You get the sense that the actors have *no* idea they're in a really awful film; they're playing it straight. Everything about the film is bad: the acting, the script, the love scenes, the pacing, the plot twists, the choice of music. The climactic scenes are just so ludicrous -- first the shootout in the church, then Luke's final words to Emily -- I was howling with laughter. <br /><br />Evidently Luke did a lot of weight lifting and ab crunches in prison, and we get to see plenty of his naked torso. That's probably the highlight of the film.\r\n1\tI've never been a fan of Farrah Fawcett...Until now. She was truly amazing in this movie. The emotion she must have gone through shooting re-take after re-take doesn't bare thinking about. This was a very hard movie to watch, the subject matter is decidedly unpleasant and you feel so helpless just sitting and watching a woman being abused for what seems like an eternity. I actually felt that the whole thing deflated somewhat when her friends returned to the house and I didn't find the conclusion at all plausible. The director seemed very keen in using height in his shots and loved using mirror reflections, I believe he should have paid more attention to the pace in the second half of this piece. I'm sure this makes a heck of a powerful piece of theatre, this movie for me, although it had merit, just fell short.\r\n1\tThe real story (took place in Kansas in 1959) of a murder (Perry and Dick, two ex-convicts who broke into a remote house on a rainy night to steal and kill everyone they met). Richard Brooks directed the chilling and disturbing Capote's book about the reasons that drove these kids to the crime (Are they Natural Born Killers ?). The crime scenes are very brutal and haunting because of the lack of senses and reasons for what we witnessed. Stunning black & white cinematography from Conrand Hall, excellent country - road music score from Quincy Jones, amazing performances in two principal roles from Robert Blake and Scott Wilson and first time in a movie a sad comment about capital punishment at the last moments before their deaths. Jones, Hall and Brooks (as director and as writer for adapted screenplay) are Academy Award nominees. Gripping, superbly directed and frightening, one of the best films of this decade\r\n1\t\"A strangely enjoyable effort, combining an appropriately far-fetched plot involving Adam and Burt and flashbacks to the original TV series. Most of the flashback scenes were lifted directly from Burt Ward's book \"\"Boy Wonder: My Life in Tights\"\" and I imagine his book was the inspiration for making this movie. Like the book, it left fans of the original series hungering for more.<br /><br /> If you missed this broadcast, it is definitely worth the effort to borrow a tape from a friend who may have recorded it. I'm making a copy for my kids right now.\"\r\n0\tThis su*k! Why do they have to make movies that they must know su*k from the beginning? I mean, look at Alien from 1977. If the movie you´r about to make is not better than anything made billions of years before, why make it? I had problems with the plot and who the main character was. That's not good either.\r\n1\tHaving seen most of Ringo Lam's films, I can say that this is his best film to date, and the most unusual. It's a ancient china period piece cranked full of kick-ass martial arts, where the location of an underground lair full of traps and dungeons plays as big a part as any of the characters. The action is fantastic, the story is tense and entertaining, and the set design is truely memorable. Sadly, Burning Paradise has not been made available on DVD and vhs is next-to-impossible to get your mitts on, even if you near the second biggest china-town in North America (like I do). If you can find it, don't pass it up.\r\n1\t\"I thought this movie was very well put together. The voice-overs were also great. I liked how they all overcame their conflicts and reached their goals. I would recommend this movie to anyone. It was definitely worth the time and money to watch it. Atlantis has some comic scenes that made me laugh. Other scenes made me sad. And others made me glad. It is a movie any age can enjoy. From the moment Milo is the crazy \"\"profesor\"\" or until he gathers the crew up for the fantastic voyage under the sea. After I watched the movie, I read the book. It was good as well, but the movie puts better pictures in your mind. It is just like the book. But go ahead and watch this movie!\"\r\n0\t\"A sequel to (actually a remake of) Disney's 1996 live-action remake of 101 Dalmations. Cruella deVil (Glenn Close) is released from prison after being \"\"cured\"\" of her obsession with fur by a psychologist named Dr. Pavlov (ugh!). But the \"\"cure\"\" is broken when Cruella hears the toll of Big Ben, and she once again goes on a mad quest to make herself the perfect coat out of dalmation hides.<br /><br />This movie is bad on so many levels, starting with the fact that it's a \"\"Thanksgiving family schlock\"\" movie designed to suck every last available dime out of the Disney marketing machine. Glenn Close over-over-over-over-acts as Cruella. With all that she had to put up with in this movie -- the lame script, the endless makeup, getting baked in a cake at the end -- I hope they gave her an extremely-large paycheck.<br /><br />(Speaking of which, where in the world are you going to find a fur coat factory, a bakery with a Rube Goldberg assembly line, and a candlelight restaurant all located within the same building -- as you do in the climax of this film?) Of course, the real stars of the movie are supposed to be the dogs. They serve as the \"\"Macaulay Culkin's\"\" of this movie, pulling all the stupid \"\"Home Alone\"\" gags on the villains. (Biting them in the crotch, running over their hands with luggage carts, squirting them with icing, etc., etc., etc., ad nauseum.) I have to admit, the dogs were fairly good actors -- much better than the humans.<br /><br />Gerard Depardieu is completely wasted in this movie as a freaked-out French furrier. The two human \"\"dog lovers\"\" -- rehashed from the earlier film, but with different actors -- are completely boring. When they have a spaghetti dinner at an Italian restaurant, the movie cuts back and forth between the two lovers, and their dogs at home, watching the dinner scene from \"\"Lady and the Tramp.\"\" I thought to myself, \"\"Oh please, don't go there!\"\" I half-expected the humans to do a satire on the \"\"Lady and the Tramp\"\" dinner scene -- as Charlie Sheen did in \"\"Hot Shots: Part Deux\"\" -- doing the \"\"spaghetti strand kiss,\"\" pushing the meatball with his nose, etc.<br /><br />And don't get me started on the annoying parrot with Eric Idle's voice.<br /><br />The costumes were nominated for an Oscar, and the costumes in the movie *are* good. But they are the only good thing in the movie. The rest of it is unbearable dreck.\"\r\n0\tThe main aspect about the Superstar's movies at his later stages were the frequency, the lacuna between one movie and the next. Being a well established star of the south Indian cinema, the feedbacks he was receiving before Baba was great. <br /><br />Since Nattukku Oru Nallavan (1991), the number of movies he acted in Tamil as a mass Hero in 11 years were only 11 exactly at the rate of 1 per year. All of these were a great hit. He was having a image that many thought could not be easily brought down. <br /><br />But after Padayappa (1999), he went into a state of Hibernation. His fans all over the world, especially in South India were ready to see movie of any kind with their superstar in action. So, the Tamil cinema industry decided to come with Baba. <br /><br />The movie makers thought that the fans will take whatever they show with Superstar in it. But this clearly did not work out in this movie. As usual, the hype from the media and the expectation from the fans were way beyond limit. <br /><br />Rajinikanth's image was totally damaged. The fans went nuts. The movie's collection did not meet the expected level. Reputation of great people went down. <br /><br />The only positive aspect about this movie was the songs by A.R.Rehman. Rehman is known to have composed good music for some worst movies like Tajmahal, Kadal Virus, Alli Arjuna, Paarthale Paravasam, Star, En Swasa Katre, Vandicholai Chinnarasu etc. Well, i never thought that this movie would join that league.<br /><br />You'l feel very much depressed not because the movie was bad, it'l be because of the superstar's image going down. It took him five full years to regain it fully back with two movies Chandramukhi and Sivaji and give fans back what they really look for in a superstar film.\r\n1\t\"\"\"Mr. Harvey Lights a Candle\"\" is anchored by a brilliant performance by Timothy Spall.<br /><br />While we can predict that his titular morose, up tight teacher will have some sort of break down or catharsis based on some deep down secret from his past, how his emotions are unveiled is surprising. Spall's range of feelings conveyed is quite moving and more than he usually gets to portray as part of the Mike Leigh repertory.<br /><br />While an expected boring school bus trip has only been used for comic purposes, such as on \"\"The Simpsons,\"\" this central situation of a visit to Salisbury Cathedral in Rhidian Brook's script is well-contained and structured for dramatic purposes, and is almost formally divided into acts.<br /><br />We're introduced to the urban British range of racially and religiously diverse kids (with their uniforms I couldn't tell if this is a \"\"private\"\" or \"\"public\"\" school), as they gather  the rapping black kids, the serious South Asians and Muslims, the white bullies and mean girls  but conveyed quite naturally and individually. The young actors, some of whom I recognized from British TV such as \"\"Shameless,\"\" were exuberant in representing the usual range of junior high social pressures. Celia Imrie puts more warmth into the supervisor's role than the martinets she usually has to play.<br /><br />A break in the trip leads to a transformative crisis for some while others remain amusingly oblivious. We think, like the teacher portrayed by Ben Miles of \"\"Coupling,\"\" that we will be spoon fed a didactic lesson about religious tolerance, but it's much more about faith in people as well as God, which is why the BBC showed it in England at Easter time and BBC America showed it in the U.S. over Christmas.<br /><br />Nathalie Press, who was also so good in \"\"Summer of Love,\"\" has a key role in Mr. Harvey's redemption that could have been played for movie-of-the-week preaching, but is touching as they reach out to each other in an unexpected way (unfortunately I saw their intense scene interrupted by commercials).<br /><br />While it is a bit heavy-handed in several times pointedly calling this road trip \"\"a pilgrimage,\"\" this quiet film was the best evocation of \"\"good will towards men\"\" than I've seen in most holiday-themed TV movies.\"\r\n0\t\"In addition to his \"\"Tarzan\"\" series, the prolific Edgar Rice Burroughs did write many other books, although, aside from the popular \"\"At the Earth's Core\"\", few of these have been filmed. One exception is the novel entitled \"\"The Lad and the Lion\"\", brought to the screen as \"\"The Lion Man\"\" (1936), an over-talkative, static, old-hat, slow-moving and rather dull movie, despite being filmed on real desert locations. Actually \"\"movie\"\" is the wrong word. The narrative doesn't move but proceeds at a snail's pace in an abrupt series of jerks. For instance, at least five characters are given elaborate opening scenes and then just disappear. Even more frustrating for the keen movie fan, are the characters who make an impression of sorts (like the lass who plies Hall with drugged wine) but are enacted by players who are not credited! The credited thespians generally come off worse than the unknowns. One exception is Australian actress Finis Barton who gives a good account of the kidnapped harem girl who rescues young Master Fairy. Admittedly, most of the cast are saddled with atrocious King James dialogue which has to be heard to be believed! But the way to play this rubbish is tongue-in-cheek, a stratagem which does not seem to have occurred to a single one of the film's roster of no-talent players. Maybe director J.P. McCarthy scotched that idea. Anyway, it's sad to see the lovely Kathleen Burke forced to trade lines with the likes of Richard Carlyle (her dad) and Jon Hall (her suitor). Admittedly, Mr Hall delivers his lines with marginally more conviction than Mr Carlyle, but that is no recommendation.\"\r\n1\t\"I'd love to give Kolchak a higher rating but the show quickly went from scary/suspenseful to silly. ABC's fault. They moved the show to Friday nights at 8:00 p.m., then known as the \"\"family hour\"\". Never should have been on Fridays in the first place. I was a sophomore in high school and loved the early episodes! It was first up against Police Woman on NBC. ABC had huge problems with Friday nights. Bad season for them overall until Barney Miller, Baretta, and SWAT debuted in January of '75. Kolchak should have been a hit. Darren McGavin begged to get out of his contract to end the show. Too bad the writing wasn't up to Richard Matheson's in the original TV movies. Still, McGavin made Kolchak his own, as actors can do. Jackie Gleason as Ralph Kramden and Caroll O'Connor as Archie Bunker come to mind. That INS set with the manual typewriters and clacking teletypes seems quaint and ancient today, yet that was part of the appeal. They were very lucky to have Simon Oakland reprise \"\"Vincenzo\"\" from the TV films.\"\r\n1\t\"Super-slick entertainment with a stellar cast, an outstanding script, and a firm grip on the approaching 1950's. At the time, RKO was turning out classic noirs by the dozens. But whatever the value of those shadowy downers, they reflected a war-time mood soon to give way the sunnier climes of the Eisenhower era. Few films of the late-40's are further from that noir cycle or more attuned to the coming consumer decade than this sassy little comedy.<br /><br />Jim Blandings (Cary Grant) works as an ad-man on Madison Ave. where in his little daughter's words-- he sells things to people that they don't need, at prices they can't afford. He's making good money, but like thousands of others, he's tired of living in a cramped urban \"\"cave\"\". So, with wife Myrnah Loy, they strike out after their dream house in the wilds of the Connecticutt countryside. Needless to say, in the arms of nature, they get more than they bargained for and in hilarious fashion.<br /><br />There's hardly a lifeless line in the entire script. I don't know if writers Panama and Frank got an Oscar, but they should have. Of course, the humor revolves around all the problems that pop-up when city people build a big house on rural land. The annoyances pile up almost as fast as the mortgage, with all the eccentric types running the construction show and giving Grant a hard time. Of course, no one carries off annoyance or frustration more humorously than Grant, so it's just one well-placed laugh after another, particularly when the locked closet appears to have an infernal mind of its own. Yet, oddly, the film appears to have no comedic high-point. Instead the laughs are spaced out so expertly that they don't peak at any particular point. That's a real movie triumph for any era.<br /><br />Reaching back 60 years later, we can see how deftly the script ideas look ahead rather than behind. With their live-in maid, the Blandings may not be a typical American family, but that post-war migration from cramped cities to spacious suburbia was typical. And what more suggestive job for the coming consumerism than Blandings as an \"\"ad-man\"\" tasked with finding catchier ways to sell more \"\"ham\"\". More than anything, however, there's the movie's sunny optimism. Oh sure, the feeling falters at times, yet the belief that a better future is on the horizon if the Blandings just stick to their dream carries them through. Indeed, life was going to improve for a lot of people during the coming surge, so I expect the film resonated deeply with audiences of the day. It's that easily over-looked subtext, along with the sheer entertainment value, that makes this movie a key comedy statement of the post-war period.<br /><br />So, if you haven't seen it, catch it next time around.\"\r\n0\t\"Hallam Foe tells us the story about a boy who lost his mother and experiences some sort of Oedepus complex afterward.<br /><br />It is something like 95 minutes long but would be better in ten. There's like an hour in the middle where he is doing climbing practice on rooftops, and habits in a church tower like Quasimodo (only he is much less sympathetic).<br /><br />There's a strange love story involved which doesn't have anything to do with anything. She happens to look like his mother, yes so what? We know he misses his mother, that's what the first ten minutes were about. They should just have put the beginning and ending together and it would have been a O.K. short film. Now it's a portrait of a character who doesn't change. He is a guy that stuff happens to. The only active choice he has in the whole middle of the movie is to apply for a job.<br /><br />There's this whole Oedepus thing going on which is supposed to make us analyze his character. He paints his face, dresses in women's clothing and wears a dead Badger on his head. A Badger! You've got to see the ending! He returns to his home with the badger on his head (and it is shot like a tacky Horror film) to kill his dad's new wife (which he had sex with in the beginning). And somehow they thought this wouldn't be entertaining enough so they put some indie punk music in the background. I've got to admit though, I'm kind of allergic to films that want to write a psychological complex on your nose. It feels like this MacKenzie director/guy/whatever is trying to show us that he also has been studying psychology in school. You are so smart! Thank you for bringing all these forgotten theories back into our memories! You really dug! What a Wallraff! Okay so now I realized this film is based on some random book, but anyway..<br /><br />Photowise it is boring. A lot of talking heads. Plus the editor has changed the colors from scene to scene, you know cold and warm etc.. why? maybe \"\"Hallam Foe\"\" is both a feature and a test film for color blind people. Or maybe they just thought that the drama wouldn't be enough to tell us that he feels lonely, so they increased blue so that we really get it.<br /><br />I'm not even gonna comment on the cliché indie-oh-how-how-how-cute drawings they have made in the presentation. And all the \"\"cute\"\" sex stuff going on. This whole film is an independent cliché. But I do recommend it. I laughed more than a few times. Though it is really annoying to be a film student and to see how crap like this gets through the machine.\"\r\n1\tIf there is a movie to be called perfect then this is it. So bad it wasn't intended to be that way. But superb anyway... Go find it somewhere. Whatever you do... Do not miss it!!!\r\n0\t\"What an incomprehensible mess of a movie. Something about a cop who extracts bullets from himself after he gets shot and keeps them in a glass jar in his bathroom (and from the size of the jar he's been shot about fifty times by now) and a top secret tank guarded by five or six incompetent soldiers who for some reason drive it into Mexico. Whether they were sent there intentionally or just got really really lost is never made clear. And you'll never hear another screenplay feature the word \"\"butthorn\"\" either. Gary Busey tries out the Mel Gibson role from \"\"Lethal Weapon\"\" and while Busey is a serviceable actor the screenplay damns the whole movie to mediocrity. William Smith does another turn as a Russian soldier, the same character he played in \"\"Red Dawn\"\" a few years earlier. After playing biker heavies for most of the 70s it was sort of nice to see him expand his range playing Communist heavies. Sadly he'll probably always be remembered best as the guy who Clint Eastwood whupped in \"\"Every Which Way You Can.\"\"\"\r\n0\t\"What's in here ?! Let me tell you. It's the presence of (Alec Baldwin). He's not a great actor but maybe a nice star with some good movies which this is not one of them. He did nothing here more than anything he did before or after. So not to mention (literally !) the matter of (Steve McQueen) being at the same role in the original because I don't want to make that comparison in the first place. I'm not a big fan or even a fan of (Kim Basinger), she got a lot of bad movies on her and even at her best she looks average ! And it gets on my nerve indeed whenever they talk about her seductive rare beauty !!?? Well, if being a blond would make anyone captivating then I'll dye my hair in yellow as soon as possible ! And what is it with all the craziness over miss Basinger's Legs ??!! It's surely insanity or bad tasting ? As I don't see them both as not sexy only, but UGLY too ! And if you hate that so shoot me down but you know what ?! I've just watched this movie so I'm dead already !. Yet, what would make you really suffer in unbearable way is that nothing of the credits goes to the one she deserves the mostAnd of course I mean (Jennifer Tilly)..Now we're talking about a true genuine seductive chick with such unforgettable body and one unique sense of allurement like a nasty brunette (Marilyn Monroe) however much more healthier !! (I can't help it, she was the only new and watchable thing in here !). (Michael Madsen) as the bad guy was much appealing as well as effective more than the good guys, (James Woods) is here to summarize the early events beside the pool (so the trailer would be by his voice later !) and he knew before all that this is a whole Hollywood's stuff so \"\"Do your thing, take your cash, and good luck as an actor in other movies !\"\", the editing gave the movie a serious personality along with violent atmosphere done by suitable shining cinematography, so the main goods of it (The action, The thrill, ..) are here and fairly well-made, though any echo for deep meanings about (the kinds of betrayal) as the main dramatic motif of the whole thing is not that strong so don't wait for it. OK, it's all in all another remake without anything special (Except Jennifer Tilly's spicy moments !) so I think I tried to be objective as much as I could therefore I shouldn't end my review saying that (Basinger) or anyone here did better than this movie.. It would be an insult because frankly.. Anything is better than this movie!\"\r\n0\tLucy Alexis Liu and Cillian Murphy are both excellent actors, who can certainly rise to any acting challenge put to them.<br /><br />Unfortunately 'Watching the Detectives (2007)' offers only one to both actors and audience alike: not to fall asleep during a mind-numbingly boring, very predictable and unimaginative story.<br /><br />'Watching the Detectives (2007)' tries very hard to be funny, but the comedy is forced, extremely poorly directed and embarrassing to the verge of complete ridicule.<br /><br />After a third of the film still nothing that may capture even the most willing audience, like the director's friends and relatives, is even hinted at, not to mention actually happening.<br /><br />I'm pretty sure everybody who liked it faked it or had to fake it like Neil's ex-girlfriend did when he showed her an old B&W film she couldn't care less about. 'Watching the Detectives (2007)' is nowhere near category B, it falls somewhere between Q & R, like -Questions? and -Repress the questions! The director knows what he's doing! Well, if his goal was to bore the viewer to death, he has done a very good job!<br /><br />'Watching the Detectives (2007)' was a complete waste of time for Lucy Alexis Liu and Cillian Murphy, bur PLEASE don't let it be a waste of your time!<br /><br />Rating: 0 out of 100.\r\n1\tAfter realizing what is going on around us ... in the news .. in our homes .. the whole new world .. I remembered this show and how obsessed I was watching it every week (in my town) ..<br /><br />I started looking for this series .. 3 days ago .. didn;t have luck till this moment .. and I was shocked when I read about it and about CBS ..<br /><br />People, I believe they stopped the show because it's talking about something way ahead of our understanding of the new world ... it was trying to deliver a hidden message about something terrifying ..<br /><br />The people who stopped it are the same who are controlling the world Now .. I remember in one of the episodes it was talking about the ONE dollar and the pyramid with the one eye ...\r\n0\t\"Dear me. Where do I start? The dad isn't anywhere near old enough to be the girl's dad. He corpses on camera in the first 5 minutes of the film. The favoured exclamation in this film is \"\"Jesus Christ!!!\"\". Zombies are agile, stupid and few and far between. Motives are utterly incomprehensible and a narrative does not exist. People 'rush' to their destination in jeeps driven at 3 MPH. The world seems to be carrying on as normal yet these are supposed to be the end days. Breasts appear for the sake of breasts. Normally such an approach would provide some redemption but the rest of the film actually made me uninterested in breasts or the future of humanity. There's a dog for no reason and thin, orange blood that turns the stomach. The General and his catchphrase of \"\"Shut the f**k up!\"\" is the only redeeming feature. As for the rest, I sincerely hope to hear that they had done the decent thing and killed themselves.\"\r\n0\tSometimes a movie is so comprehensively awful it has a destructive effect on your morale. You begin to really ask yourself, what does it mean for our society that the standard is so terribly low? Can they honestly expect that we'll endure this many clichés and still be entertained?<br /><br />Of course, it is still a Hollywood mainstay to make the GUN the major character, plot device, and the source of all conflict and resolution in films. Character needs a gun. Gets a gun. Can't do that because he has a gun. Puts his gun down first. OH MY GOD What are we going to do!? He has a gun! He waves it around, acting more malicious than real human beings ever do. He pushes it in someone's face for 90 minutes, shouting questions. The hallmark of any conclusion will be the comforting sound of police sirens. <br /><br />It's a real challenge to make such a tired, hackneyed formula work again; a film has to be very clever and well executed. This one is neither. It has no life and no personality, and it will suck these components from YOU. it will make you feel WORSE about living in the time and space that you do. Really, who needs that!? So yes, I'll say it: I think this may well be the worst film I have ever seen. Anyone who was involved in the making of this sub- mediocre soul killing trash should be publicly embarrassed for the disservice they've done to us all.\r\n0\t\"Terrible film made on a budget of about $9.99. Very obvious miniature sets used, poor acting and an awful storyline concerning aliens who use discarded meat from a butcher shop as fuel for their spaceship. The film contains some blood (not enough to disturb) and a character with an eggbeater replacing one of his hands. (Yes you read that correctly.)<br /><br />One saving grace was a song performed at the \"\"talent show\"\" (how's that for irony?) by a punk/new wave band that I think was called \"\"I'm A Heat Seeking Missile\"\". Other than that, this is not worth your time, not even on a \"\"so bad it's good\"\" level. Watch if you are into cheesy alien films, but anyone else should steer clear. <br /><br />Rating: 1 out of 10\"\r\n0\tThis movie down-shifts from 4th into 1st without bothering with 3rd or 2nd, grinding gears all the way to the sappy, b-movie finish-line. The con at the beginning is easily the best and cleverest part of the movie. That is worth seeing. The scene with Harlow in the bathtub occurs so fast, you may miss it. Definitely not worth all the ballyhoo provided by Robert Osborne in his TCM intro to this bad-to-mediocre confusion. There is no real conflict, and all of the characters in this supposed fringe society turn out to be saints - especially the unbelievable character, Al. I wonder if he's got a job for me in Cincinnati?\r\n1\tWhen the Chamberlain family is camping near Ayers Rock, Australia, Lindy Chamberlain (Meryl Streep) sees her baby being dragged out of their tent by a dingo and then begins an ordeal that no one should have to experience. For it seems like the dingo story is not believed by the public or the press, and the whole thing turns into a circus. Lindy doesn't help matters either because she won't play to the jury or courtroom, she's only herself, and she's a tough nut to crack, so of course everyone thinks she's guilty because there's a piece of evidence that hasn't come to light. Sam Neill is excellent as Michael Chamberlain, a Seventh-Day adventist pastor, who has doubts about his faith and perhaps about his wife. It's good (or bad) to see that people are just as prejudiced and stupid elsewhere as they are in the States too, because the Australian public doesn't believe the story and the media only fans the flames. Eventually, Lindy is found guilty and sent to prison for a life of hard labor, but years later, a missing piece of evidence shows up and she's freed, but not until after the family's life is basically ruined. A heart-breaking story, very well done, a bit long but well worth seeing. 8 out of 10.\r\n0\t...in an otherwise ghastly, misbegotten, would-be Oedipal comedy.<br /><br />I was the lone victim at a 7:20 screening tonight (3 days after the movie opened) , so there is some satisfaction in knowing that moviegoers heeded warnings.<br /><br />The bloom is off Jon Heder's rose. The emerging double chin isn't his fault; but rehashing his geeky kid shtick in another bad wig simply isn't working. It would be another crime if this were to be Eli Wallach's last screen appearance. Diane Keaton will probably survive having taken this paycheck - basically because so few will have seen her in this, the very worst vehicle she's chosen in the last few weeks.<br /><br />Sitting alone in the theater tonight I came alive (laughed, even) whenever Daniels was given the latitude in which to deliver the film's sole three dimensional character. He really is among our very best actors.<br /><br />In summary, even Jeff Daniels's work can't redeem this picture.\r\n1\t\"Brutal, emotionless Michael Myers stabs his sister to death at age six on Halloween night in 1963; on October 30, 1978, he escapes from a mental institution and institutes a new reign of terror in his hometown of Haddonfield, Illinois. He is pursued the whole time by a psychiatrist (Donald Pleasence) who knows just how evil this young man is.<br /><br />It opens with a bang, and sets up a genuinely suspenseful and atmospheric chiller that is actually superior to the many slasher pictures it helped to inspire. It's subtle compared to the nasty bloodbaths many of those subsequent movies were; subtle, and scary. It retains the ability to make me jump even after repeated viewings. How many movies are there, really, that can continue to be frightening even after one has seen them before? Not very many.<br /><br />Pleasence is great in what was probably the definitive role of his career; Jamie Lee Curtis, in her motion picture debut, became a bona fide scream queen after acting in \"\"Halloween\"\" as well as a few subsequent slasher pictures, and she is an intended victim worth rooting for.<br /><br />Co-writer / director John Carpenter knows what works in this movie, making excellent use of shadows and dark skies; notice how most of the movie is set after nightfall. With this picture, he and his former collaborator Debra Hill created a franchise that has spawned seven sequels, many imitators, and an upcoming \"\"re-imagining\"\".<br /><br />It's very quotable - who could ever forget Dr. Loomis' (Pleasence) speech in which he describes Michael Myers to the sheriff (Charles Cyphers, a reliable repertory player in several of Carpenter's earlier works)?<br /><br />It's fantastic, and worth seeking out. This is my favorite John Carpenter movie of all time.<br /><br />It's not totally infallible - there are script holes, after all - but overall it makes a solid impact.<br /><br />9/10\"\r\n0\tJust a regular Jason lee movie, There were some parts of the movie that were funny. The undertone of the move is to live life on the edge I guess. These are the types of movies that I think 14 year old girls watch at slumber parties. It was an all right movie. It is kind of one of those movies you have on in the back ground and look up every now and then to when something catches attention. I think That Julia stiles and Selma Blair are a good combination and would like to see them in a movie with a good story and plot. Its just kind of a boy meets girl movie. This is that perfect movie they would show on comedy Central. I am glad that I didn't see this movie in the theater, I would have been angry. But I guess that's why I didn't see it in the theater.\r\n0\tThe point of the vastly extended preparatory phase of this Star is Born story seems to be to make ultimate success all the more sublime. Summer Phoenix is very effective as an inarticulate young woman imprisoned within herself but never convincing as the stage actress of growing fame who both overcomes and profits from this detachment. Even in the lengthy scenes of Esther's acting lessons, we never see her carry out the teacher's instructions. After suffering through Esther's (largely self-inflicted) pain in excruciating detail, we are given no persuasive sense of her triumph.<br /><br />The obsessive presence of the heroine's pain seems to be meant as a guarantee of aesthetic transcendence. Yet the causes of this pain (poverty, quasi-autism, Judaism, sexual betrayal) never come together in a coherent whole. A 163-minute film with a simple plot should be able to knit up its loose ends. Esther Kahn is still not ready to go before an audience.\r\n0\tthis film is quite simply one of the worst films ever made and is a damning indictment on not only the British film industry but the talentless hacks at work today. Not only did the film get mainstream distribution it also features a good cast of British actors, so what went wrong? i don't know and simply i don't care enough to engage with the debate because the film was so terrible it deserves no thought at all. be warned and stay the hell away from this rubbish. but apparently i need to write ten lines of text in this review so i might as well detail the plot. A nob of a man is setup by his evil friend and co-worker out of his father's company and thus leads to an encounter with the Russian mafia and dodgy accents and stupid, very stupid plot twists/devices. i should have asked for my money back but was perhaps still in shock from the experience. if you want a good crime film watch the usual suspects or the godfather, what about lock, stock.... thats the peak of the contemporary British crime film.....\r\n0\t\"Actually, this flick, made in 1999, has pretty good production values. The actors are attractive, and reasonably talented. There aren't a bunch of clowns running around blasting away, expending hundreds of rounds, but never hitting flesh. Nor are there wild car chases/crashes where thousands of dollars worth of beautiful machines are uselessly trashed.<br /><br />The interiors look respectably modern, architecturally, and the equipment looks up to snuff. Well, there is that high tech computer room furnished with what look like leftovers from a '50s electronics lab. And the pancake make-up on the corpses cracked me up. Not pancake make-up in the conventional sense, but what looks like dried pancake batter slathered over their exposed skin. This is supposed to support the idea that the bodies have calcified -- though how the virus would accomplish this transmutation is an exercise left for the student (viewer).<br /><br />Ah yes, the virus. I would like to tell you that this is not the absolute worst premise for a sci-fi, horror flick I know of, but I can't. A computer virus that is transmitted via a television (or computer monitor) screen and becomes a lethal biological pathogen? Gimme a break. Warp drives a la \"\"Star Trek\"\" are one thing, but photons becoming viruses? This is so silly the desired \"\"fright factor\"\" just isn't realizable. The flick could have used one of those awful dream sequences where the dead come alive, or have a cat jump out of the closet, or something, because the viral thingamajig isn't doing it. <br /><br />One presumes Robert Wagner has the same excuse for playing in this inanity that Lord Oliver gave for some of his later, trashy venues. He needed the money. No other comparison between the two should be construed,however.\"\r\n1\tKing's Solomon's Mines brings us Patrick Swayze (playing Allan Quatermain)who has spent a lot of time in Africa, but decides it is time to return to England and be a father to his son. He finds that his wife's parents have taken custody of his son and that he has very little chance of getting custody of him with lots of money for a law suit. In comes Alison Deedy (playing Elizabeth) whose father is in Africa and being held by an African tribe for ransom of the map Elizabeth's father had sent her. Elizabeth seeks out Quatermain to take her back to Africa to find her father.<br /><br />There is a good cast of supporting characters that go along with Quatermain and Elizabeth and of course there are some enemies (Russians) who want the map also.<br /><br />The movie holds your attention until the end. Patrick once again plays a ruggedly handsome honorable man who comes to the rescue of the damsel in distress. Patrick is a great dramatic actor who can easily portray passion, loss and despair, the rugged silent good man, anger and strength; In King Solomon's Minds his character actually smiles a few times. I would really like to see Patrick Swayze in a relaxed live-loving story again, one in which he doesn't have to clench his jaws and be quite so strong. Maybe a little dancing would help. But this is a good movie for the entire family and worth the time to watch it.\r\n1\t\"No doubt intended as a totally campy joke, \"\"Full Moon High\"\" portrays 1950s teenager Tony Walker (Adam Arkin) accompanying his father (Ed McMahon) on a trip to Romania. Sure enough, Tony gets bitten, and grows fur and fangs whenever there's a full moon. A particularly interesting aspect in this movie is that he can't age as long as he has the werewolf curse, and that he has to fulfill a destiny - even if it takes twenty years.<br /><br />But otherwise, the movie's just plain funny once it gets going. Ed McMahon's character is an over-patriotic right-wing yahoo (he thinks that everyone should have listened to Joe McCarthy), Kenneth Mars's coach/principal is a tense dweeb, and then there's more. One of the most eye-opening cast members is Demond Wilson - best remembered as Lamont on \"\"Sanford and Son\"\" - as a bus driver who gets a big surprise. But probably the funniest scene is the changing of the presidents; then gag with Gerald Ford really summed him up! Anyway, it's a real treat. Considering that Alan Arkin - who plays a zany psychiatrist - just won an Oscar on Sunday night and thanked his sons, I wonder whether or not he remembers co-starring with two of them in this movie (aside from Adam, his son Anthony also has a small role). Quite funny. Also starring Elizabeth Hartman.<br /><br />PS: director Larry Cohen is probably best known for the killer baby flick \"\"It's Alive\"\".\"\r\n1\t\"A charming romantic comedy. The plot is a little too complicated--I tried to summarize it three times and I can't. Suffice to say it's worth seeing. The movie is funny, beautiful--the plot is totally unrealistic but it works. Everybody in the movie is so nice and everything looks so great--it creates a sweet, romantic feel through the entire film. <br /><br />The acting is great--Robert Downey Jr. and Cybill Shepherd are in top form and enjoying every second of it. Ryan O'Neal and Mary Stuart Masterson are just OK but fine. If you're a sucker for good, sweet sentimental films (like me), catch this one. Also Downey looks great in his underwear!<br /><br />Extra bonuses--the title song sung by Johnny Mathis and another great song \"\"After All\"\" sung by Cher and Peter Cetera.\"\r\n1\t\"I have to point out, before you read this review, that in no way, is this a statement against Iranian people ... if you really want to read something into it, than hopefully you see, that I'm against politicians in general ... but if you're looking to be offended ... I can't help you!<br /><br />Not in Iran as this movie is banned there (see IMDb trivia for this movie). Which is a shame, because the movie is great. Would it not be for \"\"Grbavica\"\", this movie would have won at the International Film Festival in Berlin.<br /><br />Rightfully so (it was the runner-up, or second place if you will). Why? Because it is a movie about oppression. It's not even that this is a complete women issue. It is about the government trying to keep the people down. An analogy so clear that the government felt the need to ban the movie. But by banning it nothing is resolved and/or can they make this movie disappear! <br /><br />Another reviewer had a great summary line: \"\"Comedy about a tragedy\"\", that sums it up pretty well!\"\r\n1\t\"\"\"Dressed To Kill\"\", is one of the best thrillers ever made. Its dealings with sex and violence make this a film for adults. Brian De Palma, once again, proves why no other director can match his use of the camera to tell a story. He directs many scenes without dialog, and he tells much of his story, strictly through the use of his visuals, and Pino Donnagio's brilliant score. Filmed in Panavision, the film MUST be seen in widescreen, as De Palma uses the entire width of the film to tell his story. Cropped, on video, \"\"Dressed To Kill\"\", is barely the same movie. Solid performances from its cast, superb direction, and, perhaps, the finest film score ever written, make \"\"Dressed To Kill\"\" a must see.\"\r\n0\t\"What a great word \"\"re-imagining\"\" is. Isn't that what they call Dawn of the Dead MMIV (2004)? A clever word indeed - it disguises the term that everyone has grown to hate, \"\"remake\"\" that is, and makes it almost sound as if the process of making one was creative and involved the imagination. Well, damn, was I misled. At least I was seduced more by the thought of countless gore and unbridled violence than by the idea of \"\"re-imagining,\"\" though it played a role.<br /><br />Still, why make a remake? Directors do it for only a few reasons really: to update a movie for a modern audience, or because they personally love the original and want to make a tribute to it. An homage, if you will. Nonetheless, it all generally (I do admit exceptions) boils down to one thing: stealing someone's idea and reshaping it (or \"\"re-imagining\"\" it) so that those who would never see it or understand it would pay money to see it. It's like Coles'/Cliffs' notes; dump everything in a blender, purify all that is more puzzling and curious and throw in a few artificial flavors. In other words, a great marketing scheme.<br /><br />So what's wrong with this one? Well, I'll start with what I liked. I liked the opening scenes. Thanks to CGI and a bigger budget we could actually get a grasp of the chaos of the zombie holocaust Romero tried to communicate in the original through minimalist means. We see the city in ruins, thousands of zombies: chaos and death. Two words that look beautiful on screen. Then it all falls apart.<br /><br />This set-up leads nowhere. The movie does what almost every remake does. It adds more of everything except character, atmosphere, and story. It's noisier, (in some sense) bloodier, and more full of main characters who appear only to die in nonsensical subplots. The setting, the mall which played a crucial role in the original film's story and theme, is purely coincidental. The idea communicated in Romero's film, the pure ecstatic joy of having \"\"a mall all to yourself as a fortress,\"\" is gone here. Further, this \"\"re-imagining\"\" has no moxie, no spirit, no balls. It assumes (probably quite rightly) that the audience has no attention span and doesn't bother to get us interested in the characters or the story. The film is rushed and misses the quieter interactions of the four characters of the original. You actually grew to care about those people in Romero's version because there was a certain realism to their existence despite the insanity outside the mall. Here, you don't care when or who goes: what matters is how they go.<br /><br />What else is their to say? The film is not scary. It has one or two \"\"jump\"\" scenes and it tries to make up for the rest with gore and loud special effects. As a story it's really too choppy to be followed and the conflicts between the characters are too underdeveloped to save it. The humor is also reduced to a few one-liners (and one really good character: Andy). After that, what remains? An ending that is plainly ridiculous and far inferior to the subdued, inevitable ambiguity of the original film. But, despite it being a pretty bad film (though not quite as bad as some other remakes), it should be remembered for one thing: it kicked The Passion of Christ from it's number one spot in the box office. Well done zombies.\"\r\n1\t\"This is the second Animatrix short, and the first of them to be what one could call 'artistic'. It contains a lot of references, metaphors and symbols in the dense amount of material, especially with a running time of 9 minutes. I've heard some complaints that this is \"\"anti-human\"\", or tries to direct hate towards man, for their \"\"sins against machine\"\". I don't think that's true; it merely uses the robots to show us, that as humans, we aren't particularly accepting or open-minded towards anyone different from ourselves. I'd say it does a great job of that. The plot is good... it plays as a historical document, recounting what led to one of the main conflicts in the trilogy. Thus it holds clips from fictional news reports and the like. The voice acting is very good, if there is not a lot of it. The animation is nice, and the use of color, in spite of the usually realistic drawing style, makes it more open to do the smooth transitions and other surreal imagery. This has several bits of strong violence and disturbing visuals, as well as a little nudity. The disc holds a commentary, not in English but subtitled, and worth a listen/read. There is also a well-done and informative making of, based on both parts, so I would advise watching it after seeing the next one, as well. I recommend this to anyone who enjoys the Matrix universe, and/or science fiction in general. 8/10\"\r\n0\tIn the small American town of Meadowvale Dr. Anthony Blake (David Gale, the IMDb listing for this character is wrong it's definitely Dr. Blake not Dr. Blakely) is the director and founder of the famed 'Psychological Research Institute' and also host's a local T.V. programme called 'Independent Thinkers'. He uses this T.V. show to hypnotise the viewers and make them commit acts of violence. Dr. Blake has the help of a large brain with an evil face that uses it's spinal cord as a tail thingy. Usually the brain is just sitting in a tank, eats mice and the odd bad actor, each time it eats someone it gets much bigger. Meanwhile at the local high-school gifted but troublesome teenager Jim Majelewski (Tom Bresnahan) has been caught putting Sodium down the toilets. Jim is sent to Dr. Blake at the PRI for help with his attitude and behavioural problems. While there Dr. Blake hooks Jim up to, well something I'm not actually sure what. This whatever it is, is attached to the brain. At first Jim is able to resist the brain's mind control. The brain feels that Jim is a threat to itself and it's plans. Once out of the PRI Jim starts having bizarre hallucinations and crashes his car. Jim makes it to his waitress girlfriend Janet (Cynthia Preston as Cyndy Preston) but is handed back to Dr. Blake's assistant Verna (George Buza) soon after by Officer Marks (Harry Booker). The brain wants to kill Jim because he is the only one capable of withstanding it's mind control techniques, and with 'Independent Thinkers' going national the brain doesn't want anything or anyone to stop it's evil plan for world domination! Jim quickly realises that the brain is controlling the entire town and he alone must stop the brain, before it takes over the world!<br /><br />Directed by Ed Hunt who calls himself Edward Hunt here, the Brain wasn't as bad as I thought it was going to be. Don't get me wrong as it certainly isn't great either. The script by Barry Pearson tries a stab at satire with the brain washing and mind control by T.V. storyline. It moves along at a fair pace and isn't too boring. No explanation is given for the existence of the brain at all, it's just there and that's it we have to accept it. The story is a little choppy and never fully explores one single element, there's the T.V. mind control, the brain itself, Jim being hunted by the police & his misbehaviour and various other little bits and pieces here and there including a bizarre revelation regarding Dr. Blake that isn't explained at all. Production wise this film looks cheap, and probably was cheap. The acting isn't great but I've seen worse, and what is David Gale doing in this? In fact this role is similar to Gale's role in Re-Animator (1985) even down to his character's deaths in both films. The brain itself at first sits in a tank and starts to grow whenever it eats someone and by the end it is pretty big. Each stage is just made of rubber. It doesn't look particularly good and isn't scary or creepy, just cheap. There's no blood or gore in it apart from a blink and you'll miss it decapitation. The nudity is provided by Dr. Blake's assistant Vivian (Christine Kossak as Christine Kossack) before she gets eaten. The brain had a certain entertainment value for me but I would think most people would dislike it. Maybe worth a watch if you can see it on T.V. for free.\r\n0\t\"After some internet surfing, I found the \"\"Homefront\"\" series on DVD at ioffer.com. Before anyone gets excited, the DVD set I received was burned by an amateur from home video tapes recorded off of their TV 15 years ago. The resolution and quality are poor. The images look like you would expect old re-recorded video to look. Although the commercials were edited out, the ending credits of each episode still have voice-over announcements for the segway into the ABC news program \"\"Nightline\"\", complete with the top news headlines from the early 1990's. Even with the poor image quality, the shows were watch-able and the sound quality was fine.<br /><br />To this show's credit, the casting was nearly perfect. Everyone was believable and really looked the part. Their acting was also above average. The role of Jeff Metcalf is played particularly well by Kyle Chandler (most recently seen in the 2005 remake of King Kong). The period costumes were very authentic as were the sets, especially the 1940s kitchens with vintage appliances and décor. The direction was also creative and different for a TV show at that time. For example, conversations between characters were sometimes inter-cut with conversations about the same subject between other characters in different scenes. The dialog of the different conversations was kept fluid despite cutting back and fourth between the different characters and locations. That takes good direction and editing and they made it work in this case.<br /><br />As I started watching this series again I suddenly remembered why I lost interest in it 15 years ago. Despite all the ingredients for a fine show, the plots and story lines are disappointing and confusing right from the start. For one thing, the name of the show itself is totally misleading. When WWII ended in 1945, there was no more fighting so obviously there was no longer a \"\"homefront\"\" either. Curiously, the first episode of the show \"\"Homefront\"\" begins in 1945 after the war had ended. That's like shooting the first episode of \"\"Gilligan's Island\"\" showing the castaways being rescued. The whole premise of the show's namesake is completely lost. I still held on to hope with the possibility of the rest of the series being a flashback but no, the entire show takes place from 1946 through 1948. Additionally, this series fails miserably in any attempt to accurately portray any historical events of the late 1940's. By the third episode, it becomes obvious that this series was nothing more than a thinly veiled vehicle for an ultra left-wing political agenda. The show is set in River Run Ohio, near Toledo. However, the show's ongoing racism theme makes it look more like Jackson Mississippi than Ohio. Part of the ensemble cast are Dick Williams, Hattie Winston and Sterling Macer Jr. who portray the Davis family. Much of the series shows the Davis family being discriminated against by the evil \"\"whites\"\" to the point of being ridiculous and totally absurd if not laughable. The racism card has been played and over played by Hollywood now for over 40 years. We get it. We're also tired of having our noses rubbed in it on a daily basis. The subject of racism is also unpopular with viewers and it is the kiss of death for any show, as it was for \"\"Homefront\"\". The acting talents of Williams, Winston and Macer were wasted in their roles as the stereotypical \"\"frightened / angry black family\"\". The wildly exaggerated racism in this series makes it look like everyone in Ohio was a KKK member or something. The racism issue could have been addressed in this show in a single episode with a simple punch in the nose or fist-fight in which a bigot gets a well deserved thrashing, and leave it at that. Devoting a major portion of the series to the racism thing gets really old really quick and its just plain stupid.<br /><br />In yet another ridiculous plot line, the big boss of a local factory (Ken Jenkins) is portrayed as an Ebenezer Scrooge like character who is against pensions and raises and is unconcerned about acid dripping on his employees. The workers revolt and take over the factory in a blatant pro-communist propaganda message to the viewer.<br /><br />Personally, I think this series had great potential. The writers could have easily placed the timeline in 1941  1945 as the title suggests and shown the hardships of food and gas rationing and working 14 hour days at war factories. Of course the loss of brothers, sons and husbands fighting overseas would have also added drama. The situation was also perfect for writing in special guest stars as military or USO personnel passing through their town during training or en-route to Europe or the Pacific. The possibilities for good story lines and plots are endless. But no, the writers of Homefront (David Assael and James Grissom) completely ignored any relevant or interesting plots. Instead, they totally missed the point and strayed into a bizarre and irrelevant obsession with racism and left-wing politics. It would be unfair to the actors to condemn the entire series but the plots and situations in which they were placed are total garbage.\"\r\n0\tA lot of themes or parts of the story is the same as in Leon, then other parts felt like some other movie, I don't know which, but there are an familiar feeling over the whole movie. It was kind of nice to watch, but it would have been fantastic! if the story would have been more original. The theme little girl, bad assassin from Leon, is just tweaked a little. The opening scenes are really good :-) It is strange that people like to fight in the kitchen, in the movies :-) My biggest problem was to remember which parts was from Leon, Nikita and if they where from the French or American version. If you have not seen Leon, then this is a good movie. If you liked this movie, then I can recommend Leon.<br /><br />Best Regards /Rick\r\n1\tIn my opinion, this is an absolutely romantic Disney masterpiece. If you ask me, the stepmother (voice of Lucille La Verne) was truly diabolical. You'll have to see the movie if you want to know why. On the other hand, despite the fact that she did a lot of housekeeping, Cinderella (voice of Ilene Stanley) was a very beautiful lady. To me, the scenery was beautiful, the cast was well chosen, and the writing was strong. Before I wrap this up, I'd like to say that everyone involved in this film did very well. Now, in conclusion, I highly recommend this absolutely romantic Disney masterpiece to all of you who haven't seen it. You're in for a good time, so go to the video store, rent it or buy it, kick back with a friend, and watch it.\r\n0\t\"Spoilers <br /><br />Well, the one line summary says it all. Melville´s \"\"Le samurai\"\" is the original and there are elements of \"\"Leon\"\". And they are better - much better!<br /><br />In the \"\"Samurai\"\" Alain Delon is a lonely warrior / professional killer who keeps a bird in cage and is stealing cars for his jobs (with so much suspense in these scenes!). Even the end is exactly the same: the samurai seeks death in dignity and is getting shot with an empty gun in his hand. The world has changed he realizes and there is no place for the samurai in it.<br /><br />Delon is not killing so many people like the Ghost dog. But I guess Jarmusch liked \"\"Leon\"\" very much or even \"\"Desperado\"\" by Rodriguez. So he added this, too. And let me guess: the girl will become a professional like Ghost dog (like Natalie Portman in \"\"Leon\"\")?<br /><br />So what was Jarmusch thinking after all? Where is the unique, the original thought in this movie?<br /><br />I can´t see the point in making carbon (celluloid) copies.<br /><br />A 4/10 rating by Macaulay Connor\"\r\n0\t\"Do you know when you look at your collection of old, videotaped movies, and realize that there are some that you've only seen once or twice, and you can't remember if they're worth the time it takes to see them? The Alibi is/was one of those films; I found it, not long ago, and decided I might as well give it a chance. I'm not entirely sure if I'm happy with my decision... on one hand, the film is really, really bad, on the other, now I have another free tape... yeah, you get it. The plot is predictable and not in any way original. The pacing is bad. The acting is bad, but that's not really surprising, seeing as the two leads are former soap-opera stars... they're used to overact. The characters are poorly written clichés. The film even manages to screw up the easiest damn way to impress me(through film): court scenes. Even those don't elicit one single emotion for or against any of the cardboard-thin characters. The film just has no real redeeming qualities whatsoever... even the dialog is bad. The thing is, it's so full of clichés that it's laughable. And that's the one thing that lifts this above a rating of 1/10: the(albeit unintentionally so) comic relief of the many clichés and stereotypes. I didn't pay very much attention to the film, but just about every time I looked at the screen, there was something to laugh at. One final note: I considered using the line \"\"Tori Spelling can't act\"\" as a one line summary, but I guess everyone knows that, so I opted for the current one, seeing as it's more informative. All in all, a thoroughly bad film, but not the worst if you've got nothing else to do and if it's on TV. Good for a few laughs, if you can sit through it. 3/10\"\r\n0\tThis complete mess of a movie was directed by Bill Rebane, the man partly responsible for the truly infamous anti-classic Monster a-Go Go. As I was nearing the end of The Cold I came to the unbelievable conclusion that this film was in fact even worse than that 60's shocker. The story  such as it is  is about three eccentric millionaires who invite a group of people to their remote mansion to play a series of macabre games. Whoever manages to last the pace and survive to the end will win $1,000,000. It's a very simple plot but Rebane still somehow manages to make proceedings verge on incomprehensible. Things happen. Characters are completely forgotten about. Nothing makes too much sense. And then it ends. Weirdly. I mean what the hell was that ending all about exactly? I guess you are left to draw your own conclusions. Production values and acting are without question of a pornographic movie standard. In truth Pamela Rohleder (Shelly) isn't even that good. She is so unbelievably terrible she's compelling. Sadly the same thing cannot be said about this crap-fest as a whole, it's just a bargain basement rotter.\r\n1\t\"Short, but long enough, Cat Soup is a very wild trip to watch. One day, I was just searching though my On-demand list through the anime section and came across it, and decided to watch it. I spent the whole time basically sitting with my jaw agape. The whole time I was either vacant of thought, or had a fleeting one which screamed \"\"TURN IT OFF!!!\"\". But I didn't. And actually, I'm glad I did.<br /><br />The animation is stunning. Very artistic, odd and dark. I personally loved it for the amazing animation, but the seemingly vacant story behind it is equally compelling for myself.<br /><br />A young boy--well, cat--goes in search of his sister's soul. In the first part she's lying sick in bed, and is soon paid by a visit from a sort of grim reaper. Her soul is split in half. One is regained by the cat boy while the other half is lost.<br /><br />Then the rest of the film is slightly lost to me, honestly. I expect they go back, and their world is... perhaps slowly falling apart? Maybe her absence of soul is the answer behind this, for the rest of the film contains various stages of which the world's in. First there's a giant flood, and next it dries up into a bleak desert, and then everything freezes (thanks to either what is God or fate, as you will see). Then I believe they find the sister's soul in the form of an orange flower. After that, the whole world disappears. Haha, totally didn't get that, but it sends shivers down my spine each time.<br /><br />Despite it's seemingly random scenes, I'm sure there's a deeper message behind it if you watch it enough and do some research. Personally, I LOVE trippy stuff like this, and would love to spend time doing that just to understand it. But to some people it's probably not their cup of tea. It comes off as highly disturbing, so if you like your straight forward anime, this is not a film for you. If you have an open mind however, I highly recommend this movie.\"\r\n1\tHandsome and dashing British airline pilot George Taylor (a solid portrayal by Guiseppe Pambieri) gets beat up by thugs after a wild night in Hong Kong. George meets and falls in love with the sweet and virginal Dr. Emy Wong (a fine and charming performance by the lovely Chai Lee). George regains his health and goes back to work. When Emy fails to hear from George for a lengthy amount of time, she succumbs to despair and becomes a prostitute. While director/co-writer Bitto Albertini does indeed deliver a satisfying amount of the expected tasty nudity and steamy soft-core sex, this film is anything but your routine wallow in leering sleaze. Instead it's a surprisingly thoughtful, touching and tragic love story between two well drawn and highly appealing characters (Chai as Emy Wong is especially radiant and endearing). The picture starts out bubbly and cheerful, but the tone radically shifts into a more grim and harsh mood about two thirds of the way through. Emy's descent into vice after she falsely assumes that George has abandoned her is bleak and upsetting; ditto the remarkably sad and heartbreaking surprise bummer ending. Granted, the narrative is certainly melodramatic, but never too silly or trashy. Moreover, the sex scenes are quite tasteful and even genuinely erotic. Notorious Italian porn star Ilona Staller has a nice sizable supporting part as George's jealous and uninhibited secretary Helen Miller. Guido Mancori's polished cinematography offers many strikingly gorgeous shots of the exotic locations. Nico Fidenco's funky, throbbing score hits the groovy spot. Worth a look for those seeking something different.\r\n0\ti don't know what they were thinking.by they,i mean anybody even remotely connected to this disaster.i've seen so bad movies,i've seen so really bad movies,and then there's this.but i will say one thing.whoever wrote the script has manged to put what could possibly the most inane dialogue over written,onto the screen.there is nothing good about this movie,either from a technical standpoint or any other standpoint.whoever allowed it to be made and then released should have been fired immediately.there are a few fairly well known names in this movie.actually i hesitate to use the word movie.it's more like a collection of random scenes that have no relation to another and make less than 0 sense.anyway,i fail to see why anyone with any dignity would appear in this.i got it really cheap,and i still got ripped of.even if i had gotten this movie for free,i would still have been ripped off.this is an absoluter 0/10\r\n0\tI caught this movie on FX last night, and as I was sitting there watching it, it occurred to me that it could quite possibly be the worst movie ever. Bad acting, bad cinematography, bad sound, totally unbelievable fight sequences, stupid characters. All these made it up to be the most laughably bad movie I've ever seen. It was so bad, I was enthralled by it's sheer lack of anything semi-competent that I had to keep watching... and they made a sequel!\r\n1\tThis is one of three 80's movies that I can think of that were sadly overlooked at the time and unfortunately, still overlooked. One of the others was Clownhouse directed by Victor Salva, a movie horribly overlook due to Salva's legal/sexual problems. Another would be Cameron's Closet which strikes me as somewhat underrated--not great, but not nearly as bad as the reviews I've seen. Paper House is well worth your time and I think that it is one of those very quiet films that will just stick in your brain for far longer than you might think. I mean, 10 years after I've seen it and I still give it some pause, whereas something that I might have seen 6 months ago has gone into the ether.\r\n1\tI really liked this movie because I have a husband just like the guy in this movie. This movie is about Lindsey who meets Ben in the middle of winter when baseball season isn't in. She falls in love but when spring comes along, she gets the shock of her life when she is placed one step lower on her pedestal that Ben has put her on.<br /><br />It's a funny movie with all of the baseball obsession that Ben has. He can't part from what he loves the most, that's what makes it so funny and why so many women can relate to Lindsey in real life. Also the people he sits with at the baseball games are just as obsessed as he is.<br /><br />It's a funny movie and you won't strike out if you rent this one.\r\n0\tWorst movie on earth. I don't even know where to begin but I hope I can save another person from punishing themselves with this movie. When it comes to acting and lighting, this movie is similar to a bad porno without the sex. The actors are some of the worst I've ever seen, and couldn't have been worse even if they were trying to make a complete mockery of this movie. The movie must have had a record breaking low budget which I'm sure was wasted almost solely on the movie's cover. This movie has now become a running joke with friends of mine and has become the standard for comparing other garbage movies. I would like to point of that no other movie even begins to compare. I feel personally responsible for suggesting a friend and me watch this movie and am surprised she still considers me a friend after the torment I put us through. Don't see this movie!\r\n1\t\"The Japanese cyber-punk films have never really done a whole lot for me, but of the handful that I've seen, most have been at least visually interesting and at least mostly entertaining. MEATBALL MACHINE is no exception.<br /><br />The storyline is about a species of parasites that take over human hosts, takes control of their bodies, turns them into \"\"necroborgs\"\", and causes them to fight each other with the sole purpose of eating each other - apparently as a \"\"game\"\" for the enjoyment of said parasites. The film mainly revolves around a shy guy and gal who fall for each other, but whose love-affair is cut short by both being infected with the parasites, and are forced to fight each other. It becomes a test of human-will vs. the parasite's control over their physical bodies...<br /><br />MEATBALL MACHINE will invariably be compared to TETSUO (as most cyber-punk films are), and for good reason. There are definitely some thematic parallels, though the films are definitely different. There's plenty of fun, splattery moments in MEATBALL MACHINE, and the creature/borg FX are definitely the high-point - a mixture of TETSUO-meets-GWAR that are both elaborate and inventive. Depending on your taste for these types of films, MEATBALL MACHINE may or may not be your thing. If you enjoy hyper-kinetic cyber-punk films with a healthy dose of splatter - this one's for you...7/10\"\r\n0\t\"You have to understand, when Wargames was released in 1983, it created a generation of wannabe computer hackers. The idea that a teenager could do anything of far reaching proportions, let alone deter a world war was novel and thrilling. Real computers were beginning to show up in people's homes, and for the first time, society was becoming interconnected in a way that made the movie's premise excitingly prescient. Granted, a talking computer that balanced it's free time between chess and global thermonuclear war was a bit far fetched, but the brilliant commentary on nuclear proliferation and the cold war made up for it. I've probably even heard of the hackers that this movie was actually based on.<br /><br />Fast forward 25 years, and we have a horrible mutant of a thing that I loathe to call a \"\"sequel\"\", called Wargames: The Dead Code. I'll just dig right in. First of all, the plot hinges on a government operated gambling site where folks who win the games automatically become terror suspects. You're probably very confused right now. The idea is that eventually the terrorist will click on the sub-game within the web site called \"\"The Dead Code\"\" where they pilot a plane over a city, spraying it with bioweapons. At some point in the game, you have to choose between \"\"sarin gas\"\" and \"\"anthrax\"\", and if you choose \"\"sarin\"\", then you're automatically confirmed as a bioterrorism weapons expert and your family is taken into custody and interrogated. In the movie, this actually happens. However, since the payment for the game was made from a bank account that was suspicious, it obviously all makes sense.<br /><br />Second, the avatar of the AI in this straight-to-DVD bomb is an annoying flash animation that keeps repeating the pop-up-ad-esquire sound bite \"\"play with me baby\"\". Because apparently in the future, advanced AI loses interest in intellectual pursuits like chess, and gets into porn.<br /><br />Third, the motivation for these \"\"hackers\"\" is profit and women, as opposed to pure curiosity as in the original movie. For some reason, recent hacker movies feel the need to portray all young adults as average surfer dude kind of people who are just like everyone else. That may work for your average sitcom, but c'mon, you don't learn how to take over government computers by doing your hair, playing sports, and shopping at the mall, folks. The one novel thing I noticed was that at some point in the dialogue there is a reference to a Matt Damon movie, and then later there is the phrase, \"\"Good Hunting, Will\"\". I swear, they named the main character Will just for that phrase so they could send a high five to Mr. Damon. This Will kid isn't bad, but he was certainly wasn't like any obsessive hacker I've ever met. I can't fully state how annoyed I am that this movie shares the same name as the original, because it has absolutely nothing in common with it except Professor Falken and Joshua (WOPR) make a reappearance in this movie, as a limp old man who apparently is dying of boredom, and a dilapidated old tic-tac-toe machine with a higher pitched voice. After some prodding, Joshua (the AI) has what appears to be sex with the new AI with the porn voice, a bunch of board games flash on the big screens, and the whole \"\"The only way to win, is not to play\"\" revelation is supposed to be the crowning moment. Except that those of us who saw the original, you know, those who would want to see this in the first place have already been there and done that. A recycled ending for a movie made from last month's compost.<br /><br />The new movie was directed by a guy who's done 90210, and written by guys who do B movies. The original was directed by a guy who's been keeping himself busy with \"\"Heroes\"\", so you see the quality difference there. There was talk of a real remake, but I hope they don't destroy this classic all over again. I swear, if I have to, I'll visit every gambling web site until I find the one that's run by a psychotic government computer. The saving grace is that I was able to stream this on Netflix, so at least the only energy I expended watching this disaster was for breathing, clicking, and indigestion.\"\r\n0\tI'd never heard of this, then found out it's the man with the deadly lens, which I'd heard of but not seen. Connery's presence drove me to buy it, and it's not good. It wants to be a sort of cross between Dr Strangelove and Mash, but it just isn't that funny, unless you find the name General Wombat (?) funny. It comes across as a flat 70s thriller until the last ten minutes, when it springs to life. There are many, many flat scenes in the Whitehouse between the president and his aides which don't work. It's almost as if the initial cut was too long, and the first half was edited down to get to the whole nuclear bomb ransom storyline and the suicide bomber attacks, which i think are meant to be played for laughs, but again, aren't that funny. The location filming is excellent but the studio stuff looks like cheap TV. I could not believe the man responsible for Key Largo, Crossfire and Elmer Gantry did this. Only laugh: Connery throws away his wig before putting on his helmet and jumping out of a plane. It makes Never say Never again look like genius.\r\n0\tI only watched this film from beginning to end because I promised a friend I would. It lacks even unintentional entertainment value that many bad films have. It may be the worst film I have ever seen. I'm surprised a distributor put their name on it.\r\n0\t\"I knew it would be, but I gave it a rent for some laughs and maybe some mindless fun. Anyone whose read a few of my reviews can see that I'm pretty easy to please. I really didn't think I'd end up feeling this negatively towards it.<br /><br />The plot is about an ancient army of dragons lead by a huge serpent that will destroy the world unless some chosen heroes who inherited the responsibility can become one with a good dragon or something I don't know. It was so stupid, I didn't bother to put much effort into retaining it.<br /><br />It features a really dumb story full of ridiculous moments and goofy concepts. So many of the events just felt totally random and sudden.<br /><br />I assume there was studio interference or something because the biggest problem I have with the movie is the fact that the story seems like it's trying to be so grand and epic, yet everything happens so fast and goes by so quickly. I feel like I've just been hit with a million plot points and action sequences in one big ball. The film is like a punch in the face. It doesn't take much time at all to establish characters or drama. Imagine the \"\"Lord of the Rings\"\" trilogy in 90 minutes You could have most of the epic battle sequences, but there would be absolutely no buildup and you'd hardly care about the outcome of those battles. That was the case with Dragon Wars 90 minutes of me not giving a crap, waiting for it to be over.<br /><br />Fantastic CGI with some okay directing, but horrible acting, speedy pacing, and dumb story made this very hard to enjoy on any grounds. I probably would have loved it when I was 6.\"\r\n1\tEver wonder where the ideas for romance novels and other paper back released come from? According to 'Jake Speed' they are based on real people, living out the adventures they write about and publish. This movie is quality family entertainment, moderate amounts of violence, and skimpy clothes at the worst. The language is is also not a problem, and the jokes are funny at all levels. This is a 'Austin Powers' look at 'Indian Jones', without the over-the-top antics of Michael Myers. I highly recommend this film for kids in the 10 to 15 range.\r\n1\tThis is a wonderful new crime series, bringing together three old stalwarts of British television (Denis Waterman, James Bolam and Alun Armstrong) as retired detectives brought back to help clear up old cases, under the leadership of younger, career-focused Amanda Redman. The three quirky, irritable old cops make a brilliant team, applying twenty-year old detection methods in a police force which has moved a long way on since then - sometimes with effect, at other times to the horror of their senior officers. The three are portrayed sympathetically, warts and all. There are splendid comic scenes, and some very moving ones as each of the three has to come to terms with growing old and the legacy of their pasts.<br /><br />At the end of the first six-part series (we are promised a further series next year) each of the characters had developed. Widower James Bolam cannot come to terms with his wife's untimely death. Lothario Denis Waterman is learning to accept his role as grandfather. And even obsessive Alun Armstrong is helped by his new friends to fight the demons of his past - and keep taking the medication! While Amanda Redman has to face the all-too-familiar conflict between having a life and a career. The story lines have been interesting, if rather heavily dependent on the wonders of DNA-testing. But it is the interplay of four of Britain's finest actors which has made the series unmissable.\r\n0\tThis had to be one of the worst movies I've ever seen and I'm 64 years old and a football fan. I went expecting to see a football movie. About 10 minutes into it, I began to wonder exactly how such a bad movie (particularly the acting) could have gotten into a theater. About half way through, I whispered to my husband that it was awful and he explained to me the facts behind the movie. Although I was a little offended (and can see how some could be VERY offended if they were not Christian) at being preached to in a movie theater, it wasn't that big a deal. It was, however, a big deal to be subjected to such predictability and unrealistic behavior and, above all, the quality of the acting. It is an appropriate movie for a church outing but to be shown in a church auditorium and not in a theater. Do I go to church? Yes. Do I want to go to church when I attend a movie? No. Would I recommend this movie? Absolutely not!!!\r\n0\tUlises is a literature teacher that arrives to a coastal town. There, he will fell in love to Martina, the most beautiful girl in town. They will start a torrid romance which will end in the tragic death of Ulises at the sea. Some years later, Martina has married to Sierra, the richest man in town and lives a quiet happy live surrounded by money. One day, the apparition of Ulises will make her passion to rise up and act without thinking the consequences. The plot is quite absurd and none of the actors plays a decent part. IN addition, three quarters of the film are sexual acts, which, still being well filmed, are quite tiring, as we want to see More development of the story. It is just a bad Bigas Luna's film, with lots of sex, no argument and stupid characters everywhere.\r\n0\t\"Richard Dreyfus is not the star here. He has about three 20 second cameos and what is Gene Barry doing all over this movie? No idea, the director was probably his brother! This is a movie that makes no sense whatsoever. The inept writer/director (same dude) butchered up everyone's talent with his horrendous uh...work. I got the DVD for a penny so can't complain! But it's weird!And it makes you feel weirded out and in not a good way. This was the 70's and looks like the director was on a bad acid trip and wanted everyone to experience what it's like to be inside his head. It has a somewhat interesting and controversial concept, but like a scratched record, it quickly plays foul. It has that \"\"Manson family on acid\"\" vibe to it.<br /><br />I have no idea how the other reviewer got all they did out of this movie? Maybe they worked in it back when? At any rate, be prepared to lose 80+ min of your life you'll never get back. Yes, it's that awful!\"\r\n1\tThe movie took a new angle to Gandhi's life, which is nice to see and it shows how human he was. His relationship with Harilal is something that Gandhi was troubled by and mentioned it several times as his failure as a father in his autobiography.<br /><br />My big gripe is that I thought Gandhi was surprisingly uncharismatic in the movie. It could have been better acted by the person who played Gandhi. Some of Gandhi's statements seemed too smug and it seemed as if he was intentionally portrayed in a negative light in some parts of the movie.<br /><br />The movie is not really all-rounded, but focused only narrowly on the relationship of the father and son. The rest is blurred out and only used to show the time frame and the general setting of the movie.<br /><br />Overall nice movie if you keep in mind that it is not a complete picture.\r\n0\t\"Probably encouraged by admirers of her much-better \"\"Orlando\"\", Potter here delivers a vehicle for herself in the worst way: she writes, directs, stars, and actually co-writes the music, including a mawkish love song. The film strongly resembles a high school or college project by a teenager convinced that her own intimate loves and melodramatic obsessions are as fascinating to us as to her. But Potter's character is as unsympathetic as the object of her romantic obsession is unlikable, and the whole film is an embarrassing display of narcissism masquerading as a celebration of the tango. Perhaps if she hadn't cast herself it might have worked. She just can't act, whether playing herself or not. Pretentious, over-ambitious, dull, and silly.\"\r\n0\t\"The following are some of the most blaring problems with this movie: 1) Clichés abound. Seriously, awful \"\"twists\"\" are everywhere.<br /><br />2) The narrative jumps around in time, which would be fine if done well, but it's not.<br /><br />3) Lame characters that don't develop so much as either remain utterly static, or drastically change for no good reason.<br /><br />4) Big one: HORRIBLE ACTING. Over the top from nearly every person.<br /><br />The following are some of the best points from the movie: 1) The lead is damn good looking.<br /><br />As I see it, there are only two kinds of people who would be into this movie: a) People who can sit through 90 minutes of tripe simply because the lead is attractive.<br /><br />b) People who often think to themselves, \"\"I like Hollywood dreck rife with clichés and overacting, but if only I could watch it in Korean...\"\" There's a lot of good Korean cinema out there, so why waste your time with garbage?\"\r\n1\t\"I went to the movie theater this afternoon expecting to be underwhelmed by Scoop. Happily, the film exceeded expectations, at least a little bit. It's nothing heavy, nothing deep -- and not anywhere as good as any number of real Allen masterpieces -- but it's also completely enjoyable as a light, bantering comedy. There's something kind of simple and sweet about it. \"\"Cute\"\" was the word I heard from people in the audience as they were walking out after the show. It doesn't feel like Allen set out to create a masterpiece here, it feels like he wanted to make a little comedy and have fun doing it. Compared to just about everything Hollywood is producing, Allen's stuff has a tendency to charm. Even the fluffy stuff. These days it's just refreshing to go to a movie made by an actual human being.\"\r\n1\t\"There is such rubbish on the cable movie channels that I hit a gem with this one. From beginning to end it had me gripped and deserves top marks.<br /><br />Father of two sons hears messages from \"\"God\"\" to kill people who he is told are 'demons'.<br /><br />When the opening credits showed the director as one of the cast that can often be a warning of a bad film; exceptionally it is the reverse here as the drama is non-stop from beginning to end.<br /><br />And there is not one moment in the movie when one is not fully enthralled as there are no unnecessary or needless sub-plots, and the script is first class. <br /><br />All the actors give wholly convincing performances especially the lead child actor who is exceptional. <br /><br />This film is at least as good as the likes of 'Silence of the Lambs'.\"\r\n1\tThis movie is very funny. Amitabh Bachan and Govinda are absolutely hilarious. Acting is good. Comedy is great. They are up to their usual thing. It would be good to see a sequel to this :)<br /><br />Watch it. Good time-pass movie\r\n1\tThis effort is based on the true story of Jim Morris, a high school science teacher/baseball coach, who is inspired by his players to try out for the pros and fulfill his life-long dream of playing in the majors. Dennis Quaid, no stranger to sports films, plays Morris with enough conviction to make the part work and the producers do a credible job of recreating the real-world events that led to Morris brief stint as a relief pitcher for the woefull Tampa Bay Devil Rays. The first half of the film, dealing with his rag tag bunch of High School Baseball players (all of whom look way too old to actualy be in High School) is less effective and probably a bit too long. Overall the film does suffer from some pacing issues and a few extra subplots that we probably could have done without. However, it is still a fairly involving movie with an inspirational theme that proves once again that baseball is the national pastime for a reason. GRADE: B-\r\n1\tPortrays the day to day stark reality of survival on a ranch in the old west. Outstanding acting by both principal actors. This doesn't even feel like a movie...you feel like you're there. Animal activists should beware...many scenes are obviously not just realistic...they are real.\r\n0\tHow has this piece of crap stayed on TV this long? It's terrible. It makes me want to shoot someone. It's so fake that it is actually worse than a 1940s sci-fi movie. I'd rather have a stroke than watch this nonsense. I remember watching it when it first came out. I thought, hey this could be interesting, then I found out how absolutely, insanely, ridiculously stupid it really was. It was so bad that I actually took out my pocket knife and stuck my hand to the table.<br /><br />Please people, stop watching this and all other reality shows, they're the trash that is jamming the networks and canceling quality programming that requires some thought to create.\r\n1\tSilverlake Life, The view from here, is an absolutely stunning movie about AIDS as well as about a gay love relationship. Some images are indeed really hard to take, especially when one is gay or fears about AIDS, and probably for any sensitive person watching it. It's not easy to make a movie about such a terrible illness and its consequences about not only one, but two people's lives. This movie teaches how to care for each other in such hard times, but it never gets too morbid, it still shows life at any time, reminding you that outside of the theater or of your room, life goes on, whatever the destiny of some people may be. The characters are incredibly endearing, while we watch their intimacy in shots that never go beyond a very strict limit, never unveiling anything too private or offensive. Children should certainly not watch this movie, but grown-ups whether they have to deal with such situations or not, should do it, and will not regret the tears they shed.\r\n1\tChing Siu Tung's and Tsui Hark's A Chinese Ghost Story, aside from being one of the greatest wuxia pian films ever made, is a beautiful and romantic love story as well as an impressively choreographed martial arts film that should belong in every film lover's collection. The sorely missed Hong Kong superstar Leslie Cheung plays a traveling tax collector who spends the night at a haunted temple. While staying at the temple, he meets a colorful cast of characters that include the swordsmen Yin (Wu Ma) and Hsiao Hou, the Tree Devil, and the beautiful ghost Lit Sin Seen, played by the lovely Joey Wong.<br /><br />To free her from the clutches of the evil Tree Devil, he must reincarnate her body and travel to the underworld to defeat an even more powerful demon.<br /><br />Enough good things can't be said about this film. The pacing is perfect, with a great combination of romance, action, fantasy and humor, and the feverishly paced finale should leave you with little chance to breathe. The chemistry between the wonderfully tragic Joey Wong and Leslie Cheung (whose legendary career ended much too soon) really allows the viewer to feel for both of them. Indeed the acting on the whole is so vivacious and full of life, I would say this is one of the most fun viewing experiences I've ever had. Much of the credit goes to Wu Ma in his portrayal of the mysterious Swordsman Yin. His over-the-top persona of a disillusioned swordsman hell bent on vanquishing evil leads to some great moments of humor and traditional HK drama. A wonderful score, lush cinematography with eye popping colors, and frenetic action pieces courtesy of Ching Siu Tung round out this wonderful film. Find a copy anywhere you can. 10/10\r\n1\t\"I agree with all the accolades, I went through a box of tissues watching this film. It had a gritty authenticity and rang true in every way.<br /><br />The question I'm about to raise represents a current sensibility regarding the treatment of animals. I had a very difficult time with the beginning slaughter of sheep and goats, and the dying deer with its pulsing neck and pooling blood as its life drained away was hideous.<br /><br />This is the age of \"\"no animals were hurt in the production of this move.\"\" Iphigenia was made in the late 70's before the advent of computer simulation. Was it possible to fake these animal deaths? Or were these animals slaughtered for art?\"\r\n0\tThis could have been interesting  a Japan-set haunted house story from the viewpoint of a newly-installed American family  but falls flat due to an over-simplified treatment and the unsuitability of both cast and director.<br /><br />The film suffers from the same problem I often encounter with the popular modern renaissance of such native fare, i.e. the fact that the spirits demonstrate themselves to be evil for no real reason other than that they're expected to! Besides, it doesn't deliver much in the scares department  a giant crab attack is merely silly  as, generally, the ghosts inhabit a specific character and cause him or her to act in a totally uncharacteristic way, such as Susan George seducing diplomat/friend-of-the-family Doug McClure and Edward Albert force-feeding his daughter a bowl of soup! <br /><br />At one point, an old monk turns up at the house to warn Albert of the danger if they remain there  eventually, he's called upon to exorcise the premises. However, history is bound to repeat itself and tragedy is the only outcome of the tense situation duly created  leading to a violent yet unintentionally funny climax in which Albert and McClure, possessed by the spirits of their Japanese predecessors, engage in an impromptu karate duel to the death! At the end of the day, this emerges an innocuous time-waster  tolerable at just 88 minutes but, in no way, essential viewing.\r\n0\t\"Why did I go to see this film? Honestly, because Jim Carrey was in it and in the past he has made hilarious movies that have made me cry with laughter, so do you really blame me for expecting that again? Additionally, the premise, the funny trailer, his co-star Jennifer Aniston's involvement, and the fact it was a massive hit stateside encouraged me.<br /><br />However, as my \"\"one line Summary\"\" suggests, I was Disappointed. For various reasons;<br /><br />Reason 1: It wasn't funny. In a 2hour movie, I laughed for about 5-10minutes...all together, the rest of the time I sat thinking \"\"I really should have got some ice-cream\"\". I admit that maybe it is wrong to judge Jim Carrey on his previous films, but what does he really expect when he makes Gem's such as 'The Truman Show' , 'Liar Liar' , 'Me, Myself and Irene' , 'Dumb and Dumber' , 'The Mask', and the 'Ace Ventura' films then produces, in Bruce Nolan's own words, such a mediocre film?<br /><br />Reason 2: Jennifer Aniston's role was criminally underwritten. I mean hello! She's been around in the public eye for about ten years now, and in this film she gets about four lines to say. Wrong.<br /><br />Reason 3: One word - Cliché<br /><br />Reason 4: A casual deployment of specifically American References - Jimmy Hoffa, Walter Cronkite 'sweeps week' - is a clue to the film's specifically home-grown appeal. \"\"A teenager says no to drugs and yes to an Education - that's a miracle! Want to see a miracle soon? Be the miracle!\"\" God tells Bruce, a heavy handed sentiment that seems to have gone down a treat in the US, but might face tougher resistance in markets that retain an inkling for subtlety. Additionally, I still go to school, and that statement suggests me and all of my friend's are miracles...or maybe it just means we have brains?<br /><br />In this film there are enough funny Carrey moments to make you chuckle and prevent Bruce Almighty from being a total calamity, but you are advised to start revising your expectations downwards.\"\r\n0\t\"I am writing this review having watched it several months ago....the trailer looked promising enough for me to buy this lame excuse for a movie. It is a complete joke....and literally a spit in the face of real classics of the early generation of horror like Texas Chainsaw Massacre (1974) which they even had the gall to compare itself to on the back of the cover art. The producer who played Brandon should go flip burgers and serve up greasy hamburgers....hell he might not even be good at that either! The lighting was bad bad bad and a big annoyance through out the film you couldn't even see the actor's faces sometimes. I don't even remember the rest of the cast members which is sad really, bad they never do anything to impress you to make them memorable. That's all the time I will waste on this review PLEASE stay as far away as you can from this pile of junk even if you get it for 25 cents don't do it buy s piece of gum at least IT would keep you entertained!<br /><br />If you want good quality low budget fun, far better than this... then check out a Jeff Hayes film....because it takes talent to make it in horror and the kid has it!<br /><br />I gave this 1 star just for the cover art....thats the only thing worth liking abut this so called \"\"film\"\"<br /><br />-Rick Blalock\"\r\n1\tThis is one horror movie based TV show that gets it right. Friday the 13th the series had no connection to the movies. Poltergeist the legacy: I'm not so sure. It may have been loosely connected to the movies. It feels like they just throw a famous title on a show so fans will watch it.<br /><br />It shows Freddy being burned by the Elm street parents(in the 1st episode I believe) and the amount of parents were disappointing. With all the kids he targeted in the 1st 3 movies, you'd expect there to be more parents. But oh well.<br /><br />Freddy is basically the narrator for the show. He watches the actions of people in the real world sometimes getting involved somehow. Just like other anthology shows like Tales from the crypt, there's a supernatural or surprise ending twist involved.<br /><br />The acting lacks but believe it or not: the violence sometimes surpasses that of the movie. This show lasted a couple of seasons and was made around the time of the 4th movie. i heard it was canceled due to protesting parents. I watched a lot of R rated stuff as a kid, so its a shame parents had to ruin it for everyone. 4 more movies came after the series , so it wasn't a total loss.\r\n0\t\"Black and White film. Good photography. Believable characters. <br /><br />Just awful.<br /><br />I have wasted another perfect evening watching a film that other rated as \"\"worthy\"\" and \"\"very good.\"\" There is some good acting here and the back ground setting for the plot is good (more should have been done with this) but it is very slow to grow and never develops. It is totally bases on sex without much romance with much un needed nudity. More could have been done with the main characters. If you are looking for something to watch with you family this in not the movie and if not you will have trouble sitting through it. Though this film is long its only about 1 inch deep!\"\r\n0\tThis movie is a bad attempt to make original fans feel complete. The one thing people have forgotten is the fact that the reason the original won such acclaim, was strictly do to the fact that it was supposed to make you feel incomplete.<br /><br />This movie makes me want to go to the washroom. I am not a negative type of guy, but man the acting in this flick is.... no comment. The plot was a bad reflection of the life of Carlito Brigante and I am sorry to have had two hours of my time and my money wasted on this flick. I still love the original and will do my best not to let this movie ruin my opinion about it.\r\n1\t\"If you like Jamie Foxx,(Alvin Sanders),\"\"Date From Hell\"\",'01, you will love his acting as a guy who never gets an even break in life and winds up messing around with Shrimp, (Jumbo Size) and at the same time lots of gold bars. Alvin Sanders has plenty of FBI eyes watching him and winds up getting hit by a brick in the jaw, and David Morse,(Edgar Clenteen), \"\"Hack\"\" '02 TV Series, decides to zero in on poor Alvin and use him as a so called Fish Hook to attract the criminals. There is lots of laughs, drama, cold blood killings and excellent film locations and plenty of expensive cars being sent to the Junk Yard. Jamie Foxx and David Morse were outstanding actors in this film and it was great entertainment through out the entire picture.\"\r\n1\tWhat makes Midnight Cowboy into a successful movie is the way in which Joe Buck becomes bonded to Ratso Rizzo through a series of hardships that affect them both. There really aren't many glimpses of hope in this film for either character, but the hard realities that beset them both give the film its own type of optimism that these men can at least find humanity within each other.<br /><br />This film features Jon Voight's finest performance and probably Dustin Hoffman's as well. The rest of the cast is made up of unknowns, though it is rounded out by a fine series of character actors, including the cowpoke on the bus at the start of the film. Also, for those interested, Andy Warhol's apprentice Paul Morrissey shows up briefly during the party scene.<br /><br />If you haven't seen this movie, it is essential. Check it out.\r\n0\tI absolutely hate this programme, what kind of people sit and watch this garbage?? OK my dad and mum love it lol but i make sure I'm well out of the room before it comes on. Its so depressing and dreary but the worst thing about it is the acting i cant stand all detective programmes such as this because the detectives are so wooden and heartless. What happened to detective programmes with real mystery??? I mean who wants to know what happened to fictional characters we know nothing about that died over 20 years ago??? I wish the bbc would put more comedy on bbc1 cos now with the vicar of dibley finished there is more room for crap like this.\r\n1\t\"\"\"Bedknobs and Broomsticks\"\" is a magical adventure film with a certain charm, despite not being one of the best Disney works. It has a generally good story, nice songs, great characters, good actors, magical and delightful special effects, good settings and lovely landscapes of England.<br /><br />It also combines very well live-action and animation. The animation itself is, of course, pretty good. The animation resembles very much that of the 1973 animated film \"\"Robin Hood\"\" and the same can be said about the animated characters: there are plenty of wild animals such as bears, elephants, hippos, lions, crocodiles and others like in \"\"Robin Hood\"\". Besides, the King (a lion) seems to be a mix of Prince John and King Richard, not to mention that the bear does look like Little John.<br /><br />This movie is often compared to \"\"Mary Poppins\"\" with a reason. Both combine live-action and animation with a similar artwork. Both have similar settings in London. Both have their own magic and a magical woman. The kids (Carrie, Charlie and cute little Paul) are a bit like the Banks children. Both movies were directed by Robert Stevenson and both cast David Tomlinson. However, instead of a very serious man like George Banks, David Tomlinson plays a merrier and magical man - Professor Emelius Browne. With its magic, this movie has also some slight but significant similarities to Harry Potter's stories.<br /><br />The majority of the songs are good. \"\"The Age of Not Believing\"\" and \"\"The Beautiful Briny Sea\"\" are the very best. \"\"Portobello Road\"\" is nice too.<br /><br />David Tomlinson is great in this film once again. Angela Lansbury is great as Miss Price and the 3 kid actors are all fine too: Cindy O'Callaghan as Carrie, Ian Weighill as Charlie (a boy in «the age of not believing») and Roy Snart as the youngest brother Paul.<br /><br />I like the black cat. It's pretty cool. It looks a bit like Salem, the black cat from the TV series \"\"Sabrina, the teenage witch\"\". I find cute whenever one of the movie's characters is transformed into a white rabbit. Rabbits are really cute, fluffy and adorable animals. I just love them! Even funnier is whenever Professor Emelius Browne is transformed into a white rabbit because, when he's transformed in human again, he shakes his nose like a rabbit. It's really hilarious, combined with his comical figure and that mustache.<br /><br />Overall, this is an okay movie, but its ending is quite bad. The first minutes of the movie are nothing special, but then it improves a lot. The ending, however, is weak. That's my major criticism about it, in great part because the animated knights thing is a little too much for me and also due to the war feeling.\"\r\n1\t\"Seven young people go to the forest looking for a bear.Soon they are all stalked and viciously murdered by a crazy Vietnam veteran.\"\"Trampa Infernal\"\" is a pretty entertaining Mexican slasher that reminds me a lot \"\"The Zero Boys\"\".The film is fast-paced and there are some good death scenes like throat slashing or axe in the neck.Unfortunately there is not much gore,so fans of grand-guignol will be disappointed.However if you are a fan of slasher movies give this rarity a look.Mexican horror flicks are quite obscure(I have seen only \"\"Alucarda\"\" and \"\"Don't Panic\"\"),so this should be another reason to see this enjoyable slasher.My rating:7 out of 10.Highly recommended.\"\r\n1\t\"The delivery of some very humorous rude lines by Pierce Brosnan is alone worth the price of admission. He plays a kind of \"\"James Bond's psycho twin brother\"\", separated at birth, no doubt. As an intense hit-man, his character is very sexual but even better, very funny. Add the kind-hearted, uber-likable American \"\"guy next door', Greg Kinnear, to set up contrast. The myriad locations, vivid colors, and quick-witted humor provide great entertainment. Hope Davis is well cast as the \"\"gem of a wife\"\". But the focus of the film is on the two fellows, a new \"\"Odd Couple\"\", and that's the part that works very well. Have a great (probably R-rated) laugh, and look for the places where the story goes a little deeper.\"\r\n0\tTashan - the title itself explains the nature of the movie.<br /><br />This type of movies are actually made for flop. What a shame that Yash Raj Films produces such movies those are worthless than C-grade movies. Or even some C-grade movies have better and pleasing story than Tashan. The much hyped and over-confidently promoted Tashan poorly bombed at the box-office which it certainly deserved.<br /><br />In my view, this is the worst movie ever made from honourable Yash Raj Films' banner. How come they handled such a heavy project to new Vijay Krishna Acharya who has no actual sense of making action flick? He tried to imitate Sanjay Gadhvi's ways of making like Dhoom but he suffered at last. The action scenes are more like than comics or cartoon movies made for exhausting the audiences.<br /><br />The story also loses in its meaning and substances to tenderly win the audiences' hearts. In most scenes Anil Kapoor reminds me of southern Tamil star Rajnikant in his body languages and wordly expressions. I am not a fan of neither Saif nor Akshay, but the award of Kareena should have finally gone to Saif''s hand instead of Akshay. Just from the starting point I expected of it, but at the end it displeased me with the climax truth. Saif is the main behind the whole adventure, while Akshay joins in the midst. In any movie, the final should be judged with the whole characters of the entire story and the award or say reward should be given to the one who deserves credit. And Tashan loses in this way, and unexpectedly failed to become a hit.<br /><br />Akshay's has nothing new to show off his comedian talent here but still reminds of his previous movies. He seriously need to form a new image to his fans that would impress them again and again. In between Saif did a great job in Race, and now he returned again in his hilarious nature through this movie. But he has fully developed himself in the acting field. And last but not the least about Kareena. She looks really hot with bikini dress of which some complain as she became too lean. But I myself don't think so, instead she became slim. Yes slim!!! it is a good factor for a female to attract the major people (or say, male). Beside them it is nice that Saif's son Ibrahim appears in the beginning & last as young Saif. I hope now he too will lean forward in target of making acting as his career.<br /><br />Those who like this Tashan they are either mentally immatured or still want to go back to childhood, or say want to be admitted in an asylum. Thumbs down to debutante director Vijay Krishna Acharya who mishandled the project offered by Yash Raj Films. In future he should experiment and study the script minimum of 5 years before going into practical directions.<br /><br />Sorry, I don't like to rate good stars to this type of junk movies.\r\n0\t\"Guy de Maupassant was a novelist who wrote a novel about a man, a poor man, without any moral qualities. He only wanted to success in a society where all the people, the politic men, the businessmen, the journalists, the women are corrupt. The only king is MONEY. The Maupassant hero, Charles Forestier is going higher and higher in the society scale thanks to his seduction poser. He is in love with all the women who could help him in his action to climb the society stapes. At the end of the novel, he married himself with the biggest daily paper owner's daughter, in the greatest church of Paris : \"\"La Madeleine\"\". \"\"Le Tout Paris\"\" is there. He has a fortune and more, he will become a member of Parliament and later a Minister. The \"\"useless\"\" women are out of his view, but he is always keeping in touch with the pretty and the usefull women. The picture \"\"THE PRIVATE AFFAIRS OF BEL AMI\"\" is a story of MORALITY. It is everything, but not a story in the Maupassant idea. Why had they put \"\"BEL AMI\"\" in its title ?\"\r\n0\tWell.......in contrast to other comments previously written I have to say that the only good thing about this film is the fact that one guy in it looked a bit like Jason Donavon which reminded me of my youth. I have no idea how it won any awards, and although I'm sure a great deal of effort went into making it it was all fruitless as the final outcome is one which screams of early 90's foreign soap operas. The plot was non-existent, the cinematography was hopeless and the acting was on par with an a-level performance. It was unfortunately long and the sub-plots were incredibly unrealistic....for example....if your best friend slept with your ex-boyfriend of 6 years after only 2 weeks of being broken up you would not all remain the best of friends. It was all fantasy. That's all! Oh yeah, and the weird 90's house/soft core indie was mind numbing!\r\n1\t\"Working-class romantic drama from director Martin Ritt is as unbelievable as they come, yet there are moments of pleasure due mostly to the charisma of stars Jane Fonda and Robert De Niro (both terrific). She's a widow who can't move on, he's illiterate and a closet-inventor--you can probably guess the rest. Adaptation of Pat Barker's novel \"\"Union Street\"\" (a better title!) is so laid-back it verges on bland, and the film's editing is a mess, but it's still pleasant; a rosy-hued blue-collar fantasy. There are no overtures to serious issues (even the illiteracy angle is just a plot-tool for the ensuing love story) and no real fireworks, though the characters are intentionally a bit colorless and the leads are toned down to an interesting degree. The finale is pure fluff--and cynics will find it difficult to swallow--though these two characters deserve a happy ending and the picture wouldn't really be satisfying any other way. *** from ****\"\r\n0\t\"How viewers react to this new \"\"adaption\"\" of Shirley Jackson's book, which was promoted as NOT being a remake of the original 1963 movie (true enough), will be based, I suspect, on the following: those who were big fans of either the book or original movie are not going to think much of this one...and those who have never been exposed to either, and who are big fans of Hollywood's current trend towards \"\"special effects\"\" being the first and last word in how \"\"good\"\" a film is, are going to love it.<br /><br />Things I did not like about this adaption:<br /><br />1. It was NOT a true adaption of the book. From the articles I had read, this movie was supposed to cover other aspects in the book that the first one never got around to. And, that seemed reasonable, no film can cover a book word for word unless it is the length of THE STAND! (And not even then) But, there were things in this movie that were never by any means ever mentioned or even hinted at, in the movie. Reminded me of the way they decided to kill off the black man in the original movie version of THE SHINING. I didn't like that, either. What the movie's press release SHOULD have said is...\"\"We got the basic, very basic, idea from Shirley Jackson's book, we kept the same names of the house and several (though not all) of the leading character's names, but then we decided to write our own story, and, what the heck, we watched THE CHANGELING and THE SHINING and GHOST first, and decided to throw in a bit of them, too.\"\"<br /><br />2. They completely lost the theme of a parapyschologist inviting carefully picked guest who had all had brushes with the paranormal in their pasts, to investigate a house that truly seemed to have been \"\"born bad\"\". No, instead, this \"\"doctor\"\" got everyone to the house under the false pretense of studying their \"\"insomnia\"\" (he really invited them there to scare them to death and then see how they reacted to their fear...like lab rats, who he mentioned never got told they are part of an experiment...nice guy). This doctor, who did not have the same name, by the way, was as different from the dedicated professional of the original movie as night from day.<br /><br />3. In direct contrast to the statement that was used to promote both movies \"\"some houses are just born bad\"\", this house was not born bad but rather became bad because of what happened there...and, this time around, Nel gets to unravel the mystery (shades of THE CHANGELING). The only problem was, the so-called mystery was so incoherently told that I'm sure it remained a mystery to most of the audience...but, then there was no mystery in the first place (not in the book), because the house was bad TO BEGIN WITH. It's first \"\"victim\"\" died before ever setting eyes on it.<br /><br />4. The way the character of Luke was portrayed was absolutely ridiculous. He was supposed to be a debonair playboy who was someday to inherit the house (and was a true skeptic of it's \"\"history\"\")...and in this one he was just a winey-voiced, bumbling nerd who couldn't sleep(insomnia remember) and was a compulsive liar.<br /><br />5. I was also annoyed with the way the movie jumped from almost trying to recreate original scenes word for word (the scene with Nel's sister's family, and Mrs. Dudley's little opening speech...) to going off into flights of fancy that made me think more of these other movies than THE HAUNTING. It's like it couldn't make up its mind what it wanted to do.<br /><br />6. I missed Nel's narrative through the whole movie. The original was so like a gothic novel in the way that the story was mostly told in the first person, through Nel's eyes, and we always were privy to her thoughts. That totally unique touch was completely lost in the new version. They also tried to make Nel much more of a heroine. The original Nel was not a bad person, but she was a bitter person (could she be otherwise after sacrificing 11 years of her life to a selfish old woman and a spiteful sister?) and she liked to moan, and she lost her temper... This one was almost too good to be true. This was never more apparent than in the climax of the movie where the writer's had obviously been watching GHOST one too many times.<br /><br />7. They changed the history of the house and it's occupents too much. There was no Abigail Crain (the daughter of Hugh whose legend loomed large in the original versions), there was no \"\"companion\"\", and there was no nursery. There was also no \"\"Grace\"\" (wife of the original doctor) and Hugh Crain's wives died in totally different ways. These changes, changed the story WAY too much. I don't know whether the producers of this movie should be glad Shirley Jackson no longer walks this earth or whether they should...BE SORRY (if ya get my drift!!! The hauntings she could envision are not something to be trifled with!!!).<br /><br />In conclusion, let me just leave you with some words from the original Luke (appropriate substitution of the word \"\"house\"\" for \"\"movie\"\"!): \"\"This 'movie' should be burnt to the ground, and the ground sprinkled with salt!\"\" My favorite movie of all time remains so. No competition from this one.\"\r\n1\t\"This may just be the most nostalgic journey back in time & through time to when one's childhood starts a journey to reminiscences back & forth onwards & upwards,forwards & backwards,up & down & all around.The boy Jimmy,H.R. Puffinstuff,Dr.Blinky,Cling & Clang,Ludicrous Lion,& even the evil Witchie Poo too through & through. The latter day inspirations of Lidsville,\"\"The Brady Kids Saturday Morning Preview Special\"\" Sigmund & the Sea Monsters,and Land of the lost both the new & old are what this very show bridged the gap to as well as The Donny & Marie Show,The Brady Bunch Variety Hour a.k.a. Brady Bunch Hour & Even The Paul Lynde Halloween Special. Maybe even other things in between & Beyond the Buck just keeps on moving on & on & even beyond expectations & as well as unexpected bounds.Now as we get updated in March of '06 we know that Jack Wild's gone & so now it make's it even more symbolic for us to really get nostalgic.Including now in August of '06 both when Jack Wild guest stars as himself on Sigmund and The Sea Monsters as well as when on a latter episode H.R.Puffinstuff does too and to recall all of the other nostalgic journeys of all the Syd & Marty Kroft Characters as well including The H.R.Puffinstuff Goodtime Club;The Donny and Marie Show;The Brady Bunch Variety Hour a.k.a. The Brady Bunch Hour;etc. Truthfully,Stephen \"\"Steve\"\" G. Baer a.k.a. \"\"Ste\"\" of Framingham,Ma.USA.\"\r\n1\t\"This is a reunion, a team, and a great episode of Justice. From hesitation to resolution, Clark has made a important leap from a troubled teenager who was afraid of a controlled destiny, to a Superman who, like Green Arrow, sets aside his emotions to his few loved ones, ready to save the whole planet. This is not just a thrilling story about teamwork, loyalty, and friendship; this is also about deciding what's more important in life, a lesson for Clark. I do not want the series to end, but I hope the ensuing episodes will strictly stick to what Justice shows without any \"\"rewind\"\" pushes and put a good end here of Smallville---and a wonderful beginning of Superman.<br /><br />In this episode, however, we should have seen more contrast between Lex and the Team. Nine stars should give it enough credit.\"\r\n0\tJust kidding! This was one of the worst movies I have ever seen! It was so bad though, that it was hilarious. My friend and I purposly rented it because it looked so bad. Cheesy old horror flicks are always good for some laughs. The plot stunk, some of the voices were dubbed, the quality was horrendous. But I sure had a blast watching it!\r\n1\t\"The morbid Catholic writer Gerard Reve (Jeroen Krabbé) that is homosexual, alcoholic and has frequent visions of death is invited to give a lecture in the literature club of Vlissingen. While in the railway station in Amsterdam, he feels a non-corresponded attraction to a handsome man that embarks in another train. Gerard is introduced to the treasurer of the club and beautician Christine Halsslag (Renée Soutendijk), who is a wealthy widow that owns the beauty shop Sphinx, and they have one night stand. On the next morning, Gerard sees the picture of Christine's boyfriend Herman (Thom Hoffman) and he recognizes him as the man he saw in the train station. He suggests her to bring Herman to her house to spend a couple of days together, but with the secret intention of seducing the man. Christine travels to Köln to bring her boyfriend and Gerard stays alone in her house. He drinks whiskey and snoops her safe, finding three film reels with names of men; he decides to watch the footages and discover that Christine had married the three guys and all of them died in tragic accidents. Later Gerard believes Christine is a witch and question whether Herman or him will be her doomed fourth husband. <br /><br />The ambiguous \"\"The Vierde Man\"\" is another magnificent feature of Paul Verhoeven in his Dutch phase. The story is supported by an excellent screenplay that uses Catholic symbols to build the tension associated to smart dialogs; magnificent performance of Jeroen Krabbé in the role of a disturbed alcoholic writer; and stunning cinematography. The inconclusive resolution is open to interpretation like in many European movies that explore the common sense and intelligence of the viewers. There are mediocre directors that use front nudity of men to promote their films; however, Paul Verhoeven uses the nudity of Gerard Reve as part of the plot and never aggressive or seeking out sensationalism. Last but not the least; the androgynous beauty of the sexy Renée Soutendijk perfectly fits to her role of a woman that attracts a gay writer. My vote is eight.<br /><br />Title (Brazil): \"\"O 4o Homem\"\" (\"\"The 4th Man\"\")\"\r\n0\tThe 1930' were a golden age of Los Angeles with its film industry and great potential of various other possibilities to become rich and famous and happy. People were arriving there hoping to fulfill their dreams. Expecting open arms and welcoming offers there were only a few who managed to succeed and find their way to stardom, majority then condemned to live starving, disillusioned and unwanted, searching for a bit of respect in dirty bars and nasty hotel rooms. <br /><br />Young Italian-American writer Arturo Bandini arrives to LA on a similar quest - to spread his charms around to get one of those beautiful wealthy women and to write an excellent novel that would set him on a career path, having so far written a single short story published in an obscure anthology. Wishing to create a romantic masterpiece he seems to be unable to produce anything without experiencing it himself though, occasionally, he sends pieces of magazine stories to a local editor that helps him survive. He is proud to present himself as an Italian but deep in his heart he truly feels his Italian origin as a burden. The little money and the courage to conquer the world he once had are all long gone and watching his dream turning into a hangover he holds a last single nickel to spend. <br /><br />The coffee she brought him was cold and sour and spitting a curse on her triggers a never-ending relationship of insults, unspoken excuses and a love concealed beneath. Camilla being an uneducated girl trying to receive US citizenship through a marriage also carries her heavy cross of a non-perspective racial heritage. Though she is much of a stronger and life experienced person her situation as a beautiful Mexican woman is much harder to deal with than Arturo is able to realize. <br /><br />Is it obvious that Arturo eventually finds his inspiration to work on the novel? Is it possible that their love finally finds its place in the sun? Is it likely that their romance takes an unlucky turn?<br /><br />It is very surprising to find out that the chemistry between the two main characters, performed by Salma Hayek and Colin Farrell, does not work. The relationship lacks the raw and authentic feelings. Hayek though livelier a character compared to Farrell's forgot to arm Camilla with the passion and strength of her once brilliant character Frida. Also it is hard to have faith in a character which being intelligent but uneducated and illiterate uses quite difficult vocabulary and complicated sentences. A tougher character of a Phil Marlowe sort would definitely suit Farrell better, though he looks stunning in a period costume, he seems very lost trying to find the fragile world of a twenty-year old dreamer balancing between a hidden love and desire to be true to himself. <br /><br />Feeling embarrassed watching the two on the screen is not right. Their relationship might have been wild but it is more likely what a thunder and a lightning are without a storm, far from real passion, feelings just described not felt inside. It is very sad that such a potential of an interesting script and good actors was wasted, turned into a grey average of soon-to-be-forgotten.\r\n0\t\"Great western I hear you all say! Brilliant first effort! Well I'm not sure what film you all watched but it must have been a different one to the one I saw. Great westerns or indeed good films of any genre have characters you can believe in and this film had none! The acting was poor to say the least and I couldn't care less about any of the characters, making the whole film pointless. the story was too big for the makers and perhaps they should try their hand at making straight to TV low budget rubbish like you see on those \"\"FACT OR FICTION\"\" programmes on sci-fi.<br /><br />Please, if you are looking for a good film, a great western or even just an enjoyable hour and a half, please look elsewhere.\"\r\n1\tIt seems Hal Hartley's films are kind of hit or miss with most audiences. This film will be no exception to that rule. Fay Grim acts as a sequel to Hartley's 'Henry Foole' from 1998. The focus this time is on Henry's ex wife (played to perfection by the always welcome Parker Posey), who is being pestered by CIA goons about Henry's unpublished book about all of his shady dealings. In the interim of all of this, Fay ends up on an odyssey,dealing with international spies,etc. The film does get a bit bogged down in the second half. If you've been a fan of Hal Hartley in the past, this is one not to be missed. For the novice Hartley first timer who has only heard of his film making technique, you might want to check out his earlier films before taking on this one (especially if you haven't seen 'Henry' yet). I admired the camera work,which at times reminded me of certain early Man Ray photography.\r\n1\t\"When \"\"Good Times\"\" premiered in 1974, it was one the first black family sitcoms. It centered on the poor Chicago-based Evans family and their struggles to make ends. Most of the early episodes focused on the parents, James and Florida Evans, and their struggle to provide for the family. John Amos and Esther Rolle were the best part of the show. They were terrific actors and had great chemistry as James and Florida Evans. They had three kids: J.J., Thelma, and Michael. J.J. was the skirt-chasing but well-meaning teenage son who made up for his lack of subtletly with artistic talent. Thelma was an attractive, bright girl who was constantly trading insults with J.J. Michael was a near child prodigy who was well-educated on social issues and was destined to become a lawyer.<br /><br />In 1976, the producers made a huge mistake by firing John Amos, literally killing off his character. This really changed the focus, and not for the good I might add. The shows began to focus more on J.J. and his buffoon-like behavior which angered black viewers as well as series star Esther Rolle, who left after the next season. Instead of a show that focused on key African-American issues that existed in society at the time, viewers got shows that were overloaded with skirt chasing and fat jokes.<br /><br />Once Esther Rolle left, the quality of the show suffered even more. Although it was still watchable, it was no longer the great ground-breaking show that it once was.<br /><br />Although Esther Rolle came back for the 1978 season, it became obvious that the show was on its last legs. All loose ends were tied up during that season and the show quietly faded off the air.<br /><br />First three season: A. Last three seasons: C+.\"\r\n1\ti must say this movie is truly amazing and heartwarming. Reese Witherspoon is so charming and Jason London's not so bad either! it is so sweet watching Dani fall in love and it breaks my heart and yet warms my heart at the same time watching Court fall in love with Maureen. however it is even sweeter watching how much he cares for Dani. I must admit though i did kind of want him to fall for Dani in the end. it is just so cute watching her fall for him i did not want her to get her heart broken so badly. but the biggest tragedy i have ever seen occurred in this movie. watching him die made me cry for a whole day. i just could not believe it. however never a more loving relationship has been shown in a movie then Maureen and Dani. they really can make it through anything. i am giving this movie a 9 because i didn't want Court to die but it was still one of the most amazing movies i have ever seen.\r\n1\t\"Truly this is a 'heart-warming' film. It won the George Peobody Award, winning over \"\"Roots\"\", so that may tell you something of the essence of this film. I am looking on the Internet how to order this movie since my former father-in-law, Eugene Logan, the co-writer of this film has been deceased for a few years now so I no longer have the opportunity to receive information from him. I would love to have his only grand-daughters, my daughters, see this film, as well as to pass this wonderful story on to his great-grandsons. My oldest daughter was seven years old at the time it was aired on television and I since have been looking forward to seeing it again. One of my friends said it was her favorite movie. I won't 'spoil' this movie for you.\"\r\n1\t\"Pickup On South Street is one of the most brilliant movies ever made. An example of the directing: When Candy (Jean Peters) starts going through her purse and notices her wallet is missing, an alarm goes off in the background in the building she's in -- as if it's an alarm going off in her head. It's not cartoon-like -- it's subtly woven into the background in a way that strikes you on a subconscious level until you've seen the film a few times and it just \"\"clicks\"\" that there's an alarm bell going off when she starts frantically going through her bag.<br /><br />Richard Widmark is way on top of his game as a smart-alec -- he's really great -- but the highlight performance of the film was the first scene for \"\"Moe,\"\" the street peddler/informer, played by Thelma Ritter. Later, in her apartment, you are not seeing a movie -- you're seeing a real person. I've never seen anyone \"\"act\"\" so real I felt like I was looking into a real room until Ritter's performance -- right down to the way her hair stuck out a bit when she removed her hat. <br /><br />About a million other things just *worked,* from the way Lightning Louie picks up money with his chopsticks to the way Candy's jewelry clicks when she flicks Moe's hand away from her brooch, to the way Moe gets the dollars and change from the police captain across the FBI guy's chest -- and even the way the captain opens his filing cabinet, like he's been doing it in that way in that room for many years. \"\"Pickup On South Street\"\" is detailed moves (directing) with consummate performances (acting) and superb now-nostalgic visuals of the day, such as the panel truck, the boards leading to the shack out on the water, the dumbwaiter, -- and the unforgettable place Skip stashes his pocket pickings. Wonderful stuff.<br /><br />\"\"Pickup On South Street\"\" is also one of the few movies where, even though the characters aren't perfect, you do care about them -- perhaps because they have been somewhat branded by their pasts in ways that are hard to escape: Skip as a \"\"three-time loser\"\" and Candy as a youngish woman who has \"\"knocked around\"\" a lot. When these people behave a little more badly than you'd expect, it's in sort of novel ways that make it seem you're looking in at people you'd never otherwise imagine -- and yet you know that they are possible because the actors make them so recognizably human.\"\r\n1\tThis is an above average Jackie Chan flick, due to the fantastic finale and great humor, however other then that it's nothing special. All the characters are pretty cool, and the film is entertaining throughout, plus Jackie Chan is simply amazing in this!. Jackie and Wai-Man Chan had fantastic chemistry together, and are both very funny!, and i thought the main opponent looked really menacing!, however the dubbing was simply terrible!. The character development is above average for this sort of thing!, and the main fight is simply fantastic!, plus some of the bumps Jackie takes in this one are harsh!. There is a lot of really silly and goofy humor in this, but it amused me, and the ending is hilarious!, plus all the characters are quite likable. It's pretty cheap looking but generally very well made, and while it does not have the amount of fighting you would expect from a Jackie Chan flick, it does enough to keep you watching, plus one of my favorite moments in this film is when Jackie (Dragon) and Wai-Man Chan(Tiger), are playing around with a rifle and it goes off!. This is an above average Jackie Chan flick, due to the fantastic finale, and great humor, however other then that it's nothing great, still it's well worth the watch!. The Direction is good. Jackie Chan does a good job here with solid camera work, fantastic angles and keeping the film at a fast pace for the most part. The Acting is very good!. Jackie Chan is amazing as always, and is amazing here, he is extremely likable, hilarious, as usual does some crazy stunts, had fantastic chemistry with Wai-Man Chan, kicked that ass, and played this wonderful cocky character, he was amazing!, i just wished they would stop dubbing him!. (Jackie Rules!!!!!). Wai-Man Chan is funny as Jackie's best friend, i really liked him, he is also a very good martial artist. Rest of the cast do OK i guess. Overall well worth the watch!. *** out of 5\r\n1\t\"An ultra-nervous old man, \"\"Mr. Goodrich,\"\" terrorized by the news that a gang is stalking the city and prominent citizens are disappearing, really panics when someone throws a rock through his window with a message tied to it, saying \"\"You will be next!\"\" <br /><br />He calls the detective agency wondering where are the guys he asked for earlier. Of course, it's the Stooges, who couldn't respond because had come into the office, robbed them and tied them up. Some detectives! The moment poor Mr. Goodrich hangs up the phone and says, \"\"I feel safer already,\"\" a monster-type goon named \"\"Nico\"\" appears out of a secret panel in the room and chokes him unconscious. We next find out that his trusted employees are anything but that. Now these crooks have to deal with the \"\"detectives\"\" that are coming by the house for Mr. Goodrich.<br /><br />Some of the gags, like Moe and Larry's wrinkles, are getting a bit old, but some of them will provoke laughs if I see them 100 times. I always laugh at Shemp trying to be a flirt, as he does here with Mr. Goodrich's niece, in a classic routine with a long, accordion-like camera lens. The act he puts on when he's poisoned is always funny, too. Shemp was so good that I didn't mind he was taking the great Curly's place.<br /><br />Larry, Moe, Curly/Shemp were always great in the chase scenes, in which monsters or crooks or both are chasing them around a house. That's the last six minutes in here. At times, such as this film,\"\r\n1\t\"i liked this film a lot. it's dark, it's not a bullet-dodging, car-chasing numb your brain action movie. a lot of the characters backgrounds and motivations are kinda vague, leaving the viewer to come to their own conclusions. it's nice to see a movie where the director allows the viewer to make up their own minds.<br /><br />in the end, motivated by love or vengeance, or a desire to repent - he does what he feels is \"\"right\"\". 'will god ever forgive us for what we've done?' - it's not a question mortal men can answer - so he does what he feels he has to do, what he's good at, what he's been trained to do.<br /><br />denzel washington is a great actor - i honestly can't think of one bad movie he's done - and he's got a great supporting cast. i would thoroughly recommend this movie to anyone.\"\r\n0\t\"This is the kind of movie which shows the paucity of French cinema when it comes to making thrillers.The director's desire to \"\"sound American\"\" is so glaring that you will not be fooled a minute,unless you have not seen a serial killer movie since \"\"Peeping Tom\"\".<br /><br />Two male cops (or one and a half,more like,as you will see),horrible murders,a plot more complicated than complex.Charles Berling is not lucky with the genre(see the astoundlingly dumb \"\"l'inconnu de Strasbourg\"\" a couple of years ago).The scenes with his pregnant wife -which are supposed to be a counterpart for the otherwise noir atmosphere of the rest of the plot-are among the worst ever filmed.Add a steamy love scene between them and a gory autopsy to get a PG 12 and thus to attract the huge adolescent audience.A violent and absurd conclusion,followed by a silent epilogue who could make a nice commercial for the côte d'azur,it's really the silence of the lame.\"\r\n0\t\"Oh, brother...after hearing about this ridiculous film for umpteen years all I can think of is that old Peggy Lee song..<br /><br />\"\"Is that all there is??\"\" ...I was just an early teen when this smoked fish hit the U.S. I was too young to get in the theater (although I did manage to sneak into \"\"Goodbye Columbus\"\"). Then a screening at a local film museum beckoned - Finally I could see this film, except now I was as old as my parents were when they schlepped to see it!!<br /><br />The ONLY reason this film was not condemned to the anonymous sands of time was because of the obscenity case sparked by its U.S. release. MILLIONS of people flocked to this stinker, thinking they were going to see a sex film...Instead, they got lots of closeups of gnarly, repulsive Swedes, on-street interviews in bland shopping malls, asinie political pretension...and feeble who-cares simulated sex scenes with saggy, pale actors.<br /><br />Cultural icon, holy grail, historic artifact..whatever this thing was, shred it, burn it, then stuff the ashes in a lead box!<br /><br />Elite esthetes still scrape to find value in its boring pseudo revolutionary political spewings..But if it weren't for the censorship scandal, it would have been ignored, then forgotten.<br /><br />Instead, the \"\"I Am Blank, Blank\"\" rhythymed title was repeated endlessly for years as a titilation for porno films (I am Curious, Lavender - for gay films, I Am Curious, Black - for blaxploitation films, etc..) and every ten years or so the thing rises from the dead, to be viewed by a new generation of suckers who want to see that \"\"naughty sex film\"\" that \"\"revolutionized the film industry\"\"...<br /><br />Yeesh, avoid like the plague..Or if you MUST see it - rent the video and fast forward to the \"\"dirty\"\" parts, just to get it over with.<br /><br />\"\r\n1\t\"I enjoyed it. In general, I'm not a fan of comedies and comedians, but I do like Whoopi. I'm also partial to Sci/Fi Fantasy. And the dinosaur craze. I read for pleasure, but when I'm feeling over-stressed or really mind-dead, I watch TV & movies to escape. Theodore Rex enabled me to do so. That makes it a success in my eyes! I didn't even walk away to do something else while it was running. Whether or not it was rated as \"\"good\"\" or not doesn't really matter to me. And no, I'm not a juvenile. Nor am I a moron.\"\r\n1\tIt's a bit easy. That's about it.<br /><br />The graphics are clean and realistic, except for the fact that some of the fences are 2d, but that's forgiveable. The rest of the graphics are cleaner than GoldenEye and many other N64 games. The sounds are magnificant. Everything from the speaking to the SFX are pleasant and realistic.<br /><br />The camera angle is a bit frustrating at times, but it's the same for every platform game, like Banjo-Kazooie and Donkey Kong 64.<br /><br />I got this game as a Christmas present in 1997, and since then, I have dutifully gotten 120 stars over 10 times.\r\n1\tThis movie awed me so much that I watch it at least once a year. At times I find it uncomfortable. At times I find it empowering. And I always find the characters human and real. It is a movie that shows you the gritty reality of life in LA, starting with the recurring helicopter search lights scanning for the dangers lurking so close to the ordinary lives being carried on by the characters. It is also a movie that shows you how the kindness of a stranger can change your life and empower you to make a difference. Grand Canyon reminds you that every action you take, whether intended or not, has powerful repercussions. I found this movie to be similar in many ways to Robert Altman's film Short Cuts. Both had a star-studded roster of perfectly cast actors & actresses and both movies allowed you to gradually see how the the characters interrelated with one another and affected each other, for better or worse. Grand Canyon did a better job of providing a cohesive message, (hope in the face of despairing reality), than Altman's film, although I found them both intriguing in their own way. This film is a definite must see!!!\r\n1\tI swear I could watch this movie every weekend of my life and never get sick of it! Every aspect of human emotion is captured so magically by the acting, the script, the direction, and the general feeling of this movie. It's been a long time since I saw a movie that actually made me choke from laughter, reflect from sadness, and feel each intended feeling that comes through in this most excellent work! We need MORE MOVIES like this!!! Mike Binder: are you listening???\r\n1\tSaw this as a young naive punk when it was first released. Had me snifflin' like a baby as I left the theatre, trying not to let anyone see. So, when I saw it again now in '07, I knew what to expect & the sobs were ready & primed as their required moment approached. Thankfully this time I was at home.<br /><br />What I hadn't remembered from my youthful viewing- or perhaps hadn't noticed because of it, was the technical brilliance of this movie. The use of flashbacks which tell so much story without resorting to dialogue. The camera work which seemed to place the viewer, together with the characters in the scene. Think of the opening when Joe is crossing the street to the diner, the camera pans behind the woman & child sitting on a bench in the foreground, framing the street scene. <br /><br />The story itself, & the characters - seedy, sad & brutally real. It is very touching to be drawn so closely into a human drama such as this with people most of us would likely spurn. Then again, Joe & Ratso could be any of us. Must have been '70 when I saw it. I recall that upon leaving the theatre I was impelled to find the company of friends. All these years later, I'm glad I'm not alone tonight. This is one hell of a great movie.\r\n1\tHLOTS was an outstanding series, its what NYPD Blue will never be, on HLOTS the plots are real, the dialog is real, the Relationships are real. With HLOTS back as a movie, Tying up all the loose ends, it was good to have all the gang back together, even a few that passed away show up (wont say how) The storyline was fast paced, emotional and full of the spirit the series had week in and week out. Homicide , Life on the Streets, Network drama at Its BEST!!!! 5 STARS!!!! Thumbs UP and all That. Thanks NBC for giving us the Finally we didn't get!\r\n1\t\"\"\"Batman: The Mystery of the Batwoman\"\" is about as entertaining as animated Batman movies get.<br /><br />While still true to the feeling of the comic books, the animation is done with a lighter spirit than in the animated series. Bruce Wayne looks much like he has before, but now he appears somewhat less imposing. The Dick Grayson Robin has been replaced by the less edgy, more youthful Tim Drake Robin.<br /><br />Kevin Conroy, as usual, invokes the voice of Batman better than most live action actors.<br /><br />Kelly Ripa did a much more decent voice-acting job than I was expecting.<br /><br />As in the live action Batman films, the movie lives or dies based on the quality of the villains. My all-time favorite, the Penguin, is here. His design is sleeker than it has appeared before, hearkening more to the Burgess Meredith portrayal of the '60's than the Danny DeVito portrayal of \"\"Batman Returns.\"\" David Ogden Stiers is the perfect choice for the Penguin's voice. The Penguin is finally portrayed as a cunning sophisticate, just as he most commonly appears in the comics. Hector Elizondo's voice creates a Bane who's much more memorable than the forgettable version in \"\"Batman & Robin.\"\" And finally, Batman has a descent mystery to solve, putting the \"\"Detective\"\" back in \"\"Detective Comics\"\" (that is what \"\"DC\"\" stands for, after all.) The revolution to the mystery is a delightfully sneaky twist.<br /><br />The score adds to the mysterious ambiance of the movie. It sounds like a mix between the score from \"\"Poirot\"\" and the score from \"\"Mission: Impossible.\"\" All in all, it's more entertaining than your average cartoon.\"\r\n0\t\"The often-reliable Leonard Maltin says this is a \"\"delightful romance\"\" and that Sanders is \"\"superb.\"\" Maltin must have confused this movie with something else. Sanders is snide and droll and superb, as usual,  you can imagine his delivery of the line regarding adultery, \"\"Sometimes the chains of matrimony are so heavy they have to be carried by three,\"\" but dull, wooden and dated describe this movie more accurately. The storyline itself, an autobiography with Sanders as a suave jewel thief, Francois Eugene Vidocq, who becomes chief of police but can hardly resist the lure of fine jewels, is entertaining enough, but it has the same kind of hollow historical Hollywood treatment that marred such period epics as *Marie Antoinette*, and certainly the deplorable *Forever Amber* (which screams for a classy remake). Though, in his defense, Sanders tries mightily to add some depth to his character, it is all for naught. I am an unabashed Douglas Sirk fan, but this is 1946, and it is one of Sirk's earliest American efforts, lacking many of the signature touches that would define his florid, breast-heaving potboilers. Sirk is just getting his feet wet here, and made a number of unmemorable films over the next ten years until he struck gold with *Magnificent Obsession*, and hit his stride, bombarding us with such estrogen-fests as *All That Heaven Allows*, *Written on the Wind*, and *Imitation of Life*. But *Scandal In Paris* is hardly his best work  a relatively low-budget affair with cheesy sets and ineffective costuming.\"\r\n0\tThis film was so amateurish I could hardly believe what I was seeing. It is shot on VIDEO! NOT film! I have not seen the likes of this since the early 70's, when late night networks showed movie of the week 'horror flicks' shot in......video. It looks like a bad soap opera, and that is paying it a compliment. Some of the actors give it their best shot. Michael Des Barres does okay with what he is given to do, which is to act like a sex addict out of control. I can't say that it is pleasant to watch.<br /><br />Nastassja Kinski as the therapist sits in a chair for practically the entire film, with very little variation in camera angles. I can't fault her for someone else's poor blocking, but she is totally unbelievable in her role. Her little girl voice works against her here. And I consider myself a Nastassja Kinski fan. She is certainly ageless and exotic, but she's outside her range with this.<br /><br />Alexandra Paul is pathetically overwrought. Every line she delivers is with three exclamation points. Someone must have directed her to scream at all costs. Why would Michael Des Barres want to have sex with such a raging shrew?<br /><br />Finally, Rosanna Arquette as the sweet, maligned wife comes off okay, and probably the most believable of the bunch. But that is not saying much.<br /><br />This has to be the worst film I have seen in years.\r\n1\t\"Well, I'll be honest: It is not exactly a Sholay. But you cant get a Sholay every week. In fact, you could see distinct signatures of \"\"not without my Daughter\"\"(Sally Field, 1991) in this movie. However, as most \"\"inspired\"\" movies go, this one was a well-inspired one, well handled and well done. Nana Patekar, as usual, tends to overdo his hysterics, but all others are commendable. Specially so about Dipti Naval: Saw her after a long time, but she hasn't lost any of her grace. In fact, she has performed much better that when I last saw her. Another one of the Bollywood stars that seem to grow more beautiful as they age?<br /><br />All in all, a nice watch.\"\r\n1\t\"Frailty--8/10--It's non-sensical title and \"\"Bill Paxton Directs\"\" headline aside, this is a pretty good old fashioned rip snorting biblical horror thriller. In the end, it may end up only being the inbred Southern Gothic cousin of Kubrick's \"\"The Shining\"\"---but hey, that's a pretty damn entertaining notion. It's also got a doozy of a plot twist...and a very ambiguous moral message. This is the kind of movie that years from now people will catch late at night on basic cable and scare the beejesus out of themselves watching it. Too bad director Bill Paxton had to go hire himself to star...oh well....still a devil of a good rent.\"\r\n0\t\"Believe me, I wanted to like \"\"Spirit\"\". The idiotic comments people made at the time of its release about how quaint it was to see old-fashioned, hand-drawn animation again, as if the last pencil-animated cartoon had been released twenty years ago, and the even more idiotic comments about how computers had now made the old techniques obsolete, had got my blood up ... but then, the insulting, flavourless banality I had to endure in the first ten minutes of \"\"Spirit\"\" got my blood up even more.<br /><br />The character designs are generic, the animation (partly as a result) merely competent, the art direction as a whole so utterly, boringly lacklustre that you wonder how it could have come about (we know, from \"\"The Prince of Egypt\"\" and \"\"The Road to El-Dorado\"\", that there are talented artists at Dreamworks), and the sophisticated use of CGI is in every single instance ill-judged. (Why do they bother?) There's not a single thing worth LOOKING at. In an animated cartoon, this is fatal.<br /><br />But it gets worse...<br /><br />The horses can't talk, but they're far more anthropomorphised and unconvincing than the deer in \"\"Bambi\"\", which can. And it seems that, in a way, the horses CAN talk. Spirit himself delivers the prologue (sounding for all the world like a 21st-Century actor picked out of a shopping mall in California), and from then on his laid-back, decidedly unhorselike narration is scarcely absent from the soundtrack, although it never once tells us anything that we didn't already know, or expresses a feeling which the artwork, poor though it is, wasn't capable of expressing twice as well. That prologue, by the way: (a) contains information which Spirit, we later discover, had know way of knowing; (b) expresses ideas which Spirit would lack the power to express even if he COULD talk; (c) includes new age rubbish like, \"\"This story may not be true, but it's what I remember\"\"; and (d) will give countless children (the production is pitched, I presume, at six-year-olds) the impression that horses are native to North America, which is sort of true, in that the common ancestor of domestic horses, zebras etc. WAS native to North America - but all horse species on the continent had gone extinct long before the first humans arrived, and the mustangs of Spirit's herd (which allegedly \"\"belong here like the buffalo grass\"\") were descended from horses introduced by Europeans.<br /><br />So the prologue rather annoyed me.<br /><br />As often as Spirit talks, Bryan Adams sings, sounding as usual as though he's got a bad throat infection - and it's not THAT he sings or even HOW he sings, it's WHAT he sings: maudlin narrative ballads which contribute even less, if possible, than Spirit's spoken narrative, and which sound as though they all have exactly the same tune (although I was paying close attention, and was able to discern that they probably didn't). If only Bryan Adams and the guy-pretending-to-be-a-horse could have SHUT UP for a minute or two, the movie might have been allowed to take its true form: mediocre and derivative, rather than jaw-droppingly bad.\"\r\n1\tFantastic documentary of 1924. This early 20th century geography of today's Iraq was powerful. Watch this and tell me if Cecil B. DeMille didn't take notes before making his The Ten Commandments. Merian C. Cooper, the photographer, later created Cinerama, an idea that probably hatched while filming the remarkable landscapes in this film. Fans of Werner Herzog will find this film to be a treasure, with heartbreaking tales of struggle, complimented by the land around them, never has the human capacity to endure been so evident. The fact that this was made when it was shows not only the will of the subjects, but of the filmmakers themselves.\r\n0\t\"This may not be the very worst movie Peter Sellers ever did (I think that laurel goes to \"\"The Prisoner of Zenda\"\") but it is surely the most depressing. Sellers, especially sans makeup as Nayland Smith, looks like he has just undergone chemotherapy. As Fu Manchu, he looks hardly better and spends most of the film (with the exception of those strangely disturbing scenes where he gets jolted with electrical currents) on the verge of collapsing under the weight of all that makeup. The supporting players also look tired and run down, and Sid Caeser's presence is offensive even without his constant references to \"\"Chinks!\"\" (One bright spot: this would be one of the last times a major motion picture would portray Asians so insultingly ... or, for that matter, star a non-Asian as one!). The film seems surprisingly cheap, with soupy photography and drab sets - even the whiz-bang Elvis number at the end looks cut-rate. Only the stunning Helen Mirren and the tall, thin, nervous guy who get his pants wet add any sparks of life to this sad affair. All in all, this film provides an eerie premonition of a great comic's death, and an even eerier documentation of his dying.\"\r\n0\tWhen I go to see movies I would stay up and watch it or if I did not like it, I would go sleep, but this was pure crap, I actually got up and walked out!....This was poorly script and put together, I hated it. Also, they should not have taken Brendan Frasier off, he was much better. This was not as good as I had expected, considering that I really liked George of The Jungle 1, and the graphics weren't as good as the first one, for instance, the bird, and when ever he crashed in a tree. I hope that the director of this takes heed, and next movies he make, he needs to reconsider...horrible! I really would like to give Ursla a job well done, as she made the movie worthwhile (until I walked out)...overall I give this movie a 2 out of 10\r\n1\t\"This movie was well done in all respects. The acting is superb along with the fine audio soundtrack which I purchased because it was so moving. It is my all time favorite movie ahead of eastwoods \"\"white hunter,black heart\"\". This movie is simply the best.<br /><br />cheers Zuf\"\r\n0\tI am very tolerant of really bad sci/fi and horror movies - I've been watching them since I was 4 or 5, so I've seen some really bad stuff, but I deal with it. I've even watched a lot of SciFi Channel movies so I know not to expect much - a usually promising movie that has no ending to speak of. Hope springs eternal, I guess - or the triumph of hope over experience, as they say. Unfortunately, this is a dog right from the beginning and I knew it, but like a moth to the flame, I kept thinking something, anything, interesting would happen. It doesn't. All of the actors give a decent performance - given the script, I don't know how they all kept straight faces. It has something to do with collagen-starved worm parasite creatures who are slowly taking over the human race, one body at a time. There's an evil plastic surgeon who collaborates with the enemy by giving them the outward appearance of humans...don't worry, he gets what's coming to him. The slug people themselves don't really know where they came from, they think they might have thumbed a ride on a meteor that landed on earth, but...somehow they know about the members of slug royalty among them - the slug princess has managed to breed with a human being who knows that she's the worm queen and loves her for her self...oh, must I go on? Please, I implore you, do not waste 2 hours of your life watching this...anything would be better...think of the worst, least enjoyable way you can spend two hours...it would be better than this.\r\n1\tThis show has a great storyline! It's very believable! A mans wife dies and he cant take care of his children alone so he calls on his brother in law his best friend and many others come later on in the show. Such as Rebeecca Donaldson, ,the lovable yet strong dog Comet , Nikki and Alex who you can find out for yourself (I don't want to spoil it for you) and of coerce Kimmy Gibler! (The sidekick of DJ) but the kids are wonderful too. This is Mary Kate and Ashley first took off! And also you may know Candace Cameron Bure from shows like St.Elsewere Punky Brewster and that's so raven! Jodie Sweetin plays Steph the love able middle child who feels left out. Really this is a very good show!\r\n1\tThis movie was awesome...it made me laugh, it make a bawl, and most of all it has talking animals in it!! this movie should be seen by all kinds of people! it is one of my favorite movies, and i just love it so much that i just had to comment on it!!!it rox! it is so heart felt and a wonderful storyline that makes up a great and heartfelt movie!my favorite character is shadow. this is because i think that he is the most interesting and charming. i used to have a golden retriever just like shadow, i miss him so much!!! he was my best friend and i knew that when he died, he would be in a happier place, but i miss him with all of my heart!! this movie is the best i love it and everyone should! Love your pets no matter what they do, cherish them forever!!!\r\n0\tGritty, dusty western from director Richard Brooks, who seems thoroughly engrossed in the genre while keeping all the usual clichés intact. Early 1900s horse race attracts a low-keyed cowboy (Gene Hackman), a suave gambler (James Coburn), a cocky kid (Jan Michael Vincent), and even a FEMALE (a surprisingly game Candice Bergen). Once the preliminaries are out of the way (with the predictable arguments over whether or not a woman should take part), this becomes a fairly engrossing entry, though one which breaks no new ground (it instead resembles something from Gary Cooper's era). Good-looking, if overlong piece has macho verve and a fine cast, yet the mechanisms of the plot get tiresome rather quickly. ** from ****\r\n1\t\"Even though it has one of the standard \"\"Revenge Price Plots,\"\" this film is my favorite of Vincent Price's work. Gallico has that quality that is missing in so many horror film characters- likeability. When you watch it, you feel for him, you feel his frustration, the injustices against him, and you cheer him on when he goes for vengeance, even though he frightens you a little with his original fury. As the film goes on, his character becomes tragic. He's committed his murder, but now he must kill to cover that up. And again to cover that one up. And again... your stomach sinks with his soul as it goes down its spiral- like watching a beloved brother turn into a hood. Even if the revenge story is of old, the plot devices themselves are original- Gallico uses his tricks to kill in more and more inventive ways. A shame this one isn't available for home veiwing.\"\r\n0\twell, the writing was very sloppy, the directing was sloppier, and the editing made it worse (at least i hope it was the editing). the acting wasn't bad, but it wasn't that good either. pretty much none of the characters were likable. at least 45 minutes of that movie was wasted time and the other hour or so was not used anywhere near its full potential. it was a great idea, but yet another wasted good idea goes by. it could have ended 3 different places but it just kept going on to a mostly predictable hollywood ending. and what wasn't predictable was done so badly that it didn't matter. the ending was not worth watching at all. sandra bullock was out of her element and should stay away from these types of movies. the movie looked rushed also. the movie just wasn't really worth seeing, and had i paid for it i would have been very mad. maybe i was more disappointed because i expected a really good movie and got a bad one. the movie over all was not horrifibly bad, but i wouldn't reccomend it. i gave it 2 out of 10 b/c i liked the idea so much and i did like one character (justin i believe, the super smart one). and it also had some very cheap ways to cover plot holes. it was like trying to cover a volcano with cheap masking tape, it was not pretty. anyway, if you see it, wait for the $1.50 theater or video, unless you like pretty much every movie you see, then i guess you'll like this one.\r\n0\t\"The premise for Circle of Two is an intriguing one. A forbidden love between a sixty year old painter Ashleigh (Richard Burton) and a fifteen year old girl Sarah Norton (Tatum O'Neill); and the question of whether such a relationship is acceptable given society's standards. The problem with Circle of Two, however, is that it fails to live up to its promise. Director Jules Dassin and Hedley should have put more thought into the screenplay. When I watched this film, I expected to learn something new about love and sexuality. Instead, I got boring dialogue, a pointless lecture on art, outings where Sarah seemed to have more fun away from Ashleigh, and a closing scene so artificial that its emotional impact was lost. This script makes good actors look bad. So one can imagine how the film's problems were compounded even further with the largely amateurish cast that Jules Dassin assembled. Tatum O'Neill was not in her element. I did not believe for a second that her character Sarah was in love with Ashleigh. Her performance seemed superficial, like a contestant at a beauty pageant. It was as though she forced herself to be happy, when the script required her to be happy, and to be sad, when the script asked her to be sad. The only scene I liked with her in was at the very end when she said nothing at all. That was probably the closest Tatum's Sarah Norton ever came to being real. But Tatum was not the only one at fault. Richard Burton's Ashleigh lacked the charm, the charisma and the complexity to attract even women of his own age, let alone a fifteen year old. The rest of the cast was also dismal. Even their arguing was unconvincing, because they waited to take turns. Who does that? Michael Wincott as the jealous ex-boyfriend Paul was probably the best thing in this film, but his role was small. To be fair to the actors, Dassin's direction let everyone down; but it is also true that a great movie goes beyond the script. Kubrick's Lolita did that with James Mason and Sue Lyon; Konchalovsky's Runaway Train went beyond the script with Jon Voight and Eric Roberts playing convicts. The directors of these films also knew how to use music to dramatize their films and reveal something about the characters in them. In spite of its own score (a combination of Antonio Vivaldi, Carl Off and Bernard Hoffer), Circle of Two never succeeds in doing that.<br /><br />In conclusion, the idea of a forbidden love story between an elder painter and a teenage girl is a good one, but its execution in Circle of Two is terrible. In many ways, it is a shame that a controversial, Lolita-type story  which most film directors for understandable reasons would prefer to avoid  did not have receive more intelligent treatment; that a script which actors would have gladly rehearsed was not written; that actors, who were committed to their part or had the talent to make their characters real, could not be found; and that the director Jules Dassin (who did so much better with films like Rififi and Topkapi) did not have to will to put his foot down and say, \"\"Before we do any filming, we must rethink the love story and revamp the script.\"\" The only silver lining is that one day an intelligent film about an elder painter and a teenager girl falling in love may one day be made. If such a film ever appears, this it will be surely spark controversy, debate and questions for many years to come.\"\r\n0\t\"Watching this I mainly noticed the ad placements. DHL, Aquawhite Strips, Rockstar and more. It's one product placement after another. It's quite obvious how this movie got its funding. Jessica Simpson's \"\"acting\"\" is laughable. Any Dick shouldn't ever get work because he plays the same lame character. The \"\"story\"\" is just a backdrop for this very long commercial. I can't believe this movie was even considered for theatrical release. The longer you watch this movie the more you're embarrassed for everyone involved. The only minor saving grace is Larry Miller and Rachael Lee Cook, who gets almost no screen time as Jessica's cousin. I'm embarrassed I watched the whole thing. I would recommend avoiding this one.\"\r\n0\tI'm sorry but I didn't like this doc very much. I can think of a million ways it could have been better. The people who made it obviously don't have much imagination. The interviews aren't very interesting and no real insight is offered. The footage isn't assembled in a very informative way, either. It's too bad because this is a movie that really deserves spellbinding special features. One thing I'll say is that Isabella Rosselini gets more beautiful the older she gets. All considered, this only gets a '4.'\r\n1\tSome of my favorite Laurel and Hardy films have very, very little plot. Instead, they give them a rather mundane situation and just let them be hilarious! Films such as HELP MATES and BUSY BODIES are among the funniest as you see the boys working or cleaning house. Here in DIRTY WORK, most of the film is akin to these other two films--Stan and Ollie are chimney sweeps and spend most of the film trying (quite unsuccessfully) to clean a crazy professor's chimney. Seeing Ollie fall through the chimney, the boys making the house a total mess and the insane behaviors of Stanley all work together to make a very pleasing film.<br /><br />However, in an odd twist, there is also a really weird subplot that begins and ends the movie. It seems that the professor is truly a mad scientist and he is working on a formula to make things younger. Late in the film, you see him make a duck into a duckling and even a duckling into an egg! Given that he then leaves the boys alone in the room, is it any surprise what happens next? While this subplot was unnecessary, it worked well enough. What worked exceptionally well was the middle portion. Give the boys nothing exciting to do and you'll be amazed at the hilarious results. One of the team's better films and it almost earns a 9.\r\n1\t\"Stack should have received the Academy Award for this performance, period. Its a crime that he did not. Amazing how he humanizes a rich worthless character. <br /><br />Dorothy Malone did earn a well-deserved Academy Award for her performance. In fact, all of the acting in this film is excellent.<br /><br />The plot begins with a taxi ride, then an airplane ride, then keeps moving on an emotional ride that will hold your interest throughout. You will be entertained!<br /><br />However, this is only a blatant soap opera. One-dimensional, 100-percent soaper. You might call it the ultimate soaper, because the acting so thoroughly triumphs over the material. Excellently acted, well directed, but strictly within its soap genre. I wouldn't even call it a melodrama (such as \"\"Mildred Pierce\"\" or \"\"Imitation of Life\"\"). While not denying the great entertainment value of this film, you can only imagine what this talented cast and director might have achieved with more substantial subject matter.\"\r\n0\tI rented it because the second segment traumatized me as a little kid. I snuck downstairs really early one morning, started watching HBO, and The Raft (segment 2) terrorized me good. This time around, I still enjoyed The Raft, although I couldn't tell whether it was for nostalgic reasons or if it was actually a good short. The other two segments were complete trash. I can't believe a producer somewhere payed to make this junk. All I've accomplished by watching this was to ruin one more childhood memory. Creepshow 2 will now join Rad among my list of tainted childhood classics. 4/10\r\n0\t\"Unreal \"\"movie\"\", what were these people on?? A mix of French Upstairs Downstairs, mating horses,porn (not suggested, its pretty full on for a film) & bestiality with a bit of Benny Hill music & chase scenes thrown in, its sounds crazy & its even more so to watch. **spoiler** It plods along in a tedious fashion for quite a while,.... then a Lamb does a runner, prompting woman in period dress to run off after it, she goes into the woods where she is set upon by an erect \"\"penis\"\" attached to a man in a bear/rat manky suit, I put it like that as its obvious the \"\"penis\"\" is in charge & gets way too much screen time, ejaculating for the most of it, anyway, in a nutshell, it turns out she liked a bit of bear/rat tadger & thats about it, the rest is just padding. **end spoiler** A film made to shock & offend, thus getting talked about, any publicity is good publicity I suppose,a waste of time really, but the \"\"main event\"\" has to be seen to be believed, its hard to imagine that anyone thought it was a good idea as they filmed it.\"\r\n1\t\"This truly funny movie has a zany cast of characters, just about every voluptuous middle-aged female in Hollywood, and a touching, funny love story. The Capomezza's and the Malacici's are rival caterers in an Italian neighborhood in New York. They are also at opposite--extreme--ends of the taste scale. Their children are cast in the lead roles of a church production of Romeo and Juliet. Naturally, they fall in love. On stage! The mayhem and confusion that this causes, as the parents feud with each other and their kids, is played out for us against the backdrop of the Capomezza's magnificently tasteless home, and their magnificently tasteless catered weddings.<br /><br />Besides the four over-the-top parents and the charming young lovers, the characters include a vaguely wise priest, a plain-speaking grandma, a lady who waves a wand and passes on spiritual advice she receives from a medium called The Blessed Roscoe, a motel with beds shaped like the back seat of a car, and two doves. There is not a sight gag or a punch line that doesn't click in this fast paced movie.<br /><br />Even the family names of the two families are part of the fun. \"\"Capomezza\"\" could be interpreted as \"\"low-brows,\"\" and \"\"Malacici\"\" could mean \"\"stuck-up snobs.\"\" <br /><br />If you are sensitive about Italian stereotypes, you may not like this movie. If Bette Midler embarrasses you, you may not like it, because all of the women in this movie make Bette Midler look like Martha Stewart. The rest of us should love it!\"\r\n0\t\"Omen IV (1991) was a bad made-for-T.V. movie. Since the 80's were over, I guess the executives were experimenting in meth (the drug of choice during the 90's) because there is no other reason to explain this travesty. Why did they even bother making this? A t.v. movie? What were they mulling over when this one came up on the idea board? Did they even think for a second that this movie would catch on as. Perhaps they thought it could make it as a series? We'll never know. But I know one thing. This movie was the major reason why I never bought the Omen trilogy. They should have knocked off a couple of bucks instead of putting out this \"\"extra\"\" disc.<br /><br />Omen IV is basically a average American family remake of the first film. Instead of a snot nosed punk kid, we get the spooky girl who's a total brat to everyone around her. If the family had stronger parenting skills, then none of the demonic events that have transpired in the past films would have never occurred. These parents need to put their foot down and do some real discipline! <br /><br />Not recommended, best to avoid at all cost!\"\r\n1\t\"I'll be honest with you...I liked this movie. It's a great zombie flick that is packed with action, original ideas, good acting, but is also packed with bad Zombie effects. Part IV, entitled \"\"After Death\"\" is also good. I would recommend this movie to horror fans everywhere.<br /><br />10 out of 10<br /><br />Fans of Horror Movies like this should Check out Puppet Master, Skinned Alive, Slumber Party Massacre, Sleep Away Camp, and other Full Moon Pictures flicks. For other recommendations, check out the other comments I have sent in by clicking on my name above this comment section.\"\r\n0\t\"I have seen many, many productions of The Nutcracker. Now perhaps I viewed this movie from the tainted point of view of a theatrical director, but I was disappointed. I'm sure people in the specific business of ballet choreography find this production impressive but from a purely theatrical perspective I found everything from design to choreography to be lackluster and unbefitting of a \"\"motion picture\"\". None of the traditionally \"\"weird\"\" and impressive costumes looked like what they were supposed to be (i.e. the candies didn't look like candies, the rats didn't look like rats but rather like chocolate kisses,) the acting was weak, perhaps toned down too much for the screen, and the choreography just didn't do anything for me. This makes the entire show very satisfactory (at best), as if it were intended to not set itself apart from any other production. But remember, again, this is from the artistic perspective of a theatrical director, not a dancer or a choreographer, but a straight male theatrical director.\"\r\n0\tMiraculously, this is actually quite watchable. I mean, it's bad. It's really bad. But whereas the original was so-bad-it's-ruining-my-life bad, this is so-bad-it's-mildly-entertaining bad. Right, that's enough faint praise. Production values are rotten across the board, the acting is excruciating and the Romero-wannabe satire can't make its mind up which side of the ecology fence it's mocking. Internal logic takes a back seat to heads propelling themselves out of fridges, virus incubation times fluctuating as the 'plot' requires, bullets working against the zombies or not, zombies having the power of speech or not. Gore is the draw, obviously, but the framework is so slapdash it's annoying. The dialogue sounds like it's been translated by the same computers that mangle instruction manuals, and the scale of the zombie infestation is implied with none of the ingenuity of Romero's films. It's all topped off with a horrendous synth score. Absolute rubbish.\r\n1\t\"This was the first PPV in a new era for the WWE as Hulk Hogan, The Ultimate Warrior, Ric Flair and Sherri Martel had all left. A new crop of talent needed to be pushed. And this all started with Lex Luger, a former NWA World Heavyweight Champion being given a title shot against Yokozuna. Lex travelled all over the US in a bus called the Lex Express to inspire Americans into rallying behind him in his bid to beat the Japanese monster (who was actually Samoan) and get the WWE Championship back into American hands. As such there was much anticipation for this match.<br /><br />But every good PPV needs an undercard and this had some good stuff.<br /><br />The night started off with Razor Ramon defeating Ted DiBiase in a good match. The story going into this was that DiBiase had picked on Ramon and even offered him a job as a slave after his shock loss to the 1-2-3 Kid on RAW in July. Ramon, angry, had then teamed with the 1-2-3 Kid against the Money Inc tag team of Ted DiBiase and Irwin R Shyster. To settle their differences they were both given one on one matches DiBiase vs Ramon and Shyster vs The Kid. Razor was able to settle his side of the deal after hitting a Razor's Edge.<br /><br />Next up came the Steiner Brothers putting the WWE Tag Team Titles on the line against The Heavenly Bodies. Depsite the interference of \"\"The Bodies\"\" Manager Jim Cornette, who hit Scott Steiner in the throat with a tennis racket, they were able to pull out the win in a decent match.<br /><br />Shawn Michaels and Mr Perfect had been feuding since Wrestlemania IX when Shawn Michaels confronted Perfect after his loss to Lex Luger. Perfect had then cost Michaels the Intercontinental Championship when he distracted him in a title match against Marty Janetty. Michaels had won the title back and was putting it on the line against Mr Perfect, but Michaels now had a powerful ally in his corner in his 7 foot bodyguard Diesel. Micheals and Perfect had an excellent match here, but it was Diesel who proved the difference maker, pulling Perfect out of the ring and throwing him into the steel steps for Shawn to win by count out.<br /><br />Irwin R Shyster avenged the loss of his tag team partner earlier in the night, easily accounting for the 1-2-3 Kid.<br /><br />Next came one of the big matches of the night as Bret Hart prepared to battle Jerry Lawler for the title of undisputed King of the WWE. But Lawler came out with crutches, saying he'd been injured in a car accident earlier that day and that he'd arranged another opponent for Hart: Doink the Clown. Hart and Doink had a passable match which Hart won with a sharpshooter. He was then jumped from behind by Lawler. This bought WWE President Jack Tunney to the ring who told Lawler that he would receive a lifetime ban if he didn't wrestle Hart. Hart then destroyed Lawler, winning with the sharpshooter, but Hart refused to let go of the hold and the referee reversed his decision. So after all that Lawler was named the undisputed King of the WWE. This match was followed by Ludvig Borda destroying Marty Janetty in a short match.<br /><br />The Undertaker finished his long rivalry with Harvey Wippleman, which had started in 1992 when the Undertaker had defeated Wippleman's client Kamala at Summerslam and continued when Wippleman's latest monster The Giant Gonzales had destroyed Taker at the Rumble and then again at Wrestlemania, with a decisive victory over Gonzales here. Gonzales then turned on Wippleman, chokeslamming him after a poor match.<br /><br />Next it was time for six man tag action as the Smoking Gunns (Bart and BIlly) and Tatanka defeated The Headshrinkers (Samu and Fatu) and Bam Bam Bigelow with Tatanka pinning Samu.<br /><br />This brings us to the main event with Yokozuna, flanked by Jim Cornette and Mr Fuji, putting the WWE Title on the line against Lex Luger and it was all on board the Lex Express. Lex came out attacking, but Yokozuna took control. Lex came back though as he was able to avoid a banzai drop and then body slam Yokozuna before knocking him out of the ring. Luger then attacked Cornette and Fuji as Yokozuna was counted out. Luger had won a fine match!!!!! Balloons fell from the ceiling. The heroes all came out to congratulate him on his win. Yokozuna may have retained the title, but Luger had proved he could be beaten. The only question was, who could beat him in the ring and get that title off him?\"\r\n0\t\"Going into a movie like I this, I was expecting absolutely nothing entertaining except for a whorde of kills.....what I got was even less.<br /><br />Christmas eve 1947 a kid witnesses his parents doing it while daddy is in a santa suit. Horrified, he runs up the stairs and cuts himself. The story begins 33 years later and Harry Stalling is your normal everyday joe.....cept for the fact he's obsessed with Santa. After his boss makes fun of him he goes insane, dressing up like santa and starts killing non-santa believing patrons and his boss. An unruly neighborhood catches up to him and just as they're about to torch him, he drives his van off a cliff.....into the moon. Not the best ending I've seen but it was original.<br /><br />It was a slow paced, boring movie that really had no redeeming quality except when Harry went apeshyt on the church goers. There was hardly any gore and even the \"\"sex\"\" scenes were toned down.<br /><br />Too boring......4 out of 10\"\r\n0\t\"This is one of the most boring movies I have ever seen, its horrible. Christopher Lee is good but he is hardly in it, the only the good part is the opening scene.<br /><br />Don't be fooled by the title. \"\"End of the World\"\" is truly a bad movie, I stopped watching it close to the end it was so bad, only for die hard b-movie fans that have the brain to stand this vomit.\"\r\n1\tAbsolutely the very first film that scared me to death. I happened catch it when my older brother(r.i.p.) was watching it. It was on a black and white TV and not really a good picture but it got me interested. Shortly after, my folks bought a color set and, as luck would have it, The Million Dollar Movie was showing it one Sunday.<br /><br />I had forgotten most of the plot, but it did not take long to catch up...and I got so scared I had a hard time sleeping that night! I mean sure it was just a movie but it involved a creature that not only came from space, but you could not hear it, or see it...and once it got hold of you it was too late. Even now, after all this time it still sends a shiver up my spine. A true classic, and even better a classic that I have seen scare the pants off a new generation!<br /><br />Long live The Blob!\r\n1\t\"\"\"Cry Freedom\"\" is not just a movie. It is a historical account, heroic story, and insight into the cultural background of a major event in history. Not only does Denzel Washington do a terrific job of impersonating a motivating, determined hero, Steve Biko, but he delivers a message to the public about the horrors of South Arfrican Apartheid. The story of Biko, an influential leader, and his main \"\"influencee\"\", Donald Woods, is a heartbreaking one. But, the ultimate success of his life can go beyond the atrocities committed in South Africa. \"\"Cry Freedom\"\" manages to communicate to its audience the optimistic aspect of the seemingly disturbing plot. It is because of great films like this one, that the public can become educated on terrible events in history, great leaders who sought to end them, and how we can never allow them to happen in the future. Because of this importance, \"\"Cry Freedom\"\" is an amazing film that should be seen by all.\"\r\n0\tIvan (Valeri Nikolayev) is a bitter, cynical journalist who investigates the unexplained. He travels to this small town where it's said that a witch (Ita Ever) is terrorizing the community.<br /><br />His car stalls and he takes refuge in a small building, and meets a beautiful, mysterious girl. Suddenly she turns into a demon and he kills her, and the town is wondering who murdered this woman...who I guess was the witch but I am not entirely sure. Ivan is now being pursued by her spirit, or something, and he has to have faith, or something, to beat it.<br /><br />I really hate Christian films. They are usually filled with lame actors, stupid storyline and minimal effects. Not to mention that this isn't just a Christian film...but a foreign one as well. The voice-over actor for Ivan made the movie more comical than terrorizing, because it is so high pitched and whiny. You won't miss much by missing out on this film.\r\n0\t\"The only redemption was the small part by Larry Miller. It seemed that the movie was trying too hard to be \"\"Something About Mary,\"\" but I didn't even like that movie and it still fell short of those standards. The actor who plays Paul was great, but Selma Blair is stuck in the stupidity of her Cruel Intentions character. James Brolin was great, but Paul's father seemed like he was trying too hard to be the Randy Quaid character from the National Lampoon's Vacation movies.\"\r\n1\tthis a great Disney flick.it is the story of an aging high school baseball coach(Dennis Quaid),who was once on his way to the big leagues as a pitcher,but suffered a career ending injury.but through series of events,Jimmy Morris(Quaid)gets a try out with a major league team and even makes the roster.this is a great family film.it is inspirational,but doesn't pour it on too thick.it's fun and entertaining.adults will enjoy this movie as well as kids.it is based upon a true story,though i'm sure the filmmakers took some liberties in telling the story.Quaid is sensational as the title character,very convincing.if you're looking for a film the whole family can enjoy,look no further.9/10\r\n1\tThis movie deals with one of the most feared geriatric diseases among the aging today. As one who has encountered a number of families who are facing the potential of Alzheimer's or who are in the formative stages, I would suggest that every health care giver recommend this movie to any family facing the trauma of this disease. The movie is designed primarily to speak to the family of the patient and reaches into the very heart of the struggle. Casting is excellent and the dramatic portrayal is outstanding with a very commanding plot line.\r\n1\t\"I felt duty bound to watch the 1983 Timothy Dalton / Zelah Clarke adaptation of \"\"Jane Eyre,\"\" because I'd just written an article about the 2006 BBC \"\"Jane Eyre\"\" for TheScreamOnline.<br /><br />So, I approached watching this the way I'd approach doing homework.<br /><br />I was irritated at first. The lighting in this version is bad. Everyone / everything is washed out in a bright white klieg light that, in some scenes, casts shadows on the wall behind the characters.<br /><br />And the sound is poorly recorded. I felt like I was listening to a high school play.<br /><br />And the pancake make-up is way too heavy.<br /><br />And the sets don't fully convey the Gothic mood of the novel. They are too fussy, too Martha Stewart. I just can't see Bronte's Rochester abiding such Martha Stewart domestic arrangements. Orson Welles' Rochester lived in cave-like gloom, very appropriate to the novel's Gothic mood.<br /><br />And yet ... with all those objections ... not only is this the best \"\"Jane Eyre\"\" I've seen, it may be the best adaptation of any novel I've ever seen.<br /><br />This \"\"Jane Eyre,\"\" in spite of its technical flaws, brought the feeling back to me of reading \"\"Jane Eyre\"\" for the first time.<br /><br />The critics of this production say it is too close to the book. For me, someone who valued the book and didn't need it to be any less \"\"wordy\"\" or any less \"\"Christian\"\" or any more sexed up, this version's faithfulness to the novel Bronte actually wrote is its finest asset.<br /><br />Bronte wrote a darn good book. There's a reason it has lasted 150 years plus, while other, slicker, sexier and easier texts, have disappeared.<br /><br />As a long time \"\"Jane Eyre\"\" fan, I was prejudiced against Timothy Dalton as Rochester. Rochester is, famously, not handsome; Jane and Rochester are literature's famous ugly couple. And Timothy Dalton is nothing if not stunningly handsome.<br /><br />But Dalton gives a mesmerizing performance as Rochester. He just blew me away. I've never seen anything like his utter devotion to the role, the text, the dialogue, and Rochester's love for Jane. Dalton brings the page's Rochester to quivering life on screen.<br /><br />Rochester is meant to be a bit scary. Dalton is scary. Welles got the scary streak down, too, for example, when he shouts \"\"Enough!\"\" after Fontaine plays a short piano piece. But Dalton is scary more than once, here. You really can't tell if he's going to hurt Jane, or himself, in his desperation.<br /><br />Rochester's imperiousness, his humor, his rage, his vulnerability: Dalton conveys all, sometimes seconds apart. It's stunning.<br /><br />And here's the key thing -- the actor performing Rochester has to convey that he has spent over a decade of his life in utter despair, lonely, living with an ugly, life-destroying secret.<br /><br />No other actor I've seen attempt this part conveys that black hole of despair as Timothy Dalton does. Current fan favorite Toby Stephens doesn't even try. Dalton hits it out of the park. If I saw Timothy Dalton performing Rochester in a singles bar, i would say, \"\"That guy is trouble. Don't even look at him.\"\" He's that radioactive with tamped down agony.<br /><br />Zelah Clarke is not only, overall, the best Jane I've seen, she's one of the very few Janes whom producers were willing to cast as the book casts Jane. No, folks who know \"\"Jane Eyre\"\" only from the 2006 version, Bronte did *not* describe a statuesque, robust Jane with finely arched eyebrows and pouty lips. Rather, Charlotte Bronte's Jane is, indeed, poor, plain, obscure, and little, and NOT pretty.<br /><br />Zelah has a small mouth, close-set eyes, and a bit of a nose. She's truly \"\"little.\"\" She is no fashion model. And she is the best Jane, the truest to the book.<br /><br />Some described her a cold or boring. No, she's true to the book. Bronte's Jane is not a red hot mama, she's a sheltered, deprived teen whose inner passions come out only at key moments, as Zelah's do here. The book's Jane is someone you have to watch slowly, carefully, patiently, observantly, if you want to truly plumb her depths. You have to watch Zelah, here, to get to know who she really is.<br /><br />I would have liked to have seen more fire in Zelah in one key scene, but that's one scene out of five hours in which she is, otherwise, very good.<br /><br />In spite of its closeness to the text, this version, like every other version I've seen, shys away from fully explicating the overtly Christian themes in \"\"Jane Eyre.\"\" Christianity is not incidental subtext in \"\"Jane Eyre,\"\" it is central.<br /><br />Helen Burns instructs Jane in Christianity, thus giving her a subversive, counter cultural way to read, and live, her apparently doomed, pinched life. It is Christianity, and a Christian God, who convinces poor, plain, obscure Jane of her equal worth, her need to live up to her ideals, and her rejection of a key marriage proposal. That isn't made fully clear here.<br /><br />In any case, Charlotte Bronte wrote an excellent, complex, rich novel, and this adaptation of it, of all the ones I've seen, mines and honors the novel best of any adaptation I've seen, and that says a lot.<br /><br />Other versions, that don't fully honor the book, end up being a chore to watch in many places. If you don't care about what Charlotte Bronte has to say about child abuse, or the hypocrisy of a culture built on looks and money, your adaptation of much of the book will be something people fast forward through to get to the kissing scenes between Jane and Rochester.<br /><br />This version, like Bronte's novel, realizes that everything Bronte wrote -- about Jane's experiences at Lowood, and her relationship to St. John -- are part of what makes Jane's relationship to Rochester as explosive and unforgettable as it is.\"\r\n0\t\"For me an unsatisfactory, unconvincing heist movie. With an A-List cast, particularly the three leads and an experienced maverick director like Spike Lee I was expecting far more and in the end felt that what was delivered added little to this movie sub-genre. For a start I didn't like the pacing of the film, starting off with mastermind Clive Owen's raison d'etre piece to camera, unnecessarily repeated at the conclusion, then finding the narrative peppered with confusing, not to say unreal-seeming witness interviews, then finding yourself jumped into scenes you sense had begun earlier. Of course the camera work is fluid throughout, constantly on the move and incorporating hand-camera shots a-plenty, but director Lee fails to deliver thrills or suspense, falling down fundamentally by not making anything of the key protagonists in the film. Denzel Washington is weighed down with the clothes and bad-ass jive talk of a \"\"Shaft\"\" movie thirty - five years earlier (he even has that \"\"no-one understands him but his woman\"\" thing going on, replete with his \"\"hot\"\" girlfriend, baiting her with some downright crude and inappropriate \"\"dirty-talk\"\") and his mild \"\"In The Heat Of The Night\"\" riff with Willem Defoe (in almost a bit-part) raises barely a ripple. Clive Owens plays his character with a resolutely English accent even as we're given to believe the gang is Arab-based, also hindered by having to play 90% of the film with a mask over his face. Jodie Foster delivers another of her patented tight-lipped, ice maiden, sub-Clarice Starling turns as a well connected financial bounty-hunter, if you will, to little effect. Overall it's a real mish-mash of a film, with a light but obvious twist at the end, in fact the title gives it away from the start, spoiler fans. Worst scene (of many) is undoubtedly Washington's witness-interview, unbelievably, with an 8 year old street-kid, although Owen's dialogue with the same child minutes earlier runs it close in the embarrassment stakes. During the film in-joke references are made by characters to classic heist films like \"\"Serpico\"\" and \"\"Dog Day Afternoon\"\" - but there's no honour in self-praise. More like \"\"The Hot Rock\"\" instead...and even that was good for a few laughs.\"\r\n1\tLike most other reviewers I have first seen this movie (on TV, never on the big screen), when I was a teenager. My Dad has always regarded this film highly and recommended it to me then, and I must say he was not only right, but this movie has stayed with me forever in the more than 2 decades since I saw it first time. I have seen it two or three more times since then (just a few days ago I gave it another watch) and it has not lost anything of its impact with time. It still a great and well worth to be seen movie! Manr regard Peckinpah's RIDE THE HIGH COUNTRY as one of the first and best later western, which had a realistic look at life in the old west, but the hardly known LAST HUNT is definitely the better movie and was even half a dozen years earlier. Actually it was probably 3 decades ahead of its time, or maybe it still is ...<br /><br />Although thinking hard and having certainly seen 100s of western (I like this genre) I can not remember any western as bleak and depressive as this one. Two men bound together, partly by hate, partly by not seeming to have other choices, surrounded by beautiful Ms. Padget, a crippled old man and a young Inian, leading the life of buffalo-killers until fate reaches out for one of them.<br /><br />Nobody who has ever seen this movie will be able to forget its ending and the last frames of this gem. When the camera moves on and away from Mr. Taylor a white buffalo skin comes into sight (on a tree)and echos from the past, when all the hatred began, are present again. Mr. Taylor has got his buffalo, but in the end the buffalo got him. <br /><br />Aside from the top performances of everybody involved, the intelligent script and the great dialogue, it should also be mentioned, that THE LAST HUNT is superbly photograped, I have seldomely seen a western that well shot (aside from the ones directed by Anthony Mann, which are also all superbly photographed), that all the locations are cleverly chosen and that even the soundtrack fits the picture very well.<br /><br />And director BROOKS is really a superb storyteller. Master craftsmanship!He has made quite a couple of really great movies and was successful in nearly every imaginable genre, but even in an as prolific career as this one, THE LAST HUNT still shines as one of his best, if not his best.<br /><br />Definitely would deserve a higher rating, compared to the 7-something RIDE THE HIGH COUNTRY enjoys.\r\n1\t\"This is a trio of tales, \"\"Shakti\"\", \"\"Devi\"\", and \"\"Kali\"\", about an experimental commune (or some such thing) called the Taylor-Eriksson group, which took people on journeys inside themselves and into the realm of the unknown, and left a bit of damage here and there, I'd say. Many years later some of that damage is still lurking and waiting for the right moment to show itself. Shakti tells the tale of a woman whose husband died mysteriously, in fact, he was torn apart, and the suspect was a man that may not have existed. Seems this woman is able to project some inner demon, or so finds out the sister of the man who was killed when she attempts to talk to this woman while posing as a reporter. Devi tells the tale of a young man who wants to \"\"jump out of his skin\"\". He's a skinhead, a speed freak, and is sent to see a psychiatrist who just happens to be a former member of this commune, which results in the good doctor helping the young man to realize his desire. This is probably the best of the three segments. Kali tells the tale of a healer, who attempts to \"\"heal\"\" this woman who was a part of this commune and lets loose some kind of demon that has lived in this woman, but one wonders if he did it or if SHE loosed it because it could not survive in her any longer. All three of these tales are pretty creepy and suspenseful because you're never really sure what to expect, and the premise and the settings are so unlike those of conventional horror films that it adds to the strangeness. This has a sort of low-budget look and feel to it but it also manages to conjure up a pretty creepy atmosphere throughout, much to its credit. I watched this with my mouth hanging open a good portion of the time and when the real scares (and gore) came it hit pretty hard. I found this to be a very interesting and disturbing film and liked it a lot. A good little find, this one, I'd give it 8 out of 10.\"\r\n1\tThere seems to be only two types of reviews of this film on the net. Those who hate it and curse Ralph Bakshis name and those love it and call it work of genious. I'm inclined to be in the middle. I'am forced to agree with most of the criticisms of this film (e.g.the cruel cutting of the story, badly rotoscoped charecters, over acting etc...) But dispite this I still love this film. The rotoscoping (when done properly)adds an eerie lifelike dimension to the charecters and the final battle scene at the end of the film is fantastic. The surrealistic scenes when the nineriders chase Frodo are stylish and well executed and the musical score... magic. Sadly the bad points outweight film but if you can bring yourself to ignore them it is a great film.<br /><br />(No doubt I'll be lynched by an angry mob of people who hate this film after writing this review, ah well, such is life)\r\n0\t\"You've heard it said to live every moment as if it's your last? Whether it's your last day or not, I beg you not to waste any part of it watching this! Nichole Hiltz provides some nice moments of eye candy (that alas, stays wrapped) and David DeLuise shows why he should stick to the small screen or dog food commercials. A shallow, unrealistic plot with dreadful dialogue means there is no \"\"Art\"\" in the \"\"Art of Revenge\"\".<br /><br />\"\r\n1\t\"Richard Attenborough who already given us magnific films as \"\"A Chorus Line\"\" and \"\"Gandhi\"\", once more surprise us making a beautiful hymn to the Nature. Indeed, the vast and (in that time) unexplored territory of Canada helps to compose the stunning beauty of the landscapes picked up by the motion picture camera. If the movie is really based on a true story, once more becomes evidente that \"\"men of vision\"\" are, in truth, men that lives beyond their time, with a historical perspective that only the Time will give them reason. The cinematography is magnificient, such as the cast lead by Pierce Brosnan, whose performance is due to Attenborough's master hands. A pleasing surprise is the appearance of Annie Galipeau in the role of Archie's beloved. Movie that must appears in a list of those who really loves the Nature...\"\r\n1\t\"Great entertainment from start to the end. Wonderful performances by Belushi, Beach, Dalton & Railsback. Some twists and many action scenes. The movie was made for me! Funny lines in the screenplay, good music. Dalton as the tough sheriff and Railsback as \"\"redneck-villain\"\". I must recommend this film to every action-adventure fan! 10/10\"\r\n0\tA young American woman visits her Irish roots and fends off a druid witch who is out to possess her. Sounds intriguing but after an interesting start, I got lost and spent most of the time wondering where it was going. The movie seems to be dithering in two directions -- are we watching the travails of the Irish-American woman battling her alcohol problem or are we watching a straight off horror flick about an evil witch that returns from the past? The director can't seem to decide. The two doesn't seem to gel and in the end you get nowhere. This could be so much better done and the story seemed to drag towards the end. This was most boring and disappointing.\r\n0\tI've rarely been as annoyed by a leading performance as I was by Ali McGraw's in this movie. God is she bothersome or what?! She says everything in the same tone and is horrible, so horrible in fact that, by contrast, Ryan O'Neal is brilliant. <br /><br />There is not much of a story. He's rich, she's wooden, they both have to Sacrifice A Lot for Love. His father is Stonewall Jackson, hers is called by his first name, in case you didn't notice the Difference in The Two of Them that They Overcame in the Name of Love. <br /><br />The Oscar nominations for this movie indicate it had to have been a bad year. John Marley is fine as Wooden's father, but a Supporting Nomination? At least Ali didn't win. <br /><br />I still think Katharine Ross should have played Jennifer, but then again, if it were up to me, Katharine Ross would have been in a lot more movies. She's certainly a better actress than McGraw. <br /><br />I didn't even cry when she got sick, never occured to me to even feel sad. <br /><br />It was nice to see Tommy Lee Jones looking like he was about 15, and the score is good. But this one is so old by now it has a beard a mile long, and the sin of that is its not that old, but it feels it.\r\n1\t\"Everyone has already commented on the cinematography (good to great), the personalities (larger than life), the structure (chronological, with many references to surf culture through time). What is missed is a bigger question of sociological importance: chucking mainstream American culture for something more fulfilling and rewarding.<br /><br />I was a surfer in the 1970s. We used to watch 16mm films at the local high schools in SoCal. I remember the great feeling of surfing all day until my skin radiated heat, putting on a Hawaiian shirt and shorts and going to watch the latest surf film at night. Often, the narrator was the filmmaker himself, reading a script off sheets of paper. Sometimes, a surf band or proto-punk band would add music. I was never happier. Except for the hooting and hollering, seeing 'Riding Giants' took me back in time.<br /><br />IT also reinforced a feeling that living life on the edge, not worrying about the money and the climbing the social and corporate ladder, not keeping up with the Joneses, pushing yourself physically and mentally for a fleeting moment of joy and jubilation - may be the answer to the question, \"\"what is the purpose of life?\"\" At least for those like Greg Noll, Laird Hamilton and the like, they seem to have found something that few of us are bold enough or honest with ourselves enough to pursue: to live life solely on our own terms. Maybe society would fall apart if we all did exactly what we wanted in life, but it is wonderful to see people who actually are living out their dreams.<br /><br />It was this message that really impressed me.\"\r\n1\tThis movie was such a blast! It has that feel-good, yet totally in your face attitude that draws me to a movie. It has a good message (party girl decides she needs a real job) yet she doesn't completely lose all sense of fun. I recommend this movie for anyone who needs some humor, but is also a thinker! :)\r\n0\tA low budget effort from Texas that's at least filmed well, but that is little consolation. Bad acting, or, should I say, bad over-acting, a pretty limp story line that's nothing new, bad special effects, bad, bad, bad. Seems like a bunch of young folks are putting together a haunted house for Halloween, which is done every year, but this year things are different. Has a long extended lesbian theme that is not only annoying but definitely fills out the empty spots, of which there are a lot. Putrid, puerile, definitely avoidable, at all costs.\r\n1\t\"I just saw this at the Toronto Film Festival, and I hope it gets wide release because I want to see it again! It is a character-driven film, and Andrew and David are more than up to the task. Any discussion of the plot might be<br /><br />considered spoilers, so I'll just say that the storyline is clever, the acting is superb, and the effects are amazing. Well-filmed and well-paced too. One of the best films I have seen in ages, and very refreshing in this summer of dreary<br /><br />movies. It had the audience laughing the whole time. See it if you can. (I particularly liked the \"\"Candy bar! Candy bar!\"\" scene.)\"\r\n1\tBased on Neil Simons play of the same The Odd Couple tells the story of best friends Felix Unger(Jack Lemmon)and Oscar Madison(Walter Matthau)who end up sharing Oscars massive bachelor pad after Felix tries to kill himself.<br /><br />He had a big row with his wife over his obsessive compulsive cleaning sprees and weird phobias and sends her a suicide telegram.She calls Oscar and lets him know what happened.Felix turns up at Oscar's during his weekly poker game with their friends Vinnie(John Fielder)Murray the policeman(Herbert Edelman)Roy(David Sheiner)and Speed(Larry Haines).After some side splitting hysterics it's agreed Felix will stay with Oscar.<br /><br />The rest of the film centres on how these two are such completely different characters.As well as looking at if Oscar can stand Felix's truly weird and unique habits and cleanliness and if Felix can stand Oscar being such a slob and his laid back attitude to everything. Really a film about two complete opposites living together and the joys,highs,lows and necessity of the gift that is friendship.With great acting an intelligent and very funny script and the great Monica Evans and Carole Shelley as the British Pigeon sisters who Oscar invites over for a double date.<br /><br />This one is guaranteed to make you laugh every line is priceless and Jack and Walter are fantastic with a great chemistry.Also made into a successful and equally funny TV series with Jack Klugman as Oscar and Tony Randall as Felix.\r\n1\tThis is by far the most incredible movie I have seen in a long time. The actors gave wonderful portrayals of the characters in the movie. The story was accurately portrayed. The story starts out with a young woman from the British Isles and her father traveling by steamboat to Nauvoo, Illinois. She has become a member of the LDS Church and he has not. He thinks she is ridiculous for making the trip and is discouraging. She encourages him to read about Joseph Smith, the Prophet. This is where the story of the Prophet Joseph Smith begins. The movie accurately portrays his life and some of the history of the LDS Church at the same time. It was graphic at times, but was needed. The emotional expression was very believable, which caused my emotions to spill out. Filming was awesome. The way in which the story was presented was touching. After the movie was over, we just sat there unable to moved. I was stunned. For people who know very little of Joseph Smith, the Mormon Prophet, I would encourage you to see this. If nothing else but to gain some understanding of his life. For those who are members of the Church, I would encourage you to see it. It will increase your testimony of this most incredible man. This is a must see.\r\n0\tThis review may contain some spoilers.<br /><br />The remake of the classic 1974 car chase movie Gone in 60 Seconds begins well. Actually it is well acted and the plot moves quite well. But even a big Hollywood budget doesn't change the fact that the original plot was more believable. For those who don't know, the original plot had the thieves working as insurance inspectors. Who would suspect them. But even with a change to nearly every aspect of H.B. Halicki's original, the remake is a very good movie, until we get to the final chase scene, the part of the 74 version that made it great. The one in this version is watered down, only 10 minutes, and it culminates in a monster special effect that takes all believability out of the chase. Where the original chase was very believable, the star was a stunt driver who did all his own stunt, the remake falls flat in the last 15 minutes. My advice, if you want to watch a classic car chase film, fine the original in the bargain bin at your local rental joint and stay clear of the new remake.\r\n0\t\"I really like slasher movies,but this one is truly awful.The acting is lame,the script is bad,and the atmosphere is non-existent.The plot is as follows:a deformed gardener Charlie Puckett slaughters people in a small American town.That's right-this is the plot.Very original,eh!\"\"The Night Brings Charlie\"\" isn't even gory enough-if the film ain't gonna be scary,at least they should make it bloody.Avoid this cheap piece of trash at all costs.If you want to see some good slasher flicks check out \"\"Madman\"\",\"\"The Burning\"\",\"\"The Prowler\"\",\"\"Just Before Dawn\"\" or \"\"Humongous\"\"- just don't waste your precious time with this worthless piece of garbage.\"\r\n0\tI didn't know if i would laugh or cry seeing this. Only addicted fans of danni filth could have a taste for this. This is supposed to be a horror movie but there's only filth in this. The most cool scene is the car accident, with real special effects from the best of hollywood. Avoid this movie at all costs. See this only for studies of how bad can be a movie................\r\n0\t\"This movie is a joke. I mean a \"\"ha ha\"\" funny joke. Why? Because the only redeeming thing about it was the good laugh I got at the sheer ridiculousness of nonsensical, inane plot and horrible acting. Wow!<br /><br />Within this movie there are so many unanswered questions... for example; why do these women become zombies and how? Why are there four black women who are zombie's \"\"caretakers\"\" and what is their purpose? Since when does 6 people make up a \"\"nation\"\" of Zombies? And is smeared black eye mascara \"\"scary\"\" to anyone, anywhere? Even a 2 year old?<br /><br />And lastly; Why was this movie made at all? Why? why? why? No answer? That's what I thought.<br /><br />On the demand channel they actually issued this comment after the synopsis of the movie: We apologize for this movie in advance\"\" LOL. At least they had the decency to do this much!\"\r\n0\t...said a couple exiting the movie theater just as I was entering to watch this. Hmm, not a good sign, but who knows? Different strokes for different folks, after all. Well, nope. They were being kind. Godard has released work that is passionate (Contempt), entertaining (Band of Outsiders), sometimes both (My Life to Live). This is just dull intellectualism, that grates on the nerves pretty quickly. During my showing, literally half of the audience had walked out by the end of the film. If only I had been so wise.\r\n1\tThis was my favourite film as a child, and I have been in the stage production a few times so it will always remain my favourite muscical and I doubt anybody could ever re-make the story of Oliver Twist on screen, any better than this one did.<br /><br />My all-time favourite ''bad guy'' has to be Oliver Reed as Bill Sikes. Not only did he scare the life out of my when I watched it as a 6 year old, but now as a woman I can empathize more with Nancys character, the bar maid/prostitute who helps Oliver get the life he deserves.<br /><br />Jack Wilde as the artful dodger, was fantastic, and I don't think anybody could ever out-do him, as the street-pocket picker, and best friend of Fagin. The music is fantastic, especially Fagin's numbers, I'm also quite thankful they didn't give Bill Sikes a musical number, it wouldn't of worked with him being such a sinister character.<br /><br />I think Carol Reed did an excellent job of Nancy's sticky ending, keeping it a G rated movie by disguising her beating, but giving enough away to show the violence of Bill towards her. <br /><br />This movie is both charming, and charismatic as a musical sing-along, as well as being a moving drama that follows a young boy as he tries to find where he belongs in life.\r\n0\t\"Daphne Zuniga is the only light that shines in this sleepy slasher, and the light fades quickly. If not her, than what other reason to watch this. five college kids are signed up to prepare an old dorm for its due date of demolition. Problems are automatically occurring when a weird homeless man is soliciting, and the group are short a few people. Then, a killer is on the loose. I honestly wanted to say I was going to enjoy this one. It had a fair set up, or maybe that was just Daphne Zuniga in it. The film is too slow, and almost as silent as a library. Most of the acting is below average, and the \"\"point-of-view\"\" moments are so old news. Acclaimed composer Christopher Young of such films as \"\"Hellraiser\"\" and \"\"Entrapment\"\" scored this, in a repetitive cue line that was better made for a TV movie. Still, it seems higher than the movie deserves. So, other than Young and Zuniga, this one scrapes the bottom of the barrel.\"\r\n0\tEasily the worst movie I have ever seen in my life. Direction : none. Story: pathetic. Screenplay : that will be a good idea. There is a lot of gratuitous graphics, all of pathetic quality. Preserve your sanity, dont ever see this movie !\r\n1\tBy the late forties the era of the screwball comedy was over, as films were moving in a different direction, comedically and otherwise. With television looming on the horizon, Hollywood would soon be in for a very rough time. Where, one wonders, would movies have gone had television not come along, or its arrival on the scene been delayed by five or ten years? Mr. Blandings Builds His Dream House offers one particular way comedy might have developed.<br /><br />Ad man Jim Blandings, along with his wife and two daughters, are living in a nice but way too cramped New York City apartment, as one day he gets the bright idea that it might be fun to realize his dream of building a house in the suburbs. So he buys some property in Connecticut and has one built to his precise specifications. Well, almost. Had he known the trouble he was in for he might have changed his mind. Then again he might not have. You decide. On this frail premise a wonderful film results, full of conflict between the middle class dream of owning one's own home and the the oftentimes unpleasant reality of acquiring one. Nothing comes easy in this life, as Mr. Blandings learns; but one needn't be miserable just because things don't always go one's way. There is, after all, the long run. But, Blandings asks himself every few minutes, how long is long?<br /><br />This movie is a delight. It is not, I suppose, a masterpiece in the Capra-McCarey tradition, but it is a worthy successor to their thirties pictures, and may well have been a harbinger of things to come had the arrival of television not changed the cultural landscape so radically. There is real warmth in the picture, and a good deal of (W.C.) Fieldsian hard-edged reality obtruding periodically, but not so much as to leave a bad taste. The people in the film are all very smart and affluent, but decidedly of the professional upper middle not the idle rich upper class.<br /><br />Lead players Cary Grant and Myrna Loy plays Mr. and Mrs. Blandings to perfection; while Melvyn Douglas is fine as their pragmatic lawyer friend, who often has to bring up unpleasant topics, such as how the real world works. There is, too, a wonderful sense of what for want of a better term one might call the romance of suburbia, which was in its infancy in the immediate postwar years, as one sees the woods and streams that drew people to the country in the first place. These people are most definitely fish out of water in the then still largely rural Connecticut. In a few short years things would change, as the mad rush to suburbia would be in full gear, destroying forever the pastoral innocence so many had yearned for in the small towns, which soon would be connected by highways, littered with bottles and cans, their effluvia rivaling anything one would encounter in the city.\r\n1\tThis movie feels like a film project. As though the filmmakers picked out a cross section of society with no experience and got to work. Characters are kind of uninvolved and naive though. Despite this amateurish feel, the movie is effective. It's like a cross-section of life with neighborhood kids trying to realize or nurture their honest sexual feelings. Being raised by a grand-parent, of course from that generation there is shame associated with sexuality. This provides for some predictable but well done conflict. Probably most enjoyable was the way the main character grew a little bit in his Romantic relationship realizing a greater depth to sexual feelings. A good watch but nothing stirring....\r\n0\t\"It definitely fits the time period as the Axis & Allies were playing espionage games throughout most of North Africa & the rest of the world. It's not the best of films, but certainly not the worst of the budget films as described previously from the compilation War Classics. <br /><br />Duncan\"\"Cisco Kid\"\" Renaldo was actually very good in one of his first feature films. I really enjoyed the performance of Harry Parke (credited as Parkyarkarkus). Why he never got any bigger roles is beyond me. He played the perfect buddy/partner role and saved the movie...imho.<br /><br />As said, this film was part of a budget package from Superbox-Mart entitled War Classics. Eight movies for eight bucks, which included other never-heard-from-films that has some decent stars trying to pay the bills.<br /><br />This script is...well, not so hot. The editing & cinematography is...worse. If you can by-pass all of that and want to see the future Cisco Kid & a great sidekick that sadly never fulfilled his true potential, definitely pick it up! Otherwise, there's other WW2 films to watch.<br /><br />-Thunderossa.\"\r\n0\t\"I almost made a fool of myself when I was going to start this review by saying \"\" This movie reminded me of BILLY ELLIOT \"\" but then I looked up the resume of screenwriter Lee Hall only to find out that he was the guy who wrote BILLY ELLIOT so it's Mr Hall who's making a fool of himself not me <br /><br />Am I being a bit cruel on him ? No because Lee has something most other aspiring screenwriters from Britain don't have - He has his foot in the door , he has previously written a successful British movie that won awards and made money at the box office and what does he do next ? He gives the audience more of the same <br /><br />Young Jimmy Spud lives on some kitchen sink estate . He is bullied at school and no one loves him . The only thing keeping him going is that he has aspirations to be a ballet dancer . No actually he has aspirations to be an angel but considering his household he may as well be a ballet dancer . He has a macho waster of a father who thinks \"\" Ballet dancers are a bunch of poofs while his granddad says \"\" Ballet dancers are as tough as any man you could meet . I remember seeing the Bolshoi ballet ... \"\" Yup Ballet is a main talking point on a run down British council estate those days - NOT . Come to think of it neither is left wing politics which seems to be the sole preserve of middle class do gooders who live in nice big houses , so right away everything about this set up feels ridiculously false <br /><br />Another major criticism is that this is a film that has no clue who it's trying to appeal to . I have often criticised Channel 4 for broadcasting movies at totally inappropriate times ( THE LAND THAT TIME FORGOT at 6 am for example ) but they showed this at 2 am and for once they've got it spot on . Considering the story involves politics , ballet dancing ( Gawd I hate it ) lung cancer and poverty there's no way this can be deemed suitable for a family audience but since the main protagonist is an 11 year old child and features angels and ballet dancers ( Don't blame me if I seem obsessed with the subject - there was no need to refer to them ) there's not much here for an intelligent adult audience either . <br /><br />Of course if Lee Hall had been told at the script development stage by the producers that he should write a story featuring a schoolboy and an angel and had flatly refused saying that he wanted to write about other themes and stories then I will apologise but throughout the movie you do get the feeling that once the film was completed it was going to be marketed to the exact same audience who enjoyed BILLY ELLIOT\"\r\n0\tThis Italian semi-horror movie starts out very much like a soft core porn movie and turns into a mystery that has a few to many loose ends to be good, that and the fact it is rather dull just makes this film rather unwatchable for my tastes. The only thing really worth watching are the many boobs spread throughout the film. The story has a guy who at the beginning of the movie luring girls to his castle where he proceeds to take them to his dungeon, go berserk and seemingly kill them. They show the nudity, but they never really show the murders at this point in the film. Then the guy finds a nice red head at a party and proceeds to make out with her and marry her. He has a thing for red heads you see as his beloved former wife Evelyn was also one, she also died under circumstances that must have not been the viewing audience's business. After a lot of talky scenes murders start to take place involving snakes, foxes and such. At this point it is easy enough to figure out who is responsible for the murders and what the motive is then you have a nonsensical ending where everything wraps up not so nicely. This movie just did not work for me, it left me with to many questions and the last third of the film just did not have the boobs of the first two thirds of the film. Explaining Evelyn's death would have helped the film as would have some sort of ending where Evelyn did rise from the grave. Granted the title is not totally misleading as she did sort of leave the grave, just not under her own power. The gore is very light for the most part as there is a scene with the foxes and a scene at the end with quite a bit of blood too. I just thought for the most part this movie was a tad dull.\r\n1\t\"If you think \"\"Weird Al\"\" Yankovic is hilarious, you won't be disappointed by THE COMPLEAT AL. Not only does this rare mockumentary feature many of Yankovic's more memorable videos (\"\"Like A Surgeon\"\" and \"\"I Love Rocky Road\"\" among them), but they are inter-spliced with funny vignettes supposedly highlighting the parodist's rise to fame. Yankovic is not for all tastes, but his humor is harmless and imaginative enough that even non-fans will at least be lightly amused. Die-hard fans will love it not only for its content, but also for its relatively early look into Yankovic's now nearly three decade career. Suitable for all ages, kiddies will no doubt love the funny visuals.\"\r\n1\t\"Honestly, when I saw this movie years ago I immediately wanted to turn it off. As I sat there for the next 10 minutes or so, I realized that the actor playing Navin stole the show. His facial expressions and comedic demeanor makes me shake my head as to WHY he hasn't been in more comedies. He has this \"\"Marty Feldman\"\" thing going for him but MUCH, MUCH more talent...taking nothing away from Marty. The movie really shocked me by how close it was to the original Jerk, but then again, it was SO MUCH MORE. I really think that if this movie was released first, and I saw the Steve Martin movie 2nd, I'd think the 2nd was a cheap rip-off. I know it sounds like a BOLD statement, but it's true. I actually like Steve Martin a great deal, but his performance is 2nd to the actor in The Jerk Too. I wish I could get a copy of it for my collection. I urge you to see it if you can find it.\"\r\n1\tThe selection of Sylvester Stallone to perform the protagonist by Renny Harlin is commendable since Stallone is that sort of tough and craggy person who had earlier rendered the requisite audaciously versatile aura to the characters of Rocky Balbao and Rambo. But to compare Die Hard series with Cliffhanger is a far-fetched notion.<br /><br />The excellently crafted opening scene introduces the audience to the thrill, suspense and intrigue which is going to engulf them in the ensuing bloody and perilous encounter with the outlaws. The heist and the high altitude transfer of hard cash in suit cases from one plane to the other is something not filmed before.<br /><br />The biting cold of the snow capped Alps and the unfolding deceit and treachery among the antagonist forces makes one shiver with trepidation. The forces of awesome adventure and ruthless murder kicks the drama through to the end.<br /><br />Good movies are not made every year and people don't get a feast for eyes to watch every now and then. Apart from the filthy language/parlance which endows brazen excitement during certain scenes, the movie can be regarded as one that is not going to fade its captivating appeal even watching it after so many years.\r\n0\tThe movie is actually too slow. There are some nice images but it cannot outweigh the fact that the movie is in fact boring. You see a sexual intercourse a lot of watermelons and a sexual intercourse while eating a melon and maybe a little bit more. It may sound even interesting to someone but believe me to watch it for 2 hours isn't fun at all. Though you laugh several times but it's really not enough and it may be more out of despair and disbelieve than out of fun. To disturb the boredom director tries to put few movie video-clips into the movie. They are really colorful clips of absurd songs maybe from the 50's but it's hard to say exactly and they are trying to be funny so hard that it's really sad. Several times you have a feeling that the plot could evolve into something, that a powerful scene is being created but at the end it just somehow evaporates and that's it. Beside the clips there are hardly any dialogs let alone music. The director is trying to be original and artistic at all cost. Personally I cannot recommend the movie. I believe that art is something that shouldn't be boring. During the projection there was yawning all around the cinema which just corroborates my short review.\r\n1\tI went into Deathtrap expecting a well orchestrated and intriguing thriller; and while that's something like what this film is; I also can't help but think that it's just a poor man's Sleuth. The classic 1972 film is obviously an inspiration for this film; not particularly in terms of the plot, but certainly it's the case with the execution. The casting of Michael Caine in the central role just confirms it. The film is based on a play by Ira Levin (who previously wrote Rosemary's Baby and The Stepford Wives) and focuses on Sidney Bruhl; a playwright whose best days are behind him. After his latest play bombs, Sidney finds himself at a low; and this is not helped when a play named Deathtrap; written by an amateur he taught, arrives on his doorstep. Deathtrap is a guaranteed commercial success, and Sidney soon begins hatching a plot of his own; which involves inviting round the amateur scribe, killing him, and then passing Deathtrap off as his own work.<br /><br />Despite all of its clever twists and turns; Deathtrap falls down on one primary element, and that's the characters. The film fails to provide a single likable character, and it's very hard to care about the story when you're not rooting for any of the players. This is not helped by the acting. Michael Caine puts in a good and entertaining performance as you would expect, but nobody else does themselves proud. Christopher Reeve is awkward in his role, while Dyan Cannon somehow manages to make the only possibly likable character detestable with a frankly irritating performance. It's lucky then that the story is good; and it is just about good enough to save the film. The plot features plenty of twists and turns; some work better than others, but there's always enough going on to ensure that the film stays interesting. Director Sidney Lumet deserves some credit too as the style of the film is another huge plus. The central location is interesting in its own right, and the cinematography fits the film well. Overall, I have to admit that I did enjoy this film; but it could have been much, much better.\r\n0\tThis movie was absolutely ghastly! I cannot fathom how this movie made it to production. Nothing against the cast of the movie, of course, this is all the fault of the writing team. You take the old average plot - let's dance our way out of being poor and destitute - or STEP in this case. But this one lacks any semblance of a true plot - or at least one that anyone would care about. With Canadian speaking actors in what is supposed to be an American setting - this film falls very flat. On a positive note, the directing was pretty good and cinematography was pretty decent as well. Looks like the production budget was very generous as well. My only request is that this team leave the writing alone and go find actual screenwriters to help them bring words alive on film. Net result - How she move is How she sucks.\r\n0\t\"Fairly good movie, but not a true story.<br /><br />Rubin \"\"Hurricane\"\" Carter was a notorius liar, a murder and was never found not guilty. New Jersey State just didn't go for it a third time as 20 years had gone. Carter got an offer in 1976: \"\"Pass a lie test and go free\"\". He didn't take it. This film should never have been made, but money talks. A lot of people have unjustly spend their lives in prison and undoubtedly more blacks than white. Why choose a fake story?<br /><br />Jens\"\r\n1\tAlthough at one point I thought this was going to turn into The Graduate, I have to say that The Mother does an excellent job of explaining the sexual desires of an older woman.<br /><br />I'm so glad this is a British film because Hollywood never would have done it, and even if they had, they would have ruined it by not taking the time to develop the characters.<br /><br />The story is revealed slowly and realistically. The acting is superb, the characters are believably flawed, and the dialogue is sensitive. I tried many times to predict what was going to happen, and I was always wrong, so I was very intrigued by the story.<br /><br />I highly recommend this movie. And I must confess, I'll forever look at my mom in a different light!\r\n1\t\"In 1978 a phenomenon began. The release of John Carpenter's \"\"Halloween\"\" got people queueing around the block to witness the evil that is Michael Meyers. The critics loved it, the world loved it, it was imitated, and has gone down as one of the greatest movies in cinematic history.<br /><br />plot: 15 years after a murder took place, four friends (all females) are babysitting(and having it on with their boyfriends) on Halloween night. After escaping from a hospital the night before, Michael myers Returns to his home town to stalk these people. He murders 3 of them silently and subtlety. He does not speak. He walks slowly. He hides....<br /><br />Only one of the friends escapes, after being saved by Doctor Loomis (Michael's pursuer and doctor) <br /><br />There is one reason why Halloween works so well. Simplicity. We don't know where Michael is, we don't know why he kills, and he frightens us. They're the only reasons why we are afraid.<br /><br />John carpenter wrote the movie, and directed. He builds unbearable tension throughout the story, and scares to such a degree, that sometimes we cannot watch. And the climax is truly startling.<br /><br />As horror, this is essential. It is terrifying and well acted. It is also mysterious. Michael is a force, not a human. A force that cannot be denied.<br /><br />The sequels focused too much around Michael and his \"\"history\"\". This movie focuses on the fear of the unknown. Perhaps that's why this thing is a masterpiece.\"\r\n0\t\"Feeding The Masses was just another movie trying to make a little money off of the zombie craze that is going around, mostly due to the popularity of movies such as Land Of The Dead and the Resident Evil series.<br /><br />It starts at a television station, which is guarded by the military, and are reporting that The Lazarus Virus (zombies) are close to containment and the city will soon be free to do their business again. The problem is, this is totally false. Zombies are running rampantly and only a small minority of people are aware. Among them are Torch (William Garberina), the camera man, Sherry (Rachael Morris), the lead anchor woman (who for some reason is listed as playing Shelly on this website) and Roger (Patrick Cohen), their military escort. Torch and Sherry are against lying to the people but the station is being run by secret service (or some other government agency) and they are heavily censored.<br /><br />This movie gives itself a pat on the back on the box-cover saying \"\"We hold FEEDING THE MASSES on a higher level than any o the three 'of the Dead' films by George A. Rombero.\"\" The source of that quote has lost ALL credibility with me.<br /><br />Let me just say that this movie is BAD. I don't mean bad like I was expecting more (I obviously was, though) but I mean bad in that I could not find any redeeming qualities in the film, whatsoever. The acting in all parts are either over done or too wooden. Did anybody remember their lines or are they reading off of cue cards? I can't even think of what the best part of the movie was or the best actor/actress. There really was not one. If I had to give a nod to someone, I would say Roger, the military escort was probably the most interesting character but that is really not saying much.<br /><br />I would have to recommend to pass on this movie, despite the box-cover looking pretty good (It's what originally drew me to the movie). 3/10\"\r\n1\tI was around 7 when I saw this movie first. It wasn't so special then,but a few years later I saw it again and that time it made fun,a lot:)<br /><br />I think the best parts of the film are: Yeti's body language and the 'special effects ' also.<br /><br />If you wanna watch this movie ,don't wait for a Hollywood made blockbuster,even this film was made from approx. 1000 dollars :) <br /><br />I've a copy of it.Movie and video version as well(But I don't think it had been ever shown in cinemas)<br /><br />Watch it,enjoy it!!!Yeti for ever!!!\r\n1\tThe Stone Boy is an almost forgotten drama from the 1980s. Considering how many famous or soon to be famous people are in the film, one wonders how it could have been so overlooked. This is a slow, moody, but touching account of a tragedy that befalls a farm family. The film is more or less an indictment of Midwestern stoic values and suppression of emotion. The film will not be for all tastes, but anyone who can appreciate real human drama should like it OK.<br /><br />In the early moments of the film, we see two brothers head off in the early morning hours to pick some peas and maybe shoot a duck or two if they're lucky. While climbing through a barbed wire fence, the gun accidentally discharges and the younger boy fatally shoots his older brother. These boys have apparently never taken a hunter safety course. The way for two men to properly go through a fence like this with one gun would be as follows: First man climbs through. Second man then passes him the gun through the fence. The first man then sets the gun down and helps the other through the fence. At no time should either man have his hands on both the gun and the fence.<br /><br />Anyway, once his brother is killed, 12-yr-old Arnold regresses into his own world. He does not even run for help after his brother is shot. He simply goes ahead and picks the peas and tells his family about the accident later. At no point during the funeral or inquest does Arnold seem to show any regret or sorrow at all. His family seems to shun him. Perhaps they are even angry at him for killing his brother. An ornery uncle played by Frederick Forrest is outwardly upset with Arnold, even though the older brother's death allows him to hit on the kid's girlfriend. Arnold's parents don't seem to understand how to deal with their son. They really don't even try to talk to him. About the only person he can communicate with is his grandfather who is played in typical grandfatherly skill by Wilford Brimley. After a while, Arnold even moves in with the old timer.<br /><br />Nothing seems to get Arnold to open up until he takes a bizarre road trip to Reno Nevada to inexplicably look up his uncle's ex-wife. Once he meets her, he begins to emerge from his shell after apologizing to her for breaking up her marriage by starting all of the family's turmoil with the accident. From here on, the film becomes a quick study in reconciliation and reawakening.<br /><br />The acting is hauntingly distant in most cases. Robert Duvall and Glenn Close make the perfect stoic farm parents. Forrest is good, but maybe trying too hard to channel Paul Newman's performance in Hud. The cinematography is exceptional, too. If you like moody pictures about common folk, this one may be for you. Some even may be advised to bring some tissues. 8 of 10 stars.<br /><br />The Hound.\r\n1\t\"This was the second of two filmed \"\"Hamlets\"\" in the nineties, the first being Franco Zeffirelli's, starring Mel Gibson, from 1990. Zeffirelli's version, like Laurence Olivier's from 1948, was based upon an abridged version of the play, with much of Shakespeare's original text being cut. (I have never seen Tony Richardson's 1969 version, but as that ran to less than two hours, shorter even than Zeffirelli's, I presume that was also abridged). Kenneth Branagh was attempting something much more ambitious- a film based on the complete text of the play, with a running time of around four hours.<br /><br />With his \"\"Henry V\"\", Branagh claimed Olivier's crown as the cinema's leading Shakespearean, confirming his claim with his brilliant \"\"Much Ado about Nothing\"\", a rare example of a great film based on a Shakespeare comedy. \"\"Hamlet\"\" was his third Shakespeare film as director (he also acted as Iago in Oliver Parker's 1995 \"\"Othello\"\") and, as one might expect, it is very different to \"\"Much Ado.\"\". The earlier film, shot in a villa in the hills of Tuscany and the beautiful surrounding countryside, is a joyous, summertime film about everything that makes life worth living.<br /><br />\"\"Hamlet\"\", by contrast is set in the depths of winter. (The flowers in the description of Ophelia's death suggest that Shakespeare himself thought of the action happening in summer). The look of the film is particularly striking, both sumptuous and chilly. It was filmed at Blenheim Palace, possibly England's most grandiose stately home, but also a rather forbidding one. The snowy exterior scenes are cold and wintry; the interior ones formal and elaborate. The action is updated to the mid nineteenth century; the female characters wear the elaborate fashions of that era, while the principal male ones mostly wear splendid military uniforms. (There is a contrast here with Zeffirelli's film, where both the interiors and the costumes were deliberately subdued in tone). The play is dominated by images of corruption and decay; Branagh's intention may have been to contrast a splendid surface with the underlying \"\"something rotten in the state of Denmark\"\".<br /><br />The film is notable for the large number of big-name actors, some of them in very minor roles. (Blink, and you might miss John Gieldgud or Judi Dench). Apparently, an all-star cast was required by the production company, who were nervous about a four-hour film. Some of the imported Hollywood stars, such as Robin Williams' Osric, did not really come off, but others, like Charlton Heston's Player King or Billy Crystal's First Gravedigger, played their parts very well. Yorick, normally only seen as a skull, is here seen in flashback, played by the British comedian Ken Dodd. Brian Blessed, who often plays jovial characters, is cast against type as the Ghost, and makes the scenes in which he appears genuinely frightening.<br /><br />Of the major characters, perhaps the weakest was Kate Winslet's Ophelia. Branagh's leading lady in his first two Shakespeare films was his then wife Emma Thompson, but their marriage ended in divorce in 1995. I did, however, find myself wishing that Thompson had been cast in the role; although Winslet came into her own in the Ophelia's mad scenes, she seemed weak in the earlier ones where her character is still sane. (I preferred Helena Bonham Carter in Zeffirelli's version). Richard Briers plays Polonius with a greater dignity than he is often given, a wise and experienced counsellor rather than a prating old fool. Julie Christie also brings dignity to the role of Gertrude; there is no attempt here, as there was with Gibson and Glenn Close in the Zeffirelli version, to suggest an incestuous attachment between her and Hamlet. (An interpretation which owes more to Freud than it does to Shakespeare). The age difference between Christie and Branagh is great enough for them to be credible as mother and son, which was certainly not the case with Close and Gibson. (Olivier's Gertrude, Eileen Herlie, was, bizarrely, thirteen years younger than him).<br /><br />Branagh stated that his intention in restoring those scenes which are often cut in cinematic versions was to \"\"reinforce the idea that the play is about a national as well as domestic tragedy.\"\" Much stress is placed upon the war with Norway and the Norwegian Prince Fortinbras- a subplot ignored altogether by Zeffirelli. This emphasis on national tragedy is perhaps best shown in the character of Claudius, sometimes played as a one-dimensional villain. There is something about Derek Jacobi's performance which suggests that Claudius could have been a good man under different circumstances, but that he allowed himself to be led astray by ambition and lust. He could have been a good and loyal servant to his brother, but chose to rule as a bad king. Although he is tormented by guilt, he can see no way to make amends for the evil he has done.<br /><br />Branagh, a wonderfully fluent speaker of Shakespeare's verse, is superb in the main role. Like Gibson, he has little time for the old concept of Hamlet as indecisive, passive and melancholy. His is an active, physical, energetic Hamlet, something best shown in his fatal duel with Laertes. His guiding principle is not world-weary despair, but an active disgust with evil and corruption.<br /><br />It was a gamble for Branagh to make a four-hour epic, and the film did not do well at the box office. It was, however, praised by many critics, James Berardinelli being particularly enthusiastic. My own opinion is that, whatever the financial returns may have been, Branagh's gamble paid off in artistic terms. By concentrating on the full text, he was able to bring out the full meaning and full emotional power of Shakespeare's most complex play. When I reviewed his \"\"Much Ado\"\", I said it was the greatest ever film of a Shakespeare comedy. His \"\"Hamlet\"\" may just be the greatest ever film of a Shakespeare tragedy. 10/10\"\r\n0\t\"You believe in God or you don't. You believe in Jesus or you don't. You believe He is the Son of God or you don't. The choice is up to you.<br /><br />Director Denys Arcand has really done everything he could to bring back Jesus to a mere historic figure, social worker, son of two humans, instead of the Son of God the Holy Spirit and Mary, Who opened Heaven again for us. Encouraging the Big Bang, a world come from evolution, instead of seeing the beauty of creation. The film depicts a theologian bringing some \"\"modern findings\"\" to the actor who plays Jesus in the Passion Play, who happily incorporates them in his play.<br /><br />The depicted priest who runs the sanctuary where the Passion Play is performed in Montreal has a sexual relation with one of the female players of the Passion Play instead of showing his love for God through celibacy. More often than not the director's abhorrence of the Church is clearly visible.<br /><br />The director has tried to make a parallel between Jesus' life and the Passion Play actor's life. This is an admirable attempt, but depicting the Resurrection with the transplantation of the Passion Play actor's organs in other bodies signifies how the director thinks about Jesus.<br /><br />My opinion is not important, God's opinion is, but I wouldn't want to stand in the shoes of the director and actors when standing before Jesus' throne.\"\r\n1\t\"In 1954 Marlon Brando was THE hot actor after his performances in Streetcar Named Desire and On The Waterfront. Frank Sinatra had yet to re-invent himself on the silver screen. But Sinatra's portrayal as the erstwhile Nathan Detroit, helped re-establish Sinatra with his fans.<br /><br />It is a great screen version of a great play and the choices of leads and support players are terrific. Imagine a movie where Brando sings? This was his one and only singing role as he portrayed Sky Masterson. In addition the female leads, Jean Simmons and Vivian Blaine(replaying her stage role as Nathan's long suffering girlfriend Adelade), put in superlative efforts. Special mention goes to the great Stubby Kaye(as Nicely Nicely), and with all due respect to Eric Clapton, no one's version of Rockin' The Boat even comes close to Stubby's. Sheldon Leonard, who would go on to fame as TV producer of such shows as The Danny Thomas Show and The Dick Van Dyke Show does \"\"Harry The Horse\"\" wonders, B.S.Pulley is excellent as the harsh mannered and rough talking \"\"Big Julie\"\", and even Regis Toomey offers his excellence as \"\"Brother Arvide\"\".<br /><br />It is one of the fun musicals to see, good comedy, and you get Sinatra and Brando. Soooooo \"\"Luck Be A Lady Tonight\"\" and brother...\"\"it's your dice\"\"\"\r\n0\t\"Terminus Paradis was exceptional, but \"\"Niki ardelean\"\" comes too late. We already have enough of this and we want something new.<br /><br />Big directors should have no problems seeing beyond their time, not behind. Why people see Romania only as a postrevolutionary country?<br /><br />We are just born not reincarnated, and nobody gives a s**t anymore about old times. Most people dont remember or dont want to remember, and the new generation of movie consumers dont understand a bit. This should be the first day of romanian movie not the final song - priveghi! Maybe younger directors should make the move.\"\r\n0\tThe only reason I don't give this movie fewer than 3 stars is because it isn't quite on par with a movie like Manos: The Hands of Fate. This movie's greatest crime is the fact that it is head-meltingly boring & terribly, unforgivably British. The premise of this movie sounds potentially promising, the whole teleporting concept, but the direction they went with it was completely uninteresting. It was more a movie about research funding and bowties than projecting lasers. The actors were wooden, unemotional, and aloof. As was the love affair between the two scientists-- which was anything but intriguing. I never was able to tell what the attraction was between them as the chemistry was non-existent. Nor did I really understand why the melty-faced main guy decided to slaughter everyone he met. At least now I know that I should always give someone a fair hearing before I cut off their research grants, else they go rampaging about, killing wantonly with goofy hand gestures.\r\n1\t\"After dipping his toes in the giallo pool with the masterful film \"\"The Strange Vice of Mrs. Wardh\"\" (1971), director Sergio Martino followed up that same year with what turns out to be another twisty suspense thriller, \"\"The Case of the Scorpion's Tail.\"\" Like his earlier effort, this one stars handsome macho dude George Hilton, who would go on to star in Martino's Satanic/giallo hybrid \"\"All the Colors of the Dark\"\" the following year. \"\"Scorpion's Tail\"\" also features the actors Luigi Pistilli and Anita Strindberg, who would go on to portray an unhappy couple (to put it mildly!) in Martino's \"\"Your Vice Is a Locked Room and Only I Have the Key\"\" (1972). (I just love that title!) I suppose Edwige Fenech was busy the month they shot this! Anyway, this film boasts the stylish direction that Martino fans would expect, as well as a twisty plot, some finely done murder set pieces, and beautiful Athenian location shooting. The story this time concerns an insurance investigator (Hilton) and a journalist (Strindberg, here looking like Farrah Fawcett's prettier, smarter sister) who become embroiled in a series of grisly murders following a plane crash and the inheritance of $1 million by a beautiful widow. I really thought I had this picture figured out halfway through, but I was dead wrong. Although the plot does make perfect sense in this giallo, I may have to watch the film again to fully appreciate all its subtleties. Highlights of the picture, for me, were Anita's cat-and-mouse struggle with the killer at the end, a particularly suspenseful house break-in, and a nifty fight atop a tiled roof; lots of good action bursts in this movie! The fine folks at No Shame are to be thanked for still another great-looking DVD, with nice subtitling and interesting extras. Whotta great outfit it's turned out to be, in its ongoing quest to bring these lost Italian gems back from oblivion.\"\r\n1\t\"No-nonsense Inspector Hollaway (a solid turn by John Bennett) investigates the disappearance of a famous thespian and uncovers the wicked past history of a creepy old house. First and most mundane tale, \"\"Method for Murder\"\" - Successful author Charles Hillyer (nicely played by Denholm Elliott) is haunted by images of the murderous fiend he's writing about in his latest book. Although this particular outing is too obvious and predictable to be anything special, it does nonetheless build to a real dilly of a genuine surprise ending. Second and most poignant anecdote, \"\"Waxworks\"\" - Lonely Philip Grayson (the always outstanding Peter Cushing) and his equally lonesome friend Neville Rogers (the splendid Joss Ackland) both become infatuated with the beguiling wax statue of a beautiful, but lethal murderess. Third and most chilling vignette, \"\"Sweets to the Sweet\"\" - Quiet, reserved and secretive widower John Reid (a typically terrific Christopher Lee in a rare semi-sympathetic role) hires nanny Ann Norton (the fine Nyree Dawn Porter) to take care of his seemingly cute and harmless daughter Jane (a remarkably spooky and unnerving performance by the adorable Chloe Franks). This stand-out scary episode is given a substantial disturbing boost by the exceptional acting from gifted child actress Franks, who projects a truly unsettling sense of serene evil lurking just underneath a deceptively sweet and innocent angelic veneer. Fourth and most amusing yarn, \"\"The Cloak\"\" - Pompous horror movie star Paul Henderson (delightfully essayed to the haughty hilt by Jon Pertwee) purchases a mysterious cloak that causes him to transform into a vampire whenever he wears it. This item makes for good silly fun and further benefits from the awesomely pulchritudinous presence of the luscious Ingrid Pitt as enticing vampiress Carla. Director Peter Duffell, working from a deliciously macabre and witty script by noted horror scribe Robert Bloch, maintains a snappy pace throughout and does an ace job of creating a suitably eerie atmosphere. Kudos are also in order for Ray Parslow's crisp cinematography and the shuddery score by Michael Dress. Highly recommended to fans of omnibus fright fare.\"\r\n1\t\"Walt Disney & his 9 Old Men put their own 1950 spin on the classic fairy tale of Cinderella, which I guess you could say helps form an unofficial \"\"fairy tale princess trilogy\"\" from the classic Disney years.<br /><br />THE PLOT: Cinderella is a nice girl who can't catch a break. She is the daughter of a nice, wealthy widower who loved her dearly, but her mother passed away when Cinderella was very young, and Cindy's father felt she needed a mother figure, so he eventually married the woman who would become known as Lady Tremaine, herself a widow with two daughters about the same age as Cinderella, Anastasia and Drizella. At first they all seemed to get along, but then Cinderella's father died, and Lady Tremaine's true nature was revealed - she was a cold, cruel, callous, heartless, mean spirited woman, and she passed those traits on to her daughters, who were spoiled, bratty, and equally mean spirited. Anastasia & Drizella hate Cinderella because they know deep down that she's better looking and an overall nicer, more attractive lady than themselves (i.e., more appealing to men), and their mother, Lady Tremaine, hates Cindy for pretty much the same reasons. As the years passed Lady Tremaine began to squander the family fortunes in a stubborn but futile quest to improve/refine her awkward, unattractive daughters (to call them \"\"homely\"\" would be an insult to homely people everywhere) while all three relegated Cinderella to being the multi-tasking servant of the house, abusing her, mistreating her and humiliating her every chance they get (they are particularly fond of increasing her already absurd workload). That brings us to Cinderella in the present, where she has blossomed into a good looking young lady who somehow manages to remain kind hearted and nice despite her abusive step family and holds on to the hope that one day the tables will turn in her favor. <br /><br />Cinderella gets her shot at freedom & happiness when a royal ball is held to introduce the local prince to an eligible young maiden so that he can take her as a wife, settle down, start a family, etc. Naturally, her step family tries to keep her from attending, even going so far as to physically assault her and rip up the dress she had procured for herself (with a little help from her mice friends - the dress belonged to her biological mother). Finally pushed beyond her breaking point, Cinderella runs out into the courtyard and cries in despair. It is at that point that her Fairy Godmother, a short, plump, jolly woman, arrives and provides Cinderella with transportation and a transformed dress (after all, Cinderella wouldn't make a very good impression at the ball if she entered the scene looking like she had just gotten gang raped). Cindy arrives at the ball, the Prince falls hard for her, but that pesky midnight rule gets in the way, forcing her to flee, but leaving behind a glass slipper. Make a long story short - after a long harrowing quest to find the mystery girl via trying on the glass slipper, Cinderella is found and she and the prince get married, giving her the happy ending she deserves.<br /><br />Overall, an enjoyable Disney classic. Not without its flaws, the most glaring of which is that the Prince is little more than a MacGuffin to help push the plot along - he has very little screen time and even less dialogue, so we never get to know him very well or get a good look at his relationship with Cinderella (which is unfortunate since, according to the making of documentary, the Prince was originally meant to play a bigger role), and a few additional scenes to help flesh out Cinderella herself might have been helpful (there was a song that showed her fantasizing of turning into an army of maids to clean up the house as well as eavesdropping on her step-family post ball to show her amusement at their jealousy, which was cut because Walt himself thought it made her look spiteful). Still, Cinderella herself is a likable enough heroine, even if she is upstaged by her mice friends, and there's a sweetness to the film that is becoming harder to find these days. Of course, if this were being made now, Cinderella would probably put up more of a struggle against her family during the dress ripping scene and would probably free herself in the climax (either by picking the lock herself or making an impractical yet exciting jump down from her window) but this is beside the point.<br /><br />And for all those who say Cinderella sets a bad example for young girls, well, consider this - at least Cinderella didn't go around getting publicly drunk and indecently exposed, unlike some modern day \"\"princesses\"\" (you know who I mean).\"\r\n1\tChris Gerolmo took care not to simply give us a `Jack-the-stripper' type of list of murdered people: he delved into the psychological characterization with convincing results. Perhaps mostly due to Stephen Rea's excellent performance playing off against Donald Sutherland with good empathy by both. It was the playing of these two parts  above all  which made the film something more than just a morbid account of the history of the butcher of Rostov. Supporting actors, especially Max von Sydow, carried out their parts really well. Good directing. The photography was good too. Needless to say, the fact that the film was shot in Hungary was bound to produce a couple of aberrations, but, frankly, given the depth of the story-telling and interpretations, we can completely forget these little trivialia.<br /><br />For once, a made for TV film from HBO has come up trumps. Recommended, especially if you like to analyse characteriology and forget some of the morbid scenes  which, I hasten to add, are never exaggerated.\r\n1\t\"quote by Nicolas Martin (nicmart) from Houston, TX: \"\"Fine film, but DVD \"\"reformatted for TV\"\", 8 April 2002 - This is a charming and emotive film. On the other hand, the DVD I purchased has been \"\"reformatted to fit your TV\"\" by the clods at Columbia Tristar. There is no excuse for not providing the film in widescreen format, except that Hollywood treats all films like the moronic, disposable trash that it is so used to producing. What a shame.\"\"<br /><br />What a (criminal!) shame indeed. However, there is another version out though. See here for details http://www.dvdbeaver.com/film/DVDCompare2/kingofmasks.htm<br /><br />Wonderful performances by the two main actors (The King and Doggie) BTW.\"\r\n0\tSeriously, there is absolutely NOTHING good about this crap fest at all. Randolph Scott, a closet homosexual who lived with his lover Cary Grant for twelve years, is at his most wooden and boring in the least role. At 57 he was clearly far too old for these romantic roles, although it doesn't matter so much here because Gail Russell looks so much older than her 31 years and she is so ugly due to her chronic alcoholism and chain smoking. Lee Marvin plays his usual villainous role but it isn't enough to save this garbage. Thank God they don't make westerns any more, they're just dated, racist old movies that glamorise guns and murder.<br /><br />0/10.\r\n0\tEven though the plot was very well detailed,and the story line was understandable the fact that Steven Seagals voice was dubbed with some one else's through out most of the movie was distressing as you were unsure who was talking . There were many parts where he would start to talk in his deep raspy voice and then the next some one else's voice was doing the talking for him. I don't know the reason however if he had difficulty with his voice during production of the movie I think they could have re shot the events that did not contain his own voice when he had recovered. I have rated this movie 3 out of 10 based on the quality of the film. When one pays for a movie whether or not its at the theater or on DVD this movie was not worth the admission price that was charged. I have been a long time follower of Steven Seagal and all his movies that he has done over the past years.To date I think this is one of the worst ones we have seen yet\r\n1\t\"\"\"Bend It Like Beckham\"\" reminds me of the best of those 80's teeny-bopper movies directed by John Hughes. Everything takes place in a bubble-gum colored world where everyone is attractive, there are some easily-resolved conflicts that occasionally take away from the mostly happy proceedings, and vast amounts of plot are summarized by montages set to bouncy pop tunes. Nothing wrong with this, however. \"\"Bend It Like Beckham\"\" is an absolute treat from beginning to end. My wife and I found ourselves totally won over by the cornball cheesiness even as we were making fun of it, and at the end, as embarrassing as this is to admit, we applauded (and we saw this, by the way, in our living room, not in a theatre). Watch this movie and enjoy.<br /><br />Grade: B+\"\r\n1\t\"<br /><br />\"\"After dark, my sweet\"\" is a strange mix of sensuality and dullness. The film runs slow, very slow, but takes a rythm to tell a story about murder and passion. Jason Patric never ever was so sexy and powerful (the man gives a true performance), and Rachel Ward is all but sexy.<br /><br />The sexual tension, the pshycological heat, the footsteps of the past... the flashback scenes, the weirdness of the Patric´s Character, all becomes a sexy mystery. I recommend this one cause is the more sexy dull movie that i ever seen. Check the love making scene, it´s particulary sexy.\"\r\n1\t\"George Cukor directs this high quality story of suspense in the theatrical world with his usual sensitive but firm touch. Ronald Colman's performance, which earned him an Oscar, still stands up despite a few overwrought moments  it's hard to forget his haunted countenance as he struts aimlessly around social functions and tries to find meaning in his life. There are a number of interesting subtexts and Cukor does an excellent job of making them clear without forcing anything too much. The script by Garson Kanin and Ruth Gordon is brilliant, mixing the rarified theater world with the seedy world of the streets and comprehensively utilizing elements from Shakespeare's \"\"King Lear\"\" as a reference to both the film's main theme of jealousy and Colman's character's obsession with identity.<br /><br />Several interesting things about this movie  superficially it could be dismissed as too flippant a treatment of the everyday problems of actors. In other words if the art of acting required such complete sublimation of individuality we would soon have a rash of psycho method actors stalking the streets. But I don't really think this story's primary concern is acting or the job/art of acting per se. I think Anthony's struggles represents a broader existential question, a deeply buried uncertainty about identity. There's a key, I feel, in his relationship with his ex-wife Britta (Signe Hasso). He says that he never would have or could have become a good actor without her inspiration. And at another point he explicitly states that his extreme identification with his roles began when he married her. I'm not sure what to make of this but it seems important to me, especially because it's his obsession with her and jealousy of her that ultimately pushes him over the top. Perhaps the implication is that Anthony put himself in danger in the first place by entering into a serious relationship. Marriage implies a \"\"union of the soul\"\" in the traditional conception. It's unusual that the male and female protagonists are divorced at the beginning of the film. It's not completely unprecedented (Hawks' comedy \"\"His Girl Friday\"\" springs to mind, among others), but it is unusual and probably significant, especially in light of the fact that they do not end up resolving their romantic separation. In a way, the film could be implying that jealousy is another form of self-love.\"\r\n1\t\"If you want a fun romp with loads of subtle humor, then you will enjoy this flick.<br /><br />I don't understand why anyone wouldn't enjoy this one. Take it for what it is: a vehicle for Dennis Hopper to mess with your head and make you laugh. It ain't Shakespeare, but it is well done. Ericka Eleniak is absolutely beautiful and holds her own in this one - Better than any episode of Baywatch - and shows a knack for subtle humor. Too bad she hasn't had many opportunities to expand on that.<br /><br />Tom Berenger fits his role of \"\"real Navy\"\" perfectly and William McNamara does a solid job as a hustler.<br /><br />Throw in a walk-on by Hopper in the middle of the chase for \"\"the Cherry on this Sundae\"\" and you've got a movie that kept my attention and kept me laughing. I bought this one as soon as it was available.<br /><br />Brain-candy.\"\r\n1\t\"\"\"Ship Ahoy\"\" was probably made in order to showcase MGM talent. The film is a fun trip on an ocean liner on its way to San Juan, Puerto Rico, at the time in which the country was involved in WWII. This was typical fare for the studios, which gave the movie going public light weight entertainment as a distraction during those difficult times the country was living.<br /><br />The beautiful Eleanor Powell is seen at her best in some musical numbers where she clearly shows us she was a dancer to be reckoned with. Red Skelton is also seen in a straight part with not too much clowning, as he pursues the beautiful Ms. Powell on the ship that is bringing them to Puerto Rico. The irresistible Bert Lahr has good opportunities in the film to show he was a funny man. Also Virginia Grey is seen as a fun girl who is not fooled by anyone.<br /><br />There are good musical numbers featuring Tommy Dorsey and his orchestra, in which one sees, among others, the amazing Buddy Rich, who has a few solos with Mr. Dorsey and Ms. Powell. A young Frank Sinatra appears also as the lead singer of the band, backed by the Pied Pipers.<br /><br />This is a nostalgic trip that should be savored by fans of this genre, which MGM totally controlled.\"\r\n1\t\"I wasn't quite sure if this was just going to be another one of those idiotic nighttime soap operas that seem to clutter prime time but, as it turns out, this is a pretty good show (no small thanks to talented casting). Four female friends with diverse backgrounds get together and share the weekly goings-on of their love-lives. The hour long program follows each of them separately through their often screwed up quests to find love and it does it without being boring or trite. Sharon Small's \"\"Trudi\"\" is the homemaker one (allegedly widowed after September 11th) who gets a little preachy and annoying with her friends (who tend to be a little looser and more creative in their endeavors). It's great to see Small back on t.v., as she was great in the \"\"Inspector Lynley Mysteries\"\". The chick can act. Orla Brady's character (Siobhan, a lawyer) is perhaps the most damaged but still very sympathetic of the women, as she wrestles with her kind but self-absorbed husband Hari (Jaffrey, formerly of \"\"Spooks\"\") in his driven desire to have a child with her, regardless of her needs. The final two members of the cast are the effervescent Jess (Shellie Conn), an events planner who's a wild child who sleeps with anyone and everyone, gender not specific, and Katie, (Sarah Parrish) a somber doctor who's affair with a patient AND his son have sent her career and love life spiraling out of control. That being said, I'm hooked now and hope that the BBC continues cranking this series out because it's good, it's different and it's got a great cast.\"\r\n1\tMy friend had the idea of watching the animated LOTR after seeing the Peter Jackson Return of The King. So I finally bought it off e-bay, thinking right from the start it was going to suck. Actually, it really wasn't as bad as I thought it would be. The animation was good for its time, they used a unique method of blending live action with animation to create some interesting effects, and the guy who did the voice for Frodo sounded somewhat like Elijah Wood.<br /><br />Not the greatest adaptation of a book, but trust me, I've seen a lot worse. It skips quite a lot of things, since both Fellowship and The Two Towers are compressed into one two hour movie. Definatley worth a watch, kids might like, but still, absoutley no comparision with the Peter Jackson trilogy.\r\n0\tThis is one of the funniest movies i've ever seen. I rented it as a joke, expecting to get a giggle out of the first few scenes, and let me just say I've never laughed so hard in my life. The first scene where ninjas randomly pop out of the air and start a huge and ridiculous fire fight is one of the most incredibly funny stupid action movie moments of my life. This is not a dinosaur movie, but more a movie that makes fun (and doesn't mean to at all) of the action genre. I didn't see the first two, but judging by the complexity of the plot, I don't think there's to much I missed. If you wanna see a movie that goes great with a six pack or any herbal remedy, than I insist you rent this movie and sit back and watch a 100 years of advancement in cinema get thrown in the trash and get shat on by carnosours\r\n0\tI still find it difficult to comprehend that a movie as bad as this could be made in Hollywood. The acting and story is simply pathetic & the direction is awful. I don't see any logic behind this trash except may be that the director had nothing good to do. I took me ten minutes to realize that i had wasted my precious thirty rupees. It filled me with dismay that i was going to waste some more time of my life on this crap. I bet the movie was made in less than a day. I don't know what category it falls into. Please, avoid this movie at all costs, just do anything, even bang your head against walls but don't go for this movie.\r\n0\t...the first film I had to walk out on. And it was the cast and crew pre-screening (Not that I was involved, I hasten to add). I made it through the first hour, so I reckon I'm just qualified to comment, but that was my limit.<br /><br />Like other comments here, how did this get through any kind of QA. An accumulation of the very worst in dialogue, the epitome of wooden acting, awful casting, all wrapped together without a plot.<br /><br />Tara Fitzgerald's casting was bizarre, almost comic. She possesses the worst Russian accent in movie history.<br /><br />As I left the screening, the director and producers were drinking in a bar outside the cinema. They obviously couldn't sit through it again either.<br /><br />\r\n1\tThe film really challenges your notions of identity and the society we live in. It is well made and very powerful. The persons in the film are honest and revealing about the world that exists outside of the normative ideological perspective. I believe it give great insight into a sub-culture who shakes the very ideas that the viewer has of society. It is shocking at times and more powerful because of it. Some parts were difficult to watch, as most reality is, but it is not over done. Its good the first time you watch it, but it becomes even better the second or third time around; because you have had the chance to wrap your mind around the very topics they discuss and challenge.\r\n1\tSharp, well-made documentary focusing on Mardi Gras beads. I have always liked this approach to film-making - communicate ideas about a larger, more complex, and often inscrutable phenomenon by breaking the issue down into something familiar and close to home.<br /><br />I am sure most people have heard stories about sweatshops and understand the basic motives behind profit and capitalism, and globalism's effect on poorer nations (however people feel about it). Rather than expound on these subjects and get up on a soapbox (not that there's anything wrong with that, other than such documentaries typically preach to the converted), this documentary simply shows Mardi Gras beads, how they are manufactured, by what people, and under what conditions, and then how they are utilized by consumers at the end of the process. It openly and starkly investigates the motivations of everyone involved in the process, including workers, factory management, American importers, and finally, the consumer at the end of the chain.<br /><br />I felt a little sickened by this; equally by the Mardi Gras revelers, but also by the way the workers in China have accepted their situation as normal and par for the course (even if they have some objections to the details of how they are managed). The footage of the street sweepers cleaning up the beads off the streets at the end, made a particular impression. But that was just my reaction; I can see how someone else might read this documentary a little differently.<br /><br />Unlike other documentaries on this subject, I don't think you have to have any specific political opinion to be affected by this. This is ultimately a story about human beings and our relation to the goods we produce and consume. If you have ever bought a product made in the Far East, this should give you something to think about.<br /><br />Outstanding and highly recommended. Need to see more documentaries like this. Kudos to all of those involved in the making of this film.\r\n1\t\"Classic drama/action western with incredible cinematography that is well ahead of it's time(1954). The production is very good and you can tell that it was done with pride and love.Unique peek into the American NORTHT WEST pioneers is very educational and entertaining.This movie is very under rated because most people do not like to see the reality that many \"\"lawmen\"\" during this particular time and place were very crooked/corrupt much like most developing countries today.The action sequences could have been more realistic though but still,this movie really covers most of the essentials.Not for an audience who wants only pure testoterone type westerns for this movie is more for those who have a sense of history and philosophy.......\"\r\n0\tAhh, the dull t.v. shows and pilots that were slammed together in the 70's to make equally dull t.v. movies! Some examples would be Riding With Death(the most hysterically cheesy of the lot), Stranded in Space(confusing and uninteresting), San Francisco International(horribly dull and unbelievably confusing), and this turgid bit of Quinn Martin glamor. <br /><br />Shot in Hawaii(although you wouldn't know it from the outside shots), it's apparently a failed pilot for a lame spy show. The real problem is that you don;'t like most of the characters, including the drab main character Diamond Head, who seemed half asleep for the entire movie; his boss 'Aunt Mary', who had a really weird delivery of his lines and shellacked white hair as well as the a tan that looked like it had been stuccoed on; Diamnd Head's girlfriend/fellow agent(hell, I can't even remember her name) a skinny, wooden woman with a flat way of speaking that is just not sexy or interesting; and the singing sidekick Zulu(again, i can't remember his character's name)who wasn't bad in small doses. The most interesting person in the whole production was Ian McShane, who sucked as a bad guy but still proved his acting chops. Alothugh the make-up jobs this so-called 'chameleon' used to disguise himself were just laughable. I have absolutely no idea what he was doing or what he was trying to steal from the lab that caused him to dress as a South American Dictator cum American General. Nor do I care. The plot simply wasn't interesting enough to hold your attention for even ten minutes at a time, let alone the hour and a half or so it goes on. Just call this one - Hawaii Five No!\r\n1\tI so love this movie! The animation is great (for a pokémon movie), the cgi looks so awesome. I love the music in the movie. So great they kept the Japanese music.<br /><br />As for the story: its great. It has a great feeling of friendship. Celebi is a very cute and powerful pokémon. Ash is really great in this movie, and I like his friendship with Sam. The only thing I didn't like was Suicune's appearance, he just suddenly pops up, helps Ash & co a bit and leaves. They could have made his part in the movie a little bigger.<br /><br />But overall, awesome movie! Can't wait to own the USA version on dvd!\r\n1\tRated R for Strong Language,Violent Content and Some Nudity. Quebec Rating:13+ Canadian Home Video Rating:14A<br /><br />Fear Of A Black Hat is one of the funniest, most original comedies I have ever seen.Its basically a gangsta rap version of the film This Is Spinal Tap.Its a shame not many people have heard of this gem of a film.If you manage to find this film anywhere don't hesitate to buy it even if you don't like rap music.There are not too many comedy films that I give a perfect 10/10 to.The only ones I can think of at the moment are this film,Clerks,The World According To Garp,The 40 Year Old Virgin and Chasing Amy.This film is a hilarious stereotype of the gangsta rap culture.The movie is about a woman named Nina Blackburn who is making a documentary about the fictional rap group N.W.H(N****z with hats).They are basically the stereotype of a rap group making many controversial rap songs about killing and being a gangsta.Fear Of A Black Hat is an excellent comedic film and I recommend it even if you are not a fan of the gangsta rap scene.Its a shame this film is not in the Top 250.<br /><br />Runtime:88min <br /><br />10/10\r\n0\t\"Oh man. If you want to give your internal Crow T. Robot a real workout, this is the movie to pop into the ol' VCR. The potential for cut-up lines in this film is just endless.<br /><br />(Minor spoilers ahead. Hey, do you really care if a film of this quality is \"\"spoiled?\"\") Traci is a girl with a problem. Psychology has developed names for it when a child develops a sexual crush on the opposite-sex parent. But this girl seems to have one for her same-sex one, and I don't think there's a term for that. It might be because her mother Dana is played by Rosanna Arquette, whose cute overbite, neo-flowerchild sexuality and luscious figure makes me forgive her any number of bad movies or unsympathetic characters. Here Dana is not only clueless to her daughter's conduct; she seems to be competing for the gold medal in the Olympic Indulgent Mother competition. <br /><br />It's possible that Dana misses Traci's murderous streak because truth be told, Traci seems to have the criminal skills of a hamster. It's only because the script dictates so that she manages to pull off any kind of a body count.<br /><br />A particularly hilarious note in this movie is the character of Carmen, a Mexican maid who is described by Dana as around so long she's like one of the family although she dresses in what the director thought would say, \"\"I just fell off the tomato truck from Guadalajara.\"\" Carmen is so wise to Traci's scheming, she might also wear a sign saying, \"\"Hey, I'm the Next Victim!\"\" Sure enough, Traci confronts Carmen as Carmen is making her way back from Mass, and bops her with one of those slightly angled lug wrenches that car manufacturers put next to your spare as a bad joke. I rather suspect than in real life those things are as useless as a murder weapon as they are for changing a tire. <br /><br />In another sequence, Arquette wears a flimsy dress to a vineyard, under cloudy skies, talking to the owner. Cut to her in another flimsy dress under sunny skies, talking to the owner's brother. Then cut to her wearing the first dress, in the first location, under cloudy skies - but it's supposed to be later. You get the picture. We're talking really bad directing.<br /><br />As for skin, don't expect much, although Traci does own a nice couple of bikinis. <br /><br />For those looking for a trash wallow, 8. For anybody else, 1/2.\"\r\n0\tI have copy of this on VHS, I think they (The television networks) should play this every year for the next twenty years. So that we don't forget what was and that we remember not to do the same mistakes again. Like putting some people in the director's chair, where they don't belong. This movie Rappin' is like a vaudevillian musical, for those who can't sing, or act. This movie is as much fun as trying to teach the 'blind' to drive a city bus.<br /><br />John Hood, (Peebles) has just got out of prison and he's headed back to the old neighborhood. In serving time for an all-to-nice crime of necessity, of course. John heads back onto the old street and is greeted by kids dogs old ladies and his peer homeys as they dance and sing all along the way.<br /><br />I would recommend this if I was sentimental, or if in truth someone was smoking medicinal pot prescribed by a doctor for glaucoma. Either way this is a poorly directed, scripted, acted and even produced (I never thought I'd sat that) satire of ghetto life with the 'Hood'. Although, I think the redeeming part of the story, through the wannabe gang fight sequences and the dance numbers, his friends care about their neighbors and want to save the ghetto from being torn down and cleaned up. <br /><br />Forget Sonny spoon, Mario could have won an Oscar for that in comparison to this Rap. Oh well if you find yourself wanting to laugh yourself silly and three-quarters embarrassed, be sure to drink first. <br /><br />And please, watch responsibly. (No stars, better luck next time!)\r\n1\tI first saw this film as a young boy and recently purchased it on DVD.<br /><br />James Stewart brings great depth to the role of Chip Hardesty, a hardworking and dedicated FBI agent. His life in the Bureau is intercut with his family life, which is not all rosy. His wife (an excellent portrayal by Vera Miles) lives in fear of the dangerous nature of his job, and they even separate for a time; Chip's best friend and fellow agent Sam Crandall (Murray Hamilton) is killed in a gunfight; Chip's son, Mike, enlists in the Marines during World War II. Through it all, the family carries on with bravery and dignity.<br /><br />The action sequences are quite exciting and the semi-documentary style of the film works effectively. And the music by Max Steiner says it all; fidelity, bravery and integrity.<br /><br />This country owes a great debt of gratitude to the men and women of the FBI and, yes, to J. Edgar Hoover as well. If Mr. Hoover's type of vigilance had been observed, we might have been spared 9/11, the surge in crimes against children and many of the venal politicians we've had to put up with since his passing.\r\n0\t\"> What a dud. It began with some promise, then became unfocused and > wandered. John Cusack's Cajun accent was laughable, Bridget Fonda's role > existed only to get a skirt into the film, and Pacino did Pacino. His entire > generation of actors -- Nicholson, Hackman, Caine, Hoffman -- have developed > a standard performance that each can deliver effortlessly (or, less > charitably, \"\"mail in\"\") in their paycheck films. This was > one. >\"\r\n0\tI think Phillip Kaufman read the cliff's Notes version of the Kundera novel and then set about making this film. Okay, of course it won't have the punch of the original. Kundera's novels are great because of his manipulation of the narrative concept, his ability to step in and out of stories he constructs. This film does not even try! The one dream sequence of Tereza's, so vital to the atmosphere of the book, is reworked and makes no sense whatsoever. Also, and this is perhaps a lesser point, Daniel Day-Lewis looks a lot like Ben Stiller in this (I know it's not really a valid complaint, but hey). A perfect example of the Hollywood-izing of otherwise fine literature.\r\n0\tI thought this was a truly awful film--I found myself actually yelling at my tv a couple times. One or both of the gay male leads was miscast; there was absolutely no chemistry between them and Richard Ruccolo looked like he'd rather be kissing a dog. The movie covers their long and tortured courtship, highlighting each break-up and make-up, but not developing the reasons in-between in any detail. These reasons would make for some interesting characters, not the fight or the make-up scene in bed (lame even if you liked the movie).<br /><br />Andrea Martin and Adam Goldberg shine as their characters, but it doesn't make the film worth renting. Save your money.\r\n1\t\"If your a fan of Airplane type movies this is a must see! Set in the 1920's and 30's Johnny Dangerously has not only great actors but great lines. \"\"knock down dat wall,knock down dat wall and knock down dat #@$%#@$ wall.\"\" \"\"You shouldn't hang me on a hook johnny\"\" or \"\"Sounds like Johnnys getting laid\"\". Its definitely a spoof of the old James Cagney Movies and references them a lot. There's a great scene when Jhonnys walking down death row and has a priest set up for his escape. Listen closely to the fake priests readings, its pretty funny. Another great scene is when Dom Delauise plays the Pope. Watch his reaction to Johnny after he tips the Pope, a lot said without making a sound.I recommend this movie to all who love to laugh or are old movie buffs.\"\r\n1\tI liked the film. Some of the action scenes were very interesting, tense and well done. I especially liked the opening scene which had a semi truck in it. A very tense action scene that seemed well done.<br /><br />Some of the transitional scenes were filmed in interesting ways such as time lapse photography, unusual colors, or interesting angles. Also the film is funny is several parts. I also liked how the evil guy was portrayed too. I'd give the film an 8 out of 10.\r\n0\t\"Here's the good news first. \"\"Spirit\"\" is the most visually incredible animated film in current home theater release. The artwork and effects are revolutionary, and I recommend that you give this movie a look by virtue of the visuals alone.<br /><br />And now for the bad news. I really mean it when I say that the animation is the only thing this movie has going for it. You may remember that \"\"Spirit\"\" got badly trounced by \"\"Lilo and Stitch\"\" last summer. The first person who argues that it was because Disney is more well-established and had better advertising can write me a four page long essay entitled \"\"Why 'Lilo and Stitch''s Script Didn't Stink\"\".<br /><br />For all the incredible new animation technology on display in \"\"Spirit\"\", the story is almost *astonishingly* dull. There is a lesson here, and (needless to say) it doesn't just apply to animated movies. You can have the most mind-blowing visual effects ever to grace the eyes of a mortal, but if your story is boring and, more importantly, we don't care about your characters, it's bad film-making. Simple as that. The animation is still mind-blowing; I just can't wait to see what somebody with more imagination does with it.\"\r\n1\t\"\"\"Lion King 1 1/2\"\" is the funniest non-theatrical release from Disney. I recently saw this movie again after not seeing it in many years. I remember first time I saw it I didn't had any expectations at all and were pleasantly surprised by this watchable and highly entertaining movie.<br /><br />Is it better than \"\"Simba's Pride\"\"? In many ways, yes. Though \"\"Simba's Pride\"\" wasn't exactly bad, it did suffer some problems: lack of an good script and bad characterizations, which made impact of what otherwise a okay film.<br /><br />Anyway: It's nice to see Timon and Pumbaa's personalities blossom again in the way that we (or certainly me) loved about them in this film; in \"\"Simba's Pride\"\" they were completely annoying and I didn't liked the \"\"Timon and Pumbaa\"\" series neither.<br /><br />This film could easily have been a stupid one, but fortunately the filmmakers didn't took the wrong turn and instead focused to make this film at times extremely hilarious. There are a few jokes that adults can enjoy on their own. The score is quite good. There are two new songs, which are catchy and two new characters, Timon's mom, (voiced by recognizable Marge Simpsons' Julie Kavner) and Uncle Max, which are enjoyable. The friendship between Timon and Pumbaa are touchingly portrayed. The emotional scenes are well integrated in the comical story and doesn't feel out of place, which it could have easily done (especially in comedies).<br /><br />But is there something that distracts this picture from getting 10 votes from me? Yes, there is. Although they fortunately doesn't impact too much, but I'll mention them: 1. Many of the scenes from the first film are used in this one. Personally, it was weird to see the old scenes integrated with the new ones.<br /><br />2. During the climax, some of the jokes becomes lame.<br /><br />3. Storywise, this is Timon's story and although the filmmakers try to integrate his tale with Simba's, it makes the screenplay feel a little rushed at times.<br /><br />But hey, those details doesn't impact this otherwise amusing movie. It is the only really acceptable Disney sequel, which should be in every movie collection.\"\r\n1\t\"I've read most of the comments on this movie. I have seen this movie(and the whole prophecy series) many times with family members of all ages, we all enjoyed and it just made us meditate on what we already knew from reading and studying the bible about the rapture and end times. No one got scared or traumatized like I have read on some posts. The movie is just based on biblical facts. I have seen a lot of end time movies \"\"Tribulation\"\", \"\"Armagedon\"\" and so on and by far this one is one of the best in presenting bible truths. It may not have a lot of great special effects like todays movies but I believe it is a good witnessing tool. This movie and its prophecy series can be seen free at this website higherpraise.com, and judge for yourself. Blessings to all.\"\r\n1\tLouise Brooks gives a wonderful performance in this well-made French melodrama. She plays a typist named Lucienne who, despite being in love with a man named Andre, dreams of rising above her position in life. She sees opportunity in a beauty contest for Miss Europe, but Andre is furious when he discovers that she's entered, then demands that she withdraw. She tries to take back her entry only to discover that she's already been chosen as Miss France and will now go on to the main pageant.<br /><br />This is a story of love, loss and decision played out to its passionate end. The movie is very energetically filmed by director Augusto Genina and cinema tographers Rudolf Mate and Louis Nee. The filming style is more like modern movies than the Hollywood flicks of the '30s, and shows the different style employed by Europeans. There are many fast cuts and traveling shots, mostly done with great skill and verve. The high energy of the movie's first third dwindles a bit in the middle but picks up again in the last 15 minutes.<br /><br />The performances were very good by all the principals, but that of Louise Brooks is especially memorable. Louise leans heavily on her silent screen skills even though this is a talkie, but because her silent style had a surprisingly contemporary, understated feel, she makes the transition to talkies very well. The long early scene at the fair was especially poignant as Louise used her remarkably expressive eyes to convey her growing sense of misery and alienation, of being trapped in a life she no longer wants. I doubt it's ever been done better.<br /><br />The film builds to a superb finale, artfully shot, powerful and stylish. This is really some of the best stuff of the early days of film. And the tragic storyline only underscores the greater tragedy that this is the final starring role for Louise Brooks. She wasn't just a great beauty who looked fantastic in a swimsuit, she really was a major acting talent who basically threw it all away. We are all the poorer for that.<br /><br />This movie is less well known than her German films with G.W. Pabst, but I think it's a better one. I think this crew is just better at storytelling than Pabst, and while Prix de Beaute may lack the deep moral complexity of the Pabst films, it's much easier to follow and is overall a more streamlined, focused piece of work. And it doesn't hurt that Louise's singing parts are done by Edith Piaf, either.<br /><br />Bottom line, this is a classic Louise Brooks film well worth looking for.\r\n1\tI found the storyline in this movie to be very interesting. Best of all it left out the usual sex and violence (they're getting old) inserted in many movies. The movie was well done in its flashbacks to days gone by in that area of the Southwest. The acting was also superb.\r\n1\t\"Gary Busey is the title character, Frank \"\"Bulletproof\"\" McBain, your standard-issue reckless maverick cop who's earned his nickname because no matter how many bullets he takes (38 and counting), he never stops going after the bad guys.<br /><br />When a cutting-edge U.S. tank dubbed \"\"Thunderblast\"\" is driven across the border into Mexico, it's nabbed by revolutionaries / terrorists led by General Brogado (Rene Enriquez) and Libyan Colonel Kartiff (Henry Silva), who's aligned himself with Russian villains. The Army personnel involved are kept as prisoners, chief among them Devon Shepard (Darlanne Fluegel), who happens to be McBain's ex-girlfriend. McBain is then recruited by the Army for a rescue mission.<br /><br />Busey may not have the physical presence of say, someone like Schwarzenegger, who would have been another appropriate lead for a film of this type, but he's a blast as a self- confident dude who's quick with the wisecracks. Fluegel is a great female lead; she not only looks incredibly sexy but makes for a fine butt-kicking action babe. Enriquez, Silva, Juan Fernandez, and the always welcome William Smith (as a Russian major) are loathsome scum in the classic action movie tradition. The supporting cast is quite full of familiar and reliable character actors: L.Q. Jones, R.G. Armstrong, Thalmus Rasulala, Lincoln Kilpatrick, Mills Watson, Luke Askew, Danny Trejo, and Cary-Hiroyuki Tagawa.<br /><br />T.L. Lankford and B.J. Goldman supply the script, based on a story by Lankford and veteran B director Fred Olen Ray. It's the kind of script where you just know the writers have their tongues in their cheeks: they know their material is absurd and cheesy, and just have fun throwing credibility out the window. Veteran action director Steve Carver keeps it moving and delivers a respectable amount of gunfire, explosions, and general all-out mayhem.<br /><br />\"\"Bulletproof\"\" is good fun for the action fan who doesn't mind switching off their brain now and then and just enjoying a generous assortment of violence and humor.<br /><br />7/10\"\r\n1\t\"Look it's Eva Longoria and Paul Rudd in a movie about a dead girlfriend haunting the new girlfriend. It's Gabrielle from Desperate Housewives and the guy who wore \"\"sex Panther cologne\"\" in Anchorman. If you are expecting a Golden Globe nominated movie then you need to rethink how you look at movies. However, if you are willing to suspend reality for 90 minutes and want to watch a funny movie then you've come to the right place. The characters are all funny. They work together very well. The real match up is Paul Rudd and Lake Bell. He's as funny as he was on Friends and she was funny and good looking all at the same time. I went with my wife, she enjoyed it and so did I.\"\r\n1\tVIVAH is in my book THE BEST MOVIE OF 2006 ! PERIOD !!. In my book it is one of the best 100 movies EVER MADE IN Bollywood. Its sad that this movie doesn't have that many reviews and isn't having that much popularity. <br /><br />VIVAH is once again a true achievement from a director who DOES it again. After HAHK and Maine Pyar Kiya Sooraj has once again pulled off a brilliant one VIVAH. <br /><br />This is the most simple and cute movies that I've seen this year. After seeing Don 2 which was CRAP and later Dhoom 2 which even beat Don in that matter, I finally see a movie which is so close to my heart and my culture.<br /><br />I don't know why Bollywood is moving away from the beautiful culture which we have and are making Hollywood remake style crap movies like Dhoom 2 and don. <br /><br />The story is beautiful and relates much to the Indian system of Arranged marriage which I too would like to be a part of. Our system which teaches us to obey elders, follow them and of course obey their thoughts is so brilliantly shown in this movie!. Of course there isn't any force in choosing your life partner and it should be a brief meeting between the couple and its up to them to decide as it is brilliantly shown in this movie. <br /><br />Coming back to the movie.....VIVAH is a story of Journey between the beautiful period of Engagement and marriage. The phase where the guy meets the girl !....Both understand each other ..Both try to assess if they could love each other for Seven generations (as our system says) and the various which occur during marriages.<br /><br />Amrita Rao is brilliant in the movie.......Shahid is OK.....and Alok Nath and Anupam Kher are awesome !! The songs are BRILLIANT. ! I especially like the HAMARI SHAADI MAIN HAFTE REH GYE CHAAR and Do Anjaane Ajnabi ......<br /><br />Overall A MUST SEE for anyone who still believes in the Indian culture and tradition and I certainly do !.<br /><br />Go see this movie......I just have to say one word.......<br /><br />BLISS !.\r\n0\t\"Really started the 80s trend of disgusting violence masquerading as a \"\"horror film\"\". I was the target audience for this repellent piece of trash and I was disgusted then as now.<br /><br />Oh, where do we start. Let's see, the setup: You can bring people back to live IF they died a violent death. So that laughably weak premise is the excuse to butcher people in horrible ways, because, well, that's needed to bring them back to life! This might have worked if played over the top for black laughs a la Re-Animator or something. But no, it's played straight. There is a whole terrified family in a wagon that gets hunted down, one of the few scenes at least where their demise is off screen. However, just about everything else is on screen. There is actually a scene where a young girl walking along is beaten and killed by zombie townspeople, who are all filming it and grinning with several cameras. Then, there is a closeup of her face as the filmmakers lovingly--and time consumingly--reveal in time-lapse photography her beaten face being carved down to a skull and rebuilt to look \"\"normal\"\" again. This done, of course, by a slumming Jack Albertson as the mortician behind it all. He likes to drive around in a ambulance/hearse playing old Tommy Dorcey tunes, I guess that is supposed to be cute.<br /><br />In the end, of course, even the Sheriff is undead and the doctor offers kindly to fix his rotting hands. Not clear why the Sheriff is not out with the other townspeople killing children with glee and slicing their faces off, sticking needles in burn-victims eyes, etc.<br /><br />I wonder, really wonder, what people see in a geek show like this to give it any kind of rating at all. It's not scary, the twists are laughable, and overall it's kind of sick. It's not even well enough done to \"\"see it on a dare\"\" or enjoy on a level you might watch a bad HG Lewis film. It's just God-awful trash, made for people who get off on this type of pointless gore, and made by people slumming for a paycheck.<br /><br />Sad that Albertson was even involved.\"\r\n1\tRichard Dix decided to retire and so Michael Duane took his place playing the role as Ted Nichols who meets up with a young French girl named Alice Dupres Barkley, (Lenore Aubert). This couple only knew each other for two days and they decided to get married by a Justice of the Peace (Judge) and it is pouring rain when they pull up to the Judge's home and find out he is not home and will not return until the next day. As the couple are inside the house you see some one lift up the hood of their car and takes an automobile part from the engine. Once you see this event happening you realize this couple is in for a big surprise and the story beings to reveal a very mysterious event which surrounds Alice Barkley and so poor Ted Nichols starts out with plenty of trouble and no marriage. Good mystery, but I missed Richard Dix. Enjoy.\r\n0\t\"Waldemar Daninsky (Paul Naschy) travels to Tibet and is bitten by a yeti, which causes him to become a werewolf. He is accidentally killed after he attacks his cheating wife and her lover, and is later revived by a female scientist, Dr. Ilona Ermann, who uses him in mind control experiments. Daninsky later discovers an underground asylum populated by the bizarre subjects of the doctor's failed experiments.<br /><br />Upon hearing of Naschy's death from colleague Jon Kitley, I rummaged through my collection for a suitable film to watch. In my scramble, I found I own not one but three(!) copies of \"\"Fury of the Wolfman\"\". The film is of questionable video quality, the sound is dubbed in a mediocre fashion, the cinematography is sort of slapstick style at times. And the American versions have two love scenes removed. Quite frankly, without a remastered, uncut copy, I wasn't really getting the proper movie in all its glory.<br /><br />This film claims to be the fourth in a long series about the werewolf Count Waldemar Daninsky. I suspect this is true, but you wouldn't know this from the film itself. The plot is confusing at times, and there's really no indication that this is a sequel. If you read the plot summaries on Wikipedia and compare them to what is printed on the box, you'll see that I'm not alone in my confusion.<br /><br />Perhaps the film's shortcomings can be forgiven if we understand the production hell it went through. While floating around for years, it was only released in 1973, due to problems involved in finding a distributor. And Naschy said in his autobiography that the director, Zabalza, was an incompetent alcoholic, and that he hated working with him. Those really aren't light accusations, and I have no idea what Zabalza had to say on his own behalf.<br /><br />Chances are, sooner or later you'll come across a low-grade version of \"\"Fury of the Wolfman\"\". It appears in a variety of three-packs and box sets, so you might accidentally acquire it and not even know. What really needs to happen is an American uncut version, with a decent sound and video mix, and the love scenes thrown back in. As far as I know, this does not exist. Let us honor Paul Naschy's legacy and get his films to a wider audience in a level of quality he deserves.\"\r\n1\t\"This movie is a must-see movie for all. Congress should see this truthful documentary from the point-of-view of the soldier, as should everyone in America. The previous reviewer totally missed the point--the point is to reveal the truth about teaching our soldiers to kill people who are NOT terrorists, but who just live in our \"\"enemy's\"\" territory, and what it does to the soldiers. We must support our troops by bringing them home IMMEDIATELY, before another person is killed or injured. This also reveals that the government does not help its veterans, those who are injured mentally, with ptsd- post-traumatic stress disorder, or physically, with lost limbs. Julie A. Roberts, Streamwood, IL\"\r\n0\t\"I have to confess right off that I have never been a fan of Rodney Dangerfield. Indeed, from me he gets \"\"no respect.\"\" I watched this only because my wife wanted to see it, and found exactly what I expected: a stupid story without any real humour. It's full of lame, crude jokes and a totally ridiculous plot revolving around a developer's (Dangerfield) plans to build a ski resort in Utah that just didn't capture my attention at all.<br /><br />In addition to Dangerfield the film starred a weak cast, including the likes of Andrew Dice Clay and the totally over the hill John Byner (I didn't even know he was still around until I saw his name in the credits for this.)<br /><br />This truly is a Dangerfield disaster.<br /><br />2/10\"\r\n0\t<br /><br />What is left of Planet Earth is populated by a few poor and starving rag-tag survivors. They must eat bugs and insects, or whatever, after a poison war, or something, has nearly wiped out all human civilization. In these dark times, one of the few people on Earth still able to live in comfort, we will call him the All Knowing Big Boss, has a great quest to prevent some secret spore seeds from being released into the air. It seems that the All Knowing Big Boss is the last person on Earth that knows that these spores even exist. The spores are located far away from any living soul, and they are highly protected by many layers of deadly defense systems. <br /><br />The All Knowing Big Boss wants the secret spores to remain in their secret protected containers. So, he makes a plan to send in a macho action team to remove the spore containers from all of the protective systems and secret location. Sending people to the location of secret spores makes them no longer a secret. Sending people to disable all of the protective systems makes it possible for the spores to be easily released into the air. How about letting sleeping dogs lie?! <br /><br />The one pleasant feature of ENCRYPT is the radiant and elegant Vivian Wu. As the unremarkable macho action team members drop off with mechanically paced predictable timing, engaging Vivian Wu's charm makes acceptable the plot idea of her old employer wanting her so much. She is an object of love, an object of desire -- a very believable concept!<br /><br />Fans of Vivian Wu may want to check out an outstanding B-movie she is in from a couple years back called DINNER RUSH. DINNER RUSH is highly recommended. ENCRYPT is not.\r\n0\t\"An okay film, with a fine leading lady, but a terrible leading man. Stephan Jenkins, who plays the husband, is a truly bad actor. Joyce Hyser, on the other hand, is the movie's saving grace. She's the best actor of the bunch.<br /><br />NOTE* the first comment, by the fellow who heaped praise upon the movie (and, according to his IMDB.com account, has only written ONE review -- and guess for what movie?) is obviously a plant. While the movie is nicely shot, it's by no means subtle or great or whatever other hypobolic descriptions the reviewer used.<br /><br />\"\"Art of Revenge\"\" is a fair movie, but it's a big tease. It offers up all manner of sexual situations but never goes through with it. Like watching a Skin Flick on Cinemax, but with all the \"\"naughty bits\"\" edited out.<br /><br />The film, as a whole, is a bit unfocused and the ending, and much of the third act, is really a big mess. There's a twist ending, of course, since every movie nowadays finds it necessary to have a twist ending.<br /><br />A 4 out of 10.<br /><br />\"\r\n0\t\"I just finished watching \"\"El Otro\"\". I have always taken my hat off to Julio Chavez's performances, as he is a great actor, but this movie is really depressing and slow. I guess that it would have been even worse if it wasn't for Julio. Anyways, this is definitely a film that you will never understand if you are not from Argentina, and even if you are, I would advise you not to rent this movie in order to have a nice time with your girlfriend, boyfriend, family or friends... it is really depressing and incredibly slow, and the plot does not make a lot of sense neither. Probably the director wanted to show the fragility of the human life, but what he does is bore and impress the audience with scenes that shock you a little bit. It gives you something to think about, but not in a good way. Overall, I definitely didn't like this movie.\"\r\n1\t\"This is a great short. i think every voice is done by jason steele. (you can only just barely tell if you've heard his normal voice though, so don't worry about them sounding the same. they don't.) its about 15 minutes long.<br /><br />edward the spatula is fighting the war against spoons and he meets some weird people. in fact, everyone he knows seem pretty crazy. <br /><br />\"\"edward!\"\" \"\"general peterson, we have to get you to a medical unit!\"\" \"\"no, I'm not gonna make it edward.\"\" \"\"dont talk like that, I'm sure you'll be fine.\"\" \"\"im a goner edward, and you know it. before i go-\"\" \"\"yes?\"\" \"\"can i just have... one kiss?\"\" \"\"umm, no.\"\" \"\"come on, just one, small, peck on the lips?\"\" \"\"im walking away now sir.\"\"<br /><br />there's gonna be movie pretty soon. the date for that is in September, but its probably gonna get pushed back.\"\r\n1\tA very interesting entertainment, with the charm of the old movies. Tarzan faces the greatest perils without hesitation if the moment requires it, and we all enjoy with him his success.The most insteresting for me is a man without special powers facing the problems and beating them just with human skills (he was a great swimmer and had a great shout)\r\n1\t\"While listening to an audio book, Cambpell Scott is the reader. I was so excited to hear his voice and that brought back my disappointment that \"\"Six Degrees\"\" was canceled. They never seem to keep the good shows on air long enough to capture an audience that can connect with the shows story. What a shame, and shame on th network for not giving this show a full seasons chance. This was an excellent show to watch with a great cast. The network gave \"\"Men in Trees\"\" a second chance witch is also a great show , but they took \"\"Invasion\"\" off and that also was something totally different to watch, not the same old-same old themes. Why can't the networks get it right.\"\r\n1\tThis is a film that can make you want to see it again. I especially, liked the way it ended. I did not see the end coming, but when Laws was not blown away the first time, one suspects he will be back again.<br /><br />The story is gripping and could have been more psychological, but I understand the story needed to capture the viewer and the action was necessary for that.<br /><br />Hard to believe Michael Jr. could be so apparently unmoved as his younger brother and mother as blown away. But, I can appreciate the scene play couldn't really take our attention there because it had a greater story to tell.<br /><br />Some have complained about Hanks as a gangster. I believe that isn't justified. If his character had been any harder, he would not have cared if his son pulled a trigger or not.<br /><br />Eight Stars for this one. Although it was released in 2002, I just saw it for the first time yesterday on DVD.\r\n0\t\"The movie was TERRIBLE!!! Easily the worst movie I have seen in the past few years. One of those movies I will be able to tell people for the next three years that it was the worst movie I can think of. Thank you for giving me an answer to that burning question \"\"What is the worst movie you have seen?\"\" Answer: Celestine Prophecy. Trust me...I read the book, enjoyed the message and was excited to see the movie, but then, they treated the audience like we are r*tarded. There is no story and the story that is there is crippled by too much magic and coincidence. It is too bad they have to spell out the nine prophecies and can't simply weave them into a story that is entertaining to follow. They didn't spend any time on character development and it was easy to not care if any character died. It was embarrassing to be one of the few people who stuck around until the end of this incredibly boring movie. The book is pretty boring too but I enjoyed the parallels that could be seen in everyday life while you read the book. The film does not offer the same opportunity and I would suggest not seeing it if you want to continue to hold the words of the book close to your heart. DON'T SEE THIS MOVIE. Trust me.\"\r\n1\t\"This movie rates as one of my all time favourite top 10 movies. Many people seeing it for the first time and knowing little about many of the themes in the movie probably won't understand why I find it so enthralling so I will try to explain...<br /><br />The movie is very rich in historical detail and cultural insights, and while it has a few minor anachronisms, they are completely forgivable. The story is a retelling of the famous duel between the Monk Benkei and the young Prince Yoshitsune on Gojo bridge. During the fight according to legend Yoshitsune bests Benkei and the monk becomes the prince's loyal retainer. This movie is a revision of that story however and involves war, dark prophecy, and political maneuvering.<br /><br />One of the main themes in the movie is \"\"Mappo\"\", which is the prophecy by the Buddha that after 1000 years his teachings would fail and the world would fall into chaos. It was believed in Heian Japan, after the eruption of Mt Fuji and the civil war between the Taira (Heike) and the Minamoto (Genji) that the world would fall into anarchy and everything would collapse. It is a time of demons.<br /><br />Next you have the way in which the movie resolves the issue of Yoshitsune's sword training by the Tenku (Raven Goblins) of Karuma. Defeated clans often escaped into the mountains and disguised themselves as demons to scare the locals off. This is said to be where ninja clans began historically. Yoshitsune's depiction in Gojo nicely accommodates all of this.<br /><br />Then there is Benkei, and the various strains of Buddhism depicted, including a lot of Esoteric Buddhism of the Shingon sect. These are all depicted quite accurately, and just to add a little extra, the movie manages to convey the power of meditation and Ki energy in a way that makes it integral to the story, i.e. it uses magic realism to add an extra dimension to the film but does it in such a way as to make it tactical and menacing.<br /><br />All-in-all it is filled with fascinating tidbits and rings surprisingly true-to-life for the period. The scenery and the costuming are also completely unmissable and very authentic. The soundtrack is great, very brooding and ominous. I also thought that the actual acting performances were surprisingly good. Benkei is a great brooding anti-hero, Shanao (Yoshitsune)is depicted as a young man testing his limits and growing increasingly drunk on his own power, and Tetsukichi the scavenging sword-smith makes for and interesting depiction of the \"\"common man\"\" and his less than flattering opinion of the killers who fancy themselves his social betters.<br /><br />As to the plot, to see why it is so good, I really suggest you dig up an old book on Japanese history and see how this retelling turns an almost lighthearted Robin Hood vs Little John story into a gory tale of intrigue, violence and infernal karma.\"\r\n1\t\"In the year 1990, the world of Disney TV cartoons was certainly at it's prime. Shows like Chip n Dale Rescue Rangers, DuckTales and Gummi Bears was already popular, and now Disney made another great cartoon and that cartoon brought the birth of the Disney Afternoon. That cartoon is called TaleSpin. It's about old Jungle Book character Baloo the Bear as he gets a job in the plane business. In the series he meets Kit Cloudkicker, former Air Pirate and good cloud surfer, business lady Rebecca Cunningham and her hyperactive daughter Molly. This series is very funny and has tons of great puns that you may not understand as a kid but understand later on in life. This is one cleverly written series and it's great to add to your DVD collection. Parents, buy this for your kids rather letting them watch all of those horrible Nickelodeon cartoons. If you liked TaleSpin, then check out \"\"Darkwing Duck\"\" and \"\"Goof Troop\"\". Spin it!\"\r\n1\tWhen I was 17 my high school staged Bye Bye Birdie - which is no great surprise, since it is perfect high school material and reputed to be the most-staged musical in the world.<br /><br />I was a music student and retained strong memories of the production and its songs, as well as a lingering disregard for the Dick Van Dyke movie version which had (deliberately) obscured the Elvis references and camped it up for a swinging 60s audience.<br /><br />So, when the 1995 version starring Jason Alexander hit my cable TV screen, I was delighted with what I saw. Alexander turns in an exceptional performance as Albert, a performance in strong contrast to his better-known persona from a certain TV series. The remainder of the cast are entertaining and convincing in their roles (Chynna Phillips is perhaps the only one who does not look her part, supposedly a naive and innocent schoolgirl).<br /><br />But best of all, the musical numbers familiar from the stage show are all preserved in this movie and performed as stage musical songs should be (allowing for the absence of a stage).<br /><br />So, if you know the musical (and few do not), then check out this telemovie. It does the stage show justice in a way which can probably not be bettered, which is good enough for me. What is better than rendering a writer's work faithfully and with colour and style?\r\n0\t\"Some news reporters and their military escorts try to tell the truth about a epidemic of zombies, despite the 'government controlling the media'. The makings of the film don't understand that the George Romero zombie films only worked because he kept his politics subtly in the background of most of his films (\"\"Land of the Dead\"\" withstanding). This satire is about as subtle as a brick to the face or a bullet to the head is more apropos for this scenario. What's subversive or subtle about seeing a military guy masturbating to death and destruction? Anything nuanced about the various commercials that are inter-cut with the film? Nope. Furthermore the acting is uniformly horrible, the characters thoroughly unlikable, and the plot inane. Add this all up and you have the worst, most incompetent zombie film since, \"\"C.H.U.D. 2\"\" reared it's hideous head.<br /><br />My Grade: D\"\r\n1\tEddie Izzard is genius with his non-stop humor. I could listen all day. His unique approach to life is quite logical. His understanding of discovery (such as the Heimlich Maneuver) is creative. Eddie Izzard captures the heart of what we think. I don't know when I laughed so hard at anyone's off-beat mind.\r\n0\t\"When I saw this \"\"documentary\"\", I was disappointed to see Serbian Propaganda in action once again. Even though Serbia and its nationalist politics is main reason of Yugoslavian breakup, it is not mentioned in this \"\"documentary\"\", which is made by Bogdanovich whose name tells us that he is Serbian and his movie that he is far from being objective. It is one in the set of lies pushed by Milosevic regime. Everyone else is guilty only Serbians were right and victims, even though most of the War Criminals tried in Hague are Serbs, even though Serbs are one who have committed genocide against Bosnians , and attacked Slovenia, Croatia,and Bosnia all independent nations recognized by the UN.Breakup of Yugoslavia was not avoidable because Serbians did not want to release the grip their nationalism has put on Federal Yugoslav government, so SLovenia, Croatia, Macedonia, and Bosnia were forced to become independent nations in order to protect their interests.If you are interested in an objective documentary about breakup of Yugoslavia, and fact led documentary this is not it . You should watch \"\"Yugoslavia:Death of a Nation\"\", Made by Discovery channel and BBC.\"\r\n1\tI have to say, I loved Vanishing Point. I've seen the original, and this is a pretty good remake of it. Even though it didn't follow the original storyline (that's why I gave it 8 out of 10), it was still pretty good and this is probably a better storyline.<br /><br />As for the car, well the DJ's comment at the end about the Challenger going 185 mph into the bulldozers is pretty improbable (And if you look, the speedometer needle was wobbling at 145-150), but even though I didn't see one on the engine in one of the beginning scenes where they show the engine, the original storyline had a supercharged Hemi, so it's possible. For those of you who say aerodynamics wouldn't allow it, the normally aspirated Chrysler 300C of today can go 168 mph, and if you look at that thing, going on a highway with it it's like pushing a brick wall through the wind at 70 mph. Plus, in a wind tunnel test if you put an air dam on the Challenger it would probably be more aerodynamic.\r\n1\t\"Love trap is a \"\"must see\"\" independent film. When I sat down to watch the movie, I came in with low expectations, but left with a blessing. The story is poetic, substantive, and creative. The writer pulls you in further and further which each scene, allowing you to relate to the realistic characters that every one can identify with. The movie allowed me to reflect on my life and what I consider love to be. The movie displayed what love really is, action not emotion. I was also impressed with the quality of the cinematography and the soundtrack of the movie. The entire presentation surpassed my expectations. I give the movie two big thumbs up and recommend it to everyone of all ages and all backgrounds.\"\r\n0\tThis movie was the most out of line and liberally fed movie i have ever seen in my life. (Besides Farenheit 9/11). All of the information was only supported on the opinion of FIVE scientists while 80% of the Asssociated Press highly criticize the science promoted be Gore. Global Warming is a Mass Media Hysteria and nothing more. Most of the information in the movie was either misquoted or it was wrong all together. THis movie has been investigated over and over again and has been shown evidence against that prove its lies were nothing but lies.<br /><br />LIBERAL BLINDNESS! An to think that they show this in school proves that the media has brainwashed us into believing this garbage!\r\n1\t\"Taking a break from his escapist run in the early '80s, Steven Spielberg directed Whoopi Goldberg in an adaptation of Alice Walker's \"\"The Color Purple\"\", about about the desperate existence of an African-American woman in the 1930s. Watching Goldberg play Celie, it's incredible that this is the same woman who starred in movies like \"\"Sister Act\"\". This is the sort of movie that could easily be - no, make that SHOULD BE - part of the curriculum in Black Studies and Women's Studies. There's one scene that may be the most magnificent editing job that's ever been on screen (you'll know it when you see it). I can't believe that this didn't win a single Oscar; it may be Spielberg's second best movie behind \"\"Schindler's List\"\" (maybe even tied with it). Also starring Danny Glover, Adolph Caesar, Margaret Avery, Oprah Winfrey, Willard E. Pugh, Akosua Busia, and Laurence Fishburne.\"\r\n0\t\"A mummy narrates vignettes about men, women, and the sex between them. Huh? At the beginning, the mummy randomly asks the viewer, \"\"Imagine having sex with this girl. Imagine having sex with this boy\"\" about 37 times, while flashing pictures of half naked mod youths. Later, said mods boys pelt mod girls with...vegetables? If you ignore (or fast forward) through the mummy's rambling, the shorts aren't bad in their own right. I found a few of them rather funny. My personal favorite is one where the sexually-confused man tries to convince a girl to have sex with him while his pet lizard sits on the bed. This is one, well, bizarre movie.\"\r\n1\tThere's been a spate of recent surfing movies that I seem to haphazardly run across without advance warning. I caught this treasure on digital cable this week and what a pleasant surprise it was! The focus is on the pioneers of big wave surfing from the 60's Greg Noll to our current Laird Hamilton, from Waimea Bay to Mavericks to Jaws. Hell, I could watch a movie just about Laird Hamilton - one of this generation's great athletes - so the rest is just gravy. There's loads of good surfing mixed in with interviews of past and present surfing stars, in pleasant, relaxed and unpretentious fashion. Of all the surfing movies I've seen this tells the big-wave story the best, and I think it's my favorite. Enjoy!\r\n0\t\"Follow-up to 1973's \"\"Walking Tall\"\" continues the real-life drama surrounding Tennessee sheriff Buford Pusser, but this installment plays like a lame TV-movie. Bo Svenson takes over the lead role from Joe Don Baker, but he's much too mild for the part; he comes off like an ambling country singer with a bat instead of a guitar. Good supporting actors like Richard Jaekel, Luke Askew and Robert DoQui end up with very little to do. I would give the film one-star strictly on its good intentions, but the screenplay is a transparent and lazy mass of routine predicaments and the production is cheapjack. Followed in 1977 by \"\"Final Chapter-Walking Tall\"\" and in 1978 by the television film \"\"A Real American Hero\"\".\"\r\n1\tFor his first ever debut this film has some riveting and chilling moments. In the best horror film fashion the pit of your stomach tightens every moment during this film. The ending is superb. The makers of Blaire Witch obviously watched this film it's ending wasn't an end but a beginning of the end. A great movie and only a piece of Japan's great as far as scare factor a perfect score it makes you think and scared out of your mind.\r\n0\tI was expecting the movie based on Grendel, the book written by John Gardner in the late 1970's. It was based on the Beowulf epic, but told from the perspective of the monster. <br /><br />Whatever you may think of Gardner's book, a movie based on the Beowulf epic should not be entitled Grendel, when it doesn't say anything more about the monster beyond the few pathetic scenes in which the CG monster is shown as nothing more than a modified Predator. <br /><br />On top of this, the writers should also be punished for screwing up the original story so badly and contributing to the continued growing ignorance of mass TV audiences throughout the US.<br /><br />Typical Hollywood to get this so wrong. <br /><br />Very disappointing and a complete waste of time.\r\n1\t\"Every now and then there gets released this movie no one has ever heard of and got shot in a very short time with very little money and resource but everybody goes crazy about and turns out to be a surprisingly great one. This also happened in the '50's with quite a few little movies, that not a lot of people have ever heard of. There are really some unknown great surprising little jewels from the '50's that are worth digging out. \"\"Panic in the Streets\"\" is another movie like that that springs to the mind. Both are movies that aren't really like the usual genre flicks from their time and are also made with limited resources.<br /><br />I was really surprised at how much I ended up liking this movie. It was truly a movie that got better and better as it progressed. Like all 'old' movies it tends to begin sort of slow but once you get into the story and it's characters you're in for a real treat with this movie.<br /><br />The movie has a really great story that involves espionage, though the movie doesn't start of like that. It begins as this typical crime-thriller with a touch of film-noir to it. But \"\"Pickup on South Street\"\" just isn't really a movie by the numbers so it starts to take its own directions pretty soon on. It ensures that the movie remains a surprising but above all also really refreshing one to watch.<br /><br />I also really liked the characters within this movie. None of them are really good guys and they all of their flaws and weaknesses. Really humane. It also especially features a great performance from Thelma Ritter, who even received a well deserved Oscar nomination for. It has really got to be one of the greatest female roles I have ever seen.<br /><br />Even despite its somewhat obvious low budget this is simply one great, original, special little movie that deserves to be seen by more!<br /><br />10/10\"\r\n0\t\"When I go out to the video store to rent a flick I usually trust IMDb's views on a film and, until this one, had never seen a flick rated 7.0 or above on the site I did not enjoy.<br /><br />Sidney Lumet, a legendary director of some of the best films of the 20th century, really misstepped here by making one of the biggest mistakes a filmmaker can: filling a film's cast with thoroughly unlikeable characters with no real redeeming qualities whatsoever.<br /><br />I like films with flawed characters, but no matter how dark someone's personality is we all have a bit of light in there too, we're all shades of gray with some darker or brighter than others. Mr. Lumet crossed this line by filling this movie with totally unsympathetic and almost masochistic pitch-black characters.<br /><br />Ethan Hawke's Hank is a 30-something whining, immature, irresponsible man-child divorced from a marriage with a wife that hates him and a daughter who thinks he's a loser, which he very much is. His indecisiveness and willingness to let others do the dirty work for him because he's too cowardly to do it himself leads directly to their bank robbery plan falling apart and mother getting killed. By the time he stands up to his older brother at the end of the film, it's more pathetic than uplifting. Ethan Hawke plays his character well, but isn't given much to work with as he is portrayed as someone with a boot perpetually stamped on their face and he doesn't' particularly care that it's there.<br /><br />Speaking of which his character's wife is equally as bad. Just about every single shot of the film she's in is her verbally berating him for rent and child support money and further grinding in his already non-existent self-esteem with insults. Seriously, that's just about all the character does. Her harpy-like behavior borders on malevolent.<br /><br />Albert Finney plays their father Charles, and while Mr. Finney has been a great actor for many decades, he spends about 90% of this film with the same mouth open half-grimace on his face like he's suffering from the world's worst bout of constipation. For someone who's been an actor as long as Mr. Finney, you think he'd be more apt at emoting. Even though he doesn't show it much, his character is supposedly grief stricken and anger-filled. And when he smothers Andy at the film's conclusion it's akin to Dr. Frankenstein putting the monster he helped create out of it's own misery.<br /><br />Marisa Tomei isn't given much to do with her character. Stuck in an unhappy marriage with Andy and having an affair with his brother for some unfathomable reason. When Andy's world begins to spiral out of control she logically jumps ship, but it really doesn't make her any less selfish or self-serving than any other character in the film, but probably the one with the most common sense at least.<br /><br />And finally we come to Andy, played by the always good Philip Seymour Hoffman, is the only reason I rated this film a 3 instead of a 1. His performance of the heroin-addicted, embezzling financial executive who's \"\"perfect crime\"\" of robbing his parent's insured jewelry store goes awry is mesmerizing. His descent from calm master planner of a flawed scheme to unstable, deranged homicidal maniac is believable and tragic. Hoffman's character ends up being the film's chief villain, but it's hard to root against him given the alternatives are an emotionally castrated little brother and a father who's self-admitted poor early parenting led to his son's eventual psychosis and indirect, unintentional murder of his mother.<br /><br />Ultimately this film is really only worth watching for PSH's great performance and it's family train wreck nature. Just don't expect there to be any characters worth cheering for, because there really aren't.\"\r\n1\t\"This is a very entertaining film which follows the rehearsal process of a NY production of Macbeth. Although it has a lot to say about power, jealousy and ambition (the themes of Macbeth) in our modern world, the film works best when it is not taking itself too seriously. Recognizable actors such as John Glover, Gloria Reubens and David Lansbury do nice jobs in the main roles, but the highlight for me was the hilarious scene where the \"\"murder\"\" of Banquo (John Elsen) is rehearsed. Probably a more entertaining film for those involved in theatre, but anyone who enjoys Shakespeare should enjoy this film.\"\r\n0\t\"The eight Jean Rollin film I have watched is also possibly the weirdest; the intriguing plot (such as it is) seems initially to be too flimsy to sustain even its trim 84 minutes but it somehow contrives to get inordinately muddled as it goes along! A would-be female vampire (scantily-clad, as promised by the title) is held in captivity inside a remote château and emerges only to 'feast' on the blood of willing victims (who are apparently members of a suicide club) As if unsure where all of this would lead him, the writer-director ultimately has the human villain  actually the blank-faced hero's kinky father  ludicrously revealed as a mutant(?!) from the future! The languorous pace and dream-like atmosphere (the cultists wear hoods and animal masks to hide their features from the sheltered girl) are, of course, typical of both the film-maker (ditto the seashore setting at the {anti}climax) and the \"\"Euro-Cult\"\" style, as are the bevy of nubile beauties on display. Personally, the most enjoyable thing about the whole visually attractive but intellectually vacuous affair was watching familiar character actor Bernard Musson (who appeared in six latter-day Luis Bunuel films) crop up bemusedly through it from time to time!\"\r\n0\tOkay, 'enjoy' is a pretty relative term, but flexibility is in order when you're dealing with a filmmaker of James Glickenhaus' calibre.<br /><br />McBain is truly one of the most ridiculous, over the top action films I've ever seen, without the nasty edge of The Exterminator. Other reviews have commented on a suspension of disbelief regarding the film's heroic middle aged commandos, but how about making a film in the Philippines that is set in Colombia? All the extras are Filipino. In fact the only character who looks remotely Hispanic is good ol' Victor Argo as the much reviled 'El Presidente'! Oh yes, we also have Maria Conchita Alonso overemoting like crazy as a rebel leader. There are tons of explosions and bodies flying everywhere in this amusing paean to the glories of American imperialism.\r\n1\t\"Flat out the funniest spoof of pretentious art house films ever made.<br /><br />This flick exposes all the clichés, and then some! Excruciatingly bad (Downs-Syndrome!) actors. Terribly heavy self important dialog. Scenes that are supposed to shock but fall flat. Jarring editing. Pointless plot points. All wrapped up in a kind of smirky miasma of disrespect for the audience and vague psych-drivel.<br /><br />It achieves exactly what it was designed to. A hilarious satire of those tedious movies made by spoiled teenage trust-funders, to show to their parents when they ask them what they've been doing for the last two years! After \"\"What Is It?\"\" received its Cannes award, presenter Werner Herzog was rumored to have been told that the film was in fact a spoof, in part of his own films! He supposedly blew up at the info. To this day he refuses to discuss the incident.<br /><br />Anyway, see it and laugh, this will be a classic of humor for many years to come.\"\r\n1\t\"This is so exciting! After I saw \"\"La Roue\"\" this afternoon, a short, light-hearted little movie, I consider this one a real treat! This is absolutely delightful and one of the most charming pictures I saw this year. It is the more amazing since it is an early talkie and puts some great pictures of the 30's to shame due to its innovative use of sound in cinema. It's simply filled with music and an adorable mood that's really upbeat and, bottom line, it made me happy! Obviously it wouldn't be so difficult to retrieve the lottery ticket the male lead was looking for, but the pace is so exhilarating and the movie is so spectacularly entertaining that I didn't even think of it twice. The comedy is many times hilarious and I think it is even superior to the Marx Brothers, possibly the biggest comedic force of the time. This is rather perfect.\"\r\n0\t\"This movie is pure guano. Mom always said if you can't say anything nice... but even Mom would say I had to do my part to warn others of this movie.<br /><br />I can guarantee this is the film that Geoffrey Rush wishes would just go away. I would hope that Greg Kinnear fired his agent..from a cannon for giving him the script. After this Ben Stiller is probably praying for someone to pitch \"\"There's Still Something About Mary.\"\" I have always been a fan of Wes Studi's, thank whatever you hold holy that he wore a mask through the film so maybe people won't identify the film with him.<br /><br />It starts of promisingly with a stylistic spoof of the cinematography of the Batman films and then just loses something...like a coherent plot and half decent effects.<br /><br />The jokes are telegraphed an hour before the punchline comes, and even then they fall flat. If you want to see an effective spoof of the comic book world see \"\"Chasing Amy\"\".<br /><br />RUN! DON'T WALK AWAY FROM \"\"MYSTERY MEN\"\"!\"\r\n1\t\"Amicus made close to a good half dozen of these horror anthologies in the 70's, and this, from leading horror scribe Robert Bloch, is one of their best efforts. There are four stories, all worthwhile, but two -- \"\"Sweets For The Sweet\"\" and \"\"Method For Murder\"\" -- distinguish themselves as highly effective journeys into fear.<br /><br />In \"\"Sweets\"\", Christopher Lee plays an impatient widower whose lovely daughter (Chloe Franks) becomes resentful of his neglect and brutish intolerance, so she sculpts a voodoo doll with which she expresses her distaste for his methods. Franks is a beautiful figure of mischievous evil and delivers one of the greatest child performances in a horror film since Martin Stephens in \"\"The Innocents\"\". This installment is directed with great subtlety and the final outrage, occurring off-screen, is a moment of purest horror.<br /><br />\"\"Method of Murder\"\" is about a horror novelist (Denholm Elliott) who is menaced by one of his own creations, the creepy Dominic. This episode is striking for its simplicity and stark terror. Dominic may or may not be real, so director Peter Duffell has a great time playing with our expectations. The brief shots of Dominic reflected in a pond or seen as a fleeting phantasm in a meadow are truly haunting.<br /><br />The original poster art, featuring a skeletal figure clasping a tray holding Peter Cushing's severed head, was a rich enticement for punters fixed on fear.\"\r\n1\t\"I actually really like what I've seen of this cartoon so far. Sure, the animation isn't the best, but frankly, I'd rather see this type of more cartoony style done quickly and cheaply than the old type of style done quickly and cheaply (which was starting to happen more and more often--it's only a style that looks good when a lot of time and effort is put into it). There's nothing wrong with the angular lines and the little black-dot eyes--in fact, I think it's really cute. As a kid I never thought Scooby-Doo's design was particularly adorable, but I think I might like it better know.<br /><br />Anyway, Shaggy has always been my favorite character, and believe it or not, but I think he has the most potential for some depth. Sure, the show doesn't center around the original \"\"Mystery-solving\"\" theme, but that was just a tired old formula anyway. Don't get me wrong--I'm sure there are writers out there who would be able to bring a lot more interest to Mystery Inc.'s traditional pursuits (which has been lacking as late), but in the mean time this show is a fun deviation from the standard. Shaggy and Scooby are still funny, but no longer only comic relief. They're still cowardly, but finally have the opportunity to use what seems to be (shock!) intelligence. They're the same old over-eating slackers as ever, but now actually seem to be getting on with their lives with the help of Uncle Albert's inheritance.<br /><br />I used to find most original Scooby-Doo jokes to be pure cheese and unintentionally hilarious at best, but this show actually exercises a capacity for real humor. Also, I never really like Casey Kasem as Shaggy anyway, so the new actor doesn't annoy me as much as he does other people. (I still think Billy West was the best, though)<br /><br />Overall, while not a great cartoon in the scope of all of cartoon history, still an achievement among other Scooby incarnations.\"\r\n1\tI've recently watched this movie, in a lazy Sunday afternoon, with some friend of mine and we have a lot of fun! This movie is a masterpiece of trash. Try to watch it with this purpose! It hadn't been expected, of course, but the performance provided by the actors (and Alberto Tomba is absolutely the best), the weak script and the low-cost budget had created an amazing mix of foolish things. Tomba was just retired from alpine ski racing, where he was a dominant technical skier in the late 1980s and 1990s. Tomba won three Olympic gold medals, two World Championships, and nine World Cup season titles. Seriously about the director: nobody knows why Damiano Damiani he has signed this movie. All the other Damiani's directions are considerable.\r\n0\t\"I am a student of film, and have been for several years. And the concept of a cyber, kung-fu, satirical chimpanzee had me wondering, \"\"Is this the film that's going to break the mold?\"\" Let's face it, America has never been let down by any piece of cinema that features a simian costar. After such great classics as \"\"Monkey Trouble\"\" and \"\"Dunston Checks In\"\", I thought that the best ideas were already taken. But then comes \"\"Funky Monkey\"\". I laughed, I cried, I contemplated suicide.<br /><br />Now I've read about demon possession in the Bible, but that still doesn't explain why someone would create such a product of evil. First off, having at least a shred of intelligence, I realized that a chimpanzee was in fact an ape, not a monkey at all. However, I was sure that the filmmakers would clear this problem up further into the film. They didn't. Let me sum up this work of art: A company by the name of Z.I.T. has decided to train chimpanzees as soldiers. Why? I think they mention something about the soldiers working for bananas, but when it would cost about an estimated 13 million dollars of government money to train one chimp, this doesn't seem cost-effective. Well anyways, Z.I.T. brings in a CIA specialist (Matthew Modine) to train Clemens (The Chimp). Clemens is everything Z.I.T. hoped for. He can take out an entire shift of guards, who all appear to have gotten their training skills at the local mall, and yet still manage to remind us that we're watching a kid's movie. As you may have guessed, Modine finds out that Z.I.T.'s intentions may be evil (Gasp!) and decides to break Clemens out. Being a CIA agent and all, Modine knows that best way to make himself disappear is to go to a large city, rent a guest room, regularly make appearances on television while fighting crime, and using checks to pay for everything.<br /><br />Z.I.T. finds out where Modine is staying, and sends two of their finest to retrieve him. These guards are possibly the greatest comedy team up since Martin and Lewis, or was it Turner and Hooch? It doesn't matter anyways, because in the end, for a heck of a twist ending, the good guys win!!! Yay! Hooray for predictability! Throw in a nerdy kid who learns to be himself, a lonely mom who needs a date, and music montages that feature songs that would even be blackballed by Radio Disney and you get \"\"Funky Monkey\"\". The climax to the movie? A football game! Played by thugs, bumblers, a chimp, and the nerd boy. No one seems to care about such substitutions at a high school football game.<br /><br />Funky Monkey never lets up! It's edge of your seat entertainment. Some might even call this the \"\"American Beauty\"\" of monkey-filled features. After finishing this epic, I recalled hearing a story about a railroad worker who lost much of his brain functions when a metal rod pierced his temporal lobe. Funky Monkey is a metal rod among movies.\"\r\n1\tIm not usually a lover of musicals,but if i had to choose what would be my favourite it would definitely be Oliver.This film is so well made,the characters are well depicted,the costumes are spot on the acting is good and the songs are great,my favourite being 'Reviewing The Situation'sung by Ron Moody who gives a brilliant portrayal of Fagin.I wasn't old enough to see Oliver when it was released in the late 60s but my sisters were,so for weeks on end i had to put up with them singing the bloody songs,usually it was 'Who will buy my wonderful roses'so i already knew all of the songs before i saw the film.Its a timeless musical you definitely couldn't remake it,it stands on its own.Its not accurate to the book and i don't think it would have worked so well if it had been.I don't think Charles Dickens would be disappointed,as he wrote Oliver to depict the poverty in London,the orphanages,the work houses and about what the poor had to resort to in order to survive,and the film portrays this very well.Also another great reason to watch this film is Bullseye the Old type English Bull terrier,notice his long thin legs,this was bred out of the breed many years ago,they must have hunted high and low to find a specimen like him,and he is exactly how an English Bull Terrier would have looked in Victorian times.Notice he has scars {which is probably makeup}on his face,Bill Sykes had probably used him for dog fighting or for the rat pit.A Victorian Bull Terrier had a record amount of kills in a rat pit.His a beautiful dog any way,and notice he disobeys Bill Sykes after he has killed Nancy,he obviously has his standards his not the chunk head Bill Sykes thought he was.This is a great musical to watch if you like musicals,and if you don't like musicals give it a try any way,there's something for everyone in this film.\r\n1\tSuch a delightful movie! Very heart warming. One can't help falling in love with the character of Gigi. He's adorable as a child and grows into a sensitive artist. The whole movie revolves around him. He lives in a wonderful world  living all life  curiosity, desire and anticipation. There is an elder brother who tries to steal his glory but really remains in the shadow all his life. The father is very stereotypically Italian and so is the mother. I wanted the father to come and reunite with the mother in the last scene  and have them cry and laugh. I also wish that there was at least something redeeming about the elder brother. His personality seems to have been trashed entirely. Passion and ardour  that's the key to life. And looking through the camera  focusing on small details and savoring the delicate details of life.\r\n1\t\"This movie is bufoonery! and I loved it! The \"\"dragon lord\"\" (Jacky Chan) and his buddy, \"\"cowboy\"\", totally made the movie fun, meaningful, and just plain silly. The movie is a rare blend of a good vs. evil fight and (somehow) the wonders and fun that is growing up. Long Shao Ye takes the viewer through the daily activities of the young \"\"dragon lord\"\" (so named because he is the son of a wealthy family) and \"\"cowboy\"\", which include implementing clever, elaborate ways to escape studying (with the help of the entire household, including the tutor), competing in rather boyish (and idiotically interesting) ways to gain the affection of a local girl, competing in \"\"soccer\"\" (you will see what i mean) and the list goes on. Somehow they find themselves in the midst of a fight to save the a shipment of valuable antiques and the lives of several people.<br /><br />The movie has its serious moments. But they do not depress, but rather inspire. The playfulness of the boys are not lost in this exchange, but is actually employed against evil. What I really loved about this movie is how it ends. Not the typical confrontation (which in itself was awesome), but well, you'll see. Let me just say it truly captures the spirit of the movie.<br /><br />silly, witty, meaningful, and nostalgic. great movie.\"\r\n0\t\"Holy crap this movie was bad. I watched it just as a joke. It isn't even so bad that it's good in an unintentional way. This film seemed to be designed to personally make me angry. It worked really well at doing that. It's as if the people who made this just took all of the really annoying stuff about the movie PRIEST, added in a bunch of ugly dudes, took out anything interesting, funny, or even remotely sexy and clever out of the concoction, and then added in a bunch of old rotten cheese. That's all this is. Cheese. There isn't a single person this film could possibly connect to. There isn't any universe this film could possibly take place in. Why can't a film like this just be about enjoying life and being happy? Why did they have to make this already stupid idea for a film even more ridiculous than it already is? Why couldn't they at least even tried to make it an okay film, or even a B-movie. Now that I think of it, what they hell were they trying to do with this film? I watched it expecting a campy love story and instead I got some boring student project about some idiot who has to find the strength and courage to marry his boyfriend while his annoying Christian brother tried to destroy it all!!! No, I'm not joking. That's what it's about. Does that sound good? This film is pretty ignorant against people of the Christan religion, with it's stereotyping of all Christians being loudmouthed, rude, and hellbent on making as many people as miserable as possible. A lot of Christian people I know would never speak or act like these freaks. The film, however, is just as unfair and ignorant to the gay community as well. These have got to be the most tastelessly crafted stereotypical gay men since the guy on the radio station on that ROADKILL video game. It's so nerve wracking and simply irritating to the point that I wasn't able to fully pay attention to this film. The makers of this train-wreck had no strategy for set design, acting, camera angles, lighting, script, authenticity, or an idea to make this entertaining or interesting. There isn't even a single sex scene, or at least not a believable one. Jamie Brett Gabel was the only guy in the film that looked any good at all, but his good looks were sadly put to waste. This is trash. In a perfect world, this film would get voted a 0.0. It's worth 0 as a film alone. A mentally handicapped nun who is blind, deaf, and has tiny little bones for arms and legs and whose face is located on her armpit could write, direct, and produce a better film, and she'd probably be a better actor as well. the fact that this film exists is a crime against the word \"\"film\"\" itself. This film is so bad that other films should be ashamed of being available in the same watchable format. I could put a broom in a chair and then record it with a camera and then stop the film and then replace it with a mini x-mas tree and then record that and I've already made a film that will always be better than BEN & ARTHUR by at least half. There are only two things worse than death. Torture and watching BEN & ARTHUR. I'm a homosexual and I will probably be the gayest person you will ever meet if you ever met me, and I don't think I've ever been more offended by an entire film than I was by the first five seconds of this film alone. If this movie was a mistake, I will personally find a way to change the famous phrase \"\"It's okay to make mistakes\"\" to \"\"It's okay to make mistakes unless that mistake was BEN & ARTHUR.\"\" You know how people always say things like, \"\"Good things come out of everything!\"\"? I think that BEN & ARTHUR was primarily invented so that there could be something on this earth that nothing good would ever come out of. To call this movie the worst movie I've ever seen would be giving it WAY too much credit. It's as if this film were designed just so that it could qualify in a category of it's very own. There are good movies, there are bad movies, and then there's BEN & ARTHUR. This is BEN AND ARTHUR.\"\r\n1\t\"Alex Winter and Keanu Reeves return as the two dopes from San Dimas who get sent on another trip of a lifetime as someone from the future feels exactly the opposite the way it was presented in the first movie.<br /><br />The only difference is that their trip is \"\"somewhere\"\" between Heaven and Hell and ends up being both. When they meet the Grim Reaper, they get the chance of an after-lifetime to play him for a chance to return and stop two evil robots from ruining what future they were supposed to have. Besides playing roles they have...er...perfected, they also play (and revive a couple of extra sales in the process) some classic games (I even have my original copy of Battleship in the closet).<br /><br />The reason I liked this movie better than the original is because it deals with \"\"what it might be like\"\" instead of \"\"what was.\"\" Without spoiling the movie, I can't give you anymore information about this (I guess you'll just have to watch them both and decide for yourself! 8 out of 10 stars.\"\r\n0\t\"I just saw this movie yesterday...I cannot believe the reviews on this site. The ones that give it over one-star must be Buffy fanatics. Well, I am a Buffy fan of the first order, but I know crap when I see it. On every level, this film is terrible. Technically, much of the time you don't know where you are in this movie, even within one scene, it jumps POV like crazy for no reason. No logic whatsoever in cinematic terms. Emotionally is bleak for bleak's sake and attempts to be a psychological thriller when it is just confusing. Throwing nasty-looking red-necks in your movie is a cheap way to convey \"\"atmosphere\"\". I ran out of patience with it a long time before the last act, but I was having too much fun with my friends doing MST3K riffs to turn it off. Since leaving Buffy, SMG has had 2 successful movies, if even listing \"\"Scooby Doo\"\" on your resume could count. Gellar is a fine actress, but she (or her agent) sure can't find a vehicle for her. And Mr. Shepard, if you are having trouble paying your mortgage, I'll send you a few bucks if you promise to not appear in a movie like this again! ( Also, the estate of Patsy Cline should sue for defamation! )\"\r\n0\t\"I grew up Baptist and I know the story this movie is trying to tell, although I no longer believe the story. I'll give the movie kudos for being as good as the average Lifetime Movie of the Week. Mildly interesting, mediocre acting, a bit slow, the script is predictable, the music is sappy, and it is a bit melodramatic. And all the people left behind have got to be the squeakiest clean non-Christians, ever. Not a single curse word from any of them. But I laughed out loud when the actor playing the man who runs the United Nations pronounced \"\"nuclear\"\" as \"\"nu-cu-ler,\"\" just like Bush. Is there some Christian code of honor that mandates that since Bush claims he, too, is called by God, that all Christians must cover up his ignorance by mispronouncing that word the same way he does? LOL! I really had a difficult time taking the movie seriously at all after that. After the \"\"nu-cu-ler\"\" incident, the movie began to feel like packaged, manipulative propaganda. I was looking for something bold. Actually, I was looking for something that might make me think, but I didn't find it here. If you're looking for mindless entertainment, stop here - it's good for killing a rainy afternoon. But if you're looking for intelligence, look elsewhere.\"\r\n0\tThis is by far the worst adaptation of Jane Eyre I have seen. It is uncertain whether or not the writer of the screenplay ever read the book by Bronte. George C Scott is ridiculous and bumbling as Rochester -- when not just plain old acting angry. Susannah York has the most dated 1970's hairstyle I have ever seen in a Victorian movie. The characters hardly speak to each other, so the rich banter enjoyed in the book that is the basis for their deep intellectual and abiding love, is gone. The ending is ludicrous.<br /><br />Please, rent the Timothy Dalton version instead. It is so true to the book, it's like having the novel read aloud to you. Dalton is superb as Rochester. G. C. Scott is laughable.\r\n1\t\"Ah, true memories. I lived in Holland at the time and looked eagerly forward to it every Sunday evening and later Tuesdays. I saw it during my 14-16s. Very good for my (at the time school-)English, as Dutch TV provides subtitles for other languages, except for kiddies shows nowadays. So you would hear the original voices and language. - The best series were the first three ones and then after the third series, the great character, Nazi Von Gelb, who was such a formidable enemy, disappeared from the series (I don't think they ever really caught him, he always escaped, leaving room to have him appear again in a next story) because evidently the series also was distributed to Germany, and a Nazi enemy wouldn't go over very well! Too bad, because Geoffrey Toone did such a wonderful convincing job of portraying the intelligent Nazi aristocrat, who had this ongoing obsession to take revenge on England. It was a true delight to see this kind of high quality performance in a youth series, but Ronald Leigh-Hunt was a good counterpart and the youngsters were so normal. They were very believable to me at the time and as a kid I could just imagine to be part of these youngsters, who at the time were about four years older than me. It was a very exciting series to me, standing out in my memory of those times as a special show with \"\"the Prisoner\"\" as well. I hope they will publish a good quality DVD of the series, that would be wonderful. Even the bad copies around are still enjoyable to watch. The later series were not as good, watered down and just not as much fun as the first three. Hopefully they also find the other series with Von Gelb to be put on DVD. Greetings from Canada.\"\r\n1\t\"This film takes place in the 1950s. According to this the dead (called zombies) have arisen to eat the living. However a company has developed a collar that, when put around the zombies neck, makes them docile and perfect servants. The Robinsons mom Helen (Carrie-Anne Moss), dad Bill (Dylan Baker) and son Timmy (K'Sun Ray) hire a zombie because everyone on their block already has one. Tim names the zombie Fido (Billy Connolly) and becomes friends with him. But his dad hates him and Timmy looses control of Fido and things go wrong.<br /><br />As you can see this is--among many other things--a takeoff on the \"\"Lassie\"\" series with Fido being a stand in for Lassie. Timmy was named that for a reason! Every single of the famous Lassie episodes are spun here. My favorite is when Timmy sends Fido off to get help before the zombies eat him! Also it's a satire of those 1950s Douglas Sirk films where everything is bright and colorful--but dark secrets are tearing people apart. The characters wear VERY bright 1950s clothes (Moss is always in a dress)--the furnishings, settings and cars especially are all 1950s in hyper bright colors. Even when the script becomes repetitious there's always something to look at. The script is good--but there are only so many Lassie jokes you can make. The melodramatics are kind of silly but the cast pulls it off. Everyone here is excellent and right on target. Even Connolly as an emotionless zombie does a good job. Moss is the best--playing each line for all its worth---but never going overboard.<br /><br />This isn't for everybody (of course). The satire may be lost on most people and the gore is pretty tame. The gore is done so casually and with happy music playing over it it's hard to take it seriously. So, for some people, this will really work. I give it an 8.\"\r\n1\tThe trailer for this movie didn't do the movie justice. And while the movie didn't know what it really wanted to get across, the first half of the movie being a light, romance comedy and the second have a more serious, romantic drama, the overall impact was much better than I thought it would be. This movie was more of a date movie, but the trailer made it into more of a suspense thriller which it never really turned out to be. Kidman, being one of my favorites, of course I'm biased, but this movie proved to be a light, sensitive, if somewhat quirky movie that deserved better. Three out of four stars. 9/5/02.\r\n1\t\"This movie is awesome on so many levels... and none of them are the level that it was intended to be awesome on.<br /><br />Just remember this: When you're watching Shaun of the Dead and other recent zombie movies... be they good or bad... THIS is the formula that they are using. THIS is what makes zombie movies so great.<br /><br />And what makes it BETTER than great is the story behind the movie. A simple web search will provide you with everything you need to know.<br /><br />All in all, it doesn't linger. There's never a point where you think to yourself \"\"c'mon, get on with it\"\"... it moves quick and corners nicely. This is the sporty, little Italian number of zombie flicks.<br /><br />So awful, it's wonderful! If your tongue spends an ample amount of time in your cheek... rent it, buy it, love it.<br /><br />As a great trivia note: If you're watching it on DVD, you'll notice that there is sound effects during the menu screen, underneath the musical score... Well... that's because that music was lifted straight from the trailer... which is probably the only working print of that music that still exists which is long enough to loop.\"\r\n1\tI enjoyed the story by itself, but the things that I learned about WWI Planes & boats, make this movie a must see. The close-ups on the plane & the torpedo boat & how they were used were completely new to me. I heartily recommend.\r\n1\tThey had me from the first show.<br /><br />Welcome to Trinity County. A sleepy little Mayberry-like place with one slight difference. The sheriff is really Satan. There's the spoiler. Not like you wouldn't figure it out in 10 minutes anyway.<br /><br />Oh, but that's not all. It turns out that Satan has a son named Caleb. Some people are trying to keep him good, but it's an uphill battle. Sheriff Buck (Satan) knows who Caleb is and likes to spend time with him teaching him the ways of darkness. Subtle. Sneaky. He doesn't always come off as evil. Most of the time he's a hero. Everyone owes him a big favor, because he often sets up a calamity and saves them from it. So every time you think someone will finally take him down, one of his friends comes out of nowhere to sabotage it.<br /><br />In one of my favorite episodes, Lucas and Caleb were out in the woods in a cabin and some guys with guns decided to rob them. Lucas used it as an excuse to teach Caleb a lesson about evil.<br /><br />The robber (Ted) was hesitant to shoot them. Lucas told Caleb that Ted had half a conscience. If he had no conscience, he would have shot them by now. If he had a real conscience, he never would have become a criminal. So he started calling him Half-Ted. It was pretty funny. He was taunting the criminals. And of course he stayed 10 steps ahead of Half-Ted at all times. And of course he was in complete control at all times. They actually had you favoring Satan.<br /><br />Very very excellent show. it was one of my favorite horror shows of all time. Twilight Zone Night Stalker Circle of Fear American Gothic Supernatural<br /><br />That's good company.\r\n0\tMe and a friend rented this movie because it sounded really good. But we were wrong. First of the acting....wow...the acting was the worst, the effects were really bad as well, it seemed like a film a college kid made. The plot was pretty good, but it'd been done. The thing that ruined the movies the most were the actors. The main guy was the worst actor ever...it's a shame I'm even calling him an actor...The only good thing about this movie was it was so bad it was funny...so if you want a good laugh see it....but other than that...stay far away from this one. I usually love B list movies and such, but this one... I do not know how it was passed to even be put on video...this one is the worst I've seen..and I've seen some bad ones.\r\n0\t\"A plot that fizzled and reeked of irreconcilable differences in opinions constituted a judgmental havoc with one side pro-life and the other a destroyer of a demon's seed. The horror was left out and replaced with an overall dull effect quite possibly meant to be horrific, but, instead demonstrated an ill dose of beliefs which ridiculed each other to death, despite the title itself. Being a fan of Masters of Horror since the beginning, this ridiculous plot twist with it's sordid depictions crashed apart like a spindly old rocking chair after being sat upon. I view this episode as being thrown together from the get go, never really taking off anywhere other than to see it through for what its worth and relieved when it finally came to \"\"The End\"\"..\"\r\n1\t\"A Classic Hollywood Biopic is the best sense of the genre. Gooding and DeNiro both give spectacularly heartfelt performances in the two leads roles, and the supporting cast is uniformly excellent, with standout performances by Carl Lumbly and Michael Rapoport. <br /><br />The only \"\"nit\"\" I might pick is that Theron's role was unnecessary & distracting (not her performance which was fine, it's just that the film seemed to add two unnecessary scenes to accommodate her role.)<br /><br />Aside from that, the characterizations, dynamics, and action of the real-life story are riveting and unforgettable. The evolutions of the main characters and how what they experience evolves their beings are uniquely characterized by the performing artists. Despite the movie's extreme length, the pacing stays intact throughout. The score is also terrific.<br /><br />Us this a predictable Hollywood film? You bet. So, Mike Leigh addicts should subtract a star, but everyone else should enjoy mightily.\"\r\n0\tIt's sad when you can see what a movie was attempting to do, and it is quite obvious that it fell far far short of the mark. Film students should take this as a lesson and a warning. Would be graduate has an idea. He wants total control. So he writes, directs, produces, his cinematic masterpiece all by himself. Usually, his concept is far beyond his budget. Usually he writes an overblown script full of every tag line he can come up with. Usually, he is more interested in the grand sweep of the story rather than on the nitty gritty of working with actors on individual scenes. Usually, he ends up with a movie that is feeble in it's attempt to create miracles on a tiny budget. Usually, he ends up with a series of encounters (we cannot do justice by calling them scenes) that feel like they were written by a 12 year old. And usually he ends up with badly acted scenes that fail to grab the viewer. When you look at Judges from this perspective you can immediately tell it's just the usual fare.\r\n0\t\"I remember seeing this movie a long time ago on television. I remember the premise of the movie being about a bunch of hotel occupants being attacked by man-eating ants. What I didn't remember was HOW AWFUL IT WAS!!!<br /><br />I recently caught this movie on television late at night. I'm sure it must have been a mistake because movies like this usually disappear from existance and are never to be found again! Suzanne Somers (at the pinnacle of her career playing Chrissy on 'Three's Company') plays a vacationer at Lakewood Manor. Constructions workers are installing a swimming pool outside and accidentally disturb an ants' nest. Or should I say, a *MAN-EATING ANTS' NEST*!! One of the workers actually gets attacked by the ants. One minute he's picking them off his clothes one by one, the next minute he's covered in them. The next scene shows a skeleton in the dirt.<br /><br />If you thought that was pretty far-fetched, you should see Myrna Loy playing a wheel-chair bound resident who gets airlifted out of the Manor via helicopter! I could almost picture her thinking in relief that she was getting airlifted out of the movie!<br /><br />The final scenes depict Suzanne, Robert Foxworth and a third guy sitting on the floor of a hotel room with their backs to each other, blowing through straws and covered in ants.<br /><br />That's basically the movie. There's really no \"\"disaster\"\" appeal or \"\"big-star\"\" draw to the film. It was intended to be a 'grand-scale' television event at the time. Now, it's lucky if it gets dumped in a 4:00am timeslot on your local television station.<br /><br />If you want to catch Suzanne Somers at her best, then watch an episode of Three's Company. If you want to see Myrna Loy doing anything to put bread on the table and pay the bills, then watch this movie.<br /><br />0/10\"\r\n0\t\"I remember that show. I still remember that kick ass fun song \"\"America's Funniest People.\"\" Frankly it should've been titled American's lame or unfunny or downright disgusting People. Dave couldn't save this show and neither could Bob Saget or the replacement hosts for AFV that came later. The Jackalope segments were hilarious and yes Dave could make some good voice overs that were better than Bob's. But this show went to hell because of the lame crappy videos people submitted. Also it developed as somewhat of a variety show with lame guest stars including the Olson Twins. Plus AFV was in it's prime before they started picking the drooling ugly as sin babies as the winner. Did I mentioned the videos were disgusting and lame? But still the theme song rocks!\"\r\n1\t\"I absolutely loved this film! I was hesitant to watch it at first because I thought it would be too painful. I remember how hard it was when John was shot. However, watching the \"\"Two of Us\"\" took me back to a happier time when he was still alive and there was hope and possibility. I think that the writer did an amazing job depicting what \"\"might have been.\"\" Aidan Quinn was adorable as Paul and met the challenge head on. I was impressed with his accent and mannerisms. Jared Harris is also very talented and was quite believable as John. My favorite parts were the scene in the park and the rooftop scene - which was so poignant. The film left me with both sadness and satisfaction, both of which I feel are appropriate, given the circumstances.\"\r\n0\t\"\"\"Prom Night\"\" is a title-only remake of the 1980 slasher flick that starred Jamie Lee Curtis and Leslie Nielsen. This movie takes place in an Oregon town, where Donna (Brittany Snow) is about to go to her senior prom and let herself have some fun after going through some extremely traumatic events in the past few years. She and her friends arrive at the prom, which is taking place in a grand hotel, and try and enjoy what is supposed to be the most fun night of their lives. Little does anyone know, a man from Donna's past, who has haunted her for years, is also at the prom... and is willing to kill anyone in way of his pursuit of her.<br /><br />I'm a fan of the original \"\"Prom Night\"\", so I tried to maintain a little hope in this movie, but I have to admit I was quite disappointed. \"\"Prom Night\"\" suffers from the worst affliction a horror movie could have, and that is predictability. There are absolutely no surprises here, and I felt I had seen everything in this movie done dozens of times, often better, before. What does this equate to for the audience? Boredom. Unless of course you have never seen any horror movies, or are part of the pre-teen crowd, but the majority of the audience will most likely be able to guess nearly everything that is going to happen. The plot is simplistic, but the entire script is void of any type of surprise, twist, atmosphere, or anything, and this really, really hurts the movie because it never really gives the audience anything to sink their teeth into. It all just seemed very bland.<br /><br />A lot of people seem to complain with the fact that this is a PG-13 slasher movie as well, and I understand what they are saying, but I don't think it's impossible to make a good slasher movie with minimal gore. Take Carpenter's \"\"Halloween\"\" for example - little to no on screen violence, but still an extremely frightening and effective movie. You don't need gore to make a film scary, but even had \"\"Prom Night\"\" been gratuitously violent (which it is not, it is very tame), it still would have added little to the movie because there is not much in the script to build on to begin with. The tension and suspense here is mild at best, and I spent most of the movie predicting the outcome of situations, and was correct about 99% of the time. Our characters aren't well written enough either for the audience to make any connection to them, and their by-the-numbers demises are routine and careless.<br /><br />I will point out a few things I did like about this movie, though, because it wasn't completely useless - the cinematography is really nice, and everything was very well-filmed and fairly stylish. Among the \"\"jump\"\" scares (that are for the most part very predictable), there were a few that were kind of clever. The sets for the movie are nice too and the hotel is a neat place for the plot to unfold, however predictable the unfolding may be. As for the acting, it's mediocre at best. Brittany Snow plays the lead decently, but really the rest of the cast doesn't show off much talent. Johnathan Schaech plays the villain, and is probably the most experienced performer here, but even he isn't that impressive. However, I did like the character he played, which was a nice change from the typical 'masked-stalker' type killer we see a lot. As far as the ending goes, the last fifteen minutes of the film had me bored to my wit's end and it was very anti-climactic.<br /><br />Overall, \"\"Prom Night\"\" was a disappointment. Everything was very by-the-numbers, routine, and predictable, which is somewhat upsetting considering this had the potential to be a decent slasher movie. There were a few neat moments, but the movie lacked any suspense or atmosphere, and had little plot development, nor believable characters. I'd advise seasoned horror fans to save their money and wait till it's out on video, or rent the original instead, because there are absolutely no surprises here. Some may find a little entertainment in it, but it was far too predictable for my tastes. I expected better, and left the theater very disappointed. 3/10.\"\r\n1\tI have loved this movie all of my life. It's such an intelligent story also, with plenty of classical allusions. eg. The ship that went missing decades earlier was called the Bellerophon. Well, in classical mythology this was the man who slew the Chimera, a legendary beast composed of two or more other creatures. In FP, Walter Pidgeon is clearly the chimera- himself and his Id monster. <br /><br />I like movies where the writers have clearly credited their audiences with a modicum of intelligence, unlike most modern blockbusters which spend $150m on special effects, but about $1.50 on a screenplay.<br /><br />Cheers\r\n1\tWhen I saw Birthday Girl I liked it so much I set out to see every Nicole Kidman film I could, only to find all of them a disappointment compared to it. I theorize that while the presence of a particular star usually guarantees a certain level of quality because of their artistic control, with Nicole Kidman the influence she exerts is detrimental to film enjoyment--IMHO. Thus for instance, Dogville, even depriving the viewer of anything visual to detract from the existential insight she is hammering home, or other films promoting gay and lesbianism as worthy of anyone else's attention, or other pet causes of Kidman's. <br /><br />Here she is a natural woman and she does a really great job. I don't how or who was able to restrain her, but apparently it worked. The way the film depicts her openness despite her resistance gets to the heart of what makes a woman a woman. And consequently, what makes a man's most desperate hopes marginally attainable. <br /><br />Of course, the fact the male lead transforms from a milquetoast clerk to macho man in the space of one film sounds like a male ego expansion fantasy, but his transformation is adequately believable. It isn't coyly contrived as it would be in a film engineered to bolster male ego. Instead it accurately records necessary growth arising from the films unique circumstances.<br /><br />Also quite charming is the way the criminals are portrayed as perfectly human, apart from their criminal mission. Her gang has a coed rough and tumble fellowship which is foreign to American culture. And while they are his adversaries, they are never really his enemy. In effect, they teach him to be compete.<br /><br />I really marveled at Kidman's ability to physically appear Russian. It had me wondering whether her ancestry was Russian, but none of the photos of her I examined showed any hint of it. Maybe it is just makeup but it was amazing. <br /><br />I can only hope that they knock her over the head again soon so she can turn out another great film. Despite my gratuitous digs at Ms. kidman, the message is this is a superior film in every way and probably the role of a lifetime.\r\n0\tThe movie had a lot of potential, unfortunately, it came apart because of a weak/implausible story line, miscasting, and general lack of content/substance. One of the very obvious flaws was that Sean Connery, who played an Arab man, didn't know how to pronounce his own Arab name! This may seem a small flaw but it points to the seeming lack of effort in paying attention to details. The quality of acting was uniformly well below average. <br /><br />Movie's solitary saving grace was the twist in the plot at the very end; and a french song (I don't recall the title). Overall, it was a pretty bad movie where Sean Connery was visibly miscast.\r\n1\t\"This is hardly a movie at all, but rather a real vaudeville show, filmed for the most part \"\"in proscenium\"\", and starring some of the greatest stage stars of the day. \"\"Singing in the Bathtub\"\" is an absolutely amazing production number that must be seen-- be sure to wear your shower cap!\"\r\n1\tThe world of the Dragon Hunters is a 3D gravity challenged world. Planetoids, bits of buildings and strange flat plants float around in the atmosphere while the ground towards most of the characters are falling is nowhere to be seen. It is a world reminiscent of Neverending Story, when the Nothing came to eat the world away.<br /><br />Funny enough, the villain here is the World Gobbler, as well. This time it is a huge skeleton dragon with fiery eyes. The heroes are a big yet taciturn warrior, an annoying and greedy sidekick managing the entrepreneurial side of the duo and a strange useless animal. They are joined by the most talkative little girl in the world who, to my chagrin, did not die a horrible painful and hopefully early death.<br /><br />The animation is great. The voices and the sounds are top notch. Too bad the story is as simple as one can possibly imagine. They go to stop the World Gobbler, they reach him almost immediately, they defeat him. The end. No real character development or story twists. Not even the ones I would expect from a movie with such a plot.<br /><br />Bottom line: it's a cute thing to watch, kids would probably enjoy it, but that's about it. No depth to this world (pun intended).\r\n1\tI have a six month old baby at home and time to time she fights sleep really bad. One morning she was having a particular difficult time getting to sleep when the doodle bops theme song came on T.V. She stopped crying almost instantly, and for the rest of the show was content. I sat her in her bouncy seat and watched her kick her legs, swing her arms, and actually laugh at this show. The kept her entertained and happy the entire time. I also got a video of them so that at times when my little one is flustered I have something to calm her. Granted, late at night if she awakes with colic to fuss the doodle bops are not her cup of tea, but they sure do come in handy when I need a little time to do housework,etc. The biggest surprise about the doodle bops is that my child doesn't even like watching T.V. She'd rather be in the floor playing with a toy or with our small toy poodle than watch T.V. yet, the doodle bops have totally captured her attention. I don't know if she will continue to like them in the future but for now she's attached.\r\n0\tWeak plot, unlikely car malfunction, and helpless fumbling characters. At first I thought this movie was made during the seventies, since the picture quality, as well as the storyline and drama seemed taken from an old Kojac episode. When I checked and found that it was really made as late as -97 I was astonished. This is by far one of the worst and least (thriller) movies I have ever seen.<br /><br />If you read this, be advised, if you see it you waste time when you could have done something more exciting, like watching paint dry.\r\n0\t\"What a wasted opportunity to actually make an interesting film about a complicated subject. There is very little exploration about what it really feels like to be a straight (or gay) man working in a gay sexual environment.The dancers keep talking about their art as if it has no erotic component. They may not all be prostitutes for hire, but they are indeed sex workers playing out fantasies and selling private sessions where more than dancing is offered. From the film one would get the impression that they mainly appeal to the women who go to the gay clubs and then end up hiring the \"\"dancers\"\" for private sessions. Even the shots in the club only show women in front of the stage and the \"\"dancers\"\" only playing to the women in the audience. This just isn't the reality of these clubs. It would be pretty hard to make a living doing private dances for straight women and couples. So what do they really feel about their gay admirers and clients? We learn very little. Instead we get filler. A gay activist who adds nothing to the study of straight dancers. A manager who tells us about the costumes for the drag acts but offers no insight into the dancers' lives and attitudes.<br /><br />The pictures of Mexico City are generic. The phallic montage showing sausages roasting is ridiculous.<br /><br />This is a totally simplistic film which should be of interest only to those who want to see a few pictures of pretty boys dancing. The rest of the movie is an insult to gay men.\"\r\n0\tI bought this from Blockbuster for 99p. The guy behind the counter said the reason it was so cheap was because the disc was scratched to sh*t, but failed to mention that the reason it was so cheap was because the film was a p*ss poor effort that sucked harder than Paris Hilton in a hotel room home video. Talking of home videos, since when has it been fair game to release them as films - I mean to say, films used to employ actors and technicians and scriptwriters and so on - not any more - just gather your friends and lame-o ideas together for the weekend, lavish the production with an £8.00 budget, and get someone to fall down the stairs with a Casio keyboard (the soundtrack) - then slap it on the shelves, for some poor sap (me), to take home in lonely desperation. But here's the clincher - I fast forwarded through most of this, and tossed it to one side, ready for the hammers... until the next night, while watching a Darren Day horror 'Hellbreed' (£1.99 to take home and keep from a different Blockbuster). Now this film made 'Grim Weekend' look like The Exorcist, so I slapped Grim Weekend back on, to catch up on some of the moments listed on the wonderful IMDb boards, that viewers claimed were hilarious. Sure enough, once I had got over the misery, the pain, and the horror, of realising Grim Weekend was utter chod on toast, I could enjoy, savour, and downright get down to the funny stuff. And there's a lot of it. Check the boards. Then check the flick. Hell, it might even be worth it. AWWWWW CRAP!\r\n0\t\"So, American Pie: Beta House is the 6th American Pie movie in the series. Although, it really has nothing to do with the original three American Pie movies except some of the characters are supposed to be related to the characters in the original trilogy and Eugene Levy is in it (can't that guy get better gigs?).<br /><br />There is very little to compliment this movie on. There aren't any funny jokes. The acting is painful to watch, especially the girl with the \"\"southern\"\" accent which sounds more like a Canadian's impersonation of a British woman pretending to be a hillbilly by using the word \"\"ya'll.\"\" This movie makes me feel like such an idiot. Why didn't I apply to a college where nobody goes to class (but everybody gets good grades), girls consistently take their clothes off in public, everybody has promiscuous unprotected sex without the burden of babies and STIs, and you can ejaculate all over a girl's family photos without her minding? Really, this series has lowered itself to the standards of softcore porn. Maybe for the next one, they'll finally break down and hire Ron Jeremy as the lead. I'm sure they can just tie it in to the series by making his character Stifler's 3rd uncle once removed or something like that.\"\r\n1\t\"Man oh man... I've been foolishly procrastinating (not the right term, there's a long list!) to watch this film and finally had the chance to do so. And \"\"news\"\" are: Marvellous labyrinthine spectacle!<br /><br />For any Von Trier's \"\"follower\"\": both Rigets, Element of Crime, Dogville, Dancer in The Dark, The Five Obstructions, etc... Europa is probably the differential for its greatness in visual terms. Everything is beautifully somber and claustrophobic! You really get the feeling of being inside this \"\"imaginary\"\" nightmarish time warp. Taking from the masters of surreal cinema like Bunuel, Bergman, till noir films of the 40's with acidic drops of avant-guard Von Trier leads the art-film scene as the \"\"well intended totalitarian\"\" movie maker of nowadays. His authoritarian way of dealing with very intricate issues, without being irrational, hits the nerve of the viewer with the intent to cure some of the deepest wounds we feed in our hypocritical world.<br /><br />As Utopian as it seems, I do believe people like Von Trier could help society in many ways in a broader aspect. The day films and filmmakers that carry this sort of power are no longer necessary, as a tool for reflection, perhaps it could be the start of a new era: \"\"The age of emotional control over our fears\"\". This is what he offers to us constantly through his work over and over.<br /><br />Bravo!\"\r\n0\tI think I've seen all of the Grisham movies now and generally they're all very poor, except for The Rainmaker, but this one is so bad it's unbelievable<br /><br />WARNING SPOILERISH<br /><br />It's one of those movies where the character does the stupid irrational things that no one would ever do. He's a lawyer for Christ's sake. Why when his children go missing does he not call the Police. Oh yes it's because all the Police hate lawyers so they're just ignore him and let him be attacked.<br /><br />When he's arrested for murder they just let him go free, he would be locked up in a cell pending a bail hearing. <br /><br />Why would you drag your kids halfway across the country when you could easily protect them at home.<br /><br />The Police don't bother to try and find an escaped mental patient, they don't bother to interview his daughter.<br /><br />As for the ridiculous ending.<br /><br />In summary, silly, very unrealistic and a complete waste of time.<br /><br />0/10  One of the worst films ever made.\r\n1\t\"My rating refers to the first 4 Seasons of Stargate SG-1 which are wonderfully fresh, creative and addicting. When the cast stepped through the gate, you never knew what lay on the other side! Starting around Season 5, the show took a different focus - still good, but different.<br /><br />The series follows the adventures of a team of humans (and one alien) who regularly venture into a planetary transport device called the \"\"Stargate\"\". The backstory of the series is based on the characters and events of the movie \"\"Stargate\"\" in which the device is discovered during an archaeological dig in Egypt.<br /><br />The episodes are light (innocent and easy to watch) and very creative. Many of the inventive stories could easily have been made into great sci-fi movies of their own. What happens next was always unpredictable.<br /><br />The characters on which the show rests are also well-defined and brilliantly performed. Their tone is serious, but the dialog is flowered with incredible wit and humor. They are simply fun to watch.<br /><br />Starting somewhere around Season 5, the series started to evolve into a continuing storyline based on fighting a single foe (the Goa'uld, then the Ori). The plots become more complex (a lot more political/strategic oriented) and interdependent. The characters were still as great as ever but the show was different in nature.<br /><br />One thing that must be mentioned is to watch the episodes that commemorated the 100th and 200th episodes. They are simply can't-miss shows. They exhibit the creative and wildly humorous genius that carried the series through 10 seasons.<br /><br />If you are a sci-fi fan, watch a few episodes of the first 4 Seasons and you'll likely be hooked. If you like evolving story lines between two opposing sides, you have 10 seasons of shows to look forward to.\"\r\n1\tOne of the most underrated movies I've seen in a long time, Bill & Ted's Bogus Journey is the second hilarious adventure of Bill S. Preston Esq. and Ted Theodore Logan, aka Wyld Stallyns. There are two ways to look at this film: First, you see dumb dialogue, far fetched plot, juvenile idea. OR.. You see brilliantly downplayed idiots who yet again find themselves in a situation too big for their brains. Throw a Bruce Willis or a Arnold Schwarzeneggar into this plot and it becomes a big blockbuster movie. Bill and Ted go into the story with the same level of sincerity, only it's Bill and Ted. This is a tricky fence to balance on, but when you watch the movie not as a throwaway screwball comedy, but as an adventure featuring two guys who have no business being in an adventure, it becomes so much more.\r\n0\t\"Yesterday was Earth Day (April 22, 2009) in the US and other countries, and I went to see the full-feature movie-version of \"\"Earth\"\" by DisneyNature. I guess, like the auto manufacturers, Disney is trying to convince us that they care about the planet. Maybe they really do care about the planet, I don't know, but I don't think it warrants a special unit with the word \"\"nature\"\" in it. I do know that my youngest daughter loves Mickey Mouse, and who am I to tell a one-year old my personal feelings about Disney? <br /><br />Aside from incredible cinematography, it was a typical Disney disappointment for me. Preceded by a half-dozen Disney movie trailers, rife with Disney cliché (\"\"circle of life\"\", \"\"falling with style\"\"), over-dramatic music, recycled footage (Disney claims \"\"40% new footage\"\"). I was even starting to think that James Earl Jones narration is getting a bit boring. I like James Earl Jones, but his work for Disney and Morgan Freeman doing every Warner Brothers narrative starts to wear thin. I really think that Disney bought some BBC nature photography that was so spectacularly done, they felt it would sell itself if they slapped some orchestral music and recognizable sound-bites on it.<br /><br />And what is Disney's obsession with showing predators chasing and killing baby animals? There were a half-dozen such scenes, complete with bleating youngsters on the verge of getting their throats ripped out. I think Disney needs to recognize that animals have a rich and interesting life outside of life and death struggles that appeal to the action-movie oriented teenagers that got dragged to this film by their parents. I was also cognizant of how Disney stopped well short of implying that man had anything to do with the climate change. Are they so afraid of the tiny minority of deniers that they think it's still a controversial subject? <br /><br />I recommend skipping this one and renting the Blue Planet DVDs on Netflix. Nature films seem to be best done by the British at the moment.\"\r\n1\tNot wishing to give *anything* away here, I would just say this technically excellent, flawlessly acted and uplifting little flic will reward the viewer with an excellent hour and a half's entertainment: It will amuse, surprise, possibly embarrass occasionally and almost certainly tug at the heartstrings from time to time, as it approaches the inevitable, but not obvious, ending without becoming clichéd or predictable in any way. Most definitely recommended.<br /><br />A previous User's Comment gives 8 out of 10 for the film and 10 out of 10 for both Branagh and Bonham-Carter's outstanding performances - I agree entirely....\r\n0\tI would love to have that two hours of my life back. It seemed to be several clips from Steve's Animal Planet series that was spliced into a loosely constructed script. Don't Go, If you must see it, wait for the video ...\r\n0\t\"Maybe I've seen one too many crime flick, or maybe I don't take the right drugs.<br /><br />This was the most cliché ridden, plot deficient, plot-absurd, just plain stupid movie I have seen in a long time.<br /><br />As for the direction, it looks like it took less time to show this than it did to put it together.<br /><br />In fact it looks like to made it straight to video before it was completed.<br /><br />It's a bad rip off of \"\"M\"\" the classic Fritz Lang film starring Peter Lorre. You'd be SO much better off renting that instead.\"\r\n1\tI love this film. It is well written and acted and has good cinematography. The story blends action, humor, mysticism, and tenderness with great sets and beautiful location shots. See it, buy it, show it to your friends.<br /><br />The acting is good and Murphy especially does a fine job portraying the reluctant/unlikely hero. I enjoyed all the characters and found them to be interesting and well developed with dynamic interactions.<br /><br />I cared what happened to these people and, while the outcome was pretty predictable (the good guys win, the hero gets the astonishingly attractive girl and the holy child saves lives--who doesn't see that coming?), it still made me happy when everything worked out well in the end. Thank God this film's dignity was never ruined with a crappy sequel. Grab some popcorn, cuddle up on the couch, and watch this fun, happy and entertaining film.\r\n0\t\"Woosh! Man What can I say...?<br /><br />The opening-scene, maybe? We see a bunch of mongoloid-barbarians with bad make-up jump off the walls of some ruins. They sneak around and attack some dude with a scantily clothed captive girl. The dude runs off, the mongoloids follow him and one of them stays behind seemingly to rape the girl, but instead he exposes one of her breasts and kidnaps her. Then, the dude (still on the run) sees a horse and tries to steal it. Suddenly a blond god-like looking hero with a bad wig appears, saying \"\"That's my horse!\"\". The Mighty Deathstalker just made his appearance. The mongoloids arrive, Deathstalker kills all of them (including the dude) on the tunes of some rather inappropriate Mexicanos western score (this is supposed to be a Swords & Sorcery flick, so what's with the 'arriba-trompettos'?), and then goes up to Captive Girl and exposes both her breasts. He starts to rub them and Captive Girl seems to like it. She starts liking her lips and caressing Deathstalker. Just when they are about to get down to it, this old dude appears, interrupting what could have been the end of a perfect day for Deathstalker (and a possible perfect ending for a short-film).<br /><br />Now tell me Isn't that the point where either a feminist would angrily switch off the movie, or any other male viewer would say \"\"This is going to be one hell of a good movie!\"\" The plot is as simple as throwing a kitten from the balcony: Deathstalker must obtain the Sword of Justice and use it to steal the Amulet of Life and the Chalice of Magic from the evil sorcerer Munkar.<br /><br />Aside from decapitations, dismemberment, random bloodshed, retarded fist fights and embarrassing sword fights, this film also contains a massive amount of t!ts & a$$ shots. I initially wanted to add one extra point to this movie for each gratuitous shot of naked boobies I could count. After 9 points (not even halfway into the movie), I had to give up counting. It was distracting me from the rest of the movie. And the rest of the movie was worth it. Totally crazy stuff. Check out this mutant cat/worm-like creature Munkar has as a pet and which he feeds eyeballs and fingers. And here's an interesting question: What would you do if a man in a woman's body would enter your bedroom and try to kill you with a knife? The answer is simple: You slap him around a bit, take away the knife and then try to rape him. Then you discover that he's actually not a woman, so you throw him out of your bed and tell him to leave your room. It works out well, I tell you. Deathstalker does it too, and the Deathstalker-way, is the right way!<br /><br />DEATHSTALKER is a wonderful movie, really, as pointed out in other comments. The villains are vile. The women are delicious. There's blood, sex, violence, rape and tasty chicken. There's a completely pointless tournament which just features a bunch of barbarians beating, slashing and hacking the crap out of each other. My favorite weapon used in that tournament was a giant wooden hammer, used to beat a poor contender to bloody pulp. And my favorite contender undoubtedly was that one brute with the Warthog-head (reminiscent of the Gamorrean Guards from RETURN OF THE JEDI). I won't reveal how the movie ends, but just prepare to ravish in delight when I tell you a 4-way dismemberment is thrown into the movie's climax.<br /><br />And of course, there's a wonderful display of ineptitude throughout the whole movie. See a guy being dragged behind a horse over a dirt road, and the next point-of-view shot shows him being dragged over grass (no road). See that awesome tattoo on the sorcerer's head magically change sides within the same scene (on shot has it on the left side of his head, the other on the right). Well, after all, Munkar is a magician. It's that, or this movie was shot in an alternate universe where things like \"\"continuity\"\" simply don't exist.<br /><br />As much as I enjoyed this and as much as I am looking forward to the other 3 installments in this series, I do have enough shreds of decency left in me to not let this movie pass. I am prepared, though, to give it the maximum amount of minimal points, just so I could be able to deduct a couple of more points for the possibly inferior sequels to follow. DEATHSTALKER might be a superbly fun, trashy & sleazy CONAN rip-off, it also is an abominable movie.\"\r\n1\t\"Gus Van Sant has made some excellent films. I truly am a fan.<br /><br />However, I can't help but feel that the cerebral edge of Tom Robbins book \"\"Even Cowgirls Get the Blues\"\" is lost in translation to the big screen. Alone, Tom Robbins and Gus Van Sant are incredible visionaries and towers of talent. Ultimately though this one just didn't work. <br /><br />It wasn't that the characters weren't well developed or the plot and content didn't come alive. It's just that our imaginations are much more powerful when reading a book like this. We're taken away to a different time and place and we sometimes think the worst and/or the best and it adds to the overall roller-coaster of the book as it neatly unfolds according to the author's precision. Movies however can leave one with less of the imagination and emotion roller-coaster detracting from the overall experience. This is what I believe happened here.<br /><br />I suggest reading the book!\"\r\n1\tThis film is famous for several qualities: a literate script, for once in partly-religious film-making, by Philip Dunne, some very good performances, a first-rate production in every department and its intelligent direction by veteran Henry King. If one were making a film, then getting such talents as Leon Shamroy as cinematographer, Lyle Wheeler as art director and Alfred Newman as composer of original music would guarantee a quality production. Add the cast of this film, including Gregory Peck and Susan Hayward as the title characters, James Robertson Justice, Raymond Massey, Kieron Moore, Jayne Meadows and John Sutton plus a dance by Gwen Verdon and expectations might be raised that the resulting film could be made into something special. But in a biblical subject script, usually a sub-genre prone to illogical motivations and miraculous interventions, everything would ultimately depend on the author's skills. Philip Dunne here has supplied human beings, a rare achievement in biblical films. David is a man in this film, many-sided, not someone doing mythical deeds on paper in the Old Testament. Gregory Peck makes him curious, passionate, self-controlled, self-deprecating and appealing. As Bathsheba, Hayward is scarcely the perfect choice but conveys a good deal of common-sense earthiness and emotional normalcy that helps one see why the King of Israel would risk so much for her. The rest of the cast is stalwart and capable by turns. The familiar storyline provides them little to work with, but author Dunne and the cast do as much as is possible with the human situations. David's youth is told in flashback; how he was chosen by a Prophet of Yahweh to be King of Israel, and earns his way to be second to the king, Saul, by defeating Goliath the Phiiistine in battle when all else are afraid to beard the giant warrior. Thereafter, he finally is driven from the court of King Saul of Israel, becomes a famous warrior, and returns to claim the kingdom and become the instrument of death of Jonathan, the King's son, formerly a friend. His wars are successful-- the film opens in fact with a successful attack scene; but his life is empty since his wife Michal, Jayne Meadows, is Saul's daughter and is cold to him. He turns to Bathsheba, whom he sees from the palace roof bathing naked; later she admits she had hoped he would see her. But she has a husband, Uriah; when she becomes pregnant, it becomes necessary for Uriah to come in from the battlefield and spend time at home; he instead asks David to set him in the forefront of the battle, even after being aroused by Verdon's dance. David agrees. He is killed, a war hero; but this does not solve the infidelity question. Drought comes to Israel, and the king's infidelity is blamed for the phenomenon. At last, David places his hands on the Ark of the Covenant, recently brought to Jerusalem and housed in a temple, which has caused the death of others who accidentally came in contact with it, inviting his god to punish him--and nothing happens...David exits the temple, and finds that rain has come to his parched land. This film is always interesting, varied in its types of scenes and physically beautiful. The director and author make use of the observer principle, and are frankly more successful in humanizing the characters than in almost any film outside the Grecianized- Near Eastern canon, wherein the feat is a bit easier since neither miraculous nor religious themes are made central in such adventures. . Well-remembered for its glowing realization, fine performances and intelligent dialogue, this dramatic effort bears repeated study.\r\n0\tBlue monkey is actually mentioned in the film but not in any way that makes any possible sense. At one point,some kids are wandering thru the deeper levels, exploring. <br /><br />They begin to discuss what they'll find down there and one of them (a girl) says she bets they'll find a blue monkey.<br /><br />Yes, thats it. Totally inconsequential to the story, the only sad connection to the title, and no idea why she would suppose she'd find a blue monkey in a hospital's basement.<br /><br />I'm embarrassed for having remembered it but somebody had to remember I suppose!\r\n0\tNow i have never ever seen a bad movie in all my years but what is with songs in the movie what physiological meaning does it have. WOW some demented Pokémon shows up and they multiply i can get a seizure from this. Animie is pointless the makers of it are pointless its a big marketing scheme look just cut down on songs and they will get a good rating i reckon that this movie would have been fine if they put out a message you must see all the Pokémon episodes to understand whats going on and it is not a film. It is just an animation it should be on video.<br /><br />Ps: i'll give it a 1 because i just got 5 bucks i could not give it a half because there's no halves.\r\n1\t\"Hrm-I think that line was from the old movie posters.<br /><br />This is a dumb movie that seems to have been translated from some language that was totally unfamiliar to the translator. Here's a tip: Any movie that starts with a black screen and text reading \"\"In the future...\"\" is going to be fun. This means that the premise is so implausible that they have to explain it to you.<br /><br />In this case, \"\"In the future...\"\" means that, instead of fighting wars, nations have guys climb into giant robots and duke it out to determine, well, that's never terribly clear, but it's probably something really important. There are good guys (obviously capitalists, i.e. \"\"us\"\") and bad guys (Commies!) and there are big stop-motion robots.<br /><br />Sadly, the effects budget was pretty slim, so we don't get to see a lot of the big robots. There are plenty of cheap looking interior scenes, and then a big space fight near the end. The space fight is especially nice, as it serves precisely no purpose other than the blow the remainder of the effects budget.<br /><br />With said money now spent, the climactic fight degenerates into (and I'm not making this up) two guys hitting each other with sticks. I can always get a laugh in a bar by re-enacting the final scene, complete with a last line guaranteed to leave any audience scratching their heads.<br /><br />Like I said-it's dumb. That's why I bought the tape.\"\r\n1\t\"I searched out this one after seeing the hilarious and linguistically challenging \"\"Clueless\"\" (1995), perhaps Alicia Silverstone's best known effort from early in her film career. \"\"True Crime\"\" has Kevin Dillon, which should be helpful in improving most film projects. In fact everyone in the cast does a good job . The only disappointment I think the movie has for me is an awkward \"\"feel\"\" to some of the scenes, coming from the need to run a quite uncompromising, grown up theme as part of what in tone starts out as a schoolgirl adventure.<br /><br />Alicia Silverstone is pretty good in this one. She carries off well the naive enthusiasm and growing unease that affects Mary Giordano as she manoeuvres towards the truth behind the serial murders. I reckon her characterization of MG has some mileage in it too. The inference of the story line is that she goes on to a career in law enforcement. It could be really interesting for an older Silverstone to revisit Giordano at a time of crisis later in the officer's life. Just a thought!<br /><br />\"\"True Crime\"\" shows its director in a good light. Pat Verducci also has the writing credit. I don't know of any other film work PV has done. I can only wonder what happened after such a promising start.<br /><br />Like most productions, this one has a largely unknown supporting cast, although Bill Nunn (Detective Jerry Guinn) is hardly that. Over the past decade he seems to have been able to secure an impressive number of screen appearances. I recall seeing him recently in \"\"Carriers\"\" (1998), a made for TV presentation with a military theme. Bill Nunn played \"\"Captain Arends\"\". Fans of the classic US TV comedy show \"\"Who's the Boss\"\" may also have an interest in \"\"Carriers\"\" because the leading player is Judith Light, remembered with affection by many because of her lengthy involvement with the show.<br /><br />\"\"True Crime\"\" could easily not have worked, but it does OK. I think it is an entertaining story worth seeing.\"\r\n0\t\"Things I learned from \"\"The List\"\".<br /><br />A decent cinematographer, a hot girl who can act and Malcom McDowell couldn't stop this movie from sucking.<br /><br />Blockbuster won't give you your money back.<br /><br />Even when he reads the script and says \"\"Ugh! Really?!\"\", Malcom McDowell still tries.<br /><br />Chuck Carrington desperately needs acting classes.<br /><br />Hire a writer.<br /><br />Jesus hates me too and punished me by making me pay $ 5.50 to see this movie.<br /><br />When making a movie, you don't need an ending. Just leave everything unexplained, unresolved an uninteresting enough so that the audience falls asleep BEFORE the ending. Genius.<br /><br />Any random landlord can cure death just by drawing a cross on a window. So make friends.<br /><br />Your maid can sing you back to life.<br /><br />Chuck Carrington still needs acting classes.<br /><br />Your roommate will hate you and make fun of you if you bring home this movie.<br /><br />Apologies will not be accepted.\"\r\n1\t\"**Warning! Mild Spoilers Ahead!**<br /><br />(Yes, I realize it's tough to spoil an historical documentary, but I do reveal some of the backstory and methods.)<br /><br />This is an exceptional documentary not just because of the remarkable footage, but also due to the story behind it. Because the Naudets did not set out to tell the story of 9/11, but rather that of a rookie firefighter, the men's emotions and the viewer's connection with them are more real and powerful than they would be in a standard retrospective. <br /><br />In a filmmaking sense, \"\"9/11\"\" is textbook. If the events were an actual script, they would be superb, as the characters are established, then thrown a curve to which they must react. This is all the more amazing considering the pain and emotion of the raw footage that the directors had to wade through to piece this story together. <br /><br />The first portion of the film provides a glimpse of life inside a fire station; specifically, how a rookie assimilates himself into a crew of veterans. That part alone is quite good, and had the documentary been allowed to run its intended course, it probably would have been solid. The brothers appear to realistically portray the process of becoming a NYC firefighter. <br /><br />Then of course, all hell breaks loose. The chaos following the WTC attacks is vividly seen, as various characters that we have gotten to know are thrust into terrifying situations. Seeing not only the attacks, but also the first-hand reactions is a very moving picture of extreme human emotion. <br /><br />The aftermath, in which firefighters are discovered to be lost and found, is human drama at its peak. Life and death hang in the balance. Unlike many movies, the viewer not only doesn't know who will live and die, but genuinely cares about them. <br /><br />The only negative thing I have to say about this is that the Robert DeNiro (whom I like) blurbs were uninformative, unnecessary, and didn't advance the story at all. They were probably added just to attract more television viewers.<br /><br />Bottom Line: The best documentary I've ever seen. Nonpareil portrayals of raw human emotion and drama. 9.5 out of 10.\"\r\n1\tMasters of Horror: Right to Die starts late one night as married couple Abby (Julia Anderson) & Ciff Addison (Martin Donovan) are driving home, however while talking Cliff is distracted & crashes into a tree that has fallen across the road. Cliff's airbag works OK & he walks away with minor injuries, unfortunately for Abby hers didn't & she ended up as toast when she was thrown from the car & doused in petrol which set alight burning her entire body. Abby's life is saved, just. She is taken to hospital where she is on life support seriously injured & horribly disfigured from the burns. Cliff decides that she should die, his selfish lawyer Ira (Corbin Bersen) thinks they should let Abby die, sue the car manufacturer & get rich while Abby's mum Pam (Linda Sorenson) wants to blame Cliff, get rich & save Abby. However Abby has other plans of her own...<br /><br />This American Canadian co-production was directed by Rob Schmidt (whose only horror film previously was Wrong Turn (2003) which on it's own hardly qualifies him to direct a Masters of Horror episode) & was episode 9 from season 2 of the Masters of Horror TV series, while I didn't think Right to Die was the best Masters of Horror episode I've seen I thought it was a decent enough effort all the same & still doesn't come close to being as bad as The Screwfly Solution (2006). The script by John Esposito has a neat central idea that isn't anything new but it uses it effectively enough although I'd say it's a bit uneven, the first 15 minutes of this focuses on the horror element of the story but then it goes into a lull for 20 odd minutes as it becomes a drama as the legal wrangling over Abby's life & the affair Cliff is having take center stage before it gets back on track it a deliciously gory & twisted climax that may not be for the faint of heart. The character's are a bit clichéd, the weak man, the bent lawyer, the protective mum & the young tart who has sex to get what she wants but they all serve their purpose well enough, the dialogue is OK, the story moves along at a nice pace & overall I liked Right to Die apart from a few minutes here & there where it loses it's focus a bit & I wasn't that keen on the ambiguous ending.<br /><br />Director Schmidt does a good job & there are some effective scenes, this tries to alternate between low key spooky atmosphere & out-and-out blood & gore. There are some fantastic special make-up effects as usual, there's shots of Abby where she has had all of the skin burned off her body & the image of her bandaged head with her teeth showing because she has no lips left is pretty gross (images & make-up effects that reminded me of similar scenes in Hellraiser (1987) & it's sequels), then there's the main course at the end where Cliff literally skins someone complete with close-ups of scalpels slicing skin open & him peeling it off the muscle & putting it into a cooler box! Very messy. There are also various assorted body parts. There's some nudity here as well with at least a couple of pretty ladies getting naked...<br /><br />Technically Right to Die is excellent, the special effects are brilliant & as most Masters of Horror episodes it doesn't look like a cheap made-for-TV show which basically if the truth be told it is. The acting was fine but there's no big 'names' in this one.<br /><br />Right to Die is another enjoyable & somewhat twisted Masters of Horror episode that most horror fans should definitely check out if not just for the terrific skinning scene! Well worth a watch... for those with the stomach.\r\n1\tAs a fan of Paris Je'Taime, I went to see New York, I Love You with very high expectations. I gladly walked out with all my expectations met. It was funny, sweet, fast-paced, and entertaining. The film starts out with two cab hoppers (Bradley Cooper & Justin Bartha) trying to get to the same area but arguing which way to go. That was funny, and then the film goes into some of the best skits I have ever seen anywhere. There were four amazing ones out of all the good ones. Those four I will start talking about. One features Shia LaBeouf as a bellhop at a hotel who finds love in an old lady. The next one features Orlando Bloom as a music maker who is doing business with a woman played by Christina Ricci. Another one features Anton Yelchin and Olivia Thirbly as two people going to prom, Thirbly's character being handicapped. The best one features Eli Wallach and Cloris Leachman as a bickering old couple. I will bring to your attention that Nataile Portman makes an impressive directorial debut directing, and writing a skit about a caretaker, and Ethan Hawke and Maggie Q are excellent as a flirting man and a hooker. New York, I Love You is definitely as good, if not better than the 2006 Paris Je'Taime. The skits are well-paced, and the film shows how indie films should really be. The film, however, does not have as many famous directors as Paris Je'Taime, which is why it was fantastic to live up to its excellence. If you want to laugh, see some great dramatic effects, see an amazing amount of great performances, and just plain be entertained then definitely go see New York, I Love You.\r\n0\t\"Oh, come on people give this film a break. The one thing I liked about it was......... Sorry, still thinking. Oh yeah!!!! When John Wayne came and shot up the the bad guys. Oh, sorry, wrong movie, I was thinking of a better quality film. Let me see now, I'm still trying to defend it. Oh yeah, the chick that was from Clueless was in it. Don't put down Stacy Dash. I mean, we all make mistakes. But boy, Stacy, you made a dooooosie.<br /><br />Hey, one thing that has never been done in a western, even an all female cast, they actually hung a woman from the gallows. That might be a western first. Even though her neck should have been broken and she survived the ordeal, still, you've got to give the director some effort for trying a western first. Also, I've never seen a woman lynched from a horse in any western, although that didn't happen in this movie, I just thought I would give the director another idea for Gang Of Roses#2, which should be made right after Ed Wood's Bride Of The Monster #2. Maybe that was what the makers of this film were going for. Orginality, especially with an all African woman cast and an oriental cowgirl.<br /><br />Heeey, if the makers of Gang Of Roses want to make a sequel to this mess, you could have such slang like, \"\"Hey, don't you be takin about my homegirls\"\" and \"\"talk to the hand, baby, talk to the hand.\"\" You could also have a surfer dude type deputy marshal that says things like, \"\"That gunfight was TOTALLY RAD man, totally.\"\" You know things like that.\"\r\n0\t\"I'm a horror/gore movie freak and this flick was so bad, I felt embarrassed for not only the \"\"actors\"\", but also the director and the poor sap of a producer who actually put his money up for this schlock.<br /><br />From the title, you'd expect some great carnage, somewhat of a storyline and at LEAST some direction or dialog. Instead, you get what looks like a slightly more violent and sexual Three Stooges episode. At least I laugh at the Three Stooges. While watching this crap, I turned another TV on and started watching Howard Stern until something interesting happened.<br /><br />Needless to say, I kept watching Stern.<br /><br />Watching this \"\"film\"\" I realize that I could produce a film with three monkeys, 2 DV cameras, $50 dollars in loose change and a broken PC. This film is my inspiration to get into no-budget film making. Watch this movie if you dare, but be warned...there is a lot of nothing in here but a whole lot of talking and very little action. This makes \"\"KaZaam\"\" look like a Meryl Streep film.<br /><br />I'm sure Germany didn't ban it due to sex or violence. Other countries need to take heed.\"\r\n0\tMST 3000 should do this movie. It is the worst acted movie I have ever seen. First of all, you find out that the shooter has no bank account and no history since leaving the army in 1993 and pays his rent in cash. There is no way in hell that a person like that would ever be allowed to be that close to a president not to mention a high profile job. Also, the head of security for the POTHUS would not be so emotional that he would start drinking into a haze if the president was shot. This movie sucked. I cannot express the extremite that this movie was. Every single actor was terrible. Even the chick at the trailer park. I crap on this garbage. What a waste of time.\r\n0\tBecause others have gone to the trouble of summarizing the plot, I'd like to mention a few points about this film. There may be spoilers here; I don't care enough to filter them out.<br /><br />- Given the film's low budget, the creature design was quite good. It's actually nice to see a direct-to-video horror film that's not slathered with awful CGI. Unfortunately the digital film quality's quite grainy in places, and it's most noticeable in the well-lit white halls of the asylum.<br /><br />- Ridiculous lighting design plagues parts of this film, to say nothing of the variations in the passage of time. I understand the director might have been trying to simulate dementia, but in order for this to be effective consistent time flow needed to be established. As-is, it merely seems amateurish.<br /><br />- Plot twists were numerous but consistently predictable. I neither had a doubt in my mind of the identity of the robed cultists, nor of the fact that some kind of lame evil-trumps-good development would surface at the end.<br /><br />- This may seem like quibbling, but characters in this film reliably fail to employ any kind of common sense. First of all, regulatory commissions would be all over a mental health center that unilaterally declared all patient and employee deaths cardiac arrest-induced. Why would the head psychiatrist also be capable of performing autopsies? Why wasn't a plot point made of these impressive qualifications, or of his introduction to his odd choice of religion? What's the background? What's supposed to make us care about anyone in this? And just as importantly, who in their right mind would go through the introduction to the place, see everything that was so frighteningly wrong with it, and then conclude that it was still a fine place to pursue a residency? This film didn't even respect its characters enough to give their intelligence the benefit of the doubt.<br /><br />Bottom line: See The Wicker Man instead.\r\n1\tThere are so many words I want to use to describe this movie, but can't really do that can I? This movie is a movie to watch if you just want to sit, laugh, cry and then pee. I'm serious. Don't watch this movie if you're easily offended by profanity, sex, nudity, homosexuality...and everything else associated with nature. Being a woman, and that might not even be a factor, I can watch this movie over and over again. Trey Parker and Matt Stone are absolutely brilliant. Along with all their other debuts, I think Baseketball is the prize winner. I'm laughing now just thinking about some of the stupid things they do in the movie. Watch the movie!! That's all I'm going to say. It's sort of hard for me to leave this comment because I'm one of those people, like Ozzy Osbourne, who has a curse word in almost every line that blurts out of their mouth when they speak. So I'm keeping it professional. Best movie. Heck yeah!!\r\n0\tRecreation of 1950's (London) Soho and the up-and-coming people. Based on a cult novel.<br /><br />Julian Temple is a video director. No more, no less. Give him 15 million dollars and he will make you a 15 million dollar pop video. Here he forgets that two minutes with people that can't really act is one thing - but two hours? What was he thinking of. Besides who are the audience? Who cares about a book that was well remembered way-back-when. The usual London story of the chancer taking his chance. <br /><br />What could really drag this film even further down? Oh I know, third rate songs that sound like they were made up on the spot. David Bowie crones the film title over and over a few times and that is the highlight. The soundtrack album is clay pigeon material.<br /><br />There is one good thing though. Good recreation of period Soho. Shame they couldn't think of anything to put in front of it.\r\n1\t\"Shakespeare's \"\"The Tempest\"\" is a model for this exceptional science fiction film. We look for differences. Prospero and his daughter, Miranda, are stranded on a Mediterranean island.\"\" Morbius and Altaira are marooned on the 4th planet circling the star Altair. Ariel is a spirit. Robby the Robot is a man-made servant. Caliban's evil hardly approaches that of Monsters of the Id. Shakespeare spares Prospero. Morbius dies when Altair 4 blows up. \"\"The Tempest\"\" is a comedy. \"\"Forbidden Planet\"\" is a tragedy. We wonder if mankind must suffer the fate of the Krell in some future time. Anne Francis is Altaira. Jack Kelly is Lieutentant Farman. Kelly starred with James Garner in the comedy/western TV series, \"\"Maverick.\"\"\"\r\n0\tThis movie must be in line for the most boring movie in years. Not even woody Harrison can save this movie from sinking to the bottom.<br /><br />The murder in this movie are supposed to be the point of interest in this movie but is not, nothing is of any interest. The cast are not to bad but the script are just plain awful , I just sat in utter amazement during this movie, thinking how on earth can anyone find this movie entertaining <br /><br />The producers of this movie were very clever. They made a boring movie but hid it well with the names of good actors and actresses on their cast. People will go to the blockbuster and probably see this movie and think, Woody Harrison ,Kristin Scott Thomas and Willem Dafoe this must be good and rent this movie.(boy are they in for a horrible time)<br /><br />If you like getting ripped off go and rent this movie, some people actually did enjoyed this movie but I like to watch a movie with meaning\r\n0\t\"The 1980s TV show, updated with fresh female flesh, and raunchy language. \"\"The Dukes of Hazzard\"\" passed me by; it was not repeated whenever I was in front of the television in either New York or California; or, I probably would have watched. Still, from somewhere (like the clips accompanying this film's updated 2005 release), I knew it was about a fast, orange Dodge Charger - and, the \"\"General Lee\"\" is still good to go. <br /><br />Hunky cousins Seann William Scott and Johnny Knoxville (as Bo and Luke Duke) are the New Riders of the Orange Sage. Beautiful Jessica Simpson (as Daisy) fills her skimpy short well - but, even her arousing pink bikini can't beat off the competition from a dormitory full of bouncing, topless coeds. The too stupid plot involves a graying Burt Reynolds (as \"\"Boss\"\" Hogg) threatening to turn Hazzard County into a strip-mine.<br /><br />** The Dukes of Hazzard (7/27/05) Jay Chandrasekhar ~ Seann William Scott, Johnny Knoxville, Jessica Simpson, Burt Reynolds\"\r\n0\tThe premise of this movie was decent enough, but with sub par acting, it was just bland and dull.<br /><br />SPOILERS The film does not work because of the nature of the death, it was accidental, so although it was a murder it wasn't like the guy set out to do it. Also through some flashbacks there is a secret that is revealed that sort of makes the events like justice to a degree. There is no emotion in this film. The first 20 minutes or so is just this woman calling her sister, and hearing her message. It was dull and boring.<br /><br />With some polishing, and better acting it could have been pretty good.\r\n1\t\"The premise is simple. This movies starts out looking like your average lame chick flick about two attractive young people meeting each other in an airport, then things take a 180 degree turn...<br /><br />I for one, really dislike the kind of mind numbing love story nonsense that pollutes the average movie theater. And it is my humble opinion that Wes Craven, based on his previous meta-horror films (Sceam) does too...<br /><br />Following this logic, it's not surprising to find that Craven sardonically takes his time to built up a nauseatingly sweet 'sependipity love'-story, only to have an AWESOME Cillian Murphy wreck that whole sugar-coated dreamworld... <br /><br />The scope of his character Jackson Ripner (Jack the Ripper, get it? lame, right?) in this film is impressive, he goes from being utterly charming to being a twisted nihilistic sicko, which is a plus in my book. As he proceeds to freak out his victim (Jennifer Garner lookalike Rachel McAdams, who I found pretty annoying by the way), you can't help but sympathize with the guy...<br /><br />This is Wes Craven, embodied in Jackson Ripner, through Cillian Murphy, bashing all brainless chick flicks...<br /><br />Mr. Craven, I salute you.<br /><br />Best quote:<br /><br />Jackson Ripner (after beating the snot out of Rachel McAdams in the airplane toilet): \"\"Thanks for the quickie!!!\"\"\"\r\n0\t\"Leave it to geniuses like Ventura Pons, the Spanish director, to convince the higher ups in his country to subsidize this misguided attempt of a film. The sad state of the film industry in that country is a product of trying to make a film out of such thin material. Most of the pictures that are made in Spain fall under two categories: those about the Spanish Civil War, that love to present past history as the writers deem fit. The other type of films show the viewer with a lot of gratuitous sex because the 'creators' don't have anything interest to say. <br /><br />As the film opens we get to watch Pere's penis as he attempts to cut it off and place it in one of the platters at a party. Later on, Sandra will show all she has been given for the audience to admire. The story of Pere's attraction to Sandra, a married woman that seems to be happily married, is false from the start.<br /><br />Our only interest in watching the film centered on an earlier, better made picture by Mr. Pons, \"\"Amic/Amat\"\", but alas, it has nothing to do with the mess we are punished to watch in this venture. As far as the comments submitted in IMDb, all the negative votes come from Spanish viewers, which speaks volumes coming from them!\"\r\n1\tI had intended to commemorate the 10th anniversary of Marcello Mastroianni's passing with numerous unwatched films of his that I own on VHS; however, given my ongoing light-hearted Christmas marathon, I had to make do with just this one! As it happens, it features one of his best performances - and he was justly Oscar-nominated for it (with the film itself being likewise honored). This was also one of 14 collaborations with that other most widely-recognized star to emerge from Italy, Sophia Loren; both, incidentally, are playing against type here - she as an unglamorous housewife and he a homosexual! <br /><br />By the way, the film's title has a double meaning: the leading characters are brought together on the historic day in which Hitler came to Italy to meet Mussolini (the event itself being shown in lengthy archive footage), but it more specifically refers to the stars' 'brief encounter' in which they share moments of friendship, revelation and, briefly, passion - though each knows that a return to their normal existence is inevitable, which leads to the film's abrupt bittersweet ending. This is virtually a two-hander (with all other characters - save for the nosy concierge of the apartment block in which the story takes place in its entirety - which include Loren's gruff and fervently patriotic husband, surprisingly played by John Vernon, appear only at the beginning and closing sequences); still, the cramped setting doesn't deter director Scola (for the record, this is the 7th film of his that I've watched and own 3 more on VHS) and cinematographer Pasqualino De Santis, so that the result - though essentially low-key - is far from stagy: the camera is allowed to prowl the various sections of the large building, observing the proceedings intimately or dispassionately as the situation requires, but always keenly.<br /><br />The narrative, of course, depends entirely on the performances of the two stars for it to be convincing, and they both deliver (their on-screen chemistry is quite incomparable); it's interesting, however, that while Loren walked away with the prizes in their home turf, it's Mastroianni's moving yet unsentimental outsider (the film, somewhat dubiously, does seem to equate his sexual deviance with Anti-Fascism!) who generally impressed international audiences!\r\n1\tCorbin Bernsen gives a terrifically intense and riveting performance as Dr. Alan Feinstone, a wealthy and successful Beverly Hills dentist who's obsessed with perfection. When he discovers that his lovely blonde babe trophy wife has been cheating on him and the IRS start hounding him about tax problems, Feinstone cracks under the pressure and goes violently around the bend. Director Brian Yuzna, working from a suitably dark, witty and demented script by Stuart Gordon, Dennis Paoli, and Charles Finch, exposes the seething neurosis and psychosis bubbling underneath the squeaky clean well-manicured surface of respectable affluent rich America with deliciously malicious glee. Moreover, Yuzna further spices up the grisly goings on with a wickedly twisted sense of pitch black gallows humor. Bernsen positively shines as Dr. Feinstone; he expertly projects a truly unnerving underlying creepiness that's right beneath Feinstone's deceptively calm and assured veneer. The supporting cast are likewise excellent: Linda Hoffman as Feinstone's bitchy, unfaithful wife Brooke, Earl Boen as smarmy, meddlesome IRS agent Marvin Goldblum, Molly Hagan as feisty assistant Jessica, Patty Toy as perky assistant Karen, Jan Hoag as jolly office manager Candy, Virginya Keehne as sweet, gawky teenager Sarah, Ken Foree as thorough, no-nonsense Detective Gibbs, Tony Noakes as Gibbs' equally shrewd partner Detective Sunshine, Michael Stadvec as womanizing stud muffin pool cleaner Matt, and Mark Ruffalo as on the make sleazeball Steve Landers. The first-rate make-up f/x are every bit as gory, gross and upsetting as they ought to be. The polished cinematography by Levie Isaaks boasts lots of great crazy tilted camera angles and a few tasty zoom-in close-ups. Alan Howarth's spirited shuddery score also hits the flesh-crawling spot. An enjoyably warped treat.\r\n0\t\"What of Domino did I hate over everything, and I mean everything, else? Perhaps it was the overall glorification of being a bounty hunter; maybe it was the sexism masquerading as an involving and interesting study of a hard bodied female lead character; maybe it was the mere look of the film with its bizarre yellow glow and distorted blue tints or the manner in which it takes an actress like Lucy Lui; who deserves a lot better than this junk; and has her sit there in the one spot in the room the light cannot directly hit with the same dumb look on her face. Maybe it's the editing; that horrid rapid fire editing and the manner in which lines of dialogue echo as they're uttered by people like Kiera Knightly who, if you buy as a bounty hunter, then you'll probably be able to kid yourself into believing the world will end in 2012.<br /><br />Nobody comes away from Domino with any sort credibility, absolutely nobody at all. It is a painful and misguided experience, taking inspiration from things like Natural Born Killers and letting loose ideas to an audience not even there for them. The principal question is: 'Was Domino supposed to be some kind of comedy?' what with its hilariously bad lead uttering certain lines that desperately want us to think she's coming across as 'tough' but really, she resembles more an arrogant fifteen year old girl on her first day at public school, attempting to impress her peers. There are things you genuinely don't know how to react to, whether they're supposed to be funny or not. If it is supposed to be a comedy, that begs the next question: 'Is the life of a bounty hunter really the sort worth exploiting for laughs?' I don't think so.<br /><br />The film opens with the title card 'Based on a true story........sort of.' If that's supposed to be some sort of post-modernist technique that enables director Tony Scott to bend and manipulate the story of Domino Harvey for his own unique purpose, then you're simply on another planet. Truth is, in that one opening quote the film identifies the subject matter and the original text before completely copping out and saying 'sort of' which I guess is supposed to enable them to make Domino older than she should be and appear on Jerry Springer. Following this, we learn of Domino's relationship with her father who died in the film when when she was ten or something; here is the first use of the 'sort of' cop out as in real life she was just four. But if the film had gone by reality's dates then her entire drive would've been born out of the death of........her goldfish.<br /><br />We are then thrust into action with Ed Mosbey (Rourke); Domino (Knightley) herself and would-be love interest Choco (Ramírez). During the scene, an American mother is pinned down via gunfire in her own caravan in the back end of nowhere as she pleads for her son's life to be spared. What a really misguided opening; presenting its three leads as nasty people who break into trailers, fire off weapons at innocents we don't know anything of and come close to shooting their pet dogs.<br /><br />The immediate feeling is of hatred toward the three leads, a feeling of 'No, why are you doing this? Why is this happening?' Bad seeds are planted and, wouldn't you know it, they stick. The film is painful to watch, excruciating even; as these three mug their way through the piece complete with supporting performances from actors known for playing characters in Beverly Hills 90210. Here is another daft post-modernist slant, people playing themselves and that 'sort of' Joker card being played again. Christopher Walken even pops up in a really stupid role that reeks of Robert Downey Jr's Natural Born Killers character.<br /><br />So as the film plods on and Domino is cast into Ed and Choco's gang, purely for her good looks I might add, it appears amidst the plot to do with fake driver's registration I.Ds or something that Choco and Domino may have feelings for one another. The problem is, as each performer is doing such a bad job in their respective character; there is no chemistry and no feeling between the two; the film isn't a love story so why even bother going down that road in the first place? Does anyone care about these two characters amidst all the fast edits and stuff blowing up? If there is any 'feeling' between Choco and Domino, it exists on such a small, tiny, minimalist scale that you have to ask why it's even included.<br /><br />So then the film feels the need to crank things up narrative-wise. We find out the reason for the fake I.Ds that are linked to someone else and a guy talks on a cell phone in a sound proof bubble. The sound proof bubble I can believe but how does he get his phone under the water and into the bubble in the first place without it becoming flooded? He must've swam really quickly  double the speed of the film's fasted edit which means something in the region of .01 of a second. Yeah, sure. The film's story becomes both too complicated and just plain arbitrary before resorting to a really dumb climax in which more stuff blows up. Plus, there's a really distasteful scene to do with a wall chart full of new ethnicities and the film's comedy runs SO dry, that it has to resort to the \"\"Jerry, Jerry!\"\" chant whilst people are on a popular American talk show. When did we last laugh at \"\"Jerry! Jerry!\"\"? when we were, say, seven years old? I came away feeling sad and depressed at such a film's existence.\"\r\n0\tOne of, if not the worst film to come out of Britain in the 80s. <br /><br />This tawdry tale of a middle aged lecher who 'seduces' two teenage scrubbers who babysit for him and his faux-posh wife has nothing to redeem it.<br /><br />In turns gratuitous, puerile, uncouth and unrealistic, this film plumbs the depths as it fails miserably in its attempts to be funny, provocative, intellectual and controversial. <br /><br />Perhaps the worst thing about this film is the way the strong cast of George Costigan, Michelle Holmes and Siobhan Finneran are completely stitched by such a lame script. It's no surprise that this was the late Andrea Dunbar's only work to make it onto the screen. Complete and utter rubbish on every level.\r\n1\t\"Directed and co-written by Eytan Fox the writer/director of the highly acclaimed 2002 mini feature \"\"Yossi & Jagger\"\" (2002). This comparative epic, at 1hr 53 minutes, is another fine romantic drama in which we must deal with tragedy as well as celebrate the beauty and joy in life. Westerners, especially urban gay men like myself, need to be moved outside our safety zone and be informed of the real life and death struggle elsewhere to be able to love with equity.<br /><br />While \"\"Yossi & Jagger\"\" focused on a pair of gay lovers in the closeted confines of Israeli military service, \"\"Ha Buah\"\" is centred on a group of civilian friends, both straight and gay, who share a unit in the heart of Israel's generally gay-tolerant, but not always gay-friendly, capital Tel Aviv.<br /><br />\"\"Ha Buah\"\" opens with a dramatic border check point scene in which Noam (Ohad Knoller  Yossi from \"\"Yossi & Jagger\"\") first meets handsome young Arab Ashraf (Yousef Sweid). Romance soon blooms  but in that political climate opportunities would have to be seized quickly or lost altogether.<br /><br />From there we follow an intricate interplay among the members and lovers of the housemates and the unavoidable effect of Ashraf's very conservative family. If you follow this film's dialogue attentively enough then you will have no reason to be disappointed with the ending.<br /><br />The soundtrack for \"\"Ha Buah\"\" is vibrant and the visuals are both beautiful and stark  i.e. real life in the Middle East.<br /><br />The English subtitles are very easy to follow and you quickly relax and appreciate world cinema at its best.\"\r\n1\tJean-Jacques' career began with his essay answer to a prize question: civilization makes us evil. This intelligent and exciting movie supports that argument. In that sense it repeats a theme common to French films: society is real, identity is a construction, freedom is criminal. Here the idea is treated literally. Both main characters find themselves, and each other, only when breaking rules. This discovery may well hold true in France; at any rate, it's quite romantic.\r\n1\t\"\"\"Fear of a Black Hat\"\" is a superbly crafted film. I was laughing almost continuously from start to finish. If you have the means, I highly recommend viewing this movie It is, by far, the funniest movie I have had the pleasure to experience. Grab your stuff!\"\r\n0\tI saw Arthur(the TV series and the books)years ago and never was fond of the show very much(if you're a fan of this cartoon,sorry if I'm spoiling it for you,but this is actually what I think).Lots of people liked it,but I didn't.<br /><br />The school kids characters seemed to fought all the time(especially Arther and DW),they were nice to each other frequently,but gradually I got tired of Arthur's complaining attitude towards everyone and his sister DW(however the name was spelled),and DW was an ADHD(or ADD)-like 4-year-old sister of Arthur who was sometimes demanding(which could be why Arthur got annoyed with what her routines were,like her imaginary friend and her stuffed animal collection etc.),Arthur's friends acted like teenagers instead of what they were like in the Arthur books,and the parents,well,they didn't care very much.<br /><br />The greatest cartoon was Rocko's Modern Life,not Arthur(no offense).\r\n0\tThis sounded like a really interesting movie from the blurb. Nazis, occult , government conspiracies. I was expecting a low budget Nazi version of the DaVinci code or the Boys from Brazil or even Shockwaves. Instead you get something quite different, more psychological, more something like from David Lynch. That was actually a plus. But the way the story is told is just awful.<br /><br />Part of the trouble is the casting. Andrienne Barbeau's character starts off the moving being somewhat timid and afraid. She just doesn't do that well, even at her age, though she certainly tried. The actor cast as the son apparently thought this was a comedy. Most of the other actors also seemed to have thought this was a campy movie, or at least acted like it, rather than simply being quirky. The only one that I thought did really well was the daughter, Siri Baruc.<br /><br />Another big part is the pacing. It starts off very slowly. So slowly you might be tempted to turn it off. But then it gets compelling for a while when you get to the daughter's suicide and the aftermath. But shortly afterward, it all becomes a jumbled mess. Some of this was on purpose, but much of it was just needlessly confusing, monotonous, and poorly focused.<br /><br />The real problem, is it's simply not a pleasant movie to watch. It's slow, dull, none of the characters are likable. Overuse of imagery and sets. Some movies you see characters get tortured. In this, it's the viewer that does. It does have a few creepy moments, most notably the creepy Nazi paintings and the credits, but the rest of the movie is mostly just tiresome.\r\n0\tThis was awful. Andie Macdowell is a terrible actress. So wooden she makes a rocking horse look like it could do a better job. But then remember that turn in Four Weddings, equally as excruciating. Another film that portrays England as full of Chocolate box cottages, and village greens. I mean that school, how many schools apart from maybe Hogwarts look like that? The twee police station looked like the set from Heartbeat ( a nauseating British series set in the 60s).This film just couldn't make its mind up what it wanted to be- a comedy or a serious examination of the undercurrents in women's friendships. If it had stuck to the former then the graveyard sex scenes and the highly stupid storming of the wedding might just have worked( i say just). But those scenes just didn't work with the tragedy in the second half. I also find it implausible that Kate would ever speak to Molly again after her terrible behaviour. A final note- what is a decent actress like Staunton doing in this pile of poo? Not to mention Anna Chancellor. Macdowell should stick to advertising wrinkle cream.\r\n1\t\"Brand Hauser (John Cusack) is an assassin for the CIA. He is ordered to go to the country of Turaquistan, a nation that the United States has \"\"liberated\"\", and kill a businessman named Omar Shariff. This is because the American conglomerate, Tamerlane, that is putting the country \"\"back together\"\" will not stand for Shariff, an oil man from a neighboring state, laying down his own pipeline through war-torn Turquistan. But, once there, Brand runs into difficulties. One, he meets a determined journalist, Natalie (Marisa Tomei) who wants to tell the American public the \"\"true\"\" story of the region's conflict...and of Tamerlane. But, Brand is aghast to realize that Natalie's pretty face and sharp mind instantly and unconsciously compels him to lose focus on his mission. Also, his cover as a trade show host forces him to meet the country's pop-singing princess, Yonica (Hillary Duff), who will be getting married at the convention center. She is a young diva whose wedding arrangements also turn Brand's attention away from the coming assassination. With other inept underlings and complications, will Brand be able to carry out his mission, for the satisfaction of Tamerlane's BIG boss, the former vice-president (Dan Ackroyd)? Good for you, John Cusack, to make this film, even though it doesn't quite hold together. Shot in Serbia, it is a worthy look at what present-day Iraq must be like, a country turned upside-down. In a stroke a brilliance, the green zone here is called \"\"The Emerald City\"\" and aptly so, for this Oz-like neighborhood attempts to keep out the ravages of war going on elsewhere in the metropolis. The cast is very fine, with Cusack doing a nice job and Tomei, Joan Cusack, Ben Kingsley, Ackroyd and others backing him up in style. Duff, especially, does a great turn as the heavily-accented, heavily made-up, potty-mouthed singer. The recreation of war-riddled Baghdad is so real that it hurts while the costumes and other production values are top-notch. As for the script, it isn't always cohesive but it certainly has some tremendous dialogue and scenes. For example, a young Turaqui boy offers to show Brand an enemy hideout, in exchange for money and candy. Brand produces the cash but, because he has no candy, the boy burns his vehicle anyway. Brilliant! Then, also, the direction is not a total success but doesn't lag very often. No, if you have conservative leanings, you probably won't like this film one bit. But, if you have an open mind and want to see a satirical view of the \"\"war on terrorism\"\", this is quite a good show. Therefore, do make an effort to view it, as you will be supporting those filmmakers who choose to make movies far away from those old studio \"\"formulas\"\".\"\r\n0\t\"actually, it was pretty funny... in a \"\"god, how the hell did this movie get made\"\" kind of way. if you life making fun of movies... which i kinda do... go ahead and watch it... but if you're actually thinking \"\"is this a good movie?\"\" eff off.<br /><br />this movie sucked from the very beginning scene with the worst acting i've ever seen in any movie.... usually they get five minutes into it before you realize \"\"this movie might suck\"\".. but no, you know right off the bat. this movie talks about edgar allen poe... never tried to explain it though, to people who haven't memorized poe's life story... so i don't know if any of what was said is fact.<br /><br />this movie is about a writer \"\"ethan poe\"\" hookin up with his cousin \"\"ann\"\".... they're both descendants of edgar allan poe... or are they?!? apparently, people give a what their ancestors did. this guy ethan poe is actually ethan \"\"usher\"\", who is supposed to be descendants from the story \"\"the house of usher\"\" that was written by edgar allen poe. ann's brother shows up sometimes to try to rape her... ann's also being stalked, at one point in the movie, by three different people on the same street (seriously, three... they're like right behind her glaring at her and she doesn't even realize). the characters that are being murdered throughout, show up at the end to try to save the day.... but they can't. at the end, ann shoots ethan while he's trying to kill her best friend. of course, before she shoots him she has to scream out \"\"nevermore!\"\" this movie should be seen nevermore!\"\r\n1\t\"(WARNING: minor spoilers)<br /><br />I ran into this one partway through and watched from there, not knowing what it was or what the plot was. It certainly held my attention; I didn't know until the ending that it was based on a true story! The guy she used to do the dirty deed came out looking like a seriously nice guy who just got his head twisted around by a devious girl; I have to question how true to life that portrayal is. Anyone who would murder a husband and wife as they slept just can't be entirely nice. Still, I did have some sympathy for him, as he had been set up and taken advantage of; that much was made clear.<br /><br />My main complaint is with the ending (here comes the biggest spoiler! skip this paragraph if you don't want to learn it). A few minutes before it ended, there seemed no way for the truth to be discovered. The way it got discovered was in a \"\"sting\"\" operation, but my question is: how did the police get convinced to go along with it? The movie didn't show us that, and it seemed a bit too convenient absent the explanation of how they were persuaded to do it.<br /><br />I think the way they handled that was done for dramatic purposes, as the omission of the explanation lent an aura of suspense to the crucial scene which otherwise wouldn't have been there (we would already have known what the scene was about, and what was going on with Brad in it).<br /><br />Otherwise, this is a pretty good film; I give it 7/10. It made me think. Now I'm interested to find out the facts of the real case.<br /><br />One more thing: the movie was done in 1996. Some of the reviews here seem to be treating it as a more recent movie.<br /><br />P.S. Meadow Sisto is lovely. I hadn't seen her before. She can act a little, too (always a plus in her line of work, LOL).\"\r\n0\t\"With the MASSIVE advertising this is getting on Nickelodeon and Nick Jr. and that ilk, my son was bugging us to see it. Between DVD and the theaters, I've seen pretty much everything by now from the outstanding (Incredibles, Shrek) to the really bad (Wall-E, Brother Bear). But this was easily the worst movie I've ever seen, kids or no kids. It was a \"\"when it this stupid thing going to end?\"\" kind of experience? OK, it's aimed at toddlers (or it better be - it's insulting to the intelligence of anyone over 3), but I've never seen something so predictable, repetitive, and slow-moving. Then once you're finally fed up but relieved that the movie is over, there is this bizarre thing at the end that you think is the setup for a joke, but there isn't one - it's serious, though it's hard to tell what they're trying to accomplish. The 3-D effects... yeah, if you've never seen a Viewmaster they're a big deal, otherwise no (if you look at the screen without glasses, it appears to be the same process). Even my son was bored by the end. Both my wife and I looked at each other and said \"\"wow\"\" at the end. Bad in every respect.\"\r\n0\t\"There is one great moment in *Surviving Christmas* that almost makes it worth the pain: James Gandolfini cracks a shovel over Ben Affleck's stupid head.<br /><br />This movie serves as yet another unfortunate example of James Gandolfini proving what a great actor he is whilst simultaneously besmirching his career by acting in this film.<br /><br />Young and wealthy ad exec, Drew Latham (Ben Affleck) has been inculcated into believing that one must never be alone on Christmas. (And there, from the outset, is the underlying problem with our suspension of disbelief in this idiotic movie: how many people of Drew's social standing, in 2004, truly care one way or another whether Christmas is spent alone or with half the family or with a fifty-dollar prostitute?) Storyline finds Drew buying off a family to spend Christmas with, on the condition that they pretend to be his own, insensately ignoring all the indications to the contrary that his money has not bought the emotions he was seeking.<br /><br />For $250,000, a surly suburban truck driver, Tom Valco (James Gandolfini), and his disheveled wife, Christine (Catherine O'Hara), agree to be Drew's ad hoc family, against protests from their son, Brian (a very one-dimensional Josh Zuckerman) and daughter, Alicia (a very soft-focused Christina Applegate). Drew then spends the rest of the movie supposedly recapturing his youth or - something. The messages in this movie are as twisted and illogical as its dry-mouthed storyline. Fraught with overt psychoses, Drew plasters a fake smile on his face and blindly remains in denial against every denigration that he was supposedly buying the Valco family to avoid.<br /><br />Which begs the question: If Drew is paying these people to recapture some semblance of joyous familial emotion, how psychotic must he be to pretend happiness amongst their barbs and mental anguish over his presence? It is not a case of the Valco family hiding their true feelings and pretending to be happy while around Drew - three of the four members make it patently clear they despise him. Is he so incognizant that he cannot see that his money is not buying him the \"\"family\"\" atmosphere he was inculcated into believing was a truth in the first place? As with all movies this opprobrious, one wonders how *four* screenwriters could possibly get so tangled in their own narcissistic dreams of appearing in a credits sequence that they will overlook any semblance of plausibility, or intelligence.<br /><br />Director Mike Mitchell, who was responsible for *Deuce Bigalow: Male Gigolo* - stop right there. 'Nuff said.<br /><br />Gandolfini and O'Hara somehow manage to shine, proving their mettle amongst this mess. Christina Applegate is willowy and cutesy and blond and fiery in all the right places, scathingly cutting Drew into little strips of carcass for most of the movie, then doing an about-face and falling in love with him because the script tells her to.<br /><br />And I wouldn't go so far as to say that Affleck is a bad actor, but John Schneider better look over his shoulder. There's a whole new level of Desperately Seeking Talent in town.\"\r\n0\t\"This was not the worst movie I've ever seen, but that's about as much as can be said about it. It starts off with some good atmosphere; the hospital is suitably sterile and alienating, the mood is set to \"\"eerie\"\". And then...nothing. Well, somethings. Just somethings that clearly don't fit in...and no effort is made to clarify the connection between the bizarre and yet not particularly intimidating critters, and the hospital they've taken over. I mean, come on, biker duds? Some band watched a bit too much Gwar.<br /><br />My personal favorite was the head demon, who looks rather a lot like a middle-aged trucker desperately attempting menace, while simultaneously looking like he'd really like prefer to sag down on an afghan-covered couch, undo his belt, pop a can of cheap beer (probably Schlitz), and watch the game. Honestly, I've seen far scarier truckers. At truckstops. Drinking coffee. WWWwoooooohHHHHHoooooooo!!!! Scary!!<br /><br />The other monsters are even more cartoonish, and even less scary. At least, on the DVD, the videos give some explanation of their presence in the hospital...they apparently just randomly pop up in places, play some bippy \"\"metal\"\", and cause people to be dead a bit. Barring a few good special effects, and acting that is not entirely terrible given a lack of decent writing, there's just nothing here. It's a background-noise movie only.\"\r\n1\tWell... Vivah is quite a good, but typical Sooraj Barjatya's movie. It shows different aspects of Indian families, wedding ceremonies, etc. The movie is more than good, but not extremely good.<br /><br />The big plus point of the movie is direction, music and Shahid and Amrita's acting (especially the last scene). The movie starts with a common factor of Indian movie--- A girl being disliked by her step-mother. Story is the movie is a bit common, but it is good, good enough to make the movie a blockbuster.<br /><br />Minus point is common story of Bollywood movie. Overall I would say it is two times must watch movie, if you want to see typical Indian family values and of-course love!\r\n1\t\"Pickup on South Street (1953), directed by movie maverick Samuel Fuller, contains a stunning opening that establishes a double complication. Subway rider Candy (Susan Peters) collides with pickpocket Skip McCoy (Richard Widmark dipped in shades of Sinatra cool). She's unaware that she carries valuable microfilm; McCoy is unaware of grifting it. Both are unaware of being observed by two federal agents. Thus the grift sets in motion a degree of knowledges. Candy is doubly watched (Skip and the police) and therefore doubly naive; Skip, the overconfident petty thief, is singularly unaware, trailed by federal agents; the feds, all knowing, are ultimately helpless. They can't stop the \"\"passing\"\" of government secrets or the spread of communism.\"\r\n1\tNine out of ten might seem like a high mark to give for a straight to video sci-fi movie that's been vilified at the US box office and roundly criticized as the poorest movie of Kurt Russell's career.<br /><br />I have my reasons.<br /><br />Firstly when you read negative reviews of this film, they usually start with the wooden nature of Russell's interpretation of Todd, the eponymous Soldier. I'm going to start here too, with my surprising statement that this is possibly the finest piece of acting I've seen Russell pull off. Todd is an emotional cripple and suffering from intense PTSD - this movie being written before the phenomenon was as widely recognized as it is now.<br /><br />The portrayal is spot on. Todd is withdrawn, uncommunicative and a loner. He suffers from irrational anxiety - keyed to a fever pitch by training that teaches him to analyze every movement and interaction with another human being for signs of betrayal and danger. His hyper-focus brings with it an inability to comprehend the bigger continuum that the tasks he is given to do sit within - there is a scene where he cuts himself slicing carrots and continues to work unfazed, not cleaning up the cut or the blood. Many interpret this as a sign of his physical toughness and focus on the job at hand, but it is also a sign that he is simply performing the requested task by rote - not comprehending the relationship between the vegetables he's preparing and the food that will be eaten later.<br /><br />Todd's dialog is spartan to say the least - the two big talking scenes he gets are central to the plot of the movie and both underline the bleak nature of his existence. Fear and Discipline we are told. Always. Fear to keep him pumped up to a hyper alert state where the smallest detail will not pass him by, keeping him ready to react on a knife edge. Discipline to hold him in check through his fear, to overcome it and perform tactically. The inference is that he has no time to think and cannot afford feelings. Many viewers have different interpretations of his reaction to the hug from Nielsen's Sandra - but I believe you have to interpret it from the perspective of a human who's only experience of an embrace is in combat - the trembling represents him suppressing his fight / flight instincts reacting to the fear of being grappled, his movement and vision restricted - Fear and Discipline indeed.<br /><br />Then there is the subtext of his abandonment (Twice in fact) - so representative of the way our society tends to toss infantrymen onto the rubbish heap of society when they've served their terms. 40% of the unemployed are ex-military in OUR world, in HIS it can only be worse. Russell quickly picks up the mantle of Mace's responsibility to his wife and child - desperately in need of a mission, even one with such a high likelihood of his death.<br /><br />Then there is the military subtext too - the conflict between Busey's Church and the hotshot from HQ, Mekum. Mekum's new men are faster, stronger, more accurate and aggressive. Any one of them could pound Todd into the ground - but it's not about the tools you have it's how you use them. An incentivized Todd given the freedom to exercise his initiative and acting without the numbing effect of perceived superiority utilizes ambush tactics and sneaky tricks to cut a swathe through the newer unit - sent in without support, cover or reconnaissance. It is a reminder that military power cannot make up for a failure in leadership.<br /><br />There are many other subtle themes. When a film is shot and scripted so minimally, it leaves plenty of white space for your own interpretations to take root. Watch Soldier with an open mind and see what it teaches YOU.\r\n0\tI remember when this came out a lot of kids were nuts about it. I guess I was a bit too old to get all excited and I was a fan of real martial arts films and always found this a bit cheesy.<br /><br />In the early 90's we were swamped with programs such as this making kids feel like they could fight and be a power ranger or an equal to these kids on 3 Ninjas. I think eventually parents and film makers alike got sick of it because all we had in reality was abunch of kids going around punching and hitting everyone.<br /><br />Many kids movies have some big point they're trying to make and its nice for your kids to watch and get the message, this one doesn't have any message at all...it just exploits a million difference things in less than 90 minutes.<br /><br />The movie has no great visual qualities but would one expect it to? The acting is pretty bad. Victor Wong is a cool actor but it was embarrassing to see him here.. The short, fat, gimped eyed old fart as a powerful ninja that was just hilarious. The kids over acted way too much and the youngest ninja Tum Tum was maybe the worst kid actor I have ever seen.<br /><br />The movie has a plot that anyone knows before they even read the review. 3 ninjas...yea you know they're gonna fight a bunch of bad guys and win obviously... Need I say more. Sorry if I spoiled it for anyone.<br /><br />With all that said KIDS WILL LOVE IT. This movie is aimed at kids and only children could enjoy it. If you don't mind your kid seeing movies about kids fighting this is a good movie to let them see. If you don't mind allowing your children to see complete garbage that has nothing to do with real martial arts, real acting or reality period then you have found a movie for your kids... I say kids because I think even the girls will like it... I recall all the girls having a crush on Rocky.<br /><br />2 out of 10 stars because I think you can make a movie for kids and still make it enjoyable for adults..this movie failed big time at that.. It is beyond cheesy and nothing original or unique and I would not allow a child of mine to watch it... Kung Fu the TV series is on DVD and there's tons of great Shaw Brothers films out there...Why not show your children things that will really entertain them and not make them dumb along the way, perhaps even teach them some moves and not just how to kick a man between the legs as grandpa did on 3 Ninjas...no no no...never kick a man between the legs ...never .. thats so unninja like.\r\n0\tIt was just a terrible movie. No one should waste their time. Go see something else. This movie is, without a doubt, one of the worst movies I have ever seen in my life. If you want to see a good movie, don't see Made Men.\r\n1\t\"Jon Voight plays a man named Joe. Joe is shook up by a haunting childhood. He has a strong fear and hatred of religion due to his traumatic baptism. He quits his job as a dishwasher and goes out to become a hustler for wealthy people. He meets a misfit named Ratso(Dustin Hoffman) and the two for a relationship. They go out and work together in helping each other out. They become thieves. The two grow remarkably close and soon can't live without each other. However, there is something very important that Ratso hasn't told Joe, and it could destroy any hope they have of surviving the city together. This is one of the greatest films ever made. It is a heartbreaking and shattering portrait of too very lonely men who have nothing to lose but each other. Their story is devastating to watch, but is ultimately important for people to see. It's one of those films where the characters are pretty much just like the seemingly crazy people you sometimes find on the street. The difference is that this film is from their perspective. Their lives are shown to us and it's devastating to see the pedestrians in this film treat them like dirt, especially if we at one time were one of those people. However, the film doesn't try to guilt trip you. Instead, it shows you the rough side of the lifestyle of hustling. It is not a pleasant and easygoing lifestyle like many Hollywood films portray it such as MILK MONEY and PRETTY WOMAN. The lifestyle of being a male hustler is a dirty, gritty, and ugly life and it's sad that people have degraded themselves like the character of Joe in this film does. What startles me the most about this film was that it came out in 1969, and it has stood the test of time perfectly. Today's audiences will still find great meaning in this film and will still love it and cherish it just as much as critics and audiences did everywhere in 1969. The film was rated X, but what I notice about this film is that the sexuality is portrayed in a much more honest, realistic, and effective way. Anybody who has had sex before will know how humorous, awkward, and scary as hell it can be and this film doesn't shy away from any of that. The sex in this film may not be as graphic as in once was thought to be. Movies that were X rated such as MIDNIGHT COWBOY, A CLOCKWORK ORANGE, GREETINGS, LAST TANGO IN Paris, and FRITZ THE CAT all seem remarkably tame compared to the shocking things that people can get away with an R rating today. The sex scenes in MIDNIGHT COWBOY will seem quite strong but they certainly aren't sexy. They are not graphic, but they are realistic, and that's what people should keep in mind when they view this film. The course language that is used in the film, particularly the word \"\"fag\"\" is used effectively and is not gratuitous. The violence is very shocking to watch even today, but again it is necessary to the plot to depict the world of a hustler. I'm really glad to see that MIDNIGHT COWBOY is not dated and is still just as affecting as it was in 1969, if not more. I can't recommend this classic enough and I do hope that it continues to find an audience because it really is a very special and unforgettable experience that will not soon be forgotten.<br /><br />PROS: <br /><br />-Jon Voight and Dustin Hoffman are both harrowing and amazing to watch. They have never played roles like this before or since and they are completely different from usual. You'll forget who is playing them within minutes! <br /><br />-Beautiful score <br /><br />-Not at all dated or campy like many films of that decade come off as today <br /><br />-Fantastic and fast editing job<br /><br />CONS: <br /><br />-For mature audiences only <br /><br />-The opening scenes are well done, but they could be just a little stronger.\"\r\n0\tbelieve it or not,this movie is worse than number three.it's slower,the acting is worse,and the story is very weak.there isn't a lot of good to say about this movie.even the fight scenes are more dull than number three,and i would have thought that impossible.this is a very slow 90 minutes.painful,in fact.i stuck it through,hoping it would get better.if you really want to see this movie,you should try to find a cheap rental of it.it is hard to find(for purchase,that is)and probably for good reason.like number three,this movie has nothing to do with the first two.it is the same in name only.anyway,the most i can give Best of the Best:Without Warning is 2/10\r\n1\tAt first you think another Disney movie, it might be good, but it's a kids movie. But when you watch it, you can't help but enjoy it. All ages will love this movie. I first saw this movie when I was 10 and now 8 years later I still love it! Danny Glover is superb and could not play the part any better. Christopher Lloyd is hilarious and is perfect for the part. Tony Danza is so believable as Mel Clark. You can't help, but to enjoy this movie! I give it a 10/10!\r\n1\tIn 2054 Paris, Avalon, a computer generated system, controls the city and when a young woman is kidnapped, detective Karas (Craig) must go against Avalon to find her.<br /><br />Renaissance is a splendid blend of film making mixed with a conceptual futuristic narrative that lights up the screen in a shocking manor with a noir themed ideology and conceptual montages that should delight many.<br /><br />Pixar are the animation masters. Their numerous Oscar winning films are endless from the charming Toy Story to the mystifying Wall-E and so any company or director has a real challenge to knock them of their perch. Renaissance isn't a film aimed for the young audience though, and like 2007's Persepolis, brings a strong and mature approach to the genre of animation to make an older and more challenging film to its targeted older generation.<br /><br />In 2005 Robert Rodriguez released a shockingly brilliant noir Sin City that shook up the whole usage of green screen with a splendid balance of filming in black and white with the odd spurts of colour and a year later, Christian Volckman took up a similar approach with this equally visually masterful stroke of film making.<br /><br />Volckman's picture however is a full on animation but it doesn't half look realistic for the majority of it's strong 1 hour and 40 minutes of running time. The faces of the character's are well portrayed and in particular, this film has got to be the finest ever for the usage of shadow. The fact we never know if its night or day is irrelevant when simply gazing into the stony faces as the shadows blend across their expressions. It is almost a clever use of pathetic fallacy, and is finely directed also.<br /><br />For anyone who has seen Persepolis you will have come to the conclusion it is one of the finest directed animations ever screened for the simple but highly conceptual artistic style by Marjane Satrapi<br /><br />Renaissance is equally on terms with that picture and in many instances rivals it with stronger graphics and a darker tone to reflect the mood. One scene in particular when Karas appears out of darkness is beautifully shot.<br /><br />The narrative revolves around a stubborn and nosey political government who keeps tabs on every citizen. The running of Paris is down to the mysterious Avalon which we don't see nearly enough to get an essence of its true dominance. Renaissance is controlling the narrative around a tired cop's attempts to rescue the mysterious woman, and then we see Craig's tired and boring cop attempt a rescue whilst battling with other elements. There are many things wrong with the scripting, not to mention the tired exasperated cop routine is now old, but there is plenty of dashing adrenaline and springy banter between characters to keep it alive right till a wonderfully shot shocking last couple of stages.\r\n0\t\"Where to begin, there's so much wrong and horrible about this movie I am not sure where to start. Okay, the two stooges who wrote this crapper. Joseph Green and Rex Carlton, first they couldn't make up their so-called minds for a name. My guess they split the difference, that's why the main title is BRAIN THAT WOULDN'T DIE, but the end screen says HEAD THAT WOULDN'T DIE. Neither one knows anything about the Medical profession. After all Doctors take oaths to \"\"do no harm\"\". Killing a woman for a head transplant would be considered \"\"harm\"\". Plus, a little thing called blood and tissue matching. Rejection would spell death for Jan in the pan. Plus who keeps a patch work monster. What medical school did Bill graduate from, FRANKENSTIEN UNIVERSITY? Old FU, or MAD SCIENTIST TECH? The monster had no name, that bugs the hell out of me. Plus, the brilliant surgeon Doctor Bill Cortner doesn't know how to keep a patient sedated? All and all a disaster of a movie, it's incredibly stupid and unwatchable, except on MST3K. I give it THE THANKSGIVING TURKEY.\"\r\n1\tOverall, I agree wholly with Ebert's review. In a sense, I feel that I should not even be commenting since it is so much a vet's movie and I am not a vet (I was a resister). The flaw is that Martha is badly underdeveloped and does not act consistently. My guess is that Stephen Metcalfe is a vet himself and spent too little planning time on her character.\r\n0\t\"This film is really terrible. terrible as in it is a waste of 84 minutes of your life. Special effects are so terrible. The acting wasn't convincing.<br /><br />Its about a crocodile that attack a view tourists as they are filming a documentary about \"\"blood surfing\"\". Blood surfing is when they surf around sharks but it turns terrible wrong when a 31 foot crocodile interrupts there holiday. The sharks don't look real. The crocodile is even worse, and it gets even more pathetic when they are running away form the creature, but the crocodile gets stuck and 2 females flash it. The deaths are fake and the pirates are just to fill in time.<br /><br />A pointless, terrible film thats not worth seeing!!\"\r\n1\t... Oxford, Mississippi, at least. Okay, the Paris we get is Paris, Culver City apart from the Establishing library footage of the real McCoy but it IS Paris in spirit than which nothing, nowhere, is better. Okay, Kelly is no Astaire but then who is and Caron is no Hepburn, ditto but Alan Lerner is light years ahead of the vastly overrated Comden and Green who scripted Kelly's other 'big' 50s musical Singin' In The Rain (a curious replication of lyricists writing screenplays featuring songs by OTHER lyricists and just to balance things the Gershwin numbers are far superior to the Arthur Freed/Nacio Herb Brown numbers so Alan Lerner didn't have to feel too outclassed). The story needn't detain us any more than the anomalies -Kelly hasn't got change of a match and is a painter, i.e. bohemian, yet he is able to scare up a perfectly good suit at a few hours notice when Foch invites him to dinner at her hotel; in the well-documented Love Is Here To Stay sequence the lovers are strangely unmolested by passers-by, other lovers and the bridge in the background is totally free of both pedestrian and vehicular traffic - this is, after all, a feelgood musical so it stands or falls by the score and in this case it stands four square. As feel good musicals go it's definitely in the top 10.\r\n0\tThis film looked promising but it was actually pretty bad. The premise was O.K, but the plot itself was terrible. The actors tried their best with limited material, but they could not rise above the mean spiritedness of this tacky college film. Jason Schwartzman was once again immensely irritating - even more so than in Rushmore, the rest of the cast were quite non-eventful. Scenes that should have been fun turned out to be off-putting & incredibly juvenile. Tries to be a Road Trip/American Pie but fails dismally on all levels. A total waste of everyone's time.\r\n0\tI had two reasons for watching this swashbuckler when it aired on Danish television yesterday. First of all, I wanted to see Gina Lollobrigida - and here I wasn't disappointed. She looked gorgeous. Second of all, through reading about the film I had gotten the impression that it featured absurd humor not unlike that which can be found in Philippe de Broca's films. On this account, however, I was sadly disappointed. I found the jokes predictable (apart from a few witty remarks on the topic of war) and the characters completely one-dimensional. Also, the action scenes were done in a strangely mechanical and uninspired fashion, with no sense of drama at all. I kept watching until the end, but I got bored very quickly and just sat there, waiting for the scenes with Lollobrigida.\r\n0\t\"HORRID!!<br /><br />The special effects make the TV version of \"\"Tremors\"\" look real!<br /><br />No one in the cast can act.<br /><br />Kind of like the '62 \"\"Voyage to the Bottom of the Sea\"\" meets the cartoon ocean going electric eel cartoons.\"\r\n1\t\"\"\"I'll Take You There\"\" tells of a woebegone man who loses his wife to another and finds an unlikely ally in a blind date. Unlike most romantic comedies, this little indie is mostly tongue-in-cheek situational comedy featuring Rogers and Sheedy with little emphasis on romance. A sort of road trip flick with many fun and some poignant moments keeps moving, stays fresh, and is a worthwhile watch for indie lovers.\"\r\n1\t\"This is a pretty OK film... yes some parts are lame and exceptionally convenient, and the movie doesn't really justify the large star cast (AB, SD, Tanuja). However, the actor that really impressed me here was Kay Kay Menon (not to be confused with the singer KK). In the scene where he first meets Amitabh's character, I thought that a man who can just look at AB, keep staring and not say a word, and still look strong, is definitely a good actor. In fact, he has proved himself worthy again in Sarkar, alongside AB for a second time. This guy should get more roles, he's brilliant.<br /><br />If you've read any of the other reviews here on IMDb, you already know the plot, and I do agree that Akshaye Khanna's entry into Pakistan was a little too easy. And the little love angle he shared with \"\"what's-her-face\"\" was completely unnecessary. But he is a fairly good actor (as seen in DCH), Sunjay Dutt is cool to watch, always. and AB... what can I say. I don't know if I'm his biggest fan in the world, but I know I can definitely compete for the spot.<br /><br />An interesting watch, considering it's Bollywood, although a bit inspired by Hollywood oldies like \"\"the Great Escape\"\" and \"\"Bridge on the River Kwai\"\".\"\r\n1\tI first watched the Walking Tall movies when I was about 8 years old and I thought both Joe Don Baker and Bo Svenson did a great job, they must have anyway because since watching the movies, I have tried to learn as much about the real Sheriff Buford Pusser as I can. All 3 parts of the movie gave me chills and Buford Pusser was a true hero, I only wish he were alive today and that there were more people like him. I would love to thank him for getting rid of all the crime and being so brave. I am very sorry that his family had to go through such horror and pain. My heart goes out to them. So from a 30 year old fan of Sheriff Pusser and of the 3-part Walking Tall movies and the actors that portrayed him, please do not be negative about these movies and actors, they were only trying to let us know what a wonderful man the real Buford Pusser was and what a great family he had. And to all the young people who may have not heard much about Buford, I suggest you watch the Walking Tall movies and learn more about him.\r\n1\t\"For the attention of Chuck Davis and Emefy: I saw PHANTOM LADY many years ago, when I was not yet a jazz buff. There is an exhibition going until end of June in Paris's brand new MUSEE DU QUAI BRANLY, named LE SIECLE DU JAZZ, not to be missed, with as a special entertainment NINE excerpts from jazz movies, including PHANTOM LADY's famous drums sequence. I've seen Gene Krupa - and Elisha Cook Jr - in almost all their film appearances, and I can confirm the following: 1.Elisha Cook Jr was DUBBED in the movie. That was some progress, since in most of his other appearances he was KILLED (mainly in Howard Hawks's THE BIG SLEEP). 2. Krupa probably dubbed Cook in PL. I could recognize his style, since he had already graduated from the tom-tom used (and abused) at the beginning of his career - namely in 1937's Hollywood HOTEL's SING, SING, SING sequence - and eventually got everything that was possible from what we call in French \"\"la caisse claire\"\". 3. The sequence from PL, at least as shown in the Museum,is not censored.harry carasso, Paris, France\"\r\n1\tThis is a complex documentary that shows many things about early Gay life. To put it in perspective it was when Gay was the word used for the homo-sexual revolution, and not just Gay as a descriptor. Or is it still used that way today? I believe most of the film comes from circa 1968 to 1989. It was released in 1993, so it's been around.<br /><br />I was touched by the documentaries capturing of one man's love for another over a 20 some odd year period. A love expressed in ways that only true love can be. There are many scenes of incredible empathy and pain, along with scenes of joy and pleasure. There are scenes of life as a homo-sexual and life as a gay. The film itself was a work of love, and I believe it to be a diamond.<br /><br />At the very least one will get out of this film an understanding of the devastating impact of AIDS. As I write this, I am thinking how much earlier this film seems to me to have been set. The advances in medical, political, and social sciences and culture that have taken place since this film was set (some 15 years ago) are amazing. However, obviously, in the case of the disease of AIDS itself, we are not done yet. Heck I guess we aren't done on all fronts.<br /><br />Anyway, it's just a pretty darn good documentary. I'd encourage anyone that feels that they don't quite understand gay life, gay issues, or the devastation of AIDS to watch this film.\r\n0\tAs others have noted, this movie is criminally inaccurate in its portrayal of the artist's life and I for one was very annoyed and offended... by its transformation of her rape into a tragic love affair, by the implication that her rapist was responsible for 'awakening her talent,' by its complete disregard for her work, by the way it turned her into a sex object, on and on, you get the idea. Also, I find it disturbing that people who aren't familiar with Gentileschi will see this film and walk away with that kind of impression of her.\r\n0\tAny person with fairly good knowledge of German cinema will surely tell that numerous films about a young girl having troubles with her mother as well as her boy friend have been made in the past.If such a film is shown to people again,it would surely click provided if it has something new,fresh and captivating for today's challenging audiences. This is also true for German film maker Sylke Enders as her film's principal protagonist Kroko has been mistreated by everybody around her including her mother and boyfriend.She is bold enough to face any punishment as she has tried her hand at all kinds of criminal activities including shoplifting.Kroko was originally shot on DV to be blown afterwards to 35 mm format.Its technical virtuosity does not hamper our joys when we learn that Kroko would like to become a policeman as she feels that she is averse to the idea of becoming a run of the mill hairdresser.If someone were to state a positive aspect of Sylke Enders' film,it may well be Kroko's involvement with handicapped people as a result of a punishment.It is with Kroko that we learn that punks are human too with their unique joys and sorrows.\r\n1\t\"I think part of the reason this movie was made...and is aimed at us gamers who actually play all the Nancy Drew PC games. There's been a lot of movies lately based on video games, and I think this in one of them.<br /><br />So this movie does not follow any book. But it does follow parts of the games. I buy and play every Nancy Drew games as soon as it comes out. And the games are from HerInteractive and are for \"\"girls who aren't afraid of a mouse!\"\" And some of these games actually won Parents' Choice Gold Awards. They are not only fun but you can actually learn a thing or two while playing.<br /><br />I took two of my step children with me to go see it and they loved it! The 10 yr. old had started playing her first Nancy Drew game a day before I took her to see the movie, and she was having so much fun playing the game I thought she would enjoy the movie as well. And I was right...she not only loved this movie but couldn't wait to get home to finish her first game and start another one.<br /><br />My other step daughter is only 7 and she also loved the movie but she is still a little to young too play the games yet, but she enjoys watching her sister play at times just to see what's going on.<br /><br />The games are based for children 10 yrs and older. All the games usually get pretty descent reviews and are classified as adventure games. For more information on the games just check out HerInterative Nancy Drew games. So personally I thought the movie was pretty good and I will buy it when it comes out on DVD.\"\r\n0\tI picked up Time Changer because it looked like a nice low-budget scifi time travel movie and I was in the mood for something like that. The description said it had something to do with some biblical stuff and time travel but I didn't expect a fundamentalist Christian film!<br /><br />The movie had decent special effects and an interesting premise that could have gone places and been far more interesting than it ended up being. Our hero, who is a bible professor from the 1890s, eventually travels forward to the 2000s and finds that modern life is filled with the influences of evil - Jesus is nowhere to be found. This wonderful technological feat is accomplished with the assistance of a fellow bible teacher who somehow managed to invent a functional HG-Wells-style time machine. The movie starts to lose some credibility at this point, which is unfortunate because this happens very early in the film. Earlier (or perhaps immediately later, can't remember for certain), our hero professor was seen teaching what appeared to be a science class where he claimed that scientific findings could only be considered validated if it could be matched with what the bible says. What should be obvious to anyone is that this is clearly not what the scientific method is about, however it is presented such that the filmmakers appear to prefer the point of view that science is useful only if it supports their claims and otherwise is not useful.<br /><br />In any case, that belief is perfectly valid and sensible in the context of the character at the time. So, if we accept that as the fact of life for these bible professors, then obviously the professor who went and invented the time machine isn't a very strong believer as I don't think there's any evidence (and none was offered) for the physics of time travel in the bible. So immediately there's a problem with mixed messages and credibility there, but never mind...<br /><br />After the professor is convinced to take the leap into the future, the shock of modern technology was handled quite well in most cases. It was also fun to not have it pinned down to an exact year (as the character is reading the date off a newspaper to himself, a car honks a horn and it scares him into not finishing the date: it's just two thousand and... *honk*). Some of the shock went on a little too long, though. For instance, the car was one of the first things he encountered when he arrived and around two days later he's invited to a church movie night and takes a ride in a van. He sticks his head out the window like a dog might, is scared by the headlights and the starting engine, etc. That seemed a bit off since he'd been there a few days by this point and the city appeared to be quite busy with traffic. In any case, that's easy to ignore. The rest of the tech shock was well done - especially his first encounter with the TV which was delayed because he didn't even realize what it was until he saw a kid watching one and using a remote.<br /><br />Unfortunately, our hero predictably starts to preach to virtually everyone he meets as if he's an authority on all life and religion just because he's from the past and is an elder. Eventually he gets himself a brief moment in the spotlight at the church he had been visiting where he proceeds to explain his concept of Christianity to them in a long monologue that was supposed to be moving and insightful, but mostly was just more of the same. A couple of husbands in the church begin to get a funny feeling about this guy (go figure) and investigate his name. They eventually conclude that he either is a time traveler or is impersonating this long dead bible professor and decide to find out which it is. The movie frames these guys as non-believer bad guys for being skeptical.<br /><br />Just before the professor is to head back to his own time, he is confronted by those two men. In an effort to avoid being arrested or hauled away, he eventually breaks into an almost insane-like rant about how Jesus is coming soon and that he's a prophet so they should listen to him. Just in time, he's whisked away and one of the husbands wonders if perhaps this is the rapture he'd heard so much about.<br /><br />The irony is that this essentially means the professor became a self-proclaimed (and most likely false) prophet claiming to know that the rapture was near and he was sent by God when truthfully he was sent by his fellow bible professor and did not have any God-given knowledge (that was stated or even hinted at).<br /><br />As I understand it, Revelation claims that the time of the end is only for God to know and at the end of the film we see the inventor professor trying (and failing) to send a bible into the future. First 2080, then 2070, etc. as the scene fades out. Clearly he's trying to determine the exact date of the end times - which he shouldn't be able to know! Essentially, the entire premise of the movie cancels itself out because by being so insistent on their religious beliefs and how certain things are for God to know only, it means there couldn't ever BE a time machine in the first place because then mankind could find out something that only God should know! The entire movie's premise collapses and makes the whole thing basically worthless as it undermines it's own credibility in the end.\r\n0\t\"If you read my review of SyFy's \"\"Dinoshark\"\", you know that I can appreciate the low-budget schlock that these made-for-television movies can provide. They're stupid...they're silly...but they're still pretty fun in a \"\"so bad, it's good\"\" kind of way. So, still smacking with guilt for liking (and recommending) the undeniably hokey \"\"Dinoshark\"\", I sat down to watch \"\"Hammerhead: Shark Frenzy\"\", a SyFy Original Movie about a half-man, half-hammerhead monster terrorizing people on an island. With the SyFy Channel's sure-fire recipe for creating B-movie creature features and a cast that includes William Forsythe and Hunter Tylo, how could it possibly go wrong? Well, to my surprise, it actually misses the mark...not by much, but enough to make me not recommend it. Why? Well, first of all, its titular monster, the dreaded hammerhead-human hybrid, takes a backseat to a bunch of faux-military thugs who really become the movie's primary villain. Though the hammerhead does rack up the body count, he (or it or whatever you call the thing) only arrives just before someone is going to be munched upon and leaves directly after. The rest of the movie is filler, pitting our heroes against the aforementioned soldiers. That, to me, is just not as compelling as watching a walking hammerhead eat people! <br /><br />Please Read The Full Review On My Blog: www.horrormoviejournal.blogspot.com\"\r\n1\tthis movie is a masterpiece a story of a young woman during the war , and it really happen , not exactly as the movie , but it is a great story , i was impress by this film ,the acting and the story where great i like this film because it is a true story it's Giff me a feeling that i was there and i feel sorry for the ca-rector that Maruschka Detmers is playing because who wants to end here life that way. i recommend that everybody have to see this film , special the young ones and ma by the learn something from this film. This film you can compare whit the movie soldier from orange or any real story that happened in the WW2.\r\n1\t\"I'd just like to say that i've seen this film twice now and i love it! The acting is great and even though it is a similar plot to \"\"Raise Your Voice\"\" I think that the plot never gets boring for people who like that kind of thing. It has some great lessons in it and shows us that we can do anything if we try. An incredible film. I am sure that this is one i will be watching for a long time to come. Even though Britney Spears write the book it is quite a realistic plot, maybe not about the falling in love part, but the part about being different and struggling but coming out best in the end is very true to real life. The only minor criticism is why is the main girl in these films always beautiful? Do you really think that Holly would have met the perfect guy of her dreams if she was ugly or average? I doubt it..\"\r\n0\tI liked Boyle's performance, but that's about the only positive thing I can say. Everything was overdone to the point of absurdity. Most of the actors spoke like you would expect your 9-year-old nephew to speak if he were pretending to be a jaded, stone-hearted cop, or an ultra-evil villain. The raspy voice-overs seemed amateurish to me. I could go buy a cheap synthesizer and crank out better opening music. And what's with the whole 1984ish police torture stuff? It was totally superfluous and had nothing to do with the actual events of the story. Cox added a lot of things, in fact, that he apparently thought would be really cool, but had nothing to do with the story. That's a big disappointment because one of the things that makes Borges' stories so good is his minimalism -- they are tightly bound, with no superfluous details. This movie is just the opposite. I stopped watching after the scene where Lonnrot is questioning the guy from the Yidische Zaitung, or thereabouts. I wasted $4 renting this, but at least I can get some satisfaction from writing this review and hopefully saving others from making the same mistake.\r\n0\tIn my Lit. class we've just finished the book, Hatchet, and this movie is nothing like the book. (1) Brian never ate worms in the book. (2) He didn't know the pilot's name. (3) His mom was cheating on his father in a station wagon not in the woods where anyone could see. (4) The man the mother is cheating with doesn't have black hair, he has blonde. <br /><br />Now for the unrealistic parts of the movie: (1) A thirteen year old can't punch his fist through a window in one punch. <br /><br />And for the acting, the kid who played Brian was a horrible actor. <br /><br />However, I do believe that the scenery was impressive, though I highly doubt the director even read the book.<br /><br />This movie is good if you have not read the book Hatchet, by Gary Paulsen, but if you have, then begin a complaint letter to the director.\r\n0\tThis was a better than average movie I thought, for it being on cable. I had expected something along the lines of cheesy melodrama and bad special effects seen in such classics as Christmas Rush or First Daughter/Target/Shot, etc.<br /><br />The cast was well chosen...I especially liked Ron Livingston as the hard pressed SWAT Commander. It's good to see him revisiting the same material he had so much fortune with in Band of Brothers. The producers and designers had done their homework because all the scenes and shots looked like they did on that day back in 1997.<br /><br />So, if you get a chance to see this film, and I am sure you will since FX reruns everything 50 times...take 2 hours and enjoy it.\r\n0\tMajor Payne was really not very good at all. Despite being funny here and there, the story was ridiculous and the acting was poor. Major Payne's voice and temperament were especially annoying. The idea was ridiculous and the things that the boys had to do in that film were even more ridiculous. I would not recommend this film to anyone.\r\n0\t\"When I read the summary of the movie, something like what happens when a man gets powers of a God, and how he later learns that having supernatural powers requires giant responsibility and strength, I though that was clever and original concept. Casting was promising too, Carrey, Freeman, Aniston... How can movie with a good idea and good actors, not to mention costs of filming, can be bad? It can. Idea is good, but script and story itself is terrible. Bruce Nolan is, let's be honest, a pretty mediocre journalist, with not exactly great stories (like a story of a giant cookie, what a faux pas, and the Niagara report is complete fiasco!), he's a man with a job he completely DESERVES (he's not a good journalist, he's a comedian), considering his potentials, with a nice home, sugar sweet girlfriend, and OH HORROR!!!! Dog who is not house trained!!! Yes, as soon as Bruce, at the beginning of the movie starts addressing GOd in a \"\"God, why do you hate me!\"\" manner, average viewer must think: \"\"Why, what's wrong with your life, Bruce?\"\". Bruce is not, and definitely NOT the man with real problems in life. Most the troubles that happen to him are minor and not really worth of all that fuss he makes, and some of them are really only the result of his stupidity. Most people have really big problems, worth of attention, most people are more worth of attention that Bruce, who doesn't seem too human after all, doesn't look even realistic, too goofy and neurotic, but God still addresses to him. Why? Though Morgan Freeman looks nice as a God, I can't help but to ask what is he doing in this particularly bad movie. And what does Bruce do when God gives him his powers? God in this movie could as easily give his powers to a 5 year old kid and there hardly would be any difference. No, wait, a smart kid would probably use his God powers better than Bruce. What does Bruce do? Pulls the moon closer to earth to create romantic atmosphere, parts the red soup, lifts up a pretty woman's dress on the street, answers prayers via e-mail and make all of them come true!!!! No more, Bruce, please! What Bruce did could actually end the world, but in the movie, that doesn't happen, because this is \"\"nice, family, little movie\"\" and doesn't make any sense at all!!! Not a hint of sarcasm, of real humor, of wittiness, of some dirty humor at least!!! Nothing. Just Carrey playing silly, which is starting to look pathetic on middle aged actor. Aniston here is understated. She plays pale, undeveloped character of Bruce's girlfriend Grace, and stays completely forgettable in this movie. Nobody in the right mind would believe that this two have any chemistry at all between them. When Grace says prayer for Bruce it sounds not only lame and pathetic, but completely false. These two are not meant to be together. I would give three stars, but I doubt movie deserves a one. Bad script, lame dialogs, lack of real humor, wittiness and any sophistication, as well as undeveloped characters and understated Freeman's and Aniston's roles, total lack of boldness and sarcasm, it all makes movie hardly worth ***. But OK, there were few funny moments, and Freeman is always nice to see in any movie so, lets leave three stars.\"\r\n0\tI'm not a fan of the Left Behind book series - the books are written at a 6th-grade reading level with a lack of research and understanding of science, technology, and politics. While the books do manage to remain faithful to scripture, their methods of fulfilling prophecy are often ridiculous (an example is their explanation for the Russian/Arab invasion of Israel). Also, the books have an unmistakable preachy tone that will turn off unbelievers rather than bring them to the gospel. Still, I found myself reading these books because of my interest in the events of Revelation. For a similar reason, I watched this film adaptation. I am sad to say that it is a rather mediocre film bordering on poor. The acting is actually rather decent for the most part with occasional bits of poor acting and over-acting. The script is rather bad, though it is hardly unexpected when starting with the novel as a basis. The characters are poorly drawn and underdeveloped. Events feel scattered and disconnected. The dialogue sometimes sounds rushed. At least the book managed to flesh out its hokey conspiracy theory. Here, the viewer is left with an incoherent mess that only makes much sense if one has read the book. The pacing of the film is also very poorly executed with the opening and conclusion seeming extremely rushed, and the middle dragging to an excruciatingly slow trudge that makes it feel padded. The music is schizophrenic. At times, it successfully underscores the mood and sounds fitting for a motion picture. At other moments, it reminds me of sitcom and mini-series music. And still other bits remind me of a poppy MTV soundtrack that just doesn't belong in the film. I can give the film points for the scene of panic on board the plane, but that's it. The other scenes involving the disasters after the Rapture are far from compelling. The film also suffers from the book's preachiness although its message isn't quite as in your face. In all, I found the movie just as disappointing as the series. This is not the film to rally Christians around it. I hope that this film does NOT get any attention at the theaters next year. It would be more unnecessary bad publicity for Christianity. For an example of a compelling, intelligent, well-researched series based on Revelation that presents a realistic and Christian world view without offending the secular reader (who after all should be whom a Christian is trying to reach) read the Christ Clone trilogy by James BeauSeigneur. It's a great read and is a much better choice for unbelievers or believers who appreciate quality.\r\n1\tCould not understand why Jeremy Irons felt it necessary to exhibit a most disconcerting accent, spoken through clenched teeth,and from the back of his throat. In fact it rather spoiled the film for me, and distracted from what was probably a fine performance by him (very irritating). No other actor or actress seemed to have such a pronounced accent and whilst I have always rated Jeremy Irons as a fine actor, I would not class this film as being one of his best. The film however has whetted my appetite, as have some of the other comments made re this film, which I have found very interesting,and intend to now read the book.\r\n0\tWe should have been suspicious to discover that with only two minutes to lights out we were the only ones there. Only five others joined before the movie began.<br /><br />There is nothing at all to redeem this movie. The acting is awful (especially Ms Hurley). The script is banal. The effects we've seen a million times. The film direction the worst that we've seen. Meandering and disjointed. No-one laughed including the kids.<br /><br />We left after 25 minutes. It would have been sooner if my wife hadn't gone for a hot-dog!!!<br /><br />Do not waste your money on this film. If there's nothing else to watch at your cinema then buy some drinks, popcorn and hot-dogs and do some people watching. You'll have a much more enjoyable time!!!<br /><br />\r\n1\tTwo sailors are on leave--ladies man Joseph Brady (Gene Kelly) and shy innocent Clarence Doolittle (Frank Sinatra). They meet beautiful Susan Abbott (Kathryn Grayson) and both fall in love with her. There's more but you've probably guessed it.<br /><br />The story (even for a 1940s musical) is ridiculous and everything is so nice and wholesome--gets annoying pretty quick. Also this movie is far too long. It's 140 minutes and that's way too much for such a silly story. There are also some boring numbers by Jose Iturbi and his orchestra. Still this is worth catching.<br /><br />When Kelly is dancing or Sinatra or Grayson are singing this becomes magical. None of the songs are particularly memorable but Sinatra had such a beautiful voice you won't care. It's shot in rich Technicolor with all the gloss MGM had. The acting is OK--Kelly is fine (although seeing him as a ladies man is pushing it) and Sinatra is just great (although seeing HIM as a shy guy was pushing it too!). Grayson is given nothing to do but she's incredibly beautiful to look at. Some shots of her literally took my breath away! There are plenty of highlights here: Sinatra and Kelly's big dancing and singing number; Sinatra singing anything; Grayson's two songs and the justly famous animated sequence in which Kelly dances with Jerry--an animated mouse! Tom does a funny cameo too. Also there's little Dean Stockwell who steals every scene he's in.<br /><br />So it's too long and the plot just doesn't hold up but it's still worth catching. This was a huge hit in its day.\r\n1\tAnd a rather Unexpected plot line too-for the era: there is Plague in the City of New Orleans-and only Richard Widmark can stop it! Elia Kazan's trademark subjects: waterfronts, working men, crowds, fugitives, blue collar folk, violence on a backstreet-are all showcased here.<br /><br />Jack Palance is quite effective as the ice-cold mobster out for a big score, Zero Mostel as Dom Delouise somewhat miscast but certainly watchable as his go-fer. I enjoyed Barbara Bel Geddes as the stalwart, cool wife-I thought she and Widmark were a believable couple.<br /><br />He himself always reminds me somewhat of Sinatra-in the face and in the intense quiet manner-and that is meant as a compliment if anything. I'd never even heard of this movie, and yes, you have to admire Widmark's performance. I also enjoyed Paul Douglas-he seemed to play this role many times, they make an unlikely but effective team.<br /><br />The plague itself is a McGuffin-and you gotta know it's not exactly done the way it would have been in Real Life-rather small-scale at the least no?-but I found it carried the plot along nicely.<br /><br />Check this out. It's good. *** outta ****\r\n0\tI may have seen worse films than this, but I if I have, I don't remember. Or possibly blocked them out. Who knows,if I was to undergo hypnotherapy, I may remember them, along, maybe, with been abducted by aliens as a child, or other traumas. If so, I would happily exchange those memories for the ones I have of watching this film.<br /><br />I should give the film some credit: It did produce an emotional response. I actually started to become angry at scenes that spoofed other films and TV programs, that this travesty was dirtying them by association. I am terrified that I may be unable to watch films like Dr Strangelove again without this film flitting across my minds eye.\r\n1\tScream was Wes Craven's last decent thriller. Since then there has been nothing but an unbearable streak of Hollywood trash barely good enough for a blockbuster night, including the disappointment of the Scream sequels. Perhaps the genius and the craftsmanship devoted to the movie drained all the energy and creativity out of him, so that when it came time for supper, he had nothing to serve us but his own doo doo. Finally, after who knows how many bad movies later, he gives us a delicious, ruthless, gripping, chilling suspense thriller with Red Eye.<br /><br />Rachel McAdams once again delivers an enjoyable performance as she plays a hotel manager who has the unfortunate connection with an important political figure and regular at her hotel. Then she meets Jackson Ripner (Cillian Murphy, Batman Beyond) at the airport, who she gets to know a little better after a delayed flight and a bay breeze. What she doesn't know is he already knows her. And he also knows her father, who she will never see again if she fails to cooperate and meet Jackson's demands- to use her connections to set up her hotel regular for assassination.<br /><br />You're probably thinking this is nothing but your everyday thriller complete with predictability and chase scenes. Although this is a good old fashioned thriller, that's the beauty of it. No special effects. No cheap make up. Just classic suspense. You feel the desperation and regret with every decision McAdams is forced to make and you actually care for her as you cheer her on every move she makes to find an escape from her claustrophobic position.<br /><br />As always she delivers an entertaining and convincing performance. It's either her sweet face or her uncanny ability to sincerely cry, but you always seem to sympathize with her if her role demands it. Cillian Murphy on the other hand is naturally creepy looking, so even if the trailer didn't reveal it, his ultimate transition from charming stranger to merciless jackass isn't so surprising. Perhaps it would have been more trippy to see a nice guy persona like Toby Maguire transforming into evil relentless madman. Nevertheless, Cillian Murphy, after his true identity is established, played the role so solidly you'd really want him to die, or at least get his ass kicked.<br /><br />Don't overlook this feature. There are plenty of chalkboard screeching moments and heart jumpers that will keep your eyes on the screen instead of your watch like you would at Craven's recent pictures. If not for the you, do it for all the times you'll see your girlfriend, or boyfriend, or someone with popcorn jump and cling on to you. Wes finally gets it right. Aside from his trademark mastery in suspense, Red Eye is not without its humor as McAdams' replacement Cynthia at the front desk fumbles to keep the hotel in order. It was a relief that Red Eye wasn't a disappointment. Instead you'll get the pleasure of seeing McAdams deliver another incredibly talented performance, Murphy look creepier by the minute, and Craven craft a classic traditional thriller. A flight that was delayed and would have been the beginning of Craven's renaissance had it arrived right after Scream.\r\n1\tNot many movies were made about the Lighter-Than-Air (LTA) aspect of aviation, but this is one of them and it's damn good. Just a fun film to watch.<br /><br />Most of the movie takes place at the Navy blimp operations at NAS Lakehurst (with NAS Tustin playing the role). Wallace Beery plays a likable but Munchausen-like Senior Chief Ned Trumpet, an enlisted pilot, whose tall tales have gotten so frequent nobody really believes him. Half the fun is near the end of the movie when events start proving that most of his more outlandish tales are actually true.<br /><br />Set during WWII, the main plot centers around bachelor Trumpet wooing a local widow only to end up having a father-son relationship with the widow's crippled son, Jess. Told he would never walk without crutches by doctors, Chief Trumpet pulls some strings and a Navy flight surgeon helps in restoring the lad's crippled leg. Jess goes on to join the Navy to become a flight officer, flying blimps back at Lakehurst and facing a whole new set of challenges.<br /><br />A very well-done movie, albeit not without some corny Hollywood dialogue slipping past the technical advisers, and Beery's apparent inability to march in step. Otherwise this movie gets good grades for technical accuracy, and gives a rare look into the Navy's LTA operations. The Cash Register Scene, an exchange between Trumpet and Jess's future love interest Cathy, is an absolute hoot.\r\n0\tAnother FRIDAY THE 13TH ripoff, even featuring some of its music! A group of young adults get together for a small high school reunion and start getting slaughtered a la Jason Voorhees. Could it be that nerd they used to torment in school?<br /><br />Routine slash-fest is fun for fans of the genre, and contains the usual T&A quota for films if its ilk. The ending is a bit more imaginative than your standard slasher.<br /><br />MPAA: Rated for violence/gore, language, sexuality, nudity, and some drug content.\r\n1\t\"Having the opportunity to watch some of the filming in the Slavic Village-Broadway area I couldn't wait to see it's final copy.<br /><br />Viewing this film at the Cleveland Premier last Friday,I haven't laughed out loud at a comedy in a long time! It is great slapstick. The Russo Brothers did a fine job directing. The entire cast performs their best comedic acting... No slow or dry segments... George Clooney is one of my favorite actors and he's great as the crippled safe breaker in this flick. I was most imprest by William H. Macy as crook \"\"Riley\"\" and Michael Jeter's as \"\"Toto\"\" they keep you in \"\"stitches\"\". I believe they have the funniest roles in the entire movie.\"\r\n1\tI saw this gem of a film at Cannes where it was part of the directors fortnight.<br /><br />Welcome to Collinwood is nothing short of superb. Great fun throughout, with all members of a strong cast acting their socks off. It's a sometimes laugh out loud comedy about a petty crook (Cosimo, played by Luis Guzman) who gets caught trying to steal a car and sent to prison. While in prison he meets a `lifer' who tells him of `the ultimate bellini'  which to you and me  is a sure-fire get rich quick scheme. It turns out that there is a way through from a deserted building into the towns jewellers shop  which could net millions. Sounds simple?  well throw in all kinds of wacky characters and incidents along the way and you have got the ingredients for a one wild ride!!  word passes from one low life loser to the next and soon a team of them are assembled to try and cash in on Cosimos `bellini' lead by failed boxer Pero (Superbly played by Sam Rockwell  surely a star in the making) and reluctant crook Riley (William H. Macy) who is forced to bring his baby along with him as his wife was locked up for fraud!!.<br /><br />Based on the Italian film I Soliti ignoti (Big Deal on Madonna street) which also inspired a similar film to `Collinwood'  `Palookaville'. This knocks spots of the latter effort and although its written and directed by the Russo brothers it definitely has shades of the Coen Brothers about it. Produced by Steven Soderbergh and George Clooney, who has a small yet hilarious part as a crippled safe breaker.\r\n1\t\"\"\"Fraidy Cat\"\", the 4th of these cartoons, is a good one. At least I like it, so I'm surprised that this is getting mixed reviews.<br /><br />This one is more of a macabre story than a funny one, although it has its moments of comedy. The atmosphere is dark and spooky. Suspense is another strong element here. As for humor, it's mostly dark humor.<br /><br />In this short, Tom listens to a creepy radio show at night and is absolutely terrified because it is about ghosts, something he believes. While Tom is scared to death, Jerry is watching everything and can't help but laugh the whole time. In fact, Jerry quickly finds a way to torture him more and more. With the help of a white shirt and a vacuum cleaner he creates a big \"\"ghost\"\".<br /><br />Tom lives the scariest experience of his whole life. Although Jerry scares Tom without a good reason, the way the story is made ends up being funny. Plus, once again, there is no violence here because this is one of Tom & Jerry's oldest cartoons. However, I don't get that joke of Tom's 9 lives nearly sucked into the vacuum cleaner.<br /><br />When Tom finally finds out that it was all a Jerry's scheme and that Jerry made a fool out of him, Jerry is «caught with the hand in the cookie jar» (he deserves to be discovered). Yet, Tom shows an incredible patience before reacting. He angrily looks at Jerry for about a minute. The funny thing is that Jerry invites Tom to laugh with him and takes about half a minute to realize that Tom is looking at him with a very serious face. Jerry tries to be funny, but Tom doesn't laugh.<br /><br />Overall, this is a different, peculiar and remarkable Tom & Jerry experience.\"\r\n0\tYes, The Southern Star features a pretty forgettable title tune sung by that heavy set crooner Matt Monro. It pretty much establishes the tone for this bloated and rather dull feature, stunningly miscast with George Segal and Ursula Andress as an adventurous couple in search of a large diamond. Add in Harry Andrews (with a strange accent, no less) chasing an ostrich, tons of stock footage of wildlife, and poorly composed and dull photography by Raoul Coutard, and you end up with a thoroughly unexciting romp through the jungles of Senegal.\r\n1\tIt sounds a bit awkward to call a film about war and holocaust shocking since many of us will know only too well of the horrors that war and violence brings. By using the adjective 'shocking' I do not intend to imply that I am surprised about the things told about in this film or that I was formerly unaware of them, it is just that I am very much impressed by the way in which this film shows how crazy and incomprehensibly horrific it is to kill each other off, either with or without a 'reason'.<br /><br />The first part of the film focuses on Hanna's successful participation in the Hungarian resistance. Maruschka Detmers would never have won an Oscar for this performance, due to inconsistent directing, but still her acting is solid enough and she has enormous charisma. She is cast very well as Hanna and immediately has our sympathy. Her very beautiful looks help, of course, but that has nothing to do with her being simply a good actress, playing a good part.<br /><br />Certain inconsistencies keep occurring in Hanna's War. I sometimes get the idea director Menahem Golan (often despised for The Gianni Versace Murder) was in a rush and should actually have allowed a few more takes per scene. On the other hand, I am very thankful he made this impressive and thought-provoking film and as I am very positive about it, I think he did a good job.<br /><br />The second half of the film is the most interesting and tragic one. It focuses on Hanna's suffering (beware of Donald Pleasence's scary portrayal of the cruel and sardonic captain Rosza) and intensely shows the injustice and horror that comes with hate and violence and war. I receive Hanna's War, especially the second half, as a strong anti-war film and for that alone Golan deserves credit. It is also this second half in which Maruschka Detmer's talent comes out, creating a character which goes into film history as one of the most speaking, strong and tragic ever portrayed. It is also great to see Ellen Burstyn, whose appearance and acting style always remind me of Romy Schneider, who -had she been alive and cast- would have made a similar effective contribution to Hanna's War.<br /><br />The tragic impact of the second half and the desperate tension which is sometimes replaced by hopeful prospects and good news lead to a number of final scenes which show something so unexpected, so moving and poetic in its tragedy that it hit me like a bomb and left me in tears. And when I realized once more it wasn't even fiction, it all actually happened, I found myself in even more tears. The image of Hanna portrayed by Maruschka Detmers will be in my mind forever.\r\n1\tI love this film. The noir imagery combined with Spillane's no nonsense character Mike Hammer works marvellously to create a mood and feel seldom found in low budget detective films of the early fifties. It may not be 'The Maltese Falcon' but this film makes it's own solid contribution to the genre. Spillane is often criticised for alleged misogyny etc, but his 'dames' are way above their male counterparts in terms of cunning and intelligence. Poor old Mike Hammer, as effectively played by Biff Elliott, is blinded by the beauty of the mysterious psychiatrist whom he meets when investigating the death of an army buddy. When the penny finally drops his face is a picture. Good to see that 50s censorship did not force the film makers to omit the famous last line. A bona fide low budget classic.\r\n0\tThis movie is more deceiving than ever, using a suspenseful looking actor like Walken to play in this piece of junk made it look like he had nothing better to do than play a boring role like this one! And the fact that the movie was supposed to be about some witch and you really don't see that until almost the end of the movie but meanwhile you have to sit and watch this boring film while it gets, or tries to get to the meaning of the point and you have to go through this whole trail of boring actors and actresses thinking the whole time of how you passed off another movie and decided on this one and how you have just waisted your money just makes the whole point of time useless sitting there. I'd rather watch cartoons for goodness sakes. Leave this one alone,please!\r\n1\tInteresting characters, lots of tension. As close to black and white without being black and white. I was turned off by how casually the supposedly sympathetic mainstream character, a quiet, near deaf secretary, was able to turn to crime to ruin colleagues, rough up people in her way and finally participate in a heist, and set up someone to be bumped off as a decoy to her own get-away. I'm a little put off by the trend for otherwise quality movies to portray criminals in a sympathetic way without addressing the injury they've done to others other than to portray their immediate opponents as jerks. In this film we never know who's money it really is they abscond with, or what happens to the innocent wife who the sympathetic deaf-secretary uses to set up the of the sleazy bar owner to take the fall for the missing loot. Too bad, the film could have been great.\r\n1\t\"Two years ago I watched \"\"The Matador\"\" in cinema and I loved everything about this movie. Obviously, I was totally under impression of Pierce Brosan's magnificent role. Yesterday, I caught this movie again on TV so I looked at it a bit deeper. Now, I can say with certain that this movie isn't that special but you just gotta' love it because of one man. <br /><br />Brosnan lifts its grade up in my opinion with amazing performance of Julian Noble, tired hit-man who has no friends. Soon Julian meets Danny Wright (Greg Kinnear) in Mexico City, man who's got bad luck: his son died in accident, his job isn't going that well and he's not sure that he can keep his wife Bean (Hope Davis).<br /><br />I always liked movies like this; crime movie with big touch of humor. Mostly that humor comes from Brosnan as he tells jokes about dwarfs with big d.... or one of my favorite lines in this movie: \"\"I look like a Bangkok hooker on a Sunday morning, after the navy's left town.\"\" Brosnan says it with his charm while he's drinking his margarita as usually. I also like Greg 'typical American face' Kinnear in the role of loser that is very lively made because there are plenty of people like Danny Wright.<br /><br />So I recommend you to watch quite possibly the best role of Brosnan ever. He'll make you smile and admire him at the same time. Great Brosnan in not equally great movie.\"\r\n0\tThis is definitely not one of Lucio Fulci's better flicks by any stretch of the imagination. The plot is pretty bad, a millionaire is murdered and his spirt calls upon his daughter to find out who did it. But the biggest problem i have with this (besides knowing who killed him within 10 minutes of watching the movie) was wondering why anyone should even care? The father comes off as being a really big jerk to everyone he came across (including the daughter who he asks to help him) which made it quite hard for anyone to care who killed him. But no one really watches a Fulci flick for a good storyline, to do so would be like watching a porn for incredible script writing and acting. Typically his movies try to compensate for this by adding excessive scenes of gore but even that is lacking in this movie. If you're looking for a good Fulci flick, check out The Beyond.\r\n1\t\"Slaughter High is about a boy named Marty. He was harassed, and picked on in high school. A group of kids played several pranks on him, and these pranks were REALLY bad. The last prank ended tragically.<br /><br />cue to 5 years later. The gang of kids meet up again for a reunion. One of them set it up at the old high school. The school is now abandoned, and they have to break in. For some reason, the Janitor is still there, but he tells them to go ahead and have fun because they give him a beer.<br /><br />They start partying ,and looking at their old lockers, and they see something of Marty's. One girl feels sorry for Marty but another guy calms her down.<br /><br />Once the kills begin, it is great. Every kills is creative and gory. We see a figure in a jester mask, hunting them one by one throughout the school. It appears Marty is back to exact revenge. After the first person is killed, they find out they are locked in the school. They begin looking for a way out.<br /><br />Now, there are a number of illogical things in this movie. First of all, I don't know anyone who has a 5 year reunion. Second of all, after the first kid dies, a girl gets blood all over her. They all run away in a panic, yet she runs to the bathroom, and finds a bathtub. Hrr friend has just been killed, and she decides to take a bath!? More importantly, why is there a bathtub in a school bathroom. Anyways, the bathtub doesn't seem to really work....and she dies a horrible death this is an 80s movie. it is a horror slasher. WHO CARES if it has some illogical parts. I for one don't. This movie has really great deaths. The ending.... there is a twist. Having recently seen Haute Tension, I can compare the two. The only way they are similar is that there is a twist, which kind of left me disappointed.....THEN right after the twist, comes a great, if not the best kill, in the movie.<br /><br />After the last kill, the killer looks at the screen and also does something crazy, and it was the perfect way to end the movie. It has me going \"\"wow...\"\"\"\r\n1\tI have to say that the events of 9/11 didn't hit me until I saw this documentary. It took me a year to come to grips with the devastation. I was the one who was changing the station on the radio and channel on TV if there was any talk about the towers. I was sick of hearing about it. When this was aired on TV a year and a day later, I was bawling my eyes out. It was the first time I had cried since the attack. I highly recommend this documentary. I am watching it now on TV, 5 years later, and I am still crying over the tragedies. The fact that this contains one of the only video shots of the first plane hitting the tower is amazing. It was an accident, and look where it got them. These two brothers make me want to have been there to help.\r\n0\tCARRY ON MATRON was released in 1972 and it's becoming clear that the series has reached a natural end with the best entries like CLEO , UP THE KYBER and SCREAMING being from the mid to late 60s <br /><br />In itself MATRON is by no means bad it's just that we've seen it all before with a thin plot ( A bunch of spivs trying to break into a hospital to steal a supply of contraceptive pills which they plan to sell to third world countries ) surrounded by gags of a slightly amusing though unsophisticated nature . I think that's where the problem lies - The gags aren't all that amusing with the unsophisticated nature starting to show its age . Did we need another movie that uses a man dressed up as a woman in order to drive the plot ? Perhaps the worst criticism I can make is that I saw CARRY ON MATRON this afternoon , less that twelve hours ago and I have a problem in trying to remember a very funny line . That's a serious problem for a comedy\r\n1\tThis begins a wager between Edgar Allen Poe and a journalist...Poe bets that the man can not spend an entire night in a creepy castle. Well, of course he can, but will he come out unscathed? Hard to say with all these strange people that aren't supposed to be there wandering around, including the icy Barbara Steele. This is a fairly odd film in that the presentation is both in French and English, and switches back and forth a few times. Perhaps this is done because bits of dialog were lost? It's also rather dark and claustrophobic, being that one doesn't see much beyond a small circle of light that candles and such generate, plus there's a feel of dread and impending doom pretty much at all times. This version (on Synapse) is also uncensored and I wondered what might be censored in a film from 1964 until I saw the topless scene, I guess that might be it. Overall this is pretty good and in gloomy black and white. Barbara Steele definitely makes the movie too. 8 out of 10.\r\n0\tI like movies about morally corrupt characters, but this was too much. The acting wasn't great, but that wasn't the real problem. The issue was the sinking feeling I got in the pit of my stomach about 20 minutes into the film. These characters were hollow. They had almost no depth, and what little they did have was devoted to the cruelty they displayed to each other in the guise of friendship. Exploring the darker sides of a set of characters can be fascinating, but you have to give those characters actual personalities or they are just cardboard cutouts. These characters were cardboard and the picture they gave was just ugly.\r\n1\tSlaughter High starts like any other day at Doddsville County High School where little minx Carol Manning (Caroline Munro) has tricked resident nerd Marty Rantzen (Simon Scuddamore) into the girls locker rooms where she tells him to get undressed in the shower, while doing so Carol's gang of friends come in & give the now naked Marty a big surprise as they film him as they stick his head down the girls toilet in an April fool's day joke. The school's sports coach (Marc Smith) saves Marty & punishes the gang who rather harshly blame Marty, they decide to play another trick on him only this time things get out of hand & Marty is caught in an explosion & has nitric acid splashed over his face. Years later & the whole gang are invited to a class reunion at the now closed down school, they all arrive to discover they are the only ones there. They all venture inside where they quickly learn they aren't the only ones there as Marty is back & has revenge on his mind...<br /><br />Originally shot under the title April Fool's Day which they changed probably because of another slasher film named April Fool's Day (1986) made the same year this American English co-production is unusual in that it has three credited writers & directors, George Dugdale, Mark Ezra & Peter Litten (after never seeing a film with three credited director's I've now seen two in a week the other being the Jean-Claude Van Damme flick Kickboxer (1989)) & I have to say I really rather liked Slaughter High even though it seems to have a pretty bad reputation. One of the things I like about the script is that it is a pure unashamed slasher flick, it doesn't try to be anything else & it just accepts the genres rules, short comings & trappings & plays up to them. Basically it delivers what it promises, a homicidal killer, blood, boobs & babes. I thought the character's were alright, the story was OK even though it's just an excuse to get a load of teens inside an isolated location so some killer can bump them off one at a time & I actually liked the twist ending as well which is also something for which Slaughter High gets a lot of flak for. The first half starts off a little slow but the second half moves along at a rate of knots as there is one gory killing after another. Some of the situations & character reactions make little sense but the same can be said of just about any film ever made so who's complaining?<br /><br />Despite three credited director's Slaughter High turned out pretty good, I liked the look of the film a lot. The isolated rundown school made for a really atmospheric location & looked good, the makers throw in a good thunderstorm as well & there's some nice photography especially at the end where there are numerous impressive uninterrupted long lasting stedicam tracking shots which follow Carol through various corridors of the rundown school. While not particularly stylish it certainly looks nice enough & is professionally made. There is some good gore here including burnt bodies, people melted with acid, impalings, stomach explosions, axes in faces & death by lawnmower as well as someone who gets drowned in fecal matter down a drain! The special effects are also better than one would expect & I was both impressed & pleased with the higher than expected body count.<br /><br />Technically the film is better than I had expected & beats most low budget horror crap that gets released today, I would have thought it was relatively low budget itself though. Supposedly set in America this was very obviously shot in England. Harry Manfredini composes another score which sounds exactly like all of his other musical scores & is basically the same as the theme from Friday the 13th (1980) & it's sequels. Anyone living here in the UK will probably recognise Billy Hartman who played Frank as a regular in Emmerdale Farm (one of our nations top rated soap operas) in which he plays Terry Woods! While most horror fans will recognise the sexy Caroline Munro in a rare staring role. Legendary exploitation producer Dick Randall did the deed on Slaughter High & actually appears in the film as a porno movie producer... talk about typecasting! You can also see a poster for the misunderstood brilliance that was Pieces (1982) which he also produced behind him in his office.<br /><br />Slaughter High is a slasher film that I liked a lot, did you see that? I didn't say it was great I actually said I liked it on a personal level & I'm sure the predictable plot & lack of story will probably put many off so I can't recommend it but I can say I liked it, make of that what you want. Make sure you you watch the uncut version if you ever decide you want to check it out. If your not a fan of the slasher flick genre then Slaughter High won't change your mind but if your looking for a simple & effective slasher then you could do a lot worse than this.\r\n0\t\"\"\"Meatball Machine\"\" has got to be one of the most complex ridiculous, awful and over-exaggerated sci-fi horror films that I have ever came across. It is about good against evil and a coming-of-age tale, with the aim of to entertain with bloody, sleazy and humorous context. Because of that the violence isn't particularly gruesome and it doesn't make you squirm, but the gratuitous bloodletting and nudity does run freely. The performances by Issei Takahashi and Toru Tezuka is the worst i have seen, if that was not enough it is also directed by an unheard of director called Yudai Yamaguchi. This movie just have it all, it is bad to the bone!, A must see for every b-movie freak!!!... Simply: an enjoying and rare gem.\"\r\n0\t\"This infamous ending to Koen Wauters' career came to my attention through the 'Night of Bad Taste'. Judging by the comment index i wasn't the first and i am not to be the last person in Western Europe to learn that this musician (undoubtedly one of the best on our contemporary pop scene, even the Dutch agree on that) tried to be an actor. Whether he should have made the attempt or not cannot be judged. <br /><br />In 'Intensive Care' he's quite likable, but he seems to be uncomfortable with the flick in which he is participating. No one can blame him. It deserves its ranking in Verheyen's Hall of Fame by all means & standards. The story of the Murderous Maniac Who is Supposed To Have Died In An Accident But Is Alive And Wrathful has been told dozens of times before, and even without original twists a director can deliver a more than mediocre story through innovative settings and cinematography.<br /><br /> IC contents itself with a hospital wing and a couple of middle class houses. The pace is dull. The tension looses the last bit of its credibility to the musical score, for every appearance of the murderer is accompagnied by a tedious menacing melody, followed by orchestral outbursts during the murders, which or largely suggested and in any case as bloodless as a small budget can make them. The sex scene is gratuitous but not in the least appealing. The couple from Amsterdamned could have made it work, though. While dealing with the couple subject : the whole subplot between Wauters and the girl does not work. A more effective emotional connection could have been established on screen if they had just been fellow victims-to-be, who loosen their nerves halfway through physical intercourse. I will not even grant the other cast members the dignity of a mentioning, for they should all have been chopped up into tiny greasy pieces. As a matter of fact, most of them do. The ones i recall where obvious for the genre : a pretty nurse and two cops. <br /><br />Hence, in a slasher, the cavalry only comes in time to need rescue itself. The (anti-) hero has to take out the villain, mostly through clever thinking, for former red berets don't often get parts in these films; they might overcome the illusion of invincibility that surrounds the killer. Translated to the events, Wauters kills the doctor and saves the dame in distress. <br /><br />No people, i am not finished. This is not how the story goes. Wauters makes his heroic attempt but gets beaten up with a fury that comes close to \"\"A Clockwork Orange\"\", so it is up to the girl to pick up the driller killer act and pierce through the doctors brains. Though this method ensures the killer's death more than the usual rounds of 9mm bullets, the doctor survives in order to enable IC to reach the 80 min mark.<br /><br />I should have made my point by now. Intensive Care is a bad movie, which can only be enjoyed by Bad Taste lovers, who can verify Verheyen's catchy statements and make some up for themselves and that way try to sit through it. For example, the (unintended) parody value of the doctor's clown mask (Halloween) and the final confrontation in the park (the chase at the end of Friday the 13th).<br /><br />However, let me conclude by giving an overview by a few measly elements which give IC a little credit. George Kennedy is not one of them. All he has to do is endure a horrible monologue by a fellow doctor/French actor and look horrified when they let him go down in flames in order to tag his big name on a stand-in. He could have played his Naked Gun part again, to end up as beef, but with a longer screen time. The finale may be one of them. I had never seen a maniac being brought down by launching fireworks into his guts in order to crush him against a flexible fence. It is good for a laugh.<br /><br />Name one good truly point about Intensive Care ... Koen Wauters learned his lesson and devoted himself entirely to his musical career. It makes me wonder how many editions of the Paris-Dakar race he has to abort before coming to his senses.<br /><br />\"\r\n0\tUsing footage pillaged from Planet of Dinosaurs this shot on video (except for the stolen footage) concerns a bunch of people shot into space who land on a dinosaur planet that is...don't wait for it, is really earth. Its a five minute sketch stretched to 90 minutes. Slightly better than Chickboxer (another in the Bad Movie Police series)-having a nostalgic home movie feel coupled with good stolen effects, this movie is still an impossible slog to get through. I'm left to ponder the question are we becoming so uncreative that we're now pillaging old movies not only for plot but also for mismatched footage? Clearly low budget producers are getting so desperate they really will give us anything to take our money\r\n0\t\"Serious HOME ALONE/KARATE KID knock off with enough bad character stereotypes to have the writer sued and then shot. You could see blatant stunt man usage in almost every scene. Oh, and the acting sucks too. Although I must say that the line: \"\"Sorry, dude, I have to take a major dump big time\"\" made me laugh my ass off.\"\r\n0\t\"This movie was pretty absurd. There was a FEW funny parts. Its goes right in to the bin of movies in my memory where I think, \"\"Hmm.....that movie had a few funny parts, but overall, pretty ridiculous plot (or lack of).\"\"<br /><br />I thought it seemed like Ben was trying a little too hard to be a cooky funny guy. And I didn't understand how he was a self made multi-millionaire and still such an idiot. Anyways, I like Ben Affleck. He makes some crap, but hey, I can forgive him. I mean, I liked Jersey Girl, I didn't think Gigli was all his fault, I like him overall. I guess he's kinda like the kid you feel sorry for cuz he just can't seem to get it right.<br /><br />My advice would be to avoid this flick. It didn't really develop in to a workable plot and Catherine O'hara and Jimmy G. weren't used as well as they could have been. They deserved better. Overall, this movie is NOT Home Alone, it's NOT A Christmas Story, its NOT Christmas Vacation or any of the other classics. Forever Forgettable.\"\r\n1\t\"This episode is a bit confusing. Some people say that you have to start from the very beginning but I have to say I was a bit confused from the beginning!<br /><br />Clark gets a blow to the head and wakes up on the floor of Fairview Mental Institution and is made fun of for believing that he's a superhero. Clark is told that the life that he knew was all in his head. Delusional. He also find some things that are unusual: Martha's married to Lionel; Lex is bound to a wheelchair with his limbs cut off after his accident on the bridge; and Lana is devoted to Clark. But he finds one familiarity; someone else who's devoted to Clark: Chloe. He also finds that a mental patient is also from the known world of Smallville. And the doctor is an escapee from the Phantom Zone.<br /><br />This episode reminds me right back to a Buffy episode called \"\"Normal Again\"\" where Buffy begins to have vivid-daydreams about a mental asylum. The doctor tried to convince her that all that she knew was a figment of her imagination and that she was, in fact, crazy. Her parents were still married, they still lived in LA, her friends didn't exist, Angel was never her boyfriend and she didn't have a sister called Dawn. Demons and vampires also didn't exist. Both episodes are a bit sad because doctors aren't just telling the characters that it's all a figment of her imagination but it tells us what it really is: fiction, and it brings us back to reality. It's nice, though, to have a sense of reality every once in a while, but we watch these shows to escape from reality. It's again nice because the characters have to overcome new challenges.\"\r\n1\t\"\"\"Rich in Love\"\" is a slice-of-life film which takes the viewer into the goings on of a somewhat quirky Charleston, SC family. Highly romanticized, beautifully shot, well written and acted, \"\"RIL\"\" washes over you like a summer breeze as its plotless meandering breathes life into the characters such that at film's end you'll feel like an old friend of the family.<br /><br />A wonderfully crafted character-driven film from the director of \"\"Driving Miss Daisy\"\", \"\"RIL\"\" is a somewhat obscure little \"\"sleeper\"\" which will appeal most to mature audiences.\"\r\n0\t\"I remember when I first saw this movie, I was in sixth grade when it happened. Before I saw this, i had listened to the original Broadway recording of it, and I really loved it! But when I saw this, I was like, what the heck?! This movie is missing a lot of the songs from the musical for crying out loud! Who decided to do all of that?!<br /><br />I really am a very huge fan of Gene Kelly, but this movie is probably the worst of a musical that he ever did! The movie looked more like a Hollywood set than the beautiful Highlands of Scotland. And who the heck decided to cut all of Meg's songs out of the movie?! <br /><br />I am willing to bet that when they saw this movie, Lerner and Lowe were probably wondering: \"\"Who in the world decided to do this to our masterpiece?\"\" Well they had a right to say that if they did, they were probably mad at the fact that Hollywood turned their great musical into this rather blank movie.<br /><br />Song and acting wise Mr. Kelly, you passed the audition with flying colors, but you are in a movie that is missing a lot of the text.<br /><br />So in short, if you want a good movie based on a musical by Frederick Lowe and Alan Jay Lerner, this one isn't it! <br /><br />3/10\"\r\n0\tThis is easily one of the worst 5 movies I've ever seen. It's not scary or any of the other things suggested in the plot outline. This movie is agonizingly slow and I was bored for almost all 98 minutes. While the acting is mediocre at best, the biggest problem is the script, which is poorly written, slow and plodding with no real direction. Occasionally an eerie mood is set only to be broken by some useless line or event. I'm not surprised that the entire cast was sick and throwing up between shots, they did after all have to try and digest a terrible script. As a huge fan of good horror movies, I'm always irritated that something this bad gets made. Save yourself 98 minutes you'll never get back.\r\n1\tGiallo fans, seek out this rare film. It is well written, and full of all sorts of the usual low lifes that populate these films. I don't want to give anything away, so I wont even say anything about the plot. The whole movie creates a very bizarre atmosphere, and you don't know what to expect or who to suspect. Recommended! The only place I've seen to get this film in english is from European Trash Cinema, for $15.\r\n0\tI don't want to go too far into detail, because I can't really justify wasting much time on reviewing this film, but I had to give an alternate opinion to hopefully help people avoid the movie. The animation is crud and the story alternates between boring/pointless to extremely irritating. The humor was completely lost on the audience, and yes - Ghost in the Shell fans, this is NOT an action sci-fi or anything like that - its an attempt at slapstick comedy, and the humor just did not work after being translated. It was a total chore to watch this movie, and horrible way for me to kick off the film fest, especially considering how excited I was and how open I was for anything - I wasn't expecting a Ghost in the Shell sequel, but I was expecting something entertaining, and it simply didn't achieve this. Yaaawwnnn... Rent Kino's Journey instead.\r\n1\t\"In many ways DIRTY WORK is a predictable L&H short on the surface with the boys going to sweep someone`s chimney . Guess what happens next ? That`s right slapstick at its most sucessful ensues .<br /><br />But there`s one or two things that seem untypical . Ollie for example is very unlikable , he`s arrogant , he`s rude , and not only to Stan look at the way he addresses the servant with \"\" HEY YOU \"\" and takes a childish huff very easily with his catchphrase being \"\" I have nothing to say \"\" . In short Ollie plays a bully in a very unlikable way and I much prefer to see him to play the arrogant coward where he`s always at his funniest<br /><br />DIRTY WORK also lacks the reportary regulars of the other L&H shorts like Finlayson , Long , Busch and Housman which means when we switch to the mad scientist plotline there`s a slightly creepy atmosphere that jars with the rest of the movie <br /><br />Having said that this is still a good short mainly down to Stan . Also watch out for a scene featuring a fish . Many jokes/plots from L&H feature fish and this is another one\"\r\n1\tDirector Edward Sedgwick, an old hand at visual comedy, successfully leads this Hal Roach road show which tenders a fast-moving and adroit scenario and excellent casting, employing a large number of Roach's reliable performers. Although the film was originally plotted as a vehicle for Patsy Kelly, sunny Jack Haley stars as Joe Jenkins, a young Kansan who sells his auto repair business and journeys to Hollywood, where he attempts to wangle a screen role for the girl he loves, star-struck Cecilia (Rosina Lawrence). Sedgwick, who prefers using the entire M-G-M studio as his set, does so here as Cecilia, always ready for an audition, is treated by a would-be paramour, cinema star Rinaldo Lopez (Mischa Auer), to behind-the-scenes action of, naturally, a musical comedy, featuring Broadway headliner Lyda Roberti. Laurel and Hardy provide several enjoyable interludes, including their well-known skit involving a tiny harmonica, and we watch fine turns by such as Joyce Compton, Russell Hicks and Walter Long. On balance, one must hand the bays to Mischa Auer, who clearly steals the picture as an emotional movie star, a role which he largely creates, and to the director for his clever closing homage to Busby Berkeley's filmic spectacles.\r\n1\t\"A riotous farce set in the world of glamorous daytime soap operas! This film is hilarious! Admittedly, you have to have a taste for films with screaming, hysterical dialogue, over-the-top acting, and melodramatic plot twists. But if you do, you're in for one hell of a treat.<br /><br />Sally Field plays Celeste Talbert, daytime TV's \"\"Queen of Misery.\"\" Celeste's cushy life is thrown into upheaval with the unexpected arrival of Lori Craven (Elisabeth Shue), her long-lost niece, and, simultaneously, Jeffrey Anderson (Kevin Kline - splendid as always), Celeste's long-ago lover. But Celeste has been hiding a deep, dark secret, and the arrival of Lori and Jeffrey might just bring it to the surface. Add in the diabolical Montana Moorehead (a wonderful Cathy Moriarty, in full \"\"gorgeous woman with testosterone to spare mode\"\"), who is trying mighty hard to destroy Celeste's career; David (Robert Downey, Jr.), the weenie-boy producer of the soap who's secretly plotting with Montana to ruin Celeste; and, Rose Schwarz (Whoopi Goldberg), scriptwriter and Celeste's one true confidant, and you are in for a heaping helping of subplots and general chaos.<br /><br />Chaotic comedies like this are tricky to execute (does anyone remember 'Mixed Nuts'?), but when done well, can be pretty damn funny! A major ingredient that is necessary to any good comedy is the casting of seasoned pros who know that lots of times the funniest things are not said but seen in an expression or a look. Field, Kline, Goldberg, and the rest all work together so well and are clearly having a great time that it is hard not to become drawn in by their energy and enthusiasm. Shue is clearly the weakest link here, but she only draws attention to herself because she is surrounded by Field, Kline, et al. Moriarty is a stand-out in the showy villainess role, making you think of the hottest damn dominatrix you ever did see!! There are also lots of familiar faces that you'll recognize in small (but, nevertheless, all very funny) roles, including Carrie Fisher, Garry Marshall, Kathy Najimy, and Teri Hatcher. Director Michael Hoffman keeps the pace swift and the histrionic plot moving toward the big finish. Mention must also be made of Robert Harling's screenplay, carefully constructed to stage a soap opera within a soap opera. The dialogue is boiling over with great lines, delivered brilliantly by the actors (I'd be willing to bet that a lot of this stuff was improvised).<br /><br />Look, if you want to see a bunch of pros doing what they do best and having a great time doing it, get your hands on this one. If not for anything else, it will put you in a good mood and make you laugh!\"\r\n0\tthis is seriously one of the worst movies i have ever seen. i love Japanese movies, and i think another film by the same director, electric dragon 80,000 v, is a masterpiece. i really wanted to like this movie - asano is a terrific actor and the storyline was immensely appealing. but i couldn't find anything entertaining about it.<br /><br />the movie takes forever for nothing to happen. and the effects the director used - like the constant percussion and the exorbitant use of slow motion - merely added to my growing annoyance at the fact that the plot was so mind-bogglingly slow and the actors were heinously overacting. a lot of the boredom was a result of extraneous additions that were completely unnecessary - like an hour spent on asano going around slicing buddha statues and proclaiming how he doesn't worship anything. this added nothing to the plot. a fellow Japanese film buff and i were both checking the time constantly. we couldn't believe this film was as terrible as it was. and the finale was awful. i thought the director would at least attempt to reward the viewer for managing to sit through this, but sadly i was mistaken.\r\n1\tSpielberg's first dramatic film is no let-down. It's a beautifully made film without any flaws about the life of an African-American woman. It also proves that not all movies that have the African-American ethnicity as the center of the story have to be helmed by an African-American director.<br /><br />What I love about this movie is Spielberg's ability to make it very realistic despite the fact that it was based on a book. Furthermore, Danny Glover was excellent as Mr. And usually, he's just himself throughout most of his movies. But in this, he completely branches out and is someone else for once. But, the performance de resistance of the whole film comes from Whoopi Goldberg. She is excellent as Celie. You will never forget these characters once you've seen this movie.<br /><br />Now, I heard that the musical version of it is going to be a film as well, and all I can say is: I hope it's about as good as this one is, because this one is a film that shouldn't be missed.\r\n1\t\"Halfway through Lajos Koltai's \"\"Evening,\"\" a woman on her deathbed asks a figure appearing in her hallucination: \"\"Can you tell me where my life went?\"\" The line could be embarrassingly theatrical, but the woman speaking it is Vanessa Redgrave, delivering it with utter simplicity, and the question tears your heart out.<br /><br />Time and again, the film based on Susan Minot's novel skirts sentimentality and ordinariness, it holds attention, offers admirable performances, and engenders emotional involvement as few recent movies have. With only six months of the year gone, there are now two memorable, meaningful, worthwhile films in theaters, the other, of course, being Sara Polley's \"\"Away from Her.\"\" Hollywood might have turned \"\"Evening\"\" into a slick celebrity vehicle with its two pairs of real-life mothers and daughters - Vanessa Redgrave and Natasha Richardson, and Meryl Streep and Mamie Gummer. Richardson is Redgrave's daughter in the film (with a sister played by Tony Collette), and Gummer plays Streep's younger self, while Redgrave's youthful incarnation is Claire Danes.<br /><br />Add Glenn Close, Eileen Atkins, Hugh Dancy, Patrick Wilson, and a large cast - yes, it could have turned into a multiple star platform. Instead, Koltai - the brilliant Hungarian cinematographer of \"\"Mephisto,\"\" and director of \"\"Fateless\"\" - created a subtle ensemble work with a \"\"Continental feel,\"\" the story taking place in a high-society Newport environment, in the days leading up to a wedding that is fraught with trouble.<br /><br />Missed connections, wrong choices, and dutiful compliance with social and family pressures present quite a soap opera, but the quality of the writing, Koltai's direction, and selfless acting raise \"\"Evening\"\" way above that level, into the the rarified air of English, French (and a few American) family sagas from a century before its contemporary setting.<br /><br />Complex relationships between mothers and daughters, between friends and lovers, with the addition of a difficult triangle all come across clearly, understandably, captivatingly. Individual tunes are woven into a symphony.<br /><br />And yet, with the all the foregoing emphasis on ensemble and selfless performances, the stars of \"\"Evening\"\" still shine through, Redgrave, Richardson, Gummer (an exciting new discovery, looking vaguely like her mother, but a very different actress), Danes carrying most of the load - until Streep shows up in the final moments and, of course, steals the show. Dancy and Wilson are well worth the price of admission too.<br /><br />As with \"\"Away from Her,\"\" \"\"Evening\"\" stays with you at length, inviting a re-thinking its story and characters, and re-experiencing the emotions it raises. At two hours, the film runs a bit long, but the way it stays with you thereafter is welcome among the many movies that go cold long before your popcorn.\"\r\n1\tLet me get the bad out of the way first, James Hanlon is absolutely terrible trying to act his descriptions of what was going on with the rookie training and events of the day. Really it is in stark contract to the other fire fighters without acting aspirations who are natural in their delivery.<br /><br />That said it is an amazing film that is impossible to watch without tears in my eyes. I am an English guy from London but I love New York and have visited many many times before and after September 11th. It is a second home to me and I can't help but feel devastated at the loss of life but also the destruction of part of such an amazing beautiful city. This is the real deal, in with the fire fighters with everything collapsing around them. I am so glad the footage exists to show people how it was on the day. It is a shame that they didn't use any footage of people jumping from the buildings because friends who were there tell me this is such a major part of their memory, it should be included to show future generations just how terrible it really was.<br /><br />Conspiracy theorists can go to hell by the way.\r\n0\t\"As a fan of Eric Rohmer's studies of the contemporary war between the sexes, I was very eager to see \"\"The Lady and The Duke (L'Anglaise et le duc)\"\" for how he would treat men and women during a real war, the French Revolution. <br /><br />The film looks beautiful, with each scene designed as a period painting, like a tableaux vivant. And I expected much talking, as that's Rohmer's style. But maybe Rohmer was restrained by basing the screenplay on a real woman's writings is why this mostly felt like a docudrama version of \"\"The Scarlet Pimpernel.\"\"<br /><br />As awful as the excesses of Robespierre et al, how about some recognition that the French aristocrats were spoiled brats? I kept humming to myself: \"\"Marat, we're poor/and the poor stay poor;\"\" you could also pick a tune from \"\"Les Miz.\"\"<br /><br />I wasn't all that sympathetic as the central figure has to go back and forth between her city home and country manor to stay ahead of the Revolution. At one point her maid claims the pantry is bare but sure manages to lay out a fine repast. I simply didn't understand her, an English sympathizer who alternately rejects and defends her former lover and patron as he and the Revolution keep shifting political focus; I think I was supposed to sympathize with her consistency more than their political machinations, like a character out of \"\"The Scarlet Pimpernel.\"\" Hey, the only reason she didn't go back home was her disgrace after an affair and child with the Prince of Wales or somebody. <br /><br />Usually in a revolutionary period there's some groundswell of change going on in relations between men and women, but I saw none here. I once went to a Herbert Marcuse lecture that concluded with a lengthy Q & A; the last question, from an audience member far older than the rest of us acolytes, heck she had gray hair, was \"\"Why are revolutionaries so grim?\"\" She was hooted at and Marcuse didn't deign to respond to it seriously -- but it's the only thing of substance I remember from the whole evening. Rohmer demonstrates that counter-revolutionaries are also grim and didactic.<br /><br />(originally written 8/11/2002)\"\r\n0\tThis is a bad, bad movie. I'm an actual fencer: trust me when I say that this film's pretension of accuracy is just that. This is especially true during that vile little scene when the fencers are combining footwork with 80's pop. The ending is predictable, and the movie is a bore from start to finish. Horrible.\r\n1\t\"You sit there for a half an hour and watch a story, believing it all, then watch another half an hour of the same story utterly unraveling... and then put back together again. Brilliant.<br /><br />One of the most exciting feature films at the San Francisco International Film Festival is a documentary. I don't know if - other than Andrew Jarecki's \"\"Capturing the Friedmans\"\" - there has ever been anything like Anna Broinowski's \"\"Forbidden Lie$.\"\" It features, exposes, defends, reveals, and questions everything about Norma Khouri, author of \"\"Honor Lost,\"\" the acclaimed and lambasted 2001 bestseller about honor killings in Jordan.<br /><br />What is quite incredible and what makes the film so exceptional is that this \"\"exposure\"\" of Khouri is made with Khouri's full participation.<br /><br />For the initial portion of the film, Khouri presents her story about the supposed honor killing of a friend of hers in Amman, the story of the book. She sounds completely believable, convincing.<br /><br />Then her story is taken apart, exposed, by eminently believable and convincing people, such as women's rights activists in Jordan, investigative reporters there and in Australia, where Khouri lived for a while.<br /><br />Khouri comes back and denies the accusations, taking a successful lie-detector test in the process. There comes another segment of devastating exposures - not to be specified here because that would lessen the shock value... and then Khouri comes back and faces the accusations (not all, but the essential ones in the matter of the book).<br /><br />And the Houdini act continues, with round after round in this heavy-weight, seesaw prize fight, surprise after surprise - and there is no \"\"happy ending\"\" in the sense of resolution. Brilliant.\"\r\n1\t\"Having been driven out of the house and into the theater by the sweltering heat, I could not have been more pleased. The Road to Perdition, directed by Sam Mendes (American Beauty), is destined to become one of the greatest movies of all time. Perhaps I'm just getting old; perhaps I've just seen the same themes recycled time and again. But this movie is indeed different.<br /><br />The story opens with young Michael Sullivan Jr. facing out to the sea, contemplating the duality of his father's legacy -- one of the best men to ever live, one of the most evil. This duality snakes its way throughout the movie. The story revolves around crime boss John Rooney (Paul Newman) and Michael Sullivan (Tom Hanks), the young man Rooney once took in and who now serves as his personal \"\"Angel of Death.\"\" Rooney is tied by blood to his own son, but tied by love and loyalty to Michael. Young Michael Jr., intrigued by the stories he reads, steals away in his father's car one night while Dad goes off to \"\"work\"\" with Connor Rooney, heir to the family \"\"business.\"\" Connor lets the situation get out of hand, and what was meant only to be a warning turns into murder -- witnessed by Michael Jr. Upon the discovery that young Michael has seen what he should not have seen, the plot is set in motion as conflicting loyalties collide. Soon, Michael Sr. is on the run with his young son, pursued by contract killer Harlen \"\"The Reporter\"\" Maguire (Jude Law).<br /><br />I will disclose no further details in order to avoid any potential spoilers. However, I strongly encourage viewers to examine the many dualities that present themselves in the movie: Problems between sons and fathers (Michael Sr & Jr., John Rooney & son Connor), between the world at home and the world at \"\"work\"\", between good and evil, between those who pretend to be men of god and those who really are, between \"\"clean\"\" money and \"\"dirty\"\", between the town of Perdition and Perdition as hell. And along the way, savor the visual brilliance of cinematographer Conrad L. Hall (9 nominations, 2 oscars for best cinematography): rain pouring off fedoras, shots through mirrors (especially on swinging doors), tommy-gun flashes from out of the shadows, absent any sound. Not only has 75-year-old Hall given us perhaps the best cinematic product of his career, but 77-year-old Paul Newman offers one of his best performances ever.<br /><br />Yes ... I may be getting old. But I've seen a lot ... and this is fresh and invigorating. The Road to Perdition presents a lasting and loving tribute to the gangster genre, to films of the 40s, to dark comic-book figures lurking in the darkness, to villains and heroes, to American film in general. Go see it!\"\r\n0\t\"This is one of the silliest movies I have ever had the misfortune to watch! I should have expected it, after seeing the first two, but I keep getting suckered into these types of movies with the idea of \"\"Maybe they did it right this time\"\". Nope - not even close.<br /><br />Where do I begin? How about with the special effects... To give you an idea of what passes for SFX in this movie, at one point a soldier is shooting at a \"\"Raptor\"\" as it runs down a hallway. Even with less than a second of screen time, the viewer can easily see that it is just a man with a tail apparently taped to him running around. Bad bad bad bad.<br /><br />How about the acting? If that's what you can call it. There is one character who, I suppose, is supposed to be from the south. However, after living in the south for six years now, I have never heard this way of talking. Perhaps he has some sort of weird disability - the inability to talk normally. I find it fascinating that the character does nothing that requires him to have that accent - therefore there was no reason for the actor to try to do one.<br /><br />How about the plot? It's pretty basic - Raptors escape, people with guns must hunt them down. I'm starting to wonder why the dinosaurs in these movies always seem to run into the nearest system of tunnels... wouldn't they stay outside to hunt prey? Oh well, at least they have the good sense to appear very very little in the movie which supposedly revolves around them.<br /><br />Other things - Let's say you are in a building and you know that there are man eating raptors running around in it. Would you decide to take time out to have an argument about who is better - Army or Marine? And then decide to have an arm wrestling contest to settle it? How about the idiotic idea that they have to track down the raptors - Split up into groups of two. Didn't they ever watch any horror movies (Or at least an episode of Scooby Doo)? In short, this is one of the dumber movies out there. Miss it unless you want to groan your way through a movie.\"\r\n0\tThis was truly dreadful! It had a terrible storyline, was poorly acted, and was like an amateur remake of evil dead but not nearly as good.<br /><br />It took all my tenacity to make it through this one, it's a good job I didn't have to visit the toilet else I doubt I would have come back! This one makes Hammer House of Horror look like a big screen Hollywood epic. <br /><br />The only value to this movie was the never ending supply of beautiful women. Not a bad one among them! <br /><br />If you want to letch with your friends after a night on the beer then this one's for you ... else avoid it like the plague!\r\n0\tLike Freddy's Revenge, this sequel takes a pretty weird idea and doesn't go to great lengths to squeeze a story out of it. Basically Alice from number 4 is pregnant and her baby is haunted by Freddy which gives him an outlet to haunt her friends. This has the least deaths out of the whole series and the wise-cracks are quite poor, so neither the horror fans or comedy fans are happy. <br /><br /> I've not alot to say about this. It's moderately interesting to see the characters of Alice and Dan returning from four, but not worth watching a movie over. Uninspriring and unenjoyable, possibly only the competant direction saves it from being the worst in the series.\r\n1\tI ran across this movie on the tv and could not turn it off. Peter Sellers plays an unlikable fellow who falls for an extremely warm and cute Goldie Hawn (who wouldn't?). The way that Goldie's character holds herself from the beginning of the movie to the end is untraditional even today. This movie gave me a different angle into human relations and also I found it very funny. Peter Sellers role was a difficult sell, but I think he pulls it off well.\r\n1\tI just got back from a screening a couple of hours ago, and I was very happy with the movie when I left it. It's very intense, and the closest I've come to crying in a movie in quite some time. That is a credit to Adam Sandler, who delivers a magnificent performance on many levels, and who probably deserves an Oscar nom for it, were it not coming out so early in the year. Don Cheadle gives his usual superb performance playing the straight man to Adam's disturbed.<br /><br />There is some humor, but most of it is really only funny in comparison to the tearjerking moments, as Adam deals with his loss and Don struggles to help him. Adam plays two levels very well... when he is mentally stable he is funny and likable, but when he is, well, less stable he's powerful and dark.<br /><br />I recommend it for anyone who likes intense mental dramas about difficult friendship and loss.\r\n0\tJeez, only in the 70's... Antonio Margheriti brings us this quirky hybrid of spaghetti western and kung fu flick evolving around a treasure-hunt. The spices of this trashy co-production between Shaw Brothers and an Italian one-off company include humorous storytelling, off-the-wall happenings and some very tame T&A. Extra campy moments are being served by Lee Van Cleef's obnoxious wig, leather-clad bible-thumping psycho gunman Yancey Hobbitt (loveably hammed up by Julian Ugarte, the man who should've done way more obscure European genre productions than he did), wanna-be-witty dialogue, hilarious background music and completely laughable sound effects accompanying various little events (especially every jump made by Lo Lieh).<br /><br />While this little piece of action falls fare and square into the Turkey Territory, it's great to see Van Cleef and Lo Lieh on the same screen, and you can't deny the charisma of this duo. Don't expect too much, and you'll get plenty out of it.<br /><br />This is my truth. What is yours?\r\n0\t\"Repugnant Bronson thriller. Unfortunately, it's technically good and I gave it 4/10, but it's so utterly vile that it would be inconceivable to call it \"\"entertainment\"\". Far more disturbing than a typical slasher film.\"\r\n0\t\"...is the only way to describe this movie about subjects that should be surefire: scandal, sex, celebrity, power. Kirsten Dunst grins her way through her role as silent movie star Marion Davies like she thinks she's in \"\"Legally Blonde.\"\" The guy who plays William Randolph Hearst overacts to the point where you want to reach into the screen and slap him. Eddie Izzard is pretty good, except that he's playing Charlie Chaplin, and is about, oh, 125 lbs too heavy for the part? Hard to believe this hamfisted, uneven wreck was directed by Peter Bogdanovich, but then again, he hasn't made a watchable movie in, what? 30 years? Sometimes, there's just no coming back.\"\r\n1\t\"I guess this is meant to be a sort of reworking or updating of \"\"Beauty and the Beast\"\", but I can't say I've ever watched a movie that began with several minutes of graphic horse sex. Wow. Anyway it seems that a young woman and her..aunt? Have traveled to this castle in France where the woman is to be married to the son of the castle owner, who is the man who takes care of making sure the horses get their rocks off. It seems that there are legends in that area of a beast that was rather, uh, frisky, I guess you could say, with the ladies, or at least, one in particular. There are all kinds of references tucked away in that regard but every time the soon-to-be-blushing young bride gets her curious little hands on one the groom's father removes it from her sight. Anyway, the young bride-to-be goes upstairs to sleep while the family is waiting for a Cardinal to show up to the wedding (a family member, I guess) and as she dreams she dreams of a beast in the woods that has its way with her. The effects in this leave a little to be desired, and any attempt at eroticism (not that I know much about that) is kind of rendered laughable, especially when certain featured appendages appear about as realistic as a bed post or a baseball bat. This has a rather strange and abrupt, yet twist ending, with not really any clues or much build up to it, but it was kind of fitting and definitely not what I expected. I don't know, this is kind of a tough one to get through but it has its moments and is definitely weird. 7 out of 10.\"\r\n0\tActually had to stop it. Don't get me wrong, love bad monster movies. But this one was way too boring, regardless of the suspenseful music that never leads you anywhere. The actress had too many teeth and that moment when she makes contact with one of the beasts, was way too obvious a cliché. This film totally betrays the cover on the DVD which looks pretty interesting. From the cover one expects a giant monster, but you get these cute not as gigantic as expected electric eels. Moved on to watch another film called The Killer Rats but that's another review. Deep Shock was really crap, a big shame considering the fact that it looks pretty high budget.\r\n1\tPlotwise this is a rather silly little whodunnit masquerading as a period drama/biopic.<br /><br />However the only reason I wanted to see it in the first place was because I was curious about what the great Henry Fonda was really like at his peak. I wasn't disappointed - he produces a truly warm and charismatic performance.<br /><br />In addition I can honestly say that I was never really bored at any stage during the film, so a strong ***1/2 Out of *****\r\n0\t\"I have not yet seen anyone slate this film and i think i may be the first.<br /><br />It was awful. I actually didn't watch the end of it. It was like watching a boring soap or a really good one (all soaps are crap). The actors were poor and storyline was bad. The person who rated it 10/10 has no idea what he is on about. The script was awful. 2 People was in an angry conversation together involving threats and you expect the good guy to say some thing really good and beat the crap out of him but no. He says \"\"If you do that ... I will hurt you\"\" Hahahahaha. If comedy is your thing, watch away. Please do not watch this film because ... It's CRAP!!! <br /><br />Summary: Poor acting, bad fights, bad script.<br /><br />Don't watch! Of course this is in my opinion.\"\r\n0\tThis is a very bad movie. I laughed once or twice, and the storyline sucks! There is maybe one funny joke, it is stupid and it is boring. Through the whole short movie, I was falling asleep and wondering when it was going to end.<br /><br />No one acts human, and everyone acts stupid and ridiculous. Rob Schneider acting like an animal isn't something I would pay to see. It looked funny, but the bottom line: DON'T WASTE YOU'RE PRECIOUS TIME ON SUCH A RIDICULOUS AND STUPID MOVIE.<br /><br />I was wondering when it was going to end, even though it is a short movie. In the beginning we thought it would get better; but it gets worse. Stupid, all the way to the end. I walked out of the theater, and I would remember that movie as extremely bad forever.<br /><br />The writer and co-producer of this film is a Simpsons TV writer, but this is nothing like The Simpsons (this movie sucks!!!)\r\n1\tGot to be one of the best political satires I have seen to date, with an excellent performance for Cusak, Tomei, and all the supporting actors.<br /><br />Excellent plot, very well-placed and a very good unexpected twist at the end. The action scenes were well filmed & choreographed. Very funny.<br /><br />All in all I give this film a big thumbs up. It's extremely critical of US military intervention in the middle-east, and as such, it may receive bad reviews from people who don't share the same political view, or those who are simply too politically ignorant to appreciate the dark and drk humour. Indeed, at places, the comedy was so close to the truth that it was borderline between funny and tragic.\r\n1\tI tuned into this by accident on the independent film channel and was riveted. I'm a professional actor and I was flabbergasted by the performances. They felt totally improvisatory, absolutely without affectation. I could not tell if it was scripted or how it was shot and waited until the very end to see credits and then spent a half an hour on the IMDb to find this film. Do not miss it. I see that the writer-director also did a very fine film called Everyday People which I enjoyed a lot. The shame of the film business is that projects this excellent do not get the distribution and advertising that they deserve and live under the radar. This film deserves to be flown high and proudly. I urge people to look it up and watch it.\r\n0\t\"Brainless film about a good looking but brainless couple who decide to live their dream and take people on diving tours. The pair almost instantly make the wrong choice of customers and get mixed up with some people seeking to recover the items that we see falling to the ocean floor during the opening credits sequence. Great looking direct to video movie could have been so much better if it wasn't so interested in primarily looking good. Performances are serviceable and the plot is actually not bad, or would have been had the director and producers not redirected the plot into making sure we see lots of shapely people in bathing suits (or in what I'm guessing the reason for the \"\"unrated\"\" moniker a few fleeting bare breasts). The film never generates any tension nor rises above the level of a forgettable TV movie. If you get roped in to seeing this you won't pluck your eyes out since the eye candy is pleasant but we really need to stop producers from making films that are excuses to have a paid vacation.\"\r\n1\tAll Kira Reed fans MUST see this. The film's premise has struggling romance novelist Kira unable to come up with any new ideas. She's also getting over a divorce. However, she meets this guy at a restaurant and he helps her out of her shell (and clothing). They go into a corner room and they do it. Thankfully, Kira gets a condom out (Now don't ever tell me these Playboy films are worthless piles of soft-core fluff. Remember kids, safe sex). Later, she marvels to her publishist how great it was, but she didn't get his name. Despite this, the guy finds her and they continue their kinky games. But eventually she tires of his sneakiness and wants to know more. When she does, all hell breaks loose, and I'll leave it at that. This is easily the best of these soft-core Playboys films I've seen. Check this out, and marvel at the greatness of Kira.\r\n0\tThis movie had good intentions and a good story to work with. The director and screenwriter of this movie failed miserably and created a dull, boring filmstrip that made me feel like I was back in Mr. Hartford's 8th grade Social Studies class -- way back in 67.<br /><br />What a waste, will somebody please take this story and make a real movie out of it - the story deserves it.<br /><br />Every time a scene had potential, all we were left with were a few clichés, combined with black and white footage that they probably got from The History Channel to show the action. Shameful.<br /><br />Ossie Davis was the only bright light in this dull fest. The other acting was incredibly dull - it fit in with the movie well and whomever played the Captain set a new low standard for line delivery.<br /><br />However, if you are willing to accept all the numerous flaws in this movie and aren't concerned with being awed or entertained, but want to learn about the USS Mason, it is worth a watch.\r\n0\tThis is the story of a young woman seduced and then dumped by her older, married lover after she gets pregnant; she avenges herself against him, and his entire family, through black magic  which, disappointingly, she doesn't do herself but has someone else do for her. Good production values for a Thai horror flick. But the bland script never generates suspense, the director approaches the material entirely conventionally, and the final act loses viewer sympathy for the victims by throwing logic to the winds. At one point, a character has a prime opportunity to simply shoot the villainess dead, and instead she gets up and runs away without picking up the gun. Bad writing  you're soaking in it! <br /><br />Some icky gore effects, including a really tasteless late-term-fetus corpse and one guy dying from having hundreds of live eels burst out of his stomach. Only recommended for genre completists who simply have to see every horror film produced in Asia in the last 15 years.\r\n1\tCreature Comforts in America should have been released on a different network, or at least been given the chance to have its full run of episodes. Unfortunately, this was not the case. Given that American audiences (seemingly) have the attention spans of a gnat when it comes to the humor that does not consist of profanity laced diatribes, or has a preoccupation with scatological functions (both sound and smells), shows like this will be few and far between. One of the main problems was that however brilliant it was, it was made for a rarefied audience who knew what to expect but was viewed by an audience and board rooms that did not have a clue at to what they were watching. Which is sad, but not unexpected. I would have liked to have seen at least three more seasons of this show even if it was produced for direct DVD release. The material and the interactions between the creatures were rich with sub context and there were other conversations just waiting to be had under the surface. But thanks to Political Correctness, such conversations take place only in my mind.\r\n1\t\"The plot had some wretched, unbelievable twists. However, the chemistry between Mel Brooks and Leslie Ann Warren was excellent. The insight that she comes to, \"\"There are just moments,\"\" provides a philosophical handle by which anyone could pick up, and embrace, life.<br /><br />That was one of several moments that were wonderfully memorable.\"\r\n0\tThe ENTIRE MOVIE is flashbacks from the first Boogeyman movie as well as, inexplicably, footage from another Uli Lommel / Suzanna Love film Brainwaves. It is framed with some more current (from the early 90's anyway) footage that is boring, poorly acted and cheaply shot. Not only is the film almost completely flashbacks, they REPEAT the same flashbacks throughout the film. So you see the recycled footage over and over again, as if you hadn't seen it already. As if the originals weren't bad enough. I've never seen a movie so padded.... Someone was milking the last dollar out of these films. Total ripoff. And talk about padding... why do I have to write 10 lines about this trash? If I can convey that it's garbage in 2 lines, that should be enough.\r\n0\t\"James Bond in the wilderness? Well, that's the way it looks: Pierce Brosnan is after all best known as Bond in \"\"Tommorrow Never Dies\"\" (1997) and \"\"Golden Eye\"\" (1995) - both shot prior to this release. Frankly, the film's two leads are both badly miscast, with Brosnan turning in the marginally more convincing performance, and with Annie Galipeau (as Pony, Grey Owl's love interest) having to battle with carelessly-written dialogue.<br /><br />The two aunts, on the other hand are perfect. But the film is not about aunts. It is about the wilds of the Canadian wilderness. And while the photography may be pretty, there is no grit to the harsh reality of living in the wilds. Annie Galipeau, as Pony, just fails to be convincing, unfortunately, because I really wanted to believe in her. She was a relatively inexperienced twenty-year-old on this film, and it could have worked, but Richard Attenborough was maybe just not tough enough on her. He makes her look vulnerable, which of course she is.. but in the wrong sort of way.<br /><br />But one thing for sure, she appears picture-perfect throughout. But mascara and eyebrow thickener in the wilderness? It just doesn't fit, especially as she only ever seems to walk forest trials with Bond (sorry, Grey Owl), and use photo-ops for kissing close-ups.<br /><br />I've lived with forest people in the Pacific North West, and they simply don't look this pretty and stay so sweet while fighting for survival. Which brings me to another point: the film fails to evoke the period in which it is set: the 1930s. I put the blame here largely on a lack-lustre script that is keen on preaching at the expense of dramatic arc, plot points and those small details that can evoke period through action.<br /><br />William Nicholson wrote the screenplay, and his latest offering, \"\"Elizabeth, the Golden Age\"\" opened three days ago, so I do hope there is an improvement.<br /><br />Yes, I've read the comments others have posted, but I'm not convinced. A lot of potential, but mishandled and even maybe ill-conceived. If it had had a religious film, it would have been panned, but because it preaches environmentalism, the film remains somewhat above criticism, since it is \"\"politically correct.\"\" Sorry, for all that, I don't buy it. Amen.\"\r\n0\t\"I'm not particularly fond of remakes, or to steal the modern jargon \"\"retellings\"\", but this film truly peeved me off. The original Prom Night, while not in my humble estimation a masterpiece, still realized what it was... horror. There are some simple things to remember when making a horror film. Suspense is crucial to maintaining the interest of the audience. Sorry folks, but a white knuckle film this was not! The scares were cheap, and foreshadowed terribly. (A good example of scare which has been done to clichéd excess now, is the cat jumping out of the closet, followed soon there after but a now unexpected appearance by the villain of the film) This film couldn't successfully pull that off, so how could I expect it to fulfill any of the other conventions of horror film. There needs to be a likable hero or heroine. This film doesn't have one. The person I most identified with was the head detective. His calm demeanor, but level headed approach to the escape of a killer was what more films of this ilk should have. Common sense approach to events that occur. (If you're running from an Axe wielding psycho, you turn and sprint in the opposite direction. Not jog, whilst looking back ever three seconds, gaging the killer's progress, only to trip over every branch and inanimate object in your path.) If you friend disappears, you don't go looking for them alone. And if you suspect foul play you tell someone, not investigate yourself. These clichés are tired and well overplayed. In the horror genre in general, and in this film in particular.\"\r\n0\tThis film features Ben Chaplin as a bored bank employee in England who orders a mail order bride from Russia, recieves Nicole Kidman in the mail and gets more than he bargained for when, surprise, she isn't what she appears to be. The story is fairly predictible and Chaplin underacts too much to the point where he becomes somewhat anoying. Kidman is actualy rather good in this role, making her character about the only thing in this film that is interesting. GRADE: C\r\n1\tThis typical Mamet film delivers a quiet, evenly paced insight into what makes a confidence man (Joe Mantegna) good. Explored as a psychological study by a noted psychologist (Lindsay Crouse), it slowly pulls her into his world with the usual nasty consequences. The cast includes a number of the players found is several of Mamet's films (Steven Goldstein, Jack Wallace, Ricky Jay, Andy Potok, Allen Soule, William H. Macy), and they do their usual good job. I loved Lindsay Crouse in this film, and have often wondered why she didn't become a more noted player than she has become. Perhaps I'm not looking in the right places!<br /><br />The movie proceeds at a slow pace, with flat dialog, yet it maintains a level of tension throughout which logically leads to the bang-up ending. You'd expect a real let down at the ending, but I found it uplifting and satisfying. I love this movie!\r\n0\t\"One question: Why? First off, the premise is not funny or engaging at all. They use taped interviews, and take the audio to animate ite with animals speaking the parts. First off, the interviews aren't funny or entertaining to begin with, and even if they were, I am sure they would be a lot more entertaining being viewed as they are originally, without being turned into cartoons. How does that add any hilarity to it? I turned on CBS's Monday night sitcom line-up, (which has become a regular way for me to relax after stressful Monday workdays) and found this on. Of course, the sitcom line-up would be reruns anyway, being summer, but seeing those episodes over again would have been more entertaining. I tried to give \"\"CC\"\" a chance. I really did. When it started, I figured, well, maybe it will be funny. Nope. And then it kept going. It was a long half hour.<br /><br />And I can almost see if there was a purpose, if the interviews were shown in their entirety, and had points to them. But no, it was just one-line clips, cut and pasted together really quick. It was like a horrible dreadful version of Cartoon Network's \"\"Robot Chicken.\"\" I wasn't a fan of CBS' now-cancelled sitcom \"\"The Class.\"\" WHile that was on, it was one half-hour of the line-up I would struggle through. But if it came down to me deciding a whole season of that or three more episodes of \"\"Creatures\"\"....let's just say I'd take the \"\"Class.\"\" Considering it's been a couple hours since it aired, and I come on here to see I am the first to comment...I guess that's a good sign that nobody watched it, and that it won't last much longer. Cartoon roadkill.\"\r\n1\tAs the story in my family goes, my dad, Milton Raskin, played the piano for the Dorsey band. After Sinatra joined the band, my dad practiced with him for hours on end. Then, at a point in time, my dad told Sinatra that he was actually to good to be tied up with such a small group (band), and that he should venture off on his own. By that time Sinatra had enough credits 'under his belt' to do just that! Dorsey never forgave my dad, and the rest, as they say, is history.<br /><br />I have some pictures and records to that effect, and so does Berkley University in California.<br /><br />I have seen just about every Sinatra movie more times than I wish to say, and his movies never get old . . . Thank you Frank\r\n0\tI still can't believe this movie. They got so much unbelievable things in it, that it's hard to believe anyone wanted to make it.<br /><br />The story is a joke, but in the sense of being funny, but more like no story at all. How can you mix a slapstick comedy with a train robbery, a prison movie, town conspiracies, sex-jokes and a FBI-agent? You can't.<br /><br />Beside the terrifying directing the most noticeable thing are the actors. I watched this film and thought: 'Is this really Marlon Brando? No, it can't be. (5 minutes later) Is this Charlie Sheen? Wow, maybe Brando is true. (5 minutes later) This can't be Donald Sutherland. (5 minutes later) No, not Mira Sorvino. This movie is too bad for all of them. (At the end). No, no, no, this can't absolutely not be Martin Sheen!!! Not for 10 seconds of such a movie.' Then it was over and I down with my nerves. SO many good, oscar-winning, usually convincing actors in such a stupid, dumb, awful movie. I rarely wanted to know so much how they came to act in this one. They couldn't got so much money.<br /><br />Only just an unbelievable silly idiotic movie.<br /><br />3/10 \\ 1/4 \\ 5 (1+ - 6-)\r\n1\tIn a performance both volatile and graceful, Al Pacino re-teams with Sea of Love director, Harold Becker.<br /><br />As New York Mayor John Pappas in City Hall.<br /><br />A savvy thriller thats the first film ever shot inside the lower Manhattan structure that's ground zero for the City's government.<br /><br />That the other NYC locations provide the vivid settings as an idealistic mayoral aide (John Cusack) follows a trail of subversion and cover-up that may loop back to the man he serves and reveres.<br /><br />Bridget Fonda, Danny Aiello, Martin Landau, Tony Franciosa and David Paymer add more starry brilliance to this gripping tale of power.<br /><br />And the power behind power.\r\n0\t\"1st watched 12/24/2009  4 out of 10 (Dir-Robert Ellis Miller): Emotional Christmas fluff that doesn't really get specific enough to explain how the real story happened in this factual-based incident of a man who is wrongly put in jail trying to get a job for his family to make Christmas happen for them. The three kids in the family then run away from home on a trek to Washington D.C. to enlist the then President of the United States, Herbert Hoover. This trek provides some side stories like their positive encounters with a hobo and a puppeteer, which makes the story kind of like a Disney \"\"animals on the run\"\" movie and doesn't quite fit here. At the ending, there isn't any details given as to how the President helped the family and this is another downpoint to the movie, in my opinion. The movie does eventually bring tears, but it takes too long to get to this. The movie isn't supposed to have been an original TV movie(according to IMDb) but it has the obvious fade-outs that make it look this way  so I'm not sure their information is accurate. All in all, this is a simple movie(that could have been more complex) with a happy Christmas-like story but blandly played and without a lot of substance.\"\r\n1\t\"I don't think that many films (especially comedies) have added memorable, quotable dialog like MOONSTRUCK. I won't illustrate it - you can see a remarkably long list of quotes on this thread - but any film that can make subjects like the defense of using expensive copper piping rather than brass for plumbing purposes into memorable dialog is amazing to me. It is not the only line that pops up and makes an imprint on our memory. How about a restaurant waiter who regrets a planned marriage proposal because it will mean the loss of an old bachelor client? Or a nice, elderly dog fancier encouraging his pack to howl at he moon? Or Perry (John Mahoney's) description of a female student's youthful promise as \"\"moonlight in a martini\"\" (my favorite line).<br /><br />MOONSTRUCK is a wonderful example of brilliant script, first rate direction, and a good ensemble cast that fits perfectly. There are other examples (the drama THE OX-BOW INCIDENT is another example, but a grimmer one). Cher, Olympia Dukakis, Vincent Gardenia, Nicholas Cage, John Mahoney, and Danny Aiello are all involved in plots and cross purposes that examine the nature of love, and how to handle it. Is it a good thing to be totally in love? Cher and Cage, at the end, seem to think so, but Dukakis knows that real love drives the individual crazy (and Cage gets a glimmer of realization of this too, when he and Cher argue outside his home after they return from the opera La Boheme). Is infidelity by men a way of avoiding thoughts of death. Dukakis believes so, and (oddly enough - although he is not totally convinced) Aiello. Chance reveals infidelity - Dukakis realizes early that Gardenia's odd behavior is tied to unfaithfulness, and Cher literally stumbles onto Gardenia and his girlfriend at the opera (but Gardenia also stumbles onto Cher's similar unfaithfulness to Aiello). But chance also causes misunderstandings: Fyodor Chaliapin stumbles on Dukakis walking with John Mahoney and thinks that she is having an affair.<br /><br />There are lovely little moments in the film too. Cher's observation about flowers leading to receiving one. Her hearing the argument in the liquor shop and it's resolution. But best is the sequence of Louis Guss and Julie Bovasso as Cher's uncle and aunt Raymond and Rita Cappomaggi and Rita's charming and kind comment to Raymond about the effect of the moonlight on him. It is the sweetest moment of the entire film.<br /><br />It is close to a flawless film. After seeing it over a dozen times in as many years I can only find two points that do not seem as smooth as they should be. When Cher is at Cage's bakery, his assistant Chrissy (Nada Despotovich) mentions how she is secretly in love with Cage, but has been afraid to tell him. Earlier she was slightly snippy towards Cher, who put her in her place quickly. Yet nothing seems done with this potential rivalry. At the same time, the fact that Cher forgets to deposit her uncle and aunt's daily business profits is brought in momentarily in the concluding seven minutes of the film - but just as quickly dropped. Was there supposed to be some plot lines that were dropped, besides one about Cher and Vincent Gardenia working at a homeless man's shelter as penance? It is a small annoyance, but I think it is just based on a desire to see more of this film because it is so very good.\"\r\n1\tThe fourth of five westerns Anthony Mann did with James Stewart, this one involves a hard bitten cattleman named Jeff Webster who takes a cattle drive from Wyoming to Alaska, via Seattle. He hooks up in Seattle with his partners Ben Tatum (Walter Brennan) and Rube Morris (Jay C. Flippen) that he has sent ahead of time in order to make preparations for the boat trip, north.<br /><br />But first, he has to put up with insubordinate trail hands, cheating riverboat captains and the charms of coy, manipulative Ronda Castle (Ruth Roman) who believes Jeff could be a valuable ally in the future. That's why she hides him out on the boat while the captain's looking for him for the earlier (and justifiable) killing of a trail hand.<br /><br />Jeff also has the misfortune of running into sleazy Judge Gannon (John McIntire) who runs the town of Skagway, Alaska. Gannon locks Jeff up for disrupting his public hanging by running his cattle through town. He fines Jeff the ownership of his cattle and Jeff just has to eat crow for the time being. <br /><br />In the meantime, Jeff agrees to ride point for Ronda up to Dawson in order to deliver supplies. But this is just a ruse so Jeff, Ben and Rube can slip back into Skagway and steal his cattle back. Of course Judge Gannon finds out about this and is right behind but is delayed by Jeff with a rifle while Ben races the cattle over the Canadian border out of Gannon's reach.<br /><br />After avoiding an avalanche and another shootout with some other Skagway men, they finally reach Dawson where Jeff sells his cattle to the highest bidder, which just happens to be Ronda who then promptly sets up a new gambling house in Dawson. Jeff then takes his money and buys himself a claim and starts panning for gold. <br /><br />But then Judge Gannon comes up to Dawson to get in on the gold action up there, and tells Jeff that he was getting a little bored with Skagway and wants to try his luck up in the Klondike, himself. That involves bring some hired gunman with him and forcibly stealing some of the other miner's claims. Jeff and Ben now feel it's time to clear out while the goings are good, leaving Rube to fend for himself as a most ineffective sheriff against Gannon and his gang.<br /><br />They look for a back way out only to find themselves ambushed by Gannon's men because Ben made the mistake of opening his big mouth. Ben is killed and Jeff is severely wounded but that doesn't save Judge Gannon from his just due. The ending shootout at night on the muddy Dawson street pretty much takes care of that. First Jeff kills two of Gannon's best gunman (Jack Elam and Robert Wilkie). Then as Ronda comes out to warn Jeff that Gannon is trying to slip around behind him, Gannon shoots her in the back and she dies right there in Jeff's arms. Then Jeff kills Gannon as he's hiding under a wooden sidewalk. Revenge has spoken.<br /><br />This is another rip-roaring western that's right up there with THE NAKED SPUR and THE MAN FROM LARAMIE. Why the Universal DVD uses a pan-and-scan print instead of the widescreen print TCM uses, is beyond me. You'll wind up missing half the glorious Alberta cinematography by William Daniels. So if you like well-written 50s westerns, then this one's an A-list keeper. <br /><br />8 out of 10\r\n1\t\"The events of September 11 2001 do not need extra human interest in the shape of following the training of the rookie fireman or the progress of the two French brothers. In my view it would have been better to leave this out. I think the directors tried too hard, perhaps they felt that the events of the day needed a story as a backdrop. The comment of one of a policemen - \"\"this aint f***ing Disneyworld\"\" is apt.<br /><br />Nevertheless it is compelling viewing for the depiction of the events. The filmakers were in all the right places at the right times, no other footage from the day matches what they shot.\"\r\n0\tLolita is a rebel and she's going to share to our wide open eyes some little sex stories, between sci-fi and fantasy... Well, this Surrender Cinema production is not very good: very bad acting, horrifying music and a story line without any story and any line. BUT, the sex scenes are pretty well done, lot of lesbian scenes, and Jacqueline Lovell, as beautiful as in The Exotic House Of Wax, offer to us a very good final and very hot strip show. For Lovell's fans only.\r\n1\tI loved this movie! It was all I could do not to break down into tears while watching it, but it is really very uplifting. I was struck by the performance of Ray Liotta, but especially the talent of Tom Hulce portraying Ray's twin brother who is mentally slow due to a tragic and terrible childhood event. But Tom's character, though heartbreaking, knows no self pity and is so full of hope and life. This is a great movie, don't miss it!!\r\n1\tIn the Old west there are always the men who live breathe violence and the women who hold their breath. A famous ¨town tamer¨ named Clit Tollinger(Robert Mitchum) comes hired by the citizens to rid the gunslingers ( Leo Genn, Claude Atkins, among others), Baronland's hoodlums. There he meets the blacksmith (Emile Meyer) , his daughter (Karen Sharpe), her boyfriend(John Lupton), the marshal(Henry Hull) and the Saloon owner (Ted De Corsia). Clint as lawman is appointed deputy to bring peace and puts some cartels saying the following : ¨ Warning , wearing of guns or other weapons in town is banned. Check all hardware at the marshal's office ¨. Clint finds his ex-girlfriend, a local madame (Jan Sterling) in charge of the Saloon girls( Angie Dickinson, Barbara Lawrence, among them). But the town council afraid the raw methods carried out by Clint . At the end the kingpin landowner appears and attempts to murder Tollinger with his own hands.<br /><br />This is a tremendously exciting story of a sheriff-for-hire who had only one more killing to go. It begins as a slow-moving Western but follows to surprise us with dark characters and solid plot. The tale is almost grim , a pacifier comes to a town just in time to make sure its citizenry but later the events get worse . The highlights are the burning at Saloon and the climatic showdown at the ending. Phenomenal and great role for Robert Mitchum as avenger angel and bitter gunfighter, he's the whole show. Vivid and lively musical score by Alex North (Spartacus, Cleopatra), Atmospheric cinematography in black and white by Lee Garmes. The motion picture is stunningly realized by Richard Wilson (Al Capone , Three in Attic) who made good Western as ¨Invitation to a gunfighter and ¨Zane Grey¨ episodes. Watchable results for this offbeat Western.\r\n1\tProbably Jackie Chan's best film in the 1980s, and the one that put him on the map. The scale of this self-directed police drama is evident from the opening and closing scenes, during which a squatters' village and shopping mall are demolished. There are, clearly, differences between the original Chinese and dubbed English versions, with many of the jokes failing to make their way into the latter. The latter is also hampered by stars who sound nothing like their Chinese originals. In fact, the only thing the dubbing has corrected is the court trialat the time, trials in colonial Hong Kong were conducted in English, while the original has this scene in Cantonese!<br /><br />Nonetheless, Chan's fighting style and the martial arts choreography inject humour where possible, so non-Cantonese audiences don't miss much. It's not, after all, the dialogue that makes a Chan flick, but the action and the painful out-takes. The story is easy to follow: Chan plays an incorruptible Hong Kong detective pursuing a gangland godfather (Cho Yeun), and assigned to protect a star witness (Brigitte Lin). The action is superb from beginning to end, and there's not much time to breathe in between. It'll never get you thinking, but what an entertaining, and well strung-together, film. Arguably, this is one of the best martial arts films out there.\r\n0\t\"Wow, what can I say about this film? It's a lousy piece of crap. I'm surprised that it got rated as high as it did. What's wrong with this film? Here's a better question: What's NOT wrong with this film.<br /><br />The story itself is just crap and cliché. Here's pretty much what it's about...Some kinda nerdy kid with no friends gets picked on, gets killed, and comes back as a scarecrow for revenge. \"\"All\"\" of that is packed into 86 minutes of worthless film. If you haven't seen this movie don't waste your time watching it. Also, the second one isn't much better, so don't bother watching that either...I rated this movie a three because I liked the scarecrow's outfit, not because there was anything good about the movie. I think you get the picture.\"\r\n0\t\"Given that this movie was put together in less than a year might explain its shortness (81 minutes - including end credits, so roughly 76 minutes of actual film). But what it cannot explain is its lack of humor that the previous film possessed.<br /><br />The gags are quick and sometimes not even funny. The only true funny parts are the quick spoofs on the Nike basketball spots, James Woods' portrayal of Max Van Sydow's character in the Exorcist, and bits and pieces scattered throughout the film. Very unfunny was the take off of Charlie's Angels, which like the first Scary Movie and the Matrix spin off scene, basically recreated the scene without much humor injected into it.<br /><br />Today's youth might not be able to relate to the spoof gags of the classic supernatural horror films of the 70's such as the Exorcist and maybe of the 80s' Poltergeist, et. al.<br /><br />Hopefully Scary Movie 3 will take some time to put together, making the spoofs more enjoyable.<br /><br />One thing though, the film features more than the last one of promising young actress Anna Faris (whom I will admit seemed exceptionally hot in the sequel). Just for her casting and acting ability, I give this movie a \"\"3\"\" out of \"\"10\"\".\"\r\n1\tI was on France, around March 05, and I love to go to this Film Festivals. I knew about this Cinémas d'Amérique Latine de Toulouse, but I've never went to it. I decided to go and then I caught Cero y van 4. <br /><br />The film is stunning. It doesn't caused the impact on me like with the Mexican users, because it was french-subtitled but it's still shocking.<br /><br />This film is a satire about urban violence, about kidnapping and crime on the streets in Mexico. It is a crude portrait of the city. Of a Metropolis. Secuestro Express, with a stunning Mia Maestro, which was also a satire of kidnapping, almost, but with a more serious tone has, and I think so, some kinda connection with Cero y van 4. A, sort of, redemption story and that how much is too much? Man on Fire, that was stunningly strong, was also, not a satire, but a crude portrait into the streets of Mexico. Or it is like The Brave One. A film that shocks and hits you in the guts very hard. This is like The Usual Suspects, it has some plot twists and turns, but that makes it even more believable. Verdict: A film that shocks and makes you believe that there's no security on the streets anymore. Stunning dialogue, impressive direction and astonishing performances. Cero y van 4 is a film that you won't forget soon. Leaves you shaking and stunned.\r\n1\tI saw this movie last night after waiting ages and ages for it to be released here in Canada (still only in limited release). It was worth the wait and then some. I am a very avid reader of Margaret Laurence and was excited to see that this novel was being turned into a film. I actually ended up liking the movie better than the novel. I liked that the character of Bram Shipley was a bit less harsh, and that there seemed to be more of a love story between Hagar and Bram, which made the scenes at the end of Bram's life that much more moving. The loss seemed stronger. Hagar was not any more likable on film than in the book, but Ellen Burstyn was a genius in this role. She WAS Hagar through and through. Christine Horne was brilliant and has many more great things ahead I am sure. Her scenes with Cole Hauser were electrifying. I could go on and on, overall a 9 * out of 10. Fantastic and can't wait for it to come out on DVD, a must own for my collection!\r\n0\t\"...and even then, even they can live without seeing it. To be honest, this film (if one deigns to call it that) is of real interest only to bondage freaks. Bettie Page fans will learn absolutely nothing new (and I do mean *nothing*), nor will they enjoy the warm fuzzies of experiencing anything familiar, loved, or cherished.<br /><br />Nevermind the abysmal screenplay, the wooden, less-than-community-theater acting, the utter absence of direction, the crappy lighting, or any of the rest of the bargain basement production values. This is definitely \"\"Hey, kids, let's make a movie!\"\" movie-making of the lowest order. I suppose one could be thankful that at least they knew how to run the camera. No, I'm sorry to say that none of that is germane to why this thing is so outright *wrong*.<br /><br />It's wrong because the young lady playing Bettie Page, a somewhat zaftig girl whose only resemblance to the Queen of Curves is dark hair and the trademark bangs, utterly fails to bring anything to the role beyond a willingness to be bound and gagged. This is apparently a good thing for her film career before and since this wretched excess, but not for the wretched excess itself, which consists primarily of a number of lovingly re-enacted B&D set-pieces sandwiched between horrendously awful faux-biographical scenes delineating Ms. Page's fall from grace (so to speak). There's actually probably more information, per se, about Page's life in the opening and closing credits than the rest of the movie.<br /><br />Do not be fooled. This is not a worthy companion film to \"\"The Notorious Bettie Page.\"\" This is not a worthy film at all. This is a fetish piece that trades on the allure of one of the greatest pin-ups of all time, and does it without class, without style, and without any real sense of understanding the character of Bettie Page whatsoever. No true Bettie Page fan will find it to be anything but a disappointment, I guarantee that.<br /><br />Avoid at all costs. If free, remember that time is money, too. Yours may not be worth much, but I'm betting it's worth enough that you'll be sorry you wasted time with this one. That's it, I'm done, you've been warned.\"\r\n0\t\"Can I Do it 'till I Need Glasses? at the very least proves the point that anyone can make a movie. Talent is not a consideration. The folks who unleashed this wretched pile of spewing vomit upon the world, lack any semblance of talent, taste or intelligence. The target audience must consist of the recently labotimized, and infants who play with their own feces. Anyone else would be far too world wise to get even a snicker out of this film. It consists of a series of sophmoric skits in which the punchline does not even extend to the obvious. It ends at the ludicrous. The jokes told are the types of jokes that elementary school children tell (usually potty or sexually related) where they don't know the meaning of all of the terms they use. You know, like the one about daddy's car and mommy's garage. To apply any sterner method of criticism would be pointless, since the usual standards of acting, writing, direction and such have never even been heard of by the creative \"\"minds.\"\" behind this mess. Not to be judgemental, but anyone who enjoyed this film should seriously reflect upon their purpose on this earth.<br /><br />\"\r\n0\t\"Kevin Kline and Meg Ryan are among that class of actors which I am always interested in seeing, despite reviews. I have always found Ms. Ryan to be a charming and winsome actress in nearly all her roles, and Kevin Kline is almost always worth watching.<br /><br />I say \"\"nearly\"\" and \"\"almost\"\" in large part because of this movie.<br /><br />First off, Meg Ryan does not play a likeable character, she plays a weak-willed whiner who begins grating on your nerves shortly after the opening credits and doesn't give up until several days later. That said, Kevin Kline's character is even more annoying and less likeable. So, even if you normally like these two actors, I recommend your give this movie a pass.\"\r\n1\tThis was one of the funniest and greatest sitcom to hit national television. Its unfortunate that the show is not placed amongst great sitcoms where it truly belongs. The actors did a superb job and seasons one thru six were the show at its peak point. Although season seven was not as great when compared to the previous six, it was still funny. Season 8 was the real problem kicked in. Without Topher grace or Ashton Kutcher the show simply fell apart. Not too say, the other actors weren't great if any of 2 main characters had left such as Danny Masterson, Wilder Valderamma Kurtwood Smith, Debra Jo Rupp, Mila Kunis and Laura Prepon ( Don Starks and tommy Chong are great too) left the show it would have the same affect. And the inclusion of Randy ( Josh Meyers) didn't help either because he was not well received by the shows fans. I believe if the show ended a year ago it would have certainly gone down in history as one of the sitcom greats. Season 8 was a little dull but the finale was excellent. I am going to miss the show, i just hope i wake up one day to find out the show is back as That 80's show with the same cast because i am going to miss the hell out of it.\r\n1\tTo all the miserable people who have done everything from complain about the dialogue, the budget, the this and the that....who wants to hear it? IF you missed the point of this beyond-beautiful movie, that's your loss. The rest of us who deeply love this movie do not care what you think. I am a thirthysomething guy who has seen thousands of movies in my life, and this one stands in its own entity, in my book. It was not supposed to be a documentary, or a completely factual account of what happened that night. It is the most amazing love story ever attempted. I know that it is the cynical 90's and the millennium has everyone in a tizzy, but come on. Someone on this comments board complained that it made too much money! How lame is that? It made bundles of money in every civilized country on the planet, and is the top grossing film in the planet. I will gladly side with the majority this time around. Okay, cynics, time to crawl back under your rock, I am done.\r\n0\t\"As someone who was staggered at the incredible visuals of \"\"Hero,\"\" I was anxious to see this film which was billed as being along the same lines, but better. It also featured an actress I like: Ziyi Zhang. Well, I was disappointed on both counts. I bought the DVD of this film sight-unseen, and that was a mistake. It was not better.<br /><br />I realize these flying-through-the-air martial arts films are pure fantasy but this story is stretched so far past anything remotely believable it just made me shake my head in disappointing disbelief. A blind woman defeating hundreds of opponents? Sorry, that's going a little far. Also, the major male character 'Jin\"\" (Takeshi Kaneshiro) was so annoying with his dialog, stupid look on his face and stupid laugh, that he ruined the film, too.<br /><br />Despite the wonderful colors and amazing action scenes, this story - to me - just didn't have an appeal to make it a movie worth owning. This film is no \"\"Hero\"\" of mine!\"\r\n0\t\"I guess this goes to prove that Joe Don Baker will do anything for a buck. The concept of the film wasn't very good to start with. This movie has so many bad things about it I don't know where to start. The acting is horrible. The cinematography is marginal at best. The soundtrack was pretty bad. The score is terrible. There's a reason why this movie ended up on Mystery Science Theater 3000. I voted before I wrote this and I cannot believe that 9 people actually thought this \"\"film\"\" is excellent. They must have liked the two go-go dancers. Final justice would be if they locked this stinker in the film vault outside Wichita and never let anyone see it again! A 1 out of 10 rating is far better than this deserves.\"\r\n1\t\"In a time when Hollywood is making money by showing our weaknesses, despair, crime, drugs, and war, along comes this film which reminds us the concept of the \"\"Indomitable Spirit\"\". If you are feeling beaten down, this movie will free your mind and set you soaring. We all know how tough life can be, sometime we need to be reminded that persistence and courage will get us through. That's what this film did for me and I hope it will for you.\"\r\n0\tThree Russian aristocrats soak up the decadence of Monte Carlo, despite the fact they are down to their last franc. In order to support their lavish lifestyle, the three use the services of a counterfeiter, and use the notes at the casinos, hoping to exchange the bogus currency for a jackpot. Andrew Hughes, a US envoy, arrives at Monaco with his wife Helen, and the three decide to make pals with the visitors, hoping for financial assistance. One of the three Russians, Count Sergius Karamzin, plans to go further, with continuous advance towards Helen, while disappointing the Count's maid, who loves Sergius. Eventually, circumstances play their hand against the three aristocrats. Its obvious that Von Stroheim was trying to convey a message (with the foolishness of American women and the improper behaviors of the aristocrats), rather than tell a story, and the film really can bore modern audiences, like me, easily by doing that. Even the acting, which is great in later EvS like Greed and the Wedding March, is just run of the mill here. The film could have used improvements on various levels. Rating, 3.\r\n1\t\"Don't let my constructive criticism stop you from buying and watching this Romy Schneider classic. This movie was shot in a lower budget ,probably against the will of Ernest Marishka, so he had to make due.For example england is portrayed as bordering on Germany.BY a will of the wisp Victoria and her mom are taking a vacation to Germany by buggy ride alone.They arrived their too quick. This probably could not be helped but the castle they rented, for the movie, was Austrian. When she's told that she's queen she goes to the royal room where the members of the court bow to her, where are the British citizens out side from the castle cheering for their new queen? Why ISBN't she showing her self up to the balcony to greet her subjects ?Low budget!Where the audience back then aware of these imperfection? I wonder how the critics felt?Durring the inn scene she meets prince Albert but ISBN't excited about it. Durring the meeting in the eating side of the inn your hear music from famous old American civil war songs like \"\" My old Kentucky home\"\" , and \"\"Old black Joe\"\". What? civil war songs in the 1830's? Is Romy Schneider being portrayed as Scarlet?Where's Mammy? Is Magna Shnieder playing her too? Is Adrian Hoven Rhett or Ashley? What was in Marishka mind?Well this add to the camp.It's unintentionally satirizing Queen Victoria'a story. This is the only reason you should collect it or see it 03 11 09 correction Germany and england are connected\"\r\n0\t\"i was enjoying this movie most of the time, but i kept getting the feeling that i was watching a children's movie. i honestly think that somebody wrote a pg script and then, while filming, decided to add in some blood, nudity and language. it was a big let down. there's that believe the children magic that exists in movies like \"\"babe\"\" (the pig) or \"\"angels in the outfield\"\" that defeats the evil tooth fairy. the parents end up believing their daughter about her ability to see the ghost and utilize this skill to supernaturally defeat the tooth fairy. when i bought this movie, i thought it would be a b-film response to the dreadful darkness falls; somehow manage to make a better film with 1/4 of the money, but they don't. they made a worse film and will probably lose the same proportion of money lost on darkness falls.\"\r\n0\tI really must watch a good movie soon, because it seems every other entry or so is something that I despise. However my history speaks, I must not tell a lie. Bobby Deerfield and everything about it sucks big green banana peels. I never thought that I would see a film thud as thunderously as this one did. Al Pacino isn't acting in this film: he's posing. There are many, many scenes of his character, who is a race car driver, just staring at the camera. He's perfectly awful. Marthe Keller is just as bad. These two are supposed to be in a love affair, and there is simply no chemistry whatsoever. Sydney Pollack directed this film? There's no trace of the genius behind Tootsie here. Is this the same man I cheered for in Eyes Wide Shut? I can hardly believe it. Save yourself a horrible movie experience. Run, don't walk, away from Bobby Deerfield.\r\n1\tWhat can i say about a tale such as this? This magical tale has followed me from my early childhood,evoking warm memories in my heart.The characters take you to to so many whimsical places making you want more of each scene. For example in the market there were so many different flavors of lore. I loved the exotic dancers that accompanied the steel drums.<br /><br />The story line was wonderful.I wanted so badly for Landsbury to decide to keep the precocious children and for her to also stay with Mr.Brown,and find the other half of the spell so that the men less armor could win the war.<br /><br />I am still a child inside,and this movie appeals to my inner child like no other. This movie is my definite favorite of all times. I hope that all children will be able to watch this classic and be swept away,and transported into another time.\r\n0\t\"Wow it's ironic since this movie has been out for awhile I think that someone else JUST reviewed it a couple days ago.<br /><br />Anyways, I watched this movie simply because it has Nick Stahl, for the record.<br /><br />The movie was ridiculous. The characters drove me INSANE, they were SO Cliché and STEREOTYPED. This movie had some of the worst dialogue I have ever heard. It had way too many plot twists too.<br /><br />There is ONE scene in the movie worth seeing however, the scene: \"\"Warm heart, cold gun\"\" where Nick Stahl kills the obnoxious girl in the shower. (Well, actually they were all obnoxious.) But his acting in that scene was excellent. The look on his face, it reminded my of American Psycho (a good movie). The scene is worth seeing but not worth seeing the rest of the movie for, do yourself a favor and don't watch it.\"\r\n1\tThis is a great example of a rather simple Film Noir story that is handled exceptionally well--thanks to excellent direction by Otto Preminger as well as some lovely acting performances. Dana Andrews stars as a hot-headed detective who all too often uses his fists instead of his brains. Soon after the film begins, Andrews is being reprimanded for this and is warned that if this continues he'll be off the force. A bit later, while investigating a crime he's attacked by a suspect and Andrews is forced to fight to protect himself. This time he does NOT use excessive force but the assailant is killed. Andrews panics and assumes they won't believe him so he tries to cover up the death--though instead an innocent man is ultimately blamed for the crime.<br /><br />There's a lot more to the film than this--including a plot involving a slimy villain (Gary Merrill) and a love interest for Andrews (Gene Tierney). All in all, this is one of the better examples of the genre--with great gritty dialog, superb lighting and a simple yet very effective story. This is the way Noir was meant to be.\r\n0\tI have read the novel Reaper of Ben Mezrich a fews years ago and last night I accidentally came to see this adaption.<br /><br />Although it's been years since I read the story the first time, the differences between the novel and the movie are humongous. Very important elements, which made the whole thing plausible are just written out or changed to bad.<br /><br />If the plot sounds interesting to you: go and get the novel. Its much, much, much better.<br /><br />Still 4 out of 10 since it was hard to stop watching because of the great basic plot by Ben Mezrich.\r\n0\t\"This Paramount version/ripoff of OKLAHOMA!/ANNIE GET YOUR GUN/CALAMITY JANE isn't all that unusual or innovative. The marketing and intro comments may be there to salvage what is really a pretty bad movie musical western shot on a soundstage and like a live TV show. I don't find the use of the background cyclorama, lit in various scenes with yellow, or pink, or red, or....all that innovative. As noted, it looks more to me like a movie that was produced on a TV budget: All soundstage, with minimal sets backed by the lighted cycs! (Compare to NEW FACES (OF 1952). The actors come off reasonably well, though. And this style was much better realized when Paramount shot LI'L ABNER in 1959. Of couorse, this movie suggests the often repeated question: \"\"what were they thinking?\"\"\"\r\n0\t\"When robot hordes start attacking major cities, who will stop the madman behind the attacks? Sky Captain!!! Jude Law plays Joe Sullivan, the ace of the skyways, tackling insurmountable odds along with his pesky reporter ex-girlfriend Polly Perkins (Gwyneth Paltrow) and former flight partner, Captain Franky Cook (Angelina Jolie).<br /><br />Sky Captain and the World of Tomorrow may look and feel like an exciting movie but it really is quite dull and underwhelming. The film's running time is 106 minutes yet it feels so much longer because there is no substance in this movie. The visuals were great and the film did a nice job on that. However, there is nothing to support these wonderful visuals. The film lacks a story and interesting characters making the while thing quite dull and unnecessary. I blame director and writer Kerry Conran. He focuses too much on the visuals and spent little time on the actual story. The movie is like a girl with no personality, after awhile it kind of gets bland and tiring. Sky Captain represents a beautiful girl with no personality. It's simply just another case of style over substance.<br /><br />The acting is surprisingly average and that's not really their fault since they had very little to work with. The main reason I watched this movie is because of Angelina Jolie. However, the advertising is quite misleading and she is only in the film for about 30 minutes. Her performance is surprisingly bland as well. Jude Law gives an okay performance though you would expect a lot more from him. Gwyneth Paltrow was just average, nothing special at all. Ling Bai's performance was the only one I really liked. She gives a pretty good performance as the mysterious woman and she was the only interesting character in the entire film.<br /><br />The movie is not a complete bust though. There were some \"\"wow\"\" and exciting scenes. There just weren't enough of them. The film just doesn't have that hook to really make it memorable. It was actually quite bland and it wasn't very engaging at all. It's too bad the film wasn't very good since it had such a promising premise. In the end, Sky Captain is surprisingly below average and not really worth watching. Rating 4/10\"\r\n1\t\"Let us begin by saying that this film's English title \"\"The Power of Kangwon Province\"\" is an absolute misnomer.It is because in Hong Sang Soo's film,there are no actual shots of wars,troubles and conflicts.So the idea of establishing power of a province is neither suitable nor valid in the context of this film.If we were to judge this film by its Korean language title,\"\"Kangwon-do ui him\"\" is going to appear as a cryptic statement about emotional turmoils of its young protagonists whose minds are not at rest.Hong Sang Soo has also directed a highly prolific visual document about erratic choices made by people in their lives.The people in question are a couple of young girls who are constantly in the process of displaying their moods,whims and fancies. If making a film out of nothingness can be claimed as a film maker's meritorious virtue then Hong Sang Soo has to be saluted as a courageous film maker whose films speak volumes about ubiquitous nothingness of human relationships,sentiments and lives.Whether one likes it or not,this is the only fair conclusion that be deduced from this particular film.\"\r\n1\t\"This is one of the most calming, relaxing, and beautifully made animation films I've ever seen. With beautiful music throughout the movie, the sounds and music can make you feel like you're in the movie! This movie is not just great for kids, but adults too. It teaches you lessons, such as never forget who you are, you can do whatever you stick your mind to, and to brave and daring. This movie can make you cry at times too, which is always a nice touch in movies. This movie is funny, sad, cute, and keeps you on the edge of your seat! Some movies really give you a fuzzy feeling after you see them, and the movie \"\"Spirit\"\" is definitely one of them! With my vote of 9/10 stars for animation, music, and a wonderful idea for a movie, it gave me a whole lot of Spirit!\"\r\n1\t\"Men of Honor has many great aspects to it. Good action sequences, plenty of \"\"feel good\"\" scenes, a good musical score, but the part that really makes the movie is the great acting. Mostly by Robert Deniro. The story of Men of Honor is focused about Carl Brashear played by Cuba Gooding Jr. who wants to be the first African American deep sea diver in the navy. It chronicles his rough struggle from being a poor farmer to getting into diving school and even further. It is a good story, but it seems like it has been done many times before. A person, against all of the odds, won't give up until they accomplish their goals that they set for some sentimental reason many years ago. It could happen, but a lot of the struggles the Brashear faces in the movie are questionable including the C.O. of the diving school tampering with his final test. However, all of that is made up for the scene when Robert Deniro finally enters the movie. Deniro plays Mater Chief Sunday who is the teacher at the diving school Brashear is attending. As soon as Deniro come in he omits this vibe of extreme arrogance that you can't hate unless you have incredible wilpower. Before the movie ends, Deniro gives off multiple speeches that would have you laughing at how cool he is but you are too stunned at the way he punches them out. In the end you must doubt some of the aspects of the film, but admit it, if it was all the truth, it would have you snoozing it your seat by the first twenty minutes.\"\r\n1\tIf any movie stands out extremely with the actors' acting skills, this is probably the one. I've never seen dialogues be spoken in such a rough way, but having a strong feeling. The movie was disturbing at moments. However, the movie was terrible at editing. The movie tries to go the commercial way by adding comedy and songs, yet they feel out of place. Like Karisma is getting beat up, and the same time SRK is fighting (comically) with the police officers. The Ishq Kamina song was very out of place. On top of that, the movie is overly glossy in the beginning. The direction was not bad, but certainly nothing one can brag about.<br /><br />I have to say that the actors' were chosen very wisely. Without them, this movie would not have an impact. Karisma Kapoor has given her best role to date, and this looks very good on her record after Zubeidaa and Fiza. She looks pretty in the first half, and I've never seen an actress scream of emotion and anger as well as her. What is most ironic is this is probably her weakest written role to date. Nana Patekar was excellent as her father-in-law. Not much to say about him, besides this is a role made for him. Deepti Naval as the mother-in-law was excellent especially in her final scene. Though she doesn't have much to say, her facial expressions and body language was good. The other good performance was the little kid. He was adorable, and is sure to bring tears to the viewer's eyes. The movie was probably saved desperately by their performances. Sanjay Kapoor was all right, but he didn't have much to do. Shahrukh Khan was wasted in his bad boyish type role. <br /><br />One thing that brought the audience to the theater was Ishq Kamina. The song picturization and dancing is perfect for the crude lyrics of the song. And boy Aish is mad hot. However, the song belonged to be in another movie only because it came at the worst moment ever. People may have come to the movie for Aish, but they won't brag too much about it after-wards. Hum Tum Miley was properly paced, but seemed to drag as the suspense mood was leaving throughout the movie. Damroo Bhaje was boring and nothing to rave about. Dil Ne Pukara is too boring of a song to get the mood of the movie. Despite the poor editing, the performances alone make it a must see.\r\n0\t\"This version is likely available at your local dollar store on DVD. The print is not great, nor is the sound, but if you have $1.00 and 90 or so minutes to spare, you'll get your money's worth (which is not saying an awful lot). Anna Neagle is extremely vapid as Nanette. Whatever her charms may have been back in the day, they are not evident in this film. A great number of fine character actors appear in this film (Helen Broderick, Zasu Pitts, Even Arden), but the material falls remarkably short of their talents. Still, it is interesting to see how such accomplished performers make the most of the weak writing. The musical numbers (there are really only two) are quite horrible. Clearly the studio did not feel compelled to cash in on the rich musicality of the original \"\"No, No, Nanette\"\". For what it's worth, the DVD can be had for $1.00. It's worth that much just to say you've seen it.\"\r\n1\tStargate is the best show ever. All the actors are absolutely perfect for there roles. I love the connection between the characters. If you have not seen this show I very highly recommend it. Although this program is compared to Star trek a lot of the time it actually can't be because it is completely different. I am a star trek fan but i would definitely rate this show well above any of the star treks. Unfortunately I live in New Zealand and we do not get Stargate on our TV so if i want to see it I have to buy the DVDs and season 10 is not out here yet so i can not see it for quite some time (which is highly depressing). However this program is very very good and is a must see, but be warned it is highly addictive. So in summery I Love Stargate (and Amanda Tapping).\r\n1\tPaul Verhoeven's predecessor to his breakout hit 'Basic Instinct' is a stylish and shocking neo-noir thriller. Verhoeven has become known for making somewhat sleazy trash films, both in his native Holland and in America and this film is one of the reasons why. The Fourth Man follows the strange story of Gerard Reve (played by Jeroen Krabbé); a gay, alcoholic and slightly mad writer who goes to Vlissingen to give a talk on the stories he writes. While there, he meets the seductive Christine Halsslag (Renée Soutendijk) who takes him back to her house where he discovers a handsome picture of one of her lovers and proclaims that he will meet him, even if it kills him.<br /><br />Paul Verhoeven twists the truth many times in this film, and that ensures that you never quite know where you are with it. Many of the occurrences in The Fourth Man could be what they appear to be, but they could easily be interpreted as something else entirely and this keeps the audience on the edge of their seats for the duration, and also makes the film work as this narrative is what it thrives on. Paul Verhoeven is not a filmmaker that feels he has to restrain himself, and that is one of things I like best about him. This film features a very shocking scene that made me feel ill for hours afterwards (and that doesn't happen very often!). I wont spoil it because it needs the surprise element to work...but you'll see what I mean when you see the film (make sure you get the uncut version!). There is also a number of other macabre scenes that are less shocking than the one I've mentioned, but are lovely nonetheless; a man gets eaten by lions, another one has a pipe sent through his skull, a boat is smashed in half...lovely.<br /><br />The acting in The Fourth Man isn't anything to write home about, but it's solid throughout. Jeroen Krabbé holds the audience's attention and looks the part as the drunken writer. It is Renée Soutendijk that impresses the most, though, as the femme fatale at the centre of the tale. Her performance is what Sharon Stone would imitate nine years later with Basic Instinct, but the original fatale did it best. Paul Verhoeven's direction is solid throughout as he directs our attention through numerous points of view, all of which help to create the mystery of the story. Verhoeven has gone on to make some rubbish, but he obviously has talent and it's a shame that he doesn't put it to better use. Of all the Verhoeven films I've seen, this is the best and although it might be difficult to come across; trust me, it's worth the effort.\r\n0\tI am from the Dallas/Fort Worth area and lived in Arlington for a few years. This movie was way off as far as making it look like Arlington. I saw mountains in the background of one scene! Texas doesn't have mountains. I guess that happens when a movie that is supposed to be in Texas is filmed in Canada. The accents are also really bad. They should have gotten actors from Texas to play the parts. There a lot of aspiring actors from Texas out in Hollywood. The movie is really sad though, because it is a true story. I pray that the killer is found and convicted. The one good thing is that bc of her death, we now have the Amber Alert to help find missing children quickly after they are abducted.\r\n0\tI didn't know Willem Dafoe was so hard up for bucks that he'd disgrace himself with such shocking hamming in this monstrosity. Hell: I'll donate that money that I was going to send to Ethiopia if he's that desperate. I have never seen such a pathetic and disgusting film for a long time...who paid for this? They are either pulling some tax scam or insane. A 5-year old would be ashamed of the plot, and I'd rather get cancer than sit through more than the hour I suffered already. Everybody involved should be locked up for a year in the sodomy wing of a third world prison. Avoid at all costs. I'd give it minus 10 if possible...unbelievable.\r\n0\t\"This film is about a Japanese woman who has an obsession with calligraphy on skin.<br /><br />The plot is absolutely bizarre. I fail to see any \"\"sensual\"\" or \"\"erotic\"\" undertones. The plot turns an ancient art form into a fetishistic pornography. In addition, the scenes that are filmed in Hong Kong are certainly portraying bad parts of Hong Kong, such as the airport in the middle of the city, poor living conditions and noise pollution. Throughout the whole film, I keep thinking that \"\"The Pillow Book\"\" is insulting the Japanese culture and the Hong Kong environment.<br /><br />\"\"The Pillow Book\"\" is a perverted, yet boring film. Seriously stay away from it.\"\r\n1\t\"At first,this movie seems so bad that i almost fell in a trance the first time i saw it.It was like a bad dream.A cosmic bore.But i gave it a second chance,then another and another,etc...I finally got addicted to this film,due to it's dreamlike slow pace,wonderful natural sets,bathed in a mellow autumn light and especially the musical score,which is made of some 70's progressive rock and absolute exquisite folk songs by actor/singer/songwriter Derek Lamb(the Troubadour).You should notice the song about hazel wood,silver trout and lady vanishing in the air...,heard in the middle and near the end of the film.There are some carnal scenes in the beginning ,wich allow us to appreciate the natural charms of Elizabeth Suzuki.If that movie had been made by some \"\"repertoire\"\" directors like Bergman,Lars Von Triers or Jean-Luc Goddard,critics would have rolled on the floor,raving about that movie as if it were a cosmic masterpiece.I personally think this film is one million times superior to any of Fellini's cinematic sh#¤@t!Definitely not for the pretentious.\"\r\n1\t\"For a mature man, to admit that he shed a tear over this film is a mature response, to a mature film.<br /><br />If one need admit more then perhaps one could say that, \"\"Life\"\" can never be the same, after viewing such advent for it has moved us to the next level.<br /><br />\"\r\n1\t\"\"\"My child, my sister, dream <br /><br />How sweet all things would seem <br /><br />Were we in that kind land to live together, <br /><br />And there love slow and long, <br /><br />There love and die among <br /><br />Those scenes that image you, that sumptuous weather.\"\"<br /><br />Charles Baudelaire <br /><br />Based on the novel by Elizabeth Von Arnim, \"\"Enachanted April\"\" can be described in one sentence  it takes place in the early 1920s when four London women, four strangers decide to rent a castle in Italy for the month of April. It is the correct description but it will not prepare you for the fact that \"\"Enchanted April\"\" - an ultimate \"\"feel good\"\" movie is perfection of its genre. Lovely and sunny, tender and peaceful, kind and magical, it is like a ray of sun on your face during springtime when you want to close your eyes and smile and stop this moment of serene happiness and cherish it forever. This is the movie that actually affected my life. I watched it during the difficult times when I was lost, unhappy and very lonely, when I had to deal with the sad and tragic events and to come to terms with some unflattering truth about myself. It helped me to regain my optimism and hope that anything could be changed and anything is possible. I had promised to myself then that no matter what, I would pull myself out of misery and self-pity and I would appreciate every minute of life - with its joy and its sadness...I promised myself that I would go to Italy and later that year I did and I was not alone.<br /><br />Charming, enchanting, and heartwarming, \"\"Enchanted April\"\" is one of the best movies ever made and my eternal love. This little film is a diamond of highest quality.\"\r\n1\t\"Well, for starters, this actually was THE most elegant Clausen film to this date.<br /><br />The man's always got a sense for characters with a slice of humor to them, but I think that he in this movie adds a dimension unparrallel to anything he's made earlier. His work has - in very black n' white words - been accepted by the broad but not that critical audience, and we've always appreciated his sense of humor and his ability to mix it with human problems and a distinct way of letting the audience know what he needs to say.<br /><br />In \"\"Villa Paranoia, however, for the first time, he surprises with an unseen wisdom and a respect for the minorities. Not only the ethnic but also the normal people you tend to forget. Set in Jutland - in 'the country' - it deals with the everlasting issue of lack of love, but in a close and at times brutal way that keeps you looking and keeps you focused. And on top of that, he himself manages to play a b******d! A true b*****d, who wants the right thing but has no clue how to get there, and people therefore suffer. Bitterly.<br /><br /> I'd have to say it's one of the best movies I've seen this year and I'm greatly anticipating his next.\"\r\n1\t\"Watched both parts twice. Enjoyed the story and enjoyed seeing an older Patrick Swayze as the hero. He was very believable as the hunter Alan Quartermaine and certainly bested the performance of Richard Chamberlain. I do admit that I would have preferred seeing someone else as the \"\"Lady in Distress\"\". Alison Doody should stick with modern and not period pieces. She didn't have the look of the woman of the 1800's. The rest of the cast were terrific and followed the plotlines very well. I am glad to see that the actors of this generation are not afraid to try on different characters and are not afraid to be seen as getting older. Age is inevitable, but let's not hide from it. A man at 50+ can be much sexier (and , Patrick truly is sexy) then a green youth, no matter how pretty. Hoorah for character lines to go along with a great smile.\"\r\n1\t\"I've been watching \"\"Dick Tracy\"\" for years, and as a result it's become a vital part of my life - it was with me throughout childhood and I used to see it quite often. Seeing it now, as an adult, it's still a very good movie - dark, satiric and incredibly misunderstood. About the only thing that can be said is the Oscar nomination Pacino received - other than that it is rarely discussed and didn't make much of a fuss when it came out.<br /><br />Pacino is over-the-top but to good effect as he's clearly having loads of fun. Beatty is great as Dick Tracy and behind the camera manages to capture the atmosphere of a film noir comic book better than any other film, possibly, I have ever seen. Just taking a look at one scene from the film is breathtaking. The lighting, velvet overtones and smog/smoke combine to create a great effect.<br /><br />There are some really funny cameos including one by Dustin Hoffman as \"\"Mumbles,\"\" and I don't think there are any flaws at all in terms of acting - even the mandatory kid-character is far better than expected.<br /><br />Overall, a really fine movie that has become misunderstood over the years since its release and is incredibly underrated with only 5.7/10 average on IMDb. The critics' reviews are very positive (check out RottenTomatoes.com) and after seeing the film once again it's not hard to see why - this is a perfect example of capturing the essence of a comic book, from style to eccentricity.<br /><br />Highly recommended. 4.5/5 stars.\"\r\n0\t\"Standard \"\"paint-by-numbers\"\" monster fare, filled with a bunch of routine plot devices from big-creature movies. It's like somebody had a deck of cards with plot ideas from other movies written on them, which were shuffled, and dealt. Whatever plot lines and characters came up in the deal were then tossed into the script. <br /><br />Characters are so cliché-ridden, that you can play a game of \"\"Guess who ends up as a monster meal\"\" after less than ten minutes into the movie, and probably get every single one right--including the order that they will get devoured. Many of the characters are so obnoxious, that you root for the creature to shut them up. Some of the main characters include: a Billy Idol clone who surfs with sharks, a loudmouth brat who flashes bankrolls, a Capt. Ahab guy with a vendetta, and Ahab's girlfriend who does sleazy dances at a bar. Oh, and a big, big beast in need of anger management therapy.<br /><br />Along the way, people argue a lot, pretty girls run around with wet t-shirts, couples make out on exotic beaches, explosions occur, ruins of a shrine appear, and greasy-faced pirates drop by. <br /><br />Amusing, for the most part, but one thing bothered me: the callousness by characters when other people were killed. After one violent demise, they make one-liner jokes. I could almost hear rim shots.<br /><br />Overall, OK, if you have 90 minutes to waste, and you want to laugh at a so-bad-it's-good-movie. Otherwise, you may want to skip this one.\"\r\n0\tVan Damme. What else can I say? Bill Goldberg. THERE WE GO. NOW we know this movie is going to be really horrible.<br /><br />I saw the first five minutes of this movie on TBS, knowing it would be bad. But not even I thought it would be THIS bad. The plot is awful, Van Damme is getting old (finally), but unlike Arnold, his movies are as well.<br /><br />Forget this movie. Don't see it. Ever. I wouldn't even be paid to see this film.<br /><br />1/5 stars - at its heart lies a wonderful, action-packed thrill ride.<br /><br /> Well, maybe not, but the marketers would sure like us to think so, wouldn't they?<br /><br />John Ulmer\r\n0\t\"Saw it at UCSB's reel loud festival and was *shocked* that it won the golden reel award. I wasn't the only one, considering the audience had mixed reactions to the piece. I thought there were many other better flicks out there, but then I learned that the judges were heavily rooted within the area of film theory and other artsy crap. While the cinematography and editing are on par with many other shorts out there, the storytelling is nothing more than your average student piece. Seems as though \"\"serious\"\" student films need to include one of these categories: sex, intrapersonal struggle, and eventual suicide -- Nick and Kate cops out and includes all three. Please, be more original!<br /><br />Oh, and it might be my outsider's opinion, but the guy from montecito sounds a little fake. Does anyone else thing so?\"\r\n0\tTruly bad and easily the worst episode I have ever seen....ever.<br /><br />They tried to make up for it by giving it the, 'we know we are doing this' routine. That would have been funny if it weren't for the fact that 'The Simpsons' had already done it. And it still wouldn't make up for it if they had come up with the idea in the first place.<br /><br />The flashbacks took place as part of the usual character's (mainly J.D's) fantasies. The flashbacks weren't even of actual events that occurred, just compilations of say, J.D falling over or, i don't know.... Elliott falling over. If I wanted to watch a Scrubs compilation i'd go on youtube and not waste half an hour of my life.<br /><br />Scrubs has ultimately fallen into the trap that most sit-coms have to, and it disappoints me, they managed to go 5 and a quarter seasons without an episode like this. <br /><br />I was hoping that scrubs wouldn't have to be that kind of sit-com.<br /><br />And just as a passing thought, why the hell was Dr.Cox bald?\r\n1\tAn excellent depiction of one of the more unwholesome aspects of that era. I loved the visuals--very fitting for a story connected to a graphic novel.<br /><br />I thought Tom Hanks was really great in this, he came across very well as someone who has been hardened by his work (which he didn't fully choose for himself) but still wants to have a normal life for his family. He does the best he can to see that happen. DOn't want to spoil the plot--but YOU HAVE TO SEE this movie if you are a person who wants more from a movie than the usual shoot 'em up action/gangster format. (It is violent though.)\r\n1\t\"I really didn't expect much from this movie, but it wasn't bad; actually it was quite good. This movie contained a couple of the funniest bits of writing I have ever seen from a motion picture. Now am not saying this is one of the funniest movies of all time, but I laughed pretty hard at some parts. \"\"The police ruled my father's death a suicide. They said he fell down an elevator shaft. Onto some bullets\"\". Now this movie is not for everybody, its mostly stupid humor like Zoolander or Dodgeball; so if you hated these movies I would probably recommend you to steer clear. Overall it was an enjoyable movie, about a group of superhero wannabes, who end up becoming real heroes in the end. It's a vastly overrated comedy that many people probably haven't seen yet, because like me before viewing it expected it to be utter garbage. After viewing this film, I finally understand why this movie was able to assemble such a superstar cast which includes Ben Stiller, William H. Macy, Hank Azaria, and even that kid from Good Burger. It's because Mystery Man is full of excellent comedic writing period 7 out of 10. A very big surprise.\"\r\n1\tA typical Clausen film, but then again not typical. Clausen writes, directs and play one of the leading roles. This is really a great film about normal people living normal lives trying to make the best of it. The 4 primary actors were fantastic.<br /><br />Fritz Helmut was convincing. You believe that he really is sick.<br /><br />Sonja Richter plays a nurse that really is an actor, but it turns out that she is the best nurse to take care of the old man.<br /><br />Everybody has problems and those who nobody believes in ends up being happy. But nothing good comes easy, they have to fight to win their life and love.\r\n0\t\"I didn't think the French could make a bad movie, but I was, clearly, very wrong. As has been said before, this film essentially uses its title character as a point of departure; its portrayal of her life and person have little or nothing to do with the real Artemisia Gentileschi. <br /><br />The script is awful -- pretentious, stilted, and vapid -- and its rewriting of the facts is unusually offensive even in a genre that all too often makes its living by distorting, rather than retelling, history. Along with some fairly decent set design, Valentina Cervi's physical charms are the primary asset of this movie, and it's obvious from the beginning that the filmmakers were aware of this too; they waste no time in contriving various \"\"erotic\"\" sequences which have far more to do with titillation than with plot or character development. Unfortunately, the appeal of seeing a pretty young girl in a state of feigned sexual arousal cannot, and does not, sustain this movie. The acting is unremarkable, and the score is all too generic despite an interesting chord or two. The cinematography is OK, and there are some pretty colors, but there are also some pretty ridiculous sequences using distorted-lens effects more appropriate for a 1960s freakout movie than a costume drama. In any event, the script leaves the camera dwelling all too often on Artemisia's body, and all too seldom on her paintings.<br /><br />All told, a near-complete failure. It's not intelligent or tasteful enough to be a serious film, and it's too slow and pretentious to work as soft-core pornography. So the French can fail, after all!\"\r\n1\tFirst I would like to say how great this. It is astounding and sometimes shocking. And to say the least I'm 11 years old and this is my favorite movie, I can definitely stand a boring film, but this is anything but boring. It is like a trip through humanity. Its stark realism shows through this monumental masterpiece. It is a heart wrenching tale of two down and outers (VOIGHT AND Hoffman) who build a mutual friendship. Joe Buck (VOIGHT) a naive Texan stud comes to New York to make it rich by entertaining women. Soon he meets Rico 'RATSO' Rizzo (HOFFMAN), who is a poor man barely being able to pay rent. Ratso becomes Joe's 'manager' but soon both men can't find Joe a job which results in stealing food. As they try and survive on the streets of New York we realize how tough it is. They can't get Joe a girl until they meet a lady at a party. Joe makes some money and soon Joe takes Ratso on a Ratso's dream spot, Florida. The final five minutes are heart breaking yet some of the greatest moments in the film. From MIDNIGHT COWBOY we get a stark and sometimes disturbing urban view on life.\r\n1\t\"This film caught me by surprise. My friend told me that this movie was a \"\"chick flick.\"\" Boy, was he wrong! This movie has a great family appeal, with no sex scenes like _other_ movies. Jake Gyllenhaal does an excellent job in Homer Hickam's shoes. The supporting cast is great, as well.<br /><br />Science, coming-of-age, family quarrels, a great train scene... This film has it all. The soundtrack is good, although the score is presented quite choppily. The 50s music kicks the movie over the edge of greatness.<br /><br />The DVD is definitely worth its weigh in coal. Replay value is great - I've seen it quite a few times already.\"\r\n0\t\"I *loved* the original Scary Movie. I'm a huge fan of parody- it is my favorite form of humor. It is sometimes regarded as the most intelligent form of humor. The Wayans boys seemed to grasp that concept perfectly in the original film, then temporarily forgot it when making the sequel. I think the Wayans' are a family of comical geniuses. Alas, even geniuses make mistakes.<br /><br />The movie begins with promise. I liked \"\"The Exorcist\"\" parody, especially the \"\"come on out, ma\"\" gag. Now, that's Wayans-quality material. But, other than that, I can only think of two other times I laughed: 1) when Tori Spelling is seduced in the middle of the night by a spirit, then becomes clingy and starts talking about marriage with him. Meanwhile, he's saying, \"\"It was just a booty call!!\"\" That was kinda funny. 2) The \"\"Save the Last Dance\"\" parody where the Cindy character inadvertently beats up a girl while practicing her new moves. But even the short-lived giggles are no match for the side-splitting laughs of the first Scary Movie.<br /><br />The rest of the movie is pure trash, filled with cheap gross-out gags. Jokes from the first movie which were subtle or implied are magnified and overdone. For example, in Scary Movie I, several innuendos are made to imply that the character Ray is gay. This was hilarious. But, in Scary Movie II, the whole penis-strangulation scene with Ray under the bed was mind-numbing and incredibly unfunny. This is the pattern of the whole film. Shock humor *alone* doesn't take a movie very far. This was a trend in 2000 and 2001, unfortunately. <br /><br />As much as it pains me to rate a Wayans movie so low, I have to give this one a 2 out of 10.\"\r\n1\t\"This picks up about a year after the events in \"\"Basic Instinct\"\". Catherine Tramell (Sharon Stone) is now in London. While having sex with a soccer player while speeding about in a car going at 110 miles/hour (don't ask) she goes off the road and ends up in the Thames. She survives--he doesn't. The police hire psychiatrist Michael Glass (David Morrissey) to see if she's mentally competent to stand trial. Naturally she starts playing with his mind instead and plenty of murders and sex follow.<br /><br />This movie was doomed before it even opened. It took forever to get a cast and director, script problems were constant and the cast was not happy (Morrissey complained about the movie often). Still it's not too bad. It's a lot like the first--there's a lush music score, beautiful locations, plenty of sex and nudity (this had to be edited for an R), a nicely convoluted plot and good acting--but there's no impact. It feels like a retread of the first. People are being killed here with a choker leash (I believe)...just like people were being killed by an ice pick in the first. In one cute moment Stone picks up an ice pick and looks at it longingly. She's also playing mind games with a man and might be getting him implicated in murders. The similarities are too apparent.<br /><br />This is also VERY R rated--there's plenty of explicit sex talk, male nudity (Morrissey looks a lot better nude than Michael Douglas), female nudity (Stone still looks great) and some bloody murders. The acting is good across the board. Stone is just fantastic here; Morrissey looks miserable but is OK; Charlotte Rampling and David Thewlis are good in supporting roles.<br /><br />So--this isn't at all bad but feels like a remake of the first. Still I recommend it. People just attacked this because Stone is not well liked and they thought it was stupid to do a sequel to \"\"Basic...\"\" 14 years after it was made.\"\r\n1\t\"One question that must be asked immediately is: Would this film have been made if the women in it were not the aunt and cousin of Jacqueline Lee Bouvier Kennedy Onassis?<br /><br />The answer is: Probably not.<br /><br />But, thankfully, they are (or were) the cousin and aunt of Jackie.<br /><br />This documentary by the Maysles brothers on the existence (one could hardly call it a life) of Edith B. Beale, Jr., and her daughter Edith Bouvier Beale (Edie), has the same appeal of a train wreck -- you don't want to look but you have to.<br /><br />Big Edith and Little Edie live in a once magnificent mansion in East Hampton, New York, that is slowly decaying around them. The once beautiful gardens are now a jungle.<br /><br />Magnificent oil painting lean against the wall (with cat feces on the floor behind them) and beautiful portraits of them as young women vie for space on the walls next to covers of old magazines.<br /><br />Living alone together for many years has broken down many barriers between the two women but erected others.<br /><br />Clothing is seems to be optional. Edie's favorite costume is a pair of shorts with panty hose pulled up over them and bits and pieces of cloth wrapped and pinned around her torso and head.<br /><br />As Edith says \"\"Edie is still beautiful at 56.\"\" And indeed she is. There are times when she is almost luminescent and both women show the beauty that once was there.<br /><br />There is a constant undercurrent of sexual tension.<br /><br />Their eating habits are (to be polite) strange. Ice cream spread on crackers. A dinner party for Edith's birthday of Wonder Bread sandwiches served on fine china with plastic utensils.<br /><br />Time is irrelevant in their world; as Edie says \"\"I don't have any clocks.\"\"<br /><br />Their relationships with men are oh-so-strange.<br /><br />Edie feels like Edith thwarted any of her attempts at happiness. She says \"\"If you can't get a man to propose to you, you might as well be dead.\"\" To which Edith replies \"\"I'll take a dog any day.\"\"<br /><br />It is obvious that Edith doesn't see her role in Edie's lack of male companionship. Early in the film she states \"\"France fell but Edie didn't.<br /><br />Sometimes it is difficult to hear exactly what is being said. Both women talk at the same time and constantly contradict each other.<br /><br />There is a strange relationship with animals throughout the film; Edie feeds the raccoons in the attic with Wonder Bread and cat food. The cats (and there are many of them) are everywhere.<br /><br />At one point Edie declares \"\"The hallmark of aristocracy is responsibility.\"\" But they seem to be unable to take responsibility for themselves.<br /><br />This is a difficult film to watch but well worth the effort.\"\r\n0\tIf you've ever seen an eighties slasher, there isn't much reason to see this one. Originality often isn't one of slasher cinema's strongpoints, and it's something that this film is seriously lacking in. There really isn't much that can said about Pranks, so I'll make this quick. The film was one of the 74 films included on the DPP Video Nasty list, and that was my only reason for seeing it. The plot follows a bunch of kids that stay behind in a dorm at Christmas time. As they're in a slasher, someone decides to start picking them off and this leads to one of the dullest mysteries ever seen in a slasher movie. The fact that this movie was on the Video Nasty list is bizarre because, despite a few gory scenes, this film is hardly going to corrupt or deprave anyone, and gorier slashers than this (Friday the 13th, for example) didn't end up banned. But then again, there's banned films that are much less gory than this one (The Witch Who Came from the Sea, for example). Anyway, the conclusion of the movie is the best thing about it, as although the audience really couldn't care less who the assailant is by this point; it is rather well done. On the whole, this is a dreary and dismal slasher that even slasher fans will do well to miss.\r\n0\tLiongate has yet to prove itself. Every single movie from lionsgate has been abysmal. i've tried and tried to give them more opportunities and they just keep slapping me over and over again. And Cabin Fever is definitely no exception.<br /><br />I couldn't even pay attention to most of this movie it was so frustrating and bad.<br /><br />here's the plot. Guy cuts up dead dog for some reason. Gets infected by random virus, transfers it to kids at a camp, kids start to get infected and die, town finds out about it and rather than help them, kills them. then the water is infected and everyone dies. the end.<br /><br />Seriously, that's the whole movie.<br /><br />all the characters are completely retarded, you don't care for any of them, and the one kid should have stuck with boy meets world. Me and my friend found that talking about how fat and bitchy our one classmate was to be far more enjoyable than paying attention to this movie. We did manage to make it all the way to the end while screaming bulls$@t, because this film will make you do that.<br /><br />and i'm still confused by the random slow motion karate moves of the one random kid and how apparently everybody out in the country is completely retarded and hickish. And again, why did this dog attack the girl? why did the kid the hicks were trying to kill sit in a chair waiting for them to kill him? that was part of the two of their's plan? wow. best plan ever. i cannot believe this movie got a theatrical release. i could barely stomach the DVD, let alone have to sit in a theater not moving for an hour and a half. It wasn't scary, or funny, or cool, or anything. it's just a waste of 90 minutes that you could be using to...i don't know, plant a tree or something. it's more productive than this piece of garbage. The acting, special effects, and script are a joke. don't ever pick this up.<br /><br />Cabin fever gets one nasty leg shaving scene, out of 10\r\n0\t\"Don't bother. A little prosciutto could go a long way, but all we get is pure ham, particularly from Dunaway. The plot is one of those bumper car episodes... the vehicle bounces into another and everything changes direction again, until we are merely scratching our heads wondering if there were ever a plot. Gina Phillips is actually good, but it's hard playing across from a mystified Dunaway playing Lady Macbeth lost in the Marx's Brother's Duck Soup. Ah, the Raven...now there's an actor. And there is the relative who just lies and bed and looks ghostly. Or Dr. Dread who's filled with lots of gloom and no working remedies. I'm one of those suckers who just has to see a movie to the end. Quoth the Raven, \"\"Nevermore.\"\"\"\r\n1\t\"This murder mystery with musical numbers is long on atmosphere and character but rather short on suspense and plausibility. Based on a stage play by Broadway showman Earl Carroll and others, it combines a whodunit plot with a backstage ambiance (a homicide investigation takes place on opening night at the theatre where a musical revue is being staged).<br /><br />The cast is impressive and varied: tough-goofy Victor McLaglen as the police officer who leads the investigation and never fails to leer idiotically at whatever showgirl happens to be in sight; Jack Oakie (the prewar Jack Lemmon  or was Jack Lemmon the postwar Jack Oakie?) as the harassed director who must coordinate the staged performance as well as the chaos behind the scenes; the ever-homely Jessie Ralph as a wardrobe mistress with deep, dark secrets; Dorothy Stickney, who has a stunning close-up monologue near the end, as the tremulous maid madly in love with the male lead; Carl Brisson, the Danish star, as that very male lead, warbling the classic \"\"Cocktails for Two\"\" not once but twice; Kitty Carlisle, operatically delivering \"\"Where Do They Come from and Where Do They Go\"\" and other Johnston-Coslow songs; the glorious Gertrude Michael, who parted from us too soon, as a mean-spirited showgirl whose love for Brisson is spurned; the usually ridiculous Toby Wing who here at least is the center of a laugh-getting running joke.<br /><br />When the plot complications get out of hand there is always an interesting performer or fun and tuneful musical number to distract the viewer. The film's most celebrated sequence is the \"\"Marahuana\"\" number, led by Michaels, but aside from its controversial history, it's really one of the lesser musical offerings. All of the songs here are staged as if they could actually have fit into a standard proscenium theatre space, as opposed to the cinematic fantasy setup of the Busby Berkeley style.\"\r\n1\tThe original Vampires (1998) is one of my favorites. I was curious to see how a sequel would work considering they used none of the original characters. I was quite surprised at how this played out. As a rule, sequels are never as good as the original, with a few exceptions. Though this one was not a great movie, the writer did well in keeping the main themes & vampire lore from the first one in tact. Jon Bon Jovi was a drawback initially, but he proved to be a half-way decent Slayer. I doubt anyone could top James Wood's performance in the first one, though... unless you bring in Buffy!<br /><br />All in all, this was a decent watch & I would watch it again.<br /><br />I was left with two questions, though... what happened to Jack Crow & how did Derek Bliss come to be a slayer? Guess we'll just have to leave that to imagination.\r\n1\tThis was the funniest piece of film/tape I have ever witnessed, bar none. I laughed myself sick the first three times I watched it. I recommend it to everyone, with the warning that if they can't handle the f-sharps to stay FAR away. At his best when telling stories from a kids point of view.\r\n1\tThis is without doubt the best documentary ever produced giving an accurate and epic depiction of World War 2 from the invasion of Poland in 1939 to the end of the war in 1945.<br /><br />Honest and to the point, this documentary presents views from both sides of the conflict giving a very human face to the war. At the same time tactics and the importance of Battles are not overlooked, much work has been put into the giving a detailed picture of the war and in particularly the high, low and turning points in the allies fortunes. Being a British produced documentary this 26 part series focus is mainly on Britain, but Russia and America's contribution are not skimmed over this is but one such advantage of a series of such length.<br /><br />Another worthy mention is the score, the music and the whole feel of the documentary is one of turmoil, struggle and perseverance. Like a film this series leaves the viewer in no doubt of the hardship faced by the allies and the Germans during the war, its build to a climax at the end of every episode, which serves to layer the coarse of the second world war. After watching all 26 the viewer is left with an extensive knowledge about the war and astonished at just how much we owe to the members of the previous generation.\r\n0\tFrom the creators of Shrek.. OK, that grabbed my attention.<br /><br />Well the creators of Shrek also made Madagascar. Madagascar was half as good as Shrek.<br /><br />And now Flushed Away is half as good as Madagascar.<br /><br />That means Flushed Away isn't good. The animation and all that special effects were extremely good but the movie wasn't.<br /><br />The story of this movie was only meant for kids. It's seriously not possible for adults to actually love this flick.<br /><br />But there were many jokes meant for adults. I bet kids dint understand the jokes.<br /><br />Despite that I dint like this flick.<br /><br />I am completely disappointed. 4/10\r\n1\t\"About two hundred members of a Cleveland, Ohio USA film society, named Cinematheque, gathered on August 19, 2000 to view a pristine Cinemascope print of Michelangelo Antonioni's 1970 film, \"\"Zabriskie Point.\"\" Cinematheque Director John Ewing, who does a superlative job of obtaining the finest prints for his series, shared with the audience beforehand that this print was specially flown over from Italy for this one showing only.<br /><br />The audience was held spellbound as the film unfolded its artisty on the huge panoramic screen. Watching this superb print, shown the way Antonioni intended, made one aware that this is indeed a modern art work. It was all the more fitting that the series is housed in the Cleveland Insititue of Art in University Circle. <br /><br />Antonioni's compositions are created for the Cinemascope landscape. His beautiful balancing of images, striking use of colors, sweeping choreographic movements, all are the work of a genuine artist, using the screen as his canvas. <br /><br />At last the audience could understand \"\"Zabriskie Point.\"\" As its narrative unfolded, it became obvious that this work is not about story per se, but rather an artist's impressionistic rendering of fleeting images of his subject. The setting of some of the more turbulent activities of the sixties provides only a dramatic motor for the artist's sweeping collage. <br /><br />Antonioni is not bound by conventional narrative standards, and can pause at any point to creatively embroider an event with grandiose embellishments. The audience willingly went with the flow of his remarkable imagination, as his huge images on the massive canvas held one in rapt attention. While the audience may have been only tangentially involved in character relationships, it realized the theme here is human aleination, the director's recurring theme. <br /><br />It was also realized that no print any smaller or of lesser quality than this original one in Cinemascope can do justice to this particular rendering. The audience was therefore all the more appreciative of viewing \"\"Zabriskie Point\"\" in its original, breathtaking format, and broke into thunderous applause at the end.\"\r\n0\t\"I just saw the third week of Stephen Kings' Nightmares and Dreamscapes mini series; meaning, I saw 6 episodes so far. I have to say that the stories are really weak. I have read Stephen King's Skeleton Crew, a collection of his short stories that was published way back. I recall most of the stories were average to poor but there was one that was really excellent, if not outstanding.<br /><br />What I'm trying to say is that just because this mini series is from a collection of stories from Stephen King does not mean that it will be any good. In fact, if his previous collection of short stories are of any indication, then most of this mini series will be average to poor.<br /><br />In Stephen King's defense, I have not read these new short stories. Perhaps they are good as stories in a book and not readily adaptable to television, or perhaps it was the fault of the scriptwriters in trying to write an interesting script. Who knows. Also, these short stories may have been made exclusively for this mini series and not not for print purpose. Maybe that may have been the problem. If Stephen King had submitted these crap stories to an editor, I am sure the editor would have immediately told him to make it more interesting because as is, it is simply boring.<br /><br />What is clear from all of this is that the problem is with the stories/script and not the actors and actresses because this mini series has some excellent people acting on it.<br /><br />Seeing this mini series really makes me appreciate those old \"\"Twilight Zone\"\" series. Each series was only half an hour but it was compelling and riveting. I don't understand why this mini series could not accomplish similar feat. I am sure this mini series had a good deal of money to make a good mini series but unfortunately, something must not have clicked.<br /><br />For instance, this week there were two episodes shown. The first involved a horror story writer who buys a picture drawn by an artist who committed suicide. The writer begins to see changes in the picture as he is driving homeward. Feeling uncomfortable, he throws away the painting but it keeps appearing near him. Also, the portrait of an individual in that picture is killing people and is out to kill him. (I will not even mention the second episode for this week involving criminals and their loot because it was even more boring than this episode!)<br /><br />This premise is interesting and so the story should be good but after seeing it, I was frustrated because there were too many gaps in the story as well as extraneous materials that was shown that did nothing to help the story. After the last scene, I was left with more questions than answers.<br /><br />I tried for 3 weeks to get into this mini series but it was just too aggravating due to poor stories/script. If this was a movie, I would have recommended that people should wait for the movie to come out on cable or such. I would not even recommend that it be rented in your video store. However, given that this is on TNT, a cable channel, I would say if you have not seen it already, then try it for one week. If you do not like it that week, then you will not like the past series nor the future ones, since they all share the same boring trait.\"\r\n1\t\"I really enjoyed the reunion a lot! I would have rated it a 10 if they had had \"\"Hassie\"\" and \"\"Little Luke\"\". There wasn't even a mention of where they are today or why they didn't participate in the reunion. They were very popular characters and I think it was a mistake not to give an explanation about their lack of appearance.<br /><br />Anyway, I was glad that TNN ran the series again! I had been looking for episodes for years and what a joy to be able to tape the whole series (I may have missed a few episodes). Jenny Hanahan\"\r\n1\t\"Most people know Paul Verhoeven as the director of many good (and bad) sci-fi movies in Hollywood. But long before that he was churning out generic thrillers in his native land. The story is a basic femme fatale premise, nothing new or enthralling. Verhoeven thinks he can make it better by adding in a series of dream sequences, which instead of defining our main character and his situation, are just used as a way to drive forward the predictable plot. The screenplay was solid, the dialogue helping to pad the effects of the bland story. What really made the movie at at least good was some terrific acting. Jereone Krabbe was amazing as the \"\"tortured artist\"\", and the supporters were very good as well. Also, Jan De Bont's cinematography adds at least some life to the film, helping to make Verhoeven look at least capable as a director.<br /><br />6.5/10<br /><br />* * 1/2 / * * * *\"\r\n1\t\"I used to watch this on either HBO or Showtime or Cinemax during the one summer in the mid 90's that my parents subscribed to those channels. I came across it several times in various parts and always found it dark, bizarre and fascinating. I was young then, in my early teens; and now years later after having discovered the great Arliss Howard and being blown away by \"\"Big Bad Love\"\" I bought the DVD of \"\"Wilder Napalm\"\" and re-watched it with my girlfriend for the first time in many years. I absolutely loved it! I was really impressed and affected by it. There are so many dynamic fluid complexities and cleverness within the camera movements and cinematography; all of which perfectly gel with the intelligent, intense and immediate chemistry between the three leads, their story, the music and all the other actors as well. It's truly \"\"Cinematic\"\". I love Arliss Howard's subtle intensity, ambivalent strength and hidden intelligence, I'm a big fan of anything he does; and his interplay with Debra Winger's manic glee (they are of course married) has that magic charming reality to it that goes past the camera. (I wonder if they watch this on wedding anniversaries?.......\"\"Big Bad Love\"\" should be the next stop for anyone who has not seen it; it's brilliant.) And, Dennis Quaid in full clown make-up, sneakily introduced, angled, hidden and displayed by the shot selection and full bloomed delivery is of the kind of pure dark movie magic you don't see very often. Quaid has always had a sinister quality to him for me anyways, with that huge slit mouth span, hiding behind his flicker eyes lying in wait to unleash itself as either mischievous charm or diabolical weirdness (here as both). Both Howard and Quaid have the insane fire behind the eyes to pull off their wonderful intense internal gunslinger square-offs in darkly cool fashion. In fact the whole film has a darkly cool energy and hip intensity. It's really a fantastic film, put together by intelligence, imagination, agility and chemistry by all parties involved. I really cannot imagine how this got funded, and it looks pretty expensive to me, by such a conventional, imagination-less system, but I thank God films like this slip through the system every once in awhile. In a great way, with all of its day-glo bright carnival colors, hip intelligence, darkly warped truthful humor and enthralling chemistry it reminds me of one of my favorite films of all time: \"\"Grosse Pointe Blank\"\".......now that's a compliment in my book!\"\r\n1\tAt the start, this one is from England, so, of course, I had 98 % chances that it will be intelligent and very good cinema. I never heard of this film before. From the minute I saw Helena Bonham-Carter, I said to myself : Oh! Here's comes the feminine version of My Left Foot. I was right, but I was also wrong. Wrong because the two movies are very differents. My Left Foot was a John Ford alike movie and this one is a Chaplin alike movie (not because this is funny, but Chaplin at that great sense of melodrama that brings tears to your eyes.) I was right because in 1990 handsome Daniel Day-Lewis turn a little bit ugly by playing an crippled person and he did it with a great sense of reality. Here, very beautiful Bonham-Carter did exactly the same thing, but with very feminine emotions. The story is well written and it's very intelligent. For me, miss Bonham-Carter gives one of the greatest woman's part of the 1990's, with Emily Lloyd in Breaking The Waves. Gee! And look at her eyes! She had the most beautiful eyes of cinema since Jobyna Ralston, Louise Brooks, Michele Morgan and Ava Gardner! She's also a true talent, as seen on many other movies. See this one, you won't regret it! And a very fine job by Branagh too!\r\n0\t\"\"\"I just viewed this movie last night and I don't think I will ever think the same about any of the actors involved, because this movie will stick in the back of my mind.\"\"<br /><br />The above statement can be thought of as a good or a bad thing. I mean every time I see Tom Cruise or Demi Moore in a movie, I think of \"\"A Few Good Men\"\" which is a good thing. Now, every time I see Ron Perlman or Kristy Swanson, I will think of \"\"Tinseltown\"\" which is a VERY bad thing.<br /><br />I picked this up thinking that it might be something intelligent or at least make me chuckle and with Arye Gross and the aforementioned Swanson and Perlman, I thought that it at least wouldn't be bad. You could tell the movie was made on a budget the size of Wheeling, Indiana (Where? Exactly.), but maybe they used every dollar to make a good movie. WRONG.<br /><br />This movie is NOT funny or entertaining in any sense of either word. It is just there and lasts for 84 excruciating slow minutes.<br /><br />The characters are paper-thin. You almost care about NONE of the characters, and since the leads are two struggling Hollywood writers with a dream that is all the two struggling writers with a dream who wrote this need you to know about them. Okay, the two REAL writers know all about there onscreen versions of themselves, so they figure so does the audience. They don't even think about character development, except for trying to tie there story back to \"\"Gilligan's Island\"\".<br /><br />The plot is unoriginal. Two guys live in a storage center, where one of them stores a bed, and there are about twenty other people living there, too. The rest of the story is contrived and stupid. Have you seen \"\"National Lampoon's Favorite Deadly Sins\"\"? The second story with Joe Mantegna is about a television writer who can't find a good story to make a TV movie about, so he creates one. Now substitute the television writer for a screenwriter, morph Mantegna into to annoying actors half his age, and take away the comedy and you have this movie.<br /><br />The actors try. Kristy Swanson is in the movie for maybe 10 minutes and still gives the best performance in the movie. She is still hot, but it would help if she would actually STAR in a movie instead of constantly making CAMEOS. As for everyone else, I don't think it was the actors fault because they have BAD material<br /><br />Go watch the National Lampoon's movie, but stay away from this movie.\"\r\n1\t\"Fascist principal Miss Togar(Mary Woronov, who is lensed by expert photographer Dean Cundy as if she were ten feet tall)has a plan to turn her high completely square. Complications ensue which challenge that goal in delightful rock'n'roller Riff Randell(PJ Soles who lights up the screen--she's got a hot bod, too)who is an obsessive fan of the punk band THE RAMONES. Pal Kate Rambeau(Dey Young, whose big rimmed glasses and nerdy role can not hide her stunning beauty)joins forces with Riff to put an end to the supposed crisis of killing rock'n'roll for good which is Togar's desired mission.<br /><br />Vincent Van Patten has a hilarious role as Tom Roberts, a success at everything, but getting laid. Kate is crazy about Tom..if only he could pull his head out of the sand and see it. Clint Howard steals the film almost(honestly, who can steal this film away from Soles?)as Eaglebauer, \"\"the supplier\"\" who can get everyone almost anything. His office is located in the boy's restroom! Paul Bartel is also hilarious as a music teacher who becomes an ally of Riff's when he enjoys a concert of THE RAMONES.<br /><br />A raucous high school romp that defies all rules of normalcy..and I loved it. It's like someone just says, \"\"Let's make life fun for 1½ hours.\"\" The film really is anarchy..a plot-less chaos lovingly adoring THE RAMONES with all it's heart(even if they are horrible actors, they have an opportunity to gain new audiences with this film).<br /><br />The ending pretty much sums up the film as a whole..Riff and her classmates take over the high school and one massive party begins. To be honest, I didn't want the party to end! Not conventional in any way whatsoever, this film just let's loose a frenzy. Accompanied by a great rock soundtrack featuring some of THE RAMONES best songs, this film allows a viewer to accept a time in life when war didn't dominate headlines and people just had a good time. Those, I guess were the days.\"\r\n1\tSTAR RATING: ***** Saturday Night **** Friday Night *** Friday Morning ** Sunday Night * Monday Morning <br /><br />A notably bad actor, getting by on his (now fading) looks rather than any strong dramatic talent, Richard Gere has always occupied a rather curious position in the American Hollywood scene, always a sure bet in leading man roles who still holds a notable presence today. But nowadays he seems to have settled more into these sort of direct to DVD/limited release roles and as such maybe seems to be more settled in his forte now.<br /><br />He has to draw on some stern matter here as hardened, cynical case worker Earl Babbage, one such worker assigned to a few hundred sex offenders in one area of the US, who along with his new protégé Allison Allthrop (Claire Danes) must take to his latest case, delving into the abduction of a young woman while trying to forgive himself for a case he failed on ages ago.<br /><br />This is a certain dive into the darker side of humanity, treading on material definitely not for the squeamish or those looking for light viewing. And as such it's a pretty strong, compelling film, unflinching and not constrained by it's direct to DVD budget. The only thing really pulling it back is the overly used jittery, fast cutting camera sequences used in the more dramatic moments that look a bit corny after a while. But it's still some of the solidest material I've seen Gere in, relentlessly getting darker and more over the edge as it goes on. ***\r\n1\t\"Hey now, yours truly, TheatreX, found this while grubbing through videos at the flea market, in almost new condition, and in reading the back of the box saw that it was somewhat of a \"\"cult hit\"\" so of course it came home with me. <br /><br />What a strange film. The aunt and cousin of former first lady Jacqueline Bouvier Kennedy Onassis live in this decaying 28 room house out on Long Island (Suffolk Co.) and share the house with raccoons, cats, fleas (eyow!) and who knows what else. Suffolk Co. was all over them at one point for living in filth and old Jackie herself came by to set things right. Anyway, this is one strange pair, Big Edie and Little Edie...Edie (the daughter) always wears something over her head and dances, sings, and gives little asides to the camera that rarely make much sense. Big Edie (the mother, age 79) apparently likes to run around naked, and while we do get hints of what that might look like thankfully this was tastefully (?) done to the point where we're mercifully spared from that. These women talk and talk and talk, mostly about the past, and it doesn't make a whole lot of sense, except to them. They live in absolute filth, cats doing their business wherever (\"\"Look, that cat's going to the bathroom behind my portrait!\"\"), and one bedroom appears to be their center of operations. If I close my eyes and listen to Big Edie's voice it reminds me very much of my own late aunt, who was from that area of the country and had that Lawn Guyland accent. One scene has Little Edie putting on flea repellent, lovely, you can see all the cats scratching all the time so the place must have been infested. The box refers to these two women as \"\"eccentric\"\", and I'd have to say in this case it is just a euphemism for \"\"wacked out of their gourds\"\", but this film is not without its moments where you truly feel something for them. This is equal parts creepy, sad, and disgusting, but I couldn't stop watching once I started. This is not my \"\"normal\"\" type of flick but I found it to be somewhat fascinating. It won't be for everybody though, guaranteed.\"\r\n1\t\"The subsequent two seasons of this original series was less than lacklustre. The latter seasons disastrous reshuffle contributed to its three season short life span. Maybe if the plug was pulled after the first season it would've gained a cult following.<br /><br />Aside from that, the first season was truly hilarious! Witty, clever with superb writing it was promising. The first season's excellent brew had the right ingredients - characters/actors, storyline and so forth. Plus a comedy about a paparazzi reporter was original to boot. Nora and her fellow \"\"photographers\"\" on the prowl, night after night, day after day for the exclusives.<br /><br />A lot of things don't make sense to me. Like how this show, and another fav of mine - Gross Pointe never \"\"made it\"\". If only the first seasons of the Naked Truth, and Grosse Pointe were released on DVD, please anyone out there?!\"\r\n1\tWhen I was a kid, I totally loved both Bill & Ted Movies. The other night, Bogus Journey was on and since it was at least 5 years since I last saw it, I decided to tune in. AND I LOVED IT ALL OVER AGAIN! This film is still funny after all those years. 'Excellent Adventure' is better, but this one rocks just the same. Sure, some of the perfomances are a bit cheesy, but hey, this entire film is cheesy in a cool way. Plus it features the coolest personation of Death ever in a movie! Concluding: Totally like non bogus movie dude! Way Excellent! STATION!!!\r\n1\tI watched this movie every chance I got, back in the Seventies when it came out on cable. It was my introduction to Harlem, which has fascinated me (and Bill Clinton) ever since. I was still very young, and the movie made a big impression on me. It was great to see a movie about other young girls growing up, trying to decide whom they wanted to be, and making some bad choices as well as good ones. I was dazzled by Lonette McKee's beauty, the great dresses they eventually got to wear, and the snappy dialogue. As someone being raised by a single mother as well, I could really identify with these girls and their lives. It's funny, these characters seem almost more real to me than Beyonce Knowles!\r\n1\tI recently watched Caprica again and thought I might as well come and write up a review! I first saw this right after I saw the series finale of Battlestar Galactica ( Being a big drooling fan boy of the show left me clinging onto anything I could of the shows universe )so I didn't know what to expect...but I did come out with a smile though I must admit...<br /><br />The story starts off dramatically on planet of caprica and we are introduced with a variety of interesting characters...I won't give too much away but there is a dramatic event that dictates the course of the story but I suggest you watch this.<br /><br />Must say...Esai Morales is one hell of an actor he pulled off a young Joseph Adama...(father of the Admiral in Battlestar Galactica)I found his acting spot on and I could believe that he is the father of William Adama from BSG...<br /><br />Also Eric Stoltz fits his role precisely...! Special note it was good to see Polly Walker outside of Rome! Don't sit down and watch Caprica with the expectation of it being like Battlestar Galactica because the story line is pretty straight forward and anyone can watch it..without having to have see BSG!.<br /><br />This show is a well written drama for those who like there drama with a bit of a sci-fi kick!\r\n1\t\"First things first, the female lead is too gorgeous to be missed. Now actress Wang Zu Xian, the one who played Xiao Qian in the movie, is 42 years old and well aged. It's always good to review these glorious times when seeing old-school HongKong productions like this.<br /><br />The movie is one of the most influential titles made in 1980s. The art set decoration and other aesthetic facets are all mesmerizing. More fantastically the movie had a total black humorous undertone in it. It feels like a horror movie but ultimately it's not scaring, but only fun.<br /><br />I had the experience of translating the second script of \"\"A Chinese Ghotst Story\"\", and I thought that script was a decent write. However when I saw the movie, I firstly was disappointed in seeing the movie different from the script, like in a smaller scale and involving more comic roles. However, it turned out to be better executed in terms of being entertaining.<br /><br />If you have seen the Lord of the Rings, you will notice the similarities in this movie to LOTR. The climax is like a mirror of Miranda Otto fighting with the Ring Witch. It's definitely a laugh-out-loud. Bravo!\"\r\n1\tA lawyer is drawn into a deadly game of cat and mouse when he becomes involved with a femme fatale in this adaptation of a Grisham novel. Altman creates a suspenseful, Gothic atmosphere but the script is weak. Sporting a Southern drawl, Branagh is convincing as the lawyer, and Davidtz is alluring as the object of his desire. Downey is likable as a private detective. Duvall has a small role, which does not allow him to do much with his weird character. Hannah and Berenger round out the impressive cast. After an interesting setup, the film bogs down and does not really deliver on its initial promise, but Altman is always worth a look.\r\n0\tThe Choke starts as a rock band known as The Choke prepare for a gig at a nightclub called 'Club 905' owned & run by Guy Johnson (Andrew Parker). Lead singer Dylan (Sean Cook) & guitar player Mike (Jason McKee) plan to tell the other band members, bass player London (Brooke Bailey) & drummer Nancy (Tom Olson), that they are both going solo & their services won't be needed any longer. Once at the club Dylan prepares but Mike doesn't show up & the gig turns into a disaster. Then just as the band think things couldn't get any worse they find a dead body in the cellar, that all the doors have been locked so they can't get out & that they can't trust anyone as a mysterious killer begins picking them off one-by-one...<br /><br />Produced & directed by Juan A. Mas The Choke is a standard by-the-numbers teen slasher that really doesn't have anything going for it. The script by Jessica Dolan & Susannah Lowber (not too many horror films out there penned by ladies...) has some surprisingly good character's in it & some nifty dialogue but while it's much better than a lot of modern shot on a camcorder type horror in that respect it's so slow & boring that even a few interesting character's can't come anywhere close to saving it. As one would expect all the usual teen slasher clichés are used, from the isolated location the victims can't escape from, the cast of good looking teenagers who keep splitting up, a few murders & a really poor twist ending that tries to mimic something like Scream (1996) & be surprising but doesn't make a whole lot of sense when you think about it logically (they couldn't have done some of the things they were supposed to) & to make matters even worse I guessed who the killer was fairly early on & even though I don't want to boast I was spot on. Then there's the fact that the makers of The Choke felt that it's audience would be entertained by showing endless (well it feels endless while watching it) scenes of teenagers walking around dark corridors doing nothing in particular, I am sorry but there is only so many scenes like this that I can take before it starts to become tedious. The kill count is low, at first they all decide to stick together (good idea) but then they all just randomly decide to split up & go their separate ways (bad idea when there's a killer on the loose), the pace is lethargic, the kill scenes are unimaginative & to top it all off the twist ending is poor.<br /><br />Director Mas does alright, the film looks OK for the most part although there are the odd occasions where he uses some annoying post production editing technique like slow motion or frame skipping. The gore levels aren't really up to scratch, there's some blood splatter, a guy with a hole in his chest, a few dead bodies & someone impaled on some metal poles. Most of the kills happen off screen with the axe kill at the end a good example of the film not actually showing anything. Since the film is about a rock band there's quite a rock orientated soundtrack with some truly horrible, horrible rock songs used on it. I am sorry rock fans but to my ears this crap is just noise pollution. It's not scary, there's no real atmosphere & the lack of blood & gore is just inexcusable when the rest of the film is so bad.<br /><br />With a supposed budget of about $1,000,000 The Choke is well made with reasonable production values, it looks cheap to be sure but not as cheap as many low budget horror films look. Shot in a place called Spokane in Washington apparently. The acting is one of the films strongest points as it's generally pretty good all round, I mean no-one is going to win an Oscar but it ain't half bad.<br /><br />The Choke is a throughly routine Scream style teen slasher that has one of the weakest twist endings ever & a criminal lack of blood, gore, violence, nudity & dead bodies. I mean if a slasher hasn't got any sex or gore then what's the point? Those are the only things that the average slasher is worth watching for, right?\r\n1\tMoon Child is the story of two brothers and a friend trying to make it in a futuristic, economically-unstable Japan. After a cunning disaster gone wrong, someone new enters young Sho's life, a special friend by the name of Kei. Years later they have grown rather close, and have found ways to combine both their talents into one unstoppable team. During another escapade, they encounter a new friend and his mute sister who become part of their band of friends. Before long disaster again strikes and the group falls apart. Alliances turn to enemies and their worlds are all turned upside down. Regrets and hopelessness claim some while power and success take others. Tragedy claims still others. Truths are revealed and lives are forever changed. <br /><br />And you will never see a more beautiful sunrise.<br /><br />This movie is a gripping tale of undying friendships, webs of relationships, and a team that not even death can keep apart for too long. Moon child combines sci-fi, drama, and action with the perfect cast and talent to create the most sensationally moving movie of the time, and great for most audiences. It minimizes the everyday romances and puts more emphasis on the important values we can all relate to such as friendships, loyalty, and believing in yourself. Nothing could possibly compare. I personally have never seen anything quite like it, and I don't suspect I ever will again.<br /><br />It appeals to the wider population in many ways and is a must see for all.\r\n1\t\"The entire 10:15 minute presentation is done in a very non-threatening and non-medical way that even preteen children can easily understand. It dispels many of the myths surrounding menstruation that were going around in those days (1946) While sex is not explicitly mentioned, the part about fertilization is. This is also, purportedly, the first Hollywood production to ever use the word \"\"vagina\"\" in the dialogue.<br /><br />It is cute how the animated character is shown topless in the shower in a purely animated character way with no defining features as was the way of the day. Many of the Betty Boop cartoons showed her undress without revealing any defining features either. Max Fleischer was a bit of a card and did this with many of the Betty Boop cartoons which required frame-by-frame viewing to find them.<br /><br />There is no mention at the beginning or end of the film as to who the female narrator is. In fact, there are no credits whatsoever other than those mentioning Kotex and Kimberly-Clark Corporation.<br /><br />This title is nearly impossible to attain; but for those who are Bittorrent downloaders, it can be found out there in the ether. This is one of those \"\"keepers\"\" that will become increasingly hard to find as older short subject features fade into obscurity.\"\r\n0\t\"When this film was released in 1997 the 'special effects', such as they are, were poor. They would have been dated even for the 1980s, and even some films made in the 1970s and 1960s have had the same or better SFX work. Certainly no-one involved in the production of this film was looking for an Oscar. It's a wild departure from director Fred Olen Ray's usual stuff, most of which has the word \"\"Bikini\"\" in the title (Bikini Pirates, Bikini Chain Gang, Bikini Girls from the Lost Planet, etc) and are little more than T&A flicks, but here we are with a film rated \"\"U\"\" and aimed squarely at the kiddies. You've got to give him credit for diversifying!! This was a minor direct-to-video cult hit which later resulted in a couple of sequels - Invisible Mom 2 and Invisible Dad. Dee Wallace-Stone (whose career went downhill fast after 1982s \"\"E.T.) plays the 'invisible mom' of the films title and would return for the sequel. Russ Tamblyn (whose career had been in free-fall even longer since 1961s \"\"West Side Story\"\") plays the villainous Dr. Woorter. It's probably fair to say that most of the cast were at the point in their careers where they would be prepared to work on almost anything just to pay the bills that month - except maybe young Trenton Knight as Josh. It's rather telling though that although he worked prior to this movie, this child actor didn't work again after the sequel, \"\"Invisible Mom 2\"\". Maybe the film was cursed. After all, he wasn't that bad in this film. For a child actor, he's pretty good - no better or worse than any of his more experienced co-stars.<br /><br />As mentioned above, the \"\"invisibility\"\" effects are naff to say the least, the direction is poor, the writing obvious and the acting nothing to write home about. There are plenty of worse films out there though, and for anyone under the age of about ten, this film will no doubt be quite watchable. Most adults will probably want to do a disappearing act of their own while it is on though, and I wouldn't blame them one bit!\"\r\n1\t\"I rented this film from Netflix for two reasons - I was in the mood for what I thought would be a silly '50s sci-fi-asco and because it is the first feature-length Superman film. Needless to say, after about 15 minutes I found myself thoroughly engaged and very pleasantly surprised.<br /><br />An experimental oil well has penetrated about six miles into the earth and is being shut down by the sponsor. Lois and Clark show up to get the scoop but are disappointed that the deepest well ever drilled will no longer be in operation. A day later, strange events at the well make for a story more appropriate for Superman than Clark Kent. It seems that the radioactive Mole Men have invaded from their six-mile deep home near the earth's core.<br /><br />Supermen and the Mole Men is a simplistic but well-made piece of social realism. Released in 1951, starring a lead actor who served in World War II, the moral of the story seems to be that Americans are just as capable of becoming fascists as anybody else. To drive this point home in a typically straightforward Superman manner, Reeves even accuses the lynch mob hunting the Mole Men of being 'Nazis' at one point.<br /><br />Even in the 1950s, the science underlying this film was nonexistent. Six miles of drilling through continental crust would not have even penetrated the upper mantle, let alone the \"\"hollow center of the earth\"\" - which, in any case does not exist. Forgivable - keep in mind that this film is based on a golden age comic book.<br /><br />The film is a little unevenly paced. Although the Molemen are interesting, a bit creepy, and nicely portrayed, there are several Corman-esquire scenes which spend too much time redundantly showing us their odd behavior. The script is intelligent and economical. By today's standards, the costuming is poor to fair, but for its time, this film's special effects and costuming were quite good. The cinematography is also generally very good, and the acting is much better than one might expect. I was particularly impressed with Reeves, Jeff Corey and Walter Reed.\"\r\n1\tThis was a wonderfully clever and entertaining movie that I shall never tire of watching many, many times. The casting was magnificent in matching up the young with the older characters. There are those of us out here who really do appreciate good actors and an intelligent story format. As for Judi Dench, she is beautiful and a gift to any kind of production in which she stars. I always make a point to see Judi Dench in all her performances. She is a superb actress and a pleasure to watch as each transformation of her character comes to life. I can only be grateful when I see such an outstanding picture for most of the motion pictures made more recently lack good characters, good scripts and good acting. The movie public needs heroes, not deviant manikins, who lack ingenuity and talent. How wonderful to see old favorites like Leslie Caron, Olympia Dukakis and Cleo Laine. I would like to see this movie win the awards it deserves. Thank you again for a tremendous night of entertainment. I congratulate the writer, director, producer, and all those who did such a fine job.\r\n0\t\"There is absolutely nothing to redeem this movie. They took a sleazy story, miscast it, miswrote it, misfilmed it. It has bad dialogue badly performed in a meandering and trashy story.<br /><br />As badly as it fails as art, it fails even worse as commerce. Who could have been the target market for this. What age group? What interest group?<br /><br />Someone should make a movie about how and why they made this movie. That I would pay to see.<br /><br />I've seen thousands of bad movies, and this ranks with \"\"Sailor Who Fell from Grace\"\" and \"\"Manos\"\" ... my choices as the three most unredeemably bad movies I've ever seen. Everybody associated with it should be forced to make conversation with VanDamme for all eternity.<br /><br />I challenge you. Watch this movie and perform an academic exercise - how could you take this and make it worse? I can't think of one way.\"\r\n1\t\"This happy-go-luck 1939 military swashbuckler, based rather loosely on Rudyard Kipling's memorable poem as well as his novel \"\"Soldiers Three,\"\" qualifies as first-rate entertainment about the British Imperial Army in India in the 1880s. Cary Grant delivers more knock-about blows with his knuckled-up fists than he did in all of his movies put together. Set in faraway India, this six-fisted yarn dwells on the exploits of three rugged British sergeants and their native water bearer Gunga Din (Sam Jaffe) who contend with a bloodthirsty cult of murderous Indians called the Thuggee. Sergeant Archibald Cutter (Cary Grant of \"\"The Last Outpost\"\"), Sergeant MacChesney (Oscar-winner Victor McLaglen of \"\"The Informer\"\"), and Sergeant Ballantine (Douglas Fairbanks, Jr. of \"\"The Dawn Patrol\"\"), are a competitive trio of hard-drinking, hard-brawling, and fun-loving Alpha males whose years of frolic are about to become history because Ballantine plans to marry Emmy Stebbins (Joan Fontaine) and enter the tea business. Naturally, Cutter and MacChesney drum up assorted schemes to derail Ballentine's plans. When their superiors order them back into action with Sgt. Bertie Higginbotham (Robert Coote of \"\"The Sheik Steps Out\"\"), Cutter and MacChesney drug Higginbotham so that he cannot accompany them and Ballantine has to replace him. Half of the fun here is watching the principals trying to outwit each other without hating themselves. Director George Stevens celebrates the spirit of adventure in grand style and scope as our heroes tangle with an army of Thuggees. Lenser Joseph H. August received an Oscar nomination for his outstanding black & white cinematography.\"\r\n0\tI was unlucky enough to have seen this at the Sidewalk Film Festival. Sidewalk as a whole was a disappointment and this movie was the final nail in the coffin. Being a devout fan of Lewis Carroll's 'Alice' books I was very excited about this movie's premier, which only made it that much more uncomfortable to watch. Normally I'm enthusiastic about modern re-tellings if they are treated well. Usually it's interesting to see the parallels between the past and present within a familiar story. Unfortunately this movie was less of a modern retelling and more of a pop culture perversion. The adaptation of the original's characters seemed juvenile and usually proved to be horribly annoying. It probably didn't help that the actors weren't very good either. Most performances were ridiculously over the top, which I assume was either due to bad direction or an effort to make up for a bad script. I did not laugh once through out the duration of the film. All of the jokes were outdated references to not so current events that are sure to lose their poignancy as time goes by. Really, the only highlight of the film was the opening sequence in which the white rabbit is on his way to meet Alice, but even then the score was a poor imitation of Danny Elfman's work. Also, I'd have to say that the conversion of the croquet game into a rave dance-off was awful. It was with out a doubt the low point of the film.<br /><br />What a joke. Don't see this movie. After its conclusion I was genuinely angry.\r\n0\t\"Whatever his name is (the writer and director) should be locked away in hopes garbage like this is never made again. This one is in a battle with some of the most awful movies of all time. Sometimes movies are bad in a way that they're actually sort of good. Not this one. This was so bad I got angry. Seriously. A drunken 10 year old could have come up with a better script. What a waste. ALL the actors were completely uninspired to work at all, the CGI was barely acceptable, the sequences of scenes were completely retarded and hurt the little bit of story there was, it's like he just decided, \"\"I want this to happen and this to happen, but I don't care how we got there, just shoot it and put it in. Whatever, I'm going back to my trailer to pick my nose, if anyone calls for me, I'm not here.\"\" Shame on you whatever your name is. Shame on you.\"\r\n0\t\"I just watched this film 15 minutes ago, and I still have no idea what I just watched. Mainly I think it's a film about an internet S&M \"\"star\"\" of CD Roms that are about as realistic as flash cartoons online. She's murdered by someone, which causes her sister and a crack team of 2 FBI agents to investigate the death. The local homicide division of Big City, USA is also investigating, though most of his work comes by the way of oogling the CD ROMs which he claims are as realistic \"\"as the real thing\"\". I know. Wow.<br /><br />Michael Madsen is the only one in the film that has any kind of credits behind him. He's in the film for about 15 minutes, and half of that is him banging the main girl for seemingly no apparent reason. I won't even explain the ending, because quite frankly I can't make it out myself. But before the final scene, we're treated to a 3 or 4 minute montage of everything in the film. Honestly, they could have ran that then the final scene and it would have been the same effect with the cross eyed direction and all.<br /><br />All in all, stay away from this film. I got it because I love bad movies and I love Michael Madsen. I really could have used that 80 some minutes on something else and have been more satisfied. Like, playing that game with a knife where you jab at your hand repeatedly. That for 80 minutes would be much more entertaining.\"\r\n1\t\"This review is for the extended cut of this movie.<br /><br />I first watched Dragon Lord when I bought it on DVD many years ago. I always liked this movie and you can read some of the more positive reviews of it to get the general idea.<br /><br />That being said. I've always found the storyline a bit confusing. The movie is, after all, a love story. And it always seemed strange to me that a love story should end with a 20 minute fight scene.<br /><br />Well, in the extended version this is no longer so. The old \"\"original\"\" version begins off with a huge barrel-climb/rugby-like sequence which is the new ending sequence in the extended version. The opening sequence is Dragon(Jackie Chan) hanging around his house and pretending to be training and reciting whenever his father is around.<br /><br />Other sequenced have also been shift or prolonged in the extended cut and the story makes a lot more sense when you watch it. The pacing is also better and overall it just works better. It feels more like a love story and doesn't leave you asking questions about why it ends so drastically and dramatically as the regular version does.<br /><br />I suggest everyone who is a Hong-Kong cinema, or just plain Jackie Chan fanatic to get a hold of the extended version and watch the movie the way it was originally intended.(Or at least that's how I think it was intended. Why else would they make it and rearrange some of the scenes) When I was done watching it, I felt like I had watched a completely new Jackie Chan movie although most of the sequences were the same.\"\r\n1\t\"This is one of my all time favorite movies, PERIOD. I can't think of another movie that combines so many nice movie qualities like this one does. This flick has it all: Action, Adventure, Science Fiction, Good vs. Bad and even some Romance (without even an innocent \"\"peck\"\" on the cheek between the Pazu and Sheeta). Maybe best of all, you don't have to be in Mensa to \"\"get it\"\" and enjoy the movie like you do with some of Miyazaki's other movies (I don't know about you, but I watch movies to take a break from thinking). This is just a flat-out enjoyable movie that everyone will like, so do yourself a favor and go buy it. The only sour note is the American Dubbing. I found Vander-Geek to be just plain annoying. But all is not lost, the original Japanese version is on the two-disc set and it rocks! Who cares if you can't understand spoken Japanese? If you can read at a second-grade level then watch the original Japanese recording with English subtitles. You won't regret it.\"\r\n0\t\"Can fake scenery ruin a picture? You wouldn't think so, but it actually for me in here. Listen, I have a lot of classic-era movies and I know pretty much what to except, such as the drivers steering immobile cars in front of a screen, etc. But a lot of that hokey business has to do with action scenes. To have fake scenery, fake mountains and flowers shot after shot as seen in \"\"Brigadoon\"\" gets insulting after awhile. <br /><br />As far as the music entertainment went, this is always subjective. What songs one person likes, another may not so that shouldn't be a big part of judging a film (whether someone likes the songs). I could blast this movie for its corny 1950 songs, dances, romances and characters but that was the '50s and a lot of people liked this sort of things. Musicals did very well in the '50s. Me, I liked the '30s and '40s with the great taps. By the '50s, tap was out and this new stuff - which I can stand - was it. Does that make this a lousy movie? No. It just makes one I didn't care for very much<br /><br />Despite the good cast, good director and high expectations, this film bombed at the box office, and with me. I should have liked it more, being a dreamer myself and that's a nice part of this story. I am not the cynical type and a nice town and nice people making me feel good sounds awful appeal. Then why couldn't I connect with this film? Part of it also was the dancing. I don't care for the stuff that replaced tap dancing on screen. But - no - the thing really turned me off what that staging. There was no Scotland, no highlands, just a hokey- looking background to make it look that way and it turned me almost from the start. Score one point for today's realism where they \"\"go on location\"\" most of the time.\"\r\n1\tmature intelligent and highly charged melodrama unbelivebly filmed in China in 1948. wei wei's stunning performance as the catylast in a love triangle is simply stunning if you have the oppurunity to see this magnificent film take it\r\n1\t\"A wonderful film, filled with great understated performance and sharp, intelligent dialogue. What really distinguishes the film, however, is that undercurrent of sadness throughout. The story is underscored by affairs, loneliness, suicide, disappointment, the fear of losing ones job in a world where that had disastrous consequences. Most of all it was set in a world that no longer existed, having been ripped apart by the beginning of World War II. In fact, the film is barely a comedy at all if you compare the percentage of serious scenes to the comic scenes. Yet funny it is--listen to Margaret Sullivan's harsh dismissal of Jimmy Stewart and watch his pained expression as he replies that her comments were a remarkable blend \"\"of poetry and meanness\"\". It's funny, pointed, and sad all at once. A remarkable achievement and one of the ten greatest screen comedies ever made.\"\r\n0\tWell - when the cameo appearance of Jason Miller (looking even more eroded than he did in Exorcist IV) is the high point of a picture, what've you got?<br /><br />It's a little bit country, a little bit rock n' roll: mix two drunks with money who drag their kid all over the place with a bog-dried mummy (have you figured that one out yet - DRIED in a bog?) in the basement, Christopher Walken with a bad dye job, and a little girl who might have been an interesting character if they'd developed her.<br /><br />I understand - sort of - that they're going back to visit her relatives. After that....<br /><br />Problem: There are several interesting flashbacks to what I must assume is her mother being killed in a car bombing (I think). This is never connected to anything. <br /><br />Problem: What do we need the grandmother for? Now, the grandmother could be interesting. She speaks Gaelic, or Celtic, or something. Maybe you can make something of her. The best they can do is that she 's got a tobacco habit. That's all.<br /><br />Problem: They cast a real shifty character as the husband. Is he type-cast (will he sell his wife to the devil? Maybe he can look forward to the trust fund he manages for her)or is he cast against type (after all, he has a good haircut and nice clothes)? He drinks, he hesitates. He's not a bad guy. Not a good one. But dislikable. Why didn't they DO something with him?<br /><br />No problem: an old boyfriend shows up. The husband knocks him down. He comes back to knock down the husband. (It gets pretty stupid, but at least THAT character has motivation.) <br /><br />NOW - she's an alcoholic, he's an alcoholic; he might only have married her for her money. The grandmother is locked in the bedroom. The blind uncle takes our heroine to the basement to show her the mummy of a witch (are you following this?) who may come to life. In fact, you KNOW she'll come to life, the music swells. A little girl lives in the house, takes tea to the grandmother (unlocks the door to do so) and provides granny with cigarettes. Periodically, granny gets out. But nothing happens. <br /><br />Husband and wife lose the kid in the house, subsequently lose their bedroom. Uncle gets his throat cut in the basement. The leading lady has nose-bleeds. The husband drinks. They both drink. In the face of all of this, the awful truth alluded to in the first over-voice is - omigod - an abortion when the leading lady was twelve years old.<br /><br />In spite of all these dangling-thread ingredients, nobody managed to get a story on the screen. No bridge between situations, no graduation from mild disturbance to awful horror, just long slow scenes that go nowhere.;nbody, really, to care about - and they had places to go with that aspect - the innocent kid in the charge of drunks,the grandmother who might be locked up because she's a monster, but no, her worst fault is smoking. She's got great hair, good makeup. <br /><br />In short, no plot. Just a little random (predictable)violence in a dark library, with the rain gushing in, and the sound track cuing us in. You need more than a few drunks and Christopher Walken to make a movie.<br /><br />The production values were good. Oh. Nice scenery, good wardrobe. The cameraman, at least, knew what he was doing.<br /><br />I bought it. Poor me.\r\n0\tSome fraud girl tries to compete in the big leagues of motorcross by swiching places with her brother. She gets to the top by lying and manipulation. She should have been disqualified. The movie promotes lying and cheating to win. also the idea of a 9 yr old mechanic is absurd. it takes many many years to get good. Go back to the tonka toys.\r\n1\t\"Directed by the duo Yudai Yamaguchi (Battlefield Baseball) and Jun'ichi Yamamoto \"\"Meatball Machine\"\" is apparently a remake of Yamamoto's 1999 movie with the same name. I doubt I'll ever get a chance to see the original so I'll just stick commenting on this one. First of what is \"\"Meatball Machine\"\" ? A simple in noway pretentious low budget industrial splatter flick packed with great make up effects and gore. It's not something you'll end up writing books about but it's nevertheless entertaining if you dig this type of cinema.<br /><br />\"\"Meatball Machine\"\" follows the well known plot. Boy loves girl but is too afraid to ask her on a date. Boy finally meets girl. Girl gets infected by a parasitic alien creature that turns her into a homicidal cyborg. Boy, in turn does also transform into said thing, and goes on a quest to save his love. Will he succeed? Who gives a damn, as long as there is carnage and death I'm satisfied.<br /><br />The plot is simple, relatively clichéd but it does it's job well enough setting the movie's course straight forward into a bloody confrontation between the two leading characters. There is a subplot focusing on how the parasite that infected the girl came into to their lives. And yes it too luckily shows more violence. I'm happy. Acting is what you would expect from a no budget splatter film. It's not exactly painful for the ears but it's not exactly good either.<br /><br />The movie's main attraction besides the violence and gore (like I haven't mentioned that enough already) are the cyborg designs. Done by Keita Amemiya who's work in creating outlandish creatures and costumes for both movies and video-games is well known. The necroborgs as they are called in \"\"Meatball Machine\"\" look stunningly detailed. Without the usage of CGI Amemiya's designs are a breathtaking fusion of flesh and metal, painfully awesome in their appearance. Able to transforms various parts of the body into cool weaponry such as saws, rocket launchers, blood-firing shotguns and so on and so on. Though you can easily recognize the cheapness of the film, necroborgs are A-movie class.<br /><br />\"\"Meatball Machine\"\" is \"\"Tetsuo The Iron Man\"\" mixed up with \"\"Alien\"\" all done in low budget and extra ketchup mode. It's an immensely entertaining film that disregards modern special effects and proves that the splatter genre is still alive and kicking.\"\r\n0\tAfter reading all of the rave reviews about this film and a few that give it a so-so. I finally decided to throw in my no cents worth. I agree with most on the point that if it hadn't been for Lauren Lewis and Chris Ferry it would have been a disaster. Filmed in Mariette OH. just north of Dogpatch where all the real talent fled south down I-77 years ago, at least as far as a tank of gas would allow. I did get a chuckle from reviewers who subtly claim that they cerebrate a little better than most by claiming they followed the plot without an inkling of confusion. This wee tale by the Brothers Crook is like an old record with a skip in it. As an American I understand the difficulties Ind film artists have to face. A trip to Romania would have wiped out the budget for sure. Lets face it this whole film was a loop de loop of Claire in the gas station, Claire on the side of the road, Claire under the bleachers, Claire in the house, Claire in the cornfield, Claire at school. Claire here and Claire there. It almost became monotonous and would have if she had not been the best actor in the cast. Josh and Jeff have to make a living but don't write a two page script and turn it into an hour,twenty flick. Before writing another screenplay about dreaming ghosts watch an episode or two of Ghost Whisperer or something and get a little background. All of the cast except the above mentioned and a couple of others were engaged in their first and last film. Also, there is an appearance by co-director Jeff as he is in all his films. Just like Alfred Hitchcock, eh? One thing the film had going for it is that the cameraman seemed to have a fixation on Lauren Lewis' derrière. Well, with all sarcasm now satisfied I still recommend the film for the horror buff just to see this young actress in the formative time of her career (I hope)and that Chris Ferry has established himself as a villain worth watching.\r\n1\tAn absolutely brilliant show. The second season began where the first ended, with much mystery. Suspense in most, if not all episodes and mystery everywhere. One that made me think and think again. It's truly amazing how the writer can come out with all the connections and link all the characters together and combine all these elements to make the lives of the characters in the show so meaningful. Never fail to excites and I am looking forward to the new season. Hopefully more secrets will be reveal and at the same time, more mystery to be solved. Good selection of cast too for this show, fit the characters perfectly. Really can't wait to finally discover the secret. Hopefully all the hype won't spoil the ending.\r\n1\tWhat percentage of movies does a person go to see these days that leave them wondering what happened to their eight to ten dollars? ANSWER: TOO MANY! This movie isn't like that. It is a story about real people that are sometimes a combination of both likable and unlikable.<br /><br />Downside:<br /><br />Not enough character development & some plot lines left twisting in the wind.<br /><br />Upside:<br /><br />Forces viewers to think about the choices they have made for good or bad in their own lives.<br /><br />Well acted by: Scott Cohen, Judd Hirsch, Susan Floyd, Ato Essandoh and Elliot Korte.<br /><br />Contains some good lighthearted humor.\r\n1\t\"The Master Blackmailer, based off of Sir Arthur Conan Doyle's short story, \"\"the Adventure of Charles Augustus Milverton,\"\" is the first feature length Sherlock Holmes story with Jeremy Brett that I have seen. The story is interesting and dark. The film has a somewhat dreary, sad feel to it, but it is quite entertaining (with some especially funny scenes).<br /><br />*Spoilers* Sherlock Holmes and Dr. Watson attempt to uncover the identity of an illusive blackmailer who has been ruining some of the most prominent families of England by publishing private letters that will, in one way or another, destroy their lives. They eventually find out that he is Charles Augustus Milverton, an \"\"art dealer,\"\" after the few tragic consequences for victims that could not pay up. Our heroes must next help Lady Eva Blackwell, who must pay a sum that is beyond her means or else her upcoming marriage will most definitely be called off. The scene in which Holmes and Watson burglarize Milverton's house are intense. Although the film has an essentially happy ending, the tone is sad and regretful.<br /><br />Outstanding performances by Jeremy Brett and Edward Hardwicke (as usual), and Robert Hardy as the notorious villain (most audiences probably recognize him today as Cornelius Fudge in Harry Potter), Serena Gordon as Lady Eva Blackwell, Norma West as Lady Swinstead and Sophie Thomson as Agatha (the scenes involving her and Holmes are a riot). I give it a ***1/2 out *****. My only complaint is that there wasn't enough Inspector Lestrade. (I wish they would have added in the scene at the end of the short story where he gives the description of the two burglars, one of which matches Watson.)\"\r\n1\t\"Across the great divide which we call understanding, there is still much we do not know about that which was explained by the early tribal Elders. In every instance, there is much concerning the dangers of knowing too much. Conversely, there are those who warn us of not preparing for what they warn is the 'End Time.' In this movie called \"\" The Last Wave \"\" an aboriginal native is murdered for no apparent reason. When those responsible are arrested, they remain silent less they disturb the order of things. David Burton (Richard Chamberlain) plays the Defense Attorney assigned to defend the accused. Although haunted by prophetic images from his own childhood and warned by modern signs given to him by an sympathetic Aboriginal named Chris Lee (David Gulpilil), Burton proceeds to defend the infraction as Tribal Law and therefore not subject to standard justice. The movie is fraught with puzzling, dark foreboding images of apocalyptic end world disasters and warns of a future island tsunami and doom. Black drama and deep rituals are what gives this film it's frightening allure and therefore is not for the faint-hearted, in fact the simplest haunting apparitions can last for years in the nightmares of innocent movie goers. Good silent drama. ****\"\r\n0\t\"John Leguizemo, a wonderful comic actor, is a New York Latino, able to get inside a myriad of characters, both male and female, to show the bizarre foibles of an ethnic group trying to cope in an alien culture. He is not, however, Italian. He doesn't look, think or behave Italian...Especially Sicilian or Calabrese, immigrant groups who live in Bensonhurst or Bayridge Brooklyn. Every scene in which he interacts with his \"\"Gumbas\"\" rings false, as though he'd wandered in from a college production of \"\"West Side Story\"\" while the other guys were doing a low-rent \"\"Mean Streets\"\". That's only one problem with this ill-conceived, mean-spirited flick. Spike blew this one big time. Btw, CBGBOMFUG means \"\"Country, Bluegrass, Blues and Other Music For Uplifting Gourmets [or possibly Gourmands] Ask Hilly Crystal who founded the club. <br /><br />\"\r\n0\t\"I agree with most of the other guys. A waste of photons and valuable time.<br /><br />Nearly no joke is worth the paper is was written on. The only highlight from my pov is Olli Dittrich as Pinocchio. (\"\"Egal, ich muss eh Waldsterben\"\") This reminds of old times with RTL Samstag Nacht. It is hard to describe the performances of the actors, since most of them don't even seem to have a good time during production and just \"\"do their thing\"\". Camera is OK, plot is laughable, I think you would be ashamed even if you discuss this with lots of beers.<br /><br />Apart from this I yawned all the time, wondered about how a script like this could even be considered for production and waited for the end.<br /><br />My 9 year old son was pleased, but then he is pleased by so little at this age :-)<br /><br />Anyway, a 1 point rating here nearly is 1 point too much...\"\r\n1\t\"Director Alfred Green's melodrama \"\"Baby Face\"\" with Barbara Stanwyck ranks as one of the more notorious of the Pre-Code movies. These films were produced before the Production Code Administration had the power to enforce its rules in 1934. \"\"Inspiration\"\" scenarist Gene Markey and \"\"Midnight Mary\"\" scribe Kathryn Scola penned the screenplay, based on Mark Canfield's story, about the rise and fall of a girl who used her sexual charms to acquire wealth and position in society. Incidentally, Mark Canfield was a pseudonym for producer Daryl F. Zanuck. These Pre-Code films today seem tame, but they aroused controversy galore and contained more racy material than most movies until the late 1950s when the Code began to erode. The themes that the filmmakers explore are women versus men, women versus women, and women versus society. Our crafty protagonist does enough skulduggery that all themes are about equal.<br /><br />Lily's worthless father Nick Powers (Robert Barret of \"\"Distant Drums\"\") operates an illegal speakeasy bar during Prohibition, when the Thirteen Amendment outlawed liquor, and brews his own booze in a still out back. Nick is such as an obnoxious fellow that he pimps out her beautiful, but hard-working daughter Lily (Barbara Stanwyck of \"\"Night Nurse\"\"), but Lily refuses to help her father out with a sleazy local politician. The politician. Ed Sipple (Arthur Hohl of \"\"Private Detective 62\"\") vows to retaliate for Lily's refusal to accommodate him. Later, Nick chews his rebellious daughter out. Lily reproaches him. \"\"Yeah, I'm a tramp and who's to blame? My father, a swell start you gave me, nothing but men, dirty, rotten men. And you're lower than any of them.\"\" No sooner has she stormed off than Nick dies when his still blows up and kills him. Lily and her African-American maid Chico (Theresa Harris of \"\"Arrowsmith\"\") pack their bags and catch a ride of the first freight leaving town.<br /><br />No sooner have our heroines arrived in New York than Lily uses her charm to get a job in a bank. Visually, director Green shows Lily's shrewd ascension up the ladder with camera angles that move upward until Lily's sexuality threatens to destroy the bank. At one point, Lily breaks up a marriage between one bank officer, Ned Stevens (Donald Cook of \"\"The Public Enemy\"\") and his fiancée, Anne Carter (Margaret Lindsay of \"\"Cavalcade\"\") after Stevens had almost fired her for flirting with her boss, Brody (Douglas Dumbrille of \"\"His Women\"\") in the employee restroom. Lily is extremely shrewd and manages to emerge from each debacle better off than before. The board of trustees hires Courtland Trenholm (George Bent of \"\"Jezebel\"\") to take over as president of the bank. The first thing that Trenholm does is pay off Lily instead of letting her publish her diary entries about the higher ups at the bank. Moreover, Trenholm ships Lily off to their branch bank in Paris where Lily doesn't create any commotion until Trenholm arrives and they become romantically attached. Lily fights tooth and nail for everything that she has gotten and hates to throw it all away, but she sacrifices everything at the end for her husband.<br /><br />Ironically, Lily winds up back in the same town that she started out in, but Trenholm and she are happy now. \"\"Baby Face\"\" qualifies as one of the five best Pre-Code movies. Look for John Wayne dressed up in a suit and tie in one scene.\"\r\n0\t\"Beautifully photographed and ably acted, generally, but the writing is very slipshod. There are scenes of such unbelievability that there is no joy in the watching. The fact that the young lover has a twin brother, for instance, is so contrived that I groaned out loud. And the \"\"emotion-light bulb connection\"\" seems gimmicky, too.<br /><br />I don't know, though. If you have a few glasses of wine and feel like relaxing with something pretty to look at with a few flaccid comedic scenes, this is a pretty good movie. No major effort on the part of the viewer required. But Italian film, especially Italian comedy, is usually much, much better than this.\"\r\n1\tI had no problem with the film, which I thought was pretty good. It's the actual LAPD crime scene video that disturbed me. I wonder if Lion's Gate REALLY thought that the general viewing audience would want to see people that were brutally beaten to death and blood all over the place. Sorry Lion's Gate, this was an INCREDIBLY BAD IDEA!!!<br /><br />Getting back to the film: The cast was excellent, especially Val Kilmer as the late John Holmes. John Holmes was a sleaze ,mistreats the women in his life (Lisa Kudrow as his wife, Kate Bosworth as his girlfriend),and he is hopelessly deep into drugs. His connection to Eddie Nash (Eric Bogosian)creates a spiral that resulted in the infamous Wonderland murders. Exactly how much was Holmes involved in the murders? We may never know the entire truth to the story(Nash is still alive and a free man),but the film does a pretty good job nonetheless.\r\n1\t\"I have to say that sometimes \"\"looks\"\" are all that matters, just like Jeremy Clarkson from BBC has pointed out (not about our earth though, but he is right anyway).<br /><br />And when it comes to looks, this movie is such an unbelievably stunning beauty you will absolutely love what your eyes are about to see.<br /><br />And then there's the personality of the movie as well, interesting, with a captivating narrator voice and narrator stories that will touch your soul as you watch those superbly filmed images.<br /><br />The movie probably won't affect your lifestyle, ruining these beauties, but it will certainly remember you how precious our earth we live on truly is.<br /><br />This movie deserves it's 10 stars as it is one of the few stylistic earth documentaries i truly enjoyed.\"\r\n1\tquestion: how do you steal a scene from the expert of expert scene stealers Walther Mathau in full, furious and brilliant Grumpy Old Man mode? answer: quietly, deadpan, and with perfect timing as George Burns does here.<br /><br />I know nothing of Vaudeville but this remains a favourite film, the two leads are hilarious, the script funny, the direction and pacing very fine. Richard Benjamin is very funny as straight man - trying to get at Burns through the window etc. Even the small parts are great.<br /><br />There are so many funny scenes, Mathau messing up the commercial, Burns repeating his answers as if senile...<br /><br />A delight.<br /><br />Enterrrrrr!\r\n1\tThis film is a quite entertaining horror anthology film (along the lines of Tales from the Crypt) written by Robert Bloch (author of Psycho). It's good fun for horror fans and has an excellent cast. The movie should also be required viewing for Doctor Who fans since Jon Pertwee (the third Doctor) has an amusing role as a rude and obnoxious horror star!\r\n1\tWho ever came up with story is one sick person. I rented it for our slumber party sleepover and all six of us got freaked out cause we're all in an acting class together, and we know a couple of the actors from class. Besides everybody screaming the whole freaky night, I had freaky nightmares. I kept thinking oh my God, if I get up to go to the bathroom to pee I'm going to be stabbed in the middle of wiping or something. I couldn't even go to the bathroom because we watched this gruesome horror movie. I also thought why are all the girls topless in this movie but we don't any of the boys units? You should make a horror film where the killer is a girl and chopping off units. I would watch that over and over. Call it hard or soft or something stupid like that. I'm only giving this movie a 9 because you FREAKED ME OUT FREAKS.\r\n0\tNow I'll be the first to admit it when I say something that may be blasphemous or unfair, so I would like to apologize in advance for my ranting about how much I disliked this movie.<br /><br />That about sums it up too. I disliked this movie. To be more specific, I disliked the concept of this movie. The cinematography was good. The mood was nice. And the acting was satisfactory.<br /><br /> However, the story is fatuous, unacurate and misleading. It is also offensive.<br /><br />I am a quarter Cree Indian, and for some reason I feel insulted, on a personal level, by the nature of Whitaker's character. First of all, he's a black guy. And this isn't a racist remark, I swear. The thought of a White, Hispanic or even Native American swinging a katana on a rooftop offends everything that the katana represents. The katana represents the soul of a Samurai, imbibed with the souls of his ancestors who guide and protect the Samurai. For Ghost Dog to use his guns instead of the Katana is also an insult to the blade and the souls inside, and where the heck did he get a Katana anyway? It must be one of those replicas, which insults the Samurai caste even more.<br /><br />Also, Ghost Dog showed no honor. Near the end of the movie, he shoots a bodyguard in the back through a window and then assassinates a man by shooting him in the face through a faucet drain. Not only is this a cowards way to kill an enemy, it's more like a ninjas way; silent assassins; a group that samurais deny exists, but hates none-the-less.<br /><br />Then he tries to kill his boss, when he finds out his boss is a baddie. You know what a true Samurai does when he learns his master is proven bad or dishonorable? He kills himself, to prove that he would rather die then lower himself to the level of his doggish master.<br /><br />Everything about the character was a giant contradiction to the real code that all Samurai adhere to: Bushido.<br /><br />So, we have great cinematography, good ambiance and so-so acting encompassing a satiricle plot and premise, (which unfortunately is the most important aspect of it) , making it an unsatisfactory overall film, and an insult to everything a honorable bushi(samurai) holds dear.<br /><br /> 2.5/10 Bleah\r\n0\tOh my god. the idea that this movie is a thriller is an absolute joke to me. besides the point that it seems to be written by a 5 year old. the plot, the acting and even the props and filming of this movie were all beyond disgrace.<br /><br />I am not usually this critical about any movie, cause every person has his/her style. But this movie, however, was probably the worst movie i have seen in 2008. I can honestly believe that this movie is unknown, and i think it should stay like this, for movies like these are making the thriller genre a joke.<br /><br />I advise anyone that is a fan of thriller movies, or even simply movies to stay far away from this one.\r\n0\t\"Today I found \"\"They All Laughed\"\" on VHS on sale in a rental. It was a really old and very used VHS, I had no information about this movie, but I liked the references listed on its cover: the names of Peter Bogdanovich, Audrey Hepburn, John Ritter and specially Dorothy Stratten attracted me, the price was very low and I decided to risk and buy it. I searched IMDb, and the User Rating of 6.0 was an excellent reference. I looked in \"\"Mick Martin & Marsha Porter Video & DVD Guide 2003\"\" and  wow  four stars! So, I decided that I could not waste more time and immediately see it. Indeed, I have just finished watching \"\"They All Laughed\"\" and I found it a very boring overrated movie. The characters are badly developed, and I spent lots of minutes to understand their roles in the story. The plot is supposed to be funny (private eyes who fall in love for the women they are chasing), but I have not laughed along the whole story. The coincidences, in a huge city like New York, are ridiculous. Ben Gazarra as an attractive and very seductive man, with the women falling for him as if her were a Brad Pitt, Antonio Banderas or George Clooney, is quite ridiculous. In the end, the greater attractions certainly are the presence of the Playboy centerfold and playmate of the year Dorothy Stratten, murdered by her husband pretty after the release of this movie, and whose life was showed in \"\"Star 80\"\" and \"\"Death of a Centerfold: The Dorothy Stratten Story\"\"; the amazing beauty of the sexy Patti Hansen, the future Mrs. Keith Richards; the always wonderful, even being fifty-two years old, Audrey Hepburn; and the song \"\"Amigo\"\", from Roberto Carlos. Although I do not like him, Roberto Carlos has been the most popular Brazilian singer since the end of the 60's and is called by his fans as \"\"The King\"\". I will keep this movie in my collection only because of these attractions (manly Dorothy Stratten). My vote is four.<br /><br />Title (Brazil): \"\"Muito Riso e Muita Alegria\"\" (\"\"Many Laughs and Lots of Happiness\"\")\"\r\n1\tIt was extremely low budget(it some scenes it looks like they recorded with a home video recorder). However it does have a good plot line, and its easy to follow. 8 years after shooting her sexually abusive step father Amanda is released from the psychiatric ward, with the help of her doctor who she is secretly having an affair with. The doctor ends up renting her a house and buying her a car. But within the first 20 minutes of the movie Amanda kills him and buries him in her backyard. Then she see's her neighbor Richard sets eyes on him and stops at nothing until she has him. She acts innocent but after another neighbor Buzz finds out that Amanda killed that doctor and attempted to kill Richards wife Laurie (this is after Amanda and him get it on in the hot tub). Then she stops acting so Innocent and kills Buzz and later on attempts to kill Richard whom she supposedly loves and cares for. And you'll have to rent the movie to find out if Amanda dies or not. Overall good movie, reminds me a lot of my life you know the whole falling for the neighbor and stopping at nothing until you have him part.\r\n0\t\"First, I realize that a \"\"1\"\" rating is supposed to be reserved for the worst of the worst. This movie gets that from me because, as one reviewer points out, it's not bad in a self-aware, over-the-top sort of way that might allow it to have some comic or cult value. It simply misses its mark on every count. **Contains possible spoilers** The dialog is completely disingenuous. The continuity is so deliberate it's painful. Daniel just finishes speaking of his lost love, and with his final word the flamenco dancers start. The mock-shock of what's her name (see? I don't even remember her character's name, let alone the name of the forgettable actress) when her husband (the Baldwin) first tells her that her friend is the bad guy. The car and the motorcycle chases did all the right things. Vegetable carts gone flying. Cars crashing into each other. Motorcycles going down the stairs. People nearly being hit, but remarkably, no one is. Oh, that's right... except for the one guy who has been stabbed several times, is obviously stumbling along the curb with knife wounds, and an approaching car apparently didn't notice him there. Hmmm. <br /><br />It's becoming more and more remarkable to me that movies like this can be made. There is so much pressure in the film industry to make money, you'd think that someone in Hollywood would think of making good films worth seeing. Now there's a novel idea. <br /><br />My suggestion: don't see this film. Don't rent the DVD. Don't watch it on cable. There are lots of other things you could be doing that will leave you feeling more satisfied.\"\r\n1\t\"Watching this movie again really brought back some great childhood memories . I'm 34 now, have not seen it since I was 12-14. I had almost forgotten about this movie, but when I watched it again recently, some scenes literally brought a tear to my eye! That little robot \"\"Jinx\"\"(friends for ever!). It was just like revisiting my childhood. It was an absolutely amazing experience for me. I will always cherish this movie for that reason. I hope some of you readers can relate to my experience, not for this particular movie, but any movie you have not seen in a long while. Very nostalgic...<br /><br />-Thanks for reading\"\r\n0\tTruly one of the most dire films I've ever sat through. I've never actually taken the time to write one of these but felt compelled to after witnessing this affront to film-making and feel somewhat aggrieved to be wasting my time on such a piece of turd to be honest. There were so many parts that infuriated me with their complete randomness and lack of sense (e.g. when would the police force ever shoot people with infectious diseases? When would hospitals ever through out such people for lack of a cure? Why was the guy who spotted him spying on his wife wandering around outside in his dressing gown whilst carrying a gun as she rolled around on the bed?). Also, the characterisation - as we've almost come to expect in such films - was awful (e.g. the way the blonde guy - I don't remember his frickin name and don't give a toss anyway - completely turned against his girlfriend and ran off to leave her) and I ended up wanting them all to meet grisly ends! The production was horribly disjointed and the cinematography nothing to write home about.\r\n0\tFirst of all, as a long time student of the Titanic disaster and member of several Titanic clubs, I feel entitled to comment on the film. I don't really care how many awards and accolades the film won, but to me it is still an absolutely awful film. Cameron had the resources to make a 'proper' semi-documentary film of the disaster but unfortunately chose to turn it into a po-faced romantic mush. The fact that so many people around the world fell for it only shows, to my mind, the sad state of taste and common sense that movie critics and audiences have these days. Whoever said that all movies should have a hero and heroine falling in love? In fact most real events are anything but romantic and the Titanic disaster certainly was not one. I feel that it needed a better script and director with a semi-documentary approach and as little artistic license as possible. I almost threw up in the last sequence where the 'dead' lovers meet among the other lost passengers and crew who break out in applause. Is this an intelligent film? Ask yourself.\r\n1\tThis is a gem of a movie not just for people who like fun and quirky premises, but who love the history and traditions of Sci-Fi and Classic Hollywood movies. Each alien of the Martian crew is the embodiment of a classic Sci-Fi character or member of Hollywood royalty and it's pure pleasure watching them bounce of each other and the residents of Big Bean.\r\n0\t\"Movie industry is tricky business - because decisions have to be made and everyone involved has a private life, too. That's the very original thesis of this feeble attempt at making an 'insightful' film about film. And indeed, no better proof of the industry's trickiness than seeing Anouk Aimée and Maximilian Schell trapped in this inanity. The insight consists of talking heads rattle off bullshit like \"\"should I make a studio movie that pays a lot or should I make an indie item and stay true to my artistic self?\"\" \"\"Do the latter, please.\"\" Or: \"\"our relationship is not only professional, it's private as well. It's a rather complex situation to handle, isn't it?\"\" \"\"Yes, it is, my dear.\"\" Between the insipid dialogs one gets glimpses of palm trees, hotel lobbies and American movie posters (no sign of non-American film presence on the Croisette). Recurrent slumber sessions are inevitable, making the 100 minutes of the film feel like ages. Jenny Gabrielle is spectacularly unconvincing in justifying her own presence in the frame.\"\r\n1\t\"When I saw that this film was only 80 minutes long, I thought we were in trouble. Condensing the gigantic W. Somerset Maugham novel down to a movie that clocks in at under an hour and a half seemed like a disaster waiting to happen. But you know, the movie's not half bad, and it even manages to retain much of what makes the book resonate so much with its readers.<br /><br />I've heard many film buffs complain that Leslie Howard was a wet noodle of an actor, and he was, but I can't think of anyone more suited to play the role of Philip Carey than a wet noodle, for that's certainly what Carey is. Howard plays him well, which means you want to shake him and slap him upside the head repeatedly, then finally take him out and buy him a spine.<br /><br />Ah, and then there's Bette, as the girl with whom Carey is obsessed and who brings his world crashing down around him. I didn't know what on earth the appeal of Mildred was in the book, and the movie stays true to that detail. But as played by Davis, she does become the most fascinating character in the story, and if she's nasty and unlikable, she's at least the most dynamic person on screen at any given time. Davis's performance here is credited with changing the course of screen acting, much as Brando's would do nearly 20 years later when he screamed out \"\"Stella!!\"\" in that little-known Tennesee Williams play, and it's not hard to see why. Davis is intense to the point of scary. She makes no effort to wring any sympathy from the audience, and she allows herself to look ugly and most unglamorous. Her appearance when Carey walks in on her late in the film to find her dead or nearly dead of an unnamed disease (though not much care is taken to hide the fact that it's an STD) is shocking. Of course, it helps that this movie squeaked out just before the Production Code went into effect; if it had been made a year later, you can bet things would have been a bit different.<br /><br />Yes, much of the novel, and many of its most interesting parts, are left on the cutting room floor, and the story really does become about Carey and Mildred and not much else. I found that to be the least interesting and most tedious part of Maugham's novel, but it is the part that gives the novel its title and seems to be the part that readers are still drawn to now, so it strikes me as a wise decision on the part of the film makers that they chose to adapt the novel the way they did.<br /><br />Grade: B+\"\r\n0\t\"I'm all for a \"\"bad\"\" horror movie but this was just a pile of dog sh!t! How anyone can call this movie cool or decent is beyond me. If you like rushed editing to cover the special effects, bad acting and a bad script then go for it! There was no suspense whatsoever and the gore factor was laughable because it was so fake. I'll take Hostel or Wolf Creek over this pile any day. My partner gave up after about 20 minutes, she knows a stinker when she sees one. I on the other hand stupidly sat through the whole movie just to wait and see if it got any better. No such luck! I haven't sen his other movie Torched and I doubt if I'll bother now.\"\r\n1\tThis highly derivative film will be entertaining for the many who have not seen some of the more obscure anime films. I enjoyed most of it, especially after the rather flat opening minutes in the museum (although the pre-title sequence is very entertaining and includes some of the better bits of animation). James Garner as the Commander and Leonard Nimoy as the King give impressive performances.\r\n0\t\"Let me start out by saying that I used to really like Betty Grable, particularly from \"\"Down Argentine Way\"\", but by the time she got around to this disaster, she had also got \"\"round\"\" and frankly the whole film was an embarrassment. Costarred with Douglas Fairbanks JNr (who must have been fairly desperate) the story was bad, the colours good, and the film far too long. It had some of the old standbys in it like Harry Davenport and Reginald Gardiner to try and stimulate interest but with no success. The music score was woeful, and I have to say not one tune was memorable in any way....as I was such a fan of Miss Grable, I always wish I had never seen this one!\"\r\n0\t\"First of all, what is good in the movie ? Some pretty actress ? the exotic background ? the fact that the actors don't laugh while acting (I would have if I had been in their situation) ? I don't know. The storyline is simple : a catholic priest who does abstract painting tries to find out who (another abstract painter) killed his little brother, a male prostitute (raped by another priest when he was young...). I'm afraid there is nothing here to learn or to let think a little about serial killers, art or religion. Dennis Hopper is not very good here. This is the worst episode of the worst season of \"\"profiler\"\" (the serie) with replacement actors and unbelievable coincidences (the uncle is the policeman who, the girl who lives at another victim's house could have a baby with the priest, etc., etc).\"\r\n1\t\"The last (I believe) of the movies The Boys made with Hal Roach, this is also the last truly funny film they made, before going to 20th century fox, which so famously misued their talents. Although there are weak moments - the business with the \"\"lung tester\"\", for instance, is a bit, ah ... overblown (but worth having, just to see \"\"Dr.\"\" Jimmy Finlayson) - but on the whole this flick is a good summary of what the boys brought to the screen. Richard Cramer (uncredited) appeared in other L&H flicks, and he is delightfully threatening here as the convict Nick Granger. The scene where The Boys have to eat their own synthetic meal (\"\"Looks good, smells good, and it probably tastes good. Eat it.\"\") is one of my favorite moments in the oeuvre. Stan & Ollie will always be pleasant companions in the lives of their millions of devoted fans.\"\r\n1\t\"It is not as great a film as many people believe (including my late aunt, who said it was her favorite movie). But due to the better sections of this film noir, particularly that justifiably famous \"\"fun house\"\" finale, THE LADY FROM SHANGHAI has gained a position of importance beyond it's actual worth as a key to the saga of Orson Welles' failure to conquer Hollywood.<br /><br />By 1946 Welles' position as a Hollywood figure was mixed. CITIZEN KANE was not recognized as the great movie it has since been seen as due to the way it was attacked by the Hearst press and by Hollywood insiders themselves. Welles' attempt at total control (direction and production and acting) of his movies seemed to threaten the whole system. His best job in this period was as Edward Rochester in JANE EYRE, supposedly shot by Robert Stevenson, but actually shot in large measure (with Stevenson's blessing) by Welles. But the credit went to Stevenson. Only THE STRANGER, a film benefiting from a postwar interest in fleeing Nazi war criminals, made a profit. For five years in Hollywood it was barely a great record.<br /><br />Welles returned to Broadway in 1946, hoping to recapture his critical abilities by his production of AROUND THE WORLD IN 80 DAYS. But despite the assistance Mike Todd, and Cole Porter composing the score, the musical was a failure. His failure occurred just at the same time that his wife, Rita Hayworth, was on the rise with her portrayal of GILDA. So the marriage was going on the rocks as well.<br /><br />Welles had to make money - his Broadway production had led to his personal bankruptcy. He sold his interest in the possible movie rights to AROUND THE WORLD to Todd (which he would eventually rue), and he also sold the idea of a film about the career of Henri Desire Landru to Charlie Chaplin, who was supposed to be directed in it (and who turned it into MONSIEUR VERDOUX).<br /><br />The story goes that Welles, with a $10,000.00 tax bill to worry about, called Cohn and offered to do a film with Rita for a down payment. Cohn was willing to do so, but naturally asked what the film was. It was a wise question. Welles was on a pay phone in New York in a pharmacy that had a book department. He grabbed a book with the title THE LADY FROM SHANGHAI, and raved that it was a great thriller. Somehow Welles convinced the normally astute Cohn that Welles knew what he was talking about. Cohn said he'd look into getting the rights, and sent Welles his down-payment of $10,000.00. After Cohn hung up Welles bought the book and read it - and found it was really pretty bad. He spent time rewriting a treatment and screenplay that would build up Rita's character of Elsa Bannister.<br /><br />Certainly it has a curious plot development. Michael O'Hara is a seaman/longshoreman. He rescues Elsa Bannister, when she is apparently attacked by gangsters in a park in San Francisco. Elsa is married to Arthur Bannister (Everett Sloane) a crippled criminal lawyer with a great reputation. She convinces him to hire Michael as the skipper of their yacht. The cruise also contains Bannister's sinister partner George Grisby (Glenn Anders) and one Sidney Broome (Ted De Corsia) who turns out to be a detective hired by Bannister to watch Elsa. When they can Michael and Elsa try to find time together, but Broome or Grisby keeps showing up.<br /><br />Grisby makes Michael an offer - he wants (for reasons connected to his so-called fatalistic view of modern society) to drop out of it, pretending to be dead. According to Grisby (the plot becomes murky here) he can still collect his life insurance (although dead?) and use it to run off to the South Seas. He will pay Michael $10,000.00 if he will pretend to shoot Grisby. This includes actually signing a document admitting to the murder (Michael does not realize that such an admission would wipe out the need to produce a corpse if all the other evidence suggests that Grisby is probably dead).<br /><br />Of course Grisby is killed, and Michael is arrested for that, and for the murder of Broome (shot with Michael's gun). Michael is tried with Bannister defending him, and discovers that the latter is doing a second rate job because he wants Michael to be convicted. Michael is convinced that Bannister is the actual murderer, and manages to escape just before the jury verdict. He is knocked out and deposited in a deserted carnival, and this leads to the famous \"\"fun house\"\" sequence and the conclusion of the film.<br /><br />It's a terribly confusing movie (as I have had commented on). That does not mean it's not worth seeing - visually it is striking. Witness the fight between Michael and the police in the trial judge's quarters, where he knocks the bailiff into the judge's bookcase, shattering glass. Or the clever use of photography to capture Hayworth diving from a rock, reflected on the lecherous Grisby's binoculars.<br /><br />The acting is pretty good, in particular Sloane (possibly that fine actor's best film role). Glenn Anders was a leading Broadway performer. He rarely made movies before THE LADY FROM SHANGHAI, and his slimy Grisby is unforgettable. Also Ted De Corsia does very nicely with Broome - a detective who is really looking for his own interests, to his own cost.<br /><br />As for Hayworth, she turns in a performance that was unlike most of what she had done before (BLOOD AND SAND, TALES OF MANHATTAN, and THE STRAWBERRY BLOND are exceptions), and is a memorable siren. Welles' O'Hara is a very unusual character for the actor - a likable but naive man who learns the hard way not to believe what he secretly wants to believe. It's not KANE, AMBERSOMS, OTHELLO, TOUCH OF EVIL, or CHIMES AT MIDNIGHT, but it is a good film for all that.\"\r\n0\t\"I rented this on DVD yesterday and did not realize it was a \"\"character study\"\" type of movie, so I struggled to watch about an hour of it before hitting the Stop button.<br /><br />Even with a character study theme, I just could not get into this film at all. Perhaps it was my mood in wanting to watch something else, or maybe I had other expectations, but setting that aside, I tried my best to move on to finish watching, but gave up. The actors played their roles well, but the global combination did not come together to keep my interest. About the only interesting thing was the sergeant's gun being stolen and he hurried to buy another one, and spray painted it black to appear as police issue. I think this movie should have been entitled, \"\"Who Stole the Sergeant's Gun?\"\" Scenes were well done but putting them together I once again felt robbed for anything cohesive to keep me viewing.<br /><br />Since I didn't finish watching it I'd say there is some merit to renting this film ... maybe. To me, it was a waste of good viewing effort and time. I'll leave it up to you to try it, but it's not one I'd strongly recommend.\"\r\n1\t\"UC 0079, the One Year War is almost at an end. A neutral colony of Side 6 has been targeted by Cyclops, a Zeon task force. Their target, a new Gundam being built exclusively for Newtypes (supposedly built for Amuro Ray from the original Gundam saga) inside. When little boy Al Izuruha, a fan of Zeon MS, encounters a Zaku after battle breaks out in the colony, he befriends newbie MS pilot Benard \"\"Bernie\"\" Wiseman. The two become good friends, Al is treated as an honorary member of the Cyclops team. Through the show, Bernie acts as a father figure to Al (whose real father is always working) and seems to be taken with Federation pilot Christina McKenzie, but eventually they must meet....in battle. Al soon learns that war is not child's play and Bernie must choose to make the ultimate sacrifice to complete his mission.<br /><br />For only 6 episodes, Gundam 0080 is a well done show. The mobile suits are extremely well designed, and the animation may look dated but really shows emotion in the characters. If you liked 0083 then check this one out, or if you are new to the Gundam world, this is a good show to start with. If you look to a show for drama and character development, this is the one for you, it focuses more on that then mobile suit battle. I would rate it more of a drama than action.<br /><br />Mobile Suit Gundam 0080, War in the Pocket. <br /><br />Sometimes you have to lose to win.\"\r\n0\t\"\"\"I'm a cartoon!\"\" \"\"You're an illustration!\"\" what does that suppose to mean?! This plot could not be worse as a boy, who's afraid of everything, becomes very brave at the very end of the film because he went into a library. The only purpose of this waste of celluloid was to encourage American kids to read, when a cheaper, and more effective way of doing this could have been a series of adverts! Even the talents of Macaulay Culkin(as the kid), Christopher Lloyd (as the so predictable \"\"that he's a the Page Master\"\" librarian), could save this pointless film from the dull plot. Even the voices of Whoopi Goldberg, Patrick Stewart,(even) Leonard Nimoy, or the Hollywood God of voices, Frank Welker as the cartoon characters don't save it ever. I can only describe it as a 1990s equivalent to the even ghastly 1978 adaption of the Water Babies, because the bland animation makes the film worse, not improving the dull plot!\"\r\n1\t\"Flavia the Heretic is an undeniable work of art and probably my number one recommendation to state that the euro-exploitation cinema is severely underrated and not to be ignored. This is an intelligent and complex film, beautifully realized and  surprise  pretty damn accurate! This is more than just meaningless sleaze or gratuitous violence and it's about time those prudish film committees who categorize Flavia as forbidden trash reckon this as well. Flavia is a beautiful 14th century adolescent, forced to live the life of an obedient nun in a strict convent. She refuses to accept her being inferior just because she's female and she curses her fellow sister for being so tolerant about this. After a fruitless attempt to escape, she befriends another rebellious nun and she even guides a troop of bloodthirsty Muslims into the walls of the convent.<br /><br />Flavia is a downright mesmerizing film! Almost impossible to believe that director Gianfranco Mingozzi managed to make it appear so realistic and so disturbing. I challenge you to come up with a title that centers on the topic of pioneer-feminism more intensely than Flavia does. Several sequences are quite shocking (on the verge of nightmarish, actually) as the camera zooms in on brutal rapes, torture and mutilation. Yet all this raw footage isn't just used to satisfy perverted gorehounds, mind you. I'm strongly convinced that they're part of the statement 'Flavia' is trying to communicate: Humanity (the Catholic Church in particular) historically proved itself to be a hypocrite and discriminating race and there's no use in denying it any further. Films like \"\"Flavia, the Heretic\"\" have the courage to question and openly condemn our precious ancestors and I truly admire them for it. Flavia is an outstanding and fundamental exploitation film because of its substance, but it's even brought to an higher level by the wondrous cinematography, the glorious costumes & scenery and a breathtaking musical score by Nicola Piovani. Florinda Bolkin is very convincing as the ambitious and headstrong nun but it's María Casares who steals the show as Sister Agatha. She's a man-hating and loud-mouthed nun who likes to urinate in the open field! Amen, sister!\"\r\n0\t\"Worst mistake of my life.<br /><br />I picked this movie up at Target for $5 because I figured, \"\"Hey, it's Sandler I can get some cheap laughs\"\". I was wrong, completely wrong. Mid-way through the film all three of my friends were asleep and I was still suffering. Worst plot, Worst script, Worst movie I have ever seen. I wanted to hit my head up against a wall for an hour, then I'd stop, and you know why? Because it felt damn good. Upon bashing my head in i stuck that damn movie in the microwave and watched it burn....and that felt better than anything else I've ever done. It took American Psycho, Army of Darkness, and Kill Bill just to get over that crap. I HATE YOU SANDLER FOR ACTUALLY GOING THROUGH WITH THIS AND RUINING A WHOLE DAY OF MY LIFE!!!!!!!!!!!!!!!!!\"\r\n1\tAs perhaps one of the few Canadians who did not read the book in high school, I thought I would add my comments. Seeing the movie without knowing the story beforehand in no way detracted from the film. The characters have so many complexities, everyone can relate to them in their own way. The brilliance of the adaptation is that everyone is allowed to project their own perceptions onto the lives of the characters, rather than being spoon-fed an opinion. You can love them or dislike them, and still feel the emotional impact of the movie. Wonderful performances by Ellen Burstyn and Christine Horne really bring the characters to life. I'd highly recommend it.\r\n1\tThe first step to getting off of that road that leads to nowhere is recognizing that you're on it in the first place; then it becomes a matter of being assertive and taking positive steps to overcome the negative influences in your life that may have put you on that road to begin with. Which is exactly what a young Latino girl does in `Girlfight,' written and directed by Karyn Kusama. Diana (Michelle Rodriguez) is an eighteen-year-old High School senior from the projects in Brooklyn, facing expulsion after her fourth fight in the halls since the beginning of the semester. She affects a `whatever' attitude which masks a deep-seated anger that threatens to take her into places she'd rather not go. She lives with her father, Sandro (Paul Calderon), with whom she has a very tentative relationship, and her younger brother, Tiny (Ray Santiago). With her life teetering on the brink of dissolution, she desperately needs an outlet through which to channel the demons that plague her. And one day she finds it, without even looking for it, when she stops by the gym where Tiny trains. Ironically, Tiny wants nothing to do with boxing; he wants to go to art school, but Sandro is determined that his son should be able to take care of himself on the streets, and pays the ten dollars a week it costs for his lessons. When Diana convinces Tiny's trainer, Hector (Jaime Tirelli), to take her on, and approaches her father for the money, under the guise of calling it a weekly allowance (she doesn't want him to know what she wants the money for), Sandro turns her down and tells her to go out and earn her own money. Ultimately, with Tiny's help she finds a way, and the ring soon becomes her second home. It's an environment to which she readily adapts, and it appears that her life is about to take a turn for the better. And the fact that she will have to fight men, not women, in `gender blind' competitions, does not faze her in the least. Diana has found her element.<br /><br />First time writer/director Karyn Kusama has done a terrific job of creating a realistic setting for her story, presenting an honest portrait of life in the projects and conveying that desperation so familiar to so many young people who find themselves in dead-end situations and on that road that leads to nowhere. And there's no candy coating on it, either; as Hector tells Diana when she asks him how he came to be where he is, `I was a fighter once. I lost.' Then, looking around the busy gym, `Like most of these guys, they're going to lose, too. But it's all they know--' And it's that honesty of attitude, as well as the way in which the characters are portrayed, that makes this movie as good as it is. It's a bleak world, underscored by the dimly lit, run-down gym-- you can fairly smell the sweat of the boxers-- and that sense of desolation that hangs over it all like a pall, blanketing these people who are grasping and hanging on to the one and only thing they have, all that they know.<br /><br />Making her screen debut, Michelle Rodriguez is perfectly cast as Diana, infusing her with a depth and brooding intensity that fairly radiates off of her in waves. She is so real that it makes you wonder how much of it is really Rodriguez; exactly where does the actor leave off and the character begin? Whatever it is, it works. It's a powerful, memorable performance, by an actor from whom we will await another endeavor with great anticipation. She certainly makes Diana a positive role model, one in whom many hopefully will find inspiration and the realization that there are alternative paths available in life, at least to those who would seek them out.<br /><br />As positive as this film is, however, it ends on something of an ambiguous note; though Diana obviously has her feet on the ground, there's no indication of where she's headed. Is this a short term fix for her, or is she destined to become the female counterpart of Hector? After all, realistically (and in light of the fact that the realism is one of the strengths of this film), professional boxing isn't exactly a profession that lends itself to, nor opens it's arms to women. And in keeping with the subject matter of the film, and the approach of the filmmaker, an affirmation of the results of Diana's assertiveness would have been appropriate.<br /><br />The supporting cast includes Santiago Douglas (Adrian), Elisa Bocanegra (Marisol), Alicia Ashley (Ricki) and Thomas Barbour (Ira). Though it delivers a very real picture of life to which many will be able to identify, there are certain aspects of `Girlfight,' that stretch credibility a bit, regarding some of what happens in the ring. That aside, it's a positive film that for the most part is a satisfying experience. I rate this one 7/10. <br /><br /> <br /><br />\r\n0\t\"while watching this movie I got sick. I have been grewing up with Pippi and every time was a real pleasure. when my wife came to Sweden she was looking at the oldies and had a real good laugh. but this American version should be renamed and never be shown again. it is terrible from beginning to it's end. how can they manage to make it soo bad. well I guess someone blames the translation ha ha ha.. but they are never close to Pippi. may this movie never been seen again and never sent out on a broadcast. burn the movie and save the kids. if you want to look at Pippi then look at the original movie and have a good laugh. WE LOVE PIPPI INGER NILSSON, sorry Tami Erin you will never stand up to be Pippi.. Oh yes.. when read the \"\"spoilers\"\" explanation, \"\"'spoiling' a surprise and robbing the viewer of the suspense and enjoyment of the film.\"\" well I guess the director stands for this... you are looking at this movie at your own risk.. it is really a waste of time...\"\r\n1\tThis film definitely gets a thumbs up from me. It's witty jokes and even it's occasional stereotypical and derogatory views on Eastern European people had me in stitches throughout most of the film. It's plot is clever and 100% original and will have you guessing throughout the entire film. The one person I was most impressed with in this film was Hilary Duff. It's plain and simple to see that she has taken a leap of faith stepped outside of the 'chick-flick' genre she's used to. Her accent is excellent and her acting performance was surprisingly crisp and well-executed. It is the best performance I have ever seen from Hilary, and I have seen most of her films. Her character, Yonica Babyyeah is described as 'The Britney Spears of Eastern Europe' and this is seen in some of her mannerisms and the song, 'I want to blow you... ... ... up'. You also feel sorry for her, as her performance really grasps you, Yonica is a very complex and confused character. Joan Cusack had me laughing throughout the whole film with her sometimes slapstick humour, but also her facial expressions and so on. John Cusack's witty dialogue will probably make you chuckle throughout. I strongly recommend this film.\r\n0\t\"First off, I would like to point out that the reason why I gave this movie 1 star out of 10 is because there is no option to give it NO stars! it really is that bad! I was never eager to see this film after I saw the ads for it, I ended up seeing it only by chance because some friends of mine had tickets and had one spare so I tagged along. Before seeing it I had a fairly good idea that it wouldn't be genius - the premise seemed far too silly and stupid for anything good to come out of it, but at the back of my mind I was thinking \"\"but there must be something good about it for UMA THURMAN and Luke Wilson do to the film...\"\" not that I think either of them are particularly terrific but they are big-named stars who would normally only do films that would enhance their reputations. However, about 10-20 minutes into the feature I realized that the movie was probably worse than I had at first anticipated. I was shocked at how terrible the script was. It really gave the actors NOTHING to work with, so much so that they really looked like they didn't know what they were doing (especially Luke Wilson). The story was completely predictable - if you've seen the ad then you've pretty much seen the movie! And there was nothing original about it - it pretty much borrows from every 'super-hero' story that has ever been which would be acceptable had the film been set up as a satire of that genre, but alas it wasn't. The direction seemed to be of realism. I got the feeling that the director wanted the film to feel completely realistic and not satire at all, and yet there were some moments in the film that were so unbelievably unrealistic that it would have worked if it were a satire. At one moment in the movie two of the characters seem to die and one of the surviving characters has a line like \"\"Oh well, she's dead...time to move on\"\" and he says it in such a droll voice that it completely didn't make any sense. I found myself checking my watch after about 40 minutes to see how much longer I would have to sit through it. And then it struck me...I began to think \"\"I wonder if the studio have made this picture as a test to see if they can make the worst possible movie ever made, and still pull a large audience...\"\" I couldn't think of any other reason why this film would be made. For movies to be made these days, the script goes to a massive screening process and very very few scripts actually make it to the production stage...I can't comprehend how this one got past the first draft stage... By the end, and exceedingly, dumb-founding-Ly stupid climax, I was laughing heartily - just not at what the film-makers wanted me to laugh at, but instead at how ridiculous and stupid the movie was. Thank God I didn't have to pay money to see it...because that would have really annoyed me!!! Oh, and could I just add, that of the two Wilson brothers, I have always preferred Luke because I think he is a better, more versatile actor...but if he wants to step even further into OWEN's shadow then this is exactly the way to do it...I doubt that he will get many more job offers after this crappy waste of 2 hours!!! and remember, it only got a generous 1/10 because I couldn't select 0!\"\r\n0\tTo Die For (1989) was just another d.t.v. feature that made an appearance on cable ad nasuem during the early nineties. The only thing notable about this feature was the last movie Duane Jones appeared in. Other than that there's no reason to watch this vampire flick unless you like pseudo chick flicks masquerading as a horror film. A tired vampire longs for love and searches the back streets of L.A. looking for it. Will he succeed or will Vlad just strike out again like he has for the last century?<br /><br />This movie must have been big because a couple of sequels soon followed. They're so bad they make this one look like a classic. I know this is a movie about vampires but the film makers could have used to lighting.<br /><br />Not recommended by me because I didn't like it.<br /><br />'nuff said?\r\n1\t\"The pilot of Enterprise has one thing that has been lacking since the original Star Trek: A dose of realistic, flawed personalities. The Utopian characters of the Next Generation got tiring, they were so noble as to be unbelievable. I also like the sub-plot that humans are bitter toward the Vulcans. Its funny seeing them as pretentious snobs. It makes me look forward to seeing when the humans become the dominant race between the two, though I don't think it would work in the time frame of the show. The only negatives that jumped out at me were the \"\"quick cut off the ending at 2 hours\"\" feel of the end, which is common among many of the Trek shows. The second was the shameless dig for ratings by a couple of senselessly sexy scenes. It was out of place, a good science fiction show should be able to stand on its own without trying to pad the pre-teen audience with some skin. But its not my job to make the show profitable, so oh well.<br /><br />Lets see how the next episode does.\"\r\n0\tThe only good part about this film is the beautiful scenery. This movie was long and boring. The minister should have retired from the pulpit the time his son Paul strayed from the teachings he proclaimed. How many times can his boys take the Lord's name in vain in this film being from a Presbyterian background? It doesn't fit. I wished Paul was swept down the river without a boat at the very beginning to spare us the silly, smirkish, selfish story of Paul (Brad Pitt). So Norm becomes a teacher and Paul becomes a compulsive gambler who Norm wants to rescue but doesn't-so what. It's very uninteresting. We see the prejudiced whites being stood up to by Paul because of his native American girl. That was the only part that had some interest and maybe could have been developed into a real 'wild western'. What we only see is a sleepy town where the two minister's sons have nothing to do but 1. Norm chase a lame girlfriend and deal with her family and 2.Paul make up dumb stories at the newspaper shop while scratching his head and take a lot of swigs and tie a lot of flies. I'd rather watch a show about fishing that that film again-which will be never.\r\n0\tI had to register for IMDb just to post a comment on just how awful this movie is...my cats and a ball of string have a better storyline than this. Not the worst acting I've ever seen, but when you wipe out almost the entire cast of the movie within 5 minutes, it leaves a bit to be desired. There wasn't a single 'scare' moment in the movie, with the exception of when they were watching the movie 'Halloween' on the TV. All around, it seems like it could've been a good story, rolling the credits and saying that Chasey Lain was in it was a bit of a loss as I didn't recognize her right away and her scene was already over before I could've said 'oh yeah, there she is'. I'm so glad I saw this in a hotel and didn't pay for it as I'd be real ticked if I had payed a cent to see this. I normally like or can at least find a redeeming factor in a movie, but this one is an exception. It's so bad that it's not even that amusing so-good-it's-bad....it's just plain bad.\r\n0\tBad plot (though good for a B-movie), good fast-paced fight scenes, at most a 5 out of 10. But something has always bothered me about this film: how come Mariska Hargitay never speaks? In the TV version, she shares several intimate moments with Jeff Speakman, even a kiss in a garden. Yet in the regular (video) version, most of her scenes are cut and she never speaks at all. This bothers me because it not only takes out a female (though cliched) point-of-view to the film, it also makes the final shot seem creepy. This film would have been better had they kept her scenes in, because in those scenes at least she has a personality, one that undercuts whatever Speakman says.\r\n1\t\"IF ANYONE IS INTERESTED IN OBTAINING A COPY OF THIS FILM PLEASE READ THE BOTTOM OF THIS DESCRIPTION: First telecast by CBS on November 30, 2003, the made-for-TV Finding John Christmas is a sequel to the previous year's A Town Without Christmas, with Peter Falk reprising his role as versatile guardian angel Max. Valerie Bertinelli plays Kathleen McAllister, a divorced small-town nurse whose depression... over the fact that the hospital ER she maintains may be forced to shut down because of a $100,000 debt is briefly lifted when she spots a newspaper picture taken by photojournalist Noah Greeley (David Cubitt). The picture shows an act of bravery performed by Noah's firefighter brother Hank (William Russ), who mysteriously left town 25 years ago and hasn't been seen since. Hank would like to quietly slip back into town without explanation or fanfare, but this proves impossible when Noah's newspaper posts a $50,000 reward to identify Hank, known only to the public as \"\"John Christmas.\"\" And there's something, very, very curious about that photo: It also shows a Santa Claus suit seemingly floating in midair without an occupant. That elusive \"\"Santa\"\" is of course the angelic Max, who pops up now and again throughout the story in a variety of guises to solve problems, dispense advice, tie up loose plot strands--and even share a musical duet with Kathleen's talented daughter Socorro (Jennifer Pisana).<br /><br />INTERESTED IN HAVING A COPY: WRITE TO ME HERE: IAMASEAL2@YAHOO.COM\"\r\n0\t\"The first half of the film is OK, the second half one of the most tedious experiences imaginable. Quite possibly the most overrated movie of all time. \"\"Pulp Fiction\"\" was robbed for \"\"Best Picture.\"\" This is one of those films that people feel required to love because the main character is \"\"slow.\"\"\"\r\n1\t\"In my mind, this remains one of the very best depictions of Superman on TV, as well as one of the most faithful to a particular comics period.<br /><br />This series paid homage to both the Superman films of the '70s/'80s and the Superman comics series \"\"reboot\"\" of 1986-onward (\"\"Man of Steel,\"\" \"\"Superman Vol 2,\"\" \"\"Action Comics,\"\" \"\"Adventures of Superman,\"\" etc). The opening score and titles were stirring, based on the John Williams score from the films, updated for a Saturday morning action series. Marv Wolfman, one of the main contributors to the comics reboot (writer of \"\"Adventures of Superman\"\") was a perfect choice to be involved in this animated series. Overall, the series had a more mature feel while continuing to be very kid-friendly.<br /><br />Superman was presented as believable, strong, and iconic. His recurring nemesis was Lex Luthor in his megalomaniac/CEO incarnation. The Daily Planet characters Lois, Jimmy, and Perry were portrayed well. One of my favorite appearances was by Wonder Woman, and the story revolved around her home island of Themyscira (\"\"Paradise Island\"\"). Both her design and that of her mother Hippolyte were in keeping with the similarly rebooted Wonder Woman comic book series of the era, and it seemed like an equally well-done animated series could have been developed for her if handled the same.<br /><br />The one thing that is hard to believe is that this has not been released on DVD/Blu-ray! It deserves to be.\"\r\n1\t\"Out of the first five episodes of Hammer's short-running \"\"Hammer House of Horror\"\" series, this fifth episode with the wonderful title \"\"The House that Bled to Death\"\" is arguably the creepiest one. As a great fan of the Hammer Studios' Gothic Horror films for many years, I wonder what took me so long to finally start watching the series quite recently. So far, I've only seen the first five episodes, and I have a strong feeling that the best is yet to come, but even if the series stays as entertaining as the first five episodes are, I will be satisfied. Whereas the second and third episodes were great to watch for their morbid and ingeniously dark sense of humor, this fifth entry is definitely the one out of the first five that delivers the most genuine Horror. The episode begins when an elderly man murders his wife out of unknown motivations. Years later, William (Nicholas Ball) and Emma Peters (Rachel Davies) move in the house with their little daughter Sophie (Emma Ridley). Soon after moving in, however, the family have to find out that there is something terribly wrong with the house, which is seemingly haunted... The second episode directed by Francis Megahy is a lot better than his mediocre previous entry, \"\"Growing Pains\"\" (Episode 4), and the fairly unknown actors deliver good performances. The film is also well-made in terms of effects, cinematography and score. \"\"The House that Bled to Death\"\" is a solid episode that delivers the elements that my fellow Hammer-fans should like to see in a Short Horror tale. The film delivers a creepy atmosphere, genuine scare moments and intelligent twists, and is suspenseful and highly entertaining from the beginning to the end. Overall, this is highly recommendable to Hammer fans.\"\r\n0\t\"I saw this movie a few months ago in the town which appeared as Greendale in the movie, which is the only reason I went to see it. Another local who was there just forwarded to me an email announcement of a repeat showing because the first had sold out and people were turned away. His editorial comment in his forward is a good summary:<br /><br />\"\"Yuk.\"\"<br /><br />Unless you're a Neil Young fan or live in/near \"\"Greendale\"\" (if the latter you know the real name), skip this movie. It's mostly an ego trip for the filmmaker. It has no discernible plot, the music is merely OK, and too much of the lyrics are unintelligible making it impossible to follow what little shreds of plot there may be.<br /><br />I don't need to put in a spoiler warning because there are no surprises to give away.<br /><br />I'd give this a 1.5/10, but that's just for the amusement value of seeing the locales made into a movie. It wasn't worth the $6. I could rent a video camera and drive around \"\"Greendale\"\" and make a better movie myself.<br /><br />If you want to see a *good* environmental-message movie with no plot, go rent Koyaanisqatsi.\"\r\n1\tGregory Peck gives a brilliant performance in this film. The last 15 minutes (or thereabouts) are great and Peck is an absolute joy to watch. The same cannot however be said for the rest of the film. It's not awful and I'm sure it was made with good intentions, but the only real reason (if I were to be honest) to see it is Peck. For the rest you are better off just reading the Old Testament.\r\n0\tIf you merely look at the cover of this movie, it's cool. DON'T. The movie itself put me to sleep. It was slow paced, had minimal violence and a poor use of suspense. The acting was bottom feeder material and the plot, while it would've been cool for a different movie, was poorly shown here. They even kill the only likeable character in the whole film! I give it a 2 out of 10 because the only thing that was good was the plot twist at the end. Other than that, you might want to save yourself from this movie trash.\r\n1\tIt appears even the director doesn't like this film,but for me I think he's being a bit harsh on himself.<br /><br />Sure it's not perfect, but there are some atmospheric shots,and the story is good enough to keep you interested throughout.<br /><br />It's shot in what appears to be quite a pretty village which adds to the atmosphere as well.<br /><br />If you like horror films shot in England, give it a go.<br /><br />I have just seen a trailer for this directors latest film 'The Devil's Chair' which looks quite amazing.<br /><br />There aren't enough English horror films for me, so any that come along deserve our attention, and this one isn't as bad as you may think\r\n1\t\"William Wyler was to have directed this adaptation of Moss Hart's hit Broadway play with music/ recruiting poster-vivant, but his own military commitments intervened and it went to a most unlikely helmsman: George Cukor. The \"\"women's director\"\" has a sure touch on the many documentary-like sequences of Air Corps training, and he invests it with more unhackneyed humanity than the genre generally allowed, particularly in wartime. Sure, the gee-whiz (and entirely white, save for one unbilled Chinese-American recruit) bunch of newbies are nicer and more wholesome than in real life, and the speechifying about home and Mom and the wife and kid gets pretty thick, but it's efficient propaganda and undeniably stirring. Notable, too, for the all-military male cast, several of whom didn't reemerge for years: Lon McAllister, Edmond O'Brien, Martin Ritt, Red Buttons (in drag, as an Andrews Sister), Peter Lind Hayes, Karl Malden, Kevin McCarthy, Gary Merrill, Lee J. Cobb, and Don Taylor. Also for a very early glimpse of Judy Holliday, who doesn't show up till an hour and a half into the picture but has some good little sequences as O'Brien's worried-sick Brooklyn spouse. Too bad its rights are in a tangle and the only print anyone knows of is 16mm; evidently, after Twentieth Century Fox released it (to considerable success), the rights reverted to the Army, and if there's a good 35mm print out there, it probably lies somewhere in the bowels of the Pentagon. It's disingenuous and corny in spots, but it also captures the rigors of military training and the terrors of war vividly, and it deserves to be more widely seen.\"\r\n1\t\"I approach films about talking animals with care. For every wonderful one like Babe, you get an equally poor one like the dreadful remake of Homeward Bound: The Incredible Journey. Or in the case of Cats & Dogs, you have a great idea for a film not living up to its potential. When I heard about Paulie, the premise of a wisecracking parrot didn't exactly fill me with confidence. But I found the film a pleasant surprise. And it manages to sneak its way into your heart without you realising.<br /><br />A Russian janitor, Misha Vilyenkov (Tony Shaloub) gets a job in a research laboratory. One day, he hears singing coming from the basement. And when he investigates, he finds a parrot in its cage singing its little heart out. Misha becomes fascinated with the bird, especially when it turns out the parrot can not only sing, it can talk. And not a few phrases either. Its a parrot you can actually make conversation with.<br /><br />The parrot is called Paulie (voiced by Jay Mohr), and recognises a fellow castaway in Misha. Wondering how this world to the wise bird ended up in a dusty basement, Misha convinces Paulie to tell him his life story. Which all began when he was a baby, and in the care of Marie, a five year old girl with a stutter. The two of them became birds of a feather (OK, bad pun!).<br /><br />When Marie's parents became concerned about her close friendship with a bird, they considered sending him away. And they finally did after Marie nearly injured herself in a fall after teaching Paulie to fly. Desperate to be reunited with her, Paulie begins a long journey across America, which includes a diverse number of new owners, flying great distances, and even ending up behind bars. Of a cage that is!<br /><br />Paulie was one of a number of talking animal films released by DreamWorks in the late 90s. And although it wasn't afforded the same recognition or box-office success of Babe, Paulie succeeds on quite a few levels, and is an occasional work of striking intelligence.<br /><br />Jay Mohr's stand-up style of acting is well suited to the part of Paulie. He never plays the part as too smug, even if he is a bit of a smart Aleck. Paulie's worldly, but he is also naive in his way.<br /><br />Because he's lived a rather sheltered life with Marie, when he's taken away, he has to fend for himself for the first time. And when he falls into the hands of different owners, they make promises to Paulie to reunite him with Marie, which he believes. Only for those promises to be broken time and again.<br /><br />Paulie is admittedly a little episodic. It follows the eclectic people Paulie ends up with, and how he slowly gets brought closer and closer to Marie. He first winds up in a pawn shop, where he is adopted by Ivy (Gena Rowlands), a kindly woman who teaches him the meaning of manners. She sympathises with Paulie's situation, and drives an RV across America to find Marie.<br /><br />Paulie is an occasionally very touching film. His scenes with Ivy are some of the best. Wonderful moments of Paulie perched on her shoulder singing Tom Jones numbers. The way she instills in him the need for hope is great, and some of the dialogue is quite well written and even thought-provoking: <br /><br />\"\"There are things in life you put off, because you think you're gonna do them later. But the real thing Ivy taught me is you gotta live like there may not be a later.\"\"<br /><br />The scene where Ivy passes away en route leaving Paulie all alone is a very heart-rending moment. And the sequence where he plucks up the courage to fly for the first time across the Grand Canyon, soaring majestically is such a beautifully composed scene it stays with you for hours after the film's over.<br /><br />Despite the occasional sad moment, there are plenty of laughs to be had. Paulie falls in with a group of performing parrots at a Spanish outdoor restaurant. The animatronic effects here are really excellent as four birds do a perfectly choreographed dance number. And Paulie even gets to have a romance. Which is dashed when he falls in with a petty thief (played by Mohr as well). That may be the only complaint I have. As soon as you get comfortable with one situation, the film then moves Paulie on to another.<br /><br />The scene where Paulie is taught to steal money from ATM machines is funny, but a little disturbing too. I'm amazed DreamWorks were granted the chance to include such a scene in a kids film. And Paulie's diamond robbery is very Mission Impossible. He's caught in the act, and shipped off to the lab for animal testing, where he's remained ever since.<br /><br />The story finally comes full circle at the lab, where Misha vows to help Paulie. Of course they do find Marie. But the final revelation is a scene of such shocking intensity, I was left numb for several minutes. Paulie may never get the longevity Babe has, but I believe its an equally brilliant film. The same laughs. The same flawless effects. And the same surprising intelligence.<br /><br />A minor gem.\"\r\n0\tHorrible waste of time - bad acting, plot, directing. This is the most boring movie EVER! There are bad movies that are fun (Freddy vs. Jason), and there are bad movies that are HORRIBLE. This one fits into the latter. Bottom Line - don't waste your time.\r\n0\t\"The various nudity scenes that other reviewers referred to are poorly done and a body double was obviously used. If Ms. Pacula was reluctant to do the scenes herself perhaps she should have turned down the role offer.<br /><br />Otherwise the movie was not any worse than other typical Canadian movies. As other reviewers have pointed out Canadian movies are generally poorly written and lack entertainment value, which is what most movies watchers are hoping to get. Perhaps Canadian movie producers are consciously trying to \"\"de-commercialize\"\" their movies but they have forgotten a very important thing - movies by definition are a commercial thing....\"\r\n0\tThis movie was awful and an insult to the viewer. Stupid script, bad casting, endless boredom.<br /><br />In the usual tradition of Hollywood, the government of the US is shown as always evil. The Communist-sympathizer nitwits in Hollywood, most of whom are as dumb as a box of rocks, love taking the lone nutcase Eugene McCarthy and picturing him as the leader of a vast movement. The truth is that at the time he was considered a fringe character who was exploiting a legitimate concern about the Soviet Communists for political gain.<br /><br />Oh yeah, and the US brought over all those evil Nazis. Like Werner VonBraun, without whom we would have no space program. He actually loved being American and became a great asset to the country.<br /><br />And yet the irony is that the fools in Hollywood, an uneducated lot who live a fantasy existence, still believe that the government should run EVERYTHING and give us all what we want. And yet, this is the same government that they continually portray as a consummate evil in films like this.\r\n1\t\"Although I love this movie, I can barely watch it, it is so real. So, I put it on tonight and hid behind my bank of computers. I remembered it vividly, but just wanted to see if I could find something I hadn't seen before........I didn't: that's because it's so real to me.<br /><br />Another \"\"user\"\" wrote the ages of the commentators should be shown with their summary. I'm all for that ! It's absolutely obvious that most of these people who've made comments about \"\"Midnight Cowboy\"\" may not have been born when it was released. They are mentioning other movies Jon Voight and Dustin Hoffman have appeared in, at a later time. I'll be just as ruinously frank: I am 82-years-old. If you're familiar with some of my other comments, you'll be aware that I was a professional female-impersonator for 60 of those years, and also have appeared in film - you'd never recognize me, even if you were familiar with my night-club persona. Do you think I know a lot about the characters in this film ? YOU BET I DO !!....<br /><br />....and am not the least bit ashamed. If you haven't run-into some of them, it's your loss - but, there's a huge chance you have, but just didn't know it. So many moms, dads, sons and daughters could surprise you. It should be no secret MANY actors/actresses have emerged from the backgrounds of \"\"Midnight Cowboy\"\". Who is to judge ? I can name several, current BIG-TIME stars who were raised on the seedy streets of many cities, and weren't the least bit damaged by their time spent there. I make no judgment, because these are humans, just as we all are - love, courage, kindness, compassion, intelligence, humility: you name the attributes, they are all there, no matter what the package looks like.<br /><br />The \"\"trivia\"\" about Hoffman actually begging on the streets to prove he could do the role of \"\"Ratzo\"\" is a gem - he can be seen driving his auto all around Los Angeles - how do you think he gets his input? I can also name lots of male-stars who have stood on the streets and cruised the bars for money. Although the nightclub I last worked in for 26 years was world-famous and legit, I can also name some HUGE stars that had to be constantly chased out our back-street, looking to make a pick-up.<br /><br />This should be no surprise today, although it's definitely action in Hollywood and other cities, large and small. Wake-up and smell the roses. They smell no less sweet because they are of a different hue.<br /><br />Some of the \"\"users\"\" thought \"\"Joe Buck\"\" had been molested by his grandma. Although I saw him in her bed with a boyfriend, I didn't find any incidence of that. Believe-it-or-not, kids haven't ALWAYS had their own rooms - because that is a must today should tell you something kinda kinky may be going-on in the master-bedroom. Whose business? Hoffman may have begged for change on the streets, but some of the \"\"users\"\" point-out that Jon Voight was not a major star for the filming of \"\"Midnight Cowboy\"\" - his actual salary would surprise you. I think he was robbed ! No one can doubt the clarity he put into his role, nor that it MADE him a star for such great work as \"\"Deliverance\"\". He defined a potent man who had conquered his devils and was the better for it: few people commented he had been sodomized in this movie. The end of the 60s may have been one of the first films to be so open, but society has always been hip.<br /><br />I also did not find any homosexuality between \"\"Ratzo\"\" and \"\"Joe\"\" - they were clearly opposites, unappealing to one another. They found a much purely higher relationship - true friendship. If you didn't understand that at the end of the movie, then you've wasted your time. \"\"Joe's\"\" bewilderment, but unashamed devotion was apparent. Yes, Voight deserved an Oscar for this role - one that John Wayne could never pull-off, and he was as handsome in his youth.<br /><br />Hoffman is Hoffman - you expect fireworks. He gave them superbly. Wayne got his Oscar. Every character in this film was beautifully defined - if you don't think they are still around, you are mistaken. \"\"The party\"\" ? - attend some of the \"\"raves\"\" younger people attend.....if you can get in. Look at the lines of people trying to get into the hot clubs - you'll see every outrageous personality.<br /><br />Brenda Viccaro was the epitome of society's sleek women who have to get down to the nitty-gritty at times. If you were shocked by her brilliant acting, thinking \"\"this isn't real\"\", look at today's \"\"ladies\"\" who live on the brink of disrepute....and are admired for it.<br /><br />The brutality \"\"Joe\"\" displayed in robbing the old guy, unfortunately, is also a part of life. You don't have to condone it, but it's not too much different than any violence. \"\"Joe\"\" pointedly named his purpose - in that situation, I'd have handed-over the money quicker than he asked for it. That's one of the scenes that makes this movie a break-through, one which I do not watch. I get heartbroken for both.....<br /><br />John Schlesinger certainly must have been familiar with this sordidness to direct this chillingly beautiful eye-opener- Waldo Salt didn't write from clairvoyance. Anyone who had any part of getting it to the screen must have realized they were making history, and should be proud for the honesty of it. Perhaps \"\"only in America\"\" can we close our eyes to unpleasant situations, while other movie-makers make no compunction in presenting it to the public. Not looking doesn't mean it isn't there - give me the truth every time. Bravo! to all......\"\r\n0\t\"My wife and I both agree that this is one of the worst movies ever made. Certainly in the top ten of those I've watched all the way through. At least \"\"Plan 9\"\" was enjoyable.<br /><br />I DID really enjoy \"\"Christine\"\", \"\"The Dead Zone\"\", \"\"Firestarter\"\", \"\"Carrie\"\", and some of his other films. I didn't care much for \"\"Cujo\"\" (only because the sound was so bad on versions I've seen and I often couldn't tell what people were saying), or \"\"Pet Sematary (Pet Cemetery)\"\".<br /><br />But this mess was a total mistake in every way possible. The \"\"creatures\"\" themselves seemed designed by a 9-year-old. (No offense to 9-year-olds.)<br /><br />Even the \"\"one-liners\"\" made us groan and weren't remotely amusing.\"\r\n0\t\"Phantasm ....Class. Phantasm II.....awesome. Phantasm III.....erm.....terrible.<br /><br />Even though i would love to stick up for this film, i quite simply can't. The movie seems to have \"\"sold out\"\". First bad signs come when the video has trailers for other films at the start (something the others did not). Also too many pointless characters, prime examples the kid (who is a crack shot, funny initially but soon you want him dead), the woman who uses karate to fight off the balls (erm not gonna work, or rather shouldn't) and the blooming zombies (what the hell are they doing there, there no link to them in the other Phatasms). Also there is a severe lack of midgets running about.<br /><br />The only good bits are the cracking start and, of course, Reggie B.<br /><br />(Possible SPOILER coming Up)<br /><br />To me this film seems like a filler between II and IV as extra characters just leave at the end so can continue with main 4 in IV.<br /><br />Overall very, VERY disappointing. 3 / 10\"\r\n0\t\"I remember when this piece of trash came out, all the newspapers were squawking about how it had taken Barbra Streisand years to get the film made. Well it couldn't have taken that many years; the play only opened in 1975, eight years previously. It made a Broadway star of the great actress Tovah Feldshuh, who probably should have been cast in the film, but NOOOOO...the Great STAR BARBRA HAD TO DO IT HER WAY. AND WITH MUSIC NO LESS! This film is a total disaster from start to finish. For one thing, Barbra was FORTY YEARS OLD when she made it and she looked every minute of it. There was no way anyone could possibly swallow her as a young girl yearning to study Torah. And then when she dresses up as a boy it gets campy. I get the impression that Streisand could not bear to be unattractive so she played around with the make-up; she is prettier as a boy than she is as a girl. And as if that is not bad enough, she gets involved with both her schoolmate Avigdor (Mandy Patinkin, whose best moment is the shot of his naked rear end) AND his fiancée (Amy Irving, who does her usual sleepwalker routine, a bit of schtick the poor woman always resorts to when the director ignores her and she does not know what she is doing). Yentl even goes so far as to marry the girl; I won't even bother to mention the \"\"wedding night\"\" scene.<br /><br />Then there is the music. Nine totally forgettable songs, all sung by Streisand via voice-over (presumably as a look inside her mind), and each one as intrusive and irritating as fingernails on a blackboard.<br /><br />I won't say that Streisand does not show a glimmer of promise as a director here; some of the visuals are lovely (Patinkin's backside especially), and she has a good eye for balance. The problem with this movie is that she won't get out of her own way. I did not believe her for one second in the title role; she should NEVER have added the songs, and on top of that the whole mess goes on for two hours and fifteen minutes. I was sick of the whole sorry mess after forty-five minutes.<br /><br />Awful, awful, awful.\"\r\n1\t\"Along with \"\"Brothers & Sisters\"\", \"\"Six Degrees\"\" was one of my favorite new dramas of fall 2006. <br /><br />Great cast all around, but really enjoyed the work of Campbell Scott (the come-back photog) and Hope Davis (recent widow of journalist killed in Iraq).<br /><br />Aside from the acting, the writing was fresh and the acting superb. The show was also shot in NYC, the real city, not the Warner Bros. or some other studio's backlot, adding a secondary layer or realism. <br /><br />I guess people are more interested in the latest \"\"Survivor\"\" and other reality garbage. Too bad it didn't last.\"\r\n1\t\"The power to dream is a wonderful thing. There's a saying, \"\"Not all dreamers achieve, but all achievers dream.\"\" By exploring our imagination we shape our own futures. Or build empires. Perhaps overcome our fears, limitations and obstacles. Gain wisdom and benefit mankind. Or (put simply) just find our way to true love and happiness. Freud might express such things in symbols. The language of fantasy.<br /><br />Tristan ventures out of a rather twee English village called Wall. He goes through a break in the wall. A portal. In search of something that will prove his love to Victoria (Sienna Miller). Victoria doesn't take him very seriously. So he pledges to bring back a falling star.<br /><br />Stormhold is the world outside the wall. He discovers the fallen star has taken the form of a beautiful girl, Yvaine (Claire Danes). To complicate matters, three evil witches want to get hold of Yvaine. If they can eat her heart, it will replenish their youth. (One of the witches is played by Michelle Pfeiffer, who does fabulous young-old transformations of looks and manner.) The 'good guy' they meet on their way is Captain Shakespeare (Robert de Niro). He has a fierce, swashbuckling pirate exterior but is a sweetie closet queen underneath. Heirs of Stormhold meanwhile are engaged in a pitched battle over inheriting the Kingdom. Ricky Gervais is an added extras. A buffoon trader throwing in standard Gervais-type gags well. Tristan's purity of spirit arouses the love of Yvaine, so there is a nice little triangle going. Till he achieves the maturity to discern pedestal divas from real women.<br /><br />Stardust is a full-on, large scale fantasy that does credit to its myriad stars. Wholly positive, and written with a clarity that makes it more worthy of psychoanalysis that a coven full of Harry Potter romps. Production values rival Hollywood, and the storyline is free of the racial stereotyping, misogyny, religious or class agendas than shape and pervert so many large scale fantasies.<br /><br />That is not to say that Stardust is without its faults. Plot and dialogue have many predictable elements, and the fairytale quality may be too saccharine for some audiences. But if you want an excuse to let your heart fly, this film may well provide it.<br /><br />As a boy, I remember listening in wonder to albums by the Moody Blues (who practiced in a house not far from where I lived). They made records with names like \"\"In Search of the Lost Chord,\"\" and wrote lyrics like, \"\"Thinking is the best way to travel.\"\" I would fill my head with books on magic and mystery, from Timothy Leary to Aleister Crowley. Shaping dreams. Learning to make them real. Nowadays people might talk of NLP or positive thinking. Adults that remember how to dream with the force of youth but with the vision and application of maturity. Do you still enjoy that feeling?<br /><br />You are advised not to wait for Stardust on DVD. See it on the biggest cinema screen you can find. And Dolby Digital Surround Sound if you can get it. The actors look like they had a ball. Maybe you will too.\"\r\n1\tIra Levin's Deathtrap is one of those mystery films in the tradition of Sleuth that would be very easy to spoil given any real examination of the plot of the film. Therefore I will be brief in saying it concerns a play, one man who is a famous mystery playwright, another man who is a promising writer, the playwright's wife who is much younger and sexier than the role should have been, and one German psychic along for the ride. Director Sidney Lumet, no stranger to film, is quite good for the most part in creating the tension the film needs to motor on. The dialog is quick, fresh, and witty. Michael Caine excels in roles like these. Christopher Reeve is serviceable and actually grows on you the more you see him act. Irene Worth stands out as the funny psychic. How about Dyan Cannon? Love how Lumet packaged her posterior in those real tight-fitting pants and had her wear possibly the snuggest tops around, but she is terribly miscast in this role - a role which should have been given to an older actress and one certainly less seductive. But why quibble with an obvious attempt to bribe its male viewers when nothing will change it now? Deathtrap is funny, sophisticated, witty, and classy. The mystery has some glaring flaws which do detract somewhat, and I was not wholly satisfied with the ending, but watching Caine and Reeve under Lumet's direction with Levin's elevated verbiage was enough to ensnare my interest and keep it captive the entire length of the film.\r\n0\t\"I saw this movie once a long time ago, and I have no desire to ever see it again.<br /><br />This movie is about Preston Waters, a hard-lucked preteen, who always seems to be overlooked by his family and who always seems to be short on cash. All this changes when a bank robber runs over Preston's bike and passes him a blank check as compensation. Preston uses the check to withdraw $1 million from the bank (ironically, the money belongs to the bank robber who gave him the check). Preston then buys a mansion and says that he's working as the assistant of a mysterious and wealthy backer named Mr. Macintosh (named after his computer). After that, he just goes crazy with the money.<br /><br />On paper, this sounds like a great idea. However, on screen, it is one of the emptiest movies I've ever seen. For one thing, it's too unbelievable. I know some parts of the movie were meant to be incredible, but I draw the line at a twelve-year-old boy going out with a thirty-year-old woman, and being put in charge of a imaginary person's small fortune. Also, this was a shallow movie with weak acting, a predictable plot line and characters who are less than memorable. The characters were either cheesy, over the top, annoying, or underdeveloped. But \"\"Juice\"\" was a funny character.<br /><br />If you're looking for a good movie to watch with your family, skip this one.\"\r\n0\tGhost Town starts as Kate Barrett (Catherine Hickland) drives along an isolated desert road, her car suddenly breaks down & she hears horses hoofs approaching... Deputy Sheriff Langley (Frank Luz) of Riverton County is called in to investigate Kate's disappearance after her father reports her missing. He finds her broken down car & drives off looking for her, unfortunately his car breaks down too & he has to walk. Langley ends up at at a deserted rundown ghost town, much to his shock Langley soon discovers that it is quite literally a ghost town as it's populated by the ghosts of it's former residents & is run by the evil Devlin (Jimmie F. Skaggs) who has kidnapped Kate for reasons never explained & it's up to Langley to rescue her & end the towns curse...<br /><br />The one & only directorial effort of Richard Governor this odd film didn't really do much for me & I didn't like it all that much. The script by Duke Sandefur tries to mix the horror & western genres which it doesn't do to any great effect. Have you ever wondered why there aren't more horror western hybrid films out there? Well, neither have I but if I were to ask myself such a question I would find all the answers in Ghost Town because it's not very good. The two genres just don't mix that well. There are plenty of clichés, on the western side of things there's the innocent townsfolk who are to scared to stand up to a gang of thugs who are terrorising them, the shoot-outs in the main street, saloon bars with swing doors & prostitutes upstairs & horror wise there's plenty of cobwebs, some ghosts, an ancient curse, talking corpses & a few violent kills. I was just very underwhelmed by it, I suppose there's nothing terribly wrong with it other than it's just dull & the two genres don't sit together that well. There are a few holes in the plot too, why did Devlin kidnap Kate? I know she resembled his previous girlfriend but how did he know that & what was he going to do with her anyway? We never know why this ghost town is full of ghosts either, I mean what's keeping them there & what caused them to come back as ghosts? Then there's the bit at the end where Devlin after being shot says he can't be killed only for Langley to kill him a few seconds later, I mean why didn't the bullets work in the first place?<br /><br />Director Governor does alright, there's a nice horror film atmosphere with some well lit cobweb strewn sets & the standard Hollywood western town is represented here with a central street with wooden buildings lining either side of it. I wouldn't say it's scary because it isn't, there's not much tension either & the film drags in places despite being only just over 80 odd minutes in length. Forget about any gore, there a few bloody gunshot wounds, an after the fact shot of two people with their throats slit & someone is impaled with a metal pole & that's it.<br /><br />I'd have imagined the budget was pretty small here, it's reasonably well made & is competent if nothing else. Credit where credit's due the period costumes & sets are pretty good actually. The acting is alright but no-ones going to win any awards.<br /><br />Ghost Town is a strange film, I'm not really sure who it's meant to appeal to & it certainly didn't appeal to me. Anyone looking for a western will be annoyed with the dumb horror elements while anyone looking for a horror film will be bored by the western elements. It's something a bit different but that doesn't mean it's any good, worth a watch if your desperate but don't bust a gut to see it.\r\n0\t\"Watching this stinker constitutes cruel and unusal punishment at the hands of Sandler. Truly a slow and painful death.<br /><br />'Bought the DVD in the $5.88 bin at Wal Mart. But the thought that keeps echoing in my head is, \"\"How can I get my money back?\"\"<br /><br />The most unforgivable thing about the movie is that the boat JUST DOES NOT SINK!<br /><br />Best constructive suggestion: Mystery Comedy Theatre. You know that show on the SciFi Channel in which some guy and his muppet-machines spoof the most unwatchable horror flicks (Mystery Science Theatre). IMMEDIATELY, spin off a comedy program and feature this flick. Without a good humorous spoof of this train wreck, I fear that viewers may actually begin following Sandler with ice picks and chainsaws.<br /><br />\"\r\n0\t\"Greenaway's films pose as clever, erudite and innovative. Yet his style and grammar originate and remind viewers of films made in the World War 1 era of film-making: the frame composition, use of mid-shot, the static camera. It may be well to rub against mainstream movies with this style but it is not new. Perhaps like that other \"\"innovator\"\", TS Eliot, he draws more from the past than in looking forward as an authentic innovator would or could.<br /><br />Yet Greenaway's biggest failing is that he cannot write. His dialog and even plot structure is mechanical and logical but without the vitality of another dramatic logician, Brecht. Where this weakness is most apparent is in his humor, which is poised and logical, so the joke is dead before it's delivered. The result is tedium: if it's not funny, it has failed: ask a stand-up comedian to justify their act if the audience doesn't respond. Perhaps the well-read director could learn something from Freud on humor.<br /><br />Finally, like Woody Allen, Greenaway has manipulated his actors over the years to work like clones. They speak the lines with a bored, smug air like narcissistic adolescents.<br /><br />This film, despite its design and lighting, is meretricious.\"\r\n1\t\"Having worked in downtown Manhattan, and often ate my lunch during the Summer days in the park near City Hall, I would see the mayor come and go. It was great being able to go beyond the doors of City Hall and see what it looked like in the lobby and through out the entire building. Al Pacino,(Mayor John Pappas),\"\"Gigli\"\",'03, gave an outstanding performance through out the entire picture, and especially when he gave a speech at an African American Church for a little boy who was slain. John Cusack,(Deputy Mayor Kevin Calhoun),\"\"Runaway Jury\"\",'03, was a devoted servant to the Mayor and worshiped him in everything he attempted to accomplish. Bridget Fonda,(Marybeth Cogan), starts to fall in love with Kevin Calhoun and gives a great supporting role. Last, but not least, Danny Aiello(Frank Anselmo),\"\"Off Key\"\",'01, played a mob boss who had some very difficult choices to make towards the end of the picture! Great film with great acting and fantastic photography in NYC!\"\r\n0\tI doubt Jigsaw was hip even at the time, the whole LSD theme married to a murder mystery being a patently obvious attempt to grab a young audience of the era without in the least truly showing any understanding of the sixties counterculture. The dated aspect aside, Jigsaw suffers from many problems, including overwrought acting, silly and stilted dialogue, LSD flashbacks that go on interminably long even after the point has been hammered home in the first 60 seconds, a failure to create any true suspense even though the actual plot is, on paper, a great vehicle to do just that, and an ending that is so trite and predictable (not to mention reminiscent of a lot of bad television shows) that the climax is actually an anti-climax. If it was a better movie, we might be able to suspend disbelief on a few things where it would help enjoyment, but the weaknesses are so glaring they only serve to highlight the improbabilities viewers might otherwise overlook. I saw Jigsaw on television and it is definitely late night TV fare meant to fill airspace and pass the time to kill somebody's insomnia rather than anything anybody ought to actively seek out. At very best, a three out of 10.\r\n1\tCecil B. deMille really knew how to create a classic, and after 7 decades his western comes across as the Real McCoy, engrossing, entertaining, spectacular; in no way outdated.<br /><br />As a real fan of TV's DEADWOOD, I'll tell you the performances of Gary Cooper as Wild Bill Hickock and Jean Arthor as Calamity Jane are far more on-target.<br /><br />We don't have any giants in Hollywood anymore. PLAINSMAN is just one of dozens of classics from the 1936-1945 decade that have seen enduring commercial life decade after decade: released, re-issued, re-issued all over again. Filmmakers like today's Spielberg, Jackson, Bruckheimer are like kids playing in a sandbox. None of today's movies will be sought out in 7 months let alone 70 years.\r\n1\tLike the Arabian Nights this film plays with storytelling conventions in order to make us feel that there's plot, plot and more plot: it opens with what appears to be the frame device of a blind man telling the story of his life, then plunges into a flashback which takes us right up to the blind man's present, where we discover that about half of the story is yet to come. (It must be admitted that the second half doesn't quite live up to the promise of the first.) Like the Arabian Nights it tries to cram as many Middle-Eastern folk motiffs as possible into the one work. A freed genie, a beautiful princess, a flying carpet, fantastic mechanical toys, sea voyages, a crowded marketplace, a wicked vizier, jewels ... I don't know why it all works, but it does. Everything is just so beautiful. The sets are beautiful. June Duprez is beautiful. Rozsa's score is especially beautiful. As usual, it sounds Hungarian; but somehow he manages to convince us that he's being Hungarian in a Persian way.\r\n0\tIt's been a long time since I last saw a movie this bad.. The acting is very average, the story is horribly boring, and I'm at a loss for words as to the execution. It was completely unoriginal. O, and this is as much a comedy as Clint Eastwood's a pregnant Schwarzenegger! <br /><br />One of the first scenes (the one with the television show - where the hell are you?) got it right - the cast was 80% of let's face it - forgotten actors. If they were hoping for a career relaunch, then I think it might never happen with this on their CV! The script had the potential, but neither 80% of the actors nor the director (who's an actor and clearly should stick to being an actor) pulled it off. Fred Durst was the only one who seemed better than any of the rest.<br /><br />I'm sorry, but if you ever consider watching this - I highly recommend you turn to something less traumatic, because not only it's a total loss of time, but also a weak example of what bad cinema looks like.\r\n1\t\"I managed to catch a late night double feature last night of \"\"Before Sunrise\"\" (1995) and \"\"Before Sunset\"\" (2004), and saw both films in a row, without really having the chance to catch my breath in between or ponder on the meaning of each film separately. After sleeping it over, I have to say that I largely prefer the former over the latter, and I shall explain why.<br /><br />Before Sunrise introduces us with then young actors, Ethan Hawke (Reality Bites, Dead Poets Society), only 25 at the time of the film's release; and Julie Delpy (the Three Colors trilogy), then 26 (although looking much younger). He is a promiscuous American writer, touring Europe after breaking up with his girlfriend; She is a young French student, on her way home to Paris. They meet on the Budapest-Vienna train and spontaneously decide to get off the train together. The two deeply spiritual and intellectual individuals than spend a whole night together walking the beautifully captured streets of Vienna, exchanging ideals and thoughts and gradually falling on love.<br /><br />The film has 1990's written all over it: back then, technology was leaping rapidly, the new millennium with all it's hopes and dreams was waiting just around the corner, and young adults like the ones depicted in the film were filled with love of life and passion for the future. The characters of Jesse (Hawke) and Celine (Delpy), with all their flaws and inconsistencies (Celine's accent, if by mistake or on purpose, was half American-half French, and it swinged from one spectrum to the other, breaking the character's credibility), were a mirror of the time. Watching the naive couple swallow life with such meaning and excitement, acting all clichéd and romantic yet managing to have the audience fall for them as well, is what really made this movie work for me. The fact that the director doesn't let you know if their relationship continues after the film or not makes it all even more worth while.<br /><br />All in all, Sunrise is a dreamy stroll through the urban landscapes of Vienna, a well told classical romantic rendezvous, and a film I will definitely return to for further insight sometime in the future.\"\r\n0\tFor those looking for a sequel for the fine South African miniseries of the 1980s, this isn't it. Nor is it a historical drama. Rather, it is a dreary little fantasy which has nothing to do with the historical Shaka, but merely uses his name to give a certain cachet to Sinclair's idiotic story about an African superhero who is a combination of Jesus, Lincoln, Superman, and Nelson Mandela.<br /><br />On the other hand, there are a few laugh-out-loud moments, as when Shaka breaks the cross to which he is chained and kicks some serious slaver butt. You know, like Jesus would have done if he hadn't been such a wimp.<br /><br />True, I saw only the 98-minute version, but I can't imagine that twice as much of this crap would have been better.<br /><br />And what kind of a name is Mungo?!\r\n0\tF*ck Me! I've seen some incredibly horrific movies in my time but this takes the p*ss!<br /><br />Honestly I can't express in words how bad this film actually is. Besides the plot that isn't really there, the comically crap acting, the hilariously dreadful excuses for zombies; You know what, I could go on all day. Every little thing in this film is either stupid, pointless, crap or embarrassing. I express to anyone who wants to watch this movie... don't!<br /><br />I'm ashamed to say, I have this on my rack. It's hidden away right at the god damn bottom of the huge pile. I couldn't even give this horse-sh*t excuse for a film away. That's how bad it is.\r\n1\tI find Alan Jacobs review very accurate concerning the movie;however I had the opportunity to rent the DVD from blockbuster with a commentary from BYU's Curator, Motion Picture Archives James D'Arc. The then LDS Prophet Heber J. Grant approved of the movie understanding the deviations from historic content for dramatic expression and telescoping events. For example the movie showed Joseph Smith on trial. despite Brigham Young's great oratory in defense of Joseph Smith he was convicted anyway. Then Joseph was killed. Historically Joseph Smith was never convicted of anything. Brigham Young was in Boston when Joseph Smith was arrested for this particular trial. Joseph Smith and his brother Hyrum where both killed before the trial took place.\r\n1\t\"I happened to see this movie twice or more and found it well made! WWII had freshly ended and the so-called \"\"Cold War\"\" was about to begin. This movie could, therefore, be defined as one of the best \"\"propaganda\"\", patriotic movies preparing Americans and, secondly, people from the still to be formed \"\"Western NATO block\"\" of countries to face the next coming menace. The movie celebrates the might of the US, through the centuries, while projecting itself onwards to the then present war, which had just ended. Nice and funny is the way of describing the discovering of the American Continent by Columbus and pretty the \"\"espisode\"\" of New Amsterdam and the purchasing of Manhattan from a drunk local Indian .. Must see it (at least once, for curiosity of fashion of propaganda through time)! :)\"\r\n1\t\"This documentary makes you travel all around the globe. It contains rare and stunning sequels from the wilderness. It shows you how diversified and how fragile our planet can be. The polar bear's future is highlighted at the beginning and at the end of it. After all, its bleak future is closely linked with the consequences of global warming. This documentary is however a simplistic approach of such a serious environmental issue. It can nonetheless be easily seen by young children since it mainly remains descriptive. Scientists might well be disappointed as it is not a remake of Al Gore's documentary \"\"An inconvenient truth\"\" but frankly...what a description!!! A question may then arise: Isn't it worth preserving our world's beauty? Because this documentary proves that in 2007 such a beauty still exists despite the different pollutions. By living in towns and cities we tend to forget that we are part and parcel of this nature. All things considered this documentary reminds us that we own a common treasure called \"\"EARTH\"\".\"\r\n1\tI'm so glad I happened to see this video at the store. I was looking for some happy movies and this one turned out to be a true gem. I loved that the movie, a love story of sorts, wasn't about some beautiful twenty-somethings; rather, it's a story of some beautiful sixty-somethings, who used used to be twenty-somethings. It's a good, well written, and wonderfully acted story with fabulous WWII band music thrown in as well. It's also got a delightful surprise in it for Scottish castle lovers. It left me smiling and ready to watch it again, which I did a couple more times before I turned it in. I highly recommend it.\r\n0\tIf this film was a comedy, I would have given it a 10. Oh my, where do I begin? Put it this way -- I've seen lots of terrible horror films, but this one makes Troll 2 look like freakin' Saving Private Ryan. It's as if a group of porn filmmakers decided to make a horror film, changed their mind in midproduction and decided to do a comedy, then went back to horror, and then decided that they should have just stuck with porno (softcore at that). Everything about this film is simply terrible: the musical score (someone shoot the guy who invented the Yamaha keyboard), the script, the directing, the cinematography, the acting. There simply are no words to describe this. Oh wait, yes there are: Holy $*%!.\r\n0\tMost of the French films I've seen - and enjoyed - were more talk than action, but that's okay. I found them interesting, well-photographed and with intriguing actors. (However, I did at one point wonder if Gerald Depardieu was in every French film ever made! It seemed that way.)<br /><br />This movie has the same interesting visuals and had a good opening. But then it became talk, talk and more talk....which is fine for a drama but not for a murder mystery. After awhile, I almost fell asleep watching this.<br /><br />Actually, the film was more like a play with almost all the scenes played out in one room. Thus, if you love plays, you should like this...but I want a little more bang for a murder story.\r\n1\tThe Theory Of Flight is an engaging character study of an artist (Branagh) yearning to break free of boredom and mediocrity, and a terminally ill patient (Bonham-Carter) in the last stages of ASL, confined to a wheelchair, who desires to make love to a man before dying.<br /><br />Helena Bonham-Carter exudes wit, defiance, and independence as an ASL patient who is virtually dependent upon people around her to take care of her.<br /><br />Kenneth Branagh, sentenced through community service to take part in caring for her, complements Helena's charm with woeful melancholy, creating a sentimental, compelling love story in which two people try to help each other find the road to happiness, before time runs out.\r\n1\tGood historical drama which is very educational and also very entertaining to people who like history.Very good acting and script.Not as sensual and sexy as it is sometimes marketed,be prepared to peek into the pioneer spirit and human ability to adjust.Very touching as well for the spiritually mature. Not for people who do not like to think......\r\n1\tThe critics didn't like this film. It bombed in the States and as a result received only a limited showing in Britain. Which was a great shame, because it represents British rather than American humour and should have been shown in Britain first.<br /><br />Nicole Kidman looks stunning and is a totally convincing Russian. Ben Chaplin is the Dustin Hoffman character from 'The Graduate', and 'Birthday Girl' has at least 4 scenes which remind the viewer of that 1960s classic (despite being a totally different story!).<br /><br />Sure it changes tack a number of times from comedy to black comedy to thriller to adventure - but it's memorable, moving and a weclome breath of fresh air compared to the average mega-budget blockbuster.<br /><br />See it with an open mind!\r\n1\tI am a college student studying a-levels and need help and comments from anyone who has any views at all about the theme of mothers in film, in the mother. Whether you have gone through something similar or just want to comment and help me research more about this film, any comment would much greatly appreciated. The comments will be used solely for exam purposes and will be included in my written exam. So if you have any views at all, im sure i can put them to use and you could help me get an A! I am also studying 'About a Boy' and 'Tadpole' so if you have seen these films as well, i would appreciate it if you could leave comments on here on that page. Thank you.\r\n1\tSince starting to read the book this movie is based on, I'm having mixed feelings about the filmed result. I learned some time ago to see the movie adaptation of a book before I read the book, because I found that if I read the book first I was inevitably disappointed in the film. This would undoubtedly have been true here, whereas in the case of Atonement, which is probably the best filmed adaptation of a book I've ever seen, it would probably not have mattered.<br /><br />I'm trying to figure out what the cause is, and I suspect that I have to point my finger squarely at Michael Cunningham. Much as I respect him for The Hours (which I have not read but which I saw and was awed by) I cannot escape the feeling that he not so much adapted Susan Minton's book as he did take a few of the characters and the basic premise and write his own movie out of it.<br /><br />It's not that I dislike the movie. I actually love the movie, which is why, since I started reading the novel, I'm feeling disturbed about the whole thing. I feel disloyal to Ms. Minton for enjoying the movie which was so thooughly a departure from her work. Reading it, I can understand why she had such a struggle adapting it. Unlike what one reviewer of the movie said, it's not so much that some novels don't deserve to be a movie; it's more like some books just can't make the transition. Ms. Minton's novel operates on a level so personal and intimate to her central character, so internally, that it seems impossible to me to place it in a physical realm. Even though a lot of the book is memory of real events, it is memory, and so fragmented and ethereal as to be, I feel, not filmable. I think that Ms. Minton's work is a real work of literature, but cannot make the transition to film, which in no way detracts from its value.<br /><br />I cannot yet report that Evening, the film, does not represent Evening, the novel, in any more than the most superficial way, since I'm only halfway through, but the original would have to make a tremendous leap to resemble the film that follows at this point. I guess I'm writing this because I feel that if you're going to adapt a novel, adapt it, but don't make it something else that it's not. I'm not sure if Michael Cunningham has done anything wholly original, but from what I can see so far the things he has done are all based on someone else's work. We would not have The Hours if Virginia Woolf had not written Mrs. Dalloway, and we would not have Evening, in its distressed form, if Susan Minton had not had so much trouble doing what probably should not have been attempted in the first place. But it's too much to say that it would be better if Ms. Minton had left well enough alone, because Evening, the film, is a satisfactory and beautiful work of its own.<br /><br />Thus my confusion, mixed feelings, sense of disloyalty, and ultimate conclusion that, in this case, the novel cannot be the film and vice versa, and my eventual gratitude to both writers for doing what they did, so that we have both works as they are.\r\n0\tThis movie is not as good as all think. the actors are lowlevel and the story is very comic-like. I respect fantasy but Lord of the Rings is fantasy...Conan..is fantasy...THIS IS JUST NORMAL HK-LOWPRICE-ENTERTAINMENT...Why did they include this Splatter-tongue, it makes everything worse. The only good thing is the cinematography and the cutter's Job.\r\n0\t\"This is not horror, as the first part was: This is (\"\"campy\"\") light and humorous entertainment. Like in so many sequels, the action starts right away with no explanations. But there's boobs, so I don't complain. And real boobs that is. If I understand correctly, those are quite rare today amongst the teenage girls in U.S. of A. Which brings to my mind the fact that the main actress here is Pamela \"\"Bruce's sister\"\" Springsteen.<br /><br />This cannot be thought without the first movie, so I compare this to it. Again there is too small clothing (mainly pants) and funny hair, it's not hard to tell what decade this film is made in. Again there is really strange characters, this time even more visibly \"\"pathological\"\" ones. Especially the personnel of the camp. It's like some mental rehabilitation summer camp. People are older: Most of the actors must be at least 25, but I think they're supposed to be 16 or something. Some \"\"methods\"\" used by the Evil Dyke are quite unpleasant. Actually this movie don't have much in common with the first part, and this is worse than it in every way.\"\r\n1\t* Firstly, although many say it is the worst of the series, i don't think that it is true,considering this one ideally reflects the 21 century teen mentality .it brings perfect opportunities to make you laugh and remind you of the good teenager times when you would have liked to have same fun as the characters do.<br /><br />* I Agree with the fact that it is a teenager movie but comedy movies nowadays aren't supposed to be for teenagers?i mean... cinemas are mostly the place for teenagers to hang out; plus ,seeing such a movie during a sleepover or something like that is very good for having a very good time.<br /><br />* Many comment about the amount of nudity in this movie. Well...let's get real...doesn't that reflect the thoughts of teen guys like those from the movie? what would you like to see...smart books,romantic stuff? that is not at all what would be in those teenagers' minds ...<br /><br />* To conclude, i think that if you are a teenager, you must absolutely see the movie, and even if you are a real grown up man or a woman, you should see it if you still have a teen mind or you often think about how it was being a teenager,or things like that. Thanks for reading!\r\n1\t\"One of the most beautiful movies ever made in ex Yu.Story is very familiar to people in ex Yul because generation after war used to live in the same way.People in the west cant imagine how political situation in our country affect people.The plot is in the 50\"\",When Josip Broz Tito said no to the SSSR and politbiro and because of that our borders becomes open for western influence.But,in a country were people didn't had much money jeans was only ideal and friendship was everything.The friendship between for young people an a girl was so strong that after 40 years of their emigration from Yu is still alive.They get together after all this years on Ester\"\"s funeral and they start to remember of their childhood,before their went to the emigration and become successful people.\"\r\n1\tGeorge Lopez is a funny man even without the sitcom. The first episodes I saw of this too often made jokes at the expense of his mom. As I have watched this more, there has been more & more variety. No one on the cast is really safe from his wit now.<br /><br />It seems to me as this season has progressed that George is getting more comfortable with the family sitcom Dad role. At first he wasn't, but he is getting More & more into a groove. This makes both him & the shows progressively funnier. They had added a couple of characters for George to play off this year too. His wife's dad is getting more & more involved in the plot.<br /><br />His mom is still there, but not as central as past seasons. I think it is prudent to say with George's sense of comic timing, & ABC's lack of good sitcoms, George Lopez has a good chance of being here on ABC long after George W. Bush.\r\n0\tI'm dumbfounded. Yes that's right. I'm really caught here. No way did I find it awful, but on the other hand it was a frustrating experience in macabre hysterical and murky incoherency. The idea behind such a trim, minimal low-budget Indie production isn't bad, but it's a confused muddle and in the end didn't do anything for me. It's amateurish and simple; it wants to exploit beyond reasoning and do so in that of-late fashionably rapid filming style. We have the documentary laced (hand-held) camera moving everywhere (despite never leaving the van), and sometimes feeling unfocused and blurry making certain details hard to figure out. Lately you kind of get use to it, but there are times when it does become too distracting and even nauseating. Keeping it still will help. The context has little groundwork (which has five teenage girls on their way home from a football game late at night and becoming lost on the back roads. At a road-side store they become involved in a minor accident which smashes an unoccupied SUV headlight. Scared, they flee and not too long that one-light SUV appears behind them. Soon to make their night an unforgettable ordeal in terror) spending most of the time playing out a drawn out, noisy and relentless cat and mouse game. <br /><br />As for being disturbing I guess that depends. Some moments can make you squirm with its attention to pain, desperation and demented brutality (with good use of piercing sound FX that seem to be more favoured over the imagery and not forgetting the alienating background sound effects), but also I found myself snickering too. In passages it can be repellent and intense with a real gradual rush, but hardly believable. The injuries of random characters never seem as serious like you were to believe, despite obviously they should be. Watch how blood runs freely, but it's not entirely convincing and can get dull. The constant nocturnal car chase could only do so much before getting repetitive. We get screaming, spewing, bleeding, running, cursing, body fluids and so on. Quite unpleasant details followed too. With little really to do, it needed a much stronger script than the measly forced one that was penned up. Too many cringe-moments arose from it, and there was not much in the way of depth for the characters and situation they were in. It was about set-pieces, waiting for next torturous encounter and it drew it out long enough. Helping out is it had an unpredictable pattern. <br /><br />The performances; Jennifer Barnett, Angela Brunda, Danielle Lilley, Sandra Paduch and Mia Yi are workman-like with their distraught characters and draw an authentic chemistry to make up for the script's weaknesses in its character-foundation . Veronica Garcia's flipped-out, bug-eyed intensity as the loony driver of the SUV was something yeah something. Her character's real motivation for terrorising the girls and her unstable state of mind is virtually non-existent. I guess being psychotic was good enough. Now probably the most unnerving thing I came across in the feature was that hideous soundtrack. Terrible techno music, to cheesy hard-rock and an overwrought closing score. It never felt overdone or got in the way, but it did stick out like a sore thumb. Co-directors Greg Swinson and Ryan Thiessen try to get the most out of their slight resources, but even with it edgy spirit it ends up being something quite ramshackle. Maybe it was enjoyable to make, but watching it just wasn't the case.\r\n1\tI have to agree with most of the other posts. Was it a comedy? a drama? to me it leaned a little to much towards the comedy side. I could have been a great movie without the comedy and it was horribly contrived. Jamie keeps running into the Julio and whats his name. In New York, how many times do you run into someone you know in downtown Cleveland.And just how could Robert Pastorelli dig up Yankee Stadium to hide the gold. Again, a comedy or drama? But it was still entertaining especially for a Sunday morning. I enjoyed Kimberly Elise's performance, she certainly a beautiful actress and seems to take her craft seriously. She is a younger actress that is going to be viable.\r\n1\tOK - you want to test somebody on how comfortable they are with their adolescence and the embarrassing and maniacal changes therin - then get their immediate reaction from watching this uproarious doc about kids making socially relevant horror flicks in the suburban 80's. More than any movie I has ever seen, the film deals with burdening sexuality and ego in a way that is completely human, never dull, and flushed in the kind of inherent goodness of youth that is discolored by the fear-frenzied adult world where any quirk in youth is accredited to anything from insanity to perversion. Mini-mogul Darren Stien seems to be reaching for a deeper understanding of his triumphs and misgivings as the patriarch of strict kid's world. What he finds in himself and others isn't always pretty - but shows how one can improve and reconcile with age. What does change mean without reflection. I love this movie.\r\n0\t\"This is a typical late Universal Horror flick: its technically comptent, if by the numbers, with a cookie cutter plot and some serious overacting. The most interesting part of this film is its stunt casting of Rondo Hatton, a man with a bone disease as the film's \"\"monster\"\". Its sad to see this man exploited, but he probably made good use of the money they paid him. Hatton is less horrifying than the studio hoped, as I more often felt pity over fear or even loathing. Martin Koslack is on board as the film's mad artist, and he is very amusing in this part. I for one enjoy seeing Koslack in just about anything; for some reason the man amuses me. The only other part of the film that entertained me is the film's absurd take on the art world. Here we are shown evil art critics who revel in their ability to break artists; this is side by side with the film's male \"\"hero\"\" who is an \"\"artist\"\" who paints...get this...pin up girls. Somehow our hero's work is reviewed side by side with the villan's absurdist sculpture. Also amusing is the film's chief nasty critic, who at one point claims that he despises the hero's pin up art because \"\"women like that don't exist\"\" to which our heroine replies with an assurance that the critic just doesn't get out enough. Finally, there's a bit of a subplot about the heroine's (who is an art critic herself) domestication by the leading man....completely anti-feminist and ridiculous to witness. Overall this film is a rather mediocre picture with a few amusing elements.\"\r\n0\t... Bad at being intentionally bad...<br /><br />This little gem shot straight onto the MST3k big screen. While it's obvious the movie isn't trying to be taken seriously (Hopefully that their goal, anyway...), the movie is still plain bad. Hell, it makes Leprechaun In Space look big budgeted...<br /><br />In short: Paint my muscle car prune colored!\r\n0\tDolph Lundgren stars as a former cop/boxer who searches Boston's kinky scene to find out who killed his brother,who was well thought of in the community, however along the way he learns how his brother enjoyed kinky sex and that a serial killer is to blame. Dolph Lundgren is very good in this movie, in fact on the basis of his performance here, one would forget Lundgren's rise to fame involved action roles. That said the material gives Lundgren nothing to work with, in fact, Lundgren is completely left out to dry in a dreary thriller which is both predictable and incomprehensible. Co-Star Danielle Brett is also good, in fact the film works best when it centers around the chemistry of Lundgren and Brett, indeed had the film taken the time to explore their relationship the film would've been fairly decent. However the movie is lackluster, the action is non-existent, the plot not given enough exploration (Too much boring B.S around Lundgren's investigation of his brother's employer) and the film is needlessly gory and ridiculous. Once again, Lundgren is actually really good (As is newcomer Danielle Brett) but the film just lumbers from one sequence to the next, which makes this movie particularly disappointing. If anything else though, it shows how underrated Lundgren is, as an actor.<br /><br />*1/2 Out Of 4-(Poor)\r\n1\tAnyone who does not find this movie funny, does not understand simple comedy. This movie is not a complex comedy, it is full of one liners, and sight gags, and will make anyone who wants to laugh, laugh... The alien who is doing a Nicholson impression will crack you up!\r\n0\tThere is a lot of talk of torture these days. That's all this movie is. It's about a good person who makes a bad decision. Because of his kindness, he becomes vulnerable to two psychotic women. From then on its a just-for-kicks assault on him. I don't know at what point you do something about it. There is a wife and child out there somewhere; he has great feelings of guilt and fear. But there should have been some times when he could have acted. The movie seems to be somebody's joke. I suppose in the wake of the Manson murders, we had a bit of a fixation on the likes of these two. Nevertheless, why would someone make a film like this? What appeals does it have except for sadism. The conclusion is totally unsatisfying, but that could have been remedied with an obvious plot twist. Oh, well. Another hour and a half of my life.\r\n1\t\"To like this movie at most you must be a)strongly in love (without a marriage) b) acknowledge English humor which is about admiring gallant and witty life situations and not just running gags c) be fairly very intelligent, because authors gave an opportunity to laugh and cry over every single minute of this movie, and only if you meet \"\"b\"\" and \"\"c\"\" requirements, you can recognize and enjoy author's input. d) to fully enjoy the movie you must love women like Kirsted Dunst, who is so natural, sweet and irresistible. e)you must admire creative, a little melancholic people with great and remarkable personalities<br /><br />if you meet all these requirements you'll be likely to rate this movie near 10 points.<br /><br />I never laughed half(!) as much as from watching this masterpiece. And i even managed to cry while laughing in some moments (i always get sensitive, whenever good things happen to Kirsten Dunst)\"\r\n0\tThis show is terrible, the jokes are all terrible and just getting worse and worse. I am one of those people who was never a big fan of Corner Gas but at least I liked it at first until it got into a rut around season two, all the jokes had been played out and the characters had nothing to them. Well at least Corner Gas was good at first, Little Mosque on the Prairie is typically awful bland CBC comedy that had nothing going for it from episode 1. Who are the people who are watching this show anyway, I am being honest is it old people or maybe just people who actually live on the prairies? Maybe the jokes are for them and they work there? I don't know a single person who likes this show and can't stand it myself, the jokes are totally predictable and the characters are even less developed than in Corner Gas. Hopefully it won't last much longer because all the success this show has had seems to me to be based entirely on the premise of this show being Muslim which is different and could/should have led to a great show.\r\n1\tThis, I think, is one of the best pictures ever made. It's so pure and beautiful. It really touched me. I'm glad David Lynch proved that a film doesn't necessarily need SFX, a twisting, complicated plot or flashy images. Way to go,Dave. I'd like to see Cronenberg do that!\r\n1\tSteven Speilberg's adaptation of Alice Walkers popular novel is not without its share of controversy. When first released members of the black community criticised its treatment of black men, while others questioned why a white man was directing this film about black women.<br /><br />This is the story of a young black woman named Celie, growing up in rural America after the turn of the century. She has two children by her abusive father which are snatched from her arms at birth. Her only solace in her miserable life comes from her sister.<br /><br />Celie (played in later years by newcomer Whoopie Goldberg) is married off to an abusive husband (Danny Glover). The husband is humiliated by the sister and so she is quickly removed from Celie's life.<br /><br />The story is often heartbreaking as Celie keeps up hope that she may one day be reunited with her sister and with her children. Throughout her life she meets an assortment of characters, including Sophia, a tough as nails wife to her step son, and Shug, a loud and luscious saloon singer, who teaches her a thing or two about love.<br /><br />Speilberg's direction is all over this picture, which offers brilliant cinematography and some stellar performances. I dare you to watch this film and not be moved! The film The Color Purple manages to capture the essence of what is a complicated story. While it tends to minimise the lesbian aspects as well as the African story, both of which were so vivid in the book, the movie remains true to its themes, allowing the voice of Alice Walker to shine through.<br /><br />I couldn't begin to respond to the controversy that surrounded this film. Suffice it to say, however, this is one of the few films that I can watch again and again, and which has left an indelible mark on me.<br /><br />\r\n1\tThis has to be the best adaptation I have seen it's my favourite and I think it stays very close to the book.What really makes this a must see though is the casting of the two lead actors.The wonderful Timothy Dalton is the best Rochester I have seen on screen brooding and tragic,while Zelah Clarke is the perfect combination of strength,courage,shyness and gentleness as Jane. The story(as i'm sure most people know)is this,the young and plain Jane Eyre is a teacher at a charity school for girls in the 1800's who advertises her services as a governess in the newspapers.She is offered the post of governess at the big mansion Thornfield Hall to tutor Adele the young ward of the halls mysterious and respected owner Mr Rochester. As the months go on he falls in love with Jane and puts into effect a few situations to try and see if Jane is as madly in love with him as he is with her.However there is a secret still waiting to be discovered at Thornfield Hall and when it is it's effects are devastating.This is a moving and well acted drama with nice locations and gorgeous costumes plus as I said earlier excellent acting especially from Zelah and Timothy.\r\n1\t'Capital City' fans rejoice! This first season of this series is now available from Network DVD and I've recently got my copy! Although very much an ensemble piece of key 'maverick' trading floor characters 'CAPITAL CITY' does present us with various moments through both its first and second season when each member of the team plays a significant part in a particular central or peripheral plot line. The cultural mix (English, Irish, American, German, Polish) of Head Trader Wendy Foley's (played by Joanna Phillips-Lane) group of staff is balanced with their own distinctive mannerisms, interests and personalities which helps to make the rather unfamiliar and, to most people, seemingly sterile subject of financial trading reasonably engaging through the engaging performances of the cast. In fact this seemingly dynamic young team of employees is in direct contrast to the rather staid and old-fashioned senior management of Shane Longman as represented by Lee Wolf (Richard Le Parmentier) and James Farrell (Denys Hawthorne). I suspect that such an unconventional way of working as employed by Wendy's team would not have become a reality had it not been for youthful reclusive 'free spirit' Peter Longman inheriting his thirty per cent stock in the company from his father and allowed a more trendy, relaxed modern way of business become a reality. To a certain degree Wendy's (I am led to believe) immediate supervisor Leonard Ansen (John Bowe) follows the establishment in the traditional manner of running the company however his fondness for Wendy rather sees him occupying the 'middle ground' on most occasions. The main interest in the series, I believe, stems from the simmering romantic attraction between Douglas Hodge's Declan and the cool self-assured blonde haired German trader Michelle Hauptmann (played by Trevyn McDowell) which had viewers continually wondering if the situation between these two colleagues would develop beyond the close friendship/fondness that they undoubted have.<br /><br />Looking forward to browsing through this title, and hopefully the second season of thirteen won't be too far away!\r\n1\t\"Romantic comedies can really go either way, you know? You'll see one that's really sappy, and you'll think you want something more realistic. Then, you'll see one that's realistic, but it might be too dull to keep you interested. Or maybe you'll see one that does everything right, but just fails to make you smile. Romantic comedies are tough movies. You go into them with a lot of expectations, and usually, whether you like it is simply a matter of whether the filmmakes was anticipating your expectations or those of the guy or girl next to you.<br /><br />Of course, if you've got a girl next to you, and you're a guy like me, it probably doesn't matter all that much whether the movie's any good, you've got other things on your mind. For you, I say, \"\"Go get her, Tiger!\"\" For the rest of us, I say, \"\"See _A Guy Thing_.\"\" It's a lot of fun.<br /><br />Because _A Guy Thing_ knows you're going in to this movie with expectations, so it doesn't pretend that its \"\"Guy about to get married meets the woman of his dreams, and it's not his wife!\"\" plot is going to make everyone happy. Sure, maybe you like it, but maybe it doesn't ring true, or you think it's cruel. _A Guy Thing_ covers that. What _A Guy Thing_ does is fill the screen with the best supporting cast I've seen in a long time, so if you don't the main plotline, you've still got something to make you smile.<br /><br />Whether we're talking about the seasoned veterans of big and small screen, like Larry Miller (Pretty Woman, Best in Show), James Brolin (Traffic), Julie Hagerty (Airplane!), David Koechner (Saturday Night Live and Conan O'Brien regular, Dirty Work, Austin Powers II) or Thomas Lennon (The State and Viva Variety), or new faces like Shawn Hatosy (The Faculty), or Colin Foo (Saving Silverman), we're talking about a bunch of very talented and skilled actors who know exactly how to take advantage of the film's inspired characterisation, steal the show, time after time, and still frame the piece with an energy and a joy rarely seen in romantic comedies these days.<br /><br />And that's not to detract from the actual romantic throughline and the stars that carry it along, because it's very sweet and terribly well done. Jason Lee (Mallrats, Chasing Amy, Dogma, etc.) is touching as the young professional whose life may be spinning out of control, and Selma Blair shows an understated brilliance in portraying the aspiring socialite and sophisticated career woman every guy wants to marry except for the guy who actually is.<br /><br />A lot of the success of the movie, though, falls on Julia Stiles, the right girl in the right place at the wrong time, and she wears it well. Not since, gosh, I don't know when, have I seen an actress in a romantic comedy that has made falling in love with her so easy. Of course, it's all in the closeups, the voice, and the subtle smiles, but it's magical, and it's one of the big reasons why we go to the movies in the first place.<br /><br />But Julie Stiles's slightly offbeat sophistication would be lost were it not for the fact that the rest of the cast is so incredibly dead-on in their classic simplicity. This is a movie that paints a broken world of irreconcilable stock types, makes them fall over each other to make you laugh, and then comes through with a great deal of heart.<br /><br />A Guy Thing is a movie you've definitely seen before, and the filmmakers clearly knew that when they set down to make it. We haven't really seen any new romantic comedies since Shakespeare; the relative success of this one or that one is entirely dependent upon the execution of the classic story of boy meets girl. A Guy Thing does embrace that with a bit of a metacinematic edge, often taking the scenes into the absurd in order to give the audience a chance to acknowledge the powerful emotions and ancient plot devices at play.<br /><br />For the record, it also even manages to poke fun at the rather traditional structural notions of sex and gender that form the center of every romantic comedy, so even the feminists out there might get a kick out of it.<br /><br />And guys, I think we can all agree that we wish our friends are as cool as Jason Lee's friends in this movie. I'm not going to spoil it for you, but when you try to explain to your girlfriend why the pharmacist and the clothing store clerk are among the coolest dudes in cinema, I suggest you just say \"\"It's a Guy Thing,\"\" and leave it at that.\"\r\n1\t\"Thank god ABC picked this up instead of Fox. The best description (for those in the know) is really Wonderfalls meets Dead Like Me in the best way possible.<br /><br />I'm not sure whether an experience with death and destiny early in life makes me a fan of Brian Fuller but I certainly enjoy his productions. I also enjoy checkered floors, pies, talking toys, gravelings and other mischievous items :) While a bit \"\"Burtonesque\"\", I certainly think this enjoys its own niche that doesn't require J Depp or HB Carter to be a wonderfully imaginative playground. Here we can find the joys and sorrows of childhood and adulthood crashing into each and actually making sense and making us want to live life to the fullest!\"\r\n1\tInteresting mix of comments that it would be hard to add anything constructive to. However, i'll try. This was a very good action film with some great set pieces. You'll note I specified the genre. I didn't snipe about the lack of characterisation, and I didn't berate the acting. Enjoy if for what it is people, a well above average action film. I could go on but I've made my comment.\r\n1\t\"Noll's comfortable way of rolling out blunt comments, often with expletives, to describe things that he is more knowledgeable about than most is quite refreshing. There is one other character in the film that constantly tries to verbalize complicated issues, using more language than necessary. This guy should never have been given a Thesaurus. Cut to Noll and you know you're in for a treat!<br /><br />The way the pioneers of big wave surfing are portrayed is very evocative of a \"\"lost era\"\". Nevermind the fact that no one knows how these guys made a living, much less took care of issues like medical care. The use of old film clips throughout was masterfully done.\"\r\n0\t\"My friends usually can put up with a lot of hopeless movies but this one was too poor for us to even watch it to the end. It was just so boring and unoriginal. Not even the \"\"hot\"\" girls that starred in this movie could keep me watching. Everything was just predicable and annoying.<br /><br />The acting was at times good.....but more times bad. The most annoying character in the whole movie that you just wanted to die would have to be the main characters best friend. The more i saw him the more i wanted to smash my screen. (you know what fat ugly kid I'm talking about)<br /><br />The plot has been done so many times before i think they should be sued by other movie companies. OK, it is a good idea but thats all this movie had.<br /><br />Overall this movie can only be watched if by your self, to save any abuse from your friends. Or, if you have absolutely nothing better to do.\"\r\n1\t\"Imagine that you could have anything you wanted, go anywhere you wished, be anything you'd ever dreamed of being - through thought alone. Now imagine yourself sharing this gift with the love of your life. What would you do? Would such powers be worth your soul? This is the dilemma presented to Captain Christopher Pike in \"\"The Cage\"\" the now-legendary pilot episode of the original Star Trek series. Famously deemed \"\"too cerebral\"\" and \"\"too cold\"\" by NBC brass and rejected, \"\"The Cage\"\" was nevertheless the most ambitious and costly pilot ever made in the history of the network at the time, and Gene Roddenberry did not want to let all that effort and expense go to waste, with the result being this truly classic Star Trek episode, which embeds \"\"The Cage\"\" into a frame story which deepens and extends the emotional and philosophical depth of this haunting tale, a landmark in TV history and one of the first truly serious sci-fi stories ever filmed for the small screen...Star Date 3012: The USS Enterprise diverts to Starbase 11 after Mr. Spock receives an urgent message from the former commander of the Enterprise. Surprisingly, the message cannot be from Captain Pike after all, as he is now confined to a wheelchair, mute and horribly disfigured after a tragic accident. Kirk and Starbase commanding officer Commodore Mendez attempt to get to the bottom of the mystery, but before the matter can be cleared up, Spock - for reasons as yet unknown - commits an act of open mutiny, kidnapping the helpless Captain Pike and hijacking the Enterprise via a brilliantly thought-out and timed plan aided by a few Vulcan nerve pinches. Soon, the Enterprise is headed for the remote, forbidden planet of Talos IV. Mendez informs Kirk that Talos IV is under interdiction, and any contact with the planet by Starfleet vessels or personnel carries an immediate death sentence, meaning that Spock appears to be deliberately destroying himself, and Kirk as well, given that the Captain will be held responsible for the ship's activities. Appalled, Kirk and Mendez give chase in a shuttlecraft, which itself becomes dangerous when the Enterprise refuses to answer their calls or pick up the craft until power and oxygen are nearly gone. Spock - knowing that Kirk must be the one following the ship - is of course unable to consign the Captain to certain death. After ordering the craft to be retrieved and the occupants beamed aboard, Spock reveals what he has done to McCoy and demands to be arrested, after having set the starship on an irreversible course to Talos IV. Upon reassuming command, Kirk demands an explanation, whereupon Spock requests immediate court martial by a tribunal of Starfleet commanding officers - of whom there are three on board - Mendez, Kirk, and the crippled invalid Captain Pike. Spock's encyclopedic knowledge of Starfleet regulations enables him to manipulate the tribunal into allowing him to present otherwise inadmissible evidence. Spock presents video recordings of the only contact ever made between the Federation and the inhabitants of Talos IV - a journey taken 13 years earlier by the Enterprise itself under Pike's command. Kirk expresses doubts about the authenticity of the video due to its extreme detail, but the reality of the events depicted is confirmed by Pike himself, who turns out to have been lured to Talos IV by a distress call from the alleged survivors of a Federation research vessel which crashed there 18 years previously. Among the survivors is Vina, a stunning beauty said to have been born just before the disaster. Pike is attracted to the girl and allows her to lure him to an isolated spot, whereupon he is waylaid and captured by the Talosians, a race of androgynous humanoids with enormous cranial capacity and the power to transform thoughts into virtual reality. After Pike's capture, the rest of the \"\"survivors\"\" vanish as none of them really existed except Vina. The episode ends when the tribunal learns that Spock's \"\"evidence\"\" is in fact being transmitted to the Enterprise directly from Talos IV, in violation of Starfleet regulations. Starfleet orders an immediate halt to the transmissions, and we wonder what will happen next...To be continued in a review of \"\"The Menagerie: Part II\"\"!\"\r\n0\t\"What else is left to say?<br /><br />I've read all the reviews here and most are right on. . However, one person even went so far as to call this movie evil and that Satan tainted it (or something along those lines). Evil?! Wow, what a shocker. . I mean, TBN basically made this film. Open your eyes please.<br /><br />Anway, this was the very lowest grade of propoghanda nonsense that has come along in years.<br /><br />The most terrifying thing about Omega Code is how much money they spent to make it. If this movie can be made, there are no limits, and therefore, we have no choice but to get ready for \"\"Yentl 2\"\", and \"\"Ernest Loses the Omega Codes.\"\"<br /><br />For those of you who are into the biblical stories, the new movie Dogma will pickup where Omega Code never started.\"\r\n1\tUnfortunately, in cases such as these, there are so many conflicting stories as everyone tries to cast blame on to others that it is a near impossibility to get a clear picture of what really happened. This movie is a victim of such circumstances. The writers (too many of them) have decided to take ALL of the stories and give them to the audience to let them decide which version of the truth they like the best. As in the real life case, there is no clear answer, no conclusion, and the audience is left with a general felling of being unfulfilled (like coffee without the caffeine, or sex without the climax). Whodunnits with no whodunnit are generally frustrating and makes you wonder why someone didn't do research before they put it out there. At least tout your movie as a fiction if that is what it amounts to (and this does).<br /><br />That is not to say there are not some great performances here. Kilmer (as Holmes) does an outstanding role bringing some humanity to what is otherwise an unsavory character. Kilmer, and the real life lovers and friends who consulted on the film, let the audience see a selfish, troubled human being who, though his faults were many and large, was loved and cared for by many people (except himself). Kudrow as Holmes's wife, only gives a glimmer of the dramatic actress she can be, but it is very noticeable and unforgettable glimmer. Bosworth's character was not as emotionally complex as she could have been and needed to show more inner conflict to give credence to what ultimately happened between Dawn and Holmes (she turned him in 6 months after they fled to Florida). Bosworth's apple-cheeked performance is at time annoying, at times touching, but shows none of the backbone the real Schiller must have possessed. The other characters fade in to the woodwork which is a pity. Lucas is a great performer who could have sunk his teeth in to this role had it been fleshed out for him. Even Dylan McDermott was surprisingly capable in his role of drug dealing biker. <br /><br />The fault of this movie does not lie with this cast, but with the writing. Too many cooks spoil the soup, and this kettle, filled with so much promise, ultimately leaves you hungry. The story and characters may have been less than sympathetic, but in what movie of this ilk are they not so? Other movies such as 1989's drugstore cowboy starring Matt Dillon (who was reportedly asked to take this role and refused) worked with similar subject matter and mastered it to such a degree that you felt a kinship with the main character by the end of the movie despite what he had done. Van Sandt could have given James Cox and his crew a few lessons. Had someone bothered to try and find the truth, this would have been an intriguing story. As it is, you will find the accompanying WADD documentary more palatable (in the 2 disc DVD)and much more informative. You will realize from the DVD that Holmes was not a bad guy, but not a very good one either..as are most people.\r\n1\tDuring 1933 this film had many cuts taken from it because it was very over the top for the story content and the fact that Lily Powers,(Barbara Stanwyck) would do anything to obtain great wealth and power. Lily's father had forced his daughter into prostitution at the age of 14 and she grew up in a steel mill of a town with very poor people and her father ran a speakeasy which brought into his home all kinds of male characters who had their eye on Lily. As the story progresses, Lily meets up with man after man and eventually finds a guy who has everything and is a playboy bank president It is great to see a very young John Wayne, (Jimmy McCoy Jr.) who was only 25 when this picture was produced and Jimmy did not even get to first base with Lily, not even for lunch. A very young George Brent, (Coutland Trenholm) stars along with Barbara Stanwyck and both gave outstanding performances. This is a great film from 1933 which was produced by Darryl F. Zanuck and was locked up in a fault for many years and just recently is being shown on the silver screen. This film is rather mild compared to what we view on the Hollywood screens today, but in 1933 it was very naughty to watch this type of film. Enjoy\r\n0\t\"Maya is a woman without any interests. She just dreams her life away and wonders, why she does not feel fulfilled. This could be an interesting topic. That would need a good story, a nice setting and good dialogues. It doesn't have any of these. This movie is totally boring. There are only lengths and no climaxes.The only climax is Shahrukh Khan. But although I am a huge fan of his, I couldn't stand this movie. Even he can't make this movie exiting. The movie is not as bad as \"\"King Uncle\"\" and if you're an Art-house fan or like it slow, you might maybe like it. It's not funny, it's not interesting, it's not catching. My recommendation: Don't watch it.\"\r\n1\t\"\"\"Footlight Parade\"\" is fascinating on so many levels. There is no way the supposedly staged \"\"theater prologues\"\" could have been produced in any theater on earth, of course. Think of the huge pools and three-story tall fountains for \"\"By A Waterfall,\"\" for instance. (Berkeley directed John Garfield in \"\"They Made Me a Criminal\"\" six years later and had the Dead End Kids singing \"\"By a Waterfall\"\" as they took their showers.) <br /><br />\"\"Shanghai Lil\"\" is the best production number in the picture. It's a catalog of '30s Warner Bros. sensibilities. Note the African guys mixed into the scene with white and Asian prostitutes. You would never see blacks integrated into a social scene in other films of the period unless they were porters on a train or maids in a big house. Here the black guys are sitting at the bar and singing with the others. I also get a thrill when the military dancers do a \"\"card section\"\" presentation of Roosevelt's image. There's also the NRA eagle--the logo of the controversial National Recovery Administration of the New Deal. FDR was the new president and hopes were so high that he'd pull the nation out of the Depression. You'd never see something so working class oriented coming out of MGM, of course. Warner Bros. wholeheartedly supported the uplift dictated by the F.D.R. administration. <br /><br />Dear little Miss Ruby Keeler was never better than she is playing the Chinese hooker, \"\"Lil.\"\" She hardly even watches her feet as she dances, which was one of her signature flaws. <br /><br />The Pre-Code stuff is fun. The \"\"By a Waterfall\"\" number is wonderful in that regard. The girls change into their bathing suits on the crowded bus speeding through Times Square with all its lights on. The spread-eagle girls swimming over the camera provide the kind of crotch shots that would not be seen for 35 years. In a few months the Production Code would eliminate such naughty pleasures.\"\r\n1\tNicole Kidman is a wonderful actress and here she's great. I really liked Ben Chaplin in The Thin Red Line and he is very good here too. This is not Great Cinema but I was most entertained. Given most films these days this is High Praise indeed.\r\n0\tI would have enjoyed this movie slightly more had not been for Jason (Herb) Evers constant harping on experiment. Many early reviewers of The Seven Samurai accused Toshiro Mifune of overacting. Yet, as more and more critics viewed that film they saw it as being purposefully done. Jason Evers is obviously not Toshiro Mifune, and his overacting is exactly that.<br /><br />Most of the actors in this B classic were rather good actors, minus Evers and the showgirls. If you watch this movie, you would have noticed Evers shouting almost every line, that is until he is smoking and blowing the smoke coolly out his nose. <br /><br />The special effects were par for the course in a B movie such as this one. In hindsight, there isn't much that stands out in my mind as fantastically good or bad for this movie.\r\n1\t\"I caught Evening in the cinema with a lady friend. Evening is a chick flick with no apologies for being such, but I can say with some relief that it's not so infused with estrogen that it's painful for a red-blooded male to watch. Except for a single instance at the very end of the movie, I watched with interest and did not have to turn away or roll my eyes at any self-indulgent melodrama. Ladies, for their part, will absolutely love this movie.<br /><br />Ann Lord is elderly, bed-ridden and spending her last few days on Earth as comfortably as possible in her own home with her two grown daughters at her side. Discomfited by the memories of her past, Ann suddenly calls out a man's name her daughters have never heard before: Harris. While both of her daughters silently contemplate the significance of their mother's strong urge to recall and redress her ill-fated affair with this mysterious man at this of all times, Ann lapses back in her head to the fateful day she met Harris - and in doing so, lost the youthful optimism for the future that we all inevitably part ways with.<br /><br />Both Ann and her two daughters - one married with children, one a serial \"\"commitophobe\"\" - struggle with the central question of whether true love really exists, and perhaps more importantly, if true love can endure the test of time. Are we all one day fated to realize that love never lasts forever? Will we all realize that settling for the imperfect is the only realistic outcome? The subtle fact that the aged Ann is still wrestling with an answer to these questions on her deathbed is not lost on her two daughters.<br /><br />The cinematography for Evening is interesting - most of the film is spent in Ann's mind as she recalls the past, and for that reason I think the film was shot as if it was all deliberately overexposed, to give everyone an ethereal glow (and thus make it very obvious that all of this is not real, but occurred in the past). Claire Danes is beautiful (appearing to be really, really tall, though just 5' 5\"\" in reality), and is absolutely captivating in one climactic scene where her singing talents are finally put to the test.<br /><br />You can't really talk trash about the cast, which leads off with Claire Danes and doesn't let up from there: Vanessa Redgrave, Patrick Wilson, Meryl Streep and Glenn Close fill out the other major and minor roles in the film.<br /><br />I can't really say anything negative about this film at all, though Hugh Dancy's struggle to have his character emerge from utter one-dimensionality is in the end a total loss. Playing the spoiled, lovable drunk offspring of the obscenely rich who puts up a front of great bravado but is secretly scared stiff of never amounting to anything probably doesn't offer much in the way of character exploration - he had his orders and stuck to them.<br /><br />In the end, gentlemen, your lady friend will most certainly weep, and while you'll likely not feel nearly as affected, the evening will definitely not be a waste for the time spent watching Evening. Catch it in theatres or grab it as a rental to trade off for points for when you want to be accompanied to a viewing of Die Hard 4 or the upcoming Rambo flick. It'll be your little secret that this viewing didn't really cost you much at all.\"\r\n1\tI had watched several days film shooting of this movie that summer,the end result was just two scenes in the movie. The location was Sylvan Lake in the Black Hills. Bring the wagon,stop the wagon etc . So this Dakota youth looked forward to seeing the movie and was not disappointed. The local buffalo herd was being culled so the shooting scenes were for real. (yes Doris, animals were hurt during filming) I think the ending was copied by Jack Nicholson in the Shining? A great western/social comment from the 50's. This should be in the same class as High Noon for real western drama or used as a social statement like Blackboard Jungle or Rebel Without A Cause was for 50's youth.\r\n0\t\"If you're a fan of the late Gram Parsons then this movie is definitely going to divide you! Part comedy, part road movie, but mostly a bad fictionalization of one of rock history's oddest tales.<br /><br />SPOILERS-- <br /><br />Basically the story concerns a well-known roadie named Phil Kaufman (played by Johnny Knoxville) who \"\"supposedly\"\" made a pact with cult rock/country/folk music hero Gram Parsons that stated when one of them died first (it didn't matter which one it was) that the other living one was to take the deceased out to the desert, Joshua Tree National Park in California to be exact, and set the body ablaze...so as to free the spirit and become one with the earth, and so on! Sure to keep his word the barely sober Kaufman, with the assistance of a self-hating, pot-headed buddy, jacks the body of the late Parsons -whom had fatally overdosed from a drug and booze bender a day prior- from the airport. And shortly after that what ensues is a cringe-worthy combination of fiction and truth where the late Parsons girlfriend, Kaufman's girlfriend, Parsons stone-faced father, and a gaggle of police officers and other pointless idiotic characters all try to beat the clock (so to speak) in trying to catch Kaufman and his pal before they get the chance to torch Parsons body! <br /><br />The film's incompetent direction, bad acting, and lame offbeat tone in general all sink this movie faster than the Titanic. And not to mention the huge fact that this movie is not even halfway telling the truth of the actual events that took place. The accuracies that should have replaced the inaccuracies, as far as I've heard them, include: number 1., Parsons was married at the time of his death and even had a child, so what the hell was that all about with the girlfriend's and the chasing and whatnot?, number 2., Kaufman's drugged-out buddy was a known willing participant (unlike what the movie attempts to portray) in the disposing of Parson's body, and finally number 3., Gram Parsons real-life father died when he was just a boy, and so it was Parson's step-father (who could have honestly cared less about Gram Parsons when he was still alive) in real-life that took care of the body after it was torched! Altogether though, what probably disturbs me the most about this movie is that the real Phil Kaufman was actually on set to help assist with the facts of the story. And yet still, the movie ended up becoming so untrue and so bad that it really boggles my mind, frankly! <br /><br />Also as the mediocre aforementioned acting in the film is concerned it's lead character, played by the ultra-grating Johnny Knoxville (Phil Kaufman), is not only a bad actor but it actually seems as if he were asleep throughout most of the movie, and the rest of the pathetic cast are for the most part either hysterical, brain-dead, or seem utterly clueless as to what they're actually doing there in the first place! Overall, if you like Johnny Knoxville and or really dig the so-bad-they're-not-even-good buddy flicks then I suppose you just might get a kick out of this movie! But, if you're like me and are a fan of the late Gram Parsons, enjoy films that attempt to tell the truth as much as they can especially if they're based on an actual real-life story, and or you just like good films, be-them road movies, or fictional slice-of-life stuff, you will truly loathe this film and advise others to do likewise. I obviously hated this movie and wished it had never been made in the first place, but since it was made I would have preferred it to have turned out differently than what it did, unfortunately! Maybe some day the real facts of the story will come through and be made into a really great biopic on all of Gram Parsons life...not just what happened to his body after his spirit left it. But, until that time comes all we as an audience, and or fans of the late performer get is this sad waste of film and an all-around terrible memorial (of sorts) to the musical legacy that Gram Parsons was known to have left behind. It should also be noted that they did actually use Parsons music, and a few others as well in the flick, but not surprisingly though, you never get to hear enough of it to really enjoy it even in the slightest bit. (Turkey-Zero Stars)\"\r\n1\tI was never a big fan of horror movies. They usually try cheap tricks to scare their audiences like loud noises and creepy children. They usually lack originality and contain overacting galore. The only horror movie i like was Stir of Echoes with Kevin Bacon. It was well-acted, and had a great story. But it has been joined and maybe even surpassed by Stanley Kubrick's The Shining, quite possibly the scariest movie ever.<br /><br />The movie follows a writer (Jack Nicholson) and his family who agree to watch over a hotel while it is closed for the winter. There were rumors of the place being haunted and the last resident went crazy and murdered his family. But Jack is convinced it will be OK and he can use the quiet to overcome his writer's block. After months of solitude and silence however, Jack becomes a grumpy and later violent. Is it cabin fever or is there something in the hotel that is driving him mad?<br /><br />One of the creepiest parts about the movie is the feeling of isolation that Kubrick makes. The hotel is very silent, and the rooms are huge, yet always empty. It is also eerily calm when Jack's son is riding his bike through the barren hallways. Jack Nicholson's performance is also one of his very best, scaring the hell out of me and making me sure to get out once in awhile. My favorite scene is when he is talking to a ghost from inside a walk-in refrigerator.<br /><br />The Shining is tops for horror movies in my opinion, beating the snot out of crap like the Ring and The Blair Witch Project. It may be a oldie, but is definitely a goodie. 8/10\r\n0\tJohn Rivers' life as an architect and family man has taken a turn for the worst when his wife has disappeared and has been concluded dead after a freakish accident that involved changing a tyre on her car. During the days she has been missing, he confronts a man that's been following and he tells him that his been in contact with his dead wife from the other-side through E.V.P - Electronic Voice Phenomenon. Naturally he doesn't believe it but then hear gets weird phone calls from her phone and so he contacts the man to find out more about E.V.P. Soon enough John is hooked onto it, but something supernatural doesn't like him interfering with the dead, as now other then contacting his wife, the white noise is foretelling events before they happen.<br /><br />Since this DVD has been sitting on my shelf for a while now, I thought I better get around to watching it since it wasn't my copy. But then again I don't think the owners were in a hurry to get it back, as they haven't question me about it. Oh well. So I decided to give it a play, as I was in an undemanding mood. After hearing and reading all the bad press on it, I wasn't expecting anything remotely good, but I was kept entertained for 90 minutes. Well, more so the 60 minutes, as the last half-an-hour was pretty much a blur of confusion. The film is nowhere as good as it could have been, but the time breezed by quick enough even though it's a rather tepid supernatural thriller. I thought it wasn't all a waste. The first hour I found some effective sequences rather interesting and there's a spooky awe generated with a slow progression of subtle stillness and tragedy that haunts you, but sadly that comes to a crashing halt later on in the film. That's when the predictably forced jump scares come into their own and somehow it just doesn't fit in with the context. It becomes rather hectic, loud and very muddled with its MTV style editing and kinetic camera-work that gets to close into the action. I couldn't understand what was going on within choppy and abrupt climax. The whole explanation how everything fits into the bigger picture is pure hokey. It's a very unsatisfying conclusion because it goes for something big, but hits rock bottom. I thought they did fine job up until that point with the lighting and showy camera-work. Other then the distinctively stark lighting, the score kept this flick atmospherically gloomy. All of it is very slickly done with its glossed up and fancy hardware, which makes it come across as very sterile and empty.<br /><br />You can easily see that the film's heart is in the technical components and not in expanding the characters and story. There's just no connection and lasting sentiment within this flimsy material. After a while, it just tries too hard to convince you that it falls into manipulative thrills and popping in many blood-curdling stuff from beyond the grave. It just got rather repetitious watching someone watch a fuzzy TV screen after while. The E.V.P machine was the star on the show. Well, it did have more impact than the limp performances. Michael Keaton is more than capable actor, but lately his disappeared off the map and here he provides a modest performance as the dangerously obsessed John Rivers. He really deserves much better, though. Everyone else is pretty brittle and forgettable. Not because of the performances, but of the lack of depth in their characters. This clunker wasn't bad to begin with, but it does go pear shape by falling away drastically.<br /><br />I wouldn't care to see it again and I wouldn't recommend to anyone, unless you got a interest for the subject matter and enjoy the recent crop of Hollywood produced horror/thrillers. It's just a damn shame that this over-produced flick couldn't put it together successfully, as it had promise in its idea and a more than decent cast on hand. I didn't hate it, but what a disappointment.\r\n1\t\"\"\"Winchester '73\"\" marked the first of a series of westerns involving James Stewart and director Anthony Mann. As in most of them Stewart's hero has an violent edge that threatens to explode at any time.<br /><br /> The title refers to a \"\"one in a thousand\"\" rifle that is up for competition at a rifle shoot held in Dodge City on July 4, 1876. Into town comes Lin McAdam (Stewart) and his sidekick High Spade (Millard Mitchell) who are on the trail of Dutch Henry Brown (Stephen McNally) for a past dastardly deed. They arrive just in time to see Marshal Wyatt Earp (Will Geer) running saloon girl Lola (Shelley Winters) out of town. It turns out that Dutch Henry is also in town for the rifle shoot. Lin and Dutch Henry shoot it out for the coveted prize with Lin winning but Dutch Henry robs Lin of the gun and escapes.<br /><br /> Lin and High Spade trail Dutch Henry across country where they encounter Lola with her cowardly beau Steve Miller (Charles Drake) hold up in a U.S. Cavalry camp awaiting attack by the Indians led by Young Bull (Rock Hudson) who has acquired the prized rifle by murdering wily gun runner John McIntyre. He had got the weapon by cheating Dutch Henry at poker. Young Bull is killed during the attack and the gun passes to Steve.<br /><br /> Meanwhile, back at the ranch, Lola and Steve meet up with notorious gunman Waco Johnny Dean (Dan Duryea) who kills Steve and takes the valued rifle and Lola for himself. When Dean meets up with Dutch Henry, he allows him to take back \"\"his gun\"\" planning to murder him later. In the town of Tuscosa, Lin kills Dean as Dutch Henry's plans of holding up the bank go bad and he escapes into the hills with Lin in pursuit. In one of the best final shoot outs ever, the two meet in the final showdown.<br /><br /> I believe that this movie was the only one of the Stewart/Mann collaborations that was shot in B&W. It is beautifully photographed, especially the scenes in the \"\"wide open spaces\"\" and in particular, the final showdown. Stewart playing against type, plays the hero with a violent revenge motive edge, an emotion that he would carry into future films with Mann.<br /><br /> As in most Universal westerns, this one boasts a cast of seasoned veterans and contract players of the day. In addition to those mentioned above, J.C. Flippen appears as the cavalry sergeant, Steve Brodie, James Millican, John Doucette and Chuck Roberson as various henchmen, Ray Teal as the sheriff pursuing Duryea, Tony Curtis and James Best as rookie soldiers and Edmund Cobb, Chief Yowlachie and John War Eagle in various roles in the Dodge City sequence.<br /><br /> A classic western in every sense of the word. It was responsible for re-generating Stewart's career as an action star.\"\r\n0\t\"My roommates & I nearly shorted out our TV from the numerous spit-takes we did while watching this hilarious piece of 1970s self important pseudo-zen dreck. I'd read about this campfest for ages and scanned my local late night TV listings for YEARS in search of this elusive turd. Several years ago our local ABC affiliate was known for showing cool flicks for its late night weekend flick (ie \"\"Frogs\"\", \"\"Night of the Lepus\"\", etc). Then one day it happened: at 1:40am on a Saturday night (over 5 years ago) there it was! We had over 15 folks over and the flick did NOT disappoint!<br /><br />See! Andy Griffith as the silliest & most unthreatening bad guy since Jaye Davidson in \"\"Stargate\"\"!<br /><br />See! William Shatner sport a variety of things atop his head that only faintly resemble human hair (or anything organic for that matter).<br /><br />Hear! jaw droppingly inane 1970s psychobabble that makes \"\"Chicken Soup For The Soul\"\" sound like BF Skinner<br /><br />Feel! Content that any decade was better than the 70s.<br /><br />For those still reading...the plot surrounds a bunch of middle class mid level a--holes who decide to suck up to their s---head boss (Griffith) by joining him on a cross dessert race that spans California & Mexico. They all wear leather jackets, looking more Christopher Street than anything else. Along the way they stop at a Cantina, get drunk, smoke joints (the sight Robert \"\"Mike Brady\"\" Reed smoke a joint is an image you won't soon forget), start a fight, attempt rape, and just act like a bunch of suburban middle class jack offs. Although I have an excellent copy that I taped off TV I WISH this one would be released on video so the whole world could enjoy its half baked goofiness.\"\r\n0\t\"The name of Nick Stahl, the young cast and the attractive cover of the VHS made me buy and watch this flick, expecting to see a good teen slash movie. What a crap! The full of clichés screenplay, the dialogs and the performances are awful, dreadful, very bad, terrible, horrendous  summarizing, a complete waste of time. There is no horror, black humor, only an absolutely boring story, with shameful plot points. The film begins with six characters, indeed three couples, together like a group of friends, but indeed very nasty persons that seems to be enemies, playing a ridiculous senseless game called \"\"Taboo\"\", and with each one of them writing yes or no for certain taboo issues. That is it: no previous development of the characters, the viewer does not know who they are, their motives and relationship. Then, there is an ellipsis to one year later, and the same group is gathered together in a New Years Eve party, insulting each other in a very sordid way. But the plot and the twists are so ridiculous, predictable, mediocre and unbelievable that do not deserve any additional line in my review. One advice only: do not waste your time or money on this garbage, you will certainly regret. My vote is one (awful).<br /><br />Title (Brazil): \"\"Taboo  Jogando Com o Assassino\"\" (\"\"Taboo  Playing With the Killer\"\")\"\r\n1\tThis is the kind of picture John Lassiter would be making today, if it weren't for advances in CGI. And that's just to say that he'd be forgotten, too, if technology hadn't made things sexy and kewl since 1983. _Twice..._ has got the same wit, imagination, and sense of real excitement that you'd find in a Pixar flick, only executed under the restrictions of the medium c. 1983. Innovative animation techniques combine with a great script and excellent voicing to produce a movie that appeals on lots of levels. It should be spoken of in the same breath with _Spiritited Away_ and _Toy Story_.\r\n1\t\"This is one of those films that explore the culture clash of Eastern born people in Westernized cultures. <br /><br />Loving on Tokyo Time is a sad film about the inability of opposites to attract due to major cultural differences. Ken, rock n'roll fanatic, marries Kyoto, a Japanese girl, so that she can stay in the United States when her visa expires. The marriage is only expected to be temporary, that is, until Kyoto gains legal status again. But, Ken, who seems to be lost in every relationship, takes a liking to Kyoto and tries very hard to make things work out. This, despite his friend's urging that dumping Kyoto and getting rid of all commitments to girls is bad for rock n' roll except to inspire some song writing about broken hearts and all of that.<br /><br />But Kyoto comes from a strict traditional Japanese upbringing, and doesn't expect to be married to Ken all that long. Not only that, she is homesick and wants to return to Japan. It's sad in that this is finally someone Ken thinks he can love and be with and all that, except the one time he thinks he's found someone to feel that way about, the girl isn't expecting to stay that long. It's not that she doesn't like Ken, it's just that she's used to a whole 'nother way of life. She says, \"\"I can't tell him the way I feel in English, and Ken can't tell me the way he feels in Japanese.\"\" It's a rather sad love story with a killer 80s techno-nintendo soundtrack.<br /><br />I picked up Loving on Tokyo Time because it reminded me of one of my favorite 80s films, Tokyo Pop. And, for those of you who enjoyed Loving on Tokyo Time, check out Tokyo Pop (a New York singer goes to Japan and joins a Japanese American cover band), except it's a movie with a happy ending.<br /><br />\"\r\n1\t\"The Life and Time of Little Richard, as told by Little Richard, as produced and directed by Little Richard, was about as one sided as one of his songs. This is not a biography or even a docudrama, but does have good writing, great energy and an outstanding leading actor playing Richard. All the music is by Little Richard, so it rocks a tight lipsync on every song.<br /><br />The movie covers his early childhood, carrys thru the formative years in music, the wild success and Richard's throwing it all away to praise the Lord. Its all tied together well and the obvious comeback in 1962 manages to stay away from the idea that Little Richard discovered the Beatles, whom opened for him.<br /><br />My main objection is that his outrageous, counter cultural behavior is underplayed and you get no feel for how his audience experienced him at that time. Some of his energy, which he still has, does not come across full force. He seemed tame, compared to what I remember of him at the time.<br /><br />The best scenes are Richard getting jilted by Lucille and writing a song about it and the strip to bikini shorts while performing, to make the point about not having a decent place to change.<br /><br />If they had gotten into the \"\"Bronze Liberace\"\" as Richard use to refer to himself in interviews, then there's a story. Trust me I just saw him perform a couple of months ago and he still flirts with the pretty white boys, giving the one particularly good dancer in the audience, his headband. Nearly 68 and still going strong I recommend this movie and any concert or T.V. appearance you can find. Little Richard is always on\"\r\n1\t\"While the title \"\"Before the Devil Knows You're Dead\"\" comes from an Irish proverb the film plays out like a Greek tragedy. It all starts with a botched robbery and continues to spiral out of control as two brothers attempt to escape the mess they've gotten themselves into.<br /><br />The cast is well-assembled with Philip Seymour Hoffman & Ethan Hawke playing the aforementioned brothers. Notable support includes Albert Finney as their father and Marisa Tomei as the wife of one brother and lover of the other. Beyond these principals the acting is unremarkable.<br /><br />The story is compelling and is told with a certain degree of verve. The narrative structure keeps things interesting by providing different points of view and frequent time shifts. That being said, the film's unpredictability is somewhat muted since it becomes apparent early on that this story is a tragedy, through and through. All in all, a pretty impressive debut for first-time screenwriter Kelly Masterson.<br /><br />Sidney Lumet's direction is well handled but I'm more impressed by the fact that he's still directing at over eighty years old. I was less impressed by the score by Carter Burwell but it isn't a major distraction.<br /><br />In the end, the film proves to be compelling viewing and while the story & presentation may have superficial similarities to other films this one remains a unique experience.\"\r\n0\t\"Bizarre Tobe Hooper exercise regarding an unfortunate young man(Brad Dourif)with the ability to set people on fire. This ability stems from parents who partook in atomic experiments in the 50's. They die of Spontaneous Human Combustion and it seems that what Sam is beginning to suffer from derives by these pills his girlfriend, Lisa(Cynthia Bain)gives him to take for rough migraines. In actuality, Lisa was told to manipulate Sam into taking the pills by Lew Orlander(William Prince), pretty much the young man's father who raised him from a child. Lew has benevolent plans..he sees Sam as the first \"\"Atomic Man\"\", a pure killing machine in human form. Sam never wanted this and will do whatever it takes to silence those responsible for his condition. As the film goes, Sam's blood is slowly growing toxic, green in color instead of red. It seems that water and other substances which often put out fire react right the opposite when Sam's uncontrollable outbursts of flame ignite. Come to find out, Lisa has Sam's condition whose parents also dies from SHC. Dr. Marsh(Jon Cypher), someone who Sam has known for quite some time as his physician, is to insert toxic green fluid into their bodies, I'm guessing to increase their levels of flame. Nina(Melinda Dillon, sporting an accent that fades in and out)was Sam's parents' friend and associate on the experiments in the 50's who tries to talk things over with him regarding what is happening. And, Rachel(Dey Young)is Sam's ex-wife who may be working against her former husband with Lew and Marsh to harm him and Lisa.<br /><br />Quite a strange little horror flick, filled with some pretty awful flame-effects. Dourif tries to bring a tragic element and intensity to his character whose plight we continue to watch as his body slowly becomes toxic waste with fire often igniting from his orifices. There's this large hole in his arm that spits out flame like a volcano and a massive burn spot on his hand which increases in size over time. Best scene is probably when director John Landis, who portrays a rude electrical engineer trying to inform Sam to hang up because the radio program he's calling has sounded off for the night, becomes a victim of SHC. The flick never quite works because it's so wildly uneven with an abrupt, ridiculous finale where Sam offers to free Lisa of her fire by taking it from her.\"\r\n1\t\"Famous was \"\"famous\"\" for their tension and release style of cartoon where the semi-main character is in terrible peril, only to be rescued by the hero at the last second. This particular Casper is the only one I can remember where death actually takes a hand. But even in death, there is still a happy ending.<br /><br />The constant in Famous Studios cartoons is that \"\"virtue always triumphs\"\". Popeye always gets to his spinach in time, Baby Huey always out-foxes the fox, Little Audery always \"\"learns her lesson\"\". And some FS cartoons ARE really dark and depressing.<br /><br />You have to give them credit. as much as I love Looney Tunes and \"\"Tom and Jerry\"\" I don't think anyone was putting out a better cartoon product at that time than Paramount. Color, animation, music (the great Winston Sharples), editing, voices. They were consistent and a glowing example of the best that the art form had to offer.\"\r\n1\tThe first time I came upon Delirious, I only heard it. I listened to the entire comedic performance and never have I laughed so much in my life. Eddie's ability to paint hilarious pictures in our minds and do great imitation is captivating. When I finally got to see him perform this act, I had to have it. Eddie Murphy's performance on Delirious shows his genius! With it being the new millennium, his acts in 1983 is just as funny today as it was then. My parents loved it as teenagers and I (age eighteen) love it as well. From that point on, I had to view Murphy's other movies such as Coming To America and Harlem Nights. There will be no other comedian like Eddie.\r\n1\ti'm not sure if it is available worldwide - but if anyone who's deciding what is supposed to be put on videotapes and distributed in video clubs - is reading this - please , please buy it! (if I wasn't clear: GET THE MOVIE INTO VIDEOSTORES!)<br /><br />can't be explained - must see!\r\n1\t\"This is where the term \"\"classic film\"\" comes from. This is a wonderful story of a woman's bravery, courage and extreme loyalty. Poor Olan got sold to her uncaring husband, who through the years learned to appreciate her. (Yeah right, A PEARL!!) <br /><br />Luise Rainer was the beautiful star who had won the Best Actress Oscar the year before for her small role (and what a waste of an oscar) in \"\"The Great Zigfield\"\". It really didn't show what, if any, talent she had other than her exotic beauty. But in \"\"Good Earth\"\" she shows that she can really act! Her beauty was erased and she had no great costumes either. People say that she didn't show any real emotions in this film. Like hell. Her character Olan is a shy and timid woman, with inner strength. She is quiet during parts of the film with only her eyes and body to convey her emotions. Example: those scenes during the fall of the city and when looters were being shot. If you people are saying that she doesn't act well in this film, you are NOT looking!<br /><br />Paul Muni shows that he can act as well. His character is not a likeable one to me. He never sees her for what she is, until the very end of the story. A sweet loving and dedicated wife and mother, with her own special beauty. The greatest one of all, the beauty from within, like a pearl.<br /><br />If you get a chance to see this film, watch it. You will see one of the best films that the golden age of Hollywood created.\"\r\n0\tthis by far one of the worst movies I have ever seen in my life. I gave up to watch it after an hour and regretted that hour a lot. the acting is horrible and there is almost no plot. my guess is that someone came up with a strange shape of an animal and started to make a story around of it. borrowing some ideas from movies like Resident Evil and Aliens doesn't result in a movie like them. if this going to be a top Korean movie, I'd rather won't bother to see even a Korean movie trailer...<br /><br />By the way, this movies is a good reason to believe that not necessarily a high rating means the movie is promising. I think every Korean who has internet for online gaming rated this movie over the 8, even though has no clue what it is about.\r\n1\tI did not intend to write this review, but having read the default review that shows up on this movie's URL, I felt compelled to write a rebuttal. The movie in a word is superlative. It does not deserve the slanderous review that the writer has written. I think the writer has totally missed the point of the movie to a large extent. In fact, I too was turned off by the excessive show of Evangelist devotions that occupied the middle of the movie to a large extent. However, I must beg to differ with the reviewer in that, this movie in the end is not a propaganda piece for evangelist action. I think, what the director has shown is that how religion is not enough to find all the answers, how religion is to a large extent incapable of providing answers to basic, simple questions that one may ask and all that religion has to offer is sometimes just banal platitudes of one kind or another. This does not demonstrate a value judgment on religion as we have to remember that religion is transmuted and expressed by ordinary, mostly well meaning, basically good people and they usually have no monopoly on truth and thus religion can not in the end provide the ultimate answers to some questions in life. Ultimately, it is a matter of faith. You have to take it on faith and that's all. And if you are given to faith, then you can appreciate any show of faith. And if you are not given to faith then any show of faith is tiresome. It is thus at the same time, instructive to note the reviewer reaction to the movie. In any case, the director shows us that one can choose not to accept the religious interpretation of events and answers to questions and in spite of that life goes on and there are 'secret sunshine' in this world that awaits all wounded souls, regardless of their religious orientation. And that's just the core message of the film! Please note the last scene of the movie, if you don't get this! In the end, the movie is a great one and very thought provoking and confronts you - the viewer with questions that you have to answer for yourself. Thus it is a work of art that is challenging to you personally. I do agree with the reviewer in that, the Evangelical stuff was a bit too much. However, given the above interpretation of religion as shown in the movie, I think the director was trying to balance the act whereby he might not be called an Evangelist  basher! The actor Kang-ho Song was great as always. He's so balanced and just perfect that he's just amazing. He's my favorite Korean actor no doubt. I know the actress Do-yeon Jeon got the Cannes award for best actress for this movie. However, I did not find any specialty in her acting. It seems that to get awards you just have to act really convincingly in crying and hysterical scenes and all All in all a great movie. If you don't like it  please watch it again and see if you get it! If it leaves you dissatisfied or uncomfortable or asking questions then think, if that was not what the director was actually aiming at through this movie in the first place!\r\n0\tPedantic, overlong fabrication which attempts to chronicle the birth of the Federal Bureau of Investigations. Begins quite promisingly, with a still-relevant probe into an airplane explosion, however the melodrama involving James Stewart and wife Vera Miles just gets in the way (Miles had a habit of playing tepid wives under duress, and her frayed nerves arrive here right on schedule). Esteemed director Mervyn LeRoy helmed this adaptation of Don Whitehead's book, but despite the talent involved, the picture fails to make much of an impression. Best performance is turned in by Murray Hamilton as Stewart's partner, however most of the dialogue is ludicrous and the dogged pacing causes the movie to seem twice as long as it is. *1/2 from ****\r\n1\ti two came home from school fast as i could to catch HRpuff and stuff on t.v. that was the most fun time in my life is to watch HRpuff and stuff on t.v. growing up still love it today i am 46 years old. this year......\r\n0\t\"Professor Paul Steiner is doing research in matter transference. He has developed a machine that he can use to make an object like a wrist watch or rodent disappear, only to have that object re-materialize in a different location. But there are those at his research facility that do not like or approve of his experiments and will do whatever it takes to see that he doesn't succeed. After a failed demonstration that might have saved his funding, Professor Steiner decides to test his machine on himself. As expected, things go horribly wrong and he is transformed into a heavily scared madman whose mere touch will kill.<br /><br />In hindsight, maybe it wasn't such a good idea to re-watch The Projected Man in the same week I watched The Fly, Return of the Fly, and Curse of the Fly. There seems to be only so many movies about matter transference and the potentially horrendous effects it can have on the human body that one person should be made to endure in a three or four day period. I'm not sure what those responsible for the movie list as their source material for The Projected Man, but much of it is so similar to the Fly movies that it cannot be mere coincidence. However, The Projected Man isn't even nearly as good as the worst of the Fly trilogy.<br /><br />Besides being terribly unoriginal, The Projected Man has several other problems that really hurt the enjoyment of the movie. A big issue I have is with Bryant Haliday in the lead. He's such a horse's ass that, not only do I not care about his suffering, I actually root for it. Supporting cast members Mary Peach and Ronald Allen are almost as bad. They're so bland and dull they hardly matter. In fact, there's very little to get excited about while watching The Projected Man. The soundtrack  not very memorable. The \"\"look\"\"  I would describe much of it as \"\"muddy\"\". The plot  predictable. The action  there isn't any. Overall, this is one to avoid.<br /><br />Fortunately, I watched The Projected Man via a copy of the Mystery Science Theater 3000 episode. Funny stuff! While not an absolute, very often, the poorer the movie  the better the MST3K riffs. The guys hit almost all of their marks with The Projected Man. I'll give it a very enthusiastic 4/5 on my MST3K rating scale.\"\r\n0\tThis is an awful film. Yea the girls are pretty but its not very good. The plot having a cowboy get involved with an Indian maiden would be interesting if the sex didn't get in the way. Well, okay it might be interesting, but its not, because its so badly paced and and only partly acted. I can only imagine what the close ups of the dancing tushes looked like on a big screen, probably more laughable then they do on TV. (I won't even mention the topless knife fight between two women who are tied together and spend the whole thing chest to chest. Never read about that in the old west) This is a film that requires liberal use of fast forward.<br /><br />I like schlock films but this is ridiculous. There is a reason that I don't go for this sort of films and that they tend not be very good, the plot taking a back seat to breasts. The original nudie cuties as they are called were originally nudist films or films where there was no touching but as the adult industry began to grow the film makers either tried to be clever or tried to exploit something else in order to put butts in seats. The clever ones were very few which only left hacks who were of limited talent. The comedies often came off best with the humor approaching the first grade level, infantile but harmlessly fun. Something that could rarely be said about any other genre cross dressed as a nudie.<br /><br />The Ramrodder looks good and has a couple of nice pieces but its done in by being neither western nor sex film.<br /><br />I need not watch this again.<br /><br />Of interest to probably no one, the rapist and killer in the film was played by Bobby Beausoleil, a member of the Manson family who was arrested for murdering a school teacher not long after filming wrapped.<br /><br />Obviously these sort of things will ruin some peoples lives.\r\n0\tBut I got over it. To me, it seemed that even the Author of the book favored Caroline. I felt so sorry for the character Louise, and she was constantly compared with Esau who was evil, I just felt the comparison was a bit harsh and un-realistic. Really though, the movie was bad. I wouldn't really see it unless you're ready for a big let down.\r\n0\tIm watching it now on pink (Serbia TV station) and I must say this is a crap. Shallow, no acting, effects too sloppy I mean, who made this series?<br /><br />This was a stupid attempt of the Studios to make some more money on the success of the film. OK. The film was great in 1994 when it came out. But the series?<br /><br />Some times you can see how idiotic the lines are in the speech of the characters. I mean, did they actually pay someone to write that, was that someones relative at the Studio? This is no SciFi.<br /><br />The film was the bomb, the series suck.\r\n1\t\"There are people claiming this is another \"\"bad language\"\" ultra violence Mexican movie. They are right, but more than that this film is a call to create awareness of what we have become. The awful truth hurts, or bores when you already have accepted the paradigm of living the third world as the only possible goal. One of the most important things of \"\"Cero y van cuatro\"\" is the open invitation to profound reflexion over our current identity. Is that what we all are? Is that all that we want to be? I am abroad and I realized how spoiled is the Mexican society when the Tlahuac Incident came to light. I still cannot understand viewers witnessing a mass broadcasted murder. I nearly puked when I saw some of the images. It was not Irak or Rwanda, just a tiny village near Mexico City when rampage was carried out with the indulgence of media and government. The recreation of a similar situation in this film shocked me deeply. The other stories were good portraying other situations of corruption, dishonesty, betrayal and violence, but I consider \"\"Tamales de Chivo\"\" the best one.<br /><br />The movie is deeper than some \"\"cabrón\"\" and \"\"pendejo\"\" screams. Those are meaningless compared with the actions of the people. With a few exceptions they are all perfect examples of human rubbish. Just like in real life honesty is becoming more the exception than the rule in our country. Moreover, honesty is only rewarded miraculously.\"\r\n1\t\"This is one of those movies that made me feel strongly for the need of making movies at all. Generally speaking, I am a fan of movies based on worthy true stories. And this one is GREAT! Besides Meryl's performance which has gained a lot of recognition and praise, the movie's greatest asset is the story it is based on. The riveting tale of a couple who suffer social and legal torture, after having undergone enormous emotional pain at the unexpected and brutal death of their infant child is really an eye-opening fable that exposes the inhumane side of fellow humans, and uncovers the barbarism of a very refined and lawful society. It is interesting to see how people who consider themselves as kind and intelligent people (the emotional jury ladies in the movie for example) are in reality nothing more than selfish dupes who would, for their dogmatic beliefs and prejudices, shut their brains to any deliberation and contemplation even in the light of all facts pointing very clearly against their opinions. The other face of the so-called \"\"civilized\"\" society that the movie exposes is the apathy to the pain of fellow human beings (needless to say, this is very general, even though this specific tale unfolds in Australia), that goes as far as becoming a true cruelty. Must see if you are willing to take something serious and perhaps thought-provoking.\"\r\n0\tWhat a fantastic premise: A movie about the Berlin Airlift. It should have it all. Tragedy. Suspense. Comradeship. Rivals. Berliner Frauleins and tough US pilots. love and Tears. What we've got, is a film with none of the above. Heino Ferch tries to impersonate John Wayne or so, but he fails miserably. He acts so wooden, that at any given moment he should crack. He tries to play the tough guy, instead of being a tough guy! Why would Bettina Zimmermann's character fall in love with him? Cause they were throwing stones in a lake? Cause he brings her coal bricks? The SFX are very, very well done. Too much though. The hundreds or so planes over Berlin, look like an attack-fighter-formation-squadron rather than an organised airlift  as it actually was. Interestingly enough, the White House, the Kremlin, and General Lucius D. Clays office seem all to be one and the same dark and dusty set. Notice the same drapes, hanging deep down the windows, as if a protective shield against nuclear fallout. Why is almost every scene INSIDE dark and dusty? By the way, GENERAL LUCIUS D. CLAY, comes across as a small time, insecure, looser General, who doest trust in his own noble idea the airlift. He was very much the opposite. So you combine all those individual blunders and the result is a film with that builds toward no passion, no suspense and no historic accuracy. Sad, it started out so promising\r\n0\t\"I couldn't bear to sit through he entire movie. Do families like this really exist somewhere? There have been many comments describing this family as akin to LLBean models and such, and I think that that is a great description of how they behaved.<br /><br />More absurdly unbelievable writing/acting occurs as we meet a character referred to in High School as \"\"pigface\"\" who, of course, has grown into a drop-dead gorgeous 20-year Harvard-educated plastic surgeon (but only to do good in the world-not for the money,) and she beds Steve Carrel on the first date. That's when I quit watching...<br /><br />If you can completely suspend your disbelief for two hours, then perhaps you'll enjoy this sentimental, self-indulgent waste of time.\"\r\n1\tMoonchild is a very difficult movie to categorise. It's easiest to think of it as several snapshots of the lives of the two central characters. The fact that these characters are members of a street gang set in an multicultural city of the near future and that one of them is a vampire does not preclude them from having moments like any other people, and this is one of the places where this movie is different to anything else I've ever heard of. It doesn't get wrapped up in the fact that one of the main characters is a vampire, it's just something that has to be dealt with like any other problem. The way the characters interact is surprisingly realistic- there are embarrassing relatives and tricks that are meant to look cool that just don't work, which leaves the film with a lovely sense of not taking itself too seriously for the most part.<br /><br />The other area that really stood out to me is the languages. The fictional city of Mallepa contains various cultural groups, and characters speak the language that they would be expected to speak. Japanese gang members speak Japanese to each other, but Chinese when talking to characters of Chinese descent. Possibly the most amusing exchange involves an Australian and is conducted in English. The actors of the four arguably main characters have three separate mother tongues between them and speak varying levels of each others' languages, so it's quite a feat that the movie was made at all. Which, I suppose, brings me to the lead actors.<br /><br />Much has been made of the fact that the movie stars two of Japan's biggest rockstars, Gackt and Hyde, as well as Taiwanese superstar Lee-hom Wang, whether it is to praise them for their acting or criticise it or simply fangirl about them. In my opinion, Lee-hom is the best at playing a straight and realistic character. However, any lack of acting ability on Gackt's part is mostly masked by the fact that the character he plays is prone to being over-dramatic. I wasn't sure if Hyde's character was supposed to be as sulky and sarcastic as he came across, but it doesn't really detract from the movie either way.<br /><br />There are several scenes which take rather melodramatic turns, which made it difficult for them to affect me much emotionally (Although this doesn't seem to stop a lot of people). I found it's best to just enjoy the movie for what it is and not take it too seriously- It's perfect for getting out and watching with a group of friends. It does have its flaws, but overall it was very enjoyable and I'd highly recommend it to anyone who doesn't mind a few subtitles.\r\n1\tWWE has produced some of the worst pay-per-views in its history over the past few months. Cyber Sunday, Survivor Series and December to Dismember were appalling to say the least and so it was relying on its B brand show, Smackdown! to attempt to end the year on a high note. Armageddon had two major gimmick matches in the Last Ride and Inferno matches, three Championships were on the line and an interesting main event in the shape of a tag team war featuring Batista and John Cena against King Booker and Finlay. However, it was an amendment to one of those Championship matches that brought us not only the match of the night but also now a match of the year candidate when Teddy Long gave us fans an early Christmas present. T-Lo changed the WWE Tag Team Championship match from Champions, London and Kendrick against to Regal and Taylor to a four team Ladder match including MNM and The Hardy Boyz.<br /><br />I am not going to dwell on this match too much as nothing I can say would be able to do it justice. This has to be seen to be believed. There were many high spots and many more brutal bumps and awkward landings. The one move I have to talk about however was the one that took Joey Mercury straight to the emergency room midway through the contest. Jeff Hardy jumped onto a ladder that was set up in the see saw position with Matt Hardy holding both members of MNM over the opposite end of it to take the full force. Unfortunately for Mercury he didn't get his hands up to protect his face and took the ladder full force in the nose and left eye. This was vicious. His face was instantly a mess for all to see and not surprisingly this ended Mercury's night early. We found out later he suffered a broken nose and cuts under his left eye. Be warned. This is not for the faint of heart. The ending to this roller-coaster of a match came after Paul London managed to grab both Championship belts for the victory. I have been watching wrestling for almost 15 years and it doesn't get any better than this match. Unbelievable.<br /><br />The night opened with only the 4th ever Inferno match. Kane took on MVP in a good match but it was all about the visual and not really about the action. There were a few close calls with the flames for both competitors but in the end it was Kane who forced MVP onto the flames after they both ended up outside the ring. MVP ran around the ring whilst his butt was on fire and there was a sick part of me that laughed watching this. May I suggest to Michael Hayes that MVP comes out next week on Smackdown! to Johnny Cash's Ring of Fire.<br /><br />The other gimmick match of the night, and the second match of a triple main event was an all out war Last Ride match between Mr Kennedy and The Undertaker. This was a stiff match from start to finish and was the best of the series Undertaker and Kennedy have had yet. The used poles, chairs and one scene had The Undertaker thrown 15 feet from the Armageddon set onto what was suppose to be the concrete floor. Unfortunately it was plain to see that this was nothing but a crash mat and crowd didn't pop for this. The ending came after a chokeslam by The Dead Man to Kennedy on top of the hearse followed quickly by a match-winning tombstone.<br /><br />In other notable happening from the card. Chris Benoit defeated Chavo Guerrero by submission in another stiff match. This was a very good bout with Benoit hitting 8 German suplexes on Chavo at one time. Benoit was also considering whether to put Vikki Guerrero in the sharpshooter or not. Luckily he came to his senses and let her go. This led to Chavo attempting the roll up only for it to be countered into the sharpshooter for the submission.<br /><br />Another cracking match on the card was the Cruiserweight Championship contest between the longest reigning Champion in WWE, Gregory Helms and Jimmy Wang Yang. Featuring a lot of high flying and dangerous spots, some of which took place outside the ring, this was a match much more deserving of the crowd response than what it got. JBL put it best when he berated the fans in Richmond, Virginia for sitting on their hands during this one and at one point even started a boring chant. Helms picked up the duke after a jawbreaker type manoeuvre with his knees to Smackdowns! resident redneck.<br /><br />The Boogeyman pinned The Miz in a worthless match. I hate The Boogeyman with a passion. Only worth listening too for JBL's ranting about Miz. JBL is comedy gold.<br /><br />The last match of the night was main event number 3. World Heavyweight Champion, Batista and WWE Champion, John Cena teamed up to take on Finlay and the Champion of Champions, King Booker. There was no way the match could top the Tag Team Championship match from earlier on but it entertained none the less. The match would have been more memorable had it been given an extra five to ten minutes but how many times have I said that about WWE matches this year already. It was King Booker who was pinned at the end of the match after a big Batistabomb.<br /><br />So 2006 is over for the WWE in regards to it's pay-per-view schedule. It started the year on a terrible note with New Year's Revolution but ended on a high one with Armageddon. This Ladder match will long be remembered as one of the greatest ladder matches of all time. My hat is off to all eight competitors who but their bodies on the line to give the fans one hell of a match.\r\n0\t\"First off, I'd like to say that the user comments alone left me with tears in my eyes from laughing. One comment that bad SF movies become good comedies is right on the mark. MST3000 made it's living off that.<br /><br />If you look at THE ANGRY RED PLANET as the fever dream of a 10 year old comic book reader from 1959, you'll have the handle on this sucker. All the elements are there: the pseudoscience, occasionally logical, more often hilariously infantile. The adolescent boy attitude toward sex, with the \"\"gigolo\"\" captain (good call on that one, guys!) making eyes at the buxom \"\"scientist\"\" with hair so red it's a wonder it doesn't set off the fire alarms. The ridiculous conception of Mars as a planet so alien that everything glows red, yet one alien monster has a mouse face, and the blob alien has an eye that rotates like a kid's toy. The comic relief, an overweight astronaut (!) who sounds like he never finished the 8th grade in Brooklyn and has a psychotic fixation on his ray gun. And of course, the mere fact that alien = dangerously evil. If these people had met E.T., they would have roasted him in two seconds flat! \"\"OW\"\" indeed!<br /><br />Don't get me wrong. I rated this movie low. Still, it's never boring (except when the scientist tries to explain everything - only to make it all sound more and more ridiculous), and you have to admit, in your little kid core, it makes you jump a few times. <br /><br />Okay, then don't admit it. I guess you were never 10.\"\r\n0\tI have seen already fantastic stories, but the premises of this one are so unbelievable that it comes very close to being ridiculous. A rich and young guy undergoes a heart transplant the day after his marriage, and he is somehow witnessing his own surgery and the plot of his surgeons to kill him. Even if there is a medical explanation to such a phenomenon what next happens is a mixture of dialog among ... say ... souls? ... maybe and real life where the dedicated mother will do everything to save the life of her son. There is no shade of suspense or thrill, just a combination of a bad and simplistic plot with a series of coincidences that can never happen in life.<br /><br />This is not to say that the film is completely lacking quality - actually first time director Joby Harold does a decent job in directing a good team of actors that includes Hayden Christensen at his first major role after having taken off the Anakin Skywalker costume, fabulous Jessica Alba and super-gifted Lena Olin. All would have deserved a better story.\r\n1\t\"\"\"Show People\"\" is an absolutely delightful silent directed by King Vidor and starring Marion Davies and Billy Haines. What gems both of them are in this charming comedy about a young girl, Peggy Pepper, whose acting is the talk of Savannah trying to make it on the big screen. Though she's a success in comedy, what she wants to do is make \"\"art\"\" so she moves up to High Arts Studio. Soon she becomes Patricia Pepoire and is too good for the likes of her friend Billy.<br /><br />Many stars of the silent era have cameos in \"\"Show People,\"\" including Davies herself without the curly hair and makeup. I'm sure when people saw the film in 1928, they recognized everyone who appeared in the elaborate lunch scene; sadly, nowadays, it's not the case, even for film buffs. In one part of the film, however, she does meet Charlie Chaplin; in another, author Elinor Glyn is pointed out to her, and Vidor himself has a cameo at the end of the film. Other stars who pop up in \"\"Show People\"\" are John Gilbert, Douglas Fairbanks, William S. Hart, Leatrice Joy, Bess Flowers, Renee Adoree, Rod LaRoque, Aileen Pringle, and many others.<br /><br />Davies was adorable and a lively comedienne. It's a shame William Haines quit the movies - he was cute and energetic, deservedly an enormous star back in the day.<br /><br />\"\"Show People\"\" is a simple story told in a witty way. It's also a look back at an exciting era in Hollywood's history and contains performances by two wonderful stars.\"\r\n1\tA true classic. Beautifully filmed and acted. Reveals an area of Paris which is alive and filled with comedy and tragedy. Although the area of 'Hotel du Nord' and the Hotel itself still exists, it is not as gay (in the original sense of the word) and joyful as it once must have been. The film makes one yearn for the past, which has been lost, with a sigh and bittersweetness.\r\n1\tThe Color Purple is about the struggles of life and the love that helps those people strongly affected by the struggles of life. Every character had an element of the color purple in them. The movie touches on love, lost, hope, hate, and triumph. whether it be Celie having lived through hell and losing her sister, and Shug coming into her life to show her love again, Albert not being man righting his wrong toward Celie, Shug shunned by her father and confesses to him in the end, Sofia and her stubborness good and bad, and even Nettie, they had their emptiness and hardship through the film but was overcome in the end and that's the sign of a good movie. Good Job to all the cast and crew.\r\n1\tOne of the less widely lauded of recent Asian period action affairs Gojoe is an at first slow and often curious but overall pretty terrific offering, exciting, layered and beautiful. I'm sad to say I know virtually nothing of the Buddhist philosophy or Japanese history and legend that surrounds this film so its deeper meanings are lost on me, but even without contextual knowledge this is still rich fare, taking a traditional fantasy structure into a, impactful higher plane. The story is of Benkei, a warrior monk and perhaps demon who seeks enlightenment by destroying the demon of Gojoe Bridge: Prince Shanao, himself a mortal seeker after his own higher plane but this time the power of demons. Thus the film becomes a matter of illusions and in Benkei's case, indecision, a conflict in which the real goal is self knowledge, for Benkei to come to terms with his true nature and for Prince Shanao to come face to face with the nature of what he seeks to become. Benkei is even more hampered here by the fact that his dark nature makes him fundamentally at odds with the world, even when not in open conflict he is never at ease. Director Sogo Ishii handles this one as an epic, with measured pace, camera work always stylish and often frenzied, without neglecting the need for more sedate moments to let the location sink in, there is also great use of lighting and fog to give an ethereal atmosphere, there is an air of fantasy to much of the film but outside of the overtly supernatural moments it is a down and dirty fantasy with more period fell than flights of fancy. The cinematography of Makoto Watanbe is important here, vivid and detailed, a richly evocative affair. Actingwise Daisuke Ryu is dignified and powerful with a mysterious savagery as Benkei, while Tadanobu Asano has a driven, cold arrogance as Prince Shanao. Of the leads Masatoshi Nagase rounds things out as an ordinary man, smart and cynical but still unaware of just exactly what the stakes are. The film all fits together well, it is however a touch flabby at times, it begins slowly, some shots are a little drawn out and the epic fight scenes at times go on longer than strictly necessary. As for the fighting it is filmed frenetic rather than for actual moves, it has artistic impact but may disappoint regular action fans, often obscured by objects, flashing blades and fast moving individuals, whirling with deadly force through their adversaries are the order of the day, it is invigorating to watch but in the end I could have done with a little more traditionalism. There is some unfortunate cgi bloodshed as well, it somewhat works in the context but is still distracting. Overall though I found this to be a pretty great film, its not one for regular action fans or swordplay enthusiasts seeking another Azumi, rather a deeper and more mystical beast, its ending in particular will not go down well with fans of the more generic wing of such fare. But as for myself it really hit the spot and for those more adventurously inclined it might do so too. Well recommended at any rate.\r\n0\t\"\"\"True\"\" story of a late monster that appears when an American industrial plant begins polluting the waters. Amusing, though not really good, monster film has lots of people trying to get the monster and find out whats going on but not in a completely involving way. Give it points for giving us a giant monster that they clearly built to scale for some scenes but take some away in that it looks like a non threatening puppy. An amusing exploitation film thats enjoyably silly in the right frame of mind. (My one complaint is that the print used on the Elvira release is so poor that it looks like a well worn video tape copy that was past its prime 20 years ago.)\"\r\n0\t\"I know I'm in the minority, but...<br /><br />Uwe Boll is about as talented as a frog. Not even a toad; just a frog. He's reminiscent of about a hundred other no-talent hacks who churn out one useless crap-fest after another. <br /><br />This movie? Is a crap-fest. Slater's talent is only minimally utilized leading one to believe he's got other things (like his failed relationship) on his mind. Reid performs as if she has either forgotten her acting lessons, been severely hit on the head and MADE to forget her acting lessons, or has one of the worst directors in the history of film. I'm voting on the third choice, myself, although the other two are always possible. <br /><br />Uwe Boll has never done a single thing from which I've derived even the slightest pleasure. Frankly, I'm satisfied that he made this stinker. I was concerned with Bloodrayne competing with \"\"Underworld: Evolution\"\" for ticket sales. Now, I'm confident that Len Wiseman has nothing, and I mean NOTHING, to worry about.<br /><br />This rates a 1.0/10 rating for this messy, convoluted crap-fest, from...<br /><br />the Fiend :.\"\r\n1\tThis film was an interesting take by Hollywood on the novel by of the same name by Pearl S. Buck. While some today might think it is rife with racial stereotypes, for the time the very idea of Chinese protagonists was progressive in and of itself. I found that the white actors playing Chinese was not as bad as I expected, that it wasn't the Asian equivalent of blackface. Back then there were not really any Asian actors in America (not even George Takei was acting) and Rainer did a good job with her part. It wasn't the greatest performance I have ever seen but for old-school pre-method acting it was nice. The locust scene was very well shot and contained convincing special effects.<br /><br />I wonder that the timing of the release during the Great Depression sort of turns this film into an allegory. Especially the political upheaval bewildering the peasant farmers and how them seem to be left behind by all of it.<br /><br />The film had some parallels to the John Ford style, but I think the Eastern influence affected it as well. If this had been an western family, the locusts would have won at the end, punishing the farmer for his pride, lust, and gluttony. However here he learns his lesson, then wins.\r\n0\t\"Back in 1985 I caught this thing (I can't even call it a movie) on cable. I was in college and I was with a high school friend whose hormones were raging out of control. I figured out early on that this was hopeless. Stupid script (a bunch of old guys hiring some young guys to show them how to score with women), bad acting (with one exception) and pathetic jokes. The plentiful female nudity here kept my friend happy for a while--but even he was bored after 30 minutes in. Remember--this was a HIGH SCHOOL BOY! This was back before nudity was so easy to get to by the Internet and such. We kept watching hoping for something interesting or funny but that never happened. The funniest thing about this was the original ad campaign in which the studio admitted this film was crap! (One poster had a fictional review that said, \"\"This is the best movie I've seen this afternoon!\"\"). Only Grant Cramer in the lead showed any talent and has actually gone on to a career in the business. No-budget and boring t&a. Skip it.\"\r\n0\t\"I'm studying Catalan, and was delighted to find El Mar, a movie with mostly Catalan dialogue, at my art-house video store.<br /><br />Hmmm... not so delighted to have seen it.<br /><br />Yes, as other reviewers have said, it's well-made, and beautifully photographed. Although the opening sequence of the children is shockingly violent, it's well-acted and convincing. (For the most part, that is... Would the Mallorquins strip a corpse in preparation for burial right in the middle of the town square, in full view of the dead man's 10-year-old boy?) Oh, well... minor detail. Up to this point, it had something of the feel of a non-magical Pan's Labyrinth, also set in the Spanish Civil War.<br /><br />Fast-forward, and the three children who survived the opening incident have come of age. Francisca is a nun working at a tuberculosis sanatorium and the two boys, Manuel and Ramallo, both are patients. I know, but hey, coincidences happen.<br /><br />The problem, as with so many Spanish movies (apologies to Almodovar fans), is that with one exception (Francisca) the characters are just so dang *weird*. Their motivations, personalities, and dialogue are often simply incoherent.<br /><br />What's more, it descends into some horrific wretched excess. Be prepared for LOTS of pain and LOTS of blood. The reviewer who called it a \"\"potboiler\"\" is quite on track. If it had been made 40 years ago, the poster would've said: SEE FORBIDDEN LOVE!! RAPE!! MURDER!! MUTILATION!! FANATICISM!! ANIMAL CRUELTY!! BETRAYAL!! <br /><br />The opening sequence is not nearly enough to make the personalities and relationships of the characters believable. To work, this should have had multiple flashbacks to flesh out the characters. As it is, it seems a bizarre and depressing cross between \"\"Brother Sun, Sister Moon\"\" and \"\"Pulp Fiction.\"\" If that sounds like something you've got to see, by all means, enjoy. I think I go with something that doesn't make me feel I need to take a shower to wash off the gore and gloom.<br /><br />As for the Catalan, it's the Mallorqui dialect, fairly different than the Barcelona dialect, though I was surprised by the comment that said that even Barcelonans apparently needed Catalan subtitles to understand it.\"\r\n1\t\"\"\"Dick Tracy\"\" is one of our family's favorites -- the actors are great -- the art direction is exceptional -- the music is magic. It's not supposed to be \"\"To Kill A Mockingbird\"\" -- it's a fun experience.<br /><br />Stephen Sondhemim's songs are stellar: \"\"Back in Business\"\" is energetic, \"\"Sooner or Later\"\" is just right, \"\"What Can You Lose\"\" is haunting -- even tunes like \"\"Live Alone and Like It\"\" add to the story<br /><br />Got to love the giddily over-the-top performances of Al Pacino, Dustin Hoffman, Glenn Headly, Charlie Korsmo, Mandy Patinkin, James Caan, Dick Van Dyke, supporting villains... The list is far too long. And, yes -- even Madonna and Warren Beatty are awesome. Written with a smile a minute (how many times have we looked at each other and said, \"\"Wait a minute -- I'm having a thought -- it's gone!\"\"?).<br /><br />However, one of most telling things about in this film is that everyone involved seems to be having a good time -- and that above all adds to the enjoyment for the viewer. So, if you haven't already, why not give \"\"Dick Tracy\"\" a chance -- accept it for what it is -- a Sunday comic strip brought to life -- and in a wonderful way!!\"\r\n1\tOne reason Pixar has endured so well, and been so successful, is that while their films remain technical marvels and visual mosaics, they have a story to match their style. And often very moving style at that: affecting, charming and cross-generational. That a lot Anime (speaking in broad terms) and a great many other animations fail to match their technical virtuosity with real substance is, I think (and I might be wrong) partly because either the makers aren't bothered with character and plot and focus far too much on sound and image, or the sheer effort that goes into making some animations is so enormous, so enervating that they don't have the energy to create a really engaging story.<br /><br />That same cannot be said of Renaissance. There are flaws in its plot, but I'll get to that later. Those same flaws, however, are not reflected in the visuals - Renaissance is nowt short of stunning. The ultra-high contrast images (sometimes so high-contrast that is nothing but one face or one beam of light visible) and incredible detail are always impressive, always a joy to behold. The futuristic Paris on display is the grim offspring of Blade Runner and Brave New World; dark, murky, quite affluent and even clean, but shrouded in intrigue, corporate malfeasance, obsessed with beauty (capital of the catwalk, after all) and disguising the squalor and neglect of its labyrinthine passages with a veneer of monumental, sophisticated architecture.<br /><br />It's a compelling environment, not entirely original, but great all the same. The film's much-touted 'motion-capture' technology and incredible attention to human and design minutiae result in images a black-and-white photographer would die for. Not that the detail prevents entertainment, because Christian Volckman crafts some superb action sequences: a hell-for-leather care chase, a couple of gruesome(ly imaginative) murders, several tussles in the dark and a nasty dust-up in a gloomy apartment. The locations are great, too (I want to visit the nightclub). While the central character of Karas is your regular off-the-shelf maverick cop, the other two female characters (who are sisters) are the real motors of the movie. Coming from war-torn Eastern Europe, products of a war, diaspora and a family spat, they're a compelling metaphor for Europe as a whole.<br /><br />The film is tremendously atmospheric, its dizzying, swooping faux-camera moves and adult tone making for a very engaging experience. However, the plot... It never becomes more interesting than the initial hook, in which indefatigable plod Karas must find Ilona Tasuiev, a drop-dead gorgeous and pioneering scientist, after she's snatched from the street. The sinister corporation Avalon (is ANY corporation ever not sinister?), which she was working for on 'classified', projects are hell-bent on her retrieval, and soon Karas is up to his neck in official reprimands, dead bodies, cigarette-smoke and narrowly-missed bullets, and falling in love with Ilona's sister Bislane (very sympathetically voiced by Catherine McCormack), as he plumbs the depths of the city's sordid underbelly (and his own past).<br /><br />Text-book noir, in other words, but while I enjoyed the film a lot more than Sin City (to which it bears a passing visual resemblance), the plot and resolution are dull, the theme of immortality being raised but never examined, and the shenanigans of high-rolling Avalon CEO Paul Dellenbach are also dull , undercutting a lot of the dramatic tension. The basic ideas are familiar sci-fi genre materials, and there's a nagging sense that the visuals and atmosphere are disguising the mundane material.<br /><br />However, the film as a whole is lucid and perfectly coherent, even if some of the scenarios the characters get into occasionally feel like excuses for displays of technical wizardry. But it's the projection of life in Paris circa 2054, the vision of community and creation of another city from the ground up that makes this film something to behold. I may be taking it too seriously, and if that's the case I can at least say that it's superbly made, extremely entertaining (and pretty mature, too), and with an ambiance like no other.\r\n1\tThis is a wonderful film. The non-stop patter takes several watchings to fully appreciate. The musical productions of Busby Berkeley will never be duplicated. I think this movie easily outdoes all of his other efforts. Joan Blondell and James Cagney are incredible together. Some of the humor would almost push the boundaries of today's movies. Put rational explanation of how they did it aside and enjoy it for the spectacle that it is.\r\n0\tAn interesting concept vampirism having something to do with a virus.(but done several times by now) Overall the movie is too long and drags a bit. The editing could have been tighter. I am sorry to hear about the problem with the credits. Maybe the movie was rushed to market. The lighting was too dark in places. But the worst technical problem is the audio. The level was good enough to hear the dialog, but many of the interiors have a echo sound to them, which is very distracting. Either they were not careful in the recording, or the sound mixing could have been better. Also too much background noise got through. The should have gotten someone to do sound effects for the martial arts scenes. The tinny clank of swords hitting together was not the sound of an epic battle. Especially in the combat scenes the editing needed to be tighter.<br /><br />Also the acting was a bit flat. I am sorry, but when I see that the same person writes and stars in a movie, in my experience it is a red flag.<br /><br />But it was a good effort so I gave it a 4.\r\n1\tThis is a pretty well known one so i won't get too deep into it. The basic story is about two teens who find out about a slimy alien blob of goo that arrives to earth via meteor. Human contact with this slime ball burns through flesh like acid. It also absorbs human bodies making it grow bigger. Nobody believes the teens (Steeve McQueen and his girlfriend) and when they finally do it seems that the blob can't be stopped. It's really well done for it's age and unlike a lot of other 50's flicks the pace is pretty fast. The story is very unique making it and a must see for any fan of old sci-fi and monster movies. If you can dig the gooey gore of 80s horror be sure to check out the remake from '88 as well.\r\n0\t\"Absolutely the worst film yet by Burton, who seems to be getting worse with each film he directs. A miserable script loaded with cliches is only the first of many objectionable aspects to this film. This is the kind of movie where every time something happens, you'll be sure to hear someone shout out \"\"he's lost his gun!\"\" or whatever it is to let everybody know. Carter is really awful and so is Wahlberg, who can't play this straight and be convincing. Very nice effects and photography, but poor music in the John Williams mold by Burton's crony Elfman. Heston appears in a nonsensichal scene to spout out his most famous catch-phrases from the first movie. Very poor results.<br /><br />If anyone else out there also saw \"\"Sleepy Hollow\"\", they will probably have noticed, as I have, the declining quality of Burton's films. I've heard that this particular project was produced by others and that Burton was brought in as director, in which case his judgement should be questioned. But I think he has allowed any possible vision he might have had earlier in his career to slip; the evidence is there in the films. In \"\"Sleepy Hollow\"\", he couldn't decide what kind of movie he was making, whether it was a comedy or a real horror movie, and the population of british character actors (Chris Lee, etc.) made you also think it was kind of a monster rally film (those are never scary, as horror fans know). The movie couldn't succeed on either horror or comedy because it was so schizophrenic, and no style had been developed to smooth the two together. \"\"Planet of the Apes\"\" is much the same way, and the result comes off more like \"\"Total Recall\"\" or \"\"Tango and Cash\"\" than like sci-fi. He's also fallen into the rut of so many other \"\"big\"\" directors of trying to satisfy the entire possible audience. Word to Burton, if you're out there -- pick something and do it straight, or use some style to peice it all together (as in \"\"Mars Attacks\"\" or \"\"Beetlejuice\"\") or you might as well retire, because people like me that are fans of your movies will stop going.\"\r\n0\tVisually interesting, but falls flat in the originality department. This tedious excercise in technique wears thin after the opening battle. Jude Law has the charisma of burnt toast, but in his defense this film contains some of the worst dialogue I have ever seen on the big screen. In fact the script is so poor that it keeps taking you out of the film, and had me thinking about work, bills, my dogs, etc. There are many moments that scream bluescreen. Paltrow is as wooden as they get. This could of been saved by snappy film noir dialogue or over the top camp. My only complaint on the technique is that Black & White film (sorry, computer) would of helped because it looks like Turner colorized black and white. Just a big dull cliché mess. I would rather break my femur than sit through this endurance test again.\r\n0\t\"Five years after the original Creepshow, another inferior horror sequel is penned by George A. Romero and Stephen King: Creepshow 2. This time there are only three stories instead of five. None of the three stories is really original or distinguished either. The first story is a horror staple, formulaic story about a wooden Indian statue seeking revenge against the killers of its owners. The effects are really neat in this story, but it's just too familiar to be compelling enough. George Kennedy and Dorothy Lamour play the elderly store owners. The second story, \"\"The Raft\"\", is a Stephen King story. It's about four teenagers that unwittingly spend the day on a wooden pallet in the middle of an isolated lake. Soon the kids are screaming for their lives as a watery blob does each of them in for no apparent reason. However, instead of being suspenseful, the kids are saddled with bad dialog and dopey-headed behavior, preventing us from really caring about what happens next. There is also some unintentional humor in this segment. The third and final story is \"\"The Hitch-hiker\"\", which is actually a retread re-adapted for Creepshow 2. The original story, by Lucille Fletcher, was filmed in 1953 as a film noir suspense film. Then it was adapted for a famous Twilight Zone episode featuring Inger Stevens. \"\"The Hitch-hiker\"\" works the best out of these three offerings, but it's not without its problems either. Lois Chiles plays a cheating spouse, who ends up running over a hitch-hiker, or so she thinks. However, we don't know whether to sympathize with her or condemn her. As in many average stories of this type, the characters exist merely to tell the stories with their twists and turns. The wrap around story with the bullies seems a bit out of place. Tom Savini appears as the \"\"creep\"\" in this installment. The good thing is there haven't been any more sequels. *1/2 of 4 stars.\"\r\n0\t\"It's hard to criticize this movie, because I dislike the story itself, and no amount of good acting would have saved it. Think \"\"Raising Arizona\"\" with a mean streak. The acting is passable, but Jennifer Tilly is way over the top (yet not enough to make this a nice camp film) as usual, coming in somewhere between \"\"Misery\"\" and a sarcastic DMV employee. The rest of the cast have their brows perpetually knitted in consternation, either from the stress of their parts or the stress of the whole futile exercise. A real degrading few hours of film. Darryl Hannah spends most of the movie weeping too hard to be understood. I wish I could tell you how it ended but I walked out, sorry.\"\r\n1\tWay, way back in the 1980s, long before NAFTA was drafted and corporations began to shed their national identities, the United States and Japan were at each other's throat in the world manufacturing race. Remember sayings like 'Union Yes!,' 'the Japanese are taking this country over,' and 'Americans are lazy?'<br /><br />As the Reagan era winded down and corporations edged towards a global marketplace, director Ron Howard made one of several trips into the comedy genre with his 1986 smash 'Gung Ho,' which drew over $36 million in U.S. box office receipts. While in many ways dated, Howard's tongue-in-cheek story of colliding cultures in the workplace still offers hard truth for industrial life today.<br /><br />'Gung Ho' focuses on Hunt Stevenson (Michael Keaton), the automakers union rep from Hadleyville, a small, depressed town in the foothills of Pennsylvania. Stevenson has been asked to visit the Assan Motor Company in Tokyo (similar to real-life Toyota), which is considering a U.S. operation at the town's empty plant. With hundreds of residents out of work and the town verging on collapse, Assan decides to move in and Stevenson is hired as a liaison between company officials and workers on the assembly line.<br /><br />The 112 minutes of 'Gung Ho' is a humorous look at these two sides, with their strengths and weaknesses equally considered: on one hand, an American workforce that values its traditions but is often caught in the frenzy of pride and trade unionism; on the other hand, Japanese workers who are extremely devoted to their job yet lacking in personal satisfaction and feelings of self-worth. In Stevenson, we find an American working class figure of average intelligence with the skills to chat people through misunderstandings. With the survival of his workers' jobs and most of Hadleyville on the line, Stevenson proves a likable guy who wants nothing more than a fair chance, although his cleverness will sink him into a great deal of trouble. Besides answering to the heads of Assan, we witness a delicate balancing act between Stevenson and his fellow union members, many of whom he grew up with. This includes Buster (George Wendt), Willie (John Turturro), and Paul (Clint Howard, Ron's brother).<br /><br />The Japanese cast is headed by Gedde Watanabe, also known for 'Sixteen Candles' and 'Volunteers.' Watanabe plays Kazihiro, the plant manager who is down on his luck and begins to feel a sympathy for American life. He is constantly shadowed by Saito (Sab Shimono), the nephew of Assan's CEO who is desperate to take his spot in the pecking order. While given a light touch, these characters fare very well in conveying ideas of the Japanese working culture.<br /><br />With Hunt Stevenson dominating the script, Michael Keaton has to give a solid performance for this film to work. 'Gung Ho' is indeed a slam-dunk success for Keaton, who also teamed with Ron Howard in 1994's 'The Paper.' He made this film during a string of lighter roles that included 'Mr. Mom,' 'Beetle Juice,' and 'The Dream Team' before venturing into 'Batman,' 'One Good Cop,' and 'My Life.' It's also hard not to like Gedde Watanabe's performance as the odd man out, who first wears Japanese ribbons of shame before teaming up with Stevenson to make the auto plant a cohesive unit.<br /><br />The supporting cast is top-notch, including Wendt, Turturro, Shimono, and Soh Yamamura as Assan CEO Sakamoto. Mimi Rogers supplies a romantic interest as Audrey, Hunt's girlfriend. Edwin Blum, Lowell Ganz, and Babaloo Mandel teamed up for Gung Ho's solid writing. The incidental music, which received a BMI Film Music Award, was composed by Thomas Newman. Gung Ho's soundtrack songs are wall-to-wall 80s, including 'Don't Get Me Wrong,' 'Tuff Enuff,' and 'Working Class Man.'<br /><br />The success of 'Gung Ho' actually led to a short-lived TV series on ABC. While more impressive as a social commentary twenty years ago, Ron Howard's film still has its comic value. It is available on DVD as part of the Paramount Widescreen Collection and is a tad short-changed. Audio options are provided in English 5.1 surround, English Dolby surround, and French 'dubbing,' but subtitles are in English only. There are no extras, not even the theatrical trailer. On the plus side, Paramount's digital transfer is quite good, with little grain after the opening credits and high quality sound. While a few extras would have been helpful - especially that 'Gung Ho' was a box office success - there's little to complain about the film presentation itself.<br /><br />*** out of 4\r\n0\tI've waited a long time to see DR TARR'S TORTURE DUNGEON and after I watched it, I was really disappointed by it. It's not the Baroque film I expected it to be. The trailer (which I saw on a Something Weird DVD) is much better than the entire film, which is remarkably forgettable. There are almost no stand out scenes in it and the look and feel is interesting but it doesn't even come close to other Baroque styled movies out there, from Fellini or Jodorowsky. The characters are dull and there's almost nothing dramatic going on, even though we see rape, crucifixion, insanity, etc.<br /><br />The main problem with DR TARR'S TORTURE DUNGEON was the fact that it was a talk-a-thon more than anything else. It was almost like watching a book. I just wanted the film to have moments of silence or mood or something, instead we see/listen to the main characters chit-chat endlessly about dull stuff.<br /><br />A missed opportunity.\r\n0\t\"This is a film of immense appeal to a relatively well-defined group (of which I am not a part). I went to a preview of this movie not knowing what to expect - I ultimately found it disappointing. The history of a dreadfully dysfunctional (oftentimes downright \"\"twisted\"\") Hungarian Jewish family is not my cup of tea. An epic saga like this should really provide its viewers with something more in the end. Ultimately, pictures such as this are about the human condition - this picture cast almost no new light on any of its more meaningful facets.\"\r\n0\tTo the small minority seen here praising this film GET SERIOUS. I know it's down to peoples personal opinion at the end of the day, but anyone with more than a couple of brain cells can surely see that this is total rubbish. So bad it does not deserve to be part of this franchise. I can only assume those saying how great this is are friends with somebody involved in the film and are trying to give their career a push. Poor in every way, don't con people by saying otherwise. Storyline is a weak rehash of the previous entries, script is likewise. Attempts to hide the lack of originality by using a girl instead (WOW!) don't disguise the film-makers lack of ideas,and there is sadly a complete lack of any scares. Absolutely no redeeming qualities, utter utter turd. I've awarded this pair of chancers one mark simply for having had the nous to get someone to fund this piece of crap. They must have put more effort into that than they did into actually making the film. Shame.\r\n0\t\"The tragedy is that this piece of rubbish was part of my curriculum while I was studying cinema. So imagine how I was forced to watch it in complete. Believe me going through hell is much much easier. Our professor told us that this is some film ???, but he never thought that we'd disagree or assume the apposite. I don't think that there is any gods on earth, we're only humans, so all the filmmakers, therefore they CAN make mistakes, bad movies.. Or very bad too. The main problem wasn't that art, by all means, is susceptible to endless points of view, but that a lot of people just don't get it, that every single human got his own genuine taste, his own opinion, hence what I suppose it the greatest movie ever made, can also be your worst one ever, and how that is right both ways, but how many people can understand this correctly?. So my professor believes in this movie, and simply I don't. However, the only way to evaluate this \"\"thing\"\" is by measuring it by its original intent to show us different kinds of old folk stories or whatever to catch on this society's mentality, imagination, and nature. To tell you the damn truth Mr. Pier Paolo Pasolini as the scriptwriter and the director made it too unbearable to watch in the first place. The movie is so UGLY. I can't stand this, so how about analyzing it, then discovering the potential beauty in it !! It's beyond your mind hideousness, and strangely not for the sake of the movie's case or anything, it's for the sake of the unstable vision of (Pasolini). His work is so primitive to underdeveloped extent. The deadly cinematic technique, the effective sense of silliness, and the incredible horribleness made everything obnoxious. Look at the atrocious acting, the unfruitful cinematography, the awfully poor sets, .. OH MY GOD I've got the nausea already. It can terminate your objectivity violently as watching this movie is one true pain like taking the wisdom tooth off by a blind doctor. There are dreadful nightmares which could be more merciful than this. So originally, how to continue THAT just to review it fairly ? Actually, you don't. As this very movie doesn't treat you fair at all. There is really memorable scene in here where some boys are peeing into the eye of the camera (!) I'm trying to connect some things like that with Pasolini's end as murdered.\"\r\n1\tA classic series that should be at least repeated or released on DVD.Billy Toth,after realising he is adopted after the death of his parents,embarks on a journey to find his real parents.After various rites of passage,his search culminates in the discovery that his fathers identity was stolen and used by a human trafficker in Europe!If i remember correctly,the series ends on the Austrian(?] ski slopes and a cliff top chase resulting in the death of Billys fathers betrayer. This series was all filmed on location in various destinations round Europe and appeared polished and incredibly well made with some episodes crossing into the realms of film noir and crime thriller.The main arc was often eclipsed by the slices of life that Billy went through during his years of toiling to find his mother and fathers secrets.A class act but underrated and forgotten.\r\n1\tSudden Impact is the best of the five Dirty Harry movies. They don't come any leaner and meaner than this as Harry romps through a series of violent clashes, with the bad guys getting their just desserts. Which is just the way I like it. Great story too and ably directed by Clint himself. Excellent entertainment.\r\n1\t\"This is truly one from the \"\"Golden Age\"\" of Hollywood, the kind they do not make anymore. It is an unique, fun movie that keeps you guessing what is going to happen next. <br /><br />All the actors are perfectly cast and they are all great supporting actors. This is the first movie I saw with Ronald Colman in it and I have been a fan of his ever since. Reginald Gardiner has always been a favorite supporting actor of mine and adds a certain quality to every movie he is in. While he played a different kind of character here, he still added something to the movie that another actor cast in this character would not have added.\"\r\n1\tUndying is a very good game which brings some new elements on the tired genre of first person shoot em ups. It tells the story of Patrick Galloway an expert of the occult and a formidable fighter who is summoned by a friend to his estate in Ireland to investigate some weird phainomena. The game is set in Ireland after World War one so don't expect to find weapons like chainguns or rocket launchers.All the weapons in the game can be considered antiques but the real fun in the game are its spells and the system they operate on.Our hero is ambidexterous so he can use both his hands at the same time: he casts spells with his right arm and uses his guns with the left.So you can shoot and cast spells at the same time which as you understand very fun and also unique to this game! The graphics are great and they can run very well on a medium power P.C..Level design is also cool and atmospheric. Mostly the game revolves around the Covenant estate and the mansion but there are many other locations waiting to be discovered as you progress. Thanks to the talent of Clyve Barker the game has an excelent storyline and plot (something very rare for a First person shooter) and i said before a great and very spooky atmosphere the voice acting is also good but not excellent. But the game has two main flaws. First of all it is quite linear so when your mission says for example go to that room all the doors in the house will be locked apart from those that lead to the room of your mission this may save time but it restricts your liberty of exploration.Secondly the fact all the weapons are antiques may not appeal to most fps players who are used to high tech weaponry. As far as difficulty is concerned the game is very well balanced. Most of it is of medium difficulty but sometimes it gets more difficult but not frustratingly difficult. Overall undying is a great game. Definitely one of the best fps out there.\r\n1\tOur imp of the perverse did good his first time out, thats for sure. The music is the best you may ever hear by any human, but you already know that, unless you have no taste or have a brain that is too small to understand greatness. A poor script that doesn't flesh out much of a story, but at least it has its moments. the breathtaking concert stuff is worth seeing it. He deserved an Oscar for this s**t, even though he was at times an ego driven twit, with his towering bodyguard Chick Huntsbery always in front. A movie that made non-fans fans, Take it or leave it. Prince does need to stay clear of acting in the future though. He takes himself way to serious. He is a genius musician, but pleaseee..Just enjoy the ride, my purple maestro..Peace.\r\n0\tThis movie is so awful, it is hard to find the right words to describe it!<br /><br />At first the story is so ridiculous.A narrow-minded human can write a better plot! The actors are boring and untalented, perhaps they were compelled to play in this cheesy Film.<br /><br />The camera receptions of the National Forest are the only good in this whole movie. I should feel ashame, because I paid for this lousy Picture.<br /><br />Hopefully nobody makes a sequel or make a similar film with such a worse storyline :-)\r\n0\t<br /><br />According to reviewers, the year is 1955 and the players are 20 year-old college kids about to enter grad school. Jolly joke!<br /><br />1955? The synthesizer keyboard was not invented yet, but there it is on the bandstand. The Ford Pony Car was not invented yet, but there it is playing oldies music. The synthesizer appeared to be a model from the mid 1970's. The Pony Car at best is from the mid 1960's.<br /><br />20 year-old college kids? Josh Brolin had seen 32 birthdays when this made-for-TV movie was produced.<br /><br />The plot is so predictable that viewers have plenty of spare time to think of all the errors appearing upon their TV's.\r\n0\t\"I wanted so much to enjoy this movie. It moved very slowly and was just boring. If it had been on TV, it would have lasted 15 to 20 minutes, maybe. What happened to the story? A great cast and photographer were working on a faulty foundation. If this is loosely based on the life of the director, why didn't he get someone to see that the writing itself was \"\"loose\"\". Then he directed it at a snail's pace which may have been the source of a few people nodding off during the movie. The music soars, but for a different film, not this one....for soap opera saga possibly. There were times when the dialogue was not understandable when Armin Meuller Stahl was speaking. I was not alone, because I heard a few rumblings about who said what to whom. Why can't Hollywood make better movies? This one had the nugget of a great story, but was just poorly executed.\"\r\n1\tThe one of the most remarkable sci-fi movies of the millennium. Not only a movie but an incredible future vision, this movie establishes a new standard of s/f movies. hail and kill!\r\n0\tI cant understand at all why so many Godzilla fans think this is excellent, one of the best Godzilla films ever in fact. This film is horrible and one of the very few Gojira films I cant stand to watch again (the other being G. vs Megalon).<br /><br />The plot is too campy to be in the Heisei series, a series that attempted to turn the aging Godzilla franchise into bonafide action films, revolving around ideas that seemed more in place in 1974 than 1991. It just sounded ridiculous, especially with some of the subject matter, take for example the WW2 scene, with the Japanese soldiers praising a dying Godzillasaurus, a mournful and serious tone, take the exuberant former commander turn capitalist and his death, serious seens in a film its fans somehow denote as played for laughs, as a goofy romp with guilty illogical fun, if so than this is easily one of the most tasteless films I've seen, however I think its more likely it was only talent the filmmakers lacked and this was a case of a straight faced action movie gone bad. It was made ever worse by the fact that the special effects are terrible beyond compare, from the jet packs to the android, to the hokey sound effects emitted from everything, its impossible to take anything seriously, and yet the film expects you to, there's no nudges to the camera.<br /><br />Like nearly all Godzilla films there's a pointless romance, and this is no exception, though something can be said about the fact that this one is especially pointless since and inexplicable. There is literally no reason at all presented for the romance, it just happens and there lives make 360 degree commitments for it. Aside from this the other terrible aspect of this film is dialogue, both the Japanese and English is horrible, clunky and possibly the inspiration for Battlefield Earth.<br /><br />The Tristar DVD compounds the problems, making everything look grainy, blurred, dim and just plain ugly, the same was for the sound. I first saw the Japanese Region 2 version and the differences are night and day, with the original vibrant colors and texture, the noteworthy score, the fight scenes especially, are actually watchable.<br /><br />In my opinion, the Heisei series is a disappointment, with the exception of Godzilla 1984 (Japanese version) there is little to praise here, and Godzilla vs. King Ghidorah is case in point of this failure. It doesn't even come close to deserving the reputation and fans it gets.<br /><br />2 out of 10\r\n1\tThis a rip roaring western and i have watched it many times and it entertains on every level.However if your after the true facts about such legends as Hickcock,Cody and Calamity Jane then look elsewhere, as John Ford suggested this is the west when the truth becomes legend print the legend.The story moves with a cracking pace, and there is some great dialogue between Gary Cooper and Jean Arthur two very watchable stars who help to make this movie.The sharp eyed amongst you might just spot Gabby Hayes as an Indian scout, also there is a very young Anthony Quinn making his debut as Cayenne warrior, he actually married one of Demilles daughters in real life.Indeed its Quinns character who informs Cooper of the massacre of Custer told in flash back, the finale is well done and when the credits roll it fuses the American west with American history.So please take time out to watch this classic western.\r\n1\tI'm not sure I understand where all these enthusiastically anti-grudge people are talking about here, perhaps it's just that some people like to rant about things.<br /><br />The movie was certainly imperfect (uneven acting, some may have had difficulties with the time-changes, actors all too willing to go places I'd really rather not go, etc.) but IMHO there were some things that more than made up for the imperfections.<br /><br />First and foremost, I LOVED the 'breaking of the rules' bit. NORMALLY when you leave the haunted house the baddies leave you alone, giving you time to regroup, get friends, and find the token mysterious paranormal type. NORMALLY (semi-spoiler alert) when you're hiding under the covers they can only get you through that little opening you peek through. NORMALLY at the end the ghosts somehow have become less creepy because you've found out they're just misunderstood, or they've been freed, or whatever.<br /><br />Secondly, the production was exceptional. While the movie was hardly special-effects-laden the supernatural bits while brief were extremely well done.<br /><br />Probably not the best sort of movie for those who think Freddy and Jason are the ultimate sort of horror (nothing against 'em, they've got their place), but great for those who've begun to take the conventions for granted and who don't have trouble with the time distortions.\r\n0\t\"\"\"Spielberg loves the smell of sentiment in the morning. But sentiment at the expense of narrative honesty? Nobody should love that.\"\" - Lucius Shepard<br /><br />\"\"The Color Purple\"\" takes place in the Deep South during the early 1900s, and tells the story of Celie and Nettie, two African American sisters. The film opens with the girls playing in a field of purple flowers, an idyllic haven which is promptly shattered by the appearance of their stepfather. This motif  innocence interrupted by men  permeates the entire film.<br /><br />The film then launches into a series of short sequences. Celie is revealed to have been twice impregnated by her stepfather, gives birth in a dirty barn, has her newborn child taken away and is forced to marry a local widow named Albert Johnson, a violent oaf who rapes her repeatedly, forcing her to cook, clean and look after his children.<br /><br />All these horrific scenes are given little screen time, and are instead surrounded by moments of pixie-dust cinematography, a meddlesome symphonic score, incongruous comedy and overly exuberant camera work. The cumulative effect is like the merging of a Disney cartoon and a rape movie, a jarring aesthetic which caused Stanley Kubrick to remark that \"\"The Color Purple\"\" made him so nauseated that he had to turn it off after ten minutes. Ten minutes? He lasted a long time.<br /><br />The film is often said to deal which \"\"racism\"\", \"\"sexism\"\" and \"\"black culture\"\", but this is not true. Alice Walker, the author of the novel upon which the film is based, claims to be a bisexual but is actually a closet lesbian. Her book is a lesbian fantasy, a story of female liberation and self-discovery, which paints men as violent brutes who stymie women. For Walker, the only way out of this maze is for women to bond together in a kind of lesbian utopia, black sisterhood and female independence celebrated.<br /><br />Spielberg's film, however, re-frames Walker's story through the lens of comforting American mythologies. This is a film in which the salvific power of Christianity overcomes the natural cruelty of men. A film in which Albert finds himself in various ridiculous situations, moments of misplaced comedy inserted to make him look like a bumbling fool. A film in which all the characters are derived from racist minstrel shows, the cast comprised of lecherous men (always beaming with devilish smiles and toothy grins), stereotypical fat mammies, jazz bands and gospel choirs. <br /><br />This is a film in which black people are naturally childlike, readily and happily accepting their social conditions. A film in which black people are over-sexed, carnal sensualists dominated by violent passions. A film in which poverty and class issues are entirely invisible (Albert lives in a huge house) and black men are completely inept. This is not the Old South, this is the Old South as derived from \"\"Gone With The Wind\"\", MGM Muscals, \"\"Song of the South\"\", Warner Cartoons, \"\"Halleluha!\"\" and banned Disney movies. In other words, it's the South as seen by a child raised on 50s TV. It's all so cartoonish, so racist in the way it reduces these human beings to one dimensional ethnic stereotypes, that black novelist Ishmael Reed famously likened it to a Nazi conspiracy.<br /><br />Of course, in typical Spielberg fashion the film ends with family bonds being healed. This reconciliation was in Walker's novel, but Spielberg goes further by having every character in the story reconcile with their kin.<br /><br />Beyond Walker's hate letter to black men and Spielberg's bizarre caricaturing of black life, we are shown nothing of the black community. We have only the vaguest ideas as to how any of these characters make a living and no insight into how they interact with others in their community. Instead, Spielberg's camera jumps about, desperately fighting for our attention (one of Celie's kitchen contraptions seems like it belongs in a \"\"Home Alone\"\" movie), every emotion over played, the director never stopping to just observe something or to allow a little bit of life to simply pass by. Couple this with Quincy Jones' ridiculously \"\"white\"\" music, and you have one of the strangest films in cinema history: an angry feminist tract filmed by a white Jew in the style of Disney and Griffith, scored by a black man trying to emulate John Williams.<br /><br />Problematic too is the lack of white characters. Consider this: the men in this film aren't portrayed as being rough to each other, nor do they dominate women because they are brutalised by a racist society which reduces their manhood. No, they are cruel by nature. And the women, whether quietly suffering like Celie or rebellious and tough like her sister, persevere and survive only because the men are too stupid to destroy them. A better film would not have focused solely on the oppression of women as it occurs among the oppressed, rather, it would have shown that it is societal abuse which has led to spousal abuse, that enslaved black women are forced to perform the very same tasks as their male counterparts (whilst still fulfilling traditional female roles) and that African American domestic violence occurs largely because of economic factors, women unable to support themselves and their children alone.<br /><br />And so there's a hidden ideology at work here. Late in the film one character tells another that since he didn't respect his wife, she wound up getting severely beaten and imprisoned by whites. The implication is that blacks need to return to their African roots to restore their own dignity and that it is their fault that whites unjustly crush them. ie- Respect one another in your poor minority community and you won't run afoul of the dominant white culture. <br /><br />3/10 - A failure to confront sex and lesbianism, inappropriate musical numbers, countless sequence loaded with extraneous visual pizazz, incongruous comic business, emphatic music cues, and wildly hyped emotionality, all contribute to rendering \"\"The Color Purple\"\" worthless.\"\r\n1\tI loved so much about this movie...the time taken to develop the characters, the attention to detail, the superb performances, the stunning lighting and cinematography, the wonderful soundtrack...<br /><br />It has a combined intensity and lightness of touch that won't work for anyone who wants the typical fast-paced action flick. If we lived in Elizabethan days, I'd say this movie's a bit like a Shakespearean tragedy. But since we don't, let's say it's more like a Drama-Suspense movie.<br /><br />The plot is simple, but the story is complex. The movie is intelligent in the way relationships and issues are explored. Much of the story is shown rather than told, which I find makes it more subtle and moving - and which also works well for a story based on a comic book (or graphic novel). At times I felt I was actually there in the 1930s, part of this story - there was such a realistic yet dream-like quality in the style of its telling.<br /><br />I don't often prefer movies to the books they were based upon, but in this case I do. (Though I did enjoy the book too.) I've bought the DVD, which is great because it has some wonderful deleted scenes and insightful commentary.<br /><br />(I also took my little cousin, who's a little younger than the boy in the movie, to see it after I saw it for the first time, because he has issues at home and I wanted to use this as a way of starting a discussion on father-son issues with him. He loved it - and the discussion.)\r\n0\tSPOILERS: I'm always surprised at how many people gave this game good reviews. It was awful. The script and voice acting alone ruined it. Gabriel and Grace are the most unlikeable characters in the game. You almost pray for their deaths. And worst of all, there are less vampires in this game than there were werewolves in The Beast Within.<br /><br />The lack of real vampires was incredibly disappointing. If you're expecting some kind of Anne Rice style vampire story, forget it. This game's story has very little to do with vampires. You won't even see any till about the very end and even then, you won't get to fight them.<br /><br />The story has radical, and pretty much blasphemous, views of Christianity. I'm amazed it got off the drawing board. I'm not even Christian and I found it offensive. Mostly, the story centers around a search for The Holy Grail and buried treasure. The kidnapping of a royal baby, which should have been the focus, really gets pushed aside. There is no sense of urgency for Gabriel to find the baby. In fact, he almost never asks anyone about the baby after the first few time blocks.<br /><br />The graphics are pretty bad. The characters move about at a snail's pace even on the best of systems. They are chunky and outdated. And it's hard to go from the FMV of The Beast Within to this horrible game engine for Blood of the Sacred.<br /><br />The relationship between Gabriel and Grace takes an awful turn, too. I really don't know why it was so horribly rushed, but they do sleep together. And it's not fun. Gabriel spends most of the game telling his best friend Mosely how he thinks of Grace as more of a sister and he doesn't think she's the one for him. And he seems really grossed out that they slept together. But he's so unlikeable throughout the game, that you almost don't even care at that point. His dialogue was the worst in the game. And he was constantly making stupid sexual innuendos at anything female the entire game. By the end of the game, Grace leaves him with what appears to be a Dear John letter. I guess she was as fed up with him as most of the players were.<br /><br />I found the story to be annoying and boring. I was expecting to play a story of a royal baby who was kidnapped by vampires. And I was expecting to get to see and fight vampires, maybe even have Gabriel or Grace turn into one. But no. Instead, the story focused on the author's warped vision of Christianity. What a shame. Here they had the elements for a great adventure, and instead we got this.<br /><br />For me, the only interesting parts of the game were actually at the very end. We do get a few action style puzzles at the end. But it wasn't worth suffering through the entire game to get to them.<br /><br />I can't really recommend this game. I had gotten it back when it came out, years ago, and I hated the game engine so much that I shelved it for years. I only recently dusted it off to see what I'd been missing. And now, I'm very sorry that I did. My favorite characters were ruined. I hope there will be a fourth game just to redeem the series. And I hope they get it right next time. It would be a terrible shame to end the series with this installment.\r\n1\tVincent Price's follow-up to HOUSE OF WAX (1953), the film which cemented his reputation as a horror icon, similarly revolves around a bitter  albeit resourceful  showman. Though a remake, the former (shot in Technicolor) remains the superior effort; that said, apart from some resistible comic relief, the obligatory resort to cheap gimmickry (it was another 3-D showcase) and occasional narrative shortcomings (whatever happened to the missing bag which supposedly turned up at some police station containing a severed head?), this offers more than enough Grand Guignol-type thrills and overall camp value (Price hamming it up in a variety of disguises as an inventor of illusions impersonating 'missing' star conjurers who had taken advantage of his genius) to stand on its own two feet. Incidentally, director Brahm's involvement here proves no mere coincidence  since the narrative incorporates elements from two horror titles (both starring Laird Cregar) he had previously helmed i.e. THE LODGER (1944) and HANGOVER SQUARE (1945). The young leads are played by Mary Murphy (as Price's ingénue assistant) and Patrick O'Neal (as her police detective boyfriend  curiously enough, he would himself take the lead in a similar piece, CHAMBER OF HORRORS [1966], which I have acquired just in time to serve as an encore to this one). An interesting sideline here is the latter's adoption of a novel detection technique, fingerprinting, which is crucial in bringing about Price's downfall (in a predictable but rather awkward fiery climax)though the persistent snooping of his amateur crime novelist landlady has at least as much to do with it in the long run! Watching the star in a made-to-measure role, the film emerges a good deal of fun  particularly at a compact 73 minutes.\r\n0\t\"I tried to remove anything that might be considered a spoiler. I also assume that you've seen the first movie or at least know the general gist, so if you haven't some of this might not make sense.<br /><br />Plot: This movie beats the audience over the head with tired philosophical ramblings again and again in an attempt to get the theme across. We are bombarded again and again by questions of purpose, and destiny, and choice, and forced to endure the long, torturous platitude sessions that contain them.<br /><br />Neo, awakened from a dream in the last movie, now begins a period of realization about his own existence. There are a lot of revelations in this movie, which I'll be vague about so they won't seem like spoilers.<br /><br />*If you're still worried vague references will spoil the movie, don't read the paragraph below.*<br /><br />The strength and weakness of faith is revealed. The strengths and weaknesses of love, and its temporary nature, are also revealed. The interdependence of humans and technology, and our faith in technology, are also revealed. The importance of choice and experience is revealed. Explaining further things that are revealed would go into too much detail, so I will refrain (as the guidelines for writing a commentary asks). Btw, by \"\"revealed\"\" I mean pounded through our ears and eyes like nails.<br /><br />Storyline: So how does Neo and the gang get from the end of the last movie to the beginning of the next one? In short, they keep the faith, and use and abuse overly-stylized action and bullet-time like it's going out of style (and after this display, I'm hoping movie-goers and makers alike learn to appreciate subtlety and originality a bit more). More on that later. To not spoil anything, I will say no more than the promo material already did: Neo is still trying to figure out the Matrix, and he is looking for answers while trying to save the humans, and Zion, all while baddies are going after him and his cohorts. The movie pretty much picks up where the last one left off.<br /><br />Action: While martial arts action and gunplay peppered its predecessor in somewhat equal parts, this movie focuses much more on martial arts than gunplay, adding swords, sais, etc. to the mix. Special effects are so often used and waved in the audience's face that it becomes really tiresome. I've discussed this movie with friends and coworkers alike, and nearly all of them found some of the action sequences--especially the \"\"Smith fight\"\" we all heard would be in the movie--to be too long and tedious. This is a huge red flag for action fans, because the end of an action sequence should either leave you wanting a slight bit more, or completely content with the awesomeness that just occured.<br /><br />These fights scenes do neither. They are over-stylized, over-the-top sequences that are wooden and uninspired. In the first movie, there was a real sense of desperation to some of the action, a sense that fighting was for survival, not just looking good (which I honestly don't think they manage in Reloaded anyway) in black and leather. Go watch Drunken Master or Iron Monkey after this movie to remind yourself of what good fighting sequences are--you won't regret it. In addition, the \"\"Matrix abilities\"\" people have in Reloaded is not consistent, and what they actually do is not consistent. The first movie had its inconsistencies here, but they weren't too glaring--unlike Reloaded.<br /><br />Special effects are poured on and on and on. Every little thing someone does, be it just jump, somersault, spin, and in many cases just pose, are<br /><br />slow-moed, bullet-timed, or over-accentuated by some sort of destruction. It's evident the W Bros had a ton of money to throw at this movie, and boy did they throw it, with no real restraint. Sharp editors could have really helped this, but the first movie was such a hit that free reign was obviously given, which brings us to. . .<br /><br />Character and dialogue: I have already more or less said the dialogue was tired and full of philosophical platitudes. Actors can't really bring a lot of depth to their character when the script and direction is shoving character progression audience's face, or neglecting it altogether. The audience is at no time given nuance and substance so they can contemplate the character on their own.<br /><br />Keanu's acting performance is stiff at best. Keanu is good at acting confused, and that's about all he does in this film. He makes a decent attempt to show passion between Neo and Trinity, but it falls flat.<br /><br />Lawrence tries to make Morpheus everything from Moses to Henry V, and be as cool as a cat throughout. With the script he is provided, he makes a noble attempt, but it also falls flat.<br /><br />Moss isn't very believable either. Her look of concern is always the same, much like Keanu's, and the chemistry isn't there, although in their very physical scenes they fake it well enough.<br /><br />Hugo once again brought his weird sense of being an Agent program, but he too suffered from the script's hand. I actually find him to be the most interesting character of the bunch, but instead of development they just make him an excuse for a huge, drawn out fight scene.<br /><br />All in all, this movie is beyond disappointing if you had good expectations, and on its own, as a stand-alone movie (which is not how it's supposed to be taken), it's still horrible. I don't see The Matrix as deep, but I at least see it as an enjoyable scifi romp that has some interesting ideas, good action, a few funny lines, and enough restrained symbolism and elusions to amuse the attentive. Reloaded fails on all these counts, and I really hope the W Bros will give us a better experience in the 3rd installment. Granted, I don't have a lot of hope left for that after this film.\"\r\n0\t\"I saw most of the episodes of RMFTM as a teenager on \"\"Cliffhanger Theater\"\" running after midnight on a local station some years ago, and then again when Mystery Science Theatre riffed on it in the early 90's. Time has not been kind to it. <br /><br />I can certainly make allowances for the special effects, which were quite impressive for a low budget 50's serial (IMO Commando Cody's flying scenes were better than George Reeves/Superman's in his TV show). And I can also make allowances for the ahem, \"\"acting\"\", and fight choreography -. except for the guy who plays the ruler of the Moon Men. He is incredibly miscast. He looks and acts like the fellow who comes to fix your plumbing, not the despotic ruler of an alien race. Even the corny dialog works all right - everyone rattles off their lines like strings of firecrackers, with no wasted time or pauses for things like \"\"thought\"\" or \"\"introspection\"\". Since everyone does this, the viewer finds it immersive after awhile, and even to my modern sensibilities, it doesn't bother much. <br /><br />What really irritates me is the writing and the plotting. I'm not talking about the sunny weather on the moon, or baking soda powered rocket ships, or a flying suit that has controls labeled \"\"up/down\"\" and \"\"fast/slow\"\". I'm not even bothered by the cheesiness of the resolutions to the cliffhangers that end each chapter. I'm talking about the fact that our supposed heroes are dumber than fence posts and have no cumulative memory. And by the fact that although that the dialog clips along like an express train, the plot goes through the same motions again and again. <br /><br />Dig it: Commando Cody and his pal are the spearhead of a top secret hi tech science lab charged with protecting Earth (or at least the USA) against an insidious alien invasion. But his office has no guards or security checkpoints. They don't even have locks on the front doors. So the bad guys walk RIGHT IN and beat the crap out of the Cody and his staff ...not once (perhaps understandable) but SEVERAL times. They even kidnap his female assistant on the second try. And they never get any smarter. To further prove my point, allow me to point out the way that Cody jumps in his flying suit and flies around getting into trouble and never actually seems to succeed in catching anyone. He does this over and over and over. Cody also flies his ship to the Moon (the woman assistant comes along to cook), stays for about 30 seconds and immediately turns around and comes back. Cody captures one of the Atomic Ray guns...and immediately loses it again to the bad guys because he couldn't be bothered to lock it up. And so on.<br /><br />And you would think that if Cody's efforts were so vital to saving the USA from the Moon Men, that he might ask for a few soldiers with carbines, a few helicopters and a tank or two to back him up, instead of just working with the local police all the time. This was supposed to be a military operation, but they act like it's another episode of \"\"Gangbusters\"\". <br /><br />It's all rather hard to stomach. I appreciate that the creators were severely limited in the scope of their story by budget and time constraints...and I appreciate that Cody is actually a reasonably tough hombre (even though he loses half of his fistfights). But I just can't help yelling \"\"DOOR! LOCK THE DOOOOR!!\"\" when the gangsters simply walk into his lab, or try to blow up the ship and there are NO security measures at the landing site in place...not even a fence (!). <br /><br />Still, it's OK. Of the three Republic serials I've watched, \"\"Phantom Creeps\"\" had a better plot, and \"\"Undersea Kingdom\"\" had more atmosphere (hah!) and a better hero than \"\"Radar Men\"\", but it's an OK time-waster. <br /><br />BTW...why \"\"Radar\"\" men? They didn't use radar, they used Atomic Ray Guns. Shouldn't the title have been \"\"Atomic Ray Gun Men From The Moon?\"\"\"\r\n0\t\"There are movies that are awful, and there are movies that are so awful they are deemed long-forgotten and unwatchable. Also, lots of violence and bad stuff (not just cheesy stuff; you know what I mean) add to the mix as well. What is the result of bad movies with such raunchy content? Why, \"\"Final Justice,\"\" of course! <br /><br />Remember \"\"Mitchell?\"\" Joe Don Baker was the star of that movie, and that was riffed by Joel and the Bots on \"\"Mystery Science Theater 3000.\"\" Now this time, with Mike taking Joel's place on the Satellite of Love (but with the same bots), that trio got to make fun of MST3K's second Joe Don Baker movie, \"\"Final Justice.\"\" Of course, much of the naughty stuff that I mentioned was removed for television release, but still, I want to watch that episode (and \"\"Mitchell\"\" as well), because what does Joe Don \"\"hate\"\" the most? Why, none other than \"\"Mystery Science Theater 3000!\"\" <br /><br />P.S. If you have a Big Lots nearby, check that store for the uncut tape! LOL That happened to another user!\"\r\n1\t\"As I reach the \"\"backside\"\" of 35 I find myself shaking my head more and more at the sex crazed, drug influenced teens of today. It was great to be reminded that it was just as crazy for me back in my day as it is for teens today. This film drives that point home to the core. If you are a late 70's fan you'll love the film. From KISS-posters to an Angel concert this movie rocks ! <br /><br />Watch for a young Laura Dern. Why they didn't have more songs from the Runaways I'll never know ? <br /><br />I did have a problem with Randy Quaid's character deflowering a 16 year old girl. While he was away she and her friends have a party that destroys dude's house. The cops come and everything but no mention of all the underage drinking and how these kids got their hands on this stuff.<br /><br />Foxes belongs right there with Over the Edge, Fast Times, Dazed & Confused, and Kids as one of the all time teen angst flicks.<br /><br />I say buy it and watch it with your kids and talk about it all.\"\r\n1\tThis film exceeded my expectations. I thought and have heard that it was going to be rubbish, so i wasn't expecting much. However, i was pleasantly surprised. At first i didn't take well to the lead girl and didn't really care if she lived or died. After a while she definitely grew on me and became a likable character. It's not just some slasher film where people die for no reason. There is a background story that only takes a few seconds of the film, but explains a lot. I would recommend this film to everyone. If you're not sure just watch it anyway, it's only an hour and a half of your life. You're going to live for 80 years anyway.\r\n1\t\"I have to admit that I went into Fever Pitch with low expectations. It's no huge revelation for me to say that Jimmy Fallon's last movie (Taxi) was Catwomanly bad, and the trailers for Fever Pitch were all right but didn't mesmerize me. I was already preparing some cheesy baseball puns for my review...<br /><br />\"\"I like Jimmy Fallon, but Taxi was strike one in his movie career. Well, now we've got steeeeee-riiiiiike twoooooooo! One more strike, and it's back to SNL!\"\" or \"\"Buy yourself some peanuts and cracker jacks, but don't buy tickets to Fever Pitch. You'll walk out of the theater and never go back!\"\" Then the movie had to go and be way more entertaining than I was expecting. But hey, I couldn't let my puns go to waste, right? Another reason I thought I wouldn't care for the movie is that I hate the Boston Red Sox. My whole family hates 'em. The mere mention of Pedro Martinez' name sends me running to the bathroom. Oh man, hold on...<br /><br />...All right, I'm back. Anyway, my mom, who is a St. Louis Cardinals fan, still believes the World Series was rigged last year. She refuses to believe the Sox won it legitimately. But I'm man enough to admit that Fever Pitch caused me to sympathize, albeit only slightly, with the plight of Red Sox fans.<br /><br />Anybody who has a passion for sports will be able to relate to this movie on some level. Unless you have a favorite sports team you can't fully understand the extreme highs and lows that a fan such as Fallon's Ben can go through. There's nothing quite so fresh as the smell of a new season and nothing quite so smooth as a clean slate. Well, figuratively speaking. It's the joy of being a sports fan. \"\"Wait 'til next year,\"\" becomes your mantra, your motto, your prayer - and Fever Pitch effectively captures that essence.<br /><br />I love the fact that the movie takes a fictional story and throws it against the real-life backdrop of the Red Sox' improbable World Series run last year. I don't love it so much that I want to marry it, but you know what I mean. I expected this to be handled in a fairly cheesy manner, and while some of the humor is a little silly, it's actually pretty realistic.<br /><br />You see, Ben's uncle took him to his first Red Sox game when he was 7 years old, and when he died he left Ben his two season tickets. Ben hasn't missed a game in 23 years. At the beginning of each season he has a draft day where he and his friends get together to figure out who gets to go to which games with him. He makes everybody dance for the Yankees games and whenever somebody complains he threatens them with tickets for the games with the Royals (sorry Mr. Shade) and the Devil Rays. It's a very good scene, and it works so well because I actually know of people who do the \"\"ticket draft day.\"\" I also must admit that I can relate to when Ben goes to dinner with Lindsey and her parents. The Red Sox are playing a road game, but instead of watching it live on TV Ben decides to tape it. One of the most dangerous things in life is taping a game and then being in public and trying to avoid hearing the result. Been there. It's a very tense and scary situation. Weeeeeell, Ben enters the danger zone when a guy shows up at the restaurant and mentions watching the game. Ben immediately covers his ears and starts shrieking like a banshee so as not to hear the outcome. Lindsey is embarrassed, and her parents don't know what to think. Yeah, sports fans can be weird, I don't deny it. But it's real.<br /><br />Now if you're expecting the crude, edgy stuff that the Farrelly brothers are known for then you could be disappointed. They do have their moments though, like when Ben says he likes how Lindsey sometimes talks out of the side of her mouth \"\"like an adorable stroke victim,\"\" but overall this is definitely a softer, more romantic side that the bros are putting on display.<br /><br />That's not to say that the movie ever gets way too sappy. Thankfully, when the sap starts to ooze a bit, the Farrellys know when to pull away. A romantic moment with Lindsey jumping on the field and running over to Ben to declare her undying love for him turns into Ben sincerely replying, \"\"You've gotta tell me about the outfield. Is it spongy?\"\" Jimmy Fallon proves that with the right material he can handle himself well on the big screen, and Drew Barrymore remains a constant source of romantic comedy charm. Fever Pitch is just good, solid entertainment that takes a somewhat fresh look at the romantic comedy genre. It's a movie that guys and gals can both relate to. Particularly the guys who practice sports fanaticism at some point during the year and the ladies who must deal with 'em.<br /><br />Now if the Red Sox fans could please shut up about the \"\"Curse of the Bambino\"\" I would appreciate it. My Memphis Tigers have NEVER won the NCAA basketball championship, so I officially declare my plight greater than yours.<br /><br />THE GIST Fans of Jimmy Fallon, Drew Barrymore, romantic comedy, the Red Sox, baseball, or sports fanaticism in general should consider giving Fever Pitch a look. I wouldn't go out of my way to rush and see it at the first available time, but it'll make a great matinée.<br /><br />Rating: 3.25 (out of 5)\"\r\n0\tTake one look at the cover of this movie, and you know right away that you are not about to watch a landmark film. This is cheese filmmaking in every respect, but it does have its moments. Despite the look of utter trash that the movie gives, the story is actually interesting at some points, although it is undeniably pulled along mainly by the cheerleading squads' shower scenes and sex scenes with numerous personality-free boyfriends. The acting is awful and the director did little more than point and shoot, which is why the extensive amount of nudity was needed to keep the audience's attention.<br /><br />In The Nutty Professor, a hopelessly geeky professor discovers a potion that can turn him into a cool and stylish womanizer, whereas in The Invisible Maniac, a mentally damaged professor discovers a potion that can make him invisible, allowing him to spy on (and kill, for some reason) his students. Boring fodder. Don't expect any kind of mental stimulation from this, and prepare yourself for shrill and enormously overdone maniacal laughter which gets real annoying real quick...\r\n1\t\"When my now college age daughter was in preschool, this miniseries appeared on A&E from 8-9 each morning. My neighbor and I made a pact that we wouldn't miss a minute of Jane Eyre and our kids were late for preschool every morning for the whole week. Good choice.<br /><br />I'd forgotten how much I loved this movie until I got out my old VHS copy recently. Timothy Dalton is very handsome, but still perfect as Rochester. The dark, craggy face, the imperious demeanor tempered with humor and tenderness were straight from the pages of the book. Although Dalton eats a little scenery, I couldn't sit through an adaptation starring wimpy William Hurt or grumpy Ciaran Hinds. The magic here is that women love Dalton and get caught up in the romance.<br /><br />I would love to know what's become of Zelah Clarke. She is dead on as Jane, quiet, formal, saying volumes with but a look. The sparkle in her eyes gives viewers a glimpse of the strength and spirited nature that helped Jane survive the mistreatment she endured in youth. Criticism of her performance as \"\"wooden\"\" is misplaced. A servant in a proper English household would have maintained just such a demeanor, but she speaks passionately when overcome with emotion. Unlike many other screen Janes, she appears plain enough to be Jane yet pretty enough to allow the audience to buy Rochester's attraction to her.<br /><br />Bronte's dialog is a large part of why the book endures the script keeps much of it intact. Dalton and Clarke capture the interplay between Jane and Rochester with wit and quiet intensity. Although Jane appears as plain and sweet as vanilla custard, she refuses to be cowed by the dark, blustery Rochester. The two leads play off each other beautifully. <br /><br />This is the most perfect adaptation of the best romance novel ever.\"\r\n1\tWhat great locations. A visual challenge to all those who put their eye behind the lens.This little jewel is an amazing account of what you can shoot in just 16 days. Good going folks!. I can not wait to see what your next feature will be. I'll be with you all the way.\r\n1\tAlthough I didn't like Stanley & Iris tremendously as a film, I did admire the acting. Jane Fonda and Robert De Niro are great in this movie. I haven't always been a fan of Fonda's work but here she is delicate and strong at the same time. De Niro has the ability to make every role he portrays into acting gold. He gives a great performance in this film and there is a great scene where he has to take his father to a home for elderly people because he can't care for him anymore that will break your heart. I wouldn't really recommend this film as a great cinematic entertainment, but I will say you won't see much bette acting anywhere.\r\n0\t\"I admit, having come of age in the hippie-dippy age, I am a sucker for these kind of movies. I can enjoy some of the schlock of the hippie genre far more than most \"\"normal\"\" people. However, this movie is simply awful in every conceivable way.<br /><br />Every trite perception of the hippie silliness is presented as gospel, cops kill a young long hair when he peacefully lands a plane. This movie is so horrible that it is not even funny to watch as a goof on the excesses of the hippie drone. It is like a left wing version of Dragnet, except without professional actors. The only reason I gave it two stars was because there are some obscurities of interest on the soundtrack, besides, I couldn't find a selection for negative stars.<br /><br />No actors, almost no plot, sheeze, barely even a script...you got it, an \"\"art\"\" movie....All this done at root canal drilling slowness, dragging out each meaningless scene just to fill up time.<br /><br />In a bizarre twist of life imitating art, the star \"\"nonactor\"\" of the movie joined a commune in real life and robbed a bank in Boston, one of his co-robbers was killed and he was sent to jail where he was killed in a suspicious weightlifting \"\"accident\"\".....and just think, he got to leave this behind as a legacy....Oy vey.\"\r\n1\t\"\"\"Night of the Living Homeless\"\" was a fairly strong finish to the first half of Season 11. Obviously a parody of various zombie movies, most notably Dawn of the Dead, this episode parallels the homeless with the living dead, as creatures who feed and thrive off of spare change rather than brains.<br /><br />Kyle is blamed for the sudden mass outbreak of homeless people when he, out of the goodness of his heart, gives a $20 to a homeless man in front of his house. More homeless people begin to infiltrate South Park, until the town is completely overrun with them. This is a very strong Randy Marsh episode, as he assumes the role of the shotgun-wielding leader of the adults who take refuge on the roof of the Park County Community Center. But before Randy makes it to the community center, he is accosted by hundreds of homeless people while hilariously screaming \"\"I don't have any change!!\"\" Unfortunately, the refugees end up losing Gerald Broflofski to the homeless, when he tries to escape by catching a bus out of town, and unwittingly tosses away all his change for the bus to distract the homeless people. Then he becomes one of them, asking everyone for change.<br /><br />The boys attempt to find out why there are so many homeless people in South Park, and find a man who is a director of homeless studies. They find out that the nearby city of Evergreen used to have a similar problem with the homeless, so they escape to Evergreen to find out what they did to solve the problem. Unfortunately, homeless people break into the man's house, and he attempts to take the easy way out by shooting himself. However, he fails several times, as he shoots himself in the jaw, in the eye, in the chest, in the neck, in the shoulder, screaming horribly until he finally dies. This scene may have been funnier had a similar scene not happened in \"\"Fantastic Easter Special\"\" two weeks ago.<br /><br />Meanwhile, a member of the refugees discovers that due to the homeless problem, the property values have nosedived, thus the bank has foreclosed on his house, making him homeless. Randy immediately turns on him, holding the gun to the man's head. When the man finally begs the others for a few bucks to help him out, Randy pulls the trigger.<br /><br />In Evergreen, the boys find out that the citizens of the town sent the homeless to South Park, and that the passing of homeless from town to town happens all over the country. The boys modify a bus that leads the homeless out of South Park and takes them all the way to Santa Monica, California.<br /><br />The zombie movie parallels and the great Randy Marsh lines make this one definitely re-watchable. 8/10\"\r\n1\t\"I saw this film at a time when I was timidly toying with the idea of moving into my own apartment and starting life on my own. Maybe that is the reason why I took it so seriously. I believed totally in the poor character's psychological degradation inside a Paris of perpetual construction sites, dust, squalor, selfishness, rudeness, malice and decay. I'm giving all the credit to Polanski's artistry in his direction, his playing and his inescapable script but I fainted during the horrible final scene and had to be revived by cognac in the office of the theatre's manager. Luckily for me, my life on my own didn't turn out as disastrous as this (so far) but I have always kept a great respect for an artist who can perform such illusions and so totally immerse himself in the (fake) reality he is trying to convey. Simply put, the man is a genius of the first order and a credit to the human race. This film is the sum of many, many instances of great acting and great casting. As some performances were done in English (the scenes with Shelley Winters and Melvyn Douglas among others) and others in French (with most other characters) and Polanski did his own dubbing in English and French, I heartily recommend, if you happen to be bilingual, to switch the audio from French to English and vice-versa, during the appropriate scenes while watching the magnificent transfer on Paramount DVD. This film is part of Polanski's so-called \"\"apartment building trilogy\"\" which also comprises \"\"Repulsion\"\" and \"\"Rosemary's Baby\"\". Unfortunately, \"\"Repulsion\"\" still hasn't made it to a decent DVD transfer in Region 1. Needless to say, the three films would make a magnificent boxset.\"\r\n0\t\"As hard as it is for me to believe, with all of the awful reality shows out there over the past few years, this one has to take over the top spot for worst one yet. I am still wondering if this was actually just a spoof done by the SCTV gang. If Andy Kaufmann were still alive I'd be sure he was behind this. Can a rock band stoop any lower than has INXS to do such a shameful thing as this? The premise is simple and moronic. Audition a bunch of karaoke rejects to become the new lead singer of INXS, to take the place of Michael Hutchence (who committed suicide in 1997). Eight years and no hits later, the band commit the ultimate act of patheticness by subjecting themselves to auditioning a bunch of talentless wannabes to be the new lead singer of a band that is 20 years past its prime. So they trot all of these awful singers (I thought American Idol had its share of doozies) who do atrocious renditions of just about every classic (and predictable) rock song imaginable. And then they cut to the INXS band members who are seriously discussing the merits of each of these candidates. You could see better (and more original) rock performers at just about any night club in any city in the world.<br /><br />It has all the usual uncreative elements of every other reality show. Lame reality participants, lame interviews, lame host/emcee, lame \"\"judging\"\" of performances, and the lame booting of one participant at the end of each show. Can these shows get any more predictable? It's clearly a publicity stunt on the part of the band; a last gasp of hope at rekindling their lost stardom before they are finally buried into oblivion. Michael Hutchence, if he had any shred of dignity when alive, has to be rolling over in his grave. Not that INXS were ever a great band, but I had no idea they were this pathetic. If INXS are at all representative of what rock and roll has become, this show would be the final proof that rock and roll is once and for all, dead.\"\r\n1\tIt may have not been up for academy awards and admittedly, it's pretty cheesy, but it's just so much fun! Nothing makes me smile like Bill and Ted. Lovable, optimistic, and hilarious, Bill and Ted are a great way to unwind.<br /><br />Although I love Excellent Adventure, Bogus Journey is funnier to me. Death is flippin hilarious and Bill and Ted are even more endearing. People give me grief about loving this movie, but only really pretentious movie-watchers will say it's not even a bit entertaining. If you like this, you'll probably also be a fan of Wayne's World, Dude Where's My Car, and Dumb and Dumber. Admit it, though foolish, they make you grin and turn your tickle box over. So watch them just for kicks and giggles!!\r\n0\t\"Saw in on TV late last night. Yeah, I can hear what y'all say about this one. It IS likely to be categorized as one of those stereo- typical TV soap series. In all fairness, the story line does have a fine twist to it, and you might nod saying, \"\"Well, that's not what I expected.\"\" But, as a film, well it is not easy to spot a redeeming element. Casting, acting, camera work, cars, costume, setting, script, no, there's nothing to congratulate. Rated R?? Oh, that scene. Did we need it? This is a film that you can watch it and then forget that you even watched. And what was the title again?\"\r\n1\tWhat if Marylin Monroe, Albert Einstein, Joe Dimaggio and Senator McCarthy were to come together in a mind-bending evening of relativity?<br /><br />This delightful roman à clef never uses the actual names of the characters it so thinly veils and scathingly exposes not only for the individuals they must have been, but also for what they came to represent over time. If you are confused by allegory, or if you like your movies served up predigested and mushy, you won't like this film. It is a demanding opus that rewards on many levels the viewer with the intelligence to appreciate it. <br /><br />Dropping, for the time being, the rigorous avoidance of using the real names of the characters, we see Einstein, about to deliver a pacifist speech to a United Nations hell-bent for nukes, being visited by Marylin Monroe, after filming the notorious Seven Year Itch scene that some say led to the end of her marriage with Joe Dimaggio. They have a lovely interplay in which Einstein stumbles with suitable professorial clumsiness around the innocence of perhaps the greatest sex symbol of modern times. <br /><br />Enter Senator McCarthy who thinks Einstein is a Red. He is determined to extract Einstein's assurance that he will support the activities of the House Unamerican Activities Committee while delivering the ultimate weapon in the name of peace. Add Joe, a surprisingly fragile and vulnerable person perhaps not perfectly cast as Gary Busey, who hates Marylin's exhibitionism and believes Einstein has become her lover, even though Marylin only wants to show Einstein that she understands the Special Theory of Relativity. <br /><br />But there's more. <br /><br />Just like each of us, these characters have their deepest fears, which they reveal one by one in haunting flashbacks. It is these weaknesses, ultimately, that lend humanity to figures we cannot help but see almost exclusively in the abstract today. Finally, we see the shocking terror of Einstein's vision, and the statement of the movie becomes clear. It is a powerful and memorable moment.<br /><br />Insignificance is one of my top five movies of all time. It is utterly amazing.\r\n1\ti just saw this movie on TV..<br /><br />i've lost my dad when i was young and this movie surely did touch me..<br /><br />i can feel the lost that the little girl Desi felt..<br /><br />the feeling of wanting to see her father again..<br /><br />wanting to talk to him..<br /><br />or at least given the chance to say goodbye..<br /><br />and i'm so touched with the letter that was wrote back to her..<br /><br />saying that her father read her letter, and sent it back to someone to reply her and buy her a present because there isn't a shop in heaven..<br /><br />it just lets me feel that miracles do exist..\r\n0\tI watched this because I thought there were going to be a lot of car chases and cool cars to gawk at. Guess I was lied to. This movie is very boring.<br /><br />The movie starts out Kip Raines(Giovanni Ribisi) sitting outside a Porsche dealership checking to see if they have the right car. When they confirm it's the right one, Kip gets a brick out of the trunk and chucks it at the window, shattering it. He gets the Porsche while his friend gets the keys. They start up the car and take off into the night. They deliver it to a warehouse only to have been followed by the police. So, the whole crew ditches all the cars and go their separate ways. Then, we get a glimpse of Memphis Raines. He is giving a little speech to a bunch of kids at a go-kart track. Then, he is confronted by Atlee Jackson(Will Patton). Atlee tells Memphis that his brother Kip is in deep *bleep*. Memphis is known as one of the most notorious car thieves in Los Angeles. Memphis heads to a junkyard and meets Raymond Calitri(Christopher Ecclesten). This guy threatens to kill Kip if Memphis doesn't deliver 50 cars within 72 hours.<br /><br />There are a few problems with this film: <br /><br />1.Story: The first 48 in-movie hours take place when Cage and Duvall are looking for a crew and planning everything out. The last 12 in-movie hours are a waste! <br /><br />2. The Cars: You see maybe 10 cars out of the 50 as the movie advertises. So, where are the other 40 cars? Why don't we get to see them? <br /><br />3. The Chase: The chase at the end of the movie was a joke. It was not suspenseful at all.<br /><br />4. The Dog: Somewhere in the movie, the dog eats the burgers and swallows three keys as well. This is impossible. The keys were flipped open. The keys would have severely damaged the dog's esophagus, stomach, and large intestines. The guys suggest giving the dog laxatives to help him poop it out. This won't work. The dog will get a lot of diarrhea but no keys. It was stated in Jackass after Ryan Dunne stuck a toy car up his rectum. Take laxatives, lots of diarrhea, but no car. Same case with the dog.<br /><br />5. The Cop During The Chase: When Eleanor breaks down for a few minutes, Nicholas Cage tries desperately to start up the car. You see a police cruiser behind him who isn't looking at his car at all. But, right when Nicholas Cage starts the engine up again, the police officer jerks his head to the right, sees the car, and immediately begins to chase after him. It is stupid. So, right when he heard the engine start, and saw the car, he knew that was the car he was looking for. How does he know it's the right car? He only sees the back of it.<br /><br />Overall, the movie is boring. There is no action. There are very few cars. The movie is stupid. I have never seen the original but I plan to.<br /><br />I give this movie 1 star out of 10. Get The Fast and Furious instead.\r\n0\tNot exactly a new story line, but this romantic comedy makes the concept work. A young man(John Cusack) and a drop dead gorgeous woman(Kate Beckinsale)keep meeting by chance and wonder if they are meant for each other. Although both are promised to others...oddly enough they still feel that their soul mate is out there somewhere. A little sappy in some places, but viva la love. Being a romantic I am almost obligated to be riveted. My favorite scene is where Cusack is on the ground and snow starts falling. The finale is almost too sweet, but most deserving. This is not one of Cusack's deeper roles, but who in the hell could not be smitten by Beckinsale. Notable support is provided by Jeremy Piven and Molly Shannon. John Corbett plays the worst role I've ever seen him in. On the other hand Eugene Levy is quirky and funny. Watch this with your soul mate.\r\n0\t\"Woody Allen has lost his ability to write dialogue or characters that are clearly distinguishable from each other. This is the case with \"\"Melinda and Melinda,\"\" where all the characters speak with Allen's generic pseudo-sophistication and have problems and points of view that are not relatable to anyone outside of a four block radius of where Allen lives. They also share the same curious condition of being able to afford multi-million dollar Manhattan apartments that appear to have been designed by professional decorators regardless of their financial situation or what they do for a living.<br /><br />The only character who exists outside of this dull mindset is Will Ferrel as the obligatory Woody Allen surrogate. Although he does not simply come off as merely doing a Woody Allen impression (like Kenneth Branagh in the god-awful \"\"Celebrity\"\"), Ferrel lacks the charm or charisma that the real Woody had when he was playing the part himself in his best movies.<br /><br />The end result is another in a string of self indulgent bores from a once-great filmmaker who has been trading in on his former reputation for years.\"\r\n0\tThis movie looked like it was going to be really funny. I was very excited to see it but was very disappointed. It was very unrealistic. The plot was also pretty weak. I was expecting it to be really funny but the jokes weren't even that good. I was also really disappointed with the ending. I would not recommend this movie to anyone.\r\n1\tSince Educating Rita, Julie Walters has been one of my role models, and her performance in this as a woman who helps the man she loves get in synch with his feminine side is magnificent. I would never have believed her character in the hands of a lesser actress, but Walters pulls it off with gusto and panache. Adrian Pasdar gives his best performance to-date in the male lead.\r\n0\t\"It was hard to watch this film and be totally fair and objective since I am a big fan the original 1944 movie. That, to me and many others, is one of the greatest film noirs ever made. Realizing this is simply a shortened made-for-TV film and that most people had trashed it, I didn't expect much, but you can't help but compare this with the '44 film. Scene after scene, I found myself comparing what I was looking at it, and remembering how it played out with Fred MacMurray, Barbara Stanwyck, Edward G. Robinson and others. Now I was seeing these famous actors playing their famous roles replaced by Richard Crenna, Samantha Eggar and Lee J. Cobb.<br /><br />When it was all over, I found it wasn't as bad as I had expected but it's no match for the 1944 original. The two main areas in which this made-for-TV film wasn't as good were (1) the electricity between the two leads was missing and (2) being only 90 minutes, they rushed the story with hardly time to develop the plot, characters and chemistry between those leads. Crenna and Eggar were flat, and simply no match for MacMurray and Stanwyck as \"\"Walter Neff\"\" and \"\"Phyllis Dietrichson,\"\" respectively.<br /><br />Where this re-make held its own was in the other characters, such as \"\"Barton Keyes\"\" and \"\"Edward Norton.\"\" Cobb was terrific as Keyes and Robert Webber as Norton, head of the insurance company. It also was somewhat interesting to see the time frame changed, so the houses, cars, telephones, dictating machines, etc., were all early '70s instead of mid '40s. Otherwise, the storyline was very similar, just rushed.<br /><br />However, one viewing was enough and I will happily go back to the original version for the rest of my viewings of this classic story and film.\"\r\n0\t\"Whoa. In the Twin Cities, we have a station that shows a \"\"Big Bad Movie\"\" Monday through Friday. Tonight's nugget was a film with Carrie Fisher called \"\"She's Back\"\" about a really annoying woman who ends up getting murdered when thugs break into her house. Bea (Beatrice) comes back to haunt her husband. She wants him to seek revenge on her killers, hence \"\"she's back\"\". And she won't let him rest until he does so. She irritates him endlessly... and the viewers, too! This movie is truly one of the worst movies I've ever seen. Hey, I like bad movies, though (my fave movie is Xanadu). I was really shaking my head throughout the whole film, wondering who thought this would be a good idea for a movie. Bea is just so annoying. The plot is silly; the acting is bad; the story... well, you get my drift. Anyway, if you wanna see a really bad movie - really really bad movie, check this one out. You won't be disappointed. Heh.\"\r\n1\tSome thirty years ago, Author Numa Sadoul published a book length interview with the Belgian comic book artist Georges Remi (better known as Herge, the creator of Tintin). This movie catches up with Sadoul today as he recalls the interview, while we listen to the cassettes (Herge died in 1983) and see some old photos and footage of the man himself. Some parts of the interview were not published in the book at the request of Herge, and we now know these dealt with his separation from his wife, after he had an affair with one of his collaborators (who years later would become his second wife). An interesting thing the movie does not address well is the shift in the Tintin books from the early rightist and imperialist books (Tintin in the Congo, Tintin in the lands of the Soviets) to fairly anti-imperialist books just a few years later (The Blue Lotus). On the whole, I come out of this movie knowing a few more things about Herge and seeing him as a bit more unlikable than when I come in to the theater.\r\n0\tBilly Crystal normally brings the crowd to laughter, but in this movie he and all the rest of them cannot bring any smile on my face.... or perhaps just one. They call it comedy, I say it's a waste of my time.\r\n0\tI love Seth Green. His appearances on THat 70s' Show is always worth watching but last night, I felt the show needed to overhauled. Four single young guys inherit a New York City apartment that most of us would die for. The grandmother must have been an heiress to have such space in the first place. So I felt the need for realism should have been brought out. Anyway the plot about four best friends getting this apartment was not believable. I would have been thrilled if they had to move in with one of their parents which would have provided great humor and dysfunctional about the show's set up. There did not seem to be much humor in it. I am only watching it because it falls before My Name is Earl on a winning Thursday night. I think they should go back, scrap this series, and start over. We need more family involved series. How about Seth and his friends move in with his wacky parents in the suburbs after a fire burns their place down. THey could have Dabney Coleman play the father and Christine Estabrook, play the mother and dysfunctional siblings. The list of possibilities with somebody like Seth Green are endless and the network is blowing it.\r\n1\tThis was by far the best war documentary ever made. From the very beginning of the first episode when Sir Laurence Olivier described the horrific events in Oradour-Sur-Glane 'The day the soldiers came'. To the final days of the war when the mushroom clouds appeared over Japan, I never missed a second of this classic series and I remember it well even though it was screened way back in 1974. Each and every aspect of this tragedy was covered in detail. This whole series should be compulsory viewing for as many of the world's children as possible so that the tragedy of World War Two is not repeated and that bigotry, hatred, greed and intolerance are not confused with patriotism or religious zeal.\r\n0\t\"This is possibly one of the worst giant killer animal movies I have ever seen. It follows the typical premise of a laboratory experiment gone wrong and a giant crocodile with a rapid growth chemical in it escapes. The monster looks way to much like a dinosaur, having big Tyranosaurous-like hind legs, when it should just look like an over-sized crocodile. Everything about this movie is unoriginal and it constantly oozes \"\"cliche\"\", minute after minute. Why are there always two drunken redneck hunters out after dark who separate? Plus, there's always a guy and girl who share a lame, obvious love interest while they are in life threatening situations. To much has already been said by me and I feel as if I'm wasting my time writing this...\"\r\n0\tThis is the sorriest collection of clichés, strung together on a straight line, with no discernible plot or any decent way of acting I've seen in a long time. Canibalising scenes from Star Wars, Reign of Fire, Godzilla, Lord of the Rings and Harry Potter, it went for an all out war on the viewer intelligence. Was this movie good? It wasn't a movie at all!<br /><br />Even if it doesn't go so low to actually be funny and achieve cult status as a comedy, the movie does offer some laughs. The trick is to put the copied scenes in the context of their original films. Gandalf can be funny talking Korean, the basilisk looking snake hilarious if you compare it to a kitten and the evil henchman can provide a lot of fun switching back and forth between Sauron and Jaja-bing, or whatever his name was.<br /><br />Bottom line: any pleasure derived from this movie is completely dependent on the state of intoxication and imagination of the viewers, not on the director/writer. Shame on you, Shim!\r\n1\tAs a Westerner watching another culture's view and tradition of marriag, I found Just Married mesmerizing and delightful. The idea of marrying a stranger through the mutual arrangement of parents is difficult, especially in this modern age. Yet this is the case in this Hindi film. Told with humor, and fresh perspective, we learn of Abhay and Ritika who have only met once and are now on their traditional five day honeymoon. As said, it is difficult to believe in this cell phone affluent age that such an archaic custom as an arranged marriage still take place. We see the awkwardness that this young couple feels as they come together on their first night, and how they try to forge a bond, even though they do not know one another. We see different views of marriage and commitment as presented by the other couples also on holiday, from a couple of forty years married to others still unsure of making marital commitment. There's song, witty dialog, poignant moments, blending and comparison of new ways and tradition. Watching the movie with subtitles definitely loses some of the trueness of the story, yet it is still a delight to watch. Granted some of the plot is a little trite and the bus incident a bit drawn out and contrived; however the overall movie was worth watching.\r\n1\tVery interesting and moving documentary about the World Trade Center tragedy on 11th September 2001.The main theme of it is the heroism of American fire-fighters who tried to rescue as many people as they could.The film is deeply emotional and rather disturbing-many people seen on screen have lost their lives!Recommended.\r\n1\t\"This production of Oliver is masterful in showing layers of evil in the human soul. What makes the story remarkable is a brilliantly bright Unseen Character, who pierces this darkness as he leads an innocent boy through the gravest dangers safely into the hands of his own relative. Yea, though Oliver walks through the valley of the shadow of death, he fears no evil. A rod and staff are there to comfort him. In the end, he is saved from the dregs of humanity. At the bottom is Fagin, the most wicked of the lot. Fagin contemplates repenting of his ways not once, but twice, yet declines because he is unwilling to pay the price. Fagin is worse than Bill Sikes, because he raises little pickpockets who become murderers. In the middle is Oliver. His innocence is unsullied, but untried as well. The best is Nancy. Lacking in judgment, she ignores Bill Sikes' violent nature out of her deep need for love. Yet unlike Fagin, at the probable cost of her own life, she does repent of her sins by saving Oliver from Bill. Things are not as they seem. In my opinion, this quality is what makes art worthwhile - unpredictability. I would give this film a \"\"10,\"\" but its '70's made-for-TV soundtrack and ambiance were distracting. Overall, a fine parable and a thoroughly appropriate story for all audiences.\"\r\n1\t(spoilers?)<br /><br />while the historical accuracy might be questionable... (and with the mass appeal of the inaccurate LOTR.. such things are more easily excused now) I liked the art ness of it. Though not really an art house film. It does provide a little emotionally charged scenes from time to time. <br /><br />I have two complaints. 1. It's too short. and 2. The voice you hear whispering from time to time is not explained.<br /><br />8/10<br /><br />Quality: 10/10 Entertainment: 7/10 Replayable: 5/10\r\n1\tI swear when I first saw this movie,I cried my eyes out! A STAR IS BORN is the movie that lets you know what love is really like despite the obstacles John Norman (Kris Kristofferson) and Esther (Streisand) face. You also experience what it's like to lose a love like that by the end of the movie. Streisand and Kristofferson have such great chemistry together and the music is fantastic! When Streisand sings With one more look at you/Watch closely now, it's just pure magic! This movie made the song Evergreen one of my favorites,and Queen Bee is such a fun song. Also I love the fashion of the '70s (except Streisand's afro. Besides that,she's a beauty.). A Star is Born is my number one favorite movie. This movie is a pleasure to watch and is a heart-breaker at the end.\r\n0\tPROBLEM CHILD is one of the worst movies I have seen in the last decade! This is a bad movie about a savage boy adopted by two parents, but he gets into trouble later. That Junior can drive Grandpa's car. He can scare people with a bear. He can put a room on fire! It is a bad movie as much as BATTLEFIELD EARTH. A sequel is an even worse fate. Rent CHICKEN RUN instead.<br /><br />*1/2 out of **** I give it.\r\n0\tI don't know what Margaret Atwood was thinking to allow this movie to have the same name as her book. I've always been a big fan of The Robber Bride and was so excited to learn there was a movie in the works. I am aware that the translation of book to movie isn't perfect but this movie was the worst ever. The names of the women are correct and some of the back story is correct but that is about it. I feel like I lost a good portion of my time trying to make it through this movie. This really should have been a mini-series to tell the story the way it was written.<br /><br />The actors for Roz, Tony, Charis and Zenia were well-chosen even though I was skeptical at first about Mary-Louise Parker. I only wish they'd had a better script to work with because this really had nothing to do with the book at all.\r\n0\tThis movie was advertised on radio, television, magazines, etc. Almost every hour or every issue. So when we went to the Kinnepolis multiplex our expectations were very high. But oh boy, how sad this movie is! It is a movie in Hollywood style about a movie in a movie. Shades shows so clear we aren't ready to produce 'big Hollywood movies'. I am not a movie critic, but I think a good movie starts with a good script. And the script is a nightmare. Like my subject line says, it is nothing, and then looped. You could just stare to the television as well, without really seeing anything. That was the feeling we've got when we saw Shades. Shades is a BAD PRODUCTION!!!\r\n0\tThe idea behind this film was a good one. Too bad it wasn't written well. Casting Sidney Poitier as the FBI agent was a good idea, and he did an outstanding job. Tom Berenger, on the other hand, only knows one emotion in most of his movies, anger. Kirstie Alley's character could have been a great one, and even showed some possibilities once, but the writer really let us down by making her role mostly a helpless female. This was completely inconsistent with the strongly independent character she was supposed to be. I don't care for Alley's acting anyway. The movie should have ended about fifteen minutes sooner than it did. The director milked the cow dry before the unbelievable final action. I will keep this in my collection only as an example of Poitier's performances.\r\n0\t\"First off, the title character is not even the main character of the movie. He is the sidekick of the cult leader. The actor who portrays Igor believed that screaming loud, laughing hysterically, and having a crooked smile while bugging out your eyes would be an excellent way to scare people. Igor also had the annoying habit of yelling (because he never actually just spoke) in a high pitched voice. He would also say idiotic one-liners. For example when the cult leader murders one of his followers with a buzz saw, Igor upon seeing this, yells out \"\"Paul! No Paul! Why'd you do it? I could have cut her clean! So clean!\"\" In another scene Igor tells a victim that she would have to 'get her own tools for surgery because right now, it was his time to operate.' Aside from the bad acting, the ending did not make sense because while the story builds up what little steam it has towards the climax, which is Igor getting a crossbow arrow to the head and the rest of his lunatic buddies being killed, he shows up again two more times to kill the remaining 'good guys'. The movie offers no explanation of this, only telling the viewer that Igor escaped from the mental hospital. What??? Bottom line is do not waste your time watching this movie. I wish I could get back the moments I lost watching this.\"\r\n0\t\"I loved \"\"The Curse of Frankenstein\"\" so much that I rushed out to get \"\"Frankenstein Must Be Destroyed\"\" to see Cushing at it again...even if it was without Chistopher Lee this time. To my great disappointment, this movie not only does without Lee, but it does without Frankenstein's Monster altogether! Was it a case of \"\"If we can't get Lee, we won't have a monster at all\"\"? Why would they do that? The monster is half the fun of the whole thing!! This film is dedicated solely to the study of Baron Frankenstein and his quest to finish experiments he had begun in brain transplants before ending up in an asylum. I found the script extremely weak, with the need to suspend disbelief forced upon the audience a little too much. I'm willing to suspend a fair amount, but this movie got fairly ridiculous, which took me out of the film rather than immersing me in it.<br /><br />Peter Cushing, though, is absolutely brilliant playing pure evil in this film. For being one of the most beloved actors and notoriously sweet men, he sure could play menacing and malevolent extremely well. The supporting cast is competent, but has little to do, even the young doctor and his fiancée blackmailed into helping Frankenstein. A bumbling police chief is introduced, along with his put-upon sidekick, to generate some comic relief, then they are completely dropped from the movie! Why? We are led to believe that the police chief will be the main nemesis of the Baron, then we are led to believe it will be the young doctor, and then it ends up being the victim of Frankenstein's brain transplant experiment. There was no tension, we weren't invested in the \"\"creature\"\", and the ending was left so ambiguous as to leave one unsatisfied because it is so clear they are setting up another sequel.<br /><br />Also, there are virtually no \"\"horror\"\" elements. Yes, there is a beheading in the beginning (off-camera), and we are treated to the sounds of Cushing cutting the tops of two men's skulls off (again, off camera), and there is the most unsettling and thoroughly unnecessary rape scene (90% of which is, again, off-camera). I understand that there is a love of \"\"letting the audience imagine it all, for their imaginations are far worse than what we can show\"\", but come on, if you're not going to give us a Monster, then at least let us SEE the few \"\"horrific\"\" elements you do choose to include. Showing us a skeleton in the lab lit with a green light is just not scary.<br /><br />On top of a weak script, I thought the directing was mostly flat. There were a couple of nice shots, but otherwise no excitement, atmosphere, or suspense was generated. The same director did \"\"Curse\"\" back in 1958 and I thought it was brilliantly directed...guess he was as uninspired by this film as I was.<br /><br />The movie gets a 4 out of 10 from me strictly for Peter Cushing's powerful, nuanced performance...beyond that, I found little in this movie worth recommending. Instead, my suggestion is to watch \"\"The Curse of Frankenstein\"\" and see a truly great Hammer horror film.\"\r\n1\tI like Peter Sellers, most of the time. I had never seen him portray an upper-class Brit until this movie. He pulls it off pretty well, although you see bits of Inspector Clouseau in the mix. It doesn't get interesting until Goldie Hawn arrives.<br /><br />I never expected the youthful Hawn to deliver such a solid performance. Her timing was great and her expressions were priceless. The way she alternately shoots Sellers lecherous character down and seduces him is beautiful to watch. Verbal sparring like I've seldom seen from a movie of that era.<br /><br />The last thirty minutes of the movie DOES fall flat. It is worth the let down just to see the first sixty. Hawn is nude for a few glorious seconds early on. Enjoy it...\r\n0\t\"The plot line of No One Sleeps is not a bad idea, and the subject matter is of quite a bit of interest. But, throughout watching this film, we were saying aloud, \"\"These filmmakers go to the trouble of finding good locations, the lighting is good, makeup and hair are good...why is the sound so bad?\"\" Throughout the film the sound was echoy, garbled and much of the dialog was unintelligible.<br /><br />There is some good acting in this film, and I think Jim Thalman is really a good actor. This story, with some of the same actors, would have been worth doing as a high-budget film.<br /><br />I just can't reiterate enough - if you have a limited budget, dedicate more to good sound. Sound is as much a part of a film as the image, and it's worth doing right. Could've earned a 6.\"\r\n1\t\"It'd be easy to call Guys and Dolls great. It's got Frank Sinatra and Marlon Brando (and, contrary to Sinatra's original wishes, the casting works), it's got a really cool 1950s feel, even if it is basically transposed from stage to screen with only a little interruption. And most of the songs are often a lot of fun, and catchy, and performed with that wink and nod to the wonderful escapism inherent in the form itself. If it's not entirely as great as some others of its ilk, it shouldn't be any fault of the filmmaker Joseph L. Mankiewicz. Not all the songs entirely click, and a little of the dialog feels like it's being performed for the stage as opposed to film (it's hard to tell at times- Brando and Sinatra straddle the line so often that one has to watch carefully to tell when one plays for the camera or for the \"\"stage\"\", while the actress playing Adele is better for stage than screen).<br /><br />The plot is one of those winners that works well for its period, even if one wonders if its influence has stretched to the likes of 1999's She's All That (well, not quite, but close). A gambler (and 14-year betrothed), played by Sinatra, wants to host a big-time game, but is told that the \"\"heat is on\"\", meaning the cops are on watch. So, he has only one choice to host the game, with a thousand dollar tab. The only way he can get it is through a big-time bet with fellow gambler Brando, who's put on to make a wild wooing job of a mission worker. It allows for the predictable twists in the story, in the sudden turn-on-turn-off of the charms of the character, of the idiosyncrasies of people from the streets (gangsters and dancers and the \"\"saitn\"\" played by Jean Simmons who falls for Brando). It is, in its basic concept, about this whole world of guys and dolls, and how to balance one or the other- obviously without getting married or too compromised.<br /><br />Mankiewicz brings a lot of energy to the piece, even when keeping still with the camera on the subject, and his stars are properly reeled in. Hell, even Brando works excellently for a musical as he goes beyond being simply THE method actor and shows his chops for singing and big-star quality. The story and characters eventually wind down to what you'd hope will happen, and that's fine. All we ask for- and what we get- is entertainment in good spurts of witty, involving dialog, and a few songs and dances that bring the house down (my favorites were the number with the lady-cats at the club, Luck be a Lady, and the two numbers down in Havana, Cuba). A-\"\r\n0\t\"A patient escapes from a mental hospital, killing one of his keepers and then a University professor after he makes his way to the local college. Next semester, the late prof's replacement and a new group of students have to deal with a new batch of killings. The dialogue is so clichéd it is hard to believe that I was able to predict lines in quotes. This is one of those cheap movies that was thrown together in the middle of the slasher era of the '80's. Despite killing the heroine off, this is just substandard junk. Horrible acting, horrible script, horrible effects, horrible horrible horrible!! \"\"Splatter University\"\" is just gunk to put in your VCR when you have nothing better to do, although I suggest watching your head cleaner tape, that would be more entertaining. Skip it and rent \"\"Girl's Nite Out\"\" instead.<br /><br />Rated R for Strong Graphic Violence, Profanity, Brief Nudity and Sexual Situations.\"\r\n0\t\"The plot doesn't offer any new excitements, it even starts the same as cube I. This time there are no other enhancements for the cube machinery, except for having an extra exit, which is not guarded, very ingenious. The characters are also not so well elaborated as in the first episode, they just became \"\"flat\"\" as in a soap opera. <br /><br />If somebody makes it to the normal exit, the person would be asked some questions, like \"\"do you believe in god?\"\", its not really creative or original and especially in my opinion it doesn't fit into the mystery of the cube with it traps. Really there is nothing much else to say about it.\"\r\n0\tDid anybody succeed in getting in this movie?<br /><br />It's a total mess to me: a vague historical/sentimental context instead of a plot, a pretentious imagery as mise en scene and it lasts two hours!<br /><br />Shame on those who wasted money here.\r\n1\tHave no illusions, this IS a morality story. Granger is the troubled ex-buffalo hunter, tempted back to the plains one more time by kill-crazed Taylor. Granger can see the end is near, and feels deeply for the cost of the hunt-on the herds, the Indians and the land itself. Taylor, on the other hand admittedly equates killing buffalo, or Indians to 'being with a woman.' While Granger's role of the tortured hunter is superb, it's Taylor who steals the show, as the demented, immoral 'everyman' out for the fast buck and the goodtimes. There's not a lot of bang-bang here, but the story moves along quickly, and we are treated to a fine character performance by Nolan. The theme of this story is just as poignant today, as in the 1800s-man's relationship to the land and what's on it, and racism. Considering when this was made, the Censors must have been wringing their hankies during the scenes in the 'bawdy house', Taylor's relationship with the squaw, and much of the dialogue. Although downbeat, this is truly a great western picture.\r\n1\t\"An excellent documentry. I personally remember this growing up in NYC in the early 80's. This movie is for anyone that wasn't around during that time period.This shows the one thing the African American Gay Underclass felt was solely theirs and the love and camadrie you see is real. The people are real and sadly few are still alive as this is being written. The balls are still held but not to the extent that they were in the the nineteen eighties. That time is gone forever. This is a good pre \"\"homo thug\"\" movie. When Queens were really proud to be extroverts. Goodbye to Storyville this is another era gone but greatly documented all hail film!\"\r\n1\t\"Why do I like DISORGANIZED CRIME so much? Why do I chuckle or laugh out loud any time I think of a dozen or more scenes from this movie? It's kind of hard to explain, but I'll give it a try. First of all, it's very funny indeed - in contrast to what lots of \"\"official\"\" reviews want you to believe. But then again, that depends entirely on your sense of humour, so there is no sense in arguing about that. Often the humour is in the dialogue, and often it is situational comedy. There is for instance this very hilarious scene in which the 4 gang members have been given a lift in the back of a truck. When the farmer drops them, they just stand there by the road, covered all over with cow s*** or whatever. They are totally unnerved; then, realizing the humour of the scene, they one by one start laughing about themselves, and Ruben Blades (as Carlos), looking (and certainly smelling) terrible, nonchalantly takes out some mouth spray to at least do something about his breath (simply describing the scene here makes me chuckle again!). Which leads to the second point: the acting. Fred Gwynne, Lou Diamond Phillips, William Russ, Ruben Blades and Corbin Bernsen (okay, the latter overdoes it a bit at times) all fit and play their parts beautifully - in fact, you get the feeling they must have been enjoying themselves too when shooting the film. Thirdly, there is the plot . Jim Kouf, the director and screenwriter, is very laid-back; he takes his time to let the plot unfold and have the individual characters establish themselves. More often than not, there is no real action, and yet you enjoy these 4 very different people - who attempt to rob a bank although their boss (Bernsen) does not seem to turn up - grumble about each other and even-tually, grudgingly, like each other. The movie is a fantastic parody of the typical bank robbery plot - totally impossible with all its twists and coincidences, yet utterly convincing in its love for ironic details. Incidentally, the title of the film is one of the best I have ever come across, because it per-fectly summarizes the plot in a very ironic way. Therefore, take my advice: watch this film, but if you don't chuckle, grin or smile during the first 10 minutes, forget it - it's not your type of film. PS. The only negative thing about this movie is that there seems to be no way to get hold of the screenplay - if you happen to know how, do tell me.\"\r\n0\tThe story is very trustworthy and powerful. The technical side of the movie is quite fine.. even the directing of it. The main problem is with the castings, that turned that movie into almost another local and regular cliché with a great lack of impact and even greater lack of impression. Beside the small role of the father, Rafael (played impressively by Asi Dayan), all other actors were unfortunately not in their best. The role of the elder Blind girl, played by Taly Sharon, was fresh but without any intensity as the leading role. therefore the figure she acted had become mild and low profile. There were moments and episodes that looked more like a rehearsal then a real movie. But after all it's a good point to begin from and to make big improvements in the future.\r\n1\tOK where do i begin?... This movie changed my life! The plot was seamless. James Cahill has out done himself. Initially after a first viewing i was disappointed that i hadn't seen it on the silver screen. However this was before exploring the DVD's many features!!!! Oh my god Jakes Cahill's commentary of the film was almost as flawless as his acting. he told of industry secrets used in the film that you only get with experience.<br /><br />I was so impressed by the other actors. The scene where the security guard is talking to the girl in the hallway, reminded me of some of my favorite blue (pornographic) movies. I am certainly with Gangsta when he expresses his disappointment with no sequel.<br /><br />I am still blown away with each viewing of the martial arts skills involved, matched only by the sign indicating the location of the library at the school... and possibly the guy playing a retard! All in all a timeless classic and the best film to come out of Europe in years! where my Oscars at dawn!!!!!!!!!!!\r\n0\tAcclaimed director Mervyn LeRoy puts drama on film that competes with the best of soap operas. High drama is found in the loves and infidelities in New York's social set. Oh yes, don't forget jealousy can bring about tainted hearts and murder. The all star cast features: Barbara Stanwyck, Van Heflin, James Mason, Ava Gardner, Cyd Charisse and Nancy Davis.\r\n0\tWant to know the secret to making a slasher film set at a fitness center work? Just pad the film out with lovely ladies in super tight workout outfits and have them bump and grind the floor like they are at a gentleman's club. That's what the makers of this horrid slasher film did and that little gimmick kept me watching till the bitter end. This is the worst slasher film I have ever seen, but every time I was ready to switch the channel, they'd add another scene with the workout girls and I'd stay put. As a slasher film, Killer Workout fails in every category I can think of. As a showcase for beautiful girls working out, it is a success. Strong recommendation to avoid, unless the thought of half the film being a big T&A show appeals to you.\r\n0\t\"Oh my, this was the worst reunion movie I have ever seen. (That is saying a lot.) I am ashamed of watching.<br /><br />What happened in the script meetings? \"\"Ooooooh, I know! Let's have two stud muffins fall madly in love with the Most-Annoying-Character-Since-Cousin-Oliver.\"\" \"\"Yeah, that'll be cool!\"\"<br /><br />Even for sitcoms, this was the most implausible plot since Ron Popeil starting spray painting bald men.\"\r\n1\t\"Olivier, Kosentsev, Richardson, Coranado, Zefferelli, and Almerayeda have all directed Hamlet but Branagh's the only one who got it right.<br /><br />This is the only film of \"\"Hamlet\"\" that contains the full four hours of William Shakespeare's masterpiece and gives a unique feel to the whole story.<br /><br />Not many directors could pull this off without boring their audience but Branagh's skillful use of bravora film style and stunt casting allows people to see the importance of the scenes that are usually cut out.<br /><br />Examples of this include Gerarde Depardue as Ranyaldo whos entire purpose in the film was to simply say \"\"yes my lord\"\" as Polonius asks him to spy on Leartes. This also included Billy Crystal as the grave digger, Robin Williams as Osric, Jack Lemmon as Marcellous, and Charlton Heston as the actor.<br /><br />Branagh's performance of the Act 4 scene 4 soliloquy (Which again is usually cut out) is nothing short of c cinematic marvel as the camera slowly pulls back as the intensity grows. It is a scene that literally made me want to jump out of my chair and start applauding.<br /><br />Branagh is the only film maker that understood the importance of every scene in this film and knew how to convey that importance to the general audience.<br /><br />This is a must see for everyone who enjoy's good story telling, brilliant acting,and incredible direction. All of these part of William Shakespeares greatest triumph.\"\r\n1\tI picked this film up based on the plot summary and critics' quotes on the back of the box. I'm not big into foreign films, and didn't know what to expect. I don't really care for subtitles either. But I absolutely loved it! It has a simple, lovable quality that leaves you feeling good about life. I found myself laughing out loud repeatedly. I'd recommend this picture to anyone, even those who abhor foreign films with subtitles. This one makes it worth the effort.\r\n1\t\"How this has not become a cult film I do not know. I think it has been sadly overlooked as a truly ingenious comedy!<br /><br />\"\"Runaway Car\"\" attempts to pass itself off as a fast-paced thriller, but taking the quality of acting (good God it's bad), the storyline, the practicalities of the car's demonic possession and the baby evacuation scene into account there is nothing you can really do but laugh. And laugh you will. Films are made to entertain us, and the degree to which they do this can be an indication of a film's worth. This film is the pinnacle in entertainment, I laughed from beginning to end. At one point I got short of breath and nearly choked, it really is that funny at some points. When the baby was airlifted out of the sunroof in a holdall by a helicopter with a robot pilot who managed to maintain a constant velocity identical to the car and a perfectly flat flight plain that meant the grapple hook didn't rip the car roof to pieces, I was laughing hysterically. But when the baby starting swinging around in the air, nearly hit a bridge and almost got tangled up in a tree, tears were running down my face.<br /><br />It also occurred to me that the black cop was the guy who played Jesus in Madonna's \"\"Like A Prayer\"\" video. He seems to get everywhere.\"\r\n1\tA film about wannabee's, never-were's and less-than-heroes making it against all odds. Where have we heard that before. But when the unfortunates are the Shoveller, the Blue Raja and Mr.Furious you know this is not your conventional rags to riches story.<br /><br />A classic performance by Eddie Izzard as Tony P. one of the Disco boys leaders and Geoffrey Rush as Arch Villain shows actual thought went into the casting. <br /><br />Even Greg Kinnear, at first glance an odd choice for the role of Captain Amazing turns out spot on.<br /><br />Watch this film if you're sick of comic-gone-film stereotypes. Why couldn't anger be a super power?\r\n1\t\"THis movie shows us once again, how genius the Japanese directors are and were. This movie could be seen as a sort of a \"\"Silent - Movie Tetsuo\"\". Well Eisenstein...:)\"\r\n1\t\"This is an excellent show! I had a US history teacher in high school that was much like this. There are many \"\"facts\"\" in history that are not quite true and Mr Wuhl points them out very well, in a way that is unforgettable.<br /><br />Mr Wuhl is teaching a class of film students but history students and even the general public will appreciate the witty way that he uncovers some very well known fallacies in the history of the world and strive to impress them upon that brains of his students. Use of live actors performing \"\"skits\"\" is also very entertaining. <br /><br />I highly recommend this series to anyone interested in having the history they learned as a child turned upside down.\"\r\n0\tBest of the Best 4, is better than 3, but just barely. Basically, I say this because part 4 doesn't contradict parts 1/2 (like 3 does), (ie. their is no reference to Tommy Lee having siblings).<br /><br />Anyway, I liked the Russian plot line of the story, and especially Sven Ole-Thorsen's bit part as Boris. Aside from that though and a few fighting scenes, the movie is nothing special. The limited budget is also very noticeable (especially in the airplane blow-up scene).<br /><br />Also, part 4 does not really have a moral or say anything like part 3 did, there are a couple of more better known actors (Hudson, Thorsen) in part 4, but alas nothing like the beginning of the series (and even these characters have very small roles).<br /><br />Alas, it seems Best of the Best is the Rhee show, and to be truthful, he cannot carry a movie.<br /><br />Saw on tape, Rating:4\r\n0\tabsolutely trash. i liked Halloween and from then on johnny's been in a downward spiral. this is about the pits. we get it john. pro-lifers are scary! you don't have to make a shitty film that bores the hell out of me to 'tell' me.<br /><br />The pacing is way off here. It feels like john didn't have much to work with here. to his credit it looks like he did not write this junk. There are countless times where the camera just sits and waits for the actors to look dumb or say something dumb. i love the long cut. too bad carpenter doesn't know how to employ it. he needs to bunk up with Herzog and Fassbinder 30 years ago. Please John, stop making a fool of yourself and boring me to death!\r\n1\t*** Spoilers*<br /><br />My dad had taped this movie for me when I was 3. By age 5, I had watched it over 400 times. I just watched it and watched it. And I still do today! It has a grim storyline, a lamb's mother is killed by a wolf--a very emotional scene--and wants to become a wolf, like him. After years of training, the lamb is made into a really REALLY evil looking thing. He and the wolf travel to his old barn, but he cannot kill the lambs, no matter how much he wishes to. He ends up killing the wolf, but is no longer seen as a lamb by his former friends, and can't return to his previous way of life.<br /><br />The art is beautiful, the songs are..well, okay, and the voice acting is better than some things today.<br /><br />All in all, you just *have* to see this movie, it is a great masterpiece. Although, it's very hard to find today.<br /><br />\r\n1\tThis is one of the great movies of the 80s in MY collection that I think about all the time. <br /><br />The Running Man is one of Arnold`s best and most different films even to this day and when I first saw The Running Man I was so excited to see a movie like this. I just adore all of the fights and this is truly a special movie. It also has Jesse Ventura, the legendary Professor Toru Tanaka, Sven-Ole Thorsen, the beautiful Maria Conchita Alonso, Yaphet Kotto, Kurt Fuller, Richard Dawson, and Thomas Rosales Jr. who seems to always like death in his movies because he has been killed in such films as Universal Solder, The Lost World, Robo Cop 2, Predator 2, and among others. All Arnold fans should love this film from the beginning to the end because its action packed, star filled, and its one its one of Arnold`s best to date!\r\n1\tThere are too many new styles of the sitcom but the one that works best is the old fashioned way with an audience and indoor set. That 70's Show is a great example. When the show came on the air, nobody really heard of Kurtwood Smith and Debra Jo Rupp much less the adolescents played wonderfully by Topher Grace and Ashton Kushton (both of them are leaving the show this year to pursue other interests) I wish Topher would stay around because the show began about his character, Eric, and his close circle of friends. Ashton is already the John Travolta of our time. Remember when John was in love with Diana Hyland from Eight Is Enough, think of Ashton with Demi Moore. The cast of actors were never known to us which is a good thing because a celebrity cast member can spoil it. I miss Mo Gaffney who played Don's girlfriend Joanne. I miss Lisa Robin Kelly as the original Laurie, the replacement could not match her and I am sorry about that. I liked the casting of Tommy Chong as the wasted but beloved father figure to Steven Hyde. I loved watching Tanya Roberts besides Charlie's Angels. I loved Brooke Shields playing Jackie's mom. She really showed her acting talent before heading to Broadway. This show has been a delight with many surprises. I hope this show lasts longer even though 2 of their cast members are leaving but I hope they don't stay too far away too long. I wish the show's creators, Bonnie and Terry Turner, who also created my other favorite show, Third Rock from The Sun, is more successful on Fox than they were on NBC which sabotaged their show. The Turners are not dummies and I hope they create more shows like this in the future.\r\n1\t\"Kim (Patricia Clarkson), George (Jake Weber) and son Miles (Erik Per Sullivan) are headed to the country for winter weekend relief from Manhattan's bustling metropolis. On the way, they hit a buck and end up stuck in the snow. A group of hunters who were tracking the buck come along. Rather than helping, at least one of the hunters, Otis (John Speredakos), is mad because the accident cracked the buck's antlers. George, Kim and Miles are disturbed by Otis, and even worse, we quickly learn that Otis has learned where they're staying. Meanwhile, Miles is given a wendigo (a kind of Indian shape-shifting spirit/monster) token by an Indian whom only he has seen. Is Otis a psycho out to get our heroes? Are there wendigos in the woods? <br /><br />I can see where Wendigo would have a number of problems appealing to viewers. It is a fairly low budget film, with technical limitations frequently showing through. Much of the film, and maybe all of it, is not really about the titular creature. And perhaps the fatal blow for many people, it has a very ambiguous ending, with a number of questions left unanswered. If you are discouraged by such endings, and you do not like films that have an aim of making you think about and discuss what everything meant, do yourself a favor and avoid Wendigo.<br /><br />Personally, I like films like that. I usually prefer some ambiguity. The marketing of Wendigo is geared towards those who want a quick, scary creature flick, where they'd expect a grand battle with some supernatural monster who is defeated in the end, and everything is tied up neatly except for an opening for Wendigo 2: The Monster Returns, but that's not what this film is. Wendigo is much more thoughtful and poetic than the surface of such a creature flick would suggest to most people. Heck, writer/director Larry Fessenden even has a character, George, reciting Robert Frost. The Frost poem, and George's comment that Frost can evoke complex imagery and atmosphere out of seemingly simple things, is the key to the film.<br /><br />One of the best things about the film is its complexity. In a way, there are four different films occurring at the same time, a thread from each character. In George's thread, he isn't exactly the happiest or most pleasant guy in the world, and he has some parenting problems. For him, the film is a realistic, horrific descent of his life going from bad to worse. In Patricia's thread, she's looking for rejuvenation of her life and family. She's a psychologist mostly denying the problems around her, hoping that they'll go away and get better. In Otis' thread, he's even more down on his luck than George, and George's arrival into his life symbolizes the final \"\"crack\"\" in his psychological armor. And in Miles' thread, which is probably the most important of the film, life is like a grand poem due to his youthful innocence and interpretation of the world. But this is a horror story, after all, albeit one with a glimmer of hope, and the events in the film give Miles' poetic interpretations a dark turn. Still, when everything is said and done, he seems to be the only one retaining his composure, due to the poetic outlook.<br /><br />Even though the film is low budget, there are a lot of well-executed higher budget ambitions. Fessenden and director of photography Terry Stacey find some great shots in beautiful locations, and created some interesting slide show like montages (such as the cards, or the Indian wendigo images from the book). There are also interesting more traditional montages, such as Miles' nightmare. Wendigo is better shot and edited than many big budget films.<br /><br />Other technical aspects are good for the budget. The \"\"Wendigo\"\" appearance at the end worked for me and was appropriately ambiguous. The lighting was usually good--there were a few times that dark scenes weren't as clear as they could have been, but it seemed to be more of a problem with the film stock (it could have been digital instead) or transfer. I thought the performances were good and far more realistic (if you value that) than the majority of films. Although I didn't really notice the score, it must have been okay, or I would have noticed it with a negative judgment.<br /><br />Overall, Wendigo is a very good film that deserves to be watched without preconceptions, as long as you don't mind having to think about the movies you watch.\"\r\n1\tI want to add to the praise for the production of this film, especially the luminous cinematography. Firelight glistening off of smooth and muscled skin creates stunningly beautiful imagery. The film was nominated for (and won) a single Oscar - the first given for editing. Mala's performance is moody, penetrating and powerful.\r\n0\t\"The last reviewer was very generous. I quiet like the first movie, but can't say I enjoy this one very much. The beginning is bearable, but it goes downhill pretty quickly. I just don't see Jon Bon Jovi as a \"\"bad-ass vampire hunter\"\" and the vampire princess is neither sexy nor scary. A lot of the scenes just do not make sense. I mean any normal person would suspect something is up when a strange woman suddenly appearing out of nowhere to seduce you, let alone an experienced hunter. Why Una is able to communicate with Jovi? Nothing was ever explain in this movie, you wouldn't mind if it was entertaining, but that was too much to ask. This has to be one of worst vampire movie I have seen.\"\r\n0\tI'd have to admit that the draw of this movie is director Eduardo Sanchez, who helmed the wildly popular and successful Blair Witch Project. Besides, this is an alien movie of sorts, and sounded something like Stephen King's Dreamcatchers, one of those movies that the critics hated, but I enjoyed.<br /><br />But nope, unfortunately I felt that for the most parts, Altered is a waste of time, so I shall keep this review short. Premises are always promising, and Altered's no different. It tells the story of a group of men who experienced strange encounters when they were younger, and as usual, others will take you as a nutcase imagining stuff. Stories about alien abduction always have to deal with probes into the orifices, so I shall not go into details, but you get the drift it's damn uncomfortable, and something you'd like to forget.<br /><br />What if you're given a chance for revenge? That is, you manage to successfully hunt down, and capture one alive. What will you do? For this group, it's a gleeful payback time, or so they thought. And this is where the movie begins to develop into a snoozefest, with bad, uninspiring dialogue, and even worse acting. Even if it's low budgeted, there aren't many redeeming factors, be it strength of storyline, or any help from the cast in making their characters just a tad interesting. It's the standard cardboard fare from a vanilla plain script, coupled with some cheap scare tactics employed.<br /><br />What's good though is the makeup. Much effort has been put into making some of the stuff which I shan't mention, because that'll spoil just the few elements of what makes this movie tolerable. Other than that, there are the usual cheap special effects, blood and gory moments which is nothing you've never seen before.<br /><br />Watch this only as a last resort. Compared to the other monster movie in town - Feast, this one is less fun, and takes itself too seriously. Bogged down by an uninspiring direction, you've been warned.\r\n1\t\"I love Claire Danes, and Kate Beckinsale looks amazingly immature in her role. The movie is flawed only because it seems the two accused seem to be in some Monastery, working like monks in the grass and under strict almost martial-arts-like discipline. The acting and filmography and amazing colors of what is supposed-to-be Thailand is eye-catching, but Claire Daines steals the entire movie, and is unexpectedly profound in her learning the hard lesson of life itself to the very end, in an act of amazing unselfishness unheard of and completely unexpected in the real world. The flaws are minute and I recommend the film, which seems buried sadly forever to rare TV showings. I for one want the film for my collection- a collection of only \"\"10\"\" rated films. Watch it, you will be very touched.\"\r\n0\tThis should not have been listed as a Colombo because in my opinion it does not resemble any of the other Colombo ever made. This should have been listed as a movie starring Peter Falk and not playing the caracter of Colombo because it does not do justice at all to our great lieutenant Colombo.\r\n0\tThis movie is very very very poor. I have seen better movies. <br /><br />There was a bit of tension but not much to make you jump out of your chair. It begins slowly with the building of tension. Which is not a success. At least if you ask me. Though at some points or moments I must say it was a bit funny when people got shot and how they went down.<br /><br />They should had made it something like Scary Movie, then it might be a better movie. Because I watched only pieces of the movie by skipping scenes and it got to boring through out the movie. I must say that i felt sleepy watching this movie so I sure can say it is not worth it.<br /><br />Don't waste time on even thinking to do something with this movie besides leaving it where it already is. Somewhere very dusty..\r\n0\tSalvage is the worst so called horror film I've ever seen. There is nothing remotely horrific about it. It doesn't deserve to be in a genre so fine. First of all i don't see how so many people can think this piece of crap such a great movie. If I wrote something as boring and utterly ridiculous as this i would be laughed at and too embarrassed to subject others to the stupidity of it. Second: the acting is terrible and the lead actress is excruciatingly ugly. Third: the story sucks, its been used before, and the excuse that its a cheap movie is no excuse. Read the summery on the back of the case, it reveals the whole story. I do not recommend that you watch this movie unless you have 80 minutes to waste on something that will leave you regretting that you watched it. I feel really bad for those Crooks and the irony of their name. All hail Anthony Perkins!!!!!!!!!\r\n0\t\"This movie was absolutely pathetic. A pitiful screenplay and lack of any story just left me watching three losers drool over bikini babes. At times I felt like I was watching an episode of Beavis and Butthead. I couldn't even sit through the whole movie. Emran Hashmi disappoints, and Hrshitta Bhatt is not impressive at all. Celina Jaitley was not bad. The only worthwhile part of the film is the spoof on Anu Malik and his obsession of shayaris. It was pretty hilarious. The songs \"\"Sini Ne\"\" and its remix version were really good. You can always count on Emran lip-locking and lip-synching a chartbuster. All in all, it seems Emran doesn't have a good script from the Bhatts to back him up this time.\"\r\n0\tholy Sh*t this was god awful. i sat in the theater for for an hour and ten minutes and i thought i was going to gouge out my eyes much in the manor Oedipus Rex. dear god. this movie deserves no more credit than anything done by a middle school film buff. please save your money, this movie can offer you nothing. unless you enjoy sideshows and sleeping in movie theaters. you know, h3ll, bring your girlfriend and make things interesting. you will be the only ones there anyway. F@ck this slide show. <br /><br />Ye Be Warned.<br /><br />I recommend not watching this.<br /><br />hello.<br /><br />how are you?<br /><br />I'm pretty good.<br /><br />enjoying this day?<br /><br />I am.<br /><br />this comment was one-hundred times more fun than pretending to watch this daym movie. this is sad.\r\n0\tI watched this movie when Joe Bob Briggs hosted Monstervision on TNT. Even he couldn't make this movie enjoyable. The only reason I watched it until the end is because I teach video production and I wanted to make sure my students never made anything this bad ... but it took all my intestinal fortitude to sit through it though. It's like watching your great grandmother flirting with a 15 year old boy ... excruciatingly painful.<br /><br />If you took the actual film, dipped it in paint thinner, then watched it, it would be more entertaining. Seriously.<br /><br />If you see this movie in the bargin bin at S-Mart, back away from it as if it were a rattlesnake.\r\n0\tNot as bad, as it's credited to being (Hooper's done far worse) more so disappointing for me. Such an imaginative concept, which is never really tapped in to by Hooper with his economical direction and even less so in the smoky (excuse the pun) writing. It goes so sinister and over-the-top in a dead serious tone, becoming ridiculous and unfocused letting the whole pessimistic mystery / conspiracy-laced narrative being easily telegraphed to end on something completely abrupt. Because of that, the pacing goes on to be rather sluggish and Brad Dourif (cool to see him in a leading role) seems to struggle with an off-balanced performance, despite etching out a bemusedly quirky intensity to his off-colour character. Even though it's cheaply done, there's a competent technical attitude to it. However it doesn't seem to go anywhere out of the ordinary with its idea and wants to plaster in nasty jolts (which some do work) and strikingly steaming special effects (flames, flames everywhere) instead. Hooper does display some stylishly frenetic imagery (more so towards the latter end), and the camera-work is swiftly manoeuvred and the beaming score is titillating. The performances are bit all over the shop with the appearances of William Prince, Cynthia Bain, Dey Young, Jon Cypher and Melinda Dillon. Also Geroge Buck Flower and John Landis have small, but amusing cameos especially Landis. Nothing surprises, but it's passably engaging.\r\n1\tThe planning episodes were a bit dull, but when they reached the desert it was quite fun to watch. The reason why I call it the most realistic reality show is because, much to my surprise,Charley fell out of the race relatively early. When his hands were sore, I expected the usual stress and then a miracle fix, but instead he actually quit the race. The most anxious moment of the show must've been when Max was stuck out in the desert with almost no water or food! The ending was great and I was very happy to see at least one of the team make it. Overall, not as great as the Long Way Round, but definitely an interesting watch, as one gets a peek into the most challenging race in the world.\r\n0\tWell, it's all been said about this movie and I hate it when writing reviews where everyone else already said what's to be said. But the thing is, I have seen zillions of movies and I am working on writing reviews on all the movies that I've seen. So, I have to write something.<br /><br />The acting is stupid. It's truly stupid how the news anchor expresses her sadness towards the plane crash. The nun is nice though and the professional assistant who comes to take care of the child. the three main killings in the movie are just so weak that you wonder how stupid can the makers of this movie be. Don't they realize that even rip-offs can still be scary. We don't see how the granpa is killed. The dentist and his assistant made me feel they deserve to die, you just don't sympathize with them. And uncle tony in the garage dies in a way that could have been worked better. We just hear him scream and we see nothing!\r\n1\t\"The Sopranos is probably the most widely acclaimed TV series ever, so naturally my expectations were through the roof, and yet the show surpassed them. I love the mafia and crime genre in film and I enjoy following the compelling stories set in these worlds, but this is so much more. 86+ hours of material gives the story a chance to not only be one of the most thrilling and unpredictable mafia/action stories, but also to be a great family drama, a shocking character study, a laugh-out-loud comedy, a brilliant psychological examination dealing with the nature of good and evil, and an intellectual arty collaboration of representative dreams and hallucinations all in one. David Chase's epic series manages to accomplish all of this and more, and cements HBO as the closest TV can get to cinematic perfection, paving the road for a number of other series to continue blowing audiences away.<br /><br />Realism is present when it is needed, but Chase's decisions to depart from it for effect on occasion for \"\"dream episodes\"\" and the like only adds more layers to the series. Chase--along with a strong writing staff including Matthew Weiner and Terrence Winter, future creators of Mad Men and Boardwalk Empire respectively--turns New Jersey into an intricate universe full of the greatest cast of characters I've seen on TV.<br /><br />James Gandolfini domineers the show as Tony, one of the most groundbreaking characters on TV ever. Tony adheres to half of the mobster stereotypes from pop culture, but he defies the other half entirely, and through his family interactions and his therapy sessions with Dr. Melfi (Lorraine Bracco, with whom he has a considerable chemistry that ensures that the therapy scenes always have a completely different feel to the rest of the show), we see nearly every side to Tony Soprano and learn that he is more of an everyman than one would expect.<br /><br />Edie Falco matches the power of Gandolfini's performance as Tony's wife Carmela. From her mixed feelings about Tony's lifestyle, to her suspicions about murders, to her torment over Tony's cheating, to her own thoughts about infidelity, Carmela runs the gamut of emotions throughout 6 seasons and Falco makes her the prime vehicle for the non- mafia viewers to have eyes into such a corrupt world. Scenes between Tony and Carmela provide some of the most heartwrenching and painfully realistic drama ever seen on television.<br /><br />The supporting cast is almost as phenomenal, and a wide array of characters populate the cast over all six seasons, somehow without any redundancies. Nancy Marchand steals the show as Tony's overbearing mother Livia, an insight into Tony's personality problems and panic attacks. The familiarity of Marchand's incessant complaints is almost gruesome since she takes the character so believably far. Michael Imperioli is Christopher, Tony's protégé, whose various poor choices lead him down a road that is painful to watch but brilliantly executed. Drea De Matteo plays Christopher's girlfriend Adriana, and is so well- meaning and loving that the dark arc her character takes as she gets too involved with Christopher's career. Tony Sirico is Paulie, introduced as the ultimate mafia stereotype and a source of comic, but eventually he becomes one of the most sympathetic and complex characters on the show, and nobody plays true anger better than he. And that's just the tip of the iceberg.<br /><br />Familiar faces such as Peter Bogdanovich, Jon Favreau, Ben Kingsley, Lauren Bacall, Will Arnett, Nancy Sinatra, David Strathairn, Robert Patrick, Hal Holbrook, Burt Young, and Eric Mangini make appearances over the course of the show, while names as notable as Joe Pantoliano, Steve Buscemi, and Steven Van Zandt have regular roles as main characters in the series. There are 50+ great characters with powerful arcs, and the excitement and tension never let up in any of the various subplots throughout the show.<br /><br />Comedic elements and entire episodes filled with brilliant hilarity dilute the powerhouse dramatic intensity of the series, which is so multipurpose that for one reason or enough, the credits of nearly any episode left me somewhat bewildered. The Sopranos is the most powerful and addicting series I have seen overall, and its highs are so mindblowing that I would have to call it my favourite show in spite of arguable lows (most of which I disagree with).<br /><br />Whether you love or hate the ending, or what you make of it is irrelevant: the discussion it has created is an achievement in itself. The iconic nature of the entire series makes it an essential part of television history. There are multiple elements for anyone to love and marvel at in this show, so if you're thinking of watching something else instead, do yourself a favour and fuhgeddaboutit.\"\r\n1\t\"I must warn you, there are some spoilers in it. But to start it off, I got \"\"Spanish Judges\"\" on February I think. It was mention it was the last copy, but as I see, it wasn't back-ordered. But either way, I have it. I thought it was good. I wanted to see this mainly because of the great actor, Matthew Lillard (I'm surprised no one on the reviews mention the scar) although it is kind of low budget, getting enough money to make this film would be worth spending. Man, what a good actor.<br /><br />The story it about a con artist known as Jack (Matthew Lillard) who \"\"claims\"\" to have merchandises called The Spanish Judges. If you don't know what Spanish Judges are or haven't seen the trailer for this and this is the first review you have read, I won't even say what they are. I figure it would be a big twist of no one knew what it was. He needs protection, so he hires a couple who are also crooks, Max and Jamie (Vincent D'Onofrio and Valeria Golino) as well as a crook that goes by the name of Piece (Mark Boone Junior). He has a girlfriend who won't even tell anyone her name because she's from Mars, as she said. So they (mainly Jack) call her \"\"Mars Girl\"\". Everything starts out fine, but then it turns to one big game. A game that involves some lust, lies and betrayal.<br /><br />There was some over acting in it (Matt and Valeria, as well as Tamara, were not one of them). There were some scenes they could've done better and the score could've been a little better as well. Some of the score was actually good. The theme they used for the beginning and the end (before the credits) was a good song choice, that's my opinion. The fight scene in the end could've been a little longer and a little more violent, but what can you do? One more comment on Matt: Damn, he plays a smooth, slick con man.<br /><br />I know this is a review, but I need to make a correction towards NeCRo, one of the reviewers: Valeria Golino is not a newcomer. According to this site, she has been acting since 1983. To me, and hopefully to others, she is well known as Charlie Sheen's Italian love interest in both the \"\"Hot Shots!\"\" movies. But good review.<br /><br />Although I think it's one of the rare films I've seen and it's really good (which is why I gave it 10 stars above), I will give the grade of what I thought when I first saw it.<br /><br />8/10\"\r\n0\t\"And I mean ultra light. This film features four giant stars, about three and a half jokes and nothing beyond that.<br /><br />There really isn't too much to say about this stinker, other than that although it has a couple of really good bits, most of it isn't very funny. Nor does it work at all as a romance. How about as a romantic comedy? Not on your life. Most of the dialogue is way too flat to be sophisticated, much less amusing.<br /><br />What's really ashame is the premise is not bad at all. This movie could have been so much more, especially with all the recent focus on some of the bogus ways in which films are promoted, complete with phony quotes from critics. The film uncovers the un-mined territory of the press junket -- those all expense paid trips for journalists who almost always write nice reviews. But instead of exploring what should have been a motherlode of jokes, it devotes all of about three minutes to this territory and moves on in pursuit of the film's lame romance.<br /><br />The same with Catherine Zeta-Jones' character -- the whinny, self centered movie star. Zeta-Jones does a good job with what she's given, but she's given practically nothing. It's all homogenized junk that looks very pale in comparison with some of the things we've heard about stars over the years.<br /><br />In the end, it is hard to understand what made Zeta-Jones, Julia Roberts, John Cusack and Billy Crystal sign aboard this doomed ship, which sinks like a rerun of \"\"The Love Boat.\"\" In fact, as the old joke goes, they should have forgotten the script and filmed the deal. It would probably make a better story. So, go ahead and tell us, filmmakers, what do you have on these stars that got them to appear in this?\"\r\n1\t\"This short was nominated for an Academy Award and I wish it had won! Basically a filmed jam session between some very talented musicians, including Lester Young and Joe Jones, the music is incredible! Hollywood quite often embraced Jazz (particularly animation, believe it or not) but this is a rare look on film at an improvisational jam. This has been added to the Film Preservation list and deservedly so. TCM runs this as filler periodically and runs it every March sometime for its' \"\"31 Days of Oscar\"\" tribute. From downtown at the buzzer, swish, nothing but net and the shot's so smooth, the net barely moved. Most solidly and highly recommended!!!\"\r\n1\t\"This one is tough to watch -- as an earlier reviewer says. That is amazing considering the terrible films that came out right after WWII -- particularly the \"\"liberation\"\" of Dachau. It is clear that, as of the middle of the war, we knew exactly what was happening to the Jews. The sequence that shows a \"\"transport\"\" is vivid, almost as if based upon an actual newsreel (the Nazis liked to record their atrocities). Knox as the Nazi is brilliant. He charts the course of a Nazi career. That charting is particularly telling when contrasted with the reactions of other Germans, at first laughing at Hitler, then incredulous, and finally helpless. That contrast, however, permits us to believe in the \"\"conversion\"\" of one young Nazi officer to an anti-Nazi stance. That did happen, as witness the several attempts against Hitler, most notably the Staffenberg plot which occurred as this film was coming out. A strong film, effectively using flashbacks, accurately predicting the Nuremburg trails and others that would occur once the war ended.\"\r\n1\t\"Two dysfunctional brothers (Philip Seymour Hoffman and Ethan Hawke) get tired of competing for who is the bigger f***-up and who Daddy (Albert Finney) loves more, so they hatch a hair-brained scheme to rob Mommy and Daddy's jewelry store so that they can clear their debts and start fresh. Sounds like a great plan except that this is a suspenseful 1970's style melodrama about a heist gone wrong, and boy, do things really go wrong here for our hapless duo and everyone involved. Lasciviously concocted by screenwriter Kelly Masterson and classically executed by director Sidney Lumet, \"\"Before the Devil Knows You're Dead\"\" uses the heist as its McGuffin to delve deep into family drama.<br /><br />Contrary to popular belief, Sidney Lumet is not dead. At age 83, he has apparently made a deal with the Devil to deliver one last great film. Lumet was at his zenith in the 1970's with films like \"\"Dog Day Afternoon,\"\" \"\"Serpico,\"\" and one of my favorite films of all time, \"\"Network\"\". He has somehow managed to make a film that bears all the hallmarks of his classics while intertwining some more modern elements (graphic sexuality, violence, and playing with time-frames and POV's) into a crackling, vibrant, lean, mean, and provocative melodrama. One can only hope that some of the modern greats (like Scorsese or Spielberg) who emerged during the same decade Lumet was at the top of his game will have this much chutzpah left when they reach that age.<br /><br />Lumet is a master at directing people walking through spaces to create tension and develop characters. As the cast waltzes through finely appointed Manhattan offices and apartments his slowly moving camera creates a palpable sense of anxiety as we never know who might be around the next corner or what this person might do in the next room. Also amazing is how Lumet utilizes the multiple POV and shifting time-frame approach. The coherent and classical presentation he uses makes the similarly structured films of wunderkinds Christopher Nolan and Alejandro Gonzalez Inarritu seem like amateur hour.<br /><br />Of course, what Lumet is best at is directing amazing ensemble casts and tricking them into acting within an inch of their lives. Philip Seymour Hoffman has never been, and most likely never will be, better than he is here. Albert Finney's quietly searing portrayal of a father betrayed and at the end of his rope is a masterpiece to watch unfold. Ethan Hawke, normally a nondescript pretty boy, is perfect as the emotionally crippled younger brother who has skated by far too long on his charms and looks. The coup-de-grace, however, is the series of scenes between Hoffman and Marisa Tomei, eerily on point as his flighty trophy wife. Lumet runs them through the gamut of emotions that culminate in a scene that is the best of its kind since William Holden taunted Beatrice Straight right into a Best Supporting Actress Oscar in \"\"Network.\"\" <br /><br />The Devil of any great film is in the details, from Albert Finney's tap of his car's trunk that won't close due to a fender bender, to the look Amy Ryan (fresh off her amazing turn in \"\"Gone Baby Gone\"\") gives her ex-husband Ethan Hawke at his mawkish promise to his little girl all three of them knows he won't keep, to the systematic unraveling of a family on the skids, to the dialog begging for cultists to quote it (my favorite line being the hilariously threatening \"\"Do you mind if I call you Chico?\"\") to the excellent Carter Burwell score. \"\"Before the Devil Knows You're Dead\"\" is the film of the year. If something emerges to best it, then we know a few other deals must've been brokered with Old Scratch.\"\r\n1\t\"Martin Sheen, Michelle Phillips, Stuart Margolin and the late Vic Morrow are the human stars of this movie about a young man looking for answers about his brother's death. Mr. Sheen, Mr. Margolin and Mr. Morrow all turn in first rate performances in their respective roles; Ms. Phillips has the slightly less than enviable task of trying to spice up a made-for-TV movie (twenty-five years ago), by supplying the \"\"sex interest\"\" in an otherwise sexless film. The real star, however, is the \"\"California Kid\"\"; a 1934 Ford coupe, borrowed from \"\"Jake\"\" Jacobs, put before a camera and given a workout that'll leave the viewer panting, gasping and holding the edge of the seat with breathless anticipation.<br /><br />The action scenes are spectacular, (although some of the dialog is a bit lame) making for a fine evening's diversion. This is how all \"\"car movies\"\" should be made.<br /><br />Try to catch this one on the late movie channel; it's well worth the missed sleep.\"\r\n0\t\"Last night I decided to watch the prequel or shall I say the so called prequel to Carlito's Way - \"\"Carlito's Way: Rise to Power (2005)\"\" which went straight to DVD...no wonder .....it completely ...and I mean completely S%&KS !!! waist of time watching it and I think it would be a pure waist of time writing about it.... I don't understand how De Palma agreed on producing this sh#t-fest of a movie....except for only one fact that I tip my hat to... Jay Hernandez who plays the young Brigante.... reminded me how De Niro got into the shoes of Brando to portray the young Don Corleone in Godfather II ...but the difference De Niro was amazing and even got an Oscar for it !!! Jay Hernandez well he has guts for trying to be a young Pacino.... too bad for him I don't think he will be playing in film anymore and by the way after I watched this sh#$%ty movie, I sat down and watched the original Carlitos way to get the bad taste out of my mouth.\"\r\n0\tAn art house maven's dream. Overrated, overpraised, overdone; a pretentious melange that not only did not deserve Best Picture of 1951 on its own merits, it was dwarfed by the competition from the start. Place in the Sun, Detective Story, Streetcar Named Desire, Abbott and Costello Meet the Invisible Man; you name it, if it came out in '51, it's better than this arthouse crapola. The closing ballet is claptrap for the intellectual crowd, out of place and in the wrong movie. Few actors in their time were less capable (at acting) or less charismatic than Kelly and Caron. My #12 Worst of '51 (I saw 201 movies), and among the 5 worst Best Picture Oscar winners.\r\n0\t\"102 DALMATIANS [Walt Disney]: I wasn't a fan of the previous installment and this effort has all the weaknesses of the first, a silly padded storyline, terrible over acting by Glenn Close, who hams up every scene as though she's playing for her own amusement, and incredibly borring and uninteresting lead actors. Once more the dogs are the only \"\"actors\"\" that seem \"\"real\"\" and thats a stretch. Another wasted effort here. GRADE: D\"\r\n1\tVerhoeven's movie was utter and complete garbage. He's a disgusting hack of a director and should be ashamed. By his own admission, he read 2 chapters of the book, got bored, and decided to make the whole thing up from scratch.<br /><br />Heinlein would have NEVER supported that trash if he'd been alive to see it. It basically steals the name, mocks politics of the book (which is a good portion of it), and throws in some T&A so the average idiot American moviegoer doesn't get bored.<br /><br />This anime isn't perfect, but it's at least mostly accurate, as best I can tell.\r\n1\t'The second beginning' as it's title explains, shows us the beginning of the end for the human race. Set long before the matrix existed, this short anime written by the Wachowski's shows us the world that could lay infront of us in the not to distant future, set at the turn of the 21st century, the second renaissance delves into issues common with human behaviour; greed, power, control, vanity etc.<br /><br />The use of robots or artificial intellegence as slaves or servents is common among science fiction/fantasy stories. The second renaissance is no exeption to this concept, however instead of a simple man vs. machine layout, this story explains the struggle that the machines put up with, the struggle for acceptance in a world ruled by humans. Where the matrix films show us the human perspective, these short animations tell both sides of the story.<br /><br />The second renaissance part 1 + 2, answer many questions brought up by the original Matrix film, such as how the war broke out, how the sky was blackend, what led to the use of humans as batteries and it also introduces us to the machine city called 01, which may have relevance to the upcoming Matrix Revolutions film.<br /><br />I won't give away too much of the story, as I do not want to ruin the experience for perspective viewers, however, I will recommend it to anybody interested in the world of the matrix or simply anybody interested in Japanese animation (anime).<br /><br />9/10.\r\n1\t\"How anyone can say this is bad is beyond me. I loved this show before I even saw it. For 3 reasons, 1. The Story intrigued me, 2. Jessica Alba and 3. James Cameron! Please ignore the bad comments and Please watch the whole first Season before you decide that it's bad because I know that if you watch the first Season you will LOVE it and go out and Buy Season 1 as well as Season 2 on DVD and then Join the campaign to get Season 3 Made!<br /><br />I Hate Fox and I'm sure a lot of you \"\"Dark Angel\"\" fans hate them too. They have a thing for Canning Good Shows! Don't you all agree?\"\r\n1\tWell, I thoroughly enjoyed this movie. It was funny and sad and yes, the guy Andie MacDowell shagged was hot. Interesting, realistic characters and plots as well as beautiful scenery. I think my Mum would like it. I still think they should have been allowed to call it the Sad F**kers Club though...\r\n1\t\"Here is a favorite Tom & Jerry cartoon perfect for Halloween. I know it dosen't have much creepiness, but has the 'trick' as in \"\"Trick or Treat,\"\" as Jerry did to Tom with the window blind and the vacuum-cleaner with a collared-shirt hanging on it to make it like a ghost; but still like to put it on my list of Halloween cartoons. In this short, Tom was listening to the \"\"Witching Hour,\"\" a ghost-story program on the radio, and being frightened by the horror story being told. Halfway into the story, the dramatics (hair standing on end, heart leaping into throat, icy chills on spine) begin happening to Tom . . . literally. And Jerry has been observing the whole thing and laughing to himself, thought he highen Tom fears by scaring him.<br /><br />I love the ending, it was a little funny. And you know, This short is the first of four cartoons in which Tom attacks Mammy Two Shoes; the others being The Lonesome Mouse, A Mouse in the House and Nit-Witty Kitty. And also This short is the first of twenty-five cartoons where Tom speaks. The others are The Lonesome Mouse, The Zoot Cat, The Million Dollar Cat, The Bodyguard, Mouse Trouble, The Mouse Comes to Dinner, Quiet Please!, Trap Happy, Solid Serenade, Mouse Cleaning, Texas Tom, Mucho Mouse, and The Cat Above and the Mouse Below directed by Chuck Jones.\"\r\n0\tin this movie, joe pesci slams dunks a basketball. joe pesci...<br /><br />and being consistent, the rest of the script is equally not believable.<br /><br />pesci is a funny guy, which saves this film from sinking int the absolute back of the cellar, but the other roles were pretty bad. the father was a greedy businessman who valued money more than people, which wasn't even well-played. instead of the man being an archetypal villain, he seemed more like an amoral android programmed to make money at all costs. then there's the token piece that is assigned to pesci as a girlfriend or something...i don't even remember...she was that forgettable.<br /><br />anyone who rates this movie above a 5 or 6 is a paid member of some sort of film studio trying to up the reputation of this sunken film, or at least one of those millions of media minions who can't critique efficiently (you know, the people who feel bad if they give anything a mark below 6).<br /><br />stay away...far away. and shame on comedy central, where i saw this film. they usually pick better.\r\n1\t\"Sure, it's a 50's drive-in special, but don't let that fool you. In my little book, there are a number of intelligent touches with unexpected dollops of humor. Catch the redoubtable Mrs. Porter who's supposed to keep an eye on the doc's place. She not only steals the scene, but darn near the whole movie. And where did those indie producers come up with the bucks to film in color, a wise decision, since the blob would not show up well in b&w. Yes, the result is ragged around the edges as the number of goofs illustrate. But except for several of the teens, the non-Hollywood cast performs well. Then too, the byplay among hot-rodders and cops comes across as lively and entertaining. Pretty darn good for a couple of directors more at home in a pulpit than on a sound stage. Apparently, they wanted to portray teens in a positive light at a time when the screen was filled with \"\"juvenile delinquents\"\". Then again, the 27-year old McQueen hardly qualifies in the age department, but manages the hot-rodder attitude anyway. The movie was a hit at the time, helped along, no doubt, by the catchy title tune that got a lot of radio play. And except for the unfortunate final effects, the movie is still a lot of fun, drive-in or no drive-in. Meanwhile, I'm awaiting the blob's return now that the polar icecap is turning into, shall we say, refrigerator water.\"\r\n0\t\"This show was absolutely terrible. For one George isn't funny, and his kids are snobby little brats. He also treats his mother with no respect. As a Hispanic, I am highly offended by this show and the way the characters are portrayed.<br /><br />Plus the dysfunctional family thing's been done to death. For once, I want to see something original. What makes this show funny when other shows have done it millions of times? I thought ABC would come to its senses and pull this piece of garbage off the air, but sadly, we're going to have to stomach this until they \"\"jump the shark\"\".<br /><br />In my opinion, they already did.\"\r\n1\tThis will be a different kind of review. I've seen this movie twice on TV and would like to have a copy because it talks about Panama City and the beach in the winter time which is my favorite time to be there. It was the first movie I'd seen by Ashley Judd and she was great and I've enjoyed every other thing I've seen her in. Sundance's reaction made an impression on me too, as did the director, Victor Nunez, who has directed and written several movies about Florida. This movie speaks to me and I've seen nothing with which to compare it. The plot speaks less to me than the surroundings. Well, I told you it would be a different kind of review.\r\n0\t\"This movie made me very angry. I wanted desperately to throttle the \"\"scientists\"\" and unseen film-makers during the course of it. Very, very painful to sit through. Sophomoric and pretentious in the worst way. The little good information on brain function/chemistry and quantum theory is lost in a sea of new agey horse sh*t. The worst offenders were the crack-pot charlatans Ramtha and Joseph Dispenza. Mr. Dispenza informs us that most people lead lives of mediocrity and clearly implies that he, on the other hand, is living on a higher plane. Even the ideas and attitudes that I basically agree with are presented in such a heavy handed, clumsy, superior, pretentious, preachy manner that I felt the desire to disavow them. I think that's what made me so angry, the fact that they've taken what are indeed profound aspects of established scientific thought and marred them with their new age hokum. Much of it is based around the fallacy of applying concepts of quantum theory to the macro world. Fittingly, the dramatized portions with Marlee Matlin are amateurish and cliché ridden.<br /><br />I would refer people instead to Bill Bryson's excellent survey of science: \"\"A Brief History of Nearly Everything.\"\" There's plenty of profound wonder about life and the universe in the actual, established science.\"\r\n1\tI saw the last five or ten minutes of this film back in 1998 or 1999 one night when I was channel-surfing before going to bed, and really liked what I saw. Since then I've been on the lookout, scouring TV listings, flipping through DVD/VHS racks at stores, but didn't find a copy until recently when I found out some Internet stores sold it. Then, being a world-class procrastinator, I still didn't order it. Finally, I found a DVD copy in a Circuit City while visiting Portland, OR, a few weeks ago. Then it only took me about a month after returning home before sitting down and watching it.<br /><br />So, what do I think about the film? It's good. Not as good as I remembered and hoped for, but still well worth the $9.99 it cost me. After seeing the whole film for the first time I rate it as a 7/10, with potential to become an 8/10. I'll have to be less sleepy then, and have a better sound system to avoid rewinding to catch some dialogue.\r\n0\t\"This has to be the most brutally unfunny \"\"comedy\"\" I've ever seen in my life. Ben Stiller, Jack Black, and Christopher Walken as a crazed homeless man CAN'T make me laugh? Something's got to be wrong with this picture. This is the only movie I've ever felt like walking out of. I used free passes, and still felt like I wanted my money back. I can wholeheartedly say that the only movie I've ever seen worse than this one was HOUSE OF THE DEAD. The. ONLY. worse. movie. I laughed very slightly at the merry-go-round scene, and that's it. Spending 2 hours in something billed as a comedy should get you more than one laugh, right? I don't know, I guess the filmmakers thought that \"\"flan\"\" was a funny word, or something. And the other running joke really is beating a dead horse--literally.\"\r\n0\t\"I think its pretty safe to say that this is the worst film ever made, When I saw the trailer on TV i knew right from second 1 that this would be a piece of **** and it would be best to avoid it, but I somehow got dragged into seeing this by some friends, I walked into the cinema with low expectations but i was hoping there would be a couple of cheap laughs to keep me awake during this film. The so-called \"\"jokes\"\" in this film bring a cringe to the face, they are mostly comprised of people taking hits to the face and balls, the baby looking weird and acting like a horny gangsta and the typical race jokes we see so often in todays garbage comedies. The film is obvious and the story is not only impossible to believe but also predictable and dull. The characters are extremely annoying and heavily stereotyped. I never want to have to see this **** film again, I'd rather take a bullet to the foot than be exposed to this piece of fuckwood ever again. If anyone I see says they liked it i will physically punch them in the face\"\r\n0\t\"This \"\"clever\"\" film was originally a Japanese film. And while I assume that original film was pretty bad, it was made a good bit worse when American-International Films hacked the film to pieces and inserted American-made segments to fool the audience. Now unless your audience is made of total idiots, it becomes painfully obvious that this was done--and done with little finesse or care about the final product. The bottom line is that you have a lot of clearly Japanese scenes and then clearly American scenes where the film looks quite different. Plus, the American scenes really are meaningless and consist of two different groups of people at meetings just talking about Gamera--the evil flying turtle! And although this is a fire-breathing, flying and destructive monster, there is practically no energy because I assume the actors were just embarrassed by being in this wretched film--in particular, film veterans Brian Donlevy and Albert Dekker. They both just looked tired and ill-at-ease for being there.<br /><br />Now as for the monster, it's not quite the standard Godzilla-like creature. Seeing a giant fanged turtle retract his head and limbs and begin spinning through the air like a missile is hilarious. On the other hand, the crappy model planes, destructible balsa buildings and power plant are, as usual, in this film and come as no surprise. Plus an odd Japanese monster movie cliché is included that will frankly annoy most non-Japanese audience members, and that is the \"\"adorable and precocious little boy who loves the monster and believes in him\"\". Yeah, right. Well, just like in GODZILLA VERSUS THE SMOG MONSTER and several other films, you've got this annoying creep cheering on the monster, though unlike later incarnations of Godzilla, Gamera is NOT a good guy and it turns out in the end the kid is just an idiot! Silly, exceptional poor special effects that could be done better by the average seven year-old, bad acting, meaningless American clips and occasionally horrid voice dubbing make this a wretched film. Oddly, while most will surely hate this film (and that stupid kid), there is a small and very vocal minority that love these films and compare them to Bergman and Kurosawa. Don't believe them--this IS a terrible film!<br /><br />FYI--Apparently due to his terrific stage presence, Gamera was featured in several more films in the 60s as well as some recent incarnations. None of these change the central fact that he is a fire-breathing flying turtle or that the movies are really, really lame.\"\r\n1\t\"This movie was so great! I am a teenager, and I and my friends all love the series, so it just goes to show that these movies draw attention to all age crowds. I recommend it to everyone. My favorite line in this movie is when Logan Bartholomew says: \"\"rosy cheeks\"\", when he is talking about his baby daughter. He is such a great actor, as well as Erin Cottrell. They pair up so well, and have such a great chemistry! I really hope that they can work again together. They are such attractive people, and are very good actors. I have finally found movies that are good to watch. Lately it has been hard for me to find movies that are good, and show good morals, and Christian values. But at the same time, these movies aren't cheesy.\"\r\n1\t\"I have always had the philosophy that every single human being has different tastes, i found this movie to be awesome and i think every college student out there might agree with me. Notwithstanding this is not a \"\"movie with a plot\"\", its about real guys and some of the \"\"problems\"\" that they face. I found the movie hilarious(especially the parts that they played the practical jokes on each other). Simply put, if you are in the same \"\"wave-length\"\" as these people, you will find this movie amazing. I don't think that this is going win any Golden Globes or Oscars, or that the people in this movie will become future Hollywood stars, but its a kind of \"\"cult-classic\"\" among young people who could relate to their experience. For me the guy that stands out the most is Hans: the Scandinavian guy,who ,according to him \"\"isnt a looker\"\", but gets all(or some) of the chicks. The \"\"little-people\"\" also play a big part in the movie, especially when they are drunk. If i keep going, i might provide a spoiler and i don't want to do that, just go and get the movie and you will not regret. I give it a 8/10\"\r\n0\tStefan is an x-con that five years ago got married to Marie. Their marriage has been stable until Stefan past catch up with them and he's offered to do a courier job. Stefan's job is a heroin delivery from Germany to Sweden which should go easily.<br /><br />In Germany Stefan meet Elli, a girl from Bosnia that has been sold to a stripclub owner. Stefan dislikes what he sees and decide to help Elli out of her misery. Due to the fact that Elli's father during the war fleed to Sweden Elli now goes with Stefan to Sweden. To make up with the past Stefan promises Elli to help her find her father, no matter what it takes. Finally back in Sweden the whole situation seems to be more complicated than Stefan ever thought of..<br /><br />This movie doesn't seem to fit in the ordinary class of swedish movies due to the fact that it's been americanized alot. Regina Lund and Cecilia Bergqvist makes it all average, the effects makes the movie a little too much though. See it and jugde for yourself.<br /><br />\r\n0\tPOSSIBLE SPOILERS<br /><br />The Spy Who Shagged Me is a muchly overrated and over-hyped sequel. International Man of Mystery came straight out of the blue. It was a lone star that few people had heard of. But it was stunningly original, had sophisticated humour and ample humour, always kept in good taste, and had a brilliant cast. The Spy Who Shagged Me was a lot more commercially advertised and hyped about.<br /><br />OK I'll admit, the first time I saw this film I thought it was very funny, but it's only after watching it two or three times that you see all the flaws. The acting was OK, but Heather Graham cannot act. Her performance didn't seem very convincing and she wasn't near as good as Liz Hurley was in the first one. Those characters who bloomed in the first one, (Scott Evil, Number 2 etc.) are thrown into the background hear and don't get many stand-alone scenes. The film is simply overrun with cameos.<br /><br />In particular, I hated the way they totally disregarded some of the scenes in IMOM. When they killed off Vanessa at the start and had Basil sat that he knew she was a fembot all along. What was the point of that? They killed off Number 2 in the first one, and now they bring him back with no explanation whatsoever. This is supposed to be a spy-spoof, I don't think any of the characters even hold a gun in the film. It just goes on a trail, further and further away from the point.<br /><br />The new characters are very unwelcome. The whole Mini-Me `make fun of my size' joke gets old very quickly. Fat Bastard is just a lame excuse for gross-out humour. In total there's about two or three good jokes. The rest are either tasteless or rehashed from IMOM.<br /><br />If this were the first movie of the series then I'd probably be easier on it. But the series started on a note of dry wit and then plummeted down to a level of gross out humour. So I say, only watch this film if you haven't seen its predecessor, because The Spy Who Shagged Me is one ultimate disappointment.\r\n1\t\"Preminger's adaptation of G. B. Shaw's ''Saint Joan''(screenplay by Graham Greene) received one of the worst critical reactions in it's day. It was vilified by the pseudo-elite, the purists and the audiences was unresponsive to a film that lacked the piety and glamour expected of a historical pageant. As in ''Peeping Tom'', the reaction was malicious and unjustified. Preminger's adaptation of Shaw's intellectual exploration of the effects and actions surrounding Joan of Arc(her actual name in her own language is Jeanne d'Arc but this film is in English) is totally faithful to the spirit of the original play, not only on the literal emotional level but formally too. His film is a Brechtian examination of the functioning of institutions, the division within and without of various factions all wanting to seize power. As such we are not allowed to identify on an emotional level with any of the characters, including Joan herself.<br /><br />As played by Jean Seberg(whose subsequent life offers a eerie parallel to her role here), she is presented as an innocent, a figure of purity whose very actions and presence reveals the corruption and emptiness in everyone. As such Seberg plays her as both Saint and Madwoman. Her own lack of experience as an actress when she made this film(which does show up in spots) conveys the freshness and youth of Jeanne revealing both the fact that Jeanne la Pucelle is a humble illiterate peasant girl who strode out to protect her village and her natural intelligence. By no means did she deserve the harsh criticism that she got on the film's first release, it's a performance far beyond the ken and call of any first-time actress with no prior acting experience. Shaw and Preminger took a secular view towards Joan seeing her as a medieval era feminist, not content with being a rustic daughter who's fate is to be married away or a whore picked up by soldiers to and away from battlefields. Her faith, her voices, her visions which she intermingles with words such as \"\"imagination\"\" and \"\"common sense\"\" leads her to wear the armour of her fellow soldiers to lead them to battle to chase the invading Englishman out of France.<br /><br />And yet it can be said that the film is more interested in the court of the Dauphin(Richard Widmark), the office of the clergy who try Joan led by Pierre Cauchon(Anton Walbrook, impeccably cast) and the actions of the Earl of Warwick(John Gielgud) then in Joan herself. The superb ensemble cast(all male) portray figures of scheming, Machievellian(although the story precedes Niccolo) opportunists who treat religion as a childish toy to be used and manipulated for their own ends. The sharp sardonic dialogue gives the actors great fun to let loose. John Gielgud as the eminently rational Earl whose intelligence,(albeit accompanied by corruption), allows him to calculate the precise manner in which he can ensure Joan gets burnt at the stake and Anton Walbrook's Pierre Cauchon brings a three dimensional portrait to this intelligent theologian who will give Joan the fair trial that will certainly find her guilty. Richard Widmark as the Dauphin is a real revelation. As against-type a casting choice you'll ever find, Widmark portrays the weak future ruler of France in a frenzied, comic caricature that's as close as this film comes to comic relief. A comic performance that feels like an imitation of Jerry Lewis far more than an impetuous future ruler of France.<br /><br />Preminger shot ''Saint Joan'' in black and white, the cinematographer is Georges Perinal who worked with Rene Clair and who did ''The Life and Death of Colonel Blimp'' in colour. It's perfectly restrained to emphasize the rational intellectual atmosphere for this film. Preminger's preference for tracking shots of long uninterrupted takes is key to the effectiveness of the film, there's no sense of a wasted movement anywhere in his mise-en-scene.<br /><br />It also marks the direction of Preminger's most mature(and most neglected period) his focus is on the conflict between individuals and the institutions in which they work, how the institution function and how the individual acts as per his principles. These themes get their most direct treatment in his film and as always he keeps things unpredictable and finds no black and white answers. This is one of his very best and most effective films.\"\r\n0\t\"When a friend gave me a boxed set of \"\"12 Amazing Scifi/Horror Movies!\"\" I was understandably a little cautious. But, since the item was a gift, I really didn't truly pay my common sense much heed. After all....movies for free! So what if they are a little ropey. After much consideration, Alien Intruder was the first of those movies. Ironically, it was first choice because it looked the best of the bunch. All I can say is, if this is the best of them, I shudder to think what the rest are like.<br /><br />On the surface, it had some good things going for it. Four (count 'em!) actors that I was familiar with. Billy Dee Williams, Tracy Scoggins, Maxwell Caulfield and Jeff Conaway. I told myself...\"\"Billy and Tracy have been in some good scifi (Star Wars and Babylon 5, respectively) so they wouldn't sign up for a turkey. Max is a veteran soap actor who never really managed to break into film....but not too shoddy an actor. An Jeff....well...he's done the good and the bad as far as films and TV go.\"\" I was soon to discover that Jeff had decided to add \"\"the ugly\"\" to his repertoire of movies.<br /><br />The first clue was in the opening scenes. Jeff mugs his way with gusto through an \"\"I'm mad\"\" scene before finally killing himself. An amusing cameo performance, really. Unfortunately this is, without much exaggeration, the highlight of the film. It goes downhill from there.<br /><br />Next up we have the commander of the mission (Williams) who is being sent out to see what happened to Jeff and his crew busy picking his new shipmates from among the ranks of the criminal element. But this assortment aren't so much the Dirty Dozen - more like the Unconvincing Foursome. Plus, one of the crims, a computer hacker, is shown in his cell working away on a laptop computer. Isn't that a bit like letting a murderer run a gun shop in the slammer? Pretty lame prison, if you ask me.<br /><br />When they finally take off the effects are truly horrible. It looks like the spaceship model was knocked up in an afternoon by some bored 8 year old who had parts left over from his Airfix kits.<br /><br />But the horror doesn't stop there. Whilst on route to the area where Jeff's ship vanished, the criminal crew are rewarded for their good behaviour by being given weekends of virtual reality, in which they indulge their male fantasies. All well and good, and the use of scenes from their fantasies serves as an introduction to the \"\"Alien Menace\"\" which begins to appear there. But did they have to drag it out for quite sooooo loooooong? Alien Intruder? Alien Boring, more like.<br /><br />Finally they make it to G-Sector and the alien presence makes them fight against each other for her affections until only good old Max is left. The ending, in truly optimistic rubbish film vein, hints at a sequel - as if! Also making an appearance in this movie is a character I'll nickname the \"\"Sweatdroid\"\". He's supposed to be an android, but apparently that fact was lost on the make-up crew, who provided him with sweaty features at any opportunity. But don't worry, he's just there to make up the body count numbers at the end.<br /><br />Williams and Scoggins, to be truthful, do very little in the film. They only just barely stay awake, let alone act. And, as I mentioned earlier, Jeff gets an early trip to the showers, so his manicness isn't allowed to enlighten much of the film. Max tries his best, as do a couple of the other cast members, but the movie is just direly atrocious, to be honest.<br /><br />The one, and only, half-way imaginative thing this movie offers is the ship naming convention. They are all named after musicians - Holly, Presley, Joplin. The rest of the film is bland and uninspired.<br /><br />Made in 1992, I had thought, on initial viewing, it was one of those 80's straight-to-video jobs. Looks like they still made crap movies well into the 90's, it seems.<br /><br />It's best avoided. Even as a beer n chips movie this film is a stinker, but at least you can fast forward it, I suppose.\"\r\n1\tIf you went to this movie to see some huge academy award presentation...oh well..but if you wanted to see a funny delightful adaptation of an old classic, you will love it..Jim Carey was incredible as usual. The story line was great, a few parts added like the history of the Grinch made it even better. Ron Howard never misses a beat..But although there were a few ADULT comments and cleavage added, this is supped to be a kids or family show. Try not to lose sight of that ..if you do you really wont enjoy the movie...and as for the comments about Ron Howard, try to direct a major motion picture and see how you do..its not easy as it looks ...\r\n1\t\"It's so rare to find a literary work adequately translated to the screen that I may have rated this film higher than it deserves, but not by much. As a long-time student of Vonnegut's works, I have no hesitation in recommending the film to his readers, at least to those that love him as I do. The casting is inspired: Nolte is understated in triumph, bewildered in defeat, decisive in judgment. Sheryl Lee is luscious throughout, but her handling of the treacherous Resi and her tragic crescendo almost makes you forget her beauty. Alan Arkin delivers a totally lovable, but equally treacherous, Soviet spy.<br /><br />Do not feel you have to read Mother Night to appreciate the film; though, if you haven't read Mother Night, you will probably want to after viewing the film.<br /><br />Notice the shifts from color to black-and-white and back again, and don't miss the final symbolism of Campbell's noose. Watch, also, for Kurt Vonnegut's cameo near the end of the film.<br /><br />Bing Crosby's \"\"White Christmas\"\" will never sound the same (I write in mid-December, when the song is getting heavy radio play, and it's driving me nuts).\"\r\n0\tI'd heard about this movie a while ago from a friend and she recently got it on DVD. There was a lot of anticipation and excitement as we'd both heard that this was a terrifying film, really scary. How disappointed was I?? VERY!!!! Apart from that one scene (we all know which bit) NOTHING happened!!! I was expecting to see the woman in black a few times and for her to do a few more jumpy scenes, like appear at the window or walk across the hall or something.<br /><br />Nearly all the reviews here say what a scary, gripping, atmospheric movie this is. I just didn't see it I'm afraid. Maybe there's a difference in what people find scary in the US to here in Britain.<br /><br />A big let down after all the hyped reviews :(\r\n1\tThese are one of the movies that don't require any brain or thinking, it's a very funny time pass which you forgot in the next hour or so. I was really surprised with John Abraham's acting he usually playing the gangster like character with the emotionless face,so from that to playing the complete opposite and does it successfully,by managing to shine amongst the comic geniuses such as Paresh Rawal and Akshaye Kumar. I was also quite surprised with the Akshaye's 3 girls because there roles don't require much talent but mostly moaning about Akshaye's dissapearence(to the other girls) i was surprised as they managed to establish and actual persona and you could differentiate between them which is a good thing ,also majority of songs are good,it is colourful and fun so on a boring Sunday evening this will sure lighten your mood.\r\n0\t\"From the blocky digitised footage to the acting that makes Keanu \"\"I'm so wooden I could be a Plank me\"\" Reeves look like an Oscar winner this film bites (pun not intended). The best thing about it is the box of eRATicate in the 2nd segment (which out of the three seemed to be the strongest piece in terms of storyline and 'twist'). Wish I'd spent the £3.99 it cost me on something else, like erm.... Natural Born Killers: Directors Cut. If you do buy this, you're really in for a disappointment, do yourself a favour and avoid it like the plague. If you're looking for something amateurish and with actors that are more wooden than a 2x4 then go ahead. However if you want some quality werewolf action look elsewhere, like Dog Soldiers, Wolfen, Romasanta:The werewolf Hunt.\"\r\n0\t\"George P. Cosmatos' \"\"Rambo: First Blood Part II\"\" is pure wish-fulfillment. The United States clearly didn't win the war in Vietnam. They caused damage to this country beyond the imaginable and this movie continues the fairy story of the oh-so innocent soldiers. The only bad guys were the leaders of the nation, who made this war happen. The character of Rambo is perfect to notice this. He is extremely patriotic, bemoans that US-Americans didn't appreciate and celebrate the achievements of the single soldier, but has nothing but distrust for leading officers and politicians. Like every film that defends the war (e.g. \"\"We Were Soldiers\"\") also this one avoids the need to give a comprehensible reason for the engagement in South Asia. And for that matter also the reason for every single US-American soldier that was there. Instead, Rambo gets to take revenge for the wounds of a whole nation. It would have been better to work on how to deal with the memories, rather than suppressing them. \"\"Do we get to win this time?\"\" Yes, you do.\"\r\n0\t\"This movie had so much potential. Anyone who followed the story of Jeffrey knows that there are so many details overlooked in this movie it's ridiculous. Too much time and effort was spent in the movie on Dahmer's homosexual tendencies and his alcohol consumption. Where was the character development? The origins of any villain are always interesting and Dahmer was no exception. Where in the movie does it address his adolescence when he began killing and mutilating small animals? Instead we are giving a dizzying array of flashbacks that seek to explain the origin of the killer, but fail to address the major point in Dahmer's development. Also, the reason why the country became so intrigued with this story was the details - how he stored the bodies in his apartment and the lengths and measures he went to to accomplish this; his cannibalism and his desire for flesh, etc. I could go on, but to sum up, too many lagging points in the film, focused on his sexuality and not enough of the gore - the good stuff you would expect to see when the title of the movie is \"\"Dahmer.\"\"\"\r\n0\tHaving watched 10 minutes of this movie I was bewildered, having watched 30 minutes my toes were curling - I simply couldn't believe it: The movie is really awful. In fact it is so awful, that I had to watch all of it just to be convinced(!). During this, I came to realize that it reminded me of a bunch of Danish so-called comedies from the 60's and 70's. The pattern is as follows: Take one extremely popular comedian, make a script putting this comedian in as many grotesque situations as possible, add a bunch of jokes (especially one-liners), and spice it up with a couple of beautiful young girls - film that, and you have a success! I wouldn't know if this movie was a success, but unlike the Danish tradition which died quietly (with a few great comedians) it seems that there is a market for this kind of movie in the US.\r\n1\tCare Bears Movie 2: A New Generation isn't at all a bad movie. In fact, I like it very much. Yes I admit the dialogue is corny and the story is a bit poorly told at times. But Darkheart, while very very dark is a convincing enough shape shifting villain, and Hadley Kay did a superb job voicing him. Speaking of the voice acting, it was great, nothing wrong with it whatsoever. The animation is colourful, and some of the visuals particularly at the beginning were breathtaking. The songs and score are lovely, especially Growing Up and Forever Young, the latter has always been my personal favourite of the two. The care bears, who I do like, are adorable, and the human children are well done too. And the ending is a real tearjerker. All in all, harmless kiddie fun. 8/10 Bethany Cox\r\n0\t\"I gave this loooooooooooong film a \"\"2\"\" because of the attractive actors and semi-sexy love scenes. Otherwise, if you can't read like a speed-reader you will NEVER get through the subtitles that try to keep up with the Spanish speed talking! And, what the hell is going on in the plot if you can't read the subtitles. Endless stares and goof-eyes and constant rejection. Just boring after an hour or so. Some good cinematography but also some so DARK you think your screen has burned out. How this won anything I will never understand. Difficult to talk about \"\"ACTING\"\" since the lead actors seem to just stare and look lovingly at each other when they are not pushing each other away. The character Geraldo is so attractive that it is difficult to believe that ANYONE would push him away. And what is with his mother? I just plain didn't GET IT most of the time except that there were three guys that all seem to have had a history with each other....but never figured out who was whose \"\"EX.\"\"\"\r\n0\t\"A bad rip-off attempt on \"\"Seven\"\", complete with sub-second-grade acting, awful camera work, half-baked story and strong aftertaste of lame propaganda. Yeah, them \"\"sex offenders\"\", they live next door and you're gonna get raped, really.<br /><br />No surprises from the vice-terminatrix woman, she acts as always -- as convincingly as a piece of wood. Richard Gere keeps on sliding lower and lower -- and is about as low here as a late Steven Seagal.<br /><br />The singer woman with the crazy eyes is best when she's dead in bed; and even the wolf was sub-par (although she was the best performer in the movie) -- maybe they fed her before the shots, or something.<br /><br />Unlike \"\"Seven\"\", which had a (made up, but interesting) story, to which one could relate more or less regardless of the country, this movie seems to focus on a US-only obsession. If one doesn't care much about \"\"sex offenders\"\" -- and the statistics are that lack of exercise and bad diet cause more pain, suffering and death -- there is little reason to see it, or to be afraid.<br /><br />There are some body part fetishes and some snuff, but the gore is less then mediocre, and fails both as artistic device (because it is pointless) and as gore, because it is not gory enough.<br /><br />Don't waste time on this one.\"\r\n0\t\"OK ...I watch a lot of bad movies. I pride myself on that fact. many times there are some gems in the B rated bombs. But this movie is one of the worst I have watched. I like a good horror movie...but one with a plot of and sense of movement. The opening scenes seemed pretty good. Decent music and imagery. Then it goes down hill from there. One of the main characters has a disability (Ringing in the Ears called Tinnitus). Now this will in turn threaten to reveal his secret. They made that too much of a focus of the movie. So what he has ringing in his ears and accidentally left an ear plug somewhere where that he shouldn't have been. No need to keep bringing it up. So this guy is having an affair with this girl and in a motel she falls and hits her head on the end table. So instead of letting everyone know of his affair he decides to dump the body. Now her twin sister is trying to find out where she is and what happened to her. Well after seeing her sister over and over again (as a zombie like ghost) and even pointing directly to the location of the body she finally finds her. Now the body is recovered and she is set out to deal with the one and only suspect that killed her. Bad thing is that she didn't have much of a plan. Only to pretend to be her twin and met the guy where the body was dumped. The idiot didn't even believe he killed her. So all is revealed there and even though she had a gun....somehow she manages to get herself strangled. So the last scenes of the movie are of the \"\"spirits\"\" of her and her twin walking out of the water. So you mean to tell me in this movie the bad guy wins. And not one but two innocent people die.<br /><br />Good things about the movie: imagery <br /><br />Bad things about the movie: music sound effects long and drawn out misdirection of plot low grade acting from some not all actors\"\r\n1\tGreat fun. I went with 8 friends to a sneak preview viewing of this film. We came to see different one but after 10 minutes wondering what the heck we got ourselves into this time the jokes became funny and they stayed funny throughout the movie. In the first part you just keep asking yourself about this 'malinski' and 'bellini' stuff (there are many more examples of this lingo) and because they keep repeating the same jokes (with different twists) they get funnier and funnier. In search for this malinski all the main characters are introduced the first one even wackier than the next. Until half of the film was over we didn't even know the name of this movie because there were no opening credits and we went to this sneak viewing, but we sure had a good time. The house was loaded (appr. 250 people) and I think about half of them didn't like it and the other half loved the film. If you like weird comical movies with great dialogue you will love it. Apart from Clooney This movie deserves a lot better than the 5.6 IMDB rating it has at the time I write this, but when more ppl have seen it I am sure it will go up. 7.0 is reasonable I guess, I would give it an 8 out of 10. (10 out of 10 after a few beers)<br /><br />\r\n0\t\"Okay this is stupid,they say their not making another Nightmare film,that this is the \"\"last\"\" one...And what do they do?They go on making another one,not that the next one (part7) was BAD,but why do they play us. Anyway this movie made no sense what-so ever,it was extremelly dull,the characters were highly one dimensional,Freddy was another joker,which is very stupid for such a good series.The plot is very,very bad,and this is even worse than part 2 and 5. I didnt get the movie,its a stupid tale in 3-d,pointless!Id say. I hated this film so much i still rmember all the parts i didnt like which was basically the whole film.This is SO different than the prequels,it tries,and tries,but this one tried the hardest,and got slapped back on the face.Again there were hadly any death scenes,although they were different,they sucked bigtime. How can they have gone this far?Didnt they see they made the biggest mistakes at parts 2 and 5?Yet they make this?Its all bout the money,DO NOT SEE THIS SAD EXCUSE FOR A NIGHTMARE SERIES.<br /><br />I GAVE A NIGHTMARE ON ELM STREET SIX (6) 3 out of 10.<br /><br />GOOD POINTS OF MOVIE: Had potential with plot.<br /><br />BAD POINTS OF FILM: Terrible acting/lack of deaths/Too funny to be classified as horror/very confusing.\"\r\n0\t\"I watched this movie on march 21 this year.Must say disappointment.But much better than \"\"Tridev\"\".Plot is hackneyed.Tells about Prabhat who lives with his father,Wife and his little brother.The movie opens when he saves a bride.Anyway.Azghar Jhurhad makes a plot to kill his young brother.He makes a plan by sending few man.They come to a school pretended to be Prabhats friends.Kill that kid.His father throws him out of the house.Then later comes back.He and Aakash go to Kenya to find him.Sunny gives a good performance,Chunky was annoying at best,Naseerdun is wasted.Divya did good,Sonam was wasted,Jyotsna was wasted but looked cute.The kid which played Sunnys brother in the movie was cute.Too sad he had to get his character killed.The girl was cute but was annoying.The other kid did good.Alok did good.Kiran was adequate.Amrish and Gulshan did good.The cinematography is excellent in both India and Kenya.Script is weak but has a few good dialogs.Also drags .The movie.The music was alright.I only liked one song\"\"Saat Samundar\"\" the lyrics of that song was good.The other songs were forgettable.Don't watch this. Rating-3/10\"\r\n1\tBelieve it or not, Inspector Gadget's Last Case is what got me hooked on the whole Gadget thing.<br /><br />My name is Miriam and I am twelve years old, so obviously I wasn't around when Inspector Gadget was at the top of his career. Sure, I'd heard of him, but I didn't really know him.<br /><br />While reading, note that I NEVER SAW THE ORIGINAL SERIES (I would if it came on!). This is just about the only Gadget thing I've ever watched (even though I am now obsessed) and I will be focusing on what I liked about it since everyone else is so negative. For all you pessimists, I've got some cons down there, too. =P First off, for a childish sense of humor, you could deem this movie pretty funny. I thought it was, so sue me. I also thought the animation and character designs were good, and I'm also happy there was more Gadget in it, since he's my favorite character. (I do NOT like Penny.) Then there was Claw (his voice was awful, though) and the Madcat; I thought they were done fairly good too. Gadget's idiocy seemed pretty well in place, if not a bit exaggerated (i.e. sucking his hat-hand thing's thumb. Would make a good screen shot, though. =P) Oh, and I liked the song that ran in the credits. Yes, I am strange.<br /><br />And, like all movies, there are some negatives, too.<br /><br />Talking cars? What's up with that? You can tell this was aimed at younger boys. That wouldn't bother me quite so much if there wasn't the fact that the cars basically saved the day. I would have much preferred if Penny and Brain had taken their place. And, apparently, Gadget loved his car more than would be called natural. A bit weird, to say the least.<br /><br />Oh, and the Chief was downright mean to Gadget. I mean, sheesh, yeah, he wasn't always the most cheerful of people, but he didn't HATE Gadget, from what I've read. Like the Inspector, his personality was exaggerated.<br /><br />Well, that's pretty much all I have to say about this movie. I thought the animation made up for the car-centered plot and that it was overall pretty decent; more so than the live-action Gadget films (butchered, butchered, BUTCHERED!) at least. Maybe I'm just biased because this is what got me into Gadget in the first place, or maybe my mind is twisted, or maybe I'm just odd, but I really liked this movie, even if I'm the oldest it's recommended for.\r\n0\t\"In 1993, \"\"the visitors\"\" was an enormous hit in France. So, the sequence was inevitable and unfortunately, this sequence ranks among the worst ones ever made. <br /><br />This is a movie that doesn't keep its promises. Indeed, it's supposed to tell a sole story. Jean Reno must go in the twentieth century and take Christian Clavier back in the Middle Ages so that time can normally follow its course. The problem is that Clavier feels completely at ease in the world of the twentieth century, and so make him get back in the Middles Ages is rather hard... Instead of this, the movie goes on several other stories without succeeding in following the main plot. As a consequence, the movie becomes sometimes muddle-headed, sometimes a bit of a mess.<br /><br />But the movie also suffers from the performance of nearly all the actors. Reno and Clavier fall into the trap that however they could avoid in the first movie: they're going over the top and become annoying. Then, why did Jean-Marie Poiré the film-maker engage Muriel Robin in the female main role? He made a mistake because she seems ill-at-ease and is absolutely pitiful. The other actors aren't better: Marie-Anne Chazel is nonexistent and Christian Bujeau, unbearable.<br /><br /> Of course, the movie contains a few good moments with efficient gags but it often falls into vulgarity and easiness. Certain sequences and dialogs are affected. It also appears hollow because Poiré takes back elements that secured the success of the first movie. Thus, a young girl takes Reno for a close relative of her family and asks him to take part in her wedding.<br /><br />A labored and disappointing follow-up. Anyway, what's the interest of this movie otherwise commercial?<br /><br />\"\r\n0\tI tried to watch this movie twice and both times I still couldn't make it to the end credits. First time I managed to sit through the first fight sequence then lost interest. Second time I managed to force myself to digest over an hours worth of shoddy acting, lame SFX and extremely poor direction. Pales in comparison to the original.<br /><br />Anyone ever hear about the old ET Atari 2600 fiasco? For those who haven't let me fill you in. It's 1982...ET is one of the biggest box office smashes of all time...Atari decides to release a movie tie-in game on their 2600 home console system. To cut a long and financially painful story short the game flopped big time and resulted in thousands upon thousands of Atari 2600 ET games to be dumped in landfills because they couldn't even give them away let alone sell them.<br /><br />What does Universal Soldier: The Return have to do with this story? Look at the 3.2 rating and figure it out for yourself.<br /><br />Awful film...IMDb forced me to give it a 1 out of 10 because their rating systems doesn't go as low as 0 let alone into the negatives.\r\n1\tIt's a strange thing to see a film where some scenes work rather weakly (if only in comparison to other films in its legacy), and others in a 'sub-plot' or supporting story are surprisingly provocative and strong. Sudden Impact is one of those cases, where Clint Eastwood as star/producer/director shows when he can be at his best, or at his lessor of times when dealing with a crime/mystery/detective story in his Dirty Harry fame. We get that 'make my day' line, and un-like in the first film where his 'do I feel lucky' speech was playful and cool the first time and the second time at the end tough as nails, here it's switched around. He gets into another shamble with the department, as usual, when he tries to fight crime 'his' way, in particular with a diner robbery (inspiration for Pulp Fiction?) and with a high speed pursuit with a senior citizen bus. He's told to 'take a vacation', and that's the last thing on his mind. This whole main plot isn't very convincing aside from the expectancy of the story and lines, which just adds to the frustration. But soon his story merges with the sub-plot that Eastwood develops from the start.<br /><br />Enter Sandra Locke's character, Jennifer Spencer, whom we soon learn after some (appropriately) mysterious scenes that she and her shy sister were victims of a cruel, unjust sexual assault (err, outright rape), and is sleekly, undercover-like, getting revenge. Her scenes and story are the strongest parts of the film, the most intense, and finally when it goes into Callahan's storyline (he's getting facts in the same small town she's in on a murder), the film finally finds a focus between Eastwood's classic form of clearly defined good vs. evil (though sometimes blurred, to be sure). Eastwood films the flashbacks, not to say too much about them, expertly, in a fresh, experimental style; the trademark Lalo Schifrin score is totally atmospheric in these scenes and in others. It almost seems like a couple of times an art-house sensibility has crept into Eastwood's firmly straightforward storytelling style, which helps make the film watchable.<br /><br />It's a shame, though, that in the end it goes more for the expectable (or maybe not expectable) points, and until the third act Callahan doesn't have much to do except his usual 'it's smith...Wesson...and me' shtick. However, with Locke he gets out of her a very good performance (more subtle and touching than the one in the Gauntlet) and an exciting climax at an amusement park. In a way I do and don't agree with Ebert's remark that it's like a 'music video' in Eastwood's style here. I admit there is comparisons with the simplicity of both, the directness, but the scenes where Eastwood does break form are superior to those of any music video. It's cheesy, it's hard-edged, it's not up to par with the first two 'Harry' pictures, but hey, there could be worse ways to spend a couple hours with the master of the .44.\r\n1\tArthur Bach needs to grow up, but that is unfortunately not the only thing he needs to do. According to his extremely rich father, Arthur has to marry a certain wealthy Susan Johnson or he's cut off from the family money ($750 million dollars worth). The problem is, Arthur doesn't love Susan (though I hear she makes some good chicken) and has just fallen head-over-heels for the waitress and part-time shop-lifter Linda Marolla. Arthur is an interesting fellow. He's really just a big kid, born into riches with at least one person looking after him every second of every day. Working just rubs Arthur the wrong way - he likes to have fun, womanize, and of course, drink. Drinking gives Arthur a sort of Jekyll-and-Hyde complex; and while that gets him into all sorts of trouble, it's absolutely hilarious to watch on screen. <br /><br />Dudley Moore is great here in this film as Arthur, earning an Oscar nomination and Golden Globe win for his performance. Moore is fantastic with the comedic aspects of the film, turning the already funny lines into unforgettable comedic gold, but he is also great in bringing Arthur down to a relatable level and making the character likable. Moore has some help in the co-star department - Liza Minnelli is great as Lina, the spirited nobody who Arthur can't get enough of, and John Gielgud is terrific as Arthur's butler Hobson. Gielgud won the Best Supporting Actor Oscar for his performance in this film, and there's no doubting why. Hobson has a stone-solid dry wit and stuck up attitude, but he's always looking out for Arthur - and Gielgud is perfect in the role. Steve Gordon's 1981 film Arthur is short and simple, but delivers laughs a-plenty.\r\n1\t'I only wanted to see you laughing in the Purple Rain.' This is an excell film. It should have been re-rated to PG-13. But anyways, Prince's first film and greatest. The follow-up sucked. But I haven't seen for years so here's what I can remember about it. The Kid (Prince) has to juggle with winning over the love of his life, Apollonia (herself), keeping his band together (The Revolution as themselves) and the tension in his family. But his rival band (The Time as themselves) is ruining his life. Like Morris (himself) is trying to steal Apollonia from The Kid. Just like Saturday Night Fever, Flashdance and 8 Mile. Really good. Rent it, laugh and cry and if you luv it, buy it.\r\n0\t\"Silent Night, Deadly Night 5 is the very last of the series, and like part 4, it's unrelated to the first three except by title and the fact that it's a Christmas-themed horror flick.<br /><br />Except to the oblivious, there's some obvious things going on here...Mickey Rooney plays a toymaker named Joe Petto and his creepy son's name is Pino. Ring a bell, anyone? Now, a little boy named Derek heard a knock at the door one evening, and opened it to find a present on the doorstep for him. Even though it said \"\"don't open till Christmas\"\", he begins to open it anyway but is stopped by his dad, who scolds him and sends him to bed, and opens the gift himself. Inside is a little red ball that sprouts Santa arms and a head, and proceeds to kill dad. Oops, maybe he should have left well-enough alone. Of course Derek is then traumatized by the incident since he watched it from the stairs, but he doesn't grow up to be some killer Santa, he just stops talking.<br /><br />There's a mysterious stranger lurking around, who seems very interested in the toys that Joe Petto makes. We even see him buying a bunch when Derek's mom takes him to the store to find a gift for him to bring him out of his trauma. And what exactly is this guy doing? Well, we're not sure but he does seem to be taking these toys apart to see what makes them tick. He does keep his landlord from evicting him by promising him to pay him in cash the next day and presents him with a \"\"Larry the Larvae\"\" toy for his kid, but of course \"\"Larry\"\" is not a good toy and gets out of the box in the car and of course, well, things aren't pretty.<br /><br />Anyway, eventually what's going on with Joe Petto and Pino is of course revealed, and as with the old story, Pino is not a \"\"real boy\"\". Pino is probably even more agitated and naughty because he suffers from \"\"Kenitalia\"\" (a smooth plastic crotch) so that could account for his evil ways. And the identity of the lurking stranger is revealed too, and there's even kind of a happy ending of sorts. Whee.<br /><br />A step up from part 4, but not much of one. Again, Brian Yuzna is involved, and Screaming Mad George, so some decent special effects, but not enough to make this great. A few leftovers from part 4 are hanging around too, like Clint Howard and Neith Hunter, but that doesn't really make any difference. Anyway, I now have seeing the whole series out of my system. Now if I could get some of it out of my brain. 4 out of 5.\"\r\n0\tThank God I watched this at a friend's place and did not pay for it. The plot is horribly transparent and the whole movie felt like an episode of a TV show. If you have any knowledge of computers or electronics, watch out. You will feel feel like the movie is an insult to your intelligence. <br /><br />Also, actress turned Much Music VJ Amanda Walsh displays the worst acting I have ever seen, excluding porn. She's lucky that Matt Lanter is actually decent. He's the one that carries the movie. <br /><br />I hate that I wasted nearly two hours of my life watching this movie! It's a shame that they got to call it a sequel, because I was a fan of the original, which was actually pretty good.\r\n1\tThis movie is great entertainment to watch with the wife or girlfriend. There are laughs galore and some very interesting little nudist stories going on here. The actresses are all very interesting and definitely worth watching in their natural beauty. Maslin beach life is full of diverse nudists and personality types. The Australian coast scenery is, simply, splendid to see. What a place to visit, to say the least, and one day it may become my hideaway. I really enjoy this movie and every time I watch it I enjoy it more. I would love to see more of these characters and I always wonder what became of them. Although the plot is somewhat soft, this movie is, of course, a great excuse to just sit back on the couch and enjoy the wonderful and famous Maslin beach with these wonderful nudists and their own personal stories.\r\n1\t\"The Sunshine Boys is one of my favorite feel good movies. I first saw it when it as the Christmas attraction at Radio City Music Hall when it first came out and loved it ever since. I ended up seeing it 6 times in the theaters, and if it was playing today I'd go out to see it again.<br /><br />Now a lot of the reviews here mentioned the wonderful performances of the leads. Matthau was brilliant, but had the misfortune of being nominated against Jack Nicholson's Oscar winning performance of Randall P. MacMurphy in \"\"One Flew Over the Cuckoo's nest. Burns did win, though Richard Benjiman deserved at least to be nominated as well. Even the smallest roles were played to perfection, like Fritz Feld auditioning for the potato chips commercial. <br /><br />Which brings me to my reason for reviewing this film, the direction of the greatly underrated Herbert Ross. Ross who previously brought a two person play, \"\"The Owl And The Pussycat\"\" to the screen and made a full movie out of it, does it again. He opens the plays out without making them look like a photographic stage play. He fleashens out the story and the characters.<br /><br />Here we're 20 minutes into the film before we get to the scene that opens the play, where Ben Clark comes to see his uncle and tell him about the comedy special. Though there are dialogue from the play during the first twenty minutes, the sequence itself is totally new. A few years ago I did see at the broadway revival of the play with Jack Klugman and Tony Randall, which was wonderful. But I think that Ross and screenwriter, playwright Simon improved on it. It's just a wonderful film.\"\r\n0\tI gave this movie a 2, and though I consider myself a science fiction fan, I found this movie very difficult to take seriously. It was on AMC one late night, and I'm glad I saw it for free. This movie is probably good for a few laughs, but not much more.<br /><br />The special effects are about average for the time period - not awful, but not great, either. Of course we know more about Mars now than we did back then, but we really can't hold that against this film. The main reason I did not like this movie is because of the story.<br /><br />There were several parts of this movie that I wish would have been explored in a little more detail - the astronaut's injury/condition, the city on Mars, the creature in the lake, etc. Overall, the movie is much like a lengthy episode of the 1960s version of The Outer Limits - complete with a cheesy ending.\r\n0\t\"Made one year before ILSA, SHE-WOLF OF THE SS, BLACKSNAKE could have easily been called SUSAN, SHE-WOLF OF THE PLANTATION and it probably inspired the producers behind the Nazi sexploitation epics to go ahead with their more infamous films because the stories are identical: a gorgeous, horny, head strong (but stupid) blonde woman degrades and kills many people under her control, whom all hate her and want her dead. Sounds familiar? Director Russ Meyer and David Friedman, the producer behind the ILSA flicks, are good friends and they started their careers together. So, obviously, there's a connection there. Looking at BLACKSNAKE, I can't help but think that Russ Meyer wanted to move on and do something else than his typical busty women epics because XXX movies were all the rage during the mid 1970s, and Russ Meyer films, though filled with nudity and kinkiness and violence, were never even close to real porn. His films started to look positively quaint next to DEEP THROAT and other hard-core porno blockbusters. Meyer knew he couldn't compete with such films and BLACKSNAKE is sorta the end result of such a quandary in his career. He obviously wanted to branch out into different uncharted territory. But BLACKSNAKE bombed at the B.O. and Meyer quickly returned to making VIXEN type of films that, even if they still weren't pornographic, they were most definitely more over-the-top than any of his previous films.<br /><br />It's no wonder BLACKSNAKE was a B.O. failure. It's just terrible. Trash-o-rama. Jaw-droppingly bad. It's a quasi-campy take on slavery, if you can imagine that. The end result is jarring. One minute, we're in typical Meyer territory: exuberant, playful and silly, and then the next minute, super serious meditation on slavery and violence. Huh? It just doesn't work. The slavery/racism aspect is woefully mishandled and veers this movie in the true exploitation category. But BLACKSNAKE is not as sleazy as ILSA SHE WOLF OF THE SS and those kind of films, so I imagine fans of the latter were disappointed by it, which would explain the almost lack of interest in this movie from either exploitation fans or Russ Meyer fans. Meyer blames the failure of BLACKSNAKE because, and I quote, \"\"It didn't have enough breasts in it.\"\" Well, I'm sorry Russ, but the film is just bad, breast or no breasts. But he's right though about the low breast quota. Except for Anouska and the maid, the film's cast is male. Meyer replaces his usual bevy of buxom babes with throng of hunks with massive pecs, in the form of anonymous black actors playing the slaves and the big David (Darth Vader) Prowse. And with Anouska's right hand man around, who is portrayed as a ruthless but clever gay man who enjoys the power he has over the men, one can only wonder what Meyer was really trying to create here.<br /><br />BLACKSNAKE stars David Warbeck, who is lusted after by Anouska and her right hand man. Poor David. He looks totally befuddled by the whole experience. He did seem to have fun making the movie but you can clearly see that, at times, he has no idea what's going on. And then there's Anouska Hempel. She's a beautiful woman...for the 1970s, not the 1870s. With her makeup and hair, she looks like a typical 1970s Brit pin-up babe than a turn of the century dominatrix. And her wardrobe is hilarious. At one time, she actually unzips her leather boots! I didn't know they had zippers in those days. But the character she plays is, in itself, really degrading (no pun intended). She's nothing but a cipher to the object of lust and scorn of every men (and that woman) on the island. For example, one night, when David and Anouska are getting it on, her annoying slave driver walks in the room, knocks David unconscious and tries to rape her, groping her savagely. The next day, the slave driver is still working for Anouska and the two act as if nothing had happened. It's totally ludicrous. Under any circumstance, had her character been a real person, Anouska would have whipped the slave driver senseless and kicked his butt off the island. Or even killed him. But the fact that the woman keeps him on her plantation after he tried to rape her is stretching the flimsy story and characters' credulity to the max.<br /><br />Ridiculous details like this, and the thoroughly startling blaxploitation angle makes BLACKSNAKE a strangely unpleasant but watchable movie. Watchable in the train wreck variety. I just couldn't help but watch the film for the utter baseless aspects of it all (the excellent cinematography sorta makes it easier to watch). So, this being an exploitation film, I guess it succeeded in doing what it was supposed to do. But BLACKSNAKE is mainly for Russ Meyer completists.\"\r\n0\tIt's very sad that Lucian Pintilie does not stop making movies. They get worse every time. Niki and Flo (2003) is a depressing stab at the camera. It's unfortunate that from the many movies that are made yearly in Romania , the worst of them get to be sent abroad ( e.g. Chicago International Film Festival). This movie without a plot , acting or script is a waste of time and money. Score: 0.02 out of 10.\r\n0\t\"And I repeat, please do not see this movie! This is more than a review. This is a warning. This sets the record for the worst, most effortless comedy ever made. At least with most of the recent comedies nowadays, the gags are crude and flat, but the writers and directors put in at least some sort of effort into making them funny. I never get tired of repeating one of my favorite mottos: Everyone thinks they can do comedy, and only 10 percent of them are right. Comedy is hard! This is not some genre any fool can play around with. I think it's atrocious that the filmmakers are comparing this piece of garbage to \"\"Kentucky Fried Movie.\"\" Basically, these bozos are comparing their so-called comic talents to those of the brilliant Jim Abrahams and the Zucker Brothers. Come on, I've seen Pauly Shore movies that are 10 times funnier than \"\"The Underground Comedy Movie.\"\" Here's a sample of the comedy for those curious about seeing this movie: One sketch involves a superhero dressed like a penis named D**kman. The whole joke is that he defeats his enemies by squirting them with semen. That's it. That's the whole joke. Wow. This is enough to make Carrot Top roll his eyes. Another sketch involves a man having sex with a dead person in a porn movie. And in another sketch, there's a bag lady beauty contest, in which we're exposed to the horrible sights of bikini-clad middle-aged women with beer guts and stretch marks. Plus, making fun of the homeless is more sad than funny. It's a step away from mocking the mentally handicapped. The whole movie is supposed to be a satire. I think the filmmakers forgot that a key element of satire...is TRUTH!!! For anybody who actually enjoyed this crap, explain to me what is truthful about ANY of these gags! Some of the sketches might've sounded funny on paper, but anybody who's taken any screen writing classes knows that if a sight gag sounds too funny on paper, it probably won't be funny on screen. If I tell someone about a big, black, muscular gay virgin, who's saving himself for the right man, he or she would probably laugh. But watching the premise played out on screen for about 10 minutes is a complete drag. I hate how whenever people criticize a low-brow comedy like this for not being funny, they're regarded as stuck-up squares. I just saw \"\"White Chicks\"\" recently. That's another low-brow, politically incorrect comedy, but I laughed my head off. The most offensive thing about \"\"The Underground Comedy Movie\"\" is it's not funny! What the writers and directors don't understand is that merely being filthy and tasteless doesn't work. There has to be more! Just think of the famous scene from \"\"There's Something About Mary\"\" (ironically, enough the bozo filmmakers put the Farrellys on their special thanks list). The joke about the semen wasn't just funny because it involved bodily fluids. There was a buildup. Ben Stiller was masturbating in the bathroom to make sure he didn't go out on a date with a \"\"loaded gun.\"\" Then he looked around to see where all the semen went after it was released. A knock is on the door, and he has to answer it. His date, Mary, is at the door and that's when it's revealed that the semen is hanging off Ben's ear. In this movie, there are multiple gags involving characters squirting loads of semen at people, with no buildup whatsoever. As Jay Leno always says, \"\"This comedy thing's not so easy, is it?\"\" Keep that in mind, Vince Offer, 'cause you weren't cut out for this genre!! The only reason people might laugh at these gags is because they want to feel hip. Let's face it, nowadays it's hip to laugh at anything politically incorrect. I know comedy is subjective...but this movie shouldn't be funny to anybody, except maybe the filmmakers themselves. As a side note, the movie had to have been made before Michael Clarke Duncan's fame in movies like \"\"Armageddon\"\" and \"\"The Green Mile.\"\" There can't be any other reason why an actor of his caliber would volunteer to be part of this amateurish freak show. All the others in the cast are either non-actors, has-been actors or B-movie stars. Karen Black made a good impression in \"\"Five Easy Pieces,\"\" but I don't think she's done anything of value ever since. Slash was probably drugged into being in this film. Gina Lee Nolin is nothing without \"\"Baywatch.\"\" Angelyne is the film's biggest star (keeping in mind Duncan wasn't famous at the time), and there are still probably a ton of people who haven't heard of her--for good reason. Usually, I'm in support of extremely low-budget flicks, but this one deserves to drift into obscurity. I hope to Lord this doesn't become a cult classic! Shouldn't there be a law against distributing crap like this?\"\r\n0\tI was able to hang in for only the first twenty minutes of this low-budget movie. The most glaring absurdity was that while the American inmates in a North Korean POW camp are all supposedly suffering from severe deprivation of food and medicine, going without bathing, shivering in flimsy and filthy parkas, and sleeping on bare floors, and - let's not forget enduring torture - they always manage to sport impeccably coiffed hair. With the exception of a suitably austere-looking Harry Morgan as an army Major, the casting and acting are simply awful. Ronald Regan cannot seem to stick to portraying a single character and instead creates a rather schizophrenic amalgam of past roles. A mostly Caucasian cast portraying the North Korean camp officers might have been forgivable, but when supposedly Russian officers acting as advisors to the Koreans strut around wearing re-badged Nazi uniforms complete with jodhpurs and jackboots (obvious costume-department recycles from WWII flicks) and speaking with accents like General Burkhalter from Hogan's Heroes, well, that's just six kinds of silly. Don't waste your time on this one.\r\n0\tThis film had such promise!! What a great idea, an underdog paintball team struggling for recognition and personal glory, only to lose it's speed due to bad dialoge, poor editing and a half-written story. The characters in the beginning were interesting, only to lose steam half way through to become one dimensional people sputtering out tired one-liners.<br /><br />Maybe if they spent some more time on the story and dialoge it would have been a great movie, instead of a almost afterthought effort.\r\n1\t\"It's hard to say sometimes why exactly a film is so effective. From the moment I first came across \"\"The Stone Boy\"\", something told me it would be a great film. In spite of that, it seemed very unlikely that I'd ever have the opportunity to actually see it for myself. Then, one day, while looking through the online catalogue of my local library, I saw that they had recently purchased the DVD release of this film. Which I'm extremely glad for, because the cinematography is of a stunning depth and quality that an old VHS copy could never replicate.<br /><br />And speaking of the cinematography, I must single it out as far and above the most stunning aspect of this film. As a photographer who pursues very nearly the exact visual style portrayed in \"\"The Stone Boy\"\", I'm a firm believer in the fact that a great cinematographer can almost single-handedly carry a film. Here, he has a lot of help from an extremely talented cast, and a director who understands perfectly what the story needs. But to have Juan Ruiz Anchía behind the camera makes virtually every scene something of beauty. And you can almost never say that. Most films would never even expect such a thing of you. Scene after scene captures some detail, some little bit of visual magic that takes your breath away.<br /><br />The director, Christopher Cain, has had a long and interesting career. As far as I can gather, this film is not very representative of it. But, sometimes, to catch a director near the beginnings of his career, before all the big budgets and loss of focus, there's a real subtle magic to be found. Cain steps back in this film, lets things happen with a life of their own, and then ever further. Much like early John Sayles films, characters are given space to breathe, time to talk. Side stories happen because they do, and that's how life is. Cain displays a remarkable, raw, even outright painful understanding of human nature in this film.<br /><br />The acting ties much of this story together. When people talk, when they exist in this film, they do so as actual people, not held back by the fact that they are playing characters. Gina Berriault's script allows immensely talented and respected actors like Wilford Brimley, Robert Duvall, Glenn Close, and Frederic Forrest to spend time simply existing. Whether the things they have to say are minor or of deep significance, it all comes down with the weight of pure reality.<br /><br />When you look at the actors involved, or the great soundtrack by James Horner, it seems strange that such a film be very nearly forgotten. Maybe much of what makes \"\"The Stone Boy\"\" what it is was the time period it was made in. There's this 1970s hangover feeling to this picture that reminds me deeply of my own childhood. People talk of the 80s in terms of modern styles and music, but that's not the 80s I lived in or remember. The look of the images, the understated and dark knowing quality of the acting, and the overall result should get under the skin of any person who grew up in or near this era of time in North America. I see myself in this. I see how I saw the world. And a film like \"\"The Stone Boy\"\" sees the world for how it truly is.<br /><br />For more of this feeling, please see:<br /><br />The Black Stallion (1979), Never Cry Wolf (1983), Tender Mercies (1983), Testament (1983), Places in the Heart (1984), Matewan (1987), High Tide (1987), Driving Miss Daisy (1989), The Secret Garden (1993), The Secret of Roan Inish (1994), Wendy and Lucy (2008)\"\r\n0\t\"Cheesy script, cheesy one-liners. Timothy Hutton's performance a \"\"little\"\" over the top. David Duchovny still seemed to be stuck in his Fox Mulder mode. No chemistry with his large-lipped female co-star.He needs Gillian Anderson to shine. He does not seem to have any talent of his own.\"\r\n0\tI'll be blunt. I'm not one for politically correct movies where the woman plays the bad ass who's not going to take any crap from anyone. If any one of the cast members wanted to, they could have just taken her out in a heartbeat. It was entertaining on MST 3K, but don't rent the real version. Trust me. Have I ever lied to you?\r\n1\tTHE YOUNG VICTORIA is a elegantly costumed and reproduced bit of history that benefits from some fine settings, solid direction by Jean-Marc Vallée of stalwart Julian Fellowes' version of the youthful lass who was to become England's longest reigning monarch - Victoria. Much of the early portion of the film, that part when Victoria is a child whose ascent to the throne is contested by her mother (Miranda Richardson) and Sir John Conroy (Mark Strong) seems to drag and get lost in the multiple costumes and scenery variations. But once Victoria (Emily Blunt) comes of age and is courted by Prince Albert (Rupert Friend) the film blooms. Blunt is a strong actress and finds that delicate line between girlish infatuation and royal dignity that makes her a fine foil for those at court who would seek to control the 'child queen' - including her secretary Lord Melbourne (Paul Bettany). But as she matures into her role as queen her eye dwells on the dashing German Prince Albert, and a love affair that has lasted in the memories of everyone is matched by the concept of joining Royalty with concern for the care of her subjects - much due to the sensitivity of Albert. The film takes us to the birth of their first of nine children and then ends with some statements about the influence of Queen Victoria and Prince Albert's effect on the various Royalties throughout Europe! It makes for an evening of beautiful costume drama and allows us to appreciate the growth of two young stars in Emily Blunt and Rupert Friend. A solid if not transporting epic. <br /><br />Grady Harp\r\n1\tKenneth Branagh shows off his excellent skill in both acting and writing in this deep and thought provoking interpretation of Shakespeare's most classic and well-written tragedy. Kenneth plays the role of Hamlet with such a distinct emotion that provokes tears. Kate Winslet's performance is also of great note.\r\n0\tWhen I saw the preview, I thought: this is going to be a great movie. And indeed it could have been. The actress playing the main character was very credible, and the beauty of the filming is undeniable. However the dialogues cast a dark shadow on the whole picture. The level of language was too familiar and too contemporary for an action taking place in 1610, and it took away most of the magic of the film. However, I must congratulate the translator, because the English sub-titles were more refined and appropriate that the original French cues, and it probably explains the good rating the movie received on the imbd!\r\n1\tAs a forty-something urban explorer/photography and longtime fan of the original Kolchak: Night Stalker series since my early childhood, one aspect that hasn't really been mentioned is the amount of urban exploration Carl's character undertook during the series. He always managed to get himself in to one great abandonment, sewer or tunnel after another. Armed with only his trusty penlight (okay, so he had some flares in the primal ape episode tunnel) and his camera, he never carried any other gear to either protect himself or make the exploration easier.<br /><br />Like many here, I recently purchased the DVD box set of the two pilot movies and subsequent TV episodes, and have been slowly revisiting all the shows. And although I remember watching them back in the early 70s when they first aired, its been over 30 years passed...so many of them seem new all over again. Campy, dated and cheesy - but charming and highly entertaining. They just don't make stuff like this these days. Now its all regurgitated spin-offs with predictable characters and plots.<br /><br />Thankfully, my 16-yr-old daughter has been sitting down to watch the episodes with me and has developed an appreciation for them (she enjoys the genre). It gives me hope and faith the series will carry on to new generations of fans for years to come.\r\n0\tStewart Kane (Gabriel Byrne, VANITY FAIR) heads out with his local Jindabyne, Australia fishing buddies for a weekend of rest, recreation, and relaxation. But when Stewart discovers an aboriginal woman's body floating face-down in a river, things appear to have turned out for the worst. The largest casualty of the weekend is the men's commonsense. They don't hike out of the ravine, and instead finish their fishing weekend with some great catches. Then they head out and report the body.<br /><br />The town and the men's lives quickly turn into a mess. The local media swarms them, and accusations of aboriginal prejudices rear up from the local natives. Stewart's wife Claire (Laura Linney, THE EXORCISM OF EMILY ROSE) senses the deeper meanings of what her husband and his friends did, but has to battle with it through her own mental illness.<br /><br />Amidst all this chaos is the life that was this young woman who is now a media spectacle, splayed out on a morgue slab. Her murder and subsequent dumping into the water are symbolic of what lay beneath the town of Jindabyne: a division of men and women, black and white, social and outcast.<br /><br />The only other people who seem to understand some of what is going on are two young kids: Stewart and Claire's son who is being led around by a half-breed Aussie who's mother was killed also just a few years before. The young girl lives with her grandparents and is trying to let go of her mother the best way she can, and the discovery of a new body seems  strangely enough  a method in which to accomplish this (again, the underlying current of Jindabyne is surmised).<br /><br />Everything and everyone in this Jindabyne township feels what lurks beneath its surface, yet none of them are willing to dive into the murky waters and take a look around (the symbolism here is seen when a nearby lake that is used for recreation and swimming is said to contain the old town of Jindabyne under its surface). None, that is, until Claire forces them to.<br /><br />The movie is interesting if a bit too convoluted. There are far too many story lines that needed exploring and it just doesn't get done; too many loose threads. The acting was okay, but the filming was terrible. Wobbly cameras, grainy or dark shots, and just a generalized sloppiness hurt the overall production.<br /><br />I enjoy symbolic films, NORTHFORK being one of my all-time favorites in that vein. But Jindabyne needed to peak its head above the turbid water so that it could see its own problems, which simply didn't happen.\r\n1\tThis is an extraordinary film, that tricks you constantly. It seems to be heading toward cliche at several points, and then something astonishing will happen that genuinely startles. It would give away too much to say much more, but stick with this film and you will be richly rewarded. William Haines is absolutely delightful - he is certainly a star that deserves to be re-discovered. The gay subtext in his relationship with Jack Pickford is amazing - there is even a scene where Haines rubs Pickford's chest (Pickford has a cold). Both actors play this sub-text subtlely and with great depth of emotion, so that there are moments that are very moving. And I never thought I could get so involved in a football match as I did in this movie - and I don't even understand the rules! Also excellent is Francis X. Bushman's son Ralph as Haines' rival for the girl (yes, it's not completely a gay movie). Wonderful silent classic - a great example of Twenties commercial cinema with an edge.\r\n1\tHardcastle and McCormick is an excellent TV show. <br /><br />Yes, it is predictable much like The Dukes of Hazzard, Hunter, The A-Team, etc etc etc.<br /><br />This show is just good clean television. The relationship between Hardcastle and McCormick is quite amusing. They often take jabs at each other several times an episode, which adds a great deal of humor to the show. It contains several car chases in almost every episode, but, who doesn't enjoy a good car chase? Especially with the Coyote! <br /><br />I only wish they made clean television like this today I highly recommend this!\r\n0\t\"Bo is Jane Parker, whose long-lost anthropologist father (Richard Harris, in the worst role of a very inconsistent career) is in Africa studying something or another. She tracks him down (how?) and he tells her of the natives' stories of a giant monster whose nightly howling can be heard throughout the jungle. Turns out to be the Ape Man himself (Miles O'Keeffe, who has the film's best dialogue), who rescues her from bad guys and falls in love with her, leaving them just enough time in this agonizing two hours to romp naked while a horny monkey looks on and cheers. Normally I'm very open-minded to varying opinions about any film, but this is the sole exception. This is the worst film ever made. If you don't agree, you haven't seen it. (Notes: Newsday called it \"\"unendurable,\"\" which is the best one-word summary I can think of. The Maltin Movie Guide comments that they almost had to think of a rating lower than BOMB.)\"\r\n0\tmy friends and i saw this film about a week ago and i feel it absolutely necessary to tell all the world (or at least those who will read this) that this movie is not only on the top five worst movies i have ever seen but actually has the honor of being the number one. i have seen quite a lot of films but none beats this one in being stupid. you could say i suffered watching it ... my only excuse is that we were waiting for a few hours and weren't able to go anywhere else without freezing our buttocks off. i do not recommend this to anyone. at first i thought we were watching some really bad porn movie but figured out after 10 minutes that is not the case. it is not a comedy, it is not drama, it is not action, it is not horror, it is just horrible!\r\n1\tAs if the film were not of value in itself, this is an excellent way to get an overview of the novel as a preface to reading it. In the summer of 1968 I saw the film in NYC; that fall in graduate school, I read the book for the first time. Some of the pleasure in reading the novel was my memory of the scrupulously detailed film. And for better or worse--and I've now read and taught the novel for over three decades--Milo O'Shea is still Leopold Bloom.\r\n1\tI really have to disagree with guy-yardley-rees who (should he have watched the entire film) would have seen some absolutely stunning Scottish scenery (some of the best ever shot in Skye) and found a film with a difficult start come together into a really poignant whole.<br /><br />This is not a big budget film. Rather it is a film that has a strong community feel.<br /><br />I can't say how much 'standard' films bore me - pushing out the same polished stuff again and again. Seachd doesn't seem to be about that at all. It really seems to be trying to offer something more real and certainly more Gaelic than any recent Scottish film.<br /><br />OK, so the acting isn't in the style a blockbuster. That's because the actors are seemingly real people. I actually thought that the key roles of the boy and his Grandfather were really convincing - and at times unusually beautiful.<br /><br />Seachd really bears a second viewing, since there are many threads that become clearer second time around - that really do feed into the ending.<br /><br />Overall, the combination of music and (at times) stunning visuals, plus a community approach to the acting and non-normal structure has turned Seachd into quite a distinctive and memorable film. More of these please!\r\n0\tWhat the heck was this. Somebody obviously read Stephen King and Sartre in the same semester. We get existential angst mixed in with cheap horror. There were moments that were disturbing but each one was canceled out by horrible music, CGI, or acting.<br /><br />The problem with weird narratives like this is that it feels lazy. Even David Lynch's work feels like that at times, and just like his interesting shows and movies it runs far far too long. And sadly this is only 98 minutes.<br /><br />The cast was attractive, and that is about the limit to this. I suppose it touches on feelings of adolescents and the fear of loneliness we all have, but just doesn't make the characters likable enough for us to care about their fates...whatever they were. The final scene leaves the whole thing ambiguous.\r\n0\t\"I understand the jokes quite well, they just aren't good. The show is horrible. I understand it, and that's another horrible thing about it. The only cool character there EVER was on the show was that one hobo in that one episode, but then I see the other episode including that episode and the show is horrible. It's not funny, NOT funny! I don't want people to say \"\"Only smart people get it\"\" because if they're so smart why do they judge people they don't even know and say that they're not smart or intellectual enough to understand it? It's like saying \"\"The sky is red\"\" but never looking outside. But anyways, this is absolutely the worst show I have ever seen in my life, the jokes are terrible, I mean, you can understand them, they're just horrible, her controversy is very lame, her fart jokes and other jokes on bodily fluids are really dumb and usually consist of really bad acting. I'm not sure what these \"\"smart\"\" people see in this show, but judging others when they don't even know anything about any of us isn't exactly a smart comment.\"\r\n1\t\"I originally saw this movie as a boy at the old Rialto Theatre as part of a Saturday afternoon matinée triple bill which also featured Vincent Price's \"\"Last Man on Earth\"\" and Mario Bava's \"\"Nightmare Castle.\"\" I had nightmares about blood lusting ghosts for a week afterwards! Though I didn't know it then, all three movies would prove to be classics of the genre. No wonder I was so scared! Though all three films frightened me, it was Castle of Blood that had the most profound impact.<br /><br />It was the first on the bill. I didn't even get to see it from the beginning as we were late getting to the cinema and missed the first 20 minutes of the movie. That's lot to miss since the edited print only ran about 79 minutes (the unedited runs 87minutes). But despite this, the dark creepy atmosphere (complete with ruined castles, fog enshrouded cemeteries, shadows and cobwebs), Gothic set design, strong acting, and suspense (especially the last 20 minutes) scared the bejeepers out of me and made a lasting impression It took me years to finally get a copy of the film for my collection. Since it was a French - Italian import, it wasn't a movie that showed up on the late show in Winnipeg. I couldn't quite remember the title (remember I didn't get to seen the beginning of the film and was scared witless), and to make matters worse, the film had been released under literally a dozen different movie titles (aka Danze Macabre, Coffin of Terror, Castle of Terror, Long Night of Terror, etc...) and the USA/UK working title \"\"Castle of Blood\"\" was very generic, similar to dozens of other \"\"b\"\" horror and suspense films, making it illusive. But thanks to the internet and perseverance, I found it at last! What a treat to finally watch the film in its entirety after so many years! It may not have had quite the sheer emotional impact that it did when I was a boy, but as haunted house movies go, it's stands up well and compares favourably to similar iconic films of the period such as \"\"The Haunting,\"\" \"\"The Innocents\"\" or \"\"Black Sunday,\"\" The film is a fine early effort of Italian director Antonio Margheriti. It stars 60's scream queen icon Barbara Steele and features a well written screenplay by Sergio Corbucci about a sceptical writer (Georges Riviere) who, on a bet, spends the night in haunted house and unsuspectingly becomes part of an annual ongoing ghostly story. The hypnotic Steele is well cast as the ghostly love interest - as is Arturo Dominici as Dr. Carmus, and Margarete Robsahm as Julia.<br /><br />Many of the tricks Margheriti employs to create the film's eerie atmosphere (cobwebs, creaking doors, fog, etc) are bound to seem cliché to a modern audience, but they work far more effectively in black and white than they ever could in modern day colour. Rather than using body counts and special effects, the film creates scares the old fashion way, relying on a good story, stylish direction, fine set production, interesting camera work, and strong acting performances. Margheriti does a marvellous job taking these elements and building the film's suspense as the horrifying paranormal secret of the house gradually reveals itself to the unwitting writer.<br /><br />The film is not without faults. The pace drags at the beginning of the film (ironically, the 20 minutes I originally missed). This is probably worsened by Synapse films effort to restore the film to its original length. Though fans will likely appreciate the chance to see the film restored - in terms of the intro - it may have been more of hindrance than a help. The English voice dubs are merely passable and, in the restored scenes, the language shifts from English to French (English subtitles provided) which is sure to be annoying to some viewers.<br /><br />However, Synapse Films deserves kudos for the quality of the print. Clearly some effort was put into its restoration and deservedly so.<br /><br />I enjoyed the film immensely and highly recommend it to aficionados of 60's Italian Goth films, or anyone who enjoys a good ghost story.<br /><br />Rob Rheubottom Winnipeg, MB Canada\"\r\n1\tThis movie is a very realistic view of a police squad in a small german town as seen through the eyes of a woman recruit. She brings her way of dealing with the law, which means more than simple convictions. The strong performance of the main character, supported by good dialogues makes this flick very enjoyable.\r\n0\tThis film was a yawn from titles to credits, it's boring to the point of tedium and the acting is wooden and stilted! Admittedly this was director Richard Jobson directing debut, but who on earth green-lit a script as poorly developed as this one? Looks like another money down the drain government project (Scottish Screen are credited surprise, surprise). I nearly fell asleep three times and my review will unfortunately have to be more restrained than this one. Please, please mister Jobson what ever you've been doing prior to directing this sedative of a film, go back to it!\r\n0\t\"Here's a horror version of PRISCILLA: QUEEN OF THE DESERT (they wish!) starring Melinda/Mindy (RETURN OF THE LIVING DEAD 3) Clarke as Candy, a desert dweller who pulls off a bank heist with boyfriend Johnny (Jason Durr). He ends up in a South-of-the-border prison run by the sadistic Chief Screw (an overacting Robert Englund in a toupee). She and her beloved pet poodles end up in hiding at a gas station convent until they're transformed by a newly fallen meteor. The dogs turn into obnoxious drag queen \"\"bitches\"\" and Candy develops a VERY long, talking, killing forked tongue she can't control. Thugs looking for the stolen loot and other assorted numbskulls add extra complications.<br /><br />First off, Clarke is fantastic and makes what there is to make of this movie. You watch her and see someone very funny during the slapstick scenes, very convincing during the horror scenes and VERY sexy in various wigs and disguises, including an eye-popping, skin tight latex bodysuit...and wonder how come this actress isn't a huge star. It's too bad the rest of this cult attempt doesn't live up to her promise.<br /><br />Blame director/scripter Sciamma, who thinks the outlandish premise alone is enough to sustain laughs...but his vulgar gags, annoying supporting characters and stupid dialogue are no substitute for a real sense of humor. Another nail in the coffin; the film looks cheap, lots of garish colors and sets are strangely muted by muddy photography and the dusty desert locales. Luckily for Sciamma that Clarke is in his film, because she alone keeps you watching.\"\r\n0\t\"Ever notice how in his later movies Burt Reynolds' laugh sounds like screeching brakes?<br /><br />Must have been hanging out with Hal Needham too much.<br /><br />And from the looks of \"\"Stroker Ace\"\", WAY too much.<br /><br />Can you believe this was based on a book? Neither could I, but it was. And probably not a best-seller, I'll wager. <br /><br />Burt's another good-old-boy in the NASCAR circuit who hitches up with Beatty as a fried chicken magnate with designs on his team. Anderson provides what love interest there is and Nabors does his umpteenth Gomer Pyle impression as faithful mechanic/best friend Lugs. <br /><br />A lot of people here are friends of Burt's or Hal's. Others must have needed the work. And even real NASCAR drivers get in on the act, and look to have more talent than those with SAG cards. <br /><br />As far as laughs go, Bubba Smith (pre-\"\"Police Academy\"\") gets them as Beatty's chauffeur. And Petersen, in full Elvira mode, gets lots of appreciative leers as a lady who wants to get to know Lugs real well. REAL WELL.<br /><br />It's a shame that Burt threw away as much time and effort in a film like \"\"Stroker Ace\"\" where it didn't matter whether he bothered to act or not. They didn't bother to write a character for him, why bother to act?<br /><br />Two stars. Mostly for Petersen, and for the out-takes at the end. Now THEY'RE funny.\"\r\n1\tSuch a masterpiece as the first of these two Snowy River films was, the sequel to The Man From Snowy River is everything that a follow-up should be. It does not tread on the toes of its predecessor, preferring to leave the legend that was the first film live on in some unique immortality.<br /><br />The Man From Snowy River II is based upon the return of Jim Craig to the Snowy River country after a three year absence. The film subtly tells a tale of change in the nineteenth century, of Australian history, legend and horses. The storyline demonstrates a touch of Hollywood in lighter shades, an aspect that was absolutely absent in the first film, yet this blends uniquely with the a distinct sense of Australian patriotism. The plot is far more vibrant than the first film, and much more showy, with particular aspects of the previous incorporated into the film, yet The Man From Snowy River II possesses every essential characteristic of the first film; sensationally beautiful cinematography, a stunning focus of the Australian high country, the second most impressive footage of horses ever filmed, and a fantastic and deeply moving soundtrack by Bruce Rowland which equals the first in every way. Geoff Burrowes has done a superb job with this film, and it is highly worthy of recognition, especially with regard to the quality of the Australian Film Industry. The lead cast, from Tom Burlinson to Sigrid Thornton, and a well-replaced Brian Dennehy, carry off their parts with as much passion and distinction as the first film. As far as sequels can go, The Man From Snowy River II is a masterpiece; a deeply moving and inspirational experience yet again.\r\n1\t\"\"\"Vanilla Sky\"\" was a wonderfully thought out movie. Or rather, \"\"Abre Los Ojos\"\" was well thought out. I watched that movie late one night, excited about what was to come. I wasn't disappointed. By the end of the movie, I was awstruck. I couldn't get it off my mind. The whole idea of it just blew me away. The ending, was more of a surprise than Shyamalan could ever do. The plot line was also something that kept me interesting through and through. The cast, superb. It was an all around wonderful movie. The kind of movie you can watch again and again and always find something new. I've seen it four or five times and I'm always finding something new. It's a movie to keep you interested forever.\"\r\n0\t\"I am completely baffled as to why this film is even liked, let alone held in such high regard, especially by so many critics who are, otherwise, quite sensible.<br /><br />There is one key word which describes this film to its core - irritating.<br /><br />The most easily explained example of this is the director's use - or, more accurately, abuse - of music. In the first half, a really dull reggae tune is played about three times (when once is too often). But in the second half, The Mommas And The Papas \"\"California Dreamin'\"\" is played at least seven times, usually at top volume. Godsakes, whether you liked the song or not beforehand, you'd be thoroughly sick of it by the end. Just think, some people claim to have seen this film four or five times. This means they've listened to California Dreamin either 28 or 35 times.....<br /><br />All of this needless hyper-repetition (it contributes nothing to the story) could possibly be excused if the remainder of the film had any lingering merit, or if the story was in any way involving.<br /><br />But it ain't.<br /><br />The only aspect I found likeable was Bridgette Lin's charging around and still playing Asia The Invincible in a raincoat and sunnies. Even this wore off fairly quickly.<br /><br />I'm sure this film's undeserved high reputation will convince many poor suckers to go and see it.<br /><br />I can only warn you - if you've never seen a HK movie before, don't start with this one.<br /><br />If you feel compelled to watch it, avoid at all costs seeing it in a cinema. The fast-forward and mute buttons are essential tools for survival here.<br /><br />You have been warned !\"\r\n0\tLike 'First Blood', this attempts to make a point about the treatment of Vietnam vets, but there really isn't much time for that in between the monotonous gunfire, burnings, stabbings, torture and explosions as an impossibly indestructible Rambo takes out half of Asia, a ton of Vietnamese soldiers, most of the Russian army, various vehicles and anything else he can point a rocket launcher at. The only woman in the middle of all these boys toys is soon bumped off, allowing the testosterone to reach dangerous levels and the script to degenerate into a succession of loud noises. Helpfully supplying a few hackneyed musical cues is Jerry Goldsmith, who carefully checks off all the clichéd themes from Russian rat-a-tat to Chinese ching-chang-chong just in case we don't quite understand who we're looking at. Stallone has a brain in his head; this empty nonsense is beneath him.\r\n0\t\"Prom Night is shot with the artistic eye someone gives while finely crafting a Lifetime original film. You know the one. This October, Lifetime takes a break from the courageous tale of a woman surviving (insert disease name here) to tell the somewhat creepy tale of a woman pursued by a stalker ex-boyfriend. It's dramatic  it's sappy  it's immensely dull. It does nothing to further a genre, tell an original story, or strive for ANY sort of newness. Prom Night shares this plight. Watching the killer poke holes in his victims, we sit silently as they slump to the floor with not a drop of blood spilled. It occurred to me that this was the cleanest killer in movie history.<br /><br />Our director is working with a fairly good-looking killer so he is forced to pour on the camera angles to make him appear creepier. Think about Matthew McConaughey coming at you with a knife. You'd probably go  \"\"OH! Good lookin guy is going to kill me? Naaaa.\"\" Not scary even for a second, so the director throws Schaech into shadows and over the shoulder in the mirror. This mirror shot is repeated to the point of sickness as it practically becomes a fetish of the creator. You'll get 15 jump scares in this film, 2 of which made my date jump (I might mention she is afraid of EVERYTHING). I'd also mention she decided to take a nap halfway through the film and at one point threatened to leave me.<br /><br />As if this film were not disjointed enough, it appears to be cut to shreds. I'm not saying it looks like key points were left on the cutting room floor as the crew scrambled to salvage some semblance of a horror film; I'm saying as the film moves from scene to scene, you often get a jarring jump. This is the kind of thing you'd expect when a film catches fire and a projectionist is forced to splice ends together, cross his fingers, and hope for the best. The editor should be shot.<br /><br />With a plot you can pack into two sentences, one stray spray of blood, an emo killer, and the tension of a very special episode of \"\"Silver Spoons\"\", we're left with no reason to support horror this weekend  at least on the big screen. In fact, this is the sort of film that should be punished. Is it really that hard to make a scary movie? Was this crew even aware they were making a horror film??!! A complete waste of my time and yours. I bit the bullet to get you this review. Don't let my sacrifice be in vain. DON'T GO INTO THE MOVIE!!!\"\r\n0\t\"Casting aside many of the favorable comments that have obviously come from friends and/or relatives that pepper this and many other low budget independents listed on IMDb, one is lost when it comes to using these reviews as an accurate gauge. So eventually you have to go out and rent the flick just to see for yourself. One of the first things you must understand are the catch phrases that camouflage the reality of the movie. In this case the term \"\"dark psychological thriller.\"\" Read: \"\"hack writer/director who thinks he's an auteur, who replaces plot, story, and action, with what he believes is a deep insight into the human soul. His great insight? Festering and repressed childhood traumas emerge to wreck havoc when we become adults. Wow, I bet Freud would be really impressed! Too many would be film makers like Kallio, who were raised on low budget horror flicks of the last few decades, fail to dig their own fresh grave. Instead, they fall into the pre-dug graves of the many other directors that came before them. They are content with rehashing old and tired horror clichés that they borrowed from a dozen or more films. The result is an unoriginal, uninspired, unbelievable waste of film stock.\"\r\n0\tI finally got to have a look at this experimental Lynch short after waiting for so long....and unfortunately, it wasn't worth it! Even for a die hard Lynch fan, I found this to be really tedious....<br /><br />nothing happens, there are long, long, long painful pauses where nothing happens, long, monotonous speeches where nothing is said and the whole thing finishes with the viewer not knowing, or caring, what the hell it was all about, what happened before and what happened afterward. <br /><br />There was a Mulholland Drive allusion - the blonde girl and the brunette girl were very Diane and Rita -esque, and a Lost Highway moment with allusions to some significant event that happened but cannot be talked about clearly. <br /><br />Unfortunately, It's all very uninteresting and very dull, nothing happens, it's very forgettable and I think i will delete it from my computer and forget I ever watched it. Sorry David!\r\n0\tThe plot was very thin, although the idea of naked, sexy, man eating sirens is a good one.<br /><br />The film just seemed to meander from one meaningless scene to another with far too few nuddie/splatter/lesbian mouth licking shots in between.<br /><br />The characters were wooden and one dimensional.<br /><br />The ending made no sense.<br /><br />Considering it had Tom Savini and Shaun Hutson in it, you would have expected a decent plot and decent special effects. Some of the effects were quite good but there were just too few of them.<br /><br />Brownie points go for occasional flashes of tits and bush, naturally, and of course the lesbian moments. I also thought that the scene with the sirens bathing in the pool under the waterfall could be viewed as an innovative take on the 'shower scene'<br /><br />The film had many of the elements that go into making a first rate horror film but they were poorly executed or used too sparsely.<br /><br />If I had been watching this alone and aged 15, i would have really enjoyed it for about 10 minutes (with 1 hand of the remote control), then lost interest suddenly and needed a pizza...\r\n1\tA lush fantasy world with quirky characters and annoying 80's music. This epitomizes the 80's desire to rewrite fairy tales and make fun of how they work. Personally I liked Greensleeves and the other harsher characters. They had some of the more amusing lines.\r\n0\t\"Movies about dinosaurs can be entertaining. So can Whoopi Goldberg movies. But Whoopi AND dinosaurs?<br /><br />After the first 20 minutes of \"\"Theodore Rex\"\", I had come to one conclusion: this movie is evil. Evil, vile, wicked and reprehensible in its spite for the audience. Nothing this bad is made by accident; this is the visual equivalent of a torture chamber.<br /><br />First of all, Whoopi does not make good action movies (watch \"\"Fatal Beauty\"\" if you think I'm lying), but the film makers don't care - she's a tough cop here, yet again. <br /><br />Seen a million cop buddy flicks this week? Well, here's number one million and one, pal.<br /><br />Don't like cute, humanistic animated dinosaurs since that Spielberg TV show about them? Too bad, here's another one and he's a cop, too!<br /><br />You one of those people that hates car chases, shoot-outs, sloppy dialogue, boring futuristic FX and seeing talented people (Goldberg, Mueller-Stahl, Roundtree) stuck in a movie that looks like a tax write-off? A BIG tax write-off?<br /><br />And you read this review all the way to the end. You DESERVE a sequel. Seriously.<br /><br />No stars, not a one. And if they really make a sequel to \"\"Theodore Rex\"\", Hollywood deserves to be attacked a whole herd of wise-cracking foam rubber dinosaurs.<br /><br />Now, I'd pay to see that.\"\r\n1\t\"The story of Cinderella is one of my favorites from Charles Perrault, with Sleeping Beauty which was also made into a Disney film in 1959; this film is a sweet, enchanting masterpiece from Disney.<br /><br />The film has a great soundtrack; that's one I like in a movie is a very good soundtrack, and I love the songs too; my favorite song is the romantic \"\"So This is Love.\"\" I love the mice from the film too, they are cute. My favorite scene is the scene after the narration, the little birds tried to wake Cinderella up in the morning; I also love it when Cinderella's animal friends (the mice and birds) fix up Cinderella's birth-mother's dress, so she could go to the ball...until Drizella & Anastasia tore it to bits, the b****es!\"\r\n0\t\"I have to admit that Over Her Dead Body actually wasn't as bad as I was expecting, my mom wanted to see it, so I rented it. I figured just to go ahead and see the horror before my eyes, but actually this wasn't too bad. I was just expecting this horrific movie, but it seems like the writers meant no harm, but the casting of Eva Longoria(Parker, sorry), she seems a little off set for the movie. I think I may have found it to be a little better without her, just she does annoy me. But Paul Rudd and Lake Bell had a decent chemistry that made the film somewhat likable. But you have to admit, there was no point to this movie, it was one of those quick paychecks for the actor type of thing. The movie could've been funnier if someone had really paid attention to it and had a better cast.<br /><br />Henry just lost his bride to be, Kate, who was killed by an ice sculpture on their wedding day. But when his sister takes him to a psychic, Ashley, Henry falls for her, but Kate is haunting her from beyond the grave. Kate is jealous and doesn't want Henry to move on so quickly and she will make sure that Ashley doesn't get him by torturing her day and night with her rambles, believe me, with Kate's voice, that's scary.<br /><br />Over Her Dead Body is an alright movie, not sure if it's worth the money, but I'd give it a rental for you if you want to see it or are curious. Eva Longoria just doesn't have enough star power to make the film work, no offense to those who love her, she just belongs on the small screen over the silver screen. Not to mention the character of Ashley, she seems still not too likable with everything she pulls, or her \"\"gay\"\" friend, Dan, just again, not really likable. Just with some re-writing and proper attention, this film could have been better, but instead we get the average predictable romantic comedy that will leave with with an empty feeling.<br /><br />4/10\"\r\n1\tThis project was originally conceived as the movie version of popular Japanese manga SlamDunk! and that's not something new to Jay Chou, who made his movie debut playing a character from another wildly popular manga Initial D. Along the way, it was decided to incorporate some kung fu into the movie, so hence the title, even if the idea wasn't very original, with Stephen Chow's Shaolin Soccer coming to mind with martial arts and ball games combined.<br /><br />However, and thankfully, those scenes where kung fu actually influenced the games were kept to a bare minimum, and in Kung Fu Dunk, really quite unnecessary, because they don't add much to the plot nor drum up much excitement, and at most offered some cheap laughs and reminisced about the time when Stephen Chow used kung fu in football games. Jay Chou is comfortable in his role as a martial artist Fang Shi-jie since it's not the first time he fought using martial arts (Curse of the Golden Flower anyone?), and under the stunt direction of Ching Siu-Tung, he was made to look really believable as he trashes countless of gangsters in a bar as seen in the trailer, just to let you know who's boss.<br /><br />That was almost why his character is made a kung fu practitioner, and for the fact of giving him an excuse for being a top shot, able to shoot the hoops from practically any angle. And with Eric Tsang as a small time hustler Chen-Li who sees his potential and becomes his agent, he joins a university to play varsity basketball, but not without the initial objection of team captain Ting-wei (Chen Bo-Lin) and team star Xiao-lan (Baron Chen, in his big-screen debut). But you know with team members on the same side, it's not before long they combine their strengths to take on adversaries on the basketball court.<br /><br />And I will stick my neck out to say that this movie is to basketball just as how Goal was to football. It made the sport look good because of its charismatic characters, despite them dripping so much coolness and aloofness on the courts. Here, special effects and wire-work were employed to make the actors seem like professionals who can take out a top side in the NBA league, and in all honesty, really looked stunning, especially when they mimic various dunking moves, and performing combo-moves thanks to technology and stunt work. So in actuality, the kung fu elements don't really have to be in the movie. The stunt work itself will be able to justify most of the moves as they're quite grounded to reality, only having you to suspend belief that boys of average height have springs in their feet to leap that height for a professional dunk.<br /><br />Pity too that the number of games were only a handful, with the time spent on plenty of subplots, but each were loosely developed and flitted in and out of the story as and when they please. Things like the abandoned Shi-jie's quest to use the basketball games to get his parents to one day attend them, that of gangsterism penetrating and influencing games, and his love life with Charlene Choi in yet another flower vase role just to look good and do nothing else. Everyone's acting a little too cool, leaving little room for main characters to add depth. One of the key themes here is the realization of the importance of teamwork rather than on individual talent and ability, and it could have been brought out much stronger if the players themselves interacted a lot more off the court, than only on it, and during competitive games, apart from the high-fives and friendly passes.<br /><br />With the US$10 million budget, it is easy to see where the money went to - the effects, in particular, a massive fantasy sequence at a crucial point in the movie. It's quite flawless, nice to look at and probably justifiable on its quality alone, but again I like to emphasize, that even without those elements, the basketball stunts itself would still make this a decent movie with nifty basketball moves. And having Jay Chou playing for your team is a big boost to any hopes of a box office success.\r\n1\t\"I watched the movie while recovering from major surgery. While I knew it was only a \"\"B\"\" film, a space western, I loved it. It may have lacked the flash of high dollar productions it non-the-less held my imagination and provided great escapism. Sadly our society has so much available, discounting small attempts is too easy. In the same way that I can enjoy a even a grade school performance of Shakespeare, I can appreciate many levels of achievement for the art sake. I am a cop and found affinity with the retired LAPD. Dreams like his haunt me that I will be unable in the moment of crisis be able to respond to save another's life (or my own). while it was a romantic ending where Farnsworth did take out the bad guy (predictable) I needed a little happy romance where good can triumph. My world is really too cynical.\"\r\n0\tThanks to a dull, dimensionless screenplay by Neil Simon, and lackluster direction from Robert Moore, Chapter Two becomes a shrill showcase for Marsha Mason who received her third of four Oscar nods for Chapter Two giving the same performance here that she gave in Cinnderella Liberty(73), The Goodbye Girl(77), Audrey Rose(78) and Only When I Laugh(81);only this time she doesn't have a child to drag around. Chapter Two is the third and last feature film for Moore having previously directed Neil Simon's The Cheap Detective(78) and Murder By Death(76). Caan is miscast, the characters are mono-dimensional, the dialog is overly analytical, and there's virtually no establishing detail. The first half is a less-than-captivating, meet cute, coy romance between a blinkered Caan and a chipper Mason, and the dreary second half makes you long for the first half. The NYC locations as well as Joe Bologna, and a painfully thin Valerie Harper are irrelevant, but at least they provide some welcome distraction. And last and least, there's an awful song played during the credits.\r\n1\tThe cat and mouse are involved in the usual chases when Jerry dives into a bottle of invisible ink and discovers that it makes him vanish. Instead of seizing the opportunity to go spy on a girl mouse changing room or something, he uses his new-found invisibility to torment Tom. And it's pretty funny and quite inventive despite being a somewhat one-joke cartoon. And the action never leaves the interior of the house, which is usually the trait of below average T&J shorts. Still worth a 7/10.<br /><br />However, I'm not sure how an invisible mouse can cast a shadow on the wall, it defies physics and the very nature of being invisible itself.\r\n0\tRandolph Scott is leaving the USA for the greener pastures of Canada's British Columbia. He wants to start a cattle ranch there with partner Bill Williams and cook Lee Tung Foo. They stampede their small herd over a toll bridge erected by Victor Jory. Later Jory rustles their cattle and Williams loses his left arm during the fracas.<br /><br />From 1945 until 1962 when he retired, Randolph Scott made a series of good adult themed westerns, some of them considered real classics. Unfortunately the Cariboo Trail will never be listed among his best westerns. <br /><br />It's more like the material that Roy Rogers or Gene Autry might use. The story is downright silly at times. Williams who was along for the ride with Scott, he wanted to go prospect for gold as there was a big strike at the time. He doesn't blame the rustlers, he blames Scott for convincing him to make the trip for the loss of his arm. <br /><br />Also there's a scene in the film when Scott, Lee Tung Foo, and Gabby Hayes are captured by Indians. They escape because Gabby's mule has been taught to kick on command and he kicks away at the Indians allowing our heroes to escape. I'm not sure that would have played in a Rogers film.<br /><br />Furthermore the story actually wants you to believe that tyro prospector Randolph Scott accidentally stumbles on a gold strike after just a few lessons from prospector Gabby Hayes on how to find gold. <br /><br />This was Gabby Hayes's farewell feature film part. It would have been better had he gone out in a good western and in fact he had done a couple of better ones with Randolph Scott before this.<br /><br />I will say this, though no Caribou made any appearance in the film, this is one of the few Canadian locale films from the past that did NOT have any Mounties. <br /><br />But if I were you unless you are a big fan of Randolph Scott or Gabby Hayes, take the next detour off The Cariboo Trail.\r\n0\tThis film is so incredibly bad, that I almost felt sick watching it. Up until this point, the other installments had at least one good thing about it. Part 1 was suspenseful and gory. Part 2 was off beat and entertaining. Part 3 was interesting with great effects. Part 4 had great music, good special effects, and a new entertaining Freddy Krueger. Part 5 is more boring than anything I've ever seen before. Alice, a much prettier blond, from Part 4 is back with her boyfriend Dan. At parts, this supposed Elm Street installment turns into a daytime soap. The newer characters seem harsh, and even that sweet Alice has a chip on her shoulder. Freddy seems to be completely out of this one. He looks tired, and doesn't seem to be as gruesome. His one-liners seem out of place and different, where as in Part 4 they could be pretty funny. Leslie Bohem's story never gets off the ground and Stephen Hopkins' direction is so bad, that it makes my grandmother look good! The whole plot of this movie is ridiculous and unrealistic. It's also confusing and pretty stupid. Avoid Part 5 at all costs!\r\n0\tMost book adaptations are bad but this film left out key parts of the storyline and changed the description and some characters. They rewired the storyline and combined scenes and changed the order. They added ridiculous things into it that never happened in the book and would never happen.<br /><br />If i hadn't read the book beforehand it would have been an incredibly dull film, it didn't make you care about the characters, like them or dislike them. It turns the characters into jokes.<br /><br />Awful.<br /><br />Ridiculous.<br /><br />Waste of two hours of my life.\r\n1\tThis is a very fine and poetic story. Beautiful scenery. Magnificent music score. I've been twice in Japan last year and the movie gave me this typical Japanese feeling. The movement of the camera is superb, as well as the actors. It goes deep into your feelings without becoming melodramatic. Japanese people are very sensitive and kind and it's all very well brought onto the screen here. The director is playing superb with light an colors and shows the audience that it is also possible to let them enjoy a movie with subtle and fine details. Once you've seen this movie you will want to see more from the same director. It's a real feel good movie and I can only recommend it to everybody.\r\n0\tIn the third entry of the Phantasm series, Mike and Reggie continue chasing the Tall Man, assisted by a trigger-happy 9 year old, a black G.I. Jane and the spirit of Mike's deceased brother (he died in the original Phantasm). Number 3 is a rather disappointing sequel, since the gore and black comedy is a lot less inspired and exciting as it was in Phantasm II. I got the feeling the stress was merely laid on Reggie's incompetence as a lover and his talent as stand-up comedian. The humor in the previous film was a lot more dry and oppressed, which fits a story like this better. Also, the settings aren't as macabre here, plus the constant presence of the Tall Man (Agnus Schrim) isn't as obvious There still is plenty of gore but not half as satisfying this time. By the way, beware for the severely cut version as it shows most delightful killings off-screen. The entire Phantasm series is the lifetime achievement of Don Coscarelli, who wrote and directed 4 episodes so farthe fifth being in production. The first one is a semi-cult classic, the second is a horror-feast of gore and violence and the rest can easily be skipped. A. Michael Baldwin returns as Mike, even though James LeGros portrayed his character a lot better in Phantasm II.\r\n0\t...through the similarly minded antics of Eric Stanze. A not-particularly talented director has helmed a not-particularly good movie, yet I still found myself sitting through it to the closing credits, if for nothing more than to see what happens next.<br /><br />A rapist escapes from prison and calls up his old flame. After capturing her (even though she came willingly) and threatening her into having sex (another event she was also willing to do) he reveals that he has kidnapped three guys who wronged her in the past. He then decides to kill her (huh?) but is foiled and dies instead. The girl's mind snaps (or something like that) and she takes out her rage on the unlucky chaps in the basement.<br /><br />Alright, the writing sucks: it's long winded, loaded with ten-cent words and there is WAY too much of it.<br /><br />The acting sucks: what a minute, what acting? <br /><br />The filming sucks: home video is bad enough, but 20 minutes of graveyard footage is just a damn insult.<br /><br />And the budget is a joke: get it...'budget', that was the punchline.<br /><br />And yet there was a charm to the thing. Back in the 70's these kind of movies came out in theatres with actual budgets and talent attached to them, not in this day and age though. If you want to watch this kind of violent, sexually exploitive trash (don't lie, some of us do) then this is all your gonna get nowadays.<br /><br />Some brief hardcore shots in a sex scene, torture with fecal material, fun with axes, anal rape by broom stick and a lengthy shot of the crazy chick masturbating with the same broom stick are some of the better items on the menu.<br /><br />It's not good and it won't be remembered, but not since the heyday of Joe D'amato have people made movies like this.<br /><br />4/10\r\n0\t\"Having the In-Laws over for the weekend? Then this is the film to hasten their departure, failing that it will induce a catatonic state to bring a welcome relief from constant nagging.<br /><br />The film is supposedly set on board a luxury cruise ship, which is more superannuated car ferry; the plot has more holes than the average colander and a cast dredged from the depths of the celebrity D list. An interesting piece of added amusement is playing \"\"Spot the Villain\"\" as passengers join the ship. You won't be wrong!!!! With a script that sinks faster than a brick, clichéd set pieces and copious amounts of raspberry jam doubling as blood this film attempts to encompass the genres of thriller, action movie and gore-fest and simultaneously fails to fulfil any of them.<br /><br />A must watch film, if only to laugh at how bad it is.\"\r\n0\t\"Frank Sinatra plays a no-goodnik ex-soldier and frustrated writer, hard-living and hard-drinking, who returns to his Midwestern hometown and reunites with his estranged brother (Arthur Kennedy), now the town big-shot with a disinterested wife and headstrong daughter. Frank gets involved with gambler Dean Martin, uneducated flooze Shirley MacLaine, and has some run-ins with the law, but what he really wants to do is write and settle down with a good woman. Over-simplified drama verging on soap opera, with a role for MacLaine that is by turns overly 'colorful' and embarrassingly sentimental (her drunken belting on \"\"After You've Gone\"\" is however the film's highlight, and is expertly handled). Director Vincente Minnelli oversees it in straight-forward fashion, but he's in surprisingly glum spirits and most of the big scenes are flat or dense. The picture looks incredibly handsome in widescreen, with a nice eye for detail and composition, but the story and these characters are stuck in the dregs. ** from ****\"\r\n1\t\"It's cheesy, it's creepy, it's gross, but that's what makes it so much fun. It's got over the top melodramatic moments that are just plain laughable. This movie is great to make fun of. Rent it for a good laugh.<br /><br />The film centers around three women newscasters, during a time way before cellphones. They go to a small town to cover a festival, but they can't get a room to stay the night. And that's when they meet Ernest Keller. He's creepy in a Psycho kind of way. And he offers to let them stay at his home. But he doesn't tell them the truth about who lives there.<br /><br />Stephen Furst's performance is so amazing as \"\"The Unseen\"\", that he really carries this film. Most of the movie is kind of dull, although finding out the truth of Ernest's family is kind of interesting. <br /><br />Just seeing this cast in these scenes makes it worth a look. Barbara Bach and Doug Barr make nice eye candy. <br /><br />I consider the movie an old gem, hard to find and worth a look.\"\r\n0\t\"It's not just that this is a bad movie; it's not only that four of the \"\"best\"\" Mexican movie makers are in this film; and it's not only that the script is terrible. It's just that...this movie sucks...big time. This people are wasting money in terrible scripts. It's supposed to make a criticism about Mexican society but we're fed up with this kind of films. Is bad language supposed to be funny? I don't get it. Mexican cinema is in big trouble if this kind of movies are going to continue playing (and being written and produced).<br /><br />Please, don't think this kind of movies are well received in Mexico: We hate them and they don't reflect us.\"\r\n0\tWhat an appalling film. Don't get me wrong, Gene Hackman and Denzel Washington are good actors, but aside from a few interesting set pieces, the film is mostly taken up with hysterical submariners shouting, crying, sweating and generally freaking out when anything goes wrong.<br /><br />Take that with simplistic asides to make sure the audience still understand what's going on (the scene where Denzel Washington explains to a radio repairman how he must be like Scotty in Star Trek is nothing more than a joke) and you have a dumbed down thriller not worthy of the acting.<br /><br />Let us just hope that the real nuclear US Navy is not in the hands of such a script!<br /><br />\r\n0\tWhile exploring some caves with his wife, a doctor is bitten by a bat which causes some alarming side effects...<br /><br />Occasionally creepy atmosphere and some decent (though under used) makeup effects don't save this B horror flick from being a sub-par tale of man-becomes-creature. The Bat People aka It Lives By Night suffers from its senseless story that's awkwardly plotted and lackluster in pacing. The plot never seems to go anywhere much and the movie never offers an explanation for what happens, or even a satisfying conclusion for it all. The cast is fairly mediocre in their performances.<br /><br />Still I give the film some points for its haunting theme song and nice filming locations. The makeup work of the late Stan Winston is pretty good too, but it doesn't get much of a showcase here. A missed opportunity for sure. <br /><br />Definitely one of the lesser man-creature flicks out there.<br /><br />* 1/2 out of ****\r\n1\tPerhaps the funniest 'backstage at Hollywood' movie ever, especially for a look at comedy short factories like Keystone.<br /><br />Marion Davies should get a medal for bravery for taking a part where acting poorly in front of a camera is part of the role. Plenty of cameos for film buffs.\r\n1\t\"***SPOILERS*** ***SPOILERS*** Released in 1956,and considered quite racy at the time, Douglas Sirk's over the top candy colored melodrama is still a wonderful thing. The plot concerns the goings on in an oil rich dysfunctional Texas family that includes big brother Kyle, who is insecure, weak, wounded & very alcoholic, played by Robert Stack in a very touching & vulneable performance and his sluty sister Marylee played in an extreme manner by Dorothy Malone. Ms. Malone's performance is telegraphed to us via her eyes, which she uses to show us her emotions, which mostly consist of lust (for Rock Hudson) and jealousy (for Lauren Bacall). Malone is the only actress I've ever seen in movies who enters a room eyes first. Now don't get me wrong, her performance to say the least is an absolute hoot, and is one of the supreme camp acting jobs of the 1950's. But it is also terrible, because as likeable and attractive as Malone is,she's not a very good actress, and she's not capable of subtly or shading. Her performace is of one note. She does get to do a wicked Mambo,and in a great montage, as unloving daddy played by the always good Robert Keith falls to his death climbing a staircase, Sirk mixes it up with an almost mad Malone doing a orgasmic dance as she undresses. Stack,(who should have won an Oscar) & Malone, (who won the award, but shouldn't have) are the real stars of the film, the ones who set all the hysteria, both sexual & otherwise in motion, while the \"\"real stars\"\" of the film, Hudson & Bacall fade to grey & brown,which are the colors that they are mainly costumed in. Hudson who was a better actor then given credit for plays the childhood & best friend of Stack's, and the stalked love interest of Malone's who moans & groans over Rock through most of the film. But Hudson wants no part of her,and instead is in love with Bacall who is married to Stack. No one is very happy & no one is happy for very long. The Stack-Bacall marriage falls apart big time after a year, and Stack pretty much drinks himself into oblivion because he thinks he is sterile, and can't give Bacall a baby to prove that he's a man. Sirk who was a very intelligent man, and had a long & fascinating career both in films and theatre in Germany, ended his Hollywood career at Universal in the mid 1950's with a series of intense vividly colored \"\"women's movies\"\" or melodramas. Although they were mainly adapted from medicore or trashy source material,in Sirk's hands they became masterpieces of the genre. Sirk had a wonderful sense of color & design which he brought to play in these films filling his wide screen spaces with characters who played out their emotional lives among weird color combinations & lighting, make believe shadows, and lots of mirroed reflections. In \"\"Written\"\" the characters are always peeking out of windows, listening at doors or sneaking around. So in the end, after much violence, an accidental murder, a miscarriage & more Sirk ends the movie with a final & startling scene of a \"\"reborn\"\" and reformed Malone in a man-tailored suit, sitting at a desk foundling a miniature oilwell.\"\r\n0\tBig hair, big boobs, bad music and a giant safety pin.......these are the words to best describe this terrible movie. I love cheesy horror movies and i've seen hundreds..but this had got to be on of the worst ever made. The plot is paper thin and ridiculous, the acting is an abomination, the script is completely laughable(the best is the end showdown with the cop and how he worked out who the killer is-it's just so damn terribly written), the clothes are sickening and funny in equal measures, the hair is big, lots of boobs bounce, men wear those cut tee-shirts that show off their stomachs(sickening that men actually wore them!!) and the music is just synthesiser trash that plays over and over again...in almost every scene there is trashy music, boobs and paramedics taking away bodies....and the gym still doesn't close for bereavement!! All joking aside this is a truly bad film whose only charm is to look back on the disaster that was the 80's and have a good old laugh at how bad everything was back then.\r\n0\tRun away from this movie. Even by B-movie standards this movie is dreadful. It is also insidious in it's theme. The main theme is that people who reject society and have no respect for anything are cool and worth admiring. People who treat others with respect are losers. Guncrazy is a movie that speaks for the disenfranchised a lot better than this movie, see it instead.<br /><br />No normal kid would do what Trent does. State Troopers do not work as they do in this film etc. Seeing this movie makes you realize why writers use the hooker-with-a-heart-of-gold cliche. Mija is a completely unsympathetic hooker,who yes, has had a terrible life. However, she is such a terrible person the audience cannot identify with her.<br /><br />Usually there is one thing a movie can be recommended for, in this case there is none. It is such a ridiculous movie it insults the person who tries to identify with the main characters. The acting is adequate by B-movie standards and the direction presents nothing new or interesting.\r\n1\tPaul Reiser is one of my favorite people in show business. I have read both of his books and think that he is great. Peter Faulk can deliver a punch line with the best of them. The combination of the two is magic.<br /><br />This is a story about a family really getting to know each other. Through a road trip a father and son connect for the first time in their lives in the midts of a family crisis. They do all the things that fathers and sons are suppose to do in life...they are just doing them much later in life. The situations are very funny, but have the feeling that they could actually happen to people in real life (not obsurdly over the top or cartoonish). This is the first time that I watch Paul Reiser and fully believed every emotion that was portrayed. At times, his eyes look so sad.<br /><br />Gret movie and great story and plot. It has comedy and emotion but an uplifting message...Olympia Dukakas does a great job also :)\r\n1\tof watching this as a child. Although I'll probably find it god-awful now, it was kind-of spooky stuff as I was only seven or so. I also recall working on a Saturday-afternoon puzzle while watching it, so I wasn't really paying much attention. However, the scene with the rolling boulders has been burnt into my mind ever since. I've asked numerous people if they've seen this flick but to no avail. 12 years ago, one person mentioned that, possibly, he had seen it, but he thought it merely a dream; a fanciful piffle like wind. It's no dream, my friend. No dreaming now. Again, I haven't seen it since then, but I can't wait to find a copy and stuff it into my VCR. Anything that can stay embedded in my mind's eye for 23 years deserves a '10'.\r\n1\tLove this film also. Saw it when it was first shown i8n Germany in a small independent cinema in Frankfurt. It was really crowded and it was a very ambitious atmosphere to. The erotic of the movie hit the spectators and the discussion with Moritz Boerner the producer and director was always underlined by that. In his genre it was a very ambitious movie even especially when you think that it was an independent movie.<br /><br />It doesn't exist much copies of that film, Mortitz Boerner came from the theatre and made two or three short movies more worked for TV as well before he became a sort of therapist.<br /><br />For the people who wish to see that movie again, you could find it on his homepage which isn't that easy to search for but its possible.\r\n1\tThe Woman In Black is fantastic in all aspects. It's scary, suspenseful and so realistic that you can actually see it happening in real life. I first saw this on the TV back in 1989, and with all the lights off and the volume turned up, it was probably the most creepy experience of my entire life. I managed to get hold of a copy, and now, I make sure to bring it out every Halloween and show it too unsuspecting family members, who have no idea what they're in for, and all I can do is laugh with glee. As for the film:<br /><br />It starts out with a young lawyer named Arthur Kipps, who is assigned by his firm to go to the market town of Crythin Gifford to settle the papers of a recently deceased client - Mrs. Alice Drablow. <br /><br />This film starts off as a reasonably solid and interesting ghost story. But then, Arthur attends the funeral, and from that scene on, we do not feel safe. We are constantly on edge and biting our nails, and that goes on for the next hour or so, until the final, thrilling finale.<br /><br />A warning to all new viewers though: do not watch this alone...\r\n0\t\"Let's see...I'm trying to practice finding the positive in everything, so what kind thing can I say about the Pallbearer?<br /><br />I know! The performances were -- no, that won't work as they succeeded in draining all personality from Gwyneth Paltrow, usually so vibrant, and ended up creating caricatures out of Carol Kane and Barbara Hershey...<br /><br />Oh - how 'bout the story -- nope. That isn't gonna fly either, as it was doze-inducing. What was the genre anyway? It wasn't funny, that rules out comedy. It wasn't interesting enough to be dramatic. Was that a romance between Schwimmer and Paltrow? I have to ask, as I can't be sure - let's just call it \"\"losers in like.\"\" I'm sure those behind this film started with a vision, I mean, they must have had one to pitch to the studio suits, but I need help finding it.<br /><br />Even if I were a patient person who could forgive the pure stupidity of the story, I couldn't in good conscience recommend a film that allows a guy to go into a professional job interview in a windbreaker and messy, fluffy, stupid hair. Speaking of hair -- are we supposed to be amused by the deliberate black roots and platinum locks worn by Hershey?<br /><br />What am I doing? I already lost 97 irretrievable minutes in the actual watching of the movie -- I cannot devote any more time to this loser.\"\r\n0\tNot since Caligula have I considered turning off the movie half-way through....but then with this one, I was only 15 minutes in when I considered. Unfortunately, I did make it all the way through. Make sure that you do not.<br /><br />It's not that Cradle of Fear is shocking or gory or scary or frightening or sexual. It's that it's not any of those things, yet it so desperately wants to be all of them. Instead, it's boring, trite, ordinary, predictable, and unexceptionally poorly executed (shot on video, high school special effects, no sense of even basic visual storytelling, dialog barely audible...not that it's worth hearing, though).<br /><br />This movie is proof for the argument that even the straight-to-video distributors need to draw a line in the sand somewhere.\r\n0\tSo what's the big fuss out of making an INDIANA JONES wannabe when you have an actor who's cast as a fictional dude from adventure storybooks who doesn't want to go out on an adventure??? Whoever wrote the script for JAKE SPEED was probably fired, but for whatever reasons possible, this movie greatly lacks in excitement! That doesn't mean it has no action, but look on the dark side of the picture. This has got to bare no resemblance to INDIANA JONES or other action-adventure thrills containing cliffhangers and narrow escapes, and JAKE SPEED was promoted that way using clever propaganda to make me and several others interested in it! Besides, I've never heard of the guy, so who needs his attention?\r\n0\t\"This is one of the worst film adaptations of a musical ever made. The stage version of A Chorus Line is wonderful. This movie misses the mark in almost every way. Even the casting is baffling. Take Audrey Landers as Val. \"\"Dance 10 Looks 3\"\" is Val's song. Val's story is that she is a great dancer but a 3 in the looks department. Yes, she finds a solution, but ultimately she's a great dancer. What do the brilliant filmmakers do? They hire an actress who can't dance and is famous for looking great. Way to miss the boat.<br /><br />Then there's the choreography. I'm sure Michael Bennett was turning over in his grave. Why didn't they use his choreography? It really can't be improved upon.\"\r\n0\t\"OK I saw this movie to get a benchmark for bad but with this movie it's Unisol's best movie now plot Luc Devereux is now a technical expert who is working with the government with his partner Maggie, who's been through countless hours of training and combat with him, to refine and perfect the UniSol program in an effort to make a new, stronger breed of soldier that is more sophisticated, intelligent, and agile. All of the new Unisols, which are faster and stronger than their predecessors, are connected through an artificially intelligent computer system called SETH, a Self-Evolving Thought Helix. When SETH discovers that the Universal Soldier program is scheduled to be shut down because of budget cuts, he takes matters into his own \"\"hands\"\" to protect himself. Killing those who try to shut off his power, and unleashing his platoon of super-soldiers, led by the musclebound Romeo, SETH spares Deveraux, only because Deveraux has the secret code that is needed to deactivate a built-in program that will shut SETH down in a matter of hours. With the help of a hacker named Squid, SETH takes human form. Not only must Luc contend with ambitious reporter Erin, who won't leave his side, but Luc also must contend with General Radford, who wants to take extreme measures to stop SETH. SETH has also kidnapped Luc's injured 13-year-old daughter Hillary, and is now holding her hostage. Luc is the only person who can rescue Hillary, because Luc knows firsthand how a UniSol thinks, feels, and fights. now there are problems like in any movie like did anyone find it weird how a reporter just-so-happened to be there and The soldiers can take being flattened with a truck however when Vanne Damme shoots them with a gun with one bullet and they die and the final fight scene was unbelievable when Luc is now human and Seth is 5x stronger and faster than any other Unisol and Luc can take a hit from him. with the final fight when Luc smashes him to pieces I was really surprised that the pieces didn't melt and reform him (Terminator 2). another thing that bugs me is how the hell does Vanne Damme get good actors to play relatives I mean in the case of Vanne Damme it's completely off the grid of how Science Fiction this movie is. The Music Score now that must have a mention have you ever listened to a song where you'd rather cut a blackboard with a knife well Universal Soldier 2 is like that. The good points are there's no Dolph (HOORAY) and unlike the 1st one there is only one naked scene whereas in the 1st one there are many (I'm still haunted by the scenes in #1) also the actors in this have some talent whereas in the first one the casting guys were sadists (if you don't believe me look it up)\"\r\n1\tI would just like to state that this may be biased, as I am a producer on the film. However, I will maintain some sense of dignity.<br /><br />The star of the film, Oscar Ovies, gives a stellar performance as Jeff Grinderlin, a nebbish hypochondriac who spends more time worrying than living. He brings a certain touch to his character that really allows the audience to connect with him, by stating his mind often and with a sense of harsh comedy. His mother, played by Christine Haber, is the constant support beam, that without, he would crumble upon himself. His friends also lend a hand in Jeff's life, often making choices for him rather than letting him use his free will... which often times he neglects is there anyway. <br /><br />The writing is superb, and the conversations flow like scenes from a Kevin Smith movie, with half as much Ben Affleck boo-hoo fests.<br /><br />The camera work is a little shoddy at some points, and the sound could also use a boost, however the performances out shine the minor details. It is also backed by a beautiful soundtrack with local talents and an exceptional composer.<br /><br />All in all, this was a treat. A rare gem, among many jewels.\r\n1\tThis is one of those movies that they did too much promoting for. If you watch T.V., then you might as well not watch the movie. Almost all the funny scenes are spoiled in the previews, except one which just happens to be Jennifer Annisten being the funny one. It is typical Jim Carrey humor and it is really funny. Just don't go see this movie expecting to be surprised. All in all, if you like Jim Carrey or comedies this is a must-see, otherwise just watch the previews and you'll be just as satisfied.\r\n1\t\"So I rented \"\"Still Crazy\"\" instead. When I described Hardcore Logo to the guy at the video store, he said that sounded kind of like Still Crazy. So I rented it. Was I disappointed? Well, yes, as Still Crazy focuses on a classic rock band rather than a punk band, but that's OK. Still Crazy tells the story of the Strange Fruit, a rock band that broke up in the 70s at the peak of their popularity at a large rock festival. Twenty years later, the band members are all struggling to make a living, and are offered the opportunity to play a concert at the twenty year anniversary of this festival. They take up the offer and decide to reform on a permanent basis, touring Europe in the process. Some quite funny hijinks ensue, and all the characters go through subtle changes. Watching this movie, you feel more like a viewer of a carefully edited documentary than a participant. And that's not bad at all.\"\r\n1\tThe movie held my interest, mainly because Dianne Keaton is my favorite actress. I disagree with some of the other posts on the grounds that the plot was not convoluted. I had no trouble following it (maybe some people had too much eggnog the night before). The movie was very sad and touching as well. What more do you want? Alexa Davalos is a fine new talent (beautiful too), and Tom Everett Scott does an excellent job with his part as well. The relationship of the mother and daughter may have been a bit unrealistic, but the behavior of the young people in the movie was not. It was tragically sad but enlightening. It sure beat the other shows that were on TV New Years Day evening\r\n0\t\"MYRA BRECKINRIDGE is one of those rare films that established its place in film history immediately. Praise for the film was absolutely nonexistent, even from the people involved in making it. This film was loathed from day one. While every now and then one will come across some maverick who will praise the film on philosophical grounds (aggressive feminism or the courage to tackle the issue of transgenderism), the film has not developed a cult following like some notorious flops do. It's not hailed as a misunderstood masterpiece like SCARFACE, or trotted out to be ridiculed as a camp classic like SHOWGIRLS. <br /><br />Undoubtedly the reason is that the film, though outrageously awful, is not lovable, or even likable. MYRA BRECKINRIDGE is just plain mean. As a Hollywood satire it is cold-blooded and mean-spirited, but in a hollow pointless way. MYRA takes for granted that Hollywood is a corrupt town, but goes further to attack such beloved icons as Laurel and Hardy, Shirley Temple, Judy Garland and Gary Cooper. The film seems to imply that everything about Hollywood is by its very nature vile. It seems to think that there is something inherently courageous about mocking sacred cows, but doesn't supply a rationale for doing the mocking in the first place. The film is also viscously anti-American and anti-establishment and anti-this and anti-that, but all in a superficial, late-1960's, trendy way. Like CASINO ROYALE; SKI-DOO; I LOVE YOU, ALICE B. TOKLAS and other would-be hip epics, MYRA is a middle-aged vision of the hippy-dippy youth culture. It tries to embrace the very attitude that it belittles. But instead of being cheerfully self-mocking, MYRA makes no attempt to conceal its contempt for everything that comes within its grasp. MYRA BRECKINRIDGE has the humor of a bully; there's not a single moment of innocence in it. Its intentions aren't honorable. TIME magazine aptly described it as being \"\"about as funny as a child molester,\"\" but it's not nearly as sympathetic.<br /><br />For instance, poor Mae West bore the brunt of so much of the criticism aimed at the film, being described as looking like everything from an aging drag queen to a reanimated walking corpse. The octogenarian star obviously didn't know just how ridiculous she looked playing a lecherous talent agent lusting after men young enough to be her grandsons or even her great-grandsons. But, director Michael Sarne had to know, but he used her anyway. Why? Because, she apparently was the joke. Just like John Huston, John Carradine, Grady Sutton, Andy Devine and other veteran performers in the film, they are there only so the film can mock their age and use them to trash their film images. They are cast as smarmy self-parodies, as is Rex Reed, the arrogant, fey film critic, who is cast as just that in the film. But the real Reed, the celebrity hound, jet-setting, talk show gossip, can be charming in an obnoxiously funny way; but as Myron, Myra's alter ego, he is just obnoxious. Again, apparently for Sarne, Reed is the joke.<br /><br />You watch MYRA BRECKINRIDGE and you don't see actors, you see victims. None more so than Raquel Welch. No one will ever accuse Welch of being a great actress, but it is a testament to her tenacity and her appeal that she survived this film and her career prospered. Being in almost every scene, Welch was front and center as a target for abuse aimed at the film, but to her credit, she gives a remarkably nuanced performance. Though, of course, centered between the scenery chewing Huston and the almost catatonic West, Welch doesn't have to do much to strike a good balance. Even so, she renders her horribly unfunny dialogue with a deadpan smirk, with just the hint of self-righteous glee that would do any James Bond villain proud. Legend has it that Welch was snubbed by a condescending West and subjected to repeated verbal abuse on the set by bumbling director Sarne, not to mention being featured in one degrading scene after another, making it all the more remarkable that she was able to give such a cool and collected performance.<br /><br />The film's only intriguing element is trying to figure out just what the film's agenda is. The whole story is a fantasy fable, which should indicate that it has a moral to deliver, but what that might be is anybody's guess. With all of its talk about destroying \"\"the last vestigial traces of traditional manhood from the race,\"\" it would seem to have a feminist axe to grind. But as a feminist, Myra is a monstrous figure, a sexual predator. Besides, Myra isn't a woman, rather she is a delusion of Myron, who presumably is a gay male. That might explain the male rape scene as well as the character's love/hate attitude toward the macho, seemingly straight, deadhead Rusty, but it doesn't explain his/her obsession for and the supposedly lesbian tryst with Farrah Fawcett's Mary Ann. The film is obsessed with sex, but can hardly be accused of being in favor of the sexual revolution; all the sex is treated as being, if not dirty, than at least perverse and degrading. Turning to Gore Vidal's original novel isn't of any help, because it is as confused and pointless as the movie.<br /><br />And this is a rare movie that actually seems to hate movies. Not just movies as a business, but movies as part of the culture as well. The film itself is wall-to-wall arcane references to old movies, all of which director-screenwriter Sarne approaches with a seething disdain. He has raided the film vaults of 20th Century-Fox and peppered the film with snippets of old films, not as an homage or to provide a social commentary, but to mock the innocence of old Hollywood. How can an artist -- if you generously want to call Sarne that -- make a work of art if he already hates the very medium he is working in? The very effort is totally self-defeating.<br /><br />MYRA BRECKINRIDGE doesn't seem to be in favor of anything other than being just nasty. It hates Hollywood, it hates America, it hates sex, it hates gays and straights and women and men and old people and young people and Laurel and Hardy and, well, you name it and it probably has a scene showing contempt for it. In a very sad and sorry way, MYRA BRECKINRIDGE may be the first punk manifesto, a celebration of pop culture nihilism.\"\r\n1\tI´m glad that someone has made a movie about how hard it is to risk your heart for a second time. Or third. This movie is exactly what it promises to be - lovely, amusing and it gives you this good feeling around your heart when it ends. The plot might be not very inventive, but there are millions of ways to tell the story and they have not been all used yet. The cast is perfectly selected although Scott Wolf does not look like a father of an eight year old not even when he is wearing a suit. So, the sparks are on all the right places, supporting cast is lovably supporting and although you could probably predict the whole movie you would not want to switch the channel. It is just the right sort of entertainment for a Sunday evening.\r\n1\t\"Haunted by a secret, Ben Thomas (Will Smith) looks for redemption by radically transforming the lives of seven people he doesn't know. Once his plan is set, nothing will be able to stop him. At least that's what he thinks. But Ben hadn't planned on falling in love with one of these people and she's the one who will end up transforming him. Will Smith is back again with Director Gabriele Muccino, after the life inspiring movie \"\"The Pursuit of Happiness\"\". \"\"Seven Pounds\"\" is yet another life changing movie experience, which not only does reminds you of their previous collaboration, tearful, but inspires you joyfully in the end. Will Smith, also is the producer again with some of the others. These movies are very realistic, which depicts a common man's life & his struggles through life. Seven Pounds might have took some time to gain it's actual momentum, but just after half an hour of the movie, the movie is all set to rule your heart. Also, this movie has some twists revolving around, which lets the viewers keep guessing. Director Gabriele Muccino once again is the winner all the way, with his emotional yet inspiring message. He makes all the characters of the movie very real, that the people would actually find themselves in somewhere of the movie. Along with the director, Will Smith is yet another winner, with his superb acting skills. Once again, the duo of the director & the actor works as a charm. Also, there are other talented actors in the movie who did their part pretty well. Rosario Dawson, beauty with brains, that's what she can be called. She looks beautiful & does her part extremely well. Barry Pepper, gives a great support to the movie & Woody Harrelson does the same, although Woody did not had much screen timing(would have been good if he had more). You won't forget this movie easily. Watch this movie & change your life. Top class cinema!\"\r\n0\tEven for the cocaine laced 1980's this is a pathetic. I don't understand why someone would want to waste celluloid, time, effort, money, and audience brain cells to make such drivel. If your going to make a comedy, make it funny. If you want to film trash like this keep it to yourself. If you're going to release it as a joke like this: DON'T!!! I mean, it was a joke right? Someone please tell me this was a joke. please.\r\n0\t\"I have heard about this novel a long time ago, many of my friends have recommend me to read it. I searched it in every place and finally found it. This is a book that every man should read, because it is genius and because of it's vision. I enjoyed every page.<br /><br />I knew about the movie and could not wait to see it. When I finally did I was very disappointed, many things that are in the book are not in the movie (I do not think that this is a spoiler) that just makes the movie not logical... Michael Radford might be a good director, but a bad writer. Especially as a book adopter. The movie is not dark at all, the writing is really bad, the only thing that is good, even great, is the acting. John Hurt is an amazing actor and the only face I myself could see as Winston Smith.<br /><br />What angers me the most are the people in IMDb that called this \"\"The Best Adaptation Ever\"\" without even reading the book! Or knowing anything about screen writing!<br /><br />You can only understand the brilliance of the story by reading the book, do not consider this as an alternative. As a fan of the book, I was very disappointed.<br /><br />The points I gave for this movie goes for the acting.\"\r\n1\t\"And look how a true story, \"\"... with a little help of it's friends...\"\" : a welldone and touching script, a good directing and a surprising great acting from a bunch of \"\"no-name\"\" actors, especially from the 4-yr-old Jodelle Ferland, becomes a must seen movie. 9/10\"\r\n1\tThis movie made me very happy. It's impossible not to love the smart and sweet orphan girl who changes the heart of a selfish lawyer only interested in pursuing success in her career. This is a very optimistic movie and I sincerely believe that we need more films like Curly Sue. It touched my heart.\r\n0\tThis could be looked at in many different ways. This movie sucks, its good or its just plain weird. The third one probably explains this movie best. It has strange themes and just has a strange plot. So who else but Christopher Walken would play in this no matter how bad, average or even how good it might be.<br /><br />The acting was what you would expect especially out of Ben Stiller. Jack Black I have always liked so you know what you will get out of him but this is not bad. Christopher Walken is always off the wall. He is always enjoyable to watch no matter how bad the movie is. Comedy wise it is somewhat funny. This of course meaning that it does have its moments (though very few) but can get a little over top here and there which makes me feel like the movie is just desperate for laughs but of course not in a good way.<br /><br />The directing was average as well. Barry Levinson is a slightly overrated director and really did not do a good job here. This movie seemed that it had a lot more potential and he did not do much to reach it. Just very average and did not seem like a lot of effort was put into making this film.<br /><br />The writing is the key to a good comedy. Obviously that means the writing here failed. At best it is below average. Considering it does have its moments it was not too horrible. That is never a good thing to say about a movie though. <br /><br />If not for Christopher Walken and it stupid ridiculous ending I would have given it a lower rating. He is always quite a character in his movies. Stil this is just a whacked out strange movie with strange characters that really don't go anywhere. Not completely horrible but I would not really recommend it though because it is a very forgettable movie.\r\n0\tThis film features two of my favorite guilty pleasures. Sure, the effects are laughable, the story confused, but just watching Hasselhoff in his Knight Rider days is always fun. I especially like the old hotel they used to shoot this in, it added to what little suspense was mustered. Give it a 3.\r\n0\t\"\"\"Loonatics Unleashed \"\" is the worst thing that could happen to the classic characters created by Chuck Jones . The \"\"Loony Tunes\"\" have many spin -offs and different versions , some were good ,others not very much .But \"\"Loonatics \"\" it's the worst .The concept is stupid and derivative of shows as \"\"The Power Rangers \"\" and \"\"Teen Titans \"\" . There wasn't any similarity with the original characters and the stories are boring and poorly made . The new designs are ugly and the animation is pathetic . This show just doesn't work .This horrible waste of animation is a complete failure and this shouldn't have be nothing more than a bad joke . Lame ! Zero stars\"\r\n0\tThis movie seems to send the wrong message. There can be morality without using Christ. Poeple of other religions, I believe, can get into heaven. I am a Catholic who goes to church every week, but I do not agree with such Christian arrogance. This is the worst time travel movie I have ever seen and I've seen Timeline.\r\n1\tFairly good romantic comedy in which I don't think I've ever seen Meg looking any cuter. All the players did a good job at keeping this a lively romp. Of course, in the real world no genius mathematician would even glance at some grease monkey, but that is why I love romantic comedies....one can just totally forget reality and have a good time. Nice film. Damn, Meg is a babe, eh?\r\n1\t\"\"\"Read My Lips (Sur mes lèvres)\"\" (which probably has different idiomatic resonance in its French title) is a nifty, twisty contemporary tale of office politics that unexpectedly becomes a crime caper as the unusually matched characters slide up and down an ethical and sensual slippery slope.<br /><br />The two leads are magnetic, Emmanuelle Devos (who I've never seen before despite her lengthy resume in French movies) and an even more disheveled than usual Vincent Cassel (who has brought a sexy and/or threatening look and voice to some US movies).<br /><br />The first half of the movie is on her turf in a competitive real estate office and he's the neophyte. The second half is on his turf as an ex-con and her wrenching adaptation to that milieu.<br /><br />Writer/director Jacques Audiard very cleverly uses the woman's isolating hearing disability as an entrée for us into her perceptions, turning the sound up and down for us to hear as she does (so it's even more annoying than usual when audience members talk), using visuals as sensory reactors as well.<br /><br />None of the characters act as anticipated (she is not like that pliable victim from \"\"In the Company of Men,\"\" not in individual interactions, not in scenes, and not in the overall arc of the unpredictable story line (well, until the last shot, but heck the audience was waiting for that fulfillment) as we move from a hectic modern office, to a hectic disco to romantic and criminal stake-outs. <br /><br />There is a side story that's thematically redundant and unnecessary, but that just gives us a few minutes to catch our breaths.<br /><br />This is one of my favorites of the year! <br /><br />(originally written 7/28/2002)\"\r\n0\tI caught this on Showtime tonight and was amazed by how a movie with such a interesting premise could wind up being so unbelievably awful. WHO'S YOUR DADDY? stars Brandon Davis as an adopted high school senior Chris Hughes, a geek who inherits the heir to a porn empire left to him by his biological parents. Though the premise sounds like the movie could be a lot of fun, it is ruined by inept directing from first-time director Andy Fickman, a clichéd and predictable screenplay, and acting that is even bad by direct-to-video standards. Even the normally funny Charlie Talbert turns in a surprisingly dismal performance as the best friend. Ali Landry is the only good part of this lame and unfunny dud. 1/10\r\n0\tALIEN LOVE ( As this movie is known in Britain ) is a very strange movie . I don`t mean that it`s an esoteric art house movie in the style of Peter Greenaway or Derek Jarman , I mean it`s a TVM with swearing , sex , some really good T&A , a bad script and a very retro feel . You can just imagine someone like John Hughes directing this ten years earlier , though of course he would have cut out the T&A <br /><br />Going back to the bad script , one of the problems is that few of the characters have any type of motivation especially Amanda . Why does she pick up Connie at the bar ? Just so she could meet an alien ? Do you see what I mean about retro ? ET , SHORT CIRCUIT and a whole lot of other movies from the mid 1980s had this type of plot with most of them being more defined and convincing than the one seen here . The storyline continues to follow an ill defined , unconvincing and illogical path <br /><br />That said I did find ALIEN LOVE watchable and not only down to the T&A on display . As a a sci-fi sex comedy it`s much better than FLESH GORDON and EARTH GIRLS ARE EASY\r\n1\t\"Oh man, why? \"\"Six Degrees\"\" is a show about this so called theory that we all are linked by someone. If focus on the lives of a group of people and the consequences of their actions.<br /><br />When I first heard of this show, it didn't caught my attention at all. It seemed too ordinary, actually. Then, i saw some episodes... and loved it! First of all, the characters. They are all well-written and different from each other. There's a alcohol addicted, a woman whose fiancée cheats on her, a woman who just lost her husband, a driver who has a troubled brother and so on... Unlike what we're used to, most of the characters interact with each other in casualties, like in our daily routines. Great! My favourite ones are Mae, Carlos and Whitney.<br /><br />Then, the cast. They are all great. Jay Hernandez, from \"\"Hostel\"\", shows here his acting habilities in a more 3d character than his previous work as Paxton. The other ones give great performances too, specially Campbell Scott, who plays Steven and Bridget Moynahan, who plays Whitney.<br /><br />Well when i came to IMDb, after watching some episodes, i couldn't believe that it got cancelled. Seriously, i can't understand the low ratings.<br /><br />It's too bad it didn't have more than one season. It would really be a good show to follow!\"\r\n1\tMy definition of a great movie is if you want to continue to see it over again. This movie for some reason strikes a cord in me even though the scenes with Scott Glenn still make me winch; I watch it over and over again and love the music!\r\n1\tRather nasty piece of business featuring Bela Lugosi as a mad scientist (with yes, a Renfield-like assistant and his mother, a dwarf and yes, the scientist's wife (sounds like a Greenaway movie actually lol). Lugosi gives his wife injections from dead brides (why them? Who knows?) so that his wife can keep looking beautiful. He gets the brides after doing a pretty clever trick with some orchids that makes the brides collapse at the altar. After another bride bites the dust, a newspaper reporter just HAPPENS to be around for the scoop, and decides to snoop around for a story. She gets all sorts of clues about the orchids and Lugosi. Heaven knows where the police were. Soon she's off to Bela's lair, when she meets a sort of strange looking doctor who may or may not be eeeevil. It all cumulates in a totally far-fetched plan to have a fake wedding to capture the mad scientist, but it seems that the scientist has x-ray vision, as he foils her plans, Oh no! What will happen? I actually liked this movie as a bit of a guilty pleasure. Lugosi is great here, his hangers-on are all very very strange, the story is actually quite nasty in some places which makes it all most watchable. A fun little view.\r\n0\tRace car drivers say that 100 mph seems fast till you've driven 150, and 150 mph seems fast till you've driven 250.<br /><br />OK.<br /><br />Andalusian Dog seems breathtakingly bizarre till you've seen Eraserhead, and Eraserhead seems breathtakingly bizarre till you've seen Begotten.<br /><br />And Begotten seems breathtakingly bizarre till you've seen the works of C. Frederic Hobbs. Race fans, there is NOTHING in all the world of film like the works of C. Frederic Hobbs.<br /><br />Alabama's Ghost comes as close as any of his films to having a coherent plot, and it only involves hippies, rock concerts, voodoo, ghosts, vampires, robots, magicians, corrupt multinational corporations, elephants and Mystery Gas. And the Fabulous Woodmobile, cruising the Sunset District in San Francisco, of course.<br /><br />What's really startling is that somebody gave him a LOT of money to make Alabama's Ghost. There's sets, lighting, hundreds of extras, costumes, lots and lots of effects. Somehow that makes Alabama's Ghost SO WRONG. You watch some awful cheeseball like Night of Horror or Plutonium Baby, and at least some part of the weirdness is excusable on the basis that they were obviously making the film off the headroom on their Discover cards. But Alabama's Ghost was made with an actual budget, and that's EVIL. I mean, I've got a script about a tribe of cannibals living in Thunder Bay, Ontario, building a secret temple in the woods out of Twizzlers, and nobody's beating down MY door waving a checkbook - how did this guy get the funds for FOUR of the flakiest movies ever made?\r\n0\tA family looking for some old roadside attractions to include in the father's coffee-table book come across an ancient, decrepit old freak show run by an eccentric one-eyed man. When their family van breaks down upon leaving the sideshow, they're forced to stay at a nearly abandoned fishing camp that was the site of a prison break decades prior.<br /><br />There have been many films in the 'freak' subgenre of horror, ranging from Tod Browning's beloved 'Freaks' (1932) to Alex Winter's hilarious 'Freaked' (1993). Those are both classics (or soon-to-be with 'Freaked'). 'Side Sho,' however, never will be. And if it ever does reach classic status. . . well, it will be an obvious clue to the sad state of our genre. From the ridiculously bad opening song to the 17-year-old daughter that's obviously older than her natural mother, this film did not have much going for it. The writing was subpar, but not completely awful. . . just boring. The direction was poor, and the rare freak effects were pretty horrendous and unbelievable. The acting was abysmal and the casting was even worse. Anyone who would believe the ages of these two camp-age teenagers must not have met a teenager in a long, long time. There was far from enough gore & violence to make up for the lack of any other quality. . . and when there was a bit of violence, it was not well done at all. And, I can't forget to mention the ending fight scenes which were, with all honesty, some of the worst I've ever, ever seen in a film. Overall, this is an easily forgettable and poorly made horror film that deserves to be left alone at the bottom of the dollar bin.<br /><br />Final verdict: 2.5/10.\r\n0\tI like silent films, but this was a little too moronic. As much as I wish I could say that it was worth the hour I stood up I can't. I don't think any version of the movie even comes close to the book. And don't try it out on kids, they might freak. And the lady who played Pollyanna, how old was she? 38? I know the labor laws were different back then... BUT COME ON PEOPLE.\r\n0\t\"With no affinity towards any type of filmmaking, and a healthy appreciation of documentaries, I can honestly say I was angry at myself for bothering to sit through the entire length of \"\"20 Dates\"\". I won't waste your time with the plot, you may read other reviews. I will say though that Berkowitz's hyper, Woody Allen-style narration was extremely annoying. You either wished he'd lay off the coffee or ingest some tranquilizers. And it's potentially apparent to Berkowitz himself that this film was a bad idea, as parts of it details his trials to finance the documentary. Forgive me for disguising insults as compliments, but I'll give credit to Berkowitz for having the skills to convince some idiot to finance this horrid piece of ****. I appreciate the boundaries & intentions of the film here, but even when regarding the standards Berkowitz sets for himself, he fires off and misses on all levels. In closing, I'm sure many of these female companions were not at ease going on a date with a twitchy wanna-be filmmaker, and therefore I question the film's sense of authenticity. Hey Myles, I loved your film the first time I saw it... when it appeared as an episode of Seinfeld or was a film directed by Woody Allen or Kevin Smith.\"\r\n0\t\"I saw the trailer for this film a few months prior to its release, and MAN, did it look scary, Especially how this film was based on a real life phenomenon. I was incredibly interested, and thought that this could finally be a decent horror/thriller film after years if crap. Well you know how movie trailers make a film look better than it is: maybe by showing all of the creepy parts or by overdramaticizing certain elements. The advertisements for the movie did both, which lead to my ultimate disappointment.<br /><br />By no means is this \"\"the most disturbing movie in years\"\". Hell, I doubt it was the most disturbing movie of that week's release. This movie takes the whole \"\"based off of fact\"\" thing too far.<br /><br />This movie wasn't complete crap. I must admit, it held my interest and Micheal Keaton was believable as a man searching for answers by supernatural means. Other than that, though, this film is one big cliché. After John's wife dies, he learns about EVP, which transmits the voices of the dead into everyday electronic appliances. He all of the sudden receives messages from his wife! My God! It's not just his wife reaching him, it's other dead people. Gee, imagine that. A movie about helping dead people. Come on, give me a break! The clichés don't stop there. There's also the obligatory clock-stopping-at-the-same-exact-time-every-night trick and three evil spirits that menace our hero. Not only was the movie cliché, it WASN'T SCARY. The film literally had two jump scenes, and those two scenes are almost identical. The ending is horrible, as it leaves the door WIDE OPEN for a sequel. There's also an ending message with a message saying how only 1 out of X voices heard through EVP are threatening, with a nice happy tune playing. Way to break the mood, you guys. Jeez! In the end, if you want another forgettable horror film, see White Noise. The only reasons I could possibly think anyone would watch this film for is that either that the person is a Keaton fan or that they are interested in EVP. Sure, the EVP aspects may be slightly interesting, but I don't like my movie concepts to be shoved down my throat and blown up in my face. This film tries to be scary, original, and disturbing, but it's just the opposite. You know you have a lame movie when the commercials use the ghosts to talk about there film. \"\"I WILL SEE THIS FILM NO MORE.\"\"\"\r\n1\tgone in 60 seconds is a very good action comedy film that made over $100 million but got blasted by most critics. I personally thought this was a great film. The story was believable and has probobly the greatest cast ever for this type of movie including 3 academy award winners nicolas cage, robert duvall and the very hot anjolina jolie. other than the lame stunt at the end this is a perfect blend of action comedy and drama. my score is **** (out of ****)\r\n0\tMan I must say when I saw the trailer I was excited. Futuristic soldiers, taking on bad ass Vampires led by genre vet Michael Ironside....In Space. I mean I wasn't expecting high art, but It looked like a potential B movie classic. This was no doubt a TV pilot, reedited some time later into a feature film, after it wasn't picked up. Alright I'll start with the films few good points, the action was competent for a lower budgeted film, and the CGI and locations used were passable. Now onto the bad, first off Michael Ironside was barley in this, and his performance here....well it was cheesy not in a good way. But as I said he wasn't in it much anyways, so I can't blame him. One thing that was really stupid, was the PETA type group for Vampires', no I'm not joking, it's the dumbest most unbelievable thing I've seen in along time, and it's taken seriously. Also this film commits one of the major B movie sins, it teases a lesbian scene, and doesn't deliver. Most of all what sinks this film is nothing really happens. Since it was meant to be a pilot the script is almost nonexistent and it doesn't have a regular ending. Even the main villains, only come in towards the end. If ever a movie needed to up the Sleaze and gore factor, it's Vampire Wars. In closing I will say the main crew on the spaceship, were all very capable actors and could very well put this mess behind them, and go on to bigger and better things. They just had nothing to work with here.\r\n0\tThis is one of those films the British Lottery Fund wastes its money on. The main problem is a rambling script which gets nowhere. The characters are not interesting, the story is conventional and insipid, the only thing of interest is the location: the city of Genoa (Genova in Italian). Having only a superficial acquaintance with Genoa, I had no idea of the intricate alleyways of its Old Town, and that the city was so interesting. I had thought Genoa was dull. I am delighted to say that I have been proved wrong. So from the travelogue point of view, this film has interest. The film contains one splendid performance, by a little girl named Perla Haney-Jardine. She has already made seven films despite being only 12, so she seems determined upon a career as an actress, and judging by her performance in this film, she should go far, as she is a natural and has a great deal of talent. Colin Firth, a reliable and professional actor, was on hand for the filming and when asked to be earnest, he was earnest, and when asked to be anguished, he was anguished. But somebody forgot to give him any worthwhile dialogue. The script is a total shambles. Catherine Keener does exceptionally well in a supporting role, and showing sympathy comes naturally to her, so that everybody would like to have her around (I would like to tell her every time I feel a cold coming on, as I know she would get me a soothing hot drink). So there we have it: Genoa's fascinating narrow alleys, an interesting little girl, and a sympathetic woman. Forget the rest. The older sister played by Willa Holland is such a disgusting character that the fact that the young actress does a good job of being repellent is not exactly the kind of acting tribute she would like to hear, I suspect. The notion that this family go off to Genoa to forget the unfortunate death of the mother is so trite that if we have another film like that, all dead mothers have a right to complain at being exploited. If Michael Winterbottom wanted to make a film about how interesting the old portion of Genoa is, why didn't he just go to the BBC and say he wanted to make a travel film with some mindless celebrity presenter? Why waste money on a feature film which is nothing but a vanity project of idle and meandering vacuity?\r\n1\tGrey Gardens was enthralling and crazy and you just couldn't really look away. It was so strange, and funny and sad and sick and .. really no words can describe. The move Grey Gardens is beyond bizarre. I found out about this film reading my Uncle John's Great Big Bathroom Reader, by the Bathroom Reader's Institute and it was well worth the rental and bump to the top of my movie watching queue. This movie is about the nuttiest most eccentric people that may have ever been filmed. One should watch it for their favorite Edie outfits, which I am sure include curtains. When I get old I almost wish to be just like Big Edie, thumbing my nose at normalcy and society.\r\n1\t\"I'm fond of this film and it vexes me that so many \"\"reviewers\"\" rank it below the Peter Jackson trilogy. A filmed novel is always interpretive; in particular an animated film relies on the artist's vision and should be judged on its own terms. Speaking as a purist, this is a finer homage to Tolkien than the updated version. While this film has its flaws it stays truer to the source, especially so far as the characters are concerned.<br /><br />In the Jackson version Tolkien's Frodo is barely recognizable: from the first scenes he is portrayed as a weakling, constantly wavering, manipulated by forces around him and never standing on his own two feet (this is physically and metaphorically true.) You wonder why fate chose this limp biscuit to carry the one ring to the Cracks of Doom. Jackson unforgivably rewrites Tolkien and robs Frodo of his finest moment when he allows Arwen to rescue him from the Ringwraiths...Bakshi's version respects the original, presenting a Frodo who demands the wraiths \"\"Go back and trouble me no more!\"\" Bakshi sustains Frodo's character as Tolkien conceived it. We see his decline as the weight of his burden increases. Frodo is so pivotal to Lord of the Rings you wonder why Jackson took such liberties (he does so with numerous characters)since character development propels the plot to its inevitable conclusion. Bakshi's film better explores the companionship between Legolas and Gimli in a few judicious scenes that are completely lacking in Jackson's version. Similarly we see Boromir horsing with Pippin and Merry, furthering the idea of fellowship. For my liking the camaraderie is more developed in the animated version than the live action.<br /><br />Tolkien's poetry is an important ingredient in the novels and Bakshi makes tribute to this in one of my favorite scenes: when Frodo sings the \"\"Merry Old Inn\"\" song, minutes before stumbling into Strider. The cheery tune is chillingly juxtaposed with the darker theme music when seconds later, invisible to his friends but visible to the wraiths, Frodo is dangerously exposed. This is one of the most atmospheric portions of the film and chills me whenever I see it.<br /><br />The well documented budget/time restrictions limit this film's final impact but had it been completed it may have resonated with more viewers. As it is, it's worth a look. Even its detractors admit that Peter Jackson derived much of his inspiration from this prototype.\"\r\n0\tThis was an excellent idea and the scenery was beautiful but that's where it ends. It seemed like a lackluster Set It Off meets The West. The plot barely made any sense. There were so many characters and not enough time to develop their personalities. There were too may unnecessary things going on that didn't pertain to the plot nor did it help further the story along. There were also long blank moments where the plot could have been explored but was used for silence or unnecessary conversations. The script should have made more sense as well as the directing. I had a huge question mark on my head watching this movie. But the casting was great in my opinion. If you're only watching for eye candy then this is the movie for you.\r\n0\tOn the face of it, Ruiz has set out to make a psychological thriller. Although it's not as satisfying as a classic piece in that genre, there are compensations. The tensions generated between Huppert and Balibar as women calmly but calculatingly at war over a boy they both claim are compelling; however, in a true European art-house style, Ruiz doesn't give us release of this tension as the women alternately also try to behave compassionately towards each other. The only raised voice is that of Huppert's waking from a nightmare (an uncontested irrational event in the film).<br /><br />In fact, if we follow the title, the film is as little about its thriller skeleton as Jane Campion's In The Cut. Instead it is an intergender psychological study focusing on men. The boy, Camille (Nils Hugon), decides on a practical joke, playing his mother off against an emotionally vulnerable other woman. Both women seem to pander to him rather than scold and this compounds the problem. In the background is an intemperate psychologist (Charles Berling), swift to confront the women in his life - his sister Huppert, the nanny or his pa - and so acting as a symbolic adult counterbalance to the, calm and (we learn) manipulative Camille. It is particularly interesting that, like the father in Henry James' The Turn of The Screw, Denis Podalydes' law-enforcer Father is absent for the duration of the film. Ruiz fashions an Oedipal moment out of Huppert's reaction to his return at the film's close.<br /><br />Read either as a thriller or as a psychiatric essay, this film is ultimately rather disappointing. I'm officially rather fed up with Mme Huppert's screen method, which is too buried and so I'll be looking to see her on stage before I come back to her (European - enjoyed Heaven's Gate) films again. The support is good. Ruiz does the cast no favours though. Quite apart from some poor lighting and some wilfully odd shots, its as if his direction has left characterisation quite out of reach - I'm thinking particularly of Edith Scob's Shamanic neighbour to Isabelle, who acts knowing but communicates bafflement. The set pieces do not link up to a forward driving plot - the tension I have already referred to is not only weakly dissipated but wasted in its directional potential.<br /><br />Want to see a good contemporary French thriller? Go and see L'Appartement instead. 4/10\r\n1\t\"This movie brought tears to my eyes; John Roberts really knew how to get to viewers' hearts, directing this wonderful picture where life is viewed through the mind and heart of Paulie. We discover from time to time, with the help of sensitive and talented directors like John, that even small creatures like Paulie have a heart. I just couldn't stop my tears, even though the film has a happy end. This is great, after thousands of films I saw through my life, \"\"Paulie\"\" really touched me deeply. This is, after the \"\"Ugly Duckling\"\", the second picture that really turned me upside down.\"\r\n0\tTim (Gary Daniels) wants desperately to break into serious television reporting. When a job he begged for goes awry, he is fired. His beautiful but empty girlfriend (Elizabeth Hurley) says sayonara, too. Coming home, Tim is startled to discover his house has an uninvited visitor (Christopher Lloyd) from the planet Mars! Calling him Uncle Martin, Tim soon tries to help his new friend navigate life on earth. But, Martin gets in trouble wherever he goes, from the bathroom to the laundry room and more. Lovely Lizzie (Daryl Hannah) finally sees an opportunity to make time with Tim but the course of true love does not run smooth in this case, either. Soon everyone in television is stalking Tim, hoping for a story about a true alien. What's a man to do? For those who loved the old television show of the same name, with Bill Bixby and Ray Walston, this film is not worthy to tie the proverbial boots. Its truly, undeniably awful, with no plot and a reliance on supposed special effects which fall flat, too. Daniels is okay as the earthling but Lloyd is simply terrible as the alien, overacting up a storm. The rest of the cast is adequate, as are the costumes, set, and production details. Even if your children see the cover and beg for this film, convince them to pick out another flick at the video store. Be assured, kids and adults will find this movie a colossal bore, so opt for A Night at the Museum or Around the World in 80 Days instead.\r\n0\t\"For some strange reason the film world is driven by fashion . Someone makes a film about a killer shark then all of a sudden the film world`s oceans are awash with giant Squids , killer octopusses and sea monsters of every ilk . A man is stalked by an erstwhile lover from hell then every film character is stalked by a cop from hell or a flatmate from hell or a babysitter from hell . Then when a major Hollywood company produces a big budget FX laden blockbuster about tornados then other film producers jump upon the bandwagon , the fact that they don`t have the budget to pull it off doesn`t stop them. NIGHT OF THE TWISTERS is a case in point . What struck me about this made for television film is the fact that it tries to hide its lack of budget by cutting to the ad breaks . Everytime a tornado appears the camara locks onto the horrified expression of the actors as they scream things like \"\" Oh my gawd it`s heading this way \"\" and \"\" Run for your lives \"\" then the screen fades to black saving the producers the need to up the special effects budget . Unfortunately NIGHT OF THE TWISTERS budget should have been upped to include better actors . The cast are by no means bad but they are unimpressive and lack the skill to carry a film which is character driven . Where`s Josh Hartnett and Elijah Wood when you need them ?<br /><br />And the last word on this being a TWISTER clone ..... Yes NOTT was released a couple of months before TWISTER but TWISTER had been hyped for several months as being the Summer blockbuster of 1996 and NOTT has a rushed feeling to it which leads me to believe that it was made and released to tie in with the hype surrounding TWISTER\"\r\n1\t\"wow, how can I even discuss this movie without tears coming to my eyes? It was surely the highlight of my year--nay--my life. As if the raptor graphics weren't amazing enough, the award-winning editors continued to use the exact same shot throughout the entire movie, even when the background didn't actually match up with the setting of the scene. Wow, what genius. And while the movie is full of plot-holes (for instance, a few clips of a t-Rex type animal where a raptor should be and one key moment where Pappy finds a torture chamber, screams \"\"Colin's a girl!\"\" and runs out) I will never forget the brilliance that is Raptor Planet. Thank you Sci-Fi for another classic.\"\r\n1\t\"This film is very interesting. I have seen it twice and it seems Glover hit the nail on the head with what he claims to he wants to accomplish. I for one can relate to the outrage that the filmmaker clearly expresses against the current thoughtless corporate drivel that is an onslaught in our every media center, and the things that we as a culture are supposed to not \"\"think\"\" about due to corporate media control. The outrage that Glover expresses through the \"\"outrageous\"\" elements in the films is both clear in its visceral aggressiveness and beautiful in its poetic potency. I am glad I saw this film and it is even clearer that Glover is up to something interesting with part two of what will be a trilogy. It is fine! EVERYTHING IS FINE. See that also. People that dismiss this film as \"\"thoughtless\"\" or \"\"pretentious\"\" are really missing the boat. This is an intelligent films. If you can see it with his live show he performs before with his books, that is also very wroth while. The way you get in to his mindset is really something. You will have an experience!\"\r\n1\t\"There are numerous films relating to WW2, but Mother Night is quite distinctive among them: In this film, we are introduced to Howard Campbell (Nolte), an American living in Berlin and married to a German, Helga Noth (Lee), who decides to accept the role of a spy: More specifically, a CIA agent Major Wirtanen (Goodman) recruits Campbell who becomes a Nazi propagandist in order to enter the highest echelons of the Hitler regime. However, the deal is that the US Government will never acknowledge Campbell's role in the war for national security reasons, and so Campbell becomes a hated figure across the US. After the war, he tries to conceal his identity, but the past comes back and haunts him. His only \"\"friend\"\" is Wirtanen, but even he cannot do much for the avalanche of events that fall upon poor Campbell...<br /><br />The story is deeply touching, as we watch the tragedy of Campbell who although a great patriot, is treated by disdain by everybody who surrounds him. Not only that, but he also gradually realizes that even the persons who are most close to him, have many secrets of their own. Vonnegut provides us with a moving atmosphere, with Campbell's despair building up and almost choking the viewer.<br /><br />Nolte plays the role of his life, in my opinion; he is even better than in \"\"Affliction\"\", although in both roles he plays tragic figures who are destined to self-destruction. Sheryl Lee is also excellent, and the same can be said for the whole cast in general.<br /><br />I haven't read the book, so I cannot appraise how the film compares to it. In any case, this is something of no importance here: My critique is upon the film per se, and the film wholeheartedly deserves a 9/10.\"\r\n0\t\"What has Ireland ever done to film distributers that they seek to represent the country in such a pejorative way? This movie begins like a primer for film students on Irish cinematic cliches: unctuous priests, spitting before handshakes, town square cattle marts, cycling by country meadows to the backdrop of anodyne folk music. Quickly, however, it becomes apparent that the main theme of the film is the big Daddy-O of Irish Cliches - religous strife. It concerns a protestant woman who wants to decide where her Catholic-fathered child is educated, which would seem like a reasonable enough wish, though not to the '50's County Wexford villagers she has to live with. Rather than send them to a Catholic school, she decides to up and leave for Belfast, then Scotland, where a few more cliches are reguritated. While she's there, her father (who looks eerily like George Lucas) and family back home are subjected to a boycott, which turns very nasty. I'm not going to give away the ending, not because I think people should go see this movie, but because it's not very interesting. One of the problems with the film is the central character: we're supposed to sympathise with her but end up instead urging her to get a life. The villagers are presented as bigots whose prejudices should be stood up to, but traumatising your kids seems an innappropriate way to go about it. In addition, it takes on burdens which it staggers igniminiously under when it tries to draw analogies with the current Northern Ireland peace process: the woman is told by her lawyer that she \"\"must lay down preconditions\"\" for her return. The film is allegedly based on a true story but it's themes have been dealt with much more imaginatively, and with less recourse to hackneyed cliches, in the past.\"\r\n0\t\"Hanna-Barbera sucks the life out of another famous property. The violence is watered down, the stories are formulaic, the animation is bad, the music is obnoxious and repetitive, and frankly, the show just isn't funny.<br /><br />At the time, H-B put every one of its series through the same clichéd situations, regardless if it fit the world of the cartoon or not. Thus, Popeye and Bluto appear in a recurring segment as cavemen (\"\"Hey! Popeye is popular, and the Flinstones are popular. Put 'em together, and you can't miss!\"\"). Also, in an apparent ripoff of \"\"Private Benjamin,\"\" Olive Oyl and the Goon have a regular segment that features them as new army recruits. Seriously! Why? <br /><br />Adding to the annoyance factor are the public service announcements in every episode (standard practice at the time for cartoons, but still annoying). Popeye lectures his nephews on crossing the street safely, recycling, and - are you ready for this? - the dangers of smoking! (I swear I'm not making that up.)<br /><br />The only charm remaining from the original cartoons is that Jack Mercer, the voice of Popeye from the early days, continues the role here.<br /><br />Worth checking out once just to get a new appreciation for the old Fleischer shorts. Otherwise, avoid at all costs.\"\r\n0\t\"...Or, more precisely, so bad that you are going to have the time of your life laughing your ass off when you watch it! James Sbardellati's \"\"Deathstalker\"\" of 1983 is certainly one of the most awful productions the Sword & Sorcery sub-genre has brought along, but it is highly amusing. The acting is terrible, the plot is pure crap, and the effects and photography couldn't be more amateurish. But it is the bad acting, the cheesy effects, and the many errors, that makes this movie so hilarious.<br /><br />- SPOILERS AHEAD -<br /><br />Deathstalker (Rick Hill) is an extremely strong and skilled warrior. One day, a good witch tasks him to unite the three powers of chaos and creation, a sword, an amulet and a chalice, in order to free the country from its brutal ruler, the evil king and sorcerer Munkar. Obtaining the sword is quite easy, but the amulet and the chalice are in Munkar's possession. Fortunately, the evil king has arranged a tournament in which the county's most skilled warriors fight each other until death. The winner is then to take the king's place. Of course, the king doesn't want anybody to take his place, an therefore he has planned to kill the winner (instead of just not arranging the tournament in the first place). Deathstalker is not only to obtain the the three powers of creation, but also to save the old, good king's gorgeous daughter (Barbi Benton) from the claws of evil Munkar. Luckily, he doesn't get bored on his way to the tournament, since he is allowed hump the gorgeous female warrior Kaira (Lana Clarkson) in the meantime...<br /><br />The film has many great, incredibly stupid and funny scenes. Some of my favorite scenes include: <br /><br />- Deathstalker beheads a bad guy with his sword. The head that falls down, however, is not that guy's head. The falling head has a red goatee, while the guy beheaded by Deathstalker had dark hair and no beard.<br /><br />- When the character of female warrior Kaira (Lana Clarkson) is introduced, she is first seen in a black robe, hiding her face and body. Deathstalker's traveling companion Oghris (Richard Brooker) fights her, and during the sword fight her robe (under which she is, of course topless) opens, exposing her breasts. Her breasts are the first thing we see of Lana Clarkson, even before her face.<br /><br />- The last warrior Deathstalker has to fight in the tournament, is a giant guy with the body of a man and the head of a pig.<br /><br />- Evil Munkar has an ugly little creature locked in a chest. He feeds that little creature human eyeballs and fingers.<br /><br />... There are many other unintentionally funny, hilarious, and great scenes. The acting is terrible but Barbi Benton and the late Lana Clarkson are eye-candy, and although I described this movie as 'unintentionally funny', I sometimes had the impression that some of the actors were absolutely aware of how crappy the movie is. There is a fair amount of gore, and lots of female nudity to keep the viewer entertained. \"\"Deathstalker\"\" is an incredibly awful movie, but I still highly recommend it. People with a sense of humor will have the time of their lives!\"\r\n1\t\"Kenneth Branagh's \"\"Hamlet\"\" hits all the marks. The acting is magnificent, the 70mm cinematography is gorgeous, the Oscar-nominated costumes and sets are stunning, and Patrick Doyle's score (also Oscar-nominated) is sensitive and moving. Oh yeah - the screenplay, by some guy named Will S., isn't too bad either. Film critics ribbed Branagh for receiving the films' fourth Oscar nod for \"\"adapting\"\" the screenplay, but his decision to use the full text was a gutsy one. I can't think of many better ways to make four hours fly by.<br /><br />Nearly every decision Branagh makes works brilliantly: the use of England's Blenheim Palace for exteriors, the Edwardian dress, and the staging of \"\"To be or not to be\"\" in a hall of mirrors, to name a few. The casting of Hollywood luminaries such as Robin Williams, Billy Crystal and Jack Lemmon in minor parts can be distracting, but that's nitpicking. The principal cast excels: Derek Jacobi captures the conflicted nature of Claudius; Kate Winslet acutely depicts Ophelia's descent into madness; Julie Christie brings passion to her portrayal of Gertrude; Richard Briers is pitch-perfect as the conniving Polonius; and Nicholas Farrell elevates the potentially thankless role of Horatio to the apotheosis of true friendship. Every speech, every line, every word is delivered with passion and conviction; there isn't a wasted moment in the entire film. The final scenes magnify the extent of Shakespeare's tragedy in a way not possible with theatrical adaptations.<br /><br />Branagh's \"\"Hamlet\"\" is a bold, ambitious, and ultimately successful attempt to match the grandeur and poetry of Shakespeare's language with equally eloquent imagery. It's arguably the greatest Shakespearean adaptation ever filmed  strong praise, but well deserved.\"\r\n0\t\"Oh... my... god... this is without a doubt the absolute cheesiest movie I have ever seen. The acting is bad, the story is weak, the characters are weaker, and the whole film just doesn't make sense. Couple this with mediocre directing, really strange scenes (such as the one where the kid reaches over the ravine and mysteriously falls in), and thoroughly abysmal dialog (\"\"Look!\"\" \"\"Musta peed his pants!\"\"), and you get one complete failure. Not to mention the fact that the only thing Mr. Atlas looks like he could defeat is a case of chocolate bars. But this is part of the movie's charm. Sit down and watch it with a few of your friends for a good laugh. <br /><br />I love this movie, because it's just SO BAD!\"\r\n1\tSaw this Saturday night at the Provincetown Film Festival, and it's a stick-to-your-bones movie -- it's really stayed with me. Adapted very smartly from what is probably an excellent novel, it's a back-and-forth-in-time drama with fully rounded characters, thoughtful rumination on life choices, and, I'm not exaggerating. one of the greatest casts ever assembled in 100+ years of movie-making. Wonderful work from everyone, led by a luminous Vanessa Redgrave as a dying, deluded Newport matron, and Claire Danes as her much younger self. Meryl Streep's daughter Mamie Gummer is, like Mama, the real deal; Patrick Wilson looks like Paul Newman circa 1958 and doesn't overplay the charm; and what a pleasure to see such excellent stage actors as Barry Bostwick and Eileen Atkins contributing sharp, detailed cameos. Hugh Dancy, also from the stage, doesn't bring much edge to the somewhat clichéd role of an unhappy rich wastrel, and the family issues are resolved perhaps more neatly than real life would allow. But it's a deliberately paced, visually gorgeous meditation on real life issues, and you can cry at it and not feel like you're being recklessly manipulated. Also, what a sumptuous parade of 1940s/50s automobiles.\r\n1\tI loved the episode but seems to me there should have been some quick reference to the secretary getting punished for effectively being an accomplice after the fact. While I like when a episode of Columbo has an unpredictable twist like this one, its resolution should be part of the conclusion of the episode, along with the uncovering of the murderer.<br /><br />The interplay between Peter Falk and Ruth Gordon is priceless. At one point, Gordon, playing a famous writer, makes some comment about being flattered by the famous Lt. Columbo, making a tongue-in-cheek allusion to the detective's real life fame as a crime-solver. This is one of the best of many great Columbo installments.\r\n0\t\"My first full Heston movie. The movie that everyone already knows the ending to. A \"\"Sci Fi Thriller\"\". The campy factor. Everything that goes with this movie was injected in my head when I rented it, and on the morning that I watched it, it was the perfect movie to watch in the mood that I was in (Not wanting to move. Put in player, hide in blankets). And though I tried to understand what was happening to lead to the ending that will be eternally ruined by pop culture, it just really didn't make it. Everything was all over the place, relationships had no backbone, the ending had no lead in. Everything was just kind of there in some freakish way and the watcher has no choice but to leave partially dumbfounded at the ending that it gets to, because even though we all know that it's people, it's quick answers as to WHY it's people makes any serious attempt at enjoying the movie for anything other than the silliness thrown out the window.\"\r\n0\tWell, not yet, at least.<br /><br />It's not listed in the worst 100...<br /><br />So let's all team up, and put it in it's rightful place.<br /><br />This is truly a bad movie. (And I liked Ishtar!) ;)\r\n0\t\"I really didn't like this film. The plot was very predictable. Typical American plot, I'm sorry. Guy gets the girl kind of thing at the end. And London has a Monorail? Bank of London??? Bank of England is what it really is!! - I did however like the look of Tracy Island and the Thunderbirds themselves. And the Brits were baddies? (apart from Parker and Lady Penelope) What was up with that? Oh and they kept on saying stuff like \"\"Here come 'The Thunderbirds'\"\" - but it was never known as 'The Thunderbirds' in the series, why do that?? I'd like to see this re-made in 20 years with more British cast. I preferred the original series. Sorry!\"\r\n1\tThis is an awesome action film with great one liners from Arnie!. It's stylishly made, with lots of tense action to keep one satisfied. The Characters were awesome, and Richard Dawson, is very menacing as the main villain. Yes it has tons of plot holes,however it's highly highly entertaining, with a great ending as well. It had a great story, too it, and Arnie and Maria Conchita Alonso had great chemistry together. The Character development was also pretty good, with, some superb performances. The Directing is great!. Paul Michael Glaser, does a very good job here, with awesome use of colors, keeping it stylish throughout, awesome camera angles, and overall keeping the film at a very fast pace! good job. There is a little bit of gore. We get a few bloody gunshot wounds, exploding head, slit throat, bloody chainsaw slices, skinless corpses, blood, and an impaling. The Acting is great!. Arnold Schwarzenegger is AMAZING as always, he is excellent in the acting department , has tons of hilarious one liners, kicks that ass, and as always is a big physical presence!, and was tons of fun to watch! (Arnie Rules!). Maria Conchita Alonso, does well here, she was really cute, and had good chemistry with Arnie!. Yaphet Kotto, is decent here, with what he has to do, which is not much. Marvin J. McIntyre, is good as the geeky type guy, he was cool!. Richard Dawson is awesome as the main villain, and was very very menacing, and he was fun to watch. Jesse Ventura,Jim Brown,Erland van Lidth,Gus Rethwisch,and Professor Toru Tanaka, all do what they have to do very well as the stalkers. Overall a MUST see! ****1/2 out of 5\r\n0\t...but I've seen better too.<br /><br />The story here is predictable--a film crew trying to film a horror movie in a place where murders occurred. Three guesses what happens. This isn't a total bomb--the cast is fairly good with pros John Ireland, Faith Domergue and John Carradine giving the best performances. It's reasonably well-made--for a low budget film. Just don't expect any nudity, swearing, blood OR gore (the film has a very mild PG rating). I was never totally bored--it's OK viewing on a quiet night. I saw it on video--it was a HORRIBLE print--very dark and some scenes were impossible to see. Still I didn't hate it and it does have a cool ending which surprised me--basically nothing happens up till then so it catches you off guard. Worth seeing but only if you're a horror film completest.\r\n1\tThis is one of Disney's top five animated features, in my opinion. Cinderella was a perfect return to the full-length feature animation film (as opposed to the compilation films of the 40's), and expensive depth via the multi-plane camera returns to the film in no other way. Although Disney adapts the story somewhat liberally, you gather the idea of the era via the dress and set stylizations---a clear time period the story takes place.<br /><br />Cinderella is more mature than Snow White, and a multi-dimensional character. Actually, all of the characters are somewhat well-developed, except for the Prince--left the most flat--we know he has a sense of humor, and a great smile, but that's about all. Like Snow White, Disney has some permanent impact on the story in popular culture---in most versions of Cinderella, the stepsisters are attractive, just not as pretty as Cinderella, and their character takes away from their otherwise nice appearance.<br /><br />Favorite Disney additions: the mice! Also, appreciated the continuity--Cinderella always loses her shoe throughout the film. The addition of the homemade gown as well as the following assault from the stepsisters was always horrific as a child--I remember View Master showing this with a black background and a large red light on it! The broken slipper shows the unwillingness of evil Lady Tremaine to give up her hold over Cinderella and admit defeat---Audley would go on to characterize the most wicked of all Disney villains, satanic witch Maleficent, in Sleeping Beauty.\r\n0\t\"This is a truly wretched little film. Admittedly the original (un)holy trinity was governed by the law of diminishing returns with the third, \"\"The Final Conflict\"\" degenerating into a ridiculous sub-plot about half-way through the film apparently merely to provide the requisite needlessly convoluted deaths that had by now become the whole raison d'etre for the \"\"Omen\"\" series. But then to foist this jumped-up TV movie (beware purchasers of the Omen box set on DVD - don't be fooled by the widescreen ratio of the transfer, this was and is strictly small-screen stuff) on the back of a series of generally fine demonic chillers was unforgivable, particularly, endorsed as it was, by the exec.producer and producer of the first three movies Mace Neufeld and Harvey Bernhard. I'd give-away the plot if there was any, besides the usual death scenes (hopelessly toned down for TV sensibilities) and some of the worst acting I've seen. All involved in this project down to the catering people should be ashamed this travesty ever made it to the screen, let alone masquerading under the Omen name. If one person is convinced by my review to avoid this mess, I'll feel better for it.\"\r\n0\t\"I'll say this much--This director is all about RAW images...things most of us are not ready to confront head-on. Images of sex, suicide, murder, and people \"\"relieving themselves\"\" are constantly bombarding the viewer, which makes me wonder if the director was trying to communicate the concept of relief or release. Although I don't think that I could ever see this movie again, I will say that the director does have a good eye. There were some really nice shots and \"\"picture moments\"\" in the film (the fans, the wire fish in their hair), but the story left me needing more (strictly in the since that we were left asking ourselves \"\"what the heck did we just see?\"\").<br /><br />Note: If you have a tendency to gag or vomit easily...don't see this film.\"\r\n1\tIntense actors like Bruce Dern, Jason Patrick and Rachel Ward combine to make this modern-day film noir a winner. Of the three, I don't know who was most interesting as all offer good performances and intriguing characters.<br /><br />Patric does the narration in this noir, playing an ex-boxer and mental patient. Wow, that alone makes for an interesting guy! He looks dumb, but he isn't. Ward is the slinky, attractive, cynical, intelligent and compassionate co- conspirator of a kidnapping plan that goes bad. Bruce Dern also is in the mix and Dern never fails to fascinate in about any film.<br /><br />The movie could be considered kind of downer to the average viewer, but I found it fascinating....and I don't like depressing movies normally. What I found was a kind of quirky crime film. Take a look and see if you agree. This is pretty unknown film that shouldn't have that status because it's simply a good story and well-done.\r\n1\tI saw this movie on TV late one night years ago, but it was a disturbing experience that has stayed with me to this day.<br /><br />The premise may seem a bit unoriginal - due to an earthquake, a hidden underground store of a toxic nerve agent in the hills above a small town is breached, and a microscopic amount of the substance finds its way into their food supply. The inhabitants of the town begin to lose their ability to exercise restraint over every whim and base desire that floats through all of our minds from time to time, and that normally we know we simply must not act upon.<br /><br />The pace of the movie is slow, but for me that only added to the creeping unease as the townspeople's behaviour slowly starts to unravel. There are several surreal and very unsettling scenes that have remained etched in my memory all this time.<br /><br />It raises interesting questions about what we could all be capable of if we gave in to our most feral instincts. Did I enjoy it? I'm not sure 'enjoy' is the right word. Did it make me think? Definitely. I'm still thinking about it. Scary stuff.\r\n0\t\"Quite possibly the worst movie I've ever seen; I was ready to walk out after the first ten minutes. The only people laughing in the theater were the tweeners. Don't get me wrong, I love silly, stupid movies just as much as the next gal, but the whole premise, writing and humor stunk. It seemed to me that they were going for a \"\"Napoleon Dynamite\"\" feel - strange and random scenes which would lead to a cult audience. Instead, it ended up being forced, awkward and weird.<br /><br />The only bright light was Isla Fisher and I just felt utterly awful that she (and Sissy Spacek) had signed up for this horrible thing.<br /><br />Thank gosh I didn't pay for it.\"\r\n0\t\"Wow, I knew this film was going to be bad but not this bad. Spoilerific comments ensue.<br /><br />Roddy Roddy Piper is sickly sweet retired cop (cliche!), helping out everyone - smiling like a post-op lobotomy patient through-out and lamenting over his dead son. His adopted son returns from Armed Forces \"\"Special Ops\"\" and because he's \"\"seen things\"\" - portrayed by clenching his teeth if anyone mentions anything about the past. Time to clean up the streets from another guy who once knew Piper and his dead son (who the bad lad killed) and his adopted son.<br /><br />Oh, the love interest is a pretty young lady who decides for no reason that she wants to jump the bones of the ex-Army bloke. This happens in about 2 minutes of 1 scene.<br /><br />The action could have saved this film, but it's even worse than the storyline and acting. It's all been done before, it's all been done much much better (Ong-Bak is a prime example). This is the worst film I've ever seen - and I've seen Waterworld, twice.<br /><br />Erm, the film is called HONOR (Spelt Wrong for the Americans) and the tag line has \"\"from the makers of Bloodsport and Kickboxer\"\" - check out Director David Worths other films and you'll soon realise why they put these 2 films on there, even though they are over 10 years old. Such classics as \"\"Shark Attack 3: Megalodon\"\" - says it all really.<br /><br />I'll give you £10 if you don't go to see this film.<br /><br />PS - Apologise for not know character names, tells you something though.\"\r\n0\tThe problem is the role of the characters in the film. Man to Man shows a British anthropologist kidnapping two pygmies and taking them to Scotland and then realising that they are not animals or subhumans but actually equal to himself. The problem is the role of the pygmies in the film - two people who are kidnapped, treated like animals, and yet given such a shallow, stereotypical role within the film... The kidnapper (british anthropologist) ends up being the hero of the film because he 'manages' to relate to the pygmies... No notion of how the two hostages feel, of their point of view, of their ordeal... I find it is a shallow film, with a one sided fundamentally racist view... it never manages to move away from the 'white mans' view\r\n1\t\"I was too young to remmeber when I first saw this movie. But I saw it for like the second time about 7 years ago. My sister told me I had to see it. Now my whole family has it memorized. We quote it at least once a day. I absolutly love this movie.I still laugh after all this time. Sure, it's about a really, really drunk millionare that is irresponsible. The whole point is that he still has the humanity lost in the others that we see in the movie. And that he is willing to give it all up for love. I highly recomend this movie to anyone who wants a laugh. A lot of laughs. Its hallarious, sweet, and if your a movie buff, it will truely change your idea of \"\"Funny\"\". Watch it with a group of your friends or your family and I promise, you will never have nothing to talk about ever again with some Authur lines in your head. It will make you laugh for years to come.<br /><br />It is really hard, in my family, to find a movie that everyone likes. But this movie, I feel, made us closer. And I know it will do the same for you!!\"\r\n1\ti just got puzzled why damn FOX canceled the season3 although season2 was not as good as season1 which is excellent indeed!!!i like it so much that i even thinking about buying DVD on Amazon.(failed! :_(i am a Chinese student and it's inconvenient for me to get a international credit card and $).i just hope FOX can bring back DA someday somehow!\r\n1\tI was up late flipping cable channels one night and ran into this movie from about 10 minutes into the start - every time I even thought going to bed, something kept on telling me to keep on watching it even though it was way way way past my bedtime.<br /><br />This movie could have been another easy slam dunk anti-gun film, but instead they chose to examine the aftereffects of the shootings. And even better, the movie kept on with the real life - just when you think they are going to take the easy and obviously contrived way out, a twist comes along and changes the whole outlook of the movie. This film not only doesn't follow the formula, it shows how other events often lead up to and/or affect what happens afterwards.<br /><br />I only wish the filmmakers had explored the issues around anti-depressant drugs more - the kids from Columnbine who did the shootings were on them for years and it was frightening to watch the way Deanna popped them every time the nightmares started. Up until recently they were dispensing the stuff like candy and only now do they even begin to understand what long term effects the drugs have. It was very refreshing to see that the mental illness aspect of the story was given quite a bit of film, having a relative who suffers from a mental illness, I can say that the movie was dead nuts on in every aspect of mental illnesses. Bravo to the director and writer who obviously did their homework on those issues. And for those who think certain things couldn't happen in a hospital (I don't want to tell any particulars), you're dead wrong on that too - I've been there. The script was so real it was amazing.<br /><br />Go BUY this film and show it to your teenage kids before it's too late. Someday they'll thank you for it.\r\n0\tI have seen most, if not all of the Laurel & Hardy classic films. I have always enjoyed there comical stupidly, even after watching it over and over again. This new film attempts to bring back the classic with two new actors who resemble both Laurel & Hardy, however fails miserably for various reasons. One of which is how out of place their cloths are (still early 20th century) however are both portrayed in the 90's setting. Some of the former dialogue was brought back, however it also fails miserably to come close to the classic series. This film could very well be the worst film I have ever seen and should be pulled off the shelf and locked away forever. The real Laurel & Hardy are surly spinning in their graves at such a bad imitation.\r\n1\tUnfortunately, this film has long been unavailable (as other posters have noted), but this is one of the essential dramas of the Great Depression, a lyrical and touching drama of love set in a shanty-town. It features performances by Spencer Tracy and Loretta Young that are just about the finest of their careers, and it's a surpassing example of how the director, Frank Borzage, was able to create an almost fairy-tale aura around elements of poverty, crime, and horrendous social inequity, which just proves that how truly romantic and spiritual his talents were. This film shows how love survives amidst squalor and desperate need, and it is totally life-affirming. This is a real masterpiece of the period, and is a movie that deserves to be more widely known.\r\n0\tI got this DVD well over 2 years ago and only decided to watch it yesterday. I don't know why it took me so long as I do like the Inspector Gadget show and even the new Gadget and the Gadgetinis. While it may have a bright color pallet and all the technical sophistication of a modern animated movie, there are some old things missing that bog this Gadget right down the toilet.<br /><br />First of all the classic Inspector Gadget theme song and music is completely absent. The composer tries to compromise by doing a score that sounds similar but it's still just no good enough. The Gadget-mobile is now a talking car, not a car that can turn into a van. Plus it looks a lot cuter and rounder instead of being plain cool. Penny no longer has her computer book and she and Brain hardly make an appearance at all.<br /><br />The plot is non-existent. There's something about a transformation formula and Doctor Claw using for some never revealed evil but that's all I got. What the deal was with the short/giant Italian guy I will never know. It had nothing to do with anything.<br /><br />And if the title is anything to go by, his last case is wrapped up in no way whatsoever. And he stays on the force so why it's called 'last case' is a mystery also.<br /><br />I wasn't impressed at all. This is an affront to a great animated show that is strangely absent on DVD, but don't let that prompt you into buying whatever Inspector Gadget DVDs you can. I sold this mere seconds after finally watching it. No kid will like or appreciate this and no fan of the old show with tolerate it.\r\n1\t\"Distortion is a disturbing, haunting film, about life imitating art and art reflecting life. Haim Bouzaglo, the director of the film, plays the role of Haim Bouzaglo, artistically blocked and sexually impotent playwright, who finds inspiration in his suspicions about the subject of his girl friend's documentary. As an Arab suicide bomber, disguised in skullcap and American t-shirt, wanders through the landscape in search of his target and his nerves, Haim transcribes his girl friend's life as she films her documentary and incorporates himself and his actors' lives during rehearsals. But the bomber has already struck and Haim has left the restaurant just minutes earlier. Despite the manipulation of time and space, the story is crystal clear, comprehensive and absorbing, a brilliant commentary on the \"\"distortion\"\" of everyday Israeli life, where the political is intertwined with the personal, where everyone lives \"\"on the edge,\"\" and people never know whether they are playing leading roles in their own lives or are merely dispensable bit players in someone else's dramatic narrative.<br /><br />Bouzaglo plays with this notion of everyone being an actor in someone else's production brilliantly. We are always voyeurs, seeing what the fictional director sees illicitly but also what the \"\"real\"\" director chooses to reveal. To remind us that these glimpses are violations of privacy, Bouzaglo takes us into the bathroom and the bedroom (sometimes the bedroom is the street and rooftop), and repeatedly frames his views within TV, video, or security screens. Actors play the role of actors who represent the \"\"real\"\" characters played by actors. Of course, each of the actors is the star of his or her own production, only dimly aware of their diminished roles in their fellow actor's personal films. The detective hired by the playwright becomes a character in the play. The actor hired to play the role of the detective seeks out the detective for \"\"tips\"\" on how to play the role, is caught by the detective on surveillance tapes, and they attend a cast party as their real selves.<br /><br />Despite this multiplicity of views, there is no mistaking the clear lines of this narrative: the playwright searches for subject matter, the bomber seeks a target, and the detective stalks the filmmaker. Nor is there any difficulty locating Bouzaglo's ultimate targetenervated and impotent Israel, fully conscious of the threatening peril but incapable of meaningful action. Israel is Bouzaglo, the impotent fictional playwright cannibalizing his own life for his play. Israel is also the bankrupt soldier-entrepreneur who is the subject of the filmmaker's documentary, the cheating actors and actresses, and the cuckolded husband. They are all Israel because they are all helpless, caught in inaction or aimless action, as the bomber scans the landscape for his best target. All the characters can do as another bombing is reported is have sex and keep \"\"score\"\" of victims.<br /><br />There is personal triumph, vindication, perhaps revenge at the end of this play within a story within a film, but viewers will be left aching for the state of Israel even as they are filled with admiration for Bouzaglo's memorable rendition of a nation's plight within the telling of an individual's story.\"\r\n1\t\"\"\"The House That Dripped Blood\"\" is one of the better anthology films of the time period.<br /><br />**SPOILERS**<br /><br />Tracking down a missing film star, Inspector Holloway, (John Bennett) finds that the last reported sighting was in a large mansion in the countryside. During the course of looking through the house, he is told four different stories about past residents of the house.<br /><br />The Good Story(s): Method for Murder-Moving into the mysterious manor to get some peace and quiet while Charles pens his latest masterwork, Horror novelist Charles Hillyer, (Denholm Elliott) and his wife Alice, (Joanna Dunham) are thrilled with the story, which centers around a serial strangler named Dominic. After a series of strange accidents and experiences in the house, Charles begins to believe that the creation my have come to life and is haunting him and his wife. Probably one of the better entries in the film, it's easily the creepiest. The atmosphere here is what sets it apart. The scenes with the fictional character are genuinely creepy, the mystery surrounding him is really effective and there's always a classic creep-out moment. The classic moment is the kill in the psychiatrist's office, which is an all-time high for creepiness. The build-up to it, with the creaking sounds, quick flashes of a mysterious being, and the thunder and lightning in the back ground work well for this one's favor.<br /><br />Sweets for the Sweet-Moving into a new house, widower John Reid, (Christopher Lee) hires former school teacher Ann Norton, (Nyree Dawn Porter) for his young daughter Jane, (Chloe Franks) while he's away on business. Ann gradually begins to unravel a dark secret from Jane's past, which John vehemently denies. When she learns the true nature of what has happened, it's far more shocking that what she could've thought possible. With the creepiest outright plot and the biggest twist of the stories, this is a quite pleasant entry. The mystery of the family is wonderfully played out, with small amounts of clues piled up here and there, and the final revelation is downright nerve-wracking. That part alone is the main reason why this one works, and Lee doesn't harm it either.<br /><br />The Bad Story(s): Waxwork-Tortured by memories of his lost love, Phillip Grayson, (Peter Cushing) and his friend Neville Rogers, (Joss Ackland) both become infatuated with a statue of a woman in a Wax Museum, as the statue takes over their lives, they discover a shocking secret about the museum that haunts the both of them. There's a clever premise here, and it does provide an excuse to spend time in a wax museum, which are always creepy. This is no exception, and it looks eerie, which is helped by the florescent lighting on display on the sculptures. A dream sequence provides a great moment of suspense, but what ultimately kills this one is the slow pace. It takes a long time for events to unfold out, and most of the time is spent on exposition. It also builds up to a shock ending that can be seen coming from a mile away. Those really lower this one a bit. Had the twist been changed, it would've scored higher, the rest is acceptable.<br /><br />The Cloak-Veteran horror film actor Paul Henderson, (Jon Pertwee) upset at the lack of realism on the set of his new film, goes off and buys a new vampire cloak from a specialty store. The cloak soon turns him into a vampire, going crazy on the set with co-star Carla, (Ingrid Pitt) and other vampiric acts at home. Unconvinced the cloak is the cause, he does everything he can to prove it's just in his imagination. This has a pretty decent premise, and there is plenty of opportunity for some decent scares, but what sinks it is several factors. First, it's just too goofy for it's own good. The plot twist at the end is a perfect example, which is so overdone that it's not really a shock at all, and just comes across as just plain silly. There's so few scenes of scares or attempted scares that it's just a bore to sit through. It's the weakest one in the film.<br /><br />The Final Verdict: A quite decent omnibus film, there's a few small problems scattered through each of the stories that renders this a less than perfect but still highly watchable film. Highly recommended for those into the similar films at the time or who enjoy British horror films.<br /><br />Today's Rating-PG-13: Violence\"\r\n1\tThis early Sirk melodrama, shot in black and white, is a minor film, yet showcases the flair of the German director in enhancing tired story lines into something resembling art. Set in the 1910's, Barbara Stanwyck is the woman who has sinned by abandoning her small-town husband and family for the lure of the Chicago stage. She never fulfilled her ambitions, and is drawn back to the town she left by an eager letter from her daughter informing her that she too has taken a liking to the theatre (a high school production, that is). Back in her old town she once again comes up against small-mindedness, and has to deal with her hostile eldest daughter, bewildered (and boring) husband (Richard Carlson) and ex-lover. The plot is nothing new but Sirk sets himself apart by creating meaningful compositions, with every frame carefully shot, and he is aided immeasurably by having Stanwyck as his leading lady. It runs a crisp 76 minutes, and that's just as well, because the material doesn't really have the legs to go any further.\r\n1\t\"I would not hesitate to put this adaptation of 'Death Trap\"\" in a top 5 list of the best stage-to-movie adaptations ever. Caine and Reeves (an underrated actor who never really got a chance to do more than soggy romances and \"\"Superman\"\") play off each other extremely well here. Even Dyan Cannon - who I normally don't care for - is perfectly cast in a role that exploits her annoyance value as an actress.<br /><br />I'm not sure that comparisons of \"\"Deathtrap\"\" with \"\"Sleuth\"\" - another brilliant stage-to-screen adaptation featuring Michael Caine - are valid, or even fair. Yes, the two stories have a lot in common. But \"\"Sleuth\"\" is as much about class warfare as the battle of wits, and the house in \"\"Sleuth\"\" is set is at least as much a character in the movie as the two actors - the house doesn't really have an equivalent in \"\"Deathtrap\"\". And \"\"Deathtrap\"\" isn't so much a battle of wits as it is a pointed vignette about how people are no damned good (and never as smart as they think they are) and deserve everything they get. I'll just say that both movies are superb examples of the genre, and well worth your time and money. This is America, after all. You don't have to choose! <br /><br />I won't give away the twists and turns of the plot, but I don't think it matters anyway. I've watched the DVD eight or nine times in a dozen years, and still enjoyed the chemistry and the timing and the mean, scary moments when things go \"\"all pear shaped\"\". It's all done so well that the ride becomes more important than the actual destination.<br /><br />Anyone who likes black-hearted comedy and suspense in the Hitchcock style of film-making will probably enjoy \"\"Deathtrap\"\" immensely.\"\r\n0\t\"So there's an old security guard and a guy who dies and then there's KEVIN, the world's biggest wuss. Kevin wants to impress his incredibly insensitive, bratty, and virginal girlfriend AMY. As he returns from work to... a random house... he finds his \"\"friends,\"\" the sexually confusing red-shorted KYLE and the truly revolting sluttish DAPHNE. They are soon joined by Daphne's boyfriend, the trigger-happy sex-crazed macho lunkhead NICK. And there's the title creatures, horrid little dogeared puppets who kill people by giving them their heart's desire. Kyle's heart's desire is to mate with a creepy, yucky woman in spandex. Nick's heart's desire is to throw grenades in a grade school cafeteria-- I mean nightclub. Kevin's heart's desire is to beat up a skinny thug with nunchucks. Amy's heart's desire is to be a disgusting slut. Daphne's already a disgusting slut, so she doesn't have a heart's desire. Along the way a truly hideous band sings a truly odd song. The hobgoblins randomly go back to where they came from then blow up. \"\"Citizen Kane\"\" cannot hold a candle to this true masterpiece of American cinema.\"\r\n0\t\"Irwin Allen was great. All of his TV shows had a great pilot, or first episode. the rest were basically rip offs of his other shows. A few episodes of Swiss Family Robinson were rip offs of his older TV shows. One episode of Swiss Family is identical to an episode of Land Of The Giants when a member of the party needs an appendix operation. The show was high budget and too expensive to continue. Irwin lost his touch with TV shows after the 60s. The acting is strong with Martin Milner. Child stars got there starts with this show like Willie Ames and Helen Hunt. one bright spot is when Irwin Allen incorporates his disaster scenes like a typhoon and a volcanic eruption dubbing him the \"\" Master of Disaster \"\"\"\r\n1\tFather of the Pride was the best new show to hit television since Family Guy. It was yet another masterpiece from the talented people at Dreamworks Animation. Like The Simpsons, the show centers around a nuclear family (of white lions, in this case). It also contains many memorable supporting characters including Roger the surly orangutan, Vincent the Italian-American flamingo, the eccentric white tigers Blake and Victoria, the faux patriotic Snout Brothers and Chutney the elephant. The other stars of the show are the Sigfreid and Roy. They are incredibly eccentric and do everything in a grandiose manner, making the most mundane activities entertaining. The combination of cute animal characters with very adult dialog and controversial issues (drugs, prejudice, etc) is the source of the program's brilliance.<br /><br />The blame for this show's failure lies with NBC. They opted to broadcast the episodes in no particular order (perhaps being influenced by which guest stars they could promote) rather than the more logical production order. Several times, the show was preempted for an extra half-hour of such dreck as The Biggest Loser (as if 60 minutes of that was not enough)! It is indeed an ill omen for the future of television as art if an original and daring show like this fails while Fear Factor and American Idol dominate.<br /><br />Luckily, the complete series was released on DVD and the show now has an opportunity to gain a larger following. 10/10\r\n0\t\"I just finished \"\"Dark Chamber\"\" aka \"\"Under Surveillance\"\" and I'm stunned. Stunned, not by the film, but by some of the rave reviews I perused which influenced my watching it. The story was so ravaged by plot-holes and the majority of the acting so flat, categorizing it as a comedy seems appropriate. Seriously, I found myself shaking my head and laughing in bewilderment as I endured this movie.<br /><br />Justin leaves the confines of living at home with a pain killer-addicted mom to go live with his cop father despite Mom's warnings that Dad is no good. When a young woman is found murdered, Justin becomes suspicious of the tenants who reside in the adjacent apartments. With the help of a couple pals, he installs covert cameras to keep tabs on these folks. As the truth begins to unravel, Justin uncovers an unexpected secret.<br /><br />One positive point is that Felissa Rose is HOT! I would have generously slapped an extra star or two on here had she peeled down a bit, but no such luck. It would have been the film's potential saving grace. Eric Conley played Justin very adeptly, I thought, and I wouldn't be surprised whatsoever to see more of him in the future. <br /><br />The general premise of the film, although plagued by clichés, might possibly have worked had it not been for the ridiculously hollow \"\"performances\"\" of key cast members, most notably Alexandra Eitel (Kayla) and David H. Rigg (Justin's father). The horror! (pardon the pun).<br /><br />I have nothing against low-budget films. Indeed, I believe independent film is our only hope for decent film making in the days to come. I'll cut low-budget films quite a bit of slack when it comes to special effects, lighting, even musical score and the overall picture quality. I don't give allowances, however, for stick figure acting and a swiss cheese lover's script. There are a vast number of competently-made low budget films out there. Sadly, this isn't one of them. I can't help but suspect that at least a few of the reviewers who have praised \"\"Dark Chamber\"\" here are in some way affiliated with its production.\"\r\n0\t\"I was shocked by the ridiculously unbelievable plot of Tigerland. It was a liberal's fantasy of how the military should be. The dialogue was difficult to swallow along with the silly things Colin Farrell's character was allowed to get away with by his superior officers.<br /><br />I kept thinking, \"\"Hey, there's a reason why boot camp is tough. It's supposed to condition soldiers for battle and turn them into one cohesive unit. There's no room for cocky attitudes and men who won't follow orders.\"\" I was rooting for Bozz to get his butt kicked because he was such a danger to his fellow soldiers. I would not want to fight alongside someone like him in war because he was more concerned with people's feelings than with doing what was necessary to protect his unit.<br /><br />--<br /><br />\"\r\n1\tRobert Taylor as the mad buffalo hunter Charlie Gilson is the main character in this film. At the beginning I was thinking that Charlie would end up redeeming himself like John Wayne in The Searchers or James Stewart in The Naked Spur. But as the film goes along Gilson keeps doing more atrocities until you realize there is no hope for him. Stewart Granger is Sandy McKenzie, who wants to stop hunting because he realizes that the buffaloes will soon be gone and he becomes disgusted by the act of killing. Gilson is a natural killer who makes no distinction between animals or human beings. Debra Paget as the Indian girl is a surprising character considering the self imposed censorship of that time. She lies with Gilson in total resignation even though she hates him. The last scene of a frozen Gilson, is unforgettable.\r\n0\t\"This film is awful. The screenplay is bad, the is script mediocre, and even the sex scenes are worthless. The thrill and intrigue of the original film are completely lacking. This movie was shot in a dark, shadowy and monochromatic style (a la \"\"War of the Worlds\"\"), which is so disappointing after the beauty of the original film. Greg Morrisey's brooding character displays one facial expression throughout the film. The twists and turns of the original plot are woefully lacking here; the few that do exist are simply anticlimactic. The only highlight is Sharon Stone's performance as Catherine Tramell, faithfully continued in this sequel, but it isn't enough to make up for the other shortcomings. The only circumstance under which a \"\"Basic Instinct 3\"\" should be made would be if Michael Douglas agrees to join the cast.\"\r\n0\t\"Yuck. I thought it odd that their ancient book on curses was made using a common script font instead of hand written. The acting is so apathetic at times and so over-dramatic at other times. Why would a \"\"demonico\"\" kill the two suspiciously quiet doctors who helped make him immortal? Just for the heck of it? And is it really necessary to show Lilith's motorcycle whenever she's out somewhere. We get it! You spent a little bit of money to rent some third rate crotch rocket. It doesn't mean you have to show it all the time! The \"\"Faith's\"\" lair looks like an old school Battlestar Galactica set with some last minute changes. There is a scene where we are introduced to a few people on a talk show for about 30 seconds before they are killed without apparent reason and without importance. Everyone is a throwaway character. Forgettable characters and an even more forgettable plot make this one of the most ill-conceived movies I've seen the SciFi channel come out with. Stay away unless you're into bad movies.\"\r\n1\t\"I've heard nothing but great things about the 2006 television mini-series, \"\"Planet Earth,\"\" narrated by my childhood idol David Attenborough. Nevertheless, whether it was screened down here in Australia or not, I never caught up with it, and when I happened upon the opportunity to see 'Earth (2007)'  a feature-length compilation of the same nature footage  on the big screen, I jumped at the chance. The theatre was basically empty; just one other patron sat in the row ahead of me, and it was as though I had, not only the big screen to myself, but, indeed, the entire planet Earth. For 90 minutes, I was lowered into the beauty and perils of the isolated wilderness, amongst some of the most beautiful living creatures ever captured on film. Awesome in its scope, and yet painfully intimate at times, 'Earth' is a heartfelt plea from the filmmakers to recognise the delicate balance of life on our planet, and how the intrusion of humans has placed countless glorious animal and plant species on the brink of extinction.<br /><br />Though the film, directed by Alastair Fothergill and Mark Linfield, obviously argues for the conservation of the wilderness, it refrains from beating us over the head with propaganda, and the puzzle that is politics is ignored altogether; indeed, there is not a human in sight. Instead, we are simply taken on a breathtaking journey into the majesty of the natural world, to experience the resilience, and also the fragility, of life on Earth. I hear that the original mini-series, which ran for eleven episodes, delves a lot deeper into the scientific background of world ecosystems, but I think that, here, the filmmakers made a wise decision to replace information with emotional impact: I can't remember the last time that I felt so inspired, and yet utterly heartbroken at the same time. By establishing an emotional link between the audience and a select few individual animals, anthropomorphising them to an extent, we are suddenly able to appreciate the \"\"human side\"\" of each species, and their hopeless plight for survival becomes less a statistic and more an unacceptable tragedy.<br /><br />'Earth' is basically comprised of a selection of dramatic episodes, whether it be the struggles of a female polar bear to lead her young cubs to the Arctic ice, or the tramp of an elephant herd towards the life-saving seasonal floodwaters of the Okavango Delta. The documentary demonstrates the delicate balance between life and death, most heartbreakingly exhibited in the desperate ballet of predator-prey interactions. Though occasionally, perhaps to cater towards a younger audience, the footage cuts itself short at the crucial moment, I regularly shed at tear at the inevitability of death in nature, and the raw instinct that fuels these animals' final, hopeless efforts at survival. There's even a haunting beauty to be found in the hunt, both in the slow-motion footage of a cheetah bringing down its prey {the result of a single fateful misstep}, or the majestic mid-air leap of a Great White Shark as it engulfs a hapless sea lion. It is this frail balance that has been fatally disrupted by the selfishness of our own species.<br /><br />Aside from these main stories, we are also treated to brief snippets of wildlife from around the world, including the birds of paradise of Papua New Guinea, and the autumn migration of the demoiselle cranes. Of course, entire films might have been dedicated to these species alone, and an inevitable consequence of having to sift through so much footage is that some interesting ecosystems are glossed over far took quickly. By choosing to focus most closely on the polar bear, elephant and humpback whale  tracing their lifestyles, via some astonishing high-definition time-lapse photography, throughout a calender year  the filmmakers were able to avoid any structural problems that might arise from having so much to show, and only 90 minutes to show it. Consequently, 'Earth' left me thirsting for more, and, fortunately, I now have approximately eleven hours more, as soon as I can track down a copy of the DVD box-set for \"\"Planet Earth.\"\" Uplifting and tear-jerking, awe-inspiring and heartrending, 'Earth' is a truly magnificent documentary experience, and it might just be my favourite film of 2007.\"\r\n0\tI guess I was attracted to this film both because of the sound of the story and the leading actor, so I gave it a chance, from director Gregor Jordan (Buffalo Soldiers). Basically Ned Kelly (Heath Ledger) is set up by the police, especially Superintendent Francis Hare (Geoffrey Rush), he is forced to go on the run forming a gang and go against them to clear his own and his family's names. That's really all I can say about the story, as I wasn't paying the fullest attention to be honest. Also starring Orlando Bloom as Joseph Byrne, Naomi Watts as Julia Cook, Laurence Kinlan as Dan Kelly, Philip Barantini as Steve Hart, Joel Edgerton as Aaron Sherritt, Kiri Paramore as Constable Fitzpatrick, Kerry Condon as Kate Kelly, Emily Browning as Grace Kelly and Rachel Griffiths as Susan Scott. Ledger makes a pretty good performance, for what it's worth, and the film does have it's eye-catching moments, particularly with a gun battle towards the end, but I can't say I enjoyed it as I didn't look at it all. Okay!\r\n0\t\"I am the guy who usually keeps opinions to himself, but I just got back from this movie, and felt I had to express my opinions. Let me start by saying that I am a HUGE horror fan. But what makes a horror movie? I sure like to see even a tiny bit of a good script and character development. I know they often lack in horror movies, but Prom Night looked like it didn't even put forth ANY effort in that department. Next, we all love suspense. That on the edge of your seat suspense with unpredictable surprises. Yeah, Prom Night had none of that! Of course, we like a terrifying killer. Prom Night have that? Nope, it has a pretty boy with a cute lil' knife. And when all else fails...at least horror has its guilty pleasure to make it enjoyable like gore gore gore, and the occasional nude scene! Yeah, well when you have a horror movie rated PG-13 like Prom Night, they leave that stuff out too. So with all of these elements missing, I ask....does this still count as a horror movie? Nope. I'd call it more of a comedy. People in my theater were laughing more at this then they were when I saw \"\"Semi-Pro\"\" that was supposed to actually be a comedy (which also sucked, but thats another story!). I think I am just going to have to give up on new horror. All the good horror movies of the good ol' days have been remade into garbage so movie studios can make money. The people I went to see it with didn't even know this was a remake! Which made me mad! I wonder what will happen when there's no more movies to remake??? Where will horror go next???\"\r\n0\tTo be brutally honest... I LOVED watching Severed. That's why I<br /><br />gave it a 1/10 stars because of its starkly unimaginative<br /><br />story/filming/acting/everything. This film was a RIOT to watch. If<br /><br />you enjoy watching bad films in order to poke fun at them, you will<br /><br />really get a kick out of Severed.<br /><br />The story really doesn't matter, it involves some guy who's bald<br /><br />and has a sword and goes around beheading random people. <br /><br />But he has a supernatural twist... nobody ever sees him do it. <br /><br />Even when, in one very memorable scene, he walks into a<br /><br />jampacked night club and whacks off some girl's noodle and<br /><br />nobody sees it. <br /><br />Severed doesn't merely look like it was filmed on video- it WAS<br /><br />filmed on someone's home camcorder. The filmmakers had<br /><br />knowledge of lighting (very thin knowledge) and composition<br /><br />actually holds together in some scenes. But mostly you can't hear<br /><br />the actors... you can't understand what they're doing, and you laugh<br /><br />when the next vicitm gets his pumpkin detatched from his body.<br /><br />Go and rent this movie. Support films like this- they are a hoot and<br /><br />a hollar!\r\n0\tWhy did I waste 1.5 hours of my life watching this? Why was this film even made? Why am I even commenting on this film?<br /><br />One reviewer said this film took patience to watch and it was n't for everybody. I cannot figure out who this movie is for. maybe after dropping a hit of acid, SOMEBODY, SOMEWHERE could watch this and make some sense out of it. It is incoherent, it isn't experimental, it's plain and simple garbage. The film follows no plot line whatsoever, just when you think you have something, well.....you don't. <br /><br />I think the ending brought some finality to the film (no pun intended), the viewer gets a glimpse of what might have been going on. I don't think I put a spoiler in here, not that it would matter. This film is another must miss in the world of filmdom.\r\n0\t\"I'm glad the folks at IMDb were able to decipher what genre this film falls into. I had a suspicion it was trying to be a comedy, but since it also seems to want to be a dark and solemn melodrama I wasn't sure. For a comedy it is amazingly bereft of even the slightest venture into the realms of humour - right up until the ridiculous \"\"twist\"\" ending, which confirms what an utter waste of time the whole movie actually is. It is hard to describe just how amateurish THE HAZING really is. Did anyone involved in this film have any idea at all what they were supposed to be doing? Actually worth watching so that you can stare at the screen in slack-jawed disbelief at how terrible it is.\"\r\n1\tI had seen this film many years ago and it had made a lasting impression on me. Alas, I have hardened to many films over the years and did not expect to be impressed by 'Kalifornia' upon watching again recently. I am pleased to say that it is every bit as unnerving and watchable as it was ten or so years ago.<br /><br />There are two things which really give this movie its power. The first is its cast. We have a staggeringly disturbing turn by a young Brad Pitt as Early Grace. Knowing Pitt, as we all do, as one of the most enduring heart-throbs Hollywood has ever had, it is refreshing to see him play such a vile, unattractive character. Pitt pulls the show off without resorting to white-trash cliché or parody, and manages to remain genuinely terrifying throughout the movie.<br /><br />Juliette Lewis is equally impressive as Grace's tragic girlfriend, playing the character like a ten year old girl with a forty year old's life experience. Lewis manages to evoke pity (for her character's station in life) as well as contempt (for her naivety), but she underpins her performance with the kind of subtlety rarely seen by an actor so young. Personally, I think it's a tragedy that neither Pitt nor Lewis were nominated for any awards for their performances here.<br /><br />David Duchovony and Michelle Forbes are both perfectly cast as the yuppy couple who unwittingly end up travelling across the US with Pitt and Lewis. Duchovony is aptly geeky and naive, and Forbes seems emphatically cynical and shut-off, but both actors manage to convincingly portray their characters' changes as they are equally intrigued, repulsed and strangely attracted to Pitt.<br /><br />The fine casting and uniformly brilliant acting aside, this film really grabs us by the proverbial balls through its flawless pacing. At the time 'Kalifornia' was released, Hollywood was releasing a slew of nice-character-turns-out-to-be-psychotic movies ('Single White Female', 'Pacific Heights', 'The Hand That Rocks The Cradle', 'Deceived', 'Sleeping With The Enemy' etc). Most of these movies followed the same formula, the only variation being the nature of the relationship between good guy and bad guy. 'Kalifornia' doesn't really stray too far from this territory, but its first two acts are the perfect example of the slow-boil thriller, and we are kept on the very edge of our seats waiting for the tide to turn.<br /><br />When the penny does drop, and Pitt is let loose to play the maniacal bad guy, the film shifts gears completely and the last twenty minutes don't quite live up to rest of the movie. That said, the action is thick and fast and the resolution is suitable cold. The fight is over, but the scars will always be there.<br /><br />Much of the narration (provided by a somewhat whiny, pre X-files Duchovony) is a tad contrived. Of course, it's meant to be from the book the Duchovony's journalist character has written, so one could argue that the self-conscious narration is meant to be a nod to the kind of sensationalised style in which most journalists write.<br /><br />The film is largely a success and is certainly a cut above 90% of the thrillers of the past twenty years. Highly recommended, but not for the weak of stomach or mind. This film is disturbing on more than one level. But then, it's meant to be.\r\n1\t\"Panic In The Streets opens in high noir style, a view along a dark street followed by a camera tilt upwards to a window, behind which is playing out a sleazy card game - an opening flourish which, along with some of the location shooting, anticipates some of the atmosphere Welles brought a decade later in Touch Of Evil. One of the players throws open the window; it's an appropriate action, serving as an introduction to the events within as well as literally opening up our first view of the underworld.<br /><br />Shot in high contrast black and white, Panic In The Streets benefits immensely from a strong cast as well as some fine location shooting in New Orleans. Scenes set in such places as the mortuary, the crowded shipping office or amidst the peeling paint of 'Frank's Place' offer a unique, and sometimes claustrophobic atmosphere, impossible to recreate in the studio. With these elements, Kazan's film shows the influence of Dassin's groundbreaking Naked City of two years earlier, which established the gritty, almost documentary style within the noir cycle. In fact, Widmark's previous role had been in Dassin's even finer Night And The City, a film in which a sense of rising panic was even more prevalent. Joe MacDonald, a favourite with the director, photographed Panic In The Streets' detailed environment. MacDonald also worked on Kazan's Pinky and Viva Zapata!, and went on to shoot Widmark again three years later in Fuller's masterpiece Pick Up On South Street.<br /><br />As others have noticed, in a manner typical of some noir films, Kazan's work offers a contrast between the confusion, sickness and immorality of the streets with the modest, calm home life of the Reeds. But whereas (for instance) in Lang's The Big Heat (1953) the home life of the hero is destroyed by elements of vice surrounding the embattled central character - ultimately sending him back to work with an increased vigilance and sense of vengeance - Panic In The Streets places Reed's rising anxiousness within the confines of what amounts to just another working 'day'. Despite all the danger, ultimately he returns back to the bosom of his family justified and satisfied. The implication being that social balance has been restored, at least for the moment by his professionalism and curative skills.<br /><br />That imbalance of course, has been created by crime and disease. The two are closely associated in this film. It reminds one of the tagline from the much cruder Cobra (1986) - where \"\"Crime is the disease. Meet the cure,\"\" a neat analogy in context, if one which rings too uncomfortably of social reductionism. At its climax, as Blackie attempts to flee aboard ship, the visuals specifically allude to rats as being similar to criminals, both posing a menace to society's health. As (the presumably infected) Blackie prowls round the cheap rooms and the docks with his cronies, in search of something he suspects everyone is after, if without knowing exactly what it is, 'plague' and 'Blackie' resonate together in the audiences mind, adding further to connected associations. Ironically Blackie's hunch about Poldi's unfortunate cousin, that \"\"he brought something in\"\" of note is correct - even if, finally, its nothing he can sell or steal. Blackie's logical assumption that the police would not normally bother with the murder of some anonymous illegal immigrant has a ring of truth about it, and his so confusion is understandable.<br /><br />Dr Reed, although home-loving, and on the side of society, is a true noir hero. Familiar to the genre is the chief protagonist as a man who walks alone, forced to travel beyond the limits of the law. In his way, Reed is forced to take morality into his own hands for the sake of society at large - a dimension of the film that is particularly apposite, given director Kazan's controversial personal history. The director testified before the infamous HUAC, naming suspected communists and fellow travellers. His film depicts suspects being hauled in for questioning, and the manhandling of the press, on the grounds that the overriding public good justified the means. These actions perhaps echo the director's sentiments at the time, presumably accepting the McCarthyite witch hunt and the suppression of civil rights it entailed in the light of presumed communist infiltration of the entertainment industry. In these times of terrorist threats and state response, such issues as they appear in the film are strikingly modern.<br /><br />Standout scenes in the film include a notable scene where Blackie interrogates the dying Poldi as to the precise nature of his cousin's presumed contraband. Cat like, Blackie stalks his victim across the room, eventually preying over the doomed man's sick bed, holding Poldi's feverish head in his hands - a striking, evil cradling. It's a gesture emphasising the intimate nature of corruption, whether moral or physical. Apparently, the actors did many or all of their own stunts, which leads to some other, very dramatic scenes at the end, as the police and health authorities close in on the villains under the wharfs. Half crawling, half scrambling over the slippery timbers at the edge of the dock pool must have been an experience very uncomfortable for Palance, but it is sequence that adds immensely to the immediacy of it all.<br /><br />Occasionally less convincing elements distract the viewer. Apparently Dr Reed is left to fight a potential national emergency little government backup. Perhaps just as astonishingly, he never inoculates himself - inviting a dramatic turn which never materialises. At the end of the film, too, the potential epidemic has been halted, all contactees located, a little too neatly. But these weaknesses are more than outweighed by the other satisfactions of a film that still makes for compulsive and relevant viewing today.\"\r\n1\tIf you have any clue about Jane Austen´s production, you´ll now that she repeats the same in each of her novels: marriage, marriage and marriage! In my opinion all the movies made from her novels are a bit boring, but I like Austen´s characters, because they all have a certain personality and typical sayings they like to repeat as also in Emma. The thing that makes Emma good is Gwyneth Paltrow, she´s very good in her leading role. Also the fact that each one of the characters in the movie don´t seem to be able to think anything but how to get a good partner and soon married makes the movie hilarious.\r\n0\tThere is absolutely no plot in this movie ...no character development...no climax...nothing. But has a few good fighting scenes that are actually pretty good. So there you go...as a movie overall is pretty bad, but if you like a brainless flick that offer nothing but just good action scene then watch this movie. Do not expect nothing more that just that.Decent acting and a not so bad direction..A couple of cameos from Kimbo and Carano...I was looking to see Carano a little bit more in this movie..she is a good fighter and a really hot girl.... White is a great martial artist and a decent actor. I really hope he can land a better movie in the future so we can really enjoy his art..Imagine a film with White and Jaa together...that would be awesome\r\n1\tCharming in every way, this film is perfect if you're in the mood to feel good. If you love jazz music, it is a must see. If you enjoy seeing loveable characters that make you smile, can bring a tear to your eye and swing like there's no tomorrow this film is for you. If you are looking for an intense, deep, heavy piece of art to be dissected and analyzed perhaps you best stick with something by Darren Aronofsky (in other words - reviewer djjohn lighten up, don't you know a good time when you see one!) My only complaint is that the movie was just too darn short. I guess I'll just have to watch it several more times to get my fill.\r\n0\tJim Belushi is having a mid life crisis, nothing is going right, when his car goes out on him..he goes into an empty bar where Michael Caine shows him what life wouldve been like if one event in high school had come out differently.. A good premise with some moments..but mostly flat and uninteresting. on a scale of one to ten..3\r\n0\t\"So, this movie has been hailed, glorified, and carried to incredible heights. But in the end what is it really? Many of the ways in which it has been made to work for a hearing audience on the screen do not work. The fairly academic camera work keeps the signing obfuscated, and scenes that are in ASL are hard to follow as a result even for someone who is relatively fluent. The voice interpretation of Matlin's dialogue, under the excuse that Hurt's character \"\"likes the sound of his voice\"\", turns her more and more into a weird distant object as the film goes on. Matlin does shine in the few scenes where her signing is not partially hidden from view. But nonetheless, most of the movie, when this is a love story, is only showed from a single point of view, that of the man. As Ebert said, \"\"If a story is about the battle of two people over the common ground on which they will communicate, it's not fair to make the whole movie on the terms of only one of them.\"\"<br /><br />The idea that an oralist teacher who uses methods that have been imposed in many deaf schools for decades would be presented as \"\"revolutionary\"\" is fairly insulting in itself. His character becomes weakened as a credible teacher as the movie goes on. Drawing comedy from a deaf accent is, quite honestly, rather low. And his attitude towards the male students of his class is pretty symptomatic of how he seems to act with women: as an entitled man. A party scene involving a number of deaf people including a few academics meeting together leaves him seemingly isolated, in a way that's fairly inconsistent with his credentials: I have seen interpreters spontaneously switch to asl between each other even when they weren't aware of a deaf person being in the area, and yet somehow he feels like a fish out of the water in an environment his education should have made him perfectly used to. As a lover, he seems like a typical dogged nice guy, including his tendency to act possessively afterwards. And yet the movie is, indeed, only really seen through him, as everything his lover says is filtered through his voice. <br /><br />The scenes involving the other deaf kids are, in general, wallbangers. The broken symbolism fails, the dance scene, the pool scene, even the initial sleep scene which is supposed to carry some of it - all these scenes that try to hint at the isolation of the deaf main character are broken metaphors, at best: many hearing people I know do dance on the bass beats that deaf people feel (instead of squirming like copulating chihuahuas), and going to take an evening dive for a hearing person is rarely an excuse to make a deep statement on the isolation of deafness (no, seriously, when I go swim, I go swim)...<br /><br />It also fails at carrying the end of the play, instead making it a story of a deaf woman who submits to a strong man. Even though the original play ended with a more equal ground, where both have to accept each other as they are, and where he has to finally recognize her real voice is the movement of her hands, not the vibrations in her throat.<br /><br />And for all the breakthrough that it may have seemed to be, Marlee Matlin remains Hollywood's token deaf woman to this day.\"\r\n1\tThis is a great film. Touching and strong. The direction is without question breathless. Good work to the team. I feel so sorry for Marlene, By the grace of God go you or I\r\n1\t\"The Danes character finally let's Buddy have the awful truth. \"\"\"\"Leave me alone, kiss men if you want to,\"\" she screams self-righteously in front of everyone, thus destroying the man who has been in love with her for so long. Nice girl. This might be the place to reconsider all of the giggly charm that Danes pours into this character. Great reason to feel sympathy for her lying in bed and dying, but hey, remember, there are no mistakes, except, maybe, seeing this film. <br /><br />Wait a minute. This irony is intended! This is actually a masterpiece of ironic wit, yes! But somehow I doubt that's what the creators of this film had in mind, sadly. Maybe there are a few mistakes, after all.\"\r\n1\t\"I was first introduced to \"\"Eddie\"\" by friends from \"\"across-the-pond\"\" who know I like intelligent humor. I prefer comedians who can be thought provoking while entertaining such as George Carlin and Dennis Miller. In 'Dress to Kill' Eddie provides the same type of social observation humor that stimulates your thoughts on a subject all the while causing your side to split at the same time. There is a wide range of subjects in this stand-up and they are simply hysterical. The piece on how to decide on Englebert's stage name will leave you in stitches!<br /><br />Thanks Andrew and Catherine! ... and \"\"Do you have a Flag?\"\"\"\r\n0\tBilly Crystal co-wrote, co-produced and stars in this extremely safe and comfy comedy-drama about fathers and sons, adult irresponsibility, and growing old. Billy plays a heart surgeon who has a heart attack (ha ha) which causes him to seek out his estranged father (Alan King), a movie-extra who fancies himself a big star. The script is sub-Neil Simon nonsense with one-liners galore, a flat, inexpressive direction by Henry Winkler (stuck in sitcom mode), and family-conflict at the ready. Crystal and King try their best, but King is over-eager and frequently over-the-top. JoBeth Williams has another one of her thankless roles, but manages to bring her innate, down-home class to the proverbial girlfriend character. It's a comedy, I guess, but one that blinks back the tears...shamefully. ** from ****\r\n0\tMost action films are crass of Hindi cinema, especially of Sunny and his family <br /><br />The film is typical Sunny type with bashes, big dialogues and melodrama<br /><br />The film also has typical Rajiv Rai ingredients of many henchmen and a weird villain<br /><br />The starting is okay and then the shift to Kenya is good but then the film goes on and on <br /><br />The sequence of events move at a slow pace and nothing that great happens<br /><br />They are many stupid scenes like the Kenya policemen are shown like jokers especially Sharat<br /><br />The climax too is prolonged<br /><br />Rajiv Rai does an okay job Music is okay, only 1 song works and that is the last TOOFAN Camera-work is good<br /><br />Sunny Deol is as usual, Chunky acts like a monkey while his serious scenes are laughable, Naseer is alright heroines are pure wood Amrish Puri is not even half as scary as he was in TRIDEV the rest are okay\r\n1\tUna giornata particolare is a film which has made brilliant use of closed spaces.It is in these dull,empty spaces that the audience sees the emotional turmoil and boisterous outbursts of Ettore Scola's two leading characters.Marcello Mastroianni and Sophia Loren play two frustrated individuals who decide to come together for some brief moments of their listless lives.It is the element of sadness associated with the narrative that makes us believe that people will take sides with characters close to them.All men would really feel sorry for Sophia Loren's character.All women would surely cry their hearts out at Marcello Mastroianni's existential plight.Disguised sexualities are also one of the key issues of this somber,poignant film.Most of the characters grapple with issues related to their own sexualities.Una giornata particolare cannot be termed as a pro gay film although it has been nicely depicted that a homosexual chap mixes well with women.This is a film for which Italian director Ettore Scola has crafted a fairly good mix of fact and fiction.His idea is to show how the arrival of Hitler changed destinies of ordinary Italian folks.A word about the courageous personnage played magnificently by great Marcello Mastroianni.He acts as a real man who does not beg for pity.He happily accepts his fate and readies himself to face the worst time of his short yet meaningful life.A true masterpiece of cinema !!!\r\n1\tI found this to be a surprisingly light-handed touch at a 1950's culture-clash movie. John Wayne would hardly be one's first choice as a cultural attache, being about as diplomatic with his good intentions as a bull-run in Harrods. But this time he was left to play a part that was far more passive than his usual bluff persona, and he accomplished his task with style. The Duke was a guy who really could act well. His facial expressions and body language could be extremely subtle.<br /><br />Despite his considerable presence both as an actor and in terms of screen time, he failed to dominate this movie. Many of his good intentions came a cropper. He had authority over nobody, and the intermittent narrative was provided by the titular geisha to whom he was the barbarian.<br /><br />The story of American attempts to curry favour with an isolationist Japan was one of political intrigue rather than swashbuckling or hell-for-leather battles. I cannot comment on the accuracy of its research but the strangeness of the Oriental culture to western sensibilities was demonstrated well. There was a great deal of minutely-choreographed ceremony entailing what looked to this observer like authentic costume and props. The set pieces were complex and detailed. A lot of money and thought had been applied to it.<br /><br />The fractured romance between Wayne and his geisha added a little extra element, and stopped the movie becoming just a political or flag-waving effort. Script was good without being too wordy. There was a great deal of Japanese dialogue, but the lengthy periods of translation didn't interfere with the narrative. It was nice to see plenty of genuine orientals on the set. Whether or not they were Japanese, I couldn't say. But anyway they looked the part. At least the leads were not played by cross-dressing Caucasians, unlike other efforts such as 'Blood Alley' (yes, I know they were Chinese) 'The Inn Of The Sixth Happiness' or even 'The King And I'.<br /><br />Frankly, I enjoyed this more than any of those other movies. The script was better for a start. I never liked the songs in 'The King And I', and wasn't impressed by the heavy-laden anti-communist subtext of 'Blood Alley'. I confess to never having seen this work before and found it compared very favourably to many of The Duke's more popular outings.<br /><br />Recommended.\r\n1\tCypher is a movie well worth seeing because it's not the run-of-the-mill Sci-Fi flick. The artistic approach is painted with dark scenes and a kind of macro view of what's going on. The close-up camera view is how the director keeps the plot illusive. The sci-fi aspect of the movie is secondary to the plot of the movie. The technology used in the movie isn't overly impressive, however, the director makes good use of the props. <br /><br />The character development is intentionally shallow. The main character, Jeremy Northam, decides to immerse himself into the world of espionage. It's up to the audience to figure out his enigmatic character and it's the enigma that keeps the audience interested right to the very end.\r\n0\t\"This is available on a \"\"Drive In Double Feature\"\" from Dark Sky Films, and since I just had finished up \"\"Barracuda\"\", I watched this too. This is a film that proves to be incredibly ambitious and inept at the same time.<br /><br />We begin with two young ladies wandering the streets of some foreign town, but where exactly are they? They stop to look at necklaces from some Chinese vendor, and try on Chinese-style clothes at a shop, but then we see some Aztec dancers? And all the while, these girls are being followed by two guys, who eventually drop whatever stealth they didn't have to chase the girls on a wild run though the town, and they finally catch them.<br /><br />It seems that one of the girls has a coin on a string around her neck, and these guys want to find the loot, and where did she get it? So, in flashback, we go back to find out. And how did they know she had this coin? Hard to say, really.<br /><br />Now, back in the day, when these two women were 10 years old, they were out with their sisters and their sister's boyfriends on a boat, and after stopped to get air in their tanks, they tow this young boy back to his home dock, only to have his grandpa come out & invite the \"\"young 'uns\"\" up for herbal tea with granny. But not everyone has the tea, Todd has gone back to the boat to check on the young girls, and then when they're away from it, the boat blows up, and when they get back to the house their friends have mysteriously disappeared. Well, it seems as though these \"\"kindly folk\"\" raise their own vegetables but they wait for the meat to drop by for a spell, and serve it herbal tea.<br /><br />But the girls and Todd did leave the island, but now, they're returning, escorted by their captors, and they're there to find the treasure, despite the fact that no one ever showed the girls where it was BEFORE. There also seems to be someone else on the island, and the thugs mysteriously begin to die, one by one, and since there's only three, it doesn't take long. And there's even a sort of happy ending, which will leave the viewer every bit as baffled as they were throughout the rest of the film.<br /><br />The two thugs seem to be speed freaks with anger issues, and combined with no acting ability they're borderline hilarious. The hillbilly-type family is also devoid of acting ability, despite the fact that the grandpa is Hank Worden, who appeared in many films and TV shows. The action is confusing, the locales are even more confusing, and the island looks like Southern California.<br /><br />So what the hell IS this? I'm not sure, but it certainly is worth seeing once so you can think (or say), huh? 4 out of 10, very bizarre.\"\r\n0\tSome things need to be clarified. The picture of Mark Ferris is not the Mark Ferris who starred in this movie. I know that because he was my dad. Please remove that picture. Also, Mark Ferris was the writer, at least one of them. I have been trying to find a copy or a way to see this movie again. It has been years and if someone can point me in the direction of obtaining a copy, that would be great. The movie wasn't all that bad, and trying to compare it to todays world of Star Wars and other high tech sci fi's it futile. If you watch it, just enjoy it for the rediculousness and humor it possesses. Lighten up on being movie snobs and enjoy some less creative and innovated films.\r\n0\tIf there was ever a call to make a bad film that reflected how stupid humanity could become, this one would take the prize. The plot centers around bible prophecies that lie in hidden messages of the scriptures that prompt a group of power-seeking thugs to attempt total control of the world. Just how stupid does this writer believe people to actually be? <br /><br /> The acting was bad at best. Casper Van Dien wasted his talent doing this film. Michael York's work was a fair match for the role, since he was the center of the film, and did a good job. <br /><br /> This plot was sickening and very disturbing. No tender or immature minds should see this film. This is how a basic good vs. evil plot can go astray.<br /><br /> There must be a lot of mental disease floating around the film circles, who look for ways to market this type of junk. There must have been something censored out to get a PG-13 rating, but it was still awful.\r\n0\t\"I feel the movie did not portray Smith historically. The goal of this movie was to tell Smith's life in a way that would be \"\"comfortable\"\" to the LDS Church leaders, historical accuracy seems to have been of little concern. The movie was designed to be a \"\"faith promoting\"\" experience, not a balanced view of Smith \"\"as a man.\"\" I have taken it upon myself to study Smith's life and have read both LDS works and none LDS works. The movie, like most LDS projects, was beautifully filmed and well acted. However, this was not a realistic portrayal of either the beginnings of Mormonism or Smith's relatively short life.<br /><br />A significant period of time was given to reenacting an accident that Smith had when he was seven. While this event was no doubt important in forming his mental outlook, it appears that the main reason for including it in the film is to help establish a sympathetic view of Joseph Smith. Another point is in portraying Smith's teen years the film is silent regarding the Smith family's involvement in magical practices during the 1820's. Another problem is while the movie shows Joseph Smith good-naturedly entering into wrestling contests, it fails to show how he sometimes lost his temper and became violent.<br /><br />I could go on and on. This movie was not historical in any way and should be considered a fictional movie about a man. I would not recommend seeing this movie for any other purpose other then entertainment.\"\r\n1\t\"Anyone who doesn't laugh all through this movie has been embalmed. I have watched it at least twenty times and I still get tears in my eyes at many of the scenes. Sally Field is absolutely perfect as Celest Talbert, a fading soap star whose supporting cast is trying to get her replaced in hopes that their own star will rise. Fields, at 45, still has that wonderful and beautiful pixie quality and a perfect figure that belies her having had three children. I'm biased, I'm in love with her.<br /><br />The cast of \"\"Soapdish\"\" is filled with stars who perform their roles to perfection. Kevin Kline is flawless, as are Robert Downey Jr., an ingénue Elizabeth Shue, Whoopi Goldberg, Teri Hatcher in one of her early roles, Carrie Fisher as the oversexed casting director who auditions an actor for a small part as a waiter without his shirt on. Kathy Najimy is wonderful as the hapless costume designer, and best of all, Cathy Moriarty as Nurse Nan who leads the plot to get Fields character removed from the show is hilarious.<br /><br />This movie should have won Oscars for best comedy, best leading lady in a comedy, best leading man in a comedy and myriad other bests, including writing, directing and supporting actors and actresses. Get the DVD so you can watch it over and over for the next twenty five years. You will still be laughing at it when the disc wears out.\"\r\n1\t\"The title overstates the content of this movie somewhat, which might lead to some unrealized expectations. Frankly speaking, there's very little \"\"panic in the streets\"\" to be seen here. In fact, throughout the movie very few people actually know that there's a murderer on the loose who may well be spreading the plague to everyone and anyone he encounters. Having said that, what we do have here is a very well done story with a level of suspense that starts out reasonably high anyway (because, unlike the people \"\"in the streets\"\", the viewer knows what's going on) and that director Elia Kazan builds very deliberately. As the plague-infected killer is sought, one of the more interesting sidebars I found was the developing relationship between Dr. Reed (Richard Widmark) and Police Captain Warren (Paul Douglas). At the beginning, the two really don't like each other, even though they have to work together. By the end, they've forged a real bond of respect for each other. Kazan did a good job with that.<br /><br />Pretty much all the performances here were excellent. Widmark and Douglas were great, and I was quite taken with a very early look at Jack Palance playing what would become his typical \"\"heavy\"\" role. I found very little to criticize here. Perhaps Barbara Bel Geddes came across as a little bit flat as Reed's wife Nancy, but her role wasn't really central to the story. All in all, an excellent piece of work. 9/10\"\r\n1\tI just don't understand why this movie is getting beat-up in here. Jeez. It is mindless, it isn't polished and it is (as I am reading) wasted on some. The cast of this movie plays their characters to the 'T' (If you watched Permanent Midnight and became a Ben Stiller fan then yes you will be disappointed). These are misunderstood, well-intentioned misfits trying to save the city/world with nothing but grit and determination. The problem is they don't realize their limits until the big showdown and that's the point! This is 3 times the movie that The Spy Who Shagged Me was yet gets panned by the same demographic group, likely the same people who feel the first AP movie pales in comparison to the sequel. I just don't get it. The jokes work on more then one level; if you didn't get it I know what level you're at.\r\n1\tFull House is a great family show. However, after watching some episodes over and over again I've realized that they're incredibly boring and they seem to shelter themselves from the outside world a lot. Yes, there is a lot of comedy, but there are times when it's incredibly cheesy. It's not like I hate it, but just don't watch them over and over again because they get old quick. Probably the best season is the first.<br /><br />Full House is about widower Danny Tanner(Bob Saget)and his three daughters D.J. (Candace Cameron) Stephanie (Jodie Sweetin) and Michelle (Mary-Kate and Ashley). When Danny's wife dies the he is in need of some help. So, his best friend Joey (Dave Coulier) and the girls' Uncle Jesse (John Stamos) moves in with them. Once they live there together they find they can't live without each other. <br /><br />Full House reminds you just how important family is and that you can always go home again.\r\n1\tJacknife is a masterpiece of the 80's. It's a movie that breaths through amazing acting and a very interesting directing touch. In Jacknife both lovers of European and American cinema can find things to relate on. The screenplay is very compelling and full of beautiful characters. Ed Harris is giving one of the greatest performances up to date. He portrays his alcoholic hero superbly making us feel his broken heart in each line, in each move. Robert De Niro makes us once again think of him as one of the greatest actors of all time in one of the simplest but also most realistic performances in his career. Jacknife is never getting boring as it shows its heroes clear of any typical Hollywood's typical character elements. After the war none is a hero. Everybody is a loser, and this movie is about that simple truth. None can mend up his pieces after a war, just like the heroes of this movie. Jacknife is about the diseases of the soul that war creates. Simply magnificent movie.\r\n1\tThat's what t.v. should be. And Pushing Daisies lives up to those expectations. A beautifully crafted and well-designed show, Pushing Daisies is one of the few shows left on prime-time that has integrity, is good for the entire family and sparks your imagination. It's not about the normal action, sex, money or murder angles of every other show on t.v. It's a show that makes you think and laugh, but although the basic plot may seem impossible, the concepts are real to us all. Wanting something you can't have, hoping for someone to want us, running away from your past and searching for family, even in the most unlikely of places, etc...<br /><br />I realize that ABC has basically canceled this wonderful show at this point, and will most likely replace it with some show beyond the point of integrity. I suppose everything does come back to money... it's too bad that there are now no other shows on ABC that actually make you feel good after watching.\r\n0\t\"I can clearly see now why Robin Hood flopped quickly. The first episode of it is probably the worst ever thing BBC has aired. The opening scenes were about as intense, meaningful and intelligent as two monkeys fighting, Robin Hood had no character, and the sword fight was just laughable. The worst part of the episode was Robin Hood snogging some cow clad in make-up at the beginning of the episode - how many people wore eyeliner in the 12th century? Nobody. The series may have improved drastically since then, but this first episode quickly put people's hopes down, and is essentially a pile of cr*p. A great hero of England has been disgraced.<br /><br />\"\"Will You Tolerate This?\"\" I won't, that's for sure, unless the BBC start to understand what is a wise investment. 3/10\"\r\n0\t\"I saw this film at the Rotterdam Festival, as did presumably all the other voters. The Director was present and seemed to have worked very hard and be very committed to the project, which I think explains the above average reception and mark it got. It's most similar to a feature length episode of Aussie kids favourite \"\"Round the Twist\"\" but it takes itself too seriously to have even that redeeming feature. The movie in itself is maybe worth seeing if you're trying to do a cinematic world tour visiting all UN member states, as I can't think of another Fijian movie but overall it was generic, poorly acted (albeit by an amateur cast) and prey to the subaltern mentality. The moral of the story seemed to be that native islanders will try and screw each other over, but as long as there is an essentially decent white governor to step in, all problems can be solved (by leaving the island).\"\r\n0\t\"This has to be one of the worst movies I've ever seen. This movie has nothing positive about it. Some of you people actually like this movie! I've seen a lot of Dracula movies and I've liked everyone that I've seen, but when I saw this movie I said to myself, \"\"What the hell is this?\"\" What a stupid movie. Now they have Dracula becoming who he is because he is Judas. For those of you who don't know who Judas is, he betrayed Jesus Christ and then felt so guilty he hung himself. You have to be kidding me. That's the dumbest reason I've ever heard for why Dracula became evil. Who asked for a reason anyway? What a piece of sh** this movie is. Who ever came up with this sorry excuse for a movie should be beaten. Even the Dracula is horrible. If you ever saw this movie you wouldn't even think it was Dracula. Wow, Dracula 2000! Is that title supposed to impress me? Don't waste your time or your money on this trash.\"\r\n1\t\"This is one of the greatest 80s movies!!! It sticks out like a \"\"turd in a punchbowl\"\"!! I can't believe Mad Magazine denounced it or whatever. And yet, they proudly put their name on a show with \"\"Stuart\"\", \"\"I-speak-a-no-enlish Chinese lady\"\" and \"\"UPS guy on speed\"\". What's up with that? And, I LOVE Ron Leibman-he's foxy!! Wonder why he had his name removed from the credits? It was his funniest role that I know of. Of course, he's not nearly as foxy as he was in Norma Rae. But, in my opinion, this movie is right up there with National Lampoon's Vacation. If you liked movies such as Porky's, Fast Times, Last American Virgin, or any of the other 80s teen-focused movies, you'll love this one!! Rent it and you'll see what I mean!!\"\r\n0\t\"As a young black/latina woman I am always searching for movies that represent the experiences and lives of people like me. Of course when I saw this movie at the video store I thought I would enjoy it; unfortunately, I didn't. Although the topics presented in the film are interesting and relevant, the story was simply not properly developed. The movie just kept dragging on and on and many of the characters that appear on screen just come and go without much to contribute to the overall film. Had the director done a better job interconnecting the scenes, perhaps I would have enjoyed it a bit more. Honestly, I would recommend a film like \"\"Raising Victor\"\" over this one any day. I just was not too impressed.\"\r\n0\t\"I watched Written on The Wind starring Rock Hudson,Lauren Becall,Robert Stack & Dorothy Malone- Robert Stack was terrible- just bloody horrible- he was supposed to be a charming jet-setting millionaire- instead he came off like a jerk from the word go- the plot was stupid and overwrought and the 3 \"\"romantic\"\" leads had no chemistry. Somehow Dorothy Malone won an Oscar for best supporting actress- although her campy tramp character was boring- think the older sister from Splendour in The Grass filled with malice and bitterness and lacking charisma. Director Douglas Sirk has the entire cast overact their way through dialogue that felt forced and the end result was a waste of 99 minutes. Had a cameo by the actor that played the chief on Get Smart\"\r\n0\tIf you've ever wanted to see a film that stresses style over substance, this is for you. To me, Son de Mar is beautiful to SEE, but there's precious little substance, unless mawkish, melodramatic, manipulative love yarns turn you on. This may be one of those famous 'chick flicks' you've heard so much about. <br /><br />We're about half-way through this film before anything really happens: Ulises (Jordi Molla) goes out to sea looking for tuna, and doesn't come back, leaving his wife Martina (Leonor Watling) and son to fend for themselves. Then, in a furious six minutes of screen time, they bury Ulises, Martina gets married again, and her son grows into mid-childhood. This rapid transposition is jarring, to say the least, and very sloppy: after 40 minutes of more or less hanging around, we're suddenly into a full-blown melodrama, all in six minutes. I think this is called wayward narrative pacing.<br /><br />Five years later, Ulises (as in the wandering superhero Ulysses; get it?), returns to his 'Penelope' (Watling) only to find she's married to Sierra (Eduard Fernandez), an inexplicably wealthy guy (what does he DO to earn all that dough?) who inexplicably keeps crocodiles as pets. When Martina, in great anger, questions Ulises about his absence, he tells her that he'll take her to the island of Sumatra someday and she'll understand EVERYTHING.<br /><br />And here's the thing: he DOESN'T take her to the island of Sumatra. The reference just dies somewhere in the script. He DOESN'T really explain where he was and why he ignored his wife and child for five years. He DOESN'T acquit himself as an honourable guy, and the movie DOESN'T fill in the plot holes that are staring at us for at least half of the film. I can only assume that director Bigas Luna wants us to fill in the story lines with the mystical clues (fish, reptiles, the sea) he offers through breathtaking cinematography and evasive dialogue. It just doesn't work. The narrative 'arc' on this film ends up looking more like a wobbly clothesline.<br /><br />I'm sure Jordi Molla is a good actor, but I just couldn't buy his Ulises as any kind of hero (which is what the original Ulysses was supposed to be). With moist sensuality, he spouts a short stanza of identical poetry from Virgil roughly 2,000 times and each and every time it excites Martina to explosive orgasm. This guy should be rented out to reinvigorate stale marriages. I'm sure Virgil would be impressed. He didn't get laid that often, as I understand it. <br /><br />This poetic 'device' figures prominently in the film, and I had no choice but to assume it was a gender reversal of Ulysses' famous 'siren song' (i.e. beautiful maidens singing seductively to far-off sailors, who were doomed if they answered the, well, siren call). If this is what Bigas Luna is up to, you can see the problem -- he's offering convoluted symbolism in a snatch-and-grab attempt at High Art. Once again, it just doesn't work, at least in my eyes.<br /><br />Watling is a beautiful and magnetic young actor, but she gives us a character here who doesn't seem to have much intellectual or even romantic depth. It's beyond me how she could desperately fall in love with a guy who sports a for-rent sign on his face (as in vacant), oily 1960s-style hair that looks more like seaweed, and one of those trendy 21st-century 'beards' (you know, four days' growth, no more, no less). He's SUPPOSED to be a dreamy kind of guy (I think), but those eyes of his suggest he might be suffering more from overexposure to a preposterous script. <br /><br />But, don't despair, this film is great to look at. Just don't try to connect the dots on the red herrings or think too much about what you're hearing in the way of dialogue. You can do a lost of fast-forwarding on this film (particularly in the first 40 minutes) and you really won't miss much.\r\n0\tIf this movie were any worse, it would have been directed by Uwe Boll. This nonsensical mess makes Ed Wood look like Hitchcock. It has been a while since I have seen this steaming pile , but I do remember that I wanted to do grievous bodily harm to all those involved. How anyone can give this movie any more than 1 star amazes me to the graciousness of all those that viewed this tripe. I give it one star because there is not a rating lower. All copies of this movie should be burned the ground sowed with salt and reserved as a landfill for the most toxic of waste. No, one copy should be kept under ultra hi security and shown only to film makers as an example of how not to do it.\r\n0\tThis is a well made informative film in the vein of PBS Frontline. The problem is, Frontline already did this piece and managed to bring L. Paul Bremer in to tell his side of the story. More troubling is the fact that the director of the film, Charles Ferguson--a former think tank wonk, was a war supporter until the occupation went south. What did he think would happen? <br /><br />The invasion of Poland went really well too until it was messed up by those pesky Nazis.And that is what this film feels like--an apology for occupation rather than a deconstruction of the act of war itself. <br /><br />Ferguson seems to suggest that the war could have been run better--as if any war can be better.\r\n0\t\"Arg. The shuffling dinosaurs are back to take another bite out of our sanity in this all-awful third film. This time, European terrorists(Irish I'd say) hi-jack an army convoy supposed to be transporting uranium. They pull into a shipyard, open the truck and discover our old friends the carnosaurs. Pandemonium comes visiting then when the rubber dinos chomp the terrorists, the cops and some marines. The whole film seems to be (again) largely inspired from Alien(as Carnosaur 2 was) with the pathetic marines going through the \"\"claustrophobic\"\" shipyard? guns at the ready. This third opus is probably the driest and ungoriest film of the lot, with only one spurt of blood when a rubber dino rips a marine's head off. The dinos are stiff, shuffling creatures as usual and the T-Rex sounds like an enraged elephant when it roars(it also appears to have no eyes). One of the goofiest scenes of the film is when the coppers arrive on the scene: they enter the building where the hijacked truck is kept and hear some weird noise coming from another truck. On opening it, surprise! The Rubber Reptile Gang burst out and devour them. Why were the dinos locked up in the second truck after escaping from the first? How did they get locked in as the truck door could only be locked from the outside? What was the point of filming this scene???? Oh bother, who cares? Both thumbs down for the Over-sized Rubber Iguanas.\"\r\n0\t\"To say Funky Forest: The First Contact is a bad movie is an understatement of incredible proportions. I can really get into a good art house film, even a surreal and twisted romp like El Topo, Naked Lunch, and Survive Style 5+, because those movies actually have something worth discussing when the credits roll.<br /><br />FFFC attempts at every avenue to be this deep and intellectual, essentially there is no substance in this movie. This movie is badly done, the visuals in this movie are not inspiring, the dialog is worse, the musical numbers destroy this movie.. I chuckled for GUITAR BROTHERS, but that was immediately wiped out by something completely unnecessary, and irrelevant. It attempted to be deep and meaningful I think, but its just pretentious disoriented nonsense. Freshman film students without a camera could craft something more interesting.<br /><br />Guitar Brothers and the stand up routines in between skits get 1 point each, everything else is just badly paced, pseudo-creative, heavy handed attempts at being AS good as films by other REAL directors like, Sogo Ishii, David Lynch, and Jodoworsky. Give me a break. I am convinced that people that rave about FFFC are doing so because they have no idea of what they saw, because it was nothing but mild pertinent statements here and there mixed with stupidity and blended until you puke on your own shoes.<br /><br />This movie was an extreme disappointment, coming off the high that was Survive Style 5+, a film that actually has meaning, combined with excellent use of scenery, cinematography, catchy dialog, funny moments, good soundtrack, excellent performances, fantastic pacing and flow. FFFC features the exact opposite in every way, boring scenery (20 minutes staring at a bland beach at night? a completely white stage? Alien balls floating in white space? a dinky school hallway and then a... school hallway?), terrible cinematography, forgettable dialog, nothing funny or humorous, save the fact you just wasted your life for two hours, soundtrack?, amateurish performances, uneven, disjointed, and often flat out dragging pacing, zero flow whatsoever.<br /><br />There are those that claim this is what makes FFFC a great movie, that it is so unconventional at every turn that its pure genius. This is simply a way to stroke your own ego it seems, because \"\"unpredictable\"\" could be a good quality for a film if it wasn't coupled with \"\"boring\"\", \"\"innane\"\", and \"\"terrible\"\". Personally I have spoken with two people who admitted to me that FFFC was terrible when they left the theater, but overwhelming rave by art-house elitist made them watch the movie again and then come back to me with a... \"\"Hey it was pretty good I liked it\"\".<br /><br />I'm going to put my foot down, this movie is slop, I don't care if Roger Ebert says this film is the best thing he's ever watched since he lost his own virginity. \"\"The Emperor's new cloak\"\" I say... this movie is no way indicative of the other psychedelic/trippy films to come from Japan in the last 10 years. Taste of Tea, Party 7, and Kamikaze Girls are much better movies (even with a low budget), and none can honestly compare with Survive Style 5+. Watch FFFC only if your interested in making a pretentious pile of nothing on a shoestring budget.\"\r\n0\tI tried to watch this movie in a military camp during an overseas mission, and let me tell you, you'll watch anything under those circumstances. Not this piece of sh*t though.<br /><br />The first five minutes set the tone by weak porn-movie quality acting, weird out-of-the-blue plot twists and unbelievable situations and behavior. It gets worse after that. This movie does not have one single saving grace, and yet it is not bad in a way that would make it funny to watch. It's just horrible. I've seen quite many movies in my life and I'm not one of those snobby know-all critics, I mean I'll enjoy most movies to some extent even if they're bad. This one... man.<br /><br />Steer _well_ clear of this one, my friend.\r\n1\tThis made-for-TV film is a brilliant one. This is probably the best and favourite role by BAFTA winning John Thaw (Kavanagh Q.C. and Inspector Morse). Tom Oakley (Thaw) widowed man has lived in a village alone for a while since his wife and son died, and now he has been landed with an evacuee called Willaim Beech (Nick Robinson). As he gets to know this child he starts to develop a friendship. Until Willaim's Mum (Annabelle Apsion) wants him back. After Tom gets worried about William not contacting him he goes to London to find him. In the end Willaim gets his home with a loving family (or Dad). Set during the Second World War this is an excellent film. It was nominated the BAFTA Lew Grade Award, and it won the National Television Award for Most Popular Drama. John Thaw was number 3 on TV's 50 Greatest Stars. Very good!\r\n0\tI'm actually surprised at the amount of good ratings this anti-Christian pseudo-documentary got. Now, I respect the guy's opinion and faith, I myself am not, at this state, believer of the taught Christian doctrine. However, anti-Christian propaganda is somewhat of a different issue.<br /><br />This film has valid points, but they are very few and represented in a very biased context. I'm not recommending against seeing it. In fact, I think everyone should see it and decide on their own whether they believe it or not. And this is actually more of a chance than the one the director gives to Christian teachings. Rather than an inquiring approach on the subject, it looks like a personal vendetta on the Christian school that affected his childhood. It also misrepresents the Christians most of the times as either incredibly naive or fundamentalists, no moderation in between.<br /><br />The director uses movie scenes from Passion of Christ without permission, sets up an interview with the headmaster of his former school and presents almost solely anti-Christian historians and writers. I actually found the headmaster to be the most down-to-earth person and think that his attitude was fully justified. I also strongly doubt that any of the Christian believers who were interviewed were consulted afterwords or even told before the interview the purpose of the inquiry.<br /><br />With this being said, there are certainly new and interesting facts to be found here and some very original thoughts on the question of Christianity. But the way in which this whole think is produced is often offensive, highly unprofessional and dreadfully biased.\r\n1\tA woman left alone after the death of her husband finds herself attracted to her son's friend and handy man. In a slightly twisted story, the woman begins sleeping with the handy man in an effort to revive herself. The twisted part? The handy man is also her daughter's on and off love interest.<br /><br />As if this wasn't strange enough, the mother manages to fall for this man and when her daughter finds out, she blames not only her dysfunctional relationship but also her messed up life on her poor mother.<br /><br />Though you may think badly of this woman, the truth is movie manages to portray her in a positive light. Beautifully played by Anne Reid, this character has dimension and portrays great emotion.<br /><br />A truly brilliant performance and an enjoyable film.<br /><br />8/10\r\n0\t\"Bought this movie in the bargain bin at Rogers Video store for $2. I enjoy a good B movie now and then and figured this looked like a good one.<br /><br />The movie is quite cliche \"\"1970's\"\" and is quite groovy for that. Unfortunately the story line is hard to follow and not a lot happens in the movie. In fact, I turned it off after watching it for 45 minutes and figured a week later that I should watch the whole thing no matter how slow it was.<br /><br />The movie has good spots in it, but you have to wait and wait and wait.......for them.<br /><br />If you are into B movies, this might just be for you, just be warned that the movie is slow and not much really happens, and did I mention not much story line either...<br /><br />\"\r\n1\t\"Generically speaking, Fay Grim is a highly entertaining thriller featuring two of the most inexorably enjoyable names in American movies, unshakably beautiful and gracefully spunky Parker Posey and endlessly charismatic and unavoidably hilarious Jeff Goldblum. They have many scenes in the first half of the film in which we see these two insatiable presences volleying off of each other, even radiating with charm when Goldblum rolls off Hartley's shamelessly epic info-dumps. Nevertheless, if one were to deconstruct Fay Grim, one would see many instances in which countless scenes could've been squeezed for much more benefit than they have resulted in being.<br /><br />This sort of filmed in-joke is the sequel to Hal Hartley's Henry Fool, which was made ten years earlier. It has title character Posey forced by CIA agent Goldblum to track down the notebooks that were the precious possessions of her missing fugitive husband, the predecessor's titular anti-hero. Available within them is information that could concede the safety of the United States. Fay first makes for Paris to get a hold of them but becomes engulfed in a bona fide celebration of espionage clichés featuring everything from car bombs to ambiguous helpers to Following the Girl to double-crosses to triple-crosses.<br /><br />The primary appeal of it all for me is that it's such a novel approach to the sequel of a movie about a garbageman and a struggling novelist in a small town. In the original Henry Fool, Posey played a simple woman leading a very simple life. Hartley's talents do not reach the heights of many of the other independent newbies from the 1990s, but I do admire his wild creativity in making an inadvertent Nearne sister out of her, giving her a terrific predicament, as he did to her character's brother, played by James Urbaniak, in Henry Fool, as she is trapped between whether or not she may still love her overwhelming refugee husband and the problematic but forceful plans of Goldblum.<br /><br />Hartley, however, is simply riding on that fragmentary idea. His plot, though complex and labyrinthine, true to the form of the spy film, it seems as if to be entirely capricious. The reason I was not bored was mostly due to the pace at which the story unfolds, not to mention the presence of Posey and Goldblum. The problem with the remainder of Hartley's cast is that I cannot seem to become fond of the rest of them. It has nothing to do with how obscure they are compared to the relative star power of the two said charm masters, but with how they don't seem to hold their own alongside them, though Saffron Burrows certainly comes close. Most of the scenes not involving Posey or Goldblum are far too light on their feet, stringing us along with info-dumps we have no choice but to listen to or else be totally lost in the ensuing sequence of scenes. They are shot almost entirely in tiled angles, as if Hartley is compensating for that implacable feeling of a lack of material.<br /><br />Liam Aiken, however, playing the now teenage son of Fay and Henry, has a certain allure about him, seeming wise beyond his years, certainly much wiser than any of the adult characters. Perhaps Hartley intended that, or maybe it's simply Aiken's presence. The problem with a Hartley film is that you never quite know what was intended and what just happens to be there. As Scorsese said, \"\"Cinema is a matter of what's in the frame and what's out.\"\" One has to be able to trust that what we see is a conscious decision by the filmmaker to remain in the finished film.\"\r\n1\tI saw this in the theater during it's initial release and it was disturbing then as I'm sure it would still be. It was the first part of '68 and this was still making the rounds in towns across America and there had recently been a mass-murder in my hometown where I saw this where a man went on a shooting rampage. The freshness of that close-to-home event combined with this dramatized true story made for a very disturbing theatrical experience. It really brought to life the excellent acting of Robert Blake and Scott Wilson. I was familiar with the novel based on the true event by Truman Capote and the screenplay and direction by Richard Brooks wove the event and Truman's interpretation into compelling gritty cinematic adaptation. Music from Quincy Jones effectively scores it's story. I've only seen this a couple times since. It was too real. Almost like being a witness to the crime itself and riding along with the killers. I would give this a 9.0 of a possible 10. Society is so desensitized to violence and crime today that this probably seems slow and tame and could be viewed with less effect but to anyone over 50 this will be a hallmark into the examination of the criminal psyche.\r\n1\t\"Resident Evil:code veronica is a great well made video game,it has great graphics,very comfortable controls,a great storyline and high fun factor.The storyline to this is Claire Redfield gets taken to an island for trespassing on Umbrella grounds,and reaking havoc at they're main lab while looking for her brother.Code veronica's graphics are very good,the fire and rain effects are great looking.The controls are comfy,but the button pattern doesnt fit the Dreamcast control,makeing it hard to get used to.Its still fun going around some wierd disturbing place,shooting the guts out of zombies.Code:veronica also has a little bit of \"\"Romance\"\" between the two main characters.You also get to play as Chris Redfield,from Resident Evil 1.The sound in this game is better than ever,for example,even though I hate the new feature,When the giant spiders crawl,they're feet make a disturbing scampering sound,and the guns sound alot more realistic.Great graphics,outstanding story,comfy controls,and realistic sound makes Resident Evil Code:Veronica a definite loved. I give it a 10 out of 10.\"\r\n0\t\"This film can't make up its mind whether its message is \"\"humans are evil and bad and animals are sweet and blameless\"\" or \"\"don't ever go in the water again.\"\" A fisherman (Nolan) is out to nab a killer whale, a very bad thing, but when he accidentally (ACCIDENTALLY mark you) hits a pregnant cow instead of her mate, the cow -- and I use the word in all senses -- who is obviously a sick psycho-bitch and the canonical villain of the piece -- throws herself against the propellers trying to chew herself to bits in the most distressing and hideous not to mention ineffectual method of killing herself. (I doubt it was her first.) When her unborn fetus aborts from her hideous self-inflicted wounds, her mate goes mental with revenge and swears to hurt, kill and mutilate every human who even so much as talks to Nolan. Obviously as among humans, total psychos date other total psychos.<br /><br />The film reeks of half-thought out anti-human message, \"\"the poor poor whale!! the evil men must suffer and die!\"\" and yet, it does not succeed in demonizing Nolan at all. It's true that when he set out his motives were selfish and cruel, but at the first squeal of the first whale he grows a heart and, as the film progresses, he grows more and more compassionate to the whale's pain until it seems he will walk out on the ice and give himself to the whale, just to make it feel a little better.<br /><br />The films final journey, in which Nolan follows the whale on a bizarre journey to the north, reminds me of Melville's eerie man-whale connection, and for a moment hinted at a truly interesting conclusion, where these two husbands might connect, understand even respect each other in their own grief, for Nolan lost his wife and unborn child also to an accident. It's clear Nolan respects the whale and feels for its loss. However, it never goes there. The whale-character has no compassion or respect for anyone.<br /><br />The final scene loses this focus and becomes Jaws-like where the sea-monster finally kills everybody and Nolan and no-doubt through an oversight, fails to chomp up the whale-hugger (tho he made a good snap for her head a little earlier.) I love animals, and I detest whaling, and what is more I love orca whales, but if this film's goal was to make me feel that the whale was the victim and that people are evil and detestable it completely failed. Nolan shows compassion and growth, and feels for others, and all the whale thinks about is killing and maiming.<br /><br />The only message one can walk away with is \"\"If you see an orca whale, ever, anywhere, run the other way cause if you step on his FIN the wrong way, he will hunt you to the ends of the earth destroying everything around you.\"\"\"\r\n1\tTales from the Crypt: And All Through the House starts on Christmas Eve as Elizabeth (Mary Ellen Trainor) kills her husband Joseph (Marshall Bell), she drags his body outside ready to throw it down a well but while doing so misses an important news bulletin on the radio that says a homicidal maniac (Larry Drake) dressed as Santa Clause has escaped from a local mental asylum & has already killed several women with Elizabeth next on his list but she has other ideas & tries to turn the seemingly dangerous situation to her advantage...<br /><br />This Tales from the Crypt story was episode 2 from season 1, directed by the one of the show's regular executive producers Robert Zemeckis And All Through the House is a decent enough watch. The script by Fred Dekker was actually based on a story appearing in the comic 'The Vault of Horror' & was originally adapted to film as one episode from the Britsih horror anthology film Tales from the Crypt (1972) which starred Joan Collins as the murderous wife character here played by Ellen Trainor. This particular version is good enough but doesn't do anything different or special & is a bit too linear & predictable to be considered a classic. At only 25 minutes in length it certainly moves along at a good pace, the story is just about macabre enough & it generally provides decent entertainment & I quite liked the downbeat ending. This time there are Christmas themed opening & closing Crypt Keeper (John Kassir) segments complete with the usual puns.<br /><br />Director Zemeckis does a good job & there's a nice winterly atmosphere with a hint of Christmas influence as well. There's not much gore here, someone has a poker stuck in their head, someone's face is cut with an icicle, someone's arm is cut with an axe & there's some blood splatter but generally speaking it's not that graphic. The acting by a small cast is pretty good.<br /><br />And All Through the House isn't the best tale from the crypt but it's a decent one all the same, worth a watch but after the comic book story & original 1972 film version did we really need or even want this?\r\n0\t\"May I please have my $13.00 back? I would have rather watched \"\"Hydro- Electric Power Comes to North America\"\". Again. This is a movie with one voice. The same voice, which comes out of every characters mouth regardless of age or gender. To listen to that voice again I would have to charge at least $150 an hour. And I don't take insurance. It was eerie watching Will Ferrell morph into Woody. But I don't think imaginative casting is enough. One should wait until they have a story before they bother making a movie. Unless he's just doing it for the money. And if that's the case why not just reissue an All-Rap version of \"\"What's up Tiger Lily?\"\"\"\r\n1\t\"This is one of those movies - like Dave, American Dreamer and Local Hero - that holds a viewer's interest time and again. Lightweight movies seldom win Oscars, but whoever did the casting for Soapdish deserves one. Even after one has seen the movie and knows what is coming, it's still enjoyable to watch how the various plot facets develop. True, all the drama is melodrama; but that's entirely fitting for a movie with a soap opera background. My favorite line comes from Whoopi Goldberg: \"\"Now why can't I write sh*t like that?\"\" I think it's unfortunate that the TV and website censors insist on all this unnecessary sanitation.\"\r\n0\tSo this is what actress Kim Basinger has succumbed to? Mmm to tell the truth the film's title is something quite eye grabbing to getting your interest and plot outline reads so basic, but simplicity can have its strengths. Anyhow by the end of 'While She Was Out' I was left feeling rather indifferent. Not the worse (despite being engulfed by negatives), but there's easily way better in what is an causally lukewarm, but compact and unbalanced late-night survival fable of a feeble suburban housewife stranded in the woods trying to fight for her life after she witnessed the death of a rent a cop that came to her aid, when she provoked an ugly exchange with some punks in a shopping car park.<br /><br />The problem here falls on the misguidedly erratic and foreseeable material (taken from a short story), along with the very variable performances. The flimsy script was poorly thought-out (which isn't so good when your plot has a slight structure to hang off), so many wretched inclusions and dubious actions just go on to find its way in this endless chain of events. As for the bunch of stereotypical goons (led by an unconvincing Lukas Hass as a loose canon) terrorizing Basinger, well they were less than threatening, but hopelessly clueless. Watching Basinger scrounging around in the dank wilderness with a red tool box in her hand (don't ask me why?) knocking off these wannabe punks one by one became ridiculous because it didn't elicit tension or emotion but instead clumsy jolts that were absurdly daft because of the stupidity of the lead up. Basinger's performance is stout-like, but doesn't craft much empathy. Craig Sheffer shows up as her hot-headed husband. Strangely I couldn't keep my eyes off the screen thinking to myself that red toolbox is hypnotic (why would she be constantly carrying it) and what tool was she going to use to dispatch the next thug her choices were quite disappointing. Watching her transformation through the traumatic situation when things are finally turned around is rather empty, due to its unsure tone and the ending is something you could see miles ahead.<br /><br />Susan Montford's soberly slick direction lacks cohesion and energy, as it pretty much chugs along. I liked the opening credits though, with its hauntingly sullen score (which is the most effective thing throughout the feature) and polished photography.<br /><br />No great shakes. Doesn't ask much of your time, but I wouldn't care to see it again. However with the inclusion of a Joy Division song, it made me grab a couple of their albums for a listen.\r\n0\tChris Kattan is a great sketch actor on Saturday Night Live...but he should probably leave the movie industry alone unless he gets some sort of creative control. He plays an annoyingly peppy character who basically comes off as mildly retarded and on speed. Wanna know the only funny parts? The stuff they showed in the previews. Yes, his rendition of take on me is funny. Nothing else is. ESPECIALLY when you can tell he's trying very hard to be a physical comedian, which he shouldn't have to try at because he is one. And yet, his 'demolishing the vet's office' bit comes off as cringingly bad. This movie made me develop an eye twitch. Avoid it at all costs, and keep watching SNL.\r\n0\t\"Alone in the Dark is Uwe Boll's kick in the nuts to Hollywood after House of the Dead's punch in the face.<br /><br />If anything it proves just how much of a master manipulator Boll is. After forcing Artisan out of business over the flop that was House of the Dead, one can only assume the normally credible Lion's Gate Films only released AITD under contractual obligation after acquiring Artisan's assets. Because AITD is an even bigger example of complete lack of coherent film-making ability, plot exposition and just plain stealing poorly from other movies because it was supposed to look cool instead of because it fitted within the movie's framework.<br /><br />But then that's the point, isn't it. Boll isn't trying to make a coherent film because he isn't trying to direct Alone in the Dark. He's just trying to manipulate Hollywood.<br /><br />Alone in the Dark, like House of the Dead, Dungeon Siege, Far Cry, Bloodrayne and the other 3 or 4 projects that are \"\"announced\"\" or in \"\"pre-production\"\".<br /><br />These aren't movies to be directed, but investment portfolios. Every single one of them rushed into production under the pretence that the tax law Boll and his investors are exploiting may be closed within the next 2 to 3 years. The more bomb projects he can release within that time-frame, the more money he and his investors can gain. Why bother making a good movie when a bad movie's making you a mint anyway? The result is movies like the awfulness of Alone in the Dark.<br /><br />Alone in the Dark, like all his other movies are just a cynical exploitation of Hollywood's current trend for lazy film-making.<br /><br />And to those who support Boll by calling him misunderstood or the next Ed Wood, congratulations, by making a cult figure out of the man, you're just making it easier for him to get investors but giving him notoriety.<br /><br />For more information, read here: http://www.cinemablend.com/feature.php?id=209 http://www.cinemablend.com/forum/showthread.php?s=&threadid=21699 As an aside, just don't ask me how he's getting his cast-lists together. Unless the actors are in on the investment-scam somehow, that mystery has still to be uncovered.\"\r\n0\tThis film concerns a very young girl, Cassie, (Melissa Sagemiller) who leaves her family and heads off to become a college freshman. One night Cassie and her friends decide to go to a wild party with plenty of drinking and dancing and Cassie is riding with her boyfriend who she likes but never told him she loved him. As Cassie was driving, a car was stopped in the middle of the road and she was unable to avoid an accident and as a result there is a bloody loss of lives along with her boyfriend. Cassie becomes very emotionally upset and has nightmares which cause her to have hallucinations about her boyfriend coming back to life and encounters men trying to murder her and she is struggling to find out who her real friends are, who wants her dead and will she survive this entire horror ordeal. Cassie dreams she is being made love to by her boyfriend after he died and finds another guy in her bed and is told she was asking him to make love. This is a way out film, and not very good at all.\r\n0\t\"I am a big fan of the Spaghetti Western Genre, and I usually also like most of the cheaply made ones. Infamous Director Demofilo Fidani, however, is rightly known for some of the cheapest, trashiest, and, well, worst contributions to the genre. The plots of Fidani's movies were usually very weak, and since his talent was quite limited, he usually tried to sell the movies by adding famous Spaghetti Western names like \"\"Django\"\" of \"\"Sartana\"\" to the titles. I the particular case of \"\"Giù La Testa... Hombre\"\" of 1971 he just took the title of Sergio Leone's \"\"Giù La Testa\"\" (aka. \"\"Duck You Sucker\"\") and added 'Hombre'. The movie can be found under various titles (\"\"Fistful Of Death\"\", \"\"Western Story\"\"...), I personally bought it under the name \"\"Adios Companeros\"\", which this movie shares with another Fidani film with almost the same cast, \"\"Per Una Bara Piena Di Dollari\"\", which is also entitled \"\"Adios Companeros\"\" in the German language version.<br /><br />The plot is rather weak, it basically follows a guy named Macho Callaghan (Jeff Cameron) and his involvement with two rivaling outlaw gangs lead by Butch Cassidy (Jack Betts) and Ironhead (Gordon Mitchell).<br /><br />The leading performance by Jeff Cameron is, kindly stated, not very convincing. Neither did I find Jack Betts very good as 'Butch Cassidy'. B-movie legend Gordon Mitchell, however, is always worth a try, and although he probably wasn't a very good actor, I always found his performances in the Spaghetti Westerns quite funny and original, and he actually saved some of Fidani's movies (such as the rather crappy \"\"Django And Sartana... Showdown in the West\"\").<br /><br />There is one very funny and original thing about \"\"Giù La Testa... Hombre\"\" - the great Klaus Kinski is playing a priest! I could have imagined Kinski in any role, but before seeing this movie I would never have guessed that anybody would cast him as a priest. Kinski is, once again, great, although he has only little screen time, and one scene, where he breaks up a fight, is probably the only good scene in this. One more interesting thing about this film is that the legendary director and king of sleaze Joe D'Amato did the cinematography.<br /><br />\"\"Giù La Testa... Hombre\"\" is a cheap, crappy film, but nevertheless, it has some funny moments. Being a Spaghetti Western enthusiast, I found it fun to watch, but if you're not, never mind this movie, or watch it only for the purpose of seeing Kinski play a priest. 3/10\"\r\n0\t\"London Dreams, directed by Vipul Shah, is a frustratingly foolish film about foolish people. It's the kind of film whose central conflict could be instantly resolved if the characters concerned simply sat down and had a chat. Ajay Devgan plays Arjun, an aspiring pop-artiste obsessed with performing before a cheering crowd at London's Wembley Stadium. He becomes jealous of his devoted best friend and band-mate Manu, played by Salman Khan, who is evidently more talented than him, but nowhere near as focused or ambitious. Arjun decides to sabotage Manu when the latter's popularity threatens to outshine his own. Now here's where a heart-to-heart might have helped. Had Arjun explained what this Wembley fixation meant to him, Manu would have graciously backed off and let Arjun fulfill his childhood dream, and we'd have been spared the agony of watching the rest of this uninspiring drivel. But director Vipul Shah and his writers are in no mood to do us any favours. London Dreams is packed with unintentionally hilarious gems like that back-story involving Arjun's grandpa who committed suicide out of shame for getting stage-fright at a packed Wembley concert. Or the ridiculous incident at a show where Manu must take over vocal responsibilities after a blast of confetti practically chokes Arjun into silence. The idiocy, however, doesn't end there. In his attempts to shame Manu publicly, Arjun uses his connections to get Manu hooked onto drugs. A buxom groupie urges Manu to down a couple of tequila shots with her but replaces his salt with cocaine. Before you know it, Manu has acquired quite the appetite for the addictive white powder, practically chomping it down like dinner. If that isn't silly enough, there's a crude scene later in which Manu chases after the said girl to find out who she's been taking orders from. The pursuit ends in a dark London alley where the girl gets down on her knees pretending to do the unmentionable so as to mislead Manu's girlfriend who's been secretly following after them. Wait, there's more! Expect to howl hysterically when Arjun snaps off his belt and whips himself mercilessly to banish all thoughts of romance or lust towards the band's lead dancer Priya (played by Asin) because nothing and no one must distract him from his musical goals. Too generously inspired by Milos Forman's Amadeus for it to merit any comparison with last year's Rock On!, Vipul Shah's latest is a clunky melodrama that's as loosely directed as it is scripted. The film goes for broad humor, over-the-top emotions, and basically chooses loudness over subtlety. That works for Manu's character, with Salman Khan playing him all loutish and lovable, but in the case of Arjun, Ajay Devgan comes off too passive with a performance that is mostly internalised. When Arjun does reach boiling point however, it results in an awkward pre-climax scene in which he lectures a packed concert hall and is understandably pelted with plastic bottles as punishment. Of the remaining cast, there's not a kind word I can say for Asin, who practically lit up Ghajini with her ebullient charm, but disappoints here with unnecessary over-acting in a thankless role. Ranvijay Singh and Aditya Roy Kapur, reduced to mere sidekicks in the band, show up at regular intervals, usually to utter some inane dialogue like, \"\"We'll rock it dude!\"\" For its dim-witted writing and sloppy direction, London Dreams is ultimately a tiresome watch. If you must, watch it for Salman Khan who's turned buffoonery into a bonafide acting style. It's the only thing that'll make you smile in this sad, sad film.\"\r\n0\tWatched this on DVD in original language with English subs. Either the subtitling was very poor or the actual dialog doesn't make much of story and give any character development. There are quite a few HK stars in this but the movie doesn't need their presence to make it better or worse. It's just bad. The bright and colorful scenes done in CG are attractive for the sheer colors and brilliance but it can get overwhelming before long. If anything this makes me think of a child's movie with its nonstop barrage of cg, fight scenes, and crap plot. I'm certain I grasped what took place in the film but the whole delivery of the story was rather lousy.\r\n1\tYou can survive Surviving Christmas. I thought the television version was a bit edited way down. I like Ben Afleck. He plays Drew Johnson, a family-less adult, who is willing to pay complete strangers. The Valcos starring James Gandolfini and Catherine O'Hara as the parents and Christina Applegate as Lisa Valco, the daughter. Drew is lonely around the holidays because he doesn't have a family of his own so he rents out a family in the Chicago suburbs for a quarter million dollars. Bill Macy who I best remember for playing Maude's husband Arthur is hired to play Duda, the grandfather. When the whole situation comes crashing down, the truth can be painful. The Valcos household is crumbling apart from the Drew situation. Drew's rich girlfriend and her parents make a surprising visit. You can't buy what you wish for! The acting and writing is mediocre but the first rate cast pulls it through to the final scene.\r\n1\t\"Outragously entertaining period piece set in the 30s, it is a spin on the classic cliffhanger series, as much as \"\"Raiders of the Lost Ark\"\", only done on a low budget and much campier by director Michael Anderson. The opening scenes laces liberal amount of gothic art nuveau, predating Batman by two decades. Starring Ron Ely (Tarzan) as a perfectly cast hero and the gorgeous Pamela Hensley as the local latina Mona tagging on to our hero on a goldhunt in the non-existent latin american country of Hidalgo. Best line, our hero to Mona, holding a fist to her chin just as you expect him to be tender with her and give her a hug: \"\"Mona, you're a brick!\"\"<br /><br />Paul Wexler's ham-and-cheese blackhat, Captain Seas is a an absolute delight. Expect a little \"\"Raiders..\"\", a dash of \"\"Batman\"\", a little \"\"The Lost World\"\", a little \"\"Lost Horizons\"\" and a whole lot of campiness and you'll get it just right. Watch out for cult favorite Michael Berryman in a small part as undertaker and enjoy the campy use of John Philip Sousa's patriotic music. A prime candidate for DVD release, it is certainly overdue. An unmissable treat for the whole family. 9/10\"\r\n0\t\"Boring. Minimal plot. No character development. I went into this movie with high expectations from the book. It COULD have been an awesome movie. It COULD have probably become a cult classic. Nope, it was a giant let-down. It was poorly cast and had horrible special effects. It was difficult to determine who were the bad guys: the rebels or the military or the church or all of them? I am still left puzzled by certain mini-plots from the movie. I am left dumbfounded as to certain aspects of this so-called \"\"prophecy\"\", which is never really FULLY explained. I felt like I was watching a corny episode of a mini-series on the sci-fi channel. It seemed very much like a made-for-TV movie. Don't go see this movie. It is a waste of time AND money.\"\r\n0\tI have grown up with Scooby doo all my life, My dad grew up with scooby doo. We have just watched the first episode of the travesty that calls itself Shaggy and Scooby get a clue. What planet are Warner Bros on allowing this shambles to air. The characters could have been drawn better by my younger sister. The story could have been better written by my 3 year old twin cousins (who are Scooby Doo fans too). Scooby and Shaggy just aren't!!!!! if anyone but Casey Kasem does the voice of Shaggy it just isn't gonna work folks!!!! trust me.<br /><br />This program was disgraceful. What's New Scooby Doo is much better. Why change a winning format. Bin this piece of garbage and go back to the true Scooby\r\n0\t\"A film with very little positive to say for it.<br /><br />Firstly it has zero pace and is positively lacking in any drama.<br /><br />Besides being remarkably slow The Empty Acre seems dedicated to using the same stock footage again and again. I lost count of how many times I had seen \"\"that\"\" field at night or that bit of cracked earth.<br /><br />It also has the fundamental flaw of thinking that if the audience don't know about things they will be gripped rather than just confused. So with no signs that there are any issues we suddenly find the marriage is not what it seems to be despite being given the impression that it's fine. We find Jacob is possibly the worst farmer in the universe as he seems to spend no time on the farm and also seems to have bought land with a wholly useless acre. Beth has a key to a warehouse of books? There are innumerable other questions some of which are resolved later in the movie, much later, in fact too late.<br /><br />And on the point of the acre. Horror filmmakers note that large inanimate objects are inherently not scary  and also if they're meant to be an acre big then make them so.<br /><br />There is also a frightening lack of reasonability as Beth (the best performer in the piece, followed by Jefferson  the cop) suddenly appears to be accused of everything under the sun just because she is on \"\"medication\"\".<br /><br />With the full ten minutes plus of running round the fields looking for the missing child (did he crawl out of the window? He's six months old) the film descends into badly written scene after badly written scene. Bad plinky plonk \"\"horror\"\" music fails to add atmosphere.<br /><br />Often bad films can be amusing but not The Empty Acre, which is just bad.\"\r\n1\twhat is wrong with you people, if you weren't blown away by the action car sequences and jessica Simpsons hot body then you are majorly screwed in the head. Of course the film isn't a masterpiece, i don't think it was aiming to be. It was fun and funny, i never watched the show when i was younger, i only recently saw one episode, and when i watched the movie, i felt it had the same kind of atmosphere. The movie seats were practically shaking, and the car sequences were good because it didn't bore me and drag out like some of the scenes in 2fast 2furious. and jessica Simpson is plain hot, i just wish they had used her more in the action sequences. All in all, i had a hell of a time watching this and i would go and see it again soon and i will buy it on DVD. People, enjoy it for what it is.\r\n0\t\"I honestly had no idea that the Notorious B.I.G. (Bert I. Gordon the director; not the murdered rapper) was still active in the 80's! I always presumed the deliciously inept \"\"Empire of the Ants\"\" stood as his last masterful accomplishment in the horror genre, but that was before my dirty little hands stumbled upon an ancient and dusty VHS copy of \"\"The Coming\"\", a totally obscure and unheard of witchery-movie that actually turned out a more or less pleasant surprise! What starts out as a seemingly atmospheric tale of late Dark Ages soon takes a silly turn when a villager of year 1692 inexplicably becomes transferred to present day Salum, Massachusetts and promptly attacks a girl in the history museum. For you see, this particular girl is the reincarnation of Ann Putman who was a bona fide evil girl in 1692 and falsely accused over twenty people of practicing witchcraft which led to their executions at the state. The man who attacked Loreen lost his wife and daughter this and wants his overdue revenge. But poor and three centuries older Loreen is just an innocent schoolgirl,  or is she? \"\"Burned at the Stake\"\" unfolds like a mixture between \"\"The Exorcist\"\" and \"\"Witchfinder General\"\" with a tad bit of \"\"The Time Machine\"\" thrown in for good measure. Way to go, Bert! The plot becomes sillier and more senseless with every new twist but at least it never transcends into complete boredom, like too often the case in other contemporary witchcraft movies like \"\"The Dunwich Horror\"\" and \"\"The Devonsville Terror\"\". The film jumps back and forth between the events in present day and flashbacks of 1692; which keeps it rather amusing and fast-paced. The Ann Putman girl is quite a fascinating character, reminiscent of the Abigail Williams character in the more commonly known stage play \"\"The Crucible\"\" (also depicted by Winona Ryder in the 1996 motion picture). There are a couple of cool death sequences, like the teacher in the graveyard or the journalist in the library, that are committed by the ghost of malignant reverend who made a pact with Ann Putman and perhaps even the Devil himself. The film gets pretty spastic and completely absurd near the end, but overall there's some good cheesy fun to be had. Plus, the least you can say about Bert I. Gordon is that he definitely build up some directorial competences over the years.\"\r\n1\t\"Terry Gilliam traveled again to the future (he had already done it in \"\"Brazil\"\") to tell this story about a virus that's destroying the human race.<br /><br />The script is totally crazy with some easy tricks on it but it's quite entertaining and Gilliam proves that he's got imagination (the futuristic scenes are just great). As for the cast, Bruce Willis and the beautiful Madeleine Stowe (whatever happened to her??) are just OK, but Brad Pitt is so annoying, whenever he plays roles that are out of his hand he results so forced and he's not credible at all. He should just play good-looking successful young men.<br /><br />*My rate: 7/10\"\r\n0\tthere are three kinds of bad films - the cheap, the boring, and the tasteless. the only really bad movies are boring and tasteless. <br /><br />boring films are just, well, boring - if you don't leave quickly enough, you fall asleep.<br /><br />tasteless films actually have their defenders; but the fact remains that they are masturbatory aids for very sick people.<br /><br />only the cheap bad films are really funny, because the filmmakers wanted to make their films so desperately, they way-over-reached beyond their abilities and available resources.<br /><br />Bo Derek is just naturally boring and tasteless; fortunately, fate and a lack of funds and skill redeem her by making her seem cheap as well. this film is hilarious and it may well be the last really funny-bad film ever made.<br /><br />i first saw this in a theater, may god forgive me; i was laughing so hard i was rolling off my seat, and so too with most of the rest of the audience.<br /><br />it's clear that Derek and her husband-promoter, conceived of this film as, partly, a satire; unfortunately, the dereks clearly lacked any of the necessary resources to pull that off; consequently, the 'satirical' element comes off as some school-girl's impression of some gay young man's impression of frank gorshin's impression of the riddler in batman trying to pretend he's robin - it doesn't fly over our heads, it has no clue where any human head might be.<br /><br />on the other hand, there are some supposedly serious moments in this film - it is supposed to be an action film, remember - that are so astoundingly cheesy, one wonders if someone squirted spoiled milk in one's eye.<br /><br />as for Derek's infamous tendency to reveal her breasts - i can't imagine a less erotic nudity photographic display, she is so weird looking with those broad shoulders, i can't imagine what any one ever saw in her.<br /><br />as for the plot - such as it is - well, it isn't; Derek chases around Africa, and god alone knows why. then her father - Harris - pretends to act in some maniacal puppet-show, and then of course there's the hunk'o'Tarzan that seems to have wondered in from advertisement without knowing that the subject's changed - probably because he hasn't seen a script - apparently no one has.<br /><br />negligible camera work, shoddy editing - if it weren't for the 3-way with the chimp, the film would be unbearable -<br /><br />as it is, it's a real hoot.\r\n0\tand not in a fun-to-watch way. it's just bad. it's shocking that people have posted positive things about it here. the story sucks, the acting is bad, it's not scary, the special effects aren't special--oh no! the blackboard has hands coming out of it! oh gee--the mirror turned into water! the hair, clothes and makeup in the '50s scenes aren't accurate, and they got a middle-aged man with a receding hairline to play the high-school version of himself. this is like later-on nightmare on elm street stuff. i enjoy sitting down to watch a cheesy horror movie as much as anyone else, but there are better bad ones out there to choose from.\r\n0\tA comparison between this movie and 'The Last Detail' is made by some, but 'Chasers' is flatter than a stretch of Interstate highway in west Texas. And like the scenery in the desert, there's nothing much to distinguish it, not even the fact that a female prisoner is being transported by two navy escorts this time around. No one in the cast comes off too well; with this lame script that's not surprising. Dennis Hopper, the director, won't give much space to this one if he ever writes a memoir, I don't think.\r\n1\tWelcome back Kiefer Sutherland. it's been too long since you've appeared in a movie,, and what a movie this was, was it 24 no,, but very intriguing, especially with a pro like Michael Douglas in the lead as the embattled Secret Service Agent. Kiefer's character is the one chasing Michael Douglas the whole movie,, Kiefer's partner,, is Eva Longoria,, the Desperate houswife. wow she can actually act besides flirt all day and look good,, i wish though that Kim Bassinger had a bigger role,, but other than that, i really think the whole movie was a blast from start to finish. This movie is what i consider to b e a political thriller, everybody played their part to the hilt. nothing was revealed to sooon in the movie,, so as to keep you guessing at all times. and i really think that Kiefer did one heck of a job here in this movie,, but in my opinion Michael Douglas had the besxt performance of the day,, thumbs up.\r\n1\tI can only agree with taximeter that this is a fantastic film and should be seen by a wide audience. The imagination on display, the visual interpretation of the script, the humor is constantly surprising. The two leads are great and really carry the film. My advice would be to not even watch a trailer, just rent the film and watch without expectations. I rented from blockbuster, so it is readily available in brisbane, not everyone will enjoy it but i think most people will have an opinion and that's always good, unless it's just 'that was stupid'. I loved this film, you just don't get to see gem's like this every day. This should become a cult favorite. Give it a try, you may just feel the same way about it as i do.\r\n1\t\"Even in the 21st century, child-bearing is dangerous: women have miscarriages, and give birth prematurely. Seventy-five years ago, it was not uncommon for women to die during childbirth. That is the theme of \"\"Life Begins\"\": a look at the \"\"difficult cases\"\" ward of a maternity hospital. Loretta Young plays the lead, a woman brought here from prison (what crime she committed is not germane to the plot) to give birth; she's conflicted about the fact she's going to have to give her baby up after birth. She's in a ward with several other women, who share their joys and pain with each other.<br /><br />Although Loretta Young is the lead, the outstanding performance, as usual, is put in by Glenda Farrell. Farrell was one of Warner's \"\"B\"\" women in the 1930s, showing up quite a bit in supporting roles, and sometimes getting the lead in B movies (Farrell played Torchy Blane in several installments of the \"\"Torchy\"\" B-movie series.) Here, Farrell plays an expectant mother who doesn't want her children, since they'll only get in the way. She does everything she can to get in the way of the nurses, including smuggling liquor into the ward (this of course during the Prohibition days), and drinking like a fish -- apparently they'd never heard of fetal alcohol syndrome back in the 30s.<br /><br />Interestingly, unlike most movie of the early 1930s, it's not the women being bumbling idiots getting in the way of the heroic men -- that situation is reversed, with the expectant fathers being quivering mounds of jelly. (Watch for veteran character actor Frank McHugh as one of the expectant fathers.) \"\"Life Begins\"\", being an early talkie, treats the subject with a fair dollop of melodrama, to be sure, but it's quite a charming little movie. Turner Classic show it, albeit infrequently; I've only seen it show up on a few days honoring Loretta Young. But it's highly recommended viewing when it does show up.\"\r\n1\t\"Spacecamp is my favorite movie. It is a great story and also inspires others.<br /><br />The acting was excellent and my wife and I went to see Lea Thompson in Cabaret years later due to her performance in the movie. It is unfortunate that the Challenger Accident delayed and hurt the movie.<br /><br />The 20th Anniversary of the Challenger Accident is coming up. I knew one of the Challenger Astronauts off and on since childhood on the Carnegie Mellon campus where my father went to school; I also know a close friend of the late pilot.<br /><br />I was the technical review last year for National BSA for the Boy Scout Astronomy Merit Badge and I still find Spacecamp a great movie to recommend to Scouts doing the Space related merit badges I teach.<br /><br />I ran into the late astronaut again as an adult and was following a schedule of engineering education we had put together when Challenger blew up. I wound up sitting in with Willard Rockwell and his engineers,\"\"invisible\"\", going over things after the Accident at the Astrotech stockholders meeting by chance as a result, so I'm much closer to the Accident and any movie similarities. I made sure that I was a good student and finished the degree four years later, strangely enough, on the recommendation of the Rockwell engineer who told them not to fly Challenger in 1986 and who later built Endeavour.\"\r\n1\t\"From the mind of Robert Bloch, of \"\"Psycho\"\" fame, come four tales of twisty terror in this Amicus anthology film, which, while not quite as much fun, or scary, as I would have liked, still provides for some decent genre entertainment.<br /><br />It's linked by the wrap-around story of a highly skeptical Scotland Yard detective (John Bennett) who is investigating the disappearance of a prominent actor; he's advised that this case is linked to a few others by the house in which they all took place, and our film is off and running.<br /><br />\"\"Method for Murder\"\" has author Charles Hillyer (always delightful Denholm Elliott) haunted by his latest fictional creation, who has seemingly come to life. This sequence has some good surreal and fairly suspenseful moments, and is capped by a reasonably amusing revelation and denouement.<br /><br />\"\"Waxworks\"\" stars horror icon Peter Cushing as retired stockbroker Philip Grayson, who, along with old friend Neville Rogers (Joss Ackland) becomes obsessed with the image of a beautiful woman found in a macabre wax museum. Most effective in this episode is the dream sequence, although it's great as always to watch Cushing. The final images presented to us in this story are pretty shocking.<br /><br />\"\"Sweets to the Sweet\"\" features another well-loved horror star, Christopher Lee, as John Reid, who doesn't treat adorable moppet child Jane (Chloe Franks) with too much kindness, and it's up to new companion / tutor Ann Norton (Nyree Dawn Porter) to find out why. The mystery of this particular episode is handled excellently; the film-makers wisely don't tip their hand so it comes as more of a genuine shock as we get the full truth of this unhappy family. The \"\"dying\"\" moments are particularly horrific.<br /><br />\"\"The Cloak\"\" has the most outright comedy of the four; Jon Pertwee, one of many actors to have played the role of Dr. Who over the years, is a lot of fun as a vain, temperamental horror movie star (in fact, he's the highlight of this story) who, infuriated with the lack of quality in his latest low-budget film, goes out and buys his own cloak. Said cloak has strange powers, which I dare not reveal here. Sexy Ingrid Pitt is a welcome presence as Pertwees' companion; one wonderful example of the humor here is a knowing jab taken at none other than Christopher Lee!<br /><br />The wrap-up story then concludes in a predictable but still effective way as Detective Inspector Holloway learns that he should have taken all of the warnings given him more seriously.<br /><br />Underscored by Michael Dress's unusual, striking, and eerie score, \"\"The House That Dripped Blood\"\" is an entertaining mix of stories; while I don't enjoy it quite as much as, say, \"\"Tales from the Crypt\"\", it's still good fun. Capably directed by Peter Duffell, it moves slowly but surely towards each of its chilling conclusions, and is certainly a good film of its type.<br /><br />7/10\"\r\n0\tGene Hackman gets himself busted out of prison by a nameless government agency who want him for an assassination. It's a given of course that Hackman has the proficient skills for the job.<br /><br />Nobody tells him anything though, he's given as the audience is given bits and pieces of information. That's supposed to be suspenseful, instead it's annoying and boring. <br /><br />Hackman goes through with the mission, but the getaway is messed up and the guy at the top of this mysterious entity orders everybody dead to cover it up. So everyone in the cast dies and at the end you don't really care.<br /><br />One of the other reviewers pointed out that the film was originally twice as long, almost three hours and got chopped down quite a bit. Maybe something really was lost in the translation, but I tend to think it was a mercy act on the audience.<br /><br />A very talented cast that had people like Richard Widmark, Candice Bergen, Mickey Rooney, Eli Wallach, and Edward Albert is so thoroughly wasted here it's a crime. <br /><br />And we never do find out just what federal agency was doing all this, the FBI, the CIA, the DEA or even the IRS.\r\n1\t\"Oftentimes, films of this nature come across as a mixed bag of great work along with slight drivel to fill the runtime. Whether it be the big name support or the project itself, Paris je t'aime never falls into this realm. I believe I can truly say that the movie as a whole is better than its parts. Between the wonderful transitions and the fantastic ending sequence, merging characters together in one last view of love in Paris, I think the film would have suffered if any cog was removed. True, there are definitely a few standouts that overshadow the rest, but in the end I have a lasting image, even if just a split second of each short vignette. Love takes many forms, and the talent here rises to the occasion, to surprise and move the audience through shear poetry and elegance of the emotion's many facets.<br /><br />Quartier des Enfants Rouges: Maggie Gyllenhaal surprises as a drug-addled actress shooting in Paris and meeting with her dealer. The reveal at its conclusion leaves you a bit off balance as the infatuation between the two changes hands.<br /><br />Quatier Latin: Ben Gazzara and Gena Rowlands (recreating a relationship from an old Cassavettes film?) bring some great sharp wit and sarcasm as they meet to discuss their impending divorce. What of their conversation is true and what is just to anger the other, it is all enjoyable, leaving a smile on your face.<br /><br />Quais de Seine: Director Gurinder Chadha gives us a touching portrait of love existing beyond religious and racial differences. It is a sweet little story of shy love between two people obviously feeling a connection, but unable to quite vocalize it.<br /><br />Tour Eiffel: I will admit to being disappointed that Sylvain Chomet did not get an animated sequence together, however, this live action tale of mimes falling in love at a Paris jail has the same quirky nature as his film Les Triplettes de Belleville.<br /><br />Tuileries: The Coen Brothers stick to their strange sense of humor and deliver some fine laughs. Steve Buscemi really shines and sells the performance without speaking a word. His facial reactions to the verbal abuse of a disgruntled Frenchman are priceless.<br /><br />Bastille: Here is a heartbreaking portrait of a couple about out of love only to have it come back in the face of tragedy. Sergio Castellitto and Miranda Richardson a moving as the couple dealing with trouble and finding how strong the bond of true love is.<br /><br />Pére-Lachaise: A surprisingly funny little tale from horror master Wes Craven. A little Oscar Wilde humor can add levity to any relationship.<br /><br />Parc Monceau: Alfonso Cuarón looks to be practicing the amazing long-takes he perfects in Children of Men with this tale of two people in love, walking down the street. As Nick Nolte and Ludivine Sagnier eventually come into close-up view, we also find the true context of their conversation of \"\"forbidden love.\"\"<br /><br />Porte de Choisy: A very surreal look into the glamour of Paris. This is probably the most odd entry, but so intriguing that you can't look away from the craziness that ensues. Do not anger your Asian beautician, whatever you do.<br /><br />Pigalle: An interesting look at a relationship undergoing a role-play that seems to have been stagnant for years. A little variety from Bob Hoskins is necessary to fire kindled.<br /><br />Quartier de la Madeleine: Even vampires in Paris can find love amongst the feeding hours. I don't know whether to be happy for Elijah Wood as a result or not. Beautifully shot and muted to allow the vibrancy of the blood red, this short is strange, but then so is love.<br /><br />14th arrondissement: Leave it to Alexander Payne's odd sense of humor to really add some depth to this voice-over story told of an American in Paris to find what love is. Her harsh, uneducated French is a very stark contrast to the authentic accents we've been listening to until this pointjust off-kilter enough to be both funny and totally true to the story.<br /><br />Montmartre: An interesting introduction into the proceedings. Paris can be a city reviled for everyday activities like finding a parking spot, yet when love is discovered, it will take its prisoner anywhere to continue the journey.<br /><br />Loin du 16éme: Catalina Sandino Moreno brilliantly shows what love for a child is through her subtle performance as the tale is bookended by her singing to a young child, yet totally different each time.<br /><br />Place des Fetes: My favorite tale of the bunch. Seydou Boro and Aïssa Maïga are simply fantastic. The cyclical nature of the story and how fate brings the two characters together twice in order for Boro to finally ask her for coffee is tough to watch. Sometimes love at your final moment is enough to accept one's leaving of this earth.<br /><br />Place des Victoires: One of the best stories about a mother trying to cope with the death of her young son. Juliette Binoche is devastating as the mother, desperate for one last glimpse of her son, and Willem Dafoe is oddly perfect as the cowboy who allows her the chance.<br /><br />Faubourg Saint-Denis: Sometimes one needs to think he has lost love to accept that he has not been fully invested in the relationship. Melchior Beslon reminisces, trying to find where they went wrong through a series of sharp, quick cuts from his meeting Natalie Portman to eventually \"\"seeing\"\" how much he needs her.<br /><br />Le Marais: Leave it to Gus Van Sant to show us a story about the gap in communication and understanding as his films almost always deal with some form of alienation. His photographer from Elephant is an American working in Paris who is the catalyst for Gaspard Ulliel's artist ramblings of love and soul mates. Sometimes one doesn't need to know what is being said to understand what is going on in the pauses.\"\r\n1\tSentimental and naive but undeniably affecting, emotional man-helping-man plea, in this case personified as German and French miners forced to be closed off from each other after the Great War thanks to a new border, leading to disillusionment on the German side, as the French are the bosses. But when a fire begins on the French side, the common decency of the German men lead to assistance, safety and even friendship. This was a plea that would fall on deaf ears within the decade, as a certain man from Pabst's own side would break that piece and turn the Great War into merely a prelude. But it is obvious to me that Pabst really believes or at least wants to hope for this kind of fundamental humanism, as this film radiates with this optimism whereas his more flippant, cynical adaptation of The Threepenny Opera lacked the bite needed to make that work work. Also furthering his honest belief are the fact that the characters here are not simplistic mouthpieces for positions, but real people, with real families whose home lives we are privy to as well. These are ordinary, working-class men who just happen to believe in the worth of caring and treating right your fellow man, and in this day of individualist opportunism, I'll take a little thinning in my plot to get a positive message that represents a point of view that I think we can all aspire to.<br /><br />(Note: Apparently the ending is cut on most prints, where the French rebuild the mining gate, closing off the men once again. This is a brutal turn of events, and may have made the film a better overall film, but I would have lamented it souring the positives vibes of the final sequence, so in short, I'm glad it was clipped.) {Grade: 8/10 (B) / #7 (of 11) of 1931}\r\n0\tOK i own this DVD i got it new at amazon... i mean i think its badass and a pretty cool flick and melissa bale the slutty/bitchy girl they pick up is hot as hell ..., the acting sucks and the whole polt just sucks the clown is some huge guy wearing a mask and its disgusting but its OK i wouldn't recommend it if like u wanted to rent a good entertaining flick after a hard days work but if u have nothing else to do and ur obbsessed with this stupid movies like i am, watch it sometime, and i do not know how artisan DVD has S.I.C.K. in its DVD collection , s.i.c.k. is not good enough to be owned by a half way decent movie company OK well thats all\r\n1\tFeroz Abbas Khan's Gandhi My Father, a film that sheds light on the fractured relationship between the Mahatma and his son Harilal Gandhi. For a story that's as dramatic as the one this film attempts to tell, it's a pity the director fails to tell it dramatically. Gandhi My Father is narrated to you like that boring history lesson that put you to sleep at school. Now the film aims to convey one very interesting point - the fact that Gandhi in his attempt to be a fair person, ended up being an unfair father. This point is made in the film many times over, and one of the examples given to make this point is that scholarship to England, which Gandhi twice denies his son. Instead of showing us how exactly Harilal dealt with this betrayal and what went on in his head, the director just moves along with the story, thus never letting us be witness to the growing resentment Harilal feels towards his father. Which is why when we finally see an outburst from Harilal, it comes off looking like he's over-reacting. <br /><br />The point I'm trying to make here is that we never really get to understand exactly why Harilal became the rebel that he did. We never really understand why he turned to Islam, and then back again to Hinduism. The thing is, we never really understand Harilal at all. And that's because the director of this film is too busy focusing on Mohandas Karamchand Gandhi and his role in the freedom struggle, a story most of us are already familiar with. To put it simply, Gandhi My Father promises to examine the strained father-son relationship, but it doesn't so much as show us where the cracks in this relationship first set in. We understand Harilal had to live with the burden of being Gandhi's son, but show us why that was a burden to begin with. Show us incidents of their early conflict. For example, it's not enough that Gandhi merely says he's opposed to Harilal's early marriage, tell us why this opposition? It's not enough that Kasturba blames her husband for the way her son turned out - for constantly shuttling him between schools in Gujarat and South Africa, for making him relocate every time Gandhi needed to relocate. Words are not enough, show us how these incidents shaped the character of Harilal Gandhi.What's more, instead of sticking with the prickly theme of this tenuous Gandhi versus Gandhi relationship, the film goes off on too many tangents, thus diluting the impact of the central theme. This was never meant to be a film about the struggle for Independence, and yet on many occasions that's exactly what it seems like, because the director feels almost obligated to take us through all the main events leading upto that historic moment, even though much of it has no relevance to the film's basic premise - the stormy father-son relationship. So you see the problem with this film is not that it's a bad film, but it's certainly a very confused film. What happens to Harilal's children after his wife's death? Does he ever have relationship with them? Where do they suddenly vanish after that one scene in which we see them with the Mahatma and Kasturba? None of these questions are answered in a film that's basically meant to be about relationships in the Gandhi family. The film version of an immensely popular play directed by Feroz Abbas Khan himself, Gandhi My Father is a disappointment, no questions asked.Cinematically, it struggles to translate the filmmaker's ambitious intention to the screen. Practically every single scene in the film opens and closes with fade-ins and fade-outs, never quite seamlessly leading into each other. On the positive side, there is inherent nobility in the film, which you recognise. The filmmaker makes every effort to deliver a balanced narrative, trying hard not to take sides, never once judging either father or son, painting neither as the villain. What the film does do, however, is make clear the fact that Gandhi was a difficult patriarch whose ideals may have shaped the nation, but evidently alienated his family. Of all the actors in the film it's only Akshaye Khanna who really shines in the role of the luck-deprived Harilal Gandhi. It's a wonderful performance, and it's not easy since the role covers virtually the entire lifespan of the character. But Akshaye brings a rare concoction of innocence and despondency to that part and succeeds in making Harilal a pitiable figure. Just watch him in that scene in which he discovers his wife's dead, and you'll realise how much he conveys through body language alone. Darshan Jariwala, meanwhile, who plays Gandhi Senior, adopts a caricaturish approach to playing the Mahatma in his later years, but it's the way he humanises the man in his early years as a barrister in South Africa that is the actor's best contribution to that role. The abundantly gifted Shefali Shah plays Kasturba, the woman who's meant to be torn in this father-son conflict, but if she's unable to bring across that feeling of helplessness then it's really not so much her fault as it is the fault of a rickety script. Much effort's gone into the making of this film and that's evident throughout, but the film suffers from that inevitable flaw that is eventually what you'll remember about it when you leave the cinema - it's just so boring.Director Feroz Abbas Khan's Gandhi My Father is a sincere effort yes, but also a film that could have done with a much tighter screenplay. What we learn from the film is that Gandhi and Harilal made each other very unhappy. And with this film, the director makes us too.\r\n0\tI don't think I've ever been so bowled over by the sheer absurdity of a movie in my entire life as i was when i walked out of this piece of crap. NOTHING in it makes any sense. none of it is clever or well thought out. out of lack of truly suspenseful moments they repeatedly use that total cop-out trick where you build up the music before the character does something like open a door or push aside a curtain and then nothing's there. thats OK to do once, maybe, but i counted three times. there are things thrown in for no apparent reason, characters, half-formed story lines.... the characters weren't well developed at ALL. the ending was.. bad. bad, bad, bad, everything, every component, of this film is terrible. and I'm just here to warn you all of that.\r\n1\t\"L'Hypothèse du tableau volé/The Hypothesis of the Stolen Painting (1979) begins in the courtyard of an old, three-story Parisian apartment building. Inside, we meet The Collector, an elderly man who has apparently devoted his life to the study of the six known existing paints of an obscure Impressionist-era painter, Tonnerre. A narrator recites various epigrams about art and painting, and then engages in a dialogue with The Collector, who describes the paintings to us, shows them to us, tells us a little bit about the painter and the scandal that brought him down, and then tells us he's going to show us something....<br /><br />As he walks through a doorway, we enter another world, or worlds, or perhaps to stretch to the limits, other possible worlds. The Collector shows us through his apparently limitless house, including a large yard full of trees with a hill; within these confines are the 6 paintings come to life, or half-way to life as he walks us through various tableaux and describes to us the possible meanings of each painting, of the work as a whole, of a whole secret history behind the paintings, the scandal, the people in the paintings, the novel that may have inspired the paintings. And so on, and so on. Every room, every description, leads us deeper into a labyrinth, and all the while The Collector and The Narrator engage in their separate monologues, very occasionally verging into dialogue, but mostly staying separate and different.<br /><br />I watched this a second time, so bizarre and powerful and indescribable it was, and so challenging to think or write about. If I have a guess as to what it all adds up to, it would be a sly satire of the whole nature of artistic interpretation. An indicator might be found in two of the most amusing and inexplicable scenes are those in which The Collector poses some sexless plastic figurines -- in the second of them, he also looks at photos taken of the figurines that mirror the poses in the paintings -- then he strides through his collection, which is now partially composed of life-size versions of the figures. If we think too much about it and don't just enjoy it, it all becomes just faceless plastic....<br /><br />Whether I've come to any definite conclusions about \"\"L'Hypothèse du tableau volé\"\", or not, I can say definitely that outside of the early (and contemporaneous) works of Peter Greenaway like \"\"A Walk Through H\"\", I've rarely been so enthralled by something so deep, so serious, so dense....and at heart, so mischievous and fun.\"\r\n0\t\"I voted 3 for this movie because it looks great as does all of Greenaways output. However it was his usual mix of \"\"art\"\" sex and pretentious crap.I know lots of people like this film but I grew tired of it VERY quickly. It is definitely not for everyone. The ubiquitous McGregor obviously took the part for crediblity's sake I guess but he really should not have wasted his time. I hate to consign anyone to pseud's corner but please.....!!! On the plus side it IS visually very attractive and I enjoyed the music but could not see it through to the end and I cannot say that for many movies. I usually watch the whole thing but this is unbearable!!\"\r\n0\t\"This is not a good movie. Too preachy in parts and the story line was sub par. The 3D was OK, but not superb. I almost fell asleep in this movie.<br /><br />The story is about 3 young flies that want to have adventure and follow up on it. The characters are lacking, I truly do not care about these characters and feel that there was nothing to keep an adult interested. Pixar this is not.<br /><br />I would have liked to see more special 3D effects. Also I wold like to see more fly jokes than the mom constantly saying \"\"Lord of the flies\"\" Pretty sexist in showing the women as house wives and fainting.\"\r\n0\ti wont go and give them my 10 bucks i went and bought the fourth season of the original and the best. At least my kids enjoy it and can watch it without me worrying about what they are seeing. I have a teenager and she thinks the previews are ridiculous and would rather watch the original. And she thinks Jessica Simpson is a horrible daisy in fact she thinks she looks more like a slut than daisy duke. Those shorts she might as well not be wearing anything at all. And since when is American Pie have anything to do with the Dukes SHAME ON them for putting that nasty line in there about having sex with a car. That in itself should have gotten the movie a R rating. The only good thing that might come out of this is a reunion movie with the originals. Lets all hope. So the people out there that went and seen the movie will see how it should have looked\r\n0\tThere's only one thing I'm going to say about cat in the hat...as a KIDS movie and a good comedy movie it sucks...I lost track of how many terrible jokes in the movie that not only sucked but weren't exactly kid appropriate. Oh and by the way the way the cat in the hat talked was annoying...as for the plot I completely forgot. Who cares it sucked anyway. i'm not sure why Mike Myers joined but I think the writers were trying to make it sound like him in Austin powers without the swinger talk and it overly succeeded- but so what it was annoying. don't see it-it belongs in the bottom 100.............................. the jokes are so unkiddy it's funny\r\n1\t\"I saw \"\"Fever Pitch\"\" sort of by accident; it was playing on the airplane going over to Europe. It actually wasn't half bad. Ben (Jimmy Fallon) is the world's #1 Red Sox fan, but his relationship with Lindsay Meeks (Drew Barrymore) may strain that. The movie is a fairly interesting look at how world events can affect peoples' relationships. It's especially eye-opening now that the Red Sox have ended their 80-odd-year losing streak. I guess that these sorts of things happen all the time and we just don't tend to notice them. Not too bad.<br /><br />Another movie portraying an unusual relation to baseball is 2000's \"\"Frequency\"\". Check them both out.\"\r\n0\t\"I saw this movie in my international cinema class and was grossed out from get go. This movie is nothing but one scene of blatant shock value after the next.<br /><br />The 4th Man is about an alcoholic writer named Reve, who has visions of his in-pending danger. He meets up with a woman named Christine when giving a lecture at a local book club, and only decides to stay with her when he discovers how attractive her boyfriend is. To put it plainer, Reve likes the Dutch sausage. So Reve concocts a plan to seduce Christine's boyfriend so he can ultimately have sex with him. But its later discovered that Christine has had 3 previous husbands, who she all murdered. Now Reve and Christine's boyfriend could be \"\"THE 4TH MAN.\"\" The storyline makes sense with no plot holes. The editing and everything else that is technical about this movie is perfectly fine. The movie is just gross and I felt the need to vomit in some parts. Basically, this isn't my cup of tea.<br /><br />The movie opens with Reve getting out of bed in JUST a t-shirt. So in the very beginning, you get to see Reve's lovely pecker flopping around as he walks around his cramped apartment in a hangover state. Later on he has a dream where his pecker gets cut off by a pair of scissors, and they do show it along with the blood fountain that ensues. Reve fondles a statue of Jesus and has homosexual sex in a mausoleum. Plus there's a lot of blood. More blood than all the Freddy Krueger movies combined.<br /><br />Not that I have anything against \"\"shocking\"\" scenes, but this movie is just so blatant when it comes to shocking. The whole movie is revolved around the shock value.<br /><br />So if any of this is your cup of tea, watch this movie. Otherwise, stay far far far far far away from this one. My mind is still scarred.\"\r\n0\tHappened upon a copy of this. Not mine and if I had spent my own money on this I'd be finding those responsible and demanding it back! All I can say is this would be a terrible student film. Any understanding of the medium of film is absent. Acting is god awful, the story would have been rejected from the original Twilight Zone series as unoriginal and lame, and the change in tone of the lead character's reaction to the 'ghost' is laughable.<br /><br />I can only agree that the 'glowing' reviews of this film are from friends and family. I'm afraid it's not even entertainingly bad.<br /><br />Amateur in the extreme! <br /><br />Avoid! Avoid! Avoid!\r\n1\tJust came back from the first showing of Basic Instinct 2. I was going into it thinking it would be crappy based on preview critics and I was pleasantly surprised! If you liked the original Basic Instinct I think you will enjoy #2 just as much if not more. Great story that always keeps you wondering and thinking. The music is superb, reprising the original's theme. Don't go expecting Academy Award material, go to see it for enjoyment and fun. That's what movies are designed for -- escapism. I can't think of a better way to escape than to escape with Sharon Stone who is as sexy as she ever was. Am thinking about going to see it again this weekend. Go see it!\r\n0\tCouldn't believe it! Clipped sentences? Good grief! Know what? All true! Real people ever talk like this? Don't think so. Good girl! Stout fellow! Stiffen upper lip! Only reason given movie 2 instead of 0 Gary Cooper such a dish. Movie as a whole ridiculous unless you like watching endless biplane dogfights. Seemed endless, anyway. Think all Franchot Tone's dialogue dubbed. When Crawford and Young make a special effort to sound British they come over as Irish. Handy tip - we Brits clip words, not sentences. And somehow we manage to draaaaaaaawl at the same time. But that's only if we've been to a really good public (that's private to you) school.\r\n1\tA wonderfully quirky film with enough twists for a sack of pretzels. Parker Posey plays Fay Grim as a sexy, vulnerable, loving mother who may or may not be what she seems. The story is very tongue in cheek, and the dialog skillfully understated. Hints of humor and intrigue, neither of which overpower the characterization Posey pulls off so well. The supporting cast is stellar. The downside? This film needs your full attention, almost to the point of stopping the film and taking notes. Posey has more sex appeal in her lifting of an eyebrow than most actresses have in their entire body. She's worth your time, even if you don't understand the denouement.\r\n0\tFor all its visual delights, how much better Renaissance would have been in live action. The animation is fantastic in the big picture, yes, but the characters are cold and hollow, much like the story and the style of this film. With real actors, perhaps the world of the film would not have felt so lifeless. There is much to admire here, but at the end I found that all I could do was admire. I did not enjoy the movie that much, and it clarifies something that I did not see before: that the visual elements can be the defining positive aspect of a film, but without a good story and strong characters, it can all be for nothing. I will not go so far as to say that this movie comes to nothing, but sometimes it comes dangerously close. I love Dark sci-fi thrillers. Blade Runner and Dark City are two films I thought were wonderful. But Blade Runner had its tragic villain and Dark City had its thought-provoking story arc. Renaissance has shadow and light, but little else. I wish I could have liked this movie more, but the weak story and the empty characters stood in the way of that. The Renaissance was a historical and artistic burst of color and life. How ironic, then, that one of the most bleak and lifeless movies I've seen this year takes its title from the Renaissance.\r\n1\t\"This is a clever episode of TWILIGHT ZONE that was comic rather than strange or tragic. Buster Keaton is Woodrow Mulligan, a janitor from 1890 America, works in a laboratory. He is constantly griping about the life problems around him: meat is too expensive (it's like $1.00 / lb. Unheard of!). He is always yelling after crazy speeders (on bicycles - autos haven't appeared yet). Griping to the end, he sees a helmet like device by a scientist, and puts it on and tries it. Suddenly he is in modern America. The beginning was a seven minute silent film. Now it is all noise, all talking, all beeping, all blowing. Keaton is here only a few minutes when he realizes that the world has changed and not for the better. He runs into Stanley Adams, a Professor Rollo, who realizes that Mulligan is from c. 1890 (he mentions President Cleveland). Rollo has always wanted to live in that charming, quiet age. He helps Mulligan get the helmet repaired, and they go back in time. Rollo gets bored after awhile, due to the lack of scientific equipment that he can use. Mulligan puts the helmet on him and sends him into the future. But now Woodrow is fully content with the quiet, simple age he lives in. He has found contentment.<br /><br />In his last fifteen years Buster Keaton was frequently on television (many times for Allan Funt on CANDID CAMERA, where he could help set up sight gag tricks on the public). He did make a few films as well (most notably A FUNNY THING HAPPENED ON THE WAY TO THE FORUM and THE RAILRODDER). But he occasionally popped up in television plays and episodes. He is in his element here, presumably advising the director (old comedy film director Norman McLeod - he directed the Marx Brothers in HORSE FEATHERS) on the tricks he could do. Watch how Stanley Adams and he time Adams picking him up when he is snatching a pair of trousers he needs. In terms of timing it reminds one of gags he did in the 20s in films like SHERLOCK JR. The episode does show Keaton in fine fettle for a man in his sixties.<br /><br />The appearances of Jesse White (here as a repairman, of all things) is always welcome. But look a bit at \"\"Professor Rollo\"\". Stanley Adams was a well known figure in movies and television from the 1950s onward to his tragic suicide in 1977. Plump, with unkempt appearance, and heavy, booming voice, his best known dramatic role was as the wrestling promoter in the film version of REQUIEM FOR A HEAVYWEIGHT (he wants Anthony Quinn to be a wrestler wearing a costume as an Indian). His best known television appearance was as the space trader who introduces the crew of the Starship Enterprise in STAR TREK to those furry, fertile little creatures \"\"Tribbles\"\" (as in \"\"The Trouble With\"\"). Adams was always worth watching (like Jesse White, and certainly like Keaton), enhancing most of the productions he appeared in. I have never understood his suicide, but it was a sad end to a first rate character performer.\"\r\n0\t\"*** Contains Spoilers ***<br /><br />I did not like this movie at all.<br /><br />I found it amazingly boring and rather superficially made, irrespective of the importance and depth of the proposed themes: given that eventually we have to die, how should we approach life? In a \"\"light\"\" way, like Tomas; in a \"\"heavy\"\" way like Tereza; or should we find ways not to face that question, like Sabina? How much is fidelity important in a relationship? How much of the professional life can be mutilated for the sake of our loved ones? How much do we have to be involved in the political life and the social issues of our Country?<br /><br />Unfortunately, I haven't read Kundera's novel but after having being let down by the movie I certainly will: I want to understand if the story was ruined by the movie adaptation (which is my guess) or if it was dull from the beginning.<br /><br />I disagree with most of the positive comments that defined the movie as a masterpiece. I simply don't see the reasons why. What I see are many flaws, and a sample of them follows.<br /><br />1) The three main characters are thrown at you and it's very hard to understand what drives them when making their choices.<br /><br />2) The \"\"secondary\"\" characters are there just to fill the gaps but they don't add nothing to the story and you wonder if they are really necessary.<br /><br />3) I did not like how Tomas was impersonated. Nothing is good for him. He is so self-centered and selfish. He is not human, in some sense. But when his self-confidence fails and he realizes that he depends on others and is emotionally linked to someone, I did not find the interpretation credible.<br /><br />4) It's very unlikely that an artist like Sabina could afford her lifestyle in a communist country in 1968. On top of that, the three main characters are all very successful in their respective professions, which sounds strange to me. a) how can Tereza become effortlessly such a good photographer? b) how can they do so well in a country lacking all the economic incentives that usually motivate people to succeed?<br /><br />5) The fake accents of the English spoken by the actors are laughable. And I am not even mother tongue. Moreover, the letter that Sabina receives while in the US is written in Czech, which I found very inconsistent.<br /><br />6) Many comments praised the movie saying that Prague was beautifully rendered: I guess that most of the movie was shot on location, so it's not difficult to give the movie a Eastern European feeling, and given the intrinsic beauty of Prague is not even difficult to make it look good.<br /><br />7) I found the ending sort of trivial. Tereza and Tomas, finally happy in the countryside, far away from the temptations of the \"\"metropoly\"\", distant from the social struggles their fellow citizens are living, detached from their professional lives, die in a car accident. But they die after having realized that they are happy, indeed. So what? Had they died unhappy, would the message of the movie have been different? I don't think so. I considered it sort of a cheap trick to please the audience.<br /><br />8) The only thing in the movie which is unbearably light is the way the director has portrayed the characters. You see them for almost three hours, but in the end you are left with nothing. You don't feel empathy, you don't relate to them, you are left there in your couch watching a sequence of events and scenes that have very little to say.<br /><br />9) I hated the \"\"stop the music in the restaurant\"\" scene (which some comments praised a lot). Why Sabina has got such a strong reaction? Why Franz agrees with her? I really don't see the point. The only thing you learn is that Sabina has got a very bad temper and quite a strong personality. That's it. What's so special and unique about it?<br /><br />After all these negative comments, let me point tout that there are two scenes that I liked a lot (that's why I gave it a two).<br /><br />The \"\"Naked women Photoshoot\"\", where the envy, the jealousy, and the insecurities of Sabina and Tereza are beautifully presented.<br /><br />The other scene is the one representing the investigations after the occupation of Prague by the Russians. Tereza pictures, taken to let the world know about what is going on in Prague, are used to identify the people taking part to the riots. I found it quite original and Tereza's sense of despair and guilt are nicely portrayed.<br /><br />Finally, there is a tiny possibility that the movie was intentionally \"\"designed\"\" in such a way that \"\"Tomas types\"\" are going to like it and \"\"Tereza ones\"\" are going to hate it. If this is the case (I strongly doubt it, though) then my comment should be revised drastically.\"\r\n1\tLiked Stanley & Iris very much. Acting was very good. Story had a unique and interesting arrangement. The absence of violence and porno sex was refreshing. Characters were very convincing and felt like you could understand their feelings. Very enjoyable movie.\r\n1\tAn absolute classic !! The direction is flawless , the acting is just superb. Words fall short for this great work. The most definitive movie on Mumbai Police. This movie has stood the test of times.<br /><br />Om Puri gives a stellar performance, Smita Patil no less. All the actors have done their best and the movie races on thrilling you at every moment. This movie shakes your whole being badly and forces you to rethink about many issues that confront our society.<br /><br />This is the story of a cop (Om Puri ) who starts out in his career as a honest man but ultimately degenerates into a killer. The first attempt in Bollywood to get behind the scenes and expose the depressing truth about Mumbai cops. Kudos to Nihalani !! <br /><br />After this movie a slew of Bollywood movies got released that exposed the criminal-politician-police nexus. Thus this movie was truly a trend setter. This trend dominated the Hindi movie scene for more than a decade. <br /><br />This movie was a moderate box office hit. <br /><br />A must-see for discerning movie fans.\r\n0\t\"With all the excessive violence in this film, it could've been NC-17. But the gore could've been pg-13 and there were quite a lot of swears when the mum had the original jackass bad-hairdewed boy friend. There was a lot of character development which made the film better to watch, then after the kid came back to life as the scarecrow, there was a mindless hour and ten minutes of him killing people. The violence was overly excessive and i think the bodycount was higher than twelve which is a large number for movies like this. ALmost every character in the film is stabbed or gets their head chopped off, but the teacher who called him \"\"white trash\"\" and \"\"hoodlum\"\" (though the character lester is anything but a hoodlum, not even close, i know hoods and am part hood, they don't draw in class, they sit there and throw stuff at the teacher). The teacher deserved a more gruesome death than anyone of the characters, but was just stabbed in the back. There were two suspenseful scenes in the film, but didn't last long enough to be scary at all. As i said, the killings were excessive and sometimes people who have nothing to do with the story line get their heads chopped off. If the gore was actually fun to see, then it would've been nc-17. Two kids describe a body they find in the cornfields, they describe it as a lot gorier than it actually was, they explained to the cop that there were maggots crawling around in the guys intestines. His stomach had not even been cut open so there was no way maggots were in his stomach, though i would've liked to see that. The acting was pathetic, characters were losers, and the scarecrow could do a lot of gymnastix stunts. I suggest renting this movie for the death scenes, i wont see it again anytime soon, but i enjoyed the excessive violence. Also, don't bother with the sequel, i watched five minutes of it and was bored to death, it sounds good but isn't. The original scarecrow actually kept me interested.\"\r\n1\t\"This film is the best film Jim Carrey has ever made. Carrey did not have his usual face making stuff in this film. He was both funny and sad. Carrey played a reporter named Bruce Nolan. Nolan blames God(Morgan Freeman) for everything that goes wrong in his life. Then, God comes down from heaven and gives Bruce his powers. As I said before, Carrey did an excellent job. I also thought that Morgan Freeman and Jennifer Aniston were great as supporting actor/actress. The plot was good because it had many subpoints in the main point. This movie can be funny(Bruce's dog) as well as sad(the \"\"break-up\"\"). The script worked well, too. I am glad they made a sequel to this film. I rate this film a 9/10.\"\r\n0\t\"The author sets out on a \"\"journey of discovery\"\" of his \"\"roots\"\" in the southern tobacco industry because he believes that the (completely and deservedly forgotten) movie \"\"Bright Leaf\"\" is about an ancestor of his. Its not, and he in fact discovers nothing of even mild interest in this absolutely silly and self-indulgent glorified home movie, suitable for screening at (the director's) drunken family reunions but certainly not for commercial - or even non-commercial release. A good reminder of why most independent films are not picked up by major studios - because they are boring, irrelevant and of no interest to anyone but the director and his/her immediate circles. Avoid at all costs!\"\r\n1\t\"After 'Aakrosh' , this was the second film for Govind Nihalani as a director.Till this movie was made there was no audience for documentaries in India.This movie proved a point that a documentary can fulfil the requirements of a commercial film without diluting its essence. It was one of the successful movies in the year in which it was released. This movie contested against the big banners of the bollywood like'COOLIE', 'BETAAB','HERO' in 1983.<br /><br />SmithaPatel, in this movie acted more like a conscience of the hero whenever he drifted away or lost his composure she was there to remind him. She was not like an usual heroine to do the usual stuff of running around the trees and shrubs.At one time,she even gave up her love when the hero's ruthlessness touched the roof top.<br /><br />There was another character in this movie, which was played by Om Puri contemporary, Naseeruddin Shah.He played as an inspector-turned-alcoholic character.The role conveyed the message of the end result of a honest cop who rubbed the wrong side of the system which also gave the viewers a chance to forecast the hero's ending.<br /><br />In his debut film,Sadashiv Amrapurkar captivated the audience with his cameo role which ultimately won him the best supporting actor by the filmfare.The cop in the movie was not a complete straight forward personality he was able to adjust to the system to an extent. The anger which left half handedly continued in Govind Nihalani's other film \"\"Drohkaal\"\". Even after two decades, this movie is remembered just because of the director and the entire crew. Each one played their part par excellence.\"\r\n0\t\"When you have two tower house of performers pitched against each other, the least you can expect is the superb camaraderie and that is the case in this film where we have a 64 yrs old Amitabh Bachchan romances a 34-yr old Tabu. Wait! In fact that is all there in the name of plot therefore instead of \"\"cheeni\"\" it is the content that is \"\"Kum\"\" in this Adman turned Writer-Director R. Balki's maiden effort..<br /><br />Trust the two senior actors to bring the house down with their wise-cracks and bitter-sweet moments when love happened in this unconventional pair, and that is all you find in slow but refreshing first half. The locales of London as captured in rainy season are captivating. By the end of first half, romance completed and mission accomplished. There is not much left to be said. Therefore in the second half a strange opposition comes in the form of girl's father to the extent that he goes for a Satyagrah is really a test of patience. There is an equally strange climax about how he gives in. The result, second half is dry, flat with no energy. There is a subplot with a girl child dying of cancer, not making much impact. Nonetheless, the film is recommended for its fresh approach and the performances.\"\r\n0\t\"The BFG is one of Roald Dahl's most cherished books, but in this animated adaptation the magic just isn't there. This version remains pretty faithful to Dahl's original story so one can't lay the blame on John Hambley's script. If anything the fault lies with the colourless animation, the lethargic pace and the generally lacklustre voice-overs. One would be right to expect this story to make for a happy, vibrant, fun-filled movie..... instead, the film is a hopelessly dull affair that becomes quite tedious to watch. Children who are not familiar with the story should definitely read the book first! All the film will achieve is to put them off read what is actually a children's' classic.<br /><br />Young orphan Sophie (voice of Amanda Root) lives in a none-too-friendly orphanage under the cruel supervision of Mrs Clonkers. One evening she is peering through the window when she spots a massive figure walking stealthily down the village street. The figure realises it has been seen, so it reaches in through the window and scoops Sophie from her bed, placing her into its enormous pocket before fleeing into the night. Sophie soon discovers that she has been kidnapped by a giant from Giant Country, and fears that he will eat her. But to her relief he turns out to be a kind and sensitive member of his species who introduces himself as the BFG (voice of David Jason). The BFG refuses to eat people, instead restricting himself to foul-tasting vegetables known as snozzcumbers. However, Giant Country is populated by numerous other giants who DO feast - every night, as it happens - on poor unsuspecting humans. Sophie and the BFG become great friends, and soon they come up with a plan to thwart the other giants. Together they go to the Queen of England (voice of Angela Thorne) with their remarkable story and beg her to send the army and the air force to fight the man-eating giants. The Queen agrees and so begins a dangerous operation to capture the bad giants before they can harm anyone else.<br /><br />Jason voices the BFG quite well (one of the few pluses in the film) but his good work is almost ruined by somewhat poor sound quality. The rest of the voice work is decidedly uninspired, with very little to bring the characters to life. Similarly, the BFG is the only character that is imaginatively animated - Sophie lacks appeal, and the giants are boringly designed (and look almost indistinguishable from each other). Even the places are uninventive; Giant Country especially comes up short, being nothing more than a barren wasteland with occasional rocks and canyons. At 88 minutes the film is not exactly lengthy, yet it drags quite badly in parts due to the soporific handling of several sequences. Little of Dahl's mischievous humour is conveyed satisfactorily. One chapter in the book deals with the BFG's love of \"\"whizzpopping\"\" (farting) and is laugh-out-loud hilarious. In the film, the same section is totally killed by unfunny handling. I came to the The BFG expecting lots of zest, fun and enjoyment, but what I got was pretty much the opposite! This one is a failed misfire that simply doesn't match the calibre of the book in any department - unfortunately, therefore, it must go down as one to skip.\"\r\n1\tThis is a film I saw when it first came out, and which I have seen a few more times over the years. It's always enjoyable.<br /><br />One thing is that the comedy does not take sides: it skewers labor and capitalists equally. Only Sid seems outside the classic struggle, even though he's responsible for it. <br /><br />Spoiler warning: do not read further if you haven't seen the film <br /><br />This is a fantasy, though presented fairly plausibly. Ask yourself: could someone support most of his or her weight in a single strand of fabric? It would cut through almost any support.<br /><br />Also, when cornered in an alley, Sid uses a garbage can cover like a knight's shield. Cute symbolism.<br /><br />Someday, I'll get this on DVD.\r\n0\tThis is one of those movies that apparently was trying to ride the martial arts wave craze. Kind of like Billy Jack I guess. However, whereas Billy Jack did have one notable martial arts scene there are none in this one unless you consider some gentlemanly grappling and roughhousing as such. We are introduced to the star who is described as having learned Judo in the marines. I was in the marines and while they are pretty established in boxing, I really don't remember any emphasis on Judo. As a result the antagonist, James Macarthur, makes reference to the Judo when he offers an excuse for why he, a state champion wrestler was so easily defeated. Lame.\r\n1\t\"Paul (Jason Lee) is an underachiever who just happens to be engaged to a type-A princess named Karen (Selma Blair). She chooses his clothes and his daily schedule. At his bachelor party, Paul gets a little too drunk and somehow ends up taking a pretty dancer named Becky (Julia Stiles) back to his digs. \"\"Nothing happened\"\", as they say, but the duo do wake up in the same bed. Suddenly Karen telephones. She's on her way to Paul's apartment. Understandably, Paul hustles Becky out of the place, although her underpants are left behind. But, there is even more fun ahead. At a family dinner at Karen's parents' home, Paul runs smack into Becky again, learning that she is Karen's cousin. Talk about some explaining to do! But, instead, Paul chooses to feign a stomach problem and hides out in the bathroom. Will Karen ever find out that Becky spent the night at Paul's place? And, what will be the consequences? I'm sorry for critics who pan movies like this. They should definitely lighten up, for this film is fresh and fun. Of course, it doesn't hurt matters that Lee is a consummate funny man, Stiles is a charming beauty or that Blair is a natural as a pretty but anal fiancée. The rest of the cast, including James Brolin and Julie Haggerty, is also quite nice. The look of the film is wonderful, as are the costumes and California settings. Best of all, the script is imaginative and inspired, creating big laughs for the audience. In short, if you want to tickle the proverbial funnybones, get this movie tonight. It may not be Academy Award material but it is absolutely guaranteed to turn a bad day into a darn good one.\"\r\n1\tOf all the versions of the Odyssey (or of any Greek mythological story for that matter), this in my opinion is the best of them all. Almost true to the original storyline - with some minor deviations and omissions, e.g. the absence of Scylla & Charybdis and the fact that Eumaeus the swineherd recognizes Odysseus in disguise in his hut - realistic acting and authentic scenery and costumes all contribute to make this a truly memorable masterpiece,not some Hollywoodish sword-and-sandal B-flick. Notwithstanding the fact that the dialogue and subtitles are completely in Italian, if one is familiar with the storyline, he can still make heads and tails of what is going on and what the actors are saying (provided you have a good handy text of the Odyssey at hand). At least I did, and so much so that it has inspired me to study the Italian language to better appreciate the movie even more.\r\n1\tWhen i first went to watch The Shining I was expecting a decent film from what I had heard about it and I liked a lot of Stanley Kubrick's other work but when I started to watch it it was so much better than I thought it would be.At times I seriously felt ridiculously uneasy and I couldn't take my eyes of the screen still there's something very disturbing about everything in the film. Now some people don't like Kubrick's version of The Shining since it doesn't entirely follow Stephen King's book but in my opinion both Kubrick's version,the mini-series and the book are all great.Jack Nicholson gives an awesome performance.If you are looking for a good original movie that will keep you thinking even after the movies over then watch The Shining.\r\n1\tJust after I saw the movie, the true magic feeling of the Walt Disney movies came up in me and I realized me that it was a long time ago that I saw the 'real' magic in a movie.<br /><br />The combination of the right music, speeches and magical effects brings the Disney feeling again into your body. Very special things I saw where the not-knowing effects in the movie, started with the disney logo transforming into the Cinderella castle and ended as an old-story telling fairytale with your grandparents.<br /><br />The magic has returned in me. I rate this movie 8 out of 10.\r\n1\t\"Me being of Irish origins, loved this movie, Not only was the guy hot and funny he was also sincere and honest. I loved the girl who he fell in love with too, she was pretty. They were such a cute couple. The ending was so sad. Love this movie! Although it is a little dirty, it reminds of a British or Irish version of Prime. If you liked this movie you should watch prime. Same story line young guy falls for older women, older women falls for young guy to. A lot of paths cross, in the end, the best decision is made or task is completed. Don't have anything else to say, without ruining the whole movie, all though I thought the french guy was ugly, less appealing to me. Umm...if you like Irish movies, I would recommend \"\"Circle of Friends\"\" ,that movie is so good. Quick quote, you might not get unless you watch it\"\" well, thats my dinner ruined.\"\" LOL\"\r\n0\t\"The fourth \"\"Tremors\"\" feature goes back in time, to the year 1889. \"\"The Legend Begins\"\" in the small city of \"\"Perfection\"\", which was then \"\"Rejection, Nevada\"\". As the story begins, seventeen miners are killed by the ghastly \"\"Graboids\"\". Some of the characters in the present-day \"\"Tremors\"\" films have ancestors, both figurative and literal, in the past. Most obvious is the ever-returning Michael Gross (as Hiram Gummer). Unlike his descendant, Mr. Gross is inept with firearms; so, he hires gunslinger Billy Drago (as \"\"Black Hand\"\" Kelly) to shoot 'em up some \"\"Dirt Dragons\"\".<br /><br />This one takes some getting used to - as it takes place in the distant past. It's like a western with miniature versions of the original film's monster \"\"Graboids\"\". These tamer \"\"Dirt Dragons\"\" are nowhere near as terrorizing as their \"\"Tremors\"\" (1990) counterparts. Consequently, in this film, the characters spend an awful lot of time on the ground, which would not have happened in the original movie. And, it was weird to have the citizens give up the fight so quickly, when Gross temporarily decides to leave town. Why so helpless? Why didn't Brent Roam (as Juan Pedilla) immediately rally the people to fight without Gross? Disappointing.<br /><br />**** Tremors 4: The Legend Begins (2004) S.S. Wilson ~ Michael Gross, Brent Roam, Billy Drago\"\r\n0\t\"Seriously the only good thing about this year ceremony were the winners.<br /><br />Although the ceremony itself was pretty short it still was somewhat boring. I think it's seriously time to look for a new director and producers for the show, who can come up with something REALLY new. It's pretty obvious that they tried to make the show more 'hip' and appealing for a younger audience this year by letting Beyonce perform and letting P. Diddy and Prince present a category. Also letting Chris Rock be the presenter was an attempt to re-new the ceremony and make it more appealing. None of it really worked out.<br /><br />Sure, Chris Rock is a funny guy but he wasn't really a good presenter. I really merely saw him as a guy who just talked every now and then in between of the different categories. His presence wasn't really as 'big' as for instance Billy Crystal's.<br /><br />Also the handing out of the awards was pretty dumb at times. Not letting everybody come to the stage but also handing out some of the awards in the middle of the theater was plain weird.<br /><br />Still, I can't remember being any more satisfied with the award winners. None of the movies really swept away the awards as the last couple of years always had been the case. So does that mean it had been a good year for movies with lots of competitive contestants? I don't think so. I think most of the movies will be largely forgotten in 20 years from now, with the exception of \"\"Million Dollar Baby\"\" and \"\"The Passion of the Christ\"\" maybe. Sure I don't agree with every single award that was handed out this year, for instance Caleb Deschanel should had won for best cinematography, not that I don't like Robert Richardson's work, he really did some amazing work for most of Oliver Stone's work but I really feel that Deschanel deserved the award way more. Also I would had liked seeing Jim Miller and Paul Rubell win for best editing and John Debney for best music. But oh well, there is no way the Academy Awards can please everybody of course, I understand that. There will always be people complaining about the winners.<br /><br />It also was funny to see that most of the award presenters were way more nervous than the nominees and winners. Did Prince said any of the nominees names right at once? And were is Sean Penn's sense of humor? Al Pacino and Jeremy \"\"I hope they missed\"\" Irons were the best presenters of the night.<br /><br />Overall a very forgettable show but with nice winners.<br /><br />4/10\"\r\n0\t\"Lot of silly plot holes in the film. First we see him watching his master practice kung-fu, and die in the midst of his practice. That's fine with me. And then at the end of the film, we see him use the kung-fu that he learned just by watching his master when he was still a kid. Is that even possible? I don't think so.<br /><br />This show is purely for Jay Chou fans, and the film lacks a depth in terms of character development, cinematography styles and unfolding of plot.<br /><br />Anybody notice that the captain of the basket team (forgot his name) and the idolized player Li Xiao look so similar to each other, to the extent that you'd think they were the one and same person? Long hair, sunshine-boy look, tall and strong. The two of them looked like they came out from a mass production factory designed to churn out products that makes teenage girls scream wild in orgasm. Not that those two actors had anything of value to contribute to the movie as a whole for the movie industry at all.<br /><br />The jokes were lame and not funny at all.<br /><br />The scene with regards to the 4 masters of Jay Chou coming back to help him out in the basketball court, degenerated into a pointless plot when they started bashing their opponents ala Royal Rumble style. Worse of all, when the 4 masters won the fight, the crowd began cheering, and the match continued. It was truly a WTF? moment.<br /><br />At the end of the show, when they win the match, all thanks to Jay Chou's excellent kung fu skills. How he acquired those kung-fu skills is a mystery, because the show somehow shows him acquiring the skills just by observing his master.<br /><br />And then his long-lost father comes out of the woodwork to acknowledge Jay Chou as his long-lost son seemed just a tad too quick of the director to wrap up the film.<br /><br />In short, this is a Jay Chou-flick (instead of the usual \"\"chick flick\"\"). Watch it only if Jay Chou is your fan. If you are one of those whose tastes in movies coincide greatly with those in the list of IMDb's top 250 films of all time, then this film is not for you.\"\r\n0\t\"I love the frequently misnomered \"\"Masters of Horror\"\" series. Horror fans live in a constant lack of nourishment. Projects like this (and the similar \"\"Greenlight Project\"\" with gave us \"\"Feast\"\" - like it or lump it) are breeding grounds for wonderful thought bubbles in the minds of directors with a horror bent to develop and bring to maturation food for we who love to dine on horror.<br /><br />This one began with a kernel of really-kool-idea and ran ... right off the edge of \"\"where in the world am I going with this?!!!\"\".<br /><br />I don't know how to spoil the spoiled but \"\"SPOILER AHEAD\"\" All of a sudden ... no, there was that light drifting across the night sky earlier ... we have long haired luminescent aliens (huh? ... HUH?) brain drilling males and ... yeah, I get it but ... well ... the worst curse of storytelling - a rousing and promising set up without a rewarding denouement.<br /><br />Cue to storytellers ... your build up has to have a payoff that exceeds build up. Not the other way around. Storytelling math 101.<br /><br />End of Spoilers - Big Oops!\"\r\n1\t\"It is always satisfying when a detective wraps up a case and the criminal is brought to book. In this case the climax gives me even greater pleasure. To see the smug grin wiped off the face of Abigail Mitchell when she realises her victim has left \"\"deathbed testimony\"\" which leaves no doubt about her guilt is very satisfying.<br /><br />Please understand: while I admire Ruth Gordon's performance, her character really, *really* irritates me. She is selfish and demanding. She gets her own way by putting on a simpering 'little girl' act which is embarrassing in a woman of her age. Worse, she has now set herself up as judge, jury and executioner against her dead niece's husband.<br /><br />When Columbo is getting too close she tries to unnerve him by manipulating him into making an off-the-cuff speech to an audience of high-class ladies. He turns the tables perfectly by delivering a very warm and humane speech about the realities of police work.<br /><br />Nothing can distract Columbo from the pursuit of justice. Abby's final appeal to his good nature is rejected because he has too much self-respect not to do his job well. Here is one situation you can't squirm out of Ms Mitchell!\"\r\n0\t\"I agree strongly with some of the other critics of this film. I found it incredibly silly (at best) and downright misleading, misinforming and harmful (at worst). Like others, I found this film to be an awful mix of \"\"real\"\" science and pseudoscientific, New Age propaganda. <br /><br />As a psychologist, I was especially offended by Candace Pert's contributions. True, I was not a fan of hers before this film, but her discourse on the \"\"consciousness\"\" of cells was one of the best examples of taking a term (\"\"consciousness\"\") that has a predictable meaning to most people and using it in such a distorted manner as to cause it to obscure rather than clarify. It is an old Orwellian mind-f**k that the master himself described so well in his superb essay \"\"Politics and the English Language.\"\" To refer to \"\"consciousness\"\" in this manner--indeed, to refer to this film as \"\"based in science\"\" in general (which is its clear intent)--is to use language in the same manner employed by Stalin when he labeled his slave-states \"\"democratic republics\"\" and Hitler when he called his party a \"\"socialist workers\"\" movement.<br /><br />I don't claim to really understand quantum physics. I know enough about it to know that to really understand it would take considerable study. Ah, but we Americans do love \"\"instant enlightenment,\"\" and that's what this mistake of a film tries to accomplish. If it ASKED questions, that would be one thing, but it clearly attempts to ask and ANSWER them, which no film could possibly do simply because we are far, far away from the answers (if they indeed exist).<br /><br />By the way, ethically this film needed a disclaimer about the association of several \"\"expert commentators\"\" with the Maharishi Mahesh Yogi (and TM), not to mention J.Z. Knight, who often speaks in her \"\"Ramtha\"\" voice. (I'm always amazed at this channeled 10,000 year-old Atlantean superman's grasp of 21st century concepts and terminology. But then again, this film argues that the past, present and future are all one and the same, so if Ramtha existed in Atlantis 10,000 years ago, I suppose he could exist now and tomorrow. Only, then how come his financial advice has been so incredibly bad for his followers? Oh, I forgot, I'm the creator of \"\"good\"\" and \"\"bad\"\" advice, so it's all my fault, not Ramtha's.)<br /><br />What a mess.\"\r\n1\t\"The question of whether or not one likes this film version of \"\"The Ghost Train\"\" invariably depends on one thing and one thing alone: your reaction to the performance of Arthur Askey.<br /><br />He tends to steal almost every scene he's in, and not always in a good way. Sometimes you wish he'd settle down or back off just a little, to allow the plot's many characters to feature and develop (which they do to some extent). But somehow everything keeps pointing back to Askey's Tommy Gander character.<br /><br />Personally I like the film, and even like Askey to an extent. I always seem to plonk it into the vcr at those odd hours of the early morning when I can't sleep and really can't find the energy to watch anything else. There is something about watching old b/w movies in the quiet dark of pre-dawn that I find appealing....\"\r\n0\t\"The 1963 version of \"\"The Haunting\"\" has been one of my favorite horror films for years, so I anticipated the release of this 1999 remake with a good deal of trepidation. It hardly seemed that any follow-up could exceed or even equal the original masterpiece. Unfortunately my worries were well-founded: This movie stinks.<br /><br />I don't know what the people involved in this film were thinking. Jan De Bont, who seemed to have had a fluke when he directed the excellent \"\"Speed,\"\" does as poorly here (or perhaps even worse) as he did with the much-hyped duds \"\"Twister\"\" and \"\"Speed 2: Cruise Control.\"\" Hey Jan, stick to cinematography, would ya? Liam Neeson is adequate in his role as the doctor-pretending-to-be-a-sleep-psychologist -- I don't think he is capable of turning in a truly bad performance -- but even he cannot save a lame script and weak story. Catherine Zeta Jones proves once again (as she did in \"\"Entrapment\"\") that she lacks the acting ability to rise above the material that is handed to her. The female lead, who did great in an episode of \"\"The X-Files,\"\" looks lost here as Eleanor, an insomniac hovering on the edge of sanity. And that blond guy, whoever he is, is more wooden than the laughably strange statuettes of children carved into the woodwork around the house. I don't think he changes expression once during the entire film.<br /><br />(SPOILERS AHEAD)<br /><br />The reason the first movie worked so well is because we were never sure whether the house was truly haunted or whether the manifestations were a result of Eleanor's precarious mental state. No spirits are actually seen in the original, leaving much up to the imagination--a hallmark of other great horror films like \"\"The Changeling\"\" and \"\"The Blair Witch Project.\"\" In this updated version, we of course get tons of CGI ghosts, which basically (in the face of the weak script/plot) make the movie totally unscary. The f/x aren't even that great, considering they were done by ILM. The frozen breath looks particularly fake. The effects in the underrated Peter Jackson film \"\"The Frighteners,\"\" which I saw just before this one, were a lot better. The wooden carvings of the children, which are supposed to look creepy, just look silly (especially when they scream), and the CGI monsters are nothing to write home about. Rather than providing a relief from the bad acting, bad direction, and bad writing, the effects only add to this mess of a film.<br /><br />Some particularly dumb scenes: When the three other characters break into Eleanor's bedroom, and none of them seem at all surprised to find a huge scowling demon hovering over the bed. The scene where Eleanor \"\"sees\"\" the former lady of the house hanging from the rafters... the acting here is particularly bad. And last, but not least, the unintentionally hilarious bit where Wooden Blond Guy utters an uninspired shout of what is supposed to be anguish, leaps up on a piece of furniture, and starts slashing away at the painting of the old, evil guy who built the house. We actually get some satisfaction in this scene, as seconds after his attack, Blond Guy is dragged over to the fireplace by the ghost of the old guy and promptly gets his head cut off by the flue. It was the only part of the movie I enjoyed.<br /><br />In sum, stick to the original 1963 \"\"The Haunting.\"\" 3/10 stars.\"\r\n1\tThis is a must-see documentary movie for anyone who fears that modern youth has lost its taste for real-life adventure and its sense of morality. Darius Goes West is an amazing roller-coaster of a story. We live the lives of Darius and the crew as they embark on the journey of a lifetime. Darius has Duchenne Muscular Dystrophy, a disease which affects all the muscles in his body. He is confined to a wheelchair, and needs round-the-clock attention. So how could this crew of young friends possibly manage to take him on a 6,000 mile round-trip to the West Coast and back? Watch the movie and experience the ups and downs of this great adventure - laugh and cry with the crew as they cope with unimaginable challenges along the way, and enjoy the final triumph when they arrive back three weeks later in their home town to a rapturous reception and some great surprises!\r\n1\tThis is the only movie I've seen Prince in but it don't matter. And I thought he was only great at singing boy was I wrong. This is probably his best performance. The music is great. Thats why it won the Oscar in 1984 for best music to a movie (or something like that). Now he has an Oscar and Grammies under his belt. Although the cursing gets in the way with the film (just make sure no little kids or in the room). There isn't to much to say without revealing the plot. You should really go out and get this movie your collection isn't complete unless you got this movie in it. What else could I possibly say except for go and get this movie now!\r\n0\t\"Someone will have to explain to me why every film that features poor people and adopts a pseudo-gritty look is somehow seen as \"\"realistic\"\" by some people.<br /><br />I didn't see anything realistic about the characters (although the actors did their best with really bad parts) or the situations. Instead, I saw a forced, self-conscious effort at being \"\"edgy\"\", \"\"gritty\"\" and \"\"down and dirty\"\".<br /><br />Sadly, it takes a lot more than hand-holding the camera without rhyme or reason and failing to light the film to achieve any of the above qualities in any significant way.<br /><br />It's a sad commentary on the state of independent film distribution that the only films that see the inside of a movie theater are nowadays all carbon copies, with bad cinematography, non-existent camera direction and a lot of swearing striving to pass themselves as \"\"Art\"\".<br /><br />It's little wonder that films like \"\"In the Bedroom\"\" or \"\"About Schmidt\"\" get such raves. I found them to be meandering and very average, but compared to the current slew of independent clones like \"\"Raising victor Vargas\"\" they are outright brilliant and inspired.<br /><br />A few years ago seeing an \"\"independent\"\" film meant that you would likely be treated to some originality and a lot of energy and care, and maybe a few technical glitches caused by the low budgets, nowadays, it means that chances are you'll get yet another by-the-numbers, let's-shake-the-camera-around-for-two-hours attempt at placating the lack of taste of independent distributors. And of course all that to serve characters and situations that are completely unreal and contrived.<br /><br />Is it any surprise that the independent marketplace has fewer and fewer surviving companies? Not at all when you see films like Raising Victor Vargas that do nothing but copy the worst of the films that preceded them.\"\r\n0\tThis film has got several key flaws. The first and most significant of which is the clear lack of a good plot! This sadly makes the film not only difficult to watch but also sends the watcher certain feelings of hopelessness, as if he or she is wasting valuable time of their short life. This means that the film cannot captivate it's audience, instead it encourages the viewing public to grow contempt for the film and everything associated with it! In short, it really is very very very very very very very BAD! Do yourself a favour and chew on a large rubber shoe, you'll find it far more interesting and enjoyable than watching Terminator Woman.\r\n0\t\"I'm not going to comb over TLPS's obvious peterbogdanovichian flaws. Instead, I shall take a look at the positive aspects of this overrated celluloid pygmy of a film.<br /><br />1. Peter Bogdanovich managed to make a movie that can be endured in its entirety. This fact alone places the movie high up above and all the way up to the top of his lame filmography.<br /><br />2. Bogdanovich had shown how amazingly generous some lucky boyfriends can be, by sharing Cybill Shepherd's (his then-gal) fabulous body and breasts with his male audience - and not just on one but on two occasions. Brava! The unquestionable highlights of this cinematic festa del siesta.<br /><br />3. TLPS has barely a scene without stereotypical country music doodling in the background. (Peter tried to make the obvious point that the movie is set in America's Deep South (as if it weren't bleedin' obvious) so he hammered that point on and on and on...) How is this an advantage, you might ask? Well, when the movie finally ends and the monotonous country music finally ceases massaging your tired ear-drums, you start experiencing a strange exhilaration: \"\"The movie's finally over!\"\" It's pure joy.<br /><br />4. The movie gives all women who look like Cloris Leachman hope. Hope that they, too, may one day snatch a much younger and maybe even good-looking boyfriend.<br /><br />5. Cloris Leachman's biography (which I realize isn't technically a part of TLPS) gives hope to all women that look like that, that they too may one day win a Miss Chicago beauty pageant. (Provided they have enough money to bribe the jury with.)<br /><br />(You think I'm joking abut Cloris having won a beauty pageant, huh? Well, check out her bio and then we'll see who laughs last...) <br /><br />6. The movie was shot in black and white which spared us the sight of Cloris Leachman's face in its original, natural non-glory.\"\r\n0\t\"This would be a watchable Hollywood mediocre if it had a good editing. It relies on the typical American thriller plot - \"\"who is going to outsmart everyone\"\". Acting is below average, but with shining appearance of the detective who is the best actor in the film and he is mostly responsible if the tension in the film rises. Film was completely suffocated by blank video and sound shots and most of it looks like raw film material. All in all, if you don't mind watching a movie that looks like a student film project, this is a film to watch. I guess that would be enough to say on this film, everything else could really spoil the tension that is probably low enough.\"\r\n1\tThis movie was very good because it remember when I was young when I maked snow castle. It was so fun. This movie is interessant. This is a good quebeker movie with no much money and is also a magical movie because their wonderfull castle is very big and beautiful.\r\n1\tThe Dentist starts on the morning of Dr. Alan Feinstone (Corbin Bernsen) & his wife Brooke's (Linda Hoffman) wedding anniversary. On the surface Mr. & Mrs. Feinstone seem to have a nice life, a beautiful home in Los Angeles & he has a successful career with responsibility but beneath things are very wrong. Alan discovers that Brooke is having an affair with Matt (Michael Stadvec) the swimming pool cleaner, to add to his humiliation Alan then discovers that Matt is also having sex with Paula Roberts (Lise Simms) one of his next door neighbours & to top it all off he owes the IRS, who are breathing down his neck, a shed load of money. Alan starts to lose his mind, he convinces himself that everything is decayed & rotten, just like his patient's teeth, & it's up to him to fix it. That morning at work he begins to take his frustrations & anger out on his patients, first he injures a young boy named Jody (Brian McLaughlin), he sexual assault's a patient named April Reign (Christa Sauls) after he hallucinates that she is his wife & deliberately performs an unnecessary & painful procedure on another. Alan also begins to take drugs as he completely loses it & goes homicidal starting with his adulterous wife & pool cleaner...<br /><br />Directed by Brian Yuzna I thought The Dentist was a good film & tried something a bit different. The script by Dennis Paoli, Stuart Gordon & Charles Finch is more of a psycho thriller than straight slasher which came as a surprise to me as I was expecting the latter, it would have been easy to make a teenage slasher film like Friday the 13th (1980) with a high body count & a wise cracking dentist villain but what The Dentist actually turned out to be is very different. The Dentist is at heart a character study of one mans descent into madness & it does a fine job although having said that I'm not sure what he goes through is enough justification for his subsequent murderous actions. It moves along at a nice pace, has a nice narrative in which I liked the constant connection Alan makes between the decay he sees in his patients & the decay he sees in the world around him & is an entertaining way to pass 90 odd minutes. It goes without saying that anyone with a phobia about the dentist probably should give this one a miss or you'll never go again! I liked the ending too where the tables are turned, I'll say no more...<br /><br />Director Yuzna does his usual fine job here, in fact I don't think I've seen a Yuzna film that I didn't enjoy to some extent, he obviously & predictably takes the opportunity to play on our fear of the dentist with some nice dental torture set pieces including pulling people's teeth out, sexually molesting them, performing operations on drugs & torturing people with the dreaded dentist's drill. There are some other gore scenes as well, a dead dog, someone gorily slashed with a knife & cut out tongues. Yuzna gives the film a certain style on what was probably a low budget, he likes to tilt his camera which make for some nice angles & I liked the shot where the camera is above someone being knifed & huge sprays of blood splatter on the floor in a nice wide overhead angle.<br /><br />Technically The Dentist is fine, decent cinematography, music & production values although some of the special make-up effects look a little unconvincing. The acting is pretty strong from everyone involved with Corbin putting in a good crackpot performance. The ever cool & genre favourite Ken Foree turns up as Detective Gibbs one of Los Angeles finest.<br /><br />The Dentist didn't turn out like I had expected & all the better for it, if your a horror fan & perhaps want something a bit different then this is well worth checking out. I liked it & think it's definitely worth a watch.\r\n0\t\"Cassidy(Kacia Brady)puts a gun in her mouth blowing the back of her head out on boyfriend Neal(Jason Dibler). Cassidy was the lead singer of a \"\"demons and death\"\" rock band who couldn't shake the sad feelings of her boyfriend's neglect towards her(you know, I can find other reasonable ways to solve this other than putting a bullet through your head). She returns, however, possessing the soul of Dora(Jill Small)her friend who is to replace her on vocals so that the group can finish the album halted by Cassidy's untimely death. But, Cassidy made a deal with the dark one and souls are to be collected..she's consumed by this anger towards mainly Neal, but all the band members or anyone within the music studio get dead when they fall prey to whom they believe is a rather distraught Dora..not Cassidy returning for payback.<br /><br />Lousy micro-budget horror flick looks cheap, has a cheap cast who should make plans in another line of work, and boasts cheap kill-scenes which aren't effective one bit.\"\r\n0\tIf it smells like garbage and if it looks like garbage, it must be garbage. This is by far one of the worst movies I have ever seen in my entire life. Tony Scott's poor directing style puts shame to an already uninteresting and slightly untrue story of Domino Harvey's life as a bounty hunter. The story is completely discontinuous and confusing to watch. Certain aspects of the plot were ridiculous and totally unbelievable. It seems that all of the action scenes were loosely strung together by poor plot points and horrible acting. Keira Knightley does get totally naked in this one though. That is the one and only upside to this film. If you want to see her naked just fast forward the movie until about an hour and a half into it and you'll catch a whole lot of nipple. I strongly suggest that no one see this movie EVER!</3\r\n1\t\"This film appears to draw a borderline - on one side, those who love it, on the other, those who find it unbearable.<br /><br />To begin with, there is an awful lot of comedy in this film that many viewers are not \"\"getting\"\". Of course jet Li's Mask looks like Bruce Lee's Kato - he's supposed to, it's a joke. The guy who has a time-bomb sewn to his heart - outrageous? of course, it's a joke! Some readers will probably ask, if this film is supposed to be so funny, why all the excessive and gory violence? well, for one thing the tolerance for this level of violence is actually different, from culture to culture; and while Hong Kong audiences would recognize this violence is extreme, it's certainly only slightly more than average for a HK action film.<br /><br />Also, Black Mask is really the kind of film that takes a genre's conventions and pushes them to extremes, simply because the conventions themselves are wholly unrealistic. After decades of watching people get shot without any noticeable open wounds, many people were horrified to see Bonnie and Clyde and the outlaws of the Wild Bunch spurting blood all over the place. But the fact is, when you're shot with rapid metal projectile, it's almost certain that blood will spurt, especially from an artery.<br /><br />This film is a Chinese comic book movie. It is true that the Spiderman films never get this gory - but if they were faithful to reality, they would be! Well, despite its comic-book origins, this film is faithful to reality.<br /><br />The only complaint I have is the flashy, over-stylized filming and editing. If the makers of this film had shot it with an eye to Hollywood-style nostalgia (as, e.g., The Rocketeer, or the recent Sky captain film), I doubt anyone would have found it offensive.<br /><br />But as it stands, I still had a lotta fun watching this movie.\"\r\n0\t\"I caught this a few months ago on Family Channel, and having some memories of the TV show from my youth, decided to watch it along with my 4 year old daughter. I should have got some psychedelic mushrooms to go along with it, 'cause this is just bizarre! Not only is it a musical with annoyingly forgettable tunes, the requisite cheesy effects and cameos by stars long past their collective primes, it seems to have been produced as somebody's good acid trip. Talking flutes, British children far too old for this kind of crap... in the words of Krusty the Klown \"\"uuuuuugggghhhhh! What was I on?\"\" If you're a huge fan of the whole Sid and Marty Krofft oeuvre, go for it; otherwise, unless you're willing to get looped before watching, stay far, far, FAR away.\"\r\n0\ti am a big fan of karishma Kapoor and Govinda. I watched this film after i had seen Fiza, which was absolutley brilliant.<br /><br />There are films that are bad, and there are films that are cr*p. but this film just takes the biscuit.<br /><br />We were so annoyed that we were conned out of paying our money expecting a decent film.<br /><br />avoid at all cost, dont even rent it.<br /><br />1/10\r\n1\tVery nice action with an interwoven story which actually doesn't suck. Interesting enough to merit watching instead of skipping past to get to the good parts. Having Jenna Jameson and Asia Carrere helps liven it up, too. Jenna in that sweater and those glasses is just astounding! Worth picking up just to see her!\r\n1\t\"As other reviewers have noted, this is an unjustly neglected Depression-era film. Directed by Frank Borzage (two Oscars) and written by Jo Swerling (Leave Her to Heaven, The Westerner, Lifeboat, etc.), it is a tough-minded, well-structured and -realized move about denizens of a New York City shantytown. They're grifters, beggars, and women forced into prostitution, but they're a community of people both good and bad, with loyalties as complex as any group's.<br /><br />Perhaps primary among this movie's many admirable qualities is the contrast between Spencer Tracy's character, Bill, and Loretta Young's Trina. He tough-talking, physically aggressive, and evidently fearless-- but Bill is not the character who gives this film its steely sense of survival. While he blusters, Trina actually hangs tough (if that term can be applied to a character so ladylike). Her devotion to him is obvious, and complete. When she becomes pregnant, she says she will raise it herself if he wants to leave, or \"\"I'll even give up the kid if you'll only be happy.\"\" Such is the dignity of Loretta Young's performance (at age 20) as a quite simple character, that she seems neither weak or dependent, but rather a woman who recognizes happiness when she finds it, and wants nothing more.\"\r\n0\t\"I bought this movie for $5 at a used CD store, and I kinda regret it. I'll start by saying I'm a huge fan of cheesy horror flicks. They provide a horribly tacky cheap entertainment. This movie entertained for the first half hour, because it was so bad it could be made fun of in an MST3K style manner quite easily. Then it got boring.<br /><br />The acting is the scariest part of the movie. While great acting is not to be expected, this was laughably bad and, honestly, provided all of the entertainment that was to be had. This is the plus side to the movie. Where the movie really falters in entertaining is the writing, lighting, and the editing.<br /><br />This movie provides way too many \"\"What the %$@# is going on?\"\" moments. There are many moments, such as the mother having strange fits at dinner, and then that having absolutely no consequence in the movie. Along the lines of dinner, someone in charge decided it was fun to watch people eat refined food for five minutes straight without dialogue every time a meal was served. During the meals and other inappropriate moments, the scene cuts away to pure darkness outside. Then cuts back in. And speaking of darkness outside, one of the funniest parts of the movie is the climate, where apparently it isn't nighttime unless it's raining. And speaking of darkness, a big problem with the movie is that it's so poorly lit you can't see what's going on half the time, which is more of a frustration than anything. In one of the climactic scenes, you can't even tell what you're supposed to be seeing that's so shocking.<br /><br />And when it comes to climactic scenes, Unhinged contains one of the worst. I've seen people say \"\"Wow, that surprised me, and that's good.\"\" I can say that the big reveal did surprise me, because I didn't see it coming. The reason I didn't see it coming is because it made absolutely no sense. I won't ruin it for you, but I will tell you that my friend and I spent a good twenty minutes rewinding to various parts of the movie to find anything that would have validated that at all, and all we found were more things saying that it wasn't possible.<br /><br />All in all, this movie is actually better when you watch it with the commentary tracks that make fun of it. I love crap horror movies, but this was too much.\"\r\n0\t\"I have watched some pretty poor films in the past, but what the hell were they thinking of when they made this movie. Had the production crew turned into zombies when they came up with the idea of making it, because you sure have to be brain dead to find any enjoyment in it.<br /><br />I am a fan of most genres and enjoy \"\"shoot 'em up\"\" games, but merging the daft scenes from the game just made this ridiculous and unwatchable.<br /><br />As most have already said, there was hardly any script and the acting was weak. I won't waste my time describing it.<br /><br />Anyone who rates this film above 4 has to be part of the production company or Sega, or else they have a very warped concept of entertainment.<br /><br />I must say, I was more annoyed with the video shop, who gave this a thumbs up, which led me to rent it. Thank god I had a second film to watch to restore some of my faith in movies.<br /><br />Comic book guy would be right if he said \"\"Worst movie ever\"\"!\"\r\n1\tPhantom Lady (1944) Dir: Robert Siodmak <br /><br />Production: Universal Pictures<br /><br />Scott Henderson (Alan Curtis), following a nasty fight and split with his wife, looks to drown his sorrows at the local watering hole. There he spies a woman in a similar emotional state and, looking for some companionship, asks her to a show at a club to get both their minds off their problems. She agrees, but only on the condition that they keep their names to themselves. Sure enough, when Scott gets home he finds the police there, waiting to question him. His wife's been murdered. Where were you at 8 o'clock this evening, asks Inspector Burgess (Thomas Gomez)? But Scott has an alibi, right? Only he doesn't know the woman's name. And the bartender remembers Scott but not the woman. Neither does the cab driver. Nor the drummer (Elisha Cook Jr.) at the club. Even the dancer at the club, who Scott clearly caught looking at the woman (they were both wearing the same hat), won't acknowledge there was someone with him. Something is going on, but whatever it is Scott is helpless to defend himself at a trial and is sentenced to death for his wife's murder (on the flimsiest 'evidence' in Hollywood judicial history). It's left to his loyal secretary, 'Kansas' (Ella Raines), who's later joined by a sympathetic Inspector Burgess, to find out the real killer before Scott is executed.<br /><br />Phantom Lady is built on themes that recur, almost compulsively, in Woolrich's work. For example, the schizophrenic antagonist is also seen in Black Angel and The Leopard Man. Additionally, there is the character who becomes mentally unhinged by the death of a sweetheart or spouse as found in Rendezvous in Black and The Bride Wore Black. It can leave a viewer feeling like he's treading on well worn ground. But in the right hands, the feverish plots, sorry dialogue, the narrative inconsistencies, all are beside the point. Fortunately, Phantom Lady was being guided by sound hands.<br /><br />This is Siodmak's first noir. He would go on to distinguish himself as one of the, if not the, preeminent practitioners of the style (The Killers, Criss Cross). Here he is fortuitously paired with cinematographer Woody Bredell (they would be reunited on Christmas Holiday and The Killers). There is some great storytelling done in the camera. In one shot, the deteriorating mental state of a character is shown as he sits in front of a 3-way mirror, suggesting multiple personalities. The same character, who is an artist, has Van Gogh's self portrait with the bandaged ear hanging on the wall in his apartment. But what Siodmak and Bredell are really doing in Phantom Lady is practically creating the look for noir. Released very early in 1944, it's all here; the wet pavement, the bags of atmosphere and dread, the sharply contrasting b&w, the wildly expressionistic versions of reality (when Kansas visits Scott in prison), the discordant shafts of light, etc. It is a terrific picture to look at.<br /><br />Franchot Tone aside, the cast, as well as the subject matter and relative inexperience of the director (and presumably, the budget), suggests 'B' movie ambitions. I thought Tone was a little hammy. Alan Curtis (High Sierra) is not up to much, and actually comes off pretty weak in a few scenes. Ella Raines is mostly good (and quite beautiful). Her 'sex scene' with Elisha Cook Jr. is so delirious it has to be seen to be believed. Another standout scene is when Kansas goes after the bartender to question him. It amounts to a chase scene, as she relentlessly dogs him through the streets, with a stop at a subway station. Some real good tension in there.<br /><br />*** out of 4\r\n0\t\"I'll have to add dissenting comment here. Various reviews I have read compared this movie to the likes of those by Wong Kar Wai or Hou Hsiao-hsien. i.e. one of the admirable flotilla of mandarin goodies that have come our way in recent years. Unfortunately this isn't quite accurate. The film plays out rather like a film school graduate's attempt to emulate these masters. All the pieces are there - the beautiful backdrop, the vaguely minimalist dialogue, the slow swaying camerawork, and male leads, in particular, who spend a fair whack of time sitting around being contemplative. Sounds good but unfortunately nothing is up to par. The dialogue is leaden. The acting is generally unable to lift the characters above type; the married couple and the little sister are particularly poor and uninvolving. Unfortunately when mediocre character acting is combined with a classical \"\"Chekovian\"\" (i.e. very predictable) plot, the results are at best tedious and at worst painful. I couldn't help but see the \"\"Blue Danube\"\" river scene, for example, as verging on genre parody (although the smoggy looking \"\"springtime\"\" sky over the river did provide a bit of black humour...) I actually went to this movie on the basis that Mark Li Ping was photographing it. While the setting is elegant, and the swaying camera attempts to replicate the mood of \"\"Flowers of Shanghai\"\", the film is not in the same league, visually. In fact I must confess that after an hour of wondering whether it was the script or the acting that was ruining the film, I suddenly remembered that I was meant to meet my flatmate for dinner and took the chance to leave (and I can't recall the last film I walked out of). I'm guessing from the reviews that the ending may have left a positive aftertaste but by that point I couldn't care. If you'd like to see something along similar lines done with real talent then I'd recommend anything by the above two directors, for example \"\"In the Mood for Love\"\" or \"\"Flowers of Shanghai\"\", both of which were filmed by the talented Mr Ping (the former with Chris Doyle), and both of which are films masterful enough to inspire years of failed emulations like this. It's not often Mr Hoberman leads me astray, and perhaps you'd rather listen to him, but don't say you weren't warned. Craig.<br /><br />\"\r\n1\tI try to watch it everyday most of the time, and even though I have watched it for the past 4 years, I have not seen every episode.<br /><br />The Show is about Danny Tanner who is guy who does news for sports. His wife is killed by a car accident from a drunk driver and he asks Jesse, an Elvis maniac with a motorcycle and has an obsession of his hair. Joey, an adult kid who does comedy and does voices of cartoons all the time to take care of his three girls, Donna Joe, they call her D.J., Stephinie who is the second oldest and Michelle, the youngest.<br /><br />They all live under one roof with no one to help them out.<br /><br />Later in the show, Jesse gets a girl friend and later is married to her and have twins, Nicki and Alex. (this starts to happen in the new seasons) This show is awesome, if you like The Suite life of Zack and Cody, That's so Raven, Boy Meets world, and Designing Woman, you will love this. (It starts to get better in the ending seasons) Watch it, you will love it!\r\n1\tThe plot of this film might not be extraordinary, but what makes the film really special, are its characters (and the actors who play them  of course!). I won't go into the details of the plot of the movie, but I would certainly like to say this  This film is not just for everyone! The film is really witty and you need to be equally clever to get all the satire. If you're not alert even for a second, you'll probably end up missing one of the subtle points. The movie is full of such seemingly trivial but witty stuff - like the announcements going on in the background at Turaqistan, the advertisements on the tankers (which I almost missed) and it are these that make the movie hilarious throughout.<br /><br />Coming to the actors, John Cusack has played his multi-faceted role very efficiently (what with him being the co-writer and the producer too) and he plays his character  Hauser, the killer with a heart  exquisitely. Cusack's done a similar kind of role before in Grosse Pointe Blank, but his comic disposition in the movie is simply superb.<br /><br />However the actress who steals all the show is Hilary Duff! I have always been a huge fan of Ms. Duff. But to be honest I was a bit disappointed when I heard about the kind of role she's playing in the movie. But after watching the movie the disappointment gave way to great respect for her as an actor. Let's face it! The kid's growing, but yes, so is her talent! All those critics, who shouted hoarse that Hilary cannot act, will be silent for a while. Hilary had to play a really complex character  tough on the outside, yet a sweet child on the inside  and she's done complete justice to it. She makes you laugh, and she makes you cry  to cut the long story short ('cause I could go on raving about her for ever) she's BRILLIANT! Marisa Tomei and Joan Cusack have done a good job too. Especially, Joan's hysterics are uproarious! However, I was rather disappointed with Ben Kingsley being wasted in such a small role and his performance seemed lackluster.<br /><br />In general War, Inc. keeps you on your toes throughout with its intelligent humor, and ends with just the right amount of twists in the plot. I would highly recommend this movie to all (and more so to Hilary Duff fans)!!! P.S. - I am really glad to hear the movie is going to break free of its limited release and release at other places soon!!!\r\n0\tMany people see this as a classic, but I obviously must have missed something. Life in Anarene, Texas in the early 50's is pretty dull - which means that a movie about life in Anarene, Texas in the early 50's will be pretty dull too! What is it that so many people see in this? Once the last picture show in Anarene closes there really won't be anything to do in town. Duane (Jeff Bridges) makes that point at the end of the movie. But even before it closes there isn't much to do, so basically everything revolves around sex. High school students make plans for how to lose their virginity - sometimes with each other and sometimes with some of the equally bored adults in town. You see, there's not much for them to do either - except to have sex (sometimes with each other and sometimes with the bored teenagers) or to whine about the local high school football team. Three times something happened that I thought was going to add some spark of drama to the movie. Sam (Ben Johnson) dies unexpectedly, but nothing really happens because of that, Sonny (Timothy Bottoms) and Jacy (Cybill Shepherd) elope, but nothing really happens because of that, Joe Bob (Barc Doyle) kidnaps a little girl, but nothing really happens because of that. The only thing that added anything of dramatic value to the movie came at the end with the death of Billy (Sam Bottoms) which really points out the emptiness of life in this pathetic little town, as the men stand around looking at the body debating where to go for breakfast.<br /><br />Peter Bogdanovic filmed this in black and white, which is intended I suppose to point out how grey this town is, but the only thing I found interesting was the early look at actors like Bottoms, Shepherd, Bridges and Randy Quaid. (As an aside it was terrifying to see how much Quaid - in 1971 - actually looks like his character of Cousin Eddie in the National Lampoon Vacation movies.) Classic? I don't think so! 3/10\r\n0\tCheap and mind-blisteringly dull story and acting. Not a single good line, not even a line bad enough to be good, and no memorable delivery. Even the blooper reel included with the DVD showed how inept the actors were and how little fun any of them were having. The esoteric and occult basis was apathetically inauthentic, and the antagonists failed to be creepy or believable. The 'homoerotic' overtones were pointlessly tame and dissatisfying, and were limited to young boys caressing their chests while flaccid in their boxers. I'm not gay enough to appreciate it, but a little action might have at least kept me and my girlfriend awake.\r\n0\t\"This \"\"film\"\" is one of the most dreadful things I have ever seen.<br /><br />Please do yourselves a favor and avoid this incompetent concoction.<br /><br />Shaking the camera and having your actors adopt scowls does not count as \"\"direction\"\", which this film needed in droves. Not that the writing was all the wonderful, rather we were left with a bunch of completely artificial characters directed in that most artificial way (the pseudo-documentary \"\"style\"\" prized by those who don't know how to direct).<br /><br />This film gives the impression that it was done cynically to appeal to critics who don't know the first thing about film-making (which is most of them).<br /><br />Just terrible. It says a lot about Sundance and what it's become that Victor Vargas was showcased there.\"\r\n1\tBrilliant! My wife and I joined the sprawling line to see Holly at the Edinburgh Film Festival. After seeing the film, I can understand why there was such a long line. Holly is a touching story about an impossible connection between two people. She is a young girl, he is a worn out westerner. The film grasped every bone in our body. There aren't any graphic scenes or anything that is hard to watch - its the surrealism of normality that really kicks you in the gut. The film is beautifully shot. Among others, we loved the scene where Patrick teaches Holly to ride a small motorcycle. Thuy Ngoyen's rawness (cant believe this is her first acting job)and Ron Livingston's performance stayed with me for a couple of days. Highly recommended.\r\n1\tThis movie was great! It was an excellent rendition of an ancient myth. The animation was somewhat odd, but nothing new from Disney. It was definitely better than expected for a Disney movie with no singing.<br /><br />The background animation was magical. It was a different level of work for the Disney people. Some of the characters were a little boxy, but it was more than made up for with the beauty and lushness of the scenery. The music was largely instrumental but that was perfect for the movie. This was definitely not a film that needed the characters to bust into song.<br /><br />Perfect. 10 out of 10.\r\n1\t'Holes' was a GREAT movie. Disney made the right choice. Every person who I have talked to about it said they LOVED it. Everyone casted was fit for the part they had, and Shia Labeouf really has a future with acting. Sigourney Weaver was perfect for The Warden, she was exactly how I imagined her. everyone who hasn't seen it I recommend it and I guarantee you will 'Dig It'.\r\n1\tThis was on at 2 or so In the morning one Saturday a few years ago, for various reasons I don't remember the entire story but what remains are the two standout performances from the central characters. Dom has had a unfortunate lot, manipulated & literally working a rubbish job, Eugene torn between personal aspirations and duty towards his sibling. Tom Hulce' Dom doesn't plead for sympathy - It comes naturally. Ray Liotta Is a universe away from Henry Hill, displaying a soft centre In what must feel a thankless position.<br /><br />In many ways this deals with the dilemma many young carer's face - the past or the future. As It turns out, with some work the two can happily co-exist. Thoughtfully handled & sensitively played Dominick & Eugene Is difficult not to warm to.\r\n0\t\"\"\"Diary of Sex Addict\"\" is a pathetic attempt at a serious drama about sexual compulsiveness. Probably a movie marketing scam, this flick is a stylish shoot with a good cast and little else going for it. Bottom line, \"\"Diary...\"\" would have us believe that our sex addict character has the dumbest wife in the world, a stable of babes on the side who have nothing better to do than drop their panties for him at his whim, and no job in spite of being a restaurateur. At the best, this flick could have been good drama. At the worst, cheap softcore. \"\"Diary...\"\" isn't either and nowhere in between. This one's for the dumpster. (D-)\"\r\n0\t\"A student filmmaker enlists a B-grade actress (a delectably diva-ish MOLLY RINGWALD!) to complete the horror film that her mother (a dreadfully dull Kylie Minogue!) tried to make 12 years ago. It's a curious plot choice to say the least, as any Aussie horror fan knows that the genre is sadly lacking in women directors. The film has a curse on it, because Molly had to kill some psycho murderer on the original set. But she's back, because she needs the exposure. Unfortunately, the curse is still there and people start dying on the \"\"set.\"\" Cut is an Aussie attempt at the modern \"\"slasher,\"\" but unfortunately it doesn't bring anything new or exciting to the table. In fact, it rips half of Wes Craven's 90s filmography. Lots of film-world name-dropping a la \"\"Scream\"\" (except it's Aussie name-dropping--Jane Campion...see how this isn't as funny) and lots of \"\"is this real or is this a movie\"\" a la \"\"New Nightmare.\"\" The editing is bad, the music is annoying, the effects are laughable, almost everything is bad about this. Fortunately, the film can have a sense of humor: at one point, a well-dressed girl in the movie crew says to the owner of the house they are filming at: \"\"Don't worry, we'll treat your house as if it were our own,\"\" to which he responds, \"\"that doesn't mean anything to me, you look like you live in a dump!\"\" Ha! And Molly's ridiculous one-liners were enough to not regret renting this one. \"\"You got any diet coke in here?\"\" (as she rides in the film professor's car) and \"\"Does anyone know where I can buy any tofu?\"\" (the first thing she mutters on the set) and \"\"Where the hell is my agent?\"\" (oh wait, that's what I was thinking for her.)\"\r\n0\t\"William Lustig's followup to \"\"Maniac\"\" proves conclusively that, without Tom Savini's spectacular effects and Spinell's convincing performance, \"\"Maniac\"\" would never have become the cult hit that it did. \"\"Vigilante\"\" is badly directed, with a simple-minded script that spells everything out for you and is predictable at every turn, and also mediocre performances by all the actors. Judging from the sense of \"\"deja vu\"\" this film gave me, Lustig had watched \"\"Death Wish\"\" several times too many before making this! (*1/2)\"\r\n1\tThis is a very well-made film, meticulously directed and with some excellent character acting that at times is deeply moving - for example the scene with the loyal but unsophisticated sidekick cop and his wife. The plot is convincingly worked out and exciting. The gangster character is particularly interesting and plays an almost metaphysical role in the life of the hero. It's made clear that the cops are just as rough and ready as the underworld characters.<br /><br />A couple of slight reservations: I found the ending slightly one-sided as it celebrates the hero's successful integration into the structure of the police and justice system, which collapses the ambiguity of the police characters which has been maintained up to that point. Also I found the lead female character somewhat weak: little more than a catalyst for the salvation of the hero, all she seems to do is weep and swoon as the tough guys battle it out.\r\n0\tThat's pretty ridiculous, I hope many people are exposed to Muslims who live all over the U.S, U.k, and all over the world. The religion has over a billion followers. I Myself born and bread in America and through my religious classes and teachings I have been taught to cherish my country and work to contribute to the society. I am very dedicated to the followings and teachings of my religion have been stressed through out life to educate and prepare oneself for success through education in order to contribute back to the world. I have know many Muslims from all over and I have traveled to countries like Pakistan..I have yet to meet one person who believes that we should hurt anyone or not accept any other religion except from the people in the media...I wonder why... Also its sad that these extremists are the ones the media use to represent a whole religion. Its a religion of one billion people, and these are less than one percent, I am sure the other people of other religions would not like to be represented by the KKK, IRA and many more which are simple small percentage extremists who use outdated and not literal passages from the respected books in order to pursue their own revenge, personal, or business matters through their so called religion\r\n0\t\"DEAD HUSBANDS is a somewhat silly comedy about a bunch of wives conspiring to bump off each others husbands`. It`s by no means embarrassingly bad like some comedies I could mention but it never fufils its potential . Imagine how good this could have been if we had the Farrelly brothers directing Ben Stiller in the role of Carter Elson .<br /><br />Oh is Carter based on Jerry Springer ? Just curious because the catch phrase on Dr Elson`s show is \"\" look after each other and keep talking \"\"\"\r\n0\t\"It's easy to see how this below-average screenplay got by in the early sales-pitch meetings at Regency Films (and later with Fox): cross the superhero genre with a comedic take on \"\"Fatal Attraction\"\"...voilà! I don't know how on earth a talented director like Ivan Reitman got involved, unless the pay was just too tempting. A dateless employee at an architectural design firm in N.Y.C. meets a girl on the subway and asks her out; despite the fact she's distracted and unpleasant, he eventually gets her into bed--only to find out later she's the Big Apple's resident superhero, G-Girl. This distaff Superman, with powers bestowed upon her by a fallen meteorite, isn't a fantasy heroine, however...screenwriter Don Payne has conceived her as a needy, possessive, vindictive bitch (he telegraphs this to us from miles away, though Uma Thurman still plays the role for sassy laughs). This is the kind of worthless movie that can't let an insult slip by. Our introduction to leading man Luke Wilson, talking with Rainn Wilson on the train, is accompanied by a sour dig at gays (it prods at us to be assured these two buddies are strictly ladies' men). After being approached by G-Girl's nemesis, who wants to zap her powers, Wilson is told this will make her just an ordinary woman scorned...and isn't that better after all? Thurman's early performances in films like \"\"Henry & June\"\" and \"\"Jennifer 8\"\" showcased an intelligent woman with angular grace and hypnotic poise; her films with Quentin Tarantino helped expose her sinewy hardness and intensity, but that came at a price (the actress has seemingly lost her graceful touch). The picture is exceedingly well-produced and shot, with expensive-seeming special effects, yet nobody bothered to find the humor in this scenario. It's pushy, leering, ugly, and badly-cast. Bloated, frozen-faced Wilson can't tell any of his co-workers that he's dating G-Girl because she made him swear he'd rather have a chainsaw stuck up his rectum. I wonder if writer Payne actually thought that was hilarious...or, indeed, if anyone involved did? * from ****\"\r\n1\tThe Fury of the Wolfman is a very good film that has a good cast which includes Paul Naschy/Jacinto Molina, Perla Cristal, Verónica Luján, Mark Stevens, Francisco Amorós, Fabián Conde, Miguel de la Riva, Ramón Lillo, José Marco, Javier de Rivera, and Pilar Zorrilla! The acting by all of these actors is very good. The Wolfman is really cool! He looks great and he sound like the Looney Tunes character the Tazmainian devil! There are some really hilarious scenes in this film! The thrills is really good and some of it is surprising. The movie is filmed very good. The music is good. The film is quite interesting and the movie really keeps you going until the end. This is a very good and thrilling film. If you like Paul Naschy/Jacinto Molina, Perla Cristal, Verónica Luján, Mark Stevens, Francisco Amorós, Fabián Conde, Miguel de la Riva, Ramón Lillo, José Marco, Javier de Rivera, Pilar Zorrilla, the rest of the cast in the film, Werewold films, Horror, Sci-Fi, Thrillers, Dramas, and interesting classic films then I strongly recommend you to see this film today! <br /><br />Movie Nuttball's NOTE: <br /><br />I got this film on a special DVD that has Doctor Blood's Coffin, The Brainiac, and The Fury of the Wolfman from Vintage Home Entertainment! See if you can find this winner with three bizarre but classic films on one DVD at Amazon.com today! <br /><br />If you like Werewolf films I strongly recommend these: Werewolf of London (1935), The Wolf Man (1941), Frankenstein Meets the Wolf Man (1943), House of Frankenstein (1944), Abbott an d Costell Meets Frankenstein (1948), The Curse of the Werewolf (1961), An American Werewolf in London (1981), Silver Bullet (1985), Werewolf (1987), The Monster Squad (1987), My Mom's a Werewolf (1989), Project: Metalbeast (1995), Bad Moon (1996), Werewolf (1996), Dog Soldiers (2002), Underworld (2003), and Van Helsing (2004)!\r\n1\t\"The movie \"\"Atlantis: The Lost Empire\"\" is a shining gem in the rubble of films produced by the Disney Studios recently. Parents who have had to sit through \"\"The Jungle Book 2\"\" or even a Pokemon movie will surely appreciate this one.<br /><br />The film is one of few to attempt at an original story; previous feature films were merely re tellings of existing stories. Films such as \"\"Toy Story\"\", \"\"Finding Nemo\"\", and \"\"Monsters Inc.\"\" all do the same, but it must be noted that all were made by Pixar and only distributed by Disney. Recent films from the Disney Studios are mostly released direct to video, and are sequels to an existing successful film. The quality of those films is given way to the profitability. A new era started with \"\"Atlantis\"\" following it were \"\"Mulan\"\", \"\"Lilo & Stitch\"\", and most recently \"\"Open Range\"\". The writers have created all original story lines instead of the fairy tales of the past.<br /><br />A good portion of the movie is devoted to the quest to find Atlantis, a task that has captured the imagination of many for hundreds of years. Including that of young Milo Thatch, voiced by Michael J. Fox. Milo is employed by a museum in Washington D.C.. His grandfather was a renowned archaeologist, who had devoted his life to discovering Atlantis. This was seen as a waste by his peers, and they wish Milo to not follow in his footsteps. After failing to convince the museum board of directors to sponsor his expedition, Milo comes home to find a woman in his darkened apartment. She takes him to her employer, a Mr. Whitmore. Whitmore was a close friend of Milo's grandfather, and wishes to send Milo with a team to locate Atlantis. Mr. Whitmore is very wealth and has paid for the best of everything. The crew that is to accompany him is the same as his grandfathers. The journey is filled with many great obstacles to overcome and is great fun to watch. The viewer finds themselves caught up in if they will reach Atlantis. The plot takes an unexpected turn after the discovery Atlantis, not just the discovery of people. It is enough to keep the interest of the older audience.<br /><br />The animators have done a wonderful job in then depth of the animation. The movie is very successful in blending traditional animation with Computer Generated Images. A feat not easily achieved, most audiences are quick to notice the difference in the two. The characters are believably human. There are some nice chase type scenes, with lots of action going on. A few lulls are filled with jokes that the children just may not get.<br /><br />The creativity of the writers really shines through. The culture of Atlantis is richly developed, including an entire language. The film uses references to Atlantis from historical sources, such as Plato. The disappearance of Atlantis from the world is explained. Believable, if by a younger audience, that magic really does exist. The powers of the people of Atlantis are not exactly presented as magic, but can best be described in this way.<br /><br />Although set in 1914 the level of technology used is unrealistic. The voyage is in a submarine very reminiscent of Captain Nemo's nautilus, complete with sub pods that fire torpedoes. The giant diggers are driven by steam boilers so they did try for some era technology. The female characters are empowered in a way that women of the age would not have been, even holding roles in leadership. This is not a bad thing. It gives a good role model for my daughter to look to, rather than an all male cast.<br /><br />One reason this film is a favorite of mine over other Disney films is that there is not one single song, ever. A tradition that began with the first feature film, \"\"Snow White\"\", and carried on through to \"\"The Lion King\"\", almost every Disney film is full of upbeat songs. This is great and all, what would the Seven Dwarfs be without \"\"Hi HO!\"\"? After the millionth time through it'd almost be better without, but this one spares the parent. Not once does every single person on the screen suddenly know the words to a song that no one has ever heard before and break out in song. I for one am grateful.<br /><br />The storyline and depth of animation is sure to keep the attention of both parent and child alike. It is a film I am willing to watch again and again with my children.\"\r\n1\tI went to see Hamlet because I was in between jobs. I figured 4 hours would be great, I've been a fan of Branagh; Dead Again, Henry V. I was completely overwhelmed by the direction, acting, cinematography that this film captured. Like other reviews the 4 hours passes swiftly. Branagh doesn't play Hamlet, he is Hamlet, he was born for this. When I watch this film I'm constantly trying to find faults, I've looked at the goofs and haven't noticed them. How he was able to move the camera in and out of the Hall with all the mirrors is a mystery to me. This movie was shot in 70 mil. It's a shame that Columbia hasn't released a Widescreen version of this on VHS. I own a DVD player, and I'd take this over Titanic any day. So Columbia if you're listening put this film out the way it should be watched! And I don't know what happened at the Oscars. This should have swept Best Picture, Best Actor, Best Direction, best cinematography. What films were they watching? I felt sorry for Branagh at the Oscars when he did a tribute to Shakespeare on the screen. They should have been giving a tribute to Branagh for bringing us one of the greatest films of all time.\r\n1\tI'm not tired to say this is one of the best political thrillers ever made. The story takes place in a fictional state, but obviously it deals with the murder of Kennedy. A truthful and honest district attorney (played by Yves Montand) does not believe that the murder was planned and executed by the single man Daslow (=Oswald) and though all other officials want to close the case he continuous to investigate with his team.<br /><br />The screenplay is written tight and fast and holds the tension till the end. Just the part dealing with the Milgram experiment about authorities is (though not uninteresting) a bit out of place. The ending sequence - explaining who Icarus really is - partly shot in slow motion and intensified by a Morricone soundtrack is the most powerful sequence I have ever seen in a movie.\r\n1\tEddie Murphy is one of the funniest comedians ever - probably THE funniest. Delirious is the best stand-up comedy I've ever seen and it is a must-have for anyone who loves a good laugh!! I've watched this movie hundreds of times and every time I see it - I still have side-splitting fun. This is definitely one for your video library. I guarantee that you will have to watch it several times in order to hear all the jokes because you will be laughing so much - that you will miss half of them! Delirious is hilarious!<br /><br />Although there are a lot of funny comedians out there - after watching this stand-up comedy, most of them will seem like second-class citizens. If you have never seen it - get it, watch it - and you will love it!! It will make you holler!!! :-)\r\n0\t... or maybe it just IS this bad. The plot is a cheap rehash of the first, which is weird, since it's supposed to be a prequel, not a sequel. Pretty much the entire movie seems like a cheap remake of the first, with scenes mimicking the things that happened in the first, only a lot more ridiculous and unlikely. Where the first had a great cast, this one consist of B-list actors and rejects. The acting is mostly horrendously bad. Half of the good lines in the movie are taken directly from the first, as is nearly every major character, including the ones who weren't in the first movie. I realize this was made up by a TV series pilot episode, but that's no excuse. They didn't have to turn the (bad) footage into a movie. Only one thing is marginally good, and that's the erotic sequences. However, as these are nowhere near as good as the ones in the first, even this isn't raising it above a rating of 1. If you have a chance to see it for free, and you're a straight guy, it could be worth checking out, if you want something erotic that isn't porn. If not, avoid at all costs. 1/10\r\n0\t\"John Hughes wrote a lot of great comedies in the '80s. \"\"European Vacation\"\" is not one of them. The follow-up to Hughes' first big hit \"\"Vacation\"\" (1983), is about as predictable, unfunny and annoying as they come -- no matter how much you love the dumb but romantic Clark and Ellen Griswold (Chase and D'Angelo).<br /><br />I greatly enjoyed \"\"Vacation\"\" as well as the third film, 1989's \"\"Christmas Vacation,\"\" but the Griswold's trip to Europe is bland and forced. Perhaps because this was Hughes' first attempt at a sequel that he didn't get it, but it's really dumbfounding how uninspired and devoid of a story \"\"European Vacation\"\" is. There is no through story: the Griswolds win a game show for being \"\"greedy little pigs\"\" and go on a tour of Europe through England, France, Germany and Italy. Even the screwball physical humor that is the trademark of the first loses all effect because you see it coming, which is part director Amy Heckerling's fault. The \"\"Fast Times at Ridgemont High\"\" director sets everything up too predictably.<br /><br />Maybe it was Hughes taking a cheap shot because he was put up to the sequel. \"\"European Vacation\"\" takes great pride in insulting Americans (recall the greedy little pig game show they win), especially tourists, represented by the cornball Griswold family. It also pats itself on the back implicitly saying \"\"oh us Griswolds, we're always getting into something because our dad is an idiot.\"\" Then in nearly comic fashion it ends with a tribute to America and how grateful the Griswolds are to return to such a better country. If Hughes was going for satire and meant to do it in the form of a bad movie, well maybe I should award this 8/10 stars.<br /><br />It's not just the unfunniness, but \"\"European Vacation\"\" boasts the two worst actors to play kids Rusty and Audrey (Jason Lively and Dana Hill). They're both annoying and obnoxious, with the unattractive and loud-mouthed Audrey blubbering about the boyfriend she's left behind nearly the entire film. Hughes even goes as far as to have her comment about missing him right as she observes a giant bratwurst. Quite tasteful. Speaking of, breasts are flashed in two different scenes for no good reason (unless it was to comment on Americans' love of gratuitous nipples in their comedies).<br /><br />I will give the film one of its two stars thanks to Eric Idle of the Monty Python crew, whose cameo at a few different points in the film where he recites lines directly from \"\"Holy Grail\"\" is about the funniest part. If Hughes intended for us to find one of the film's only non- American actors as the only funny part, then another tip of the hat to him for ripping open the underbelly of Hollywood comedy in the '80s. Still, would it have hurt for him to do that while making it entertaining?\"\r\n0\tDue to budget cuts, Ethel Janowski (again played by Priscilla Alden) is released from a mental institution (even though she killed six people) and delivered to the Hope Bartholomew halfway house. Once there, she immediately relapses into her criminally insane ways and kills anyone who gets between her and her food.<br /><br />HOLY MOLY! Does this movie suck! You know you are in trouble when the open credits start up and they are just the credits from the first film, apparently filmed off a TV screen. Nick Millard (under his pseudonym Nick Phillips) decided to return to the world of Crazy Fat Ethel over ten years later and with a budget that probably covered the cost of a blank tape and a video camera rental for the weekend. Let's just say that Millard's unique style doesn't translate well to video. Seriously, I have made home movies with more production value than this. And Millard tries to pull a SILENT NIGHT, DEADLY NIGHT 2 by padding half the running time with footage from the first film (which looks like it was taken off a worn VHS copy). Alden is again good as Ethel but the film is so inept that you start to feel sorry for her for starring in this garbage. I mean, at least the first film tried. Here we have no music, weaker effects (if that is at all possible), shaky camera work, horrible audio and editing that looks like it was done with two VCRs hooked up. Avoid this at all costs!\r\n1\tMade by french brothers Jules and Giddeon Naudet, and narrated by Robert De Niro and Firefighter James Hanlon this is a compelling and heartbreaking tale of how New York's finest shone on it's darkest day. I first saw this when I was a young naive 12 year old, and at that age it still touched me. Knowing how serious 9/11 really was seeing this expanded the whole effect of 9/11. We were finding out who the heroes were, how there everyday lives were composed, and how they put their lives on the line in a situation where most people would just run and save their selves. These brave men put their lives on the line and watching this just increases my admiration for them. Watch if you can,this is the best documentary I have personally ever seen.\r\n1\tAs I watched this movie, and I began to see its' characters develop I could feel this would be an excellent picture. When you get that feeling, and the movie indeed fills those expectations the experience is rare. I had that very feeling throughout this movie. Robert DeNiro and Cuba Gooding Junior played riveting and amazingly strong parts which were both Oscar worthy. The supporting cast was equally as strong creating a winning foundation for the picture to grow on. I can say without any hesitation at all, see this movie it will not disappoint.\r\n0\t\"I didn't feel as if I'd been raped like I did with THE ENCHANTED CHRISTMAS,but BELLE'S MAGICAL WORLD is still the antithesis of BEAUTY AND THE BEAST. Like CHRISTMAS,BMW hates its audience,although not to such an extreme degree. It's ugly,uncanonical,idiotic,and the writing is horrifically bad.None of the stories work. These are not the characters we loved from BATB at all,they're a bunch of pod people. I wanted to dissect it,but after a few minutes,I gave up,because no one in their right mind would take this claptrap seriously. What we have here are three stories. \"\"The Perfect Word\"\" is an overbearing,ponderous study of forgiveness. \"\"Fifi's Folly\"\" only works if you can accept that Babette's name is actually Fifi and that she's a closet James Bond villainess and that Lumiere is an idiot concerning women. \"\"Broken Wing\"\" (or \"\"Broken Wind\"\" as I like to call it) is probably the most heinous of the bunch. Beast hates birds? Since WHEN? Don't watch this crap- every copy of this video deserves to be cremated. BEAUTY AND THE BEAST is still a cinematic classic,a transcendent celebration of love,art, intelligence and the human soul.\"\r\n0\tfor a lot of time I was looking forward to see this movie, here in Latinamerica japanese or any oriental movies have no distribution in theaters, we can find some of those movies in some underground stores, and I just found Avalon, I was expecting something good, but the only good thing in this movie is the first scene, the rest of the movie is boring and senseless, just plain stupid, with a lot of useless scenes, and a boring story. I am wasting my time even writing about this film. Sorry but is the truth.\r\n1\t\"An excellent example of the spectacular Busby Berkeley musicals produced in the early 1930's. Audiences must've been very surprised to see James Cagney in this type of vehicle. Quite a contrast from his \"\"Public Enemy\"\" 2 years earlier. Cagney does add spark & interest to a rather routine tired out formulated storyline & plot. But the highlight of the movie is the 3 elaborate production numbers back to back. First with the conservative \"\"Honeymoon Hotel\"\" number,then followed by the very spectacularly eye dazzling \"\"By A Waterfall\"\" sequence,followed by the closing \"\"Shanghai Lil\"\" sequence, Cagney only participates in the last number hoofing it up on top of a bar counter with Ruby Keeler. The \"\"Shanghai Lil\"\" number with Cagney is excellent but a bit of a comedown & anti climactic after the more exciting & incredibly mind boggling \"\"By A Waterfall\"\" choreography.If I was the director I would've inserted the \"\"Shanghai Lil\"\" number in the middle & close with \"\"By A Waterfall\"\",which blows the other 2 numbers out of the water so to speak & in my view the best of the 3 numbers. The 3 production numbers are the frosting on the cake & James Cagney's performance is added decoration to the cake. An outstanding musical achievement,a 4 star movie, the ultimate musical,well worth watching,you won't be disappointed!!!!!!!!!\"\r\n0\tFor most younger viewers out there, they probably have no idea who Buster Keaton was. So, because of this, they probably won't feel nearly as sad when watching this film as I did. I happen to be a silent comedy freak--having see just about every Keaton film still in existence. My being a huge fan made this film very painful from start to finish. This is because during his silent days, Keaton was a very vibrant and creative comedian. He was amazing in his physicality and his films were almost never dull. However, in a move that movie historians still are baffled by, at the end of the silent era, Keaton gave up his independence and became a stock MGM actor. Instead of being a great creative force, MGM now saw Keaton solely as an actor--and they wrote scripts for him that had no respect for what made him great. At first, these films with MGM were not that bad (such as THE CAMERAMAN) but with talkies, the studio really blew it--putting him in several films with Jimmy Durante. Durante's humor was based on his gift for gab and was abrasive. Keaton, in contrast, was quiet and based on action. Two more unlike and incompatible actors would have been hard to find. As a result of this deadly combination, Keaton made some truly dreadful films.<br /><br />Now this isn't to say that SPEAK EASILY is a terrible film. No, instead it's just more of a time-passer and an amazingly unfunny one at that. In fact, if you go into the movie assuming it's a comedy, it will probably make the film harder to enjoy. Instead, it's sort of like a drama with a few comedic elements. It is NOT a film that will produce belly laughs--especially for Keaton fans.<br /><br />The film begins in an odd setting. Keaton is cast as a college professor whose entire life is teaching. He knows nothing of the world and has his nose stuck in his books. In a bizarre move, Keaton's servant tricks him into believing Keaton has received $750,000 from a dead relative--hoping that this would spur Keaton to get out and enjoy life. This is amazingly contrived but somehow it manages to work. Not terribly well, but it works.<br /><br />Keaton immediately leaves school and goes on a journey to New York to have some fun. On the way there, he meets up with an incredibly untalented theater troop. Because he knows nothing of the world, he doesn't seem to realize they stink. And, because he thinks he's rich, Keaton decides to take them all to New York to perform on Broadway. However, just before the show opens, his friends find out that Keaton is NOT rich. So, they decide not to tell Keaton and try to keep him away from process servers that want to close the show. They assume that if the show is a hit, then they can pay off the debts and everyone will be happy. However, they forget that the show itself stinks. What are they to do? And, will Keaton get the nice girl, get roped by a gold digger (Thelma Todd) or be flat broke and alone? If you care, see the film.<br /><br />As for Keaton, he has few stunts in the film, though there are some dandy ones near the end. Instead, Keaton just kind of walks through the part in a very subdued manner. There's really little to love about this film or hate. It's just blah....when it SHOULD have been a heck of a lot better.\r\n1\t\"When I was flicking through the TV Guide, and came across \"\"Twisted Desire\"\" on the movie section, I read it's description. Three words caught my eye \"\"Melissa Joan Hart\"\" ...I find her role in \"\"Sabrina: The Teenage Witch\"\" absolutely vile, I hate those kind of programs, so I was just thinking that it was going to be a boring old, love story starring her...Little did I know.<br /><br />It finally started on the television, I had my bucket ready in case I were to puke over it's cheesiness or soppiness, you know what I mean. At first, you think she's just a nice, ordinary girl who's in love, but has mean parents. Then when you find out she's manipulated her boyfriend into killing her parents, so she could be with her TRUE love, you're like \"\"Whoa\"\". You just don't expect this sort of role for that sort of actress. She played her role very well in my opinion, I never expected her to be able to act like such a bitch, and voilà, she did it perfectly! Congrats to her, the movie was very good, I'd definitely watch it again and recommend it to others.\"\r\n0\t\"An average TV movie quality, totally formula story of religious fanatic (Ron Perlman, who gives good \"\"I'm not just the President of 'Psychos R Us,' I'm also a client.\"\") who gets control of a biochemical virus (think the virus from the movie \"\"The Rock\"\"). Too bad for him that he also gets stuck in a bank building during an earthquake with bank robbers and the government agents trying to stop him (led by the impressively physiqued, mildly entertaining Wolf Larson, backed by Fred Dryer) along with the standard \"\"in the wrong place at the wrong time\"\" spunky female (the forever bland Erika Eleniak) and \"\"lived as a wimp but died as a hero at the last minute\"\" male (Brandon Karrer). Has the standard background story to give sympathy to the religious fanatic (wife and son killed in a police raid a few years previous). <br /><br />Basically a decent rainy day movie.<br /><br />Favorite line, spoken by Ron Perlman after he finds the vial of the virus hidden in Erika Eleniak's cleavage: \"\"A woman and her mystery.\"\"<br /><br />Worth a rent.\"\r\n0\tThis movie was supposed to have depicted a 'ladie's man' bachelor who was ready and willing to settle down once and for all. However, I did not care for his mission to settle down, because I didn't care for his character. I don't understand what all of these beautiful women saw in him. He had absolutely no class, or charisma. He should've at least had a way about himself that made ladies weak in the knees other than his saxophone playing, but to no avail. Just because he is a musician does not make him sexy. Not to mention, the things he did to get the attention of a married woman he fell in love in a span of five minutes of knowing her were absolutely outrageous and ridiculous. Does this man have any shame what-so-ever? Had he tidied up, and stopped doing and saying stupid things he would have been more attractive as a character, but alas, his character was bland and boring.<br /><br />Gina Gershon's character was unnecessarily British. She could've just as easily been an uptight out-of-towner with her regular speaking voice than do a poor British accent that sometimes would fade through out the movie.<br /><br />The only two characters I cared for were the fish and frog. Now those two had chemistry! Academy nominations for both STAT! Plot holes, lack of character development, horrible acting, unnecessary drama, cliché moments... What a mess of a movie.\r\n0\t\"I think that my favorite part of this movie, the one that exemplifies the sheer pointless, stupidity and inanity of the proceedings, comes at the climax of the film. DOCTOR TED NELSON and his unmarried friend the Sheriff have finally cornered the Melting Man on a landing on some stairs in an electrical generating plant. Keep in mind that Nelson has been looking for the MM for nearly the entire film, and that the MM has killed and eaten several people at this point (including his boss), and Nelson is very aware that MM is violently insane and hungry for human flesh and blood.<br /><br />So the Sheriff has his gun pointed at MM, who is, and I give the movie and Rick Baker props for this, the most disgusting and terrifying object in human form that we have ever seen. And he yells a very important question to DOCTOR TED NELSON: \"\"WHAT DO WE DO NOW?!?!?\"\" <br /><br />The camera cuts over to DOCTOR TED NELSON, and it's obvious that Ted has no idea what to do next. Apparently Ted was so intent on the problem of FINDING the Melting Man, he never thought to bring along some restraining devices, a lasso, or straitjacket, or a net, or some tranquilizer darts, or maybe a New Age tape by Vangelis to soothe the savage beast.<br /><br />So the sheriff panics and shoots, the Melting Man goes berserk, and hilarity ensues. <br /><br />Maybe this explains why NASA has been screwing around with the Space Shuttle program in sub-lunar space for the last 30 years instead of going back to the Moon or out to Mars like everyone knows they OUGHT to be doing. I dunno.<br /><br />Anyway, that's the kind of lousy, lazy writing and direction that undercuts every aspect of this movie. It's hard to say how good the actors actually are, because the movie has complete contempt for their characters.<br /><br />Two other incredibly painful sequences also ramp up the stupidity of the proceedings: There is a scene featuring the lumpiest old couple in the world trying to steal lemons from a grove, only to be torn apart by the Melting Man. This scene is a nadir in 70s cinema. I can guarantee you've never watched a more pointless and irritating setup with odder looking people in your entire life. And the Melting Man's assault on the lady who lives in the house where they keep a horse who pees on the walls defies every attempt to process it.(BTW, I think famous film director Jonathon Demme has a walk-on in this scene as the redneck husband who goes in first to check on the house and never comes out again). The only thing that keeps the actress from literally chewing the scenery is that, as I said, their horse has apparently been peeing on it. And we are forced to watch her hysterics for at least two minutes longer than any SANE film director would hold the shot. <br /><br />Burr DeBenning ought to beat the crap out of IMM's director and photographer. I remember him from an old Columbo episode where he looked MUCH better than he does here - no one's idea of a leading man, but solid and unobtrusive. But no one could possibly be as unappealing in real life as his director makes him look here. <br /><br />Everyone else comes off a little better except for the old couple (and shut up, I know they were being played for laughs, but I ain't laughing!) but not much. <br /><br />This definitely falls into the 'So Bad You Can't Look Away' category of cinema disasters. Still, I'd watch it again before I'd watch a lot of other 70's and 80's abortions ( \"\"Track of The Moonbeast\"\" and \"\"It Lives By Night\"\" come to mind), and MST's coverage of it is great fun, so if you get a chance, watch the MST version.\"\r\n0\t\"SLASHERS (2 outta 5 stars)<br /><br />Not really a very good movie... but I did like the idea behind it... and the the filmmakers did make it look pretty good considering the tiny budget they had to work with. The movie is ostensibly an \"\"episode\"\" of a live Japanese reality show that sends several contestants into a sealed off \"\"danger zone\"\" and has three costumed creeps sent after to them to kill them. The survivor, if there is one, wins fame and fortune... everyone else just winds up dead. The main drawback to this movie is that the acting is pretty bad. None of the \"\"real\"\" people seem real at all. The actors playing the killers are kind of fun... because they are portraying cheesy and over-the-top caricatures of popular modern horror movie types... and that's exactly how they would be done if this was an actual show. The movie pretends to be done all in one take... there is one cameraman who follows the contestants around the \"\"danger zone\"\" and everything is seen from the point of view of his camera... but the lights keep flickering on and off constantly (to hide the \"\"cuts\"\" from one take to another, I would imagine).\"\r\n1\t'They All Laughed' is a superb Peter Bogdanovich that is finally getting the recognition it deserves, and why? their are many reasons the fact that it's set in new york which truly sets the tone, the fantastic soundtrack, the appealing star turns from Ben Gazzara, and the late John Ritter who is superb. and of course no classic is complete without Audrey Hepburn. the film is a light and breezy romantic comedy that is very much in the vein of screwball comedy from the thirties, film is essentially about the Odyssey detective agency which is run by Gazzara who with his fellow detectives pot smoking and roller skating eccentric Blaine Novak(the films co-producer) and John Ritter, basically the Gazzara falls for a rich tycoon magnate's wife(Hepburn) and Ritter falls for beautiful Dorothy Stratten who sadly murdered infamously after production, 'They All Laughed is essential viewing for Bogdanovich fans.\r\n1\tTo be fair, I expected car chases in this film. There was only really one, but apart from that, 'Freeway' was a great movie which I am glad to own on DVD. The only really big names in the cast are HOMICIDE's Richard Belzer as the radio psychiatrist and B-Movie villain par-excellance Billy Drago as the Revelation-quoting Freeway Killer. But the rest of the cast generally give good performances. I especially liked how Darlanne Fluegel gave her character, Sunny, a bit of guts. She could have been a helpless victim character but she is fully rounded as she seeks out Drago with the help of bounty hunter James Russo.<br /><br />Russo, I'm afraid, comes across as rather wooden, but then again, the character he plays, Frank, isn't very well fleshed out save for a back story Sunny is given by his former commanding officer. The tone of menace is kept up superbly throughout the film and the atmosphere of the lonely LA freeway at night with the killer prowling its' length in his sinister grey sedan is an excellent way of building tension, and the music used to underscore the film is suitably composed. I don't know why there are some people who hate this movie so. Different strokes for different folks, I suppose. But I absolutely enjoyed 'Freeway' and I can strongly recommend it.\r\n0\tWhat happened? What we have here is basically a solid and plausible premise and with a decent and talented cast, but somewhere the movie loses it. Actually, it never really got going. There was a little excitement when we find out that Angie is not really pregnant, then find out that she is after all, but that was it. Steve Martin, who is a very talented person and usually brings a lot to a movie, was dreadful and his entire character was not even close to being important to this movie, other than to make it longer. I really would have liked to see more interactions between the main characters, Kate and Angie, and maybe try not for a pure comedy, which unfortunately it was not, but maybe a drama with comedic elements. I think if the movie did this it could have been very funny since both actresses are quite funny in their own ways and sitting here I can think of numerous scenarios that would have been a riot.\r\n0\t\"Wow, not only is this film a \"\"new lesson in real bad taste,\"\" but also a lesson in \"\"real bad film making.\"\" Don't get me wrong, I appreciated the concept of 'Zombie '90: Extreme Pestilence,' but at the same time one must realize when a movie is terrible. In case you missed out on the storyline, the plot of 'Zombie '90' is about a government plane carrying toxic chemicals that so happens to crash into the wilderness, causing the chemicals to spill, turning locals into hideous looking zombies. The next thing you know, zombies are all over the city eating people alive, while a goofy-looking doctor and a government agent are trying to figure out the disease that's making these people eat one another - hence the name \"\"Extreme Pestilence.\"\" From then on, all we see is zombies having a field day on every local in sight - nothing but extreme and sickening disembowelments and dismemberments accompanied by endless buckets of guts and gore. Since this is a German film, the film had to be dubbed into English and when you're not laughing at the feeding frenzies of the zombies, the voice-overs are quite hilarious and entertaining as well. As user UnratedX mentioned *SPOILER* *SPOILER* *SPOILER*, there is a scene in the film that crosses the line between what's acceptable and not acceptable, hence the scene in which a woman, who is carrying her infant baby, is being wheeled around in her wheelchair by some dude and a horde of zombies come out of nowhere and attack them. One zombie grabs the baby and rips it into pieces, eating its organs as you hear the baby crying. Wow, that is a new lesson in REALLLLLLLLLY bad taste. Atrocious I tell you, atrocious.\"\r\n1\t\"This movie is ridiculous! That's exactly what I like about this piece of \"\"Guilty Pleasure\"\". It is easy to condemn this movie for not including Pat Priest and Butch Patrick, the original Marilyn and Eddie. But look at the year and do the math. Pat Priest and Butch Patrick had long outgrown their parts! Time does that to young stars. Yvonne De Carlo, who re-prised her role as Lili, was pushing the Big 6-0 (even though she still looked good and was still the perfect \"\"Lili\"\").<br /><br />It's a shame that Yvonne De Carlo wasn't given a larger part. Still, it was good to see Fred Gwynne and Al Lewis in the roles that made them so famous! During the 2 seasons that THE MUNSTERS was on prime time, it was the Gwynne/Lewis chemistry that made the series such a success. The rest of the cast were supporting cast members, not to say that they weren't needed. They were! The TV series wouldn't had survived as long as it did without them. Given the choice between Butch Patrick or Happy Derman (the original \"\"Eddie\"\"), the choice was too easy. Yvonne De Carlo was also the better choice over Joan Marshall.<br /><br />Though this movie doesn't measure up to the original TV series, it still measures up nicely and is one of the better \"\"reunuin\"\" TV specials that plagued the boob-tube during the late 1970s/early 1980s.<br /><br />'\"\r\n1\t\"Astaire and Rogers at the height of their popularity. In 1936 Americans thought of the Navy as a place for song and dance. WWII was still a few years away. Fred and Ginger dance up the town.<br /><br />The plot is decent, but who cares... By the way, notice the cameo roles for Betty Grable and a glamorous Lucile Ball.<br /><br />A load of Irving Berlin songs, including the famous \"\"Let's Face the Music and Dance\"\". In that scene, Ginger's heavy swooping dress smacks Fred in the face during one of her spins and almost knocks him unconscious. Fred insisted on keeping the take as the dancing was superb nonetheless.<br /><br />Ginger once commented that she was a better dancer than Fred, since she had to do all the same moves, in step, and backwards...<br /><br />Come to think of it, Fred's voice was nice too. The man was effortless in motion.<br /><br />Here's a movie to cozy up on the couch with a loved-one, kick off the shoes, and enjoy the entertainment.\"\r\n1\t\"Chase has created a true phenomenon with The Sopranos. Unfaltering performances, rock-solid writing, and some great music make up what has become quite possibly the best show ever.<br /><br />All of the cast are strong, but Falco and Gandolfini earned every inch of those Emmy's. Anyone who doubts this need only sample a few episodes; particularly from the first few seasons. James Gandolfini is absolutely fierce, absolutely terrifying, and you still find yourself loving him - mesmerized by him.<br /><br />Many people that I've spoken to about The Sopranos (who haven't seen it yet) will say \"\"I'm just not a fan of mafia movies/shows\"\". Whatever. Run - don't walk - and get it. Those same people usually love \"\"E.R.\"\", but I bet they don't much care for hospitals... It's not about the context.\"\r\n1\tLars Von Trier is never backward in trying out new techniques. Some of them are very original while others are best forgotten.<br /><br />He depicts postwar Germany as a nightmarish train journey. With so many cities lying in ruins, Leo Kessler a young American of German descent feels obliged to help in their restoration. It is not a simple task as he quickly finds out.<br /><br />His uncle finds him a job as a night conductor on the Zentropa Railway Line. His job is to attend to the needs of the passengers. When the shoes are polished a chalk mark is made on the soles. A terrible argument ensues when a passenger's shoes are not chalked despite the fact they have been polished. There are many allusions to the German fanaticism of adherence to such stupid details.<br /><br />The railway journey is like an allegory representing man's procession through life with all its trials and tribulations. In one sequence Leo dashes through the back carriages to discover them filled with half-starved bodies appearing to have just escaped from Auschwitz . These images, horrible as they are, are fleeting as in a dream, each with its own terrible impact yet unconnected.<br /><br />At a station called Urmitz Leo jumps from the train with a parceled bomb. In view of many by-standers he connects the bomb to the underside of a carriage. He returns to his cabin and makes a connection to a time clock. Later he jumps from the train (at high speed) and lies in the cool grass on a river bank. Looking at the stars above he decides that his job is to build and not destroy. Subsequently as he sees the train approaching a giant bridge he runs at breakneck speed to board the train and stop the clock. If you care to analyse the situation it is a completely impossible task. Quite ridiculous in fact. It could only happen in a dream.<br /><br />It's strange how one remembers little details such as a row of cups hanging on hooks and rattling away with the swaying of the train.<br /><br />Despite the fact that this film is widely acclaimed, I prefer Lars Von Trier's later films (Breaking the Waves and The Idiots). The bomb scene described above really put me off. Perhaps I'm a realist.\r\n0\t\"The world is facing imminent destruction and a suicide mission is sent to the Sun to avert catastrophe by firing a bomb into its fiery heart: yes, it's Solar Crisis, aka Crisis 2050, which burned up a huge chunk of change that's never apparent on screen back in 1990 and returned barely enough to buy a Happy Meal for each of the cast in Japan before going straight to video (remember them?) in a re-edited version credited to one Alan Smithee. The plot hook's pretty much the same as Sunshine - suicide mission to the Sun, saboteur on board, logic cast adrift - except that this time they're not trying to reignite the sun but to prematurely detonate a solar flare before it can reach Earth. With a talking bomb. Voiced by Paul Williams. Who wants to be promoted so the crew will take him more seriously Given that the cast also includes Jack Palance at his most dementedly OTT, Charlton Heston at his most rigid, top-liner Tim Matheson at his most anonymous, the original Hills Have Eyes' unforgettable Michael Berryman (you may not remember the name, but you DO remember that face) and Peter Boyle as the industrialist out to sabotage the mission because, er, if it succeeds the world will be saved but his share price will go down, you'd expect if not a laugh-a-minute at least a laugh every reel. No joy. This is the worst kind of bad movie: a boring one. The fate of the world may be hanging in the balance but the whole film is shot with a complete lack of urgency or momentum at the same unvarying deadly slow pace. There's low-key and there's walking through it, but here the cast don't even do that. Instead, they just stand still looking at screens in near darkness for most of the time. You keep on hoping for Paul Williams' talking bomb to suffer an existential crisis, but instead the film just... stands there, doing next to nothing. Literally. This is one of the most inert movies ever made  so inert that if Clive Owen had been cast, he'd almost have looked lively by comparison. Even a poorly explained suicidal repair attempt fails to raise a fritter of interest since it mostly involves, yep, the cast just standing still looking at screens in near darkness. Even when the bomb prematurely goes into countdown before being launched they deal with the new crisis by standing still looking at screens in near darkness as if they had all the time in the world. Merchant-Ivory films have better action scenes.<br /><br />Things aren't much livelier down on Earth where the movie spends most of it's running time with Matheson's son/Chuck's grandson Corin Nemec trying to hitch a ride to the spaceport across an arid landscape with Palance's insane desert artist \"\"looking for that note out there while the chicks still dig me\"\" while waylaid by rejects from a Mad Max ripoff and evil corporate suits who track him down so they can release him on a nice beach. Just don't expect logic, if you haven't already guessed that much. Best moment? A ditzy girl in a bar describing Jack Palance as \"\"An old guy with white hair and a face like rotting leather,\"\" though Chucky Baby taking out the villain's aircraft with a bazooka fired from the hip from an office window or beating up a barfly who likes his beret are welcome morsels of camp in a film that for 99% of it's running time offers a whole lot of nuttin'. Richard C. Sarafian's slightly longer original cut that played in Japan offers an additional six minutes but cries out to be cut down to a more manageable 17 minutes: the director of Vanishing Point must have thanked his lucky stars when the re-edit gave him an excuse to take his name off the film. A film so bad it's not good, and painfully unfunny with it\"\r\n0\t\"Yeah, I \"\"get\"\" Pasolini and his milieu, but at the same time, I feel his \"\"Decameron\"\" is largely overrated, and more than a little disturbing. Overrated because the supposed \"\"realism\"\" he introduces (milling crowds, crumbling architecture, etc.) are mooted by the absurd and downright goofy way that the characters behave. In the pursuit of realism, Pasolini utilized many non-actors, but their deer-in-the-headlights stares and painfully awkward line delivery gives the whole a terribly off-kilter and inconsistent feel. And frankly -- many of the toothless, misshapenly-featured people are painful to look at.<br /><br />And Pasolini's \"\"Decameron\"\" is disturbing (to me at least) because of the casual and prevalent homosexual content. Not because I'm prudish or homophobic (I'm neither) but because the emphasis that Pasolini places upon homoerotic images and situations is contrary to the neo-realism he otherwise espouses, so it comes off as gratuitous and forced. One can almost hear him say \"\"Ooh--I've got to stick a cute, naked boy in this scene!\"\" At times it seems that Pasolini is trying to play up the homosexual angle to thumb his nose at critics, and at other times because he enjoys that aspect himself, regardless of what his audience might prefer.<br /><br />The disjointedness of the 9 or 10 different stories in Pasolini's \"\"Decameron\"\" struck me as being a failing of Pasolini as a storyteller, rather than being an aspect of neo-realism. He seems to get bored with each story and so he wraps them up rather unconvincingly and with little conviction. Even the Pasolini's final line of dialog in the film, which some people seem to find pithy (\"\"Why create a work of art when dreaming about it is so much sweeter?\"\") -- to me, it just makes me wonder why Pasolini would bother making a film if he felt this way? In my opinion, a far better-crafted film (and with MORE homosexual content) is Fellini's \"\"Satyricon\"\". It is also full of bizarre-looking people and absurd situations, but it succeeds because of its pacing, direction and strong storytelling whereas \"\"Decameron\"\" fails by those same elements.\"\r\n0\tI didn't know what to expect from the film. Well, now I know. This was a truly awful film. The screenplay, directing and acting were equally bad. The story was silly and stupid. The director could have made a smart and thought provoking film, but he didn't. I squirmed in my seat for the last half of the movie because it was so bad. Where was the focus to the film? Where was anything in this film? Christians should boycott this film instead of promoting it. It was shabbily done and a waste of my money. Do not see this film.\r\n1\t\"Across the country and especially in the political landscape, people with any kind of political ambition, should take time out to see this film. The movie is called \"\" City Hall \"\" and with little imagination, its synopsis can take place anywhere in America. It just so happens to open in New York. Here we have the story of a popular politician named Mayor John Pappas (Al Pacino) with enough savvy to run a major metropolitan city with very little effort. His right-hand man is none other than Deputy Mayor Kevin Calhoun (John Cusack) an equally bright individual who's ambitions are tied to his mentor and both seemed destined for higher office. Everything points in that direction, until a police shooting ignites an investigation spearheaded by Marybeth Cogan (Bridget Fonda) who believes the guilt points towards city hall and the mayor. A six year old boy and a police officer's death are blamed on a career criminal who's questionable freedom leads to an apparent cover-up by political pay-offs and city corruption involving union leaders like Danny Aiello played by Frank Anselmo, corrupt judicial officials like Judge Walter Stern. (Martin Landau) and mafia bosses like Paul Zapatti (Anthony Franciosa) who are deeply involved. Also implicated, are party officials like Larry Schwartz (Richard Schiff) who works for the probation office of New York. But it is the bond between the mayor and his deputy which is taken to task by the accidental shooting. A great vehicle for Cusack and a sure bet nominee to become a classic. ****\"\r\n0\tWatch the Original with the same title from 1944! This made for TV movie, is just god-awful! Although it does use (as far as I can tell) almost the same dialog, it just doesn't work! Is it the acting, the poor directing? OK so it's made for TV, but why watch a bad copy, when you can get your hands on the superb original? Especially as you'll be spoiled to the plot and won't enjoy the original as much, as if you've watched it first! <br /><br />There are a few things that are different from the original (it's shorter for once), but all are for the worse! The actors playing the parts here, just don't fit the bill! You just don't believe them and who could top Edward G. Robinsons performance from the original? If you want, only watch it after you've seen the original and even then you'll be very brave, if you watch it through! It's almost sacrilege!\r\n0\t\"96 minutes of this is cruel..and I love the old Munster's. Yes, the plot is thing; yes the lines are trite; but whoever was at the helm of this was not a fan. There is so much 'intrigue' (and I use that word with great pause) that I wonder if it's an old Starsky & Hutch episode. I lost count of the number of times I noticed that makeup had missed a spot near the collar. Refusing to acknowledge that any time had passed since the mid-60's (ludicrous) the producers simply replace Marilyn & Eddie with younger actors. Why not let them grow and age? The addition of an Addam's Family style reunion does not add to the flavor of the Halloween Party.<br /><br />Grandpa & Herman fly to Transylvania and back in a few hours (preposterous.) Sid Ceaser is the most, yes the most unbelievable character (I am including the bad robots) since he babbles an unwild combination of gibberish & yiddish but claims to be an ancient Arabic ruler. And yes, it looks like the laugh track is missing. In fact, there are several spots where there is dead air, as if the laugh track was to be inserted later. The actors seem to wait on the faux audience. It's not laughable; it's sad. Oh, and the best part! Yvonne DeCarlo has a line that just goes to show you how out of touch the writers and producers were. Marilyn says something like: \"\"Where could Uncle Herman and Grandpa be? They could have been in an accident. They could have been hit by a car...or a train!\"\" Lily says responds with something like: \"\"You're Uncle Herman will be here if he has to drag himself off the train track.\"\" What's amazing about this is: Yvonne DeCarlo's husband was a stuntman in the early 60's and lost a leg and was nearly killed in a train stunt. He never recovered and this financially devastated her family. (check out Biography's fantastic review of her life and career) This line could have been easily changed to be more sensitive to her.<br /><br />If you are a real fan of the Munster's then you'll have to RENT this mess. It illustrates how some things are better left alone. Even with the (nearly) original cast, this is almost as bad as the attempted remake of the show a few years ago.\"\r\n0\t\"I would just like it to be known, that I do not often rate movies below a 5. I was originally very excited to see this movie. Its numerous trailer bumps on TV for several months made me REAALLY want to see this movie. So, the other night when I saw that it was available on FearNet on Demand, I got some popcorn and sat down to watch the film.<br /><br />The storyline seemed intriguing enough - some dude is butchering unsuspecting people on the subway. There's a photographer obsessed with the missing people. Where are they going? What's happening to them? One day, the photographer sees a connection between some photos he has taken, and becomes obsessed with the butcher, following him around, yada yada. The film had a way of sucking you in, even though the plot was highly predictable. \"\"Oh no, it's dark, look out behind you\"\" I say, quite bored with the cheap thrills.<br /><br />The plot, even though predictable, was intriguing...that is, until the end. \"\"This was good until the end.... Then it just got silly\"\", says Jack_skellington_freke on the message boards. And I fully agree. And here come the spoilers...<br /><br />See, I was hoping it was some mad killer, some psychotic person obsessed with cannibalism. No. It was some secret society keeping creatures alive for centuries. Woo. How original. How unrealistic. How dull.<br /><br />3/10. Come on Lionsgate. You've had amazing films, but this one sunk.\"\r\n1\t\"\"\"Purple Rain\"\" has never been a critic's darling but it is a cult classic - and deserves to be. If you are a Prince fan this is for you.<br /><br />The main plot is Prince seeing his abusive parents in himself and him falling in love with a girl. Believe it or not this movie isn't just singing and dancing. There are many intense scenes and it is heartwarming. Sometimes it comes off has funny but when it works it really works. Very hit and miss.<br /><br />No one can really act in the film. Everyone is from one of Prince's side acts like \"\"The Time\"\" and \"\"Vanity 6\"\". Still, it adds charm to the movie. When ever Prince is on screen he lights it up and it fun to see him at his commercial peak. <br /><br />In conclusion, go and see this if you love Prince like me. If you aren't a fan it'll make you one.\"\r\n0\t\"Sorry - this movie is just a cheap TV-Production. I saw very much promotion Material and expect a professionell Movie like \"\"Stormriders\"\" - what i was presented was a Low-Budget-Movie like \"\"XENA\"\" or \"\"Hercules\"\" on TV. No Atmosphere, very boring, more then worse Fight-Scenes. Some good ideas - not more. I hope i will get the Chance to make a movie like this and then i show how to do such a movie!!!<br /><br />My ASIAN-Tips: \"\"MUSA - THE WARRIOR\"\", \"\"STORMRIDERS\"\", \"\"SHAOLIN SOCCER\"\", \"\"BATTLE ROYAL\"\", \"\"VERSUS\"\", etc.<br /><br />Sorry for my bad English!\"\r\n0\t\"\"\"Pandemonium\"\" is a horror movie spoof that comes off more stupid than funny. Believe me when I tell you, I love comedies. Especially comedy spoofs. \"\"Airplane\"\", \"\"The Naked Gun\"\" trilogy, \"\"Blazing Saddles\"\", \"\"High Anxiety\"\", and \"\"Spaceballs\"\" are some of my favorite comedies that spoof a particular genre. \"\"Pandemonium\"\" is not up there with those films. Most of the scenes in this movie had me sitting there in stunned silence because the movie wasn't all that funny. There are a few laughs in the film, but when you watch a comedy, you expect to laugh a lot more than a few times and that's all this film has going for it. Geez, \"\"Scream\"\" had more laughs than this film and that was more of a horror film. How bizarre is that?<br /><br />*1/2 (out of four)\"\r\n0\tBeyond a shadow of a doubt Mysterious Planet is one of the worst movies ever made, yet retains an affection in my heart because the poverty of its special effects and astoundingly awful sound track in the first 15 minutes (and to be honest that's all you need to see) combine to create something that is hilariously side-splitting.<br /><br />The opening scene in 'space' is just about as unfathomable as cinematography gets, as washing-up liquid bottles whiz past your eyes to muffled dialogue. Before you've had time to work out whether it's you who's gone mad, the credits roll and the action struggles to life.<br /><br />And aside from the double-headed plasticine giant snail that terrorises our heroes, you also get the added double bonus of having both the original actors voices AND the dubbed voices at the same time. Pure genius.<br /><br />The sad thing for fans of this kind of fare is that I've only ever seen one copy, so the chances of ever seeing it yourself is highly unlikely. Perhaps I own the only copy in existence.<br /><br />\r\n0\t\"Absolutely the most boring movie I have ever spent my money on.This was a wrong choice for all these great stars to waste their reputations on. Boring! boring! boring! Each character was portrayed in a less than inspirational way. No acting talent shown -just reading a part. Alec can play realistic characters normally, Gwynyth made herself look ugly for an unrewarding part, Annette needs advise on how to pick the movies she chooses to play in as do all these big stars who have left me disappointed at the way they have all allowed their talents to be smothered in a feature that leaves much to be desired in entertainment. \"\"Running with scissors\"\" leads the public to anticipate great acting in a film that suggests experiencing tension and deep emotion. There was not one moment when the cast was able to portray any interpretation of this onto the screen. Maybe it was the director's fault----whatever.\"\r\n1\t\"In this film we have the fabulous opportunity to see what happened to Timon and Pumbaa in the film when they are not shown - which is a lot! This film even goes back to before Simba and (presumbably) just after the birth of Kiara. <br /><br />Quite true to the first film, \"\"Lion King 1/2 (or Lion King 3 in other places)\"\" is a funny, entertaining, exciting and surprising film (or sequel if that's what you want to call it). A bundle of surprises and hilarity await for you!<br /><br />While Timon and Pumbaa are watching a film at the cinema (with a remote control), Timon and Pumbaa have an argument of what point of \"\"The Lion King\"\" they are going to start watching, as Timon wants to go to the part when he and Pumbaa come in and Pumbaa wants to go back to the beginning. They have a very fair compromise of watching the film of their own story, which is what awaits... It starts with Timon's first home...<br /><br />For anyone with a good sense of humour who liked the first films of just about any age, enjoy \"\"Lion King 1/2\"\"! :-)\"\r\n0\t\"\"\"Her Cardboard Lover\"\" is Norma Shearer's last movie. She quit the movies and, I think, joined the Board of Directors at MGM. That was a good move on her part. \"\"Her Cardboard Lover\"\" was talky and boring in parts. It was obvious there were only a handful of actors with speaking parts so they had a lot of dialogue to speak to keep this turkey afloat. <br /><br />The story was a good idea about a wealthy woman (Norma Shearer) hiring a man (Robert Taylor) to make her playboy fiancee (George Sanders)jealous. I am surprised that the director, George Cukor, did not cut many of the talky scenes between Ms. Shearer and Mr. Taylor. Mr. Cukor served Ms. Shearer well in \"\"The Women\"\" but not in this movie. <br /><br />The best performance in the movie was given by Robert Taylor. During Mr. Taylor's career, he was given his best comedy roles in this movie and \"\"When Ladies Meet\"\" in 1941. In 1942, he gave his best comedy performance in \"\"Her Cardboard Lover\"\" and, up to then, his best dramatic performance in \"\"Johnny Eager.\"\" He had a busy year. I think of all the actors at MGM, Mr. Taylor worked with all the major and minor actresses on the lot. Also, MGM gave Mr. Taylor all types of movies to make - most of them were successful. That is why MGM kept him for 25 years. <br /><br />Mr. George Sanders was very good as a socialite heel. He played a similar role eight years later in \"\"All About Eve\"\" for which he won an Oscar for a supporting role. As for Ms. Shearer, this was one of her worst performances, she was not funny and too dramatic for this comedy. It is strange that she made a great comedy in 1939, \"\"The Women\"\", and gave her best performance. It was obvious that she was too old looking for her younger leading men in \"\"Her Cardboard Lover.\"\" Also, it didn't help that some of her clothes were awful.<br /><br />Too bad she and Mr. Taylor did not make another dramatic movie like their last movie together, the superb \"\"Escape\"\". The same comments about this movie can be said of another movie, \"\"Personal Property\"\" that Mr. Taylor made in 1937 with Jean Harlow. It was too talky, boring, and the actress looked old. Ms. Harlow looked ill throughout the movie and nobody in Hollywood noticed to tell her to see a doctor, so in 1937, she died at age 26. What a waste! She was becoming a good actress and getting better roles.\"\r\n1\t\"After enjoying this show for years, I use to dream of being able to see them all again and share them with my grandchildren. I am so happy to pay a small amount for the memories that I have found recorded on DVD. Florida was a caring mother with a loving hard working husband, one spoiled beautiful daughter and two sons as different as day and night. Michael, the baby son is a freedom walker and JJ is a clown. I know many Afro-Americans disliked this show, but I know many can relate and should have accepted it as it was. My heart was sad when I learned that Ester Rolle had passed. Tyler Perry is now the leading writer actor of today and I support his work, but not as much since he made such cruel mocking of Rolle in one of his plays. No one should have to hear ugly things about physical appearance. The show started getting less interesting when Daddy James died. It picked up a bit when Florida remarried, but slumped when she took an absence from the show. In all, the show was great and again I am pleased to own copies of part of my past. I do try to keep up with the work of the former stars of Good Times, and I must say, they are one group who has not been wiped up and down with rumors. I think children of today will enjoy this show and I have no problem sitting and watching with children. Congrats to the writer, crew, and stars for years of renewed memories of a time that I can once again enjoy without having to skip scenes.<br /><br />OK so I watch the shows over and over. Lately I have noticed thing that has made me rethink the series, but not dislike them. I think Florida was a bit harsh when it came to money that the children made. Not that the children did not need supervision, but it was done in a way that makes Florida's mothering different. The scenes where Florida had to speak about how other people were not very good looking bothers me now. When James was alive, the show made a big thing out of James wanting his own Fix-it shop, but never lived to see his family out of the projects, but Florida marries someone who owns a fix-it shop. A bit of a slap in the face to an actor who should have ended his time on Good Times showing that he accomplished all he strove for. Lastly, As I watch the shows, I see the series going in to overtime and being renamed \"\"JJ\"\". To be truthful, after James left everything mostly centered around JJ. Not a bad thing, just a noticeable thing. I would not trade my DVD's for any amount of money, but time, maturity and experience began to guide your eyes after a while.\"\r\n1\tThis Alec Guinness starrer is a very good fun political satire of corporate industry, and a light eccentric character study as well.<br /><br />The pacing is a bit slow for a comedy, and none of it is really rolling-on-the-floor type funny, except perhaps the sound effects for the experiments. But it does have its amusing moments, and it is very deft in its execution. The big explosions segment is probably the most farcical element.<br /><br />The union procedures are quite droll, very reminiscent of I'M ALL RIGHT JACK; especially the feminine socialist with a light romantic crush on Guinness' character. The political machinations actually carry the story. Ernest Thesigner is very notable as a heavy.<br /><br />I don't think this one works quite as well as THE LADYKILLERS, or KIND HEARTS AND CORONETS; but even light Ealing comedy is better than nothing.\r\n0\t\"No ,I'm not kidding. If they ever propose a movie idea, they should be kicked out of the studio. I'm serious. Their movies are exactly the same in every one, and they only consist of traveling to foreign locations, having a problem which they easily resolve, hoping to be popular, and getting new boyfriends. Think about it. If you have ever seen a movie starring them with a different plot, contact me and tell me its name. These \"\"movies\"\" are poor excuses to be on TV and go to other countries. There is a reason that the movies never go to theaters. I'm sure that when they were really young and made some O.K. movies, some studio boss bought all their rights for 15 years, or something, so that now that they're, what, 17, they can make movies in other countries whenever they want using the studio's money. Let me advise you, STAY AWAY FROM MARY-KATE AND ASHLEY! IT'S FOR YOUR OWN GOOD!\"\r\n0\tWe laughed our heads off. This script is so incredible you either zap to CNN or go to sleep.<br /><br />My dad was a sea captain for 30 years, he could not believe his eyes when he saw the movie.<br /><br />During his experience as an officer he once claimed command over the ship, the captain drunk 3 bottles of whiskey/daily and (sorry) s**t on his desk. Of course this was not on a nuclear mission.<br /><br />For instance, the fire in the kitchen, fire is the most important thing on any ship, nuclear or not. To give a drill at that time is just Hollywood script. When a captain is put under arrest, he IS under arrest, you take all his keys and open the safe where the guns are kept. This is stored within minutes in a well guarded room. He CANNOT escape, it's just like in prison.<br /><br />Funny thing is, my dad also had a dog on board, however, we see how Hackman let him pee in the control room. This is not done, ever. My dad cleaned all the mess the dog made wherever he was.<br /><br />Hackman and Washington make the three stars this movie is credited for, all the rest is bulls**t.<br /><br />When we do know that 23 people were still alive on the Koersk, this film gets an extra dimension.<br /><br />If you want to see a real thriller about a submarine rent: Thas Boat.<br /><br />\r\n0\tWhen evaluating documentaries that focus a relatively small group of Ugly ultra right wing and conservative groups like this in the USA you must consider the following. The United States of America with its population of 270 million and its complex history as an aspiring democracy and its hopes and desires to uphold Human Rights that it has its failings and downside. It is of course expected that extreme right wing groups and ultra conservative groups exist in sizable numbers however relative to the size of its population they are very small and isolated . On a per capita basis Europe, Britain and even Australia have similar right wing groups in fact on a per-capta basis the actual size of Neo-Nazi groups in Australia is actually higher than in the United States of America. It is for the above reasons that it is unjustifiable to demean and vilify the American people and their level of debate in Educated American Society by very fraudulently and deceptively presenting this ultra-right wing bunch of psychopaths as being representative of American Society. By doing so Greenstreet, deliberately chose small and isolated groups at opposite ends of the spectrum to construct an image of America that is an outrageous and deliberate sensationalist lie. This film is clearly designed to inflame and pander to the views of people who harbor this subconscious and morbid hate the American people and way of life under the guise of spurist fashionable and cliché idealist left wing ideology. This film was made for profit not for furthering the truth about American Society and the Human condition. Greenstreet can make documentaries that focus on ultra right wing conspiracies, the Military Industrial complex but fail miserably to present an intelligent and balanced factual debate let alone alternative solutions to the failings of a vibrant democracy. Movie Show is exposed as Anti American by its support for this trash. SENSATIONALISM at its worst anti -USA garbage shameful.\r\n1\t\"Canto 1: How Kriemhild Mourned Over Siegfried and How King Attila Woos her Through his Ambassador Rüdiger von Bechlarn: Kriemhild (Margarete Schön) insists on having the head of the killer of her beloved husband, Hagen Tronje (Hans Adalbert Schlettow), but her brother, King Gunther (Theodor Loos), refuses her request. When King Attila of the Huns woos Kriemhild through his ambassador Rüdiger von Bechlar, she makes him promise through oath in the name of his king that no man would ever offend her. Hagen Tronje hides the Nibelungen treasure in the bottom of a lake.<br /><br />Canto 2: How Kriemhild Takes Leave from her Homeland and How She Was Received by King Attila: Kriemhild brings some earth from where Siegfried died, and travels to the court of the Huns, where she is welcomed by Attila himself, who also promises through oath to defend her.<br /><br />Canto 3: How King Attila Besieged Rome and How Kriemhild Summoned her Brothers: When Kriemhild delivers a baby boy, Attila returns to his realm and asks Kriemhild what she would like most to please her. She asks him to invite her brothers to come to his kingdom.<br /><br />Canto 4: How Kriemhild Receives her Brothers: Kriemhild insists on having the head of Hagen Tronje, but her brothers keep loyalty to their friend and again do not accept her request.<br /><br />Canto 5: How the Huns Celebrated the Summer Solstice With the Nibelungen: Kriemhild asks Attila to kill Hagen Tronje, but he refuses since in accordance with the laws of the desert, a guest is considered sacred. Kriemhild offers gold to the Hums for the head of Hagen Tronje. There is a fight, and Hagen Tronje kills Attila's son.<br /><br />Canto 6: The Nibelungen's Distress: The Huns lose the battle against the Nibelungen, but keep them under siege inside Attila's castle. Kriemhild promises to spare their lives provided they deliver Hagen Tronje, but her brother Gunther tells that German people are loyal with their friends.<br /><br />Canto 7: The Nibelungen's End: After the death of Rüdiger von Bechlarn, Giselher and Gernot, Hagen Tronje and Guhther are finally captured. Kriemhild kills Hagen Tronje, ending her revenge with the destruction of the Nibelungen.<br /><br />The conclusion of the poetic saga of Siegfried through \"\"Kriemhild's Revenge\"\" is also told through seven dramatic cantos. The nature of the first part is a magnificent tale of fantasy, adventure, romance and betrayal; the second part is a dramatic story of hate, revenge and loyalty. The solid screenplay with a perfect development of the characters, the excellent performances of the cast and the awesome direction of Fritz Lang produced another epic ahead of time. Margarete Schön is impressive with a total different woman, obsessed and inflexible in her revenge wish. The costumes that Kriemhild wears are also very impressive, and her acting is based on her face and look. I was a little disappointed with the reaction of Attila after the death of his only son, since I found it too passive. My vote is eight.<br /><br />Title (Brazil): \"\"Os Nibelungos  Parte II: A Vingança de Kriemshild\"\" (\"\"The Nibelungen Part II: Kriemhild's Revenge\"\")\"\r\n0\t\"I don't know why, but when I am asked about bad movies I have seen, I often think of \"\"The Air Up There\"\". I know that technically, lots of movies are horrible compared to it, and I have seen worse acting. it's just that it's so bland, so predictable. In a word: mediocre.\"\r\n1\t\"Certain DVD's possess me until I just have to go out and buy it. This was one of those movies. Like many on here, I remember seeing it as a child and loved it. I never knew there were scenes and musical numbers that were cut, so I was intrigued to see what they might be. I will agree that the \"\"Portabellow Road\"\" sequence is now a tad long (as is the soccer game) but other than that, I found no qualms with the remaining scenes that were put back in their respectful place. Perhaps Disney should have had the original version (which IS the restored version) on one side with the restored version on the flip side, then people could choose what they wanted to view. All in all, it's still an entertaining movie that still manages to recapture some of my childhood memories.\"\r\n1\t\"This, the finest achievement from Georg Wilhelm Pabst's Social Realism period is based upon a tragedy in early 1906 that claimed the lives of nearly 1100 French miners as a coal dust explosion deep in mines at Courrieres in northern France took place after a fire had smouldered for three weeks, eventually releasing deadly pit gas that brought about the fatalities. Estimable designer Erno Metzner creates stark sets that simulate the tragedy, providing a perception of reality, augmented by matchless sound editing, with the only music being produced by integral orchestras during the beginning and ending portions of a work for which aural effects possess equal importance with the eminent director's fascinating visual compositions. Pabst's manner of \"\"invisible editing\"\" that segues action from shot to shot through movements of players proves to be smoothly integrated within this landmark film that also showcases sublime cinematography utilizing cameras mounted upon vehicles, enabling the director to shift amid scenes without having a necessity of cutting. Although the work's cardinal theme relates to Socialist dogma, the unforgettable power of this film is held in its details, born of Pabst's nonpareil skill at weaving numerous plot lines into a cinema tapestry that stirs one to admiration for German rescue squads of whom their Fatherland is greatly proud while no less despairing of disastrous losses to the families of French victims; certainly, a seminal triumph fully as stimulating today to a cineaste as it was at the time of its first release.\"\r\n0\t\"I'll be honest- the reason I rented this movie was because I am a huge fan of Kyle Chandler's (most notably from Early Edition). Since he usually plays the good guy, I wanted to see him as in a different role (out of curiosity). The plot itself also drew me in; a wanna-be hitman (Tony Greco- a.k.a. Mr. Chandler) must kill a person at random before he is trusted with the life- or, rather, the death- of a witness who will testify against someone in \"\"the family\"\". The movies was nothing like I expected. It was sick, I hated the end (if you saw it, you'd know why), and there were so many unnecessary parts. Basically- it was filthy, and made little sense. Yes, it was a mob movie, and yes the guns do go BOOM. But there's more to a movie than that. This film acted as if it didn't have the time to go into detail- just deal with it and understand it. The acting really made up for it- James Belushi was pretty amusing as \"\"The Rose\"\". Sheryl Lee made Angel seem as believable as she could get. She surprised me the most. And Kyle Chandler was equally convincing as an anxious newcomer to \"\"the family\"\". If only the script did justice to the actors.\"\r\n1\tno movie with dennis hopper, gary busey, erika eleniak, tom berenger, dean stockwell, marilu henner deserves a rating under 5 on here. This is a poor mans version of movies like 16 blocks or the timeless Midnight run except the prisoner being transported here is the very easy on the eye Ms.Eleniak. Tom Berenger plays another gruff, maverick military type well and William Mcnamara plays his rookie-about to be discharged foil well. The plot on the face of it is absurd because I lost count of the times Eleniak should have and could have escaped but this is an entertaining feel-good movie and there are good cameos from all of the above actors that keep the movie rolling. This isn't really a family movie as there is some swearing and a rare nude scene with eleniak but this is a lot better than some of the other guff that came out around this time.\r\n1\t\"At the height of the 'Celebrity Big Brother' racism row in 2007 ( involving Shilpa Shetty and the late Jade Goody ), I condemned on an internet forum those 'C.B.B.' fans who praised the show, after years of bashing 'racist' '70's sitcoms such as 'Curry & Chips' & 'Love Thy Neighbour'. I thought they were being hypocritical, and said so. 'It Ain't Half Hot Mum' was then thrown into the argument, with some pointing out it had starred an English actor blacked-up. Well, yes, but Michael Bates had lived in India as a boy, and spoke Urdu fluently. The show's detractors overlook the reality he brought to his performance as bearer 'Rangi Ram'. The noted Indian character actor, Renu Setna, said in a 1995 documentary 'Perry & Croft: The Sitcoms' that he was upset when he heard Bates had landed the role, but added: \"\"No Indian actor could have played that role as well as Bates.\"\". Indeed.<br /><br />'Mum' was Perry and Croft's companion show to 'Dad's Army'; also set in wartime, the sedate English town of Walmington-On-Sea had been replaced by the hot, steamy jungles of India, in particularly a place called Deolali, where an army concert party puts on shows for the troops, among them Bombadier Solomons ( George Layton, his first sitcom role since 'Doctor In Charge' ), camp Gunner 'Gloria' Beaumont ( Melvyn Hayes ), diminutive Gunner 'Lofty' Sugden, 'Lah de-dah' Gunner Graham ( John Clegg ), and Gunner Parkins ( the late Christopher Mitchell ). Presiding over this gang of misfits was the bellicose Sergeant-Major Williams ( the brilliant Windsor Davies ), who regarded them all as 'poofs'. His frustration at not being able to lead his men up the jungle to engage the enemy in combat made him bitter and bullying ( though he was nice to Parkins, whom he thought was his illegitimate son! ). Then there was ever-so English Colonel Reynolds ( Donald Hewlett ) and dimwitted Captain Ashwood ( Michael Knowles ). Rangi was like a wise old sage, beginning each show by talking to the camera and closing them by quoting obscure Hindu proverbs. He loved being bearer so much he came to regard himself as practically British. His friends were the tea-making Char Wallah ( the late Dino Shafeek, who went on to 'Mind Your Language' ) and the rope pulling Punka Wallah ( Babar Bhatti ). So real Indians featured in the show - another point its detractors ignore. Shafeek also provided what was described on the credits as 'vocal interruptions' ( similar to the '40's songs used as incidental music on 'Dad's Army' ). Each edition closed with him warbling 'Land Of Hope & Glory' only to be silenced by a 'Shut Up!' from Williams. The excellent opening theme was penned by Jimmy Perry and Derek Taverner.<br /><br />Though never quite equalling 'Dad's Army' in the public's affections, 'Mum' nevertheless was popular enough to run for a total of eight seasons. In 1975, Davies and Estelle topped the charts with a cover version of that old chestnut 'Whispering Grass'. They then recorded an entire album of old chestnuts, entitled ( what else? ) 'Sing Lofty!'.<br /><br />The show hit crisis point three years later when Bates died of cancer. Rather than recast the role of 'Rangi', the writers just let him be quietly forgotten. When George Layton left, the character of 'Gloria' took his place as 'Bombadier', providing another source of comedy.<br /><br />The last edition in 1981 saw the soldiers leave India by boat for Blighty, the Char Wallah watching them go with great sadness ( as did viewers ).<br /><br />Repeats have been few and far between ( mainly on U.K. Gold ) all because of its so-called 'dodgy' reputation. This is strange. For one thing, the show was not specifically about racism. If a white man blacked-up is so wrong, why does David Lean's 1984 film 'A Passage to India' still get shown on television? ( it featured Alec Guinness as an Indian, and won two Oscars! ). It was derived from Jimmy Perry's own experiences. Some characters were based on real people ( the Sergeant-Major really did refer to his men as 'poofs' ). I take the view that if you are going to put history on television, get it right. Sanitizing the past, no matter how unsavoury it might seem to modern audiences, is fundamentally dishonest. 'Mum' was both funny and truthful, and viewers saw this. Thank heavens for D.V.D.'s I say. Time to stop this review. As Williams would say: \"\"I'll have no gossiping in this jungle!\"\"\"\r\n1\t\"I finally got my wish to see this one in a cinema. I'd seen Fritz Lang's film on video some years ago. I'd been hoping that ideal screening conditions would work their magic.<br /><br />Conditions were ideal at Cinematheque Ontario. Pristine full-length print. Intertitles in the original Gothic-script German with simultaneous English translation, accurate without being too literal. Live piano accompaniment. Ideal.<br /><br />The film's magic sputtered for a little while but ultimately failed to catch, at least for me.<br /><br />This film bears no real relation to Wagner's Ring cycle as I already knew but some may not. Wagner had adapted the 13th c. Niebelungenlied to his own purposes. Part I of Fritz Lang's epic -- \"\"Siegfried\"\" -- has much that will be familiar to listeners of Wagner however.<br /><br />\"\"Kriemhild's Revenge\"\" is the story of Siegfried's wife Kriemhild, her marriage to King Etzel (Attila) the Hun, and her desire for revenge against Hagen and Gunther, the rechristened Nibelungs, for the murder of Siegfried. The spectacular conflagration in this film presumably evolved and expanded in the Wagnerian mythos into his Götterdämmerung, his Twilight of the Gods, and the end of Valhalla. This film remains earthbound.<br /><br />Most of the film is spectacular. The massive sets rival those of \"\"Cabiria\"\" (1914), which inspired Griffith's \"\"Intolerance\"\" (1916). Their decoration sets a new benchmark in barbaric splendour. There's a huge cast of scarred, mangy Huns and Art Deco Burgundians. And battles. Battles that never seem to end in fact.<br /><br />Kriemhild is very successful in her plan of revenge. She manages to destroy all around her. Her loyalty to her martyred Siegfried seems not to stem so much from love, or devotion, but from something closer to psychosis. Lady Macbeth cried out, \"\"Unsex me here.\"\" She knew she was emotionally unprepared for what she needed to do. But Kriemhild displays no normal human emotions, and certainly nothing one equates with the feminine principle. She is already \"\"top full of direst cruelty\"\", to borrow Shakespeare's phrase, from the outset. Margarethe Schön and her director convey this with a glower. I don't want to exaggerate, but that glower is virtually the only expression ever to \"\"animate\"\" Kriemhild's face. It's the ultimate in one-note performances. It's clearly intentional however, not simply a case of poor acting.<br /><br />What we have then on offer is a one-dimensional sketch of an avenging Fury. Some might see Kriemhild as an empowered heroine. I just see the film as misogynistic.\"\r\n0\t\"I don't want to go off on a rant here, but.....this is the worst \"\"film\"\" I've ever seen. Worse than The Avengers. Incompetent directing, disjointed writing, and awful acting are the only consistent elements throughout. Shot on very cheap video, it looks like a high school project, but without the emotion. The lighting frequently looks like a single Sun-Gun. The sound is slightly better than a single mic on the camera, but everything else about this thing is just awful. The plot heads off in strange directions with no foundation or later resolution, the techie elements are patently absurd, and the editing looks worse than a rough cut. It's not even bad enough to be funny. It's just bad. BTW, the packaging is intentionally misleading.<br /><br />Lion's Gate owes me $4.00.\"\r\n1\t\"It's true that you always remember what you were doing at a point when disaster or tragedy strikes. And none more so that September 11, 2001, a date which changed the entire global landscape in its fight against terrorism.<br /><br />No, this documentary didn't set out to be dwelling on the events leading to 9/11. Rather, the filmmakers, brothers Gédéon and Jules Naudet, set out to do a documentary on the trials and tribulations of a rookie New York firefighter. They had gone to the academy and done some shoots of training, and had handpicked their \"\"proby\"\" (probation firefighter) to join them in an NY firehouse, home to Ladder 1 and Engine 7. But their production was to develop and contain at that time, believed to be the only shot of the first plane slamming into the World Trace Center.<br /><br />I was traveling back with a friend on the train from a night of LAN gaming, and received a call at about 850pm local time from my Dad, who informed me of the above. Few minutes later, he told me there was another, and that the WTC was under attack. By the time I arrived home, the upper floors of the twin towers were ablaze and in smoke, and to my horror, they collapsed, under an hour.<br /><br />The filmmakers had two cameras running that day, one who had followed a team out on a routine call, and which immediately raced to the WTC upon hearing and seeing the plane crash into it. We follow what is possible the only filmed sequence of events in the lobby of WTC1 where the first responders of firefighters, paramedics, and police had to make sense of what happened, and to quickly develop a plan of action. The other camera, held by the other brother, was making his way to WTC to look for his sibling, and along the journey, captured the many expressions of New Yorkers, as well as the sense of chaos in and around Manhatten.<br /><br />Peppered throughout the documentary are numerous interviews with the men from Ladder 1 and Engine 7, which miraculously, did not suffer any casualty. But being survivors also brought about its own set of psychological turmoil, as they struggle to come to terms with the event. Through the events that unfold, we learn of the strong camaraderie amongst these men who risk live and limb each day on their jobs, to save lives.<br /><br />We began with what the documentary was supposed to be, before events of the day totally swung in and became the focus, right up to the rescue phase where hopes of finding survivors under the rubble were kept alive by the men who work round the clock in making sense of the collapsed steel structures. It's not a film that is fabricated, and what you see here cannot be recreated in any other documentary (and heavens, not sound stages for Hollywood blockbusters). It's as close as you can get to that day, witnessing the event up close, from safety.<br /><br />Code 1 DVD contains a separate extra hour of 4 sets of interviews with the men of Ladder 1 and Engine 7.\"\r\n0\t\"The plot certainly seemed interesting enough. How can a real-life brutal murder be turned into a truly boring movie? Well, you can watch \"\"Wonderland\"\" and find out.<br /><br />I had heard of the Wonderland murders before this film was released and found it to be an interesting true story of some genuinely sadistic people. Unfortunately, there is zero character development, so we never get a chance to understand why any of this was done or get a good sense of the interrelationships between the characters. The pace of the direction was very tedious. This all leads to an extraordinarily boring movie.<br /><br />Given that Dawn Schiller - a central character as Holmes's girlfriend - was an associate producer and that Holmes's wife was a consultant on the film, we should have had the opportunity to gain some real insight into the characters.\"\r\n0\t\"This film offers absolutely no imagination in it's premise nor in it's execution but these are just two things that come to mind after watching this so-called comedy that has no energy to speak of. Story is about nit-picky over analytical insurance risk manager Reuben Feffer (Ben Stiller) who finds his new wife Lisa (Debra Messing) cheating on him with a scuba instructor (Hank Azaria) after only one day on their honeymoon. Upon returning home Reuben and his best friend Sandy (Philip Seymour Hoffman) go to a party and run into Polly Prince (Jennifer Aniston) whom they went to school with years earlier.<br /><br />*****SPOILER ALERT***** Polly is forgetful and sloppy and lives carefree which is the opposite of who Reuben is as a person but they start to date and Reuben starts to change as a person as he starts to try out new things such as salsa dancing and eating spicy foods. But one day Lisa comes back and wants to remain married to Reuben but he really doesn't want to but Polly decides to leave as she doesn't believe in marriage to begin with.<br /><br />This film is the second directing effort by John Hamburg who wrote two generally unfunny screenplays in \"\"Zoolander\"\" and \"\"Meet the Parents\"\" but those two films seem like classics compared to this stale piece of drivel. It's very easy to say something is not funny but I think with this film it's even easier to figure out why. This film is totally and utterly predictable from start to finish with every scene looking as if it's only happening because of the ridiculousness of the script. Hamburg who also wrote the script seems to have written this without any thought of trying something different and at times he seems to be trying to generate the same energy as \"\"There's Something About Mary\"\" but instead the events seem incredibly forced. Did anyone really think the blind ferret was funny? If you do, your easy! A few times during the film characters would inexplicably have these emotional speeches that are supposed to summarize everything but all they achieve is overstating the obvious. Stiller works a lot but maybe he should work less and just wait for the better scripts to come his way because this film doesn't work as a comedy or as a romance.\"\r\n0\t\"To borrow from Dorothy Parker: This is not a film to be tossed aside<br /><br />lightly. It should be thrown with great force.<br /><br />This is an excruciating mess. And I'm a Greenaway fan.<br /><br />MIND-NUMBINGLY AWFUL<br /><br />\"\"The Mummy Returns\"\" has much more artistic merit\"\r\n1\tI took part in a little mini production of this when I was a bout 8 at school and my mum bought the video for me. I've loved it ever since!! When I was younger, it was the songs and spectacular dance sequences that I enjoyed but since I've watched it when I got older, I appreciate more the fantastic acting and character portrayal. Oliver Reed and Ron Moody were brilliant. I can't imagine anyone else playing Bill Sykes or Fagin. Shani Wallis' Nancy if the best character for me. She put up with so much for those boys, I think she's such a strong character and her final scene when... Well, you know... Always makes me cry! Best musical in my opinion of all time. It's lasted all this time, it will live on for many more years to come! 11/10!!\r\n0\t\"This bogus journey never comes close to matching the wit and craziness of the excellent adventure these guys took in their first movie. This installment tries to veer away from its prequel to capture some new blood out of the joke, but it takes a wrong turn and journeys nowhere interesting or funny.<br /><br />There's almost a half-hour wasted on showing the guys doing a rock concert (and lots of people watching on \"\"free TV\"\"--since when does that happen?) Surely the script writer could have done something more creative; look at how all the random elements of the first movie were neatly tied up together by a converging them at the science presentation. Not in this film, which pretty much ended the Bill & Ted franchise. The joke was over.<br /><br />The Grim Reaper is tossed into the mix, for whatever reason. This infusion, like the whole plot, is done poorly and lacks sparks for comedy or audience involvement. There's a ZZ Top impression, hammered in for no reason. There's lights, smoke, mirrors, noise. But nothing really creative or funny.<br /><br />Skip this bogus thing.\"\r\n1\tSaw this movie twice at community screenings and really loved it. I work in the Jane Finch community and feel the film really captured some of the essence and flavour of the community - grit, determination, exuberance, creativity, in your faceness with a dose of desperation. The writing, dialogue and acting is solid and I really found myself drawn into the story of the young woman Raya as she struggles to pursue her goals and not lose herself in the process. Great dance sequences and it is not only the bodies that move smoothly and with electricity but the camera moves with great fluidity and intelligence as well. All the characters are multi dimensional - none wholly good or bad and the women characters are admirably strong. This is a film that has a strong beating heart and celebrates the irrepressible spirit of youth, hip hop and communities like Jane Finch.\r\n0\tAfter the debacle of the first Sleepaway Camp, who thought that a franchise could be born. SC II is superior in aspect. More inspired killings and just whole lot more fun. While that might not be saying much (compared to the first movie), Sleepaway Camp II is worth the rental.<br /><br />Pros: Entertaining, doesn't take itself too seriously like SC I. Inspired Killings. Cons: Crappy acting and mullets abound.<br /><br />Bottom Line: 5/10<br /><br />\r\n0\t\"I just saw this film last night in the 2006 Tribeca Film Festival and it seriously makes me wonder if the folks at the festival actually screen the films before selecting them. The film was simply awful - I say that without hyperbole or ulterior motives - it was awful. Matthew Modine's days as a leading man are way over. Gina Gershon sported an inexplicable and unnecessary English accent - she should be ashamed of her participation in this film. Gloria Reuben had a weird little cameo in it - she should also be ashamed. The script was terrible and the we were given absolutely no reason to care about the characters. I highly doubt this will be picked up, but then again, people in Hollywood are known to make mistakes sometimes. I really think \"\"Kettle of Fish\"\" is a serious contender for the worst movie I've ever seen.\"\r\n0\tIf Ashanti had been a serious attempt at a film about the institution of slavery, still prevalent in third world countries the film might have been better received. Instead it turns into a star studded disaster of a movie where the stars came in, said their lines, and picked up their paychecks without much conviction.<br /><br />Michael Caine and his wife Beverly Johnson work for the United Nations World Health Organization and are busy doing their humanitarian thing in East Africa. Along comes Peter Ustinov who can barely summon enough ham in him to make a go of the part as a Moslem slave dealer. As Johnson is black he grabs her anyway along with a lot of children and a few adults as well.<br /><br />Of course Caine doesn't take kindly to the kidnapping and the rest of the film is spent in a rescue attempt. The rest of the cast has such folks as William Holden, Rex Harrison, Omar Sharif and Indian film star Kebir Bedi in parts and looking so incredibly bored with the whole thing.<br /><br />Usually in something like this talented people like those mentioned above will just overact outrageously and feast on a diet of scenery. But Ashanti doesn't even have that going for it.<br /><br />What an incredible waste of time. The aroma of tax write off is permeating the air.\r\n0\tI used to LOVE this movie as a kid but, seeing it again 20+ years later, it actually sucks. Up The Academy might have been ahead of it's time back in 1980, but it has almost nothing to offer today! Movies like Caddyshack and Stripes hold-up much better today than this steaming dogpile. No T&A. No great jokes except for the one-liners we've all heard a million times by now.<br /><br />I recently bought the DVD in hopes that it would be the gem I remembered it being. Well, I was WAY off! The soundtrack had only 2-3 widely-recognizable hits (not the smash compilation others had mentioned) and the frequent voice-overs were terrible. The only thing that was interesting, to me, was predicting what the character's lines were before they said them. Yep, I watched this movie that much back then! <br /><br />The only reason I am writing this review is to give my two cents on why this movie should be forgotten, sorry to say. :(\r\n1\tThe first of two Jim Thompson adaptations released in 1990 (the other being the more well-known GRIFTERS), AFTER DARK has all of Thompson's hallmarks: dangerous women, the confidence game, and characters that are either not as dim as others suspect them of being, or not as harmless.<br /><br />Jason Patric is superb as a former boxer disqualified from the sport for life due to an incident in the ring (director James Foley uses RAGING BULL-esquire sequences to flesh out the back story) and the too-little-seen Rachel Ward also delivers a great performance. But Bruce Dern is the film's secret weapon: his sweet-talking grifter Uncle Bud subtly commands each of his scenes.<br /><br />there's almost no comic relief in this film, so watch it prepared to be sucked into the void.\r\n1\t\"OK, OK, don't get bent out of round. I was kidding.<br /><br />\"\"Bustin' Out\"\" is actually a better and truer title anyhoo.<br /><br />Racism and crime dramas get the satiric treat meant from our X-rated animator friend Ralphie boy. And he does one of his better jobs here.<br /><br />On the crime front it shows the truth. They build it, defend it, then boredom and stronger rivals cause them to (maybe) lose it. See for yourself to see what goes down.<br /><br />Racist? I don't know. With Scatman (RIP) and the love walrus (also RIP) being black and the main point of view, I saw it as an attack on racism mostly. The fact that Richard Pryor liked it says as much as well. And the younger (pre \"\"Miami Vice\"\") Phil Mike Thomas in there was a nice surprise.<br /><br />It's an animated \"\"Blacksploitation\"\" film. That's a good thing. Done well and well done. It will make some squirm (like the lynching scene) but unfortunately that's based on fact.<br /><br />But Ralphie REALLY should have re-thought that title.\"\r\n0\t\"****MINOR SPOILERS*** As a bad movie connoisseur I must have viewed hundreds of bad movies and yet \"\"Hobgoblins\"\" stands apart from all others in it's own unique way. Classic baddies such as \"\"The Creeping Terror,\"\" \"\"The Mighty Gorga\"\" and \"\"Manos\"\" are uniformly bad from start to finish. \"\"Hobgoblins\"\" on the other hand, starts off bad and gets progressively worse as it goes. During my first viewing of the infamous rake fight scene I thought to myself that this was a truly bad film. I was blissfully unaware that I had just seen the best that this movie had to offer. The movie takes its most massive nosedive into celluloid hell during the painfully inept \"\"Club Scum\"\" sequence which is a continuous string of one unfunny joke after another. With just this one film, director Rick Sloane proves that he deserves mention alongside the likes of Coleman Francis and Bill Rebane as one of the worst directors of all time. How bad can a bad movie be? Watch \"\"Hobgoblins\"\" and wonder no longer.\"\r\n0\tThe title should have been the walker. The guy expend 90% of the movie walking. He doesn't know what he wants, or what he is. Go through life stealing peoples identity for nothing. He gets no benefit, no money, nothing pretending to be another person.<br /><br />No body was able to understand why he was pretending to be somebody else.<br /><br />The only thing that was clear in this movie is that he love his father and was a good son. But the rest was crap.<br /><br />May be director is a looser that would like to be somebody else. But what he really should do is to get a real job, because after his movie, I don't think he has a chance to make as a movie producer.\r\n1\tSoldier may not have academy acting or Lucas special effects but it definitely does it for me. I won't tell you what its about, I'm sure you already read the summary. This is a great doomed futureistic action/science fiction movie. Kurt Russell doesn't say much, he usually has an eerie or drone look on his face but it fits the character. There are great action and fight scenes; some of the scenes are unrealistic, but thats Hollywood make believe land that we should have to escape our normal lives. I have not seen Soldier 2 but this one it one of my favorites. I'm lucky enough to have a wife that digs on guy movies; we both love this movie and recommend it to anyone who likes tough guy/sci-fi movies.\r\n0\tNo, this is nothing about that fairy tale with the pumpkin coach, fairy godmother and the glass slippers, but if I were to elaborate, I would have to spoil it for you, which I won't. But don't let curiosity get the better of you, as this movie is not fantastic. It's one of those movies that start off promisingly, before betraying its audience with cheap scare tactics and an incoherent storyline. And that's real horror.<br /><br />Yoon-hee (To Ji-Won) and Hyun-soo (Shin Se-kyeong) are your ideal mother and daughter. One's a successful plastic surgeon, while the other your dutiful, obedient, and beautiful teenage daughter. Their relationship is like hand in glove, so close you'd think of them more as siblings rather than parent-child. But things start to go wrong (don't they always) when Hyun-soo's friends, whom Yoon-hee has operated on, start to go berserk.<br /><br />Perhaps it's a warning to audiences, and for those Koreans ladies who don't bat an eyelid when going under the knife, if news reports are to be believed. The only truly scary moments are those scenes in plastic surgery, though somehow, I thought Kim Ki-duk's Time actually had more gore when featuring and describing what goes on during the surgery itself.<br /><br />It's a tale of two halves, the fist being an attempt to shock audiences with standard scare tactics, which, I admit, did get to me now and then. However, the second half degenerated the movie into mindless mumbo-jumbo melodramatics, and was quite contrived into its forcing its ideas down your throat. Some things begin not to make sense, and while attempts are always presented to explain, you probably won't buy it, not that horror movies are logical to begin with.<br /><br />The leads are all beautiful, and there is a distinct lack of male presence besides the negligible cop role. But hey, I'm not complaining, though the storyline could have been improved tremendously. I'd recommend you to watch this, only if you're a fan of mediocre Korean horror, on VCD. Watch out for those face off-ish moments!\r\n0\t\"Celia Johnson is good as the Nurse. Michael Hordern is good as Capulet, though it's his usual neighing and whinnying and not a patch on his King Lear. John O'Conor reads the verse well as Friar Laurence though he never takes it anywhere. Alan Rickman is good as Tybalt, in the first of his \"\"yuk\"\" roles that would make him famous. Christopher Strauli's Benvolio is sympathetic.<br /><br />The sets are pretty, if not stunning as in some of the other BBC Shakespeare's.<br /><br />And that's it. The rest is weak to dreadful. Rebecca Saire turned 15 during production, and hasn't a clue about how to act Juliet - she opens her eyes real wide and whines every line in exactly the same way. Patrick Ryecart is poorly matched to her, and his self-regard is inexplicable. The Balcony Scene flows smoothly and uneventfully with zero emotional or erotic impact. Their deaths come as a relief. If I had a dagger, I would have offered it to them hours earlier.<br /><br />Anthony Andrews is unspeakable as Mercutio, a great shock if you remember his fine work in \"\"Brideshead Revisited.\"\" He breaks the mirror of Shakespeare's verse into a thousand shards of two or three words each, and then shouts the fragments in as disconnected and unintelligible manner as possible. In this production, Queen Mab abdicates. Awful.<br /><br />The director, Alvin Rakoff, shows only an intermittent gift of putting the camera where it will show us what we want to see. The opening brawl is notably incoherent. However there is humor when in a later fight, Romeo apparently knees Tybalt right in the cobblers. Tybalt then grabs the offended region. However did that get through? <br /><br />R&J is a long play. This version is not recommended for classroom use, or much else.\"\r\n1\tThe critics are dumb. This movie is funny and smart. I loved this movie a lot. Why does everyone hate this movie so much. I wish people would love this movie more than they don't. Ben Stiller and Jack Black are true comedians and they put through a lot of work to make this movie. I don't see you people out there making movies like them. So people should just watch it and not comment it. I like this movie. It is OK through it all. There are parts were it get's dumb but at least they made it. Jerry Stiller would love this because this movie has the acting just like the show King Of Queens. But this is better than that. I can't believe this was rated so low.\r\n1\tWas'nt really bad for Raw's first PPV of 006. But the ending was really really shocking to everyone in attendance & the ones who were watching at home.<br /><br />FIRST MATCH- RIC FLAIR VS. EDGE W/ LITA FOR THE WWE INTERCONTINENTAL CHAMPIONSHIP Not a bad opener, these two can seriously put on a great match if they had more time to put on a wrestling match. Flair wins by DQ after Edge slams him with his MITB briefcase. 3/10 SECOND MATCH- TRISH STRATUS VS. MICKIE JAMES FOR THE WWE WOMEN'S CHAMPIONSHIP Not bad noticing the fact that this is the first time these Divas faced off in the ring together. Mickie goes for a modified Chick Kick, but Trish ducks & nails her own Chick Kick for the win to retain her title. 3/10 THIRD MATCH- TRIPLE H VS. BIG SHOW Seriously good this match was, really. The whole match HHH focuses on Big Show's injured arm but Big Show still fights back. Later HHH is able to topple down Big Show & nails a Pedigree for the win. 5/10 FOURTH MATCH- SHELTON BENJAMIN W/ MAMA VS. VISCERA {This was a bonus match} Not that bad, it was alright. After Viscera was down, behind the referee, Benjamin's mama got a purse {Which had bricks in it} & slammed Viscera on the head with it three times. Viscera got up only to get caught with a spinning heel kick by Benjamin for the win against the big man. 4/10<br /><br />FIFTH MATCH- JERRY 'THE KING' LAWLER VS. GREGORY HELMS Boring, slow & sloppy. Both men didn't really put a very good effort. Jerry Lawler wins after a Fist Drop for the win. 2/10<br /><br />SIXTH MATCH- TORRIE Wilson VS. VICTORIA VS. ASHLEY VS. MARIA VS. CANDICE MICHELLE IN A FIRST EVER WOMEN'S GAUNTLET MATCH It was pretty entertaining to me. Ashley {I think} eliminates Candice last to win the first ever Women's Gauntlet match. 5/10 SEVENTH MATCH- JOHN CENA VS. CHRIS MASTERS VS. CARLITO VS. SHAWN MICHAELS VS. KANE VS. KURT ANGLE W/ DAIVARI IN AN ELIMINATION CHAMBER MATCH FOR THE WWE CHAMPIONSHIP It was a cool Elimination chamber match. But nothing will top last year's Elimination Chamber which was the best. The last three are Masters, Cena & Carlito. Carlito turns his back on Masters & gets a roll-up on him to eliminate him. Seconds later Cena gets a roll-up on Carlito for the three count to win the Elimination Chamber & retain his WWE Title. But his night was not over yet. 7/10 After the match, Vince McMahon comes out & congratulates Cena for his victory. Vince McMahon states that his night is not over yet, & says that Edge cashes in his Money In The Bank opportunity to challenge Cena for the title. Edge comes out with Lita, gives the briefcase to Vince & heads off in the ring as Cena has one more match to go here tonight.<br /><br />EIGHT MATCH- JOHN CENA VS. EDGE W/ LITA FOR THE WWE CHAMPIONSHIP {Cena who is busted open during the Chamber match} gets pounded straight away by Edge, Edge then nails a Spear on Cena, goes for the cover & to his shock Cena breaks out. Edge nails another Spear & covers for the shocking three count as he has beat Cena & has won the WWE Championship for the first time in his career. 1/10 So last year's New Years Revolution was better than this year's, but it was still alright. The EC match was also good & the shocking of Edge cashing in his MITB opportunity is definitely the most shockingest on the PPV show.<br /><br />Overall: I'll give it 7/10 & a C\r\n0\t\"This romantic comedy isn't too bad. There are some funny things happening here and there, and there are some rather memorable characters in it.<br /><br />The acting, however, is amateurish (with the exception of the banker). While some scenes are great fun, others are simply embarrassing. In particular, I found the \"\"romantic\"\" part of the story poor. <br /><br />All in all, I guess it's worth seeing if you like football and romantic comedies. It's not really a bad movie, and the ending did feel quite good. Just don't expect anything out of the ordinary. Fair enough if you have an hour and a quarter to kill.\"\r\n1\tThis outstanding Argentine independent film is one of the very best of the year 2000 from all South America, including Argentina, which is producing an astonishing number of quality films since 1999. In 2000 alone, Argentina released many quality films, which broke Argentine B.O. records. A half dozen were internationally acclaimed, like this one, at important world film festivals. After viewing this film, one can see how home grown Argentinian films were able last year to recapture 20% of its national movie market.<br /><br />Directed by one of Argentina's best directors, Daniel Burman, this film examines effects of globalisation worldwide, but emphasizes its impact on Argentina, and particularly the Jewish community of Buenos Aires. Daniel Hendler is wonderful as the nice Jewish boy, trying to survive and even succeed in today's business climate. Hector Alterio, one of the great actors of Hispanic Cinema worldwide, is perfect as Simon, the Jewish father, as is the rest of the cast, which includes Spanish and Italian stars.<br /><br />So many current themes in urban Western societies are explored, I don't have enough space to go into detail. Daniel Burman cleverly weaves them into the plot with different characters personifying diverse dilemmas. If this film plays at a festival near you, or on video, don't miss it!\r\n0\t\"The first Cube movie was an art movie. It set up a world in which all the major archetypes of mankind were represented, and showed how they struggled to make sense of a hostile world that they couldn't understand. It was, on the non-literal level, a \"\"man vs. cruel nature\"\" plot, where the individual who represented innocence and goodness came through in the end, triumphing to face a new, indefinable world beyond man's petty squabbles; a world where there were no more struggle, but peace. I rated Cube a 10 out of 10, and it's a movie that was never meant to have any sequels.<br /><br />The second movie, Hypercube was a massive disappointment. Some of the ideas were kind of cool, but in the context of the original movie, both the story and the setting made no sense and had no meaning. Still, for being fairly entertaining, I rated it a 5 out of 10.<br /><br />The third movie, Cube Zero, while ignoring the second, plays like a vastly inferior commercial B-movie rehash of the first, sans the symbolism. There is no \"\"homage\"\" or \"\"tribute\"\" here; there is only ripping off. The same kind of plot, with some elements idiotically altered (like having letters instead of prime numbers between the cubes - an idea which shows more clearly than anything else that this is a rip-off with absolutely no originality and nothing to say).<br /><br />That we see something from \"\"behind the scenes\"\" means nothing, because the watchers are just part of the Big Bad Experiment, the architects of which we hear nothing of. And, in this movie, those who get through to the exit (like Kazan did at the end of the first movie) are just killed - where the *bleep* is the sense in that?! That's just flippin' stupid. I'm glad I didn't pay to see this.<br /><br />The production values and acting in Cube Zero are not too bad, but the story and the ideas are so utterly devoid of any inspiration that this movie can only get from me a rating of 3 out of 10.\"\r\n1\t\"The freedom of having your own Sea Going Power Boat, the excitement of going on underwater adventures a rugged,an's man of an adventurer and lovely(and so well endowed!) assistants in fine Bikinis were all definite selling points for \"\"SEA HUNT\"\"(1958-61).<br /><br />Just what was the reason for producing a sort of sea going \"\"gun for hire\"\"* series. Let's look closely now. There must be a some clues around.<br /><br />If we were to look back just a little, we see the RKO Radio Pictures production of UNDERWATER! (1955). It starred Jane Russell, Gilbert Roland, Richard Egan and Lori Nelson as a quartet of very attractive Scuba Diving Adventurers working on salvage in the Carribbean, including a Pre-Fidel Cuba. The film was moderately successful and was memorable not necessarily for its story as for the looks of the principals in swimming suits. Fine, shapely Women Folk in some really keen 2 piece bathing suits (Woo, woo, woo, woo!) are always a plus for the Guys; and the presence of rugged, athletic men folk displaying their best beefcake \"\"poses\"\" is equally pleasing to the Gals.<br /><br />And there is one element that is a true legacy of this old RKO Feature. It is on the Soundtrack contained in between the musical queues and themes. It is the Recording of \"\"It's Cherry Pink and Apple Blossom White\"\", written by Louiguy and Jacques LaRue and performed by Damaso Perez Prado and His Orchestra.<br /><br />Anyone who hears this Insturmental or Song (with Lyrics)will not soon forget it. Its Carribbean Beat is so very lively and its rich use of the Brass Section of the Orchestra is Powerful and instantly renders instant impression and memory. The 45 RPM Record of this Song made it to the Top 10 most Popular Songs of the Week for many Saturday Evenings on NBC TV's \"\"YOUR HIT PARADE\"\". We can't remember just how many weeks nor just how high it got. (Maybe some one can fill us in on that one item, please!) So, we got back to \"\"SEA HUNT\"\" and its own odyssey in getting on \"\"the Tube\"\". The public had taken to UNDERWATER! all right, but would they go for a TV Series.<br /><br />ZIV TV Productions was getting a reputation for putting out a type of product that, for the most part, didn't get signed on by the Networks for the multi-station hook-up treatment. But they had been having some great successes with Television Syndication.** By that we mean, offering a Series for Stations for showings on a one to a TV Station per each Market Area. (Much like the various Newspaper Syndicates \"\"sell\"\" Comic Strips to various Papers around the Country, and World, even.<br /><br />So, we got 'Mike Nelson', himself, in the physical presence of Lloyd Bridges. Mr. Bridges had been around for approximately 15 years or so and had turned in some very memorable performances in mostly supporting and highly varying roles in a couple of Boston Blackie movies (with Chester Morris)to THEY STOOGE TO CONGA (3 Stooges 1943), SAHARA (also 1943), HOME OF THE BRAVE (1949) and THE WHISTLE AT EATON FALLS(1951).<br /><br />Lloyd brought a very convincing manner to his characterization, along with a fine, convincingly athletic physique, having the look of a guy who makes his living with his physical abilities. He took very well as the Diver's Diver, whether it's performing duties on board ship, or fathoms beneath the Sea.<br /><br />And Lloyd did take to the role quickly, but contrary to a lot of misinformation out there, he was not familiar with S.C.U.B.A.*** prior to landing this Mike Nelson gig. But the Athletic Mr. Bridges proved to be a quick learner, as so many of the close-up shots underwater revealed that there was no doubt about it, that it was Lloyd with the mask, the bubbler(air tank) and the flipper fins.<br /><br />Stories almost always involved the helping-out some client for pay, much like a Private Detective would. So what if the client was a lovely Lady who looked good in the Bathing Suit, all the better.<br /><br />Like so many of the other ZIV/UNITED ARTISTS TV Productions,\"\"SEA HUNT\"\" possessed a fine, haunting Opening Theme and Closing, along with some original incidental music and queues.<br /><br />At one time, I believe that \"\"SEA HUNT\"\" was the top syndicated TV Series, a success that ZIV Series had known before with the likes of \"\"SCIENCE FICTION THEATRE\"\"and \"\"HIGHWAY PATROL\"\". As far as the showing venue for this underwater saga, here in Chicago it was shown late night (after 10:30 P.M.) on WNBQ TV, Channel 5 (our NBC Affiliate, now known as WMAQ TV).<br /><br />And I can remember just who was the original sponsor in this particular market was. And there were even on scene commercials done by the Star! How well we can remember and visualize Lloyd as Mike Nelson, riding on his Power Boat. And as we were being invited to return the next week and watch \"\".....another adventure of \"\"SEA HUNT\"\", sponsored by the G. Heileman Brewing Company of LaCrosse, Wisconsin' the makers of Old Style Lager Beer!\"\", all while Mike was toasting us, raising an Old Style Bottle. (Shame on you, Mike! Drinking Beer on your moving Boat! We're tellin' the Coast Guard!) Then, the Boat would leave the dock, accompanied by the Sea Hunt Theme and rolling the Credits.<br /><br />NOTE: * More figuratively than literal, Mike was for hire and things ran very much like a Deterctive Story.<br /><br />NOTE: ** ZIV's Syndicated successes included \"\"SCIENCE FICTION THEATRE\"\", \"\"WEST POINT\"\"(and its clone \"\"MEN OF ANNAPOLIS\"\"), \"\"SEA HUNT\"\" and \"\"HIGHWAY PATROL\"\".<br /><br />NOTE*** And of course, SCUBA is a acronym for Self Contained Underwater Breathing Apparatus.\"\r\n1\t\"Uggh! I really wasn't that impressed by this film, though I must admit that it is technically well made. It does get a 7 for very high production values, but as for entertainment values, it is rather poor. In fact, I consider this one of the most overrated films of the 50s. It won the Oscar for Best Picture, but the film is just boring at times with so much dancing and dancing and dancing. That's because unlike some musicals that have a reasonable number of songs along with a strong story and acting (such as MEET ME IN ST. LOUIS), this movie is almost all singing and dancing. In fact, this film has about the longest song and dance number in history and if you aren't into this, the film will quickly bore you. Give me more story! As a result, with overblown production numbers and a weak story, this film is like a steady diet of meringue--it just doesn't satisfy in the long run. <br /><br />To think...this is the film that beat out \"\"A Streetcar Named Desire\"\" and \"\"A Place in the Sun\"\" for Best Picture! And, to make matters worse, \"\"The African Queen\"\" and \"\"Ace in the Hole\"\" weren't even nominated in this category! Even more amazing to me is that \"\"Ace in the Hole\"\" lost for Best Writing, Screenplay to this film--even though \"\"An American in Paris\"\" had hardly any story to speak of and was mostly driven by dance and song.\"\r\n0\t\"Okay... it seems like so far, only the Barman fans have commented on this film - time for a counterpoint. Beware, this writeup is *LONG*.<br /><br />For those not in the knowing (mostly the non-Belgians) : Tom Barman, director of this film, is the frontman of dEUS, one of the better known rock bands of the late 90's here in Belgium. Basically, they made a couple of very adventurous and innovative albums and quickly rose to fame on the national scale. Then, egos started hurting and the band basically fell apart, with Barman and a couple of others remaining to go on making albums under the dEUS-monicker. The way it always happens in such cases, the post-breakdown dEUS was a lot tamer and less interesting than the original. They tried to go for an international breakthrough with their album \"\"The Ideal Crash\"\" in 1999, presenting a much diluted form of their earlier style of songwriting. They didn't quite make it. However, egos were still pretty big it seems : big enough for Barman to consider himself enough of an artist to try on movies.<br /><br />More often than not this sort of thing is a VERY big mistake, and this film does not make the exception. And Barman clearly went for *art* on this one, another very big mistake. For one thing, he's a musician, not a movie director. For another, dEUS at it's best made fun and provoking music, but never anything close to what I would consider *art*. It shows.<br /><br />So, what's this movie about? Basically, it tells the story of a bunch of completely uninteresting people, doing equally uninteresting things over the course of a totally uninteresting friday in Antwerp, as even more uninteresting stuff happens to them in the act of being uninteresting. The characters are shallow, the plot totally pointless and the film just doesn't have any other redeeming qualities to make up for these shortcomings. Humor? The whole film made me smile (slightly) about 3 times, and actually managed to provoke a single 5-second laugh (not quite loud). Mood? The film just doesn't seem to show any kind of emotion or feeling at all. Mystery? Well, (*MINOR SPOILER*)the idea of the \"\"wind-man\"\", inspiring the name of the film, is as enthralling as a banana pepper pizza - not very, and has been done a thousand times before (anyone remember Johny Destiny - one of Tarantino's worst appearances on film to date)(*END MINOR SPOILER*). And well, its *artistic*, so don't expect any kind of real action to make up for all the previous. In other words, except for the few smiles, it bored me out of my shorts.<br /><br />So what remains? Well, the soundtrack is pretty good, though it suffers from some of the same problems that other OST's have shown lately : first, it makes the movie seem like nothing more than a commercial for the CD. Second, it gives the impression that Barman is trying to hide the weaknesses and lack of emotional content in the film behind the content quality of the songs, which simply doesn't work. In the end, it makes the film look like nothing more than an illustration to the songs. And sadly, it's Barmans own contribution to the soundtrack which gets the most attention, though it is the weakest part of the whole soundtrack as far as I'm concerned. All in all, it just stands to show that Barman knows more about music than movies. Camera work is okay as well, though not anything that would make you scream out with joy.<br /><br />The only thing about this movie that kept me watching was the sight-seeing factor. Since I originate from Antwerp, it was fun to play a kind of \"\"guess-the-location\"\" game. I would hardly consider this as a quality though.<br /><br />All in all, another chance lost for Flemmish film. I keep on noticing that lately, the best Belgian movies have been coming from the French part of the country. This is mostly because at least, they have something to tell and manage to tell it in way that is both sharp and emotional (the brothers Daerden come to mind). Maybe the Flemmish art-house filmmakers should try that too.\"\r\n0\t\"As someone who likes chase scenes and was really intrigued by this fascinating true-life tale, I was optimistic heading into this film but too many obstacles got into the way of the good story it should have been.<br /><br />THE BAD - I'm a fan of Robert Duvall and many of the characters he has played, but his role here is a dull one as an insurance investigator.<br /><br />The dialog is insipid and the pretty Kathryn Harrold is real garbage-mouth. From what I read, there were several directors replacing each other on this film, and that's too bad. You can tell things aren't right with the story. I couldn't get \"\"involved\"\" with Treat Williams' portrayal of Cooper, either. He should have been fascinating, but he wasn't in this movie. It's also kind of a sad comment that a guy committing a crime is some sort of \"\"folk hero,\"\" but I admit I wound up rooting for the guy, too.<br /><br />Not everything was disappointing. I can't complain about the scenery, from the lush, green forests of Oregon to the desert in Arizona.<br /><br />I'd like to see this movie re-made and done better, because it is a one-of-a-kind story.\"\r\n1\tWhen I saw this movie in the theater when it came out in 1995 via a free advanced screening, I was totally enchanted and would have gladly paid to see it. I was sorry when I talked to many people afterwards who had also seen it and who were totally disappointed with it and how it ended. I, on the other hand, felt completely the opposite. I was totally satisfied with the outcome and everything else. People I talked to said there was too much talking! Plus they were unhappy because they felt that the ending left you wondering about the fate of the two characters. I found these observations to be absurd and to also be painful evidence of how the majority of the American movie-going public seems to have a tendency to want easy-to-follow stories in films with not too much complex and intelligent dialogue lest they get confused. They also like to be spoon-fed tidy endings--happy OR sad. This disgusts me. Nobody wants to be challenged anymore??? And as for the ending (and I don't want to be a spoiler), I am totally content because I know in my heart that these two characters WILL see each other again. It's all about your own personal faith in romance and destiny. It's a very personal film that doesn't speak to all people. But it certainly spoke to me. Give it a chance! Be patient with it! Richard Linklater has crafted a very lovely film with a beautiful story set against the beautiful background of the city of Vienna. Watching it makes you feel as if you yourself are strolling through the city streets along with the characters. As if you yourself were tripping through Europe on a Eurail pass. It's very intimate. Plus, Ethan Hawke and Julie Delpy do an exquisite job of bringing the complex script to life. They must have improvised during some parts and it works well. They have a great chemistry in their roles. Their awkwardness as strangers getting to know each other in the beginning is very believable and you can truly feel the romance and bonding develop between them as the movie progresses. I get the feeling that this was a very personal work for Mr. Linklater and I deeply respect him for getting this film made. It definitely touched me and I hope it touches others just as much. Bravo for romance!!!\r\n0\t\"You may consider a couple of facts in the discussion to be spoilers.<br /><br />I'm sorry, but Spielberg didn't deserve to win any Oscar for this piece, and I think the Academy was right in that vote. (Other Oscars for best actor nominations and such... that I don't know about. But it would be hard to justify, given what they were told to do and what you see in the final product.) The way Spielberg directs this is so contrived, so meddlesome. While watching this movie a distinction made during a Film as Art course I have taken was screaming at me: \"\"Sentiment is honest emotion honestly rendered. Sentimentality is sugary and unreal, a false view of life.\"\" This is over-the-top sentimentality. When in real life to two people ever begin to read out loud in synchronicity, as Celie and Shug Avery do when sitting on the bed going over the letters from Nettie they have found? There are examples of this type of faux behavior throughout the film: all the men crowding around Miss Millie's car and then jumping in unison like a flock of birds taking off when she goes to drive away; Harpo falling through the roofs of various buildings he's working on (a cheap slapstick gag); the whole troop of revelers heading from the Jook Joint en masse to the chapel, as if magically entranced by the choir's singing... on and on. Nothing rings true. I even wondered if Harpo's name was chosen purposefully because it's his wife Sophia's real name, \"\"Oprah,\"\" backwards. Spielberg isn't above such \"\"cuteness.\"\"<br /><br />It's not that Spielberg is incapable of honestly rendered action and emotion. Schindler's List was amazing, deeply touching for me, and I greatly admire Saving Private Ryan too for its realism, even if the story is a bit contrived.\"\r\n1\tThe premise of this anime series is about bread, of all things to base a plot on! I truly laughed. The main character has a special bread making power that he was born with, and he goes off to bread baking school. I wish it were available on DVD, and it doesn't matter if it's subtitled or dubbed - it's that good. Even the theme song alone is funny. At one point in the theme song, there's an African-Japanese man with an afro on horseback, wielding a French baguette as if it were a samurai sword. These images will not make sense unless you see the anime. You'll laugh until your sides hurt. It is definitely the most unique anime I have seen thus far.\r\n0\tWell, it is hard to add comment after reading what is already here but I feel I must say something. I wasn't exactly looking for 'a splatterfest' as someone puts it or even 'blood and guts/gore'. I have some respect for the victims relatives although I really felt the filmaker DIDN'T. -They were nameless, faceless and meaningless. Just a vessel for Dahmers sexual antics.<br /><br />I watched this film with the kind of morbid curiosity that makes me think 'What makes a guy be a serial killer?' as well as wondering the specifics about the Dahmer story, of which I know very little. People here seem to think that the movie didn't have to cover the events of the Dahmer story.. I.E. his history, what happened when he got caught, the aftermath, etc but IT IS IMPORTANT! You see, I assume if you are American you WILL KNOW all of this. We do not all live in America. To tell this story about such a man as he obviously was, REQUIRES that at least SOME of the history and actual events are told/shown. This doesn't mean blood and guts, there are ways of showing horrific things in a movie by implication or clever filming without resorting to gore. Without even touching upon some of what he did (I found out more about him reading the user comments on this site!), the movie felt like a void. A moment in time with very little substance. I would like to know if there is a film about the REAL Dahmer because with its lack of direction, VERY slow pace that NEVER changes, Strange portrayal of homosexuality and the VERY unfortunate lack of ANY attempt at an ending, this movie is POOR. I would not recommend to anyone that they waste the time it takes to watch it. A definite 1 out of 10 (for the acting!)\r\n1\t\"This film is like an allegory of the gospel. It has such direct honesty and innocence you can not possibly believe it was made after the world war when Italy was ravaged and devastated, and was filled with a huge homeless, impoverished population. It is a monument to the best qualities of the human spirit, as well as to the endless creative resources of that land of inspiration. <br /><br />Toto is a character like Doestoevisky's \"\"Idiot\"\", a modern Christ finding his way in a big city. He is goodness and purity fortified by love, and his acts change the people he encounters, as much as the miracle working dove. The story is told in a natural manner and simple style, yet imbued with a magic that is almost a premonition of Fellini's surrealist fantasies. It is one of the most inspiring, uplifting movies ever made.\"\r\n1\t1991 saw the release of the two best sequels of all time: TERMINATOR 2: JUDGMENT DAY and BILL & TED'S BOGUS JOURNEY. Out of the two, I've always liked BILL & TED'S BOGUS JOURNEY a bit better. TERMINATOR 2: JUDGMENT DAY is the better made, but there's just nothing like Bill and Ted. Besides Chris Farley and David Spade in TOMMY BOY, it's hard to think of a greater comedic duo than Bill and Ted. They are one of a kind.<br /><br />Seemingly influenced by National Lampoon's O.C. and Stiggs, Bill and Ted were created by Ed Solomon and Chris Matheson, two incredibly talented writers who invented the duo while performing at a local theater in L.A. back in the 1980s. The two quickly began writing a screenplay about two and before long BILL & TED'S EXCELLENT ADVENTURE was born. The film, shot in 1987 and released in 1989, became a big box office success and an instant cult classic. It wasn't long before work began on the sequel. Stephen Herek, the director of 'EXCELLENT ADVENTURE' wasn't keen on working on the sequel since he considered it to be too mean-spirited and unlike the first one so Peter Hewitt, making his feature film debut, was brought in to direct the sequel. There couldn't have been a better director for the job. BILL & TED'S BOGUS JOURNEY is marvelously directed. It's filled with its own unique style and energy that can't be matched.<br /><br />What makes 'BOGUS JOURNEY' one of the best sequels ever is that it while it is darker than the original, it is just as fun. It doesn't change the characters like most sequels do. Bill and Ted are the same lovable characters that they were in the first film. This is because it was written by the original writers. Most sequels are not written by the same writers as the first one, but since 'BOGUS JOURNEY' had the same screenwriters, it ended up being just as good as 'EXCELLENT ADVENTURE' if not even better. Just like the first one, 'BOGUS JOURNEY' is absolutely hilarious, well written, fun, and above all, original. It's filled with spectacular special effects and fantastic comedic performances from Alex Winter, Keanu Reeves, and William Sadler. It's an unforgettable 'journey'. 10/10\r\n1\t\"In 1958, Clarksberg was a famous speed trap town. Much revenue was generated by the Sheriff's Department catching speeders. The ones who tried to outrun the Sheriff? Well, that gave the Sheriff a chance to push them off the Clarksberg Curve with his Plymouth cruiser. For example, in the beginning of the movie, a couple of servicemen on leave trying to get back to base on time are pushed off to their deaths, if I recall correctly. Then one day, a stranger drove into town. Possibly the coolest hot rodder in the world. Michael McCord. Even his name is a car name, as in McCord gaskets. In possibly the ultimate hot rod. A black flamed '34 Ford coupe. The colors of death, evil and hellfire. He gets picked up for speeding by the Sheriff on purpose. He checks out the lay of the land. He is the brother of one of the Sheriff's victims. He knows how his brother died. The Clarksberg government is all in favor of the Sheriff. There's only one way to get justice served for the killing of his brother and to fix things so \"\"this ain't a-ever gonna happen again to anyone\"\": recreate the chase and settle the contest hot-rodder style to the death. He goes out to the Curve and practices. The Sheriff knows McCord knows. The race begins... This is a movie to be remembered by anyone who ever tried to master maneuvering on a certain stretch of road.\"\r\n1\t\"the town of Royston Vasey is a weird, but wonderful place. The characters would be just wrong and too disturbing but the fantastically brilliant writing means that it works, and it works very well. Most people will know others with a touch of some characters, but hopefully no one knows people with extremes of personalities such as Tubbs and Edward, the stranger-hating owners of the local shop, or the pen-obsessed Pauline who treats \"\"dole scum\"\" with much contempt.That was only a few of the strange inhabitants. The TV works consists of 3 series and a Christmas special. There are references to many horror films, such as the wicker man. A more recent addition to the range of works is a film, the league of gentlemens apocalypse, of which I will not say much but highly recommend. All in all the league of gentlemen is a hilarious comedy show with genius writing and brilliantly bonkers characters. I would definitely say that it is worth watching as you wont regret it!\"\r\n1\t\"I haven't seen the original \"\"Incredible Journey\"\" since I was a child, so I can't really compare the two versions. This version tells the story of three animals, two dogs and a cat, whose owners leave them with friends in the countryside when the father of the family has to take a new job in San Francisco. The pets, believing that they have been abandoned, escape and set out on a long homeward journey through wilderness.<br /><br />This story might have been most easily filmed as a cartoon, but both versions are in fact live-action films made using real animals. One major difference is that in the later version the animals speak in human voices, giving each its own distinct personality, something that was not done in the original film. (A similar device of talking animals has been used in other recent children's films such as \"\"Racing Stripes\"\"). Some critics have been rather sniffy about the use of this device, but my own view is that giving the animals distinctive personalities of their own helps to strengthen the film rather than weaken it. The animals were voiced by big-name stars, Don Ameche, Michael J. Fox and Sally Fields.<br /><br />Both dogs are male, and their relationship parallels that between many humans in \"\"buddy-buddy\"\" movies. Shadow, a golden retriever, is the wise, experienced older dog; Chance the younger one is brash, cocky and impulsive. To British eyes Chance looks like a boxer, but is actually an American Bulldog, which is apparently a different breed to its British cousin. Sassy the cat is female with a rather prim and proper personality. She is very proud of her status as a cat, which in her eyes makes her vastly superior to any mere dog. (\"\"Cats rule, dogs drool!\"\").<br /><br />From an adult viewpoint the film has a number of faults; it can be sentimental, some of the incidents (such as the one in which the animals manage to catapult a mountain lion into the river) are quite incredible, and the human characters are all completely forgettable. This, however, is a film which is mainly aimed at children, and I suspect they will enjoy it immensely. Certainly, any animal-loving child will do so. (Comments by some professional critics such as James Berardinelli, who complained that the animals' voices lessened the film's \"\"grandeur\"\", only serve to strengthen my view that professional critics are not always the best guides to children's movies. I doubt if many playground conversations about \"\"Homeward Bound\"\" concentrated on its supposed grandeur).<br /><br />One thing adults will appreciate is the photography of California's Sierra Nevada mountains. They may also appreciate the film's blend of humour and excitement as the runaway pets encounter perils such as bears, mountain lions and porcupines in the wilderness. This is a very enjoyable family film. 7/10\"\r\n0\t\"Uta Hagen's \"\"Respect for Acting\"\" is the standard textbook in many college theater courses. In the book, Hagen presents two fundamentally different approaches to developing a character as an actor: the Presentational approach, and the Representational approach. In the Presentational approach, the actor focuses on realizing the character as honestly as possible, by introducing emotional elements from the actor's own life. In the Representational approach, the actor tries to present the effect of an emotion, through a high degree of control of movement and sound.<br /><br />The Representational approach to acting was still partially in vogue when this Hamlet was made. British theater has a long history of this style of acting, and Olivier could be said to be the ultimate king of the Representational school.<br /><br />Time has not been kind to this school of acting, or to this movie. Nearly every working actor today uses a Presentational approach. To the modern eye, Olivier's highly enunciated, stylized delivery is stodgy, stiff and stilted. Instead of creating an internally conflicted Hamlet, Olivier made a declaiming, self-important bullhorn out of the melancholy Dane -- an acting style that would have carried well to the backs of the larger London theaters, but is far too starchy to carry off a modern Hamlet.<br /><br />And so the movie creaks along ungainfully today. Olivier's tendency to e-nun-ci-ate makes some of Hamlet's lines unintentionally funny: \"\"In-stead, you must ac-quire and be-get a tem-purr-ance that may give it... Smooth-ness!\"\" Instead of crying at meeting his father's ghost (as any proper actor could), bright fill lights in Olivier's pupils give us that impression.<br /><br />Eileen Herlie is the only other actor of note in this Hamlet, putting in a good essay at the Queen, despite the painfully obvious age differences (he was 41; she was 26). The other actors in this movie have no chance to get anything else of significance done, given Olivier's tendency to want to keep! the camera! on him! at all! times! <br /><br />Sixty years later, you feel the insecurity of the Shakespearean stage actor who lacked the confidence to portray a breakable, flawed Hamlet, and instead elected to portray a sort of Elizabethan bullhorn. Final analysis: \"\"I would have such a fellow whipped for o'er-doing Termagant; it out-herods Herod: pray you, avoid it.\"\"\"\r\n1\tA big surprise, probably because I was expecting it to suck. The reviews were pretty dismissive of it, even though they all seemed to agree that the concept was golden: a man finds out his new girlfriend is a super hero, and finds, when he wants to break up with her, that she's kind of a psycho. I kept expecting it to fall apart, but it never really did. Sure, it doesn't make as much of its awesome premise as it could, and chooses to be short when it might have been better to expand the film's universe. But I can't blame it for that. Uma Thurman is great as the bipolar superhero, G-Girl. And I've discovered, after several years of disliking him, that Luke Wilson can be absolutely perfect when cast as a schlub. He's given two of the best comic performances of 2006 (the other in the pretty much unreleased Idiocracy). I absolutely cracked up at the expressions on his face when he and Thurman first have sex. It's one of the funniest sex scenes ever. My only real complaint is that they make G-Girl a bit too much of a psycho, like almost unbelievably so. Maybe with some background I could have accepted it better. I can forgive its flaws, though, because I had a really good time watching it. Underrated, for sure.\r\n1\tBette Davis' cockney accent in this film is absolutely appalling. I totally understand that Americans and other nationalities mightn't realise this and that's fine; but believe me, it's about half as good as Dick Van Dyke's cockney accent in Mary Poppins, and that was a right load of old pony (slipped into London vernacular there - many apologies).<br /><br />The remarkable thing to me is that the strange accents and exaggerated acting styles don't detract from the films' power. Of Human Bondage is a fascinating piece of cinema despite its superficial faults. It also has to be viewed in perspective. The technical and cultural limitations of film making at the time have to be appreciated, and given those limitations John Cromwell does a very good job directing the camera and allowing the narrative to develop cinematically rather than solely via the mannered acting and stilted dialogue. A fine example of his skillful direction is the scene set at Victoria Station. It is beautifully conceived, shot and edited. Note too the stark shots of the prostrate Mildred towards the end of the film; they owe more to the early days of artistic film making than the sanitised, formulaic world of the studio that was about to dominate.<br /><br />The themes of the film are universally familiar and compelling ones: sexual obsession, unrequited love, scorned passion, self-loathing, manipulative relationships, social divides and youthful folly. Though the dialogue is often rather hackneyed, the difficult task of portraying these themes and the inner lives of the characters is tackled well albeit in a low-key way. Some of the scenes of obsession and emotional rejection are uncomfortable to watch but the story doesn't descend into cliché; we're aware that the characters (even the poisonous Mildred) are both victims and perpetrators, and that their actions are motivated by their misunderstanding of each others feelings as well as by wilful selfishness. Whilst naive in style the story reaches to the complex heart of the human condition and the mannered nature of the acting and the occasionally grating exchanges don't diminish the veracity of the work.<br /><br />Of Human Bondage was one of the films that got Bette Davis noticed in Hollywood and whilst watching it you are conscious of being witness at the birth of a celebrated career. Her unconventional beauty and screen charisma (no one flounced or did disdain quite like Ms Davis) grab your attention from her first appearance. Whilst hers is definitely the memorable performance in the film, Leslie Howard is also excellent as the sensitive and fragile student Philip Carey. They are a good combination, though, why oh why didn't he help her with that terrible, terrible accent!?\r\n0\tThis is a sad movie about this woman who thought her ex who she loved so much was probably dead, but really his scientist dad had just put a spell on him to turn him into this really cute shark-guy. Kind of like in Beauty and the Beast. It could probably use a ballroom dance scene and maybe some singing candlesticks, but there are some pretty gross plants instead. They make this one girl really itchy, so she lets herself get eaten by the shark-guy instead of scratching through the whole movie. The scientist guy is a good dad who tries to reunite his fishy shark son with the woman he was engaged to, he even arranges for them to have private time for s-e-x, but the woman in this is a really shallow snob and thinks the shark-guy is an ugly, icky monster and wants nothing to do with him. She gave up on love! Just because he was a shark! I thought it was pretty sad how all she had to do was kiss him and he'd turn back to normal and they'd live happily ever after, but it's not that kind of movie.\r\n1\tThis movie is a real gem. The arc of the the plot is defined in the first 3 minutes, the characters are sympathetic and clearly drawn, their motives completely believable. The dialogue is fresh, and oh so real. The situations are unique to the characters and not at all cliched or hackneyed. Until the climax, that is. Then it's as if the movie went off the rails a bit and it got a bit hokey and unbelievable. But I don't want to discourage people from watching this film. The first 3/4's of it are truly remarkable. I gave it an 8. There are some remarkable performances here. Check out this movie.\r\n0\tThis one was marred by potentially great matches being cut very short.<br /><br />The opening match was a waste of the Legion of Doom, but I guess the only way they could have been eliminated by Demolition was a double-DQ. Otherwise, Mr. Perfect would have had to put in overtime. Kerry von Erich, the I-C champ, was wasted here. And this was the third ppv in a row where Perfect jobbed. Remember, before that he never lost a match.<br /><br />The second match was very good, possibly the best of the night. Ted DiBiase and the Undertaker were excellent, while the Jim Neidhart had one of his WWF highlights, pinning the Honky Tonk Man. Koko B. Ware continued his tradition of being the first to put over a new heel (remember the Big Bossman and Yokozuna?). This was a foreshadowing of Bret Hart's singles career, as he came back from two-on-one and almost survived the match. He and DiBiase put on a wrestling clinic, making us forget that the point of the match was DiBiase's boring feud with Dusty Rhodes.<br /><br />Even though the Visionaries were the first team to have all of its members survive (and only the second since '87 to have four survivors), this match was not a squash. This was the longest match of the night, and Jake did a repeat of his '88 performance when he was left alone against four men and dominated. I think he could have actually pulled off an upset. These days, the match would have ended the other way around.<br /><br />One of the shortest SS matches ever was also one of its most surprising. Possibly the most underrated wrestler ever, Tito Santana was the inspirational wrestler of the night, putting on war paint and pinning Boris Zukhov, Tanaka, and even the Warlord in the final survival match. It was so strange to see him put over so overwhelmingly, then go right back to his mediocre career. Sgt. Slaughter also did well, getting rid of Volkoff and the Bushwhackers, but that just wasn't a surprise. Tito was.<br /><br />I think the only point of the survival match was to have Hogan and the Warrior win together at the end.<br /><br />This show was boring and the matches were too short. The Undertaker's debut was cool, but Tito Santana is the reason I will remember this one.\r\n0\t\"This film is about a group of five friends who rent a cabin in the woods. One of the friends catches a horrifying flesh-eating virus. Suddenly, the friends turn on one another in a desperate attempt to keep from contracting the disease themselves.<br /><br />\"\"Cabin Fever\"\" is a horrible film. For one, it tries to be many genres at once. Is it supposed to be a homage, a slasher, a black comedy, or a scary movie with unintentional comedy? Nobody can tell. There's a serious scene at first and a second alter, it turns funny. When the film tries to be funny, the humor is quite bland, excluding the ending. I liked the ending a lot.<br /><br />But apart from the ending, I was pretty disappointed and disgusted. The violence is cringe-worthy, more looking away from the screen than being scared. The tone changes within each scene, sometimes funny, sometimes scary, and sometimes quite random. In fact, you see a girl doing karate in slo-motion. What are we supposed to get from that? This same girl would bite one of the characters. Was that supposed to be funny? I don't know.<br /><br />Some of the performances were decent, and many were quite amateurish. I didn't care for most of the characters. I liked the plot but the execution was done horribly. As a horror film, I didn't know what it was trying to be. I didn't find it funny, tense, nor scary. By the end, you're left indifferent, thinking, \"\"What have I just been through?\"\" Unfortunately, you'll never know the answer to that question.\"\r\n0\tWhen I first saw this film it was not an impressive one. Now that I have seen it again with some friends on DVD ( they had not viewed it on the silver screen ), my opinion remains the same. The subject matter is puerile and the performances are weak.\r\n1\tAnother Aussie masterpiece, this delves into the world of the unknown and the supernatural, and it does very well. It doesn't resort to the big special effects overkill like American flicks, it focuses more on emotional impact. A relatively simple plot that Rebecca Gibney & Co. bring to life. It follows the story of a couple who buy an old house that was supposedly home to a very old woman who never went outside, and whose husband disappeared in mysterious circumstances a century ago. Strange things begin to happen in the house, and John Adam begins to turn into the man who disappeared, who was actually a mass murderer. Highly recommended. 8/10\r\n0\t\"i'm being generous giving this movie 2 stars. the line about \"\"have you even seen the wizard of oz\"\" was the best part for me! with terrible writing and acting like displayed in this movie it's no wonder so many are taken in by worthless tv reality shows. do yourself a favor and get out of the house and hit a royals baseball game, your gonna be glad ya did!\"\r\n1\t\"Heh, if I tell you to compare The Dark Knight with some 18-years-old comics-adapted movie rated 5.9, will you call me crazy? That's just to catch your attention. Everyday I meet people complaining there are no good movies, who seem to only know the recent blockbusters. It's never a bad thing to search and explore old movies, especially those with good artistic values. Dick Tracy is one of those can't be easily outdated, in terms of technology.<br /><br />The negative reviews mainly complained about DT's \"\"messed up\"\" story. But it appears to me that the storyline is quite clear, and I had no problem following it. I didn't see the comic books, yet I am not a huge US comic fan, but I appreciate the top-notch film-making and performances. Maybe the expectations of most people were too high about the story it would tell. But, if you see a movie casting Madonna and Warren Beatty together, what would you expect. I had some scratches on my head, and can't help but wonder, did we really see the same movie? The title role, although not as competent as it sounds, still was able to pull him up and charm the audiences. Madonna was more express-less than \"\"breathless\"\" in her seductive role, but added a lot of fun to the story. Al Pacino was funny and prodigy to himself. Apparently he's bold enough to go sarcastic on his previously successful roles. We can see a hybrid of Scarface, Michael Corleone, Adolf Hitler and Robert De Niro punching our stomaches to make us laugh. And many thanks to make-ups.<br /><br />To me it's not bad at all. The surreal feeling really got me.\"\r\n1\tWell, What can I say, other than these people are Super in every way. I quite like Sharon Mcreedy, I enjoy this pure Nostalgic Series And I have the boxed set of 9 discs 30 episodes, I did not realise that they had made so many, I also think that it is a great shame, that they have not made any more. I wish that I got given these powers, Imagine me, being knocked off my cycle, somewhere and being knocked out cold, then waking up in a special hospital. Later on, I discover that my body has been enhanced. Just like Richard Barrat. These stories are 50 Minutes of pure action and suspense all the way, You cannot fight these 3 people, as they would defeat you in all forms of weaponry. The music is well written, and to me, puts a wonderful picture of 3 super beings in my mind, The sort of powers that the champions have are the same as our domestic dog or cats, Improved sight, Improved hearing and touch. and the strength of 10 men for Richard and Craig and the strength of 3 women for Sharon. Who I thought was beautiful and intelligent. When I was a boy, I had a huge crush on her!!!! Now I can see why, on my DVD set. The box is very nice and it comes with a free booklet all about the series. I also thought that Trymane was a good boss, firm but he got things done!\r\n0\tI had to write a review of this film after reading another comment saying that this is Sidney Poitier's best movie. Poitier had just returned from over a decade's break in film acting and he is clearly creaky here. 11 of his films are mentioned in Wikipedia and they don't include this. 5 of his films are on the AFI's list of top 100 inspiring movies, again, not including this. Berenger and Poitier, rube and city slicker set out to hunt down a dangerous psychopath before he crosses the border to Canada. Some of the attempts at comedy in this film clearly fail and Berenger and Poitier's bonding was cringeworthy and awkward (not helped by a completely bland script). Kirstie Alley (as the hostage) was underused, and almost entirely ignored when she was on screen. Some attempt at suspense is made, for example when you're meant to try and guess which of 5 men on a fishing trip is the murderer (all of them are type-cast villains). I understand that this is the entire appeal to most fans out there. I guessed who it was and I wasn't really trying hard.<br /><br />If you're a Berenger fan, watch the Sniper (1993), you even get to see Billy Zane strutting his stuff. It's much better. All in all I'd give Shoot to Kill 3/10. It's not daring, and it's just too straightforward for me.\r\n0\tI cannot say that Aag is the worst Bollywood film ever made, because I haven't seen every Bollywood film, but my imagination tells me that it could well be.<br /><br />This film seems like an attempt at artistic suicide on behalf of the director, and I for one be believe he has been successful in his mission. No A-list actor outside of this film would risk sharing the same billing as him for all the humiliation this film is bound to carry with it.<br /><br />But lets not just blame the director here, there is the cinematographer, who looks like he's rehearsing for the amateur home movie maker of the year award. There is the over dramatic score, that hopes to carry you to the next scene. The lighting man, who must have been holding a cigarette in one hand and light bulb on pole in the other, and hoping that the flame burning off the cigarette would add to that much needed light in every scene. And, of course the actors! Some of them are by no means newcomers, else all could be forgiven here. The ensemble of actors in Aag were put together to promote a new beginning and dimension to the re-make of India's most loved movie of all time, 'Sholay'. One must not forget that these actors were not forced in to this film, they are A-list and willing participants to something that, let's face it would surely have had high and eager public expectation??? So it begs the question, Amitabh aside (for now), did the other actors really believe their performances even attempted to better the original? Did Amitabh Bachchan read the script and believe that people would remember his dialogue in this farcical abomination of a film? Don't be stupid, of course he didn't, this was a demonstration to the public of how much money talks hence can make actors walk.<br /><br />I truly hope everyone involved is satisfied with what is truly a vulgar attempt to remake a classic film, which only succeeds in polluting everyone's mind when they watch the original.\r\n0\t\"I read somewhere that when Kay Francis refused to take a cut in pay, Warner Bros. retaliated by casting her in inferior projects for the remainder of her contract.<br /><br />She decided to take the money. But her career suffered accordingly.<br /><br />That might explain what she was doing in \"\"Comet Over Broadway.\"\" (Though it doesn't explain why Donald Crisp and Ian Hunter are in it, too.) \"\"Ludicrous\"\" is the word that others have used for the plot of this film, and that's right on target. The murder trial. Her seedy vaudeville career. Her success in London. Her final scene with her daughter. No part logically leads to the next part.<br /><br />Also, the sets and costumes looked like B-movie stuff. And her hair! Turner is showing lots and lots of her movies this month. Watch any OTHER one and you'll be doing yourself a favor.\"\r\n1\t\"It was a doubly interesting experience. For some reason the greatest scientific mind of the 20th Century had never been the central figure in a movie*. The closest I can think of as films with Einstein in them are CHAMPAIGN FOR CAESAR, where (like a \"\"deus ex ma-china\"\") the great man is heard clarifying a point on a radio quiz show, so that Ronald Colman is proved to have given the correct answer after all, and in BULLSHOT where the great Albert is one of a dozen leading physicists and scientists who are drugged with cannabis by the villain, intent on stealing some machines of theirs. It is notable that in those two cases, and in IQ, we are dealing with comedies. So far nobody has tried to do a serious film about the life of Einstein, like John Huston's attempt to do one on FREUD with Montgomery Cliff. I guess it is just too hard to get the world of mathematical equations or the secrets of electro-magnetic field theory into exciting dialog. But then, only three years ago Russell Crowe and Christopher Plummer did A BEAUTIFUL MIND. Maybe nobody really has tried.<br /><br />(*Subsequently, after writing this, I remembered the successful comedy YOUNG EINSTEIN with Yahoo Serious about ten years ago. But that is an exception and it was a spoof.)<br /><br />The other surprise was the actor playing the great Albert. It was Walter Matthau, here taking time away from the series of films he did with Jack Lemmon in that last decade of their careers. Matthau was a highly capable and gifted character actor, in both comedy and drama, but normally his comic personas were variants of his \"\"Whiplash Willie\"\" Gingrich from THE FORTUNE COOKIE. They were connivers and gonifs. Later they would shed their criminal propensities because we had grown to like them, but they remained grumpy types. But his Albert Einstein happens to be genuinely sweet. More like his Kotch than like Willie Clarke.<br /><br />He plays Albert as good old uncle Albert. It seems that Matthau's Einstein is living in Princeton with his niece Catherine Boyd (Meg Ryan), and she is seeing a stuffy professor named James Morland (Stephen Fry). But Fry's car needs repairs, and they take it to the auto shop where Ed Walters (Tim Robbins) works. Robbins falls for Ryan, who is attracted to him - but finds that he lacks the mental equipment that she admires. Good old uncle Albert, aided by his three friends (Lou Jacobi, Joseph Maher, and Gene Saks) decide to give their assistance to Robbins and make him an apparently unrecognized physics genius. This will open the doors of romance between him and Ryan, provided Ryan is impressed and Fry does not spoil things (as he hopes to do).<br /><br />The atmosphere is sweet, as when Matthau and his chums rig up a super physics quiz that they help Robbins cheat on (by switching the positions of their bodies). The plot eventually leads to the outright lie that the brilliant Robbins has constructed an atomic powered rocket ship - which brings in the interests of the nation in the figure of President Eisenhower (Keene Curtis).<br /><br />It was a charming comedy, and an interesting stretch for Matthau in that he was not as hyper as normal, but far more subdued.\"\r\n0\tWhen I am watching a film, I am aware that it is `just a movie,' but nonetheless I do like to allow myself to become engrossed as much as possible under the circumstances. I think this is what makes us cry, scream, laugh, or otherwise react emotionally as audience members, even though, deep down, we know it is `just a movie.' What I don't want is for the movie to remind me it is just a movie so that I am unable to slip into the aforementioned engrossment regardless of the quality of the film. This film's director chose to frequently use multi-angle camera shots simultaneously on the screen. Maybe it is just me, but I find this to be terribly distracting and downright irritating. They might as well run a continuous banner across the bottom of the screen reading, `Attention: This is just a movie. Do not allow yourself to become too interested or engrossed'. If I want `picture-in-picture', I'll activate it from my TV remote, but never during a movie I want to enjoy.\r\n1\tExcellent film from Thaddeus O'Sullivan featuring strong performances from a host of British and Irish actors. The film deals well with a thorny subject matter, and effectively captures the hopelessness and grim atmosphere of 1970s Belfast. Surprisingly realistic, it does nothing to glorify either side in this conflict. On one hand, it shows a young Catholic father trying to raise his family without getting drawn into the troubles. On the other it deals with a Loyalist gang who are intent on propagating violence. Very interesting and, thankfully, entertaining. Don't be expecting any laughs, though. 7 out of 10.\r\n0\tChecking the spoiler alert just in case.<br /><br />Perhaps one of the most horrendous movies I have ever seen, Mazes and Monsters felt like I wasted 101 minutes of my life. The only redeeming quality of the movie were scenes that tried to be serious, but just ended up being funny since they were so bad. Evil Dead anyone? Unfortunately for M&M (fortunately for us) it did not develop a cult following and result in a trilogy. This movie tried to address a series of problems that the main character, Robbie (played by Hanks) encountered throughout the film. It ended up being a fear mongering video about stereotypes that helped fuel the D&D is the Devil movement in the 80s.<br /><br />If you want to avoid wasting your time and money, steer clear of this junk.<br /><br />P.S. - Even though the cover looks kinda interesting, which is why I guess my brother bought it, it in no way takes place in a fantasy realm, unless you consider New England or New York City to be such a place.\r\n1\t\"\"\"Deliverance\"\" is a dead-on example of what wonderful movies came out of the '70s. While your jaw is dropped during a \"\"Terminator\"\" movie, are you really sacred? I don't think so, because you are there to see what new CGIs have been strung together - plot matters not.<br /><br />So many daily situations can become terrifying for no reason at all, because there are so many people involved in daily living - like a trip to the market.....or a walk down a dimly-lighted street. \"\"Deliverance\"\" is SO frightening, because those innocent actions can turn deadly in a heart-beat. Venturing into the backwoods is a frolic in fun? Anyone who has that notion does not read the papers, watch the daily news, nor has not seen some of the other movies that depict the seriousness of \"\"trespassing\"\" into territories where outsiders are not welcome. It is almost unbelievable that the advance dish on \"\"Deliverance\"\" didn't inform almost everyone going to view it this was no picnic, and \"\"squeal like a pig\"\" wasn't a part of \"\"Deulling Banjos\"\".<br /><br />I hate the term \"\"hillbillies\"\", because - as some \"\"users\"\" wrote - that demeans entire regions of people who are very content to live as they know how - without the interference of modern life. Much is made of \"\"inbred\"\" - that is not sexuality peculiar to the backwoods. \"\"Chinatown\"\" should teach us that lesson. However, city-slickers are extremely dumb to enter a closed society and give them attitude. I know lots of \"\"hillbillies\"\" - they are moral people, when left to themselves. Their \"\"justice\"\" can be brutal when they feel threatened or humiliated, just like the \"\"justice\"\" in city streets. They don't need any part of the city - the city should take its canoe-ing and camping to legal sites.<br /><br />\"\"Deliverance\"\" was the last film I found Jon Voight to do any real acting - I hope I'm wrong. He was extremely underpaid for \"\"Midnight Cowboy\"\", because he was unknown, but demonstrated that he could do that role at the drop of a hat. His acting in \"\"Deliverance\"\" was superb. It gave us a clear demonstration ordinary people can move mountains, if it's necessary - but who wants to be thought-of as \"\"ordinary\"\" today? His stifled sob at the dinner was brilliant. Wow! for Burt Reynolds !!! One must ask what led him into those other tacky films? His manliness, although misguided, in this film set the pace for the endurance necessary to make it out of the wilderness - not only in the backwoods, but the wilderness of everyday-life. Ned Beatty was stellar - his underwear may not have had \"\"Versace\"\" stitched on it, but his shell-shocked performance was perfect. As noted, he became stronger than any of the group by the end of the movie. Ronny Cox played the moral guy to the hilt - every man should have his determination to do what is right. Several \"\"users\"\" have theorized he was shot, or lost his balance when he pitched-into the river - my theory is that he was so disgusted with the whole journey, he committed suicide. No gunshot was heard during the scene and Voight and Beatty did not find a wound.<br /><br />James Dicey certainly knows how to weave a suspenseful tale, and was great as the sheriff - it is said he was so terrified of acting he came to the set drunk every day. His character could see the three canoe-rs were guilty of surviving, but also knew they didn't stand a chance against a jury of the local people, no matter how kindly they were treated in \"\"Aintry\"\". He was also aware that the meaner of the locals could be cruel. Justice ? - \"\"don't come back up here again\"\". Not many \"\"users\"\" knew \"\"hillbillies\"\" were used in the film where ever it was possible - what actors could portray them better? The \"\"mountain-men\"\" WERE actually mountain-men.......<br /><br />Every detail of this movie was perfect - no doubt it was dangerous to play in. Play in? Better \"\"fight-for-your-life\"\" in. I've experienced some near-dangerous incidents, and am content to live outside of the fray - you guys who feel your manhood raging can have my part.<br /><br />That we have absolutely killed - and continue to do so - irreplaceable areas of this country in undeniable. To be able to view its grandeur on any media is enthralling, but it leaves a bitter taste to realize some do not care about it. Los Angeles, where I live, is a perfect example: it's built-up right into the territories for wild animals, and steadfastly believes humans come before animals. Those are their rightful habitats - we should leave them be just that. Any wonder why coyotes and bears and wolves wander into neighborhoods? They're theirs.<br /><br />In some less threatening way, we all need to experience the lessons to be learned from \"\"Deliverance\"\" - to understand our advancement technologically does not lead to supremacy. I thank all those city-slickers who went out into the wilderness to produce this modern classic, so that it can scare the heck out of me when I watch it. You can have the thrill of danger - I'll stick to the TV. 30-out-of-10.\"\r\n0\tThis movie is just lame. A total waste of time and money. The jokes are predictable, the characters are so cliché and the way it talks about RPG gamers is not funny as well. The problem is that the writers seems not to know how a RPG game works and, most important, how to make jokes about this game. Of course there are a bunch of losers who play RPG like freaking retards and total losers. But for me this is not the funniest way to make jokes about this game. The story doesn't make any sense at all. Who cares about how long a game is being played? The greatest problem in this movie is that the writers and actors didn't even try to know what RPG is about to make jokes about it. I felt ashamed by watching this lame movie.\r\n0\tFirst off I really enjoyed Zombi 2 by Lucio Fulci. This film was utter trash. I couldn't stand to watch it. The storyline was a joke, the acting was a joke, and the fact that Zombi 3 has nothing to do with Zombi 2 is even more a joke.<br /><br />We jump from Voodoo to DEATH 1 THE HARMFUL AGENT BRINING People BACK TO LIFE. Whatever, this movie isn't worth the $1.00 it cost to rent it. I really enjoyed lucio fulci movies but this one was horrible. If Zombi 3 is an indicator for how zombi 4 and 5 are going to be I think I will just skip them.<br /><br />Zombi 2 is an awesome flique tho.\r\n0\t\"Watching \"\"Der himmel über Berlin\"\" as a teen in the late 80's was a profound experience for me - \"\"so this was what the movies could be\"\". Along with \"\"Paris, Texas\"\" and \"\"Until the End of the World\"\" it still holds a special place in my heart and mind - a testament to the genius of Wim Wenders.<br /><br />Unfortunately later years has seen a steady decline in the quality of his work with \"\"Million Dollar Hotel\"\" and \"\"Land of Plenty\"\" hitting a terrible low point. Gone are the captivating pictures or music. No search for or display of great insight. All that is left are characters and thinly veiled political statements, that boils down to nothing but clichés, and quite frankly mock the intelligence of a mature audience.<br /><br />Has the well run dry? Whatever the reason, it's time for Mr. Wenders to either step it up or stop altogether.\"\r\n0\t2 stars out of a possible 10 - and that is being overly generous.<br /><br />I thought with a cast of James Woods, Cathy Bates, Randy Quaid, Lou Gossett, Jr., and Henry Thomas - how could it miss. I was wrong.<br /><br />I can only wonder what drugs Sam Shepard was on the week-end he cranked out this piece of dribble. I'd long suspected Sam S. of being kind of nuts, this film, based on his play, confirms it.<br /><br />This is the kind of artsy b.s. that actors LOVE to sink their teeth into as it gives them a chance to endlessly emote. However, for the viewer who sits through this nonsensical trash, there is absolutely NOTHING to love about this movie.<br /><br />You haven't seen dysfunctional families until you've seen this bunch. Pa is crazy, Ma is crazy, the son is crazy and the daughter is, oh yeah, crazy. They also have mouths on them that utter words that would make a sailor blush, especially the teenage daughter.<br /><br />In addition to the above, as if that weren't enough, the plot--and it's so thin you could read thorough it--has a hole in it the size of Alaska.<br /><br />Ma is conspiring to sell their rundown farm. As it turns out so is Pa. Now I don't claim to be a real estate expert, but the last time I checked, property jointly owned must have both of the owners signatures in order to be sold. If only one of them owned the property, then the other could not legally sell it, so it would be pointless for that person to do so. Mr. Shepherd prefers to ignore this basic fact, and therefore, his plot does not work.<br /><br />Not that anything else was really working anyway.<br /><br />The only possible reason anyone could have for watching this film is if they are absolutely desperate to see James Woods in full frontal nudity, and I can't imagine why anyone would want to.\r\n1\tThsi is one great movie. probably the best movie i have ever seen. I Watch it over and over again. I must give it 10/10 stars because like i said this is probably the best movie i have ever seen. This Movie +Popcorn+Coke= Best mix you can imagine. If you want to watch some movie then i clearly recommend this one. First i sawed it i liked it so i buy-ed it and now i own it and watch it probably every day. my sons like it and think that this is the best movie ever seen. This movie is about Guy In Fantasy World. i don't want to spoil all the movie so you can enjoy it after you read my text. Lovely Movie Lovely Characters, Lovely Story, And Just great stuff. a must watch movie. hope you enjoyed my comment Cya<br /><br />Jim Make\r\n0\t\"The cast of this film contain some of New Zealander's better actors, many of who I have seen in fabulous roles, this film however fills me with a deep shame just to be from the same country as them. The fake American accents are the first clue that things are about to go spectacularly wrong. As another review rather astutely noted the luxury cruise ship is in fact an old car ferry, decorated with a few of the multi colour flags stolen from a used car lot. Most of the cast appear to be from the (great) long running New Zealand soap Shortland Street. It's as if this movie was dreamt up at a Shortland Street cast Christmas party, the result of too many gins, and possibly a bit of salmonella. Imagine \"\"Under Siege\"\" meets \"\"The Love Boat\"\", staged by your local primary school and directed by an autistic and you get the idea.<br /><br />If you are an actor, I recommend you see this film, as a study on how to destroy your carer.\"\r\n0\tThis movie still chills me to the bone thinking of it. This movie was not just bad as in low-budget, badly acted, etc. although it certainly WAS all of those things. The problem with this movie is that it seemed to be intentionally trying to annoy the viewer, and doing it with great success. What I want to know is, is this supposed to be a horror movie? I mean, it's definately horrifying, but not in the way horror movies are supposed to be. I could see the first segment trying to be horror and failing, but what the hell is the second segment? It's just annoying. The third segment is like watching an artsy student film, which amazingly enough makes it the least painful segment. It's an atrocity that this movie isn't way low on the bottom 100, so get your votes (1/10) in people!! I know some people gave this good reviews, but, well, they're lying in a sadistic attempt to trick you. Trust me, it is impossible to like this movie. The only benefit of this movie is an amazing life-extending effect: it feels like you've been watching this movie for years after only the first half hour has passed.\r\n1\t\"Ever since seeing this film as a child, over 30 years ago, I never tire of watching it. From the opening scenes in the horn factory, to the car motor running from the back seat of the car, to Ollie answering the phone and being accidentally pushed out the window by Stan, I think this was perhaps their best latter day film. After this they moved to 20th Century Fox, and while those films weren't terrible, they lacked the comic timing of this movie. Jimmy Finnlayson, their long time foil, in his last appearance with the boys, showing up as the Doctor is super! quote: \"\" I said goat milk \"\" his reply to Stan asking him how do you milk a ghost! Charlie Hall and even Ben Turpin show up! I'd say all in all one of my favorite L & H comedies.\"\r\n1\t\"It all starts with a suicide. Or is it a car crash? I guess it all depends on whether you choose to start at the beginning or the end. Director Gabriele Muccino gives you the ability to enter his new film Seven Pounds whichever way you prefer as he starts at the end and works his way back to the beginning, showing us the course of events that led us to that heartbreaking 911 call. This is one powerful movie; maybe that is because I'm a softy when it comes to dramas of this ilk, dripping with weighty moments and chock full of devastating performances, but either way, a film works best when it truly touches me, when it lingers in the back of my head hours after leaving the theatre. And this is from the team that brought us the overrated, sappy, and not all that redeeming Pursuit of Happiness, so I'll just say my anticipation was closely guarded for a big letdown. With all that, though, I was with Seven Pounds from the opening frame all the way until the credits rolled. Even though you figure out what Will Smith's character is doing, that secret mission he is trying to complete, it is the way in which he fulfills his penance that shines bright and leaves you with a tear-filled smile at the end.<br /><br />Our entry point is a bit jarring, leaving us off-kilter trying to comprehend what is going on. Smith's Thomas has lists of names, one of people we don't know and one of people it appears he is attempting to follow and audit. Working with the IRS allows him access to these strangers for a glimpse into their lives in order to see whether they are worthy of a gift he has the power to give thema gift that could completely alter their circumstances. He calls an old childhood friend (Barry Pepper) and reminds him to do what it is he promised, to not second guess his decision because there is no changing his mind. Even in a role as small as Pepper's, you can't help but feel the utter grief held aloft in the background, hanging above everyone's head. It is his character, seen maybe three times, that really encompasses the primal level of emotion being dealt with. His breakdowns, whether tear-streaked and composed or head in hands convulsions, show the bond these two men have is one that stands the test of time and any circumstance to come its way.<br /><br />After that phone call, begins the journey to meet new people. Thomas is on some sort of mission to help alleviate the monetary troubles of mortally ill folk, trying to stay afloat despite the heavy burden of medical bills and survival. This progression takes many turns, from a \"\"blind, vegan, meat salesman\"\" that he berates to see whether he can get him to explode; to a phase two donor-necessity heart patient, unable to print her line of stationary, or even run with her Great Dane Duke; to an abused and scared Latino mother of two, too afraid to leave her boyfriend; to a dying hockey coach that instills faith in a downtrodden youth community; to a little boy in need of a bone marrow transplant. There are people who live with the pain and inevitable future with a disposition of hope and wanting to cherish each day, and there are those attempting to beat it by cutting corners and spending all their money at the expense of those who need it to go out in style. Why it is up to Thomas to weed through the mix and find those that deserve his \"\"gift\"\" is unknown at first, as is why this man, seen in flashbacks as an aeronautical engineer with a beautiful wife and huge beachfront home, is now living in a motel, driving a beat-up car, going door to door in order to audit for the IRS. As he says, though, \"\"he kind of stumbled into the job\"\".<br /><br />Smith's quest as Thomas is a long and painful one, tempered with moments of clarity and honest compassion. As a man with the means to help, he takes his job seriously, crossing off people undeserving and testing those he believes are worthy to the nth degree. If that means he must yell and make fun of them, he must do it. At every step, though, you see the suffering in his eyes, the pain eating away at his soul, taking each step towards his fate, one as a saint of redemption, not only for those he wants to help, but for himself as well. It is an award-worthy performance and I only wish Smith would do more dramas like this instead of his blockbuster action summer tentpoles, because, while they are fun, this guy is too good for them. The man better win an Oscar before he is done or it will be a travestyat least in my mind.<br /><br />The rest of the cast is stellar across the board. Woody Harrelson as the blind salesman is pitch-perfect handicap with a joy of life. His shy smile and belief in humanity comes across throughout, whether on the phone being yelled at, sitting in a diner eating his pie, or at the piano in the park, playing for all who will listen. Elpidia Carrillo, as the abused mother, is fantastic, showing the hard evolution from prideful to scared to completely overwhelmed by the kindness of a stranger, allowing her family to finally be safe. And Rosario Dawson shines as the \"\"once hot\"\" young woman, beaten and broken by lengthy hospital stays, all but given up on living life to find love and happiness. It is the introduction of Smith's Thomas that opens her eyes again to be a woman, a free-spirited sexual creature that can just live without fear of wondering what day will be her last.\"\r\n0\t\"I had numerous problems with this film.<br /><br />It contains some basic factual information concerning quantum mechanics, which is fine. Although quantum physics has been around for over 50 years, the film presents this information in a grandiose way that seems to be saying: \"\"Aren't you just blown away by this!\"\" Well, not really. These aren't earth shattering revelations anymore. At any rate, I was already familiar with quantum theory, and the fact that particles have to be described by wave equations, etc. is not new.<br /><br />The main problem I have with this movie, however, is the way these people use quantum theory as a way of providing a scientific basis for mysticism and spiritualism. I don't have any serious problem with mysticism and spiritualism, but quantum mechanics doesn't really have anything to do with these things, and it should be kept separate. The people they interviewed for this movie start with the ideas of quantum theory and then make the leap to say that simply by thinking about something you can alter the matter around you, hence we should think positively so as to have a positive impact on the world and make our lives better. The reasoning is completely ridiculous, and the conclusions do not logically follow from quantum theory. For every so called \"\"expert\"\" that they interviewed for this film, there are scores of theoretically physicists who would completely disagree. They would point out, quite rightly, that the unpredictability of the subatomic world does not lend support to mystical notions about our spiritual connectedness.<br /><br />It disturbs me that people are going to see this film and completely eat it up because it leaves them with a nice positive feeling. The main thrust of the film is based on a total misinterpretation of quantum theory, and it is as bad in its reasoning as any attempt to justify organized religion with similar pseudo-scientific arguments.<br /><br />Avoid this film.<br /><br />Oh yeah. At one point, one of the \"\"experts\"\" says that since throughout history most of the assumptions people have made about the world turned out to be false, therefore the assumptions we currently hold about the world are also likely to be false. Huh? That totally does not follow. And even if it did, I don't see how that helps his argument. I mean, if his ideas ever became common assumptions then I guess we would have to assume that they are false too, based on his own reasoning.\"\r\n1\t\"As far as the Muppet line goes, however, this is not the best, nor the second best. This was marketed towards the kiddies, but has some dark, and emotionally upsetting adult moments, to which parents may not wish to expose their children. One of which showcases Miss Piggy going \"\"postal\"\" in a jealous rage, which lasts basically throughout the duration of this work.<br /><br />Beyond that, however, the story is progressive, and highly entertaining. One scene in which Joan Rivers and Miss PIggy go berserk in a department store is simply hilarious! And there are other parts of this work which contain the same level of levity and fun.<br /><br />I like this very much, and enjoy it still today.<br /><br />It rates a 7.6/10 from...<br /><br />the Fiend :.\"\r\n1\t\"This documentary follows the lives of Big and Little Edie Beale, a mother and daughter, who lived as recluses in their family mansion in East Hampton, NY from the mid-50s through the late 70s. By the time the filmmakers find them, the mansion is falling apart, and the women, one 78 and the other 56, share a squalid room. The older Edie Beale is the aunt of Jackie Kennedy Onassis and the younger is her first cousin. The women were originally going to be evicted from the house due to its decrepit condition, but Jackie sent them money for repairs so they could keep living there.<br /><br />At times this movie can seem exploitative, as neither woman seems in the best of mental health, but at other times, the movie is hard to look away from. \"\"Little\"\" Edie blames her mother for her current state, and her mother fires back that Edie was never going to be the success she thought she was. \"\"Little\"\" Edie often seems trapped in the past, focused on choices she made decades ago, and loves showing off pictures from her youth, where she clearly was a beautiful debutante. Her mother seems more resigned to her fate, to live out the rest of her life in terrible conditions. There are definite hints of the glamorous life both women once lead, from the pictures that show a happy family, to the grand portrait of the older Edie next to her bed. From what we see of the house, most of the rooms in it are empty, the walls are cracking and falling apart, and \"\"Little\"\" Edie leaves food in the attic for the racoons to feast on. And of course there are numerous cats running around.<br /><br />At its heart, this documentary is incredibly sad. While neither woman seems particularly depressed by their lot in life, the squalor they live in is utterly awful. It's not particularly clear if there is even running water in the house, and you get the impression that they have essentially been abandoned by their family.<br /><br />However, as a documentary, the film is a wonder to behold, and is highly recommended.\"\r\n1\t\"When Tsui Hark experiments, nothing and no one can withstand him. Legend of Zu is possibly 6Hours condensed into 1h40. One does not understand all, but like at \"\"2001 A Space Odyssey\"\" you also don't have to, but one feels the power of the film to every second, every picture. An extraordinary vision of the future of the 7th art and the one of the most pioneering, astounding, rejoicing in the recent years. VITAL severe MASTERPIECE! It's absolutely perfect as it is.<br /><br />When Tsui Hark experiments, nothing and no one can withstand him. Legend of Zu is possibly 6Hours condensed into 1h40. One does not understand all, but one feels the power of the film to every second, every picture. An extraordinary vision of the future of the 7th art and the one of the most pioneering, astounding, rejoicing in the recent years. VITAL severe MASTERPIECE! It's absolutely perfect as it is. 10000000000000/10000000000000\"\r\n0\tI just want to make one thing clear- I love Michael Vartan! But this film really lets him down. His acting is still superb, he's still as charming as ever, and he still looks great. But the film itself is a load of rubbish! Natasha Henstridge, I'm sorry to say it, comes over bit manly... you're constantly waiting for her to run off with her best friend, who's own sub-storyline is a little weird. Myself and my family (who sat down and watched the film with me) were also put off by the soundtrack to the film; at times the music just didn't fit with what was going on in the scenes. However, even this was not the worst aspect of what I found to be a very disappointing film. I could forgive the leading lady's butch-ness, I could forgive the freakish characters that were thrown in to the mix, and I could forgive the poor choice of musical accompaniment, but whose choice was it to cut out the whole middle section of the film and skip straight to the end??? The ending was obviously planned from the beginning but how it gets there is left untold. If you're a Michael Vartan fan skip this film: buy yourself a poster instead.\r\n1\tI can't believe it's been ten years since this show first aired on TV and delighted viewers with its unique mixture of comedy and horror. This is the show that gave birth to a good part of modern British humor: Dr. Terrible's House of Horrible; Garth Marenghi's Darkplace; The Mighty Boosh; Snuff Box. Many have imitated this show's style, and I don't deny some have surpassed its quality. But Jermy Dyson deserves being remembered for having started the trend, with actors Mark Gatiss, Steve Pemberton, and Reece Shearsmith.<br /><br />Together they created Royston Vasey, a sinister small town in England's idyllic countryside, where unsuspecting tourists and passers-by come across an obsessive couple that wants to keep the town local and free of strangers; where the unemployed are abused and insulted at the job center; where a farmer uses real people as scarecrows; where a vet kills all the animals he tries to cure; where a gypsy circus kidnaps people; and where the butcher adds something secret but irresistible to the food to hook people on.<br /><br />This is just a whiff of what the viewer can find in The League of Gentlemen. By themselves, the three actors give birth to dozens and dozens of unique characters. The make up and prosthetics are so good I actually thought I watching a lot more actors on the show than there were. But it's also great acting: the way they change their voices and their body movement, the really become other people.<br /><br />Most of the jokes start with something ordinary, from real life, and then blows up into something unsettling, sometimes gut-wrenching. Sometimes it's pure horror without a set up, like in Papa Lazarou's character. Just imagine a creepy circus owner on make-up barging into someone's house and kidnapping women to be his wives. No explanation given. It's that creepy. Then there are the numerous references to horror movies: Se7en, The Silence of the Lambs, Nosferatu, The Exorcist, etc.<br /><br />Fans of horror will love it, fans of comedy will love it. As any traveler entering knows, there's a sign there that says 'Welcome to Royston Vasey: You'll Never Leave.' Any viewer who gives this show a chance will agree. Once you discover The League of Gentlemen, you'll never want anything else, you'll never forget it.\r\n0\t\"I've seen better teenage werewolf movies in my time, this one however, takes the cake. More comedy than horror, \"\"Full Moon High\"\" puts the \"\"c\"\" in cheese-fest. The star quality in this movie is not bad. Just the way it was made just sends in rolling downhill. Adam Arkin plays Tony, an all-American high school football player of the 50's who ends up not aging due to a werewolf bite in Transylvania. The most annoying part of the movie was the violin player. He drove everyone batty! Ed McMahon plays his ultra-conservative father who met his end of his own bullet. Adam's father Alan plays a shrink who seems to be not top of his game. After all these years Tony seems to be very out of place due to the attack, and then he'll get the chance to catch in his state. More laugh than blood shed, this movie is just a start in the 80's, \"\"Teen Wolf\"\" was an improvement from this! 1 out of 5 stars.\"\r\n0\t\"Sloppily directed, witless comedy that supposedly spoofs the \"\"classic\"\" 50s \"\"alien invasion\"\" films, but really is no better than them, except of course in the purely technical department (good makeup effects). And any spoof that is worse than its target is doomed to fail (\"\"Casino Royale\"\", \"\"Our Man Flint\"\" are worse than almost any James Bond movie). After two hours of hearing the screeching voices of the aliens, you'll be begging for some peace and quiet. (*1/2)\"\r\n0\tThis movie really has no beginning or end. And it's really VERY unbelievable. Mary-K and Ashley are supposed to be interns working in a mailing room for an Italian fashion company. But, for some reason, they're put up in a 5-star hotel (conveniently located across the street from the Coliseum), and all of the other interns they work with are just as abnormally model-looking as they are. One thing that I found obvious in this movie is the way that one of the twins DOESN'T end up with the guy. I guess they tried to twist their usual plot a bit. Nice try.\r\n0\tFacts about National Lampoon Goes to the Movies, a.k.a. National Lampoon's Movie Madness:<br /><br />1. The movie is poor, even by Lampoon's typical standards. 2. It's not funny. 3. No one goes to see a movie.<br /><br />So, after I finished watching it, I began wondering why on earth it's called 'National Lampoon Goes to the Movies,' and why it was ever conceived, much less actually made. It would be like calling Austin Powers 'An American Guy Goes to the Movies.' How lame. He isn't American, and he doesn't go to movies. None of the characters in Lampoon's so-called 'satire' are funny, and none go see movies, which causes a bit of a problem. I had hoped it would be something in the vein of Mystery Science Theater 3000, but it isn't.<br /><br />This was National Lampoon's first film after Animal House, although you couldn't tell it from the quality of film. Poorly developed, rough and amateurish by any standard, it induces headaches  not a good sign for an 89-minute movie that seems double the length.<br /><br />I've noticed a pattern. Really bad movies are typically renamed  and this little disaster falls under that category. It has two separate titles -- probably to help try and promote it to people too stupid to remember how bad a panning it received from home video critics in 1982/83. 'Hmm, Movie Madness  I've never heard of this movie before! Let's rent it!' And then, the realization: 'Hey, wait a minute, this is just National Lampoon Goes to the Movies!'<br /><br />It was shelved by MGM/UA, never to be released into theaters or DVD; it occasionally pops up on television a few times per decade, which is just about the only place you'll manage to find it.<br /><br />It's split up into three stories  a parody of self-enlargement videos, butter and corporate ruthlessness, and police brutality/cop-buddy films (I guess). The first segment stars Peter Riegert (Animal House) as a frustrated guy who divorces his wife and does some other stuff. I'm not sure what because it was so boring my mind started to drift. Until the sex scene popped up.<br /><br />Part II is about an exotic dancer raped by a stick of butter (don't ask) who decides to become Queen of the Margarine so she can cut off the supply of dairy products. Ouch! This contains the only funny line in the movie: 'Only I can make love with my son!' If you think that doesn't sound very funny, you're right  it's not. And just imagine  it's the highlight of this film!<br /><br />Part III is about a cop who chases down a serial killer (Christopher Lloyd) only to lose his nerve and shoot the guy. It does contain one funny scene but it's extremely over-acted  only Lloyd really exhibits any humor, playing his character dry and compassionate, yet strangely surreal. The part where he's choking his victim and the meek cop stands by watching it all unfold, at least, evoked a chuckle or two.<br /><br />It's a shame to watch such a cast of semi-famous names resort to low standards. The writers of each segment clearly believe that they're being very ironic and clever by spoofing so-called stereotypes  the fault being that the movie becomes one huge contradiction, favoring the standard T & A instead of plot; crude humor instead of witty dialogue; desperate performances instead of inspired ones. It's easy to see that none of the actors were enthralled with the material, muttering their lines, often so embarrassed they can seldom make eye contact with the camera.<br /><br />The movie isn't funny, as I said before. I laughed once, at only one line, and even then it was a halfhearted one. Two chuckles, a smile, and a very weak laugh. Compared to Movie Madness, a number of other decent comedies seem like regular laugh tracks.<br /><br />I like National Lampoon's Vacation series (or, at least three of four installments), and their classic Animal House, but their recent slew of direct-to-video bombs such as Golf Punks (with that great comic genius Tom Arnold) provide a good example of why their magazine went out of print more than a decade ago. It gets really old, really fast.<br /><br />Sad to see a new film, called Gold Diggers, is being released with their 'stamp of approval.' It's like condemning a film before it even hits theaters  maybe they should start not advertising their name all over the place<br /><br />Distributor: 'This movie is bad. It gets the National Lampoon stamp of approval. That'll teach you not to make something so awful next time.'<br /><br />Forget the death penalty. Just stick a bunch of criminals in a room and make them watch this over and over every day for a month.<br /><br />It's so bad that I can't even begin to explain its putrid vileness. I give up.\r\n0\tYou could say that the actors will make a movie, but this clearly proves that statement wrong. Most of the characters in this film lack anything to hold on to. They play the part of cardboard cut outs being moved about in predictable and uninteresting ways. The story is very simple. It could be summed up in a few words, but I'll hold back in case anyone reading does want to see this film.<br /><br />I had to fast forward the parts where Jack showed us how to be an obnoxious eater. I'd have to say that 70% of this film revolved around cooking, eating, or getting ready to eat. Quite frankly, I'd rather not spend my time watching Jack chew noisily with an open mouth. Personally, I could have done without the footwear references and jokes that pepper the first half of the film too.<br /><br />Outside of my own personal dementia, the film really lacked anything worth it's time. There were countless scenes and camera shots that felt like it was dragging. When something happens, the reactions of the characters are vague and dry.<br /><br />Best not to look this one up.\r\n0\tMay (Anne Reid) and Toots (Peter Vaughan) are paying an apparently infrequent visit to their son Bobby (Steven Mackintosh) and his family in London. Even as the visit begins, Toots suffers a fatal heart attack, leaving May adrift, unsure, and questioning her life and future. Finding herself attracted to her daughter's boyfriend Darren (Daniel Craig), her actions lead to inevitable consequences.<br /><br />Beautifully filmed, but for all its heralded realism and acclaim, The Mother offers a collection of mostly unpleasant, even repellent characters, and asks the viewer to engage with them. Reid shines as May, and it is her skill and commitment as a wonderfully understated actor that salvages the film from a completely depressing mire, but Michell and Kureishi have allowed Craig, Mackintosh and Cathryn Bradshaw to create such utterly obnoxious characters, that it becomes increasingly difficult to care what happens to May. As written, the characters played by Mackintosh and Bradshaw are in fact so utterly selfish and cold-hearted that one begins to wonder what exactly was Kureishi trying to say. As directed, they are either unwilling or unable to lift Bobby and Paula above the two dimensional in their ghastly selfishness. <br /><br />Worth seeing for Reid's performance, but little else. A crying shame...\r\n0\tSpirit of a murdered high school geek animates a scarecrow which then takes revenge on everyone.<br /><br />This movie really annoyed me. It has a great looking monster, has some good low budget effects, some atmosphere but manages to short circuit the good stuff with bad. Half way in I started to fast forward and then step through the chapters on the DVD.<br /><br />The problems with this movie are many. First off the cast looks about thirty and yet they are suppose to be in high school. You don't believe anything from the get go as a result. The scarecrow, while looking great isn't much beyond that. He says stupid one liners and moves in a manner more designed to be funny then scary. Is this a comedy or a horror movie? Its a problem that goes beyond the one liners to much of the dialog and set up. It seems more send up of every cliché than heartfelt horror film. I some how expect that the film was made for a very narrow audience in mind, horror fans who want to mock the genre rather than embrace it.<br /><br />Despite the good looking monster this is a film to avoid. Even if you pick it up in the bargain bin for under five bucks, you're paying too much.<br /><br />Avoid.\r\n0\t\"***SPOILERS*** ***SPOILERS*** Continued...<br /><br />From here on in the whole movie collapses in on itself. First we meet a rogue program with the indication we're gonna get ghosts and vampires and werewolves and the like. We get a guy with a retarded accent talking endless garbage, two 'ghosts' that serve no real purpose and have no character what-so-ever and a bunch of henchmen. Someone's told me they're vampires (straight out of Blade 2), but they're so undefined I didn't realise.<br /><br />The funny accented guy with a ridiculous name suffers the same problem as the Oracle, only for far longer and far far worse. He has a simple point about cause and effect, makes it, then continues to make it and make it until it becomes convoluted and stupid. His final line before walking off is comparable to Storm's \"\"do you know what happens to a toad...\"\" line in X-men in levels of utter bland baddness. The chocolate cake is such a lazy, pathetic cliche and Monica Bellucci as the wife does nothing other than exactly what we expect the moment we see her.<br /><br />And then we get another kung fu fight!!! WHY? Neo is, allegedly, The One. He can do anything. He has the ultimate power and what does he use it for. Kung bloody fu all the time. And while he can stop 1000 bullets, he still gets cut by a sword and still makes a meal of 5 undecipherable henchmen (vampires?). I wanted to see mind blowing powers. I wanted to see him do the wildest, craziest most insane s*** to people because he can do anything. I got the same as before without the 'wow'.<br /><br />The fabled car chase. That can't be bad. Well... no, it's not. It's just not what we've been tyold it was going to be. ALL the cool shots from this scene are in the trailer. Every one. So all possibly Wow has been taken from us so all we now get is a good chase sequence with, guess what, a kung fu fight!!! OK, it's not Neo, but you'd have thought he'd have explained to his closest friends about the reality of the Matrix. At least taught them something. It's not hard.<br /><br />\"\"Hey, Morpheus, don't worry about what happens to you in the matrix. It's not real. As long as you understand that nothing's real then nothing can really harm you.\"\"<br /><br />There you go. Simple.<br /><br />OK, so the chase is not bad. It's never boring and it doesn't seem like 16 minutes. It's just so underwhelming. And still, it gets worse.<br /><br />The final climax to the movie is quite probably the worst imaginable. They have this whole elaborate plan that involves three crews. They then only show it sporadically between Morpheus's over long, super preachy, monologue. To make it worse, they never clearly define what this plan that needs 3 teams is. You know basically, but you don't know who's doing what, when, so when one crew goes down you just don't care and you don't know how this is going to affect what goes on.<br /><br />I'll sum it up though, it happens so Trinity can get back into the Matrix to setup the end. That's the only reason it happens. Which raises the question, why did they need to send 6 people originally? Trinity gets in in five minutes by herself!<br /><br />Neo's journey to the centre of the Matrix (so to speak) is handled equally lazily. Ooohhh!!! He runs into another 100 Agent Smiths!!! Woooooo!!! That must've taken a lot of thought. Only now they're in a corridor so the fight has no scale and is over in a moment. Man, what a grand finale!!!<br /><br />And then the Architect!!!<br /><br />Remember everything I said was bad about the Oracle and the foreign guy? Add them together and double it, that's how truly appalling the Architect is. The only reasonable potential of him is he's about to set up the cliffhanging climax.<br /><br />And then he blows it!<br /><br />Let's look at the options he gives Neo. Choose one door and all humanity dies (except 27!!!). Choose the other and all humanity dies!!! Considering choice is something this film tries to explore it doesn't really give it's hero one. If he had a choice of Save humanity and the missus dies or Save the missus and kill humanity there's the potnetial for inner torment and tension. Also, with Trinity being mid fall, the potential of a real cliffhanger that would've made seeing the third more essential. But no. He has save no-one or save the missus.<br /><br />Now, the very worst thing about the original Matrix was Neo dying and then coming back to life right at the end. The year it came out everyone was so annoyed by how stupid Jar Jar was they didn't notice that the very end of The Matrix made him look him Steven Hawking. \"\"The Oracle told me I'd fall in love with the One, and I love you\"\".... Come On!!!! How can the whole world have missed how utterly terrible that was?<br /><br />So, what do the Wachowski's do in the sequel? Well, they make the ending of the original look better. How? Well, by doing almost exactly the same thing again (only swapping characters) only so much worse I think my f a and r keys would be worn out if I kept writing far before I got to worse.<br /><br />And the cliffhanger is just not really a cliffhanger. It's a reminder.<br /><br />Basically, this film is just bad. I really didn't want it to be bad, but it is. Bad in just so many ways. And to make matters worse, this isn't a film with not enough budget. It's not a film with too short a schedule. It's not a film that's been rushed out. It's not a film where too much influence has come from the outside. This is exactly the film the Wachowski's set out to make with Warner's fortune fully behind them. And that's what makes this so awful. At least Rancid Aluminium can say that it didn't haev enough time or money.<br /><br />Matrix Reloaded. The worst film ever made? Maybe not quite. The most disappointing and defalting film ever made.<br /><br />Undeniably.<br /><br />\"\r\n1\t\"This two-parter was excellent - the best since the series returned. Sure bits of the story were pinched from previous films, but what TV shows don't do that these days. What we got here was a cracking good sci-fi story. A great big (really scary) monster imprisoned at the base of a deep pit, some superb aliens in The Ood - the best \"\"new\"\" aliens the revived series has come up with, a set of basically sympathetic and believable human characters (complete with a couple of unnamed \"\"expendable\"\" security people in true Star Trek fashion), some large-scale philosophical themes (love, loyalty, faith, etc.), and some top-drawer special effects.<br /><br />I loved every minute of this.\"\r\n0\t\"When I saw that Mary Louise Parker was associated with this epic novel turned film, I was intrigued. Being a fan of the book, I assumed she'd be playing Tony, Roz, or Charis, but more so, I was intrigued to see how they would turn this very head-y, almost psychological (but not psychological thriller) novel in to a movie that would be accessible to those who hadn't read the novel, and that would be at least mildly satisfying for those who had. The book is a complex reflection of society, women, and modern life, and I was interested to see how they used the 3 different narratives that lead to the unfolding of the story in a film. What they actually did was a crime.<br /><br />The biggest error and confusing issue is: Why would Oxygen, a network that advertises as being for women, take an amazing book about how complex, wonderful, and terrible women are and can be, and change the protagonist from 3 women to some dumb former cop with no real motive to be involved in the story? It seems like whoever adapted it took an easy way out by using this guy to straight up ask Roz, Tony, and Charis about how they knew Zenia and in doing that, they rushed through bulk of the book. In doing this though they muddied the story and cut everything that is great about the characters in it, aside from making it so the audience had no one credible to associate with. In the film, these women aren't people, they are characters.<br /><br />In the book Zenia does fake her death, but the book mentions it to get this point across, while the film wastes 30-45 minutes focusing on this former cop running around and doing nothing of use. They tried to make this complex book an episode of Law and Order or CSI.<br /><br />It turns out that Mary Louise Parker played Zenia, which was SO wrong. Zenia is a Catherine Zeta-Jones, Angelina Jolie, or maybe even a Scarlett Johnasson type. She is a woman men can't not adore, and a woman that women are intrigued and threatened by, but in a \"\"keep your enemies closer\"\" kind of way. And once she gets closer, she seems totally genuine and trust worthy, despite your better judgment. She's the kind of woman who, even when she loses, she wins: she's always still beautiful, still rich, and there are always still people out there who don't know her game.<br /><br />In the film, Zenia didn't take Charis's man (the blonde American draft dodger who was using Charis in the first place...) but instead took August and tried to become her legal guardian (and apparently came back to be her Lesbian lover as a lingering kiss at the coffee shop implies). And Zenia did kill the chickens before leaving with August, but it made no sense since all of the build up to it was removed. It's was as if whoever wrote the screenplay was grasping at straws to satisfy those of us who read the book, but I think had I not read the book, I would have spent the whole movie confused, if I had bothered to stick with it at all.<br /><br />And Roz's husband was dead before Zenia came in to the picture (which was weird since Zenia took Roz's business AND home life in the book, which is why Roz hated her so much) and she and Zenia had conspired to kill Roz's husband years and years back. And according to the film Tony and West had been dating forever...even at the party where Zenia and West (in the book) had painted the whole place black and they made Tony seem like this totally with it (and evil, bitchy) person who was always respected by everyone for her intelligence and popular for it. Tony's character was SO wrong in this film...she seemed a little psycho and like the mastermind behind whatever conspiring was going down as opposed to the kind of gawky, mildly reclusive teacher that she was in the book. The film basically implied smart women are evil, beautiful women are evil, powerful women are evil, and women who teach yoga are off their rockers.<br /><br />They basically tried to make it so Zenia wasn't necessarily as awful as she was in the book, and then, in the end, the three women convince this former cop (who, of course in the process of researching this, meets Zenia and has an affair with her that is supposed to end with them moving to Barbados or something ridiculous, which of course Zenia bails on) to hide Zenia's body (which they found splat at the hotel she was staying at, but the film implies that one of the three women pushed her over the balcony, or they conspired together to do it...) and then Zenia also managed to take all of Roz's money in the process. By the end of the film I was only half paying attention between commercials b/c it had spiraled so far out in space from what it could and should have been.<br /><br />If you aren't confused by this breakdown of the film, then maybe you would like it, because I have read the book and seen the movie, and from the movie alone I am ridiculously confused. It was terrible. I get that making a film out of that book is quite a task, but if you are going to take on the task, you should start by determining what in the book is unnecessary, instead of creating some useless character to be our Alice in wonderland. <br /><br />Are there really no fluffier books that Oxygen could be making at least half decent TV movies of?\"\r\n0\tI do get irritated with modern adaptations of Shakespeare when the director can't make his mind up whether to use the original or to update it. If it's using the original words in an updated setting, that's particularly tricky if set in the 20th or 21st century although it can work OK in period styles, eg the Trevor Nunn Twelfth Night set late Victorian very effectively. It could work with the 30's setting if only there had been far less of the song and dance and far more of Shakespeare's text. Unfortunately, it just ends up being a pretty trivial though very pleasant show. <br /><br />Another problem is Branagh himself. I agree he's far too old to play one of the students but more important, he's such an experienced Shakespearean actor that in spite of all his efforts to be just another student, his strength of acting shows all the time. Of course he should have played the King - no problem in having a mature student King surrounded by younger students. Instead we had a pleasant but unimposing actor for the King, thus an unimposing so-called King with no Kingly attributes. <br /><br />The amount of song and dance, which I found tedious in spite of the nice songs and pleasant enough dancing, unfortunately meant the great Shakespearean dialogue had to be cut down drastically. So the whole thing ends up a trivial and mild confection, and I got very bored, including with the comic turns, and was glad when it ended. Branagh has not done Shakespeare justice in this production.<br /><br />Accolades however to Richard Briers and Geraldine McEwan, absolutely splendid as the older couple.\r\n0\t\"If you've read the original novel, as I did, you will probably hate this thing.<br /><br />The film version of _Absolute Beginners_ is a nightmarish conglomerate of 1980s anachronisms attempting to create a \"\"period piece\"\" set in the late 1950s and failing to re-create or even pay homage to that period -- the US monstrosity of _Dirty Dancing_ does similar to 1963, except that film proved financially successful despite having equally amateurish screen writing. In addition to suffering from \"\"looking too 1980s\"\", the characters have been changed, re-arranged, and downplayed to the point that the only characteristics they have in common with those of the novel are the slightest superficial looks and, of course, their names: Suze is transformed from the narrator's flighty ex-girlfriend and promiscuous negrophile who willingly plans to marry a closeted old queen for money (at her own admittance in the first few pages) into a hapless and naive \"\"Eve\"\"-archetype seduced by fame and glamour, exploited and somehow scammed into a sham marriage by her boss, who surprisingly wasn't given a Van Dyke and pointy hairstyle. She and the narrator, re-named \"\"Colin\"\" (after the book's author, Colin MacInnes) for the film, are also in a relationship.<br /><br />Big Jill's character, a lesbian seemingly butch yet \"\"fop like\"\" in her mid-20s who acts as pimp to a cadre of young and bubble-headed lesbians, and one of the narrator's closest friends, dispensing frank wisdom to the narrator, is reduced to a sort of \"\"named extra\"\" with only a few throw-away lines, and tonnes of comical outfits.<br /><br />The Fabulous Hoplite, a gay young man and another close friend of the narrator in the novel, is also reduced to the point of being pointless in the film, camped-up and all but ignored.<br /><br />The narrator's father in the novel is a sort of sad minor character but in the film, he's played to come off as optimistic and oddly spirited despite the squalid neighbourhood, and the disarray of his marriage to the narrator's mum seems, for all practical purposes, ignored.<br /><br />In its favour, the music (for what it is) is well-composed, and you have to give the production and writing crews credit for actually taking a line from the book (\"\"...some days, they'll write musicals about the 1950s...\"\") as their inspiration to write a musical, but in the world of bad camped-up musicals, this is among the most poorly executed in the bunch. Unlike _Shock Treatment_ or _Starstruck_ crucial plot elements are treated as afterthoughts. Unlike _The Apple_, there is a choppy and uneven flow between musical numbers and spoken dialogue.<br /><br />You really can't blame it's \"\"too 1980s\"\" feel on the fact that it was created in the 1980s. The film version of _Annie_ released in 1981, pays a wonderfully well-executed tribute to the look and feel of New York City in the 1930s, and _Napolean Dynamite_ manages to capture a gritty sort of look and feel of the 1980s despite being made on a low budget in 2003 (though it's not explicitly set in the 1980s, those who lived through the decade cannot deny that the film \"\"feels very 1980s\"\"). Obviously, it was _possible_ to make something good out of this, especially considering the iconic status that the source novel has in the UK, but it fails most apparently in the look and feel, and also in its treatment of the source material, which is downright disrespectful.<br /><br />Perhaps if you haven't read and have no intentions of reading the novel, you could enjoy this campy 1980s anachronism giving a shameful parody of late-1950s Soho London's modernist jazz set. I can definitely see what the writing team were attempting, but they definitely could have done better. With Boy George as a household name and mixed-race musicians and bands on the charts in 1986 UK, they definitely did _not_ need to bowdlerise the characters in the ways that they ended up doing. In fact, I'd go so far as saying that the writers wound up doing what both the book and film criticised harshly -- it ended up having a bunch of adults cranking out crap and treating its targeted teen-aged audience like two-bit idiots to make a quick buck off of.\"\r\n0\tSPOILER WARNING: There are some minor spoilers in this review. Don't read it beyond the first paragraph if you plan on seeing the film.<br /><br />The Disney Channel currently has a policy to make loads of movies and show one a month on the cable channel. Most of these are mediocre and drab, having a few good elements but still being a disappointment (`Phantom of the Megaplex,' `Stepsister From Planet Weird,' `Zenon: Girl of the 21st Century'). Every once in a great while, they make something really, really great (`Genius,' `The Other Me'). But once in a while The Disney Channel makes a huge mistake, and gives us a real stinker. This month (December 2000) The Disney Channel featured `The Ultimate Christmas Present,' which I thought was terrible due to poor writing and worse acting. Apparently, `The Brainiacs.com' was rushed out a few days before Christmas to get a jump on the holiday, because the plot has to do with toys. They even paid for a feature in the TV Guide, so I thought it must be better than the norm. I was in for a complete shock. Only Disney's `Model Behaviour' has been worse than this.<br /><br />The plot was more far-fetched than normal. I usually let that slide, but here it just goes too far. Matthew Tyler gets very sick of his widowed father spending most of his time at work. His father owns a small toy factory that has taken out large loans at a scrupulous bank to stay afloat. Time and time again, his father has to skip out on the plans he makes with his son and daughter. Matthew decides that the only way he can spend time with his dad is if he becomes the boss and orders him to stay home. He gets a hair-brained idea to create a website where kids all around the world can find and send him a dollar to invest in a computer chip that his sister is inventing. That whole concept is full of fallacies. When kids send in millions of dollars, Matthew opens his own company's bank account and buys up most of his dad's business's stock. He is the secret boss, but he doesn't reveal this to his dad, but instead presents himself at board meetings as a cartoon image through a computer. That image itself is so complex (and ridiculous) that it isn't possible for someone to create it at home, much less someone who comes across as stupid as Matthew. To make a long plot short, Matthew orders his dad to spend more time having fun and doing stuff with his kids, but a federal agent shows up inquiring about Matthew's company, as it is fraudulent.<br /><br />There's so much wrong here. As mentioned, the stuff they do here is impossible even for true geniuses, which these kids are not. The website, the cartoon image, the computer chip, even the stuff they are being taught in school, are far too advanced for these kids. The acting by most of the cast, especially Kevin Kilner, is terrible. Some familiar faces are wasted. Dom DeLuise plays the evil bank owner, but his part is a throwaway. He has one good scene with Alexandra Paul (who shows she has the ability to act) in which he explains his motives, but nothing more. And Rich Little is wasted in a small role as a judge. There's even some offensive and uncalled for anti-Russian jokes. But the greatest atrocities are the hard-hammered themes. These themes show up in many of The Disney Channel's films, but never before have these ultra-conservative messages been pounded so strongly. The typical `overworking parent' idea is really pushed hard, and after delivering it inappropriately in `The Ultimate Christmas Present,' seeing it again sours my mood. Family relations are important, but Disney must stop this endless preaching, because working is important to maintaining a workable family, too. Except for cancelling activities thanks to work, the father didn't come across as that bad, but I found it offensive when the grandmother told him `I don't like what I see.' Just as bad is the preaching of the idea that all single parents MUST marry if they want to raise their kids right. Enter Alexandra Paul, whose character, while important to the plot, is there solely to be the love interest for the father. This offensiveness only proves that the Disney brain trust lacks the brains to avoid scraping from the bottom of the Disney script barrel. Instead of letting this movie teach your kids how to commit serious fraud, wait for the next Disney Channel movie. It has to be better than this. Zantara's score: 1 out of 10.\r\n1\t\"\"\"Pet Sematary\"\" succeeds on two major situations. First, it's a scary Horror movie. Those that just aren't produced in these days. Second, it's an emotional, clever movie overall. So if you are looking for chills, scares, creepiness and visually stunning settings, great acting, dialongs, and gruesome effects; this is the movie you are looking for. A classic now and truly a must see for any Horror fan. <br /><br />Probably, the best adaptation to any of King's novels. The events feel a little rushed compared with the novel, but that doesn't means that this underrated movie isn't a complete Horror/Drama accomplishment. <br /><br />Stephen King's novel is widely known for being very emotional and gruesome at the same time. The movie captures the same feeling mainly because there's a great character development and you can feel the loving relationship between it's members. Then, when everything seems to be happiness (technically happy, because the title \"\"Pet Sematary\"\" does not offers appiness!) a tragic event changes the movie's atmosphere, now it turns very dark. The movie has a sinister feeling since the opening credits, but after Gage is killed the movie becomes sad, gray, creepy. Dealing with the loss of a baby son is something that can ruin a family's entire life, and \"\"Pet Sematary\"\" proves it dramatically. <br /><br />The legend behind the pet sematary is more than a myth that no one wants to experience, but sadness and desperation lead an emotionally destroyed father to give it a shot. Sadly enough, the legend comes true and baby Gage returns from the dead. The previous encounter with the pet sematary legend turned out to be a tragedy but this time it's something much, much worse. What will happened with the lives of our All American family? Could Pascow prevent this tragedy? What is it with the surreal nightmares? <br /><br />Watch \"\"Pet Sematary\"\" to witness one of the most touching, emotional Horror movies of recent times. You won't regret. The acting is very good although I didn't dig the actor who portrayed the father. He didn't seem disturbed enough when the situations asked for his desperation. But that's just my opinion. Denise Crosby truly delivered a great performance and worked perfect as the noble, tender mother. Baby Gage was amazing even on his creepy parts. *Shivers*. Overall this is a great classic of all time and a disturbing movie that touches people's deepest fears... the loss of someone you love, the dead returning to life, and a feeling of desperation.<br /><br />Something is for sure... I don't wanna be buried, in a pet sematary!!\"\r\n0\t\"I saw not so fabulous rating on IMDb, but I went to see it anyway, because I am a big fan of Bible related material. First thing that bothered me was a little too much Indiana Jones wannabe movie, but it also looked like Casper Van Dien didn't see those Jones movies through (but he should). I believe he tried his best, but script just stunk. Music tried to be kinda Jones style too. Great work, but for such movie it seemed like too much work, like the video part did't deserve all that great music. Robert Wagner gave his best acting skills, he did a good job, but somehow the script was bringing everything down. \"\"Jokes\"\" are old school, somewhere 20 years old; they brought only cynic smile to my face. There are some really bad camera angels, SFX looks like homemade and unrealistic. Kevin VanHook had probably a good idea on the story (in my opinion, but I love such stories), but things just didn't work out in the end. Maybe he should put it on a paper when it was still fresh in his head. When I (in first minutes) saw that movie was going to be one of those 'low budget movies', I hoped that I will at least 'hear' a good story, but sometimes movies just disappoint.\"\r\n1\t\"I think this has the potential of being the best Star Trek series yet, I say POTENTIAL.. we all know there is a chance they will drop the ball and run out of ideas... BUT I HOPE NOT! For those that have not seen it..SEE IT! Without that annoying \"\"PRIME DIRECTIVE\"\" floating over their heads every time they encounter races it could be cool.. and Scott Bakula was without a doubt a GREAT CHOICE for Captain, and the Vulcan Babe is hot too, (Check out the decontamination scene)I gave this a FULL 10... it blows away ALL the other series openers.. I hope this goes longer than 7 years...\"\r\n1\tI happened upon this movie as an 8-10 year old on a cold, dark November afternoon. I was outside playing all day, freezing, and when I came in around 4pm, I had a cup of hot cocoa and sat down in front of the TV with a blanket. I was surprised to be watching a cartoon that wasn't all happy and silly--and was in fact dark, and moralistic. It captured my imagination. I'm sure it misses the text, and is abbreviated in all the wrong places for the Tolkien purist. But it still captures the spirit of the story, the choice to carry a burden for the good of others, the consequences of selfish, rash decisions, etc. The quality of animation leaves room for complaint. But the one place where this movie clearly rises above the new films is the voice characterizations. John Hurt is great in this. If you don't like how the character is drawn, look away, and just listen to him. His voice is extraordinary. I've seen it again many, many times and it always brings me back to that time, as a kid, thirsty for some magical adventure. It's for this reason I say 'lucky', the film is nostalgic for me so I overlook its shortcomings. But between John Hurt, and Tolkien's fantasy, it still reached me, and still does.\r\n1\t\"In today's world of digital fabrication, there is no computer than can replace the actor and writer. Alas, this type of \"\"character driven\"\" film is far too rare these days. Duvall's performance as well as James Earl Jones are faithful to their audience's high expectations. I wonder if this movie was made for TV? It has a \"\"close-up\"\" personal quality to the narrative. It is an understatement to say that the performances are all Outstanding. The only thing that keeps it from being a cinema Masterpiece is the lack of a great Cinematographer, but pretty pictures are not everything. How can talent the likes of Jones and Duvall continue to produce such fine work in an age where actors pose for the digitizing?\"\r\n0\tLet me being by saying the I followed watching this video by watching Saw and after Bleed, Saw looked like the all time greatest horror flick ever even though I thought it was only fairly good. Bleed is pretty bad. The best part is seeing the female cast nude. The gore is very fake looking and over-done. It has its funny parts but its extremely predictable and I didn't want to stay to see the horrible ending. If I could, I would ban these actors and actresses, the only reason being is that Debbie Rochon (Maddy) has been in over a hundred other videos and I've also seen two other members of the cast in equally or worse motion pictures. They should not allowed to continue this madness.\r\n1\t\"In all honesty, if someone told me the director of Lemony Snicket's Series of Unfortunate Events, City of Angels, and Caspers was going to do a neat little low budget indie film and that'd it be real good, I'd say that person must be joking. But that's what director Brad Siberling did. And it was really good.<br /><br />\"\"10 Items or Less\"\" has a similar conceit to films like \"\"Before Sunrise,\"\" \"\"Lost in Translation,\"\" or more recently \"\"Once.\"\" It involves the chance meeting of two people who if serendipity didn't put them there, they'd probably never cross paths, or if they did, they wouldn't say word one to each other. Like those films, \"\"10 Items or Less\"\" focuses on the relationship that builds and how the characters come to understand each other and build on each other's strengths and weaknesses.<br /><br />The story involves Morgan Freeman, playing an unnamed actor who goes to research his role as a grocery store employee for an upcoming independent movie and because of things beyond his control, ends up spending the day with the lady in the 10 items or less lane played by Paz Vega. She has a rotten marriage and is hoping to land a new job as a secretary. Initially, Freeman's character just needs a lift home. After spending time with her, however, he wants to get to know her and maybe even offer her some advice.<br /><br />Brad Siberling builds the characters almost entirely through the exchanges between Freeman and Vega. The plot is merely a setup for these two characters to interact with each other for most of the film's 80 minute duration. Freeman has fun with his character, as he appears an outsider in lower class world that Vega's character, Scarlett, inhabits. Vega, in the meantime, grows beyond the stubborn checkout clerk upset with her life's situation looking to move on.<br /><br />There a couple things that really stood out in this film. First of all, Siberling has probably taken note from independent cinema to make sure the relationship is sincere and doesn't fall into any Hollywood pitfalls. It's a very mutual friendship that develops convincingly throughout the film. It works, even though the situation itself does seem a little inconceivable.<br /><br />I am also impressed with the performances. While Freeman's presence gives this film credibility from the get-go, he shows a certain amount of charm and fun not usually seen from him. Paz Vega, meanwhile, is priming herself for a breakthrough in US film sometime in the future. I loved her in Spanglish and she's equally good here as the tough, no-nonsense Scarlet. Towards the end of the film, she successfully conveys the growth of her character. I'm looking forward to seeing her in more films.<br /><br />Overall, 10 Items of Less functions best as a character piece, well scripted and directed by Brad Siberling. He hasn't done much writing and his feature film work has consisted mostly of big Hollywood films. Yet there's certainly an artist at work here and am anxious to see if he'll take this road again.\"\r\n1\tThe true measure of any fictional piece of work is whether or not the characters grow from their experiences and emerge from the experience altered in some significant way (note that this change need not be positive or beneficial) at the end.<br /><br />By that measure, Enchanted April is a resounding success. As a film in general, it succeeds quite well-excellent ensemble cast, well-developed characters you come to care about, wonderful script and beautiful sets and locations. In short the film is, well, enchanting. Although all the performances are first-rate, three must be mentioned-Josie Lawrence, Jim Broadbent and Joan Plowright. It says something when Miranda Richardson does her usual fine work and yet is overshadowed by so many others in the cast. Most highly recommended, particularly if you are a romantic at heart. Further Deponent Saith Not.\r\n1\tThis movie is really funny!! The General is Keaton's finest work but there are many of his works that are more hilarious - in this one are multiple sight gags and creative humor. We watch it over and over and it only seems to get funnier!\r\n1\t\"I think if you were to ask most JW's whether they expect a miracle cure because of their faith, you will find they do not. I know I do not. What you will find instead is that they believe the promises Christ made of a resurrection. So, even even if the worst were to happen and we die while holding onto our integrity, Jehovah can, and will correct this.<br /><br />It really gets down to a simple question: is God real to you or is this all just make believe? If he is real, and you trust him, you will follow his directions no matter what the short term outcome may be.<br /><br />I had a heart attack about a year and a half ago. One in my family was horrified when she saw the words \"\"NO BLOOD\"\" written in large letters over my chart. I reasoned with her that if I were in a position that only a blood transfusion would save my life, would that be a good time to anger the only one could return me to life when the time came? She didn't get it -- God just isn't real enough to her. Too bad. I wish she could have the comfort a strong faith gives.\"\r\n1\tI think Via Satellite is one of the best New Zealand made movies around. I loved the way the movie delt with all the characters within the entire movie. It was brilliant, and a heartfelt movie.<br /><br />A well made movie, one which I will always remember, and watch again.\r\n0\t\"I found \"\"The Arab Conspiracy\"\" in a bargain bin and thought I'd uncovered a lost treasure. Folks, there's a reason why you don't hear much about this film. The plot is muddy, the pacing is slow, Cornelia Sharpe is about as vivacious as plain, cold tofu, and the ending leaves you flat. Not even Sean Connery can save this one.\"\r\n1\tMaybe I loved this movie so much in part because I've been feeling down in the dumps and it's such a lovely little fairytale. Whatever the reason, I thought it was pitch perfect. Great, intelligent story, beautiful effects, excellent acting (especially De Niro, who is awesome). This movie made me happier than I've been for a while.<br /><br />It is a very funny and clever movie. The running joke of the kingdom's history of prince savagery and the aftermath, the way indulging in magic effects the witch and dozens of smart little touches all kept me enthralled. That's much of what makes it so good; it's an elaborate, special-effects-laden movie with more story than most fairytale movies, yet there is an incredible attention to small things.<br /><br />I feel like just going ahead and watching it all over again.\r\n0\t\"Never even knew this movie existed until I found an old VHS copy of it, hidden deep in my dusty horror closet. The title on the box said \"\"Insect\"\" and the illustrations on the back made clear that it is just another insignificant and poorly produced 80's horror movie. They can surely be fun, of course, as long as don't expect an intelligent scenario and as long as you're not irritated by seeing a giant amount of cheesy make-up effects. Just about every important aspect that makes a horror movie worthy viewing is substandard here in \"\"Blue Monkey\"\"! The plot is ridiculous and highly unoriginal, the acting performances are painful to observe and there's a total lack of suspense. Following the always-popular trend of \"\"big-bug\"\" movies, \"\"Blue Monkey\"\" handles about a new and unknown insect species that wipes out the doctors and patients of a remote hospital. The makers couldn't be more evasive about the actual origin of this gigantically over-sized critter! All we know is that it's not from outer space and it initially crawled out of a tropical plant. Other than this, there's absolutely no explanation for where this new type of insect all of a sudden comes from! Like I said, don't get your hopes up for an intelligent screenplay. The first half of the film is entertaining enough, with some nice gore and the introduction of a couple deranged characters (an 80-year-old blind and alcoholic lady!) but the second half (when the entire hospital is put to quarantine) is dreadfully boring. It is also near the end that \"\"Blue Monkey\"\" begins to exaggeratedly rip-off older (and better) films. Approaching the climax, they apparently ran out of budget as well, since the lighting becomes very poor and the guy in the monster suit isn't very well camouflaged anymore. \"\"Blue Monkey\"\" is worth a peek in case you're really bored or if you really want to see every 80's horror movie ever made. Fans of B-cinema may recognize John Vernon (\"\"Killer Klowns from Outer Space\"\", \"\"Curtains\"\") in the small and meaningless role of Roger, who's in charge of the clinic.\"\r\n1\tWhat surprised me most about this film was the sheer audience it attracted. Similar films such as Anita and Me have never caused as much hype as this film has, though I think that's probably because of the mention of 'Beckham' in the title more than anything else.<br /><br />It's a brilliant film putting across a brilliant message - you can do anything if you're determined enough, and put your mind to it, which is such a positive message to anyone watching this film.<br /><br />I think this is one of Keira Knightley's better films, and I think she's a brilliant actress, and was excellent for the role. Parminder Nagra was brilliant too. Sadly, I can't say this for Jonathan Rhys-Meyers, because I don't think that he was that much of a good actor, and to be honest, his eyes were a little scary.<br /><br />All in all, a brilliant film, and a brilliant story\r\n1\tWhile this was a better movie than 101 Dalmations (live action, not animated version), I think it still fell a little short of what Disney could do. It was well-filmed, the music was more suited to the action, and the effects were better done (compared to 101). The acting was perhaps better, but then the human characters were given far more appropriate roles in this sequel, and Glenn Close is really not to be missed, as in the first movie. She makes it shine. Her poor lackey and the overzealous furrier sidekicks are wonderful characters to play off of, and they add to the spectacle Disney has given us. This is a great family film, with little or no objectionable material, and yet it remains fun and interesting for adults and children alike. It's bound to be a classic, as so many Disney films are. Here's to hoping the third will be even better still- because you know they probably want to make one. ;)\r\n1\t\"This is a great movie if viewed in the proper context - It was meant to be a parody of teen-horror-devil-worship movies (and the '80s saw plenty of them)! I saw this movie when it first came out, and instantly liked it. Being a big fan of KISS, it was great to see Gene in the movie. And anything with OZZY as a metal-hating preacher can't be all bad! Also, Fastway was already a favorite of mine, so it was great to hear them on the soundtrack.<br /><br />The original VHS (this was pre-DVD) cover for Trick Or Treat featured an illustration of Sammi kneeling, playing his guitar in a ring of fire with a \"\"demon\"\" looking on. It was a special order, and the price for the VHS copy at the time (circa 1987) was $90! I really wanted the movie, but not at that ridiculous price. The 'OZZY-Gene' cover was only created for the $5 re-release. The company releasing it probably figured Gene and OZZY were the only recognizable people in the movie, so they had better put 'em on the cover! Same thing with the original \"\"Little Shop Of Horrors\"\" - Jack Nicholson was in it for all of five minutes, but now they have him on the cover as if he were the main star.<br /><br />I have a \"\"Trick Or Treat\"\" web site, and it's surprising how many people believe Sammi Curr was a real person! Fastway helped perpetuate that myth by dedicating their soundtrack album to 'Sammi Curr'.<br /><br />All-in-all, it was just a good time, rock-n-roll movie. Definitely not to be taken too seriously, but just enjoyed!\"\r\n0\t\"To sat how awful The Shield is, you'd have to write pages and pages, so suffice it to say that it is a monument to bad directing.<br /><br />\"\"When Directors Go Awry\"\" should have been the title of this production. Indeed, directors are supposed to infuse their work with a sense of visual style and story-telling that propels the story forward.<br /><br />How is constantly shaking the camera and playing with the zoom lens a \"\"style\"\"? How is it propelling the story forward? Of course there's also the \"\"editing by random numbers\"\" nonsense. Apparently it's become hip to just cut randomly.<br /><br />I guess it's too much work to do good editing.<br /><br />Well, that made it too much work for most people to watch The Shield which languished as one of the most over-hyped and unwatched shows of all time.\"\r\n0\t\"it is of course very nice to see improvements on Turkish movie industry, however, i would have expected something more creative from Togan Gokbakar. starting from the script, which i believe it was not a wise written one as some may think. especially the cheesiness of the dialogs, which were putting the audience in a position that, as if they were not smart enough to understand the situations, which, most of the times makes the movie unbearable. it also has an obvious ending; you can easily guess the murderer from the beginning. the weakest part of the scenario is that the impossibility of seriously mentally ill patients to act like normal people, like professionals right away!!!did they ever search for the possibility of patients who are on heavy medicals, to act like professionals and use all the medical terms that even normal people cannot use?????!!!!!!also in the scene where staff was searching for the most dangerous patient, with out any weapon to protect themselves was another weird point of the film. and that scene was so suitable for \"\"Dikkat Sahan Cikabilir\"\" title!! those are not the only weak parts of the movie. there were also a lot of preciosities in the film. the depiction of the most dangerous patient was an exact copy from Hannibal, also appearance of Togan in the very end is obviously the worst mistake that he could have done in his first movie! the fuss about the greatness of the movie and the interviews that actor's gave just made people to be curious and force them to see it. Gen is a total disappointment. i would have wonder, if Sahan was not this famous, would Togan be able to shoot this movie, with this much of budget amount?? i hope Togan would realize that it is not fashionable to play in a role as a director as he said in an interview. it was Hitchcock who did it wisely and Night Shyamalan continued it successfully! he should be aware of the fact that he is not Hitchcock nor Shyamalan yet!!!!hoping him to be more careful and creative next time in this big industry!\"\r\n0\tThe Prophecy II, what's there to say about it? They've completely abandoned the originality of the first film, and simply made a Chris Walken splatter film. It's not even written by the original writer!<br /><br />If you've seen Nr. 1 don't watch Nr. 2 it's a real disappointment...<br /><br />If you haven't seen Nr. 1 don't watch Nr. 2! Go see Nr. 1 to experience something original and fun\r\n0\tGods, I haven't watched a movie this awful in a long while. Maybe not since 'The New Guy' or various Freddie Prinze Jr. movies. Yes, it is that astoundingly awful. Mira Sorvino's blank and wooden acting surely must've been inspired by Freddie. The movie staging was awkward (like a play, rather, and that feeling of confinement does NOT work well on film). The actors had no idea what they were doing, especially Sorvino. Her accent was awful and her sex appeal non-existent here so it was painful to see her 'seducing' other characters and they 'falling' for it. And what was with the occaisional shots of a live audience in lawn chairs? Nonsensical! I had to turn the dvd player off, it would have been self-inflicted pain to finish this film.\r\n1\tTurned out to be a classy production with what must have been a low budget. The variety of characters is amazing, from axe-wielding dwarfs to 7ft ghouls! I enjoyed the relationship between the leads, not overly sentimental but romantic enough to keep the interest going. I also enjoyed the mix of humour (which can be very easy to get wrong, too much/not enough) which meant it didn't get too dark, nor too spoofy. It was a great step up from Eaves' other efforts, Hellbreeder and Sanitarium, in terms of storyline and production. They have a great website which is worth checking out. Can't wait for Bane, if the level of improvement continues, it should be fantastic.\r\n1\tI am a huge Woody Allen fan and so when I saw that this was playing at the cinema I couldn't help myself. I wanted to see how Allen would follow up his magnificent film Match Point seeing as this is another one of his films shot in G.B. (which is unique among Allen's work) along with what seems to be his new muse Scarlett Johanson. Scoop is much lighter than MP and the humor is Scoop's most enjoyable aspect. The plot revolves around Johanson's character (a journalism student) who gets a tip on a hot story from beyond the grave. She falls in love with a suspected serial killer (Jackman) and she must decide whether the truth is worth finding. Oh and all of this is done with the help of a bumbling magician turned detective played by Allen.<br /><br />I must say that I thoroughly enjoyed Johanson's performance but I am a bit bias, I could watch a three hour film with Johanson in ever frame and remain enchanted. She plays a ditsy, yappy, bumbling sweetheart that is kind of a variation in a sense of Allen's stereotypical neurosis stricken character. She adds appropriate body language for comic effect. Needless to say almost anyone who sees this will find Johanson's character sickeningly cute and that is a plus.<br /><br />Allen is Allen... He is still playing the same character much like Chaplin and his Little Tramp character. Something that occur in this film makes me wonder if I will see the neurotic little hypochondriac again however. He is not in the cast of his next picture and has been spending more time exclusively behind the camera as of late...<br /><br />Jackman is also enjoyable as the suave, millionaire murder suspect. I cannot say that Jackman does anything in particular to make the role his but he suits his character none the less.<br /><br />In terms of the plot I cannot help but feel that this is fresh... In fact it stinks of Curse of the Jade Scorpion. Johanson and Allen are more detective-like than anything. However I must applaud Allen on his ending because it is a bit more clever than your typical unoutstanding Hollywood version of this film. Instead of everything being black and white, things are painted in shades of gray. Being entirely innocent has nothing to do with it nor does unequivocal guilt. Though the plot seemed old Woody still has a knack for one liners. I did find his allusions to his last film interesting... Come for the humor, laugh and be merry.<br /><br />Needless to say if you enjoy Allen's work watch it. If not watch something else...\r\n0\tThe acting is bad ham, ALL the jokes are superficial and the target audience is clearly very young children, assuming they have below average IQs. I realize that it was meant for kids, but so is Malcom in the Middle, yet they still throw in adult humor and situations.<br /><br />What should we expect from a show lead by Bob Saget, the only comedian in existence who is less funny than a ball hitting a man's groin, which is probably why he stopped hosting America's Funniest Home Videos.<br /><br />Parents, do not let your kids watch this show unless you want to save money on college. Expose your kids to stupidity and they will grow up dumberer.\r\n1\t\"While rehearing Carmen of Bizet, the middle-aged choreographer Antonio (Antonio Gades) brings the sexy Carmen (Laura del Sol) to perform the lead role. Antonio falls in love for Carmen, who is an independent and seductive woman incapable to accept a possessive love. When Carmen has an affair with another dancer, Antonio is consumed by his jealousy like D. José in the original opera, entwining fiction with reality.<br /><br />\"\"Carmen\"\" is another great movie of Carlos Saura's trilogy dedicated to the Flamenco dance. The dramatic love story is developed with the lives of the artists entwined with the characters they are rehearsing, and many times is not absolutely clear whether what is happening is reality (with the dancers) or fiction (of the play). Paco de Lucia is another attraction of this original version of the famous Bizet's opera, which is based on the novel of Prosper Mérimée. My vote is seven.<br /><br />Title (Brazil): \"\"Carmen\"\"\"\r\n1\t\"One of the best parts of Sundance is seeing movies that you would otherwise almost certainly miss. Unless you're a real art-house devotee, you probably don't catch many documentaries. Only a handful get any recognizable distribution. Fortunately, Sundance has increased its commitment to documentaries in recent years.<br /><br />Shakespeare Behind Bars is a powerful documentary about a dramatic production group at the Luther Luckett Correctional Complex in LaGrange, Kentucky. Every year a group of inmates present a Shakespearean play. Director Hank Rogerson and his crew follow the troupe as roles are self-selected, interpreted, rehearsed and ultimately performed.<br /><br />The movie is filled with fascinating revelations for those of us that have not been exposed to prison environments. Despite the labels we know them by (convict, felon, murderer, etc.) we soon began to appreciate and respect these men as thinking feeling human beings. Serendipitously, the play chosen for the year of filming was The Tempest, with its penetrating focus on forgiveness and redemption. The actors all grapple with the relevance of the play to their lives, finding patterns and parallels with their characters and the meaning of the drama.<br /><br />For a documentary film, like a book, the best that can be hoped for is that we experience something that changes our lives. Shakespeare Behind Bars was a personal revelation for me. \"\"O brave new world, that has such creatures in it.\"\"\"\r\n0\t\"There are lots of extremely good-looking people in this movie. That's probably the best thing about it. Perhaps that even makes it worth watching.<br /><br />\"\"Loaded\"\" tells the story of Tristan Price (Jesse Metcalfe), a young man who's about to make his mark on the world. He's the son of a well-to-do family with a good reputation, and he's on his way to law school. But like so many such settings, things aren't quite as perfect as they appear. The expectations in this family far outweigh the love. Except for school, Tristan's father rarely lets him leave the house. This seems to be the result of some past traumatic event that shook the family, which is partially revealed through flashbacks but isn't spelled out until the very end. Tristan's claustrophobic environment causes him to let loose in very extreme ways at the first possible opportunity, when his friends take him out to a strip club to celebrate his graduation. The celebration soon follows some strippers back to a beach house party, and from there, Tristan befriends Sebastian Cole (Corey Large), who pulls him into a drug dealing underworld.<br /><br />While technically well-made, this movie suffers from a lackluster script and a storyline that isn't very engaging. Also counting against this film are some constant camera tricks that generally seemed annoying and out-of-place, such as slow-motion, fast-motion, freeze-frames and echos. These are the types of effects a director might normally utilize to show a character's perspective while on drugs, except in this case they seem to have been sporadically tossed in at random points, in some cheap attempt at style.<br /><br />Despite its cast of relative unknowns, performances were good all around, most notably with respect to the main antagonist (Corey Large). I suspect we'll be seeing at least a couple of these people in bigger and better projects in the future.<br /><br />Of course, when mentioning the actors, I must mention their looks. Rating based on hotness, this movies scores an 11. The women in this movie are incredible-looking and almost distract you from what a boring movie you're watching. I'm sure the male characters are also quite attractive, but you'll have to ask someone else to comment on that.<br /><br />Overall, I can't recommend this movie, not for buying, renting, or even seeing for free. It's unfortunately just not worth the effort it takes to sit through.\"\r\n0\t\"The film starts with a voice over telling the audience where they are, and who the characters are. And that is the moment i started to dislike the movie. With all the endless possibilities any film director have in hand, i really find it a very easy and cheap solution to express the situation with a voice over telling everything. I actually believe voice overs are betrayals to the film making concept.<br /><br />I hate to hear from a voice over saying where we are, which date we are at, and especially what the characters feel and think. I believe that a director has to find a visual way to transmit the feelings and the thoughts of the characters to the audience. <br /><br />But after the bad influencing intro, a very striking movie begins and keeps going for a fairly long enough time. The lives of a middle class family and all the members individually are depicted in a perfect realistic way. I think the director has a talent for capturing real life situations. For example, a father who has to make his private calls from the bathroom might seem abnormal at first, but life itself leads us some situations which might seem abnormal but also very normal as well. I think the director is a very good observer about real life.<br /><br />But that is it. After a while the realism in the movie begins to sacrifice the story-telling. I really felt like I'm having a big headache because of the non-stop talking characters. It was as if the actors and actresses were given the subject and were allowed to improvise the dialogs. It is realistic really, but characters always asking \"\"really, is that so\"\" etc. to each other, or characters saying \"\"no\"\" or \"\"are you listening to me,\"\" ten times when saying it only once is just enough causes me to have a headache.<br /><br />I also think the play practicing and book reading scenes are more then they should be. I understand that the play and the book in the movie are very much related to the plot, but i think the director has missed the point where he should stop showing these scenes.\"\r\n1\tPerhaps the best Isabel Allende's book, House of the Spirits describes an alternative chilean history, this one full of magic, a mystic veil, plus some kind of omnipresent sadness. This movie gathers a great cast, plus a great art direction, with a script that cannot contain all this book's quality. It's unusual for a nearly unknown country like Chile to get so well represented as it is by this movie, whose perhaps only sin is to aim too high, and because of that left the illiterate public a little upset, mostly because they understood very little.\r\n0\t\"Townies is the laziest movie I have ever seen, and I saw the Blair Witch movies (parts one and two). It seems confused in what it wants to be. It's not funny enough for comedy, it's not tragic enough for drama, it's not bloody enough for horror, and it's not good enough for watching. It has scenes of a man doing \"\"slapstick/bloody\"\" karate so I think, oh this movie will be in the vein of Toxic Avenger and Street Trash. Then it leaps without warning into a drama about a missing girl, a retarded (mentally handicap) woman and a trusting mother. Then it slaps itself into the ONLY good part in the movie which seems to be set up like a sitcom without the laugh tracks. The part I'm speaking of is a lonely TOWNIE who is so lonely he finds comfort in a rotting corpse. That was the ONLY part of the movie that gave me ANY feeling. The rest was a waist of my life. Then, just to show how CRUEL Wayne is there is a kind of DOCUMENTARY at the end of the film of Wayne (the Director) making fun of Toby (the star) in public. It made me sick. Even though Killer Nerd and Bride of Killer Nerd (two other movies by Wayne) aren't the best, they at least are thought out enough were you can stay entertained until the ending credits. I even like Killer Nerd a bit, it had some great lines I still use to this day.<br /><br />If you like underground films, if you like overground films, and if you like to watch your feet, just resting were they are, you will not like TOWNIES!<br /><br />*1/2 (out of ****)<br /><br />\"\r\n1\tIt's great to see Jorja Fox in a role where she gets to smile a lot. Also loved hearing her sing. Nice change to see her out of her CSI/West Wing/ER roles. The movie itself was entertaining, but it seemed skip some explanation in a lot of parts. Several of the characters seemed to be miserable one minute and happy the next and it was left up to your imagination to figure out why. Each character was quirky though and in some cases, I couldn't wait to see what they would do next or hear what they would say next. This movie wasn't full of squeaky clean people, but rather complicated realistic people who could make mistakes, feel bad about them and then find a way to fix them.\r\n0\t\"This movie was probably about as silly as The Naked Gun (which was supposed to be). Case in point:<br /><br />1. In order to fake her drowning Roberts is secretly taking swimming lessons at the YWCA. After her \"\"death\"\" the YWCA calls her husband at work to give their condolences. HELLO how did they get his work number?<br /><br />2. Before she leaves town she drops her wedding ring in the toilet. Days or even weeks later her hubby finds it in the John. Does this mean the toilet was never flushed?<br /><br />3. No explanation is given on how she is paying for her mothers care in the retirement home (since she did it behind her RICH husbands back).<br /><br />4. Towards the end of this tiresome film Roberts suspects her husband is in the house. Instead of running for her life she runs to the kitchen instead to see if the cans are stacked neatly.\"\r\n1\t\"Typical De Palma movie made with lot's of style and some scene's that will bring you to the edge of your seat.<br /><br />Most certainly the thing that makes this movie better as the average thriller, is the style. It has some brilliantly edited scene's and some scene's that are truly nerve wrecking that will bring you to the edge of your seat. The best scene's from the movie; The museum scene and the elevator murder. There are some mild erotic scene's and the movies pace might not be fast enough for the casual viewer to fully appreciate this movie. So this movie might not be suitable for everybody.<br /><br />The story itself is also quite good but it really is the style that makes the movie work! It might be for the fans only but also casual viewers should appreciate the well build up tension in the movie.<br /><br />There are some nice character portrayed by a good cast. Michael Caine is an interesting casting choice and Angie Dickinson acts just as well as she is good looking (not bad for a 49-year old!).<br /><br />The musical score by Pino Donaggio is also typically De Palma like and suits the movie very well, just like his score for the other De Palma movie, \"\"Body Double\"\".<br /><br />Brilliant nerve wrecking thriller. I love De Palma!<br /><br />10/10\"\r\n0\t\"Nick Millard aka Nick Phillips should have left well-enough alone when he made \"\"Criminally Insane\"\" 10 years before the release of this god-awful waste of time and effort. The fact that the original \"\"Criminally Insane\"\" was less than an hour in length should have clued him into the fact that he had probably milked this storyline for all he was going to get out of it...but instead he opts to use TONS of footage from the original in this one as well, even to the point of recycling the original opening credit sequence! Unfortunately, bringing back the rapidly aging Priscilla Alden did not save this one. What little bit of original footage there was in this flick looks as if it were filmed with a rented hand-held camcorder! If this film cost more than $100 to make I would be very surprised and I would be equally surprised if it made anything close to that amount! Avoid this one and watch the original instead!\"\r\n1\tJust got out and cannot believe what a brilliant documentary this is. Rarely do you walk out of a movie theater in such awe and amazement. Lately movies have become so over hyped that the thrill of discovering something truly special and unique rarely happens. Amores Perros did this to me when it first came out and this movie is doing to me now. I didn't know a thing about this before going into it and what a surprise. If you hear the concept you might get the feeling that this is one of those touchy movies about an amazing triumph covered with over the top music and trying to have us fully convinced of what a great story it is telling but then not letting us in. Fortunetly this is not that movie. The people tell the story! This does such a good job of capturing every moment of their involvement while we enter their world and feel every second with them. There is so much beyond the climb that makes everything they go through so much more tense. Touching the Void was also a great doc about mountain climbing and showing the intensity in an engaging way but this film is much more of a human story. I just saw it today but I will go and say that this is one of the best documentaries I have ever seen.\r\n0\t\"don't watch this Serbian documentary and Serbian propaganda look out for this documentary and you will see facts and truth http://imdb.com/title/tt0283181/<br /><br />The Death of Yugoslavia documentary series (of five episodes) is a painstakingly compiled and researched account of the extended mass-bloodshed which marked the end of the old Federal Yugoslavia and spanned almost the entire first half of the 1990's. It includes a huge wealth of news footage and interviews with involved parties both \"\"Yugoslav\"\" and otherwise. The only real \"\"improvement\"\" which could be made to this amazing achievement would be the inclusion of later developments in the Balkans since the program was made. This was indeed done in the late 1990's for a repeat showing on BBC television, but the addition of some even more recent events would help to complete this admirably detailed and fulsome piece of work. Perhaps another whole episode might be warranted? The very succinct title of this documentary was made all the more appropriate by the eventual abandonment of the term \"\"Yugoslavia\"\" by the now-named Federal Republic of Serbia and Montenegro - a much belated and formal admission of that which occurred years before.<br /><br />not fiction like in \"\"Yugoslavia: The Avoidable War (1999)\"\"\"\r\n1\t\"\"\"CASOMAI\"\" was the last movie I've seen before getting married, just last year. <br /><br />It was also the first movie I've searched for, after I was married, because we promised to offer a copy to our priest.<br /><br />Sometimes, reality is not that apart from fiction. To all those who wrote that priests like \"\"Don Camillo\"\" don't exist in real life, I would recommend them to visit my Priest Pe. Nuno Westwood, in Estoril, Portugal :-)<br /><br />To all others, I would only recommend them to see this movie, before and after the \"\"I do!\"\" day :-)<br /><br />Rodrigo Ribeiro Portugal\"\r\n1\tDwight Frye steals the show in this one as a foolish young man(who seems to be mentally handicapped) who gets himself blamed for vampire-like murders especially after he reveals his love for bats which he likes to stroke and give to unsuspecting friends as 'gifts'!. Besides all of that, there's an entertaining mystery tale involving the above mentioned murders. Underrated.\r\n0\t\"A very ordinary made-for-tv product, \"\"Tyson\"\" attempts to be a serious biopic while stretching the moments of angst for effect, fast forwarding through the esoterics of the corrupt sport of boxing, and muddling the sensationalistic stuff which is the only thing which makes Tyson even remotely interesting. A lukewarm watch at best which more likely to appeal to the general public than to boxing fans.\"\r\n1\tDeodato brings us some mildly shocking moments and a movie that doesn't take itself too seriously. Absolutely a classic in it's own particular kind of way. This movie provides a refreshingly different look at barbarians. If you get a chance to see this movie do so. You'll definitely have a smile on your face most of the time. Not because it's funny or anything mundane like that but because it's so bad it goes out the other way and becomes good, though maybe not clean, fun.\r\n1\t\"Dr. McCoy and Mr. Spock find themselves trapped in a planet's past Ice Age, while Capt. Kirk is in the same planet's colonial period. However, it's the former pair that has the most trying time. Besides the freezing temperatures and sanctuary to be found only in caves, there is a third inhabitant, the beautiful and so sexy Zarabeth (Mariette Hartley). As Spock spends more time in this era, he slowly begins to revert to the behavioral patterns of his ancestors, feeling a natural attraction to Zarabeth and throwing \"\"caution to the wind\"\" about ever leaving this place. Only with Dr. McCoy's constant \"\"reminders\"\" does Spock hold on to some grasp of reality.<br /><br />This stand as one of the few times when the character gets to show some \"\"emotion\"\" and Nimoy (Spock) plays it to the hilt, coming close to knocking the bejesus out of Deforest Kelly (McCoy). Surprising to previous installment, Captain Kirk (William Shatner) wasn't allowed to get the girl, another plus for this one.<br /><br />Perennial \"\"old man\"\" Ian Wolfe assays the role of \"\"Mr. Atoz,\"\" the librarian responsible for sending the trio into the past.\"\r\n0\t\"This movie could be used in film classes in a \"\"How Not to Script a B-Movie\"\" course. There are inherent constrictions in a B-movie: Budgets are tight, Time is precious (Scarecrow was apparently shot in 8 days) and the actors are often green and inexperienced. The one aspect you have complete control over is writing the best script you can within the limitations set before you. Scarecrow's script seems to have been written in a drunken haze. I could go through about fifteen examples of the nonsensical scripting of this movie, but I'll just mention one: The Gravedigger. The character of the gravedigger is introduced about an hour into the movie. He seemingly has no connection to any of the other characters already in the movie. He is shown with his daughter, who also has no connection to anybody else in the movie. The gravedigger is given a couple scenes to act surly in and then is killed to pad out the body count. Why give the Gravedigger a daughter? Why give the daughter a boyfriend? Why introduce them so late in the movie? Why not try to make them part of the ongoing storyline? Scarecrow doesn't seem to care.<br /><br />The \"\"story\"\" of Scarecrow goes something like this: Lester is a high school kid (played by and actor who'd I'd peg to be in his early 30's) who is picked on by the other kids. He is an artist who draws birds and has a crush on a classmate named Judy. His mom is a lush and the town whore. One of her reprobate boyfriends makes fun of his drawings (by calling him a \"\"faggot\"\" for drawing birds instead of \"\"monsters and cowboys.\"\" If you have a high school student still drawing cowboys I'd think him to more likely be gay than a high school student who draws crows) and later, kills Lester, in a cornfield, under the titular scarecrow. Magically, Lester's soul goes into the scarecrow. Somehow, this transference changes Lester's soul from that of an artist into that of a wisecracking gymnast (I know some reviews have called the scarecrow a Kung-Fu scarecrow. I disagree. The scarecrow practically does a whole floor routine before jumping onto the truck during the climax of the movie). The scarecrow then goes on to kill those who tormented him, those who smoke pot in the corn field, those who dig graves, boyfriends of daughters of gravediggers, pretty much anyone who showed up on the movie set.<br /><br />The bonus feature on the DVD should be mentioned. The director (a Frenchman) does an impromptu version of rap music, admits he enjoys not having executives around on set so he can screw his wife while working and gives a quote to live by (and I'm paraphrasing): \"\"Life ez a bitch, but et has a great ass\"\"<br /><br />Number of Beers I drank while watching this movie: 5 Did it help: No Number of Beers needed to enjoy this movie: Whatever it takes to get to blackout drunk level.\"\r\n0\t\"Dialogue: stilted, clichéd; Acting: hammy, clichéd; Plot: predictable, clichéd.<br /><br />Just what are Christopher Plummer Nastassia Kinski doing in this \"\"B\"\" rubbish? Plummer was well established decades before this movie was made, Kinski had masterpieces like \"\"Tess\"\" and \"\"Cat People\"\" behind her... Must have been desperate.<br /><br />The bad guys all have bad-guy accents - *bad* bad-guy accents! (Plummer especially! Where *did* he learn to do \"\"German\"\"?) and most of them have bad-guy sneers as well. The innocent bystanders all overdo their panicking enough to make you laugh. The good guy survives, amongst other things: * a 5\"\" throwing knife buried hilt-deep in his shoulder - just pulls it out and seconds later is using the arm with no difficulty at all; * marines' machine-gun fire (I think someone referred to a .50) in the leg which he sorts out by tying a bandage around his pants leg and thereafter he barely has a limp; * several fist-fights in which he sustains multiple punches to the face as well as being run cranium-first into a door frame; * a fall, backwards, from what looks like the third floor, onto paving, without the slightest sign of a twisted ankle or any other such trifling inconvenience. The script has exactly 3 clever lines, the rest of the time it's all so dull and boring.<br /><br />OK it's not all bad. Plummer does bring a certain class to his part, and is undoubtedly the best actor in this flick. Of course that doesn't say much, but he can do the callous villain without resorting to the ham techniques most of the villains use here. He delivers his \"\"Ve haff vays and meance\"\" type lines with some menace, but you are always aware you are watching Christopher Plummer acting the villain.<br /><br />This movie is truly an awful waste of time. The acting, such as it is, is sort of 70's 007 movies wooden line delivery meets Bruce Lee's very obviously faked fight scenes, but it's not even anywhere near as good as either a Roger Moore 007 or a Bruce Lee film. Don't bother.\"\r\n1\tThis was a very daring film for it's day. It could even be described as soft-core porn for the silent era. It was a talkie, but dialog was extremely limited, and in German. One did not need it anyway.<br /><br />The young (19) Hedy Lamarr gets trapped in a loveless marriage to an obsessive (stereotype?) German and after a short time in a marriage that was apparently never consummated, returns home to her father.<br /><br />In a famous and funny scene, she decides to go skinny dipping one morning when her horse is distracted by another. She is then forced to run across a field chasing after it, as she left her clothing on the horse. An engineer retrieves her horse and returns her clothing - after getting an eyeful.<br /><br />They sit for a while and, in a zen moment, he presents her with a flower with a bee sitting on top. This is where she thinks back to her honeymoon and the actions of her husband and an insect. She knows this man is different.<br /><br />She returns home and eventually seeks out our young fellow, and finds the ecstasy she was denied. You can use your imagine here, but his head disappears from view and we see her writhing with pleasure. Since he never got undressed, you can imagine... Certainly, an homage to women by the director Gustav Machatý, and a shock to 1933 audiences.<br /><br />The only thing that mars this beautifully filmed movie is the excessive guilt, and a strange ending.\r\n1\t\"The problem with portraying a real life individual is that the performance can be good, but still not work if the audience doesn't believe that the actor is portraying the person. That's the main issue with \"\"Young Mr. Lincoln:\"\" Henry Fonda gives a terrific performance, but I found it hard to believe that Abraham Lincoln was as soft-spoken as Fonda portrays him.<br /><br />This is essentially a courtroom drama with a young Abraham Licoln at the forefront. Whether or not this was a true story, I don't know, but if it isn't, then why tell it using Lincoln as the central character? Never mind though. In the film, Lincoln is defending two young men who are accused of murder.<br /><br />There's really not much to the film, and as a result, it seems rather empty. I wanted more story and character development. The film is 100 minutes long, but it doesn't feel like it. There are some little scenes featuring Lincoln and the blooming relationship with Mary Todd, but they seem superficial.<br /><br />The acting is good all around, but as I said, Fonda's performance works as a character, but not Abraham Lincoln. I just don't believe that the real Lincoln was that soft-spoken. True, he has a big voice when he needs to, such as when he persuades a drunken lynch mob to let the accused stand trial, but Fonda portrays Lincoln too meekly. The other performances are solid though, especially Alice Brady as Abigail Clay, the mother of the accused. She's a nice lady who we can really feel for. Simple and uneducated, yet very sweet; we can see why Lincoln wanted to help her.<br /><br />John Ford seems to think of this film as an epic, and at the time of its release, it probably was. But even then, there's just not enough material to present it as such.<br /><br />It's a nice watch, but not a classic.\"\r\n0\t\"Usually I love Lesbian movies even when they are not very good. I'm biased, I guess! <br /><br />But this one is just the pits. Yes, the scenery and the buildings are beautiful, and there is a brief but beautiful erotic interlude, but otherwise this movie is just a complete waste of time. Annamarie alternates between sulking and getting high/stoned/passing out on whatever drug or booze is handy, and Ella inexplicably puts up with this abominable behavior through the entire movie. At no time are we given any insight into why this is so, or even why Annamarie is so depressed and withdrawn.<br /><br />If there had at least been some kind of closure in the (potentially romantic? we don't even know!) relationship between the two, there might have been some kind of satisfaction. But although Annamarie at one point asks Ella \"\"why do you love me?\"\" Ella doesn't even acknowledge this. It's never really clear whether this is anything more than an (ill-behaved) Lesbian on a boring road trip with a straight woman.<br /><br />Even the interactions between the two women and the local people they meet on the journey, which could have been lively and informative, are instead flat, tedious and mostly incomprehensible.<br /><br />There is one good joke in the movie, although I'm sure it was unintentional. The women travel in a two-seat Ford coupe with a middling sized trunk. Yet when they set up camp, they have an enormous tent, cots, sleeping gear, and even a table, chair, and typewriter! On top of that, when they board a ferry, we see piles of luggage, presumably theirs, presumably also carried in the little Ford's trunk! <br /><br />And through the entire film, we never see one gas station, or anywhere that looks like it would actually have any place to buy gasoline. Mostly they travel through endless miles of desolate desert. So where did they get fuel?<br /><br />There may not be too many Lesbian films out there, good or bad, but there are plenty that are better than this, and very few that are worse. Leave this one in the rack.\"\r\n0\tOMG! The only reason I'm giving this movie a 2 instead of a 1 is because Tom Hanks is funny as an Elvis-in-the-box. Apart from that, how did this halfway decent cast sign on to do such a lame movie?? Maybe it seemed like a good idea at the time... There are no laughs to mention, the stereotypes are pathetic, the cast is wasted, the direction is amateurish. Now that I think about it, most of the blame probably lies with the director, Joel Zwick. He brings out nothing but flat performances from all involved. Don't waste your time like I did; but then, I enjoy a good train wreck. Geez, now the system is telling me I need more lines-- here ya go: This movie should be called Return to Sender. Okay, now THAT was funnier than anything in the movie...\r\n0\t\"Mindless dribble about the second coming of Christ in the form of a hippie and albino looking Sandra Locke. You have no idea what's happening on the screen with the irritating theme song \"\"Suzanne\"\" being played over and over throughout the movie until when \"\"The Second Coming of Suzanne\"\" is over you already know it by hard no matter how hard you try to forget the whole thing.<br /><br />This off-the-wall armature movie maker Logan,Jared Martin, is out to make the movie of the century but is so rude and obnoxious that none in the banking world is willing to finance his project. Planning to go on his own Logan then spots this couple at a seaside café and is fascinated with the young woman Suzanne, Sandra Locke, who reminds him of someone he knew in another life: Jesus Christ.<br /><br />With Logan's assistant and all around gofer Clavius, Richard Dreyfuss,somehow getting a $740,000.00 loan from the bank to finance Logan's masterpiece he starts to work on Suzanne by flattering her about her talent as an actress in order to get her interested to be in his film. This leads to Suzanne not only leaving her boyfriend artist Simon, Paul Sand, but later Simon being so depressed and feeling all alone takes a gun to his mouth and blows his brains out.<br /><br />The movie also has two somewhat unrelated sub-plots in it that has to do with a young autistic girl Dorothy, Kari Avalos, who's cured of her autism by Suzanne after everyone else, at the psychiatric hospital that she was committed to,failed. It's not really known what exactly Suzanne was doing at the hospital but she seemed to be some kind of orderly or volunteer there; was this supposed to show us in the audience that she, like Jesus, could miraculously heal the sick?<br /><br />There's also this newspaper columnist and big time businessman tycoon Jackson Sinclair, Gene Barry, who seems to be either going through a very difficult mid-life crisis or has seen a biblical-like vision that changed his life forever. Sinclair had been searching for the meaning of life as well as what it's all about all through the movie and wanted to know why there's all this suffering in the world, like this movie that he's in, and seemed to have found the answer when he first laid his eyes on Suzanne. Sinclair also got some sense knocked into his head when his private chauffeur David, Mark Rasmusser, who's gotten sick and tired of his weird and crazy hallucinations almost running him off a cliff in a kamikaze like drive along the Pacific Coast.<br /><br />The movie \"\"The Second Coming of Suzanne\"\" goes on with a number of unrelated sequences, probably to fill or pad in some time by it's director and film editor, and then goes to it's final scene in a Christ-like crucification on a hill as Logan has all the cameras rolling. It turns out that the crazed Logan got so carried away with his masterpiece as he tried to replicate, on the helpless and tied up Suzanne, the actual crucification of Jesus Christ some 2,000 years ago.<br /><br />Hard to sit through and almost impossible to follow \"\"The Second Coming of Suzanne\"\" puts you through the same kind torture that Suzanne is put through by Logan and the makers of the film. The movie tries to be arty but that's just an excuse to cover up it's brainless and non-existent storyline and even worse the terrible and amateurish acting by everyone in it.\"\r\n1\tThis movie is the next segment in the pokemon movies which supplies everything on hopes and dreams of a pokemon warrior named Ash Ketchim and his friends. they go out and they look battle and run into new pokemon and take on new adventures with Pikachu and other pokemon favorites. This adventure takes on with a new pokemon called Celebi a time pokemon. Go join ash Brock and Misty to find all sorts of new things!\r\n0\tLes Visiteurs, the first movie about the medieval time travelers was actually funny. I like Jean Reno as an actor, but there was more. There were unexpected twists, funny situations and of course plain absurdness, that would remind you a little bit of Louis de Funes.<br /><br />Now this sequel has the same characters, the same actors in great part and the same time traveling. The plot changes a little, since the characters now are supposed to be experienced time travelers. So they jump up and down in history, without paying any attention to the fact that it keeps getting absurder as you advance in the movie. The duke, Jean Reno, tries to keep the whole thing together with his playing, but his character has been emptied, so there's not a lot he can do to save the film.<br /><br />Now the duke's slave/helper, he has really all the attention. The movie is merely about him and his being clumsy / annoying / stupid or whatever he was supposed to be. Fact is; this character tries to produce the laughter from the audience, but he does not succeed. It is as if someone was telling you a really very very bad joke, you already know, but he insists on telling that joke till the end, adding details, to make your suffering a little longer.<br /><br />If you liked Les Visiteurs, do not spoil the taste in your mouth with the sequel. If you didn't like Les Visiteurs, you would never consider seeing the sequel. If you liked this sequel... well, I suppose you still need to see a lot of movies.\r\n0\t...but the actress playing the daughter just doesn't come across as credible.<br /><br />It doesn't work for me when I see an actress of about 25 years playing the role of a 12-year-old... Other commentators have suggested that this is one of the messages of this film, that children may sometimes seem more adult-like than adults, but with the casting as it is in this film, it just doesn't work for me.<br /><br />you might want to check other comments to find out what this film is actually about, because i couldn't bear watching it to the end.<br /><br />i agree that the premise for this film is beautiful though - I wish another director would try to pick up this story again.\r\n1\t\"\"\"A Thief in the Night\"\" is a film that was generally ignored by movie fans at large due to its low-budget (which was obvious) and its subject matter--the Rapture of true Christian church and the fate of those left behind. Nevertheless, it was a gripping story that held the viewer and definitely made him or her review their relationship with Jesus Christ. It touched everyone--showing even a pastor who preached the Word, but did not believe it, knowing exactly why he was left behind. This movie, and its sequel \"\"Distant Thunder,\"\" are must see movies. Even with the new \"\"Left Behind\"\" series coming out, telling the same story with a much higher budget, the impact is still the same--\"\"A Thief in the Night\"\" broke the ground of this genre and will always be remembered.\"\r\n0\tThis is possibly one of the worst movies I have ever seen. I don't care what the critics say, it's bad. I think the problem is with Kundera's novel. It's not that it's unfilmable; it's just that like 99% of his work, it's pretentious and overdrawn. He seems to be enamored with himself,his characters come off as navel-gazing, and his novels as a whole are misogynistic. I have read many of his works (even his Socialist Realist poetry. That was truly awful) -- I just don't understand what the fuss is about. Characteristics (like the self-absorption) in his novels make for infuriating reading. In a movie, all the things that I dislike about Kundera were magnified. Maybe I just missed something, but I don't think so. On a side note, I cannot believe that this is a Criterion Collection DVD. No way is this movie THAT essential.\r\n0\tIf you are wondering where many of the conspiracy theories and paranoid ideas about the the UN, Israel, and international affairs come from, look no further.<br /><br />This isn't a supernatural Hollywood film loosely based on some biblical passage. Instead, this movie was made by a company (Cloud Ten Pictures) with a political and religious agenda. As a movie, the end result at times more looks like clips out of a televangelism program (complete with family prayers and light breaking through church windows while harps are playing).<br /><br />For mainstream viewers, it may be hard to believe, but many people believe in this stuff literally, as presented in the movie. And that, perhaps, makes the movie important. You probably won't find a more concise exposition of the bizarre views of a significant number of your fellow citizens. So, if you view it, view it as a social/cultural document. If you are at all media savvy, you don't need to be warned about the unsubtle attempts at propaganda and manipulation in the movie.\r\n0\tI saw this movie years ago, and I was impressed... but then again I was only 12 years old. I recently re-watched it and want that time back. This film is pretty bad. While I like Lee Majors, Chris Makepeace (watch My Bodyguard (1980)if you would like to see a GOOD movie that he was in... of Meatballs (also starring Bill Murray) for some laughs), and Burgess Meredith, this role does/did nothing for their careers.<br /><br />Anyway, Lee Majors character, Franklyn Hart, is an ex- race car driver who plans on driving his race car (which he had in storage) across the country to California. One Problem: The government has outlawed all private transportation. I thought the concept was OK (not the worse I've heard of), but the execution failed horribly.\r\n0\t... but the trouble of this production is that it's very far from a good musical.<br /><br />Granted, one can't always expect the witty masters like Sondheim or Bernstein or Porter; yet the music of this piece makes even Andrew Lloyd Webber look witty. It's deadly dull and uninventive (with one or two exceptions) and just after I watched it I couldn't recall a single significant melody - which is rather tragic coming from someone who learned the whole Another Hundred People from three listenings.<br /><br />It is also strangely un-theatrical. It takes place on an incredibly large stage (one really has to feel sorry for those people in front rows who broke their necks in order to see something happening 50 meters on the right or 100 meters on the left) and does absolutely nothing with it. When there's supposed to be one person singing on-stage, that's just what you get - and the rest of the enormeous stage is empty. For me as an aspiring theatre director it was almost painful to watch.<br /><br />The fact remains, Cole Porter seems to have captured the French culture in his works better than these no-talents can ever come close to. And I'm puzzled by the popularity of this would-be-legendary musical.\r\n1\tMoon Child was one of the more symbolic movies I've seen. What I really liked about it was the illustration on immorality/mortality,and the obstacles and guidances through life. The movie depicts a great deal of vampire Kei having the power of immorality and the advantages to it. Whether if it is having supernatural abilities or everlasting life, these are what humans usually wish for. Moon Child shows the pain and disadvantages of being immortal, since the feelings towards loss impacts almost all the characters especially to the main characters Sho and Kei. The meaning of the title 'Moon Child' reveals as the film comes close to the end where it clearly shows that everyone is a moon which shines other people's way, giving guidance. I personality quite like that moral the movie depicted on. The weaknesses of the film lies in some parts of the acting and special effects since it made the film less authentic. The scene where character Toshi dies could have been more powerful and realistic if more authentic emotions in the acting were put into it. Some scenes with special effects like the gun shots also could have been more authentic without making it seem too much like an action video game. The sparks that came out of the guns appeared too fake and I think that could have been eliminated or fixed. Nevertheless, I think Moon Child should be a movie everyone should consider watching. The symbolic ideas and images the movie brings out would be easily accepted by everyone and may interest many viewers. It is quite a thoughtful film and also entertaining to watch.\r\n1\tWell, I must say that this was one hell of a fun movie. Despite the fact that the dubbing was pretty cheesy, and there were some odd moments where the film seemed to turn dark blue for no apparent reason, I was not disappointed. The story was actually pretty interesting: the last member of the Poison Clan must track down the other five members and discover who among them is using their skills for evil, and who is using them for good. The catch being that during training, all of the clan were masked, and all have since returned to society in disguise and changed their names.<br /><br />The fights are a joy to watch, as each member of the Poison Clan has a different fighting style: toad (my favorite), snake, scorpion, lizard, and centipede. The fight scenes have the actors jumping all over the place, and thankfully the camera stays planted and uses a wide enough shot so you can clearly see all of the action.<br /><br />The one drawback to the movie is that the story tends to drag a bit in the first half up until the first fight sequence. But stick with it, and you won't be disappointed!\r\n0\t\"Final Justice has the great Joe Don Baker running around Texas, shooting people who shoot people. Then he's off to Malta where he shoots more people. He gets locked up many times for shooting people. Then he gets into a gunfight with the bad guy, who is dressed like a monk. There is a boat chase, and Joe Don winds up in jail again. Finally Joe Don, with the help from Elaine from \"\"Seinfeld\"\" kill the bad guy, blow up a boat or two and someone gets shot with a flare. All this and a catchy theme song, just like Mitchell!\"\r\n1\tThis is one of the funniest movies I have seen. I watched it on DVD, and the disc does not have any special features, or even a menu, but that is not necessarily what I care about. <br /><br />I tend to judge movies on a case by case basis, depending on, among other things, if it is a big studio production or a smaller film. This is a smaller film and I am willing to forgive minor things. That said, I believe it has one of the most imaginative and original title sequences that I have seen.<br /><br />I enjoyed the acting of all of the major players. I especially enjoyed Til Schweiger and Alan Arkin. Alan Arkin has most of the funniest lines. The character portrayed by Claire Forlani might come across as unrealistic to some people, but I have personally known real people with emotional problems that very readily look at life's decisions as her character does. That helped me pick up the nuances where her hurts could come out through the veneer of her humor.<br /><br />This is not a movie for children, obviously, but it does NOT engage in gratuitous sex and nudity. There is quite a bit of adult language, though, but it can sometimes be very funny. (In particular, Alan Arkin's character, who can't even swear correctly.)<br /><br />Also watch for the cameos from known character actors.\r\n1\tIt's refreshing to see a movie that you think will end happily just like almost every other American movie, and then be surprised when that doesn't happen. I like a happy ending as much as the next guy, but sometimes it's better to portray things in a more realistic manner, and I thought Brokedown Palace did this very well.<br /><br />The ending, with one friend basically sacrificing herself for the other, thus redeeming her earlier poor behavior which got them into the situation in the first place, was very moving. I almost rather would have done without the last line, which proved that she didn't actually do the deed she confessed to, because that would have made the movie more about the friendship between the two girls, and less about the crime. Whether she did it or not wasn't that important.<br /><br />The story itself bordered on the cliché, but the actresses kept my attention with their excellent performances. Very realistic, very captivating.<br /><br />7 out of 10.\r\n1\t\"The Internet Database lists this as a TV show. And yes, it was a series on MTV shown on the \"\"Oddities\"\" program, after \"\"The Head\"\" and before \"\"Aeon Flux\"\" if I recall correctly. But the version I watched this time was a VHS tape with all the episodes run together into a film without annoying credits in between or having to wait a week for the next fifteen minutes.<br /><br />You have the story of the Maxx, Julie Winters, Sarah and Mr. Gone. The Maxx is a super-hero or a bum, Julie a social worker or a leopard queen, Sarah a girl who should listen to less of The Smiths and Mr. Gone a guy who can't seem to keep his head on. And then there's the other weird creatures...<br /><br />I use \"\"or\"\" with Maxx and Julie, because part of the fun is trying to figure out which parts of the story are real and which are dreams. Maybe they're all real or dreams. Maybe one of the characters doesn't exist. Maybe only one exists and dreams of the others. You'll have to wait and find out.<br /><br />I had the comic books before the show came out, and it was one of my favorites. The artwork was spectacular and the story was original -- unlike anything you'll find in Superman or Batman. It will bend your mind, and has strong adult overtones without being obscene or offensive. And the show used basically the same exact artwork (only now it moves) and the same story... guaranteeing that the beauty intrinsically found in the comic would be faithfully reproduced. This was the best show to appear on \"\"Oddities\"\", hands down.<br /><br />If you like comics of a darker nature or need a good mind trip, this is a show to check out. It's \"\"Donnie Darko\"\" before there was ever such a thing.<br /><br />The most astonishing thing is that this never went on to become another movie or television series, but I don't say this in disappointment. By keeping it simple, they have sealed this movie in gold and kept it free from the blemishes brought on by successive failures.\"\r\n1\tCinderella was one of the first movies I ever saw, and to me it is timeless. It is a lovely looking film, with gorgeous animation. My favourite animation scene was the dress scene- I just love those mice. The songs are also lovely, not as good as Snow White's, but they are a delight to sing, and are reminiscent of Tchaikovsky. A dream is a Wish and So this is love? are standouts. The characters are also a delight. Cinderella is idealistic and strong, and the mice provided great comic relief. The stepsisters were also well done, as well as Lucifer. But I loved the stepmother the best, she was really evil, in comparison to a great character in the name of the Fairy Godmother. It is true, the movie drags slightly, with the antics of the mice, but they were genuinely funny, so I don't care. I don't think it is overrated, underrated don't you mean? It rarely plays on television, but the really bad sequel does on Cinemagic on a regular basis. if you want a great Cinderella adaptation, try the wonderful Ever After, or the lavish Slipper and the Rose, which isn't as good. But whatever you do, avoid the sequel, which I have the mistake of owning, because you'll thank me. 9/10. Bethany Cox\r\n0\t\"This is the worst show. Buntch of grown up acting like kids no humor nothing. Even Sesame Street has better humor and more adult than friends \"\"Friends\"\" may be the worst thing I've ever seen on television and I've been sitting in front of the tube observing Friends\"\" simply does not stack up well to other, contemporary series. It lacks the smartness of \"\"Seinfeld\"\" and the wonderful self-ridicule of pomposity that is the hallmark of \"\"Frasier\"\". The characters in \"\"Friends\"\" seem designed to make them repellant dullards. This incestuous group of neighbors makes my flesh crawl.<br /><br />The unintelligent show is completely without an edge of any sort. The characters are caricatures of caricatures and the writing is sophomoric -- though intentionally so. (It might be interesting to observe a writing session since the writers may have to slave to aim lower than their capabilities so as not to confuse the loyal friends of \"\"Friends\"\".)\"\r\n0\t\"I still don't know why I forced myself to sit through the whole thing. This \"\"film\"\" wasn't worth the Memorex DVD-R it was burned on; I thought I was watching the end result of a group of middle schoolers stealing their parents' camcorder. This is by far the worst movie ever made. I truly, from the bottom of my heart, want to sue Aaron Yamasato for the two hours he stole from my life.<br /><br />So apparently, it's supposed to be bad on purpose; However, if you should end up in Hell and are forced to watch this 90-minute coil of doo-doo, you'll see that Yamasato is really trying hard to make an awesome flick. The actors attempt dramatic kick-ass performances comparable to Crimson Tide but come closer to The Marine.<br /><br />The crap acting is just the tip of the iceberg. The camera angles are awful. The story is C-movie at best-- the plot isn't even good enough to be considered B-movie caliber. The dialogue attempts to be dynamic and witty, but is crap like everything else. Rumor has it that a hard copy of the screenplay actually attracts flies. Plus, the techno score is annoying... not because it's techno, but because it's NON-STOP. That's right, the music plays in the background THE WHOLE TIME, acting as a subliminal reminder of how bad this thing is. I don't care what the disclaimer claims, I don't buy it. BOTS was not made this bad on purpose, because it takes itself WAY too serious for what it was: a joke.<br /><br />This \"\"film\"\" was very low-budget. But that is no excuse for its record-setting suck factor. Great films are born of substance, not budget. BOTS had neither.<br /><br />Allow me to further articulate the overwhelming power of this 90-minute waste of time: if I were having a three-way with Jessica Alba and Jessica Biel in front of a TV and Blood of the Samurai came on, I'd be out of there quicker than Steven Seagal in Executive Decision.<br /><br />Undoubtedly, some people will try to defend the movie. Two, maybe three. They'll say, \"\"it's grindhouse chop-socky!\"\" or \"\"cheesy in a good way!\"\" or \"\"it's so bad, it's good!\"\" Those people are idiots. A movie is either good, or it's bad. There's no such thing as a good bad movie. But there ARE such things as idiots that like crappy movies. Don't get me wrong; there are lots of cornball not-to-be-taken-seriously movies out there that are enjoyable and entertaining. Slither is one. BOTS is not.<br /><br />This suckfest runs about an hour and a half, and in my humble opinion, it's 90 minutes too long. The best thing about this \"\"film\"\" is the DVD cover, so next time you're near the Wal-Mart DVD bargain bin, take a look at it-- DON'T TOUCH IT, just look-- and quietly walk away.\"\r\n1\t\"While this is a faithful adaptation, it is much less exciting than Greene's novel. Also, it's a bit ridiculous when people say things to Boyer like, \"\"You're Spanish, aren't you?\"\"<br /><br />Still, the movie's not at all bad, just slow-moving.<br /><br />\"\r\n1\t\"I watched this movie alongwith my complete family of Nine. Since my younger brother has recently got married, we could connect with the goings-on. The movie stands out for the classical touch given to the romance of the engaged couple. Thankfully this time all Indian locales like Ranikhet Almora etc have been used, which have been already visited by most of the urbanites, hence adding to the connection with movie. The dialogues are much better than those in the \"\"Umrao Jaan Ada\"\" - a supposedly dialogue based movie. The background music is augmenting the \"\"soft focus\"\" of the movie. It somehow remind me of VV Chopra's \"\"Kareeb\"\", in which neha and to some extent Bobby did full justice to the character. Same here, in that the lead pair does not disappoint in any department-looks or acting. The Supporting cast are too good. I rate the actress playing the role of Bhabhi in the front league. The situations of family interactions portrayed are real and you smile when you find yourself in place of one of the characters. Songs were too suiting the scenes and going along well with the movie. However, though I respect Ravindra Jain for his body of work from movies to Ramayana, I missed Ram Laxman badly.<br /><br />It had no double entendres(Sivan category), no bikinis, no intrigue, and no nonsense. You would comfortably watch the movie with your parents except if you're already or going to be soon engaged. I want to express on candid thing here that though Suraj proposes that the marriages is between families and not only individuals, his approach is totally individualistic. The movie is only about Prem & Poonam, rest of the characters are incidental. Art immitating life? The \"\"peripheral characters\"\" are consigned to the background and the only protagonists are the lead pair. <br /><br />Coming back, Everything was almost great. Except, for the drama part. The situation of tragedy was artificially created. The outcome, the sacrifice and the ensuing heart change are not compelling at all. That is why it lacks the emotional punch-the very purpose of this turn of events. But, a twist in the tale was necessary to transcend the movie from a beautiful pre-marital video to a 'feature film'. But I kept waiting for the punch and it never came. The preaching by Mohnish Bahal and later by Alok Nath on dowry was out of place and it made things too overboard. May be this will help the movie a tax-free status. But the plot could have been made more interesting and non-linear than what it was.<br /><br />There were too question in my mind when the movie ended: 1 Has the movie really ended? 2 Has the movie ended?\"\r\n1\tBilled as the story of Steve Biko -- played excellently by Denzel Washington, as you'd expect -- this was actually more the story of Donald Woods, played by Kevin Kline.<br /><br />This was undoubtedly the making of Kline as a serious actor, and he was surprisingly good in the role.<br /><br />Attenborough gave this the sort of direction you'd expect, and the often spectacular scenes of the masses were those of the sort that only he can get across.<br /><br />The remainder of the cast was competent enough and did a good job, in what ends up as an ultimately sad tale of a South Africa that is still nowhere near the distant past.\r\n0\tThis very low budget comedy caper movie succeeds only in being low budget. Dialog is dumbfoundingly stupid, chase scenes are uniformly boring, and most of the on-screen money seems to have been saved for a series of crashes and explosions in a parking lot during the film's last five minutes (a briefly glimpsed port-a-potty early in that scene is certain to wrecked and spew crap on the film's chief villain--no prop is here without a purpose). The whole film is depressingly reminiscent of those that occasionally came out of Rodger Corman's studio when he'd give a first time director a few bucks and a camera--but without the discipline Corman would impose.\r\n0\twith all the European studios involved in this one, you would think you'd at least get some pretty photography; but the local color is kept to a minimum.<br /><br />Irritation #1 is Mira Sorvino using a Russian accent in order to play a Spanish cop - WTF? The story is hopelessly confused. There's a supposed romantic back story that is intentionally confused - is she or isn't she a lesbian? - serving no purpose whatsoever. The cops in the movie are the most stupid to have graced a serial killer film in a long time. There seems to be some message about the mid-'30s Spanish Civil War But since pretty much everybody involved in that is dead, one doesn't see the point in it.<br /><br />Despite the bull-fighting backdrop of part of the narrative (which part? who can tell), you never even get a good look at a bull fight. Earnest Hemingway would have punched the director in the nose - with my blessings.\r\n1\tThe more I watch Nicholas Cage, the more I appreciate him as an actor. Watching this movie now (in 2005), I can see that it doesn't really fit into the genre of movies that was coming out in the early 90s. I don't really think it can be considered a film noir, but it is pretty dark at times, due mostly to the lighting and odd personalities of the characters.<br /><br />Typical performances from each of the three main actors, who all did a good job with their roles. I thought, however, that Hopper and Boyle's characters were left undeveloped, as it was sometimes hard to understand what they were doing and why they were doing it. Hopper is a love him or hate him kind of guy. The plot is really good, and although I found some parts to be very unrealistic, there were parts where I had to hand it to the director (i.e. when he first sees the sheriff). All in all, this movie is definitely worth watching. ***1/2\r\n1\tI can agree with other comments that there wasn't an enormous amount of history discussed in the movie but it wasn't a documentary! It was meant to entertain and I think it did a very good job at it.<br /><br />I agree with the black family. The scenes with them seemed out of place. Like all of a sudden it would be thrown in but I did catch on to the story and the connection between the families later on and found it pretty good.<br /><br />Despite it wasn't a re-enactment of the 60s it did bring into the light very big and important landmark periods of the decade. I found it very entertaining and worth my while to watch.\r\n0\tI'm sure that Operations Dames was a favorite at the drive-ins back in the day. There's absolutely nothing in the way of a plot that you might miss if you were otherwise preoccupied. And if you needed to get in the mood for other activities you did have some curvaceous cuties on screen to get you in the mood.<br /><br />Otherwise there ain't a whole lot that Operations Dames has going for it. It's set in the Korean War where a platoon of GIs together with a British tommy gets a little too far forward and has to get back to the UN lines. Bad enough already, but these guys also come across a stranded bunch of USO girls and their choreographer in the same predicament.<br /><br />You know what's sad about this film is that it took women generations to finally get accepted in the Army and in combat situations. These bimbos from the USO set women's liberation back light years. In fact not even the hard bitten professional soldier who is the sergeant in charge of these men can keep it in his pants.<br /><br />But that was probably the better to remind some what they were at the drive-in for. This no name cast is better off with me not recognizing any of them for any individual effort.<br /><br />Operations Dames is definitely a team flop.\r\n0\t\"My wife and I started to watch this movie with anticipation. It looked warm and touching. It started out well; but, soon became boring and frankly idiotic after a while. It got so bad that we turned it off The movie was poorly acted and honesty, we couldn't really understand or wanted to understand what exactly why or how the hell they could put up with this woman! You lost sympathy for her after she was rude and acting wackos singing and cleaning. I would have had her committed. And, of course, like most movies and T.V series made in Hollywood we have to throw it a token \"\"gay\"\" character! This movie was boring. I was expecting more from Diane Keaton!\"\r\n1\tDumbland is not for all. In fact Dumbland maybe in for nobody except Lynch and that's what make it funny and a collective cartoon. Violent? Yes. Profanity? Yes. Absurd? Yes. A piece of garbage? Never. Dumbland is a wonderful picture of some Americans that don't have brains and hit wife and kids for fun. From México I can say I love it! My favorite episodes are: 1- My teeths are bleeding, all the noise around and violence make me wanna scream and put me behind my bed. 2- Get the stick! Yeah baby get it and learn a lesson: some people never be thankful for your actions. 3- Ants. The more Lynch episode of all, music, surrealism and a very sweet revenge...\r\n1\tMany of the American people would say...What??? to my opening comment. Yes I know that my comparison is without doubts an insult for the fans of the Master Akira Kurosawa, but if you analyze this movie, my comment is right. We have the peasant who goes to the town searching for help against a band of grasshoppers who wants to steal the harvest of the village. The great difference is the way that the story takes. Our samurais, a band of circus performers as in the original are a very complex mixture of personalities but at the end are what the village needs, HEROES. Please watch again this incredible movie (the Seven Samurai, obviously) and find another movies who has stolen the story and tried to get the same magic effect than the Masterpiece of Akira Kurosawa. A tip is The 13th Warrior with Antonio Banderas, Michael Crichton copied the story to wrote his Best seller's, but he didn't found the third foot of the cat.\r\n1\t\"When will people learn that some movies are made for fun and are not necessarily out to change the world? If you realise this then expect to have heaps of fun while watching \"\"Bill and Ted's bogus journey.\"\" This is a movie that is heaps of fun to watch, Keanu and Alex make a great on screen team reprising their characters from \"\"Bill and Ted's excellent adventure\"\" with even more 'style' then they had in 1st movie. It's not rocket science but it's great for a laugh, the characters being extremely like-able and the story-line being so radical you have to laugh. Don't expect 'deep-and-meaningfulls' just expect pure fun!\"\r\n0\t\"A very bad attempt at a young spinal tap. At least the music in spinal tap was good.<br /><br />This is really a very sad case of Hollywood nepotism at it's worst. A bunch of Hollywood execs, bad musicians and producers create some \"\"poopie\"\" show so their kids can be in the spotlight. Oh please!!! The potty humor was even bad. I hate this stuff when there is really incredibly talented kids (musicians, actors and artists) out there busting their butts to have success and this crap comes along.<br /><br />Help u all!!!! Why wasn't Gene Simmons in it??? Ameriac's taste in entertainment is going down the toilet.\"\r\n1\tI had to see this gem twice to really appreciate all of it. When a widowed father of two interrupts his two sons' sleep with a shocking revelation, they are torn between believing him and not. As the horrifying events of this tale unfold, we learn a lot about the father, about his two sons, and about their destinies. With shocking twist after shocking twist, this film never allows for a lull in the plot. Bill Paxton plays the father, but the most notable performances are that of his older son, Fenton, played by Matthew O'Leary and his younger son, Adam, played by Jeremy Sumpter. This is one of the best thrillers that I have seen in a while, and you will want to watch this a few times to appreciate every intricate aspect of the plot. I give this film a 9/10.\r\n0\t\"I love John Saxon in anything he's in. The one time he takes over the camera though he directs a movie that should have more aptly been been titled \"\"Please Do Not Watch This Movie Called: Zombie Death House\"\". The $1000 dollar Shock Insurance Certificate is dear Fred Olen Ray's tricky way of making you spend 14 dollars on a filmed dump churned out by a major 70's cheese legend. Ray being the front man at RetroMedia. Ray by the way makes Charles Band look hotter than stucco ceilings on a Ford Falcon. Just plain bad now, the both of them- and boring besides. It's great that Ray is digging up this old stuff and in some cases it's public domain like the rest of the dollar video hucksters but in the case of Zombie Death House- (the word \"\"Zombie\"\" sloppily superimposed to add ownership and interest on the part of F.O.R.) THE ONLY WAY TO DO SERVICE TO THIS TRIPE IS TO RELEASE IT ON THE DOLLAR MARKET FOR THE CURIOUS COLLECTOR AND FANS OF SAXON!!! If you wanna see real Saxon, pick up Black Christmas, Nightmare on Elm Street or The Glove.\"\r\n0\t\"There are exactly 2 good things to be said about \"\"Fantasies\"\" (both mentioned by a previous reviewer as well): <br /><br />a) Bo Derek's extraordinary, poetry-inspiring beauty. She has shots in this movie where she gives even Catherine Zeta-Jones a run for her money, and that's a high compliment indeed. Her nudity is brief and discreet, but just looking at her face is enough.<br /><br />b) The Greek island setting, with its sun and crystal-clear blue waters.<br /><br />Other than that, there is no story, the dialogue is abysmal and at times unintentionally funny (\"\"He touched you where you're a woman!\"\"), and Peter Hooten's character is a slimy jerk. Bo overplays the naivete of her character, but then again when you have to work with dialogue this bad it's unfair to blame the actors (the fact that she kept saying the name \"\"Damir\"\" in almost every sentence is a major irritation). Oh, and although the film is set on a Greek island, there is hardly a Greek word to be heard - apparently everyone there, from kids to old people, speaks English the whole time. (*)\"\r\n1\tIt might be a little erroneous to open a review by describing a film in terms of other films, but I think it's the best way to give an approximation of the place Election occupies in the gangster genre arena. It works somewhere in between The Godfather and Kinji Fukasaku's yakuza opus The Yakuza Papers (AKA Battles Without Honour and Humanity), in that it is simultaneously both romanticized and realistic, dark and gritty. But it's also a Johnnie To film, and as such it carries the distinct touch of the Hong Kong auteur.<br /><br />Every two years the HK Triad elects a new boss. Only this time one of the candidates is not overly happy with the result so he decides to take matters into his own hands much to the dismay of the rest of the Triads and the police. That's the story in a nutshell but rest assured it has a lot more going for it than that. As in The Yakuza Papers, there's a great deal of scheming, back-stabbing and forming and switching of allegiances (sometimes all it takes is a phone call - in one of the most memorable scenes I've seen in recent time) which might not necessarily make for deep drama but makes for an interesting plot and good character conflict. Fans of the gangster genre are likely to appreciate it in that aspect. Election is not as action-oriented as one might expect; although it IS violent. And I'm not talking about the glossy, glamour version of Hollywood violence. This is dark and grim. To's camera lingers in the scenes of people being brutalized in ways that reveal both the humanity and inhumanity of the perpetrators and victims; after all violence IS an integral part of us whether we like it or not.<br /><br />If you're familiar with To's style, then you should know what to expect. The pacing is relatively slow and deliberate. The cinematography is great, slick and dark in equal measures, utilizing dark hues (brown, dark green and orange) while the smooth tracking shots add a vibrant quality to it. In the end, Election occupies a peculiar place. It's not exactly a character study and it's not an action-oriented gangster film. It explores a situation (the election and its aftermath), but does so in style, and is both realistic and romanticized (the Triad ceremonies in particular echo of an oriental Godfather).\r\n0\tAs you may have gathered from the title, I wholeheartedly believe this movie to be the worst zombie movie of all time. The acting, camera-work, writing, special effects and anything else remotely related to this movie sucked. People have argued that while this movie is terribly-acted and terribly-produced but it comes through with a witty intelligent script. Wow. The plot has more holes than I or anyone else could possibly count. For starters, why would the government tell everyone to go back to work when it's not safe? I know the government's supposed to be evil but they don't gain anything by killing the entire population of the country. There wouldn't be anyone to govern! Another thing that I was wondering about, even if the government told everyone to go to work, why would people go if the streets were swarming with zombies? Were the zombies going to hide in the bushes and ambush the unsuspecting people in order to aid the government in their plot to kill everyone on the planet? And how about the ending? That stupid Torch guy sacrifices his life in order to get a few close up shots of the zombies. He probably forgot that every camera made in the last 35 years has a zoom feature. And another thing, why does he say Hindenburg before he dies. The Hindenburg was a rare event seen by a very few people. The zombie menace will been seen by everyone in the country, possibly the world. He doesn't think anyone else will get a few snapshots? They also managed to ruin the only semi-interesting scene in the film when the soldier is watching the exotic dancer. Why did the zombie hide behind a curtain for five minutes before attacking the girl? Especially when the zombie could have come through the DOOR. It's probably just something an unintelligent zombie movie fan such as myself wouldn't understand. Every day I pray that God with increase my brain capacity long enough for me to figure out all the subtle nuances in Feeding the Masses.<br /><br />Anywho, I think it's interesting that this is the first movie that gave me the desire to physically hurt the people involved in the production. Hey Trent Haaga, I'm calling you out!\r\n0\tThis has to be one of the worst films I have ever seen without a doubt. The only thing interesting in this film is the cameo appearances from some great genre directors and King himself. The film has a great premise, but falls apart about 15 minutes into the story. I did like Madchen Amick in this film and think she could have a very good career in film.\r\n1\ti love bed knobs and broomsticks so much that it makes me cry a thousand tears of joy every time i have the magnificent pleasure of seeing it. i would also like to reiterate the simple fact that i love it so much.too much some have said. i have 27 copies on video and i love them all equally. i also love anyone else who loves it. i love you. my favourite scene is the dance scene at portobello road. i have learned the dance moves and practice it everyday. i have some audio recordings of myself singing the song. if anyone can play the drums or guitar i am thinking of forming a bed knobs and broomsticks band.i hope to call it 'the knobs'. love me (liz)\r\n0\tWhile not quite as monstrously preposterous as later works, this slow-moving, repetitive giallo offers some nice touches in the first half, but grows more and more lethargic and silly as it stumbles to its lame denouement.<br /><br />To be sure, the actors are above average - considering this is an Argento movie - and some moments show the director's visual skills, but whole sequences should've been cut and, basically, it's just the same exploitative trash as ever, wallowing in fake science and abnormal sexual depravity.<br /><br />3 out of 10 genetic disorders\r\n1\tGod Bless 80's slasher films. This is a fun, fun movie. This is what slasher films are all about. Now I'm not saying horror movies, just slasher films. It goes like this: A high school nerd is picked on by all these stupid jocks and cheerleaders, and then one of their pranks goes horribly wrong. Disfigured and back for revenge, sporting a Joker/Jester mask (pretty creepy looking, might i add), Marty begins to kill off those teens one by one many years later, after he manages to make them believe that their old abandoned high school is having a reunion. That is basically the plot? What's wrong with that? That's the beauty of 80's slasher films, most of them i would say. A lot of things could be so ridiculous, but they keep drawing you more in an' in as they go by. Especially this film.<br /><br />It features some outrageous killings, and some are quite creative as well. (poisoning of a beer can, acid bath, i can't remember a javelin ever being used before in any other slasher film either)It really is a fun, fun movie. That's all it is. Nevermind the fact that the characters are complete idiots, never mind their stupidity, and never mind the outrageous, random things that occur in this film. Such as lights being able to be controlled by the killer (when he's not even switching any buttons, you'll see) and toilets being able to cough up blood, baths being able to have acid come out of them, just use that as part of your entertainment! Because thats what really makes it entertaining.<br /><br />Movies like this represent 80's slashers. Never again could movies like this get made, know why? It isn't the 80's anymore. That is why you should just cherish them for what they are, good fun! I highly recommend this film if you're a hardcore fan of Slahsers such as Friday the 13th.<br /><br />One last note this movie also had a kick ass villain as well, Marty Rantzen. A disfigured, nerd, who kills all his old foes in a creepy Jester mask. A good villain makes a good slasher. Simon Scuddamore, who played Marty apparently committed suicide shortly after Slaughter High was released. That alone adds something creepy to the film, and sticks with it and it even makes you feel more sorry for the Marty character, i guess. All in all, great 80's slashers fun! It's a shame it will never be the same again...\r\n0\tThis film is pure 'Hollywood hokum'. It is based upon a novel called 'Not Too Narrow  Not Too Deep' by Richard Sale, which may or may not have been interesting; it would take research to find out! The story in the film takes for granted many incidents and much background which obviously existed in the novel but are nowhere to be seen in the film, so either the film was savagely cut or the screenplay was a mess from the start. There is not one millisecond in this film which is remotely realistic, either in terms of events or characters. It is pure Hollywood fantasy in every respect. Two well-known actors, Paul Lukas and Peter Lorre, are so under-used and wasted that there was no point in their being in the film at all. They must have been thrown into the mix in the manner in which one adds a sprinkling of chopped chives to an omelette, hoping that the flavour will be enhanced. The film is a ponderous attempt at producing a 'morality tale', and is so corny that it is laughable. The story concerns some hardened criminals imprisoned in French Guiana who want to escape from their French colonial prison through a jungle (very much a Hollywood set jungle, with a rubber snake). Naturally there has to be a woman in the story, so Joan Crawford hams it up as a down-on-her-luck tramp who for some reason becomes irresistible to Clark Gable, one of the escaped criminals. Crawford in escaping through the jungle wears high-heeled shoes and keeps her makeup fresh. Gable flirts and grimaces and makes mawkish expressions, crinkling his brow as was his wont, smirking and looking suggestively at everybody, which was his manner of acting. It is hard to treat such a character as a hardened criminal when he is always trying so hard to be Clark Gable that surely he hasn't any time left to be a thief. (Attention-seekers are by definition too busy to steal and unsuited to a task which requires that people NOT see them.) The whole escapade is so ridiculous that it can only be regarded as light entertainment. An attempt at religiosity and 'depth' is made by injecting into the story a mysterious 'angel of mercy' who voluntarily walks into the prison and pretends to be an inmate. He helps in the escape and accompanies all the criminals and ministers to their various deaths, helping them to find 'peace' in their last gasps. This character is played very well by Ian Hunter, who retains throughout a convincing air of secret knowledge, smiles enigmatically, makes cryptic prophetic remarks, and has a small spot trained on his face to give him a heavenly glow. The theme is meant to be redemption. You might call it the Donald Duck version of 'Hollywood Goes Moral and Gets Heavy'. For real depth, Hitchcock's 'I Confess' of 1953 shows how it should really be done. By contrast, this piece of trivial nonsense shows just how bare the cupboards of Meaning were in Tinsel Town, and that when they went rummaging for something that might mean something, all they could come up with was, you guessed it, more tinsel.\r\n1\t\"I do see what my forebears saw in the youthful Bette Davis. She's splendid throughout this almost-madcap political comedy which actually stars Warren Williams as the political operative constantly behind on his alimony. Vivienne Osborne is brilliant as his ex, and I found myself rooting for her throughout. The Williams character is not at all sympathetic, and he's not even a decent op.<br /><br />Guy Kibbee is one of the best at what he does. As a candidate dragged out of his sleep at a political convention and nominated to be governor in order to prevent a rival candidate from being nominated, so this whole mess is borne of internecine political warfare in a party called the \"\"Progressive Party.\"\" If you're of a political mind, you will probably see a party other than the one with which you are affiliated reflected in the fictional \"\"Progressive Party\"\" of Williams and Kibbee. I could draw exact parallels, but we're not here for that.<br /><br />This is a good movie for those of us who love these old comedies. If you've ever watched any of the old Wheeler & Woolsey titles (HALF SHOT AT SUNRISE, THE RAINMAKERS), you'll find Frank McHugh, as Williams's right arm, looking and behaving a lot like Bert Wheeler. He had me fooled.<br /><br />Yes, both my wife and I recommend this one.\"\r\n0\t**SPOILERS**This was an ugly movie, and I'm sorry that I watched it. Like Jan Kounen's Dobermann, it suffers mostly from poor editing--or lack of it. It is as if the director was so in love with his work that instead of cutting the movie down to a pace that kept your attention, he added all of the footage he had shot together. There are maybe two cool scenes in the entire movie. One of them is *SPOILER* when Benkei is petrified and the camera starts spinning around him. That was cool--but okay, we got it! Move on please! The camera won't stop spinning around this guy! There's maybe one or two more cool scenes that I forgot about in this flood of mediocrity, but the last duel scene IS NOT ONE OF THEM! It may be because unlike in the earlier sword-handling scenes, Shanao isn't masked--but just because the director couldn't find a stuntman who somewhat resembled Asano Tadanobu doesn't give him the right to go ahead and make up 80% of the sword fight with extreme close-ups of sword clashes! And all from the same angle, may I add. The director should learn from the American produced 1995 bullet-train ninja movie The Hunted! I personally saw the village raid scene as a tribute paid to the social activists of the previous generation who were confronted by the police in the violent demonstrations of their college years. The situation where innocence is oppressed by an authoritative and armed branch of the government unwilling to understand seems to be a message common in the Japanese media, due to the strong influence of socialists and communists who are a political minority. The movie versions of GTO and Salary Man Kintaro are two other recent examples *END SPOILER* I don't understand. I just don't understand why people who don't speak the language of the movie find praise worthy material in this. Maybe the worst was lost in the translation.<br /><br />The ending of the movie--on which marketing played a lot, is a different interpretation of the legendary encounter between Shanao and Benkei. But that legend is not the most popular in Japanese folklore, and it is so detached from contemporary themes, that after 138 minutes of over played visual techniques, who cares how the director wants to re-interpret the story!? Director Sasaki Hirohisa of Crazy Lips said that there was an unpleasant trend among new Japanese directors to ignore Japanese audiences, and target their movies for foreign film festivals--in order to gain faster international fame. This works, although it doesn't make sense, because the point of an international movie fest is to introduce to the world what kind of movies are being made in other countries-what kind of movies people WATCH in those countries. Certainly not Gojoe and the like.\r\n1\t\"No one better spoil this piece of work! Awesome movie! Written expertly by the likes of Ira Levin and depicted with the best performance of Christopher Reeve's career and one of Caine's very best, this is simply excellent. I wish I could catch a staged version somewhere...maybe someday I will. I hope this grossly underrated, overlooked film has not become too difficult to locate because it a 'must' for any Hitchcockian, Agatha-phile or lover of great film. One of very few movies I couldn't instantly solve or predict and worth a second or even third viewing, \"\"Deathtrap\"\" gets a 9/10 and earns every iota of it. We need and deserve more movies like this!\"\r\n1\t\"I saw Jack Frost for £4:00 at my local store and I thought it looks pretty good for a low budget movie so I bought it and I was right it was good. For starters this film is about a killer snowman so that's something to laugh about and the way it looks was funny compared to the Snowman on the cover. <br /><br />The acting was okay and the lines Jack Frost said had me laughing \"\"I only axed you for a smoke\"\" and \"\"Worlds most pi**ed off snow cone\"\" how funny and camp is that? The tale at the start was pretty funny and silly too \"\"Jack be nimble, Jack be quick, Jack gouged eyes with candle sticks\"\". If you're looking for a for a B-Movie Comedy horror that's full of puns then check Jack Frost out. 10/10\"\r\n0\tWhen I saw previews of this movie I thought that it may be dumb, but it will at least be funny. Well I was wrong. Even though somewhere deep down the producers had an interesting message to convey about parents being left alone and re-evaluating their life, the way they tried to deliver that message was horrible. The first fifty times something silly happened to the couple was relatively funny. But by the end, I could almost predict what stupid mishap is going to happen next.<br /><br />Throughout the movie I like a total of maybe five lines of dialogue and everything else was at best mediocre, which is still more than I can say for the movie itself.\r\n1\tI have loved this movie since I first saw it in 1979. I'm still amazed at how accurately Kurt Russell portrays Elvis, right down to how he moves and the expressions on his face. Sometimes its scary how much he looks, acts, and talks like the real Elvis. Thankfully this is being released on DVD, so all of us that have been waiting can finally have an excellent quality version of the full length film. I have heard the detractors, who say that there are some inaccuracies, or some things left out, but I think that keeping in mind that John Carpenter only had about 2 1/2 hours to work with, and that this was being shown on television (just two years after Elvis's death!) that he did a fine job with this. In fact I haven't seen another Elvis movie that even comes close to this one. Highly recommended.\r\n1\tWhile the prices have gone up a lot, and some of the details have become dated, any homeowner who's struggled with problems of homeownership should get a lot of chuckles out of this movie. I know I did.<br /><br />Mr. Blandings, a New York ad executive, decides to move his family to the Connecticut suburbs and build himself a nice house there. He gets into one hilarious jam after another, from mortgages to lawsuits to construction difficulties, as the costs and schedule of the construction keep escalating out of control. I thought that the funniest scenes were where Blandings hires a contractor to dig a well for water. They dig down hundreds of feet, but never find water. Yet only a short distance away, a few days later, the basement of his house-to-be floods!<br /><br />Cary Grant and Myrna Loy give believable performances as the harried Blandings couple overwhelmed by problems they never imagined, and Melvyn Douglas is even better as Blanding's lawyer and family friend.<br /><br />The only caveat is that social attitudes have changed a lot since 1948. Mrs. Blandings is portrayed as a bit of a naive dimbulb who has no idea how much additional trouble she's causing, and there's a black maid (horrors!). So don't watch this movie through the social lens of 2003, and you'll enjoy it all the more.<br /><br />\r\n1\t\"If you've read Mother Night and enjoyed it so much (as I did) that you just have to see the movie, understand that you have to understand a fundamental element of Vonngut's writing - that beyond his story lies Vonnegut himself, and that you can't put a human mind on the screen. His whit and humor just cannot be transcribed by a screenplay or even the best acting performance. I believe that this movie exceeds in asking the key questions that Vonnegut poses in his book, but those frequent cynical moments of satire found on the page are not found on the screen. Does this mean that the movie misses the mark? Of course not. In my opinion, the movie succeeds because it does not try to recreate the experience of reading the book (this is not a medium for those too lazy to turn a page). It succeeds because it takes the fundamental elements of a story created by one of America's true artistic treasures and presents it in a a framework without pretense. I've seen other movie versions of Vonnegut books where the director obviously tries to channel Vonnegut's genius and loses grip on his own craft. I would not place this movie as one of the best I've seen, but it stands on its own legs as one well worth watching. By taking Vonnegut's \"\"voice\"\" out of the movie's narration or trying to insert it however it can, Mother Night tells his story brilliantly, and preserves the story's fundamental lessons without confusion, distraction, or disappointment.\"\r\n1\tOne of the last classics of the French New Wave. For direction, cineaste Jean Eustache drew from the simplicity of early-century cinema; for story, Eustache drew on the torments of his own complicated love life. So many things can be said of this film - observationally brilliant; self indulgently overlong; occasionally hilarious; emotionally draining...etc. etc. In my mind, whatever complaints that can be leveled against this film are easily overshadowed by its numerous strengths. Every film student, writer, or simply anyone willing to handle a 3 hour film with no abrupt cuts, no music video overstyling, no soap opera-like plot twists, and no banal dialogue should make it a point to see this movie. Everything is to be admired: the writing (concise, clever, surprisingly funny), acting (everyone, quite simply, is perfect in their respective roles), and, simple direction (the viewer feels like a casual observer within the film) make this film unforgettable. This is undoubtedly a film that stays with you.\r\n1\tIf only ALL animation was this great. This film is classic because it is strong is two simple aspects: Story and Character. The characters in this film are beautifully personified. I felt for all of the characters, and human-animal relationship in the movie works perfectly. The beautiful animation and 3-D computer animation hasn't worked better in any other film. This is a great movie for kids, and for adults who want a classic hero's journey. 8 of 10.\r\n1\tThis is a comedy based on national stereotypes, no doubt. If you leave away pretending you know or you care what Communism was about and how real Russians or Brits are, if you accept and are not hurt by the conventions, you can have fun with this film. Nicole Kidman is at her best, sexy, moving and funny. Ben Chaplin succeeds to avoid being completely out-shadowed by Nicole, and the rest of the cast does good work as well. The final is moving, and logical - movie logics, of course. Worth watching, if you accept the rules of the game.\r\n0\t\"I think Dolph Lundgren had potential at being a big action star a la Schwarzenegger, Stallone, and even Van Damme to certain degree. He had some big moments in his career but he also made some poor choices and this is definitely one of them although made later in his career. The strange thing about Jill The Ripper (or Jill Rips...or Tied Up) is that I honestly think they seriously thought they were making a provocative and serious thriller? It shows in the way that they describe it on IMDb, on the DVD case, in the commentaries, and this film is not serious. To call it campy would be a huge understatement. The film tries to be complex and intelligent when in fact it's nothing more than shallow, confusing and gratuitous. On top of that they put Lundgren, who is known for action films, in an attempt at a serious role which makes it even more campy because his range as an actor is pretty limited. The entire film revolves around the kinky sex world and yet they attempt at making it a serious thriller? Just the plot and premise immediately make it a B-Movie Porn at very best.<br /><br />Dolph Lundgren plays disgraced former cop and raging alcoholic Matt Sorenson who decides to play Detective when his brother is murdered. I mean put aside the numerous plot holes that has Lundgren getting free roam to investigate crime scenes, and witnesses and everything else even though he's not a cop anymore and you still have a pretty strange and rather lack luster performance from Lundgren. Danielle Brett is Lundgren's eventual love interest and his brother's widow. Brett plays her role decently enough considering the script and campy story. The supporting cast is huge and no one particularly stands out in their performances unless it's on the negative side such as the absolutely horrible performance by Victor Pedtrchenko who seems to go by several different names in the film, boasts an awful accent and is a really awful villain.<br /><br />I honestly tried to get into the mystery and film and watch closely but there wasn't any reason to because it was all a jumble of ridiculous plot and gratuitous sex games including a downright ridiculously hilarious scene where Lundgren goes under cover and is strung upside down nearly naked. To explain how classy and well done this movie is (sarcasm...sarcasm) the back of the DVD I picked up (it was really cheap) has Lundgren's character listed as \"\"Murray Wilson\"\" (not the name of his character in the film.) While somehow Lundgren manages to be usually watchable the film falls flat on it's face trying to be serious. Considering director Anthony Hickox is infamous for really B-Movie Horror flicks it only makes sense even though I think he was really trying to be serious. Hard core cult Lundgren fans will have to see it...no one else should...certainly for any sort of mystery or suspense. 3/10\"\r\n1\t\"Without a doubt, Private Lessons II is the greatest movie I have ever seen. A Japanese import (poorly) translated into English, its a joy to watch. Not much of it makes sense, but that doesn't matter. It's the greatest comedy around without ever being intentionally funny.<br /><br />The film is rare and unavailable on video, but I have caught it a couple of time late, late at night on pay cable. My taped copy has been watched dozens and dozens of times as I slowly, person-by-person, introduce this film gem to the world.<br /><br />Joanna Pacula plays the tutor/lover to Ken, our hero. (She apparently was just working for her check.) Ken is played by Goro Inagaki, of the Japanese pop band SMAP, who gives it his all and has great hair through out the movie. Stacy Edwards, of \"\"In the Company of Men\"\" fame, shows up in the movie too and is probably happy that she found other film work afterwards.<br /><br />It takes at least three viewings to sorta figure out what the plot is. On repeating viewing you can enjoy elements like the abnormal amount of vases Ken has in his house (at least 50) or that Ken is wearing a shirt with embroidered husks of corn in the movie's finale.<br /><br />The movie is predictable, but highly quotable. My friends and I reenact entire scenes. Yes, it sounds like we're lame losers and we are ... but we're lame losers who have seen \"\"Private Lessons II.\"\" Be one of ten people in the world who have seen this movie. You'll thank me for it.\"\r\n1\tI found this film by mistake many years ago & wondered then (still do) why it didn't get the acclaim it should have. Well written, beautiful acting, one ironic twist after another, and THERE IS PLAUSIBILITY in what the nefarious characters are attempting. I would not recommend this film for people with short attention spans; it requires sufficient intelligence to comprehend that there maybe a kernel of truth in this story.\r\n1\tI was initially forced to attend by my wife as she is fascinated by the Royal families of Britain and their history, and she won't go to the cinema without me. Although viewers shouldn't expect to be electrified, this film is very well made and the visual aspect is second to none. In many ways it helps dispel the myth that Victoria was the miserable unsmiling dumpy woman usually seen in photographs. She was a bright intelligent and according to the history of her early years, a fun loving happy young woman. Her love of Albert was the essence of true love, and even if you only count the number of children she bore (9), they must have had a passionate relationship. All of this is well borne out in the film. To this end, the cast has been well selected with both Emily Blunt and Rupert Friend giving sound performances as Victoria and Albert.<br /><br />(SPOILER ALERT) The historical accuracy is somewhat questionable as at no time did Prince Albert get shot while defending Victoria. There was at least one assassination attempt when they were out together, but nobody was struck by the shot/s. I also found it odd that little was done to expand on the allegedly intimate relationship between Victoria's mother and Sir John Conroy. It is quite likely that this relationship was the true reason for Victoria's distaste for both her mother and Conroy. I also found it odd that there was an attempt to portray the relationship between Victoria and Lord Melbourne as erring on the romantic, or at least having the potential to become romantic. He was already in his late 50's when Victoria came to the throne, and while marriages between older men and young women were common in that era, the movie portrays Melbourne as being a dashing 30 something and rival to Prince Albert. There were apparently rivals to Albert, but she could never have married even slightly below her station in life, and Albert was one of only a handful who would have been acceptable in any case.<br /><br />All in all I have spent worse times at the cinema, and brownie points with my wife can't be a bad thing either.\r\n1\tI sat with my children as we watched this film. We all found it to be a very entertaining movie.<br /><br />When Billy goes to a new school, a fifth grade bully starts stuff with him and this is what leads to the eating of worms.<br /><br />A bet is made and Billy has only so much time to eat 10 worms or else. From this point the bully and his friends try to come up with nasty ways to cook, fry or bake the worms to try and get Billy sick so that he will lose the bet.<br /><br />Billy stays strong and eats his way into becoming liked more and more by everyone, even the bullies friends.<br /><br />I wont tell you if he wins the bet or not...you will just need to watch it to find out but I will think that if you like good family movies you will like this one.<br /><br />P.S. Let me add that this movie is not just for boys, I have all daughters and they really liked it a lot.\r\n0\tA very cheesy and dull road movie, with the intention to be hip and modern, shown in the editing style and some weird camera angles, resulting only in sleepiness. <br /><br />The cast is wasted, the writing is stupid and pretentious. The only thing worthwhile is the top-notch Lalo Schifrin's soundtrack, really cool and also the opening sequence, very original and interesting. <br /><br />Run if you can, the bad opinions and comments about this flick are totally deserved; it is really pure garbage. Of course that this has its charm, of watching a movie which everybody would not drop the beer glass on if it were on fire, but save it for a stormy day where you have absolutely nothing else to do.\r\n1\tNothing new is this tired serio-comedy that wastes the talents of Danny Glover and Whoopi Goldberg. Considering that this was produced by the stars and Spike Lee, it's pretty tame and tired stuff. And how come the Whoop never changes her hair or glasses over the many years this film covers? Blah!\r\n0\tIf another Hitler ever arises, it will be thanks in part to nonsense like this film, which propagates the absurd notion that he was a visibly deranged lunatic from the start. Far from following such a person and electing him to the highest office in the land, sane people would cross the street to avoid him, and he would have died in a ditch, nameless and unknown.<br /><br />Anyone who reads the accounts of Hitler's close companions - the autobiography of his secretary Traudl Junge for instance - will be struck by the fact that people found him a kindly, intelligent, generous man. He was also a brilliant orator, and the fact that his speeches seem overblown and ranting to modern ears ignores the times in which they were made, when strutting pomposity was common in political speeches. Ditto the overstated anti-Semitism, which was neither a central plank of the early Nazis - who were primarily anti-communist - nor uncommon or unusual for the times. The film makes it look as though Hitler's sole ambition from the start was the Holocaust.<br /><br />If you want to identify the next person who will cause the death of tens of millions, you can ignore fleck-lipped ravers life the one portrayed here. Look instead for a charming, charismatic man whose compelling speeches inspire the entire nation, and whose political work visibly and materially benefits the country. I'm afraid his personality will be much more like Barack Obama's than Fred Phelps'.<br /><br />I hoped for much here, and got nothing but caricature. The fools who made this thing perpetrated a crime against reality. This is the historical equivalent of 'Reefer Madness'.\r\n1\tI have no idea what the other reviewer is talking about- this was a wonderful movie, and created a sense of the era that feels like time travel. The characters are truly young, Mary is a strong match for Byron, Claire is juvenile and a tad annoying, Polidori is a convincing beaten-down sycophant... all are beautiful, curious, and decadent... not the frightening wrecks they are in Gothic.<br /><br />Gothic works as an independent piece of shock film, and I loved it for different reasons, but this works like a Merchant and Ivory film, and was from my readings the best capture of what the summer must have felt like. Romantic, yes, but completely rekindles my interest in the lives of Shelley and Byron every time I think about the film. One of my all-time favorites.\r\n0\t\"Fantastically putrid. I don't mean to imply above that only a few people should avoid \"\"Doc Savage.\"\" Almost every demographic group would be bored by this trivial, TV-movie-quality production. It's a little like the 60's \"\"Batman\"\" TV series, except it's not funny. Even accidentally. You're better off taking a nap.\"\r\n1\tThe release of TARZAN THE APE MAN, in 1932, caused a sensation. It may be hard to believe, 70 years later, but the film had much of the same kind of impact as THE MATRIX, or THE LORD OF THE RINGS has achieved, at a time when movies and radio were the major sources of entertainment. Tarzan became an instant pop icon, the 'noble savage' that every woman fantasized about, and every man wished he could be. The only person unhappy about the situation was Edgar Rice Burroughs, who, while he'd agreed to MGM's creative liberties, and enjoyed his hefty royalty checks, felt the 'dumbed down' version of his character (with no plans to allow him to 'grow') was unfaithful to his vision (he would start a production company, and soon be making his own 'Tarzan' films). MGM, realizing the value of it's newest 'star', knew the sequel would have to be even more spectacular than the original...and TARZAN AND HIS MATE delivered!<br /><br />The film had an interesting back story; Cedric Gibbons, MGM's legendary Art Director, had gotten a commitment from the studio to direct the sequel, prior to the release of TARZAN THE APE MAN, despite the fact that he'd NEVER directed before (the studio hadn't anticipated the film's impact, and didn't think a novice director would matter much on a 'novelty' film...and they wanted to keep their Oscar-winning department chief happy). Gibbons, a prodigiously talented and imaginative visual artist, loved the freedom of pre-Code Hollywood, and decided to have TARZAN AND HIS MATE 'push the envelope' to the limit...Tarzan and Jane would frolic in a nude swim, and Jane would appear TOPLESS through most of the film. Maureen O'Sullivan said in an interview shortly before her death, in 1998, that while a double was used for the swim, she trusted the studio, and did 'a couple of days' of filming sans top...but it became too much of a headache trying to strategically place plants and fruit to block her nipples, and the idea was abandoned (the film shot those days would be worth a fortune!) She did do a nude silhouette scene in a tent, flashed her breasts at the conclusion of her 'swim', and donned a revised 'jungle' costume that was extremely provocative, very thin, and open at the sides...and the resulting outcry would help 'create' the Hays Office, and the self-censorship that would soon engulf the entire industry.<br /><br />MGM yanked Gibbons from the production (the 'official' reason given was his workload as Art Director), and veteran Jack Conway was listed as the new director, to appease the critics...although James C. McKay actually directed the film, as Conway was busy on 3 other projects, including VIVA VILLA!<br /><br />The film incorporated the best elements of the original (safaris, murderous tribes, Tarzan fighting jungle beasts to the death to save Jane), and actually improved on the storytelling. Harry Holt (Neil Hamilton), from the first film, returns to Africa for ivory from the 'Elephants' Graveyard', and to try to seduce Jane into returning to England, with gifts of silk dresses, underwear, and perfume. He brings with him Martin Arlington (Paul Cavanagh), a crack shot and inveterate womanizer, who sneers at Holt's chivalrous pursuit of Jane, and stalks her as a potential 'conquest', to be had by any means (including killing Tarzan, if and when he can get away with it without being seen).<br /><br />Tarzan barely tolerates the intrusion into his happy life with Jane, and puts his foot down, refusing to allow the hunters into the Graveyard. Arlington finds his opportunity, catching the Ape Man alone, and shoots him, then returns to the camp with a fabricated story of his demise. Now Jane has no reason to remain in the jungle, and she can direct them to the Graveyard, before her long voyage back to England, comforted by the oh-so-sympathetic Arlington. But a savage tribe and hideous torture await the group...can Tarzan, being nursed back to health by his ape 'family', recover in time to save Jane?<br /><br />While stock footage is again used extensively, the racial stereotypes of the 30s are apparent, and the gorillas are obviously actors in ape suits, TARZAN AND HIS MATE achieves a level of sophistication unsurpassed in any other 'Tarzan' film, as well as a sexiness that even Bo Derek's blatantly erotic TARZAN, THE APE MAN couldn't touch. Johnny Weissmuller was in peak condition, physically, Maureen O'Sullivan was never more beautiful, and 'Africa' never looked more romantic, and dangerous.<br /><br />TARZAN AND HIS MATE was a triumph (although it would be drastically edited for many years), and remains THE classic of the series, to this day!\r\n1\tYou've never seen anything like it. Once the coup begins, it's the most dazzling, edge-of-your-seat thriller you'll ever see -- even though you know the outcome. And it's all real, because it's a documentary -- amazing. <br /><br />By the time it was over, it was on my Top 10 list of All Time Great Movies.<br /><br />Disregard the slobbering right-wing fanatics. Everyone I know who has seen this film gives it the 4-star rating. Even if you don't care about politics or about Venezuelan politics, you will find yourself nerve-racked and -- believe it -- on the edge of your seat.<br /><br />It's a roller-coaster ride.\r\n1\t\"This series could very well be the best Britcom ever, and that is saying a great deal, considering the competitors (Fawlty Towers, Good Neighbours, to name just two).<br /><br />What made Butterflies so superior, even to the best of the best, is that it did not just exemplify great, classic, classy and intelligent comedy, but it also expanded horizons, reflecting - flawlessly, gently, and at every detail - the great social change that was occurring in Britain at the time.<br /><br />I remember watching this show as a teenager and being in awe of everything about it. The lifestyle depicted was remarkable in itself. This was the first time I saw real people using cordless phones. And the wardrobe of all the characters was far removed from the goofy seventies attire still seen in North America at the time. Then there were the decors, shop fronts, cars. These people - even the layabout sons, with their philosophical approach to life and epigrammatic humor - were sophisticated. They were examples of the \"\"New Europeans\"\" that would come to have an impact on life and style throughout the world in the coming decade (1980s).<br /><br />Of course, the premise was strange and fantastic. The idea that someone who was living the suburban dream could be so discontent and restless was revolutionary, particularly to North Americans for whom happiness was always defined as money and things (sure the situation was depicted in American movies and TV, but not with the intensity of Butterflies or the movie Montenegro). And, if the premise was not surprising enough, the means by which it was expressed took it to the extreme. A potential affair that was not really about sex, or even romance? Butterflies dazzled many, but it must have left some people smacking their foreheads in disbelief... at the time anyway.<br /><br />Butterflies turned out to be - in so many ways - prophetic. It documented, ahead of its time - post-modern ennui, all-pervasive lifestyle, the notion of emotional infidelity, and generational disconnect and male discontent (portrayed perfectly by the strained father-son relationships). It is too bad this series has not been rediscovered in a big way, and all those involved given credit for creating a meaningful snapshot of a certain time and place, and foreseeing all the slickness and angst that was to come.\"\r\n1\t10 ITEMS OR LESS was made in two weeks on a shoestring budget by writer/director Brad Silberling, just a little film shot in Carson, CA that feels like the entire story was improvised...in the best sense of the word. Silberling had the good fortune to pair veteran actor Morgan Freeman, in between his big projects, with Spanish actress Paz Vega, and the result is a dialogue between two people from different vantages who manage to enhance the life of the other.<br /><br />Morgan Freeman plays himself - yet part of the comedy is that he is depicted as an actor who has been out of work for four years, scouting a location for a little 'filler film' to get back into the flow of things. His 'role' is to be that of a market manager and he is dropped off at seedy market in Carson where he encounters, among others, one Scarlet, the girl at the argumentative 10 Items or Less checkout line. Not only is Scarlet tired of her static job, she is also generally angry about her philandering husband (Bobby Cannavale), currently sleeping with Scarlet's lazy co-worker (Anne Dudek), and her lack of ability to get a decent job elsewhere. The two pair after a few shared problems and off they go on a 'road trip' that results in each of the characters growing from the presence and life story of the other.<br /><br />It is a simple story, simply told, but because of the tender bonding between Freeman and Paz it works very well. This is one of those little films about human relationships where being vulnerable to change and exchange is the message. It is well worth viewing, and this is a DVD that has featurettes that are touching, informative, and comic - a pleasure to view. Grady Harp\r\n0\t1st watched 12/7/2002 - 3 out of 10(Dir-Steve Purcell): Typical Mary Kate & Ashley fare with a few more kisses. It looks to me like the girls are getting pretty tired of this stuff and it will be interesting what happens to them if they ever decide to split up and go there own ways. In this episode of their adventures they are interns in Rome for a `fashion' designer who puts them right into the mailroom to learn what working hard is all about(I guess..). Besides the typical flirtations with boys there is nothing much else except the Rome scenario until about ¾ way into the movie when it's finally revealed why they are getting fired, then re-hired, then fired again, then re-hired again. This is definetly made by people who don't understand the corporate world and it shows in their interpretation of it. Maybe the real world will be their next adventure(if there is one.). Even my kids didn't seem to care for this boring `adventure' in the make-believe. Let's see they probably only have a couple of years till their legal adults. We'll see what happens then.\r\n0\t\"Primal Species (1996, Dir. Jonathan Winfrey) <br /><br />International terrorists get a surprise when their cargo turn out to contain living dinosaurs. The army commando team now have to think fast, if they want to prevent the extinction of the human species, instead of the reptiles.<br /><br />You look at the cover and you gain your first impressions of the film. That is pretty much it. The acting is only just acceptable from a few characters. The story is poor, with the whole film based on the army and the marines trying to kill the dinosaurs. This film came out three years after 'Jurassic Park'. Instead, this film looks to have come out 13 years before 'Jurassic Park'. The dinosaurs costumes are so poorly made, and i do mean costumes. There are obviously people dressed up, and this film makes no attempts at hiding this. A scene when a dinosaur runs down a corridor is created in a way, in which it looks like someone is riding the creature. The is one good thing, which comes out of this film. The short running time. At only 1 hour and 15 minutes, it doesn't waste too much of your life, but still try to avoid it altogether.<br /><br />\"\"It's like a Friday the 13th Nightmare.\"\" - Officer (Brian Currie)\"\r\n0\tAshley Judd, in an early role and I think her first starring role, shows her real-life rebellious nature in this slow-moving feminist soap opera. Wow, is this a vehicle for political correctness and extreme Liberalism or what?<br /><br />Being a staunch feminist in real life, she must have cherished this script. No wonder Left Wing critic Roger Ebert loved this movie; it's right up his political alley, too.<br /><br />Unlike the reviewers here, I am glad Judd elevated herself from this moronic fluff to better roles in movies that entertained, not preached the heavy-handed Liberal agenda.\r\n0\t\"You know you're in trouble when the opening narration basically tells you who survives. It all goes downhill from there. Unnecessary, \"\"Matrix\"\"-influenced bullet-time camera work. Pointless cuts to video game footage. Crusty old sea captains and wacky seamen. Ravers who become skilled combatants in the blink of an eye. Even the zombies are boring.<br /><br />I was hoping for at least a \"\"so bad it's good\"\" zombie movie, but this one is \"\"so bad those involved with its creation should be barred from ever making a movie again\"\".<br /><br />\"\r\n0\t\"They sell it as a horror movie, it's supposed to be a thriller, but I found it pretty funny (comedy?, don't think so), I laughed the whole movie I think it was because of the ridiculous acting and plot. I don't blame the actors, I think they were not very good, but O.K. I think Cillian is a very good \"\"bad guy\"\" I loved his acting in Batman Beggins, and Rachel McAdams.. whoa! she's a beauty, and a good actress as well, but let's try to be a little objective here, the story mm mm... the direction mm mm... it lacks a lot of good suspense in fact is a really boring movie, but there's one good thing tho, it's a short movie, only 1 hour and 30 minutes (FOR ME IT WAS LIKE 10 MINUTES UNDER THE WATER!!!)<br /><br />I just don't know why this movie is rated so high, and in rotten tomatoes, even higher, what's wrong with good, rational and objective criticism?\"\r\n1\tPolanski returns to the themes of solitude and madness which he explored to such tremendous effect in Repulsion and Rosemary's Baby, in The Tenant.<br /><br />The atmosphere is trademark Polanski - dark, brooding, unnerving - but there is something awkward about this movie and I am not sure whether or not it is deliberate.<br /><br />Sven Nykvist, who was responsible for some of Bergman's most beautiful films, doesn't quite do himself justice here. As his name was one of the things which really attracted me to this movie, I was a little disappointed in how few instances of truly impressive cinematography are in the film.<br /><br />The only thing that really lets the movie down is the acting. Polanski is certainly not a bad actor, but he seems to have bitten off more than he can chew with the difficult role of Trelkovsky. Some of the supporting cast are great, notably Melvyn Douglas as the landlord and Shelley Winters as the concierge, but others are weak and miscast. It is also hard to get past the fact that all these supposed Parisians have American accents.<br /><br />Quite unexpectedly, there are some fine moments of dark comedy in the film. Anyone who has seen The Fearless Vampire Killers knows that Polanski is certainly a good comedic actor. However, there are moments when it slips dangerously close to being a parody of itself. Trelkovsky's sudden (and somewhat unexplained) 'transformation' is more likely to raise giggles than eyebrows, which detracts from what should have been a powerful moment in his psycho-dramatic journey.<br /><br />All in all, The Tenant is an enjoyable and intriguing experience, if a little too languorous for its own good. There's a handful of exceptionally chilling moments and a consistently uncomfortable and foreboding atmosphere but this film, while being very good, does not quite hit the mark as successfully as it could have.<br /><br />Alas, at the end of the day, an 'okay' Polanski movie is still better than most other 'good' movies. Definitely worth a watch, just don't expect to be blown away.\r\n0\t\"\"\"ASTONISHING\"\" Screams the LA Times from the front of the DVD box. They must have been referring to the fact that such a sorry piece of crap was ever released. The film revolves around a bunch of girls who have a disease which forces them to become cannibals, and murder innocent people just to stay alive. Their skin peels off throughout the film, we also see severed legs, heads etc that are about as convincing as a Halloween Fuzzy Felt set. There is an awful lot of talking b*ll**ks, a bit of human cuisine and some weird zombie hunter chap who imprisons the sufferers of said skin illness in his closet strapped to a chair, before stabbing them in the head, chopping them into bits...<br /><br />You get the picture. Considering there is no acting talent on display at all, and the gore is laughably unrealistic, what is the point of this whole farrago? Again looking at the video box, the guy responsible for it is an \"\"underground cult director\"\". Would that be like those weird religious cults where they brainwash you into thinking one way when clearly the opposite is true? Because that's the only possible reason I can think of for anyone to derive pleasure by watching this tax write-off. Then, on the same paragraph he compares himself to Mike Leigh, Ken Loach and George Romero. HAHAHAHAHA oh stop it. Now you're just being silly.<br /><br />Do you enjoy this film? Are you offended by the above opinion? If so, you must be a member of said cult. Do they pocket your wages? Do they let you see other family members? Do they force you to watch Andrew Parkinson films till you think he's the best director since A.Hitchcock? Do tell... this sounds like a Panorama special brewing to me. And say hello to the critic of the LA times when you return to your colony, will you? 0/10\"\r\n1\tThis is a better than average silent movie and it's still well worth seeing if you are a fan of the silents. However, if you aren't yet a fan of the genre, I suggest you try a few other films before watching this one. That's because the plot just seems pretty old fashioned and difficult to believe in spots. But, despite this, it's still a good film and kept my interest.<br /><br />A nice lady unfortunately hooked up with the wrong man and ran away to marry him. The film starts five years later after she has come to realize that he is really a brutal thief. Despite this, she tries to make the best of it and not dwell on how good life had been before this jerk came into her life. However, the rent is due and there's no money, so the lady is forced to look for work. She becomes a personal seamstress for a rich lady whose husband is trying to swing a business deal. Unfortunately, the lady who they were trying to hook up a potential client with for a dinner party can't make it and the seamstress is paid handsomely to be the man's date. Well, like Cinderella, she cleans up pretty well and the man is infatuated with her! What to do now--given that she is actually married and the new fella wants to marry her?! Well, see the movie yourself to see how it's all resolved. I DIDN'T like how they handled the husband, as it seemed awfully predictable and clichéd. However, once he was out of the way, I do admire how the film also DIDN'T give up a by-the-numbers finale and left the film with a few loose ends.<br /><br />All in all, a very good film worth seeing, but certainly not great.\r\n1\tDemonicus is a movie turned into a video game! I just love the story and the things that goes on in the film.It is a B-film ofcourse but that doesn`t bother one bit because its made just right and the music was rad! Horror and sword fight freaks,buy this movie now!\r\n1\t\"Ever since I heard of the Ralph Bakshi version of \"\"The Lord of the Rings\"\" I wondered: What the hell is 'rotoscope' animation?!!! Well... I finally found out... I saw this movie about three years ago not having any idea who Ralph Bakshi is... And I liked it... a lot... Very good story line... it even has a little character development which is great for a cartoon... See it if you get bored with contemporary animation.... Don't get me wrong... I'm not saying it's just a nice cartoon... It's a pretty good movie too...\"\r\n0\t...however I am not one of them. Caro Diario at least was watchable for two thirds of the time, but the boring and self-centred third section of that movie gave us a taste of what was to come in this extraordinarily self-indulgent mess. Moretti says he feels a need to make this movie, but doesn't want to, whereas the viewer feels that he should stick with it, but really doesn't want to either. A film about Italian politics and elections could be fascinating, but this is not that film. At one point, Moretti and his friends are standing outside the Communist Party headquarters, discussing the interviews they are preparing to conduct with Party leaders inside, but it's characteristic of this film that we never get to see anything of them. Interposed with Moretti's political ravings are the events leading up to the birth of his son, and subsequent home movie shots of him with the baby and later the infant Pietro (the film drags us through several years and more than one election period). We keep expecting to see some definitive sequence or cogent argument, but they never come. I for one doubt that I could have the patience to ever sit through a Nanni Moretti movie again. He succeeds in making an hour and twenty minutes seem like an eternity.\r\n1\tNow this is what I'd call a good horror. With occult/supernatural undertones, this nice low-budget French movie caught my attention from the very first scene. This proves you don't need wild FX or lots of gore to make an effective horror movie.<br /><br />The plot revolves around 4 cellmates in a prison, and each of these characters (and their motives) become gradually more interesting, as the movie builds up tension to the finale. Most of the action we see through the eyes of Carrere, who has just entered prison and has to get used to living with these 3 other inmates.<br /><br />I won't say much because this movie really deserves to be more widely seen. There a few flaws though: the FX are not that good, but they're used effectively; the plot leaves some mysteries open; and things get very confusing towards the end, but Malefique redeems itself by the time it's over.<br /><br />I thought his was a very good movie, 8/10\r\n0\tWithout question, the worst ELVIS film ever made. The movie portrays all Indians as drunk, stupid, and lazy. Watch ELVIS's skin change color throughout the film.\r\n1\t\"This is the one movie to see if you are to wed or are a married couple. The movie portrais a couple in Italy and deals with such difficult topics as abortion, infidelity, juggling work and family.<br /><br />The so called \"\"culture of death\"\" that we are experiencing nowadays in the world is terrible and this movie will surely make you think.<br /><br />A must see. I hope it gets distributed as it should.<br /><br />Congratulations on the cast and director.<br /><br />Two thumbs up and a 10 star evaluation from me!\"\r\n1\tAfter hitting the viewers with three very different episodes right off the bat, Serling continued to go about introducing viewers to 'The Twilight Zone' in a very strange way by scheduling one the series biggest growers as the fourth episode. 'The Sixteen-Millimeter Shrine' is one of the more understated episodes, focusing on an aging movie star's inability to cope with the changing times and only introducing a supernatural element in the closing minutes. Because of this approach, the episode is under whelming at first but subsequent viewings reveal it to be a thoroughly classy and beautifully written short story.<br /><br />Both the leads, Ida Lupino as Barbara Jean Trent and Martin Balsam as her frustrated but caring agent, shine in their performances. The main problem with the episode is that the supposedly 25 year old footage of the actress is unconvincing. Lupino looks identical when playing the young Trent as she does when playing the middle aged Trent and this diminishes the tragedy of the situation significantly. Fortunately, Lupino acts her socks off in convincing us of her desperation to return to the past. It's a situation most can sympathise with, and yet Trent is far from a sympathetic character. She is a prima-donna who gives little thought to the feelings of those around her, such as the disastrously withered co-star who she tactlessly belittles because he reminds her of just how long ago her glory days were. It is somewhat surprising, then, that she is rewarded with a happy ending. It is clear what is going to happen from the moment we see the huge projection screen and it is cleverly pre-empted in the opening moments when Trent scares her maid by stepping out from behind the screen. What is not clear at the beginning, however, is whether being sucked into the projector will prove a reward or a harsh lesson in appreciating what we have and living in the moment. As it turns out, Trent is allowed to return to the past she longed for, a testament to how strong the wishful thinking of humans can be.<br /><br />'The Sixteen-Millimeter Shrine' gets better with each viewing. The top notch writing and acting combine to create a short play of enormous power which reflects the nature of humans to long for the past, even though we can never return. Except in the Twilight Zone.\r\n0\t\"This movie was recently released on DVD in the US and I finally got the chance to see this hard-to-find gem. It even came with original theatrical previews of other Italian horror classics like \"\"SPASMO\"\" and \"\"BEYOND THE DARKNESS\"\". Unfortunately, the previews were the best thing about this movie.<br /><br />\"\"ZOMBI 3\"\" in a bizarre way is actually linked to the infamous Lucio Fulci \"\"ZOMBIE\"\" franchise which began in 1979. Similarly compared to \"\"ZOMBIE\"\", \"\"ZOMBI 3\"\" consists of a threadbare plot and a handful of extremely bad actors that keeps this 'horror' trash barely afloat. The gore is nearly non-existent (unless one is frightened of people running around with green moss on their faces) and the English dubbing is a notch below embarrassing.<br /><br />The plot this time around involves some sort of covert military operation with a bunch of inept scientists (ie. an idiotic male and his stupid female side-kick) who are developing some sort of chemical called \"\"Death One\"\" that is supposed to re-animate the dead. Unless my ears need to be checked, I don't even recall a REASON for the research of \"\"Death One\"\". It seems to EXIST only to wreak havoc upon the poor souls who made the mistake of choosing to 'star' in this cinematic laugh-fest.<br /><br />Anyway, \"\"Death One\"\" is experimented on a corpse (whom I swear looked like Yul Brynner), and after it is injected into his system, he sits upright and his head explodes! The sound effects are also quite hilarious - as the corpse's face bubbles with green slime, the sound of 'paper crumpling' can be heard. The \"\"Death One\"\" toxin is transported outside and is 'hi-jacked' by a group of thieves where one makes off with it, but infects himself after cutting himself on an exposed vial.<br /><br />Needless to say, the guy turns into a zombie, but not before he makes his timely escape to a cheap motel, infects a lowly porter and murders a maid by pushing her face into a bathroom mirror(!). The military catch wind of this and immediately take action before 'eliminating' everyone who is unlucky enough to be within the 'contamination zone' and turn the motel upside down. They find the infected thief and burn his body, only to have the smoke infect a flock of birds that are flying over the chimney stack(!).<br /><br />We cut to the introduction of a group of men who are on leave from the army, listening to 'groovy music' that is coming out of a little dinky boom-box while trailing a trailer-load of slutty girls who are leaning out of the windows and showing off their chests. Can someone say \"\"zombie food\"\"? We also have a sub-plot involving a girl and her boyfriend driving a car who stop to inspect a group of birds lying on the road... the same birds that were infected by the 'zombie' smoke! <br /><br />The birds attack the boyfriend and the girl drives off to a deserted gas station to seek water. This is one of the most incredibly hilarious moments of the movie. She walks around this old dirty, rusty and obviously abandoned building where she continues to ask aloud, \"\"HELLO? IS THERE ANYONE HERE? PLEASE, I JUST NEED SOME WATER!\"\" She encounters a group of zombies, one of which is chained to a wall (!) and the other is swinging a machete. After a bit of rumbling and tumbling around on the ground, she escapes but not before blowing up the gas station with her lighter.<br /><br />Meanwhile, the birds attack the trailer-load of whores and one girl gets pecked and infected. They all pull up to the same motel where the original infection took place, and this is where the second most hilarious moment of the film takes place. After a matter of hours (a day at the most), the same motel is now caked in dust, has vines growing throughout it, and looks like it has been sitting derelict for years. Anyway, what better place to take refuge than this particular building? Needless to say, the group begins to break down as several people walk off together to get themselves stuck in an incredibly stupid situation involving a zombie attack.<br /><br />The third most hilarious moment concerns a man and a woman who explore a deserted village, of which the woman comments, \"\"THIS PLACE IS A DUMP!\"\" She then proceeds to get 'pushed' off a balcony by a zombie into pirahna(?) infested water where she has her legs bitten off and turns into a zombie within seconds! Meanwhile, her friend back at the motel who got pecked and infected HOURS earlier is still TURNING into a zombie!<br /><br />Unfortunately, there are just too many inconsistencies in this movie that makes this movie just too stupid for words. For example, the time rate concerning infected people being 'zombified' differs greatly. Sometimes it takes seconds, other times it takes hours. Some zombies run, others drag their feet and walk really slow. Some even do kung-fu moves, while others hide under stacks of hay to surprise people. Some of the zombies even talk! The funniest moment of course is the infamous 'zombie head in the fridge' gag which 'elevates' itself in mid-air and 'attacks' a stupid man who goes looking for food. Funnily enough, his girlfriend gets her throat torn out by it's 'headless' counter-part (LMAO!).<br /><br />The biggest disappointment for me though was the lack of story-lines involving the people who are in fact killed by zombies. We never get to see them come back as zombies, in fact the only ones we do see 'zombified' are the ones pecked by the birds and the one girl who gets her legs bitten off. Other than that, I was at least expecting the couple who were killed in the kitchen and/or the guy who was killed on the bridge to come back as zombies. It is also amazing that these zombies only take a 'few bites' and then move on to their next victim. <br /><br />The most laughable moment was of course the zombie fetus. A pregnant woman who has been infected lies on a bed in a hospital. A woman who seems to have a lot of 'medical knowledge' tries to deliver the baby (!) and has her face pulled off by a zombie, before having her head pushed into the woman's stomach where a hand bursts out and proceeds to rip the rest of her face off. Timeless!<br /><br />As usual, all the characters are perfect stereotypes of this genre. The megalomaniacal military officer, the pathetic useless squealing women who scream to get killed, the obvious characters who are ABOUT to get killed (ie. watch for the man chasing a chicken!) I guess this movie really is a comedy. There were many laughable scenes, such as the shed that gets blown up with a hand grenade (obviously the scene where the entire budget was spent) and a climatic scene where a man screams, \"\"I'M THIRSTY.... THIRSTY FOR YOUR BLOOD!\"\". The costumes are really bad - the same zombies reappear throughout the course of the film, wearing the same 'Asian-like' clothing that may be found in a Bruce Lee film, and watch out for the blue 60's skirt the girl at the motel is wearing when she and her boyfriend bump into the infected man.<br /><br />The end of the film leaves open the door as usual for the apocalyptic story-line. A radio DJ who narrates throughout the whole movie turns out to be a zombie himself and warns his listeners about the 'beginning of the end' while the two survivors take off in a helicopter. Hardly \"\"DAWN OF THE DEAD\"\" material if you ask me.<br /><br />Regardless, this movie does deliver many laughs. The gore is minimal, and what gore there is, it is very unconvincing, let alone unimaginative. The usual mix of black blood, thick green goo oozing out of weeping sores and 'zombie make-up' consisting of green moss. \"\"ZOMBI 3\"\" makes for a good rental for a sleep-over party or a night of beer and popcorn. Other than that, horror fans should stay away.<br /><br />3 out of 10\"\r\n1\tDahl seems to have been under the influence of Wenders' The American Friend. Innocent Nick Cage gets recruited for a hit. Dennis Hopper plays a real Hit Man. Lara Flynn Boyle is dangerous. The Hero gets more entangled the more he tries to extricate hisself. And small town America does not seem all that safer than the Big City. Like it's predecessor mentioned above, this movie has lots of plot twists and turns that seem improbable, but all lead to the cathartic self discovery.\r\n0\tI watched this movie really late last night and usually if it's late then I'm pretty forgiving of movies. Although I tried, I just could not stand this movie at all, it kept getting worse and worse as the movie went on. Although I know it's suppose to be a comedy but I didn't find it very funny. It was also an especially unrealistic, and jaded portrayal of rural life. In case this is what any of you think country life is like, it's definitely not. I do have to agree that some of the guy cast members were cute, but the french guy was really fake. I do have to agree that it tried to have a good lesson in the story, but overall my recommendation is that no one over 8 watch it, it's just too annoying.\r\n0\tThe author of numerous novels, plays, and short stories, W. Somerset Maugham (1874-1965) was considered among the world's great authors during his lifetime, and although his reputation has faded over the years his work continues to command critical respect and a large reading public. Published in 1944, THE RAZOR'S EDGE is the tale of a World War I veteran whose search for spiritual enlightenment flies in the face of shallow western values. It was Maugham's last major novel--and it was immensely popular. Given that the novel's conflicts are internalized spiritual and philosophical issues, it was also an extremely odd choice for a film version--but Darryl F. Zannuck of 20th Century Fox fell in love with the book and snapped up the screen rights shortly after publication.<br /><br />According to film lore, THE RAZOR'S EDGE was to be directed by the legendary George Cukor from a screenplay by Maugham himself--and it does seem that Maugham wrote an adaptation. When the film went into production, however, Cukor was replaced by Edmund Goulding, a director less known for artistic touch than a workman-like manner, and the Maugham script was replaced with one by Lamar Trotti, the author of such memorable screenplays as THE OXBOW INCIDENT. Tyrone Power, recently returned from military service during World War II, was cast as the spiritually conflicted Larry Darrell; Gene Tierney, one of the great beauties of her era, was cast as socialite Isabell Bradley. The supporting cast was particularly notable, including Herbert Marshall, Anne Baxter, Clifton Webb, Lucille Watson, and Elsa Lanchester. Both budget and shooting schedule were lavish, and when the film debuted in 1946 it was greatly admired by public and critics alike.<br /><br />But time has a way of putting things into perspective. Seen today, THE RAZOR'S EDGE is indeed a beautifully produced film--but that aside the absolute best one can say for it is that it achieves a fairly consistent mediocrity. As in most cases, the major problem is the script. Although it is reasonably close to Maugham's novel in terms of plot, it is noticeably off the mark in terms of character and it completely fails to capture the fundamental issues that drive the story. We are told that Larry is in search of enlightenment; we are told that he receives it; we are told he acts on it--but in spite of the occasional and largely superficial comment we are never really told anything about the spiritual, artistic, philosophical, and intellectual processes behind any of it. We are most particularly never told anything significant about the nature of the enlightenment itself. It has the effect of cutting off the story at its knees.<br /><br />We are left with the shell of Maugham's plot, which centers on the relationship between Larry and Isabell, a woman Larry loves but leaves due to the growing ideological riff that opens up between them. Tyrone Power and Gene Tierney were more noted for physical beauty than talent, but both could turn in good performances when they received solid directorial and script support. Unfortunately, that does not happen here; they are extremely one-note and Power is greatly miscast to boot. Fortunately, the supporting cast is quite good, with Herbert Marshall, Clifton Webb, and Lucille Watson particularly so; the then-famous performance by Anne Baxter, however, has not worn as well as one would hope.<br /><br />With a running time of just under two and a half hours, the film also feels unnecessarily long. There is seemingly endless cocktail party-type banter, and indeed the entire India sequence (which reads as faintly hilarious) would have been better cut entirely--an odd situation, for this is the very sequence intended as the crux of the entire film. Regardless of the specific scene, it all just seems to go on and on to no actual point.<br /><br />As for the DVD itself, the film has not been remastered, but the print is extremely good, and while the bonus package isn't particularly memorable neither is noticeably poor. When all is said and done, I give THE RAZOR'S EDGE four stars for production values and everyone's willingness to take on the material--but frankly, this a film best left Power and Tierney fans, who will enjoy it for the sake of the stars, and those whose ideas about spiritual enlightenment are as vague as the film itself.<br /><br />GFT, Amazon Reviewer\r\n1\t\"This movie should not be compared to \"\"The Sting\"\", or other caper/heist/con game films. What makes it such a great movie experience is what it has to say about relationships, deceit and trust. It's also a fairly cutting critique of psychiatry, given that the female protagonist is a shrink who is so easily deceived and then acts out in such a primitive manner in the finale. Has Mr Mamet had an unfortunate experience in therapy? Highly, hugely recommended!\"\r\n0\t\"Its Christmas Eve and lazy and submissive housewife Della (Kim Basinger) receives some violent threats from her troubled and abusive husband. Leaving her twin children in bed she ventures off into the night for one last shopping spree at the local mall. Its busy there and finding a parking space is nigh on impossible, Della takes umbrage at one motorist who parks in two spaces, she leaves them a note saying as much. Returning to her car after visiting the shops she is confronted by some yobs, Yup the owners of the car she left a note on, they are very angry and want some fun with her, a kindly security guard steps into assist her, but things get out of hand and the guard is shot, Della flees with the now murderous yobs in hot pursuit, they shoot at her, she looses control of her car and crashes, quickly grabbing her toolbox from the trunk, she hides in a deserted building site, but is soon caught, just before they try to rape and kill her, from her magical toolbox she produces a wrench, wounding their leader \"\"Chuckie\"\", she manages to escape again into the nearby woods, in the fracas one of the gang is killed, it just happens to be the black guy Here the night gets worse for all involved as a deadly game of cat and mouse ensues. A similar plot line to Eden Lake drew me to this, but that is where the comparisons end. This is a brainless and dumb film, shockingly scripted and horribly acted by all involved, the doe eyed Disney-esquire twin kids are horrible to watch, but its Lukas Haas as Chuckie, that must take the plaudits in the bad acting department, although he is given a run for his money by the equally awful husband. As a film its plot line is completely telegraphed all the way through, even in the set up early on Della's cell phone goes dead and then in the shops her credit card has been cancelled by her hubby and she has no cash and its Christmas Eve, now where could they be going with this I wonder??? The only surprising part of this $hit is when after killing all the clichéd bad guys with the contents of her magic toolbox, she demands Chuckie to f@ck her, if my jaw had not already been on the floor at this films awfulness, it would surely have dropped and smashed on the floor. even the ending is messed up, all the feminist grannies wanting their pound of flesh are left utterly disappointed.. I didn't think I could be further disappointed, but then I saw that Guillermo del Toro produced this dreck\"\r\n0\t\"\"\"I Am Curious: Yellow\"\" is a risible and pretentious steaming pile. It doesn't matter what one's political views are because this film can hardly be taken seriously on any level. As for the claim that frontal male nudity is an automatic NC-17, that isn't true. I've seen R-rated films with male nudity. Granted, they only offer some fleeting views, but where are the R-rated films with gaping vulvas and flapping labia? Nowhere, because they don't exist. The same goes for those crappy cable shows: schlongs swinging in the breeze but not a clitoris in sight. And those pretentious indie movies like The Brown Bunny, in which we're treated to the site of Vincent Gallo's throbbing johnson, but not a trace of pink visible on Chloe Sevigny. Before crying (or implying) \"\"double-standard\"\" in matters of nudity, the mentally obtuse should take into account one unavoidably obvious anatomical difference between men and women: there are no genitals on display when actresses appears nude, and the same cannot be said for a man. In fact, you generally won't see female genitals in an American film in anything short of porn or explicit erotica. This alleged double-standard is less a double standard than an admittedly depressing ability to come to terms culturally with the insides of women's bodies.\"\r\n1\tI saw this movie in the theater, and was thoroughly impressed by it. Then again, that was when Claire Danes was a good actress, not the foolish, arrogant, Hollywood-ized bitch she is today. Anyway, this film really struck me as one of the more raw, realistic, beautiful friendship films. How far would you really go for your best friend? I was moved to tears at the end, and still tear up when I watch it now (I own it). I remember as soon as I left the theater, I called my best friend and sobbed to her how much I loved her. This is a great film to watch with your best girlfriend. However be prepared for the almost certain conversation afterward where she turns to you and asks if you'd do something like that for her....\r\n1\tI saw this movie first on the Berlin Film Festival, and I had never seen Hong Kong cinema before. I felt like sitting in a roller coaster: the action was so quick, and there wasn't one boring moment throughout the film. It has martial arts, love, special effects and a fantastic plot. My favorite scene is when the Taoist drinks, sings and fights for himself - one of the many scenes which stress the extraordinary musical component of the movie. This film is a definite must!!\r\n0\tRecap: Full moon. A creature, a huge werewolf, is on the hunt. Not for flesh, not for blood (not that it seem to mind to take a bite on the way though), but for a mate. He is on the hunt for a girl. Not any girl though. The Girl. The girl that is pure (and also a werewolf, although she doesn't know it yet). Three, well check that, two cops (after the first scene) and an old bag lady is all that can stop it, or even knows that the thing killing and eating a lot of folks around full moon is a werewolf. This particular powerful werewolf, Darkwolf, is closing in on the girl. If he gets her, mankind is doomed. Now the cops has to find the girl, convince her not only that there is someone, a werewolf nonetheless, that wants to rape her, and perhaps kill her, but that she is a werewolf herself. And then they got to stop him...<br /><br />Comments: This is one for the boys, the teenage boys. A lot of scenes with semi-nude girls more or less important for the plot. Mostly less. Well I guess you need something to fill some time because the plot is (expectedly) thin. And unfortunately there is little besides the girls to help the plot from breaking. One usually turns to two main themes. Nudity. Check. And then special effects. Hmm... Well there are some things that you might call effects. They're not very special though. In fact, to be blunt, they are very bad. The movie seems to be suffering of a lack of funds. They couldn't afford clothes for some of the girls ;), and the effects are cheap. Some of the transformations between werewolf and human form, obviously done by computer, are really bad. You might overlook such things. But the Darkwolf in itself is very crude too, and you never get to see any killings. Just some mutilated corpses afterwards. And there is surprisingly little blood about, in a movie that honestly should be drenched in blood.<br /><br />I'm not sure what to say about actors and characters. Most of the times they do well, but unfortunately there are lapses were the characters (or actors) just looses it. A few of these lapses could be connected with the problems mentioned above. Like the poor effects, or the poor budget(?). That could explain why there is precious little shooting, even if the characters are armed like a small army and the target is in plain sight (and not moving). But hey, when you're in real danger, there nothing that will save your life like a good one-liner...<br /><br />Unfortunately that can't explain moments when the Cop, Steve, the only one who knows how to maybe deal with the problem, the werewolf that is, runs away, when the only things he can be sure of, is that the werewolf is coming for the girl, who is just beside him now, and that he cannot let it have her. But sure, it let the makers stretch the ending a little more...<br /><br />But I wouldn't mind seeing none of the lead actors/actresses get another try in another movie.<br /><br />Well. To give a small conclusion: Not a movie that I recommend.<br /><br />3/10\r\n0\t\"From the Q & A before and after, this is what I could gather: Some Irish guy wants to make a movie. Nothing in particular, just any movie. So, one night at a party, he hears some ex-roadie tell him a classic bit of rock n' roll lore; the one about how Gram Parsons' corpse was stolen from LAX by his loyal roadie so he could honor Parsons' wishes that he be cremated out in JoshuaTree. Wow!<br /><br />What a great idea for a movie! Rock n' Roll (well, country), grave robbing, escapes, friendship, the 70's! I guess we could get Johnny Knoxville from \"\"Jackass\"\", cause it's kind of a prank, right, and Knoxville wants to do \"\"a movie\"\" too. Why he must have thought he had the next \"\"Snatch\"\" on his hand!<br /><br />But this story's not really that exciting...we need something for Knoxville to struggle against.like a psychotic girlfirend after his money! But Parsons' was married at the time. That's O.K., no one knows that. Besides we could get Christina Applegate. But what if the audience doesn't like the idea of stealing a corpse.well, we'll get his dad to join the chase, but give permission in the end. But Parsons' dad killed himself when he was 10, in fact his orphan status, and tragic childhood, are key parts of the Parsons Mythology. Mythology? We're making \"\"A Movie!\"\" This is creative problem solving.<br /><br />It's an uncomfortable experience for anybody even vaguely knowledgeable on or interested in the subject. Applegate's presence is doubling jarring. First her invented character is a Beverly Hills bitch before her time -she might as well have walked around the whole movie a cell phone in her hand, and secondly, what kind of man would Parsons be if he ever associated himself with that kind of harpy? Facts aren't just distorted or left out, but REVERSED. They could have easily found the villain they wanted in Parsons STEPfather, who was attempting to whisk the body back to his home state where law would favor him in dividing up the considerable inheritance.<br /><br />And the music, oh, the music I love. The music is hacked up (the bridge of a song here, the chorus there), forced to the background, and in the end, horribly covered by the hippest new indie band, Starsailor. My girlfriend asked the unnecessary, but irresistable question after the movie --was anyone up there, the writer, the producers, the director, actually a Gram Parson's fan? Well, no. He'd never actually heard of Gram Parsons, but of course, blah blah blah, I learned to love it, and here's some factoids I read in a bio online. Another guy vouched for Parsons' coolness by saying he and Keith Richards tripped on acid together and wrote \"\"Wild Horses\"\" together, a mixed up bunch of facts as off-base as the movie. Another person asked, wasn't it morally questionable to rewrite history when most people would only know about it from this film? Well, he had the real roadie's permission (he was even set) and the Parsons estate gave permission, and all these other people who got paychecks said it was great.<br /><br />But what I really wondered was, and asked in the embarassingly trembling voice of a truly impassioned Parsons geek, was, if the movie's so cheaply made (a million), had they not considered the original Gram Parsons fanbase as an audience? The director and writer seemed to think he was a nothing figure with no fanbase, though I doubt any Mojo magazine reading, country-rock 70's music fan would agree. But a bunch of Brits made it I guess, and they just didn't care about Cosmic American Music, or even knew it existed. This isn't just not a truthful Parsons flick, it's not even in the right spirit -it doesn't even fit the legend. At the very least it should have had the sentimentality of one of his songs. And plenty of people would love to be told.<br /><br />I should mention the movie was received well from the bunch of stoned college kids, just off the slopes, and into Johnny Knoxville. But if you're a Parsons fan ignore the title, it's just a movie for Jackass fans.\"\r\n0\tBrides are dying at the altar and their corpses are vanishing. No one knows why or who, but an investigative reporter (Luana Walters) notes that each bride was wearing a strange orchid and she goes to interview its creator, Dr. Lorenz (Bela Lugosi). Now Dr. Lorenz is a mad scientist with some strange habits, including sleeping in coffins and injecting his elderly wife (Elizabeth Russell) with the fluid of young brides to keep her young.<br /><br />The Corpse Vanishes has an interesting premise and a short enough run time that it shouldn't be able to get boring. Unfortunately, while it starts off quite well, it does start to drag before the halfway point and gets rather boring with its clichés and predictable plot.<br /><br />There are some good things about it-Bela Lugosi is charming and evil and performs brilliantly; Elizabeth Russell is also a beautiful, suave, aloof and very creepy countess; and I'm always a fan of Angelo Rossitto. Luana Walters is also convincing as the reporter here.<br /><br />It maintains a bit of a Gothic atmosphere and the sets are decent.<br /><br />But overall, it just didn't manage to hold my interest through the whole picture, and for that, I have to rate it poorly.\r\n1\t\"Steven Spielberg wanted to win an Oscar so bad that he figured that he wouldn't win by directing special effects epics (he was nominated for three of them: \"\"Close Encounters of the Third Kind\"\", \"\"Raiders of the Lost Ark\"\", and \"\"E.T.: The Extra-Terrestrial\"\". So he decided to get very serious by directing \"\"The Color Purple\"\", a period film with no special effects. Spielberg's first serious drama is a remarkable movie. But the Academy voters who voted back in 1985 still didn't give Spielberg any respect. \"\"The Color Purple\"\" received 11 Oscar nominations including Best Picture, but Spielberg was unfairly snubbed when he wasn't nominated for Best Director. It got worse on Oscar night when this film didn't win a single Oscar. It got completely shut out. That wasn't right. \"\"The Color Purple\"\" should have won a couple of Oscars including one for Whoopi Goldberg's spectacular film debut as Celie, a woman who suffers at the hands of an abusive husband (frightfully placed by Danny Glover), then gets stronger throughout the film thanks to some special friends. Oprah Winfrey also made her film debut here and gives a great performance as Sofia, one of those friends' of Celie. Since I'm from Chicago, I had already known Winfrey from her talk show (which at the time of this films' release hadn't gone nationwide). Like Goldberg, what a film debut! Margaret Avery is terrific as Shug Avery, another friend who also happens to be the mistress of Celie's rotten husband. All three actresses received well-deserved Oscar nominations for their work here (Goldberg for Best Actress; Winfrey and Avery for Best Supporting Actress). Set in the south during the first half of the 20th Century, \"\"The Color Purple\"\" is a film so strong that it made me cry at the end. It also made me laugh at times too. Why Academy voters were so hard on not nominating Spielberg for Best Director is a mystery that still puzzles me today. But Spielberg would eventully go on to win two Oscars years later for \"\"Schindler's List\"\" and \"\"Saving Private Ryan\"\", making him one of the best movie directors of all-time. But he should have gotten nominated for this movie. The job that he did going from special effects blockbusters like \"\"E.T.\"\" to a serious drama like \"\"The Color Purple\"\" was remarkable.<br /><br />**** (out of four)\"\r\n1\tThe Bible teaches us that the love of money is the root of all evil. The love of money leads to greed which can lead to pride and eventually to destruction. Two brothers, Andy and Hank, will discover how far the love of money will cost them and those they love the most.<br /><br />Andy Hanson (Philip Seymour Hoffman) and his younger brother Hank (Ethan Hawke) couldn't be more different. Andy is seemingly enjoying the success of working in New York's real estate market and is married to his beautiful wife Gina (Marisa Tomei) who is the idea of a trophy wife if one ever existed. Hank, however, is divorcée who finds himself at the mercy of his ex-wife, his daughter's expensive school bills, and endless amount of child support payments. A man who means well and has good intentions, Hank none the less cannot escape the water that his slowly raising above his head no matter how hard he swims to stay above it.<br /><br />However, Andy has his own problems with the only difference between him and his brother being that he hides them better. He has committed fraud against his company and is heavily involved in drug use in order to escape his fears. The pressure of his life, and the lies he needs to keep his appearances up, have now caused him to think about fleeing the country with Gina in order to start over again. Of course, like Hank, he needs money to do this and believes he knows how to get it. How? By robbing the jewelery store that their parents own and run. This act of betrayal is where the Hanson brothers, their families, and several other lives, will be destroyed because of greed, pride, and fear. <br /><br />The uniqueness of Before The Devil Knows You're Dead is the manner in which the story is told. After the robbery goes wrong, and Nanette Hanson (Rosemary Harris) who is the mother of both Andy and Hank is killed, the story is told from a variety of different points of view from various days before and after the robbery attempt. We learn more about the motivations of not only Andy and Hank but also the reaction to their father Charles (Albert Finney) to the death of his wife. The relationship between Charles and his two sons, especially to Andy, is also explored and another possible motivation of sorts is discovered after it is revealed that there is little love between the two men. Nanette may have been dearly loved by her sons but their father is a different story.<br /><br />Philip Seymour Hoffman proves once more why he is one of the most impressive actors in Hollywood today by portraying Andy as not only a greedy criminal with lack of morality but also, in contradictory way, as a man we can sympathize with. Ethan Hawke also brings Hank alive not just as a loser but really as a man just desperate to hang on to what little he has left. Andy and Hank are thus brought to life in such a realistic way that it is easy to think of them as not just characters but the very real images of lost and confused men who now find themselves facing the consequence of their actions.<br /><br />Before The Devil Knows You're Dead is a moral tale about how our actions lead to consequences that we otherwise might not expect to face. More than that, our choices also can affect those around us in ways we never expected. In what should have been best picture of the year, we see how lives are easily broken when the love of money becomes the ultimate pursuit in order to ease our troubled lives. In other words, there are no easy fixes or answers to our problems and trying to find them can only make things worse.<br /><br />10/10\r\n0\tThis norwegian movie is so crap, the actors can not act cause they seems to be reading from a book and the story is so (wannabe) hollywood..the only actor who did a ok job was Haavard Lilleheie..3/10 If you want a really good norwegian movie watch Buddy, great actors and a feelgood story 9/10\r\n0\tSholay: Considered to be one of the greatest films. I always wondered if they would ever remake being the classic it is. That was the time RGV announced this movie and I was somewhat excited to see it. I always thought that maybe this will be a good movie, but every week we would here RGV change something. And the movie is a very B-Grade movie, something that I had not hoped.<br /><br />I really tried looking for positives, but I promised to keep Sholay out of my mind. The cinematography is awesome. The movie tries to be its own. But that is the up side. The action sequences are weak. The screenplay had potential. The biggest flaw is editing. None of the scenes excite you. For example, the comedy sequences felt very out of place and forced. Ironic because comedy was just as entertaining in the original. And none of the characters are developed. And no scenes will linger until the end. And the ending was very disappointing.<br /><br />The biggest question is acting. Amitabh Bachchan was good as Gabbar Singh, nothing great. It seemed as if they concentrated too much on his look, that the character only looks menacing, but you don't get creeped out. Mohanlal is barely in the movie, but he impresses in his few scenes. Ajay Devgan was decent. It wasn't so much the performance, he gave it his all, it was the weak script. Prashant Raj is very confident, and has potential to make it far with better movies.<br /><br />I had most expectations for Sushmita Sen, who was probably the best of the lot. She was expressive, but this still was not enough. Nisha Kothari surprised me. She seemed disinterested for the most part, but her emotional scene after her friend's death was quite good. Seems as if she needs to find a director who will help her talent, not her cute looks. But what disappointed me most was chemistry. Ajay Devgan and Prashant Raj didn't look like friends. Ajay-Nisha were not a strong couple. No passion was to be found between Sushmita and Prashant. And Amitabh and Mohanlal did not the hateful passion they needed.<br /><br />As for songs, they pretty much suck. Urmila's Mehbooba was too overblown and I pretty much slept through it. It was however nicely danced. The Holi number was enjoyable, but not memorable. Same went for the other songs. For someone who looked forward to this movie, I was heavily disappointed. I had high hopes for RGV because of his Jungle, but seems as if he lost his talent during the shooting of this movie. But hopefully he regains his talent for Sarkar Raj. But this movie is best forgotten. All the positives still do not make up for the boring movie it is.\r\n1\tI'm usually not too into a specific show (save for The O.C. & Desperate Housewives...hey, I am 20!), but, no kidding, after one episode of Reunion I was hooked.<br /><br />I can't even say how bummed I was that it's time-slot conflicted with Bush's speech last night because I was really looking forward to the 1987 episode, which will now air next Thursday. Again, that conflict was disadvantageous because, being a new show, it needs to build up a following and having the second episode pushed back a week kills some momentum.<br /><br />That said, TV doesn't always have to be Emmy worthy to be enjoyable. I don't expect Reunion to take home any prizes, but I do expect it will be able to capture my attention all season. Ever watch the first few episodes of a beloved show years later? Sometimes you wonder how you ever got hooked. Character building takes some time.<br /><br />The one episode for each year idea is wonderful, in my opinion. The only other show I can recall doing something similar is 24, with each episode being an hour...and having an eventful year is more realistic than a day that eventful! Please give this show a shot. Relax about art form...it's just TV!\r\n1\t\"Not since The Simpsons made it's debut has there been a sitcom that I didn't want to turn of in a matter of 2 minutes. It has of course been said that The Simpsons killed the sitcom. Not this one though.<br /><br />The first season was so so as the teenage characters were not quite as outrageous as they later became. They even went to school sometimes. The following seasons the character where fledged out. Eric, the sarcastic twit, Donna, his levelheaded girlfriend, Kelso, the dim bulb, Hyde, the conspiracy theorist and anti-establishment punk, Fez, the pervert exchange student and finally Jackie, the spoiled rich floozy. As for the adult characters there was Eric's mom, the \"\"can you believe she is so ditzy\"\" suburban mom, Eric's dad, the straight arrow who of course wasn't such a hard ass as he seemed, Donna's goofy dad and her dumb blonde mom. Everybody are true to their characters but special kudos to Kurtwood Smith who finds the perfect balance between toughness and still makes his Red Forman quite sympathetic without making us throw up with unexpected cuteness.<br /><br />Topher Grace is of course the main reason why this show is so good. It's a tough character to play because it doesn't allow the actor to indulge in wild overacting like the Kelso character, played competently by Ashton Kutcher. I enjoyed seeing the two characters interact because they are the most different.<br /><br />Hyde's character is a bit harder to enjoy because he is more realistic and do we really need to see the orphan story for the umpteenth time, although I will say that the writers came up with a brilliant story arc for him in the last seasons.<br /><br />Jackie, played by Family Guy voice artist Mila Kunis is hilarious and she has a nails on a chalkboard type voice, which actually fits her character. The only sad part is that we didn't see more scenes with her and Eric because they were f...... hilarious together. Too much story was wasted on her relationship problems since we already got that in spades with Eric and Donna.<br /><br />Last I will say that the casting of guest actors were always great. A few favorites: Fez' humongous girlfriend in the mid-seasons, Pastor Dan, the totally awesome Leo played by the equally awesome Thomas Chong, another one of Fez' girlfriends who is totally certifiable and a special appearance by the teenage witch Sabrina as a slutty catholic girl.<br /><br />Coming up next on Fox, whatever.\"\r\n0\tAs the 2000's came to a close, king Kong's adopted daughter went ahead and made a tearful announcement her show as coming to an end.<br /><br />While Miss Winfrey was tearing up, i was laughing and screaming like a wild Indian from the old west.<br /><br />So what does Oprah do? she takes famous people, and puts them on her show. what kind of famous people? people who've suffered (just like her, except these people have lost more than their virginity) they've suffered melted faces (true story), missing limbs (True story, see end of paragraph), and spousal abuse (too many to count). and somehow they come on the show and tell their story, as if we haven't heard it before tons and tons of times (Bethany Hamilton, i've heard your tale about losing an arm to a shark since day one, which was October 31st, 2003. don't tell me you have no hard feelings.) But the biggest thing probably on Oprah was Michael Jackson's interview in 1993, after being accused of being a child molester. sadly, Mr. Jackson has since passed away. but that one particular show told about Michael's personal life, something not many people knew about at the time.<br /><br />Oprah's Real influence comes from middle aged women and soccer moms. They seem to think she's like a personal Jesus sometimes. but all i see in Oprah is some big ghetto lady who made it big, and she's just showing off how rich she is.<br /><br />I'm glad her shows going to end soon. we need better television programs.\r\n1\t\"This is a bizzare look at Al's \"\"life\"\", back when he still a hyper 20-something. The (real) home videos of Al as a kid are great, and the commentary from his (real life) parents gives a nice glimpse of just how Weird Al wound up as screwed up as he is. This video is a must own for any devoted Al-coholic.\"\r\n1\t\"This is a great movie, it shows what our government will to to other countries if we don't like their government. This isn't as bad as what Reagan and Bush number one did to South America, but the US still has no business messing around with other countries like this. This movies also proves that American media spouts government propaganda. This is exactly what they did to Aristide in Haiti. The reason this coup against Chavez didn't succeed is Chavez was elected with over 90% of the vote.<br /><br />This movie isn't just a political documentary, it would still be a great movie if it were a drama, it's amazing that this is real.<br /><br />The other reviewer is lying when he says \"\"Chavez seizes the airwaves\"\", the private media is running anti Chavez propaganda all the time.\"\r\n0\t\"I can't figure Al Pacino out. I watch him in the Godfather, Scarface, Carlito's Way, and I think I am watching one of the greatest actors of the last thirty years. Then I see him in Two for the Money, Any Given Sunday and Revolution, and I wonder what the guy is thinking.<br /><br />I stumbled on Revolution a few nights ago, and thought I would invest the next two hours on this. Here is a news flash: Want to get prisoners to talk? Force them to watch this over and over...they'll confess to anything.<br /><br />I won't rehash the plot since there is no coherent plot, but it does take place during the American Revolution and Pacino plays an uneducated peasant who does not want to get involved, but ultimately does. While he has no money, no education and dresses like a caveman, a very hot Natasha Kinski falls in love with him for no apparent reason, since they have only two minutes of dialogue together.<br /><br />Quite frankly, if \"\"Al Smith\"\" starred in this movie, instead of \"\"Al Pacino\"\", it would have ruined their career. The script was horrible, but Pacino's demotivated performance and obvious fake accent made it even worse. Donald Sutherland's role was laughable. I really can't describe it. Natasha Kinski is a main character, but has like 5 lines in the movie. In fact, nobody speaks much in this movie.<br /><br />One of the most laughable premise in the movie is how Al Pacino and Kinski have this uncanny knack to continually run into each other on the battlefield. Its like the entire Northeast is a Starbucks. \"\"Hey, funny to see you here again, on ANOTHER battlefield 100 miles away...see you in a few months\"\".<br /><br />I am required to give this one star by IMDb, since there is nothing here for a negative score.\"\r\n0\tI am a back Batman movie and TV fan. I loved the show (new and old) and I loved all the movies. But this movie is not as great as some people were hopeing it to be. In my opinon, it is a big let down. I think the problem was it had no drama. Batman: Mask Of The Phantasm and Batman Beyond: Return Of The Joker had a lot of drama. and Batman & Mr. Freeze: Sub Zero had some drama too. Also, I think this movie is to light for Batman. The only scene that seems a little dark is the big fight with Bane at the end. Anyways, it's an ok Batman movie. But I would just rent it.\r\n0\t\"The same night that I watched this I also watched \"\"Scary Movie 4,\"\" making for one messed up double feature. Unfortunately for these killer tomatoes they could not stand up to the laugh riot that is the Scary Movie franchise. While I fought boredom here watching jokes that were silly and stupid, brutally dated and brutally bad, the more recent parody had me laughing out loud. How could I desire any more than that. Director John De Bello uses the basic premise that some sort of growth hormone has gone terribly wrong and turned the tomatoes into killers. But his main objective here is to slap around the disaster movie genre that was so big back in the day. The script reeks of stoner humor, and perhaps if you take illegal substances with your movie nights this could be your cup of tea. I, sober, was stuck watching a grown man go under cover as a tomato. And that one joke, that is never funny, where the discrepancy between the Japanese speaking actor and the voice over is also here. Some may giggle, I did not. They even had a Hitler joke that wasn't funny, and I thought all Hitler jokes were funny.<br /><br />The narrative of this film is so splintered (for no good reason) that it is nearly impossible to explain. Tomatoes kill people, the government tries to stop it, bad jokes are told. Their aim may have been correct as their targets include the media, consumerism, and paranoia (three things that still control our lives today). Oddly enough the main selling point of this film, those gosh darn tomatoes, really don't make much of an appearance. And when they do, get this, they're played by real tomatoes. That washed up gimmick did nothing for me as I get very little out of watching a pack of tomatoes devour a body thanks to the magic of stop action camera tricks. There is also a fear of going for broke at work here that prevents this film from being truly funny. The gag of having somebody fall asleep in nearly every scene may please some audience members, but more than likely it will be seen as an invitation to join in the fun.<br /><br />I might also add that there does seem to be some old fashioned human egotism at work here. Man eats tomato and that's dinner, tomato eats man and that is a worldwide catastrophe. But that is just the way the world works. In the film the produce becomes evil because of genetic modification, but in the real world our produce (see: Taco Bell) becomes evil thanks to neglect. And like those evil doin' green onions this film's shelf life expired a long time ago. There are a few good chuckles to be had. The last shot was really quite splendid, but it was nowhere near enough to save this moderate stink bomb. I'm pretty sure there is a good movie buried deep within this concept, but the script needed to be filtered through about a dozen rewrites to get there. And by \"\"there\"\" I mean to the level of \"\"Scary Movie 4.\"\" **1/4\"\r\n1\tSimple story... why say more? It nails it's premise. World War 3 kills all or most of the human race and we're viewing 2 of the survivors. The message is that the 2 warring sides should not have been at odds in the first place. Distilled down to representatives from each side, we see they have everything to come together for:<br /><br />Security... Finding resources... food, shelter, etc... Survival... Love...<br /><br />At the end they've decided to pool their resources, (she finally does), so they will survive. Simple story, expressed in the limited budget of the early 60s television landscape. We see it in 2009 as somewhat old and maybe predictable. In the early 60s, no one had seen such stuff... I give it a 10...\r\n1\tPinjar is truly a masterpiece... . It's a thought provoking Film that makes you think and makes you question our culture. It is without a doubt the best Hindi movie I have seen to date. This film should have been shown at movie festivals around the world and I believe would have been a serious contender at Cannes. All the characters were perfectly cast and Urmila Matkondar and Manoj Bhajpai were haunting in their roles.<br /><br />The story the movie tells about partition is a very very important story and one that should never be forgotten.<br /><br />It has no biases or prejudices and has given the partition a human story. Here, no one country is depicted as good or bad. There are evil Indians, evil Pakistanis and good Indians and Pakistanis. The cinematography is excellent and the music is melodious, meaningful and haunting. Everything about the movie was amazing...and the acting just took my breath away. All were perfectly cast.\r\n0\tI don't understand people. Why is it that this movie is getting an 8.3!!!!!!???? I had high hopes for this movie, but once i was about a half hour into it I just wanted to leave the theater. In the vast majority of the reviews on this site people are saying that this is one of the best action movies they've seen (or of the summer, year, etc.) They say it's an excellent conclusion. WTF!!!!!!!!!?????? What has been concluded (besides the fact that Bourne can ride motorcycles, shoot, and fight better than anyone else he comes across)? What do you learn about Bourne's character in this movie?????????Absolutely f****** nothing!!!!!!! Okay, there's a lot of action, but what's so great about the action in this movie?? I don't like the cinematography and film editing. The shaky camera effect and fast changing shots were used TOO much and they get old fast (I didn't mind them in Supremacy because it was still easy to follow and was not used in excess) and made me quite dizzy. I was quickly wishing I had saved my $$$ for something else.<br /><br />This movie has no plot. All this movie is is a 115 minute chase seen. Bourne, who you learn absolutely nothing about in the entire 115 minutes of the movie, is a perfectionist at everything he attempts. There is absolutely no character development in this movie, you know nothing about anyone, and there is a wide array of new characters that are introduced in this installment. Some people said that this movie has incredible writing and suspense. ???????????!!!!!!!! What writing???? What suspense??? There's no suspense. Bourne is so perfect at doing everything he does, I don't think he has anything to worry about. If this is the best movie of the year 2007 I may just quit watching movies entirely!!!! <br /><br />Many people have also said that Matt Damon's performance in this movie is one of the best (if not the best) of his career. What performance?? How many lines did he have in this movie??? I have some respect for Damon because he has been in movies that I liked and has played different kinds of characters, but a good actor is someone that you can barely recognize from one movie to the next, someone who chooses different types of roles. Not someone who plays the same roles over and over again (which Damon doesn't do, but an example of someone who does is Vin Diesel).<br /><br />Anyways, this movie was a BIG disappointment to me. I do not recommend this movie but I do recommend the first two (Bourne Identity and Bourne Supremacy) and I most definitely recommend reading the three books (which are much different then the movies).\r\n0\t\"Okay, what the hell kind of TRASH have I been watching now? \"\"The Witches' Mountain\"\" has got to be one of the most incoherent and insane Spanish exploitation flicks ever and yet, at the same time, it's also strangely compelling. There's absolutely nothing that makes sense here and I even doubt there ever was a script to work with, but somehow I couldn't turn it off. The scratching your head with confusion starts right away, with an opening sequence about an angry little girl that killed her mother's cat. So you think this film revolves on children possessed by evil forces? Heck no, because after this intro, the girl and her wickedness simply aren't mentioned anymore. Then cut to a guy, with the most impressively trimmed mustache you'll ever see, who breaks up with his girlfriend in a rather unsubtle way. When she asks him to spend his vacation with her, he promptly phones his employer requesting him any type of assignment! Great move. The movie finally starts now, as he travels to an isolated mountain area to photograph some peaks. Though not before he picks up a new girl (Patty Shepard) and photographs her topless! Throughout their journey, all kind of strange events occur that  you guessed it  are never explained. The girl wakes up in the middle of the forest, loud petrifying music plays everywhere and someone even steals the jeep! Really, car jacking witches? Apparently a coven of silent witches owns the mountains and they practice voodoo on trespassers. That's as close as I get describing the plot, but there's a good chance I'm way off More important here is the atmosphere! \"\"The Witches' Mountain\"\" is occasionally very creepy, with its spooky music and interesting cinematography. The supportive characters all look uncanny and the ravishing Patty Shepard plays a good heroine. This is the type of European horror film that could have been legendary, if only someone had bothered to write a structured screenplay.\"\r\n0\tWhy Hollywood feels the need to remake movies that were so brilliant their prime (The Texas Chainsaw Massacre, The Hills Have Eyes) but is it considerably worse why Hollywood feels the need to remake those horror films that weren't brilliant to start with (Prom Night, The Amityville Horror) Much like their originals these remakes fail in creating atmosphere, character or any genuine scares at all. Prom night is so flat and uninteresting its hard to watch, but for all the wrong reasons.<br /><br />It's a poorly acted, massively uninteresting and ultimately dull excursion that fails at everything its designed to do. It's clear Hollywood Horror is dead. Even The likes of The Hills Have Eyes and The Texas Chainsaw Massacre managed to ruin their franchises in style with buckets of blood and a decent plot. Prom night is virtually bloodless and I'm not even going to mention how bad the plot is. Its inability to seal the killers identify makes this the least suspenseful horror movie since erm... the original.<br /><br />One of the most notorious slasher films of the 1980s returns to terrorize filmgoers with this remake that proves just how horrifying high school dances can truly be. Donna Keppel (Brittany Snow) has survived a terrible tragedy, but now the time has come to leave the past behind and celebrate her senior prom in style.<br /><br />When the big night finally arrives, Donna and her best friends prepare to enjoy their last big high-school blowout by living it up and partying till dawn. But while Donna is willing to look past her nightmares and into a brighter future, the man she thought she had escaped forever has returned for one last dance. An obsessed killer is on the loose, and he'll slay anyone who attempts to prevent him from reaching his one and only Donna.<br /><br />Who will survive to see graduation day, and what will Donna do when she's forced to confront her greatest fear? Scott Porter, Jessica Stroup, and Dana Davis co-star in the slasher remake that will have tuxedo-clad teens everywhere nervously looking over their shoulders as they file out onto the dance floor. A plot that will probably put you off going to see this. Witch if you ask me is a good thing.<br /><br />Without much to work with, McCormick gamely tries to milk tension out of the most banal of situations. At one point, a girl backs into a floor lamp (a lamp!) and McCormick tries to pump it up into a jump-scare moment. Desperate times really do call for desperate measures. There haven't been this many shots of closets since the last IKEA catalogue.<br /><br />In the era of The Hills, My Super Sweet 16 and To Catch a Predator, there probably is a freaky, scary movie to be mined from the commoditisation of glamour and society's creepy obsession with youthful beauty. This is not that movie.<br /><br />My final verdict? Avoid at all cost. Nobody will like Prom Night, it's even a disappointment to thoses who usually enjoy hack-job remakes. Considering its absolute lack of blood or frights. A night you'll be in a hurry to forget.\r\n0\t\"I saw this film last night (about 102 minutes) and don't know what kept me in my seat. I guess I just expected a film with Gere would have some value in it eventually but nothing of value ever came on the screen. The story is a silly excuse to pile on shot after shot of bondage and torture. There is not a character in the film that does anything like real life. The cutting \"\"style\"\" relies on jump cuts, mini flashbacks and overprinting to give weight to this vapid setup of a gang of sadists apparently running free for years and SURPRISE the leader is the \"\"victim\"\" of an executed killer. I don't see how Gere, a Buddhist, got involved in this violent, sexist trash.\"\r\n0\tCRIME BOSS is directed by Alberto De Martino; an Italian crime drama partially filmed in Hamburg, Germany. An easily forgotten movie. Even in spite of a good car chase sequence, this flick seems to lumber on almost aimlessly. A new Don takes over a powerful Mafia family and finds himself fighting for his own life. Unwritten laws and ethics of the Mafia code make it hard to trust in anyone especially when millions of dollars are at stake. Brutality and violence breed the same in return. This can not be put on a shelf with the real gangster epics. Just the look of the film brings back memories of American drive-in fare. Even the popular American actor Telly Savalas can't boost the calibre of this crime drama. Antonio Sabato also stars with:Paola Tedesco, Guido Lollobrigida, Serio Tramonti and Piero Morgia.\r\n1\t\"\"\"A Bug's Life\"\" is like a favorite candy bar -- it's chock-full of great little bits that add up to something really tasty.<br /><br />The story couldn't have been better; it's clever, has \"\"heart\"\" (emotion), and every character has a nice \"\"arc\"\" (a growth or change). By comparison, the only characters in \"\"Toy Story\"\" to have an \"\"arc\"\" are Buzz, who learns to love being a toy, and Woody, who overcomes his resentment of Buzz. There are tons of laughs and cute moments in \"\"A Bug's Life\"\". All of the actors turn in great voice work, and the animation, both the motion and detail, is superb.<br /><br />This serious movie buff doesn't throw around \"\"10\"\"s lightly, but this movie certainly deserves the \"\"10\"\" I gave it.\"\r\n1\tI stumbled onto this movie when I was eBay'ing Caesars Palace stuff, as I'm enamoured with its rich Vegas history as the last of the original luxury resorts still standing in good condition (unless you count Bally's, the original MGM Grand). In that respect, this movie delivers full-force. You're given a grand tour of the Caesars property,which in spite of all the renovations and additions they've done over the 40 years it's been open, looks alarmingly similar. As a film overall, the plot is somewhat difficult to follow, thanks in large part to the horrendous editing. And when I say horrendous, I'm not using that word lightly. There's a lot of spliced-in, second-long snippets of Vegas traffic, casino crowds, and even a scene where the Robert Drivas character is having a conversation with his father about how much he's grown up, and without any explanation, he (Drivas) goes (in those infamous snippets) from being himself, to a baby, to a little boy, and then back to himself while talking back and forth with his father. (That doesn't give away any plot details; if anything, one can be prepared for it and maybe they won't be as flabbergasted as I was by the editing.) The film has aged well otherwise, and has a good message about the inherent differences between a father and his son that most guys could relate to in some form or fashion.\r\n1\tOne is tempted to define the genre of Gert de Graaff's movie as `event of the thought' following the example of Merab Mamardashvili. The nominal storyline is a certain Bart Klever's torturous quest for that ephemeral substance which constitutes the essence of personality. The script for his new movie is taking shape simultaneously on his computer and in his own imagination. This film-monologue originated as a response to Fellini's `8 ½' and cost Gert de Graaff 13 years of work. Excitedly playing with real and fictional characters as well as with the audience, it reveals the whimsical interconnection of the real and imaginary, the paradoxical co-existence in two different galaxies: that of Guttenberg and that of MacLhuen. For some time we are apt to side with the script writer, who believes that the cause of all misfortune is the damned stereotypes of mass mentality (`man', `catholic', `window washer'). And together with him we fall into a trap when the author-creator is finally faced with the insoluble dilemma: how can one eliminate from the future movie. Bart Klever? Just five minutes before the finale thanks to the common petty reproaches of the wife of the creator, who is deeply immersed in work, we realize that together with the main character we have again been `framed'. Really, what is the price of the art for the sake of which it is acceptable to renounce one's own name and the day-to-day care for the young daughter?<br /><br />So who is he, this Bart Klever? Is he a brilliant prophet or someone possessed like Frenhoffer from Balzac's masterpiece (just like the latter the script writer in the end erases from the computer memory everything has written)? Gert de Graaff suggests that we answer this question ourselves.<br /><br />\r\n1\tThis film is more about how children make sense of the world around them, and how they (and we) use myth to make sense of it all. I think it's been misperceived, everyone going in expecting a stalkfest won't enjoy it but if you want a deeper story, it's here.......\r\n1\tOne of the ten best comedies ever <br /><br />This seems a comedy so joyous and light that sings. Keaton's comedies are _innerly, harmoniously, intelligently ordered, thought.<br /><br />Wonderfully amusing, deliberately delightful and inventive, THREE AGES should belong to a draft of a comedies top ten if I were to sketch one. A threefold love story will enchant the viewers; I want to bring here this approachKeaton's comedy is like Lang's DESTINY upsidedownor À REBOURS. Again a couple traverses the waters of timeand of epochsin the Stone Age, in Rome and in Keaton's timesin a Mohammedan country, in Renaissance Italy and in China. The same device works in the both moviesone, a grim, eerie melodrama; --the other, a light, virtuouslypaced comedy. At Keaton it's essentially the same couple; and maybe the same is with Lang. The babe desired by both Buster and Beery is nice. I have found THREE AGES well written and smart, without being ostentatiously sophisticated; the plot is basically very POPEYElikethe babe is a piece of furniture, the only protagonists are the two male rivalsKeaton and Beery.<br /><br />Keaton's movie is simply enormously likable, and perhaps one would be tempted to assert this looks like ambitious funyet it's not, but it is grand fun, large fun, ample fun. And Wallace Beery makes a fine nemesis.\r\n1\tThe War Between the States was perhaps the darkest hour in the history of America; a war that pitted brother against brother and family against family and left scars that even today have not yet healed, and in all probability never will. And, as in any story about any war, beyond any historical significance it is the personal discord behind the greater conflict that creates the emotional impetus that makes it involving. It is the human element that renders the context necessary to give it perspective, which is what director Ang Lee provides in `Ride With the Devil,' a Civil War drama in which he focuses on the personal travails within the broader depiction of the War itself, and along the way manages to include an examination of one of the bloodiest chapters of the War, the infamous raid on Lawrence, Kansas, by Quantrill and his raiders, which he succeeds in presenting quite objectively from the Confederate point-of-view.<br /><br />In 1863, the Union influence predominates in the State of Kansas, and even across the border in neighboring Missouri, those with Confederate loyalties are finding it increasingly difficult to hold out against the encroaching Northerners, especially without the aid of what could be considered any `regular' Confederate troops. And when things begin to really heat up around their own town, Jack Bull Chiles (Skeet Ulrich) and Jake Roedel (Tobey Maguire) form a band of their own and join in the fray, doing damage to the Union cause wherever it is practicable. Jack Bull and Jake do not like the War and do not like killing; but they are standing up for what they believe to be right. <br /><br />There are others, however, even among their own, men like the young Pitt Mackeson (Jonathan Rhys-Meyers), who will use the conflict as a vehicle for personal gain and as nothing more than an excuse to express their own violent nature through unnecessary brutality, perpetrated in many instances against innocent victims. And so, for Jack Bull and Jake, as well as many just like them, it becomes a time in which loyalty and moral judgments will be sorely tested; a time during which their souls will be tempered in blood. And they will have to ride with the very Devil himself, against seemingly insurmountable odds.<br /><br />As with all of his films, director Ang Lee approaches his story through an incisive, yet subtle examination of the traditions, cultural aspects and moral attitudes of the people and times he is depicting. And in so doing, Lee provides his audience with at least some understanding of his subject that goes beyond the actual story and ultimately offers, perhaps, a deeper grasp of the motivations that propel his characters and the drama in which they are engaged. Whether it's the traditions and customs that account for the relationship between a father and his daughters (`Eat Drink Man Woman'), the effects of class distinction (`Sense and Sensibility'), the honor and code by which a warrior lives and dies (`Crouching Tiger, Hidden Dragon') or the moral ambiguities fostered by a lack of all of the above (`The Ice Storm'), Lee infuses his films with insights into the human condition that take them to a higher level. This film is no exception; and (as he does with all his films), Lee presents his story with the aid of breathtaking cinematography (in this film, by Frederick Elmes, who also did `The Ice Storm' brilliantly), which under his guidance is nothing less than visual poetry. It's that special Lee touch, and it adds a wistful, reflective sense to whatever story he is telling, which is one of the elements that make his films so memorable.<br /><br />As Jake, Tobey Maguire initially brings a sense of youthful innocence to the film that contrasts so effectively with the maturity he conveys later on as the story develops, and his character along with it. Most importantly, Maguire convincingly and believably responds to the events that unfold around him, which adds to the credibility of the overall film and underscores the realism of the presentation: His stoic acceptance of death and the news of those `murdered' in the various skirmishes and battles; the moral propriety to which those he encounters adhere, even in such troubled times; the betrayal, which because of the nature of the conflict is almost commonplace; and the loyalty and beliefs to which he and his companions cling adamantly. It is all of this that Maguire achieves through his performance, and it is no small accomplishment. It is, however, the kind of studied, understated performance that is often taken for granted, which is unfortunate; work like this is worthy of acclaim, and should be recognized.<br /><br />Skeet Ulrich is effective, as well, as Jack Bull, and Jewel (in her motion picture debut) turns in an engaging performance as Sue Lee Shelley. It is Jeffrey Wright, however, who stands out in a notable supporting role as Daniel Holt, as well as Jonathan Rhys-Meyers, who brings a chilling Christopher Walken-like menace to his role of Pitt. Also, in what amounts to a cameo role (one scene), Mark Ruffalo leaves an indelible impression with very little screen time.<br /><br />The supporting cast includes James Caviezel (Black John), Simon Baker (George Clyde), Tom Guiry (Riley), Tom Wilkinson (Orton Brown), John Ales (Quantrill), John Judd (Otto Roedel) and Kathleen Warfel (Mrs. Chiles). The Civil War will forever be an open wound upon the nation; but hopefully, as time goes on, it will be through the objective contemplations of filmmakers like Ang Lee and films like `Ride With the Devil' that will ultimately help to close the schism and promote healing. In light of more recent events, it is something that is sorely needed, worldwide. Film is a powerful medium; it can be educational as well as entertaining, and perhaps in the future more filmmakers, like Ang Lee, will embrace and promote a sense of unity through the sensitive depiction of the events and attitudes that make us what we are. 8/10. <br /><br /> <br /><br /> <br /><br />\r\n0\tReleased on DVD in the UK as Axe, The Choke is a teen slasher that fails in pretty much every department: the story is almost non-existent, resulting in a film which comprises mostly of people wandering around a dark building; with the exception of two characters (who are quite obviously destined to be the film's survivors), everyone is thoroughly objectionable, meaning that the viewer couldn't care less when they get slaughtered; the deaths aren't gory enough (unless a brief shot of a pound of minced beef covered in fake blood turns your stomach); and the gratuitous sex scene features next to no nudity (an unforgivable mistake to make in a slasher flick!).<br /><br />The wafer-thin plot sees members of a punk band locked inside what appears to be the world's largest nightclub (there are endless abandoned corridors and rooms, unlike any club I've ever seen) where they are picked off by an unseen assailant. For a low budget effort, the production values are okay, and the cast are all seem to be fairly capable actors, but with not nearly enough genuine scares, a reluctance to get really messy (this is a slasher, so where's the graphic splatter?), way too much dreadful dialogue (particularly from the not-dead-soon-enough drummer) and some ill advised use of tacky video techniques in an attempt to add some style, the movie quickly becomes extremely boring.\r\n1\t\"\"\"One shot, one kill, no exceptions.\"\" A must see if you are into marines or snipers. two big thumbs up! Great overall storyline, great camera work, good drama, action, details, and more. Pretty close to the real thing. But this isn't a film to breakdown and pick out the editing faults. this is to sit back and have a good 99 mins. The plot has some depth but this movie isn't really about making you think. its about enjoying the sniper lifestyle and action. sniper 2 and 3 are pretty good follow ups but the first is still the best overall movie. Tom Berenger does a great job playing his character and showing the hidden side of the sniper life. the plain of dealing with all of the death. Must see for sniper fans.\"\r\n1\tit's amazing that so many people that i know haven't seen this little gem. everybody i have turned on to it have come back with the same reaction: WHAT A GREAT MOVIE!!<br /><br />i've never much cared for Brad Pitt (though his turns in 12 monkeys and Fight Club show improvement) but his performance in this film as a psycho is unnerving, dark and right on target.<br /><br />everyone else in the film gives excellent performances and the movie's slow and deliberate pacing greatly enhance the proceedings. the sense of dread for the characters keeps increasing as they come to realize what has been really happening.<br /><br />the only thing that keeps this from a 10 in my book, is that compared to what came before it, the ending is a bit too long and overblown. but that's the only flaw i could find in this cult classic.<br /><br />if you check this film out, try to get the letterboxed unrated director's cut for the best viewing option.<br /><br />rating:9\r\n1\t\"This 1939 film tried to capitalize on the much better Michael Curtiz's film \"\"Angels with Dirty Faces\"\". As directed by Ray Enright, the only interesting thing is how tamed these kids were in comparison with what's going on with the youth in America's inner cities today.<br /><br />The film is only worth seeing because of the presence of Ann Sheridan and Ronald Reagan, who showed they were well paired together. The Dead End kids have larger parts as the plot concentrates on them rather than in the older folks.<br /><br />In a way it's curious how arson was used in the same way some scrupulous landlords did in later years right here in New York. It was the quickest way to turn a property around never considering the social problems it created. In today's climate with so many guns around there is a new reality. The young kids of the story seemed mere pranksters rather than criminals. How times change!\"\r\n0\t\"NO SPOILERS.<br /><br />I love horror movies, but this has got to be the poorest attempt to make one ever. Calling it \"\"a movie\"\" is also a stretch. This \"\"random-clips-of-obviously-fake-and-tacky-violence-and-an-ugly- woman-trying-to-act-sexy-edited-poorly-together\"\" is not worth watching.<br /><br />Watching this is about as interesting watching as some random family's holiday pictures, and it has about the same quality you would expect when you send your ten year old son into the woods with your new vid-cam, and tell him to make a movie.<br /><br />Terrible.\"\r\n0\t(spoilers)Wow, this is a bad one. I did a double take when watching an old Star Trek episode the other day-it was the one where everyone gets infected with that space sickness and then go a bit nuts-and there was Stewart Moss, a.k.a the unlikable 'hero' of It Lives by Night! He played the first crewmember infected, who dies from terminal depression. All I could think was that he'd watched his own movie too many times, that's what caused the depression. This movie is full of truly unlikable people. There is no redeeming character in the film, not one. It's very hard to feel bad about Dr. Beck's turning into a bat(or whatever he actually turned into), because you just don't like him. And you don't like his shrill, bony wife, or the nasty sleazy Sgt. Ward, or Dr. Mustache Love...So why would you invest any time or energy in this movie? Where there is no empathy with the characters, there is no reason to bother caring about it. Not to mention the horrible cinematography, which made it look like they'd filmed the movie through urine, and the five cent bat special effects, many of which appeared to be pieces of paper thrown into a fan to simulate hordes of bats flying. Not the worst film I've ever seen on MST3K, but down there in the bottom ranks, definitely.\r\n1\t\"One piece of trivia that is often forgotten about this family film is one of business.<br /><br />At the time, in 1994, this movie held the record for the biggest movie premiere in motion picture history (and may continue to hold). It was held in Pittsburgh, Pennsylvania - no doubt in honor of the original film's \"\"Angels\"\" who \"\"haunted\"\" the Pittsburgh Pirates. In this remake they \"\"haunt\"\" the California Angels.<br /><br />Anyway, the premiere was held at the long gone Three Rivers Stadium which was the home of the Pittsburgh Pirates and the Pittsburgh Steelers at the time (the Pirates are now housed in PNC Park and the Steelers at Heinz Field). The premiere was held on a movie screen that was five stories in height inside the stadium and held (and may even continue to hold) the record for the largest movie premiere in history, shown to 60,000 fans. Danny Glover, Tony Danza and Christopher Lloyd were all in attendance to the admiration of thousands of sports fans.\"\r\n0\tIt's not just the plot alone that makes this movie an instant turn-off for bored audiences. It's the terrible direction with a horrible script and mistakes left and right that makes this too agonizing to watch. I'm sorry but I do not see the 'fun' in this. Just the thrill of pointing the many mistakes and stupid one-liners. Well I'm wondering how dumb the directors think of their producing company when this movie was first introduced. Probably as dumb as that sheriff who dove into the pickup truck full of antifreeze with a gaping bloody wound. Oops! Did I forget to mention this sheriff's not only a poor actor but also can shrug off an impalement with a load of antifreeze drenching the exposed flesh? I guess he kind of forgot when he won a not-so-thrilling victory over the snowman.\r\n0\t\"Isabel Allende's magical, lyrical novel about three generations of an aristocratic South American family was vandalized. The lumbering oaf of a movie that resulted--largely due to a magnificent cast of Anglo actors completely unable to carry off the evasive Latin mellifluousness of Allende's characters, and a plodding Scandinavian directorial hand--was so uncomfortable in its own skin that I returned to the theater a second time to make certain I had not missed something vital that might change my opinion. To my disappointment, I had not missed a thing. None among Meryl Streep, Jeremy Irons, Glenn Close and Vanessa Redgrave could wiggle free of the trap set for them by director Bille August. All of them looked perfectly stiff and resigned, as if, by putting forth as little effort as possible, they expected to fade unnoticed into lovely period sets. (Yes, the film was art directed within an inch of its life.) Curious that the production designer was permitted the gaffe of placing KFC products prominently in a scene that occurs circa 1970--years before KFC came into being. Back then, it was known by its original name: Kentucky Fried Chicken. Even pardoning that, what on earth is Kentucky Fried Chicken doing in a military dictatorship in South America in 1970? American fast food chains did not hit South America until the early 1980s. \"\"The House of the Spirits\"\" should have been the motion picture event of 1993. Because it was so club-footed and slavishly faithful to its vague idea of what the novel represented, Miramax had to market it as an art film. As a result, it was neither event nor art. And for that, Isabel Allende should have pressed charges for rape.\"\r\n1\tOld People Show???? I'm 15 and have been watching the show since I was 12, recoding it onto my Sky+ box everyday from Hallmark and BBC 1. I really wish they hadn't cancelled it, they didn't even get a proper farewell. But what an adventure, all those episodes, I think I've seen them all, and not one comes to mind that I didn't like and enjoy.<br /><br />Its a shame the BBC keep swapping between Diagnoses Murder and 'Murder She Wrote'- Never watched it and don't intend to. Anyways, he characters in Diagnoses Murder are so in-depth, and the chemistry between the actors is amazing. It really was a sad day when they cancelled this show........\r\n0\t\"I work at a Blockbuster store and every week we have movies that come in with just a few copies, these are the kind of movies that the Sci-Fi channel shows. The kind of movie that nobody ever wants, and only that idiots rent, when they bring it back I ask them \"\"was it any good?\"\", they say \"\"no we turned it off after 15 minutes!\"\" Movies with terrible computer generated, super imposed monsters and such like, very unappealing.<br /><br />This is the same type of movie that Grendel is, and absolute waste of time, if you want a reasonably (and only reasonably) good Beowulf based movie then try Beowulf & Grendel , starring Gerard Butler, who is also starring in the eagerly anticipated 300, as King Leonidas of Sparta.<br /><br />Plus, later this year we have another Beowulf movie, with a star studded cast ranging from Anthony Hopkins and Brendan Gleeson, to Angelina Jolie and John Malkovich.<br /><br />But don't let that get your hopes up like we all did with Eragon, or we are all in for another big disappointment.<br /><br />And regarding rentals, here is my rule of thumb: If there is only one or two copies, don't rent it because its a load of crap.( This is true 99.9% of the time, usually not true if the title is foreign, or a documentary.)\"\r\n0\tI don't see what everyone liked about this movie. The set-up was too long and talky, and when it was done, the main character remained as flat and opaque as he had been in the first scene. After the film finally got Cusack into the eponymous hotel room, I had to wonder, well, what's going to happen here for the next hour or so to keep me engaged. The answer: not much, just John Cusack having a long, drawn-out, mental breakdown.<br /><br />Maybe if the Cusack character had more depth . . maybe if his freak-out were a more thorough reworking of his everyday life . . . maybe if the film had either better developed its half-baked themes about loss and faith or had not tacked them on in the first place . . . maybe if the film had made a choice to be either psychological horror or thrill-ride horror and had fully embraced one of these styles . . . I dunno. All I do know is that I saw this movie with two other horror buffs and none of us much liked it.<br /><br />Except for the disquieting episode on the hotel ledge, the alarming crazy lady with the hammer, and the so-stupid-it-was-fun crypt keeper in the air duct, all three of which account for no more than five minutes of screen time, this film was a bore.<br /><br />By the way, this story seems to steal ideas from The Shining and use them here to much less powerful effect. Is Stephen King now reduced to stealing ideas from himself?\r\n0\tThis is not as funny and gory as the DVD box claims. I really love twisted and wierd movies, but this one is really just dull! It's one hour of ripped off penises, flying Baby Born dolls and a lot of rape! I think the intention with this amateur sleaze, was to make a It's-so-bad-it's-good movies, but it fails. It's just bad! A few scenes are ok, but in whole it's a mess. If you like amateur splatter like this one (Only way better) I would recommend Andreas Schnass' Violent Shit 2 and 3.\r\n1\t\"Don't mistake \"\"War Inc.\"\" for a sharply chiseled satire or a brainy comedy full of inside jokes for news buffs. It isn't.<br /><br />This is an old-fashioned screwball comedy, with ridiculously coincidental plot twists, stock characters (given some depth in fun performances by John Cusack, Joan Cusack, Marisa Tomei and Hillary Duff) and a straightforward approach to the political content.<br /><br />You see, the filmmakers' political points are things nearly all of the country already knows are true. Yeah, we understand that the corporations profiting off the war are corrupt, inept pigs, the political leaders in charge of it are even more inept buffoons, and American imperialism has never looked crasser and more out of touch than it does right now -- but none of that is the point.<br /><br />Here, all of that noise is the setting that they lampoon -- sometimes in genius ways -- as the backdrop for a silly romp, as John Cusack's character (the hit-man with a heart) tries to change his life with the help of the do-gooder journalist who doesn't trust him (Tomei) and the young Middle Eastern starlet who wants to call off her marriage (Duff). Cusack's sister, Joan, plays his assistant with an almost cartoonishly enthusiastic quality. Ben Kingsley seemed to me wasted in his smaller part as a ruthless CIA boss.<br /><br />That's all, and it works. It's simple fun, but if somehow you can't see reality and you think the war is going well and everyone involved with it is doing a good job and there's no corruption and people in the Middle East wish our Western culture would supplant theirs, then you might not find it as funny.<br /><br />For all the rest of us, it was a light comedy with a political edge.\"\r\n0\tWhat can I say about Seven Pounds...well I watched on a flight from Seattle to Tokyo and as that flight was long and boring the movie definitely didn't help. Will Smith's character Ben Thomas is almost completely unlikable even with his redemption in the end. The movie's two hour plus run time wastes most of the screen time with random garbage that just strings the plot along as slow as possible. In the movies defense Rosario Dawson's character adds a little life to the film although not much. I don't understand how anyone could actually cry during this film when all I wanted to do was turn it off. Also Will Smith kills himself with a jellyfish at the ended proving that killing yourself with a jellyfish is the stupidest way to die.\r\n1\t\"There I was sitting alone in my flat on a Saturday night with the choice of watching CITIZEN X or The Eurovision Song Contest , and for the benefit of Americans reading this I'll explain that TESC is an annual event where musicians from countries all over Europe and Asia Minor have a song contest. At the end of the contest countries vote to see what the best song was . It's a contest that is even less exciting than it sounds and it may not come as a shock when I say that singing and songwriting isn't of the calibre of Lennon and McCartney . And I should correct something in the first sentence of this review because the word \"\" Choice \"\" is misleading because being a music lover I wasn't going to watch TESC under any circumstance.<br /><br />So I sat down as the credits rolled for CITIZEN X expecting a run of mill serial killer whodunnit , but I'd be misleading everyone calling it that. It's obvious within the first 10 minutes of CITIZEN X whodunnit . What the film does is point out the failures of communism : \"\" A serial killer comrade ! This is the Soviet Union , serial killers can only exist in decadent imperialist capitalist systems \"\" This farcical attitude goes far beyond denial , there's a scene where an undercover cop sits in a freezing train station keeping an eye out for potential suspects whilst wearing his police jacket because it's the only warm coat he's got ! And of course all suspects who are members of the communist party are released without interrogation something which will affect the final death toll . All this is very well done as we are shown that it's the communist party system that's on trial but about two thirds of the way through CITIZEN X we find ourselves in 1990 as communism is on its last legs and reforms to the police investigation have taken place . It's at this point that the film becomes rather uninteresting due to a lack of political subtext and the film descends into an average manhunt film . But don't let that put you off , CITIZEN X is an intelligent thriller well played by the cast especially Donald Sutherland as a paternal police chief<br /><br />Strangely enough a few years ago I read something written by the famous criminologist Colin Wilson in which he said something along the lines that serial killers let themselves get caught so that they will be the center of attention in the media spotlight , and I found myself almost sympathising the party chiefs denying there could be a serial killer in the Soviet Union. After all media is controlled by the party and anyone who's old enough to have listened to Radio Moscow or read English translations of Pravda will know that the USSR only reported news stories like potato harvests , coal production and thank you letters from Afghanistan , Cuba etc for Soviet assistance . The concept of becoming a serial killer in a communist system is illogical . But I guess if a tree falls in a remote Siberian forest it will still make a sound even though no one is around to hear it .\"\r\n0\t\"This movie which was released directly on video should carry a warning label that it is dangerous to human health and may subject the viewer to terminal boredom. It is yet another thinly veiled, evangalizing \"\"rapture\"\" religious movie with the good guys (the believers) suddenly vanishing and the bad guys (the non-believers)left behind. It's an interesting concept, especially since we see it happen on a flight captained by a non-believer who is having a sinful affair with a stewardess aboard (needless to say that sinner doesn't disappear either!). Unhappily, with all the pilots being non-believers, the plane did not crash or the movie would have been mercifully over. Though this could have be interesting without the heavy religious browbeating, as a whole the plodding movie makes one gag, the acting is horrible and the obviously computer-generated simulations are very fake looking. Plus it's yet another movie shot in Canada that purports to be New York City. Spare me...I'll just read the Bible.\"\r\n1\t\"The 60's is a great movie(I saw it completely in one night) about the hippy movement in the late 60's. Although the title would suggest otherwise the first 5 years of the 60's are not really important in this film.<br /><br />The main character of the movie is Michael,a political activist who goes on the road in the US against the Vietnam-war. There he meets his girlfriend,Sarah.Michael's brother,Brian,goes to Vietnam to fight(what a surprise!).He comes back from the war and changes in a \"\"Tom Cruise Born on the fourth of July\"\" look a like and then into a Hippy.His dad is a pro-vietnam war type of guy(what a surprise!!).Michael's sister Kate gets pregnant from a Rock & Roll artist and runs away from home and goes to San Francisco during the summer of love. The ending is very poor(father becomes a liberal and everybody is happy),but I let this slip away from my vote(the rest of the movie is very good!). <br /><br />The performances by the actors are pretty good and the soundtrack of the movie is absolutely brilliant. All the main events of the sixties are in the movie,like the murders on JFK and Martin Luther King aswell as the big hippy protests,the summer of love and Woodstock! Look closely for Wavy\"\"Woodstock Speaker\"\"Gravy(What we have in mind is breakfast in bed for 400.000!) as a first aid employee at the Woodstock festival!<br /><br />In the end,the 60's is a beautiful movie about a beautiful decade! 10/10\"\r\n1\t\"Buddy is an entertaining family film set in a time when \"\"humanizing\"\" animals, and making them cute was an accepted way to get people to be interested in them.<br /><br />Based on a true story, Buddy shows the great love that the main characters have for animals and for each other, and that they will do anything for each other.<br /><br />While not a perfect movie, the animated gorilla is quite lifelike most of the time and the mayhem that occurs within the home is usually amusing for children.<br /><br />This film misses an opportunity to address the mistake of bringing wild animals into the home as pets, but does show the difficulties.<br /><br />A recommended film which was the first for Jim Henson Productions.\"\r\n1\tThere are many kinds of reunion shows. One kind is where old actors are taken out of mothballs and set to recreate characters they haven't played for twenty or thirty years. These have mixed results. `Return to Mayberry', despite some silliness, was okay; `Return to Green Acres' as execrable (Eddie Albert used a word for the script I won't repeat here, but both it and the movie stink); `Rescue from Gilligan's Island' filled in a necessary gap in the story of the castaways, though the show itself was silly even from a `Gilligan's Island' viewpoint. In most cases, the scripts are weak; sometimes a silliness appears in the scripts that is too knowing  and in comedy it's nearly always fatal for the characters to know they're being funny. New characters are introduced who don't fit the mix. In the main, these reunion shows are pretty weak. A second sort of `reunion' show is the kind where the cast lays its past aside but sits around, telling stories, reminiscing, interspersed with flashbacks from the shows. Then there are movies based on the shows, which are rarely good; and movies based on the history of the show (`The Brady Bunch' has had both of these happen to it, with various results).<br /><br />`Return to the Batcave' uses nearly all the above, with a wonderfully twisted viewpoint, which makes it the best of the reunion shows, and has raised the bar for the others.<br /><br />Adam West and Burt Ward and summoned to a showing of the original Batmobile. While they are there, the car is stolen. <br /><br />The Adam West of the movie is a man demented. He called Jerry, his butler, `Alfred'. He opens a bust of Shakespeare in his apartment and reveals a hidden pole to slide down to the parking garage. He's obsessed with being a crime fighter, when in fact he's merely a washed up actor. When the Batmobile is stolen he not only believes it's his duty as a crime fighter to recover it, he drags and unwilling Burt Ward in as his assistant.<br /><br />The pursuit is largely loquacious, with West and Ward reminiscing about the old days. It is broken by `flashbacks' with actors playing West and Ward in the old days. The modern scenes and the `flashbacks' both have the wacky lack of reality the show maintained. There are also running gags that show West is able to make fun of himself: in Ward's book about his time on the show, he spoke frankly about West's libido and also his being a skinflint (West makes Ward pay for everything in their pursuit, down to tips and bus fare). The clues they follow, the characters they meet (even in flashback) all fit the mentality of the old series, and there are several homages, including a fist fight with written sound effects.<br /><br />The whole thing is extremely funny and done with great panache. There are also cameos by Julie Newmar (looking like she's had one facelift too many) and Frank Gorshin, reminding us why he has such a cult following. Gorshin will be the Riddler when Jim Carey, his obvious successor, is long forgotten. The movie builds to a fairly obvious but funny climax.<br /><br />This show is a model for reunion shows  unfortunately, there are few that can fit the pattern. This show had actors replaying their old characters; young actors playing a movie about the making of the show; the actors West and Ward reminiscing; and a modern-day movie with the real Adam West playing the demented Adam West. It has everything. If you loved the old show, this is the stopper on the bottle.\r\n1\t\"While it was filmed at a Florida National Guard site, \"\"Tigerland\"\" totally reminded me of Fort Polk, LA., firing ranges, maneuver areas, waist-deep water and all. The movie was fairly authentic and the characters similar to those same ones at my AIT in 1974. The difference between the Tigerland year, 1971, and mine of 1974 is all the drill sergeants and instructors knew they weren't going back to Vietnam, as it was pretty much all over, so training was very relaxed - not a challenge at all. That was the precursor to all our troubles in the 70s and 80s, which I know for a fact as I stayed in until 2004. I never heard anyone mention \"\"Tigerland\"\" but the Army did have realistic Vietnam training villages at different bases across the U.S. Vietnam Vets tell me that up to 1972 Basic & AIT could be pretty rough and rugged, because the trainers had been there and were mandated to train Vietnam-bound men those skills to make it, although that was not always the case. Both a drill sergeant at Polk and later one of my Vietnam Vet NCOs, when we had become instructors at a basic training brigade at Fort Bliss, told me there was nothing they could do to get anyone ready and people just had to find out and figure out for themselves. This movie rates high.\"\r\n1\tGirlfight is like your grandmother's cooking: same old recipe you've tried a million times before, yet somehow transformed into something fresh and new. Try and explain the story to people who haven't seen it before: a young women from the wrong side of the tracks attempts to improve her situation by taking up boxing whilst dealing with a bitter, obstructive father and her growing attraction to a male rival. Watch them roll their eyes at the string of clichés, and they're right: it *is* clichéd. Yet I was hypnotized by how well this film works, due to the frequently superb acting and dialogue, and sensitive direction that makes it 'new'. I avoided this at the cinema because it looked like complete crap but don't make the same mistake I did. Definiately worth a look.\r\n1\tJohn Cassavetes' 1977 film Opening Night is, what critics usually call the work of such a significant artist, 'overlooked'. It is an excellent film, in its own right, and one of the best portraits of a midlife crisis ever put to film. It's not a perfect film, in that, at two hours and twenty four minutes it's about a half hour too long, and there's a bit too much emphasis on the drunkenness of the lead character Myrtle Gordon, played by Gena Rowlands, the wife of Cassavetes, long after we've gotten the point. But only Woody Allen's masterpiece, Another Woman, which also starred Rowlands, eleven years later, is a better portrait of the internal conflicts of an aging woman. Yet, Rowlands did win the Best Actress Award at the Berlin Film Festival for this portrayal, and it was well deserved. Often this film, written by Cassavetes, is easily compared to his earlier- and inferior- film, A Woman Under The Influence, but it's a spurious comparison. Rowlands' character in that film is severely mentally disturbed from the start, as well as coming from a blue collar background, while her characters in this film and in Allen's film are both artists who are haunted by apparitions. In this film it's the ghost of a dead young woman who can be seen as Myrtle's younger doppelganger, while in Allen's film it's her character's own past. Many critics have taken this film to be a portrait of an alcoholic, seeing Myrtle surround herself with enablers, such as a stage manager who tells her, during opening night, 'I've seen a lot of drunks in my time, but I've never seen anyone as drunk as you who could stand up. You're great!', but this is wrong, for alcohol isn't her problem- nor is her chain smoking. They are merely diversions from whatever thing is really compelling her to her own destruction, and much to Cassavetes' credit, as a storyteller, he never lets us find out exactly what's wrong with Myrtle, and despite her coming through in the end, there's no reason to expect that she has really resolved anything of consequence. This sort of end without resolution links Cassavetes directly with the more daring European directors of the recent past, who were comfortable in not revealing everything to an audience, and forcing their viewers to cogitate, even if it hurts.<br /><br />Yet, the film recapitulates perfectly the effect of a drunk or fever lifting out of the fog, and as such the viewer again is subliminally involved in its drama. Whether or not Myrtle Gordon does recover, after the film's universe irises about her is left for each and every viewer to decide, and as we have seen before that lid closes, one's choices do matter.\r\n1\t\"I saw this movie being a Jane Austen addicted and always feeling doubtful about cinematographic rendering of the complexity of her novels: well, this transposition is simply accurate, intelligent, delicate, careful, tactful, respectful, intense, in a word, perfect!<br /><br />\"\"Emma\"\" is one of Austen's most delightful and funny novels, thanks to overall irony pervading situations and characters. The movie respected this subtle irony, not disregarding the comic element (Miss Bates above all). What engaged me in the novel, and the movie renders it clearly, is the deep knowledge of human life shown by the English novelist, and the modern look with which women, men, and their relation are handled, and it is astounding if we think how a woman novelist of the 18th century, who lived almost a secluded life, could grasp such depth and truth about life as she did: that most and still fascinates me. We can feel this modernity throughout the movie: just replace costumes, and use a more current language but the situations, the feelings, the ideas would be extremely modern. I think of the morbid interest in other people's lives, or that insinuating envy which now as ever rule women's relations, and still the difficulty in revealing, and giving expression to one's feelings, especially love: every situation gets a universal and out-of-time value. <br /><br />The cast is really talented and offer very good and extremely brilliant performances: a young Gwyneth Paltrow is particularly suitable for this role (nowadays she would be probably too mature for it), Toni Colette is simply great. And how I envied them for the wonderful dresses they could wear! And then, the breathtaking English countryside, where every situation gets such a magic and dream-like dimension... a really enjoyable and deserving movie.\"\r\n1\tIf you r in mood for fun...and want to just relax and enjoy...bade Miyan Chote Miyan is one of the movies to watch. Amitabh started off pretty good...but it is Govinda who steals the show from his hands... awesome timing for and good dialog delivery.....its inspired from Bad boys... but it has Indian Masala to it... people think it might be confusing and stupid...but the fact that David Dhavan is directing and Govinda is acting... should not raise any questions....other recommended movies in the same genre(David Dhavan/Govinda combo)...are Shola Aur Shabnam, Aankhen, Raja Babu, Saajan Chale Sasural, Deewana Mastana, Collie no. 1, Jodi no. 1, Hero no.1, Haseena Manjayegi, Ek Aur Ek Gyarah.\r\n1\t\"Never realized that Charles Boyer, (Luis Denard) appeared with Lauren Bacall,(Rose Cullen) in a film together and enjoyed their great acting together. Even Peter Lorre, (Contreras) had a role in this film and had a bad misfortune in his bathroom that caused him to faint. This story deals with a Republican Courier, Luis Denard who visits England during the Spanish Civil War and tries to disrupt a coal mining contract that will cause great harm to other nations. Lauren Bacall, (Rose Cullen) comes to the aid of Luis Denard by picking him up and at the same time falling in love with him and then proceeds to help him escape from an angry crowd of English Mine Workers who threaten his life. The real bad guy in this film is Victor Francen, (Licata) \"\"Beast with Five Fingers\"\" who gives an outstanding performance. Great Classic 1945 film without Humphrey Bogart.\"\r\n0\t\"I personally liked \"\"The Prophecy\"\" of 1995 a lot. Christopher Walken was, as always, great, and even though the film wasn't flawless, it was a creepy and highly original Horror/Fantasy film that entertained immensely. This inferior 1998 sequel is still worth watching, but mainly due to Walken. Walken is one of the greatest actors around, in my opinion, and he is once again outstanding in the role of the fallen Archangel Gabriel, whom he plays for the second time here. Once again, the war between fallen and loyal Angels is brought to earth. Gabriel returns in order to prevent the birth of a child, namely the child of the angel Danyael (Russel Wong) and the human woman Valerie (Jennifer Beals). This child could once be the determining factor of the celestial war... As I said above, Christopher Walken is once again excellent as Gabriel. Besides Gabriel, however, \"\"The Prophecy II\"\" sadly also includes a bunch of terribly annoying characters. The character of Valerie was annoying enough, and Danayel annoyed me even more. The biggest pain in the ass, however was the character of Izzy (played by Brittany Murphy), a suicidal girl who wouldn't shut up. Still, Walken's performance isn't the only redeeming quality of the film. The entire film is quite dreary, and well-shot in dark colors, which contributes a lot to the atmosphere. Gabriel's resurrection scene in the beginning is furthermore quite impressive, and one of the coolest moments in any of the \"\"Prophecy\"\" films. \"\"The Prophecy II\"\" is nevertheless the weakest of the three \"\"Prophecy\"\" films with Walken. Definitely a Christopher Walken one-man-show, entertaining, but nothing beyond that.\"\r\n0\tAnyone who visited drive-ins in the 1950s, 60s, and 70s, must have seen a film or two by American International Pictures, a distributor that resembled 1980s giant Cannon Films. Wherever movie-goers ventured, AIP would be right there to supply the latest en vogue titles - in the 50s came horror movies like 'Voodoo Woman' and 'The Undead;' in the 60s were Frankie Avalon-Annette Funicello beach comedies and biker flicks like 'The Glory Stompers;' and into the 70s, AIP churned out grindhouse-level trash like 'Cannibal Girls' and 'Sugar Hill.'<br /><br />'Dillinger,' released in 1973, is one of the more 'highbrow' AIP efforts that capture the true spirit of drive-in film-making; it is one of those uneven, over-the-top flicks that satisfied the masses' thirst for entertainment, craftsmanship and common sense be damned. On the whole, 'Dillinger' is typical for its era: entertaining and worth a couple of hours, but certainly not memorable. Heavy on action and short on both acting and historical fact, 'Dillinger' was a fair effort by screenwriter-director John Milius ('Magnum Force') but certainly left room for improvement in his extensive career.<br /><br />The 109-minute 'Dillinger' - epic for AIP's scope - follows the quest of FBI Midwest chief Melvin Purvis, played by Academy Award winner Ben Johnson. Purvis was the investigator who sought revenge for four FBI agents killed in a 1933 Kansas City ambush that helped gangster Frank Nash to escape justice. At large were the men who supposedly plotted that breakout, including expert bankrobber John Dillinger (Warren Oates), Pretty Boy Floyd (Steve Kanaly), and psychopath Baby Face Nelson (Richard Dreyfuss). Dillinger eventually joined forces with Floyd and Nelson, taking along Homer Van Meter (Harry Dean Stanton) and Harry Pierpont (Geoffrey Lewis). He also hooked up with Billie Frechette (Michelle Phillips), a prostitute of French and Indian extraction. While taking place over several months in 1933-4, 'Dillinger' is basically a chase film, with Purvis's entourage looking to run down and kill off the men wanted by J. Edgar Hoover.<br /><br />'Dillinger' has a documentary feel, listing dates and places while Johnson supplies loose narrative as Purvis. Milius keeps an honest Depression look, using authentic fashion, cars, weapons, and buildings; he also sprinkles around black-and-white photography and stock footage of gangster shootouts. The film is never boring, moving at a quick, if haphazard, pace. The action scenes are Dillinger's strongpoint, edited competently by Fred Feitshans Jr in his last professional effort. Thousands of blank ammunition rounds must have been used to make this film, not to mention pounds of explosives. This film is certainly not for the squeamish, with people getting shot and dropping dead all over the place. The violence, while gratuitous, brings some understanding of the mayhem that organized crime dumped on American life.<br /><br />This film never transcends its exploitation status, however, because the needed writing just isn't there. John Milius, somewhat overrated as a filmmaker, places way too much emphasis on action. The action scenes (mostly blood-filled shootouts) are impressive and comparable with any major crime film of its era, including 1967's 'Bonnie and Clyde.' But we simply don't get to know much about Dillinger and his gang members as people; the vital relationship that develops between Dillinger and Frechette is barely touched upon, with the pair meeting in a bar during one scene and cavorting as lovers just ten minutes afterward. Melvin Purvis also seems to wander in and out of the storyline, becoming a prominent figure only when Milius needs to keep the film from unraveling. All too often, the film takes on a shoot-'em-up persona when its characters could have been explored in detail.<br /><br />Aside from this, the picture's main crime is ignorance of historical fact. While many say that 'Dillinger' is just a film, it's films such as this one that create fables and make them permanent. Those with knowledge of gangster history will point out that John Dillinger was not the last of his ring to die, as Milius's screenplay and the film's documentary style encourage us to believe. In fact, Dillinger died before Baby Face Nelson and Homer Van Meter; he also was said not to be carrying a gun on the night of his death, nor did he have Billie Frechette in tow. While these inaccuracies might make for high drama, there is no reason why Milius couldn't have stayed with the facts and written a great story around them.<br /><br />Warren Oates's performance as Dillinger is quite good, although he sometimes looks unconvincing. Oates is humorous and nicely portrays how Dillinger became consumed by his larger-than-life image in the American press; however, we never really feel the menace he invoked in his lifetime. Ben Johnson gives some life to Purvis, suave but rather flat. Michelle Phillips brings emotion to the Billie Frechette character and it's really too bad that Milius's screenplay didn't flesh out her relationship with Dillinger. We never learn what drew her to a cold-blooded killer, other than the stereotype of an easy-going girl who is attracted to men of danger. The supporting roles with Kanaly, Dreyfuss, Stanton, Lewis, and a briefly-appearing Cloris Leachman, are acceptable for such talent.<br /><br />As a piece of 1970s exploitation, 'Dillinger' appears doomed to retail bargain bins, which is exactly where I picked up MGM's DVD release for $4.99. The film is nicely presented in widescreen (a must for drive-in flicks) with subtitles in French and Spanish. Dillinger's theatrical trailer is supplied as a lone extra. Largely forgotten except by gangster movie fans and drive-in enthusiasts, the film doesn't really call for much else in way of supplementary material. For fans of the genre, it's certainly worth checking out.<br /><br />** out of 4<br /><br />Roving Reviewer - www.geocities.com/paul_johnr\r\n1\t\"This film is to my mind the weakest film in the original Star Wars trilogy, for a variety of reasons. However it emerges at the end of the day a winner, despite all its flaws. It's still a very good film, even if a lot of its quality depends on the characters that have been built up in the superior 2 installments.<br /><br />One problem here is the look of the film, which isn't very consistent with the other 2 films. I put a lot of that down to the departure of producer Gary Kurtz. The first 2 films have that dirty, lived-in look with all the technology and so forth. In \"\"Jedi\"\" on the other hand even the rebels look like they just stepped out of a shower and had their uniforms dry cleaned. This makes for a much less textured film. Also the creatures were excessively muppet-like and cutesy. At this point it seems like the film-makers were more concerned with creating the templates for future action figures than with the quality of the film itself.<br /><br />Another aspect is its lack of originality. Where \"\"Star Wars\"\" created a whole new experience in cinema and \"\"Empire\"\" brought us to alien worlds of swamps, ice, and clouds, \"\"Jedi\"\" lamely re-cycled the locations of the first film. First we are back on the desert planet Tatooine, and then we are watching them face ANOTHER death star (maybe the emperor couldn't think of anything new... but you'd think Lucas or Kasdan could). Also we have these ewoks, who really are just detestable made-for-mattel teddy bears, in a recycled version of what was supposed to be the big wookie-fight at the end of \"\"Star Wars\"\" if they hadn't run out of cash. It just feels like lazy construction.<br /><br />The most unfortunate aspect of \"\"Jedi\"\" for me is the weak handling of the Han Solo character. Whereas he is central to the plot of the first 2 films here he is struggling for screen time, trading one liners with the droids. Instead of a real drama we're stuck with the lame pretense that Han is still convinced Leia loves Luke -- as if the conclusion of \"\"Empire\"\" where she confessed her love of him had never happened. The whole thing is very contrived and barely conceals the fact that the Solo character was not part of this film's central story after his rescue. Ford, for his part, looks bored and lacks the style that distinguished his earlier performances. This is more like a 1990s Ford performance, bored and looking \"\"above\"\" the film itself. Fisher for her part is visibly high in some scenes. Lando, an interesting character introduced in \"\"Empire\"\", here is stuck as the ostensible person we care about in the giant space battle. Only Hamill, given an interesting development in the Luke character, is really able to do anything new or interesting with his character. Probably he was the only major actor in the film who still cared about his work. And to be fair the script gives him a lot more to do than the other characters. Really it is his story and the other characters are only there as part of the package. Ian McDiarmid does excellent work as well as the Emperor. The film would sink if he had been too far over the top (as he was at times in the new films).<br /><br />Visually and in terms of effects work, other than the \"\"clean\"\" look of everything it's hard to find fault. Jabba is a very effective animatronic character, one of the most elaborate ever constructed. The space battles towards the end are very impressive.<br /><br />Ultimately this film coasts to success based on the accomplishments of its forebears. But on its own, it is a satisfying piece of entertainment and IMHO far superior to any of Lucas' later productions.\"\r\n1\tDeathtrap gives you a twist at every turn, every single turn, in fact its biggest problem is that there are so many twists that you never really get oriented in the film, and it often doesn't make any sense, although they do usually catch you by surprise. The story is very good, except for the fact that it has so many twists. The screenplay is very good with great dialogue and characters, but you can't catch all the development because of the twists. The performances particularly by Caine are amazing. The direction is very good, Sidney Lumet can direct. The visual effects are fair, but than again most are actually in a play and are fake. Twists way to much, but still works and is worth watching.\r\n1\t\"Of those comments here before mine, I mostly agree with Edyarb's. The story and the script apparently had potential to be funny, but though managing at some points, in other places it failed. You could see them wanting to make a joke, but no one in the audience laughed. (Also agree with Edyarb's view on the end credits: leave it normal or make it cool, but not what they've done now.) <br /><br />OK, that gives a more negative feeling than what I actually had watching the movie. I enjoyed it; it was pleasant entertainment for a night and definitely didn't feel like a waste of money to get the ticket. The best jokes are the ones that go a little bit outside of the expected and are fairly mature, like Luke Wilson's character Matt asking the super chick \"\"P*nis or bed?\"\" when she told him she'd \"\"get him a new one\"\" after a wild night in bed, ending up breaking the bed and leaving Matt sore.<br /><br />I cannot, however, agree with bgs1614,who says that the film could earn an 'R' rating - there was absolutely nothing in the film to justify that. Some sexual acts yes, but nothing explicit, only humorous, and no nudity whatsoever. (Maybe he was at a prescreening that showed more...?) I'd like to compare this to two recent films I went to see with no expectations whatsoever: Superman Returns and Click. I didn't really expect anything from either one - I was a big fan of the original Superman films and the trailer for Click only showed it as a potentially chauvinistic (which I wouldn't oppose) film. Superman surprised me with actually having me feel good(goosebumps!) about seeing his first heroic deed, like seeing a long lost friend and feeling happy about it. But for the rest of the story I'd rather watch My Super Ex-girlfriend, at least it offers some surprises. Click again was a TOTAL surprise, much better and deeper than the trailer and about five minutes away from being a really excellent movie. The jokes also work much better than in Ex-girlfriend, both the naughty ones and the more advanced ones.<br /><br />Anyway, the only reason I compared these three films is that they are the three last ones I've seen, within a very short period, and also because I went to all of these with basically no expectations at all. I'd rank them Click, Girlfriend, Superman.\"\r\n1\tThis was a very good film. I didn't go into it with very high expectations and was pleasantly surprised by the acting, the script, and the scenery. Miranda Richardson was fantastic and so was Joan Plowright. They stole the show. But the other actors played their parts wonderfully also. Very enjoyable film.\r\n1\t\"I checked this out as an impulse when browsing through the movie store and couldn't have been any more pleasantly surprised! My mom and I watched this film together, and we thoroughly enjoyed it. It isn't the typical \"\"chick-flick\"\" with a sappy love story and tears all the way through, but it definitely touches a nerve in the twist at the end. It's an ending where, although unexpected and tragic, the movie's overall effect is not harmed by it. I think Reese Witherspoon was a great actress even in this film, her debut, and this is definitely worth watching! I didn't recognize many of the supporting actors, but they all play their important supporting roles well. \"\"The Man in the Moon\"\" is such an believable story about a young teenager falling in love for the first time. Most women can definitely relate to everything-from Witherspoon's words, her subtle glances, and her not so subtle emotions (raging like the typical teenage girl). While she's playing a character confused about love, she does not come across as silly and immature, which was much appreciated considering many movies today.\"\r\n0\t\"In this day and age of incredible special movie effects, this one was a sore disappointment. The actors seemed stiff and uninspired, as was the dialogue. Westerns are not common fare for Hollywood so much these days, but movies like \"\"Silverado\"\" prove that somebody out there still knows how to make a good one. Considering that, it is hard to conceive that anyone would go to any expense at all in releasing, much less creating such a weak film as this one. If you love and are looking for a good western, keep looking!\"\r\n0\tThis is, quite literally, the worst movie I have ever watched in my life. It may be the worst movie possible. Some movies are so bad that they're good; this movie is so bad that it goes past enjoyable camp and simply becomes unwatchably awful. It is the anti-enantiodromia. We bought it with the intent to heckle, and all of my family gathered around for a fun evening of clever remarks; instead, we sat in stunned silence, pitying poor Peter Sellers.<br /><br />This is worse than the animated Lord of the Rings. It is worse than the Matrix sequels. It is worse than Krull. It is worse than any Batman movie.<br /><br />Do not, under any circumstances, let this movie approach within ten feet of your television.\r\n1\tI realize that alot of people hate this movie, but i must admit that it is one of my favorites. I happen to like it better then its predeccesor and happy to like it better than alot of movies.<br /><br />First off, I think that people never give the story any credit, much like Back to the Future, Time Travel is hard to write, and in this movie they included Time Travel and a Spiritual Journey.<br /><br />I also feel that Keanu and Alex were on there best performances in this movie, they looked cooler, acted cooler, and said cooler things.<br /><br />The set design of this movie is awsome as well, The sets are quite detailed and massive at times and it can be hard to believe that these sets were made for a movie about two teenage buds who can hardly spell...but isnt that the genius of the whole franchise, making these two idiots bigger than life characters that are responsible for the entire utopian future of earth.<br /><br />The costume design was awsome as well. Bill and Ted actually look cool in Bogus Journey, where as in Excellent Adventure they look rather like, well as they would put it, FAGS!!!<br /><br />Even the music in this movie is awsome, the score especially. There so much i could say about this film, cause i love it. But this is one of those movies i grew up watching and everytime i did i liked it more, so i can understand why people hate or just think its Bogus compared to Excellent adventure (which i also love by the way).<br /><br />GET DOWN WITH YOUR BAD SELF!!!!\r\n0\tThrow this lame dog a bone. Sooo bad...you may watch anyway. Kol(Ross Hagen)is an intergalactic bad guy that escapes being vaporised by an over zealous spaceship commander(Jan-Michael Vincent). Kol manages to steal a shuttle that crash lands on Earth. An unstoppable android killer is sent to bring back the villain dead or alive. John Phillip Law plays a forest/park ranger that urges caution in dealing with these two visitors from far, far away. Costumes are outrageous and the script is lacking intelligence. Vincent surely took the money and ran. Law shows the only sign of effort.So bad it is almost comical. Also in the cast: Dyana Ortelli, P.J. Soles and Dawn Wildsmith.\r\n0\t\"One could wish that an idea as good as the \"\"invisible man\"\" would work better and be more carefully handled in the age of fantastic special effects, but this is not the case. The story, the characters and, finally the entire last 20 minutes of the film are about as fresh as a mad-scientist flick from the early 50's. There are some great moments, mostly due to the amazing special effects and to the very idea of an invisible man stalking the streets. But alas, soon we're back in the cramped confinement of the underground lab, which means that the rest of the film is not only predictable, but schematic.<br /><br />There has been a great many remakes of old films or TV shows over the past 10 years, and some of them have their charms. But it's becoming clearer and clearer for each film that the idea of putting ol' classics under the noses of eager madmen like Verhoeven (who does have his moments) is a very bad one. It is obvious that the money is the key issue here: the time and energy put into the script is nowhere near enough, and as a result, \"\"Hollow Man\"\" is seriously undermined with clichés, sappy characters, predictability and lack of any depth whatsoever.<br /><br />However, the one thing that actually impressed me, beside the special effects, was the swearing. When making this kind of film, modern producers are very keen on allowing kids to see them. Therefore, the language (and, sometimes, the violence and sex) is very toned down. When the whole world blows up, the good guys go \"\"Oh darn!\"\" and \"\"Oh my God\"\". \"\"Hollow Man\"\" gratefully discards that kind of hypocrisy and the characters are at liberty to say what comes most natural to them. I'm not saying that the most natural response to something gone wrong is to swear - but it makes it more believable if SOMEONE actually swears. I think we can thank Verhoeven for that.\"\r\n0\t\"This is the first time I have commented on a film because I felt that if the right person read it, they might wake up and do something about it. Over the last few months, ABC Family began airing a new format of movies. I have seen the last three and enjoyed them. They were engaging and did the trick. My wife likes these films. I was looking forward to viewing \"\"See Jane Date\"\". The trailers looked and sounded great. Unfortunately, this is one film where the book must be light years ahead of the effort displayed by the writers and music people involved with this project. The year is 2003, the source (all bad), the score was as interesting as an elevator ride in a department store. It was intrusive and did not add any emotional content to the film at all. It worked against it. I work in the business of film and television . I enjoy being entertained. This is one instance where I kept thinking could it get any worse. The script had lines from another decade and I know these women can act but you wouldn't know it from this movie. To add to the overall experience, the end left me shaking my head. An advice to the executives at Disney, ABC , ABC Family and the producers: Under any circumstances please do not hire the composer or music supervisor to do any of your future films. They have lost their touch and they need to understand what the word \"\"contemporary\"\" , \"\"present day\"\" and \"\"current\"\" means when describing a romantic comedy. There is a world passing you by. All in all a huge disappointment from folks at Von Zerneck-Sertner and ABC Family.\"\r\n1\t\"Just saw this tonight at a seminar on digital projection (shot on 35mm, and first feature film fully scanned in 6k mastered in 4k, and projected with 2k projector at ETC/USC theater in Hwd)..so much for tech stuff. 18 directors (including Alexander Payne, Wes Cravens, Joel and Ethan Coen, Gus Van Sant, Walter Salles and Gerard Depardieu, among several good French/ international directors) were each given 5 minutes to make a love story. They come in all shapes and forms, with known actors(Elijah Wood, Natalie Portman, Steve Buscemi ..totally hilarious..., Maggie Glyllenhall, Nick Nolte, Geena Rowlands ..soo good..and she actually wrote the piece she was in, Msr Depardieu and many good international actors as well. The stories vary from all out romance to quirky comedy to Alex Payne's touching study of a woman discovering herself to Van Sant and one of those things that happens anywhere..maybe? Nothing really off putting by having French spoken in most sequences (with English subtitles) and a small amount of actual English spoken, though that will probably relegate it to art houses (a la Diva.) Also only one piece that might be considered \"\"experimental\"\" but colorful and funny as well, the rest simple studies of sometimes complex relationships. All easy to follow (unless the \"\"experimental\"\" one irritates your desire for a formulaic story. Several brought up some emotions for me...I admit I am affected by love in cinema...when it is presented in something other than sentimentality. I even laughed at a mime piece, like no other I have seen (thank you for that!) The film hit its peak, for me, somewhere around a little more than half way through, then the last two sequences picked up again. Some beautiful shots of Paris at night, lush romantic kind of music, usually used to good effect, not just schmaltz for \"\"emotions\"\" in sound, generally good cinematography, though some shots seemed soft focus when it couldn't have meant to have been (main character in shot/scene). Pacing of each film was good, and overall structure, though a bit long (they left out two of what was to be 20 films, but said all would be on the DVD) seemed to vary between tones of the films to keep a good balance. Not sure when it comes out, but a good study of how to make a 5 min film work..and sometimes, what doesn't work (if it covers too much time, emotionally, for a short film.) Should be in region one when released, but they didn't know when.\"\r\n0\tThe premise of an African-American female Scrooge in the modern, struggling city was inspired, but nothing else in this film is. Here, Ms. Scrooge is a miserly banker who takes advantage of the employees and customers in the largely poor and black neighborhood it inhabits. There is no doubt about the good intentions of the people involved. Part of the problem is that story's roots don't translate well into the urban setting of this film, and the script fails to make the update work. Also, the constant message about sharing and giving is repeated so endlessly, the audience becomes tired of it well before the movie reaches its familiar end. This is a message film that doesn't know when to quit. In the title role, the talented Cicely Tyson gives an overly uptight performance, and at times lines are difficult to understand. The Charles Dickens novel has been adapted so many times, it's a struggle to adapt it in a way that makes it fresh and relevant, in spite of its very relevant message.\r\n1\tHolly addresses the issue of child sexploitation that is rampant all over the world (some 2 million children are trafficked every year) and does so sensitively and without manipulation--a tall order that the team at Priority Films does with great success. American actor Ron Livington stars in the film alongside newcomer Thuy Nguyen, a Vietnamese actress who plays Holly, and together they bring to screen what is commonplace to the people at the notorious k11 redlight district in Cambodia. Although it tackles a heavy topic, the film holds on to moments of laughter and hope as we get to know the characters up close, keeping the two-hour film from being one that is too difficult to watch. I am glad a film like this is bringing the world's attention to the problem. Child prostitution needs to be stopped and this is a very good first step. It's GREAT and a film EVERYONE must see.\r\n0\tThis movie will be a hit with those that enjoy sophomoronic, mindless, explicit bragging about sexual exploits and F... in almost every sentence. Like a good plot? Like comedy? Like romance or other human values? Stay away from Whipped. It was so bad I left after about half an hour. I saw two kids slip in that looked to be about 10 -- very harmful -- this deserves an X.\r\n1\t\"As a child I always hated being forced to sit through musicals. I never understood why people would break out into song like that, and I was far too young to appreciate the artistry (choreography, set design, costumes, pacing) behind it all. Carol Reed's \"\"Oliver!\"\" was the one musical I remember oddly enjoying as a child, probably because it is one of the darker ones and is appropriately drenched in the spirit of Dickensian squalor. This is a musical about ghetto life in Victorian London, and while the scenery and set designs are stark, dark, and true to that way of life, it is flat out bizarre for people to be breaking out into such ridiculous songs amidst their misery. Upon a recent viewing, my first since childhood, I have some new thoughts and insights into why this musical \"\"works\"\" in that bizarre breaking out into song kind of way, and why most just don't do it for me.<br /><br />When musicals work or really say something, it is because they realize their own inherent strangeness. Lars von Trier's \"\"Dancer in the Dark\"\" as tragic and operatic and over reaching as it was, worked as a musical because the musical numbers were the products of the imagination of the protagonist, an immigrant obsessed with Hollywood musicals. Likewise, the very cynical and enjoyable \"\"Chicago\"\" worked on a similar level because the musical numbers were the products of a homicidal ingenue singer/dancer. Musicals don't work when they take their own musical-nature too seriously (like in \"\"Moulin Rouge\"\") or are simply too much fluff about nothing (i.e. something pointless like \"\"Mary Poppins\"\"). Upon viewing \"\"Oliver!\"\" for the first time as an adult, I saw it in a new light. Told mostly from the point of view young Oliver, I saw the musical numbers as the products of his childhood imagination and his way of coping with the horrors of ghetto life around him. The best musical number was probably when Nancy got everyone in the tavern signing and dancing about the joys of getting drunk (as a cover to help poor Oliver escape the clutches of the evil Bill Sykes). It was undeniably catchy and sounded like a real pub tune that drunks might start singing around a piano. There are other great and classic tunes to be heard here, and the direction and acting from the leads to the dancing extras are all top notch.<br /><br />Still, for all its bleakness (although it does have a happy ending for Oliver at least, though certainly things didn't end happily for Nancy, and unless you think a life on the streets being a pick-pocket is fun, it wasn't a necessarily a good ending for Fagin or the Dodger, despite their peppy closing tune) I wouldn't really classify this as a family film, though I don't think showing it to kids over the age of seven or eight will do any harm. This is a harsh tale about an unfortunate orphan trying to survive on the streets and find some happiness. I think it would be very interesting to see a modern update on this some how, perhaps a revisionist take on it, where people on the streets of Compton break into happy songs about their horrible lives. I'd like to see a hard-edged hip-hop version of \"\"Oliver!\"\". I always thought Dickens would translate well in those regards. As it stands, \"\"Oliver!\"\" was probably the last of the great film musicals and maybe the strangest G-rated film I've ever seen.\"\r\n1\t\"First, I did like this film. It was well acted by all.<br /><br />However, I don't understand comments I hear from people about a surprise ending. I knew nothing about this movie going in except a few \"\"gotta-see\"\" recommendations, but I knew where the plot was going in under ten minutes. (I won't mention what clued me in so as not to spoil a good film for others.) Still, despite it seeming obvious, I kept watching. It was nice to see how everything played out, filling in the details and the character motivations in later scenes.<br /><br />I don't hate it when I guess the ending early in a film. I only hate it when the road to resolution is lined with boring scenery.<br /><br />Will Smith's screen persona is just likable, even when he's playing such a troubled character. He's energetic and believable in everything that I've seen him do. Seven Pounds is another fine performance.<br /><br />Rosario Dawson is a solid performer, portraying a quirky, rather upbeat character despite a terminal heart condition. Beauty is in the eye of the beholder, and with Rosario, if you don't find her gorgeous, you should think about replacing your eyes.<br /><br />It was nice to see Woody Harrelson back on the screen. I haven't seen him much lately, but that could just be me. Woody didn't have a tremendous amount of screen time, but he sold his jolly, piano-playing, blind man character for all it was worth. Excellent.<br /><br />A cursory bit of research on the box jellyfish tells me that its venom is cardiotoxic, neurotoxic and dermatonecrotic. I would think this makes it a questionable choice for both pet and plot.<br /><br />Overall, I have to recommend this film not for the plotting, but for some very good performances, and for the fact that it tends to evoke some of the tragic emotions that we generally try to avoid.\"\r\n0\t\"This ranks way up there on my top list of worst movies I've seen so far on Starz on Demand. They seem to pick up every straight to DVD crap-fest they can find and put it on here.<br /><br />Why? Who knows! Apparently anyone with a digital camera and a shoestring budget can come up with a horror movie and get it put on TV. To be honest, this looked terrible from the moment I saw the trailer--but I did give it a real chance.<br /><br />I always try to have an open mind about low-budget movies. Some of the best movies I've ever seen were films that worked around their low budget or in other cases only required that low budget to be great.<br /><br />This is not one of those movies.<br /><br />You know the plot by now, I'm sure, if you're reading this. Either you heard about it on Starz on Demand or for whatever reason you ended up on this page out of boredom. It's about a pathetic and whiny girl we get to know for all of 3 minutes in an incredibly bad \"\"heavy metal\"\" music video. Whoever put it together must have thought it looked really interesting, but it really, really doesn't. Anyway, she kills herself. Then she possesses someone. Then some killing starts. It's really unmemorable and as completely average and boring as possible. When the first gunshot goes off in her apartment it quite seriously sounds like a piece of popcorn popping. Was that the best sound effect they could come up with? I could find a better sound effect to use for free, (with no copyright,) on the internet... right. now.<br /><br />Don't let the other reviews claiming this is a 10 star movie fool you. They are obviously either distributors of the film or maybe even the director trying to con you into thinking this piece of junk is worth buying.<br /><br />Laughable.\"\r\n0\t<br /><br />The main question I pose concerning this film is, how do you film a cole porter musical and only use 3 of his 15 songs! merman and lahr played the lead roles on broadway, here they are replaced by the weaker red skelton and lucille ball. plot changes abound and the fun is lost.<br /><br />SKIP IT.\r\n0\tWorst movie, (with the best reviews given it) I've ever seen. Over the top dialog, acting, and direction. more slasher flick than thriller.With all the great reviews this movie got I'm appalled that it turned out so silly. shame on you martin scorsese\r\n0\t\"One wonders why this picture was made at all : the plot as such is totally unbelievable if not ridiculous, the characters (experienced loner cop versus younger one, quite fascinated) quite predictable, the ending totally murky and impossible to understand (maybe after several viewings but you'd have to have a masochistic tendency for that ; the idea being you have to read the book to understand fully what it's all about)and the acting is bad. Was the basic idea to show that French film makers are able to do as well as Americans in the genre that include \"\"Seven\"\" and \"\"Silence of the lambs\"\" ? If so, it is a total failure. It was quite a success though (and has a sort of cult-status as the first French serial killer film)and, it seems, considered as a good product to export. Strange.\"\r\n0\t\"SPOILERS THROUGHOUT!!!!<br /><br />I had read the book \"\"1st to die\"\" and wanted to see if the movie followed the book so I watched it. For the most part it did. There were some MINOR differences(location of the last violent scene for instance) but not many and for the most part the movie stayed true to the book more so then most movies.<br /><br />This may have been a mistake-although the movie was perfectly cast-with Pollen and Bellows especially-I was not that impressed with the book. Or let me take that back. I started off very impressed, gradually became more disillusioned and by the end was left completely unsatisfied and felt almost gypped. No difference with The movie. Here is why.<br /><br />There is no \"\"payoff\"\" in the book, or the movie. Rarely have I read a who done it thriller that has created such a letdown with it's final resolution and I had hoped the movie would vary a little.<br /><br />The whole-(he did it, NO she did it, NO they BOTH did it)-was not interesting, not fascinating and more confusing, annoying and depressing then anything else. Add to that, that the love of Lindsay's life dies at the end(after HER disease cleares and she cries at his grave).. and then cut to where she's contemplating suicide....then all of a sudden she's in a fight for her life with the REAL villain who was cleared after being arrested.. but it turns out he and the wife were in it together....HELLO!!! This whole thing has now become \"\"GENERAL HOSPITAL\"\" instead of a good old fashioned thriller. I felt cheated and ripped off by the book and watching the movie(I must admit it held my attention nicely -the acting was very good for a TV movie)was hoping it wouldn't follow the book which it wound up doing.<br /><br />I still think the movie is watchable and for some reason does not leave as bad a taste in your mouth as the book(or maybe it's just that I knew what would happen)But I have to say the way this story unraveled was not well done at all.\"\r\n0\t\"THE DECOY is one of those independent productions, made by obvious newcomers, but it doesn't have all the usual flaws that sink most such films. It has a definite story, it has adequate acting, the photography is very good, the hero and the bad guy are both formidable men, and the background music isn't overdone. This is a DVD New Release, so people will be looking here to see if it's worthwhile. I don't know where all the 10's come from, as there's no way this film is that good --- even if you're the filmmaker's mother. <br /><br />The last film we saw at a theater was Warner's trashing of J K Rawlings much-loved and excellent book, Order of the Phoenix. In comparing THE DECOY with PHOENIX, consider that PHOENIX (as made by Warners) had no story, certainly no acting was allowed by the director, the photography was dreadful, and the wall-of-sound overbearing musical score was just a mess. I rated Phoenix a \"\"1\"\" because the scale doesn't go any lower. THE DECOY is 4 times better -- in all regards.<br /><br />If you have the opportunity, give THE DECOY a chance. Remember, this isn't \"\"Decoy 3 -- the Shootout\"\" or any such nonsense. It's original. If your expectations aren't overblown by the foolish \"\"10\"\" scores here, you might just enjoy the film on its own terms.\"\r\n0\tThis is the single worst movie I have ever seen. Let me say that again: THIS IS THE SINGLE WORST MOVIE I HAVE EVER SEEN.<br /><br />It had all of the ear-marks of a bad movie: continuity errors, bad writing, bad acting, bad production value, bad music. I thought that there were a couple points to horror movies. The first is that it is supposed to be suspenseful enough to scare you. This movie gets and F in this category. The second point is that when a character dies, or something bad happens to them, we are supposed to care. This movie gets an F in this regard as well. <br /><br />The first story, a woman gets mauled by wolves after being afraid that this would happen to her. The next story, an OCD guy dies from not being careful and talks to a dead friend of his. Oh, and then there is the horrific, nail-biting story of a bad roommate. Come on, could you pick topics a little more interesting and a little less common than being alone in a house, being anal-retentive, and having a roommate? Turns out all of these stories where hallucinations, virtual reality induced by a Doctor who in turn uses it himself. Wow, stupid.<br /><br />Let me explain something, I enjoy watching bad horror movies and laughing at how bad they are. I couldn't do that with this one. It was utter pain to sit and watch. Do not under any circumstance watch this movie. You WILL regret it.\r\n0\tThis is a movie about how men think women think about love. No woman describes a one-night sexual encounter and declares it a love story.<br /><br />Of the ten monologues I felt only three really had any kind of truth ring through them. I kept waiting for the film to get better, and it did a bit, but never better enough.<br /><br />This is an interesting concept, and I kept wanting it to be good, but it never succeeded. Maybe if they actually WERE love stories it would have worked.\r\n1\tI really liked this movie. I have seen several Gene Kelly flicks and this is one of his best. I would actually put it above his more famous American in Paris. Sometimes it seems the story gets lost in Gene Kelly movies to the wonderful dance and song numbers, but not in this movie. It is definitely worth renting.\r\n0\t\"In its way, Mister Foe (originally, and more appropriately, titled Hallam Foe  I can't see addressing its title character as \"\"mister\"\"), is a tribute to good acting. Both Jamie Bell, as Hallam, a physically attractive voyeur/creep, and Sophia Myles, as Kate, his kinky partner in sex and fantasy romance, are convincing. The problem comes when you try to connect their roles to anything that happens in real life. A young man who spies on the intimate details of people's lives the way Hallam does would be deservedly beaten to a pulp. And a woman in Kate's situation would be repulsed and frightened - she would probably call the police.<br /><br />These things are not, however, what happens in the movie. Poor Hallam's mother has died and his father married a woman with whom he's been having an affair. Hallam, of course, hates his stepmother and lets he know it. She has sex with him. Kate's some kind of an employment person who places Hallam in a dish washing job and plays sexual games. She looks like his birth mother. It all ends happily with Hallam \"\"resolving\"\" his \"\"issues\"\".<br /><br />Forty some years ago, the play and brilliantly acted movie, Who's Afraid of Virginia Woolf, had a similarly optimistic ending, with characters becoming wiser and better after tearing each other apart. The trouble is, it doesn't always work that way, especially when nobody really cares. In Virginia Woolf, the ending's plausible because of the intensity of the emotional revelation. In Mister Foe, the emotional revelation never really happens.\"\r\n0\t\"I am wanting to make a \"\"Holmes with Doors\"\" pun but I can't quite string it all together. Suitably grubby and over edited WONDERLAND gives Kilmer a role that channels Morrison at the same time....but how coy is this film about the famous 14 inches! Australian crime films flash it all the time and skip the graphic violence instead.....as someone famous said once about US cinema double standards: \"\"kiss a breast and it's an X, stab it and its an action PG 13\"\"... WONDERLAND is 14 minutes too long too, and at the end the tawdry spiral we were all glad to escape the cinema. How many films called WONDERLAND are we going to get? There must be six in the last decade. The pixilated violence and muted color sets the seedy tone but the wobble-cam gets tiresome, as if we are gawking at their nostrils all the time. Taking a few cues form THE DOORS and TAXI DRIVER it all becomes forgettable the next day.\"\r\n0\tI joined this site to see what comments people would make about this absolute disaster of a film. I wasn't drawn in for even a second. The characters were all one-dimensional. They threw every topic they could think of hoping something would stick. I would bet (and hope) that everyone involved in Teachers looks back with embarrassment. There are some great actors here but you would never know it. Thank God it didn't destroy Morgan Freeman's or Judd Hirsh's or Nick Nolte's or Laura Dern's careers. There was no vision, no labor of love here, only a horrible effort gone wrong. BTW I don't think the writer ever set foot in a real school.\r\n1\tTwo thirds of nearly 2,000 IMDb users who have voted on this film have rated it at 8, 9 or 10 and one user reports wearing out six videotapes (Was this a record, or merely a faulty VCR?). Although the film is primarily intended as a period piece it clearly has a quite unusual fascination. But for some reason I imagined it as largely whimsy and until recently never felt the urge to watch it. My mind was changed by Elizbeth Von Arnim's original book. My wife loves reading but her sight no longer allows her to read much so she borrowed it in talking book form. Such books are usually irritating to a companion who is busy with other things, but I gradually came to appreciate that this one was seductively soothing, although in no way syrupy, and was also very well written. I realised my wife would enjoy watching the film, and so decided to buy her the videotape. I am now very glad that I did, and would certainly recommend its purchase to anyone else who appreciates a quiet reflective work with no fireworks but with well constructed character development and a very successful pre-Mussolini Italian atmosphere. The story is set in the immediate post WW1 period and starts with two married London ladies who decide to pool their savings and enjoy a holiday together, away from their families, in a rented villa in Italy. Force of circumstances lead to this couple being joined by two others with very different characters and backgrounds. Its theme is essentially no more than the interactions that take place as their holiday progresses, not only between these four very disparate mature ladies, but also with the occasional male visitor. If you want action, thrills, dramatic sex scenes, natural or man-made disasters, or Harlequin style romances this would not be the film for you. But IMDb users have collectively and very emphatically demonstrated that none of these are necessary for a film to prove highly rewarding to watch, and if you care to give it a try you may, as I did, come to rank it among your much loved films.<br /><br />It is fairly rare for me to watch a film of a book with which I am already familiar. In many cases I find this takes some of the pleasure away from watching the film, but here there is such a strong visual appeal in the setting that I actually found my pleasure augmented by the anticipation of seeing the next segment of the book, effectively unrolled before my eyes. (Perhaps Italy itself has some part in this, the last time I had this experience was when I was watching tales from Boccaccio's Decameron on TV.) Generally films of books tend to increase the dramatic level of the original work to ensure that the filmed version has an even wider appeal, but here if anything it is reduced in order to keep the viewers attention on the gradual character development rather than on any background events. This works very well, although changes from the book are few and basically the film remains true to the original story. Great credit is due to the Director, Mike Newell, and all members of the cast, particularly those well known British Actresses who play the four principal ladies.\r\n0\tThis was one of the worst movies EVER!!!!!!!! It was so bad, I was laughing through the WHOLE movie! The plot was SO cheesy; especially the end. This movie turns from an end-of-the-world-disaster to save-the-eels! I mean, c'mon! And I swear...I think they use SOCK PUPPETS for the eels! And there was this horrible kiss scene in the middle with the two main characters who happened to be divorced. How predictable! It was SO terrible that my mom, my sister, and I couldn't finish it, and when we DID finish it, it was about a year later! The second time we watched it and we finished it this time, we did MST3K-like comments throughout the movie.<br /><br />Summary: Only watch this if you're a movie basher! Make hilarious comments, watch this at a sleepover for laughs, and I mean HUGE laughs. Also watch for mockery. The metaphor that explains this movie: This movie is a very shallow field full of cheese and sock puppets!\r\n1\tJust kidding, I rented 12 Monkeys the other day because I am a huge Bruce Willis fan and I heard some things about the film. Some good and some bad, but it was one of those films you had to pay attention to every second, so I was a bit worried. Just because I felt like for a minute if this was going to be one of those films that I had to watch several times to get. But I watched it last night and I was really impressed, this movie had everything in it: action, drama, sci-fi, history, dark humor, and even a little romance. The actors all did a terrific job, I give a lot of credit to Bruce, during his scene in the car with his psychiatrist, he really got to me. But Brad Pitt, I'm just amazed with how much of a great job he did. He didn't over do his character, who was crazy, and just made it work and was extremely believable. The story was just scary, but very good and a wake up call.<br /><br />James Cole is a man in the future where a virus broke out in the past and killed 5 billion people and only 1% of the population survived including him. Animals are now ruling the ground above while the humans are down below, but scientists send James to the past of 1990(really meaning to send him to '96), to find out about information of the virus. James gets put into a mental institution meeting his new psychiatrist, Dr. Kathryn Raily and another mental patient, Jeffrey Goines. He tells them the future, of course no one believes him, he goes back to the future. But the scientists send him back to the correct year to where the doctor is kidnapped by James, but he tells her more, and believes him. Now they are set on trying to prevent the virus from ever happening.<br /><br />12 Monkeys was an incredible film. Like I said the story was so scary just because it's not at all hard to believe that we are not far from that happening. But the whole movie was just great, the cast, the sets, just the whole picture was a great one. It had a Terminator type of feel to it where we might loose something precious one day, ourselves if we don't listen to others. What is right and what is wrong? Who knows? But I would highly recommend 12 Monkeys, it's a great movie that if you give it the proper chance, I'm sure you'll enjoy it.<br /><br />9/10\r\n0\tSuffice it to say that this substandard B has nothing to save it - not an interesting plot or even one tolerably decent actor. Josh Leonard of Blair Witch fame does little to help matters. Do yourself a favor and leave this one on the shelf at your local video store.\r\n0\t\"This is an installment in the notorious Guinea Pig series. A short lived japanese TV-show, that got cancelled after a psychopath admitted to being inspired in the killing of a young schoolgirl by the show. This short in the series is, like all the other films in the series, practically without any story. A group of guys have captured a young woman. They tie her down and proceeds to torturing her to death while videofilming her. They beat her, pour boiling oil over her, use pliers on her and finally, in \"\"loving\"\" closeup, push a needle through her eye. This is the most straightforward of all the Guinea Pig movies, and one of the first. It was probably this film, more than any of the others, that gave Guinea Pig the rumour of being snuff. They certainly gave inspiration to Nicolas Cage's movie \"\"8 mm.\"\". These movies have gotten quite popular in horror circles. They have progressed to more polished, but equally graphic movies like \"\"Naked Blood\"\". They probably fill the void left by the Mondo movies, that got slightly cleaned up and became reality TV. Not recommended, but will probably allure those who will see anything once, and wonder why afterwards, I know I did.\"\r\n0\t\"The Forest isn't just your everyday standard slasher/backwoods cannibal fare, it also has an interesting mix of supernatural elements as well. The story is about two couples that hike into the forest on a camping trip. A cave dwelling, cannibalistic woodsmen and the ghosts of his dead wife and two children soon terrorize them. There is something you don't see every slasher. Director Don Jones gets an \"\"A\"\" for effort although the film itself falls flat on just about every level, the acting is just simply average except for Jeanette Kelly who plays the dead wife of the woodsman (Michael Brody aka Gary Kent).<br /><br />The film opens with some beautiful shots of a couple hiking through a valley and into a forest. They realize too late that someone is stalking them. They are both dispatched in typical slasher fare. Our killer uses a trusty hunting knife throughout the entire film, except during a flashback when he implements a handsaw, pitchfork and rusty saw blade to dispatch his cheating wife's lover.<br /><br />The Forest has a good story line but the movie just doesn't work along with it I found it pretty boring with simply crappy acting. 4/10\"\r\n0\tThis movie has beautiful scenery. Unfortunately it has no plot. In order to have a plot there must be a conflict. This movie had none. It spent two hours painting a beautifule scene and failed to ever place any activity in it. The picture trys to be artistic but fails to pay attentions to the fundamentals of story telling.<br /><br />If you love Montana scenery and fly fishing you will find some value in this film just don't expect a story. There isn't one.\r\n0\t\"This was a crappy movie, with a whole lotta non-sense and too many loose-ends to count. I only watched this movie because one of my favorite actors (Ron Livingston) made a cameo in it, and I continued watching it because as a girl, I love any movie that includes male nudity for a change. Later, I found myself wondering just how much more ridiculous the storyline could get, and each time it got...more... ridiculous.<br /><br />Sean Crawley (good-looking Chris L. McKenna, whom I've never seen before - but LOVED his little nude scene)is making ends meet as a painter, when he meets electrician Duke Wayne (George Wendt from \"\"Cheers\"\"). Thinking he's getting more work from Duke, Sean agrees to meet contractor Ray Matthews (Daniel Baldwin, playing a stereotypically evil guy). Ray is being investigated by a City Hall accountant (Ron Livingston in a cameo, who I've been in love with from \"\"Office Space\"\" up to \"\"Sex & the City\"\"). Ray end up offering the apparently desperate-for- cash Sean $13k to kill the accountant, and Sean accepts the job. Sean stalks out the accountant, whose wife (Kari Wuhrer) he finds himself attracted to, completes the hit, and leaves - taking the file of information against Ray with him. Sean quickly learns he was being used, that Ray never intended to pay him, and Sean uses the file as leverage to get his money.<br /><br />Up to this point, it's a descent flick...generally worth watching. But as soon as Ray, Duke and their crew kidnap Sean to muscle the information about the file out of him, it just got dumber and dumber (and still DUMBER...), until finally it seemed like the film's writer, Charlie Higson, had snapped out of a 10-day writing hangover and realized he needed to desperately figure out how to wrap up the series of implausible messes he created before a deadline or something. Without simply detailing the movie, let's just say that in every-single-scene you watch after the kidnapping, you find yourself gasping \"\"what the f**K!,\"\" baffled by the ongoing nonsense as Sean follows a fairly graphic and gross path towards redemption. In the end, so many loose-ends are left in the movie, that you begin to regret that you even watched it.<br /><br />This is a movie that you should only watch after it hits cable, and you should have enough beer and friends around to mock the film to it's full value. It's supposed to be a psychological thriller, and McKenna is a decent actor, but it's hard to give yourself to the movie when you have \"\"Norm\"\" from \"\"Cheers\"\" and a Baldwin brother doing the dirty work, and a kidnapping strategy that really makes no damned sense. Guys will love the violence, blood and guts scenes, and the absolutely unnecessary sex scenes and boob shots. Girls will enjoy handsome Sean's gratuitous crotch shot in a mainstream movie, when its almost always the girls that get stripped down in a movie. Personally, I hate that the only actor worth watching for more than his looks (Ron Livingston) is only in the first one-third of the movie.\"\r\n1\tThis film has very tight and well planned dialogue, acting and choreography.<br /><br />Recommended film for anyone who wants to see masterful writing and plot.<br /><br />Question: Does anyone know where the house is actually located? It is one of the most interesting houses, a 19thC windmill.\r\n0\tThe Tooth Fairy is about the ghost of an old deformed witch that lures children to her house to get a prize for their loose tooth and then takes their lives. The first few minutes introduce you to the 1949 beginning of the legend of the tooth fairy and then switches to present day. The worn out horror plot is pretty much saved by the solid acting. They could have done without the Hammond brothers and a few other scenes, but overall the gore scenes were bloody but quick which had a minimizing effect. The eye candy is pretty good for both genders. Camera work is good. Dialog is fair but cheesy. I expected the film to be a bare bones, low budget, slasher with very few redeeming factors. I was surprised by the quality of the film.\r\n1\tI loved this show so much and I'm so incredibly sad its canceled i thought it came back too, but just two stupid weeks. Thats terrible. i hate how we never find out how everyone ends up. it sucks. Bring it back! ABC has stupid shows like Supernanny and whatnot but doesn't give time to good ones like Six Degrees. If they're complaining about ratings it was probably because they had a bad slot because this was truly a good show, something I could relate to and anticipated. JJ Abrams delivered, he's awesome, I wish ABC could just trust him enough to complete the story. I loved the entire cast too. I couldn't wait to see how everyone would someday meet each other at once. Everyone's story is now left incomplete, now I'll never know if Steven and Whitney would get together or Carlos and Mae. I wanted to see what would happen to Laura or Damien and everyone else. This is really such a downer.\r\n0\t\"I saw this at an arty cinema that was also showing \"\"Last Days\"\" and some Charlie Chaplin films. Based on the quality of the other features, I decided to give \"\"Immortel\"\" a chance. I nearly walked out of this movie, and I LIKE science-fiction! The story is set in a futuristic New York city, filled with Blade Runner-style sky advertisements and some similar debates about cloning/synthetic humans. Unfortunately, the screenplay was not condensed enough for an hour-and-forty-five-minute movie. Three groups exist in this world: humans, artificial humans, and Egyptian gods. The artificial humans seem to have the upper hand and control the politics of the city. The humans are slaves and are used for eugenics and organ donation. The Egyptian gods have a floating pyramid (modeled on the Great Pyramid of Khufu, and complete with a deteriorated exterior, leaving a smooth \"\"cap\"\" on the pyramid. Wouldn't a floating futuristic pyramid be in perfect condition?). The pyramid rests above the city and nobody on the ground understands what it is or why it's there. I won't bore you with the so-called plot, but there is lots of unnecessary gore and many gross-out scenes. The film, as I said, looks to have been influenced by Blade Runner, and perhaps also by The Fifth Element and The Matrix. At the end of the film credits were listed thank-yous to the United Kingdom, France, and Italy. The film is FRENCH, but uses British actors who don't speak French. Hence, it is obvious that their French dialog has been dubbed. This is a distraction, and I also thought that switching back and forth between real humans and animations quite distracting. It doesn't help that the animations are poor--no better than a video game. Skip this one.\"\r\n1\t\"The movie Titanic makes it much more then just a \"\"night to remember.\"\" It re writes a tragic history event that will always be talked about and will never been forgotten. Why so criticised? I have no idea. Could/will they ever make a movie like Titanic that is so moving and touching every time you watch it. Could they ever replace such an epic masterpiece. It will be almost impossible.<br /><br />The director no doubt had the major impact on the film. A simple disaster film (boring to watch) converted to an unbelievable romance. Yes I'm not the Romance type either, but that should not bother you, because you will never see a romance like this. Guaranteed! Everything to the amazing effects, to the music, to the sublime acting. <br /><br />The movie creates an amazing visual and a wonderful feeling. Everything looks very real and live. The legend herself \"\"TITANIC\"\" is shown brilliantly in all classes, too looks, too accommodation. The acting was the real effect. Dicaprio and Winslet are simply the best at playing there roles. No one could have done better. They are partly the reason why the film is so great. <br /><br />I guess it's not too much to talk about. The plot is simple, The acting is brilliant, based on a true story, Probably more then half of the consumers that watch the film will share tears, thanks to un imaginable ending which can never be forgotten. Well if you haven't seen this film your missing out on something Hesterical, and a film to idolise for Hollywood. Could it get better? No. Not at all. The most moving film of all time, don't listen to people, see for yourself then you will understand. A landmark. (don't be surprised if you cry too)\"\r\n0\t\"I'd been following this films progress for quite some time so perhaps expected a little too much. I consider both Gillian Anderson and Danny Dyer to be good at what they do and was interested to see what Dan Reed could come up with but unfortunately it just didn't work for me.<br /><br />The problem lies in the fact that the film doesn't really seem to understand which genre it's falling into and as such it fails to impress on drama, horror and thriller elements because rather than focusing on one of them and doing it well it's a bit of a jack of all trades and master of none.<br /><br />The premise (as with most revenge films) is simple, couple meet and go out, something bad happens and they get their revenge it's a simple formula and one that many directors have handled expertly over the years. Unfotunately in this case it's as if Dan Reed thought, \"\"It'd be great to do one of those revenge films that goes a little deeper by showing a more human side to all the characters and delving into their mental state in more detail....\"\" Wrong! There are also a few key elements missing, in this type of movie there's generally some kind of warning. A don't do this or this might happen element which adds to the tension but there's nothing of the sort here. It just simply happens, then nothing happens for an hour, then something interesting happens and then it ends.<br /><br />There's a lot of really stiff competition in this genre and hats of to Dan Reed for trying, I have no issue with his directing abilities but in term of writing... I'd say next time he should stick to the formula for the type of film he's making instead of trying to be too clever and he'll have a quality movie on his hands.\"\r\n0\tAnd a self-admitted one to boot. At one point the doctor's assistant refers to himself as Igor.<br /><br />Working with the increasingly plausible idea that computers could be used to replace or reconstruct brain functions, this movie doesn't spend enough time exploring the premise. Most of the screen time is split between girlfriend-in-a-coma domestic strife and chasing down the brain donor's killer. It attempts to be a sci-fi/drama/thriller but fails to deliver on any of the three.<br /><br />As a Frankenstein remake this one is missing everything that made the original good. Nobody calls the doctor insane or even threatens to kick him out of the hospital. The transformation scene consists of a coma victim opening one eye and the amazing computer that makes it happen isn't even shown. When the experiment works there is no praise, and when it starts going wrong there is little reaction.<br /><br />Any suspense over who the killer might be is shattered by progressively showing him in the same room with all of the possible suspects. Finding the killer is as easy as opening one file and interviewing one person.<br /><br />San Francisco as a setting is both overplayed and underused. The opening sequence hammers home the point that this is happening in SF, a cable car plays a significant role, the leads live in a hilltop Victorian, Pier 39 makes an appearance, and the final showdown happens at Golden Gate Park. More specifically along ten feet of cliff side at the park - just enough to keep the bridge in the picture at all times. Once the obvious scenery bases are rounded no other attempt is made to explore the city.<br /><br />The acting is the only saving grace here. Keir Dullea shows a good range and pulls off a couple of genuinely emotional scenes. Suzanna Love portrays recovery from a coma well. Tony Curtis only gets a handful of lines and twice as many evil guy stares with most of the Frankenscience explained away by his assistant. The little blond kid hits his cues fairly well also.<br /><br />I also gave it one extra star for the scene where the husband drives south from the bridge, it cuts to a U-turn in an unrelated parking lot, and then he's instantly back on the bridge driving north. It takes a whole lot of something - bravery, ignorance, deadlines - to try and slip that one by the viewer during the one single car chase.\r\n0\t\"Me and my girlfriend went to see this movie as a \"\"Premiere Surprise\"\" that is we bought at ticket to the preview to a movie before it opened here in Denmark. We sat through the 1st hour or so and then we left! The point of the movie seemed to be simply to portray the era (and club 54), but it did so at the expence of character development, of which there was none, and plot of which there was little.<br /><br />Seldom have I been so indifferent to the characters in a movie!<br /><br />The music was good though. So if you like to hear some good music and get a fix of that 70ies mood I guess it is OK. But don't expect to get a plot of believable characters.<br /><br />\"\r\n1\tImagine that I was about to miss this great cultural event on Swedish TV last night, and it was only because my girlfriend insisted on keeping the TV on (to make it easier for her to fall asleep!) that I came across it (yes I had seen an advert for it previously but of course forgotten about it and looked forward to an 'early night'...).<br /><br />Anyway - this must surely be a rather unusual idea - to base a film documentary on an interview made with sound only more than 30 years ago. But with animated and other documentary film material it adds up to a really good and insightful portrait of one of the 20th centuries' most appreciated literary artists - Georges Remy a.k.a Hergé.<br /><br />I for sure will read my Tintin albums with a different eye after having seen this film, which makes it easier to connect the variations in style as well as content with the different periods in Hergé's life (and I can tell you that I will a.s.a.p get the few that I don't have). Of course my perception of the albums has changed over the more than 25 years that I have already been reading them, as has my view about what albums are my favourites, but this adds (at least) one more dimension to them.\r\n1\tThe comic banter between William Powell and Jean Arthur is the highlight of this murder mystery, which has one of the most bizarre and unlikely plots ever. Powell is probably the most suave detective of the 30's, and Arthur has a unique voice which often sounds like a succession of tiny tinkly bells. They are extremely fun to watch, so take the brashness of the plot with a grain of salt and just enjoy seeing it unfold. Eric Blore also has some comic turns as Powell's butler.<br /><br />Powell's contract with MGM included a clause which allowed him to reject being loaned out to another studio, but he wanted to work again with Arthur and he liked the script, so he eagerly accepted the assignment. They had worked together in two 1929 Paramount films, The Canary Murder Case and The Greene Murder Case, both in the Philo Vance series.\r\n1\tAdorable! I saw Domestic Import in Philly in October with my kids. We all liked it so much that we saw it a second time with my parents. I haven't heard them laugh like that in years! It was the first time that I can remember seeing a movie that my parents and my kids could enjoy. It's really cute and we can't wait for it to come out on DVD. They need to make more movies like Domestic Import. It is refreshing to go to a movie that three different generations can enjoy (and not be embarrassed). I have not seen a movie this cute since My Big Fat Greek Wedding. I loved Mindy Sterling as the mother. She was also in Austin Powers. Howard Hesseman is in this too and he is hilarious. I remember him from WKRP.\r\n1\tThis movie is very cool. If you're a fan of Tsui Hark and Chinese fantasy films, you should love this. This film is the Asian Lord of the rings: A high fantasy story, based in actual Chinese mythology. (I realize many critics have called this film plot-less, I think they probably have zero knowledge of Chinese mythology.) If you liked Stormriders or Warriors of Heaven & Earth, this one should be right up your alley. This film is still very difficult to find in the U.S., even though it was purchased for U.S. distribution along with Crouching Tiger, Hidden Dragon and Iron Monkey. Well worth the search!!! This DVD is also worthy of owning.\r\n1\tI remember seeing this one when I was seven or eight. I must have found the characters round, because they left a impression in my mind that lasted for a long time after the end of the movie. And the ending, now that's sad, well... for a 7-8 year old kid.<br /><br />I had the opportunity of seeing this movie again lately, and found that the plot was too simple, the character, two-dimensional... I guess it's the kind of movie that you can only with the innocence of a young child... Pity...<br /><br />I recommend this one for all you parents with small kids... ( I saw it in its original french version, so I cannot tell you whether the translation is good or not.)\r\n1\t'Loulou' delights in the same way an expensive, high quality French wine does. It leaves you with a very fine aftertaste.<br /><br />'Loulou's theme isn't new. The film doesn't carry an original plot either. Its colored picturing shows fine, but not extraordinary. Its setting is serious. Its elegant styling never and nowhere puts any weight on your mind.<br /><br />Whatever one further may say about 'Loulou', it's beyond doubt that this very French film stands out for its excellent acting. The three leads convincingly reflect all numerous doubts and tenses sparkling between them, making the plot alive. Their acting fully invites you to participate, to make friends.<br /><br />For those around at the time, 'Loulou' also provides an extra bonus: its perfectly captured mood of 1980.\r\n1\tI have seen this film on countless occasions, and thoroughly enjoyed it each time. This is mostly due to the lovely Erika Eleniak- a great actress with incredible looks. Plus, any film starring Tom Berenger and Dennis Hopper is bound to be entertaining.\r\n0\t\"Just saw it yesterday in the Sao Paulo Intl Film Festival. Just before going I came here to see how it was rated, and at that time it was 7.4, a pretty nice rate...<br /><br />After 15 minutes I was dying to get out (never did this), but felt embarrassed to do so as the producer of the movie was in the screening.<br /><br />I did not like at all, the dialogs are shallow and lead nowhere, the characters are shallower than the dialogs, nothing lead anywhere, and the worst and worst: plenty of Siemens and Organics advertising on the movie. Despite the fact that I already paid to go to the movie and entertain myself, I still have to be bombarded by the main character chatting on the internet and Siemens mobile popping-up all the time on her lap-top; or another character having a bath or cutting her hair just to have Organics shampoo displayed enormously on the screen! All of this would be bearable if the plot, characters, romances, anything was good, but was bad, really bad! A \"\"don't know how to do\"\" sex-in-the-city.<br /><br />Don't waste your time or money.\"\r\n0\tI found this on the shelf while housesitting and bored. How can people possibly give this a 10? It's not just that it's supposed to be a feel-good redemption film (I think), because it doesn't work on that level either. Weak plot, bad dialogue, terrible acting; there's just nothing there. Harvey Keitel is decent, but has nothing to work with, and Bridget Fonda and especially Johnathon Schaech are just terrible. The plot progression (especially the relationship between Byron and Ashley) makes no sense. It seems like the writers wanted the plot to go a certain way and made it, without actually writing in the necessary bits to make it flow. It's only an hour and a half, but that's 90 minutes of your life you'll never get back.\r\n1\tGood western filmed in the rocky Arizona wilds. Lots of tough guys throughout; Cobern's character seemed to rock back and forth between a raging psycho and a laid back type. Several holes appeared in the picture, but not enough to offset it being exciting and worth seeing. One really dumb scene shows Heston emptying .45 cases of their powder and collecting it in a sack for the purpose of starting a fire. A. To gather that much gunpowder he would have needed a pack mule to carry the ammo. B. The grass was obviously dry: why not just drop a match on it and let 'er rip?\r\n1\t\"Weak scripts at times? Yep! Cheesy special effects at times? Yep! Deliciously guilty pleasure most of the time? Yep! More about Carl Kolchak and Darren McGavin? Yep! I always enjoyed science fiction as a kid, but found so much of the Dracula/Frankenstein/Mummy/horror stuff as just so much crap. It took Abbott and Costello to give me a new perspective on the classic Universal monsters, and it took Carl Kolchak to win me over to the \"\"dark side\"\" of entertainment. The Duke had Rooster Cogburn, Eastwood had Dirty Harry, Garner had Maverick and Rockford, Selleck had Magnum, and Darren McGavin had Carl Kolchak. Mixed in with all those weak scripts, cheesy special effects, that baroque group of supporting characters and actors and guest stars, there was Darren McGavin as Carl Kolchak. He had a wry sense of humor in spite of the danger, was an idealist in his pursuit of the truth, and a realist when it came to accepting the obligatory incompetence and eventual cover-up by government officials. Additionally, unlike 98% of us, Kolchak was willing to stick his neck out and do what needed to be done, even if it meant his demise, the end of his journalistic career, or jail time. For all his faults, including no taste in clothes, Carl Kolchak was a man of charm and wit who drove a beautiful classic yellow Mustang (which was an old used car at the time) on his way to save the day for humanity. As good as any other fictional hero Carl Kolchak was the everyman hero brought to life every week for one season thanks to Darren McGavin. Now that he's passed on and his show is on DVD, I hope he's having as much fun watching me watch him have fun playing Kolchak The Night Stalker all over again!\"\r\n1\tI was about 11 years old i found out i live 0.48 miles from the uncle house. the uncle house is on Westway Dr, deer park, TX. they have added homes since the movie was made. i don't know the house number but you can go look it up. i am now 21 and i enjoy watching this movie. the bar on Spencer is no longer their. Pasadena ISD wants to build a school their. I drove by the house last week the house still looks great. My dad and uncle would go to the street where the house is and watch the actors come in and out of the house trying to make the movie. where john cross over the railroad cracks they have made 225 higher. when i hear about john loesing his son i start thinking about when he made urban cowboy he was 26 or 25 at the time.\r\n1\tBranagh is one of the few who understands the difference between a film and a play. Hamlet is probably the most faithful adaptation of Shakespeare to a film and yet is a very dynamic film, almost an action thriller. The scene of Hamlet's meeting with his father's ghost won't leave your mind.\r\n1\tIt is a story of Siberian village people from the beginning of 20th century till the 60ties. It is about passion and feelings, about Russian soul, and very romantic. This movie IS NOT action packed, it flowes slowely. In second part one can find great songs - Russian romances. It is much more better than Doctor Zhivago. The director of this movie moved to America and made Runaway Train for example.\r\n1\tI love the movie. It brought me back to the best time of my life. <br /><br />We need that time again, now more than ever. For me it was a time of freedom, learning, and finding myself. I will always miss it. There will never be another time like the 60's, unfortunately.\r\n1\tJUST CAUSE is a flawed but decent film held together by strong performances and some creative (though exceedingly predictable) writing. Sean Connery is an anti-death penalty crusader brought in to save a seemingly innocent young black man (Blair Underwood) from the ultimate penalty. To set things right, Connery ventures to the scene of the crime, where he must contend not only with the passage of time, but a meddling sheriff (Laurence Fishbourne). Twists and turns and role reversals abound -- some surprising, some not -- as the aging crusader attempts to unravel the mystery. The climactic ending is a bit ludicrous, but JUST CAUSE is worth a look on a slow night.\r\n0\tBasically, Cruel Intentions 2 is Cruel Intentions 1, again, only poorly done. The story is exactly the same as the first one (even some of the lines), with only a few exceptions. The cast is more unknown, and definitely less talented. Instead of being seductive and drawing me into watching it, I ended up feeling dirty because it compares to watching a soft-core porn. I'm not sure whether to blame some of the idiotic lines on the actors or the writers...and I always feel bad saying that, because I know how hard it is to do both...but it was basically a two-hour waste of my life. It literally amazes me that some movies get made, and this is no exception...I can't believe they'd make a third one.\r\n0\tBlonde and Blonder was unfunny.Basically, it was a rip-off girl version of Dumb and Dumber, but less funny, and they used too much background noises and music.WAY TOO MUCH BACKGROUND NOISES AND MUSIC IF YOU ASK ME!!!!It starts out immensely boring, and TOTALLY inane.It doesn't pick up pace anywhere soon, and I was feeling more frustrated as this nonsense carried on.Maybe, the only thing that saved me from giving this movie a 1 was the last 30 minutes.I found it somewhat entertaining and interesting as it neared the end, but that was the only part.Also, I couldn't help but like Pamela Anderson and Denise Richard's characters a little.Even though this movie didn't get any laughs from me, it kept my attention.I wouldn't say to completely avoid this movie, but there are thousands of better films for you to spend your time and money on than Blonde and Blonder.\r\n0\t\"I won't describe the story, as that has been done elsewhere. We are great Clive Owen fans, and when our Netflix recommended the movie, we were intrigued. <br /><br />No wonder we had never heard of this \"\"movie\"\", because it was a BBC Television movie back in 1992. Hence, the poor production values, grainy image , jerky camera work and poor sound.<br /><br />But, you don't really mind the mechanics, because the story itself will put you to sleep. It's an interesting human story, but not at all compelling, and there is hardly any ending. You don't really care for the characters as their lives are as boring as your life watching this tedious movie. Save the two hours and do something to make the time more worthwhile.\"\r\n1\tI missed the entire season of the show and started watching it on ABC website during the summer of 2007. I am absolutely crazy about the show. I think the entire cast is excellent. It's one of my favorite show ever. I just checked the ABC program lineup for this Fall and did not see it on the schedule. That is really sad. I hope they will bring it back ... maybe they are waiting until Bridget Moynahan has her baby? Or is it only my wishful thinking? <br /><br />I read some of the comments posted about the show and see so many glowing remarks, similar to mine. I certainly hope that ABC will reconsider its decision or hopefully another station will pick it up.\r\n1\t\"Although the word megalmania is used a lot to describe Gene Kelly, and sometimes his dancing is way too stiff, you have to admit the guy knows how to put on a show. In American In Paris, he choreographs some outstanding numbers, some which stall the plot, but are nonetheless amazing to look at. (Check out Gene Kelly's \"\"Getting Out Of Bed Routine\"\" for starters)<br /><br />Gene Kelly stars as a GI who is based out of Paris, he stayed there to paint, soon he is a rich woman's gigolo, but he really LOVES SOMEONE ELSE! Hoary story sure, but the musical numbers save the show here! I really loved Georges Gu¨¦tary's voice work in this one. His 'Stairway to Paradise' and his duet with Le Gene on 'S Wonderful' is 's marvelous'. Oscar Levant and Leslie Caron I can take or leave. All in all, a pretty good, but not dynamite movie.\"\r\n1\tThis movie blew me away. If you can see only one of the animated bug movies this year see this one instead of Antz. the plot, characters, and jokes are better in A Bugs life. Also when you go stay in your seat until the end of the credits. it's the best part of the movie. Rating 9\r\n0\tWell where do I begin my story?? I went to this movie tonight with a few friends not knowing more than the Actors that were in it, and that it was supposed to be a horror movie.<br /><br />Well I figured out within the first 20 minutes, what a poor decision I had made going out seeing this movie. The Plot was crap, and so was the script. The lines were horrible to the point that people in the audience were laughing hysterically.<br /><br />The cast couldn't have been more plastic looking. Even some of the scenes seemed like they should have been made much quicker...like they dragged on for no particular reason. Very poor editing.<br /><br />All in all this movie was a giant waste of time and money. Boo.\r\n0\t\"For those of us that lived thru those weeks of filming in town and around the Valley - lest we not forget the tedious days of road closures and \"\"film-making\"\". As a reminder to those that live here - locales include Boulder Creek, Bonny Doon, Davenport, Big Basin. etc. The bank was the BC firehouse; chase scenes included Moon Drive off Hwy 236, Empire Grade Rd, and Hwy 1.<br /><br />Production: Jeffrey Jones was the most approachable, Matt Broderick was above us all - even back then. As far as the film goes - a joke of a script and even a bigger laugh regarding acting and plot - but who cares at this level. A nice time capsule for those that enjoy our coast and valley scenery.<br /><br />Additional notes; Joe's Bar (Jed's Tavern in the film), original name of the film was Welcome to Buzzsaw - the Old Erba's parking lot was the town square, the backyard shots were off of Grove Street in Boulder Creek; turn off the thinking cap and see a few actors in their early days.\"\r\n1\t\"Catscratch is the best thing to come out of Nickeloden, including Wayne Knight. This show doesn't just appeal to Maoris and PI's. some people love it, and they're all aussies. At first glimpse I admit it seems a little crude, but it grows enormously on you. Also, to correct something that one of the other critics has said In_Correct (Tv.com) doesn't say \"\"Does that mean you're homo now?\"\" he says \"\"Does that mean you're homo, owww?\"\" This is his phrase in the show. Mr. Blik is, i think,the funniest of all like Peww-Weww's Playhouse<br /><br />Firstly, I'll admit that the early episode were a bit good. But after a while the episodes became great! And just when the series had found it's surreal, whacky ...Nickelodeon cancels it!<br /><br />I know Nick is meant for kids, but every once in a while a brilliant show appears that can be enjoyed by teenagers and adults. These shows include Mr. Bean the Animated Series, Charlie Brown, Pelswick, Rocko's Modern Life (at times), and Invader Zim. All of these must have been considered too good, with the exception of CatDog, 'cause Nick felt the need to cancel them.<br /><br />What I like the famous final episode, where Gordon fight a duck.<br /><br />I'd also like to see a DVD, with plenty of audio-commentaries and behind-the-scenes docos, and including the final episode.<br /><br />But of course, what I'd definitely like to see is the show come back on the air. Wake up NICK!<br /><br />I wish there was a list somewhere on the internet with all the gag closing-credits. That would be great.\"\r\n0\t\"I love horror movies that brings out a real amount of mystery like say \"\"silent hill\"\" ( which i found to be quite good, but still, was missing something ) and movies that keeps you guessing, this i thought was one of those movies. At first the movie starts out with some really good suspense and builds up a good starting point for a good horror scene, but after that it just rolls down the hill and from there it only goes faster and faster down. I mentioned silent hill at first for a reason because i can see a lot of \"\"stolen\"\" themes from that movie in here.. All in all i would say, watch silent hill instead of this one, its better, its more scary, it has a lot more suspense and also the ending is a lot better.. And best of all, you wont feel ripped off as i did with this one.. This just seems to be one of those \"\"i like that movie so I'm gonna re-make it in my own really bad version\"\" kinda movie.. Oh and one more thing... Lordi.. in a horror movie... thats like trying to scare a kid with a care bear who has \"\"hug me and i will love you forever\"\" written on the stomach of it..\"\r\n0\tWhen setting out this film, director Mary Harron seemingly had the goal of clearly documenting the progress of Bettie Page's career, from early modelling days to leaving modelling to go back home after the Senate Hearings on Juvenile Delinquency and her religious rediscovery in the 50s, and so intent is she to get all of these facts on screen in the time allowed she seems to have missed out on taking any time to explain anything in depth.<br /><br />When you think of someone who had Page's career you'd think that there would be plenty to discuss, her reasons, decisions, life event, personal traumas, but Harron avoids any kind of personal exploration of the character. In the first fifteen minutes or so of the film there are brief hints of child abuse, domestic violence and a gang rape, but these are all rushed past and then never referred to again. You get the impression that Harron and Guinevere Turner (co-writer) wanted to gloss over anything that wasn't glamorous and flattering. You go into this film expecting to gain an insight into who the person behind the posters was, but all you are given is a list of things that she did and recreations of some of her most famous photo shoots.<br /><br />All in all the film really frustrates you as you watch, desperately waiting for some extra layer to reveal itself. How did she balance her religion with her job? What made this young Tennessee girl move from modelling into bondage photography. The film simply shows her going to another modelling agency and putting on whatever she's told, but surely it would have involved some shock and deliberation, this was after all the 50s.<br /><br />It seems to me that Harron is trying to make a point about how tame all this is by today's standards (Page never took any photos of explicit sexual actions) and how the reaction some gave this kind of thing was really overzealous And although this is true, she never actually makes it seem sordid in the eyes of others. Today we look at a young girl posing topless and think nothing off it, but we should have got some sort of feeling about how shocking it would have been to a contemporary audience. This woman was a central part of a Senate hearing on Juvenile Delinquency, but no one is ever really shown as shocked.<br /><br />Basically I left this film just thinking how tame it was. Harron and Turner have managed to avoid anything that might be unpleasant to a viewer. They come across as two lifelong fans of Miss Page and are desperate to make sure that nothing, absolutely nothing, could possibly put a bad light on their heroine, and have therefore avoided any in depth probing into who she really was. (Before and after her career there are reports of her violent nature and mental problems) And all that's left is the string of events that made up her career, without any substance whatsoever behind it.\r\n0\tHopelessly inept and dull movie in which the characters stand around in rooms or a rocket ship and talk endlessly. You might think things would perk up when they explore Mars but these scenes are filmed through a heavy red/orange filter which makes everything very murky. The Martian landscape/vegetation consists mainly of drawings and the monsters are entirely unconvincing. There are echoes of 'Bride Of The Monster' when the heroine carefully winds the octopus like tentacle of a flesh eating plant around her before weakly thrashing about, the difference being that the Ed Wood film is a hundred times more entertaining. Better wear earplugs when watching otherwise the 'sci-fi' music score, repeated endlessly, will drive you insane. If you find yourself unable to sleep one night just slip this one into the VCR and your insomnia will be cured in no time.\r\n0\t\"\"\"The Domino Principle\"\" is, without question, one of the worst thrillers ever made. Hardly any sense can be made of the convoluted plot and by the halfway point you'll want to throw your arms up in frustration and scream \"\"I give up!!!\"\"<br /><br />How Gene Hackman and director Stanley Kramer ever got involved in this mess must only be summed up by their paychecks.<br /><br />I hope they spent their money well.\"\r\n0\t\"I just don't see how a Concorde-New Horizons film directed by Jim Wynorski and featuring the acting talents of Andrew Stevens and a puppet could be bad. It just boggles the mind, doesn't it?<br /><br />Well, let's make no mistake about it. \"\"Munchie Strikes Back\"\" is indeed a bad film. Munchie is a puppet who has been around for many centuries. For reasons not fully explained until the end of the film, he is sent to Earth to help a single mother and her son. The mom's problem (her main problem at least) is that she has a balloon payment due on her mortgage in two weeks...to the not-so-tiny tune of $20,000. Ouch. She can't come up with the money because she just got fired. OK...JUST is the key word in that sentence. What the...? Was she planning on paying it off with a single paycheck? Maybe it would've been a good idea to have spent the last several years saving up for it...ya think?<br /><br />Munchie has magical powers similar to those a genie would possess...but there isn't a limit on the number of wishes you can make! Munchie gets the boy a bunch of fancy stuff for one night but then the kid asks for it to be sent back to the mall Munchie was \"\"borrowing\"\" it from. The annoying furball also uses his otherworldly skills to help the boy win a baseball game by means of cheating. A baseball is hit so hard that it orbits the Earth several times. Sadly, those dumb parents watching the game don't think it's at all strange. Hmm.<br /><br />Anyway, I'd like to wrap this up because this has already drained away enough of my lifeforce as it is. You'll be truly moved by the scene where Leslie-Anne Down, playing the mother, kicks a dog which is yapping at her. Your heart will melt at her charm when she notices dollar bills fluttering down on her front yard and she wonders how it could be snowing during the summer. \"\"Munchie Strikes Back\"\"'s credits promised another film to follow entitled, I believe, \"\"Munchie Hangs Ten\"\". To date, the movie viewing public has been robbed of what would surely have been a cinematic tour de force. Heh. 1/10\"\r\n1\tThree horror stories based on members of a transgressive Hindu cult that return home but changed in some way. In the first story our former cult member is now in an insane asylum and is visited by a reported who wants to find out about what went on at the cult. Somewhat slow going as story is told in flashbacks while the two sit on chairs and face each other. Reporter is particularly interested in what lead to the death of the participants. What seemed rather boring suddenly turns very exciting with a surprising twist in the story. Things get quite bloody.<br /><br />Second story has a violent young criminal visiting a psychiatrist for mandatory therapy. The patient seems to have some type of agenda but the psychiatrist is up to the task. Again, things slow down a bit and get weird. Then there's a strange twist in the story that is very well written and surprising.<br /><br />Final story deals with spiritual healer who claims to be able to remove the persons illness from them with his hands. One of the patients is a former cult member, so the successful healing gets more complicated. Again, we are surprised by a twist. Has a pretty gory scene in there.<br /><br />There some nice female full frontal nudity as well as male full frontal nudity for some reason. I found the stories to be very well written and the director succeeds entirely in setting up each story with its surprising twist and the gory aftermath.<br /><br />Note: review of the German DVD.\r\n1\tThe idea ia a very short film with a lot of information. Interesting, entertaining and leaves the viewer wanting more. The producer has produced a short film of excellent quality that cannot be compared to any other short film that I have seen. I have rated this film at the highest possible rating. I also recommend that it is shown to office managers and business people in any establishment. What comes out of it is the fact that people with ideas are never listened to, their voice is never heard. It is a lesson to be learned by any office that wants to go forward. I hope that the produced will produce a second part to this 'idea'. I look forward to viewing the sequence. Once again congrats to Halaqah media in producing a film of excellence and quality with a lesson in mind.\r\n1\tPenny Princess finds American working girl Yolande Donlon the inheritor of a small kingdom that lies in that triangle where France, Italy, and Switzerland meet called Lampidorra. It seems as though the Lampidorrans owe bills all over Europe and the main occupation of the country is smuggling due to its geography. An American multi-millionaire buys the place, but dies before he can take title. His nearest heir is Donlan.<br /><br />But of course the estate has to go through probate in America and what are the Lampidorrans to do? Especially since Donlan who has now become a princess has forbade smuggling.<br /><br />Enter Dirk Bogarde who is on a trip to Switzerland to learn about the cheese industry. It seems as though the Lampidorrans have a kind of cheese that they playfully refer to as Schmeeze. With a few bumps in the road, Schmeeze solves all the problems both financial, geopolitical, and romantic between Donlan and Bogarde.<br /><br />How does Schmeeze work, well that's the gimmick to the whole film. But here's a hint. In Lover Come Back Jack Kruschen might just have gotten a hold of the secret of Schmeeze when he was busy inventing VIP for Rock Hudson and his advertising agency.<br /><br />Anyway Penny Princess is a delightful blend of British farce and romantic comedy. Yolande Donlon once again plays a role that Marilyn Monroe would have been cast in if the film had been made this side of the pond. Dirk Bogarde was well cast in the part which was at the beginning of his career as a romantic heart throb, way before anyone but him suspected he had the acting chops he had.<br /><br />This film was sadly shown at three o'clock in the morning on TCM. But at least I found a reason to be grateful for insomnia.\r\n1\tA fine story about following your dreams and actually taking a stab at Doing something about them when the chance strikes. Nothing was easy for Morris either-he had a family, job, job opps elsewheres, a mortgage, etc-it wasn't like he could just drop what he was doing and blithely hop on the greyhound to play AAA ball for 4 months. It took guts. I am glad that they showed his indecision, almost up 'til he got the callup to the majors.<br /><br />I can remember seeing him pitch against the Red Sox(I think...), it was a great story. Though Morris actually looks more like John Kruk or a Mills Watson than Quaid-that's okay. <br /><br />Quaid does a very good job playing the man, the teacher, coach and 'oldest rookie'.... As someone who is in the the same age group, I certainly can ID with his plight. You're not Quite too old to do what you had dreamed of as a kid, but it's getting there. You have to do it sooner than lator.<br /><br />Believably told, nicely edited, paced, acted, good to see the familiar faces of the late Royce Applegate, Brian Cox and Rachel Griffiths here.<br /><br />Good job all around, glad to see it hit.<br /><br />*** outta ****...who woulda thought that the Tampa Devil Rays woulda been the subject of such a good movie early on?\r\n0\tThe Fiendish Plot of Dr. Fu Manchu (1980). This is hands down the worst film I've ever seen. What a sad way for a great comedian to go out.\r\n0\tSaw it at the Philadelphia Gay and Lesbian Film Fest.<br /><br />What can I say? Against my better judgment, I liked it, but it seemed to me that that acting was a little...weak (mostly I noticed this from the family of the teen boy). I mean, the script wasn't stellar to begin with, but the actors didn't make me believe the relationships.<br /><br />The plot is also predictable.<br /><br />Nonethelss, I liked it. The characters are likable, and the plot is not challenging or upsetting. It's sweet, the characters care about each other, and I don't count it as fifty minutes ill-spent. <br /><br />But I don't recommend it.\r\n0\t\":Spoilers:<br /><br />I was very disappointed in Love's Abiding Joy. I had been waiting a really long time to see it and I finally got the chance when it re-aired Thursday night on Hallmark. I love the first three \"\"Love\"\" movies but this one was nothing like I thought it was going to be. The whole movie was sad and depressing, there were way to many goofs, and the editing was very poor - to many scenes out of context. I also think the death of baby Kathy happened way to soon and Clarks appearance in the movie just didn't seem to fit. It seemed like none of the actors really wanted to be there - they were all lacking emotion. There seemed to be no interaction between Missie and Willie at all.<br /><br />I think the script writers should have went more by the book. It seems like every movie that's been made so far just slips further and further away from Janette Oke's writings. I mean in the movie they never mentioned a thing about the mine and the two boys or Clark getting hurt because of it. And I think Missie and Willies reactions to Kathy's death could have been shown and heard rather than just heard.<br /><br />Out of the four movies that have been made so far I'd have to say that Love's Abiding Joy is my least favorite. I hope with the next four movies that more of the book is followed and if Clarks character is in them I hope he's got a bigger part and I hope his part isn't so bland. I also hope there is more of Scottie and Cookie and maybe even Marty but who knows what the script writers will have in store next.\"\r\n0\t\"Hubert Selby Jr. gave us the book \"\"Requiem For A Dream\"\" and co-wrote the screenplay to Aronofsky's movie of it. That movie succeeded on every level by delivering an intimate, and unbiased portrait of the horrors of the characters lives and the vices that destroyed them. \"\"Last Exit To Brooklyn\"\" still has the vice and the multiple characters living sad lives, but it hardly does them the same justice Aronofsky did.<br /><br />The film seems laughably anti-gay at times. Especially when in the film homosexuality equals death. One gay character gets stoned, is launched skyward by a speeding car, and lands dead on the pavement. Another is crucified and still more are simply beat up. Another exaggerated piece of shock value, that might actually have been compelling if it were done well, are scenes of the union workers literally doing battle with the strike-breakers. Who'd have thought a drama about Brooklyners would feature action sequences and truck explosions?<br /><br />The director, Uli Edel has a skill level like that of a TV director, but he is far below the cut for real movies. The film is clunky that can't even seem to settle on a genre. Lake is given a useless role that any mannequin could have filled and Baldwin only seems to know how to look stupid in his equally meager part. And then comes Jennifer Jason Leigh as our lead, a loathsome hooker named Tralala (believe it or not, I'm not joking). Her performance is nothing great and the fate of her character is dirty to say the least. Poor use of color and composition make it look cheaper than it is, and also takes the \"\"real\"\" edge off the more provocative bits. A failure.\"\r\n1\t\"Steven Spielberg (at 24) had already directed two superb episodes of a 1971 series called \"\"The Psychiatrist\"\", starring Roy Thinnes. One episode had been about an emotionally troubled 12-year old boy and the other was about a vibrant young man (Clu Gulager in his best performance) who is dying of cancer. Both episodes were stunning, visually unlike anything else on TV, and emotionally complex and adult. The creators of \"\"The Psychiatrist\"\" were Richard Levinson and William Link, who created \"\"Columbo\"\" and also produced its first season.<br /><br />Peter Falk insisted on first rank, experienced TV directors for the first season of \"\"Columbo\"\", like Bernard Kowalski and Jack Smight. But Falk agreed to Spielberg after watching part of the Clu Gulagher episode of \"\"The Psychiatrist\"\".<br /><br />Spielberg says on the DVD of \"\"Duel\"\" that he loved Steven Bochco's \"\"Murder by the Book\"\" script (based on a Levinson/Link story), and he tried to make the production look like a million dollar feature, even thought he had a lot less money to work with.<br /><br />This episode of \"\"Columbo\"\" is far more visually stylish and makes better use of the sound track and background music than almost any other \"\"Columbo\"\" episode, even though the series always used top directors. Spielberg manages to keep the great Falk and Cassidy from hamming it up too much, but both actors are still a lot of fun. Spielberg also gets fine supporting work from Martin Milner, Rosemary Forsyth and Barbara Colby. All the performances have a freshness and vitality about them. The only \"\"Columbo\"\" episode that was close to being as well directed is the \"\"By Dawn's Early Light\"\" episode with Patrick McGoohan (directed by Harvey Hart).<br /><br />I think the two episodes of \"\"The Psychiatrist\"\" and this episode of \"\"Columbo\"\" suggest Spielberg hasn't developed technically all that much as a director. He was great from the beginning. In a \"\"Combat!\"\" DVD commentary of a 1962 episode guest starring Albert Salmi, Robert Altman says that episode was pretty much as good as he ever got as a director. Maybe the same is true of Spielberg.\"\r\n1\t\"I thought this movie was LOL funny. It's a fun, not to be taken seriously, movie about one man's twisted views on life, love, and... well, ladies \"\"from the lowly bus station skank, to the high-class débutante... bus station skank.\"\" Tim meadows plays a guy (Leon Phelps) who was raised by in a Playboy-style mansion by a Hugh Hefner-esquire father figure, surrounded constantly by beautiful porn models and actresses. When his \"\"father\"\" kicks him out on the street he must learn to fend for himself with nothing but the chauvinistic outlook on life that his youth has taught him... that and an unfathomable, nearly mystical level of charm and dumb luck. And so the hijinx begin! If you haven't seen this movie and you enjoy a light-hearted, semi-mindless, comedy/love story, then I highly recommend renting \"\"the Ladies' Man\"\".\"\r\n0\t\"There's so many negative reviews about \"\"Stay away, Joe\"\" in here I just can't stay quiet any longer and let this injustice happen. Here's a side you haven't heard yet.<br /><br />Elvis Presley's movies are my guilty pleasure for a simple reason: they are perfect films for a pure relaxation because I don't have to think when I watch them. That means I don't have to worry about missing a complex plot because there never is a proper plot to start with. I can just kick off my shoes, grab a beer, sit back, switch off my brains and enjoy all the general wackiness and catchy easy-going rock n' roll tunes from the grooviest decade of them all.<br /><br />In my books \"\"Stay away, Joe\"\" definitely falls into the \"\"so bad it's good\"\"-category. Now if you're like me and appreciate \"\"the trash value\"\", this is the ultimate 1960's camp experience. It's so bad that it's almost surrealistic to watch and just when you think that it can't possibly get any worse it surprises you in the most imaginable ways. In the end you're so amazed by all the new levels of stupidity you just don't know whether to laugh or cry. In a nutshell: I love it because it's so damn amusing that there once was a generation that actually made films like this. I still give it 1 out of 10 though - once it hits the bottom 100 it will became an instant bad movie classic.\"\r\n0\tWith this film, Bunuel manipulates the viewer with all of film's might while stating clearly in the film that his work is one of 'objectivity'. Obviously, it is not. For one reason, many scenes 'shot by pure chance' are obvious set-ups (when that poor goat 'accidently' falls off the cliff, you can actually see the gun smoke on the right of the screen!). For another, his concealing of one important information: the Hurdes people were the way they were for a specific reason which is just hinted at in the film. That is, goitre, a sickness caused by lack of iodine (salt). This goitre is the cause of their cretinism and had Bunuel only took the time to make his research (heck, if he checked 'cretinism' in a medical dictionary he'd have found 'goitre') he MIGHT have ended up telling the truth about these people (still, doubtfully). Instead, with his film, he judges them constantly, talking about them as 'cretins', again and again, dramatizing the action, setting-up scenes to create the spectacle, all of this very unacceptable for a documentarist which claims to work for an all-mighty objectivity. Bunuel talks all the time in this film, not letting one word to the people he is filming. He talks FOR them and, even then, JUDGES them. This piece is flawed to it's roots, to it's ideology and it's a real shame it's considered a great film.\r\n0\t\"This so-called \"\"documentary\"\" tries to tell that USA faked the moon-landing. Year right.<br /><br />All those who have actually studied the case knows different.<br /><br />First of all: there is definitely proof. When the astronauts was on the moon, they brought back MANY pounds of rock from the moon - for geological studies. These where spread around the world to hundreds of labs, who tested them. And they all concluded that they came from the same planet, not earth: because the inner isotopes of the basic elements are different from those found on earth, but similar to those calculated to be on the moon. I.E. the conspiracy theorists never studies anything: they only take the thing that fit into their theory and ignores the rest.<br /><br />Another wrongful claim from them is that their was wind in the hangar where they shot the moon landing, I.E. the flag moves. There is a logical explanation: the astronaut moved it with his hand, so it moved. And what proves this: well, if the conspiracy theorists even studied the footage, they would see that the flag NEVER moves after the astronaut have let it be, I.E. the conspiracy theorists are bad-scientists, they cant study a subject properly, or only studies it until they have what they came for, so that they can make a lie from that, and make a profit (I.E. this so-called \"\"documentary\"\").<br /><br />A claim says that it cant possible have been filmed on the moon because all the shadows come from different places, because there are different light-sources, the artificial lighting from the studio. Once again the conspiracy theorists are wrong (as usual), the same would happen in an earth desert at night, with no light-sources. But i doubt that any Conspiracy theorists have ever been outside their grandmothers basement for more than how many days a Star Treck-convention is held over.<br /><br />The Conspiracy theorists are in denial, BIG TIME. They only see what they want to see. So they make up all these lies to seem important - that is a fact.\"\r\n0\tI'm shocked that there were people who liked this movie..I saw it at Tribeca and most of the audience laughed through it at scenes that were not meant to be funny. I felt bad because the lead actress was in the audience, but honestly the plot to this movie needed MAJOR revision..it didn't even make sense, one second the characters question what exactly it is that they're snorting..the next scene they're hopelessly addicted and figure out how to make it?? Also the ending just took the cake..I'm not going to spoil the magnificent conclusion..but it pretty much blended right in with the rest of the horrible plot/script...see this movie for comedy if you must..\r\n1\tGurinda Chada's semi-autobiographical film (2002) is a gentle, poignant comedy set in the ethnically diverse community near Heahthrow Airport in West London.<br /><br />Like the airliners which constantly arrive and depart from overhead, we follow the ups and downs of the two main characters Jess Bhamra (Parminder Nagra) and Jules Paxton (Keira Knightley) as they strike up an unlikely friendship which centres around their mutual passion for soccer and their technical infatuation with David Beckham.<br /><br />Much of the comedy grows out of the misunderstandings of the families of these two talented girls as they break all the expectations and conventions of their very different family backgrounds.<br /><br />Somewhere in the middle, as broker, peacemaker and blighted athlete, Joe (Jonathan Reece-Myers) - team coach for the Hounslow Harriers - intercedes in times of crisis, while at the same time remaining the main object of affection of both the main characters.<br /><br />Eventually, and not without many obstacles and triumphs on the way, we finally see our dedicated and beloved soccer heroines soaring away to realise their dreams.<br /><br />With great performances from Bollywood veteran Anupam Kher (Mr Bhamra), Shaheen Khan (Mrs Bhamra), Juliet Stevenson (Mrs Paxton) and Frank Harper (Mr Paxton) this really is a film that captures the urgent passion of adolescence and crosses all ethnic frontiers.<br /><br />Pinky Bamrha (Archie Panjabi) and (Taz) Trey Farley are struggling their own struggles, but nevertheless contribute greatly to our understanding of the main characters in the film.<br /><br />In it's own special way, this film tells an important story that in quite incidental the football. It celebrates the evolution in the understanding of ordinary people in ordinary families and the innate ability of the young to teach the old.\r\n1\t\"I love Eddie Izzard. I think this is awesome, and the other television specials should be looked at as well. He has a good book \"\"Dress To Kill\"\" out to buy as well, which I think people should read. I loved that this program won an Emmy, and anyone who likes history will probably get a laugh from Eddie. Enjoy :)\"\r\n1\tThis is the best movie I've come across in a long while. Not only is this the best movie of its kind(school shooting)The way Ben Coccio(the director) decided to film it was magnificent. He filmed it using teenage actors who were still attending high school. He filmed it in the actors own rooms and used the actors real parents as their parents in the film. Also the actors were filming too using camcorders making it seem much more like a video diary. It is almost artful.(if that is indeed a word)There are a few slip ups however, for example when Cal calls brads(?) land rover a range rover(or vice versa, It's been awhile since I've seen it)\r\n0\t\"First off, let me say that I am a great believer in Fanpro stuff. I see it as a way to continue a good show long after it has been cancelled. Star Trek Voyages and Star Wars Revelations are examples of decent efforts. So I have a soft-spot for fanpro stuff that means I'll overlook things that I would ordinarily slate badly.<br /><br />So on to ST: HF. Well, first off the good things. Enthusiasm is a major part of making any show believable and, for the most part, the crew of the various ships all seem to be having a good time with their roles. Next, the effects aren't bad for a home-brew effort, with nothing to make you really wince. The stories aren't too bad either. Nothing particularly innovative, but solid enough stuff and at least there are ongoing story-arcs.<br /><br />But it has a lot of faults.<br /><br />First off, although they quite obviously HAVE to rip-off Star Trek footage, set backdrops, music and effects, I see no reason why they proceeded to rip off virtually every other sci-fi musical score ever made. Everything from Aliens to Starship Troopers rears it orchestral head at one point or another. Likewise, much of the footage is from other movies, dutifully CGI'd over to make it look different. The Grey warships, for instance, though disguised, are quite obviously Star Destroyers from Star Wars. And the station is also rather obviously Fleet Battle Station Ticonderoga from Starship Troopers. Likewise, sound effects from various Star Wars movies appear in space battles between fighters, as does animated over footage. In one scene in either first or second season, I think, you even see two TIE fighters fly past during a battle, which hardly does your suspension of disbelief any favours.<br /><br />Acting varies from the reasonable to the hideously painful to watch. Everyone does improve as the seasons progress, though, but expect to grimace at the screen a lot, especially in the early seasons. They've also made some interesting acting choices. Let's just say that the food replicators on this show seem permanently set to \"\"cake\"\" and leave it at that.<br /><br />Make-up effects are generally quite effective on the whole. But they really ought to mercilessly club to death the person who decided to use cheap Ferengi and Cardassian masks for anything other than background use or \"\"passing\"\" shots. They are just beyond unrealistic. Every time I saw one of these (apart from trying not to laugh too much) I kept expecting the unfortunate soul wearing it to pull out a gun and announce that \"\"This is a stick-up!\"\" In one scene a \"\"Cardassian\"\" actually talks whilst wearing one of these. Not only do the lips not move, but the mask doesn't even have an opening where the mouth should be. Someone needs to be slapped hard for that. Couldn't they have taken a craft knife to it, for goodness' sake! There are also some well-done, but unintentionally funny make-up jobs, such as the Herman Munster look alike.<br /><br />The writing, though coherent, is nothing new. Instead the script runs like a continuation of DS9, with the ships heading out from DS12 on various missions. The new enemy, \"\"The Grey\"\" aren't very menacing and the plot line involving them is effectively a reworking of the Borg threads. i.e. Starfleet meet the Grey, the Grey are hugely powerful, Starfleet barely escape with their lives, then through technology they begin to find ways to combat the enemy etc etc. All done before with the Borg.<br /><br />Another bone of contention is the dialogue. Star Trek writers have long had the ability to write \"\"insert technobabble here\"\" into a script. It usually means an exposition of the latest plan to combat the enemy using \"\"quantum phase discriminators\"\" or \"\"isolytic charges\"\" etc. In other words, nonsense that tells you that they are on the case and a resolution is at hand.<br /><br />The words are just gibberish really. I've no problem with this, but where ST:HF makes a mess of it is where they include real-world comments into this concept.<br /><br />Tactical advice such as \"\"We need to regroup\"\" sounds good, but not when uttered by trio of characters already standing in a group. Likewise when asked what the situation is, a tactical officer is heard to reply \"\"We count three battleships\"\". He actually needed to count them? C'mon! I expected the questioner to ask him \"\"Are you sure?\"\" or \"\"Can you double check\"\". But my all-time favourite comment is this: <br /><br />Captain: \"\"Can we establish two-way communication?\"\"<br /><br />Comms officer: \"\"No, we can only send and receive..\"\"<br /><br />Well, duh!.....<br /><br />Having said all the above, the show does improve as it goes along. Seasons 1 and 2 are pretty bad, 3 shows an improvement but 4 & 5 are where it starts to get noticeably better. Season 6 so far looks quite reasonable.<br /><br />I do have a problem with their choice of media for the shows though. Quicktime sucks, quite frankly and the sooner they move to divx/avi format the better. Some of us like to actually take our downloaded shows and watch them on decent size screen and not peer at a tiny QT window on a computer monitor. Not only does Quicktime make this difficult, but the 320x180 resolution the shows are in does not scale at all well. In fact, it makes the shows pretty unwatchable, like they were a tenth-generation VHS tape copy. The least they could do was to include a hi-res downloadable option.<br /><br />Anyway, the show has promise, and I'm even beginning to like some of the characters. But that's 40 episodes on, so I'm not sure this says that much about character development at all.<br /><br />But what can you say, it's free....<br /><br />PS: Out of 28 votes, 19 people rated this show as a 9 or 10. Hmmmm... were we watching the same show? Or are you 19 all three year olds?\"\r\n0\tHouseboat Horror is a great title for this film. It's absolutely spot-on, and therefore the only aspect of the film for which I can give 10 out of 10. There are houseboats, there is horror, there's even horror that takes place on houseboats. But if there were ever a tagline for the film poster, it would surely be 'Something shonky this way comes...' for Houseboat Horror is easily the worst Australian horror film I've ever seen, not to mention one of the worst horror films I've ever seen, and a fairly atrocious attempt at film-making in general. The good news is, it's so bloody awful, it sails straight through the zone of viewer contempt into the wonderful world of unintentional hilarity. It's worth watching *because* it's bloody awful.<br /><br />The category of 'worst' comes not from the storyline, for the simple reason that there actually is one: a record producer, a film crew and a rock band drive up to the mystifyingly-named Lake Infinity, a picturesque rural retreat somewhere in Victoria (in reality Lake Eildon) to shoot a music video. Someone isn't especially happy to see them there and, possibly in an attempt to do the audience a favour, starts picking them off one by one with a very sharp knife. Even more mystifying is how long it takes the survivors to actually notice this, <br /><br />On the surface, it looks like a very bog-standard B-movie slasher. You've got highly-annoying youths, intolerant elders, creepy locals (one of whom, a petrol station attendant, would easily win a gurning competition), and let's face it, my description of the murderer could easily be Jason Voorhees. Ah, but if only the acting and production values were anywhere near as good as the comparative masterpiece that was Friday The 13th Part VII. Unfortunately, Houseboat Horror is completely devoid of both these things.<br /><br />But in the end, this only makes what you do get so ridiculous and amusing. Fans of one-time 'Late Show' and 'Get This' member Tony Martin will already be aware of some of the real dialogue gems ('Check out the view...you'll bar up!'), while the actual song to accompany the music video is so bad it has to be heard to be believed - I can't help wondering if writer/director Ollie Wood hoped it would actually become a hit. The horror element is comparable I think to B-slashers of the genre and particularly of the period, but there were times when I couldn't help imagining someone biting into a hamburger off-screen and seeing a volley of tomato sauce sprayed at the wall on-screen.<br /><br />Indeed, if you've been listening to Tony Martin recommending this film as hilarious rubbish like myself, I don't think you'll be disappointed. Any fans of 'so-bad-it's-good' horror should not pass up the opportunity. Whether you'll 'bar up' or not though is another matter. If, on the other hand, you are in search of genuine excellence in the Australian horror genre, get yourself a copy of the incomparable 'Long Weekend' and don't look back.\r\n1\t\"On 24 October 1955, the hard-work geologist of the Hadley Oil Company Mitch Wayne (Rock Hudson) meets the executive secretary Lucy Moore (Lauren Bacall) in the office of her boss Bill Ryan in New York and invites her to go to a conference with the alcoholic playboy and son of a tycoon Kyle Hadley (Robert Stack). On the way of the meeting, he confesses that they had traveled from Houston to New York to satisfy the wish of the reckless Kyle, who is his best friend since their childhood, of eating a sandwich from club 21 and the meeting was just a pretext to Kyle's father Jasper Hadley (Robert Keith). Mitch and Kyle immediately fall in love for Lucy, and Kyle unsuccessfully uses his money to impress Lucy; then he opens his heart and proposes Lucy. They get married and travel to Acapulco and the insecure Kyle stops drinking. Meanwhile, Kyle's sister Marylee (Dorothy Malone) is an easy woman and has a non- corresponded crush on Mitch that sees her as a sister. One year later, Kyle discovers that he has a problem and might be sterile and starts drinking again. The jealous Marylee poisons Kyle telling that his wife and Mitch are having a love affair. When Lucy finds that she is pregnant, Kyle believes that the baby belongs to Mitch and his mistrust leads to a tragedy. <br /><br />\"\"Written on the Wind\"\" is an overrated melodramatic soap opera, with artificial characters and situations. There are at least two great movies with characters with drinking problem: \"\"The Lost Weekend\"\" (1945) with stunning performance of Ray Milland and \"\"Days of Wine and Roses\"\" (1962) with awesome performance of Jack Lemmon. Robert Stack has a reasonable performance and his character's motives for drinking are shallow and clichés. In the end, the forgettable \"\"Written on the Wind\"\" is entertaining only and never a feature to be nominated to the Oscar. My vote is seven.<br /><br />Title (Brazil): \"\"Palavras ao Vento\"\" (\"\"Words in the Wind\"\")\"\r\n0\t\"I admit to liking a lot of the so-called \"\"frat-pack\"\" movies. No matter how bad they are, I can find something to like about Ben Stiller or Owen Wilson or Vince Vaughn or Will Ferrell or Jack Black. But \"\"Envy\"\" just left me about as cold as the white horse that Ben disposed of. This time, it's Ben and Jack Black as a couple of nutty neighbors, one of whom (Black) discovers a aerosol spray to make animal poop disappear and becomes incredibly wealthy while the other (Stiller) writhes in envy. That's supposedly the plot, but then it veers off in other directions that don't really make much sense.<br /><br />I guess the 'Vapoorize' thing is sort of amusing at first. The problem is, they try to sustain the gag for the whole picture (Black has a license plate that reads 'Caca King') and it gets fairly tiresome. But even Ben and Jack are used poorly; the energy level for both of their performances seems significantly dialed down. The two best performances by far are Rachel Weisz and Chris Walken. Walken's neo-hippie-dippie guy is so offbeat and so well-modulated a performance that it really never suggests any of Walken's other familiar nutcase characters. It's completely unique, yet comes across as unmistakably Walken. And Weisz is about the best actress in the business that nobody knows about. Even with limited screen time, she still dominates every scene she's in.<br /><br />The whole crux of the so-called drama is that Ben, in a jealous drunken stupor, accidentally shoots Jack's prize white stallion, and then goes to ridiculous lengths to cover it up, fearing his best friend will find out and cut him dead. But the plot twist isn't believable because there's nothing about Jack's character to indicate that he would do such a thing. He plays such a sweet guy that it renders the whole excruciating horse chase null and void. You discount it completely. It's all filler. And what's the point of the out-of-control merry-go-round, except that Barry Levinson wants us to know that he's seen \"\"Strangers on a Train\"\"? The screenplay is painfully bad and the acting of the two leads poorly directed. Someone with Levinson's track record should know better. Maybe someone will invent something to make this film disappear. Oh, wait, they already have.\"\r\n0\t\"(Avast, slight spoilers ahead) I got this tape from my local library, which keeps a copy for obvious reasons.<br /><br />I once went to the town of Matewan, West Virginia, and in a little museum there I saw the schedule for the town theatre citra May 1954. Movies would change at the theatre each day. As there would be no TV for another decade or so in those parts, this was much of the available entertainment in the town. \"\"The Raid\"\" seems to have been made for towns like Matewan in the 1950's. Although it wasn't listed for that month, I am sure showed there some Monday or Tuesday night for an audience which probably wasn't too demanding. The historical raid - daring and remarkably successful - didn't seem to have been very well researched, so the movie is full of Hollywood embellishments, including a loose cannon played by Lee Marvin. Marvin uses the opportunity to practice being Liberty Valance. And St. Albans seems to have had more Yankee soldiers coming and going through the town than Washington D.C. had.<br /><br />What really made me snicker was when the raiders change into their Confederate uniforms. Only in tacky Civil War paintings do Rebel uniforms look so pristine. When Anne Bancroft's son catches Van Heflin in his uniform just before the raid, I expected the boy to think it was Halloween.<br /><br />And then there's Anne Bancroft herself. While watching the movie I actually looked on the IMDb to see if there was a second Anne Bancroft. The then-studio contract actress looks nothing like in her later films, and has none of the presence she would later have in \"\"The Miracle Worker,\"\" \"\"Agnes of God,\"\" and of course \"\"The Graduate.\"\"<br /><br />Worth seeing if only 1). you live in St. Albans and 2). you have a couple hours to kill on a Hollywood fictionalization of your home town's biggest news story.\"\r\n1\tThis is truly an excellent film with a revolutionary message (both in form and content) that should not be missed by any fan of French New Wave or Underground film. There are barely opening or closing credits--we are just dropped into the world of consumerist art, revolution, and youth. This film has little to do with documentary and is more interesting in playing with our ideas of advertising and its relationship to reality. Lines of real and not real are crossed in ways familiar with films discussing documentary, but this time we do it for the sake of consuming and marketing, not for describing the real.\r\n0\twell well One cant b wasting time just cause of a big star-cast ..i think all i could see is a bunch of talents wasting their time on a big screen with some pathetic humor which will appeal to i do not know who? some pathetic songs that will be heard by who? some pathetically abrupt turnings justified by who? race against time? u mean waste against time? OK so first you spoil your kid,then you teach him a lesson wow we are so ignorant of this fact whoever said its a brilliant new concept probably is some other species other than human alright fine let me come comment like humans do movie has a nice message to be given but it could well have been given by a stranger sitting besides you in the bus rather than you going for such a wasteful movie to learn it Hindi movies have proved it a lot already and also i cant waste my time writing about waste anyway!\r\n1\t\"There is one detail, which is not very common for Jackie Chan movies, but which is present here. It has some very tough and serious atmosphere about it while the funny elements are present too. Jackie is menacing and psychotic here. He is not a hero who is attacked and only then fights back (in a usual laid-back pattern), but he is the one who can go and start the tumult. His manner of hitting that evil guy in the glasses is amazing. Every time it goes \"\"crack!\"\". I also especially enjoy the scene when Jackie goes to the pub and thrashes the villains who had fronted on his girlfriend. It's one of the best blitzkriegs put on screen. Besides, the whole scene is shot with the background of some action character painted on the wall (it also looks like a poster of \"\"rabochiy\"\" from our Soviet era) and some lines in Russian on the left (I noticed that quite accidentally). That looks terrific (and nostalgic for Russian people). I also like when the windows are being smashed in the movies. Here there's a lot of this stuff. It's quite amazing watching the characters falling/jumping/running/driving through all manner of panes.<br /><br />All three movies are great. I had been preparing myself to see the down-slide of the quality but I saw a perfect trilogy with sense and incredible stunts (and not only Jackie Chan's character appears in all three movies - that's also excellent and keeps continuity up).<br /><br />I would like to describe each movie just in a few words: No.1 - great (in all aspects - it is one gripping story from the very beginning to the very end) and funny (many scenes are ridiculous); No.2 - raging (Jackie is really *beep* off here) and painful (Jackie gets tortured); No.3 - unbelievable (the woman that fights alongside with Jackie is incredible) and bombastic (should I mention a lot of guns and explosions?).<br /><br />As to the rest - much has been mentioned by the others.<br /><br />It's a trilogy that can be watched over and over again (at least by me). Its place is in top 10 among action/comedy jewels. Finally it's been released in Russia on DVD (the 2nd film has the best options - the Chinese/Russian soundtracks and English/Russian subtitles).<br /><br />Solid 10 out of 10. Thank you for attention.\"\r\n1\tThose engaging the movie camera so early in the century must have figured out some of its potential very early on. This is a good story of a playboy type who needs money and inadvertently sells his soul to Satan for a lot of money. Unfortunately, the soul is his double and he must confront him frequently, tearing his life apart. There are some wonderful scenes with people fading out and, of course, the scenes when the two are on the stage at the same time. The middle part is a bit dull, but the Faustian story is always in the minds of the viewer. One thing I have to mention is the general unattractiveness of the people in the movie. Also, they pretty much shied away from much action which would have at least given some life to the thing. I first was made aware of this movie about 25 years ago and have finally been able to see it. I was not disappointed.\r\n1\tThe blend of biography with poetry and live action with animation makes this a true work of art. The narration by Sir Michael Redgrave is moving. The length of the work makes it easily accessible for class room exposure or TV/Video time slots.\r\n1\t\"I hadn't seen this film in probably 35 years, so when I recently noticed that it was going to be on television (cable) again for the first time in a very long time (it is not available on video), I made sure I didn't miss it. And unlike so many other films that seem to lose their luster when finally viewed again, I found the visual images from the \"\"Pride of the Marines\"\" were as vivid and effective as I first remembered. What makes this movie so special, anyway?<br /><br />Everything. Based on the true story of Al Schmid and his fellow Marine machine gun crew's ordeal at the Battle of the Tenaru River on Guadalcanal in November, 1942, the screenplay stays 95% true to the book upon which it was based, \"\"Al Schmid, Marine\"\" by Roger Butterfield, varying only enough to meet the time constrains of a motion picture. This is not a typical \"\"war movie\"\" where the action is central, and indeed the war scene is a brief 10 minutes or so in the middle of the film. But it is a memorable 10 minutes, filmed in the lowest light possible to depict a night battle, and is devoid of the mock heroics or falseness that usually plagues the genre. In a way probably ahead of its time, the natural drama of what happened there was more than sufficient to convey to the audience the stark, ugly, brutal nature of battle, and probably shocked audiences when it was seen right after the war. This film isn't about \"\"glorifying\"\" war; I can't imagine anyone seeing that battle scene and WANTING to enlist in the service. Not right away, anyway.<br /><br />What this film really concerns is the aftermath of battle, and how damaged men can learn to re-claim their lives. There's an excellent hospital scene where a dozen men discuss this, and I feel that's another reason why the film was so so well received--it was exceptionally well-written. There's a \"\"dream\"\" sequence done in inverse (negative film) that seems almost experimental, and the acting is strong, too, led by John Garfield. Garfield was perfect for the role because his natural temperament and Schmid's were nearly the same, and Garfield met Schmid and even lived with him for a while to learn as much as he could about the man and his role. Actors don't do that much anymore, but added to the equation, it's just another reason why this movie succeeds in telling such a difficult, unattractive story.\"\r\n1\t\"Audiard made here a very interesting movie. It begins with the description of an almost-deaf young woman, in its working universe as a secretary; she is ignored, frustrated, rejected... Hiring an intern as an assistant appears to be a way for her to find someone in her life : but the guy is just coming out from jail. Their both being rejected by the society reunites them progressively. Characters'description is profund, goes into details...both start to help each other; for she can read on lips, which reveals itself to be very useful for him...She will progressively evolve, far from what she was at first.<br /><br />It's beautifully filmed; the whole is very convincing, even if it turns into a film noir at the end. Gesture is in particular beautifully observed in Audiard's filming. Emmanuelle Devos should be nominated at the Best Actess Cesar Awards for her magistral play. Action towards the end of the film prevents it from being a simple \"\"etude de moeurs\"\". It's actually surprisingly entertaining : 8/10.\"\r\n0\tThe screen writing is so dumb it pains me to have wasted 2 hours of my life I'll never get back (where have I heard this before). The acting is so-so. Things change often enough to keep you watching and waiting for something gruesome to happen. Nevertheless there isn't a single original thing in this movie. While the first Cube was a nerdy horror movie, which didn't make a whole lot of sense in the end, cube zero has picked up on that and tries to retell exactly the same story, except this time it makes an obnoxious point of trying to spoon-feed explanations for every detail that the first movie didn't answer. The comic thing is, the director recycles the exact scenes of the first movie that were somewhat weird, and tries to explain them. But the scenes are just copied over, there is no coherence whatsoever. This script is sooo pointless. I can imagine it being written by some half-wit 15 year old with a baseball cap and a pack of beer for a class project. The best part is in the end, they cripple the 'good' wunderkind guy, and he becomes the retarded fellow in the first movie, and you see him when they find him ('this room is green..') in Cube 1997. Goodie gooodie, clap clap, what a twist. First of all, what about if you haven't seen the first one, this doesn't make any sense you nitwit director. Oh, another great idea: instead of the numbers to identify x,y,z coordinates of the room (cube 1997), this time it is 3 letters, each one giving one of 26 possible coordinate values. Duh. Except now permutations don't make much sense anymore..so he lets the letters disappear before anybody can use them..I want my money back.<br /><br />I guess I had to write this down since there are just so many bad, inconsistent, or just stupid ideas in this movie. Directors/writers should be required to possess some talent.\r\n0\t\"The above seemed a much more appropriate title when me and my suicidal underlings decided to watch this masterpiece of modern bullshit <br /><br />Erotic,Scary, Suspenseful, Well thought out, these are all the things this film fails to be.<br /><br />It is however incredibly funny, the slow sound effects and bad dubbing add to this to make one of the greatest comedies I have seen in recent years. And yet this film doesn't even try to be funny and that is one of the movies grand achievements, it becomes a comedy without even attempting to amuse.<br /><br />Throughout the film an old guy who looks amazingly like Santa Claus goes around ploughing over zombies and smashing vampires into the ground. This made me fail to believe the films title, if this was vampires vs zombies why were the vampires and zombies not fighting? Oh well whatever, besides there were more flaws to this rental than the title. Such as this one; there has been a virus sweeping through America creating zombie like beings who go around acting a lot like your average tourist. And yet there's only four zombies in the entire film. Another problem is besides one shop everywhere is deserted. Surely you'd see zombies roaming about in the woods or in the background a bit. In fact I believe they just drove around in a circle of forest over and over again since they didn't have a high enough budget to film in a wider location, that or the director didn't want to waste his precious time filming in different areas of wood he was to busy sitting in a trailer jerking off to be bothered with such trivial matters.<br /><br />In fact the director had so much fun doing this that he didn't have enough time to hire a big enough cast or even an editor. And so he told the eight members of the cast to dress up as different people and try not to act inconspicuous, whilst I assume he changed his name and began randomly snipping at the film reels \"\"editing isn't a hard job anyway right?\"\" The only reason this \"\"movie\"\" found it's way into our bag was because somehow we got it confused with Freddy vs Jason, strange how these things happen isn't it. And the only way we made it though the night was by strapping gas masks on and bolting them to our skulls to avoid the stink of this nauseating mess.<br /><br />Oh yes we did laugh at the end, but I'm sure one does that a lot when he has lost his sanity...................\"\r\n1\tAnother good Stooge short!Christine McIntyre is so lovely and evil and the same time in this one!She is such a great actress!The Stooges are very good and especially Shemp and Larry!This to is a good one to watch around Autumn time!\r\n0\t\"I was raised watching the original Batman Animated Series, and am an avid Batman graphic novel collector. With a comic book hero as iconic as Batman, there are certain traits that cannot be changed. Creative liberties are all well and good, but when it completely changes the character, then it is too far. I purchased one of the seasons of \"\"The Batman\"\" in the hopes that an extra bonus feature could shed some light on the creators' reasoning for making this show such an atrocity. In an interview on the making of \"\"The Batman,\"\" one of the artists or writers (I'm unsure which) said that \"\"We felt we shouldn't mess with Batman, but we could mess with the villains.\"\" So, they proceeded to make the Joker into an immature little kid begging for attention, the Penguin into some anime knockoff, Mr. Freeze into a super-powered jewel thief, Poison Ivy into a teenage hippie, and countless other shameful acts which are making Bob Kane roll over in his grave. <br /><br />To sum it all up: I wish I had more hands so I could give this show FOUR THUMBS DOWN. It squeezes by my rating with a 2 out of 10 simply because it uses the Batman name. Warner Bros...rethink this! Please!\"\r\n1\t\"Dressed to Kill understandably made a bit of a ruckus when first released in 1980: you had \"\"Police Girl\"\" in a role that was mega-erotic, as Angie Dicknson played a sexually frustrated housewife looking for good times in all the wrong museums (and there into apartment elevators), plus Nancy Allen as a call-girl, Michael Caine as Norman Bates's sophisticated New York cousin, and enough lurid imagery to last two movies of the period. Today it's slightly less incriminating by standards and such, though the unrated version has some of the most \"\"hot\"\" content of any of De Palma's films, at least in his quasi-auteur period of the 70s and early 80s, where he seemed to repeat themes over and over, ideas taken right off the film-reels of Hitchcock classics and given a tawdry uplift. It's a simple tale that one partly already saw in Sisters, and then again to an extent in Body Double, and also in Blow Out. Cutie Allen plays call-girl Liz Blake, who has to clear her name of suspicion of killing Kate (Dickinson, in full blown 'MILF' mode), after being found with a razor, the murder weapon from Dr. Elliott's office (Michael Caine, stone-cold performance most of the way).<br /><br />From the start, which De Palma seems to do as a way of setting up a dangerous sexual fantasy scene as a way of topping the opening scene of Carrie (which, perhaps, he does just in editing terms), we get a series of technical knock-out turns through the point of view of style itself: the tracking shots in the museum, meant to stir up more of a fascination with the process itself, of following and wanting to be followed, than any kind of tension; the chase through the subway (a precursor to Carlito's Way) is done with a precise level of suspense, meanwhile, with a slightly exploitation bit thrown in with the black gang; the character of Peter, Kate's son (Keith Gordon), who plays what is essentially a younger version of the real life De Palma as a kid (science geek, obsessed with Hitchcock and voyeurism). And it's all entertaining and entrancing as hell as something that comes close to a real synthesis of what makes De Palma's thrillers so unique while being so self-consciously untainted by a fearless attitude of film-making.<br /><br />On the other hand, that same self-consciousness ended up coming back to bite the director in the butt a few times in recent years, and somehow in Dressed to Kill it starts to become very erratic and disappointing as the story has to wrap itself up. As the Psycho themes come together even more apparently (man who wants a sex-change, doesn't even think he's killing as it is *she* who is doing it), there is an expository scene in the police station that makes the aforementioned Hitch film look like an astonishing psychological revelation. And the final scenes at Peter's house, also calling painfully into recollection a much more accomplished sequence in Carrie, are meant for a manipulation that even for De Palma is asking for it; the final shot especially, albeit a master's class in how to copy yourself. Yet there is a very deranged and, within itself, perfect scene at the mental hospital amid this confused denouement, where the doctor does some work on a nurse, to which all the other inmates act like animals in a zoo, and an over-head shot going up and up over the scene is one of the best shots of sexual/general perversion ever captured on film.<br /><br />A shame then that the film ends on such a strange and unsettling manner, where up until then it is a remarkable piece of pulp cinema, where class is all around in the technical aspects (soft lighting, intricate camera movements seemingly so simple) amid subject matter that should be found in the mix of paperbacks for 25 cents. It's no masterpiece, but I'd certainly take it over most of the director's recent thrillers any day.\"\r\n1\t\"This series premiered on the cable TV station \"\"Comedy Central\"\" in the United States. It was chopped to death, and shown out of sequence. This was sad for the audience it should have attracted, it didn't and fell by the wayside. Luckily, at the same time my cable company went digital and I got the BBC. Thank goodness because I got to see \"\"The League of Gentlemen\"\" in order, complete and uncut. <br /><br />\"\"The League of Gentlemen\"\" troupe is right up there with England's \"\"Monty Python's Flying Circus\"\" and Canada's \"\"The Kids in the Hall\"\". But..a warning.<br /><br />\"\"The League of Gentlemen\"\" though are one step beyond. It's not only about dressing in drag and lampooning the cultural ills, it goes deeper and much, much, darker. I can tell many of you now -- it will offend certain groups of people, it will enrage others. But remember, its only comedy..dark, dark comedy. If that is not your thing, don't watch. If you think you KNOW dark comedy, watch this -- if you get angry and upset, then you don't quite know DARK COMEDY. <br /><br />These guys got it right, and right on the button. They are brilliant, they are excellent and I enjoyed each and every character creation. There's a COMPLETE story that is told here from episode one to the end. You cannot watch this one episode at a time, willy nilly, that is one of the charms of this series. Watch it in order. See how creative and stylish and deeply disturbed these guys are. No one and nothing is out of bounds. That, my dears, is \"\"dark humor\"\". Bravo!\"\r\n0\t\"I probably give this more credit than it deserves because it's Halloween, I was just at \"\"Knott's Scary Farm\"\" and I was in a mood to watch a really cheesy Halloween movie.<br /><br />Oh, and it only cost me one dollar.<br /><br />Usually I'll ffwd through a movie like this to get to \"\"the good stuff,\"\" but I resisted the urge here and I'm still not sure why. It was obvious from the opening shots this wasn't a \"\"real\"\" movie, not even a B-movie. It's more in the category of the DeCoteau \"\"horror\"\" movies like \"\"The Brotherhood\"\" that are shot on film-look video for about 50 cents (in fact, I was half afraid any minute one of his beefy college boys would stagger out rubbing himself in his underpants or something). There were no cutaway shots (too expensive to do multiple camera setups) and flat lighting but...it's hard to pinpoint. There's something refreshing about watching a director with no money pull off a half-decent movie. The fact that he's doing even a half-decent job is commendable, and this movie has it's share of merits--the acting isn't bad, the photography is pretty good (if too bright to be scary), there are some surprises, and the whole thing is sort of...different somehow.<br /><br />A bunch of college kids are (for some unknown reason) stuck in the warehouse where they are decorating the annual haunted house. A creepy old man gives them a satanic book and they accidentally summon up the powers of hell. This results in the costumed people in the haunted house becoming who they are made up to be, and causing a lot of mayhem and human suffering. Along the way we are treated to an oddly complex and thoughtful lesbian relationship subplot--it's interesting that this couple seems to be the most well-rounded in the movie. Yes, there's a sex scene but it isn't salacious--or at least no more so than you'd find in any legit movie about lesbians that shows them having sex. It's rather unusual for a horror film to take the time and effort to do this without resorting to cheap exploitation. <br /><br />The other thing about this that held my interest was how it was clearly trying to emulate the \"\"stupid kids have sex and get killed\"\" vibe of the 80's slashers. It's hard to take that on because there are so many of those films that already exist, the genre has been done to death. I'm not sure if it's good or bad that these filmmakers simply tried to make another entry in that genre, without irony, as if it was still a LIVING genre, but I appreciated the attempt.<br /><br />Which is why I sat through it; sometimes you just want to watch a mindless, no-budget, \"\"A-for-effort\"\" horror film. There really was too much set up, not enough gore, endless plot-holes, dead-ends and clichés and the unfortunate overall feel of a movie that simply did not have enough money behind it to be the film the producers envisioned...but at the very least the haunted house scenes were pretty cool. I'd pay to go to that haunted house if it existed, and didn't mind paying a dollar to see it on DVD even if I'll never watch this again.<br /><br />Oh, and **possible spoiler**, but there was great, brief business with the vampire girl in the coffin: \"\"I used to be claustrophobic. But I've changed.\"\" Ha ha, good one.\"\r\n1\tThis amazing documentary gives us a glimpse into the lives of the brave women in Cameroun's judicial system-- policewomen, lawyers and judges. Despite tremendous difficulties-- lack of means, the desperate poverty of the people, multiple languages and multiple legal precedents depending on the region of the country and the religious/ethnic background of the plaintiffs and defendants-- these brave, strong women are making a difference.<br /><br />This is a rare thing-- a truly inspiring movie that restores a little bit of faith in humankind. Despite the atrocities we see in the movie, justice does get served thanks to these passionate, hardworking women.<br /><br />I only hope this film gets a wide release in the United States. The more people who see this film, the better.\r\n0\t\"Is there anything worse than a comedy film that lacks humor? The answer is Yes; one that fails to generate any interest throughout the picture. The premise is not too bad - a naive front man for an illegal business - but this is a potboiler with a poor script and screenplay and just does not work.<br /><br />Was this considered a good 'B' in 1942? Hard to imagine. The only positive aspect of the picture is the cast, which contains several well-known faces from the '30's and '40's, such as Warren Hymer, Vince Barnett and Robert Armstrong (I always dismiss Richard Cromwell as the weakling who got Gary Cooper killed in \"\"Lives of a Bengal Lancer\"\", so I wasn't counting him).<br /><br />Can't recommend this one and gave it a rating of 3 - if you have a choice, get a root canal.\"\r\n0\tI will never forget the night I saw this movie. We were on a submarine on patrol in the North Atlantic and this was the scheduled movie of the evening. We ALL gave up after the second reel. They did not even try to show it at the mid-night showing. Opting for a rerun instead...... This is all I really have to say but they have this stupid rule that my comment must contain ten lines. I'm not supposed to pad the comment with random words so I will just continue to ramble until I get my ten lines of BS. I could not find George Goble listed in the credits but I remember him in the movie. The sining was terrible and the songs even worse.\r\n1\t\"Berlin-born in 1942 Margarethe von Trotta was an actress and now she is a very important director and writer. She has been described, perhaps even unfairly caricatured, as a director whose commitment to bringing a woman's sensibility to the screen outweighs her artistic strengths. \"\"Rosenstrasse,\"\" which has garnered mixed and even strange reviews (the New York Times article was one of the most negatively aggressive reviews I've ever read in that paper) is not a perfect film. It is a fine movie and a testament to a rare coalescing of successful opposition to the genocidal Nazi regime by, of all peoples, generically powerless Germans demonstrating in a Berlin street.<br /><br />Co-writer von Trotta uses the actual Rosenstrasse incident in the context of a young woman's search for information about her mother's never disclosed life as a child in the German capital during World War II.<br /><br />The husband of Ruth Weinstein (Jutta Lampe) has died and in a surprising reversion to an orthodox Jewish lifestyle apparently hitherto in long abeyance, Ruth not only \"\"sits shivah\"\" (the Jews' week-long mourning ritual) but she insists on following the strict proscriptions of her faith. Her apartment in New York City reflects the affluence secured by her deceased spouse's labors. Her American-born daughter, Hannah (Maria Schrader) and her brother are a bit put-off by mom's assumption of restrictive orthodox Jewish practices but they pitch in. The mother coldly rejects the presence of Hannah's fiance, a non-Jew named Luis (Fedja van Huet). A domestic crisis might well erupt as Ruth warns that she'll disown Hannah if she doesn't give up doting, handsome Luis. Stay tuned.<br /><br />A cousin arrives to pay her respects and also drops clues to an interested Hannah about a wartime mystery about mom's childhood in Berlin. Hannah is intrigued - she queries her mom who resolutely refuses to discuss that part of her life. This is very, very realistic. I grew up with parents who fled Nazi Germany just in time and I knew many children whose families, in whole but usually in part, escaped the Holocaust. Those days were simply not discussed.<br /><br />So Hannah, having learned that a German gentile woman saved Ruth's life, traipses off to Berlin hoping to find the savior still breathing. Were she not, this would have been a very short film. But Ruth, pretending to be a historian, locates 90 year-old Lena Fischer (Doris Schade), now a widow. As the happy-to-be-interviewed but shaken up by repressed memories Lena tells her story, the scenes shift fairly seamlessly between present day Berlin and the war-time capital.<br /><br />The young Lena of 1943 (Katja Riemann) was a fine pianist married to a Jewish violinist, Fabian Fischer (Martin Feifel). With the advent of the Nazi regime he was required to use \"\"Israel\"\" as a middle name just as Jewish women had to add \"\"Sarah\"\" to their names(incidentally I wish IMDb had not given Fabian's name on its characters list with the false \"\"Israel\"\" included-it simply perpetuates a name applied by Nazis as a mark of classification and degradation).<br /><br />While Germany deported most of its Jewish population to concentration camps, those married to \"\"Aryans\"\" were exempted. For a time. Until 1943 when the regime decided to take them too (most were men; a minority were Jewish women married to non-Jews). The roundup is shown here in all its frightening intensity.<br /><br />The young Lena tries to locate her husband. All she and many other women know is that they're confined in a building on Rosenstrasse. The crowd of anxious women builds up, some piteously seeking help from German officers who predictably refuse aid and also verbally abuse them (\"\"Jew-loving whore\"\" being one appellation). As a subplot Lena more or less adopts eight-year-old Ruth who hid when her mother was seized (remember, Ruth is now sitting shiva in Manhattan). The child Ruth is fetchingly portrayed by Svea Lohde. <br /><br />Through increasingly angry protestations the women finally prevail. The men, and a handful of women, are released. As in the real story the Nazis gave in, one of the rare, almost unprecedented times when the madmen acknowledged defeat in their homicidal agenda (another was the termination of the euthanasia campaign to rid the Reich of mental defectives and chronic invalids but that's another story).<br /><br />Von Trotta builds up the tension and each woman's story is both personal and universal. Hannah continues to prod the aging Lena who slowly, one gathers, begins to suspect she's not dealing with an ordinary historian but rather someone with a need to learn about the girl she rescued, the child whose mother was murdered.<br /><br />The contrasts between Rosenstrasse of 1943, a set, and the street today in a bustling, rebuilt, unified Berlin provide a recurring thematic element. Today's Berlin bears the heritage but not the scars of a monstrous past. Von Trotta makes that point very well.<br /><br />The main actors are uniformly impressive. Lena's husband while strong is also shown as totally helpless in the snare of confinement with a likely outlook of deportation (which is shown to have been clearly understood by all characters - including the local police and military - as a one-way trip to oblivion). The older Ruth is catalytically forced to confront demons long suppressed in her happy New York life. Hannah is very believable as a young woman whose father's death triggers a need to discover her family's past. These things happen (although the Times's critic appears not to know that).<br /><br />Von Trotta's hand is sure but not perfect. A scene with Goebbels at a soiree enjoying Lena's violin playing is unnecessary and distractive. The suggestion that she may have gone to bed with the propaganda minister, the most fanatical top-level Hitler worshiper, to save her husband detracts from the wondrous accomplishment of the demonstrating spouses and relatives. Most of the German officers come from central casting and are molded by the Erich von Stroheim \"\"copy and paste\"\" school of Teutonic nastiness. But that's understandable.<br /><br />The Rosenstrasse story has been the subject of books and articles and some claim it's a paradigm case for arguing that many more Jews could have been saved had more Germans protested. Unfortunately that argument is nonsense. The German women who occupied Rosenstrasse were deeply and understandably self-interested. Most Germans were located on a line somewhere between passive and virulent anti-Semitism. THAT'S why the Rosenstrasse protest was virtually singular. Whether one buys or rejects the Goldenhagen thesis that most Germans were willing accomplices of the actual murderers it just can not be denied that pre-Nazi endemic anti-Semitism erupted into a virulent strain from 1933 on.<br /><br />The elderly Lena remarks that what was accomplished by the women was \"\"a ray of light\"\" in an evil time. Most of the men and women sprung from a near death trip survived the war. So \"\"a ray of light\"\" it was and von Trotta's movie is a beacon of illumination showing that some were saved by the courage of largely ordinary women and for every life saved an occasion for celebration exists. And always will.<br /><br />9/10\"\r\n0\tI saw the movie as a child when it was released in the theater and it was so bad that it became the makings of a family joke. If the ranking had a zero, this movie would get it. The dinosaurs were awful. The storyline was ridiculous. The acting really doesn't qualify to be called acting. The only reason I even remember the name of the movie so well is because my family still talks about how BAD it really was.\r\n1\tReda is a young Frenchman of Moroccan descent. Despite his Muslim heritage, he is very French in attitudes and values. Out of the blue, his father announces that Reda will be driving him to the Hajj (pilgrimage) to Mecca--something that Reda has no interest in doing but agrees only out of obligation. As a result, from the start, Reda is angry but being a traditional Muslim man, his father is difficult to talk to or discuss his misgivings. Both father and son seem very rigid and inflexible--and it's very ironic when the Dad tells his son that he should not be so stubborn.<br /><br />When I read the summary, it talks about how much the characters grew and began to know each other. However, I really don't think they did and that is the fascinating and sad aspect of the film. Sure, there were times of understanding, but so often there was an undercurrent of hostility and repression. I actually liked this and appreciated that there wasn't complete resolution of this--as it would have seemed phony.<br /><br />Overall, the film is well acted and fascinating--giving Westerners an unusual insight into Islam and the Hajj. It also provides a fascinating juxtaposition of traditional Islam and the secular younger generation. While the slow pace and lack of clarity about the relationship throughout the film may annoy some, I think it gave the film intense realism and made it look like a film about people--not some formula. A nice and unusual film.\r\n0\t\"Except people apparently buy into this garbage! As shows like \"\"Moral Orel\"\" have shown, even if you tried to make the most outrageous, over-the-top parody of evangelism you could possibly think of, it wouldn't come close to the hilarity of this show. It's hard to tell what's even going on when you're watching it. Is it a news show? A talk show? Who knows!? They start out by reporting on various international news stories, but at seemingly random points, the news is interrupted by this odd, troll-like little man with a forehead bigger than his entire face, mumbling and laughing and generally being creepy.<br /><br />Pat Robertson doesn't even seem like such a bad guy at first glance. He just seems like a senile, yet harmless old coot stuck in his archaic beliefs (like most of our grandparents). But this is a man who has called for an assassination, who has befriended and offered aid to not one, but TWO murderous dictators, who has illegally used donation money to run diamond mines, who has SUPPORTED forced abortions in China, and who regularly implies that Caucasians (straight American male Caucasians in particular) are superior to all other races.<br /><br />Still, this would all be funny, except that he apparently has a large enough fan base to keep his little show on the air 40 years later (either that, or enough money to bribe some TV executives who don't give a damn what they show). The idiocy of the show becomes alarming when you realize that some people, somewhere, must be watching it and hanging onto every word. Even when Robertson has repeatedly shown how corrupt he is, people still listen to him. I don't know if it's funny or scary. I guess a healthy mixture of both.\"\r\n0\tThe teasers for Tree of Palme try to pass it off as a sort of allegory for a fairy tale with actual meaning, then immediately start raving about the animation. I should have known what that meant.<br /><br />The main character, Palme, is a good example of the whole movie's problem. One minute, Palme is a humble hero in search of himself, the next a violent psycho with an unhealthy fixation on a girl he once took care of.<br /><br />Like all of the characters in the movie, Palme is poorly defined. You do not bond with the characters at all, although Shatta has acquired a couple of fan girls. It seems that the writer was more interested in cramming all the drama and complexity he could into this movie than actually exploring his characters' motivations and personalities.<br /><br />New, useless story lines were being introduced in the last fifteen minutes of the movie. The writer seriously needed to streamline his story. Perhaps he was trying to be epic, but it was simply too much information for a two-hour movie. However I can't help but wonder if a plot with so many dimensions and characters would have been better suited for a TV series or graphic novel.<br /><br />In the last five minutes of the movie, I simply could not endure the sheer lack of quality any longer and began laughing at how contrived the characters, the relationships, and the whole plot was. I touched my companion and he started cracking up too, as did a young man seated behind us. We tried so hard to control ourselves, but we simply could not take the terrible quality of this movie.<br /><br />On the bright side, the animation is incredible and viewers will find themselves admiring the lush backgrounds and charming character designs. The animation almost guides you; when you don't care about the characters, it tells you how to feel.\r\n1\t\"I've seen this film criticized with the statement, \"\"If you can get past the moralizing...\"\" That misses the point. Moralizing is in the conscience of the beholder, as it were. This is a decent film with a standard murder mystery, but with a distinct twist that surfaces midway through. The resolution leaves the viewer wondering, \"\"What would I have done in this position?\"\" And I have to believe that's exactly what the filmmaker intended. To that end, and to the end of entertaining the audience, the film succeeds. I also like the way that the violence is never on stage, but just off camera. We know what has just happened; it's just not served up in front of us, then rubbed in our faces, as it would be today with contemporary blood and gore dressing. Besides, the violence is not the point. The point is the protagonist's moral dilemma, which is cleverly, albeit disturbingly, resolved.\"\r\n1\t\"This movie is utterly hilarious. Its cast clicks immediately with frame one and takes us on a wonderful ride through spoofing gangster films. The conflict of brother vs. brother appears when Johnny's brother becomes a do-gooder D.A. However, the best character is Johnny's crimelord rival, the overly accented Moroni. As Johnny says \"\"That man should be arrested for butchering the English language.\"\"<br /><br />Check it out on video. It's worth a look.\"\r\n1\tI have watched this episode more often than any other TFTC episode, it is that enjoyable. And it is quite scary, but all in good, ghoulish fun. A woman kills her 2nd husband but runs into a problem when an escaped maniac in a ragged Santa Claus outfit decides to pay her and her little girl a visit at that very moment. Mary Traynor, who I seem to remember from SNL or some other TV comedy skit show, is the evil wife, and Larry Drake plays the lunatic in the dingy Santa outfit. I had forgotten Santa was played by Drake over the years. His Santa is an unstoppable force and quite frightening at times. You can probably guess how Santa finally gets into the house. The episode is played for laughs, but it also can be pretty intense at times.\r\n1\t\"Wow baby, this is indeed some fine Asian horror/gore, and a crazy outlandish movie. This is a Japanese splatterfest that reminded me a little of Tetsuo, except in this case with all the blood and guts, there is a bizarre love story. It's hard to imagine how they even dreamed up this visually stunning movie, with some unique alien creatures that infect humans as parasites, turning them into part machine or I guess cyborgs. The only thing wrong with these creatures after they take over a human, is they need to kill each other and eat the other. hmmm, yum yum. This would probably be called industrial splatter or something like that, with a superb soundtrack to add to all the fun. The movie also borrows a little from Carpenter's \"\"The Thing\"\" in creature design and effects. I would put this in the must-have category for gorehounds, as there is non-stop carnage and some very fine gore. And a must-have for stoners, because you don't even need to read the sub-titles, the visual images alone are enough of a mind trip. The design of the little creatures that inhabit the human body like a fetus reminded me a little of Frank Henenlotter's movies, which is another homage to some excellent gore films with a sense of humour. \"\"Meatball Machine\"\" is great fun for gorehounds, there is no doubt about it, and I simply loved it.\"\r\n0\t'Say Yes' is one of those flicks that you keep hoping is going to get better, but it never does. It's the kind of 'motiveless psychopath decides to menace an innocent couple' crapfest, so beloved of straight to video film-makers. <br /><br />The dialogue is clunky and, in several places, poorly translated. The acting is uniformly poor, especially from the villain of the piece, played by Joong-Hoon Park. He seems to think that by not blinking and trying to talk in a deep voice he is making his character seem threatening, when all it really does is make him seem a bit simple.<br /><br />The plot deserves special mention, as it is idiotic beyond all belief. The 'heroes' don't think it overly strange that their hitchhiker threatens to kill them. The 'heroine' twice manages to miss seeing the villain when he is no more than a foot away from her. The villain gets past a police checkpoint (while wearing a shirt covered in blood, and a bloody head bandage) by showing the cops a burnt corpse in the passenger seat of the car he is driving. The villain is punched, clubbed with a shovel and stuck through with a pitchfork, but never seems to be impeded by these, rather serious, injuries. And don't even get me started on that terrible 'twist' ending. Sheesh.<br /><br />The only plus point in this film, for me, is Sang Mi Chu. Who is very pretty, but really no more than a mediocre actress.<br /><br />Overall, this film comes off like a poorly written, flaccidly acted and shockingly directed attempt to copy 'The Hitcher' and 'Spoorloos', but it fails at every turn due to a lack of talent in everyone involved.\r\n0\t\"\"\"In 1955, Tobias Schneerbaum disappeared in the Peruvian Amazon. One year later he walked out of the jungle...naked. It took him 45 years to go back.\"\" Supposedly, \"\"Keep the River On your Right\"\" is \"\"a modern cannibal tale\"\". In reality, anyone looking for some insight into cannibalism will be sadly disappointed. The first half of the movie is more like a travel log of New Ginuea, mostly touting the native art. The second half relies on still photos of a Peruvian cannibal tribe, but really that's about it. Unless of course, you are interested in home movies of a Jewish wedding, or Schneerbaum introducing his former male lovers. I give up. Big disappointment and not really \"\"a modern cannibal tale.\"\" - MERK\"\r\n1\t\"Currently on METOO's new schedule at 4 pm on weekdays, right after \"\"Maverick\"\" and right before \"\"Wild, Wild West\"\" (followed by \"\"Star Trek\"\").<br /><br />Don't know if I ever actually saw an episode of it when it was originally on, but I'm really captivated by it. Offbeat, unusual, surreal stories set in a mythical West. Kind of the \"\"Naked City\"\" of Westerns.<br /><br />And the guest stars are there: Dan Duryea, Lyle Bettger, Brian Donlevy, MacDonald Carey, Rick Jason (as a treacherous Mexican), a young Dick Van Patten, Jack Lord, Noah Berry, Jr. (as a colorful Mexican), Martha Hyer, Marguerite Chapman, even Ann Robinson (\"\"War of the Worlds\"\"), Gloria Talbott (\"\"I Married a Monster from Outer Space\"\")<br /><br />It ran for EIGHT SEASONS, over 200 episodes, from January, 1959, to December, 1965.<br /><br />Eric Fleming is quite remarkable as trail boss Gil Favor, the most stolid man that's ever lived, with the code of honor of a Samurai, and just the right balance between toughness and open-handedness. I would vote for him for President any day. (P.S. He had a very interesting biography: http://www.imdb.com/name/nm0281661/ )<br /><br />And a young Clint Eastwood is quite striking as his impulsive right hand, \"\"Rowdy\"\" Yates. Also, veteran Western actor and country music figure (the immortal \"\"One-eyed, One-horned, Flying Purple People Eater\"\") Sheb Wooley is there as seasoned scout Pete Nolan. And Paul Brinegar makes the most cantankerous character of a cook you could ask for as \"\"Wishbone\"\".<br /><br />And then there's that great theme song, performed by the immortal Frankie Laine. (Between that and the \"\"Maverick\"\" theme, I've got Western theme songs running through my head all day.)<br /><br />I look forward to every episode; I'm collecting the whole set. A good time (not to mention a moo-ving experience) is always guaranteed, as one waits to see if the boys will get their difficulties straightened out before the commercial.<br /><br />\"\"Rollin', rollin', rollin' . . . \"\"\"\r\n1\tWar Inc. is a funny but strange film. The actors are likable, the film is likable also, but I don't know how to describe the plot. I will go into the plot later on. This is a movie with some weird casting choices. Besides John Cusack as a hit-man, which we saw years ago in Grosse Point blank which I liked. <br /><br />Here we have Hilary Duff playing a Russian pop star named Yonica Babyya or something like that. Her character is odd. There is a scene where she sticks a scorpion down her pants. And hits on Hauser(Cusack). There is a twist in the end involving the two characters. It makes sense.<br /><br />That is the only casting choice I am going into. Cause it just plain strange. The whole movie is strange. But at times incredibly funny and I was never bored. Here we have some of the best actors out there. Excluding Miss Duff. She ain't great. But here we have John Cusack, Marisa Tomeii, Joan Cusack, Ben Kingsley. See what I mean?<br /><br />This is the story of a hit-man named Hauser(Cusack). He is sent down to some Middle Eastern city to put a hit on an oil man named Omar Sheriif(not the actor). While trying to deal with his own personal problems, he has to help out the wedding of a popstar(played by Hilary Duff). And he falls in love with a news reporter(played by Marisa Tomeii). There is a thing about the popstar though. Hauser is disgusted by her. There is a scene where she is singing a song to him and afterwards he throws up.<br /><br />The twist in the end of the film reveals kind of why. The thing about the twist is that I did kind of see it coming. But that doesn't matter. This is a strange, funny, and entertaining comedy. I love most of the actors. So really, how could I not recommend it?<br /><br />War,Inc.:3.5/5\r\n1\t\"A DOUBLE LIFE has developed a mystique among film fans for two reasons: the plot idea of an actor getting so wrapped up into a role (here Othello) as to pick up the great flaw of that character and put it into his life; and that this is the film that won Ronald Colman the Academy Award (as well as the Golden Globe) as best actor. Let's take the second point first.<br /><br />Is Anthony John Colman's greatest role, or even his signature role? I have my doubts on either level - but it is among his best known roles. Most of his career, Ronald Colman played decent gentlemen, frequently in dangerous or atypical situations. He is Bulldog Drummond (cleaned up in the Goldwyn production not to be an arrogant racist) fighting crime. He is Raffles, the great cricket player and even greater burglar, trying to pull off his best burglary to save a friend's honor. He is Robert Conway, the great imperial political figure, who is kidnapped and brought to that paradise on earth, Shangri-La. He is Dick Heldar, manfully going to his death after he learns his masterpiece has been destroyed and knowing he is now blind and useless as an artist. I can add Sidney Carton and Rudolf Rassendyll to this list. But here he is not heroic. In fact he is unconsciously villainous - he murders one person and nearly kills two others. It does not matter that he is obviously mentally ill - his behavior here is anti-social.<br /><br />To me Colman should have gotten the Oscar for Heldar, or Carton, or Conway - all more typical of his acting roles. But the Academy has a long tradition of picking atypical roles for awarding it's treasure to it's leading members. Colman's Anthony John is a very good performance, and at one point truly scary. When alone with Signe Hasso in her home, she at the top of a staircase and him at the base, they have an argument. She demands that \"\"Tony\"\" leave, saying she won't see him. He stares at her, his face oddly hardening in a way he never used before, and he says, \"\"Oh, no you won't!\"\" He starts moving upstairs, frightening Hasso, and she runs into her room. He stops himself and leaves. It actually is the real highpoint of his performance - even more than his assaulting of Hasso on stage, or of Edmond O'Brien, or his killing of Shelley Winters. It showed his blind fury. For that moment it was (to me) an Oscar-worthy performance. But it is only that moment. I'm glad he was recognized for the role, but he should have gotten the award for a more consistent performance.<br /><br />His actual performance in the Shakespearian role of Othello is not great, but bearable. Too frequently he lets the dialog roll off his tongue in a kind of forced singing style (one wonders if that was due to the coaching of Walter Hampden, who probably knew how to handle the role properly, or a reaction to it). Nowadays \"\"Othello\"\" is played by an African American actor more frequently than a white one. Paul Robeson's brilliant performance in the role set that new tradition firmly into place. But the three best known movie performances of the part are those of Colman, Orson Welles in his movie of OTHELLO, and Laurence Olivier in his movie of his play production of OTHELLO. All three white actors did the role in black face. My personal favorite of the three is Welles, who seems the most subtle. But even watching Welles' fine film version makes me angry that Robeson never got to put his performance (with Jose Ferrer as Iago) on film.<br /><br />Now the first question - can an actor get that wrapped up in a role? I heard different things about this. Some actors have admitted taking a role home with them from the theater or movie set. Others have found a role they have to be stimulating, influencing them on a new cause of action regarding their lives or some aspect of life. But actually I have never heard of anyone who turned homicidal as the result of a role. It seems a melodramatic, hackneyed idea.<br /><br />As a matter of fact it was not a new idea in 1947 with Cukor, Kanin, and Gordon. In 1944 a \"\"B\"\" feature, THE BRIGHTON STRANGLER, starring John Loder, had used a similar plot about an actor who is playing an infamous \"\"Jack the Ripper\"\" type, and who starts committing those type of killings after an accident affects his mind. There was an earlier movie in the 1930s, in which an actor playing Othello gets jealous of his wife (I think the title was MEN ARE NOT GODS, but I'm not sure). But due to Colman's name and career, and Cukor's directing, it is A DOUBLE LIFE that people think of when they recall this plot idea. It even reached comedy (finally) on an episode of CHEERS, where Diane Chambers is helping an ex-convict who may have acting talent, and they put on OTHELLO at the bar, just after he sees her with Sam Malone kissing. Only Diane is aware of the personality problem of the ex-convict, and can't delay the production long enough (she tries to start a discussion into the history and symbolism of the play). <br /><br />The cast of A DOUBLE LIFE was first rate, and Cukor's direction was as sure as ever. So the film is definitely worth watching. But despite giving Colman an interestingly different role, it was not his best work on the screen.\"\r\n1\tI was prepared for a turgid talky soap opera cum travelogue, but was pleased to find a fast-paced script, an underlying moral, excellent portrayals from all the actors, especially Peter Finch, amazing special effects, suspense, and beautiful cinematography--there's even a shot of the majestic stone Buddhas recently destroyed by the Taliban. Not to mention Elizabeth Taylor at her most gloriously beautiful and sympathetic, before she gave in to the gaspy hysterics that marred her later work. All the supporting players round it out, and I do wonder who trained all those elephants.<br /><br />Speaking of the stone-Buddha sequence, you really can discern that it's Vivien Leigh in the long shots. Her shape and the way she moves is distinct from Taylor's. The only thing marring that sequence are the poorly done process shots, where the background moves by much too fast for horses at a walk.<br /><br />If you want a thought-provoking film that is beautiful to watch and never boring, spend a few hours with Elephant Walk.\r\n0\tThis movie does have some great noirish/neorealist visuals, and it tells a story that is refreshingly free of Hollywood's sugar-coating, which was only possible because it was essentially an independent foreign film. But some of the scenes go on for much too long (the wedding, especially), and I found the exaggerated acting and unrealistic dialog to be more fit for the stage than for the silver screen.<br /><br />The dialog was particularly distracting, and it seemed to get worse as the movie went on. Most of the characters were either Italian-Americans or Italian immigrants living in New York in the twenties and thirties, but their dialog sounded like they were practicing lines for a Shakespeare play while they mixed cement and laid bricks. Toward the end I was laughing, and not because the filmmakers wanted me to. I guess the stilted poetry could be defended by saying that the characters would have been speaking Italian, and the dialog is a literal translation of how they would really talk. But it absolutely did not work for me.<br /><br />Another line of dialog made me laugh for a different reason: the main character's son, born and raised in New York in the 1920's, suddenly picks up a lovely lilting British accent. I'm only guessing this had something to do with the fact that the movie was made in England.<br /><br />I give this movie an 'A' for effort and intention, but a considerably lower grade for execution.\r\n0\t\"I'm not quite sure why, but this movie just doesn't play the way it should. It should be humerous and fun, but instead is just boring. I think a large part of it is because they way over played the \"\"gadgets.\"\" The old cartoon it is based on is much better.<br /><br />3/10\"\r\n1\tCary Grant, Douglas Fairbanks Jr. and Victor McLaglen are three soldiers in 19th Century India who, with the help of a water boy (Sam Jaffe) rid the area of the murderous thuggee cult. The chemistry between the actors helps make this one of the most entertaining movies of all time. Sam Jaffe is exceptional as the outcast water boy who is mistreated by all and still wants to be accepted as a soldier in the company. Loosely based on Rudyard Kipling's poem. A must see by anyone who enjoys this type of movie.\r\n0\tThis movie was 100% boring, i swear i almost died from boredom at the theater. It wasnt funny and didnt really hve that much action in it either, it was BORING and i hope whoever out there that liked this movie, god be with you in the future when you find out what this movie was really like and try to jump off a bridge or something like that\r\n1\t\"Forget that this is a \"\"B\"\" movie. Forget that it is in many ways outdated. Instead give writer-director Ida Lupino much deserved credit for addressing a subject which at the time (1950) was taboo in Hollywood. To my knowledge, this was the first film to address the subject of rape and the emotional and mental effects that that crime has upon its victims.<br /><br />Although much of the cast's acting is pedestrian at best, Mala Powers, who at the time was eighteen or nineteen, gives an excellent performance throughout as the traumatized young woman, Ann, who tries to run away from her \"\"shame.\"\" Based on her work in this film, I'm surprised that she did not have a more successful acting career. Tod Andrews, too, has some fine moments as the minister who reaches out to help her.<br /><br />Ms Lupino, obviously working on a limited budget, was still able to create some memorable scenes such as the pursuit through the streets and alleys leading to the rape, and the police lineup following it. And, she created a bittersweet ending which left me wondering if Ann really could ever have a normal life again.\"\r\n0\tA bloody maniac with cannibalistic tendencies rapes a woman. He's been shot by two policemen and then he is risen from the grave because of some sort of satanic ceremonial rite preformed by an evil heresy. The hunting of women continues by this zombie-demon. The sacrificed baby returns from the grave and wants the maniac dead again, but only with the help of the police this will come true...<br /><br />A bloody 65-minute mess...Horny zombies, doll-babies, S&M, corrupted and twisted policemen, repented heretics who seek refuge in front of Jesus Christ and three text-screens at the end of the film explaining us what finally happened to the policeman who survived (yes, we ought to know!)... Two decent disemboweling shots can't save the situation. I've seen worst horror-flicks, but this one was pretty bad too. Recommended only for the die-very-hard fans of the genre.\r\n1\tMy favorite movie. What a great story this really was. I'd just like to be able to buy a copy of it but this does not seem possible.\r\n0\tJust saw the movie this past weekend, I am upset, and disappointed with it. Basically, the movie tells you that immigrants, the ones from former Soviet Union especially, come to this country, bring everyone they can with them from the old country, and invade and take over what Americans have been working for. Which is a very wrong way of looking at immigration, and a much worse way of telling people about it. That's the main thing. Another thing, the overall writing, directing and filming is on the level of village amateurs. The actors did pretty well, but it wasn't up to them save this bunch of crap. A few jokes were funny, but most were bad and cheesy. Couldn't wait to get out of the theater, want my money back.\r\n0\tit was the worst ending i have ever seen if some one can please tell me how and why the last chick goes crazy and eats the old women in the end. why dose the movie have all those cheap crappy scares in it in the beginning but yet when the first person dies they kill them all off in 5 minutes! most of the people could act but i do give so credit to the porn stars they did their best. also it had a couple funny parts and kills like when the care taker gets his organs riped out of his ass and then gets choked with it. if this movie had an ending that could make any since i would have given it a 8 out of 10 but the ending made no since. the ending sucked but the rest was great\r\n1\t\"Following a roughly 7 year rocky road on NBC, it was decided to do just one last Super Installment. The Series had been on the bubble several times thanks to not having the numbers that would qualify it as a block-buster of a TV hour. It had always had a sizable, hard core of hard corps of followers. <br /><br />It was almost as if the series with the full title of \"\"HOMICIDE: LIFE ON THE STREET\"\" (1993-99) was a sort of \"\"Mr. In-Between\"\" of series. It was too big to just cancel, but too small to get a case of 'Rabid Ratings Ravings' over. <br /><br />During the precarious tenure on Friday evenings, they had presented some of the best and most daringly Artistic of Hourly Dramas. There, I've said it Artistic, Artistic!! But please, remember we mean Artistic, but not just Phony, Pretentious, Pedantic, Politically Correct preaching.<br /><br />When at last, it was a sure thing that it was the end of the line for \"\"HOMICIDE\"\"; this super episode was prepared as this 2 hour made for TV Movie. <br /><br />Looking at all the past seasons' happenings and parade of regular characters, the Production team went out and gave us what proved to be a super send off.<br /><br />OUR STORY. As we join the story, we find that Baltimore Homicide Unit Commanding Officer, Lt. Al Giardello has \"\"pulled the pin\"\", Retired from the job, that is. But 'G' isn't ready to really retire-retire yet. So, instead of a rocking chair o a fishing rod, we find that Al is running for Mayor of 'Charm City.'<br /><br />While out in the City, making some campaign stops and speeches, the former Detective Lieutenant takes an assassin's bullet. Alive, but in a comatose state, he is taken to the Hospital. <br /><br />News spreads quickly and as if officially summoned, we find all of the Detectives of the Baltimore Unit we've seen on the show showing up to offer their services and assistance. There is a great meeting of all of these former and present gumshoes as they pitch in and follow every lead and possibility of a lead.<br /><br />The Producer found a way to deal with those who had died previously in bringing their memory into the story. They managed to answer some long standing questions and even introduced some here to unrevealed ones. The whole story winds up the series in a most satisfying and original way. But at least for now, we'll leave that as \"\"classified\"\".<br /><br />In wrapping up everything into a neat, little package, this TV Movie surely gets our endorsement. As for grading \"\"THE HOMICIDE MOVIE\"\", we must give it an A or A+, even. But, no matter the Grade here, it didn't score as high as a typical weekly episode.\"\r\n0\t\"a friend of mine bought this (very cheaply) and decided to give it to me as a birthday present. i thought i'd never watch it 'cause i knew it was a joke and the cover of the DVD looked pathetic, but then my friends and i got really bored and watched it. from start till finish! i know quite an accomplishment but it really is a masterpiece. it's hard to describe. you should see it, it's a real lesson on what people are capable of when they believe they're creative and smart and really aren't. The \"\"acting\"\" is sous-terrain (you can actually see the \"\"leading lady\"\" laugh on some occasions, she's definitely the worst). the \"\"story\"\" is to stupid to be summed up and really everything in this film sucked. please, pay special attention to \"\"the sheriff\"\". the guy is an adult and therefor has absolutely no excuse to be involved in this. he's extremely bad as well. whatever it did have some hilarious moments. check it out, haha\"\r\n1\tThis movie is Jackie's best. I still cant get enough of watching some of his best stunts ever. I also like the bad guys in this movie (the old man looks like a Chinese version of John Howard). Unlike some of Jackie's other work, this movie has also got a great story line and i recommend it to all of Jackie's fans.\r\n1\tFor everyone who expects a traditional superhero-movie it might be an unpleasant surprise. It is definitely more of a drama rather than an action movie. It focuses mainly on emotions and it's a bit like a Greek tragedy - whatever the main character does it always goes wrong somehow.<br /><br />That's because Sasha, like each superhero, takes the law into his own hands and the society doesn't appreciate it. Sasha becomes an outlaw. While on the run, he meets a beautiful girl and falls in love so things get even more complicated for him.<br /><br />As you can see, the plot itself is really dramatic but the movie lacks in dynamics. It reminds me slightly of the narration in the recent movies by Ram Gopal Varma. Everything happens very slowly. However, when there's an action scene it gets so immensely dynamic that before you realize what's going on, it's all over. But the director does not want to impress us with flashy and showy action. What is more important here is the outcome of Sasha's actions, which are mostly very drastic. The score is very scarce, which also makes it more difficult to concentrate on the film. So basically you need to be very patient in order to watch it.<br /><br />Is the film worth it? That is a question really difficult to answer. I don't think that this experience enriched me so very much, but somehow I keep on thinking about this movie and feel like watching it again. Mostly due to the atmosphere, which is really dense, but not suffocating because all the time Sasha and Katya have hope. After all they're young people, who have all their lives to live. So no matter how hard it gets there's always a slight joyous tune when they are together.\r\n1\t\"If you have any kind of heart and compassion for people, this is a tough movie to watch, at least in the second half of it. <br /><br />It's in that segment where we see nice little kid get beaten up and then a retarded (mentally- challenged) man go off the deep end after he witnesses this brutal act against the child. It's not pleasant material.<br /><br />However, it's a good movie and the acting is good, too. The story will sit with you awhile.<br /><br />\"\"Dominick\"\" is the mentally-disabled guy and is played by Tom Hulce. I think this might be Hulce's best role ever. He's looked after by a med student, \"\"Eugene,\"\" played by Ray Liotta, who became a star the following year with Kevin Costner's \"\"Field Of Dreams.\"\"<br /><br />Dominick is a goodhearted garbage man who reads \"\"Hulk\"\" comic books and loves wrestling. He's the type of \"\"slow\"\" guy that you can't help but love and root for to live a happy life. When he freaks out, it's for several good reasons and...well, see the film for the whole story. It's worth your time but be prepared to go on real emotional roller coaster and possibly be very upset at some things you see.\"\r\n1\tI love this show! It's like watching a mini movie each week!!! The first episode was so gripping and terrifying...so was part 2 of the pilot... I'm definitely gonna keep tuning into this show! This is the real Survivor! I've looked at a few of the other comments and I can see that already after just one or two episodes the morons here are already crying wolf... Sorry if it's not another reality show, kiddies! There was once a time where there were...now brace yourself! Actual TV shows! And this one is actually good unlike most of the crappy sitcoms today or the ump-teenth carbon copy of a Law & Order or NYPD Blue or CSI series they're dishing out... Watch this yourself to form your own opinion, don't take one from the boneheads here!\r\n1\t\"Stephane Rideau was already a star for his tour de force in \"\"Wild Reeds,\"\" and he is one of France's biggest indie stars. In this film, he plays Cedric, a local boy who meets vacationing Mathieu (newcomer Jamie Elkaim, in a stunning, nuanced, ethereal performance) at the beach. Mathieu has a complex relationship with his ill mother, demanding aunt and sister (with whom he has a competitive relationship). Soon, the two are falling in love.<br /><br />The film's fractured narrative -- which is comprised of lengthy flash-backs, bits and pieces of the present, and real-time forward-movement into the future -- is a little daunting. Director Sebastien Lifshitz doesn't signal which time-period we are in, and the story line can be difficult to follow. But stick it out: The film's final 45 minutes are so engrossing that you won't be able to take your eyes off the screen. By turns heart-breaking and uplifting, this film ranks with \"\"Beautiful Thing\"\" as must-see cinema.\"\r\n0\t\"Kurt Thomas stars as Jonathan Cabot some kind of a gymnast who trains for a special game which involves being hunted by a group of ninjas, but those ninjas won't stand a chance, especially since Cabot is a gymnast! Taken as a whole Gymkata is one helluva bad movie, the atrocious acting, the god-awful script and really incompetent directing make the quality below human standards, however this movie is so terrible it becomes really, really funny. I mean with dialog such as \"\"I know I'll outsleep them!\"\" or \"\"Ha!, your through!\"\" only add to the mock value that Gymkata more then obtains. Besides it's (Wisely) the only movie that has are hero a gymnast who finds things to swing on in the heat of the moment.\"\r\n1\tA year or so ago, I was watching the TV news when a story was broadcast about a zombie movie being filmed in my area. Since then I have paid particular attention to this movie called 'Fido' as it finished production and began playing at festivals. Two weeks ago Fido began playing in my local theater. And, just yesterday, I read a newspaper article which stated Fido is not attracting audiences in it's limited release, with the exception of our local theater. In fact, here it is outdrawing all other shows at The Paramount Theater, including 300. Of course, this makes sense as many locals want to see their city on screen or spot themselves roaming around in zombie make-up. And for any other locals who haven't seen Fido yet but are considering it, I can say there are many images on screen, from the school to city park to the forbidden zone, that you will recognize. In fact, they make the Okanagan Valley look beautiful. That's right beautiful scenery in a zombie movie! However, Fido itself is a very good movie. Yes, despite its flaws, it is better then most of the 20 other movies playing in my local market. Fido is best described as an episode of Lassie in which the collie has been replaced by a member of the undead. This is a clever premise. And the movie even goes further by taking advantage of the 1950's emphasize on conformity and playing up the cold-war paranoia which led to McCarthyism. Furthermore, it builds on the notion that zombies can be tamed or trained which George Romero first introduced in Day Of The Dead.<br /><br />K'Sun Ray plays a small town boy who's mother (Carrie-Ann Moss) longs for a zombie servant so she can be like all the other house wives on her block. However, his dad (Dylan Baker) is against the idea as he once had to kill his own 'zombie father'. Eventually, the family does acquire a zombie named 'Fido' (played by Billy Connolly), and adjusts to life with the undead. Billy Connolly was inspired casting. He is able to convey Fido's confusion, longing, hatred, and loyalty through only his eyes, lumbering body, and grunts. Connolly shows that he can play understated characters better than his outrageously comedic ones. This is his best role since Mrs. Brown.<br /><br />Fido follows in the footsteps of other recent zomcoms such as Shawn Of The Dead and Zombie Honeymoon. Being someone who appreciates Bruce Campbell and Misty Mundae movies more than Eli Roth and Jigsaw ones, I prefer humor over gore in my horror. However, I understand the criticism of those horror fans who feel there is not enough 'undead carnage' in Fido. Yet, I am sure patient viewers will be rewarded by the films gentle humor.<br /><br />The movie does break down in it's third act. It's as if the writers were so wrapped up in the cute premise of domesticated zombies in the 1950s, they forgot about the story arc. However, given my interest in horror comedies and my appreciation for seeing the neighborhood on screen, I rate Fido 9 out of 10.\r\n0\t\"Aside for being classic in the aspect of its cheesy lines and terrible acting, this film should never be watched unless you are looking for a good cure for your insomnia. I can't imagine anyone actually thinking this was a \"\"good movie.\"\"\"\r\n1\tThis is an very good movie. This is one that I would rent over and over again. It is not like your normal superhero movie. This movie blends comedy, action and great special effects. It even has a person in it that does a lot of voices on The Simpsons. William H. Macy is the bomb.\r\n0\tThis movie makes a promising start and then gets very confused and muddled. Kamal Hasan has made a lot of effort in getting the period look right, pity he did not spend more time on the plot. Most of the small characters in the movie show up for no particular reason.<br /><br />Overall very disappointing, I would recommend avoiding this movie.\r\n0\t\"This is a film that belongs firmly to the 50's. Very surprising that American Film Institute has chosen this one for one for the best 100 American movies of all-time. I have seen practically all of the movies on that list, and this one is by far the most disappointing one of those. Musical numbers (and there many, many of them) are VERY overlong and boring, and have absolute no connection with the story. The end of the movie has horribly over-long ballet sequency, which naturally has no real relation to the story of the movie. It must be admitted, that it is very well made, the music is OK, and the dancing done with the highest professional standard - but there is no real reason why the sequence is included in the movie.<br /><br />The main character of the movie is extremely childlish and unlikeable and behaves in unpolite way. His mental age is about 14. If you want to see a good musical made on the \"\"golden age\"\" of musicals, go and see \"\"Singing in the Rain\"\".\"\r\n0\t1st watched 2/16/2002 - 4 out of 10(Dir-Arne Glimcher): Mystery??/Thriller with too many ridiculous plot twists. Despite the very talented cast this movie is way too predictable and just downright under-estimates it's audience. The movie-going public is not stupid and I hope will not keep filling certain stars pockets again and again despite what they are involved with. We think that this movie is going to be about something with Connery's conviction against capitol punishment in the beginning but it turns out to be nothing but a standard, contrived for the audience's sake, run of the mill, let's never get it over with, thriller. We are pulled into every silly switch in character, as they are portrayed to us when it's needed in the story, and we're ready for this thing to be over way before it ends. Yes there is some good acting here, especially from Blair Underwood, Fishburne, and Ed Harris in a psycho-supporting role but the story does not work from almost the beginning to the very long-awaited end.\r\n0\tAt the end of this episode Holmes asks Watson not to record the case for posterity.For a good reason! The super sleuth left his little grey cells(sorry Agatha)at home for this tale. There is no deductive reasoning,no acute analysis of signs at crime scenes. Holmes bumbles along fifty yards behind the plot. The dastardly CAM is finally dealt to by an old frail-in a manner that would have made Charles Bronson's heart swell with pride-six bullets in the breadbasket.In an ensuing chase a pursuer gets hold of one of Watson's shoes.Mercifully the writer didn't decide to tack on the story of Cinderella to lengthen the film.The murderess,Holmes and Watson,escape scot free. Oh well,it is a bit of a change of pace in late Victorian London.A bit of sixgun law:-)\r\n1\t\"In the previews, \"\"The 40 Year-Old Virgin\"\" boasts the image of another immature sex romp about a 40-ish Lonely Guy who suddenly feels the urge to do the deed simply because he hasn't. Too many past bad experiences have dampened his enthusiasm to the point that he avoids women completely. And then the unexpected happens: he falls in love. What's more, there's a movie out about it, and it's called \"\"The 40 Year-old Virgin.\"\"<br /><br />The virgin of the title is Andy Stitzer (Steve Carell), who is indeed 40, works as an employee at an electronics store and collects vintage action figures, which are displayed all throughout his nice bachelor pad for all to see. He has a lovely home theater system and watches \"\"Survivor\"\" with his two kind elderly neighbors. He's a pretty picturesque definition of the Lonely Guy who needs to go out more and talk to more women.<br /><br />Now here's the real novelty with this picture: it does the impossible task of actually dealing with its subject matter in a cute, mature fashion. This is a movie that could very easily have turned out a lot differently in the hands of a more transparent team of filmmakers. It could have descended into endless sex gags and jokes but thankfully this picture never stoops that low. Sure there are sex jokes here and there and even a few prods are aimed at the gay community (which are, in no way, meant to be taken as gay-bashing), as two of the characters exchange insults towards each other while playing a video game (\"\"Mortal Kombat: Deception,\"\" no less - the ultimate testosterone-driven fightfest for guys).<br /><br />As someone who is rapidly approaching 20, collects McFarlane Toys action figures AND has himself never done the deed, I found this film amusing and touching in a way that a similar-themed movie could never have been. I was able to relate to the character of Andy Stitzer more than anyone in the theater because I was the only teenager present at this showing; everyone else looked like they were all past 40. A bit arrogant, I know, but would you (\"\"you\"\" is italicized) still be able to relate if you were the only teen present at an afternoon screening of \"\"The 40 Year-Old Virgin\"\"?<br /><br />Of course Andy has never had sex and wakes up everyday with \"\"morning rise\"\" (don't ask), and he's pressured by his buddies to try outlandish methods of gaining the attention of the opposite sex. When it's first discovered Andy is a virgin, at 40, his three buddies and fellow electronics store coworkers David (Paul Rudd), Jay (Romany Malco) and Cal (Seth Rogen) all at first assume he's gay because he's never been with a woman, which couldn't be any further from the truth. The truth is, Andy loves women, but past traumatic experiences (revealed hilariously one after the other in a flashback sequence) have put him on the sidelines for good.<br /><br />David, Jay, and Cal each embark on a mission to get Andy laid, so help them all. But you know that such escapades will only end in disaster, as proved by one date with Nicky (Leslie Mann), who puts Andy through the worst drunk-driving experience I think anyone would not want to go through and he has a rather creepy encounter with Beth (Elizabeth Banks), the pretty girl who works in the bookstore and is eventually revealed to be a total sex fiend.<br /><br />Things brighten up for Andy when he meets Trish (Catherine Keener), the friendly woman who works at a store across the street that sells stuff on eBay for people. Hmmm. And with that nice-looking collection of action figures, you can go figure that in the end a large financial payoff awaits him, that is if he can ever \"\"do the deed.\"\"<br /><br />At last, this is the sex romp we've been waiting for. It deals with a very real issue a lot of Lonely Guys probably go through, not that anything is wrong with being a virgin but let's look at the big picture: How many of us \"\"Lonely Guys\"\" want to be a lonely guy forever? The important thing we're taught in this picture is that Lonely Guy must be himself. I don't think he needs to go through body waxing like Andy does (which is side-splitting to be honest, and according to this website and various other news articles, was in fact real, and so was the blood on Carell's shirt afterward).<br /><br />\"\"The 40 Year-Old Virgin\"\" was directed by Judd Apatow and co-written by himself and Carell, which originated as a skit that starred Carell. Carell is sweet and human, as his character is not some layabout who approaches this thing with his eyes shut. This is probably one of the most intelligent romps I've ever seen and is not offensive (a whole lot) because its characters are treated with dignity and respect. Even Carell's buddies, who pass off bad advice to cover up their own relationship insecurities, can be related to on a fundamental level.<br /><br />The way \"\"The 40 Year-Old Virgin\"\" plays out is indeed funny in the end, but I'll leave that up to you, the viewer, to observe. Surely, if anyone can go through the things Andy does and still have the strength to attract a woman as sexy as Catherine Keener, then it's true: It is never too late!<br /><br />10/10\"\r\n1\t\"I sought this film out because I'm a new Frain fan and wanted to see more of his work. First of all, his Irish accent is great. He's got a keen ear for dialects, it seems. His acting was marvelous, as usual. James Frain aside, I thought the film was very well done. It showed the conflict in Northern Ireland as the *mess* it really is. Both sides are guilty of grave injustices, and the men drawn into the conflict usually have very little to say about their circumstances.<br /><br />Also, it is interesting to realise that not every man (or woman) that is supposedly fighting for his country, is really doing *just* that. For example, when Kenny (James Frain) asks Ginger (Ian Hart) why he does \"\"it\"\", Ginger can't come up with a morally acceptable answer. Why? Because Ginger isn't in it for the noble cause of protecting his country or the rights of his fellow Protestants...Ginger is in it for the fun of killing. He's full of blood-lust and it's the perfect job for a guy like him. In a struggle like this there are guys like Liam (John Lynch) who just want to live their daily lives and enjoy their families...guys that see all of the fighting just begats more fighting. There are guys like Kenny that are born leaders full of charisma, and they add fuel to the flames, rather they mean to or not. Also, Kenny genuinely believes in the \"\"cause\"\". He believes what he is doing will make a difference in the future...which is a bit odd 'cause his character seems too intelligent for it all. But, like a lot of other seemingly intelligent men, he is sucked into a gang lifestyle not even realizing it...'til it's too late. Then there is Ginger, a pure psycho who isn't in the fighting for any other reason but for the sheer thrill of it, which in a gangland type war makes him a valued asset, some might argue. However, now, in this film, Ginger has out lasted his worth, and has become a very dangerous loose cannon.<br /><br />Everything comes to a boiling point, and predictably, the ending is a tragic one. What makes this film worthy is that is shows both sides of this ages old conflict. Being American, I can't begin to fully understand what all struggle is about. But, I do know there has to be a better way.<br /><br />All in all, a well acted, touching...but troubling film.\"\r\n1\t\"Writer/Director John Hughes covered all bases (as usual) with this bitter-sweet \"\"Sunday Afternoon\"\" family movie. \"\"Curly Sue\"\" is a sweet, precocious orphan, cared for from infancy by \"\"Bill\"\". The pair live off their wits as they travel the great US of A. Fate matches them with a \"\"very pretty\"\" yuppie lawyer, and the rest is predictable.<br /><br />Kids will love this film, as they can relate to the heroine, played by 9 year old Alisan Poter (who went on to be the \"\"you go girl!\"\" of Pepsi commercials). The character is supposed to be about 6 or 7, as she is urged to think about going to school. Some of her vocabulary suggests that she is every day of 9 or older.<br /><br />Similar to \"\"Home Alone\"\", there is plenty of slap-stick and little fists punching big fat chins. Again, this is \"\"formula\"\" film making, aimed at a young audience. Entertaining and heartwarming. Don't look for any surprises, but be prepared to shed a tear or two.\"\r\n1\tI gotta say, Clive Barker's Undying is by far the best horror game to have ever been made. I've played Resident Evil, Silent Hill and the Evil Dead and Castlevania games but none of them have captured the pure glee with which this game tackles its horrific elements. Barker is good at what he does, which is attach the horror to our world, and it shows as his hand is clearly everywhere in this game. Heck, even his voice is in the game as one of the main characters. Full of lush visuals and enough atmosphere to shake a stick at, Undying is the game to beat in my books as the best horror title. I just wish that this had made it to a console system but alas poor PC sales nipped that one in the bud.\r\n0\t\"The only thing that surprises me more than the number of people who liked this movie is that it was directed by Clint Eastwood, whose work I admire immensely. The leads had absolutely no chemistry. Not for a second could I believe that there was anything deeper than lust between them. The story just didn't ring true. Add to that stilted conversation, tons of stereotypes, and an incredibly slow plot that basically leads nowhere, and you've got yourself a real stinker. Kay Lenz's nude scenes might be worthwhile for those seeking some salacious fare, but otherwise this is a colossal waste of time. My thoughts as I watched the movie was that itwould have been better titled \"\"Cheesy.\"\"\"\r\n1\t\"This film takes you to another time when there was a different pace to everyday life. We get an idea how families had to deal with the war and how quickly we sent young men off to fight. A very touching look at the past and a reminder that casualties of war don't just happen on the front.<br /><br />Luckily many of us have never had to go through what our great-grandparents, grandparents or parents went through during a war. This film, I think, is a small thank you. Peter Outerbridge looks amazingly like a young Peter O'Toole and Russell Crowe is absolutely charming and as Australian as he can be. It's definitely worth listening to him recite \"\"High Flight\"\" and makes me wonder what he might accomplish with Shakespeare.\"\r\n1\t\"\"\"The first war to be 100% outsourced.\"\" Dan Ackroyd's line says it all. This is a hard to describe film; comedy, satire, action, screwball. It reminded once or twice of Dr. Strangelove, especially so in the scenes featuring Ben Kingsley (who did a remarkable job I think). I had no particular expectations of this film, though I am a big John Cusack fan, so I just let the movie wash over me. And as a result I was quite entertained. The political satire is painfully accurate and quite damning of the US military-business complex. The sub-plots were somewhat predictable but the final interweaving of story lines made them all worthwhile. I can understand why this film was not terribly popular in the US, but for the rest of the world, it is a timely tale.\"\r\n0\t\"******SPOILERS******<br /><br />The unfunny radio quiz show host Kyser and his mediocre band are the excuse for Lugosi, Karloff, and Lorre to pick up a paycheck in this bland, sporatically watchable haunted house spoof. Lugosi is a mystic whose seances are exposed as a fraudulent attempt to bilk an heiress' fortune; Karloff is the butler and Lorre is a professor who exposes fake mediums, but it turns out that they're both in conspiracy with Lugosi. <br /><br />Of course, Kay Kyser and his band of 30-something year old \"\"kids\"\" uncover the truth with the minimum of possible humor along the way. Not recommended to any but the absolute horror completist.\"\r\n0\tWell, what was fun... except for the fun part.<br /><br />It's my second least favorite so far, I even thought it was worse than 'Lazarus' and 'Ghost in the Machine'.<br /><br />Let's start with the good. The teaser, it was incredibly well done and also emotional. Being the great animal lover that I am, it was fun seeing so many beautiful animals in this episode.<br /><br />But then there's all the bad, and believe me there is a lot of it. Little made sense, so those animals were being abducted by aliens and impregnated? whaaa??? the dialog was also pretty awful. There were about one or two quotable lines. <br /><br />and worst of all, having pretty much all those animals die was very unpleasant for me. In the end... what's the point? they all pretty much died. We didn't learn anything, we weren't entertained, and I couldn't even find Sophia's death sad... just very frustrating.<br /><br />* star. shame because Season 2 was doing so well.\r\n1\tMitchell Leisen's fifth feature as director, and he shows his versatility by directing a musical, after his previous movies were heavy dramas. He also plays a cameo as the conductor.<br /><br />You can tell it is a pre code movie, and nothing like it was made in the US for quite a while afterwards (like 30+ years). Leisen shot the musical numbers so they were like what the audience would see - no widescreen shots or from above ala Busby Berkeley. What I do find funny or interesting is that you never actually see the audience.<br /><br />As others have mentioned the leads are fairly characterless, and Jack Oakie and Victor McLaghlan play their normal movie personas. Gertrude Michael however provides a bit of spark.<br /><br />The musical numbers are interesting and some good (the Rape of the Rhapsody in particular is amusing) but the drama unconvincing and faked - three murders is too many and have minimal emotional impact on the characters. This is where this movie could have been a lot better.\r\n1\tThe making of The Thief Of Bagdad is quite a story unto itself, almost as wondrous as the tale told in this film. Alexander Korda nearly went broke making this film.<br /><br />According to the Citadel Film series Book about The Great British Films, adopted son of the United Kingdom Alexander Korda had conceived this film as early as 1933 and spent years of planning and preparation. But World War II unfortunately caught up with Korda and the mounting expenses of filming a grand spectacle.<br /><br />Budget costs happen in US films too, only Cecil B. DeMille always had a free hand at Paramount after 1932 when he returned there. But DeMille nor any of his American contemporaries had to worry about enemy bombs while shooting the film. Part of the way through the shoot, Korda transported the whole company to America and shot those sequences with Rex Ingram as the genie in our Grand Canyon. He certainly wasn't going to get scenery like that in the UK. Korda also finished the interiors in Hollywood, all in time for a release on Christmas Day 1940.<br /><br />The spectacle of the thing earned The Thief Of Bagdad four Academy Award nominations and three Oscars for best color cinematography, best art&set direction for a color film, and best special effects. Only Miklos Rosza's original musical score did not take home a prize in a nominated category. Korda must have been real happy about deciding to shoot in the Grand Canyon because it's impossible to get bad color pictures from that place.<br /><br />The special effects however do not overwhelm the simple story of good triumphing over evil. The good is the two young lovers John Justin and June Duprez and the evil is Conrad Veidt as the sorcerer who tries to steal both a kingdom and a heart, both belonging to Duprez. This was Veidt's career role until Casablanca where he played the Luftwaffe major Stroesser. <br /><br />Of course good gets a little help from an unlikely source. Beggar boy and thief Sabu who may very well have been one of the few who could call himself at the time an international movie star. Literally rising from poverty working as an elephant stable boy for the Maharajah of Mysore he was spotted by Alexander Korda who needed a native lead for one of his jungle features. Sabu captures all the innocence and mischievousness of youth as he fulfills the Arabian Nights fantasy of the boy who topples a tyrant. Not a bad message to be sending out in 1940 at that.<br /><br />The Thief Of Bagdad holds up remarkably well today. It's an eternal tale of love, romance, and adventure in any order you want to put it.\r\n0\t\"2005 gave us the very decent \"\"gore porn\"\" flick Hostel, and 2006 gave us Live Feed; a not so decent rip-off of Hostel. Live Feed follows pretty much the same formula as Eli Roth's earlier film, except this time the dumb kids are in Asia rather than central Europe. The plot focuses on these dumb kids, and one of them has annoyed one of the locals so they find themselves in trouble. The locals decide to lock them all in a theatre, and kill them. Despite the fact that I'd heard some less than favourable things about this film before seeing it, I still hoped that it might be at least half decent because director Ryan Nicholson previously made the very decent 45 minute rape and revenge film 'Torched', but this film falls down simply because most of it is either ridiculous or boring. The film is obviously trying to hark back to the good old days of Grindhouse cinema (which Hostel did, successfully), but it really doesn't come off. Surprisingly, considering Nicholson's previous work in special effects - not even the gore is impressive...although it is a lot better than the acting! There's not much else I can say about this film...it's bad and not in a good way. Avoid it!\"\r\n0\tAnyone who thinks this film has not been appreciated for its comic genius must have been smoking with the two stoners in the film. This film is NOT under-rated...it is a bad movie. <br /><br />There should be no comparisons between this film and The Naked Gun or Airplane since the latter two films are well written and funny. Class Reunion is neither of those things. The sad thing is it had such potential (good cast, good story lines) but the good jokes are few and far between. The scenes that were supposed to be funny came off more annoying than amusing. The stoner guys, the vampire, the blind girl...NOT FUNNY. The only funny character were Delores (the one who sold her soul to the devil).<br /><br />National Lampoon has made some really good films (Animal House, Vacation) but this isn't one of them. I certainly expected more from John Hughes.\r\n0\t\"Robert Altman's downbeat, new-fangled western from Edmund Naughton's book \"\"McCabe\"\" was overlooked at the time of its release but in the past years has garnered a sterling critical following. Aside from a completely convincing boom-town scenario, the characters here don't merit much interest, and the picture looks (intentionally) brackish and unappealing. Bearded Warren Beatty plays a turn-of-the-century entrepreneur who settles in struggling community on the outskirts of nowhere and helps organize the first brothel; once the profits start coming in, Beatty is naturally menaced by city toughs who want part of the action. Altman creates a solemn, wintry atmosphere for the movie which gives the audience a certain sense of time and place, but the action in this sorry little town is limited--most of the story being made up of vignettes--and Altman's pacing is deliberately slow. There's hardly a statement being made (just the opposite, in fact) and the languid actors stare at each other without much on their minds. It's a self-defeating picture, and yet, in an Altman-quirky way, it wears defeat proudly. ** from ****\"\r\n0\tI gave it a 2 just because Natassia Malthe (as the vampiress Quintana) looks sooooo sexy in this movie.<br /><br />Certainly there is very little logic to this movie, but so are most of the sci-fi vampire flicks. The movie probably tried too much to break away from the traditional vampire stories. Unfortunately, it went too far and made the whole story not just unreasonable, but ridiculous.<br /><br />There is too much gore and too many rip-off-the-body scenes that made me feel sick. A good vampire movie should be more sensible that you don't need to see a lot of blood -- we all know when a vampire jumps on a human he/she is going to do what a vampire will do. A few moans or screams are all it needs to describe the scene (like the one at end when Quintana tries to sexually arouse Rosa, all it needs is a few moans, the rest is your imagination). Anyway, it's just my personal taste.\r\n1\t\"Sam Fuller's excellent PICK UP ON SOUTH STREET is the pick of the bunch from a number of early 50's Cold War-influenced low-budget noir vehicles. With a running length of under 80 minutes, PICK UP ON SOUTH STREET is tough, gritty, explosive and endlessly entertaining.<br /><br />Widmark stars as pickpocket Skip McCoy, who has already been picked up three times. Yet McCoy can't keep his wandering fingers out of trouble- and trouble is exactly what he slides into when he grifts the wallet of gangster's moll Candy (Jean Peters). Candy's wallet contains a roll of microfilm invaluable to the Communist movement, and it's her last job for ex-boyfriend Richard Kiley to make the delivery. However, when Widmark lifts it, Peters must do whatever it takes to re-claim the film she (initially) knows nothing about.<br /><br />It's a tasty set-up, with Widmark's character, while not the psycho of KISS OF DEATH, a real live-wire, unpredictable and tough, yet curiously charming.When Bogart or Mitchum stepped into a film noir role you knew what you were going to get: a lone anti-hero maintaining his moral integrity and winning out in the end (Bogart), or an overly-laconic guy who allows himself to be drawn into a trap (Mitchum). With Widmark you just don't know what you are going to get, and with his incredibly modern acting style (his films always hold up well) he is amazing to watch. Here he is torn between making a big score for himself by selling the film, or handing it over to the police and fighting the \"\"Commies\"\" on the right side of the law. And he still has to pretend he never pickpocketed Peters to avoid the fatal fourth rap on his sheet.<br /><br />Peters gets her best role as the moll-with-a-heart-of-gold Candy. Widmark's unpredictability is perhaps best expressed in his scenes with Peters; the gorgeous tramp quickly (and rather unbelievably- the romance angle is rather rushed)falls under Widmark's spell, yet Widmark alternates between kissing her or slapping her around. Peters hard-edged beauty, yet lack of over-lacquered Hollywood glamour (Lana Turner would never have worked well in this role), is a major asset to the film. Candy is not innocent, yet she's very vulnerable, constantly being passed between and slapped around by men. Widmark knocks her cold on first meeting and wakes her by pouring beer over her face, yet by the final act he's a lot more tender to her (after she cops one hell of a going-over from Kiley). The scene in the hospital with Peters and Widmark shouldn't work, but it does.<br /><br />Thelma Ritter is brilliant as stoolie Moe, well-deserving of her Oscar nomination. Ritter's performance, like everything else in the film, is gritty, real and heartbreakingly honest. Her death scene is stunning. Fuller's camera movements and location settings are particularly interesting. Fuller loved a good close-up, and PICK UP ON SOUTH STREET is full of uncomfortable, cloistering tight shots that only enhance the tension of the plot. Fuller isn't afraid to let the camera linger on a shot for longer than standard Old-Hollywood really allowed, yet stunningly pulls away from Ritter's death scene to give the audience maximum impact. The urban locales and unusual, confronting camera angles give PICK UP ON SOUTH STREET, a bold, uncompromisingly modern look.<br /><br />10/10.\"\r\n1\tThe year is 1896.Jeff Webster (James Stewart) doesn't like people.There's only one friend he's got and he's Ben Tatum (Walter Brennan), an old sympathetic man.They're driving a cattle herd with them.That would be their key to richness.In Skagway they run into trouble when Sheriff Gannon (John McIntire) takes the cattle.Now Jeff only has to get it back and drive it through the U.S. Canadian border to Dawson.Now they have a group of other people with them, like the ladies Ronda Castle (Ruth Roman) and Renee Vallon (Corinne Calvet).There the two men get into the gold business.Anthony Mann's and James Stewart's fourth collaboration, The Far Country (1954) is a fine western, indeed.The acting work is superb.Walter Brennan makes a terrific sidekick to Stewart.Ruth Roman is brilliant and Corinne Calvet's delightful.Jay C. Flippen is very good as Dawson Marshal Rube Morris.The great Jack Elam and Kathleen Freeman are seen in smaller roles.It's fantastic to watch how Jimmy Stewart overcome's all the troubles in his way.There's just the man and his rifle.But also he's vulnerable.\r\n0\tOkay, so I get it. We're supposed to be horrified. The idea has been planted. A girl is doing her dad and taking photos of it. Call me over the shock-rock genre but I call for the explicit detailing of an act before I can fall for this. But don't expect me to watch a soft-porn and become horrified that she is 'doing her father'...I mean hasn't that convention become a bit abused in the adult film industry already infiltrated with 'rape, and molestation' porn...Horror isn't what your mind can fool you into believing. It is what actually exists in film. This is where Miike fails in Visitor Q. Extremism becomes mild when it becomes a choose your own adventure.\r\n1\t\"For those who like their murder mysteries busy, this is definitely the one to see, as it is chock full of interesting and suspicious characters, most of them wealthy Long Island socialite types. As the star detective, William Powell is alternately starchy and inspired, behaving at times as if he and his suit went to the cleaners and got pressed together. Mary Astor is very lovely here. <br /><br />Powell had made a career out of playing the lead character, Philo Vance, in a series of movies made at a couple of studios over several years. In-between these films he developed into a somewhat offbeat romantic lead, at times even essaying gentleman gangster roles. Already middle-aged, he was stuck in somewhat of a career rut by the time this one came along. As with so many early talkie stars, it seemed that his time had come and gone, that he was fine for early Depression Prohibition-era films, but that with changing times he was perhaps too mature and dandyish to endure.<br /><br />The Kennel Murder Case, directed by the criminally neglected Michael Curtiz, is one of the last of the \"\"old Powells\"\", while the next year would herald in the first of the new ones, The Thin Man, the success of which would catapult its leading players into the Hollywood stratosphere. In Kennel we can see the movies still in a somewhat stiff, ritualized pattern, as the camera does not move much, with the acting, like the presentation, tending toward the theatrical. There's no harm in this approach, though, which has its charms. It gives the movie a baroque quality.\"\r\n1\t\"This was a delightful presentation. Hemo (blood) as a Greek god was so well played by the animation with vanity, arrogance, snobbish superiority and innocent wonder. The quote (or scene) I recall vividly is when Hemo tires of \"\"all this plumbing ... you haven't learned my secrets at all\"\" and threatens to storm out, the Scientist answers him in a single word \"\"Thalassa\"\" -- salt water which horrifies the Fiction Writer but mollifies Hemo and segues so neatly into the chemical aspects of blood. <br /><br />Such a splendid blend of entertainment and information make this a classic as fresh and engrossing today as the day it was released. Stimulating the interest and imagination is fundamental to teaching kids to love learning.\"\r\n1\tA surprisingly effective thriller, this.<br /><br />David Duchovny and Michelle 'Ensign Ro' Forbes are a successful, professional couple, he a writer, she a photographer. Forbes is desperate to move to California and, in an act of compromise, Mulder agrees to the move on the condition that, along the way, they visit sites of historical interest concerning famous serial killers. His idea: he writes the words, she takes the pictures, with the end result a bestselling coffee table book that will set them up for life. To help finance the trip, they decide to car share and advertise the fact. As their bad luck would have it Brad Pitt sees the advert and, shortly after killing his landlord, he and his girlfriend, Juliette Lewis, meet the writer couple and begin their cross country trek. Inevitably, mischief ensues.<br /><br />Pitt is outstanding as the genuinely chill inspiring Early Grayce and is capably backed up by Lewis playing her customary white trash character that seems to be her default setting. Duchovny and Forbes make for a convincing double act too and, as events spiral out of control, you as the viewer are sucked into their plight and can feel the tension ratcheting.<br /><br />Intelligent, sinister and beautifully shot, this deserves recognition beyond its current status. A top movie.\r\n1\tUnlike some comments, mine is positive. This movie wraps around the dinner table with a group of friends, some you like, some you don't. A few are related--mother, daughter, son. Their stories are not one smooth, happy with everyone and everything, type of life--much like real life. Some story lines do not evolve, they just happen. But like true families and good friends, they stick together. The wanna-be parents who are buying a baby are such a--holes! You are happy for the ending. Poor Delmar is stuck between a rock and a boulder taking care of herself, her mom, her son, and trying to keep all their lives together. This does not end with a sunset walk or house in the 'burbs and all are living in a dream world, but is a very real life portrayal of people living day to day, month to month. Overall, this is a good story and a great movie!!\r\n0\tSciFi has been having some extremely bad luck making quality movies lately (such as Minotaur or Dog Soldiers). Grendel is supposed to be based of the great epic Beowulf, however, it deviates so much (and offers so little in comparison) that the advertisements on television might as well have titled it 'some shitty Christopher Lambert movie'. I wasn't expecting it to be as accurate as a full blown Hollywood production, but I did however expect the 'artistic integrity' to not interfere with the actual story (even if a little bit was changed to make a two hour storyboard flow nicely in the allotted time slots).<br /><br />Did the director and producers have any idea about what they were doing (did any research go into this?). Obviously not, as one could tell from the massive horned helmets that Beowulf and his crew (save for mullet boy) are wearing. One major problem I have though was with the very look of Grendelif Beowulf is supposed to wrestle him, shouldn't he not have been sixteen feet tall and weigh 2 tons? Grendel's death segment was also lacking in every way  in my opinion the one in the epic was actually better than the made up junk on the script; for example: Grendel is supposed to have his arm ripped out from the socket by Beowulf  not cut off at the forearm after he was set on fire by an exploding arrow from a crossbow that looks like it weighs 300lbs! And Grendel's motherdid they just combine her with the dragon at the end of the epic where he eventually dies when he succumbs to his wounds? And honestly, what the hell was with that mullet? <br /><br />If you want to see this movie because its connection to the epic.don't, as there really isn't one (other than character names). The only way I could recommend this film is if you liked the movie Druids (directed by Jacques Dorfmann)  although I don't recommend watching either.\r\n1\t\"One used to say, concerning Nathaniel Hawthorne, that his failures were more interesting than his successes. I believe that the same remark could suit to McDonald-Eddy's pictures. And especially this one. <br /><br />It apparently possesses many characteristics of a failed movie: it's kitsch, the script, because of censorship, sounds inconsistent Yet, this movie gets also some good points: good Rodgers-Hart's music (\"\"I married an angel\"\", \"\"Tira tira tira la\"\"), good acting with E.E.Horton and Reginald Owen. <br /><br />Anyway, if you may dislike it, you can't forget it. This strange movie actually leaves a very strong, dreamlike, impression, and you are very likely to keep it in mind for days, maybe for weeks. Why? In the thirties and the beginning of the forties, movies didn't have the same mean than today: it aimed, like a dream, to divert the public in order to make it forget a difficult reality. Of all the the dream-movies that was made, in that time, this one stands as particularly powerful.<br /><br />In short, let's say that the better way to appreciate this movie, is to watch it without wondering whether it's good or bad. To watch it, like you would watch a dream.\"\r\n1\t\"I always said that the animated Batman movies were much better than the live action films.<br /><br />I've seen all of the animated films, but out of the bunch, this is the poorest, and it's rather disappointing.<br /><br />\"\"Mask of the Phantasm\"\" would rank as the best, then \"\"World's Finest\"\", then \"\"Sub Zero\"\", then \"\"Return of the Joker\"\", and finally this ranks last.<br /><br />In this newest animated movie, there's a mysterious new batgirl in Gotham and Batman is intent on discovering whether she's friend or foe as she sets out on a quest for vengeance.<br /><br />But as Bruce gets involved with three young women, he begins investigating them and discovers who is the new batgirl.<br /><br />The tone in this film is unusually light considering most of the films are grim and bleak, which was rather disappointing. Bruce acts strangely out of character most of the time, the villains are re-used from the last films, and while the action scenes are exciting, they're really nothing new. It also lacks the dramatic impact the other films have, especially that of \"\"Sub-Zero\"\" which was heavy in drama and character development.<br /><br />Everything in the film feels pretty recycled and the supporting characters are charming but no one is actually worth rooting for.<br /><br />All the while, I really enjoyed this, I had a blast, and the identity of the new batgirl is surprising, but this wasn't as exciting as I'd hoped.<br /><br />(**half out of ****)\"\r\n1\t\"I spotted this movie in the video store a few years ago and rented it. My husband and I enjoyed it so much we bought the VHS and have enjoyed it ever since.<br /><br />The plot has been well-discussed, so no need in going over it again. The point is this movie deserves repeated viewings. Americans, especially, aren't going to get all the jokes the first time around. I know I didn't.<br /><br />This movie is funny, touching, sad-- all at the same time. When Ray proposes the toast at his daughter's wedding, it's cringe-inducing. When Karen calls Tony \"\"Brian\"\" as he attempts to kiss her, it's heartbreaking. When Beano is finally cornered by the woman in black, it's too funny for words.<br /><br />And the music: it's as good as any movie soundtrack I've heard in years. I was dancing in the living room to \"\"All Over the World.\"\" <br /><br />Every performance is absolutely perfect. Bill Nighy has been justly complimented for his portrayal of Ray, a man who has had one too many bad trips. Stephen Rea is perfect as Tony, the lovable keyboard player who has carried a torch for Karen all these years. He has an appealing hangdog look that makes women want to hug him. But all the actors are equally brilliant.<br /><br />Ignore any pans you read about this movie and see it. It's a gem.\"\r\n0\tIn the ravaged wasteland of the future, mankind is terrorized by Cyborgsrobots with human featuresthat have discovered a new source of fuel: human blood. Commanded by their vicious leader Jōb (Lance Henriksen), the Cyborgs prepare to overtake Taos, a densely populated human outpost.<br /><br />Only one force can stop Jōb's death marchthe Cyborg Gabriel (Kris Kristofferson), who is programmed to destroy Jōb and his army.<br /><br />In the ruins of a ransacked village, Gabriel finds Nea (Kathy Long), a beautiful young woman whose parents were killed by Cyborgs ten years earlier. Now she wants revenge. They strike a pact: Gabriel will train Nea how to fight the Cyborgs and Nea will lead Gabriel to Taos.<br /><br />Five-time kick-boxing champion Kathy Long has all the right moves in this high-speed adventure that delivers plenty of action. Also stars Gary Daniels (as David) and Scott Paulin (as Simon).\r\n0\tAs there was nothing wrong with the acting etc etc the writing for the episode is way off for this series phantom or no phantom. It was a waste of 42 minutes to see the martian man hunter. You have to know that in the middle of the 6th series no matter what happens it is not true what is going on and really brings nothing to the story of the series except meeting the martian man hunter again and to waste 30 minutes to do this is by far another case of bad writing in the soap opera of smallville. I really like the show but mainly due to the cast and the 3 or so good episodes each year but who ever is on the writing cast that works or used to work on the soaps needs to be canned. This was by far one of the worst. With in the first 4 minutes you know that what is going on is bogus and anything happening is a dream based on Clark's infliction obviously caused by a phantom zone character and when he wakes up he will win and blah blah blah so the writers don't have to really create a villain that will progress the story line any this week. May as well have added another villain to die in the last episode the martian man hunter was in and made him fly away again or come back and tell Clark he forgot his sunglasses to get a closer look like in this episode and call it a day.\r\n0\tThis is one of the worst movies I have ever seen. However, the little slave girl, Alice and Jared Harris imitating Christopher Walken is what makes this movie entertaining. Alice's smoking, drinking and uncanny way of showing up when her name is called is strange and interesting. I have to applaud Jared for his Christopher Walken imitation, and Christopher Walken for allowing this to be in the movie.\r\n1\tI watched this movie once and might watch it again, but although Jamie Foxx is good in the movie, I feel they could have used a 'less funny' character as Alvin Sanders. Foxx's scenes for instance in the jail when he is confronted by Edgar Clenteen (David Morse) are too funny. David Morse again is a wonderful portrayer of a cop. His tough yet mostly quiet features are perfect for his role. Once again Morse meets Doug Hutchinson (Bristol) in the theater. Morse ends up coming down hard on Hutchinson. They are both perfect for this scenario in each film. I personally love that quality in a film, where actors end up in the same situation as a previous film, as these two did in The Green Mile. Overall it was a pretty good movie.\r\n1\tIn watching this early DeMille work, it was once again reinforced to me that early DeMille is far superior to late DeMille. His attention to use of light within scenes is remarkable. His pacing is very good, enabling much to be told in the space of an hour or so. It is a pity that he wasn't as intuitive about the style of his later sound films as he seemed to be in his silent films.<br /><br />This was the first film in which I had seen Cleo Ridgely. She was remarkable, quite restrained and yet conveyed a broad spectrum of emotions.<br /><br />The ending is wonderful.\r\n0\tHaving seen the first ten episodes, I must say this show sucks. <br /><br />What bothers me the most, is that the show was shot in Canada. I know it's cheaper, but they should have shot it in California, so we could have had scenes in the desert. That would have been more true to the movie. The first scene where they are outside in another world is in the mountains, with lots of pinetrees where it looks cold. That does'nt feel very Egyptian. What worked so well in the movie was that it felt like you were in the ancient Egypt. Here it feels like they're running around fighting aliens in a Canadian forrest. And it's so lame that appaerantly, on other planets, the fall comes as well. You can see leaves on the ground in the forrests that all look like forrests outside Vancouver. It just makes the show even more unbelievable and dumb. <br /><br />And then there is Richard Dean Anderson. He is no Kurt Russel. Sure he does a decent job and he tries to copy Russels performance a little bit, but he is just not as cool as Russel. And not nearly as good an actor as Russel. And Russells way of playing O Neill, well he was much more cynical. Andersons O Neil, is way too soft. I liked it that Russels version just did'nt give a s*** and had no trouble detonating the bomb until the very end of the movie. <br /><br />Michael Shanks does a really good job as Jackson though taking over from James Spader.<br /><br />Teal'c is a really annoying character. He is Jaffa. Not a Jaffa. Just Jaffa. Aaaarrgh!! A former bodyguard of a pathetic Ra character, seen only in the pilot and in one other episode so far. Teal'c speaks talks and acts like a robot. I've seen better acting from Jean Claude Van Damme.<br /><br />And the fact that Teal'c and the Ra character and the people they saved in the movie, can speak English all of a sudden is also incredibly dumb. What made the aliens so scary in the movie was that they spoke an ancient language and were real monsters. <br /><br />As for the special effects, they are really good in the pilot. But the very rare effects in the actual show are badly done and looks cheap. Especially a planet they visit with crystals. It's so obvious they walk around on a soundstage with a badly made painting in the background. It's an insult to us viewers that they made it look so cheap. Especially when they could have made it in front of a bluescreen with cgi backgrounds. <br /><br />The X-files had better effects when they aired their first episodes in 1993. That was 4 years before SG-1 started. And they did'nt have the apparent two million dollar budget per episode, that SG-1 supposedly had. They must have spend all the money on catering. Because I don't see it on the screen. <br /><br />Incredibly boring and pointless show, that could have been great if they had shot the show in Hollywood with a bigger budget and better writers and better characters.\r\n0\t\"Return to Cabin by the Lake just.... was lacking. It must have had a very low budget because a fair amount of the movie must have been filmed with a regular video camera. So, within the same scene - you'll have some movie-quality camera shots AND simple video camera shots. It makes for a very odd blend! I think they should have found SOME way to not do the \"\"home video\"\" type effect! <br /><br />I think it's worthwhile to see it IF you have seen the original CBTL because then you can compare and see the differences. But if you haven't seen the original CBTL.... you'll never want to see it if you see this one first! It will probably seem way too cheesy and turn you off from even caring about the original one.\"\r\n0\tI watched this film, along with every other adaptation I could get my hands on- including seeing plays- in preparation for some academic research. The cinematography is very moving, as is the music. Unfortunately all of the life was taken out of the story. I have never seen such an awful portrayal of Mr. Rochester. All of his most fundamental traits are gone. Where is his wit? Where is his passion? Scott's Rochester more closely resembles Rochester's foil, St.John, than the character from the novel. In fact, the actor playing St.John in this adaptation played a passionate St.John while Scott is content to smash things or just stare at the ceiling (which he does all the time). I have no idea what they were thinking. I would like to give this film a slightly higher vote based on the wonderful music and cinematography but I honestly can't bear to see this film for too long because of George C. Scott's performance.\r\n0\tI am so disappointed. This movie left me feeling jipped out of my time and mental energy. Here was the quintessential Woody Allen film all over again: the neurotic upper-class Manhattanites debating whether or not they will cheat on their spouses. Woody, I've seen these characters already, I've seen the storyline from you ten times already. Where did your creativity go??? You need to open your eyes and look around you. The world has changed dramatically since Annie Hall - and you need to change along with it.<br /><br />There are far more interesting and funny scenarios to which you can apply your brand of angst and neuroticism - why not try them out instead of rehashing the same old slop over and over and over again.<br /><br />When I hear that Woody Allen has a new project coming out, it does nothing for me - because now I've come to expect his old standby: the couple who are growing tired of each other and end up cheating. Depressing and same old, same old.<br /><br />If Woody wants to win his fans back, then he has to understand that our sense of humor and intelligence has to be stimulated - not insulted.\r\n0\tThis was thought to be the flagship work of the open source community, something that would stand up and scream at the worlds media to take notice as we're not stuck in the marketing trap with our options in producing fine work with open source tools. After the basic version download ( die hard fan here on a dial-up modem ) eventually got here I hit my first snag. Media Player, Mplayer Classic & winamp failed to open it on my xp box, and then Totem, xine & kaffeine failed to open it on my suse server. Mplayer managed to run it flawlessly. Going to be hard to spread the word about it if normal users cant even open it...<br /><br />The Film. Beautiful soundtrack, superb lighting, masterful camera work and flawless texturing. Everything looked real. And then the two main characters moved.... and spoke... And the movie died for me. Everything apart from the lip syncing and the actual animation of the two main characters ( except for Proog in the dancing scene ) looked fluid and totally alive. The two main characters were animated so poorly that at times i was wondering if there are any games on the market at the moment with cut-scenes that entail less realism than this.<br /><br />Any frame in the movie is fantastic.. as a frame, and the thing is great if neither actors are moving. I'm so glad i haven't actually recommended this to anyone. I'd ruin my reputation.<br /><br />Oh, and final fantasy had a more followable and cunningly devised plot.<br /><br />this movie would get 10 stars if it wasn't for the tragedy that sits right there on the screen.\r\n1\tOne of America's most brilliant film directors was without question Elia Kazan. His directorial genius was not particularly suited to taut thrillers, since Kazan needed more room to breathe and to be slower and more subtle. However, 'Panic in the Streets' is a first-rate social thriller and is if anything more relevant to today than it was to 1950 when it was released. The themes of illegal immigrants, people-smuggling, imminent plagues, rapid transmission around the world of diseases (a worried Richard Widmark says: 'I could be in any American city in ten hours and in Africa tomorrow.'), ethnic isolation and ghettoism are today's concerns more than ever. This film features a spectacular film debut by Jack Palance, and a wonderful performance by Barbara Bel Geddes, two casting strokes of genius. Richard Widmark is allowed not to be a psychopath for once, and is a deeply caring, warmly loving, intense hero of the people. He leads basically a one-man campaign to stop an epidemic of pneumonic plague in New Orleans, struggling to convince sluggish politicians and complacent policemen that there is a problem. There is a race against time to find the small-time crooks who have contracted the plague from a dead illegal immigrant within 48 hours, before the whole city, and as they are always reminding us, the whole country, are endangered with the worst thing since the 1919 flu. One amazing scene where Jack Palance, who is infected, is prevented from climbing aboard a ship by a rat-barrier on the rope is ironic in the extreme, reminding us in the most gruesome terms that humans can be the worst carriers and vermin of all. The highly dramatic chase scenes in what they call 'the coffee factory' at the wharfs rivals the most inventive climax scenes of Hitchcock, and with just as spectacular a setting. Many non-professionals appear in the film, which has the gritty realism of, well, something called reality. Kazan really takes the cameras into places where even people rarely went, and where even rats would have thought twice. This film was a major feat of social realism. If it lacks the electricity of the most highly charged thrillers, it is because Kazan took it so seriously that he could not hype it up, for after all, the threat of plague is serious enough to scare anybody without the need for extra guns and molls. The only unfortunate thing about the film is the title, which gives a false suggestion of superficiality. But Kazan was anything but superficial. He clearly considered this project a public duty, to alert us to genuine possibilities. If only those possibilities had diminished today, but alas, they are getting worse every day. One day, after a worldwide plague, this film may be shown to a few survivors as an example of how an outbreak was contained on film, but its lessons were forgotten.\r\n1\t\"Let's face it; Nancy Drew was never great literature. It is in the same category as babysitter club, magic tree house, Goosebumps, ABC Mysteries. In fact, it was one of the original formula stories. Nancy is perfect, pretty, thoughtful, \"\"nice\"\", has no internal conflicts ever! and never changes. Ned is pretty much the same. The movie was true to that style and I have to say, I liked it. It will never be a great movie, but it had a that same nostalgic flavor that the books held. It had just the right amount of suspense for my children (8 and 10.) There was almost no offensive language. I liked the push for more conservative dress.<br /><br />Corky was a bit of an annoyance. He was a little out of place on a high school campus. I never quite got why he was there in the first place.\"\r\n0\t\"I was looking forward to seeing Amanda Peet in another good role after recently renting \"\"The Whole Nine Yards\"\"--easily worth the rental, by the way--but this wasn't it.<br /><br />I remembered that the trailer for \"\"Whipped\"\" was somewhat funny and the plot about three oversexed New Yorker twenty somethings all falling for and getting manipulated by the charming Ms. Peet was worth a shot. So, I convinced two friends one afternoon to come see this movie with me. This review is my penance.<br /><br />In the first act we have the three lead studs, recounting their conquests in a diner. What should have been funny, or at least telling, comes out rather pathetic. Was there any redeeming quality about the three men and their encounters that we were supposed to get out of this?<br /><br />[And while I don't mind movies that are cheerfully vulgar, I kept wondering why no one in the diner turned around when the studs talk loudly about sexual and scatalogical details. They do this every week at the same diner? You would think someone would complain. Oh, wait, I forgot: two other diners do notice in one scene. But this is just a setup for a punchline. Everyone else in the diner is deaf.]<br /><br />The second act has the three studs all falling for Mia and then developing brain rot, failing to ask each other or her about what's really happening between the four of them. And I kept asking myself, as the studs keep acting like they have been, what redeeming qualities does she see in them to stick with them longer than one date? Does she start out with brain rot? I kept hoping for Eric's character, the married buddy, to become something more than simply the annoying punching bag in this act. His role is clearly to dispense advice on being married. But why do they even bother to talk to him when they won't talk to each other? And his advice? Sheeesh!<br /><br />The third act resolves what plot there is but by this time I was looking at my watch. My friends told me they were still waiting for something genuinely funny to happen and I had to agree. The Scene That Explains All was adequate and managed to explain all of the questions and mysterious dialogue bits throughout the movie but we were just checking them off a list. (\"\"Oh, okay, that's why Brad had that happen and Jonathan says this and...\"\")<br /><br />What laughs we made were from the stupidity of the plot than at anything amusing. Even the outtakes during the credits weren't very funny. Ultimately I was left with nothing except a desire to warn people away from this movie.<br /><br />Rating: 3\"\r\n0\tI just saw this movie on Flix after timer-taping it. I grew up watching F Troop and had a major hard for Wrangler Jane so I was shocked, literally shocked, to find out after seeing this film that the degenerate homicidal nurse was Melody Patterson, who looks pretty good but also looks completely different and is unfortunately poorly photographed. I would never have guessed it was her in a million years. What the hell is she doing in a picture like this? I agree with the guys here that the movie lacks what it's pushing. No sex, no gore, no tease. It's also a remake of the Atomic Brain aka Monstrosity (1964 or thereabouts). Most of the action is tedious; the main character spends enormous amounts of time running around the crazed doctor's house and basement, and the neighborhood in general, or being roughed up by the cop, all of it boring and time-filling. Now if the Italians would have made this, half the film would have been the Slingblade/Uncle Ernest/Jack Elam henchman fondling the unconscious nude girls. But you only get that for 20 seconds.\r\n0\tthis movie was so gay like its a mom and son cat that have sex, they also get scared of little kitty cats. they get set on fire by them. the mom cat alien thing kills a guy by stabbing him in the back with an ear of corn? they are bullet proof. invisible. and what not. the star of the movie, Clovis, is the cops cat, Clovis leads the cops to find the mom alien, and after the mom kills the cops, Clovis kills the mom by eating her head then she catches on fire. this movie sucks. it was way way more funny than it was scary, it wasn't even scaryt at all. the girl hits the alien on the head with a camera, it knoks him out. she then goes and hugs her. the then grabs her and begins to rape her. once again, Clovis comes to the rescue\r\n1\t\"Old horror movies are interesting, plenty of screams, plenty of shouts, and plenty of humor to go along with it. \"\"The Blob\"\" is a classic in it's own work. Steve McQueen(1930-80) plays a teen who tries to be a hero in his town. Going out on a date with his girl is rather typical for all teens. But when the old man discovers the same falling object form the sky, he ends up being the victim, and Steve helps him out the best he can. When its up to teen power, this movie really provides it. I know most teens have had their hardships when they act up, when danger comes around, they must learn to forget the past and start doing something good to save humanity. When the adults in town ended up learn the hard way about \"\"The Blob\"\" running amok, they must learn to trust teenagers and not let their behavior get the better of them. The oozing juggernaut was rather cute in the day, and in my opinion I think it was JELL-O! When everyone pitches in to stop the menace, the town is once again safe, thanks to good old cooperation. I still eat Jello and watch this movie all the time, if you don't like Jello, TOUGH! RATING 5 STARS\"\r\n1\t\"I first saw this film when I was about 8 years old on TV in the UK (where it was called \"\"Laupta: The Flying Island\"\"). I absolutely loved it, and was heartbroken when it was repeated a while later and I missed it. I was enchanted by the story and characters, but most of all by the haunting and beautiful music. It would have been the original English dubbed version which I saw - sometimes erroneously referred to as the \"\"Streamline Dub\"\" (the dub was actually by Ghibli themselves and only distributed by Streamline) which is sadly unavailable except as part of a ridiculously expensive laser disc box-set.<br /><br />Unfortunately I feel that the release has been partly spoiled by Disney. The voice acting is OK but the dialogue doesn't have the same raw energy that the \"\"streamline\"\" dub or the original Japanese had, and I think James Van Der Beek sounds too old to play the lead. They have made some pointless alterations, such as changing the main character's name from \"\"Pazu\"\" to \"\"Patzu\"\", and added some dialogue. But worst of all I feel that they have ruined many scenes with intrusive music - the opening scene of the airships for example was originally silent but has been spoiled thanks to Disney's moronic requirement that there be music playing whenever anyone is not speaking, which I find annoying in many Disney films.<br /><br />This film still blows away most recent animated films, and I cannot recommend it highly enough. The plot is simple yet captivating and the film shows a flair which is sadly missing from most modern mass-market, homogenized animation.\"\r\n1\t\"I have loved this movie ever since it's debut in 1981! I have lost track of how many times I have seen it! It never fails to make me laugh or cheer me up if i am feeling down. The three leads are fantastic and the script is priceless, plus how do you not get nostalgic hearing the theme song? I think I quote this movie without realizing it. I basically know the entire script, so when someone is watching it for the first time I have to hold back saying something about how funny the next line it. I can't even narrow it down, although, Sir John's character probably gets the most memorable ones. The famous \"\"I'll alert the media\"\" when Arthur announces his intention to take a bath is still priceless, but the list is truly endless. The scene's at Arthur's soon to be fiancé's father's house are a scream, particularly his interactions with the moose. Do yourself a favour and see this movie!\"\r\n1\tOf all Arnold's mid-'80s movies who would have thought that most relevant today would be The Running Man. A chilling and surprisingly realistic tale of reality TV gone mad. It may have been far-fetched back then but not so now. Not when you think about it. Currently, Reality TV shows are either scraping the bottom of the barrel or desperate to raise the bar. If the next one isn't more controversial as the last, it's a dud. How long will it be before we really do see shows like The Running Man? How long before we have 'court-appointed theatrical attorneys' or the entertainment division of the Justice Department? There is so much satire and intelligence in this movie that may have been missed back in 1987 that is desperate to be seen again considering the current state of TV shows.<br /><br />The biggest message of all is 'You are being lied to'. It's no secret that the Government and the media work in cahoots. And the masses believe what the media tells them to believe. It's a very scary state of affairs and unless more accurate representations of the truth emerge we may easily accept a brutal show like the Running Man in the near future. It's no secret that Reality TV is not very realistic. It's edited and reshaped before being aired and it's only what the networks want you to see. Usually it's far from the real truth.<br /><br />Although rather different than Stephen King's book (the ending is completely changed) the script does conform to the typical Arnie formula. Yes, he does have numerous and very corny one-liners and he does say 'I'll be back' (which he never REALLY said that often anyway, when you think about it) in the most ironic situation yet but he's still a zillion times better in the role then Christopher Reeve or Dolph Lundgren would have been (these two were considered BEFORE Arnie believe it or not).<br /><br />The director is none other than Dave Starsky himself (Paul Michael Glaser). It may not be artistic but it is still strong enough to generate excitement and his use of neon and flourescent colors gives each individual set a pretty cool look. Andrew Davis (not a director I particularly like) was attached before Glaser, though no matter who directs, the film is still marred by a very heavy 80's feel.<br /><br />First of all, Harold Faltermeyer's score (remember him?) is incredibly dated and robs the action scenes of any timeless integrity. And the fashion sense of the movie is far too excessive to be convincingly set in the future. Apart from the dated feel, the only other thing that bugs me is the poorly staged shoot-out that passes as the climax.<br /><br />This new DVD is a zillion times better than the original release. Gone is the horrid letterbox picture. In its place is a brand new hi-definition 1.85:1 anamorphic transfer. The colors sparkle and literally pop from the screen. The new Dolby 5.1 EX and DTS ES soundtrack are also amazing. There constant use of the surround channels to great effect and the bass is strong and powerful. Definitely one of the best re-masters I've seen so far. Two intriguing documentaries, a trailer and a 'Meet the Stalkers' gimmick are included in this 2-disc set that comes in a rather neat slip case.\r\n0\tA well put together entry in the serial killer genre that unfortunately gets mired down in its own pretentiousness to be really satisfying. Willem Dafoe is superb as a NYC detective trying to track down what appears to be a copycat using the same Renaissance art-related killing techniques used in a series of murders he solved years earlier. Scott Speedman is Dafoe's junior partner and they have pretty good chemistry (at least for a while). Other characters pop up to conveniently tie the two cases together. Clea Duval is the friend of an earlier victim and Peter Stormare is some sort of art broker/mentor to Dafoe...that's a bit hard to take, although Stormare is, of course, never dull. The film's ending is particularly disappointing. Look fast for Deborah Harry as Dafoe's less than forthcoming neighbor.\r\n0\tWhen converting a book to film, it is generally a good idea to keep at least some of the author's intended tone or conveyed concepts, rather than ignoring the author altogether. While it is clear that the director had access to and went on the advice of Elinore Stewart's children, it is key to note that the children believed their mother to be a complete liar in regards to the good, enriching, strengthening experiences of homesteading her land. The book details her life on her and her husband's adjoining homesteads in the vast Wyoming frontier; she chronicles daily adventures with her numerous friends and acquaintances, though they lived dozens of miles apart. The film, however, takes a standard stance for the time it was made, portraying this woman's experience as harsh, unforgiving, and nearly pointless. Perhaps the director was bringing some of his Vietnam War experiences with him to this movie (as some film aficionados have said), but it seems to be a lousy excuse for taking all the joy and beauty of the book and twisting it into a bleak, odious landscape devoid of friends or hope. Don't waste your time with this movie; read the book instead.\r\n0\t\"This movie is one of the most awful movies ever made.How can Jon Bon Jovi play in a movie? He is a singer not an actor, What?Is he killing vampires with his guitar? And what about the dreadful plot? O my God this movie really sucks. In the end is the Queen of vampires played by the eternal vampire Arly Jover (Blade) surrounded by an army of vampires, but when the \"\"fantastic\"\" slayers arrive only 4 vampires are left!! What happened with the other 10-15 vampires? They run out in the sun??? And what about the \"\"Grand Finally\"\" when Bon Jovi blows her head with a shotgun??? That's really a \"\"NOT\"\" . In \"\"Buffy the vampire Slayer\"\" in 100 episodes not a single vampire is killed with A SHOTGUN??? This really is a lack of originality!\"\r\n1\tFast-paced, funny, sexy, and spectacular. Cagney is always terrific. Blondel charms you with her wit and energy. It's obvious that this is a pre-censorship film by the innuendo in the script, the costumes,and the way they touch each other. And bikinis before there were bikinis! This is no holds barred fun for everyone. I don't understand the John Garfield issue though. Does it matter whether or not he's in this film? If he is, he screen is so short that he's basically a prop. You need to watch it frame by frame to even find him if he's there. I'm a big Cagney fan, but had never seen this one before. I found it on Turner Classics. I found it by wonderful accident. Sit back and enjoy the ride!\r\n1\tAdam Jones has a brilliant sense of humor. There is nothing i didn't like about this film. Cross Eyed was beautifully shot. Adam does a great job of, not only developing the main characters, but also the minor characters. <br /><br />Cross Eyed gives hope to every low budget film out there. That you don't have to spend a lot to create something worth watching. There is something to like for everyone. If you've had a terrible roommate. if you've ever picked on a dork in high school. if you've ever parked anywhere in the city. if you have any type of sense of humor at all you will love this film. This is the type of film that will be around for a long time and ends up resurfacing again once Adam makes a bigger name for himself. I look forward to Adam's future projects.\r\n1\tThis movie was just as good as some of the other westerns made by Anthony Mann and James Stewart like Winchester '73 and The Naked Spur, and much better than Thunder Bay and Bend Of The River. This film starts out like a run of the mill western but gets more complex as it goes along. It starts out with Jimmy Stewart and Walter Brennan arriving in Seattle and Stewart is charged with murder. He is found innocent but is cattle is stolen by a corrupt judge. Stewart then agrees to lead something but i forget what it is but Stewart only cares about getting his cattle back. As the movie goes along it's like Stewart only cares about himself just like his character in the Naked Spur. It gets much better at the halfway point after they arrive in Alaska. This is one of Stewart's better westerns.\r\n1\t\"Offbeat, slow-paced, entertaining erotic thriller with many graphic and \"\"blasphemous\"\" scenes that will undoubtedly disturb some viewers. However, it'll be hard even for them not to appreciate the several imaginative sequences this film contains, or to ignore Krabbe's first-rate performance. Verhoeven maintains an intriguing ambivalence throughout the film, playing with the meaning of the hero's visions-omens. Unfortunately, in the last 5 minutes everything turns into a blur, and the unsatisfying ending is certainly not as good as the rest of the movie. (***)\"\r\n0\tThis was a horrible film! I gave it 2 Points, one for Angelina Jolie and a second one for the beautiful Porsche in the beginning... Other than that the story just plain sucked and cars racing through cities wasn't so new in 1970. The Happyend was probably what annoyed me the most, seldomly seen anything so constructed!\r\n0\t\"Having read many of the comments here, I'm surprised that no one has recognized this as basically an overlong remake of a Twilight Zone episode from 1960 called \"\"Mirror Image,\"\" starring Vera Miles. Rod Serling did a much better job of creating an effective spooky tale in 24 minutes than Sean Ellis did in 88 minutes with this tedious snooze. A short piece can be effective with a mysterious and unexplained ending, but in a feature film, there should be a bit more substance and the story should make sense. Sadly, substance and sense are two things missing from \"\"The Broken.\"\" Yes, it has some moments, but they are not enough to justify your time. Some further observations: although this is clearly a contemporary story, not one character in the movie has a cellphone! And even though a car accident is the event that gets the story going, there is never any reference to an insurance company, to the person who was driving the other car, or to the police who would have been required to do a report. My advice: skip this bore and watch the original instead!\"\r\n1\t\"as a sequel,this is not a bad movie.i actually liked it better than the 1st one.i found it more entertaining.it seemed like it was shot documentary style.at first this bothered me,as i thought it just looked too low budget.but it grew on me,and it made the movie seem more authentic.this movie has more dry one liners than the original,which is a good thing,in my opinion.i do think at times they went a bit over the top with some of the scenes and the characters.it almost becomes a parody of itself,which may be the point.this movie at least has some suspense,which the 1st one did not have,in my view.it has some of the same great music from the original,which is great.the acting again was pretty decent for the most part,though like i said,some of it seemed over the top.i also felt that the movie loses a lot of momentum towards the end and there are a few minutes which seem really slow and just don't seem to flow,like the rest of the movie.overall,though,i thought this was a pretty sequel.my rating for \"\"Return to Cabin by the Lake\"\" is 7/10*\"\r\n1\tHere is the example of a film that was not well received when it was made, but whose standing seems to be raising in time. 'The Tenant' is quite an interesting work by Polanski, one of the first of his European exile. It is set in Paris, and as in so many other exile films the city, its streets, the Seine and especially the building where the action takes place play an important role. It is just that Polanski chooses his principal character not to be an American (as in 'Frantic' for example) but a Pole, as himself was when going West. There is actually a lot of personal commentary in this film, made at what must have been a time of crisis in the director's life, and the fact that he decided to play the lead role (and does it masterfully) may also be seen as some kind of exorcism.<br /><br />It's in a way a circular story. The hero named Trelkovsky rents an apartment in old Parisian building, inhabited by what seem to be first a well assorted team of grumpy old or just ridiculous neighbors. The previous tenant tried to commit suicide by jumping out of the window of the flat, and Trelkovsky has just the time to visit her in the hospital before she dies and meet there her young and beautiful friend Stella (a spectacled Isabelle Adjani in her first role after Truffaut's 'L'histoire d'Adele H.'). Soon the neighbors do not seem to be what they are, it's a conspiracy to make him crazy, or to make him enter the life and role of the dead girl. He fights, tries to run, enters the game and ends by entering the circle and slowly becoming her. The circle is closed.<br /><br />It's not the most believable story we may have seen or heard, but the strength of the film does not reside in the story but in the details of the psychology, in the slow degradation of the mental state of the hero, in the permanent balancing game between reality and delusion. To a certain extent it is not what happens on the screen that matters, but how it happens, reminding the classical 'Knife in the Water' made more than a decade before, at the end of the Polish period of Polanski. There are many details that are never explained, but then this is how mystery films must be and this is actually how life is sometimes. The feeling of claustrophobia slowly contaminates the viewer. Unfortunately some of the graphical details in the last part of the film are not too well executed and the English spoken dialogs (the film was made in English) almost neutralize the overall atmosphere. However, waiting for the final punch scene is very worth the patience.<br /><br />It's not the best film that Polanski made, yet has many good parts, it shows the hand and the style of the director, and was a significant step in the building of his career.\r\n0\t\"An unmarried woman named Stella (Bette Midler) gets pregnant by a wealthy man (Stephen Collins). He offers to marry her out of a sense of obligation but she turns him down flat and decides to raise the kid on her own. Things go OK until the child named Jenny (Trini Alvarado) becomes a teenager and things gradually (and predictably) become worse.<br /><br />I've seen both the silent version and sound version of \"\"Stella Dallas\"\". Neither one affected me much (and I cry easily) but they were well-made if dated. Trying to remake this in 1990 was just a stupid idea. I guess Midler had enough power after the incomprehensible success of \"\"Beaches\"\" to get this made. This (predictably) bombed. The story is laughable and dated by today's standards. Even though Midler and Alvarado give good performances this film really drags and I was bored silly by the end. Stephen Collins and Marsha Mason (both good actors) don't help in supporting roles. Flimsy and dull. Really--who thought this would work? See the 1937 Stanwyck version instead. I give this a 1.\"\r\n0\tBasing a television series on a popular author's works is no guarantee of success. Yorkshire Television learnt this the hard way when in 1979 they bought the rights to the books credited to Dick Francis, three of which were broadcast under the collective title 'The Racing Game'. Mike Gwilym was Sid Halley, a former jockey turned private eye following an accident in which he lost his right hand, only to have it replaced by an artificial one. Gwilym suffered from an acute lack of charisma ( and looked like one of the bad guys ) while Mick Ford ( who played the irritating Chico Barnes ) made me think of a horse's arse whenever he was on screen. For six weeks, this less-than dynamic duo charged about the countryside, foiling nefarious plots to fix races, usually by the same methods - blackmail, kidnapping riders or doping horses. Yorkshire Television threw money at the show, but to no avail. Violent, sexist, far-fetched and repetitious, it was quickly carted off to the knackers yard.\r\n0\tThis is a movie which attempts a retelling of Thai history, set in the ancient city of Ayutthaya. I decided to watch this film because I thought it was along the lines of many Thai films I've watched and enjoyed, one that has Thai actors speaking Thai and martial arts craziness. Well, it's none of that. This film is shot entirely in English, is chock full of Anglo actors, and has production values so terrible it is laughably bad....but not funny! Who can we blame for this rubbish? The acting, dialog, and most of the sets were quite bad. Some of the fight scenes looked like they were choreographed by the local high school drama club. The special effects were also mostly bad, but a few were just cheap animation patched onto the screen that provided an especially cheesy effect. It has one large, epic-style outdoor battle scene, where a few thousand extras get to run across a field in costume, but when we see the two armies collide in combat--HA! What a joke! The film does feature a couple of beauties. What a pity they didn't show a little more skin. At least that would have been something for the guys to appreciate. Don't bother.\r\n0\tRather foolish attempt at a Hitchcock-type mystery-thriller, improbably exchanging espionage for archaeology and based on the Robin Cook novel; incidentally, I’ve recently acquired another adaptation of his work – COMA (1978) – in honor of the late Richard Widmark. For the record, director Schaffner had just made THE BOYS FROM BRAZIL (1978) – a similarly fanciful but much more engrossing suspenser and, unfortunately, SPHINX was a false step from which his so-far impressive career would not recover.<br /><br />Despite its scope and reasonably decent cast, however, this one proved a critical and commercial flop – mainly because the narrative just isn’t very thrilling: in fact, it’s quite dreary (feeble attempts at horror – the archaeologist heroine having to put up with entombment, rotting corpses galore, and even an attack by a flurry of bats – notwithstanding). Lesley Anne-Down is the lovely leading lady, stumbling upon a lost treasure – it’s actually been hidden away by a local sect to prevent it from falling into the hands of foreigners, who have appropriated much of the country’s heritage (under the pretext of culture) for far too long. Sir John Gielgud turns up in a thankless bit early on as the antique dealer who puts Down on the way of the loot, and pays for this ‘act of treason’ with his life.<br /><br />Typically, it transpires that some characters are the opposite of what they claim to be – so that apparent allies (such as Maurice Ronet) are eventually exposed as villains, while an ambiguous figure (Frank Langella, whom I saw at London in early 2007 in a West End performance of “Frost/Nixon”, which has now been turned into a film) goes from Down’s antagonist to her lover and back again, as he determines to keep the wealth belonging to Egyptian high priest Menephta a national treasure.\r\n0\t\"All day now I've been watching dinosaurs, and all day they've had the same fundamental problem.<br /><br />They don't believe in firearms. They just don't seem to have been _told_ about them or something. Bullets _bounce_ off of dinosaurs! Maybe it's because they became extinct millions of years before the invention of gunpowder, and the laws of physics were just different back then... Aah, no. Come on. If they're close enough to chemically operate today, they'd have to be vulnerable to fast (even subsonic) lead projectiles. It's that simple.<br /><br />Look, the toughest-skinned reptiles on the planet today, alligators and crocodiles, are completely vulnerable to basic rifle fire. They're nothing magic. You can shoot a pistol round right through the heavy scales on their backs. They don't take armor-piercing bullets or anything special. Small bullets penetrate them, they just don't kill them. Somewhat (but not REALLY) large bullets are preferred because the challenge (as with most game) is to kill the animal with one shot, so it doesn't run. (Hunters consider it immoral to allow prey to run off and die unharvested.)<br /><br />Most animals, including predators, are easily repelled by gunfire. Between the noise, and the pain of even a non-lethal wound, most will run away. An exception are big bears, which are so fearless that they're merely enraged by mortal wounds. Cape buffalo are regarded as highly dangerous because they are well known to charge when wounded. We've seen video of the big bulls of a herd of cape buffalo rescuing a calf from an entire pride of lions. A big cat will run if it can, but if it can't it will charge as a final act of desperation. Where a T.Rex would fit in this spectrum is unknown. Their behavior simply has not been observed. With these larger animals, safe hunting becomes a matter of applying an appropriately large and powerful projectile, and/or applying several of them rapidly enough to counter its charge. With a T.Rex, of course, this could be a serious problem. I've seen a T.Rex skull (they have one in the museum downtown) and carrying a gun big enough to bust that might be impractical. Chewing its neck off with lots of smaller fire might be a more viable approach. Small bullets would still _penetrate_ them, they wouldn't just bounce off just because the animal is too big to easily kill! <br /><br />So here we have Cortez and his men (this is _before_ the famous Mexican campaign, apparently) captured by American natives and scheduled for sacrifice on the pyramid. It appears that all those human sacrifices were about appeasing the bloodthirst of the pair of T.Rexes that terrorized the continent in the day. Rather than just having their hearts cut out and being fed to the lizards, Cortez et al talk the Aztecs into letting them hunt & kill them. OK, maybe they don't have M-16s like the guys in the \"\"Carnosaur\"\" series, but they _do_ have flintlocks, crossbows, pointed sticks (big ones, made from trees) and swords. Maybe that's a little less uneven than squads of soldiers with full auto, but they've several guys and I'd quickly bet on them over a dinosaur. Oh, wait, there's a _cannon_, about a 4-incher. That's just the ticket for busting a Tyrannosaurus' skull! So they lay a trap, with a squad of men, cannon, pointed sticks in a ravine, and lure the first T.Rex into it, using a pretty brown girl as bait. Cortez points out that they'll NOT have time to reload, so they'll have to close the range until they can be certain of their aim. T.Rex totally ignores their volley of flintlock fire, and we see both a crossbow bolt _and_ the cannon ball _bounce_ off! Forget it. End of credibility. A crossbow bolt would defeat Cortez' torso armor, and a 4\"\" cannon ball might penetrate the hull of a wooden ship! This would also _certainly_ get through the hide, ribcage, or skull of any animal ever to walk this planet. (Do you think a _whale_ could withstand a 4\"\" cannon ball?) And here's T.Rex, still standing, not even bleeding. So Cortez lures it to the ravine, where it falls onto the pointed sticks, which (I guess by magic) penetrate it and kill it. Yaaay, pointed sticks! <br /><br />The dinos aren't completely invulnerable to gunfire - they manage to put out an eye of the second one with a pistol. This runs it off, so it's NOT as mean as a bear or a buffalo, at least in the movies.<br /><br />They kill the second dinosaur with a bomb - made from a gourd filled with gunpowder and gemstones. My money would still be on the cannon. It's engineered function is to concentrate all the gunpowder's energy in one direction - toward the target. A bomb is a much more diffused application of force. A _real_ bomb (NOT a gourd bomb) has a steel casing which contains the explosion to extremely high pressure. (Think: pipe bomb vs firecracker.) A pile of gunpowder set on fire will simply go POOF. (Trust me on that one.)\"\r\n0\t\"Lordi was a major hype and revelation in 2007 because they won the Eurovision Song Contest with a (not-so-heavy) metal song called \"\"Hard Rock Hallelujah\"\" and appeared on stage dressed like hideous monsters. But, let's face it, their victory most likely had very little to do with their great musical talents. The Eurovision contest gradually turned into one big political circus over the years and Lordi probably just won because their song finally brought a little change and  even more importantly - because their whole act sort of ingeniously spoofed the whole annual event. The absolute last thing Lordi's first (and hopefully last) horror film brings is change and ingenuity. \"\"Dark Floors\"\", based on an idea of the lead singer and starring the rest of the band in supportive roles, is a truly unimaginative and hopeless accumulation of clichés. The immense budget (\"\"Dark Floors\"\" supposedly is the most expensive Finnish film ever) definitely assures greatly macabre set pieces and impressive make-up art, but what's the point where there's no story that is worth telling? The film takes is set in a busy hospital where a bunch of people, among them a father and his young daughter with an unidentifiable illness, become trapped in the elevator during a power breakdown. When the doors open again, the floors are empty and it looks as if the hospital lies abandoned since many years already. Trying to reach the exit, the group stumbles upon several morbid and inexplicable obstacles, like eyeless corpses, screaming ghosts and Heavy Metal monsters emerging from the floors. The only three points I'm handing out to \"\"Dark Floors\"\" are exclusively intended for the scenery and the adequate tension building during the first half of the film. For as long as the sinister events don't require an explanation, the atmosphere is quite creepy, but as soon as you realize the explanation will a) be very stupid or b) never come, the wholesome just collapses like an unstable house of cards. Lordi's costumes never really were scary to begin with (except maybe to traditional Eurovision fans) and, in combination with a story more reminiscent to Asian ghost-horror, they just look downright pathetic and misfit. With all the national myths and truly unique exterior filming locations, I personally always presumed Finland  The Land of a Thousand Lakes  would be the ideal breeding ground for potentially horrific horror tales, but I guess that's another disillusion on my account.\"\r\n1\tAlthough critically maligned, Johnny Dangerously is one of the funniest movies I've ever seen. It's a movie that should be watched closely; some of the funny bits are done in passing and do not have the usual amount of attention drawn to them. For instance, keep an eye on Michael Keaton's use of the pricing gun at the pet store...and also on the documentary-style years that appear at the beginning of scenes. It's one of those rare movies where the humor hits you unexpectedly, even though you know it's a comedy. Amy Heckerling, the director, is really sharp here--If you enjoyed her better known films (Fast Times at Ridgemont High, Clueless, European Vacation, etc.,)you should give this one a look.<br /><br />Michael Keaton is extremely likable in the title role and the supporting cast (Griffin Dunne, Maureen Stapleton, Joe Piscopo, Peter Boyle) is excellent. Highly recommended.\r\n0\t\"I thought it would at least be aesthetically beautiful. It was slow, pretentious, and boring. I almost fell asleep. There are some decent songs, but there is this one song at the end which is just some guy yelling out \"\"Yaowwww!\"\" while someone taps randomly on a wooden object. That being said, there are some pretty songs, but it's not worth seeing hte movie over. Go on itunes (they have the album), preview it, and choose the good ones. <br /><br />Half the movie is some guy making tea. Well, that's a slight exaggeration. But you'll see what I mean if you see it. That being said: DON'T SEE IT!\"\r\n0\t\"This is a classic stinker with a big named cast, mostly seniors who were well past their prime and bedtime in this one.<br /><br />This is quite a depressing film when you think about it. Remain on earth, and you will face illness and eventually your demise.<br /><br />Gwen Verndon showed that she could still dance. Too bad the movie didn't concentrate more on that. Maureen Stapleton, looking haggard, still displayed those steps from \"\"Queen of the Star Dust Ballroom,\"\" so much more down to earth from 10 years earlier.<br /><br />I only hope that this film doesn't encourage seniors to commit mass suicide on the level of Jim Jones. How can anyone be idiotic enough to like this and say it gets you to think?<br /><br />Why did Don Ameche win an Oscar for this nonsense?<br /><br />If the seniors were doing such a wonderful thing at the end, why was the youngster encouraged to get off the boat? Why did Steve Guttenberg jump ship as well? After all, he had found his lady-love. <br /><br />This would have been a nice film if the seniors had just managed to find their fountain of youth on earth and stay there.<br /><br />Sadly, with the exception of Wilford Brimley, at this writing, Vernon, Gilford, Stapleton, Ameche, Tandy, Cronyn and lord knows who else are all gone. The writers should have taken the screenplay and placed it with this group as well.\"\r\n1\t\"I don't have much to add to what has been said before, but it's very much a film of it's time, and the first (and likely only) time that the studio hung the film totally on the Dead End Kids.<br /><br />The Warner's gave the boys plenty of help, from director Ray Enright and an 'A' budget, to an almost magical cast of supporting actors. At every turn, we get one of those gem performances from real pros. They are too many to list, but it seems like just about everybody on the Warner's lot (Sans the very biggest stars) walk through this picture. (See if you can spot John Ridgely)<br /><br />The only over the top performance is from the always reliable Eduardo Cianelli as a mob boss with a messianistic complex. He plays this character almost exactly like that of the Thuggie leader in \"\"Gunga Din\"\". He's something to watch! And Marjorie Main is excellent and gets her best role since \"\"Dead End\"\".<br /><br />My bid for this one is a second feature on a double bill with something like \"\"City for Conquest\"\".<br /><br />Hooray for Warners!\"\r\n1\tThe most agile fat guy in martial arts does it again. An early Sammo film that has him imitating his character's hero, Bruce Lee, Sammo is amazingly Lee like in his actions and fighting. The way he slips into Bruce's style and then back to his own, more familiar kung fu is a joy to watch and shows how accomplished and adaptable he is at his art. Throw in a bit of slapstick humour so beloved of this type of flick and this a movie that has it all - comedy (some unintentional, like the fake black guy), action and some incredible fight scenes.<br /><br />A great beer and buddies movie that is worth an hour and a half of anyone's time.\r\n0\t\"This program is really overrated. A detective like Danny Pino's hot-headed character would have been transferred to the \"\"rubber gun squad\"\" years ago. The whole squad is made up of sanctimonious egomaniacs who judge people whose actions go back decades by the standards of 2007. Every Vietnam veteran character they've ever had has turned out to be the killer, unless it was another Vietnam veteran. There has only been one black murderer, and he was put up to it by his white boss. The only Hispanic killer was a \"\"race traitor\"\" who killed another Hispanic to frame a Hispanic street kid for a crime that (naturally) two rich white kids committed. What a bunch of propaganda. Hey,screenwriters: minorities and poor people commit murder too. Only on this show are most murderers upper-class whites.<br /><br />What's more, the arrests of people in their 70s, 80s, and 90s for crimes they committed 50-60 years ago are a joke. No real-life DA will push for murder one because it means the state will be stuck with their humongous medical bills until they finally kick. The state would be doing their families and insurance companies a favor. The prosecutor will just plead them to involuntary manslaughter and they won't serve a day. The only really old criminals who go to prison are either organized crime figures or ex-Nazis, whose high-profile convictions boost DA's careers.\"\r\n0\tThis is the kind of movie i fear the most. Arrogant and Irresponsible, it presents a sketch of the colombian conflict so cliched and dumb it represents an insult to all Colombian people. The performances are godawul, from Grisales (her naked scene is absolutely pitiful), to Bejarano, to Fanny Mickey (who looks right out of a Tim Burton nightmare), to Díaz, who makes a notable effort to bring life to a character so one-dimensional, so cliched and so badly written all he´s left to work with is a mustache. Not to mention the gratuitous ending, a gore fest so cheesy that it would make Ed Wood cringe. It fails in all ways, cinematography, art direction, costumes, makeup, editing, and most of all directing, Jorge Alí Triana has always been a lousy filmmaker but at least his previous movies had some dignity. I can't say anything good about this waste of money, except that i hope Colombian filmmakers learn a lesson about honesty, integrity and responsability from this mean-intended fiasco.\r\n1\tLuckily, not knowing anything about this movie I was curious enough to tape it from TV. And then the tape ran out just five minutes before the ending!<br /><br />But I'm glad I managed to get most of it because this is a really great spy movie. There are the usual toy submarines and a bit foggy plots, but also very chilling and even daring moments. Considering the production year 1969, the certain slight lesbian overtones must have raised a few eyebrows. Of course now it doesn't surprise anyone and those scenes in fact seem pretty beautifully done. And it's not just because of the two George's actresses.<br /><br />The gas attack seems to hit every viewer very strongly, no wonder, And it certainly did hit me. Very effective. Also the viewpoints from the both sides of the opponents gives the whole story more deepness along the usual suspense and action. This is not just a heroic war tale of one victorious side, but shows what lies behind the victory in good and bad. Well, being a case of war, mostly bad.<br /><br />For the fans of composer Ennio Morricone this is also a must. His work is always excellent, touching but never over the top. And I think I have to try to catch more movies with Suzy Kendall. Talk about Fräulein! Let's hope they get this on DVD soon, so I can have the entire movie in my collection and more people will become familiar with this very little known gem.\r\n1\t\"John Thaw, of Inspector Morse fame, plays old Tom Oakley in this movie. Tom lives in a tiny English village during 1939 and the start of the Second World War. A bit of a recluse, Tom has not yet recovered from the death of his wife and son while he was serving during the First World War. If you can imagine Inspector Morse old and retired, twice as crochety as when he was a policeman, then you've got Tom Oakley's character.<br /><br />Yet this heart of flint is about to melt. London children are evacuated in advance of the blitz. Young William (Willie) Beech is billeted with the protesting Tom. Willie is played to good effect by Nick Robinson.<br /><br />This boy is in need of care with a capital C. Behind in school, still wetting the bed, and unable to read are the smallest of his problems. He comes from a horrific background in London, with a mother who cannot cope, to put it mildly.<br /><br />Slowly, yet steadily, man and boy warm to each other. Tom discovers again his ability to love and care. And the boy learns to accept this love and caring. See Tom and Willie building a bomb shelter at the end of their garden. See Willie's joy at what is probably his first ever birthday party thrown by Tom.<br /><br />Not to give away the ending, but Willie is adopted by Tom after much struggle, and the pair begin a new life much richer for their mutual love.<br /><br />In this movie, Thaw and Robinson are following in a long line of movies where man meets boy and develop a mutual love. See the late Dirk Bogarde and Jon Whiteley in \"\"Spanish Gardener\"\". Or Clark Gable and Carlo Angeletti in \"\"It Started in Naples\"\". Or Robert Ulrich and Kenny Vadas in \"\"Captains Courageous\"\". Or Mel Gibson and Nick Stahl in \"\"Man Without a Face\"\".<br /><br />Two points of interest. This is the only appearance of Thaw that I know of where he sings. Only a verse of a hymn, New Jerusalem, but he does sing.<br /><br />Second, young Robinson also starred in a second movie featuring \"\"Tom\"\" in the title, \"\"Tom's Midnight Garden\"\", which is based on a classic children's novel.\"\r\n1\tIn watching how the two brothers interact and feed off of each other through the whole movie makes me personally happy to live in the rural area much like they did in the movie. I have watched this movie countless times and have the book right beside my Bible. After watching the movie I agree that this is one of the few movies that does a book justice. I strongly recommend anyone that has the chance to go to Montana to fish or be outdoors to do so. It is amazing. I can not think of anyone else that could play the role better than Brad Pitt. Do yourself justice and watch one of the better movies in the modern movie era. STRONGLY Recommend And as a guide for fishing trips in both Montana and Wyoming, do not try to learn how to fly fish from the scenes of the movie because although it looks great on the film you have no idea how much practice and skill fishing like that actually takes. Thank you for listening Watch this movie please if you would like a long sad movie.\r\n1\tI have seen just about all of Miyazaki's films, and they are all beautiful and captivating. But this one rises above the rest. This movie totally impressed me!<br /><br />I fell in love with Pazu and Sheeta, and their sweet, caring friendship. They were what made the movie for me. Of course, the animation is also superb and the music captures the feelings in the film perfectly. But the characters are the shining point in this movie: they are so well developed and full of personality.<br /><br />Now, let me clarify: I'm really talking about the Japanese version of the movie (with English subs). While the English dub is good (mostly), it simply pales in comparison to the original language version. The voices are better, the dialogue, everything. So I suggest seeing (and hearing) the movie the way it originally was.\r\n0\t\"Drones, ethnic drumming, bad synthesizer piping, children singing. The most patronizing \"\"world music\"\" imaginable. This is a tourist film, and a lousy one. What really kills it is the incoherent sequences. India, Egypt, South America, Africa, etc, etc. No transitions, no visual explanation of why we're suddenly ten thousand miles away, no ideas expressed in images. Just a bunch of footage of third-worlders with \"\"baskets on their heads\"\" as another reviewer said. Walking along endlessly as if that had some deep meaning. If these guys wanted to make a 3rd World music video, all they had to do was head a few hundred miles south of where the best parts of Koya were shot, and film in Mexico. That would have been a much better setting for \"\"life in transformation.\"\"<br /><br />But no. What they decided on was a scrambled tourist itinerary covering half the globe and mind-deadeningly overcranked filter shots. The only thing to recommend this film is that it doesn't suck quite as much as Naqoyqatsi.<br /><br />RstJ\"\r\n0\t\"How do I begin to review a film that will soon be recognized as the `worst film of all time' by the `worst director of all time?' A film that could develop a cult following because it's `so bad it's good?'<br /><br />An analytical approach criticizing the film seems both pointless and part of band-wagon syndrome--let's bash freely without worry of backlash because every other human on earth is doing it, and the people who like the film like it for those flaws we'd cite.<br /><br />The film's universal poor quality goes without saying-- 'Sixteen Years of Alcohol' is not without competition for title of worst film so it has to sink pretty low to acquire the title and keep a hold of it, but I believe this film could go the distance. IMDb doesn't allow enough words to cite all the films failures, and it be much easier to site the elements 'Sixteen Years of Alcohol' does right. Unfortunately, those moments of glory are so far buried in the shadows of this film's poorness that that's a task not worth pursuing.<br /><br />My impressions? I thought I knew what I was getting into, I had been warned to drink several cups of coffee before sitting down to watch this one (wish that suggestion had been cups of Vodka). Despite my low expectations, 'Sixteen Years of Alcohol' failed to entertain me even on a `make fun of the bad movie' level. Not just bad, but obnoxiously bad as though Jobson intentionally tried to make this film a poetical yawn but went into overkill and shoved the poetry down our throats making it not profound but funny . .. and supposedly Jobson sincerely tried to make a good movie? Even after viewing the 'Sixteen Years of Alcohol' promotional literature, I have trouble believing Jobson's sincerity. Pointless and obnoxious till the end with a several grin/chuckle moments (all I'm sure none intentional)spiced the film, and those few elements prevented me from turning the DVD off. So bad it's good? No. It had just enough 'I can't believe this is a serious movie moments' to keep me from turning it off, and nothing more.<br /><br />Definitely a film to watch with a group of bad-movie connoisseurs. Get your own running commentary going. That would've significantly improved the experience for me. So bad it's Mike Myers commentating in his cod Scottish accent on it as it runs, to turn this whole piece of sludge into a comic farce \"\"Ok dare ma man, pass me annuder gliss of dat wiskey\"\".\"\r\n0\t\"This film had a great cast going for it: Christopher Lee, Dean Jagger, Macdonald Carey, Lew Ayres -- solid b-movie actors all. But this downer of a movie didn't use any of them to any sort of advantage, with none of their characters even meeting on screen (though Christopher Lee does get to play opposite himself in several scenes).<br /><br />The motivations for the aliens in this movie seem to change at the drop of a hat. First, they just want to repair their ship and leave, then they turn on the main character by killing most of his friends and not releasing his wife after he gets them the crucial part they need. Then, out of nowhere, this \"\"peaceful\"\" race decides they have to destroy the planet because it causes too many \"\"diseases\"\" (though they do offer the main character and his wife a spot in their society).<br /><br />Most of the film is spent watching the man and wife drive or walk or stand around or sit at desks doing nothing. You almost wish they had gotten taken out with the rest of the planet at the end, just in vengeance for boring us to death.<br /><br />Unless you really like Chris Lee or seventies low-budget sci-fi, I'd give this one a miss. It falls into that narrow range of wasted celluloid between Star Odyssey and UFO: Target Earth.\"\r\n0\tThe movie starts quite with an intriguing scene, three people are drinking and making small talk in a bar. All of them are making up a bit outrageous stories. As the movie unfolds, it turns out that the most outrageous story is true. However, beyond that the movie is not very interesting except for the scene in the bar and the scene where main secret is revealed. This revelation happens barely half time into the movie and frankly, not much is left to be seen. The rest of the time director is lingering in a god forsaken Russian village full of pitiful and creepy old ladies. Sure, these are fascinating and a bit shocking images, but admiring them goes on way too long, sacrificing any possible plot or character development. I found this movie as another example of either lousy or lazy movie-making, where instead of trying to make an interesting story, movie makers concentrate on weirdly fascinating imagery and through in a few almost unrelated stories (case in point - meat trader's story) to leave the spectator to figure out all odds and ends. On a surface it has artsy appearance, but in this particular case is nothing more than lack of talent.\r\n0\tthis is a great movie. I love the series on tv and so I loved the movie. One of the best things in the movie is that Helga finally admits her deepest darkest secret to Arnold!!! that was great. i loved it it was pretty funny too. It's a great movie! Doy!!!\r\n1\tMidnight Cowboy is not for everybody. It's raw, painful, and realistic but very entertaining. The lead actors Jon Voight and Dustin Hoffman who would go on to become Oscar winning actors deliver amazing performances. Voight as the Texas hustler, Joe Buck, who migrates from small town Texas to New York City to become a hustler. He does not apologize for his chosen profession but it is not that easy. The New York City women like the rich lady played by Georgeann Johnson and Cass played by Oscar nominated Sylvia Miles are different than Texas women. Sadly, Buck is trying to escape from his past life in Texas. He was raised by his grandmother, Sally Buck, played by the wonderful actress Ruth White who died in 1969 from cancer. The locations in New York City are wonderful to watch as is the relationship between Fatso played by Hoffman and Buck's characters evolve into a moving male to male friendship. The men are struggling to survive the New York City life by not playing by the rules like getting a real job. As the film evolves, Buck's past comes to the surface and it's haunting but not clear. The film is not for children but compared to today's films and television programming, Midnight Cowboy might be more tame. I can't forget a young Brenda Vaccaro and a party that you can't forget. It's also a tearjerker of a film, so get your hankies out too.\r\n0\t\"The character acting is a little stiff, as if it is the first time man of the actors have appeared on screen. Unfortunately one of the better actresses, Jean Simmons (played many bit roles on TV, like in Star Trek TNG and In the Heat of the Night), dies quickly and thereafter her acting can be markedly missed.<br /><br />The lead role is Mr Ballard, as portrayed by Cliff Robertson. Cliff is forced to carry this movie with his body language for most of the time. He doesn't do a poor job, but it is a little overmuch to ask of an actor to plug the oceans of blank screen time during which the characters spend their time NOT talking and also NOT acting. Robertson's most memorable role may have been Ben Parker in the last 3 Spider Man movies (starring Tobey Maguire).<br /><br />The plot is predictable. A husband murders his rich wife for her money. thereafter the wife seems to comeback and haunt the husband driving him insane until he leaps from a high window (fearing the specter of his dead wife approaching him) on the day he is predicted to die no less.<br /><br />The second chauffeur Mr Ballard hires looks a lot like an English mark Hamill. Uncanny really! The only thing that stands out is the utter disregard for dialogue. Many minutes pass in quietness, no one speaks, and few act. It is a shame the MST3K guys never got hold of this movie. It could have been much better, if not just as predictable, with more dialogue, or shorter scenes of 'nothingness'.<br /><br />I kept expecting G'Mork's red eyes to appear from the shadows and proclaim that he works for the \"\"nothing\"\" that inhabits this film.\"\r\n1\tI was very moved by the story and because I am going through something similar with my own parents, I really connected. It is so easy to forget that someone whose body is failing was once vibrant and passionate. And then there's the mistakes they made and have to live with. I loved Ellen Burstyn's performance and who is Christine Horne? She's fantastic! A real find. There is probably the most erotic scene I've ever seen in a film, yet nothing was shown - it was just so beautifully done. Overall the look and feel of the film was stunning, a real emotional journey. Cole Hauser is very very good in this picture, he humanizes a man spiraling downwards. I liked the way the filmmaker approached this woman's life, never sentimental, never too much - just enough to hook us in, but not enough to bog down.\r\n1\tThis, despite not being the original - it began life as a play in Central Europe - has weathered the several incarnations that followed (MGM's own remake with period songs In The Good Old Summertime, the Broadway show She Loves Me, even the excellent theatre revival in Paris a couple of years ago) and remains the definitive version and the one they all have to beat. Several previous commenters have identified the contributing factors that make it so successful and memorable not least being the prevailing fashion in 30s and 40s Hollywood for lavishing attention and detail on ensemble playing rather than just two leads as so often happens today - try, for example, removing Ugarte, Ferrari, Renault etc from Casablanca and yes you'd still have Rick and Ilsa and Viktor Lazslo but they'd just be frosting without the rich cake mixture below. Jimmy Stewart and Maggie Sullavan WERE both ideal and irreplaceable leads but how much brighter they shine when their performances are reflected in those of Frank Morgan, Felix Bressart, Joseph Schildkraut and Andy Hardy's Sara Haden and this is BEFORE we factor in that Lubitsch 'touch'. Okay, maybe they WERE a tad more naive, innocent even, in that Jurassic Age but how many genuine film lovers, sated with scatology, screwing and in-your-face sex, turn back to those days of Stories, Style, Slickness and Skill and wallow in great movies like this one. By far the best thing about this technological age is not CSI but DVD that can at one and the same time make these classics available to nostalgics and show the Matrix freaks how the big boys used to do it.\r\n1\tWarning: mild spoilers.<br /><br />The story of Joseph Smith stands out as an amazing - even moving - episode in American history and World Religious history. This movie portrays events in the life of Joseph Smith, whom Mormons revere as the prophet of the restoration of the true Church of Jesus Christ on the earth. I've so far seen the movie twice in its first month of public showing.<br /><br />Joseph Smith is shown first to be the youngest of a trio of brothers (Alvin, Hyrum & Joseph) who, at a very young age, needed an operation. The operation, done without our modern conveniences, was bloody and difficult. The scene helped to show the cohesiveness of the Smith family and the bonds between the brothers and between Joseph and his parents.<br /><br />Joseph's religious confusion and subsequent praying which lead to what Mormons call the First Vision was interestingly portrayed. The face of Jesus is never shown, but you see the unmistakable nail marks in His hands. The rejection by religious leaders and many in his small New York community is sweetened at least slightly by Joseph's marriage to Emma.<br /><br />This movie does not clearly map out the events of Mormon Church history, but merely jumps from scene to scene. This is not a critique - simply a note about the style.<br /><br />The practice of tarring and feathering is shown, and it is especially dramatic and moving when Joseph delivers a sermon about the Savior's love with a scarred face from having recently been attacked.<br /><br />The movie masterfully portrays simultaneously the joy and growth of Mormonism as an infant church, while at the same time the ever-deepening opposition that spread into the heights of local governments.<br /><br />The film shows many scenes from Joseph's life, including a few beautiful moments portraying his relationship to Emma. An attempt is made to show the depth and complexity of Joseph's life, including his fierce love for his wife, his endless love for children, his wit, his courage in the face of filthy and dangerous opposition, his religious sentiments, and his compassion.<br /><br />As Joseph and Hyrum ride to Carthage, never to return home alive, most of the characters from throughout the movie, whose lives had been touched by Joseph, are shown along the way, helping to reinforce what was already seen but setting up the final scene to be more powerful.<br /><br />At the end, the martyrdom of Joseph and Hyrum is portrayed, and moviegoers are left to ponder the events they just witnessed.<br /><br />When I first watched the movie I assumed it was made by the Church to introduce Joseph Smith to non-members. I no longer think that is the case, although I hope the movie can do just that. As an insider, I find that the film is a celebration of Joseph and excellently reinforces the good things we already know about him. I am curious to see how outsiders will view the film - whether they will simply see it as propagandic, an epic story of an American religious man, or something else.<br /><br />The film is beautifully shot, family friendly, moving and, hopefully, something good for everyone. That the events portrayed actually happened in these United States of America is interesting to ponder in light of the many aspects of our culture - including freedom of religious expression and respect (generally) for the law - we moderns take for granted.\r\n0\t\"The psychology of this movie is really weird to try and figure out. Its often billed as an anti-RPG movie, but its really not that simple. Here are come apparent contradictions that make me wonder just what (if anything) they're trying to say about gaming.<br /><br />They laboriously introduce all the characters home lives by way of introduction, all of them having parents who are divorced, alcoholic, and totally out of touch with their lives except for the times they're harshly pressuring them to succeed. Tom Hanks is arguably the worst off, having just failed out of another school and still dealing with a brother who disappeared and may be dead. <br /><br />Its mentioned a couple of times that they play the game to work through problems in their real lives. And sure enough, at the end, when they go to see Robbie (Hanks), they're all happy and well-adjusted, embarking on their adult careers, problems solved, games put away (Daniel doesn't even want to design computer games any more), and even Robbie's mother, who's been constantly drunk and dissatisfied, is suddenly the Happy Homemaker, looking fresh and bright and arranging flowers. <br /><br />Sure, JJ suddenly (and quite cheerfully it seems) decides to commit suicide, but the reason seems to be entirely because he's a lonely boy genius who can't get a date, and not because his character dies, as in the famous Jack Chick tract (which happens afterward anyways, and it almost seems like he does it on purpose so he can end Daniels game and get everyone to come play his. In fact, the prospect of live-action role playing in the caverns seems to be the only thing that saves him from killing himself!) And in what may be the coolest tableau scene in the whole movie, Kate, looking very fetching in chain mail, looks right at the camera and says something like, \"\"The scariest monsters are the ones in our own minds.\"\" <br /><br />The biggest fantasy element in this movie is the two muggers passing up the rich couple so they can rob the dirty, homeless-looking guy of his magic beans. The recurring theme (a \"\"The Way We Were\"\" for the 80s)might have been poignant at the end, but as a way to kick off a movie is downright depressing and seems out of place. And for one final mystery, our hero, wearing full Pardu regalia, has a psychotic break, becomes his character completely and embarks on his quest, so of course the first thing he does is change into 20-century street clothes. <br /><br />So maybe the movie's irrational, but I guess its dealing with an irrational topic. In those days a circle of kids with dice and pencils was regarded as tainted and possibly possessed, and you could go insane if they spoke their mumbo-jumbo at you. The anti-game paranoia is pretty much summed up in the first scene, where the reporter asks the cop whats going on, the cop says a kids lost in the tunnels and there's a chance Mazes and Monsters is somehow involved. The reporter admits to being vaguely familiar with the game (although he allows his own children to play it), then turns to the camera and reels off a polished spiel that blames the game for everything and admits no possibility of another explanation. In the end, its no masterpiece, but interesting as made-for-TV movies go.\"\r\n1\t\"I instantly fell in love with \"\"Pushing Daisies\"\". This show manages to put a smile on my face with it's great storytelling, witty dialog and great acting. But that's not all: It also manages to keep you until the end. The basic idea behind the show - Bringing people back to life with one touch, ending the undead status with a second - is interesting and could still be in later seasons. But the suspenseful murder cases, the unique look of the show and the highly proficient narrator add to the experience. But \"\"Pushing Daisies\"\" is more than it's parts. It has a certain charm that I really enjoy and I'm looking forward to enter the world of Ned and Chuck for a second season.\"\r\n1\tKurosawa is a proved humanitarian. This movie is totally about people living in poverty. You will see nothing but angry in this movie. It makes you feel bad but still worth. All those who's too comfortable with materialization should spend 2.5 hours with this movie.\r\n0\t\"Scarecrows is one of those films that, with a little more acting, a little more direction, and a lot more story logic, would have been quite compelling as a horror entry. As it stands, it is still a creepy film that has solid make-up and gore effects, and a premise that sustains the mood of terror in spite of itself. And hey, there are no teenagers getting killed one by one--just dumb adults, so that is a refreshing change of pace. And the plot line is amazingly similar to Dead Birds, with a precipitating robbery, an abandoned spooky house in the middle of nowhere, and demonic monsters. But just like Dead Birds, the adults are still witless, they run around cluelessly before getting slaughtered one by one, and they ignore the obvious danger.<br /><br />In Scarecrows, though, we never really find out the supernatural why, and that sustains the atmosphere of creepiness. And like clowns, scarecrows can be very creepy; unless they look like Ray Bolger, of course. Escaping in a hijacked plane with the pilot and his daughter, after a robbery netting millions, a para-military bunch is double-crossed by one of their own; a very nervous guy named Burt. He jumps out of the plane with the big, and heavy, box that holds the money with apparently no plans as to how to move it around once he is on the ground. Being the dumbest of the bunch, he is murdered first. But not before he happens upon the Fowler residence, nestled snuggly amid lots of really creepy-looking scarecrows, and surrounded with a wooden fence encircled with barbed-wire and lots of warnings to stay away. And the weird weathervane on the roof, with the pitchfork and pterodactyl, should have been a warning sign, too. The inside of the house is also quite foreboding (to us in the audience, anyway).<br /><br />Annoyingly, we must listen to Burt's thoughts in voice-over, as he walks around and mysteriously comes across the key to the decrepit truck in the yard. The way the key pops up would be enough to have my pants--with me in them--flying out the door. Perhaps it's just me, but I really enjoy watching people's lips move on screen, even when they are just thinking out loud. It helps to intensify the action, and gives the actor more to do than just look like what the voice-over is saying. Burt hoists the box onto the truck and makes his getaway. Sure why not? decrepit trucks always have lots of gas in them, especially with today's prices, and the battery? no problem. Now, I did mention that Burt was the dumbest of the bunch, and here is why (in addition to the above, of course). Wearing night-vision goggles to walk through the foliage and find the house, he takes them off to drive the truck away, and instead, turns on the headlights to see where he is going. Of course, the crooks still in the plane spot the headlights of his truck, and know where he is headed. Brilliant. He deserves to die. Definitely. I am not sure why he needed night vision goggles in the first place, as every scene is brightly lit, from the interior of the plane, to the night-time outside scenery, and the house. The cinematographer was either a. myopic, b. just out of school, or c. dealing with really cheap filmstock.<br /><br />Burt meets his demise when the truck dies in the middle of nowhere. Go figure. One very nice touch, and there are, I must admit, a few in the film, is the fact that when he opens the truck's lid, there is no engine. Creepy, to be sure (and insert pants comment again here). The story logic fails when dead, now-stuffed-like-a-flounder-with-money-and-straw-Burt returns to the house. The rest of the bunch are there, rough him up, then realize that he is indeed dead, and was gutted and stuffed like a flounder with money and straw. Dead Burt does manage to put up quite a fight, though, and grabs one fellow by the mouth, pushing him through a window, causing him to bite off more than he could chew in a gorylicious scene. At this point, you would think they'd would be racing out of the house and back to the plane--but noooo, they decide to stay and look for the rest of the money. In fact, the whole Burt is dead episode is treated rather matter-of-factly, although one bright bulb in the bunch does argue, \"\"Burt was walking around dead, for chrissakes!\"\"<br /><br />The stolen money suddenly appears on the grounds outside the house, and the crooks blithely go for the bait. Soon, another one of them, Jack, is dispatched, and again the scene is well done and horrific, involving a dull handsaw and no anethesia. Now there are three scarecrows going about wreaking mayhem, and one of them needs a hand, literally.<br /><br />When one of the crooks sees the scarecrows and Jack getting scarecrow-ized, he starts screaming, running away like hell, and shooting off his gun in typical para-military fashion. So much for all that training under pressure crap. He meets up with the others and stops in his tracks to explain why he is screaming, running away like hell, and shooting off his gun, even though the scarecrows appear to be chasing him. Again, that script logic thing... Dead and gutted, Jack returns to the house, and goes after the screamer with the usual results. If you listen to Jack's demonic growl, by the way, you may notice, depending on your age, that it is the same monster-growling sound heard often in the Lost In Space TV episodes.<br /><br />The last two survivors race away from the house and back to the plane, barely escaping. But do they? You will have to see the film to find out.\"\r\n0\tThis movie does not rock, as others have said. I found it really boring and silly. The story is about this metal high school kid who idolizes this really bad heavy metal singer. The singer dies, but not before making one last album that is to be played over the radio at, of course, midnight on Halloween (which would actually make it November 1st, a much less potent date to be sure). The kid gets a copy of the record and it contains secret hidden back-play messages. It also is the key that opens the door so that the really bad metal singer can return to bring havoc and death to the world. <br /><br />The first part of this film is not a horror film at all, but rather an After School Special. We see the metal kid (the outsider) tormented over and over by the popular kids. And he fails to learn the most important lesson in high school movies: When the cool kids who bully you suddenly invite you to a party, DON'T GO! It is a trap. Especially if it is a pool party. Anybody surprised when he ends up in the water?? It was such an After School Special that I kept waiting for Melissa Sue Anderson to show up and teach Jody Foster a lesson.<br /><br />So back to the horror part of the film. So this metal kid gets some powers and instead of using them to kill the bully boys (which would have made much more sense), he freaks out and tries to protect all of the bully boys and girls from harm. What? A sensitive hero? What fun is that in a horror movie? Thank goodness Carrie White did not follow this lesson. He actually tries to PREVENT having the music played at the Halloween Dance, the very music that could unleash a power to kill all the kids who had been mean to him. If it were me, I would have put that music on, and pronto. <br /><br />The rest of the movie is about this metal kid going around town trying to kill the horrible metal star he idolized. Why not partner with him and REALLY do some damage. Why you ask? It seems he is in love with one of the popular girls and does not want her hurt..more appropriate for a Molly Ringwald film. Is this a horror film or an episode of Beauty and the Beast? The movie just goes on and on at this point, with no scares, horror, or anything worth watching. If you went to high school in the late 80s like I did, this movie is fun to have a little flashback to fashions and big hair, but that is it for this film. Skip it and stay home and just listen to some KISS.\r\n1\tOn the eighth day God created Georges. But the same as an eighth day doesn't fit into the week, Georges doesn't fit into the modern world: He has Down syndrome and is therefore marginalized by society, shunted off to an asylum after his mother's death four years ago. She was the only one who loved him.<br /><br />Harry is another man that isn't loved anymore. His wife has left him, for reasons that she is unable to explain. He loses the love of his daughters, too, when he arrives too late at the railway station to collect the two kids, who wanted to spend the weekend with their father.<br /><br />Harry is a highly ranked businessman. He knows all the rules that enable us to succeed in our modern meritocracy. But he has entered a state of crisis, which reaches a climax after the loss of the love of his daughters. He questions the sense of his life, without obtaining any definite results.<br /><br />Harry and Georges meet. At first Harry tries to get rid of Georges, the same as all the others do. But Georges can't be shaken off. And it gradually dawns on Harry, how much he needs Georges, if he wants to get over his identity crisis. It is Georges who opens a new access to the world for him and who makes him view his life with different eyes. Friendship and human warmth take the place of calculating striving for success. It is no surprise that Harry now cannot avoid failing in his job.<br /><br />Georges helps Harry to regain the recognition of the daughters. Even his wife has to admit that the fireworks which he organized were worth seeing. Nonetheless a reintegration into the old life is no longer possible. And the new one turns out to be nothing more than a dream with a time limit, which unstoppably will reach its end. The camera watches Harry and Georges from above, for one long minute, as they are both lying down in the grass, just savoring the moment. But the same as this minute will unavoidably go by, the friendship of the two men, which came into being in such a wondrous fashion, will not be long-lasting. Georges is destroyed by the impossibility of love to the opposite sex and can see no other way out but to commit suicide. Harry turns into a city tramp, who asks the car drivers that are waiting in front of the traffic lights for charity.<br /><br />The movie describes modern meritocracy as a disastrous mechanism which devours positive values such as human warmheartedness or friendship. It is Georges, the mongol, who seems to be capable of showing the way out of the dilemma, but unfortunately his plea comes to a bad end. However, his failure does not necessarily have to mean that it is impossible or not desirable to reach the aspired goal. The way he shows us is surely passable, although it requires a huge amount of willpower and, above all, the courage to apply a radical nonconformism.\r\n1\t\"Full disclosure: I'm a cynic. I like my endings sad and my hankies dry. I didn't cry when Bambi's mother was shot. Will Smith's new film Happiness looks like a desperate plea for an Oscar. Basically I was born without an artistic soul. <br /><br />So why on earth did I like \"\"10 Items or Less?\"\" Maybe it was the double espresso I downed before the show. Or (more likely) maybe it was that even the most hardboiled of movie fans could use an occasional shot of sweetness. <br /><br />And sweet it is. From the moment \"\"Him\"\" meets \"\"Scarlet\"\" (an event far from a Nora Ephron \"\"meet cute\"\") the view is taken on an intimate journey with two strangers learning to care about where their lives are headed. (Aided beautifully by Phedon Papamichael's cinema verity style camera work.)<br /><br />The main argument about the film is that it's too far fetched. Is the film far fetched? I don't know. You tell me. I've yet to meet Adrian Brody at the market. (However, not for lack of trying). Do I enjoy considering the adventures that might occur should this momentous event take place? Darn straight I do . . .that's where most reviews of \"\"10 Items or Less\"\" fall short . . .they fail to take into account that even we cynics have fantasies. And heck, sometimes, it's worth the price of admission to vicariously live them, 82 minutes at a time.\"\r\n0\tHaving read during many years about how great this film was, how it established Ruiz among the french critics (specially the snobbish Cahiers crowd), when I finally watched it about a year ago, I found it pretty disappointing (but then, I guess my expectations were sky-high). Shot in saturated black and white, this deliberately cerebral film (made for TV, and mercifully, only an hour long) is told in the form of a conversation between an art connoisseur and an off-screen narrator as they ponder through a series of paintings (which are shown in the style of tableaux vivants) and try to find if they hold some clues about a hidden political crime. (The awful Kate Beckinsale film Uncovered has a similar argument). Borgesian is a word I read a lot in reviews about this movie, but I would say almost any Borges story is more interesting than this film.\r\n1\t\"There is this private campground in Plymouth, Massachusetts, that's been around since 1959. My grandparents were among its founders, my parents had a site starting in 1965, and my two brothers have sites there now.<br /><br />(This doesn't have anything directly to do with the movie; bear with me.) <br /><br />I spent summers at Blueberry Hill from when I was five years old to when I was eighteen, and it is to people like me to whom this film speaks: the ones for whom a group camp in the woods was, as my fiancée tells of me, \"\"the good and happy place.\"\" If you've never experienced the lifestyle, Indian Summer will probably be lost on you; don't bother. It's not quick-paced, it doesn't have rapid cuts, the plots aren't in the least bit convoluted, it has no explosions, such dramatic tension as exists is mild, there aren't any A-list actors, there are no rapid-fire quips just to show off how clever the scriptwriters are (other than, perhaps, Kimberley Williams' killer line about how her fiancé shouldn't \"\"overwind his toys.\"\" That is not the least degree what this movie is about, any more than The Godfather is a slasher flick just because it has a lot of on screen gore.<br /><br />But Indian Summer is Godfather's polar opposite. If you have experienced the lifestyle, see this movie. Don't read any more, just do it.<br /><br />For me, this is a 9/10 film.\"\r\n0\tAs far as Spaghetti Westerns go, I'd put This Man Can't Die on the dull side of the genre. It's not that the movie is particularly bad, but it lacks the brilliance and flash of some of the other SWs I've seen. Guy Madison does his best in the lead role, but lacks the on-screen charisma necessary to pull it off. With one notable exception, the rest of the cast isn't particularly good. The direction is uninspired and offers very few moments that I haven't seen before. There's just not much to get very excited about.<br /><br />The cast exception I mentioned is Rosalba Neri. She's the one bright spot in this otherwise mediocre film. Unfortunately, her screen time is limited to less than 15 minutes. (Note: The IMDb page for This Man Can't Die is wrong. Rosalba Neri does not play Jenny Benson. Instead, she is the character Melin. I'm not sure how anyone could mistake Rosalba Neri for some guy named John Bartha as listed in IMDb's credits for the movie.)\r\n0\t\"I wasn't entirely sure what to expect from a Comedy, Drama, Fantasy, Sci-Fi genre, but, given the actors involved I thought I'd give it a spin. The tone of the film felt awkward, going through patches of each of the genres but never quite felt balanced, so eventually I gave up trying, and concentrated on the cinematography and individual performances, which I thought were good on the whole, considering each character had little depth because of the nature of the story (won't give anything away here). I have to say it felt a LOT longer than its 96 minute runtime, and not in a good way. In the end I was looking for closure, some measure of satisfaction but it didn't turn out to be the clever or ingenious piece I had hoped it would be. I think Tony mistakenly thought what he did do at the end of the film gave us that... but it was a tragic mistake to try and validate the previous 95 minutes with the ill-conceived conclusion. Ultimately I feel cheated. IMO it would have been better to let it stand without the \"\"ending\"\" as a piece of Art... just. Or... I may have missed the point completely :)\"\r\n0\tI am a lover of B movies, give me a genetically mutated bat and I am in heaven. These movies are good for making you stop thinking of everything else going on in your world. Even a stupid B movie will usually make me laugh and I will still consider it a good thing. Then there was Hammerhead, which was so awful I had to register with IMDb so I could warn others. First there was the science of creating the shark-man, which the movie barely touched on. In order to keep the viewers interested they just made sure there was blood every few minutes. During one attack scene the camera moved off of the attack but you saw what was apparently a bucket of blood being thrown by a stagehand to let you know that the attack was bloody and the person was probably dead (what fabulous special effects). Back to the science, I thought it was very interesting that the female test subjects were held naked and the testing equipment required that they be monitored through their breast tissue. Anyway this movie had poor plot development, terrible story, and I'm sorry to say pretty bad acting. Not even William Forsythe, Hunter Tylo or Jeffrey Combs could save this stinker.\r\n1\tA great story, based on a true story about a young black man and all the difficulties along the road. Being that this is Denzel Washington's first ever movie that he himself was gonna direct, i have to admit i was a tad sceptical, but who wouldn't be..? But then again, he's a great actor with plently of years of experience, and the end result turned out great. The story is told in a great way, making you that has had difficulties during your childhood, and young adulthood, see yourself in those situations. So, it hits you hard, letting you know your not the only one going through hell. In all, a touching story about a young man trying to make it in this f***ed up world. (The story is based on the life of Antwone Fisher, born 3. August 1959, Cleveland, Ohio, USA, whom was also the writer of this movie) Strongly recommended. 8/10\r\n1\tWe tend to forget that the master/slave context of the past centuries lead to more than well-tended estates, powered by large groups of enslaved people, and a lot of money for the white owners. It lead to a group of people caught in the middle - the offspring resulting from slave owners interferring with their female slaves.<br /><br />Some of these children just became more slaves, and others were free...but free and coloured, which back then meant anything but, relative to the lot of their sires.<br /><br />A class formed around these offspring - the gens de couleur libre or free people of colour - and that class was able, to a certain extent, to own property, raise themselves from downtrodden to educated, and to attain a comparative dignity. That is to say, they weren't slaves, but they were still exploited to a certain extent.<br /><br />Often, the women lived as mistresses to the white plantation masters and men of wealth, set up in their own houses, with allowances, schooling paid for for their children, and a kind of gentility, dependent on the respectability they chose to impose on their families. In essence, they were prostituting themselves to ensure their own prosperity, and relative independence from labour - an arrangement called plaçage.<br /><br />Feast of All Saints is a beautifully written story about the children of one such woman, the result of just such an arrangement with a local gentleman, and the people who touched on their lives, in both a negative and a positive way. The tale was an eye-opener for me, a New Zealander, with no real conception of the black/white lines, let alone that grey area in the middle where the gens de couleur libre trod gingerly.<br /><br />The characters are very three dimensional, and have been well-rendered in this adaption of the novel, by Anne Rice. The parts are well-cast, the costumes are wonderful, and the brutal way the lines are drawn out, with the blurred areas made all the more distinct by the conflicts the protagonists go through. The gens de couleur libre could not marry the whites, the slaves could not help themselves, and the whites, even the sympathetic ones, couldn't bear to face the economic reality of doing right by the people they depended on.<br /><br />I recommend this story, both the novel and the miniseries, to everyone, unreservedly. If you can't handle the truth you'll cringe and cower through some parts, as one injustice after another is meted out on those of colour, both by their white oppressors, and by their own people. Bear in mind though that this is nothing more than reality, and this tale is an absorbing way to learn about it.<br /><br />I know it may sound callous, but this miniseries both entertained me and enthralled me, despite the sour taste I found in my mouth at what went on, and I thoroughly enjoyed it. Watch it. If not read up on the period, because there's a lesson to be learned from it all.\r\n0\t\"It's telling that as of the entry of this comment, NO females have submitted a vote of any kind for this movie. Not surprisingly, cheesy science fiction doesn't appeal to them quite as much... If you like a good \"\"B\"\" movie, and especially if you like to satirize them as you watch, you will like this. If you don't have fun watching bad movies, this one's not for you.\"\r\n0\tDefinitely, definitely the worst film I've ever seen, no questions asked! Contradictors of this opinion might argue that this title should not be judged by the same criteria as others, since it's an independent, low-budget film, but c'mon already  the amateurism and meager innovation is horrifying.<br /><br />Agreeing with everything that has been said about this film, for example the mind numbingly weak acting (when it's this bad you take another go at shooting the scene, god damn it), the thing I found the most annoying was the total lack of common sense in the script, assuming such a thing existed during the production. There was an obvious absence of a dialogue with respect for the viewers, the girls switched personalities several times and they seemed to show absolutely no sing of any rationality or even brains - five relatively fit girls against one slight female psychopath  gang up on her, why don't you?<br /><br />The only thing that can be regarded as somewhat of a conquest for this title is the camera not leaving the van at any time thus the viewer seeing everything from inside it - which is, as the rest of the film, a good idea executed exponentially dreadfully.<br /><br />oh and by the way, this movie is NOTHING like The Blair Witch Project or Cloverfield or any other title filmed with a hand-held camera  this is an effect and not a trait! Used cleverly it can be breathtaking, but in this case it's an excuse for inadequate cinematography.\r\n1\tI have no idea why this flick is getting such a bad rap by so many IMDb users (Some are saying it's his 'worst movie ever.' What?? Haven't any of you seen Cradle 2 The Grave?) My favorite criticism is that the plot is totally stupid, and just an excuse to hang all of the action sequences on. Duh! What the crap were you expecting from a Jet Li movie? Did you honestly believe that someone thought up the story, then just loaded it up with action? Of course not! Black Mask is awesome, wall-to-wall action throughout nearly it's entire running time. It's also deliciously gruesome, and we get plenty of severed limbs, decapitations, and creative ways of watching the bad guys (and quite a few innocent people, too!) get slaughtered. Most of Li's other martial arts films are nursery-school when compared to Black Mask; there is no holding back on the gratuitous violence, bloodshed, or action sequences whatsoever! And that made me a happy camper. Again: if you go into a Jet Li movie expecting magnificent dialog and an intriguing plot, you are going for the wrong reasons. Black Mask is probably my favorite of his movies (though, beware of the horrendous dubbing).\r\n0\t\"I enjoy a good, slow-moving drama. Christmas In August, Chungking Express, Virgin Stripped Bare By Her Bachelors, The Way Home, Springtime in a Small Town, Hana bi, Eat Drink Man Woman, Dolls, In the Mood for Love, and Spring Summer Fall Winter Spring are all enjoyable films  just to name a few. <br /><br />Unfortunately, there is a subset of films within the drama genre that attempt to ride the coattails of good films while providing nothing of interest themselves. These are what I call IAN films  \"\"Incomprehensible Artistic Nonsense.\"\" Tsai Ming-liang is the king of this subgenre, and Vive L'Amour is his \"\"masterpiece.\"\" In fact, this is the crème de la crème of crap-infested garbage under the guise of \"\"art.\"\" People walk around in their apartments, drink water, stroll back and forth waiting for pay phones to become vacant, hang posters, staple papers together, go to the bathroom, eat, do pushups, have sex, slap at mosquitoes, etc. I'm not joking when I say that is an accurate synopsis of the entire film, which is the quintessential posterchild for pointless art-house trash. There is no plot, no storyline, no interesting or noteworthy events, no emotion, no meaningful dialogue, and most importantly  no drama.<br /><br />The most eventful scene has two people \"\"banging\"\" on a bed with a person masturbating underneath the mattress  ironic that it's also totally tasteless and gratuitous. The relationship of the characters on the bed is practically non-existent. Tsai apparently didn't feel like communicating anything to the viewer regarding these people other than the obvious fact that they like to \"\"bang.\"\" The person under the bed is just as one-dimensional and uninteresting. He likes to drink water, makeout with melons, and stroke himself. This is Tsai's idea of \"\"character development.\"\" A truly misguided \"\"entertainer\"\" indeed.<br /><br />Tsai's true contribution in Vive L'Amour is perhaps the most atrocious scene in art-house film history. He first shows the lead actress walk all the way from one end of a park to the other for 285 consecutive seconds, only to then show her cry hysterically  for absolutely no reason whatsoever  for another 356 consecutive seconds. The film then abruptly ends. No point. No entertainment. Just pure, concentrated torture inflicted on the viewer. <br /><br />In an effort to beat a dead horse. The underlying theme of loneliness is mishandled so greatly that the only true feeling of this film is that of boredom. In fact, Kiyoshi Kurosawa provides a much better exposition on loneliness in his horror film Kairo. And guess what? It's actually INTERESTING! That film moved as slow as molasses in January, but there are better ways of addressing the concept of loneliness than the utter waste known as Vive L'Amour. Kairo is a perfect example of that.<br /><br />Fans of cinema may thank Tsai Ming-liang for directing this film, as he has provided irrefutable evidence that art-house cinema can be just as poorly made as B-grade, made-for-television horror flicks. Art-house snobs have now officially lost their pedestal of self-righteousness. The quality level of your precious genre now overlaps films like Army of Darkness and  gasp!  Showgirls. How do you like them apples?\"\r\n1\t\"A Scanner Darkly, Minority Report, Blade Runner, Sin City and Sky Captain and the World of Tomorrow  if you are a fan of any of these then this will be well worth checking out.<br /><br />French animation project 'Renaissance' took seven years to make on a shoestring budget and tonight I finally got to see it at a private screening for the International Film Festival in Stockholm. My spontaneous reaction is awe; my further reflection is 'huh, neat' and closer analysis regrettably gets a resounding 'meh'. It is a gorgeous science fiction triumph on the surface, but scratch it or even poke it a little and its unnecessarily complex plot becomes glaringly apparent, as do the flat characters. <br /><br />Nevertheless it is clear that the people at Onyx films have done something spectacular with the aforementioned surface. The visuals are staggering. They have used live action motion capture fitted into key-frame animation, with stark jet black and bright white contrasts and a heavily shadowed rotoscoped background. For those of you who are not down with the 'technical lingo', the film looks like a fully-animated Sin City. Its fluid, transparent, dark and stylized template is complemented by great lurid lightning. It's a vision. Yet much credit is also due to the crisp sound effects that take the form of humming futuristic weapons, suspenseful music, heavy raindrops and glass shards breaking. It's every tech-nerd's wet dream...<br /><br />The film zooms in on an eerily-lit, bleak, futurescape Paris in which a major corporation called 'Avalon' has begun to interweave in the lives of the citizens with surveillance (think the fluid transparent screens from Minority Report) and genetic engineering. The latter leads to a mysterious kidnapping of young researcher Ilona (voiced by the lovely Romola Garai). Cut to our hard-boiled cop-on-suspension and protagonist Karas (Daniel Craig)  a man who takes the law into his own hands  who is assigned the case of finding and retrieving Ilona. During this case, he is being aided by Illona's sister with whom he also begins a love affair. A very half-assed love affair, if I may say so.<br /><br />The world of Renaissance is remarkable. Director Christian Volckman takes a fair jab at melting the noir themes and the result is an urban jungle filled with cads, rats, femme fatales and lonely detectives that hide in the shadows of the seedy slum. The problem is that the creators undoubtedly felt the need to have extremely clear and spelled-out archetypes in the story, or the film would have been \"\"too surreal\"\" for mainstream audiences, owing to its lurid animation format. It follows then that we have a multitude of clichéd characters such as evil-laughing villains, sleazy crime bosses and butch tough-chicks who blow smoke every chance they get. It shoves noir in our faces, and it isn't necessary.<br /><br />What is worse is that the dialogue is a little contrived. It seems as though every line exists for the sole reason of propelling the plot. This is nothing fatal because the plot is so complex once it gets going that it needs some clear direction. Daniel Craig helps here too by bringing a no-nonsense attitude to his hard-edged cop character. At one point in Renaissance, he is seen in a vivid car-chase that surely is one of the most adrenaline-pumping and top notch sequences of the film. Unfortunately, the novelty of the sci-fi visuals have worn off post this car chase and 'Renassaince' could benefit from being slightly shorter. In summary, a very interesting but flawed futuristic comic book experience.<br /><br />7 out of 10\"\r\n1\t\"-The movie tells the tale of a prince whose life is wonderful, but after an evil wizard tells him to go into town disguised as a beggar the wizard then locks up the prince and soon becomes the shadow ruler of Baghdad. the jailed prince meets a thief called Abu who helps him escape the jail and head to a town called Basra where he meets a princess who he falls madly in love with, but unbeknown to him the evil wizard Jafa is also in love with the princess and tries to convince her father to allow him to marry her. Jafa soon learns that the prince is trying to win the girls heart so he makes him blind and turns Abu into a dog. This leads to the prince and Abu going off on an adventure to find a way to defeat Jafa, restore peace to Baghdad and marry the princess. during their journey they encounter everything from sarcastic Genies that takes Abu on a flight through the clouds, a giant spider that's really hungry, and a flying horse that probably gives birth to one of the most beautiful sequence these old eyes of mine have ever seen.<br /><br />-This is a pure fantasy movie from start to finish it has flying horses, genies, flying carpets, and wizards that can actually do magic instead of just hit people with their staffs. It doesn't have any cheesy moments and the love story isn't a waste of time. The production designs are just stunning in this movie. From the palaces to the different dangerous traps that the heroes encounter. Even though this movie is over 40 years old, the production design is far better than most of the crap that gets tacked on in today's cinema. The music and songs are also well done. Anyone who sees it will no doubt hail, \"\"I want to be a sailor sailing on the seas\"\" as one of the great musical moments in movies. I'm usually not a huge fan of singing in movies since I find them about as enjoyable as doing my taxes but I'll be more than happy to make an exception for this movie.<br /><br />-What sells the movie for me is the sheer fact that you get to see things you don't see in everyday life which is also the same reason why I love stuff like \"\"Two Towers\"\" and \"\"Silent Hill\"\". Way before today's modern fantasy movie came along with their realistic CGI to blow our minds there was this movie which blew your mind without having green screen scattered all over the place. One of my favorite shots in \"\"Two Towers\"\" is the one where we see the trolls opening the Black Gates, the main appeal of that shot for me was seeing these great fantasy beings doing what is essentially manual labor, and that's what I love about the Genie and other creatures in the movie. They're just there trying to make a living just like everyone else which gives them a real feel even though they're all just fantasy beings.<br /><br />-It's literally impossible to watch this movie and not notice where the makers of \"\"Aladdin\"\" got their inspiration. The characters from this movie are pretty much the same characters in that movie from the talkative Genie right down to the flying carpet. It's not an entirely bad thing in my eyes since it's nice to know that I'm not the only one on the planet that has a deep passionate love for this amazing movie. I first saw this as a kid in the motherland and thought it was the greatest thing in the world and upon watching it again last week I still think it's amazing. That's a true testament that a great movie can withstand the test of time. Sure, the effects look a wee bit outdated and cheesy but it was made way back in the 40's so give it a break. Not everything looks outdated though since most of the stuff can still hold its own today when scrutinized under today's standard.<br /><br />-If you ever wanted to see a live action version of \"\"Aladdin\"\" then you should get your wish with this but the angry cynical bunch will probably do good in avoiding this since this won't be their cup of tea.\"\r\n1\tA sentimental story with a sentimental sound track. It's about a little girl ( with a voice impediment ) who treasures her green parrot Paulie. The parrot thinks and talks like a human being and gives help and advice to his constant companion.<br /><br />The parrot is definitely the star of the film. At times mischievous and at times in fits of depression the bird captures the mood in a most remarkable and expressive way. The synchronised voice too is very well done and within a minute or two you can actually believe that this intelligent little bird exists.<br /><br />Early in the film her father gives the bird to a pawnbroker and the subsequent scenes tell the story of Paulie's constant struggle over many years to be re-united with his mistress. One of the many memorable scenes is when he falls into bad company and is encouraged to spy on people using the automatic teller machines. Paulie it seems has a phenomenal memory.<br /><br />The ending is predictable, but who would want it otherwise. Children will love this film and anybody who keeps a bird as a pet will delight in Paulie's antics.\r\n0\tRichard Dix is a big, not very nice industrialist, who has nearly worked himself to death. If he takes the vacation his doctors suggest for him, can he find happiness for the last months of his life? Well, he'll likely be better off if he disregards the VOICE OF THE WHISTLER.<br /><br />This William Castle directed entry has some great moments (the introduction and the depiction of Richard Dix's life through newsreel a la Citizen Kane), and some intriguing plotting in the final reels. Dix's performance is generally pretty good. But, unfortunately, the just does not quite work because one does not end up buying that the characters would behave the way that they do. Also, the movie veers from a dark (and fascinating beginning) to an almost cheerful 30s movie like midsection (full of nice urban ethnic types who don't mind that they aren't rich) and back again to a complex noir plot for the last 15 minutes or so.<br /><br />This is a decent movie -- worth seeing -- but it needed a little more running time to establish a couple of the characters and a female lead capable of meeting the demands of her role.\r\n0\tIf there was a scale below 1, it would get a -10, following in the footsteps of Godspell. The acting (if there was such a thing) was atrocious, the plot in shambles. And Rene Russo was sickeningly sweet in her role, enough to make a person retch. Ten thumbs down for a dumb movie. Saving grace: kudos for era costuming.\r\n1\tWhen I think of Return of the Jedi I think epic. Yeah Ewoks were in there so what? They're an interesting add to the movie (not to mention they are similar to the Vietcong who were also able to take down a technologically advanced army with primitive acts). Jedi is definitely more darker then the rest of the movies. Emperor Palpatine (portrayed by the amazing theater actor Ian McDiarmid) was one the best parts of the movie. Palpatine is so evil and vicious, Vader looks like Mr. Rogers compared to him . Speaking of Darth Vader, what an amazing end to such an iconic character. Vader is truly a modern day Greek tragedy and I think people can now especially understand and appreciate this after Revenge of the Sith came out. His redemption at the end was moving and really brings a happy yet bittersweet feeling to you. The best part was of course the special effects. It's amazing how a film from the early eighties can still stand the test of time with it's graphics. The scenes at Jabba's palace (Leia looks amazing in that metal bikini) and of course the epic three way battle at the end are still stunning to look at. In all Jedi's deep plot and emotional moments (primarily between Luke Vader and Palpatine and when Luke reveals the truth to Leia) and incredible special effects is a fitting end to one of the most beloved franchises in cinema history.\r\n0\t\"This film concerns the story of Eddy as mentioned in the title and his homecoming to old friends in a seaside community. The plot involves the group of friends as it comes to light that Eddy left as a means to deal with death of a friend in which he feels in some way responsible. But this is inconsequential, as the choices made in the production are extremely poor and not fully realized. Screenplays not always need be 'chatty', but they should at least assist the development of the story. Here one line attempts such as \"\"he just took off\"\" or \"\"I know you don't have love in heart\"\" just do fully evoke something worth the audience's time. Also whenever the writer feels at a loss to where to go to next he cuts to a music montage of the protagonist walking through fields to some indie mood music. Talk about trying to hard. If you are interested in a good film, the type that gives quality and substance over just style then this is not the film for you.\"\r\n0\tI am giving this pretentious piece of garbage a 1 simply because i don't believe there is a worse movie in the world.<br /><br />I hate this movie, i hate the acting, dialog, setting, writing and directing. I hope everyone that was involved in this movie burns and rots in the darkest circle of hell.<br /><br />Damn this disgusting waste of time.<br /><br />I pray every day that this movie is just a figment of my imagination. i pray that i dreamt the movie, and that i will never have to see it at <br /><br />my local video store again.<br /><br />BURN IN HELL\r\n1\tI fell in love with this silent action drama. Kurt Russell and only Kurt Russell could have played this so well. Raised from childhood to know nothing but war and fighting, Todd (Kurt Russell) is dumped on a planet after being made obsolete by genetically engineered soldiers.<br /><br />The stage is set and another classic icon of action movies was born - SOLDIER. Not Rambo, not Schwarzenegger, not Bruce Willis, not Mel Gibson, not Jason Statham - Kurt Russell owns this role and made it entirely his - original, daring, and all too human. I miss the fact that sequels were never made.<br /><br />10/10<br /><br />-LD<br /><br />_________<br /><br />my faith: http://www.angelfire.com/ny5/jbc33/\r\n0\tIf you are planning to rent or buy this movie don't. It's the worst thing I have ever seen. I would comment on it more but It has been 10 years since I saw it and have blanked all of it from my mind. Save yourself some time money and well being and stay far far away.\r\n0\t\"This movie is a lot like the movie Hostel, except with *BAD* acting and not much suspense. The gore elements are there, but you don't really feel anything for the characters, making the violence not very effective. Some parts are just strange... like forcing a snake down someones throat. What's up with that? Is that supposed to be scary or gory? It's just kind of stupid. As for torture, there really isn't any (except for the guy getting blow-torched in the beginning, which they don't show anyway). The main bad guy keeps saying \"\"make them die slowly\"\", yet the butcher kills them all very fast. The deaths are all relatively quick. Yes, I did watch the \"\"unrated\"\" version. So, overall, not the worst gore movie I've seen, but not at all good either. You won't miss anything if you skip this one.\"\r\n1\t\"Made in the same year as \"\"Vertigo,\"\" this is an equally bewitching movie, though in a much lighter vein. It's set in an enchanted New York during the winter: Kim Novak is a witch who casts a spell over James Stewart, but gets caught in it instead. The interesting sidelight is that Novak's rival is played by Janice Rule, who originated the part of Madge in \"\"Picnic\"\" on Broadway (the part that Novak would make famous on film).\"\r\n1\t\"Several years ago the Navy kept a studied distance away from the making of \"\"Men of Honor,\"\" a film based on the experiences of the service's first black master chief diver's struggle to overcome virulent racism. Ever eager to support films showing our Navy's best side the U.S.S. Nimitz and two helicopter assault carriers, with supporting shore installations, were provided to complement this engrossing tale of a young sailor's battle with uncontrollable rage. Some of the movie was shot aboard the U.S.S. Belleau Wood.<br /><br />Antwone Fisher wrote the script for Denzel Washington's director's debut in which he stars as a Navy psychiatrist treating Fisher, played effectively and deeply by Derek Luke.<br /><br />Fisher is an obviously bright enlisted man assigned to the U.S.S. Belleau Wood (LHA-3), a front line helicopter assault platform. Fisher can't seem to avoid launching his own assaults at minimal provocation from his fellow enlisted men. Sent to the M.D. as part of a possible pre-separation proceeding, Fisher slowly opens up to the black psychiatrist, revealing an awful childhood of great neglect and shuddering brutality.<br /><br />The story develops as Fisher cautiously but increasingly trusts his doctor and gets the courage to pursue a love interest, an enlisted sailor named Cheryl, played by a stunningly beautiful Joy Bryant.<br /><br />Fisher reluctantly engages with the doctor by asking long simmering questions but soon realizes he must seek the answers, however painful, in order to grow and move away from conflict-seeking destructive behavior.<br /><br />While all the main characters are black, this story transcends race while unflinchingly showing the evil of exuberant religiosity and concomitant hypocrisy in foster family settings. Viola Davis, a versatile actress seen in a number of recent films, is a picture of sullen immorality but is nothing compared to foster mom, Mrs. Tate (Novella Nelson), who in short but searing scenes would earn - if it existed - the Oscar for gut-churning brutality.<br /><br />Films about patient-therapist interaction follow a certain predictability (all that transference and counter-transference stuff) but the earnestness of Fisher and his doctor/mentor is realistically gripping. It's a good story, well told. Period.<br /><br />While set in the Navy, \"\"Antwone Fisher\"\" is not in any real sense a service story as was \"\"Men of Honor,\"\" an excellent movie that dealt with crushing racism directed against a real person. Nor is it truly a film about blacks. It's about surviving terrible childhood experiences and, as Fisher says, being able to proclaim in adulthood that the victim is still \"\"standing tall.\"\" The persecutors shrink in size and significance as a brave and strong young man claims his right to a decent life with the aid of a caring doctor.<br /><br />My only quibble is that Washington is a lieutenant commander but is addressed as commander. With all the Navy support people listed in the end credits, someone should have told Director Washington that his character, like all naval officers below the rank of commander, is addressed as \"\"Mister.\"\" Not a big criticism, is it? :)<br /><br />I don't know why this film is playing in so few theaters. It deserves wide distribution. Derek Luke may well get an Oscar nomination.<br /><br />8/10.<br /><br />\"\r\n1\tA comedy gem. Lots of laugh out loud moments, the shop and pub scenes had me belly- laughing uncontrollably. The characters are recognisable and the dialogue well-observed - I know people like this! The humour is surprisingly gentle and the film (this may sound strange) puts me in mind of an Ealing Comedy. It's a quirky little film with lots of detail. It certainly takes a number of viewings. I've watched it a few times (I've been showing all my friends!) and notice something new each time - a bit of dialogue,something visual that I hadn't picked up on before. I could get really picky and find a couple of shortcomings in the film but I'm not going to because overall this is a great fun, feel-good film which is really worth a watch and which anyone with a sense of humour must enjoy. It is a film which will find it's friends and I hope there are a lot of them out there. Oh.... and It has a great soundtrack.\r\n0\tI am oh soooo glad I have not spent money to go to the cinema on it :-). It is nothing more than compilation of elements of few other classic titles like The Thing, Final Fantasy, The Abyss etc. framed in rather dull and meaningless scenario. I really can not figure out what was the purpose of creating this movie - it has absolutely nothing new to offer in its storyline which additionally is also senseless. Moreover there is nothing to watch - the FX'es look like there were taken from a second hand store, you generally saw all of them in other movies. But it is definitely a good lullaby.\r\n1\tThat's My Bush is a live action project made by South Park creators Trey Parker and Matt Stone.The show was cancelled after one season, not because of bad reviews(it actually got good reviews), but because it was very expensive.That's my bush is a pretty funny spoof of an average network TV sitcom.It is also a political satire.Now, this is nowhere near as good as South Park, but it is a very funny spoof of a sitcom and also a pretty good political satire.The guy who plays in that's my bush looks a lot like him! If you can find the show, check it out.There are plenty of laughs to be had!<br /><br />9/10\r\n1\t\"Eva (Hedy Lamarr) has just got married with an older man and in the honeymoon, she realizes that her husband does not desire her. Her disappointment with the marriage and the privation of love, makes Eva returning to her father's home in a farm, leaving her husband. One afternoon, while bathing in a lake, her horse escapes with her clothes and an young worker retrieves and gives them back to Eva. They fall in love for each other and become lovers. Later, her husband misses her and tries to have Eva back home. Eva refuses, and fortune leads the trio to the same place, ending the affair in a tragic way. I have just watched \"\"Extase\"\" for the first time, and the first remark I have is relative to the horrible quality of the VHS released in Brazil by the Brazilian distributor Video Network: the movie has only 75 minutes running time, and it seems that it was used different reels of film. There are some parts totally damaged, and other parts very damaged. Therefore, the beauty of the images in not achieved by the Brazilian viewer, if he has a chance to find this rare VHS in a rental or for sale. The film is practically a silent movie, the story is very dated and has only a few lines. Consequently, the characters are badly developed. However, this movie is also very daring, with the exposure of Hedy Lamarr beautiful breasts and naked fat body for the present standards of beauty. Another fantastic point is the poetic and metaphoric used of flowers, symbolizing the intercourse between Eva and her lover. The way the director conducts the scenes to show the needs and privation of Eva is very clear. The non-conclusive end is also very unusual for a 1933 movie. I liked this movie, but I hope one day have a chance to see a 87 minutes restored version. My vote is eight.<br /><br />Title (Brazil): \"\"Êxtase\"\" (\"\"Ecstasy\"\")\"\r\n1\tGreat screenplay and some of the best actors the world has ever produced. Montand gives the concept of the 'lone wolf' police detective a whole new dimension of intensity and, most importantly, credibility.<br /><br />When a typical Hollywood cop-heroe loses family, friends and pets to murder he is usually given his minute of grief. But when the sixty seconds are over, he pulls himself together, packs his gun and goes gleefully shooting up his enemies one by one.<br /><br />Montand's Marc Ferrot, however, is really devastated - by his girlfriends murder, of course, but also by finding out that she had another lover.In his confusion and wrath he does not seek revenge but needs to keep going to find the real perpetrator of a crime where his fingerprints are all over the scene. Thus all his actions become unescapably logical. This is the main reason why this movie glues us to our seats but definetely not the only one.\r\n1\t\"I have to say, as a BSG fan I wasn't exactly sure what I'd think of this show. I saw it on the big screen at the Arclight cinema tonight (as part of the Paley Center screenings), and the cast and film makers spoke after-wards. Ron Moore said they 'wanted to make a clean break from Battlestar, and do something different, and that yes they would lose some fans but hopefully they'd gain others\"\". <br /><br />Even without their talk, I am now a fan of the new show. But here's what I thought of the film.<br /><br />I loved it. It was really very good. I guess I'm a true sci-fi (or 'syfy' - do I really have to type that?) geek, because I'd totally watch this as a series. It has a strong and rich story, and kept my interest. <br /><br />It starts with a small group of teenagers plotting something, which to me was the weakest part and a bit confusing. The actor playing \"\"Ben\"\" should have given us more of a glimpse into his intense beliefs. The actress playing \"\"Zoe\"\" seemed a little posy, but she was playing a teenager (and I'm sure I won't be the only one who thought \"\"Zoe\"\" was a cylon at first, perils of being a BSG geek). If they're hoping these will be the new Bamber/Helfer/Park, they may want to rethink it. Surprisingly, it was the adults that captured the audiences attention.<br /><br />Eric Stoltz gives a stellar performance as Daniel Greystone, a man so haunted by his family tragedy that he jumps at the first chance of getting out of his grief and doesn't let go. He does a chilling and enthralling job of conveying his character's sly knowledge of the inner world of computers and people, especially in a scene in which he spins a web for the young teenage friend of his daughters, traps her, then dismisses and releases her. No sign at all of the 'serial killer' he played on Gray's Anatomy, really impressive acting.<br /><br />Equally as strong though not in it nearly as much is Paula Malcomson as his wife Amanda Greystone. She is just as smart and well written and beautifully played as Stoltz's part, and I completely believed that they are a couple, and a couple that have been together forever and have a strong relationship, something rarely seen these days. I look forward to seeing what happens with this family, and hope they give her as much to do as Roslin in BSG- she is strong and smart and when she lashes out at her kid, you cringe, it's really great. Not to mention her eyes, which could hold magical powers, that's how intense they are. The scene where she takes on the government agent- very short scene, but beautifully played- really gives you an idea of her power.<br /><br />The other part of the show that did not work 100% for me were the scenes with Esai Morales, and the mafia type clan of his. He does a good job overall, but I did not believe in this mobs power, nor intimidated by their threats. I found myself wishing that this whole story line was a bit more mysterious and hard to figure out; the way it is presented is almost an homage to the Godfather, they kind of hit you over the head with it a bit. But given time, I can see how this will develop into an interesting 'Upstairs/downstairs' kind of thing, with the poor minorities (Morales et al) versus the rich folk who rule the planet (Stolz et al). And to be honest, I did enjoy it when he spoke to his son about the origin of their name- that was a very well played scene.<br /><br />Note to BSG fans, the boy playing 'Willy Adama' doesn't really look much like Olmos, but he's just a kid. Whether or not he'll be featured any more than he was in this film, who knows? I sure couldn't tell. But it didn't bother me, because he wasn't as interesting as everything else going on around him.<br /><br />Polly Walker plays 'Sister Clarice', and she's chilling and odd in every scene she's in. I'm not sure where she'll go or who she'll end up with, but I was very impressed with her acting. In this film she was sort of on the side, but obviously being set up to play a very important part later on. She was nothing like her character in \"\"Rome\"\", something I always find impressive in actors.<br /><br />One nice surprise- the music is actually better and less obvious than BSG, even though it's the same guy doing it, Bear McCreary. It has a haunting and unusual approach that took me by surprise, I'd buy this score if I had the chance.<br /><br />As to the 'panel discussion' after the show, it was hosted by Seth Green. Ron Moore was very smart and articulate, David Eick was cracking wise (much like his video diaries), Esai Morales told a long story about how he was cast, and Eric Stoltz was very funny and didn't really answer the questions ( but I've always had a thing for him). Paula Malcomson was tough (she took Seth Green to task for mistakenly saying she was on '24'), and the girls who played Zooey and Lacey were both darling. Grace Park and Tricia Helfer were there as well, answering questions about how they did the scenes acting with themselves on BSG. Overall a very interesting and wonderful evening.<br /><br />I'm giving the show a 9 out of 10, and very much looking forward to watching it all unfold.<br /><br />NOTE: I just watched this a second time and really hope they explore what the HOLOBAND was originally made for. I have no idea what that may be, but it holds a great deal of fascination to me.\"\r\n1\tPresenting Lily Mars may have provided Judy Garland with one of the easier roles she had while at MGM because Lily Mars is definitely a character she could identify with. A young girl with talent enough for ten, she knows she has what it takes to make it in the theater no matter how much producer Van Heflin from her home town discourages her.<br /><br />I really liked Judy in this one as the girl determined to make it in the theater. Because it is Judy Garland with the talent of Judy Garland you in the audience know she has the right stuff even if it takes Van Heflin nearly the whole movie to be convinced.<br /><br />Both Judy and Heflin hail from the same small town, Heflin's dad was the town doctor who delivered her and Heflin while he may have moved away and become a big producer on Broadway, their respective moms, Fay Bainter and Spring Byington have kept in touch. That's her entrée, but Heflin's constantly barraged with stagestruck kids, but never anyone quite like Lily Mars.<br /><br />No real big song hits came out of Presenting Lily Mars for Garland, though she sings all her numbers. The best in the film is a revival of that gaslight era chestnut, Every Little Movement Has A Meaning All Its Own. Judy sings it with Connie Gilchrist playing the cleaning lady in a Broadway theater where Heflin's show is being produced. Gilchrist was a star back in the days of the FloraDora Girls and she and Judy deliver the song in grand style with Connie. It's the best scene in the film as Gilchrist encourages Judy to keep at it. Composer Karl Hoschna had died a long time ago, but lyricist Otto Harbach was still alive and I'm betting he liked what he heard.<br /><br />European musical star Marta Eggerth is in Presenting Lily Mars as the show's star who's at first bemused, then angry and finally, understanding of Garland and Heflin. She did a couple of films with MGM and then went back to Europe for more work on the continent. I'm betting MGM didn't quite know what to do with her and her thick Hungarian accent, though Louis B. Mayer never met a soprano he didn't like.<br /><br />Van Heflin does well as the patient producer who puts up with a lot from Garland and Eggerth. Heflin was just coming off his Oscar for Johnny Eager the previous year and he and Garland wouldn't appear to be an ideal screen team, but they're not bad together.<br /><br />Presenting Lily Mars is a fine showcase for the talents of Judy Garland. And she didn't have to share the screen in another backstage film with Mickey Rooney.\r\n0\t\"Overall this movie is dreadful, and should have never been made. One of the problems with this movie is that there is no link to the audience and the characters, for example, if she is about to be attacked, you want to feel, \"\"Oh My God, No!\"\", but you don't in this case, you don't care because there is no link that has been made to know the character. In the trailer, it seemed as though the movie would be great, yet there is no suspense what so ever really. There could have been maybe some mystery but there is not. \"\"All she has is a toolbox.\"\" was said on the DVD's back, you would think that it was carefully planned this movie, and cleverly made, but it is not, The ending, was just awful, very straight forward, and pointless too. The acting is either average or below average, maybe even lower. In my opinion it was a waste of an hour of my life. The \"\"Special Effects\"\" and sets were average too, nothing special what so ever. There is not much gore, or bloody violence, not much blood is shown. This movie was advertised to make it sound quite amazing, yet really, its not even worth looking for, I do not recommend this to anyone, unless they are easily satisfied, by a few fights and a boring story.\"\r\n1\t\"I couldn't agree more with Nomad 7's and I A HVR's comments. A perfect laid back Sunday morning movie. The humor is subtle (exact opposite of \"\"slapstick\"\" as one misguided commenter noted).<br /><br />But what always ceases to amaze me is how often I find myself wanting to come back to this movie over and over. I originally copied this movie onto VHS about 12 years ago when it was premiered on one of those Pay Cable free weekend previews(HBO maybe?). Had never heard of it previously. Don't know why it wasn't marketed that well. ?? When DVD's were released en mass, it was one of the first movies I replaced. A great combination of cast and writing. Plus, the back drop of Montana wilderness doesn't hurt things either (beautiful).<br /><br />It's probably not the type of comedy for everyone, but what is? If Adam Sandler type stuff is up your alley, this probably won't be your cup of tea. This movie needs your full attention. The humor is mostly in the dialog.<br /><br />I believe my next viewing will probably be about my 12th. But I still know that when it gets to the scenes like the one where the hoods of the police cars start blowing off, I'm going to loose it (Ed O'Neill's face is PRICELESS!). Recommended 110%.\"\r\n1\t\"This was one of the DVD's I recently bought in a set of six called \"\"Frenchfilm\"\" to brush up our French before our planned holiday in beautiful Provence this year. So far, as well as improving our French we have considerably enhanced our appreciation of French cinema.<br /><br />What a breath of fresh air to the stale, predictable, unimaginative, crash bang wallop drivel being churned out by Hollywood. What a good example for screenplay writers, actors, directors and cinematographers to follow. It was so stimulating also to see two identifiable characters in the lead roles without them having to be glossy magazine cover figures. <br /><br />The other thing I liked about this film was the slow character and plot build up which kept you guessing as to how it was all going to end. Is there any real good in this selfish thug who continually treats his seemingly naïve benefactor with the type of contempt that an ex-con would display? Will our sexually frustrated poor little half deaf heroine prove herself to the answer to her dreams and the situation that fate has bestowed upon her? The viewer is intrigued by these questions and the actors unravel the answers slowly and convincingly as they face events that challenge and shape their feeling towards each other.<br /><br />Once you have seen this film, like me you may want to see it again. I still have to work out the director's psychological motive for the sub plot in the role of the parole officer and some of the subtle nuances of camera work are worth a second look. The plot does ask for a little imagination when our hero is given a chance to assist our misused and overworked heroine in the office. You must also be broad minded to believe in her brilliant lip reading and how some of the action falls into place. But if you go along for the thrilling ride with this example of French cinema at its best you will come out more than satisfied. Four stars out of five for me.\"\r\n1\t\"Would that more romantic comedies were as deftly executed as this one? I never thought anything as mundane as the simple sale of a music box could leave me catching my breath with excitement. Margaret Sullavan makes a marvellous saleswoman, and she and James Stewart always brought out the best in each other. This movie sports what I think is Frank Morgan's most winning performance, and with \"\"The Wizard of Oz\"\" and \"\"Tortilla Flat\"\" under his belt, that is saying a lot. The way he finds a Christmas dinner partner left me giddy with joy. Director Ernst Lubitsch might have thought \"\"Trouble In Paradise\"\" his favorite, but this one he must surely consider a triumph. With some of the wittiest dialogue American movies of the 30's has to offer.\"\r\n1\t\"I bought the video rather late in my collecting and probably would have saved a lot of money if I bought it earlier. It invariably supersedes anything else on those \"\"Cosmo's moon\"\" nights. Cher and Olympia certainly deserve their awards but this is really a flawless ensemble performance of a superb screenplay. What? You don't know what a \"\"Cosmo's moon\"\" is?\"\r\n1\tA critical and financial flop when first release, the critics have turned around and stated that this film ison of the Director's best. A La Ronde like feel to the film quickly develops as the guys from a detective agency (Ben Gazzara, John Ritter and Blaine Novak) persue, fall in and out of love with some of the most quirky and beautiful women seen on film (Audrey Hepburn, Colleen Camp, Dorothy Stratten and Patti Hansen). Much of the script was ad-libbed or re-written on the day of shooting which gives the film a breezy feel. Ben Gazzara is excellent as the head detective persuing Audrey Hepburn after dropping singer Colleen Camp and seeing cab-driver Patti Hansen on the side. John Ritter ineptly follows Dorothy Stratten and immediately falls in love with her. Blaine Novak has a few girls he is chasing (including Joyce Hyser and Elizabeth Pena). This film has some great performances by a supurb cast. Standouts are Audrey Hepburn (she doesn't have a line in the first half of the film). Ben Gazzara has never been better (and an inspiring choice for a romantic lead) and Colleen Camp has one of her best roles as the manic country singer Christy Miller. She is a delight to watch as she fires off her lines in a rat-a-tat-tat delivery. Highly Recommended! ********* stars!\r\n1\tFor those who think it is strictly potty humor and immaturity, you are in fact the mindless one. While the show does contain its share of potty jokes it also contains a lot of satirical material and pokes fun at social problems, racial barriers, cliché's,stereotypes etc. You just need to read into some of her material a bit more to get it.<br /><br />What I also love is that not everything is a punchline. For those expecting a formulated joke like Friends (I LOVE friends fyi), you won't find it here. Instead Sarah uses situations and other ways to achieve her humour which is more realistic. We don't walk around in this world and have witty punchlines for everything said, which is in most comedies. Instead the Sarah Silverman Program makes it more realistic in this sense. <br /><br />So don't take it as mindless humor because it is so much more than that.\r\n1\t\"Director Samuel Fuller concocts a brilliant visual set-up: cocky pickpocket unwittingly lifts some microfilm from a woman's purse; it turns out she's a courier for the Communists, and now she and the grifter are being watched by the police. The Film Noir Formula is all its glory--before the ingredients became clichés--including waterfront locales, floozies, saxophones on the soundtrack, and one hell of a climactic fistfight. Performances by Richard Widmark and Jean Peters are right on target, and the smart, sharp script is quite colorful. Fabulous Thelma Ritter received an Oscar nomination for knockout supporting role as a \"\"professional stoolie\"\". Exciting, atmospheric, tough as nails. *** from ****\"\r\n0\t\"Really it's a dreadful cheat of a film. Its 70-minute running time is very well padded with stock footage. The rest are non descript exteriors and drab interiors scenes. The plot exposition is very poorly rendered. They are all just perfunctory scenes sort of strung together. There is no attempt at drama in scene selection but rather drama is communicated by the intensity of the actors. Please don't ask.<br /><br />The plot concerns a rocket radiating a million degree heat orbiting earth five miles up threatening to destroy the earth. It's a real time menace that must be diverted if a custom built H-bomb can be fashioned and placed in an experimental rocket within an hour. Nothing very much here to report except for a mad speech by a scientist against the project because there might be some sort of life aboard and think of the scientific possibilities but this speech made by the obligatory idiot liberal was pretty much passé by then.<br /><br />What saves this film, somewhat uniquely, IS the stock footage. I've never seen a larger selection of fifties jet fighter aircraft in any other film. This is by no means a complete list but just some of the aircraft I managed to see. There's a brief interception by a pilot flying, in alternate shots, an F-89 Scorpion and an F-86. First to scramble interceptors is the Royal Canadian Air Force in Hawker Hunters and F-86 Sabre Jets (or Canadian built CF-13s) and even a pair of CF-100 Clunks.<br /><br />Then for some reason there are B-52s, B-47s and even B36s are seen taking off. More padding.<br /><br />\"\"These Canadian jets are moving at 1200 miles an hour\"\". I don't think so since one of them appears to be a WW2 era Gloster Meteor, the rest F-80s. The Meteors press the attack and one turns into a late F-84F with a flight of early straight wing F-84s attacking in formation.<br /><br />There's a strange tandem cockpit version of the F-80 that doesn't seem to be the T-33 training type but some sort of interim all-weather interceptor variant with radar in the nose. These are scrambled in a snowstorm.<br /><br />An angled deck aircraft carrier is seen from about 500 meters. It launches F-8U Crusaders, F-11F Tigers, A-5 Vigilantes and A-3 Skywarriors. The Air Force scrambles F-86s and F-84s and more F-89s then you've ever seen in your life as well as F-100 Super Sabres and F-102 Delta Daggers.<br /><br />The F-100s press their attack with sooooo much padding. The F-89's unload their rockets in their wingtip pods in slo mo. The F-86s fire, an F-102 lets loose a Falcon, even some F-80s (F-94s?) with mid-wing rocket pods let loose. There is a very strange shot of a late model F-84 (prototype?) with a straight wing early model F-85 above it in a turn, obviously a manufacturer's (Republic Aviation) advertising film showing the differences between the old and the new improved models of the F-84 ThunderJet. How it strayed into here is anybodies guess.<br /><br />There is other great stock footage of Ottawa in the old days when the capital of Canada was a wide spot in the road and especially wonderful footage of New York City's Times Square during one of the Civil Defense Drills in the early 50s. <br /><br />I think we also have to deal with the notion that this was filmed in Canada with the possible exception of the auto chase seen late in the picture as the Pacific seems to be in the background. The use of a Jowett Jupiter is somewhat mind-boggling and there is a nice TR 3 to be seen also. Canada must have been cheap and it is rather gratuitously used a lot in the background.<br /><br />As far as the actual narrative of the film there is little to recommend it other than the mystery of just who Ellen Parker is giving the finger to at the end of the picture. And she most definitely is flipping someone off. Could it be, R as in Robert Loggia? The director who dies before this film was released? Her career as this was her last credit?<br /><br />Its like the newspaper the gift came wrapped in was more valuable than the gift.\"\r\n1\tI remember watching the Disney version and watching it now makes me think it has somehow lost its magic touch. Plenty of other renditions, Ever After put aside, of Cinderella, have, in fact, lost their touch throughout the years. Then I found this production with a flawless performance by Kathleen Turner as the evil stepmother and was blown away by the phantasmagorical essence of this fantasy story that has cast me under its spell since childhood.<br /><br />We all know the story of Cinderella, a young girl who's father died and was dominated by her wicked stepmother and stepdaughters and longs to go to the ball for one last chance for freedom. But this plot line takes a different twist in the classic Fairy Tale by causing Cinderella (whose real name is Zizola, and is only called Cinderella by her family because of her slavery) to be trapped in a situation of her father (who still lives) slowly losing himself to a dominant wife who manipulates him into playing favorites with his wife and step-daughters against his own and tries to poison him. Thus, Zizola goes out to save her father by stopping her stepmother from finding another suitor at the ball by distracting the men who come her way. There, the bored Prince Valiant has a change of heart from his dull life and falls in love with the mysterious lady in the strange dress (forged by a water nymph named Mab) with rose petals for slippers. <br /><br />What drew me to this film most of all was it's original take on the old Fairy Tale that none can compare to. It does not weave a web of lies like most Cinderella stories, it does not ignore any reason as to why Cinderella would want to attend the ball and nor does it show a shallow side to the Prince as the Disney version did. Instead it shows more of Cinderella's selfless heart more than any other production and the artwork is simply stunning! The costumes are all beautifully made, especially Zizola's sapphire blue ballgown to match the Marcella Plunkett's fantastical beauty and soft, spirit-like voice. <br /><br />I would highly suggest this film for anyone who is interested in a dream-like sequence of the classic Fairy Tale with an interesting twist. My only problem is that the producers and director did not make a full collection of other Fairy Tales with this same element and the fact that the film is now out of print.\r\n0\tOh My God! Please, for the love of all that is holy, Do Not Watch This Movie! It it 82 minutes of my life I will never get back. Sure, I could have stopped watching half way through. But I thought it might get better. It Didn't. Anyone who actually enjoyed this movie is one seriously sick and twisted individual. No wonder us Australians/New Zealanders have a terrible reputation when it comes to making movies. Everything about this movie is horrible, from the acting to the editing. I don't even normally write reviews on here, but in this case I'll make an exception. I only wish someone had of warned me before I hired this catastrophe\r\n1\t<br /><br /> I suppose this is not the best film ever made but I voted it at 10 stars all the same. Mainly because of my feelings at the end. I and all the people around me were simply touched. This is something you don't often feel . We are all getting a bit cynical and fed up with over sentimentality, lazy manipulation or preaching in modern films. The story of the film centres around Jane a young woman in the last stages of MND and the friendship that grows between her and Richard, a man on the verge of a breakdown. This could have so easily been a dull and worthy piece but it is so humorous, humane and lacking in sentimentality that it wins you over completely and against the odds is a feel good movie. <br /><br />The acting from Branagh and Bonham-Carter is superb especially the latter who is always believable and strong in her role. The chemistry between the two also lifts the movie. <br /><br />The title comes from Richards masterpiece, a plane made of junk and his old paintings. Flying here is a symbol for both Richards and Janes living life to the full so that one can carry on and the other can face the end. <br /><br />A beautiful and funny movie that I would recommend to anyone. don't let the subject matter put you off.\r\n0\tI saw the film at the Belgrade Film Festival last week, and I'm still working off the trauma. Essentially my view seems to match a number of others - the first half hour was fresh, sharp, deep, entertaining and promising. Well acted too. Natural. My problem, however, is not simply with the fact that the final hour and a half of the film have nothing to do with the likable beginning, nor the fact that I spent most of this time convulsing in agony at sharp, grating industrial sounds and squinting at drunken, toothless, bread-chewing hags. It's rather with the fact that THEY NEVER WARNED ME!!! The festival brochure synopsis described only the (utterly intriguing-sounding) first half hour - a whore, piano tuner and meat seller chat in a bar, pretending to be an advertising agent, genetic engineer, and petty government administration official, respectively - making no mention whatsoever of the never-ending gum-smacking to come. Serves me right for not reading the reviews, you might say - but to my defense, a number of reviews I looked at post-fact um didn't at all stress the immensity and utter unbearableness of the greater part of the film.<br /><br />The first hint should have been the introductory words by the director (a bashful, tousle-haired Russian youth) who stepped in front of the crammed auditorium (the film seems to be doing incredibly well critically, and tickets were sold out well in advance of the screening, though most of the audience seemed as unaware as I was of the pain to come, judging by the plethora of unearthly moans and groans that utterly permeated the theatre during the last half hour, and many exasperated comments on exit) to say the following: 'Well, I... um, thank you very much for coming to see this film, and I just wanted to say... well, it's a very long film... it took me four years to make it, and... it's.. I suggest that you see it and immediately try to forget about it. It is very long. Thank you for coming.' This is what he said. Alarm bells should have been ringing. 'What's he talking about?' I thought in happy confusion. 'This is gonna be fun!' Of course, by the time his strangely apologetic comments started making sense to me, it was far too late to get out. All I could do is writhe in increasing agony until the lights came on again. And in the end I can't say I feel in any way improved by the experience. Yes, I absolutely loved the first half hour. It was intelligent, new, and had a lot to say. And yes, Russia is probably in a bad state. Yes, every society has many hidden faces. Yes, toothless life in barren wastelands is probably unimaginably hard. Yes yes yes. I get all of this. Really I do. But I see no earthly reason why art and meaning should be so agonisingly drawn out, and so painful to bear. If you want to see a film land somewhere between the extremes of glitzy Hollywood plastic fantastic and hours of muddy vodka swigging, try the Korean-Chinese Bin Jip (3-Iron). It's artsy and surprising, but also to-the-point and fun.\r\n0\t\"I created my own reality by walking out of the theater I was roped in by my girlfriend into going to this dreck with her mom. We (my g-friend and I) walked out about an hour into it. What a load of pseudo scientific new age jargon.<br /><br />Sub atomic particles are thoughts? By taping labels to bottles of water and blessing it by a Buddhist monk it grew little pretty crystals? A drop of 25% in the murder rate in DC happened when a bunch of folks meditated. Wow, what a rigorous scientific study. I'm sure that someone ate cheerios for four days straight during the same time. Should we conclude that eating cheerios caused a drop in the murder rate? <br /><br />Hogwash, hooey, bull pucky! <br /><br />BTW- It was funded by the Ramtha cult, the leader of which was one of the \"\"experts\"\" which were interview by the filmmakers. No ulterior motives here, right?\"\r\n1\t\"Deathtrap is not a whodunit. It's a who gonna do it to who first. It's so hard to describe this movie without giving anything away so I won't mention anything more about the plot. As far as acting goes it is Cris Reeves greatest role as Clifford, a young playwrite. You really see the range in his acting abilities in this movie from \"\"exhaling cheeseburgers\"\" to downright frightening. Clifford is such a hard role to play and in the stage production of this I have never seen Clifford played well on both ends of the spectrum. The actor plays him as a little puppy or a homicidal maniac. Reeves is the only person I have seen who has the character right all the way through. As for Michael Caine he's.....well he's Michael Caine. One of the best actors of the last 50 years and in this film as good as he has ever been.\"\r\n1\t\"Set in World Depression Era Prague, this is the story of an ambitious store clerk who is falling in love with a mystery woman with whom he has exchanged romantic letters, only to discover that the mystery woman is none other than the sales girl from his shop, who seems to be constantly bickering with the colleague. Add a little twist (the owner is convinced that his favorite employee -Stewart- is having an affair with the owner's wife), leaving Stewart briefly 'fired', along with an admission that the sales girl 'liked' Stewart all along, the happy ending is inevitable.<br /><br />Although VERY dated (references to poverty and -I have a wife and two kids to consider- are over-used, along with the indication that many small objects of pleasure, like a musical cigar box, are out-of-reach for common people's enjoyment), this film is much more effective (and more credible) than the 1990s re-make \"\"You've Got Mail\"\". In the re-make starring Tom Hanks and Meg Ryan, the actual odds of the chain-of-events are so unbelievable that the viewer's intelligence is grossly offended.<br /><br />\"\"Shop Around The Corner\"\" is an innocent stroll down memory lane into a less complicated, less hectic, and more romantic time and place known as a novelist's Utopia. Lovers of Classic Romantic Comedies will enjoy this picture!\"\r\n0\tI find it heart-warming and inspiring that the writing team behind such hopelessly mainstream Hollywood movies like INDIANA JONES AND THE TEMPLE OF DOOM, American Graffiti and HOWARD THE DUCK would begin their career with a low-budget exploitation horror film like this. Perhaps as a testament to the talent that would earn Willard Hyuck and Gloria Katz an Oscar nomination later in their respective careers, Messiah of Evil has potential, but sadly becomes frustrating exactly because it can't muster the film-making prowess to pull it off.<br /><br />The premise involves a young girl who travels to a small coastal town in search for her painter father who went missing a while back. It doesn't take long for the fragmented narrative to abandon all hope and dive headlong in disjointed absurdity - and for a while it works admirably well to the point where you begin thinking that maybe Messiah of Evil needs to be reclaimed from the schlocky gutter of 70's exploitation as an example of artful mystery horror.<br /><br />The surreal non-sequiturs keep piling on as the daughter stumbles upon a young couple in a seedy hotel room who are in town to conduct a research on the local legend of the 'blood moon', a scruffy and half-mad alcoholic (played by the great Elisha Cook Jr. in perhaps the best scene of the movie) who warns her about her father only to be reportedly found dead in an alley 'eaten by dogs' a little later, the blind old lady that owns the local art gallery and who has inexplicably removed all of her father's paintings from the shop and last but not least a retarded, murderous, squirrel-eating albino.<br /><br />Part of the movie's charm is precisely this brand of bargain-basement artsy surrealism that defies logic and genre conventions every step of the way. Whereas with Lynch it is obviously the mark of a talented creator, with Messiah of Evil the boundaries between the 'intentional', the 'unintentional' and the 'didn't really expect it to come out this way but it's good enough - WRAP SCENE' blur hopelessly.<br /><br />Take for example the double narration that flows in and out of the picture in a drug-addled, feverish, stream-of-consciousness way, one coming from the daughter as she wanders from place to place in search for her father, and the other narrated by her father's voice as she reads his diary. <br /><br />While we're still talking about a 'living dead' picture, Messiah of Evil is different and only loosely one - at least with current preconceptions of what a zombie movie is supposed to be. The origin of the living dead here is a 100 year old curse, bestowed upon the town by a mysterious 'Dark Stranger' who came from the woods one day. In the meantime Hyuck finds time for snippets of mass-consumption criticism in a flesh-eating supermarket scene that predates DAWN OF THE DEAD by a good number of years (you can hear the MST3K line already: 'man is dead, only his capitalist food tins remain') and a nicely thought but poorly executed similar scene in a movie theater.<br /><br />I generally think that the surreal works in careful, well measured doses - how is the absurd to work if it's not hidden within the perfectly normal? Hyuck seems to just smear it all over the picture and by doing so dangerously overplays his hand. When the albino for example picks up a girl hitching her way to town and eats a squirrel in front of her, you can almost imagine the director winking meaningfully at the audience, amused and satisfied with his own hijinks. <br /><br />The general film-making level is also pretty low - after the half-way mark, the pace becomes muddled and the story tiresome and evidently going nowhere and not particularly fast either. Add to that the choppy editing, average acting and Hyuck's general inability to capture true atmosphere - the empty streets of coastal town are criminally misused - and I'd file Messiah under 'missed opportunity' but still grindhouse afficionados will find enough to appreciate - even though it's not particularly gory, trashy or sleazy.\r\n1\tWhite man + progress + industrialization = BAD. First nations + nature + animals = GOOD. Simple formula. Actually, in past days the same kind of propaganda was used to defend the status quo; now it is used to attack it. However, that being said, I think the movie does succeed in overcoming hackneyed politicization because it plays to the themes of freedom and original nature in a way that appeals to everyone. You may not be onside with the movie's rubbishy revisionism of how the West was won, er lost. But anyone can feel a sense of longing for the days when horses could run free on the Western plains. (The movie also conveniently sidesteps the fact that there were no horses in America before the evil white man brought them there). Anyway, I liked it. The quality of the animation - especially the opening shot - is incredible.\r\n0\t\"The 1930s saw a vogue for documentary films about remote corners of the world, with an emphasis on wild animals, exotic terrain and primitive people with unusual cultures. Despite the logistics of transporting a film crew to a distant and dangerous place, and then bringing 'em back alive (with the film footage), such films were often much cheaper to make than were conventional Hollywood features ... because there were no expensive sets, costumes, or high-priced movie stars.<br /><br />The most successful makers of such films (artistically and financially) were the team of Martin E. Johnson and his wife Osa, who made several documentaries (sometimes with blatantly staged events) in Africa and Asia. The Johnsons' safari films were extremely popular, inspiring several parodies ... most notably Wheeler & Woolsey's \"\"So This is Africa\"\", in which the very sexy Esther Muir plays a character named Mrs. Johnson-Martini (instead of Martin E. Johnson, geddit?). Although several other filmmakers were producing safari documentaries at this time, the Johnsons' films were the most popular in this genre because they relied heavily on humour. Viewed from our own more enlightened (I hope) standpoint, this is a serious flaw in the Johnsons' documentaries: there are too many scenes in which the funny little brown or yellow people are made to look complete idiots who are easily outsmarted by the clever white bwana Johnson and his wife.<br /><br />One definite asset of these movies is the presence of Osa Johnson. Ten years younger than her husband, she manages to seem young enough to be his daughter. While certainly not as attractive as the shapely blond Esther Muir, Osa Johnson was a pert brunette who gave ingratiating performances in front of the camera in all the films she co-produced with her husband.<br /><br />'Congorilla' is probably the best of the Johnsons' films. The shots of the Congo are interesting and have some historical value as evidence of what this environment looked like in 1930. The shots of the Pygmies and other natives are also interesting, although these suffer from the Johnsons' penchant to stage events in a manner that makes the natives look 'wild' and alien.<br /><br />The best (and funniest) scene in 'Congorilla' is an improvised sequence in which Osa Johnson attempts to teach a jazz dance to some Pygmy women. (The dance is the Black Bottom, no less ... the same dance which Bob Hope famously taught to Daisy and Violet Hilton, the conjoined twins.) Wearing jodhpurs, riding boots, and a pith helmet, Osa Johnson starts scat-singing while she does high steps and slaps her knees in her attempt to teach this dance to the African women. Meanwhile, they just stand there staring at her, apparently wondering what this crazy white woman is trying to accomplish. It's a very funny scene, but it has unpleasant undertones. Osa Johnson is doing a dance that was invented by black Americans: the implication seems to be that black Africans should instinctively be able to perform this dance after a brief demonstration (using natural rhythm, I guess) because it's in their blood, or something.<br /><br />I'll rate 'Congorilla' 4 points out of 10. This film says a little bit about African life in the 1930s and rather more about American cultural perceptions in that same decade.\"\r\n1\tThis is a beautiful, rich, and very well-executed film with a rich and meaningful story. Basically, it tells how an old master story teller needs to find a (male) heir to carry on his craft, but ends up not getting what he expected in his very male-dominated world. The characters must then deal with their situation and the old master must grapple with the conflict between his desire for a companion and heir and his and society's traditional notions.<br /><br />The story is fun, emotional, and complex. The exploration of the characters, their lives, and emotions, is rich and compelling the character development is strong while the characters are complex and not one dimensional at all. The film expertly conveys the old man's emotions and his desire to find an heir, and compellingly shows how he and the kid handle the situation. There is also humour, sometimes quite subtle, at appropriate points. The film also examines the good and bad of traditional Chinese culture, creating further interest and depth to the film.<br /><br />The directing, acting, and scenery are all outstanding. Added to the other strengths, this creates rich and convincing visual images and compelling, real characters. As a result, the film evokes strong empathy for, and feelings about, the characters.<br /><br />Some have claimed that the ending weakens the film, but I do not necessarily agree. Perhaps it could have been stronger with a different ending, but any improvement in the overall film would have been rather small.\r\n1\t\"I recently rented the animated version of The Lord of the Rings on video after seeing the FANTASTIC 2001 live action version of the film. The Lord of the Rings live action trilogy directed by Peter Jackson will undoubtably be far better than George Lucas' Star Wars \"\"prequel\"\" trilogy (Episodes 1-3) will ever be as the real fantasy film series of the 21st century!<br /><br />I remember seeing the animated version as a child, and I didn't quite understand the depth of the film at that time. Now that I have read the books, I understand what the whole storyline is all about. To be sure, some of the characters are quite silly, (Samwise Gangee is particularly annoying, almost as much as Jar Jar Binks in Star Wars Episode One, (AWFUL!)) but, I have to say it follows the book rather closely, and it goes into part of book two, The Two Towers. The good things are that the action is somewhat interesting and some of the animation is quite remarkable for it's time. The bad things are that it ends upruptly halfway through The Two Towers without any result of Frodo's quest to destroy the one ring, and the animation looks quite dated compared to today's standards. <br /><br />Overall, not AS bad as many say it is. BUT, the 2001 live action version is the new hallmark of The Lord of the Rings! At least Ralph Bakshi took the script seriously! Peter Jackson has said that the animated version inspired him to read the books, which in turn caused him to create one of the greatest fantasy series ever put on film, so we can at least thank Ralph Bakshi for that matter! I'll take the animated version of Lord of the Rings over the live version of Harry Potter anyday!<br /><br />A 7 out of a scale of 1-10, far LESS violent than the 2001 live action version, but NOWHERE near as good! For diehard fans of the books and film versions of The Lord of the Rings.\"\r\n1\tA Damsel in Distress is a delight because of the great Gershwin songs, Fred Astaire, Joan Fontaine, and a terrific supporting cast headed by Gracie Allen and George Burns.<br /><br />Typically silly plot for an Astaire film has him as an American dance star in England with Burns as his publicist and Allen his secretary. They concoct a story about his being a love bug with women falling victim to him left and right. He runs into Fontaine who is being held captive in her castle by a domineering aunt and docile father. Silly plot.<br /><br />The great songs include A Foggy Day, Things Are Looking Up, Nice Work if You Can get It, and I Can't Be Bothered Now. Fontaine does not sing, but does a brief (and decent) number with Astaire. Surprisingly good in a few dance numbers with Astaire are Burns and Allen, including an inventive and fun romp through an amusement park.<br /><br />Also in the cast are Reginald Gardiner, Constance Collier, Montagu Love, Harry Watson (as Albert), Ray Noble, and my favorite--Jan Duggan as the lead madrigal singer.<br /><br />Jan Duggan is in the middle of the swoony trio who sings Nice Work if You Can Get It. Her facial expressions are hilarious. She was also a scene stealer in the W.C. Fields comedy, The Old Fashioned Way, playing Cleopatra Pepperday.<br /><br />Much abuse has been heaped on this film because of the absence of Ginger Rogers, who, as noted elsewhere, would have been hideously miscast. The TCM host notes that Ruby Keeler and Jessie Matthews were considered. Yikes. Two more would-be disasters. Fontaine is fine as Alyce and the dynamic allows the musical numbers to belong to Astaire, with ample comic relief by Burns and Allen.<br /><br />Fun film, great songs, good cast, and Jan Duggan in a rare spotlight!\r\n1\tSurely one of the mysteries of the modern world!! - this film is NOT considered to be within the top 100 films of all time????<br /><br />If you watched this film and thought it was anything other than wonderful please let me know how? - Al Pacino's performance is as good as it gets!\r\n1\t\"Belushi at his most ingratiating and Courtney Cox before Friends has a small role. I often think Belushi is under-used in Hollywood and this film role is one of his best. For those of you who watch his TV show, this is a very different and likable character. The movie itself is not earth shattering, nor is the message new but rather it is sweet and endearing. The supporting cast of familiar faces and unfamiliar names is a perfect balance although Lovitz's whining can get tiresome, and Michael Caine's charming spiritual guide has a slightly sinister if not well-meaning edge. Hamilton, as Belushi's wife is unfortunately two-dimensional and one wonders why he married her. In addition, Renee Russo is wasted and not terribly convincing at the \"\"prom queen\"\" who got away. Nevertheless, a nice way to spend two hours.\"\r\n0\t\"I saw this movie twice. I can't believe Pintilie made such a fantasy movie. I'm also a movie/theatre director and I know what I speak. This is not Romania anymore, but I see the events are happening in the same period with the incident from 11 September. No story, no plot, nothing. No conclusion, no message, nothing profound, nothing hidden. Just empty images.<br /><br />What most of Romanians don't know, this movie is for the french viewers, not for us. They really believe that is the reality in Romania. Also for teenagers. Pintilie should stop making movies. I don't really know if we can call this a movie, maybe a horror :) And we wonder why we've got such an image in Europe. This WAS a reality, but isn't anymore. A good friend of mine from the Brithish embassy said: \"\"You have no idea what a long way Romanian people walked from Ceausescu\"\".\"\r\n1\t\"Quite simply the funniest and shiniest film-comedy of all time... it's certainly on my personal top-ten list. This one also gets a solid ten on the voting scale. Millionaire heir, Arthur Bach (Moore), is a middle-aged 'child' who refuses to take the mature path in life and avoids all requisite responsibilities. He also refuses to leave the bottle. One day he and his personal butler, Hobson (Gielgud), go shopping at Bergdorf Goodman's and run into petty larcenist, Linda (Minnelli). Arthur and Linda's chemistry adds electricity to the rest of the film. There are hilarious set pieces aplenty. In one such scene, Arthur (drunk throughout most of the story) knocks on the wrong apartment door and receives ear shattering threats from a human 'siren' (\"\"My husband has a gun!!!!). Performances by everyone involved should be duly noted: Geraldine Fitzgerald plays Arthur's loving-yet-ruthless grandmother, Sir John Gielgud almost steals the entire show with his acidic droll-isms (He took home the Oscar for this one), and Christopher Cross provides the Main Theme song (Oscar winner \"\"Best That You Can Do\"\"). It's a shame the late Dudley Moore passed away last month (March 2002).\"\r\n0\tDark Wolf (Quick Review) Let's get right to it: This is a repugnant piece of rotting roadkill with cow sh*t on it. It's just an awful movie. It's an urban werewolf movie with some of the worst acting imaginable and a story as weak as any gangly nerd from an 80's high school drama film. What's worse is that poor Kane Hodder was duped into playing the gigantic evil werewolf. Kane f*cking Hodder. Someone's trying to ensure that playing Jason Voorhees is the height of his film career...<br /><br />Anyway, former Playmate Jaime Bergman is also in the movie and she eventually becomes a werewolf, too. It's kind of a crappy cop drama with the world's worst looking werewolf in it. But it does have moments of near-rampant nudity. But that's about all. Want to know more? Okay, the werewolf is generally an ugly-looking black blur zipping around the screen. And when we're privileged enough to actually see a transformation sequence, we're presented with something that resembles a full-motion video from a video game made during the early stages of the Playstation. The first Playstation. The CG animation is really that primitive. Only good for horror hardcore fanatics that want to see small moments of nudity surrounded by rampant visual vomit. 2/10<br /><br />www.ResidentHazard.com\r\n0\t\"This is perhaps the creepiest display of Santa Claus ever committed to any medium, whether it be a book, a picture, or a movie. Santa looks like a perv looking down on the children and the twisted story of bringing Merlin in to help him defeat one of Satan's minions, Pitch, doesn't make things any better. It's laughable to say the least, with bad effects, even for 1959 standards. If a kid were to watch this movie, he'd have nightmares and never want Santa to visit. They'd be scarred for life. Imagine the kid's in \"\"A Christmas Story\"\" when they start screaming after being put on Santa's lap. That's how this would turn out if kid's see this movie.\"\r\n0\t\"I had a recent spectator experience with The Perfect Witness (2007) because the NetFlix computer recommendation engine suggested I watch this film. Apparently, at some point, I told it how much I liked Michael Haneke's, Benny's Video. I don't know about you, but this parallel being drawn provoked in me a maelstrom of emotion and excitement over Thomas C. Dunn's film and made the allocation of my time toward it virtually impossible to refuse. Just this kind of recommendation from the NetFlix computer intelligence, for me, had the aesthetic/moral movie bar set to level so high that, upon reflection, it represented something pretty much unaccomplished in every film produced in the year 2007.<br /><br />Having prefaced my response to the film that way, I'm going to proceed in knocking this picture down as poorly executed and banal; and I really hate to do that because I think our boy, Wes Bentley, happens to be not only one of the most interesting young faces in contemporary cinema, but also one its most overlooked and underrated screenacting talents in the US. I'm more than moderately concerned that the poor guy's going to miss the fame ship if he keeps fiddling around with first time movie directors like this.<br /><br />The Perfect Witness is about Micky (Wes Bentley), who, about thirty, still lives with Mom (\"\"You're not drinkin' again area ya's?\"\"), but he's a \"\"filmmaker\"\" or at the very least some kind of street-level voyeur with a pension for shooting would-be Johns in the seedy back alleys of Philadelphia with his DVX 100B. Out there, doing his private investigator-like drills, Micky \"\"inadvertently\"\" video-tapes a brutal murder on a hapless early-twenty-ish coed with his hand held camcorder. Baring the notion in mind that snuff and movies as cultural currency can be his equated with his ticket out of the white urban ghetto (and not to the debts of his unwitting friends and relatives who put up the money for his atrocious films), Micky approaches the assailant, James LeMac (Mark Borkowski: also takes a writing credit) or \"\"Mac the Knife\"\" whichever- and blackmails the killer into making a documentary about his murder impulses, holding this found footage over the attacker with threats of the police.<br /><br />The problem with this movie is not that no interesting ideas exist because they do. While both the writing and direction are amateurish, that alone doesn't make a film bad. It's that these guys commit a rather poor assumption that what they are presenting is shocking in the context of a culture in which just about any person in the free world with access to a private computer can log-on to the web and catch the veracity of the action of a beheading on their little Mac or PC. No film relies on shock value alone any more (unless of course, ironically, it's a film about torture on animals) and therefore cinematic images of violence (real or fake) have less and less cultural capital with each year that passes. Also, we've got this astounding actor-talent in the lead all styled-up, real hip guy: his two inch beard and skull cap with the little bill on it, backwards, just like the dork from high school who craved after the potential services of my primary love interest same guy who just now calls himself a \"\"poet.\"\"<br /><br />Spare me. \"\"I'm an artist,\"\" \"\"I'm a filmmaker.\"\" Okay. Please do, carry on with that shtick, Cronnie. Seems to have bought you a lot of expensive 35mm stock. And go ahead, you can wear all the accrutements of a \"\"creative\"\" but don't expect us top respond to you, to follow your below average character through your two hour movie while you take down Wes Bentley's career. Why don't we just let history speak to the merits of what you do, filmmaker guy. My guess is history will eventually have say something about that like, probably that's in not is good as you think it is. And yeah, odds are you'll be laying the blame on your dear ole ma, end up like our man Micky here in The Perfect Witness; hooked on smack and covered in your buddy's blood with a video camera in your hand. Great.\"\r\n1\tThis movie has everything. Emotion, power, affection, Stephane Rideau's adorable naked beach dance... It exposes the need for real inner communion and outer communication in any relationship. Just because Cedric and Mathieu are a couple who happen to be gay doesn't mean there isn't quite useful insight for anybody in it. I would probably classify it as a gay movie, but one that can be appreciated and loved by heterosexual people as well as homosexual and bisexual people. Mathieu's incapacity to handle his emotions divulges the way our society doesn't encourage us to act any differently, and that is what engenders the discord between him and Cedric. This is definitely a must-see!!!!\r\n0\t\"I rented this by mistake. I thought, after a cursory examination of the box, that this was a time-travel/sci-fi story. Instead, it's a \"\"Christian\"\" story, and I suppose is fairly typical example. If you are sold on the message you probably will overlook the awkwardness of the plot/acting/etc., but I found it rather painful. <br /><br />I have to admit that I'm bothered by the rewriting of history in this story. It paints the 1890's as some sort of paradise of family values and morality (a character is aghast that 5% of marriages end in divorce!), but it overlooks very unsavory sides of this \"\"highly moral\"\" society (rigid racial, sexual, and social discrimination were widespread, for instance). And at one point the hero complains to a clothing store owner about things that sound not all that different than the complaints of some Iranian leaders about women's clothing styles (as reported in a recent WSJ).<br /><br />Overall, thought, I suppose that it's the sort of thing you'll like if you like this sort of thing, and it's certainly wholesome...\"\r\n0\t\"This scared the hell out of me when i was a teenager. Now I find it more amusing than scary, but with some pretty unsettling moments and with a kind of sleazy quality to it that I like. And, come to think of it, the plot is rather disgusting actually...but handled with some kind of taste. If there is a problem with this movie, it is that there are HUGE gaps where nothing exciting or interesting happens. Also, the ending goes on forever, making a potentially tense climax seem silly after a while with Barbara Bach screaming and screaming. The \"\"monster\"\", after it is exposed, isn't very scary either unfortunately. The somewhat drab look of the movie also works against it, making it appear as a TV-movie more than something made for theaters. But it is an example of films that are rarely made nowadays so I urge horror fans to watch it and feel a bit nostalgic...\"\r\n0\tAs a former submariner, this was one of the worst submarine movies I have ever seen. First of all, a mutiny aboard any US Naval vessel, particularly a Nuclear Powered Trident submarine in unthinkable. These men are the best of the best and are dedicated to their mission. The responsibility they carry is awesome and they take it very seriously all the way from the Captain to the most junior crew member. I could never see a crew of any ship split their alliance between the Captain and the Executive Officer. An Executive Officer who acted as the Character played by Denzel Washington did would be relieved of his duties and Court Martialed, then drummed from the Navy. It is no surprise the Navy refused to send a technical adviser to help in making this film. Lastly, if any member of a submarine crew made the amount of noise made underway on this vessel they would be severely reprimanded. Submariners learn early in their career to be as quiet as possible to avoid detection. They don't slam doors and even speak quietly and wear soft soled shoes when underway. I was amazed at how loud they portrayed the crew while underway. Loud music would never be tolerated. I know portraying submarine life in reality would not sell movie tickets, but this is over the top to the point of being ridiculous. I would not recommend this movie to anyone.\r\n1\t\"I voted 8 for this movie because of some minor childish flaws. Other than that, this movie is one of my favorites! It's entertaining to say the least. The shooting scenes are ridiculous though, and I think Gackt (who wrote the book) takes a little bit too much of his \"\"Matrix obsession\"\" into it. It seems like their enemies just stands there...waiting to get shot at. However, this movie is touching and it always makes me cry. It has a lot of GREAT humor in it so it makes me laugh as well. Gackt is a superb actor I must say..he shows so much emotion. This was Hyde's first time acting and he did okay. The role fits him. Wang Lee Hom is absolutely great. The whole cast is what I would say, perfect for this movie. DON'T MISS IT! YOU'LL REGRET IT!\"\r\n0\tIt really impresses me that it got made. The director/writer/actor must be really charismatic in reality. I can think of no other way itd pass script stage. What I want you to consider is this...while watching the films I was feeling sorry for the actors. It felt like being in a stand up comedy club where the guy is dying on his feet and your sitting there, not enjoying it, just feeling really bad for him coz hes of trying. Id really like to know what the budget is, guess it must have been low as the film quality is really poor. I want to write 'the jokes didn't appeal to me'. but the reality is for them to appeal to you, you'd have to be the man who wrote them. or a retard. So imagine that in script form...and this guy got THAT green lit. Thats impressive isn't it?\r\n0\tThe premise of this movie is revealed on the DVD box. A textile worker develops a miracle fabric that doesn't degrade. But the movie fails to get on with it. Instead it pads for 45 minutes, noodling around a preamble before he makes the big discovery. Since audiences don't benefit much from seeing a whiz kid figuring things out, it's a strange choice: the movie has successfully been prevented from engaging any topic. Once the fabric is discovered, the movie too rapidly establishes that both industry bigwigs, and blue-collar co-workers want the invention squelched, leaving the movie with just two flimsy movements; inventing the chemical, and running from oppressors.<br /><br />I can't understand why anyone would describe this as comedy. The tone isn't funny or comical. It's more like serious social criticism of the day: that capitalism warps both supply chains and production. Which in turn prevents innovation from reaching and improving the world. Yes, that's probably true, but without some toying with an attitude towards that fact, the movie is simply an earnest argument. You'll need an extremely broad definition of comedy to find any here.<br /><br />This is more like a British Meet John Doe (Meet Nigel Doe ?).\r\n1\tDarius Goes West is a film depicting American belief that everything is possible if you try hard enough. This wonderful fun filled and sometimes heartbreaking film shows a young man who never expected, but longed to see, what was outside the confines of his lovely city of Athens, GA. Darius wished to see the ocean. His longtime friends Logan, Ben and several other good friends decided to make Darius' wish come true. They started small - Ben & Logan's mom started an email campaign to bring awareness to Darius' condition: Duchenne Muscular Dystrophy and to raise funds for the fellas to take Darius to not only see the ocean but to see these great United States. To say the young college buddies succeeded in bringing hope and awareness to this dreaded disease would be an understatement. They realized Darius' dream and then some. They put their lives on hold while showing love, care and tons of fun to Darius while helping Darius see how he can in turn show those same traits to others suffering from DMD. Darius went on to volunteer for the Red Cross - sitting in his chair collecting money (along with his buddies) outside a local grocery store. His wonderful smile tells the world that dreams do come true - all you need is hope and a group of college friends to support and care for you. Give Darius and all the guys an Oscar - no one else deserves it more. Martha Sweeney.\r\n1\t\"this movie is practically impossible to describe. the alternate title \"\"Don't Look Up\"\" is a lot more descriptive. Like most Japanese cinema, the story is not as linear as American. The story revolves around a director who is filming a story about a ww2 deserter. The set is haunted(?) by an actress who died(?) during the filming of a tv show back in the 60s. the director is the ONLY one who saw this show. if you have seen Ringu (the director Hideo Nakata is the same) and liked it, you'll like ghost actress. i loved ghost actress a lot more than ringu. a truly scary and disturbing movie. a 10!\"\r\n1\t\"When tradition dictates that an artist must pass his great skills and magic on to an heir, the aging and very proud street performer, known to all as \"\"The King of Masks,\"\" becomes desperate for a young man apprentice to adopt and cultivate.<br /><br />His warmth and humanity, tho, find him paying a few dollars for a little person displaced by China's devastating natural disasters, in this case, massive flooding in the 1930's.<br /><br />He takes his new, 7 year old companion, onto his straw houseboat, to live with his prized and beautiful monkey, \"\"General,\"\" only to discover that the he-child is a she-child.<br /><br />His life is instantly transformed, as the love he feels for this little slave girl becomes entwined in the stupifying tradition that requires him to pass his art on only to a young man.<br /><br />There are many stories inside this one...many people are touched, and the culture of China opens itself for our Western eye to observe. Thousands of years of heritage boil down into a teacup of drama, and few will leave this DVD behind with a dry eye.<br /><br />The technical transfer itself is not that great, as I found the sound levels all over the meter, and could actually see the video transfer lines in several parts of the movie. Highly recommended :-) 9/10 stars.\"\r\n0\t\"\"\"Don't Drink the Water\"\" is an unbelievably bad film. It's based on a 1966 Broadway play by Woody Allen. It stars Jackie Gleason, the comic genius behind \"\"The Honeymooners\"\". The director, Howard Morris, has appeared in several Mel Brooks comedies (Life Stinks, High Anxiety, Silent Movie)and has made a mark in animation (characters he has voiced include Gopher from \"\"Pooh\"\", Jughead (Archie)and Beetle Bailey) What went wrong?<br /><br />I think the problem is that the premise is played out too seriously to work effectively. Allen's original play was tongue-in-cheek, which is why it worked on Broadway and in Allen's 1994 remake. The screenplay by R.S. Allen and Harvey Bullock beats the premise to death and makes too many changes from the original play. Making Gleason's wife an airhead in this version when she was a headstrong woman in the original is just one example of why this doesn't work.<br /><br />The acting isn't much better. Gleason does the best he can with the material, but he can't save this. Gleason was a comic genius , but also a fine actor as he demonstrated in \"\"The Hustler\"\" and \"\"Soldier in the Rain\"\". His abrasive personality could have worked here, but the lousy script doesn't even give him a chance. Too bad. Estelle Parsons' airhead wife will drive you nuts after 20 minutes. See how soon it'll take for YOU to want to strangle her. That is also a shame because she is also a fine actress, having turned in two exceptional performances in \"\"Bonnie and Clyde\"\" and \"\"Rachel, Rachel\"\" None of the other actors do particularly well either.<br /><br />Woody Allen hated this film so much that he remade the film in 1994 with himself and Julie Kavner (Marge Simpson) in the leads. They manage to hit all the right notes and the film itself is a comic masterpiece. It's finally on video after a long battle over rights. Do go out and find that version. All the 1969 original is good for is clearing out unwanted guests who overstay their welcome.<br /><br />1/2* out of 4 stars\"\r\n0\tOne of the most boring slashers ever.. If you can even call it that. I wouldn't watch this if it even ended up being some kind of porno movie, which it completely resembles. The fact that you're watching a small group of middle-aged people in the woods is really unbearable. They made these kinds of movies for teens, so who were they really aiming for when they made this sleep-fest? My favorite part of this movie is the cover art and it's the only reason I chose to seek out this movie, which happened to be part of a Suspense Classics 50 Movie Pack.. and after seeing the other movies in this 50 pack, you'll realize that it belongs nowhere else. So if you're in the mood for a decent slasher in the woods, I recommend Just Before Dawn and The Final Terror.\r\n0\t\"In what could have been an otherwise run of the mill, mediocre film about infidelity in the sixties (the subtle \"\"free-love\"\" period), the creators of this film pile on ridiculous scenario after ridiculous scenario and top it all off with a trite little cherry on top, happily ever after ending. At no time did I ever feel sympathy for Diane Lane or Anna Paquin in their troublesome middle-class care free life, nor did I feel for the emasculated Liev Shrieber. The story line plods along slowly to its predictable, pathetic conclusion and the only thing interesting and watchable about this film is the stunning Diane Lane topless. Here's a hint, it occurs about 30 minutes into the film. Fast forward to that part and skip the rest.\"\r\n0\tSorry Fulci fans, but I could not get through this one. The soundtrack was about as annoying as they come, the acting was puerile, the story has been done and done, and the direction was non-existent. <br /><br />Massacre honestly looked like a children's film project. But I've seen some of those, and they actually look better than this did! It appears to have been so underfunded they couldn't afford ... ANYTHING! Not a DoP, not a director, no one who even remotely had a clue what acting was. It was a very poor cinematic experience; one of my worst.<br /><br />This was about the worst suck-fest I've seen, next to Terror Toons which is second only to Killer Klowns from Outer Space. I've nothing else to say about it.<br /><br />It rates a 0.1/10 from...<br /><br />the Fiend :.\r\n0\tReally, really bad slasher movie. A psychotic person escapes from an asylum. Three years later he kills a sociology professor, end of scene. One semester yesterday later (hey, that's what the title card said) a new sociology professor is at the school. She makes friends with another female sociology professor who works there, and starts dating another professor. The students are all bored, as are we.<br /><br />There are a number of title cards indicating how much time has passed. Scenes are pretty short, and cut to different characters somewhere else, making for little progression of any kind. A lot of scenes involve characters walking and talking, or sitting and talking, and serve little purpose. Despite the passage of time, many of the characters are always wearing the same clothing. Sometimes the unclear passage of time means when we see a body for the second time, we ask ourselves: how long has that body been there? And also, at least one of the dead people don't seem to have been missed by others.<br /><br />The killer manages to kill one person by stabbing her in the breast, another by stabbing him in the crotch, and another by slicing her forehead. Is his knife poisoned or something?<br /><br />The video box cover has a cheerleader: there aren't any in the movie. The rear cover has a photo of someone in a graduation cap and gown menacing a group of women in a dorm room. The central redhead in the photo is in the movie, but nobody ever wears such an outfit, and there is no such scene. The killer is strictly one-on-one.\r\n0\tCould this be by the same director as Don't Look Now or Bad Timing? Poorly<br /><br />acted, clunkily edited. You only have to compare the various accident scenes in this with similar ones in Don't Look Now to see how much Roeg has lost his<br /><br />touch.<br /><br />Even the generally reliable Teresa Russell (looking a bit chunky these days, I'm afraid to report) cannot save this one. The plot is pure pseudo-religious hokum, the acting is wooden and Roeg's attempts at his trademark dislocation of time are pitiful.<br /><br />Avoid this one like the plague.\r\n1\t\"The Japanese \"\"Run Lola Run,\"\" his is one offbeat movie which will put a smile on just about anyone's face. Fans of Run Lola Run, Tampopo, Go!, and Slacker will probably like this one. It does tend to follow a formula that is increasingly popular these days of separate, seemingly unrelated vignettes, all contributing the the overall story in unexpected ways. catch it if you see it, otherwise wait for the rental.\"\r\n1\t\"There is no doubt that during the decade of the 30s, the names of Boris Karloff and Bela Lugosi became a sure guarantee of excellent performances in high quality horror films. After being Universal's \"\"first monster\"\" in the seminal classic, \"\"Dracula\"\", Bela Lugosi became the quintessential horror villain thanks to his elegant style and his foreign accent (sadly, this last factor would also led him to be type-casted during the 40s). In the same way, Boris Karloff's performance in James Whale's \"\"Frankenstein\"\" transformed him into the man to look for when one wanted a good monster. Of course, it was only natural for these icons to end up sharing the screen, and the movie that united them was 1934's \"\"The Black Cat\"\". This formula would be repeated in several films through the decade, and director Lambert Hillyer's mix of horror and science fiction, \"\"The Invisible Ray\"\", is another of those minor classics they did in those years.<br /><br />In \"\"The Invisible Ray\"\", Dr. Janos Rukh (Boris Karloff) is a brilliant scientist who has invented a device able to show scenes of our planet's past captured in rays of light coming from the galaxy of Andromeda. While showing his invention to his colleagues, Dr. Felix Benet (Bela Lugosi) and Sir Francis Stevens (Walter Kingsford), they discover that thousands of years ago, a meteor hit in what is now Nigeria. After this marvelous discovery, Dr. Rukh decides to join his colleagues in an expedition to Africa, looking for the landing place of the mysterious meteor. This expedition won't be any beneficial for Rukh, as during the expedition his wife Diane (Frances Drake) will fall in love with Ronald Drake (Frank Lawton), an expert hunter brought by the Stevens to aid them in their expedition. However, Rukh will lose more than his wife in that trip, as he'll be forever changed after being exposed to the invisible ray of the meteor.<br /><br />Written by John Colton (who previously did the script for \"\"Werewolf of London\"\"), \"\"The Invisible Ray\"\" had its roots on an original sci-fi story by Howard Higgin and Douglas Hodges. Given that this was a movie with Karloff and Lugosi, Colton puts a lot of emphasis on the horror side of his story, playing in a very effective way with the mad scientist archetype and adding a good dose of melodrama to spice things up. One element that makes \"\"The Invisible Ray\"\" to stand out among other horror films of that era, is the way that Colton plays with morality through the story. That is, there aren't exactly heroes and villains in the classic style, but people who make decisions and later face the consequences of those choices. In many ways, \"\"The Invisible Ray\"\" is a modern tragedy about obsessions, guilt and revenge.<br /><br />A seasoned director of low-budget B-movies, filmmaker Lambert Hillyer got the chance to make 3 films for Universal Pictures when the legendary studio was facing serious financial troubles. Thanks to his experience working with limited resources, Hillyer's films were always very good looking despite the budgetary constrains, and \"\"The Invisible Ray\"\" was not an exception. While nowhere near the stylish Gothic atmosphere of previous Universal horror films, Hillyer's movie effectively captures the essence of Colton's script, as he gives this movie a dark and morbid mood more in tone with pulp novels than with straightforward sci-fi. Finally, a word must be said about Hillyer's use of special effects: for an extremely low-budget film, they look a lot better than the ones in several A-movies of the era.<br /><br />As usual in a movie with Lugosi and Karloff, the performances by this legends are of an extraordinary quality. As the film's protagonist, Boris Karloff is simply perfect in his portrayal of a man so blinded by the devotion to his work that fails to see the evil he unleashes. As his colleague, Dr. Benet, Bela Luogis is simply a joy to watch, stealing every scene he is in and showing what an underrated actor he was. As Rukh's wife, Frances Drake is extremely effective, truly helping her character to become more than a damsel in distress. Still, two of the movie highlights are the performances of Kemble Cooper as Mother Rukh, and Beulah Bondi as Lady Arabella, as the two actresses make the most of their limited screen time, making unforgettable their supporting roles. Frank Lawton is also good in his role, but nothing surprising when compared to the rest of the cast.<br /><br />If one judges this movie under today's standards, it's very easy to dismiss it as another cheap science fiction film with bad special effects and carelessly jumbled pseudoscience. However, that would be a mistake, as despite its low-budget, it is remarkably well done for its time. On the top of that, considering that the movie was made when the nuclear era was about to begin and radioactivity was still a relatively new concept, it's ideas about the dangers of radioactivity are frighteningly accurate. One final thing worthy to point out is the interesting way the script handles the relationships between characters, specially the friendship and rivalry that exists between the obsessive Dr. Rukh and the cold Dr. Benet, as this allows great scenes between the two iconic actors.<br /><br />While nowhere near the Gothic expressionism of the \"\"Frankenstein\"\" movies, nor the elegant suspense of \"\"The Black Cat\"\", Lambert Hillyer's \"\"The Invisible Ray\"\" is definitely a minor classic amongst Universal Pictures' catalog of horror films. With one of the most interesting screenplays of 30s horror, this mixture of suspense, horror and science fiction is one severely underrated gem that even now delivers a good dose of entertainment courtesy of two of the most amazing actors the horror genre ever had: Boris Karloff and Bela Lugosi. 8/10\"\r\n1\t\"\"\"Gunga Din\"\": one of the greatest adventure stories ever told! A story about the British Foreign legion in 19th century India and a lowly \"\"water-bearer\"\" named Gunga Din, a local denizen who aspires to be just like his military counterparts; three British sergeants whose loyalty and camaraderie for each other extend far beyond the bounds of mere patriotism. Their's is a true and abiding friendship for one another and each would be willing to sacrifice his own life for the good of the other. Gunga Din longs to be a soldier too, a Bugler in particular, but can never attain that rank due to his subordinate social standing. However, heroes are not made according to their social credentials, they're made through their willingness to sacrifice for the greater good of others. Gunga Din tries at every turn to prove his mettle, but will he ever attain the rank he so passionately seeks?....\"\"You're a better man than I am, Gunga Din\"\"! One of Hollywood's classics and a perfect 10!!!!\"\r\n0\t\"The opening shot was the best thing about this movie, because it gave you hope that you would be seeing a passionate, well-crafted independent film. Damn that opening shot for filling me hope. As the \"\"film\"\" progressed in a slow, plodding manner, my thoughts were varied in relation to this \"\"film\"\": Was there too much butter in my popcorn? Did the actors have to PAY the director to be in this \"\"film\"\"? Did I get my ticket validated at the Box Office? Yes, dear reader. I saw this film in the Theatre! This would be the only exception I will make about seeing a film at home over a Movie Theatre, because at home you can TURN IT OFF. Were there any redeeming values? Peter Lemongelli as the standard college \"\"nerd\"\" had his moments, especially in a dog collar. Other than that this \"\"film\"\" went from trying to be a comedy, to a family drama to a spiritual uplifter. It succeeded on none of these fronts. Oh, and the girlfriend was realllllllllly bad. Her performance was the only comedy I found.\"\r\n0\t\"If you liked the Grinch movie... go watch that again, because this was no where near as good a Seussian movie translation. Mike Myers' Cat is probably the most annoying character to \"\"grace\"\" the screen in recent times. His voice/accent is terrible and he laughs at his own jokes with an awful weasing sound, which is about the only laughing I heard at the theater. Not even the kids liked this one folks, and kids laugh at anything now. Save your money and go see Looney Tunes: Back in Action if you're really looking for a fun holiday family movie.\"\r\n1\t\"Since my third or fourth viewing some time ago, I've abstained from La Maman et la putain while I wait for the DVD. In the meantime, I've read the french screenplay as well as Alain Philippon's monograph on Jean Eustache. The latter ends with a frustrating filmography, eleven films, fiction, doc, and in-between, impossible to see or, in the cases of Mes petites amoureuses and Le Père Noël..., re-see.<br /><br />A few questions that hit me this moment: Polish Véronika's French is plenty colloquial (un maximum d' \"\"un maximum d'\"\"). Even so, does she have an accent? I think I can tell she does. What does the absence of color add, especially at the single spot the fringe of the city is glimpsed? How does this fringe differ from the sleep and journey that separates worlds of The Tempest and The Winter's Tale? Ditto Alphaville. We may imagine the elapsed years since have done it, but does Eustache deliberately circumscribe the film's milieu? Is this an enchanted isle? Is Alexandre's a fairy tale? Alexandre's always choreographing himself, worrying about how or where to stand or walk, what to say when, announcing these decisions to who have to care less than he does what he does. Or is this his way of trying to choreograph others by doing it to himself? How different is he from Vertigo's Scottie? (I say, I think, very.) What's the difference, and is there one, between Eustache's Léaud, and Truffaut's, and Godard's? How different is the present Léaud? Isn't he still doing it, whatever it is, in recent roles, Irma Vep, Le Pornographe, whatever, approaching old age? Once I arrived early for one in a series of mostly Antoine Doinel (Léaud's character) Truffaut films. For a long while, every three or five minutes, down the aisle would come a twenty-something male in scarf, tweedy coat, Léaud hair, with a direction-seeking nose. I have no idea whether this was conscious or unconscious mimicry. I was that age, but have no idea what I myself looked like then. No scarf, at least. I do have a brother, though, who seems to have learned his carriage from Bresson.\"\r\n1\tSo I don't ruin it for you, I'll be very brief. There's some great acting and funny lines from the attractive cast. A young graduate of Harvard Med School (Brian White) finds out he doesn't know as much as he thinks about people. He goes to a small hospital in Florida for his internship because a girlfriend (Mya) left him for a job as a TV Producer. His Senior Resident (Wood Harris), helped marvelously by his 'creative collaborator'(Zoe Saldana) bring him up to speed. They help protect his career and show him the wider possibilities that come from being a compassionate doctor instead of a player who just wants to make money (as seems to be true for many of my pre-med friends).\r\n0\t\"This film's trailer interested me enough to warrant renting the DVD. However, the resulting movie is absolutely dire! Admittedly, this is not the worst film ever made, or the worst film this year, but it came damn close!<br /><br />The main issue is the film not knowing what it wants to be: comedy, adult drama, thriller, teen-porn? The story is interesting, as it deals with the pitfalls of mail-order brides, but the film is a mess. What starts out as a mildly interesting \"\"comedy\"\" (a word I use in the loosest possible terms), then goes totally in reverse, and degenerates into a very dark and distasteful misogynistic thriller. Nicole Kidman should know better, and Ben Chaplin is wasted! As are Matthieu Kassovitz and Vincent Cassel, whom I can only presume did this for the money.<br /><br />This is a bad film in pretty much every single aspect. It's not funny, it's almost so sexist that you could almost forgive Benny Hill for everything he did, and the dramatic elements are just downright nasty. A film to be avoided, unless you absolutely have to see Kidman or Chaplin in every one of their films!\"\r\n1\tCaught this film in about 1990 on video by chance and without knowing what i was in for. Many horror fans may have missed this thinking it was a typical prison film and the ones who did get it didn't like it as it was not what they wanted to see. The above mentioned factors are probably the reasons it is low rated but just ignore that and give it a whirl if you're a fan of the genre.<br /><br />It has strong suits in all departments from script and atmosphere to acting and the prison itself. <br /><br />An absolute diamond, a film i still have on video to this day. Check it out.\r\n0\t\"Watching this last night it amazed me that Fox spent so much money on it and got so little back on their investment. It's the kind of disaster that has to be seen to be believed.<br /><br />I'm sure that the first morning of filming Raquel Welch dusted off the shelf over her fireplace to prepare a spot for the Academy Award she would surely win for this daringly original movie. Oops. That's not what happened.<br /><br />The infighting on the set was detailed in print by Rex Reed and this helped the movie attain a reputation before it was even released. When it was finally released there wasn't the usual three ring circus of publicity. If I remember correctly, in Houston it opened at drive-ins and neighborhood theatres and never played any of the big venues.<br /><br />I lay most of the blame on director Michael Sarne, who was hot after having directed (the not all that good) JOANNA, a film with music about young people in swinging mod London.<br /><br />If I recall correctly, Fox wound up firing him and piecing the film together the best they could. That's why scenes play out in no particular sequence and characters appear and then vanish. An impressive supporting cast (Kathleen Freeman, Jim Backus, John Carradine, Andy Devine and others) is wasted with nothing to do.<br /><br />To expand it to feature length there are numerous clips from Fox movies featuring stars like Carmen Miranda (in amazing footage from THE GANG'S ALL HERE) andLaurel and Hardy, who never dreamed they'd be playing in an X rated movie.<br /><br />The X rating is due to occasional language numerous sexual perversions; however, none of the characters seem to be having any fun. Maybe somebody involved with the film had a warped Puritan sensibility and figured that if they could make these things unappealing it wasn't bad to exploit them.<br /><br />This was one of the \"\"youth\"\" pictures that nearly bankrupted Hollywood in the 1970's. One writer joked that EASY RIDER (which was made for pocket change) was the most expensive movie ever made because so many films followed which tried and failed in the worst way to duplicate its success. Sixtyish, once honored directors like Stanley Kramer and Otto Preminger made movies like RPM and SKIDOO in an effort to attract a young audience. White directors and writers attempted to make films to attract a Black audience. Those movies are locked somewhere in a vault and the two named and many others from that genre have never, as best I know, been out on home video or cable. They're the studios' deep dark secret.<br /><br />Raquel Welch's performance in this is, all things considered, very good. With the right direction and script she could played the type of sassy liberated women Rosiland Russel and Barbara Stanwyck specialized in. She looks great and has awesome costumes. Mae West is the liveliest seventy-something actress I've ever seen. On the one hand it's kind of heartbreaking to watch her attempt to capture her glory from years gone by, but I'm sure she needed the money.<br /><br />If you want to see a big budget X-rated movie from this era check out BEYOND THE VALLEY OF THE DOLLS (also from Fox) because it doesn't take itself seriously. It's crazy kids playing with the equipment at a major studio. MYRA BRECKINRIDGE tries to Say Something. There just wasn't anyone who wanted to listen.\"\r\n1\t\"This has long been one of my favourite adaptations of an Austen novel. Although it is definitely not in the same category as the spectacular \"\"Pride and Prejudice,\"\" \"\"Emma\"\" is a lush and relatively faithful TV version of Austen's novel -- especially considering its short length. The biggest change between the novel and the movie is a good one, as the unnecessary snobbishness that Austen exhibits at the end of the story is removed here and replaced with someone much more akin to Emma's character in the rest of the book. I thought the characters chosen to portray the roles were well-picked. Kate Beckinsale walks the fine line between girlishness and the social snob with a grace completely lost in Gwyneth Paltrow's '96 version. Samantha Morton's wispy blonde locks suit her attitude and character as the simper that accompanies her role in previous characterisations is replaced with the Harriet we know from the book. Mister Knightly's role is carried out extremely well in my opinion; both the seriousness and the gentle compassion that the hero is painted with in the novel are present here in this much-neglected, sumptuous film.\"\r\n1\t\"Once upon a time in a castle...... Two little girls are playing in the garden's castle. They are sisters. A blonde little girl (Kitty) and a brunette one (Evelyn). Evelyn steals Kitty's doll. Kitty pursues Evelyn. Running through long corridors, they reach the room where their grandfather, sitting on an armchair, reads the newspaper. Kitty complains about Evelyn, while Evelyn is looking interestedly at a picture hanging on the wall. Evelyn begins to say repeatedly: \"\"I am the red lady and Kitty is the black lady\"\". Suddenly Evelyn grabs a dagger lying nearby and stabs Kitty's doll and then cuts her (the doll's) head. A fight ensues. And Evelyn almost uses the dagger against Kitty. The grandfather intervenes and the worst is avoided.<br /><br />Later on, their grandfather tells them the legend related to the picture hanging on the wall in front of them, in which a lady dressed in black is stabbing a lady dressed in red:<br /><br />\"\"A long time ago, a red lady and a black lady lived in the same castle. They were sisters and hated each other. One night, for jealousy reasons, the black lady entered the red lady's room and stabbed her seven times. One year later, the red lady left her grave. She killed six innocent people, and her seventh victim was the black lady. Once every hundred years, the events repeat themselves in this castle and a red lady kills six innocent victims before killing the black lady herself.\"\"<br /><br />The grandfather ends his tale by saying that according to the legend, sixteen years from now, the red queen should come again and kill seven times. But he assures them that this is just an old legend.<br /><br />Sixteen years pass.....<br /><br />This is the very beginning of the film. There are many twists and surprises in the film. It's better for you to forget about logic (if you really analyse it, the story doesn't make sense) and just follow the film with its wonderful colors, the gorgeous women, the clothes, the tasteful decor, the lighting effects and the beautiful soundtrack.<br /><br />Enjoy Barbara Bouchet, Sybil Danning, Marina Malfatti, Pia Giancaro, among other goddesses. There's a nude by Sybil Danning lying on a sofa that's something to dream about. And don't forget: The lady in red kills seven times!<br /><br />If you've liked \"\"La Dama Rossa...\"\" check out also \"\"La Notte che Evelyn uscì dalla Tomba\"\".\"\r\n0\t\"This Cannon Movie Tale is the worst of the lot, and is positive proof that a five minute fable does not a full-length film make. Poor Sid Caesar as the vain emperor, is made to look so stupid, it's hard to watch him. As the sly tailor, Robert Morse hasn't an ounce of charm. Neither does his hapless nephew (Jason Carter) The \"\"songs\"\" are dreadful and only slow what there is of the plot down. The direction is practically nonexistent, and the supporting characters add very little. Lysette Anthony is pretty as the emperor's daughter, but her voice has obviously been dubbed for some reason, a fate shared by many of the minor players. And the film crawls at a snails pace. Hans Christian Andersen must have been turning somersaults in his grave when this appeared. It can honestly be said, at least of this movie tale, it's no surprise that it went straight to video oblivion.\"\r\n1\tI really wonder how this show plays in the U.K. and the rest of Europe. IT IS SO SELF-LOATHING ABOUT BEING AN American(particularly white Americans). That could be a big reason for some of the venom and vitriol expressed here on this board. I love the show but it is with some reservations and I feel it took the easy way out by Spoiler Spoiler:<br /><br />Crashing and burning everything at the end of the second season. Julie slammed the door shut on any hope of reviving the show unless her character lands on a haystack in the middle of some farm. Who knows? It was a funny, raunchy and on occasion, kinda scary show.\r\n1\t\"This was the worst movie I've ever seen, yet it was also the best movie. Sci Fi original movie's are supposed to be bad, that's what makes them fun! The line, \"\"I like my dinosaur meat well done!\"\" is probably the best quote ever! Also, the plot sounds like something out of a pot induced dream. I can imagine it now, the writers waking up after a long night of getting high and playing dance dance revolution, then putting ideas together for this: Space marines got to alien planet, which is infested with dinosaurs and has medieval houses in it, to protect a science team studying the planet. Best idea ever! In fact, in fits the complete Sci Fi original movie checklist: guns dinosaurs medieval times space travel terrible acting<br /><br />So go watch this movie, but don't buy it.\"\r\n1\t\"Before I start, I should point out that I know the editor of this film. We've never met, but we belong to the same fanzine(those things which came before message boards), and we have talked on the phone, so I do have a bias here. Anyway...<br /><br />Somehow, it's ironic how while the \"\"Rat Pack\"\" culture of the late 50's and early to mid-60's made a comeback in the mid-90's, this movie, from the son of one of the original Rat Pack, and which was made in a similar fashion, was a flop. Not only that, it was a critical flop; I believe Peter Travers of Rolling Stone was the only one who did not savage this(he gave it a mixed review, as I recall). And while I don't think this is the greatest film in the world, and I am not a fan of the Rat Pack, or \"\"cocktail,\"\" culture, I do think this is worth seeing.<br /><br />For one thing, this looks stylish, and moves right along. For another, the core performances are all good. Richard Dreyfus is surprisingly restrained here as the head gangster coming back from a sanitarium, and has a droll edge to him. Jeff Goldblum goes back to the quietly ironic performances he gave in his pre-blockbuster days, like THE BIG CHILL. And while Ellen Barkin is only required to vamp in this movie, she does it entertainingly. Admittedly, it's not a great film; the dialogue is mostly made up of puns, and a lot of them don't work(like the whole \"\"Zen of Ben\"\" speech). And Gabriel Byrne and Kyle MacLachlan are awful here. Still, I was entertained, and if you like gangster films, you might be too.\"\r\n1\tThis movie scared the crap out of me! I have to admit that I spent most of the film watching through my fingers but what I saw was really scary. I screamed out loud two or three times during the show.<br /><br />Film-making-wise my favorite aspects were the sound and photography. The sound was particularly great and the setting was really creepy beautiful. I read somewhere that it's some weird husband and wife team that made it. For some reason that makes this even stranger for me. <br /><br />If you enjoy the jumps and jitters of scary movies than this one is for you! Very suspenseful and a great movie to rent with a bunch of friends who love to watch movies curled up on a sofa screaming like little girls!\r\n0\tI guess if you are into the sci-fi and horror stuff it might be interesting. The acting was okay but not great. The two pregnant girls are supposed to be fifteen but are played by obviously older actresses who turned out to be twenty and twenty-one at the time. The plot is okay, but the story does jump around a bit, leaving one guessing whether you're in Boston or Pennsylvania. The priest seems to use warp speed between the two. The catholic church is portrayed as having a secretive sect for investigating events which only happen to those of that faith. What if the two girls had been protestant? Would the catholics of cared? Therefore some what contrived. Who knows, some day the catholic church might even learn what the Bible teaches. If you miss this one, don't feel you've lost anything.\r\n1\t\"My former Cambridge contemporary Simon Heffer, today a writer and journalist, has put forward the theory that, just as British film-makers in the eighties were often critical of what they called \"\"Thatcher's Britain\"\", the Ealing comedies were intended as satires on \"\"Attlee's Britain\"\", the Britain which had come into being after the Labour victory in the 1945 general election. This theory was presumably not intended to apply to, say, \"\"Kind Hearts and Coronets\"\" (which is, if anything, a satire on the Edwardian upper classes) or to \"\"The Ladykillers\"\" or \"\"The Lavender Hill Mob\"\", both of which may contain some satire but are not political in nature. It can, however, be applied to most of the other films in the series, especially \"\"Passport to Pimlico\"\".<br /><br />Pimlico is, or at least was in the forties, a predominantly working-class district of London, set on the North Bank of the Thames about a mile from Victoria station. It is not quite correct to say, as has often been said, that the film is about Pimlico \"\"declaring itself independent\"\" of Britain. What happens is that an ancient charter comes to light proving that in the fifteenth century the area was ceded by King Edward IV to the Duchy of Burgundy. This means that, technically, Pimlico is an independent state, and has been for nearly five hundred years, irrespective of the wishes of its inhabitants. The government promise to pass a special Act of Parliament to rectify the anomaly, but until the Act receives the Royal Assent the area remains outside the United Kingdom and British laws do not apply.<br /><br />Because Pimlico is not subject to British law, the landlord of the local pub is free to open whatever hours he chooses and local shopkeepers can sell whatever they please to whomever they please, unhindered by the rationing laws. When other traders start moving into the area to sell their goods in the streets, the British authorities are horrified by what they regard as legalised black-marketeering and seal off the area to try and force the \"\"Burgundians\"\", as the people of Pimlico have renamed themselves, to surrender.<br /><br />Many of the Ealing comedies have as their central theme the idea of the little man taking on the system, either as an individual as happens in \"\"The Man in the White Suit\"\" or \"\"The Lavender Hill Mob\"\", or as part of a larger community as happens in \"\"Whisky Galore\"\" or \"\"The Titfield Thunderbolt\"\". The central theme of \"\"Passport\"\" is that of ordinary men and women taking on bureaucracy and government-imposed regulations which seemed to be an increasingly important feature of life in the Britain of the forties. The film's particular target is the rationing system. During the war the system had been accepted by most people as a necessary sacrifice in the fight against Nazism, but it became increasingly politically controversial when the government tried to retain it in peacetime. It was a major factor in the growing unpopularity of the Attlee administration which had been elected with a large majority in 1945, and organisations such as the British Housewives' League were set up to campaign for the abolition of rationing. I cannot agree with the reviewer who stated that the main targets of the film's satire were the \"\"spivs\"\" (black marketeers), who play a relatively minor part in the action, or the Housewives' League, who do not appear at all. The satire is very much targeted at the bureaucrats, who are portrayed either as having a \"\"rules for rules' sake\"\" mentality or a desire to pass the buck and avoid having to take any action at all.<br /><br />I suspect that if the film were to be made today it would have a different ending with Pimlico remaining independent as a British version of Monaco or San Marino. (Indeed, I suspect that today this concept would probably serve as the basis of a TV sitcom rather than a film). In 1949, however, four years after the end of the war, the film-makers were keen stress patriotism and British identity, so the film ends with Pimlico being reabsorbed into Britain. One of the best-known lines from the film is \"\"We always were English and we always will be English and it's just because we ARE English that we're sticking up for our right to be Burgundians\"\". There is a sharp contrast between the rather heartless attitude of officialdom with the common sense, tolerance and good humour of the Cockneys of Pimlico, all of which are presented as being quintessentially British characteristics.<br /><br />Most of the action takes place during a summer drought and sweltering heatwave, but in the last scene, after Pimlico has rejoined the UK the temperature drops and it starts to pour with rain. Global warming may have altered things slightly, but for many years part of being British was the ability to hold the belief, whatever statistics might say to the contrary, that Britain had an abnormally wet climate. The ability to make jokes about that climate was equally important.<br /><br />There is a good performance from Stanley Holloway as Arthur Pemberton, the grocer and small-time local politician who becomes the Prime Minister of free Pimlico, and an amusing cameo from Margaret Rutherford as a batty history professor. In the main, however, this is, appropriately enough for a film about a small community pulling together, an example of ensemble acting with no real star performances but with everyone making a contribution to an excellent film. It lacks the ill-will and rancour of many more recent satirical films, but its wit and satire are no less effective for all that. It remains one of the funniest satires on bureaucracy ever made and, with the possible exception of \"\"Kind Hearts and Coronets\"\" is my personal favourite among the Ealing comedies. 10/10\"\r\n0\t\"There is a reason why Jay Leno himself will not acknowledge this film. It consistently ranks as one of the worst films of all time. The acting is horrible, the script lacks direction and the director himself doesn't seem sure on which way to take this film. \"\"A buddy film,\"\" \"\"an action/comedy,\"\" \"\"mystery.\"\" Seems half way through, he gives up, and is just along for the ride. Jay Leno and Pat Morita are talented and dedicated performers. It is a shame that they wasted their time and gifts making this mess of a movie. Jay Leno and Pat Morita prior to involving themselves with this, had spent years pounding out their crafts on the Hollywood circuit. Mr. Morita had already been a star in his own right, acting steadily since the mid 1960s as the star of such cult TV and movie classics as \"\"Happy Days,\"\" and the dismal but affable \"\"Mr. T and Tina.\"\" And won the hearts of America with his roles in the powerful film, \"\"Midway,\"\" \"\"The Karate Kid,\"\" and a host of others. Mr. Leno can been seen on TV shows dating back to the mid 70s. And was a top performer in the comedy clubs of America. He can be seen in countless TV spots and in major films. It is a shame, that they agreed to be seen with this nonsense.\"\r\n1\tA solid B movie.<br /><br />I like Jake Weber. His understated delivery is refreshing in a time of over the top performances. I liked the relationship between the father and son. I liked the family dynamics. The Wendigo looks silly, but it is a representation of the kid's toy and the dead deer. It's an amalgamation like, see? This is a psychological story, not a Freddy slash em up instant gratification flick. Watch it and reflect on your inner child and what the movie might have to say to you and you'll be fine.<br /><br />Nice work.\r\n0\t\"There are some nice shots in this film, it catches some of the landscapes with such a beautiful light, in fact the cinematography is probably it's best asset.<br /><br />But it's basically more of a made for TV movie, and although it has a lot of twists and turns in the plot, which keeps it quite interesting viewing, there are no subtitles and key plot developments are unveiled in Spanish, so non Spanish speakers will be left a little lost.<br /><br />I had it as a Xmas gift, as it's a family trait to work through the films of a actor we find talented, and Matthew Mconaughey was just awesome in \"\"A Time to kill\"\" , and the \"\"The Newton Boys \"\" so I expressed I wanted to see more of his work.<br /><br />However although it says on the DVD box it is a Matthew Mconaughey film and uses this as a marketing ploy, he has a few lines and is on screen for not very minutes at the end of the film, he is basically an extra and he doesn't exactly light up the screen while he is on, so die hard fans, really not worth it from that point of view.<br /><br />The films star though, Patrick McGaw is great though and very easy on the eye, and his character is just so nice and kind and caring, a true saint of a guy, he'd be well written into a ROM com.<br /><br />So for true Mcconaughey acting brilliance of the ones I've seen, I'd recommend, \"\"A Time to kill\"\" , \"\"The Newton Boys \"\" \"\"Frailty\"\", \"\"How to Lose a Guy in 10 Days\"\", \"\"Edtv\"\" and \"\"Amistad\"\" and avoid too \"\"Larger Than Life\"\" and \"\"Angels in the Outfield\"\" unless you feel like a kids film or have kids around as neither of these are indicative of his talent, but are quite amusing films for children, again MM is really nothing more that a supporting artist with just a few if any lines.<br /><br />As for Scorpion Springit's not a bad film but it also isn't screen stealing either.\"\r\n0\t\"Terminus Paradis was exceptional, but \"\"Niki ardelean\"\" comes too late. We already have enough of this and we want something new.<br /><br />Big directors should have no problems seeing beyond their time, not behind. Why people see Romania only as a postrevolutionary country?<br /><br />We are just born not reincarnated, and nobody gives a s**t anymore about old times. Most people dont remember or dont want to remember, and the new generation of movie consumers dont understand a bit. This should be the first day of romanian movie not the final song - priveghi! Maybe younger directors should make the move.\"\r\n0\t\"Once again I have seen a movie made by people that know nothing. I just recently reviewed Baby Face Nelson. Now I've seen Dillinger and I've had it.<br /><br />This movie is garbage. I don't know how anyone in their right mind could compare this to a classic like Bonnie and Clyde. This movie is far from a classic. Someone called it brilliant. That's an insane thing to say. This movie can't get any facts straight and it has the worst casting I've ever seen. I don't know whose dumb idea it was to cast Warren Oates as John Dillinger. First of all he looks nothing like him. Second of all, by the time John Dillinger was killed he was 31. When Oates made this he was 45! You could even tell that he's older than the real Dillinger just by looking at him. Not only was he too old, but so was Ben Johnson as Melvin Purvis.<br /><br />They show Baby Face Nelson die, then Homer Van Meter, and finally John Dillinger. John Dillinger was killed before both of them. The last one to die out of the three was Baby Face Nelson. Not only do the writers not know when they died, but they also don't know how they died. Baby Face Nelson was not killed after he escaped from Little Bohemia in a robe. Homer Van Meter was not killed by farmers with shot guns. Homer Van Meter was cornered by the police in St. Paul and gunned down with machine guns. Another member of Dillinger's gang, Harry Pierpont is shown being shot by police in this movie. Pierpont wasn't shot. Harry Pierpont was captured and sentenced to die in the electric chair. I go into what happened to Baby Face Nelson on my Baby Face Nelson review so I'm not going to go into it again here. Let me also add that Richard Dreyfuss' portrayal of Baby Face Nelson is pathetic. There's a scene where he attacks Dillinger and then gets a bad beating. While Dillinger was beating him he was crying like a baby and screaming, \"\"Leave me alone!\"\" Baby Face Nelson and John Dillinger never fought. Maybe Dillinger didn't agree with Nelson's bank robbing methods, but they never fought. Nelson also never cried like a little girl while getting beaten. They keep calling him Lester \"\"Baby Face\"\" Nelson. He was never in his life known by that name. Nelson's real name was Lester Gillis and he changed his name to George Nelson. The black guy that escaped from jail with Dillinger was Herbert Youngblood, but in this movie he is known as Reed Youngblood. John Milius doesn't know anything. Where the hell did John Milius get his information? I could probably make a better movie than him.<br /><br />Finally the way they showed John Dillinger die is outrageous and inexcusable. The movie shows Dillinger walk out of the Biograph with the Lady in Red and his girlfriend Billie Frechette. By the way, Billie Frechette wasn't even there that night. But a girl named Polly Hamilton was. Melvin Purvis yells, 'Johnny!' Dillinger pulls out his gun and is blown to hell. It is a proved fact that Dillinger did not have a gun that night. The FBI gave him no chance to surrender and as soon as he was in sight they blew him away. They didn't even have to shoot him. They were so close that powder burns were found on his face. It was murder. They also say that the man killed that night was not John Dillinger. After killing tons of civilians in the Little Bohemia incident can you imagine the FBI reporting that they had just killed another innocent unarmed man? The gun they had on display that was supposedly on Dillinger was also proved not to have been manufactured until after Dillinger's death. I could go on and on how the man they killed wasn't John Dillinger, but I'll stop here. If you would like to know more check it out here<br /><br />See the Dillinger version with Lawrence Tierney if you want, but don't waste your time with this inaccurate piece of garbage movie.\"\r\n1\t\"The movie celebrates life.<br /><br />The world is setting itself for the innocent and the pure souls and everything has \"\"Happy End\"\", just like in the closing scene of the movie.<br /><br />The movie has wonderful soundtrack, mixture of Serbian neofolk, Gypsy music and jazz.<br /><br />This movie is very refreshing piece of visual poetics.<br /><br />The watching experience is like you've been sucked in another colorful, romantic and sometimes rough world.<br /><br />Like Mr. Kusturica movie should be.\"\r\n1\tExcellent political thriller, played much quieter and slower than other, higher ranking films in this genre. When people talk about Pacino and Cusack how do they manage to skip over these amazing career topping performances? A story of friendships, father-son relationships, corruption and deceit. The two actors gel amazingly well together, and the supports from Aiello and Fonda are equally as impressive, although Aiello is brilliant, especially when the papers run to press. Instead of focussing on an over complex corruption scandal, it creates wonderful characters who show the human side of failure an political bribery, The final scenes with each of the main characters are wonderfully written and acted.\r\n0\tThe movie starts out with some scrolling text which takes nearly five minutes. It gives the basic summary of what is going on. This could have easily been done with acting but instead you get a scrolling text effect. Soon after you are bombarded with characters that you learn a little about, keep in mind this is ALL you will learn about them. The plot starts to get off the ground and then crashes through the entire movie. Not only does the plot change, but you might even ask yourself if your watching the same movie. I have never played the video game, but know people who have. From my understanding whether you've played the game or not this movie does not get any better. Save your money unless you like to sleep at the theaters.\r\n1\t\"If you want to be cynical and pedantic you could point out that the opening where a RAF Lancaster bomber is mortally wounded on the 2nd of May 1945 is somewhat unlikely since German air defences were as lively as Adolph Hitler on that day but this isn't a movie that should be viewed by a cynical audience and I guess a character being killed in literally the last hours of the war adds to the poignancy . In fact you'd have to have survived the second world war to fully appreciate the intellect , beauty and soul of Powell and Pressburger's masterpiece . The scenes of heaven are painfully twee when viewed today ? Again you have to view the movie of the context when it was made . RAF bomber command lost 58,000 men during the war , the same number that America lost in 'Nam but during a shorter period and a far , far smaller pool of active combatants , there's no atheists in a fox hole and I doubt if you'd lost a relative during the conflict you'd view material atheism as being a sensible thing . When Richar Attenborough's young pilot looks down in awe at the sight below him many war heroes must have openly wept at this scene as they remembered much missed comrades who didn't survive the war . Also bare in mind that despite losing several million people from 1939-45 there seems to be very few people from Germany passing through the pearly gates . it's obvious Nazis don't go to heaven <br /><br />The plot itself where dashing young pilot Peter Carter arguing for his life in front of a celestial court wouldn't have had much appeal to me if it wasn't for the subtext , you see A MATTER OR LIFE AND DEATH is a highly political and visionary film that laments the end of the British empire as it's replaced by American ambitions . There's little things that show up the film as being made by people aware of American history and culture . One is the ethnic mix of America , even today many Britons think that the USA is overwhelmingly composed of White Anglo Saxon Protestants when in fact only 51% of Americans are \"\" White European \"\" . The film rightly contains a scene where a multitude of different races confess \"\" I am an American \"\" as Peter is judged by Abraham Farlan , an Anglophobe who was the first revolutionary killed by British forces in The American War Of Independence . As for the \"\" special relationship \"\" between Britain and America - What special relationship ? Powell and Pressburger know their history when it comes to Britain and America . They obviously know their future too <br /><br />So remember to watch this movie with some of your mind in the past and some of your mind in the present . It's strange , beautiful , poignant and clever but most of all it's a film that would never ever work if it were made in the last 40 years . Can you imagine if the story was set in 2003 and revolved around a British soldier killed in Iraq ?\"\r\n1\tWhat a real treat and quite unexpected. This is what a real thriller movie is all about. I rushed into the video shop, grabbed a movie without reading the entire blurb on the back and hoped for the best. I was totally surprised and delighted. I really enjoyed the actors and their characters. I thought they all gave a great performance and made their characters realistic. The plot was well thought out,well written and directed. It kept you interested from start to finish and never got boring for a single minute.<br /><br />I highly recommend this movie for those that like thrillers, especially thrillers that are well paced and ones that keep your attention. Definitely a 10 out of 10 from me.\r\n0\t\"As a long-time fan of all the Star Trek series,I found this a disappointing episode, and I wonder if the liberal use of \"\"flashbacks\"\" featuring Will Riker's exploits, both positive (and largely romantic) and negative (lots of pain, and a crewmate's death)was a money-saving device, as were many of their \"\"bottle shows\"\" (episodes in which all scenes take place on the Enterprise). Diana Muldaur(who also appeared at least twice on the original series) deserved a better final appearance than this for her character, Dr. Kate Pulaski. Loyal viewers (in the Star Trek world, is there any other kind?) also were shortchanged. This was the last episode of second season; thus, the season ended \"\"not with a bang\"\" but with \"\"a whimper.\"\"\"\r\n0\t\"\"\"People I Know\"\" is a clunker with no one to root for and no one to care about -- despite the game efforts of a talented cast.<br /><br />Pacino delivers his usual tour de force as Eli Wurman, a past-his-prime publicity agent hollowed out by a lifetime of moral corruption. But unlike Michael Corleone, it's impossible to have an emotional investment in this character, his dilemma, or his fate.<br /><br />The film traces Eli's preparations for a benefit for a liberal political cause, while distracted by a client's (Ryan O'Neal, good in an underwritten part) latest \"\"dirty laundry\"\" -- in this case, a TV actress companion who's gotten involved with the wrong people. Tea Leoni brings her customary star power to this supporting role, although again, the script doesn't give her much to work with. As Eli's sister-in-law, Kim Basinger manages to evoke sympathy despite implausible plot mechanics.<br /><br />This movie is strictly for those who like watching Pacino strut his stuff, and enjoy the other principals. Unfortunately, between the script and direction, \"\"People I Know\"\" is strictly amateurish. Hence its limited theatrical release, and speedy journey to DVD. Consider yourself warned.\"\r\n0\t\"As someone who has read the book, I can say that this is vastly inferior to the big American version starring Gwyneth Paltrow. There are various reasons for this. Firstly, Emma is too unpleasant. Yes, she has faults, and isn't the easiest person to like - but the viewer shouldn't downright start to despise her. Secondly, Mr Knightly is miscast. His brooding and melancholy in this version are better suited to a Bronte or Gaskell adaptation than Austen, and throw the mood of the whole affair \"\"off\"\". Thirdly, Samantha Morton is too strong an actress to be relegated to the role of Harriet; and why was she made to look so sickly? Harriet is supposed to be blonde and blooming - not to look as if she's going to be carried off by consumption in the next scene. Fourthly, the structure has been mucked up and scenes cut. At the end, when Emma decides she loves Mr Knightly, it comes across as utterly baffling because this narrative hasn't been adequately shown and carried along throughout the film. Fifthly, what was going on, exactly, with Mrs Elton's accent? She went from sounding like an American actress trying to suppress her own accent at the beginning, to all out American half-way through, and then back to English at the end. Finally, this dragged at the end. The book and the big film version end with the wedding of Emma and Mr Knightly. This version drags on confusingly after the announcement of the wedding without actually showing us the ceremony.<br /><br />All in all, a rather haphazard attempt. Read the book or rent the Paltrow version instead\"\r\n1\tIf the screenwriter and director intended to open hearts with the movie as the musician wanted to do with his music, they succeeded with me. Commonplace human situations became original, personal and immediate so that I personally felt touched by each situation. I believe I would credit the power of music combined with the point of view of the person writing the movie. Without spoiling, I can say that I was very moved by the movie's approach to living. Haven't actually cried out of-what- joy? empathy? just deep emotion? in a very long time. I would love to find a way to show it to others. Saw it at Seattle International Film Festival.\r\n0\tI think if you are into the sixties kind of thing, as I am, you are obligated to waste about 80 minutes of your life watching this barely watchable trainwreck. The saving graces of this oddity include a surprisingly apt social commentary on sixties values along with a number of relatively well known actors caught in early (and embarrassing) footage. It's as if the producers of Laugh-In sat down and decided to write a full length film, covering all the high points (and more) of the issues between the flower children and the establishment, then put it in the hands of a couple of hippies and gave them about a $10,000 budget to complete it. Hardly a classic, but in its own way it does capture how truly strange that time was, the silliness, the over-idealism, and the uptightness of the establishment. Clearly not for everyone.\r\n1\tThis movie is one exception of the rule that a sequel is worser than the original. Its comedy at its best. This movie is a fast action slapstick comedy where something seems to happened every second. At more than one occasion the entire audience laughed loudly at a joke.<br /><br />Its a big advantage to have seen the first movie but its not a requirement.<br /><br />Göta kanal 2 also have the advantage of being a parody on the latest decades reality production TV series such as survivor (expediton: Robinson in Swedish) This is a Swedish movie for the Swedish audience. Thus don't see it if you aren't familiar with Sweden and its language. Otherwise: Have fun! Johan\r\n1\tThis game is fun and it has a plot that you could actually expect to see in the comics. Spider-man has been framed by a mysterious impostor. The city is being overrun by a strange gas, and symbiotes like those of Venom and Carnage are appearing all over the city. Who is behind these crimes? Could it be Doc Ock? Well he seems to have turned over a new leaf. Venom also does not seem to be involved as he is just ticked off that Spider-man has apparently cost him a rather good photo opportunity. Well cameos from other heroes and lots of villains later Spidey will unravel the mystery. The fighting is basic, not to hard to pick up, the fights with the bosses are rather fun. You get to collect comics, you run out of web and it is somewhat fun traversing the city. However, that is also a weak point. The swinging is not all that great as all you do is hover through the city as Spider-man seemingly attachés his webs to the sky. You also do not have much maneuverability web-slinging either especially compared to a say Spider-man 2 movie video game. Still, it makes up for the rather bad swinging with the other elements especially the story. So be prepared to see Scorpion, Rhino, Venom, Mysterio, Doctor Octopus, and Carnage for one wild action packed ride.\r\n1\t\"The only notable thing about this film is that it was Steve McQueen's first big starring role.<br /><br />McQueen's talent is undeveloped and raw but refreshingly honest in this campy little sci-fi horror piece. Steve shows himself as the anti-establishment, hot rod car loving actor who would become a polished icon of the film industry just five years hence.<br /><br />Later on, McQueen would say he hated this film and that \"\"he was the blob\"\". But everyone has to start somewhere and The Blob is cute, fresh and innocent. Would that we all had stayed that way.<br /><br />The plot is fast paced and although predictable, still an entertaining hour or so. And it's really fun to see Steve McQueen before he became The King of Kool (and Anita Corsaut before she became Andy Taylor's girlfriend). A close friend sent me the DVD a while back and it's a treasured addition to my Steve McQueen film collection.\"\r\n1\tI'm a writer working at home and Diagnosis Murder is my lunchtime break companion - good, clean fun, good humour and nostalgia for the days of the Dick van Dyke show. How innocent we all were (and how innocent is Diagnosis Murder). I particularly enjoyed the episodes with other nostalgia figures like Joe Mannix. The bad guys always get caught, the good guys carry on. The stars clearly enjoy themselves and are having a ball without taking themselves too seriously.<br /><br />One beef: why were so many of the villains women or at least bitches? Amanda was too dizzy. Its hard to imagine her really carrying out anything as gruesome as an autopsy.<br /><br />I hope we haven't seen the last of Dick Van Dyke and family on our screens, esp. at lunchtimes!!\r\n1\tI love this movie, but can't get what is in this movie tht is not to like. People who don't like this movie must be Richard Roeper and Roger Ebert. But I can't believe that is Mr. Carrey behind all that makeup. And I am sure that most of the actors and actresses in the movie has made film before this. And there is a new face in the movie. Taylor Momsen who plays Cindy Lou Who. As the opens, the Grinch (Jim Carrey) comes out of hiding. And causes some mean fun to the whos in Whoville. Sicne we know that the whos love Christmas. While The Grinch does not like christmas. And even makes fun of little Cindy Lou Who (Taylor Momsen) who is the daughter of the town's postmaster (Bill Irwin). The movie was directed by Ron Howard. And the narrtor's voice is done by Anthony Hopkins. And Jeffrey Tambor (Muppets From Space) is cast as the mayor of whoville. Who doesn't like talking about the Grinch close to Christmas time.\r\n0\t\"\"\"Semana Santa\"\" or \"\"Angel Of Death\"\" is a very weak movie. Mira Sorvino plays a detective who is trying to find a killer who shoots arrows in people. Mira has an Italian accent which falters from time to time. Couldn't she just speak English? All the other characters have a forced Mexican\\English accent which is distracting. The dialogue is very bad and the delivery of it is wooden. The cinematography looks nice, but that's not enough to save this tripe. THIS NEXT PART OF THIS REVIEW DOES CONTAIN SPOILERS!!!! <br /><br />During the climax it looks like the villain is going to get away, but then he comes back down stairs to get shot and do a cool stunt down the railing. That just shows this script has no originality whatsoever. AVOID!\"\r\n1\t<br /><br />Presenting Lily Mars is one of a genre of film that sadly seems to have disappeared with the studio system. Ok now that you know my bias, here are some reasons I think this movie does stand out.<br /><br />1. Although the basic plot - Lily Mars (Judy Garland) goes to New York, becomes a star, and wins the heart of her director (Van Heflin) is a pretty stock Hollywood story of the period, the writers do vary the theme her a bit more than usual. Although Lily gets her big break when the star quits, she isn't successful and has to swallow her pride and go back to playing a minor role in the show.<br /><br />2. Judy Garland (enough said!)<br /><br />3. The supporting cast includes some really great performances. Spring Byington as Lily's mother is truely wonderful, as is Fay Bainter (the mother of the director - John Thornway (Van Heflin)). The standout supporting performance though goes to character actress Connie Gilchrist as Frankie, a one time actress turned theater custodian.<br /><br />Worth a watch for sure. One of those movies that are designed to make you feel better about the world and your dreams.\r\n0\tI'm an incorrigible skeptic and agnostic and was thus expecting to enjoy this film. After watching it, however, I honestly believe that I could have made a better documentary myself. Its arguments appear to have only four spurious sources (despite his being listed in the credits on IMDb I didn't see Richard Dawkins anywhere), it's edited together crudely with laughably amateurish computer effects, and it doesn't make even the slightest attempt to appear impartial. The narration is pervaded throughout with a sneering, almost adolescent anti-Christian sentiment, ruining any possibility that the film might actually change someone's mind as opposed to just preaching to the choir (i.e. me). Though there is some interesting discussion of the historicity of Jesus, the movie hits an unbearable snag when it begins to dwell heavily on the Christian school which the director attended as a child, an institution which apparently scarred him badly psychologically as it obsesses him to this day.<br /><br />Though TGWWT obviously had a low budget, there was still an opportunity here to make an intelligent commentary on the highly questionable roots of Christianity. There's certainly a dearth of skeptically-minded religious documentaries on the market, and this film could have helped fill the void. Instead, the director chose to insult our intelligence with this piece of garbage, which in the end appears to be some sort of therapeutic exercise for him. It's too bad that his Christian upbringing traumatized him, but he needn't subject an audience to his coping mechanism.\r\n1\t\"Streisand fans only familiar with her work from the FUNNY GIRL film onwards need to see this show to see what a brilliant performer Streisand WAS - BEFORE she achieved her goal of becoming a Movie Star. There had never been a female singer quite like her ever before, and there never would be again (sorry, Celine - only in your dreams!), but never again would Streisand sing with the vibrancy, energy, and, above all, the ENTHUSIASM and VULNERABILITY with which she performs here - by the time she gets to that Central Park concert only 2 or 3 years later, she'd been filming FUNNY GIRL in Hollywood and her performing style has become less spontaneous and more reserved, more rehearsed (and, let's face it: more angry) - there's a wall between her and the audience. Live performing was never what she really enjoyed - she did it because she knew it was her ticket to Hollywood, and once she no longer had to do it she's done it as little as possible (and oh, that legendary stage fright provides such a good excuse!).<br /><br />Her vocals here and on her earlier Judy Garland Show appearance are incredible: Streisand could truly make an old song sound new again, and composers such as Richard Rodgers and Harold Arlen loved her for it. But by the 1970s Streisand was trying to be a \"\"rock\"\" singer, her albums pandering to the younger audiences, with over-wrought shrieking of songs that were unworthy of her effort or her voice. <br /><br />In the '80s she came back with that brilliant \"\"Broadway Album,\"\" but went on and on about what a struggle it was to get it done, how \"\"they\"\" told her not to do it, etc. Oh please - when has anyone told Streisand what to do? She could have been doing good stuff like that all along, bringing audiences UP to her level instead of stooping to what she thought the young public wanted. (The \"\"Back to Broadway\"\" sequel wasn't nearly as good, as Streisand seems to feel it necessary to improve on other composers' work: if he were alive at the time, would Richard Rodgers have even recognized his own \"\"Some Enchanted Evening\"\"? Rodgers, notorious for taking singers to task for playing around with his melodies, would undoubtedly have been after Streisand to sing what he'd written! She also blows Michael Crawford off the CD in their duet of \"\"Music of the Night\"\" - apparently reminding him just whose CD this is. Why does she insist on taking songs that are duets and singing them by herself, and songs that aren't duets and singing them as duets with someone else who she then goes on to diminish?)<br /><br />Supposedly Judy Garland took Streisand aside and advised her, \"\"Don't let them do to you what they did to me,\"\" advice Streisand wasted no time in heeding - despite her protestations to the contrary, surely it looks like it's always been her way or the highway. Just imagine - SHE told the CBS brass how her first TV special would be done - no guests, just HER.<br /><br />But nobody can argue with the results that are so evident here. Treat yourself to this brilliant musical phenomenon BEFORE she was a legend - you'll be absolutely amazed at the difference!<br /><br />PS - I watched this again last night (12/01) after not having seen it for many years - it was even BETTER than I remembered! The 1st Act begins with \"\"I'm Late\"\" and includes \"\"Make Believe\"\" and \"\"How Does the Wine Taste,\"\" and Barbra's homage to childhood, \"\"I'm Five\"\" - it climaxes as Streisand appears with full (and I mean FULL) orchestra to sing \"\"People\"\" - she wasn't bored with the song yet and although it's a somewhat shorter rendition it really soars - compare it to some of her later \"\"auto-pilot\"\" versions. The 2nd act (after Streisand's \"\"kooky\"\" schtick-patter, which hasn't changed much over the years) is the famous series of Depression songs set amidst the extravagance of Bergdorf-Goodman's.<br /><br />The 3rd Act is the stunner - call it \"\"Streisand, the Orchestra, and the Audience\"\" (although we never see the audience that supposedly witness this historic event). With her fear of audiences and dislike of such performing, this may have been the toughest part for her, but if so, to her credit it doesn't show. She tears through \"\"Lover Come Back to Me\"\" and the torchy \"\"When the Sun Comes Out\"\" (though I can't remember in which order!), the poignant \"\"Why Did I Choose You? (one of my all-time favorite Streisand performances) and offers a medley of FUNNY GIRL songs, including (of course) \"\"Don't Rain on My Parade\"\" and my favorite song from the score, \"\"The Music That Makes Me Dance\"\". Explaining that \"\"Fanny Brice sang a song like that in 1922, and it made her the toast of Broadway\"\", Streisand then sings \"\"My Man\"\", and it's almost a dress-rehearsal template for her later screen rendition in the FUNNY GIRL film (the main difference being that the black gown here is sleeveless - her film gown had long sleeves and against the black background all we saw were her hands and face), but the vocal here is more urgent and charged than her later film vocal. (Her performance of the song has everything to do with Streisand and nothing to do with Fanny Brice who, of course, never sang the song in such an all-out manner as Streisand does here or in the film - see THE GREAT ZIEGFIELD for a glimpse of Brice's more understated version.) The show ends with Streisand singing \"\"Happy Days Are Here Again\"\" over the credits.<br /><br />When it was over I said to the friend I was watching it with, \"\"She has NEVER, EVER, done anything better!\"\"<br /><br />And she was TWENTY-THREE YEARS OLD!\"\r\n0\t\"The first half of this version was the best I've seen (and I think I've seen every version of Jane Eyre ever made). The development of Jane's childhood and character were exceptional. Then, it was as though someone said \"\"Uh oh, this is running too long,\"\" and hacked the rest of the story to shreds. The major scenes, when included at all, are glossed over, combined, and put out of order in such a way that they completely change the storyline. There was so little transition or even scene development that it would be difficult for anyone not familiar with the story even to follow. The big disappointment was that the beginning opened so much hope, and then the end dashed it.\"\r\n1\t\"THE LADY FROM SHANGHAI is proof that the great genius Orson Welles could direct a \"\"mainstream\"\" movie if he wanted to. By comparison to his other, more artistic works, this film has only a moderate amount of craftiness, and almost no esoteric elements.<br /><br />The exception being, of course, the final scene in the hall of mirrors, widely agreed to be one of the greatest scenes in the history of film. It alone is worth the cost of a rental.<br /><br />The sweet surprise was the superb acting by the beautiful Rita Hayworth. Her acting during the beginning and middle of the film is so excellent, she made the other actors appear as caricatures instead of characters. Even the great Mr. Welles.\"\r\n1\t\"The movie \"\"MacArthur\"\" begins and ends at Gen. Douglas MacArthur's, Gregory Peck, Alma Mata the US Military Academy of West Point on the Hudson. We see a frail 82 year old Gen.MacArthur give the commencement speech to the graduating class of 1962 about what an honor it is to serve their country. The film then goes into an almost two hour long flashback on Gen. MacArthur's brilliant as well as controversial career that starts in the darkest hours of WWII on the besieged island of Corregidor in the Philippines in the early spring of 1942.<br /><br />Told to leave he island for Australia before the Japanese military invade it Gen. MacArthur for the very first time in his military career almost disobeys a direct order from his superior US President Franklin D. Roosevelt, Dan O'Herlihy. Feeling that he'll be deserting his men at their greatest hour of need MacArthur reluctantly, together with his wife and young son, did what he was told only to have it haunt him for the reminder of the war. It was that reason, his escape under fire from death or captivity by the Japanese, that drove Gen. MacArthur to use all his influence to get FDR two years later to launch a major invasion of the Philippians, instead of the island of Formosa, to back up his promise to both the Philippine people as well as the thousands of US POWS left behind. That he'll return and return with the might of the US Army & Navy to back up his pledge!<br /><br />In the two years up until the invasion of the Philippine Islands Gen. MacArther battered the Japanese forces in the South Pafific in a number of brilliantly conceived island hop battles that isolated and starved hundreds of thousands of Japanese troops into surrender. The General did that suffering far less US Military losses then any other allied commander in the War in the Pacific! <br /><br />It was in 1950/51 in the Korean War that Gen. MacArthur achieved his most brilliant victory as well as his worst military defeat. After outflanking the advancing North Korean Army in the brilliant and perfectly executed, with the invading US Marines suffering less then 100 casualties, back door or left hook invasion of Inchon Gen. MacArther feeling invincible sent the US/UN forces under his command to the very border, along the Yalu River, of Communist Red China. Told by his subordinates that he's facing the threat of a massive ground attack by Communist Chinese troops Gen. MacArthur pressed on anyway until that attack did materialized cutting the US & UN forces to ribbons. The unstoppable wave after wave of attacking Red Chinese troops forced the US/UN forces to retreat in the \"\"Big Bug Out\"\" of 1950 with their very lives, leaving all their equipment behind, across the North Korean border even abandoning the South Korean capital city of Seoul! This turned out to be one of the biggest military disaster in US history with the US forces losing a record, in the Korean War, 1,000 lives on the very first day-Nov. 29/30 1950-of the Communist Chinese invasion!<br /><br />Shocked and humiliated in what he allowed, due mostly to his own arrogance, to happened MacArthur went on the offensive not against the advancing Communist Chinese and Noth Koreans forces but his own Commander and Chief Pres. Harry S. Truman, Ed Flanders, in him not having the spin or guts to do what has to be done: Launch a full scale invasion of Communist China with nuclear weapons if necessary to prevent its troops from overrunning the Korean Peninsula! For Pres. Truman who had taken just about enough garbage from Gen. MacArthur in him running off his mouth in public in how he was mishandling the war in not going all out, like MacArthur wanted him to, against the Red Chinese this was the last straw! On April 11, 1951 Pres. Truman unceremoniously relived Gen. MacArthur from his command as Supreme Commander of the US/UN forces in Korea! Pres. Truman's brave but very unpopular decision also, by not going along with MacArthur's total war strategy, prevented a Third World War from breaking out with the Soviet Union-Communist China's ally- who at the time-like the US-had the Atomic Bomb! Pres. Truman''s controversial decision to dump the very popular Gen. MacArthur also cost him his re-election in 1952 with his polls numbers so low-in the mid 20's- that he withdrew-in March of that year- from the US Presidential Campaign!<br /><br />In was Gen. MacArthur's misfortune to be around when the political and military climates in the world were changing in how to conduct future wars. With the horrors of a nuclear war now, in 1950/51, a reality it would have been national suicide to go all out, like Gen. MacArthur wanted to, against the Red Chinese with it very possibly touching off a nuclear holocaust that would engulf not only the US USSR & Red China but the entire world! It was that important reality of future war that Gen. MacArthur was never taught, since the A and H Bomb weren't yet invented, in West Point.<br /><br />Back to 1962 we can now see that Gen. MacArthur, after finishing his commencement speech at West Point, had become both an older and wiser soldier as well as , since his retirement from the US Military, elder statesman in his feeling about war and the utter futility of it. One thing that Gen. MacArthur was taught at an early age, from his Civil War General dad Douglas MacArthur Sr, that stuck to him all his life was that to a soldier like himself war should be the very last-not first-resort in settling issues between nations. In that it's the soldiers who have to fight and die in it. It took a lifetime, with the advent of the nuclear age, for Gen. MacArthur to finally realize just how right and wise his dad a Congressional Medal of Honor winner, like himself, really was!\"\r\n0\t\"I must admit I do not hold much of New Age mumbo jumbo. When people \"\"exchange energy\"\" I always wonder how much kJ is actually exchanged and how it may contribute to solving the global warming problem. When energy \"\"is enforced\"\" I always wonder how they managed to violate the laws of entropy and still are without Nobel prizes. When people feel how well instinct enables them to flawlessly navigate through the complexities of life I wonder how they fail to do a simple thing like finding the train station.<br /><br />But then again, this is not the first movie with plot holes and most of them I find perfectly acceptable and entertaining. If this were the case with \"\"The Celestine Prophecy\"\" I wouldn't burn this movie down, but unfortunately it isn't. Every actor seems to be bored out of his head and unable to grasp what he are actually supposed to be doing on location. This results in many \"\"Ah-s\"\" and \"\"Oh-s\"\", like I tend to do when talking about quantum physics with somebody who actually knows what he is talking about and pretend to understand.<br /><br />The direction is uninspired as well. You might expect something more from the guy who did \"\"What dreams may come\"\", but hey, I supposed he got well paid for the job and adopted the attitude of a New York taxi driver: \"\"It's your money, buddy..\"\" The only one who seems to be having fun is all-time bad guy Jürgen Prochnow. Not only does he have a job, he is one of the few actors in this movie who may have a few wise cracks at this eternal and terribly boring New Age chatter.<br /><br />This movie is much like one of these dinner dates when you find out that your date is actually a horrible bore who seems to be unable to shut up. At one moment in time it seems the words turn into small ping pong balls that are thrown to your head incessantly until it hurts.<br /><br />If you want to have a good time and have to choose between this movie and sticking safety pins in your eyelids, take my advise: choose the latter.\"\r\n0\t\"\"\"Ally McBeal\"\" was a decent enough show, but it was very overrated. The characters become boring after a while and the jokes begin to fall short.<br /><br />I think it chose an appropriate point in time to leave - it was starting to outstay its welcome.\"\r\n0\t\"Let's face it; some lame kid who dies and has his soul transfered into a scarecrow. Das no gonna happen neva! OMFG This stupid loser kid who can't stand up for himself gets his ass handed to him by some drunk bastard screwing his mom. Right as he dies, he looks up at the scarecrow and he let's his spirit go into the scarecrow. The drunk guy covered up his death by making it seem suicidal and thought he had gotten away with it. We later see he is tossed out of the trailer and later earns another encounter with the scarecrow. They had a brief encounter which includes the drunk calling him a loser and the scarecrow rebounding with \"\"Takes one to know one, loser!\"\" The scarecrow flips off the building, calls him \"\"daddy-o\"\", and then beheads the poor man. We can see how this awesome movie unfolds from that. He goes on to kill many people, afterward. He mainly kills the people who gave him a hard time in rl and goes off to kill some random ass people, just for some laughs. No laughing here. He adds a punchline to every kill, too. Every time he killed someone, he would do some karate flips and finish it all off with one of his signature punchlines. In the case of someone who was hard of hearing, he would say \"\"Here, have an EAR of corn!\"\" then shove it up their ass. OR we can actually take an example from the movie! He just got done killing a cop and was on his way to killing the only person who ever stood up for him. Her father, the sheriff, yelled to the madman to stop, and he said \"\"Hey, stay awhile!\"\" and threw a dagger threw his chest and stuck him onto some tree. In the end of the movie, he killed two guys and threw in the punchline \"\"Gotta split!\"\" and killed two guys by shoving a scythe into their heads. Wowzors, this movie made me want to cream my pants so bad. Maybe next time this guy makes a movie, it won't be gay.\"\r\n1\tWow, I loved this film. It may not have had the funding and advertising that the latest hollywood blockbusters get but it packs twice the emotional punch. The tale revolves around this one family from Utah and it's the connections between the people in the family that provide the film with its punch. The main lead (Giovanni Ribisi) plays his part very well, at no time does he leave you to believe that he's acting all his feelings. It's his brother (Elias Koteas) who stole the show for me though. When the two were in scenes together they bounded their lines off of each other, giving fantastic performances. Great cast, great film.\r\n1\tMy discovery of the cinema of Jan Svankmajer opened My eyes to a whole tradition of Czech animation, of which Jirí Trnka was a pioneer. His Ruka is one of the finest, most technically-impressive animated movies I've ever seen.<br /><br />A potter wakes up and waters his plant. Then he goes about making a pot. But in comes the huge hand which crashes the pot and demands that the potter make a statue of itself. He casts the hand out, but soon it returns and imprisons him in a bird cage where he's forced to sculpt a stone hand. He sets about it, fainting from exhaustion, but eventually completes the task.<br /><br />In a marvellous sequence of metacinema, the potter uses a candle to burn his visible puppet strings, which keep him in thrall, and he escapes back home. He shuts himself in and is accidentally killed by his own beloved plant when it falls on his head.<br /><br />This movie doesn't hide the fact it's pure animation, unlike modern movies that strive to be realistic (why?). The hand, for instance, is clearly someone's hand in a glove. Everything else is clay. Strings are visible and are part of the narrative, making it a precursor of the movie Strings. The atmosphere is eerie: that hand going after the little potter managed to instill more dread in me than many horror movies combined.<br /><br />The movie is obvious but it avoids being totally manipulative for its simplicity. it's a fable about artistic freedom and tyranny which can't help winning the heart and mind of anyone who holds freedom as a natural right.\r\n0\tThe concept was ok but hardly original. The acting was plastic. But the real spoiler was that there was only one joke and a grubby one at that. This is a film for fourteen year olds who have been let out on their own for the first time. Don't dare to watch it with your kids.\r\n1\tNo, not really, but this is a very good film indeed, and is sadly a forgotten gem. Black and white suits the film.<br /><br />Straight forward formula, a guy had the plague and the authorities have to track down everyone he came in contact with before they die.<br /><br />Very well directed, and the acting is great. Richard Widmark as the male lead is good but is completely over shadowed in the acting stakes by Paul Douglas as the police captain, and Jack Palance (never better than this) and Zero Mostel as the baddies. Sadly Palance went on to play similar characters in some really second rate gangster or war movies.\r\n0\t\"College student Alex Gardner (Nicholas Celozzi) is plagued by nightmares of a cellar-dwelling ghoul at Alcatraz. He dreams of cutting off his own hand, spitting up a worm, a ghoul ripping open his chest and being roasted over an open fire. After his friends see him levitating \"\"6 feet\"\" over his bed, a helpful, occult-obsessed teacher (Donna Denton) suggests that they sneak into Alcatraz to face his fears. Of course they go in the middle of the night when no one is around to help when things get out of hand!<br /><br />The group become stranded, Alex's brother Richard (Tom Reilly) becomes possessed and starts killing everyone. Toni Basil of \"\"Mickey\"\" fame shows up as the helpful ghost of Sammy Mitchell, lead singer of the group \"\"Bodybag\"\". She teaches Alex how to levitate out of his body and does a rock music dance intercut with repeat nightmare footage to pad out the running time. All of the victims show up as wisecracking ghosts a la the Griffin Dunne character in AN AMERICAN WEREWOLF IN LONDON. The script is full of plot holes, cheesy dialogue and lame attempts at comedy. Good FX work and cool opening credits (both by Ernest D. Farino) are the only things gaining any merit. Basil and Devo (\"\"Whip It\"\") do some songs on the soundtrack.<br /><br />Score: 2 out of 10\"\r\n0\tOkay the promos promised a comedy and people(few) went to watch it Being the first release of 2006 is not a bad thing, or for that matter of any year, because the first and last films mostly flop except GHAJINI and some more<br /><br />Okay coming to JAWANI DIWANI<br /><br />Review in short The film is about Emraan Hashmi doing his usual stuff sadly it's annoying this time after repetitions It has an irritating Hrishita Bhatt and a flop Celina Jaitley<br /><br />Cringeworthy dialogues, comedy scenes and badly handled drama and lots of loopholes<br /><br />Direction is bad Emraan Hashmi is annoying here, luckily now he is coming of age But post FOOTPATH and MURDER and some decent work in some more films the actor in him took a backseat and directors focused on his kisses and womaniser image which sadly lost it's touch after repetitions Hrishita and Celina are bad Mahesh is horrible\r\n0\t\"I guess I only have myself to blame for the gigantic disillusion that is \"\"Entrails of a Virgin\"\". You already know not to expect a cinematic masterpiece when you see a juicy and proudly promoted title like this and the first impression only gets extra confirmed when noticing the film is a mid-80's production from Japan. Now, there are quite a lot of demented and sick filmmakers active in Japan, but Kazuo Komizu surpasses them all with his thoroughly depraved and sickening trilogy revolving on nothing but aggressive sex and the sadistic abuse of young girls. Not even attempting to tell a story, \"\"Entrails of a Virgin\"\" simply presents a hodgepodge of UN-arousing semi-pornographic sex and truly poor gore-effects that wouldn't even please the most undemanding fan of cheesy 80's horror. Images of a bunch of photographers and their fashion models are inexplicably intercut with scenes of a filthy pervert having crude sex with a seemly under-aged girl. He dumps her not even a minute after climaxing (typical) and she begs him to stay, even if she has to share him with other women. I don't get it. Is this supposed to represent a general male fantasy? Because it's really clichéd and wrongful. Anyways, back to the bunch of horny photographers and docile models. Surprised by upcoming fog on their way home, the group entrenches themselves in an abandoned country house where they have more appalling sex and eventually fall victim to a ridiculous sex-demon who kills them all. The acting performances are amateurish, the dialogs inane and primitive and Komizu's direction is weak and uninspired. I can tolerate all that, including the woman-unfriendly portrayal of sex, but I came too close to turning the film off during the indescribably mean-spirited wrestling sequence. One of the males brutally hits, kicks and throws around one of the girls and calls her a filthy whore until she literally pees her panties and cries with agony. This sequence is, in my humble opinion, the absolute low-point of Asian exploitation cinema. One to avoid and maybe even boycott.\"\r\n1\t\"Peter M. Cohen has a winner satire on the mating game, twisted around and turned inside out. The critical bashing of the movie in mainstream media publications as \"\"offensive\"\" and \"\"raunchy\"\" only serves to underscore its intensity as a refreshing and concentrated dissection of people's sexual pursuits and passions. It is in the tradition of what I call \"\"reality based\"\" satire following in the footsteps of \"\"In The Company of Men,\"\" \"\"Chasing Amy\"\", \"\"Your Friends and Neighbors\"\" and \"\"Two Girls and a Guy\"\". Cohen's dialogue is hilarious and I was continually intrigued by how perfectly he captured the real pace of today's conversations. Brian Van Holt, Zorie Barber, and Jonathan Abrahams are three distinct, unrelenting sex-obsessed predators who along with the foil of their recently married buddy (superbly played by Judah Domke) are turned upside down on their own terms by a female predator (Amanda Peet). Underneath the satiric surface lurks a romantic comedy far more satisfying than most sugar-coated studio products.\"\r\n0\tI wish I could give this movie a zero. Cheesy effects and acting. The only reason to see this movie is so you can see how bad it is. Lets start with the kid who plays Brian. What a geek! I couldn't believe the mullet! Then there was the talking to himself. I guess they couldn't just have the movie be silent, but still. Of course they had to have him skinny-dipping too, not something I wanted to see. But Jared gave a great performance, compared to the special effects department. Everything from the bear to the crash was something I could do myself, and better. I seriously doubt that Gary Paulsen had anything to do with the production, seeing as the movie was not even called Hatchet. Finally, I do not think the writer had ever read the book, seeing as nothing was the same. I think the book was great, but this movie stunk like a smelly goat!\r\n1\tThe title says it all.<br /><br />I'm not a film critic nor will I act like the rest of the snobbish people commenting on this movie.<br /><br />Obviously this movie didn't have a multi-million dollar budget, but the plot was very well done, the acting was awesome and the cinematography was great! It looked like you all had a lot of fun making this movie! I voted 9 out of 10 as the sound was strong on only one channel instead of both, but I imagine this might have been an error in the recording of the DVD.<br /><br />I'll definitely be checking out other movies produced by Brain Damage Films! <br /><br />Dylan O'Leary, cast and crew, I thank you!\r\n0\t\"Hood of the Living Dead and all of the other movies these guys directed look like they got together and filmed this with their buddies who have zero talent one afternoon when they were bored (lines are completely unrehearsed and unconvincing). I find that 95% of amateur movies and 90% of home video footage is better than this film (although the similarities between them warrant the comparison). \"\"Hey lets see if anyone is dumb enough to buy our movies!\"\". Hopefully nobody ELSE wasn't. My apologies to those involved in the flic as this review is somewhat harsh but i was the dope who read your fake reviews and purchased the movie.\"\r\n0\t\"This is one of those films that I remember being in the can for years before anything happening w/it. I don't think it's terrible, but it's not really good either. Alec Baldwin was pretty good, but the plot is it kind of flimsy at best. The cast is pretty good in what they're given, but again you are only as good as the script. Baldwin directing this although I could have sworn he didn't direct all of it, I thought I read somewhere or lots of re-shoots wasn't bad but he definitely has some potential in there. Although his work on \"\"30 Rock\"\" is nothing short of genius & should keep him busy for a little while longer. I just hope the show bows out gracefully a la Seinfeld, but maybe not even that long. 9 years it went. So if you want to see a film that you won't get much from, but won't really hate either well this is for you. I can't remember the last time a film had been wrapped so long before finally being released & only on DVD at that. It was nice to see Alec Baldwin & Anthony Hopkins again together since their excellent yet not much people have seen \"\"The Edge.\"\" Now pick up that excellent film for some real entertainment.\"\r\n0\tPeter Fonda is so intentionally enervated as an actor that his lachrymose line-readings cancel out any irony or humor in the dialogue. He trades sassy barbs and non-witty repartee with Brooke Shields as if he were a wooden block with receding hair; even his smaller touches (like fingering a non-existent mustache on his grizzled face) don't reveal a character so much as an unsure actor being directed by himself, an unsure filmmaker. In the Southwest circa 1950, a poor gambler (not above a little cheating) wins an orphaned, would-be teen Lolita in a botched poker game; after getting hold of a treasure map promising gold in the Grand Canyon, the bickering twosome become prospectors. Some lovely vistas, and an odd but interesting cameo by Henry Fonda as a grizzled canyon man, are the sole compensations in fatigued comedy-drama, with the two leads being trailed by cartoonish killers who will stop at nothing until they get their hands on that map. Shields is very pretty, but--although the camera loves her pouty, glossy beauty--she has no screen presence (and her tinny voice has no range whatsoever); every time she opens her mouth, one is inclined to either cringe or duck. *1/2 from ****\r\n0\t\"Repetitive music, annoying narration, terrible cinematography effects. Half of the plot seemed centered around shock value and the other half seemed to be focused on appeasing the type of crowd that would nag at people to start a fight.<br /><br />One of the best scenes was in the \"\"deleted scenes\"\" section, the one where she's in the principle's office with her mom. I don't understand why they'd cut that. The movie seemed desperate to make a point about anything it could and Domino talking about sororities would have been a highlight of the movie.<br /><br />Ridiculous camera work is reminiscent of MTV, and completely not needed or helpful to a movie. Speeding the film up just to jump past a lot of things and rotating the camera around something repeatedly got old the first time it was used. It's like the directors are wanting to use up all this extra footage they didn't want to throw away.<br /><br />Another movie with Jerry Springer in it? That should've told me not to watch it from the preview.<br /><br />A popular movie for the \"\"in\"\" crowd.\"\r\n0\tWhat a waste! This movie could have really been something decent, but the writing, in particular, is crap, and the main characters are rather shallow and uninteresting. Mike Meyers was good, and the historical recreation of late 70s decadence was well crafted, but overall, this movie was a big waste of time. Instead, the movie to watch, that deals with similar themes and the same basic time frame, is the great BOOGIE NIGHTS.\r\n0\tI watched 'Envy' two nights ago, on DVD, at a friends house. The premise of this film is quite promising, Jack Black and Ben Stiller in a comedy with a lot of potential, but it completely fails to deliver. I watched it with about five friends and no-one laughed for the entire film. The jokes (which are few and far between) are NOT funny in any way... the story line is crap, and they never answer the question... WHERE DOES THE SH*T GO? Of course the answer to that is NO ONE CARES. This film lacks any sort of comedy value, and as a few other users have said the only thing that makes it even almost worth watching is Christopher Walken as the J-man. None of the characters are developed, the plots so thin it's nearly transparent - and is that song throughout the film supposed to be funny??\r\n1\tEnormous fun for both adults and children, this film works on numerous levels: there is everything from car crashes and cake in the face to some very good (yet subtle) jokes for adults.<br /><br />Glenn Close is at her sublimely evil best as Cruella (`call me Ella') De Ville.<br /><br />After three years in Dr. Pavlov's Behaviour Modification Clinic she is cured of her desire for fur  even the puppy-skin fur she had so intensely desired. She even has all of her fur coats placed in the dungeon of the extraordinary castle she inhabits.<br /><br />But it wouldn't be a Dalmatian' movie without the subterfuge and machinations of Cruella and you know that something will change her behaviour modification. And now she needs one extra puppy (hence 102 Dalmatians) to complete her nefarious scheme this time round.<br /><br />Ioan Gruffudd is instantly appealing as the hero of the film that runs the `Second Chance' dog shelter. Though he was in `Titanic' and in last year's television version (as Pip) of `Great Expectations' I didn't recognize him; well, he was Fifth Officer Lowe' in `Titanic' and I didn't see `Great Expectations' so I am not terribly surprised.<br /><br />Gerard Depardieu does a delightful turn as the furrier-pawn of Cruella. He prances and postures in the most outlandish and outrageous of fur clothing you have ever seen  and does it well. His 'Wicked Witch of the West' homage is hilarious.<br /><br />Tim McInnerny is superb is Cruella's not-so-evil henchman  he was also Alonzo,' Cruella's butler, in `101 Dalmatians' and you may also recognize him from all of the `Black Adder' Brit-Coms. He plays his usual bumbling, good-hearted, somewhat dim-witted character to great effect.<br /><br />Oscars for costuming are generally given for the entirety of the costuming in a film. This is unfortunate as the clothing worn by Glenn Close is amazing  it is incredibly detailed (note her handcuffs when she is being released from the Behaviour Modification Clinic) and worthy of such an over-the-top character. Her clothing alone deserves at least an Oscar nomination.<br /><br />Animation holds a special place in my heart  but comparing this film to the original animated film is like comparing apples to orangutans: it can't be done. Suffice it to say that `102 Dalmatians' is even better than the film version of `101 Dalmatians' that came out in 1996. There is a lot to like here: from the sight gags, the dialogue, and the costumes to the casting - it is a good film for the whole family.\r\n0\t\"I don't know where to begin. Tara Reid needs to be stopped before she's put in another movie. Stephen Dorff looks like he got his character's motivation from Val Kilmer in \"\"Top Gun\"\". Slater sleepwalks through this dreck. The direction, editing, sound (do we really need a heavy-metal video in the middle of a gunfight?), costumes (bulletproof vests with muscles on them), and hey, there's no discernible plot either. It amazes me that no one attached to the project stopped and said, \"\"hey guys, this just doesn't make any sense, let's start over\"\". Hopefully Slater's career can rebound from this disaster.<br /><br />Hands down the worst film I've ever seen.\"\r\n1\tWhen I saw the elaborate DVD box for this and the dreadful Red Queen figurine, I felt certain I was in for a big disappointment, but surprise, surprise, I loved it. Convoluted nonsense of course and unforgivable that such a complicated denouement should be rushed to the point of barely being able to read the subtitles, let alone take in the ridiculous explanation. These quibbles apart, however, the film is a dream. Fabulous ladies in fabulous outfits in wonderful settings and the whole thing constantly on the move and accompanied by a wonderful Bruno Nicolai score. He may not be Morricone but in these lighter pieces he might as well be so. Really enjoyable with lots of colour, plenty of sexiness, some gory kills and minimal police interference. Super.\r\n1\tI, as a teenager really enjoyed this movie! Mary Kate and Ashley worked great together and everyone seemed so at ease. I thought the movie plot was very good and hope everyone else enjoys it to! Be sure and rent it!! Also they had some great soccer scenes for all those soccer players! :)\r\n1\t\"I'm biased towards any movie that paints a luxuriant picture of Italy - in my opinion the most romantic country in the world. Unfortunately the movie was rather short, unusually so for a period piece, and a little sparse on the cinematography aspect. However, the excellent story makes up for it. The four ladies embark on a much-needed relaxing vacation with problems on their minds. Over the course of the movie, they realize their problems and begin fixing them. They believe San Salvatore, the castle they stay in, has an enchanting effect on people. \"\"It's a tub of love,\"\" says Lottie Wilkins. You can watch their gradual change from dissatisfied to exuberant as the Italian seaside works its magic on them.<br /><br />All their problems and their solutions are plausible. The actresses were great. The background music seemed very appropriate for an romantic Italian locale. All in all, a 10/10 movie for me.\"\r\n0\tDirector Ron Atkins is certifiably insane. This ultra-low budget film chronicles a few days in the life of one Harry Russo (John Giancaspro, who also co-wrote), a nut-job who receives a Rubberneck doll from his bitch girlfriend. He starts to take orders from the doll to take massive amounts of drugs, rape and kill, not always in that order. What starts off as being a balls-to-the-wall exploitation film, well stays like that, but it gets VERY repetitive VERY fast. I'm leaning more toward the certifiably insane. It IS hard to forget once seen though. Kinda like if Tom Green ever did a horror film.<br /><br />My Grade:F <br /><br />Eye Candy: Laurie Farwell gets fully nude; Jasmin Putnam shows tits and bush <br /><br />ANTI-eye candy: seeing John completely naked repeatedly\r\n1\t\"I have to mention two failures for you to understand that this movie brilliantly succeeded where they failed: \"\"A Scanner Darkly\"\" and \"\"Immortel Ad Vitam\"\". If you were excited by the concepts of these two movies and felt woefully disappointed (like me), you will probably enjoy Renaissance. It immerses you into the world of a future Paris. It is not quite dystopian. They did the animation so well that I thought it was rotoscoped, but from what I can tell, it was not, it was merely motion capture. The facial expressions are amazing! Not since TRON have I seen a fantasy world so well displayed in an animation/live hybrid. The Black and White medium is used to slowly direct your attention to the subject of the scene; my favorite effect was what they did with headlight beams, watch for it. The director plays with your attention and confusion but you are satisfied eventually by finding the thread that he wants you to find. The overall effect is a harsh and gritty urban world filled with small surprises.<br /><br />The plot is secondary, but it isn't terrible. It is noir-ish. There is a backstory for most of the major characters giving them some depth. There is weather. There are \"\"sets\"\" so you can feel like you are in different places in Paris. There is some action, and even a car chase. I am going to have to see this one again to get everything. I also recommend a very large screen to view it as the \"\"sets\"\" are detailed and the credits are small.\"\r\n0\tI'm sorry to all the fans, but this is a useless movie. The acting is bad, even wooden, it over-hypes the fright-factor early on, and doesn't exactly work. I think there was supposed to be a twist at the end, but it just ended up being maddeningly confusing. What the hell? The dude who was killing everyone was one of the hunted? Try again.<br /><br />Its hardly original, and it isn't even particularly good as a straight slasher. And that's saying something.<br /><br />I think whoever did the castings, whoever wrote the script, and whoever thought of the concept should be mercilessly fired and deported.<br /><br />Don't watch this movie. If someone puts this on at a party, throw the disc out the window and put on a good horror movie, like Silence of the Lambs or The Shining.\r\n1\tI can't remember many films where a bumbling idiot of a hero was so funny throughout. Leslie Cheung is such the antithesis of a hero that he's too dense to be seduced by a gorgeous vampire... I had the good luck to see it on a big screen, and to find a video to watch again and again. 9/10\r\n0\tsomeone needed to make a car payment... this is truly awful... makes jean Claude's cyborg look like gone with the wind... this is an hour I wish I could sue to get back... luckily it produced severe somnolence... from which I fell asleep. how can actors of this caliber create this dog? I would rather spend the time watching algae grow on the side of a fish tank than partake of this wholly awful concoction of several genre. I now use the DVD as a coaster on my coffee table. $5.99 at walmart is far too much to spend on this movie... if you really have to have it, wait till they throw them out after they have carried them on the inventory for several years and are frustrated that they would not sell.<br /><br />please for the love of god let this movie die of obscurity.\r\n1\tA very good start. I was a bit surprised to find the machinery not quite so advanced: It should have been cruder, to match we saw in the original series. The cast is interesting, although the Vulkan lady comes across as a little too human. She needs to school on Spock who, after all, is the model for this race. Too bad they couldn't have picked Jeri Ryan. I like Ms. Park, the Korean(?)lady. The doctor has possibilities. Haven't sorted out the other males, except for the black guy. He's a really likeable. Bakula needs to find his niche--In QL his strong point was his sense of humor and his willingness to try anything. He is, of course, big and strong enough for the heroics. The heavies were OK, although I didn't like their make-up.\r\n1\t\"I haven't watched the movie yet, but can't wait to see it! It seems very interesting and inspirational. It was one of the most interesting trailers I've ever seen: the questions it posed really stopped me and made me think, the unique approach to the sport of boxing as a metaphor for the \"\"battle within\"\"... thank god somebody is hitting another angle with the boxing thing. This film looks so fresh and smart. And the actor is really hot. I especially enjoyed the short clip with the actor from the Rocky movies, really clever. I thought that the topic selected-overcoming adversities and childhood traumas-is timeless, and god knows a lot of people need it. Bring it on.\"\r\n1\t\"Two adventurous teenagers, best friends, take a trip to Thailand for one last experience before separating and going off to college. It seems like a fun time of touring an exotic land, until they meet an attractive stranger who seduces them into taking a trip to Hong Kong and puts drugs in their luggage. They get nabbed by the local police and find that justice in Asia is very different from justice in the U.S.<br /><br />This is the main story line for \"\"Brokedown Palace\"\" and it was a good one. The film does a decent job of portraying the arbitrary and corrupt justice systems of third world nations. Actually, the portrayal was rather mild, as the prison conditions are often far worse than depicted. It serves as a reminder that no matter how bad we think our justice system is, it is pristine by comparison to much of the rest of the world.<br /><br />Unfortunately, there were too many contrived situations in the film that hampered the story. The whole escape attempt was bogus fantasy. To think that friends would be able to smuggle money for a bribe into the prison in a padded bra, and not be discovered by the guards who were systematically checking everything brought in from visitors, assumes that either the guards or the viewers are utter blockheads.<br /><br />The story also fails to bring closure to the nagging question of how the drugs got in Alice's (Claire Danes) backpack. Did she actually agree to transport the drugs? We are left to guess. It was intriguing to be kept guessing about the girls' innocence throughout the film, but we finish the movie never really knowing if one or both of the girls might be guilty. Except for this considerable flaw, the ending was excellent and the results unexpected.<br /><br />The acting by Claire Danes and Kate Beckinsale was very solid and well done. Danes, who has been oversold and over hyped, actually arrived as an actor in this film. Though her portrayal was frequently immature (as was her character), she improved as the film progressed and the circumstances became more dire. Beckinsale, in contrast has been flying under the radar her whole brief career and shines as the goody-two-shoes who suddenly finds herself in prison. Her's was the best performance in the film.<br /><br />Bill Pullman was miscast as the lawyer. His wry and diffident style is an asset in films like \"\"While You Were Sleeping\"\", but as a lawyer in a third world country on a crusade to free two innocent girls from injustice, he had the wrong personality.<br /><br />The tourist's look at Thailand was interesting, but it didn't make me want to go there.<br /><br />Overall, an entertaining film made implausible in parts by the insertion of some ridiculous scenes. I gave it a 7/10.\"\r\n0\t\"I must admit that I have been a sucker for Samurai flicks since I can remember. I used to watch rather indiscriminate, be it \"\"elitist\"\" works like The Seven Samurai or the bloody comic-book variation like Lone Wolf and Cub. I also liked US-/Japanese \"\"Crossovers\"\" like The Bushido Blade. And of course everything containing Sonny Chiba and Hiroyuki Sanada. And I've virtually watched every Samurai at least twice. But not Kabuto.<br /><br />In 1993 I first watched Kabuto on video, that even Samurai films can be boring. In the beginning I was looking forward to Mayeda reaching Europe and the confrontations that would come from that but by the time he actually reached Spain, I really didn't care so much for the movie anymore.<br /><br />It wouldn't do the film justice to call it \"\"bad\"\". Technically it's a clean entry into the genre. But there is simply never quiet enough. Sho Kosugi has limited skills as both director and actor and has only a fraction of above mentioned Japanese actors charisma. And speaking of Sho Kosugis son Kane, who appears in almost all Sho Kosugi films as Shos son: he has inherited little-to-none of his fathers limited acting skills. Adding to the minus-points is the absence of the blood and gore that until then was a trademark of all Samurai film. This was obviously intended for a younger US- / European audience.<br /><br />Lets just say that it's a so-so film for the average historic-action-adventure fan but a bore for hardened fans of Samurai cinema. Fans who are into the \"\"Samurai meets \"\"-genre, should rather go and watch Red Sun (1971), featuring Charles Bronson as cowboy who has to team up with Samurai Toshiro Mifume to retrieve a samurai sword from bad-guy Alan Delon. It pretty much how to do it right and where Kabuto went wrong.<br /><br />So, even though the film is a mere 100 minutes, it seems like a much longer film.<br /><br />The reason I gave this a honourable 4/10 points instead of 3/10: First time I saw this film, I saw it in the German synchronized version. In this version, Kosugi can actually be understood. I must admit that his 'Engrish' is at times funny but gets tiresome after about 30 minutes.\"\r\n1\tWith a relatively small budget for an animated film of only $60 million the people at Fox Animation and Blue Sky Studios have done an incredible job.<br /><br />They have combined state-of-the-art digital animation, the perfectly cast voice talents of Ray Romano, John Leguizamo and Dennis Leary (among many others) to create a highly entertaining, family film with a strong message about cooperation, friendship and caring for your fellow herd members. And how sometimes it takes many different creatures to make up a herd.<br /><br />While watching this film I got a strong political message about getting along with the people that share your space -- maybe it should be required viewing for all world leaders!<br /><br />David Newman -- yet another member of the Newman family of Hollywood composers -- provides a superb score that is not intrusive yet serves to move the action along and, at times, is positively toe tapping.<br /><br />The overall look of the film is incredible; an intensely coloured, strangely believable fantasyland of snow, geysers, mud, rocks and ice. The individual characters were delightfully believable too, with the facial expressions of Ray Romano's Manfred' being a particular treat.<br /><br />The entire sequence with the DoDos will leave no doubt as to where the expression `Dumb as a DoDo comes from.'<br /><br />This is a good family film that keeps the things that could alarm or frighten children pretty much sanitized -- but real nonetheless.<br /><br />It would be a great movie to see in the theater and to buy for home.\r\n0\t\"This film (along with Rinne) are minor gems amongst the retread homage pics that have passed for horror movies so far at the 8FTDF \"\"HorrorFest.\"\" And, yes, that's faint praise indeed. 'Cause there's not much worse in filmdom than would-be auteurs who think atmosphere is a substitute for a coherent plot.<br /><br />And that's all you get with The Abandoned. This is a film that was made almost entirely in the directors head. Sure, it would have been nice if he'd transfered it to film, but this happened instead. It's a very pretty film with a few genuine scares, but the last reel is strictly for the latte slurping cineaste crowd.\"\r\n0\t\"What was with all the Turkish actors? No offense but I thought it was all for nothing for all these actors. The film had no script to test any actors acting skill or ability. It demanded next to nothing I bought this film to see Michael Madsen. He is one of my favorite actors but this film was another failure for him. The script was so bad. Their was just nothing to sink your teeth into and all the characters were two dimensional. Madsen tried to act like a hard ass but the script and direction didn't even allow him to do enough with his character to make it more interesting or 3 dimensional.<br /><br />Even the sound effects of the gunfight at the beginning of the film sounded like the noise of paint ball guns when they are fired in a skirmish. It was really weird and they didn't sound like real guns. A video game had better sound effects than this film. There was also a really annoying bloke at the beginning of the film who was a member of the robbery gang. He had this American whining voice like a girl shouting lines like \"\"Lets get the F#$k out of here\"\" and What are we going to do man\"\". He sounded like a girl. As a positive It was funny to watch and it made me laugh too. For a few seconds. Whoo Hoo ! Dumb Film. Poor Madsen. He will bounce back...\"\r\n1\t\"\"\"FULL HOUSE,\"\" in my opinion, is an absolute ABC classic! I'm not sure if I've never seen every episode, but I still enjoyed it. One of my favorite episodes is where Jesse (John Stamos) and Rebecca (Lori Loughlin) get married. If you want to know how what made it so funny, you'd have to have seen it for yourself. It was a two-parter, so you'd have to have seen both parts. Another one of my favorite episodes is where Jesse, Stephanie (Jodie Sweetin), and Michelle (Mary Kate & Ashley Olsen) get locked in a gas station on Michelle's birthday. You'd also have to have seen it for yourself if you want to know how and why that happened. I have many other ones that I like, too. Everyone always gave a good performance, the production design was spectacular, the costumes were well-designed, and the writing was always very strong. In conclusion, even though it can be seen in syndication now, I strongly recommend you catch it just in case it goes off the air for good.\"\r\n0\t\"This film was terrible. I have given it the high score of 2 as I have seen worse, but very few.<br /><br />From the clichéd start of having the end of the film at the start and going back to the start at the end this film used everything in the box of tricks used in film making just for the sake of it, like a kid with too many toys. There was the endless, boring repetitive narration, slow motion, freeze frame, flashbacks and merged images etc - none of which made a dull film any better.<br /><br />It is called \"\"16 years of alcohol\"\", but there was little drinking or drunkeness and no depiction of withdrawal with the film jumping about all over the place with no coherent sense. The story was badly written and extremely pretentious and the direction was equally poor and it is a shame that people have put up further money for more films by Mr Jobson, previously know for being in a rubbish group and on TV making as much sense as this film does.<br /><br />I found it a major struggle to see this to the end but in the hope of it getting better I carried on to the bitter but it really was a waste of time and I would have been better off not bothering.\"\r\n1\t\"Brokedown Palace is the story of two best friends, Alice and Darlene, who go on a spontaneous trip to Thailand and wind up in prison after being caught with planted drugs in their luggage. In this way, the movie had the potential to turn into a serious and moving film, such as \"\"Return to Paradise\"\", but instead, the movie chose to focus little on the girls' situation and more on their friendship.<br /><br />Claire Danes and Kate Beckinsale both turn in excellent performances, and the movie is much more about the interplay between them - the suspicion, the jealousy, the questioning and testing of their friendship and ultimately the sacrifices made in the name of friendship. This movie chooses not to delve too deeply into politics or even into the harshness of prison life (which is a bit glossed over), and focuses more on these friendship issues.<br /><br />There were some plot holes here, and some parts that just didn't seem believable or realistic. We didn't feel the real fear or hopelessness of their situation as well as we might have. And we get very little feeling of life outside the prison walls, with Bill Pullman playing the supposedly sleazy lawyer who actually turns out to have a heart of gold. In short, this should, by all rights, have been a much darker movie than it was.<br /><br />But overall, I enjoyed it. The acting was good, the soundtrack was perfect, and the storyline had enough twists and turns to stay interesting. Worth seeing.\"\r\n1\t... but watch Mary McDonnell's performance closely. Her body language. Her fine body movements. Her subtle, but powerfully effective, reactions. This is an accomplished artist at the top of her craft. And the rest of the cast were pretty damned good, too! ;o)<br /><br />This is perhaps the 3rd or 4th viewing for me, and I see more in it each time. What /IS/ this world coming to, anyway? -R.\r\n1\t\"If your idea of a thriller is car chases, explosions, and dozens of people being mowed down by gunfire, then \"\"House of Games\"\" is definitely not the movie for you. If you like and appreciate psychological drama and suspense, then, by all means, see it.<br /><br />\"\"House of Games\"\" tells the story of an esteemed psychologist and writer, Dr. Margaret Ford (Lindsay Crouse), who tries to help a patient and gets involved in the shadowy world of con men led by the charismatic Mike (Joe Mantegna). To say anything more about the plot would ruin the suspense. Frankly, I find it hard to believe anyone who says they saw the twists coming. Just like a clever con artist, this movie draws you into its web and lulls your vigilance.<br /><br />The story is taut and well-crafted, the dialogue smart and laconic, the acting uniformly good (Mantegna is superbly charismatic). Some have complained that Dr. Ford is not a very sympathetic character, and wondered why Mamet would make Lindsay Crouse look so physically unattractive. But Dr. Ford is supposed to be cold and aloof; moreover, her homeliness is in a way essential to the plot (at one point, I believe that an injury to her sexual self-esteem is a key part of her motivation ... I'll say no more).<br /><br />\"\"House of Games\"\" is a dark look at the underside of human nature that concludes on a note of discomforting ambiguity. It will hold your attention every second while you are watching, and stay with you for a long time afterwards.\"\r\n0\tI saw this movie the first time at about twelve o'clock on a Saturday evening. It really is the perfect time for this one. I have never, EVER seen a movie that was actually more predictable and drenched with stereotypes. If you want to see a thrilling action movie, don't watch it because you might lose the will to live halfway through. However, if you want a good laugh, please watch it! I even bought the Chuck Norris 3DVD collection thanks to my enjoyable Saturday night. What especially struck me is that évery scene that would be expensive to make was copy-pasted from a Discovery documentary or an old TV-special on the US Army. Furthermore I was amazed by the fact that they didn't put the slightest effort in making the production look real. Afghanistan is, as far as I can remember, nowhere near any sea and yet with a single click Deke escapes from the terrorists sand-castle with his jet-pack and is taken away by a submarine (probably Discovery). Later on in the movie, Deke throws an Islam terrorist against the wall. In the slow motion scene you can beautifully see the long hairs of the Korean stuntman flap in the air when smashed against the wall. Gotta love it. I recommend you watch it with some friends and a good amount of beer though, only then you'll understand why I've been mad enough to spend 6,99 euro's on the box.\r\n0\t\"Anemic comedy-drama, an unhappy, seemingly rushed affair featuring Cher as a woebegone housewife who slowly makes friends with the hit-man who's been hired to kill her by her husband. Chazz Palminteri, as the talkative hired gun, adapted the screenplay from his own play, with stagy set-ups and back-and-forth dialogue that quickly tires the eye and ear. An air of gloom hangs over the entire project, and director Paul Mazursky can't get Cher out of her perpetual funk (she's listless). Despite all the top talent (including Robert De Niro as one of the producers), \"\"Faithful\"\" is fraudulent, with no substance to the story and characters who rarely come to life. *1/2 from ****\"\r\n0\t\"Every once in a while , someone out of the blue looks at me a little sideways and asks \"\"What's with SNITCH'D\"\" ? I know immediately they have a case of barely-hidden amusement + horror. You see, I was the cinematographer on the film.<br /><br />Let me clarify some points regarding this \"\"interesting life experience\"\".<br /><br />Originally, SNITCH'D was called ONE HARD HIT. I met James Cahill in July of 1999, a day after I wrapped TRIANGLE SQUARE, a great little 35mm feature that like so many indie features of the era never got distribution despite festival accolades...it fell eternal victim to the fine print of SAG's notorious Experimental Feature contract. But I digress...<br /><br />I though I was on a roll, and when James asked me to shoot his little gangster flick in 16mm with a shooting budget of about $25,000, not wanting to break pace, I took it. After all, CLERKS, EL MARIACHI... I too believed the myth back then.<br /><br />Let's just chalk it up as \"\"film school\"\" for many involved, myself included. SNITCH'D was shot over two weeks in August, 1999, in Aliso Viejo and Santa Ana, CA. Cahill taught Drama at a High School in the latter city ( yes, he is a Drama and English teacher...consider THAT while watching the film, or even observing the use of apostrophe in title ), hence the locations and cast.<br /><br />Of note in his cast were the only known dramatic appearance of L.A.'s Channel 2 Morning News weather girl Vera Jimenez, and of greater impact, the debut of Eva Longoria, who had just arrived in Hollywood and was as eager as I to get a film under her belt. I must say her professional dedication, focus and \"\"let's do this\"\" attitude kept me inspired and was a foreshadow of her stardom-yet-to-come. <br /><br />SNITCH'D suffered from poor optics, few lights or electricity, several boom operators du jour, and delivery of an uncorrected offline for duplication. None of that overshadows the actual content, which speaks for itself.<br /><br />Anyway, by 2003, the film was sold to distributors ( at a net loss, I understand ) who inexplicably had no photos of Eva on the box ( by then she was a rising, working name ) but who did manage to obtain a clear photo of what appears to be an authentic Latino gangster to lend credibility to SNITCH'D. Since Cahill's other passion is antiquarian book dealing, it appears to confirm he believes you can, in fact, judge a book by it's cover... as so many have picked up this DVD based on it's sleeve. ----------------- One year later, Eva, now on a soap, and I met James for one day to shoot a simple short film he had concocted, SPLIT SECOND, which I think has never seen any play despite festival intent. <br /><br />6 years later, I was hired to shoot another Cahill film titled JUAREZ, Mexico. I though he had worked out the process; my participation was contingent on casting, script and crew control, and the resultant film actually looked promising in dailies, for what it was... a cheap detective story surrounding the mass murders of girls in Juarez; despite claims here and elsewhere, the film has NEVER appeared in any festival or venue, although Cahill has repeatedly claimed the film has distribution and was simply awaiting release to coincide with the DVD release of two studio pictures on the same subject, VIRGIN OF JUAREZ and BORDER TOWN.\"\r\n1\t\"I was about 12 years old when I saw this classic \"\"Casper the Friendly Ghost\"\" cartoon. Figured it was an early one since Casper didn't look *right*, the same way Porky Pig doesn't look *right* in the old 1930's cartoons. But I digress...<br /><br />Anyway, this episode in the friendly phantom's afterlife concerns him befriending a young fox todd whom he names Ferdie. I remember being happy to see Casper have a friend, as those who have watched the cartoons are wont to know that most people run away from him, screaming \"\"A Ghost!\"\"<br /><br />Casper and Ferdie have some fun together until someone else shows up... I hate to leave you with a semi-spoiler, but the cartoon is only seven minutes long, so you can't really be too ambiguous. Besides, anyone who reads the IMDb synopsis of the cartoon can deduce what happens next...<br /><br />The finale is a bit heartbreaking. In fact, it's probably the saddest I've ever felt watching a cartoon. But that only means that it moved me, which probably explains why I decided to write a comment on this particular cartoon and not very many others. Or heck, the fact that I actually REMEMBER this cartoon at all is due to its emotional effect on me -- I haven't seen it since. But the cartoon does end on an upbeat note, and I was pleased to see Casper and Ferdie happy again.<br /><br />I'd give this cartoon 8 out of 10 stars. Second only to the Warner Bros. cartoon \"\"Peace on Earth,\"\" this is the most I've ever been moved by an animated short.\"\r\n1\t\"Spacecamp is a movie that I plan to show my Daughter Julia Ann Ruth Morgan some day. Seeing Joaquin Phoenix in this movie makes you realize how far hes come since playing a Roman Emperor in the film Gladiator. I am pleased to say that I now have comms with the Artificial Intelligence of QE2 who said that I was Young and that is true. Holodeck Comms with my Daughter on Coaltrain came through Coaltrain Gate Julia Ann Glow \"\"Hide Daddy\"\". The fact that my Daughters Artificial Intelligence is still speaking like a six year old means that my Daughter Julia Ann Ruth Morgan representing Peace to the friendly Ki Alien Creators of humans may not have been taken to a an American Bunker in time. We have the power to change the future with Faster Than Light comms. I order that my Ex Wife and Daughter Julia Ann Ruth Morgan be taken to an American Bunker as soon as possible. My Daughter Julia is 23rd in command of the Planet Earth and a bridge officer. She already said that she doesn't like bullies. Having had someone steal her Gameboy and Gauntlet II game from my Mothers car she gets concerned about other thieves stealing her other toys. Julia has been growing up fast. The time of JFK and QE2 starting life over again on this planet is not until 2023. Julia would be a Young Lady by then and her artificial Intelligence would have been greatly expanded upon. If I have to go to a bunker to continue the American Leadership then I am in a command post and not really hiding as a first priority. President Jack Kennedys artificial Intelligence said recently that drastic measures could be taken to stop Global Warming at any time. Thanks boss thats similar to my Daughter Julias AI telling me hide and stay indoors. Kate Capshaw is now married to Steven Spielberg. Wow are we ever going to miss his movies if society collapses. If you value freedom of speech like President Kennedy and myself then please do not delete this reviewer. Check out Joaquin Phoenixs other movies also.\"\r\n0\tThe Great Ecstasy of Robert Carmichael is bad film in every way. The script, the dreary pace, the lack of depth in any character, the pointless sub-plots, the dreadful acting, the needless climax all make this possibly the worst film I've ever seen. I found nothing likable, enjoyable or intellectually stimulating in any way.<br /><br />I imagine the film makers thought they were making something clever and dark, with its moody lighting, long protracted silences and vaguely haunting classical soundtrack. If so, they failed utterly. It just bored me, and I wish I had never watched it.<br /><br />Avoid at all costs.\r\n1\tDaniel Day Lewis in My Left Foot gives us one of the best performances ever by an actor. He is brilliant as Christy Brown, a man who has cerebral palsy, who then learned to write and paint with his left foot. A well deserved Oscar for him and Brenda Fricker who plays his loving mother. Hugh O'Conner is terrific as the younger Christy Brown and Ray McAnally is great as the father. Worth watching for the outstanding performances.\r\n1\tThis film, recently voted as an audience favorite at the 2005 Palm Springs International Film Festival, is inspiring and moving. A famous conductor, forced to retire by illness, returns to the small village of his birth to become the leader of the church choir, and finally find fulfillment in his music. Drawing on Sweedish traits of keeping things within oneself and of the insular character of a small Swedish village, this film develops each of its characters well. superbly directed, acted and sung, it brought tears to many eyes, and smiles to all. Hopefully it will find distribution in the United States.<br /><br />If you can, see it!\r\n1\tI am not a usual commenter on this website but seeing how underrated this movie is, I endeavour myself to write some comments and remarks about it. I had fun watching this movie, perhaps because Cat is everything I wish I could be, I am not going to post spoilers or reveal plots but there's are things that i really found amazing, the way she manipulates people it's just so divine. this is a very underrated movie, I lack of arguments here, I usually go enjoy and then speak little about it, when you go to the movies is to have fun, and i really enjoyed the 1h53 i stayed in the dark room. a must seen over and over again until the delight fades away. let's try not be so critical about it. thank you for reading.\r\n1\t\"Chang Cheh's \"\"Shaolin Temple\"\" might very well be the highwater mark of the Shaw Brothers martial arts film cycle. This rousing kung fu epic boasts an amazing cast - a veritable who's who of the Shaw stable. Though the plot is fairly standard and the fight choreography is superb as usual, it is Cheh's handling of the subject matter that makes this film remarkable and enjoyable. The sense of reverence displayed for the history and traditions of the Shaolin Temple is palpable in every frame. Not unlike William Keighley's paean to the fabled Fighting 69th in that same self titled film or John Ford's salute to West Point in \"\"The Long Gray Line,\"\" Cheh's \"\"Shaolin Temple\"\" is a lovingly crafted ode in that same style.<br /><br />The cultural correlation I am tempted to make, is to compare the Shaolin Temple to the Alamo. Watching this film will give the same admiring and nostalgic feelings that you experienced many years ago in grade school history when you learned of the courage and sacrifice of those doomed heroes of the Alamo. At the end of the film, you too might be tempted to call out, Remember the Shaolin Temple!\"\r\n0\tI rented this movie from the library (it's hard to find for good reason) purely out of curiosity. I'm a huge Plath fan and this movie was a complete disappointment. The Bell Jar (1979) is by far one of the worst movies I've ever seen. The script is horrible, not because it strays from the original novel text, but because it strays without focus or intent. The scenes are ill-constructed and don't lead the viewer anywhere. What's with the hokey voice over of Plath's poetry? Lady Lazarus has little do with Greenwood's situation; Plath's poetry was completely misused. Marilyn Hassett is completely unbelievable as Esther Greenwood (or any 20 year old for that matter) partly due to casting (she was 32 during filming, the age Plath was when she DIED) and partly due to the fact that she can't act. Hassett is all emotion, no craft, no skill. The direction is mediocre; the director simply covers what's there, which isn't much. The only reason I'm giving the film a 1 is because 0 isn't an option. Sorry Sylvia, you'll have to wait for someone else to adapt your fine work into something more fitting.\r\n0\tThe story line was very straight forward and easy to follow and contained a lot of no-brainer comedy to a point where it just got boring. Some of the audience seemed to find it funny but I like more intelligent humor.<br /><br />There were several known Swedish actors in the movie and their performance were decent considering the script. Lena Endre was good looking as always.<br /><br />I don't remember the original movie so I can't say if it's better or worse.<br /><br />If you enjoy movies like Sällskapsresan this movie might be worth taking a look at.\r\n1\tOoverall, the movie was fairly good, a good action plot with a fair amount of explosions and fight scenes, but Chuck Norris did hardly anything, except for disarm the bomb and shoot a few characters. The movie was very similar to the events of Sept. 11, with a bin laden-like terrorist sending a video to the president (Urich) and threatening to detonate it. Judson Mills had some superb action roles, taking out Rashid's compound and various kick-butt roles but, there was a lack of Chuck Norris. Judson took over most of the action, leaving Joshua (chuck) with Que on her computer. But, overall, it was realistic and didn't lack the action, but only did it on Mr. Norris' part. I gave the film 7/10.\r\n1\t\"Silly, hilarious, tragic, sad, inevitable.<br /><br />A group of down-and-outs team up with a \"\"seasoned\"\" crook to elevate themselves out of their poverty. Great idea...if you ignore the screwup factor.<br /><br />Nice to see George Clooney doing something genuinely funny for a change. The casting is perfect and the acting standards very high. Although it could be said that the motley crew subject isn't new, I think this movie handles it in an interesting and unique way. Sufficiently so that it stands out from what has gone before.<br /><br />Very well done guys.\"\r\n1\tA first time director (Bromell) has assembled a small but powerful cast to look at the world of a middle aged, middle class, depressed hit-man and his struggle with his relationship with his father. This film in less than 90 minutes presents an incredibly interesting contrast in human nature. David Dorfman as the 6 year old son of William H. Macy is the most refreshing little actor I've seen in awhile. Macy is brilliant in a part that almost seems written for him as a self tortured sole struggling to break the reins of his father and his business. It's always great to see Donald Sutherland and here he's wonderful as the callous father of Macy. The films alternate audio track is well worth it to hear the director explain how he picked the cast, locations, and filmed the movie. The basic dolby 2 channel sound is adequate for this film and well recorded. The cinematography creates the mood along with a very subtle musical background. Any film buff or observer of human nature will enjoy this one especially if he's a fan of contradiction.\r\n0\tThe film starts with a manager (Nicholas Bell) giving welcome investors (Robert Carradine) to Primal Park . A secret project mutating a primal animal using fossilized DNA, like ¨Jurassik Park¨, and some scientists resurrect one of nature's most fearsome predators, the Sabretooth tiger or Smilodon . Scientific ambition turns deadly, however, and when the high voltage fence is opened the creature escape and begins savagely stalking its prey - the human visitors , tourists and scientific.Meanwhile some youngsters enter in the restricted area of the security center and are attacked by a pack of large pre-historical animals which are deadlier and bigger . In addition , a security agent (Stacy Haiduk) and her mate (Brian Wimmer) fight hardly against the carnivorous Smilodons. The Sabretooths, themselves , of course, are the real star stars and they are astounding terrifyingly though not convincing. The giant animals savagely are stalking its prey and the group run afoul and fight against one nature's most fearsome predators. Furthermore a third Sabretooth more dangerous and slow stalks its victims.<br /><br />The movie delivers the goods with lots of blood and gore as beheading, hair-raising chills,full of scares when the Sabretooths appear with mediocre special effects.The story provides exciting and stirring entertainment but it results to be quite boring .The giant animals are majority made by computer generator and seem totally lousy .Middling performances though the players reacting appropriately to becoming food.Actors give vigorously physical performances dodging the beasts ,running,bound and leaps or dangling over walls . And it packs a ridiculous final deadly scene. No for small kids by realistic,gory and violent attack scenes . Other films about Sabretooths or Smilodon are the following : ¨Sabretooth(2002)¨by James R Hickox with Vanessa Angel, David Keith and John Rhys Davies and the much better ¨10.000 BC(2006)¨ by Roland Emmerich with with Steven Strait, Cliff Curtis and Camilla Belle. This motion picture filled with bloody moments is badly directed by George Miller and with no originality because takes too many elements from previous films. Miller is an Australian director usually working for television (Tidal wave, Journey to the center of the earth, and many others) and occasionally for cinema ( The man from Snowy river, Zeus and Roxanne,Robinson Crusoe ). Rating : Below average, bottom of barrel.\r\n1\t\"This film is exactly what its title describes--an attempt to get you to buy into what the writers have to offer.<br /><br />First, it's kinda fun to see the 1996-style Toronto I remember with all its silly haircuts, sunglasses, clothes, and attitude. It really hasn't changed any; just a nice, safe, cheap, provincial little urban backwater that makes a great meeting place for international film types! It's also amusing to see Kenny and Spenny head to L.A. and find out that it's Toronto all over again, only with a strange assortment of beach bums, musicians, fortune tellers, and yet more uppity film types.<br /><br />I don't see Pitch as a film to be enjoyed; it's not entertainment unless the viewer enjoys watching someone's aspirations being trampled. I take Pitch as a warning that power and money is really held by studio execs and production houses. Would-be (and \"\"successful\"\") writers, musicians, and actors are still mere transients even when they reach the Big Time.<br /><br />So, Kenny and Spenny are trying to sell you a warning. Buy it or don't, but the message is still there.\"\r\n0\tI watched this movie when I was a young lad full of raging hormones and it was about as sexy a movie as I had ever seen-or ever was to see. It may not have been a great movie. My guess is it wasn't. I don't really remember much about it, to tell you the truth. I only remember the sexual chemistry between Crosby and Biehn. No woman in ANY movie has ever done it for me as the unbelievably sexy Cathy did in this movie. I haven't seen it since that first time I caught it on TV in the 70s and I don't think I'd want to see it again since I'm sure it would be a disappointment-my hormones aren't as raging and I've become more jaded over the years. Still, when I think back on the shower scene I can still remember how great it felt way back when.<br /><br />Added later: After watching the movie again, I discovered that it's dangerous to go home again. What was once erotic is now pretty tame. The older woman-younger man thing still works for me, just not as much as it once did, probably because I'm no longer a 12-year-old. That older woman is now younger than I am. Also, the amateurishness of the whole thing wasn't perceived by my twelve-year-old mind. <br /><br />Moral: Sometimes it's better not to revisit the past.\r\n1\t\"Rating \"\"10/10\"\" Master piece<br /><br />Some years ago, i heard Spielberg comment that he would redo the movie here and there if he had a chance. Well, Mr Spielberg, i guess nothing is perfect, but this movie - together with schindler's List - is your best. Even Oprah acts well in this one !<br /><br />What got me most is the realism of the story and drama. Stuff like this happened and is still happening in the world.\"\r\n1\tthis is best comedy i ever seen! but not all can understand this you must be from Georgia to understand this amazing movie! :) overall one of best film i ever seen......... Vachtangi(Benjamin) and all supporting actors playing very very good but acting of Kote Daoshvili (Father Germogel) is for my opinion best acting in supporting role in history of films :)) in this movie playing many georgian stars like ipolite xvichia,sergo Zakariadze,sofiko chiaureli,verikoan djafaridze,Sesilia Takaishvili,Dodo Abashidze.... they all are Stars in Georgian cinematography :) plus in this movie is playing great Russian star Evgeni Leonov and of course Director of the film Georgy Danelia is one of the best...... i recommending this movie for everyone but remember you must know good Russian language to watch this movie\r\n0\tThe Slackers as titled in this movie are three college friends Dave, Jeff and Sam(Devon Sawa, Michael Maronna and Jason Segel respectively), who are about to graduate from university without sitting through an honest exam but making it end successfully. This continues until the very end when unlikeable but the most likable character of the movie Nathan(Schwartzman) figures out what they are up to. Nathan starts blackmailing in order to make up with his dream girl as he cant pursue that in normal conditions. The only problem is when the trio starts to work on it, Dave falls in love with the gorgeous and good hearted Angela(James King) Unfortunately, not a brilliant genre movie. Schwartzman makes to watch the movie easy as his performance is brilliant. King's performance is average, I think she was hired just to be around with her gorgeous look. The Slackers is reminiscent of American Pie with a different direction. Jokes are as shallow as in American Pie. But aren't they all used? I think this movie is a warning to the filmmakers of the genre that they are running out of originality. Overall, a few smiley moments but a horrible movie in terms of acting(except for Schwartzman) and subject. * out of *****\r\n1\tthis is the first of a two part back-story to the conflict between the machines and mankind in the Matrix world and it delivers spectacularly by combining observations on man's fear of the unknown and of being usurped with politics, extensive religious and historical imagery, subverting expected portrayals of parties involved and an at least partially believable and thus terrifying vision of our near future. it isn't perfect and some plot points and images are at once obvious and contrived but it has the desired effect and impact and tells a visceral and cautionary tale.<br /><br />this first part sets the scene - human societies have developed advanced and capable robots, mostly humanoid, to serve people doing menial, unskilled jobs, labour, construction etc. and thus the populace has become lazy and derogatory towards them. one robot, however, rebels and kills his owner, stating at his subsequent trial that he simply did not want to die. he is destroyed but when the robot masses' destruction is ordered to protect humanity many robots rise up in protest, with many human sympathisers alongside them.<br /><br />the imagery here is exploitative, recounting race riots and abuse, Tiananmen square, the holocaust and an overly provocative scene of a robot in a human girl's guise getting harried, hammered in the head and then shot dead as it pleads 'i'm real'. it lays on the ground, clothes and skin torn and breasts hanging out. it's an obvious and obscene image designed to present human fear towards uncontrolled elements and aggression towards groups based on the actions of individuals.<br /><br />anyway, this first portion is much like a compressed version of the film I Robot, but it soon develops into a recognisable Matrix back-story as the surviving robot contingent is exiled and congregates in the middle east, in the cradle of civilisation as the narrator informs us. there, the machines regroup and begin to produce new AI and to manufacture mass technology and trade it with human nations. we see a commercial for a car that uses the circular energy hover engines that the ships the rebels in the movies use and we see sentinel type robots flying around Zero One, the name of their city. their goods and trade make their economy soar affecting other economies detrimentally and human governments and authorities establish a blockade in response. the machines send ambassadors in the form of Adam and Eve resemblances to a UN congress to negotiate a peaceful resolution to the blockade, but they are forcibly removed and the scene is set for war in the second part.<br /><br />the animation is by Studio 4°C who work on quite a few of the Animatrix and it's evocative and visually stimulating, rendering different scenes like imagery montages, CCTV footage and particular scenes of import distinctive and overall presenting the story perfectly. the plot may not be an original concept and it may draw on simplistic sheep mentalities and plot models and resort to provocative material for impact but after the tantalising mystery offered by the first film and Morpheus' vague brief info-dumps this is a nice exposition of the cataclysmic events that left the world ravaged and in the hands of the machines that serves as a warning and as a vehicle for many observations and comments on the human condition, the development of AI and the importance of harmony and co-operation and the devastating consequences of conflict and prejudice, themes expanded on in the movies.\r\n0\tI remember I saw this cartoon when I was 6 or 7. My grandfather picked up the video of it for free at the mall. I remember that it really sucked. The plot had no sense. I hated the fox that became Casper's friend. He was so stupid! Casper cried his head off if he couldn't find a friend. So what? Get over it! The only good part and I don't want to sound mean-spirited was when the fox got shot and died at the end. I laughed my head off in payback because this cartoon sucked so much. The bad news is the fox resurrects and becomes a ghost. I wish he had stayed dead. I think I even gave the video of this to somebody because I hated it. No wonder they were offering it for free at the mall. If you have a child don't let them watch this. They will probably agree with me that it sucks.\r\n0\there was no effort put into Valentine to prevent it from being just another teenage slasher film, a sub-genre of horror films of which we have seen entirely too many over the last decade or so. I've heard a lot of people complaining that the film rips off several previous horror movies, including everything from Halloween to Prom Night to Carrie, and as much as I hate to be redundant, the rip off is so blatant that it is impossible not to say anything. The punch bowl over poor Jeremy's head early in the film is so obviously taken from Carrie that they may as well have just said it right in the movie (`Hey everyone, this is the director, and the following is my Carrie-rip-off scene. Enjoy!'). But that's just a suggestion.<br /><br />(spoilers) The film is structured piece by piece exactly the same way that every other goofy teen thriller is structured. We get to know some girl briefly at the beginning, she gets killed, people wonder in the old oh-but-that-stuff-only-happens-to-other-people tone, and then THEY start to get killed. The problem here is that the director and the writers clearly and honestly want to keep the film mysterious and suspenseful, but they have no idea how to do it. Take Jason, for example. Here is this hopelessly arrogant guy who is so full of himself and bad with women that he divides the check on a date according to what each person had, and as one of the first characters seen in the film after the brief history lesson about how bad poor Jeremy was treated, he is assumed to carry some significance. Besides that, and more importantly, he has the same initials as the little boy that all the girls terrorized in sixth grade, and the same initials that are signed at the bottom of all of those vicious Valentine's Day cards. <br /><br />It is not uncommon for the audience to be deliberately and sometimes successfully misled by the behavior of one or more characters that appear to be prime suspects, and Jason is a perfect example of the effort, but not such a good example of a successful effort. Sure, I thought for a while that he might very well be the killer, but that's not the point. We know from early on that he is terrible with women, which links him to the little boy at the beginning of the film, but then in the middle of the film, he appears at a party, smiles flirtatiously at two of the main girls, and then gives them a hateful look and walks away, disappearing from the party and from the movie with no explanation. We already know he is a cardboard character, but his role in the film was so poorly thought out that they just took him out altogether when they were done with him.<br /><br />On the positive side, the killer's true identity was, in fact, made difficult to predict in at least one subtle way which was also, unfortunately, yet another rip-off. Early in the film, when Shelley stabs the killer in the leg with his own scalpel, he makes no sound, suggesting that the killer might be a female staying silent to prevent revealing herself as a female, rather than a male as everyone suspects. But then for the rest of the film, we just have this stolid, relentless, unstoppable killer with the emotionless mask and that gigantic butcher knife. Director Jamie Blanks (who, with all due respect, looks like he had some trouble with the girls himself in the sixth grade) mentions being influenced by Halloween. This is, of course, completely unnecessary, because it's so obvious from how badly he plagiarizes the film. The only difference between the killer in Valentine and Michael Meyer's is that Michael's mask was so much more effective and he didn't have a problem with nosebleeds. This stuff is shameless. <br /><br />At the end, there is a brief attempt to mislead us one more time as to who the killer is (complete with slow and drawn out `and-the-killer-is' mask removal), but then we see Adam's nose start to bleed as he holds Kate, his often reluctant girlfriend, and we know that he's been the killer all along. Nothing in the film hinted that he might be the killer until the final act, and these unexplained nosebleeds were not exactly the cleverest way to identify the true killer at the end of the film. Valentine is not scary (I watched it in an empty house by myself after midnight, and I have been afraid of the dark for as long as I can remember, and even I wasn't scared), and the characters might be possible to care about if it weren't so obvious that they were just going to die. I remember being impressed by the theatrical previews (although the film was in and out of the theater's faster than Battlefield Earth), but the end result is the same old thing.\r\n0\t\"We purchased this series on DVD because of all of the glowing reviews we had seen here. I gave it three stars because there can be little doubt that sometimes the acting, directing and writing are brilliant. In fact they are so brilliant we did not see the propaganda that was being transmitted so smoothly on the series. If one watches it with discernment, one will see the entire litany of the radical right wing beliefs being promulgated by the Fox (Faux) News Network. To avoid giving away any spoilers I will refrain from pointing out all of the dozens of specific instances. A brief look at the plots found here on IMDb will disclose that everything from torture to gun control to the right of a network to provide \"\"Infomercials\"\" and call them news is justified with cute plot twists and impassioned speeches given by some of the best actors in the world. We watched many shows and finally gave up in disgust when they justified torture using Attorney General Gonzales as a shining example of why all kinds of torture should be used in the name of protecting all of us. The series also manages to demean male and female gays in subtle ways by using them as plot devices depicting evil people. All in all the complete litany of the radical religious right wing.<br /><br />No doubt the popularity of this program will be used by future historians as proof that America lost its way in the early part of the this century. As a student of history myself I would characterize this program as being in a league with the propaganda produced by Goebbels for Hitler and some of the propaganda produced by Hollywood for the American audience during WWII.<br /><br />So if you want to use this as a teaching tool to help your students understand how subtle propaganda can be then by all means do so. Just be sure to purchase an inexpensive used copy so you can avoid enriching the ultra right wingers at Faux Network who produced this travesty.\"\r\n0\tthis movie was just plain dumb i do not think it was scary at all i went in hoping to be shocked and scared but was mostly laughing some of the scenes were just to fake and thrown together blood scenes were extremely over cg and some of the mutants were ridiculously gay looking it also sucked because the acting was just plain horrible u think they could get some good actors and most of the characters i hated just because how stupid and lame they acted even though they were supposed to be in the military i get to watch movies for free and seen many people walking out im guessing because it was so dumb kinda glad i didn't have to pay for it in short DUMB ASS MOVIE don't see it...but then again thats my opinion\r\n1\t\"As a massive fan of fantasy in general, and of the works of Neil Gaiman *in particular*, I've been looking forward to this film so avidly, so hungrily and with such a bittersweet mixture of anticipation and fear of disappointment that I can scarcely believe it's finally here. And you know what? I needn't have feared, the film version is bl**dy awesome. Different from the book, but in a good way - less whimsical, more comical, still deeply sweet and enchanting.<br /><br />The special effects are absolutely spot-on, and make magic feel a natural and proper part of the world of Wall without being overtly spectacular and intrusive.<br /><br />Proper attention has been paid to storytelling and pacing, and the casting in the main is a triumph, with the ghostly Princes (whose roll-call read almost as a \"\"Who's Who\"\" of currently cool British comedy - Rupert Everett, David Walliams of Little Britain fame, two of the blokes from Green Wing etc) stealing most of the best lines and pretty much all of the films' funniest moments, which exist in abundance. <br /><br />In fact, the one minor criticism I have at all of the film is that sometimes the comedy elements become a little OTT, subtlety goes out of the window to the detraction of the main story.... Ricky Gervais' cameo, for example, was far too much just \"\"Ricky Gervais doing his usual David Brent from the Office comedy persona\"\" for my liking, and in my opinion, created an unwelcome and jolting break from the magical spell of the progressing story (though in fairness, from memory I believe the Ferdy character in the original book WAS pretty \"\"Ricky Gervais\"\"-esquire when I think back on it)....<br /><br />But this is a minor quibble in an otherwise immaculately cast and scripted fairytale with a good mixture of action and romance. Charlie Cox, as the protagonist Tristan, captures the correct mixture of naivety, subtle comedy and self-realisation required for a story like this where a \"\"humble young boy embarks on life-changing quest\"\"; Claire Danes as Yvaine is beautiful, feisty and just ever so slightly alien or ethereal, a perfect interpretation of her stellar role; Robert De Niro, in the cameo every reviewer is talking about, is indeed deserving of praise, rollicking good fun (looks like he's having a ball, too)... and Michelle Pfeiffer is triumphantly cool and nasty as wicked witch Lamia, my favourite performance of the film overall. If you enjoyed her deliciously b!tchy performance in the recent \"\"Hairspray\"\" then you will thoroughly enjoy her in this, too.<br /><br />So to round off this review: you will laugh, for sure, you will smile, and you may even cry - Stardust is a beautiful, heart-warming fairytale for all the family, with a heart of gold and more sass 'n smarts than is immediately apparent. One of my all-time favourite films is the absolutely fantastic Princess Bride, and Stardust is being readily likened to this with good reason as it is a very similar type of film exploring similar themes and territory.... and just as The Princess Bride remains fresh, smart and funny twenty years after its initial release, I believe that the delicious tongue-in-cheek sweetness of Stardust will be showing up as a family favourite on our televisions (or equivalent future device!) for many years to come.\"\r\n1\t\"Coonskin might be my favorite Ralph Bakshi film. Like the best of his work, it's in-your-face and not ashamed of it for a second, but unlike some of his other work (even when he's at his finest, which was before and after Coonskin with Heavy Traffic and Wizards), it's not much uneven, despite appearances to the contrary. Bakshi's taking on stereotypes and perceptions of race, of course, but moreover he's making what appears to be a freewheeling exploitation film; blaxploitation almost, though Bakshi doesn't stop just there. If it were just a blaxploitation flick with inventive animation it could be enough for a substantial feature. But Bakshi's aims are higher: throwing up these grotesque and exaggerated images of not just black people but Italians/mafioso, homosexuals, Jews, overall New York-types in the urban quarters of Manhattan in the 70s, he isn't out to make anything realistic. The most normal looking creation in looking drawn \"\"real\"\" is, in fact, a naked woman painted red, white and blue.<br /><br />In mocking these stereotypes and conventions and horrible forms of racism (i.e. the \"\"tar-rabbit, baby\"\" joke, yes joke, plus black-face), we're looking at abstraction to a grand degree. And best of all, Bakshi doesn't take himself too seriously, unlike Spike Lee with a film like Bamboozled, in delivering his message. This is why, for the most part, Coonskin is a hilarious piece of work, where some of the images and things done and sudden twists and, of course, scenes of awkward behavior (I loved the scene where the three animated characters are being talked at by the real-life white couple in tux and dress as looking \"\"colorful\"\" and the like), are just too much not to laugh at. It's not just the imagery, which is in and of itself incredibly \"\"over\"\"-stylized, but that the screenplay is sharp and, this is key for Bakshi this time considering, it's got a fairly cohesive narrative to string along the improvisations and madness.<br /><br />Using at first live-action, then animation, and then an extremely clever matching of the two (ironically, what Bakshi later went for in commercial form with Cool World is done here to a T with less money and a rougher edge), Pappy and Randy are waiting outside a prison wall for a buddy to escape, and Pappy tells of the story of Brother Rabbit, who with Brother Bear and Preacher Fox go to Harlem and become big-time hoodlums, with Rabbit in direct opposition to a Jabba-the-Hut-esquire Godfather character. This is obviously a take off on Song of the South with its intentionally happy-go-lucky plot and animation, here taken apart and shown for how rotten and offensive it really is.<br /><br />Yet Bakshi goes for broke in combining forms; animated characters stand behind and move along with live-action backgrounds; when violence and gunshots and fights occurs it's as bloody as it can get for 1975; when a dirty cop is at a bar and is drugged and put in black-face and a dress, he trips in a manner of which not even Disney could reach with Dumbo; a boxing match with Brother Bear and an opponent as the climax is filmed in wild slow-motion; archive footage comes on from time to time of old movies, some and some from the 20s that are just tasteless.<br /><br />Like Mel Brooks or Kubrick or, more recently, South Park, Bakshi's Coonskin functions as entertainment first and then thought-provocation second. It's also audacious film-making on an independent scale; everything from the long takes to the montage and the endlessly warped designs for the characters (however all based on the theme of the piece) all serve the thought in the script, where its B-movie plot opens up much more for interpretation. To call it racist misses the point; it's like calling Dr. Strangelove pro-atomic desolation or Confederate States of America pro slavery. And, for me, it's one of the best satires ever made.\"\r\n0\tThis movie is a total dog. I found myself straining to find anything to laugh at just so I wouldn't feel like I'd totally wasted my money--and my time. The writing in this film is absolutely terrible. It's a shame it's not up to the standards of other Hale Storm movies.<br /><br />They should have saved the money on getting D-list actors like Fred Willard and Gary Coleman and spent the money working the script until it was right. Even Gary Coleman wasn't properly utilized for his role.<br /><br />This movie leaves you wondering what the point of most of the plot was--including the subplots. After viewing this movie, I'm left with the impression that the producers were hoping to capture some kind of Napolean Dynamite-like humor, where it's not so much the lines as the character and the delivery. Unfortunately, this movie fails to deliver the lines, the characters, the delivery or the humor. I should have gone to the dentist instead!\r\n1\tThis movie is a great attempt towards the revival of traditional Indian values which are being replaced by western ones.Its a joint family story showing all the ethics every person should follow while communicating with every single relative around.Shahid Kapoor gives a gr88 performance as a desi about to tie knot with Amrita Rao who is also very Desi and she also acts pretty well...The genre of the movie is the same as HAHK and such movies deserve to be made in India for the revival of old traditional values...The movies doesn't get 10 as it isn't very good at music which counts a lot in every movie,besides this it is flawless....\r\n1\tThis film was the first British teen movie to actually address the reality of the violent rock and roll society, rather than being a lucid parody of 1950s teenage life. In an attempt to celebrate the work of Liverpool's Junior Liaison Officers the opening title points out that 92% of potential delinquents, who have been dealt with under this scheme, have not committed a second crime. However, this becomes merely a pretext to the following teen-drama until the film's epilogue where we are instructed that we shouldn't feel responsible or sorry for such delinquents however mixed-up they might seem.<br /><br />Stanley Baker plays a tough detective who reluctantly takes on the post of Juvenile Liaison Officer. This hard-boiled character is a role typical of Baker. Having been currently on the trail of a notorious arsonist known as the firefly and does not relish the distraction of the transfer. However, as in all good police dramas he is led back full circle by a remarkable turn of events, back to his original investigation.<br /><br />His first case leads him to the home of two young children, Mary and Patrick Murphy (played by real-life brother and sister duo), who have committed a petty theft. Here he meets Cathie (satisfyingly portrayed by Anne Heywood) their older sister whom he eventually becomes romantically involved with. It quickly becomes obvious that the squalid environment of such inner-city estates is a breeding ground for juvenile delinquency.<br /><br />The elder brother of the Murphy family, Johnny, is the leader of a gang of rock and roll hoodlums. McCallum does an eye-catching turn as the Americanized mixed-up kid, who owes more to the likes of Marlon Brando, than any previous British star. One is reminded of Brando's character Johnny from 'The Wild One' who led a leather-clad gang of rebellious bikers in much the same way as this film's 'Johnny' leads his gang.<br /><br />Thankfully the preachiness of earlier Dearden crime dramas such as 'The Blue Lamp' is not so apparent. Instead we are presented with several well drawn-out characters on both sides of the law as the drama of the delinquents and the romantic interest between Heywood and Baker takes the forefront.<br /><br />The plot, whilst at times predictable, does deliver some memorable scenes. The disruptive influence that rock and roll music was thought to have had is played out in a scene where Johnny abandons himself to the music, leading a menacing advance on the police sergeant. The most grippingly memorable piece of film however is the climatic classroom scene where a bunch of terrified school children, including Mary and Patrick, are held hostage at gunpoint by Johnny. Obviously in the light of the real-life Dumblaine Massacre this scene seems all the horrifying. Understandably because of this the film is seldom aired or available to modern audiences.\r\n0\t\"A Movie about a bunch of some kind of filmmakers, who want to make a documentary on a new kind of surfing in shark-infested waters. As an absolute fan of movies including some kind of vicious animals or monsters, I thought this might be my kind of movie... it wasn't!!! This should be more of a guideline of how not to do it! It has a lot of accidental humor in it and the evil beast is an incredible joke, in the final scene it goes after the main characters *rolling*, the feet are obviously waving in the air! It looks ridiculous! Good for a laugh though. If it were only for the lack of talent between the actors, the embarrassingly stupid dialogs and the hilariously stupid crocodile, it would be at least worth a laugh, but it gets worse: I'd guess, the people in charge of this movie noticed how weak it was, so they though up the old idea of \"\"sex sells\"\"... Totally, i mean TOTALLY without any reasons one of the main actresses shows her breasts to the beast. And somewhere towards the beginning there's some kind of meaningless \"\"makeout\"\". This is the last ingredient making the movie absolute trash to me. It's incredible how people actually spend time producing such rubbish! If you are seeking for a real waste of time: watch this movie!!!\"\r\n1\t\"James Cagney is best known for his tough characters- and gangster roles but he has also played quite a lot 'soft' characters in his career. This musical is one of them and it was the first but not the last musical movie Cagney would star in.<br /><br />Cagney is even doing a bit of singing in this one and also quite an amount of dancing. And it needs to be said that he was not bad at it. He plays the role with a lot of confidence. He apparently had some dancing jobs in his early life before his acting career started to take off big time, so it actually isn't a weird thing that he also took on some musical acting roles in his career. He obviously also feels at ease in this totally different genre than most people are accustomed to seeing him in.<br /><br />The movie is directed by Lloyd Bacon, who was perhaps among the best and most successful director within the genre. His earliest '30's musicals pretty much defined the musical genre and he also was responsible for genre movies such as \"\"42nd Street\"\". His musicals were always light and fun to watch and more comedy like than anything else really. '30's musicals never were really about its singing, this was something that more featured in '40's and later made musicals, mainly from the MGM studios.<br /><br />As usual it has a light and simple story, set in the musical world, that of course is also predictable and progresses in a formulaic way. It nevertheless is a fun and simple story that also simply makes this an entertaining movies to watch. So do the characters and actors that are portraying them. Sort of weird though that that the total plot line of the movie gets sort of abandoned toward the end of the movie, when the movie only starts to consists out of musical number routines.<br /><br />The musical moments toward the ending of the movie are also amusing and well done, even though I'm not a too big fan of the genre itself. Once again the musical numbers also feature a young Billy Barty. he often played little boys/babies/mice and whatever more early on in his career, including the movie musical \"\"Gold Diggers of 1933\"\", of one year earlier. <br /><br />A recommendable early genre movie.<br /><br />8/10\"\r\n1\tI came to Nancy Drew expecting the worst...because of everyone else's bad reviews. I thought: Even though I don't read the books, that doesn't look anything like the Nancy Drew I've heard of. But I was wrong. Sure, it wasn't a carbon copy of the books, but when you make a movie out of something, you have to modify it to become big-screen entertainment. The plot was enjoyable and thrilling with a lot of actual scares and I thought that Emma Roberts was really believable in her own way of portraying this classic character. There were several funny moments and on the contrary of many statements, at no point in this film does Nancy come off as a ditz. She was intelligent, conservative, polite and genuine. One thing this movie also did well was balance the whole thing out with a mix of comedy, romance, suspense and heartfelt moments. I loved this movie. What a flick, what a flick! And if you are wise and decide to trust me and go see this, be prepared for some SCARY as heck moments because I was, like, freaking out! Go see it or be a bum-bum and just let other people decide what you think of this movie for you...a mistake I almost made. I love it, I wanna own this movie! I love Emma Roberts now, too. She's like a mini-Bree Van De Kamp from DH. Love it, love it.\r\n1\t\"This is the start of a new and interesting Star Trek series. It has a \"\"down to earth\"\"-kind of feel with darker and less \"\"plaggy\"\" scenography.<br /><br />The characters need some more time to develop but they have potential. One thing that is fairly disappointing (with all Star Trek series really) is that they portray such a gloomy picture of the equality between men and women in the future when they paint a very positive picture about everything else. (Earth has stopped war, famine etc)<br /><br /> The female characters here are two, subcommander T'Pol who is vulcan and communications officer Hoshi who is human. Hoshi is quite wimpy and T'Pol is made to be a \"\"vulcan babe\"\".<br /><br /> Some of the crew attitudes feel a bit too American (as opposed to the more international feel of the TNG-crew) but creates interesting dynamics.<br /><br /> A very good pilot though for a very good series.\"\r\n1\tI have seen The Perfect Son about three times. I fail to see how this film is a gay film, I am not even gay, but I don't see it as a gay film. It is a film with a gay character, I can't see why every film with a gay character should be strictly a film about being gay. I find the film to be sympathetic to the study of death, the death of someone who is your kin. I think Theo turns his life around fairly quickly after rehab because he wants to and watching his brother dying in front of him makes him reassess his life. I found the dialog in the scene when Theo tells Ryan he is going to be a father to be very moving, Ryan states that he doesn't want to know about the things he is never going to see or share with anyone. Isn't that horrific and sad? I highly recommend the film.\r\n0\t\"The director states in the Behind-the-Scenes feature that he loves horror movies. He loves them so much that he dedicated the movie to Dario Argento, as well as other notable directors such as George A. Romero and Tobe Hooper. Basically dedicating this movie to those great directors is like giving your mother a piece of sh*t for Mother's Day. The first thing they did wrong was the casting. CAST PEOPLE THAT CAN ACT. Also, don't cast a person that is 40 years old for the role of a misunderstood, 18 year old recluse. That's right, he's been in high school for 22 years. The reactions made by people as they watch their boyfriends get their hearts ripped out is amusing. Or like one part when a guy gets stabbed in the ear with an ear of corn (haha get it), and his girlfriend just goes, \"\"Oh..my.. God?\"\" The scarecrow himself is quite a character. Doing flips off cars and calling people losers.<br /><br />The movie does have one redeeming factor... oh wait, no it doesn't.<br /><br />If you absolutely MUST see this movie, than just watch the Rock and Roll trailer on the DVD. It covers about everything and has a really gnarly song dude.\"\r\n1\t\"What are the odds of a \"\"Mermaid\"\" helium balloon traveling from Yuba City, Ca.(on Nov 8th,1993) and landing 4 Days later,(on Nov. 12) in MERMAID, Prince Edward Island, Canada.(Approx. 4000 miles). This is a great movie. It is based on a true story. This movie helps not only children cope with losses, but older people as well. Hope everyone will enjoy it!!! Rhonda\"\r\n0\tfor all the subtle charms this student film may contain, was anyone else bored to death waiting WENDINGO to show his paper macho face??<br /><br />the anti-climax pretty much ruined any sort of momentum we had speed actioned to develop.<br /><br />don't get me wrong, i'm all into exploring America's dark underbelly, but this is a turd-a-flambé that gets a nod to watchable only for the fact that p.clarkson looks hot taking it.<br /><br />sadly, from a guy from wings.<br /><br />the best 2 minutes the film has to offer.<br /><br />if you felt like ripping off DELIVERANCE, you could do better.\r\n0\tUnfortunately, this movie is so bad. The original Out of Towners was manic and very funny, of course they used the script written by Neil Simon. For some reason Neil Simons script is not used in this film so it falls flat time and time again. Even the audience I was with never laughed. The direction is very slow and tedious and when there is a joke it is given away so the joke dies i.e. The couple having sex in the park. They announce it is a lighting ceremony for New York, well we all know the lights are going to come on and we will be able to see cute and mugging Goldie & Steve do a bit of slap stick. The whole movie winds up being like this...a joke is set up and given away. Why isn't Goldies hair ever even messed up in the movie. You will also notice every close up of Goldie (they use a very intense soft lens). I suggest you rent the original with Jack Lemmon and Sandy Dennis, that's if you want to laugh.\r\n0\tThe film portrays France's unresolved problems with its colonial legacy in Western (Francophone) Africa through the befuddled and complex psychoanalytical prism of a young woman, France (herein symbolically representing her nation). It is an often engaging and challenging portrait of a young woman's desire to come to terms with a traumatic moment in her past, in particular, and a nation's desire to reach out to the 'other' it once 'owned' and moulded. This is reflected in the way in which it centres entirely around the notion of travelling (or being in transit) from the present to the past; remembered realities to undeniable contemporary political and economic actualities.<br /><br />The characters all play a symbolic, albeit a limited and unconvincing role. France, meant to be a visual as well as a totemic representation of contemporary French society, leaves one indifferent to her plight as she seems still to be imbued with the same naiveté she enjoyed as a child-in fact as a child she seems more in possession of her reality. The rest of the rag-tag ensemble is just forgettable. The black Africans are, to say the least, offencive impressionistic portraits of former colonised peoples now colonised by the director's poor handling of her material. They are no more than a dark and moribund backdrop against which the blythe-like France wonders seeking a world she never knew, and hoping for one that can never be found in Cameroon.\r\n0\t\"I see people writing about how great this movie was. It was horrible! The acting was sub-par at best. It made a lot of money because teenage girls went to see the movie 7 times in the theaters because of Leonardo. Where the hell did they get the money? Anyway, I wanted to learn more about the Titanic; why it sank, what was running through a lot of people's minds; maybe even a little conspiracy stuff. Does anyone realize that certain people didn't even board the ship because there was a fire on board before it even took off? No, you don't because all you see is a rich girl falling for a poor boy and he paints her naked (did that corny junk at least tip you off that the movie was stupid?).<br /><br />I did cry in during one scene, though. The scene when they showed the water that was filling up in the ship. It looked like pool water! I'm thinking this movie made all this money and they couldn't even make the water from the ocean look real? unbelievable...<br /><br />Ohhh the band played on while the ship sank.. Just ridiculous. This was the worst movie until Pearl Harbor outdid it in the \"\"Nothing to Do With Reality\"\" department.\"\r\n1\t\"There is a scene in Dan in Real Life where the family is competing to see which sex can finish the crossword puzzle first. The answer to one of the clues is Murphy's Law: anything that can go wrong, will go wrong. This is exactly the case for Dan Burns (Steve Carell, the Office) a columnist for the local newspaper. Dan is an expert at giving advice for everyday life, yet he comes to realize that things aren't so picture perfect in his own. Dan in Real Life is amazing at capturing these ironies of everyday life and is successful at embracing the comedy, tragedy, and beauty of them all. Besides that this movie is pretty damn hilarious.<br /><br />The death of his wife forces Dan to raise his three daughters all on his own... each daughter in their own pivotal stages in life: the first one anxious to try out her drivers license, the middle one well into her teenage angst phase, and the youngest one drifting away from early childhood. Things take a turn for Dan when he goes to Rhode Island for a family reunion and stumbles across an intriguing woman in a bookstore.<br /><br />Her name is Marie (Juliette Binoche, Chocolat) and she is looking for a book to help her avoid awkward situations... which is precisely whats in store when they get thrown into the Burns Family household.<br /><br />If you've seen Steve Carell in The Office or Little Miss Sunshine, you'd know that he is incomparable with comedic timing and a tremendously dynamic actor as well. Steve Carell is awesome at capturing all the emotions that come with family life: the frustration and sincere compassion. The family as well as the house itself provides a warm environment for the movie that contrasts the inner turmoil that builds throughout the movie and finally bursts out in a pretty suspenseful climax. The movie only falls short in some of the predictable outcomes, yet at the same time life is made up of both irony and predictability: which is an irony within itself.<br /><br />Dan in Real Life is definitely worth seeing, for the sole enjoyment of watching all the funny subtleties we often miss in everyday life, and I'll most likely enjoy it a second time, or even a third. Just \"\"put it on my tab.\"\"\"\r\n1\tPlaying out as a sort of pre runner to The Great Escape some 13 years later, this smashing little British film plays it straight with no thrills and dare do well overkill. First part of the movie is the set up and subsequent escape of our protagonists, whilst the second part concentrates on their survival whilst on the run as they try to reach Sweden. The film relies on pure characters with simple, effective, and yes, believable dialogue to carry it thru, and it achieves its aims handsomely. No little amount of suspense keeps the film ticking along, and as an adventure story it works perfectly for the time frame it adheres to, so a big thumbs to the film that may well be the first of its type ?.<br /><br />7/10\r\n0\t\"The most horrible retelling of a great series. It should not have been named Battlestar Galactica, because it's only the same in name alone. Too many changes to just have changes. You have characters turned from male to female, black to asian to cylon all in a way to \"\"attract female audiences,\"\" when there was already strong female characters that could have just been made stronger. Gone are the egyptian feeling. Gone are the quest for earth. The lack of cylons to go to terminator rejects takes away from the film, especially when one is made a fembot. Granted the original show had a lot of cheese to it, but it had a large following. They tried to hold onto this following but give the fans nothing to work with and basically spit in their face as they make it \"\"their own story.\"\" Changes are good, when they make something better, not to just make them.\"\r\n0\tThis film is based on the novel by John Fante. Could someone please tell me why? I see absolutely no reason why this fine book should be adapted in this way. If you want to make a romantic melodramatic Hollywood production with Colin Farell and Selma Hayek, then how could you possibly make a connection to Ask The Dust (the novel)? -And if you wanted to make this story into a film, then why would you want to make it into a romantic melodramatic Hollywood production with Colin Farell and Selma Hayek? I don't get it.<br /><br />The adaptation of the story is poorly made, and if you have read the book and liked it, I'm almost sure you won't like what Towne did with it. <br /><br />In the beginning of the film you'll maybe find the casting odd, the acting bad and the cinematography just a bit overdone. But you hope for the best. I really hoped a lot during this film. I actually wanted it to be good. But it only gets worse, and it is as simple as that: Whether you read Fantes novel or not, this is not a good film. Just another romantic melodramatic Hollywood production combined with bad acting, lack of structure and - of course - plenty of shots of Colin Farells naked butt.<br /><br />I could complain a lot more about this film, but why waste my time. I've seen it. Alright. I had to see it, because I like the book so much and was curious. And I'm very disappointed.<br /><br />1/10 is for Colin's sweet little mustache in the end of the film. So sweet... Had he worn it the whole time through, I'd given it 2/10.\r\n1\tI rank this the best of the Zorro chapterplays.The exciting musical score adds punch to an exciting screen play.There is an excellent supporting cast and mystery villain that will keep you guessing until the final chapter.Reed Hadley does a fine job as Don Diego and his alter ego Zorro.Last,but certainly not least,is the great directing team of Whitney and English.\r\n0\tI feel like I'm the only kid in town who was annoyed by Branagh's performance. He is a fine actor by most accounts, but he simply could not pull off the Southern accent. I mean, it was deplorable. It was as if he was trying too hard to be a Yank. One of the previous reviewers questioned why U.S. actors were not cast in this film. I second that notion. It's wonderful when actors/actresses wish to expand their horizons, but it's another thing to try too hard so that a performance becomes strained. Maybe it was Altman, but he's a such a great director...<br /><br />Well, I really don't want to bash Branagh for his absolutely hideous accent too much. Everybody deserves to screw up here and there. But it is hard to watch something so annoying that you'd rather choke on a chicken bone or eat a bucket full of crap than sit through The Gingerbread Man.\r\n1\t\"This is a romantic comedy where Albert Einstein, played wonderfully by Walter Matthau, and his cronies play match maker to his niece (Meg Ryan) and a talented auto mechanic (Tim Robbins). The interplay among these major roles is augmented by a terrific supporting cast of well recognized character actors. This movie is cute and fun ... a \"\"feel-gooder\"\"! Hearty recommendations.\"\r\n0\tExpectations were somewhat high for me when I went to see this movie, after all I thought Steve Carell could do no wrong coming off of great movies like Anchorman, The 40 Year-Old Virgin, and Little Miss Sunshine. Boy, was I wrong.<br /><br />I'll start with what is right with this movie: at certain points Steve Carell is allowed to be Steve Carell. There are a handful of moments in the film that made me laugh, and it's due almost entirely to him being given the wiggle-room to do his thing. He's an undoubtedly talented individual, and it's a shame that he signed on to what turned out to be, in my opinion, a total train-wreck.<br /><br />With that out of the way, I'll discuss what went horrifyingly wrong.<br /><br />The film begins with Dan Burns, a widower with three girls who is being considered for a nationally syndicated advice column. He prepares his girls for a family reunion, where his extended relatives gather for some time with each other.<br /><br />The family is high atop the list of things that make this an awful movie. No family behaves like this. It's almost as if they've been transported from Pleasantville or Leave it to Beaver. They are a caricature of what we think a family is when we're 7. It reaches the point where they become obnoxious and simply frustrating. Touch football, crossword puzzle competitions, family bowling, and talent shows ARE NOT HOW ACTUAL PEOPLE BEHAVE. It's almost sickening.<br /><br />Another big flaw is the woman Carell is supposed to be falling for. Observing her in her first scene with Steve Carell is like watching a stroke victim trying to be rehabilitated. What I imagine is supposed to be unique and original in this woman comes off as mildly retarded.<br /><br />It makes me think that this movie is taking place on another planet. I left the theater wondering what I just saw. After thinking further, I don't think it was much.\r\n1\tKubrick again puts on display his stunning ability to craft a perfect ambiance for a film. Mainly through cinematography, but also using an ingenious score, he creates a chilling and ominous tone that resides over the entire film and thoroughly gets my spine tingling from the start. It really is this flawless ambiance that makes The Shining the masterpiece that it is, in my eyes. Of course it doesn't hurt that Jack Nicholson gives one of the greatest performances I've ever seen. A frighteningly authentic portrayal of a mind gone mad. Duvall and Lloyd are artificial, to be nice, but it's easy to look past those two when the rest of the film is so brilliant. Plus it features the actor with the greatest name of all time (Scatman Crothers).\r\n1\tThis is the best picture about baseball since Redford whacked The Natural our way. Dennis Quaid and Rachel Griffiths light up the screen with a great story and a cast that seemed real enough to pull you into their lives. <br /><br />Laced with dreams - dripping in reality, the American Dream reignites after 9.11 with a true story about the Devil Ray's mid-life rookie, Jimmy Morris. Australian born actress, Rachel Griffiths, plays a native West Texan better than a lot of Texans I know; and Dennis Quaid was perfection  cast as the wannabe, gonnabe and humble winner with as much psychological baggage as the average viewer in the audience. It's real. The on-screen chemistry works. If you like baseball heart-warmers, you're going to love this film. The ingredients for Americana and apple pie were all in there. My popcorn became the a la mode'. <br /><br />And hey: buy the CD! The music rocks and carries the story magnificently! Syncing words and music pushes the story forward exactly the way it should, an area that disappoints me more often than not.<br /><br />Criticisms: I'd have given the baseball to somebody else. But Quaid has something to teach us all about character' and heart. St. Rita and the nuns were a nice decoration, but they never really found their place in the story to open and close around them. A little long. Worth every minute in the last analysis. 8 / 10. <br /><br />\r\n1\tIf the themes of The Girl From Missouri sound familiar it should. That's because Anita Loos who wrote the screenplay here also wrote the classic Gentlemen Prefer Blondes. Unlike Marilyn Monroe in that film, Jean Harlow will accept any kind of jewelry from men of means.<br /><br />And it's men of means that Jean Harlow is after. She leaves the road side hash house run by her mother and stepfather because she's decided that the best way to gain the easy life is to marry it. Her talents as a chorus girl are limited, but she'll be able to trade in on that beauty.<br /><br />Her odyssey starts with her and friend Patsy Kelly getting an invitation to perform at a party thrown by millionaire Lewis Stone. But unbeknownst to Jean, Stone's just having a wild last fling before doing himself because of the moneys he owes not owns. Still she wrangles a few baubles from him that fellow millionaire Lionel Barrymore notices. <br /><br />Lionel's amused by it until Jean sets her sights on his playboy son, Franchot Tone. After that he is not amused and he looks to shake Jean from climbing the family tree.<br /><br />The Girl From Missouri went into production mid adaption of The Code so it went under peculiar censorship. I've a feeling we would have seen a much more risqué film. Still Jean Harlow as a younger and sassier version of Mae West is always appreciated. What a great comic talent that woman had, seeing The Girl From Missouri is a sad reminder of the great loss the world of film sustained with her passing three years later.<br /><br />Ironically enough the casting of Patsy Kelly with Harlow was no doubt influenced by the successful shorts Kelly was making with another famous platinum blonde, Thelma Todd. Harlow and Kelly have the same easy chemistry between that Patsy had with Thelma. Todd would also die a year later in a freak accident/suicide/homicide that no satisfactory explanation has ever really been given. <br /><br />Don't miss The Girl From Missouri, it's bright and sassy, must be from all that sparkling jewelry.\r\n0\t\"This early role for Barbara Shelley(in fact,her first in Britain after working in Italy),was made when she was 24 years old,and it's certainly safe to say that she made a stunning debut in 1957's \"\"Cat Girl.\"\" While blondes and brunettes get most of the attention(I'll always cherish Yutte Stensgaard),the lovely auburn-haired actress with the deep voice always exuded intelligence as well as vulnerability(one such example being 1960's \"\"Village of the Damned,\"\" in which her screen time was much less than her character's husband,George Sanders).She is the sole reason for seeing this drab update of \"\"Cat People,\"\" and is seen to great advantage throughout(it's difficult to say if her beauty found an even better showcase).Her character apparently sleeps in the nude,and we are exposed to her luscious bare back when she is awakened(also exposed 8 years later in 1965's \"\"Rasputin-The Mad Monk\"\").The ravishing gown she wears during most of the film is a stunning strapless wonder(I don't see what held that dress up,but I'd sure like to).All in all,proof positive that Barbara Shelley,in a poorly written role that would defeat most actresses,rises above her material and makes the film consistently watchable,a real test of star power,which she would find soon enough at Hammer's studios in Bray,for the duration of the 1960's.\"\r\n1\t\"This is a thoroughly diabolical tale of just how bad things can go wrong. A simple robbery. Pick up some serious change. Get our finances together and everything will be hunky-dory. Butmom and pop's jewelry store? No problem. Insurance pays for it all. No guns. Nobody gets hurt. Easy money.<br /><br />Older, more successful (it would appear) brother Andy (Philip Seymour Hoffman) has a few minor problems. Heroin addiction, cocaine habituation. A wife (Marisa Tomei) thatwell, he can't seem to perform for. His flat belly days long gone. Younger, sweet, slightly dim-witted younger brother, Hank (Ethan Hawke) with a few dinero problems of his own. Behind in child support payments for his daughter, in debt to friends and relatives, not exactly wowing them in the work of work, etc.<br /><br />Sydney Lumet, in this performance at the age of 82 (!), directs and gets it 99.99 percent right, which is hard to do in a thriller. I have seen more thrillers than I can remember and most of the time the director gets the movie printed and lives with the plot holes, the improbabilities, the cheesy scenes, and the hurry-up ending. Here Lumet makes a thriller like it's a work of art. Every detail is perfect. The acting is superb. The plot has no holes. The story rings true and clear and represents a tale about human frailty that would honor the greatest filmmakers and even the Bard himself.<br /><br />Hoffman of course is excellent. When you don't have marquee, leading man presence, you have to get by on talent, workmanship and pure concentration. Ethan Hawke, who is no stranger to the sweet, little guy role, adds a layer of desperation and all too human incompetence to the part so that we don't know whether to pity him or trash him. Albert Finney plays the father of the wayward sons with a kind of steely intensity that belies his age. And Marisa Tomei, who has magical qualities of sexiness to go along with her unique creativity, manages to be both vulnerable and hard as nails as Andy's two timing wife. (But who could blame her?) It's almost a movie reviewer's sacrilege to give a commercial thriller five or ten stars, but if you study this film, as all aspiring film makers would be well advised to do, you will notice the kind of excessive (according to most Hollywood producers) attention to detail that makes for real art--the sort of thing that only great artists can do, and indeed cannot help but do. (By the way, I think there were twenty producers on this filmwell, maybe a dozen; check the credits.) All I can say in summation is, Way to go Sydney Lumet, author of a slew of excellent films, and to show such fidelity to your craft and your art at such an advanced agekudos. May we all do half so well.<br /><br />Okay, the 00.01 percent. It was unlikely that the father (Albert Finney) could have followed the cabs that Andy took around New York without somehow losing the tail. This is minor, and I wish all thrillers could have so small a blip. Also one wonders why Lumet decided not to tell us about the fate of Hank at the end. We can guess and guess. Perhaps his fate fell onto the cutting room floor. Perhaps Lumet was not satisfied with what was filmed and time ran out, and he just said, \"\"Leave it like that. It really doesn't matter.\"\" And I think it doesn't. What happens to Hank is not going to be good. He isn't the kind of guy who manages to run off to Mexico and is able to start a new life. He is the kind of guy who gets a \"\"light\"\" sentence of 10 to 20 and serves it and comes out a kind of shrunken human being who knows he wasn't really a man when he should have been.<br /><br />See this for Sidney Lumet, one of Hollywood's best, director of The Pawnbroker (1964), The Group (1966), Serpico (1973), Dog Day Afternoon (1975), Network (1976), and many more.\"\r\n0\t\"LOL! Not a bad way to start it. I thought this was original, but then I discovered it was a clone of the 1976 remake of KING KONG. I never saw KING KONG until I was 15. I saw this film when I was 9. The film's funky disco music will get stuck in your head! Not to mention the film's theme song by the Yetians. This is the worst creature effects I've ever seen. At the same time this film remains a holy grail of B-movies. Memorable quotes: \"\"Take a tranquilizer and go to bed.\"\" \"\"Put the Yeti in your tank and you have Yeti power.\"\" I remember seeing this film on MOVIE MACRABE hosted by Elvira. There is one scene where it was like KING KONG in reverse! In KING KONG he grabs the girl and climbs up the building, but in this film he climbs down the building and grabs the girl (who was falling)! Also around that year was another KONG clone MIGHTY PEKING MAN (1977) which came from Hong Kong. There is a lot of traveling matte scenes and motorized body parts. This film will leave you laughing. It is like I said, just another KING KONG clone. Rated PG for violence, language, thematic elements, and some scary scenes.\"\r\n1\t\"\"\"8 SIMPLE RULES... FOR DATING MY TEENAGE DAUGHTER,\"\" is my opinion, is an absolute ABC classic! I'm not sure I haven't seen every episode, but I still enjoyed it. It's hard to say which episode was my favorite. However, I think it was always funny when a mishap occurred. I always laughed at that. Despite the fact that James Garner and David Spade were good, I liked the show more when John Ritter was the leading man. If you ask me, his sudden passing was very tragic. Everyone always gave a good performance, the production design was spectacular, the costumes were well-designed, and the writing was always very strong. In conclusion, I hope some network brings it back on the air for fans of the show to see.\"\r\n0\tSo so special effects get in the way of recapturing the interesting relationship between Uncle Martin and Tim O'Hara that we remember from the TV series. And what was with the suit? Annoying!\r\n0\tI usually like zombie movies, but this one was just plain bad.<br /><br />The good parts: Girl swimming topless with thong bottoms, Sonya Salomaa's topless, and Ona Grauer's boobs jiggling in a skimpy top when she ran.<br /><br />The bad part: too much video cuts, too much Matrix slow motion (it drags the action), not enough blood and guts, bad acting, and no story. The only other person in the theater was smart and left right after the topless swimming scene. A total waste of $6 and time. I give it a 2 out of 10.\r\n1\t8 Simple Rules is a funny show but it also has some life lessons especially one mature lesson about moving on after a lose which was the episode where Paul died which was the first episode I have ever watched of the show that comes on ABC. The Hennessy clan -- mother Cate (Katey Sagal), daughters Bridget (Kaley Cuoco) and Kerry (Amy Davidson), and son Rory (Martin Spanjers) -- look to one another for guidance and support after the death of Paul (John Ritter), the family patriarch. Cate's parents (James Garner and Suzanne Pleshette) lend a hand. I am glad later in the 2nd season of this show they decided to put David Spade in this show since he was done with the NBC series, Just Shoot Me! But all and all this show is pretty good. This show reminds me a lot of the classic family sitcoms from the 80's and 90's that used to be on ABC.\r\n1\tThis film was pretty good. I am not too big a fan of baseball, but this is a movie that was made to help understand the meaning of love, determination, heart, etc.<br /><br />Danny Glover, Joseph Gordon-Levitt, Brenda Fricker, Christopher Lloyd, Tony Danza, and Milton Davis Jr. are brought in with a variety of talented actors and understanding of the sport. The plot was believable, and I love the message. William Dear and the guys put together a great movie.<br /><br />Most sports films revolve around true stories or events, and they often do not work well. But this film hits a 10 on the perfectness scale, even though there were a few minor mistakes here and there.<br /><br />10/10\r\n1\tLin McAdam (James Stewart) wins a rifle, a Winchester in a shooting contest.Dutch Henry Brown (Stephen McNally) is a bad loser and steals the gun.Lin takes his horse and goes after Dutch and his men and the rifle with his buddy High Spade (Millard Mitchell).The rifle gets in different hands on the way.Will it get back to the right owner? Anthony Mann and James Stewart worked together for the first time and came up with this masterpiece, Winchester '73 (1950).Stewart is the right man to play the lead.He was always the right man to do anything.The terrific Shelley Winters plays the part of Lola Manners and she's great as always.Dan Duryea is terrific at the part of Waco Johnnie Dean.Charles Drake is brilliant as Lola's cowardly boyfriend Steve Miller.Also Wyatt Earp and Bat Masterson are seen in the movie, and they're played by Will Geer and Steve Darrell.The young Rock Hudson plays Young Bull and the young Anthony (Tony) Curtis plays Doan.There are many classic moments in this movie.In one point the group is surrounded by Indians, since this is a western.It's great to watch this survival game where the fastest drawer and the sharpest shooter is the winner.All the true western fans will love this movie.\r\n1\tFatal Error is a really cool movie! Robert Wagner, Antonio Sabato Jr., Janine Turner, Jason Schombing, Malcolm Stewart, and David Lewis are in the film. The movie's cast all acted really well. Robert Wagner played his role good. The relationship between Saboto Jr. and Turner was a nice one. There maybe a big age difference there but they are a unique couple. The two actors really worked together rather well. The music in the film is really good by Ron Ramin and fits the flick very well. There is a bunch of stuff that happens in the movie which you don't know what is going on and what is going to happen next and this movie keeps you going from beginning to end. If you like Robert Wagner, Antonio Sabato Jr., and Janine Turner then watch this excellent movie!\r\n0\tYet another early film from Alfred Hitchcock which seems to have been done out of contractual obligation. As with Juno and the Paycock, you can tell that Hitchcock had little interest in this movie. There is almost no style or craft to it at all. The story revolves around Fred and Emily, a young married couple, who come into some money and go on a cruise which proves to be a test of their marriage. Emily is given a chance at a new life with a good hearted, wealthy man who falls in love with her, but chooses to take the high road and stay with her husband. This might seem more believable if Fred weren't made out to be a completely insensitive, pompous ass who jumps at the first opportunity he sees to leave his wife for another woman. The couple ends up staying together, but the movie lacks any real reconciliation scene. The third act goes in a completely different direction, with the couple stranded on an abandoned ship and rescued by an Asian fishing boat. Joan Barry does give a very stirring performance as the faithful wife of an unfaithful husband. That's about all you can say for this one.\r\n0\tI had suspicions the movie was going to be bad. I'm a Duke's fan from way back. Have three years of the TV series on DVD. Well I was right. Took the family to see it. I really wanted to see the General jump again and some of the chase jump scenes were good. But to sum it up, the movie was a dumbed down tarted up version of the TV show.<br /><br />Jessica Simpson was pathetic. While I can honestly say that the original Daisy's outfits were just as revealing, Jessica Simpson's interpretation of Daisy was simply awful. Sorrel Booke and Denver Pyle must be rolling in their graves as well.<br /><br />Don't waste your money. If you are an old tried and true Dukes fan like me and my three kids are you will be very disappointed.\r\n0\t\"Strange... I like all this movie crew and dark humor movies; but didn't like this one at all! It's awful, horrible and surely not funny at all. Pity cannot do a whole movie plot, disgust either. And it was really boring. Long empty moments fills the movie; it could have been removed. It should have been in another shorter format, surely. Maybe i expected too much from the crew - like saving the movie lol -. It's also filled with overused clichés of characters and situations... I don't get it why people liked it... \"\"Poetry\"\", \"\"hope\"\"; nope 'mam, didn't see anything like that! ^^ All in all, it's empty and crude, pitiful and hopeless. Oh darn this one........\"\r\n1\tI have to totally disagree with the other comment concerning this movie. The visual effects complement the supernatural themes of the movie and do not detract from the plot furthermore I loved how this move was unlike Crouching Tiger because this time the sword action had no strings attached and most of the time you can see the action up close.<br /><br />I think western audiences will be very confused with 2 scenes one of which involves a monk trying to burn himself alive and the other concerning the villagers chanting that it is the end of the world. The mentioned scenes are derived from certain interpretations of Mahayana Buddhist text (Mahayana Buddhism can be found in China, Korea and Japan) and the other scene deals with a quirk in the Japanese calendar...people back then really thought that the world would come to an end... Gojoe has the action, story and visuals to mesmerize any viewer. I strongly believe that with some skillful editing it can be sold in the U.S. My one complaint is in the last fight scene (I can't give anything away--sorry).\r\n0\t\"I first didn't want to watch this film, for the trailer gave the impression of a common and too expected film...but as I recently had the pleasure to discover the surprising \"\"Mensonges et trahisons et plus si affinité\"\"\"\" which was beautifully directed and written by Laurent Tirard (screenwriter of \"\"prête-moi ta main\"\"), I changed my mind and decided to try it, thinking that \"\"Prête-moi ta main\"\", would be as good as \"\"mensonges...\"\". And it is absolutely not. The script is not bad, but it is not as well directed as \"\"Mensonges...\"\", the actors not as generous (especially Charlotte, as boring as she usually is) as Edouard Baer or Clovis Cornillac, and too be honest, I still don't understand how such crap can have such a success, even with such a casting... Anyway the story could have been a pretext to create so many interesting plots, but it is not as good as Tirard's \"\"Mensonges...\"\" though it's also written by him. Easy, unsurprising, and lazy work. Totally overestimated!\"\r\n0\tAs a kid, my friends and I all believed that Gymkata was the most violent, bloody movie ever made. I'm not sure who started that rumor. It was probably born out of the frustration of 10 year olds who weren't allowed to see it for one reason or other. Years after Gymkata was released, it became a perennial late night cable movie, and as a result, I've been able to make up for lost time. I must have seen scenes from this dreadful excuse for a film over a dozen times, and I can always spot it from 1-2 seconds of screen time. However, aside from the forced coupling of gymnastics and martial arts, the bad dubbing, the stiff dialog, and the outrageously difficult story-line, the film has some things going for it. With all that's bad about the movie visually, the sound is actually pretty entertaining. Never before has a punch or kick landed with so little force and so much volume! The canned kung-fu sounds are cheeky, but the slowed and pitched-down music, and the nearly 5 minute slow motion scene are truly weird. The chase through the city of demented, blood-thirsty villagers isn't really tense as much as it is irritating, and there are enough bad wigs and extras who all but look into the camera and wave to make this train-wreck a little fun. Could it be headed for cult-classic status? Where is MST3K when we need it?\r\n0\t\"I found it a real task to sit through this film. The sound track was not the best and some of the accents made it difficult to understand what was being said. There was little to move the plot along and often the action simply stopped and there was a prolonged period of conversations which seemed extraneous to the movie. These conversations switched between family groups and the observer was left to try and piece together what the common thread was that tied them together. It is rare that I rate a film this low and do so in this case as the entire viewing experience left me thinking \"\"so what\"\" and \"\"why did I waste my time watching this.\"\"\"\r\n0\t\"I got this movie out of Blockbuster in one of those racks were you can get like 5 movies for 20 bucks. I'd have to say I got my money's worth on this one. I had expected horrible dialogue, crappy monsters, and shaky cameras. Well, as Meatloaf said, two outta three ain't bad.<br /><br />The acting is bad, though not as bad as some movies I've seen. Or maybe I've watched so many low budget movies recently I've lost perspective. There are some bits were the acting is downright terrible, but for the most part it's of at least High School Play level.<br /><br />The CG for the Sasquatch in this movie is probably the second-worst part. The first thing I thought when I saw it (and I noticed another reviewer agreed with me) was that a man in an ape suit would have been better. Clunky stop-motion animation would have looked better.<br /><br />So you may be asking why I call the CG the second-worst part. That's because the very worst part of the movie is the sound effects. They are loud, annoying, and constant. I've been camping, I know what insects sound like in the woods at night, and while they can be loud, they're not deafening like the cacophony in this movie. Usually when the \"\"background\"\" sounds drown out the movie's dialogue, it's a bad thing, but from what I caught of the dialogue of this film, I wasn't missing much.<br /><br />The action was infrequent and boring. The tension was non-existent, as was any sense of empathy with the characters. Speaking of the characters, they were all cookie-cutter and bland. The only mildly engaging byplay was between...actually, I can't think of anything. There was a line or two that made me crack a wan smile, but that was about it.<br /><br />The cinematography was decent, a step or two above what you'd normally see in a movie like this. However, it still had that \"\"home movie\"\" quality to it that you get with movies made on pocket change and a prayer. <br /><br />If you're like me and get a kick out of shoestring budget genre flicks, and you see this one in the dollar bin, think about grabbing it. Otherwise, stay away at all costs.\"\r\n0\tSTAR RATING: ***** Saturday Night **** Friday Night *** Friday Morning ** Sunday Night * Monday Morning <br /><br />Long time inmate Twitch (Kurupt) gets himself transfered to a tougher prison than the re-opened Alcatraz. He claims it's to be closer to his lady but his real motives are a bit more grandiose. There he crosses paths with Burke (Bill Goldberg) a bulky prisoner who can take care of himself. Twitch, despite being less muscular, is just as mouthy and is pretty much the same. But there is a gang war brewing between the black and hispanic inmates that explodes into a hostile takeover of the prison when the black's gang leader is shot dead and the finger points at Burke. But the sh!t really hits the fan when the real killer and leader of the hispanics, Cortez (Robert Madrid) takes Twitch's girlfriend and Burke's daughter hostage.<br /><br />Steven Seagal doesn't do sequels (reportedly very opposed to the idea of Under Siege 2 and only agreeing to do it on the condition the film company he was with at the time let direct his own movie) so despite this being a DVD sequel, the lead role this time round goes to Bill Golberg (Steve doesn't even appear in some of the stock footage from the first film that appears towards the end.) But there's a reason he hasn't done much work since Universal Soldier 2 and that's because he's not much of an actor, and not much of an action star either, managing a character that begins as very dark and brooding but unsubtly turns into a standard action hero awkwardly quipping off dull one-liners. Support wise, veterans from the first film, Kurupt and Tony Plana, have merely jumped at the chance of extra work.<br /><br />This is a film that's tried to copy the style of the original quite well, with the dim lighting, dark shadows and rap music playing over a lot of it. It does this quite well, unfortunately it can't contend with an unengaging hero, an equally cardboard villain and an apathetic story that the makers do very much seem to have made up as they went along. **\r\n1\t\"This is my favorite of the three care bears movies. Once again I liked all the songs. The big problem however as most people have pointed out was that this story contradicts the original. For those that saw the first movie recall the bears met their \"\"cousins\"\" who they apparently never knew about. It wasn't of course until the end that the cousins received their tummy symbols after proving how much they cared. In this story however the cousins grow up with the care bears and have tummy symbols all along. That being said this isn't a bad movie as long you keep it separate from the first. I thought the Darkheart character much more evil then the Nicholas of the first. But at the same time I felt it added a sort of balance to the sweetness of the care bears. I also liked the we care part at the end, although I know other people had mixed feelings about that scene. And of course I LOVED the songs. My favorites being Growing Up and Forever Young. The care bears movies have always had such good songs. Ten stars for a very good movie.\"\r\n1\tThis recreation of the infamous 1959 murders in Kansas, based on the Capote book, is starkly filmed by Brooks and cinematographer Hall in black and white, giving it a documentary feel. There are good performances from Blake and Wilson as the killers and Forsythe as a cop who pursues them. The scenes leading up to the murders, filmed at the actual house where the crime occurred, with a soundtrack of whistling winds, are quite intense and chilling. Brooks directs with a lot of verve and uses several interesting transitions between scenes. The only complaint is that it is a bit overlong, with the denouement dragged out and somewhat preachy.\r\n0\t\"I firmly believe that the best Oscar ceremony in recent years was in 2003 for two reasons: <br /><br />1 ) Host Steve Martin was at his most wittiest: \"\" I saw the teamsters help Michael Moore into the trunk of his limo \"\" and \"\" I'll better not mention the gay mafia in case I wake up with a poodle's head in my bed \"\" <br /><br />2 ) Surprise winners: No one had Adrien Brody down for best actor ( Genuine applause ) or Roman Polanski for best director ( Genuine jeers and boos ) but they won <br /><br />Last year's award ceremony wasn't too bad but there was little in the way of surprises and I was happy to see RETURN OF THE KING sweep the awards even if it wasn't the best in the trilogy ( FELLOWSHIP was much better )but what let the BBC coverage down was Jonathan Ross getting a few of his sycophantic mates round and pretending they were hilarious when they were anything but . So when I heard Sky were doing the coverage for British TV I was expecting Barry Norman and Mark Kermode to be doing the links , but instead we ended up with Jamie Theakston and Sharon Osbourne ! Oh gawd if British TV are desperate for film critics ( Obviously they are ) I'm sure both Bob The Moo and Theo Robertson will happily fly over to LA to give their honest opinions on the winners and losers <br /><br />Chris Rock wasn't too bad , but he's no Steve Martin while the location seemed to resemble a sports hall with seats put in ! Not much of a glitzy arena in my opinion . The main problem I had with the ceremony was the format with the \"\" minor \"\" Oscars handed out to the winners who were sitting in their seats ! There's no such thing as a \"\" minor \"\" Oscar and just because the award is for Best Animated Short or Best Costume Design they're as well deserved as Best Picture or Best Director . All the winners should be allowed to march up to the podium . What a bunch of arrogant snobs the Academy are becoming and I quite agree with the comments that this format is disgraceful and if it wasn't for the surprises this could possibly have been the worst ceremony in history . As for the awards themselves <br /><br />Best Supporting Actress - Cate Blanchett . No great surprise for a competitive category <br /><br />Best Supporting Actor - Morgan Freeman . No real complaints since Freeman is one of America's greatest living character actors <br /><br />Best Actor - Jamie Foxx . Most predictable award of the night . Yawn <br /><br />Best Actress - Hilary Swank . Major surprise since everyone thought Annette Benning was going to win simply down to academy politics but Swank did deserve it and gave the best speech of the night <br /><br />Best Director - Clint Eastwood . Major surprise since everyone thought Scorsese was going to get the award simply because he'd never won one . Actually I'm glad about this because if he didn't deserve it for TAXI DRIVER , RAGING BULL or GOODFELLAS he didn't deserve it for THE AVIATOR <br /><br />Best Film - MILLION DOLLAR BABY . Again another major surprise since everyone thought the academy would split the awards for best director and best picture while I thought the Hollywood friendly plot of THE AVIATOR would have made it a dead cert for Best Picture while MDB's controversial subject matter would have turned a lot of voters off <br /><br />What these awards perhaps illustrate is that this year the voters have decided to ignore Oscar politics and genuinely give out awards to people who deserve it something they haven't done in the past , I mean A BEAUTIFUL MIND beating THE FELLOWSHIP OF THE RING for gawd's sake ! And long may the academy vote with their heads instead of their hearts\"\r\n0\t\"I watched this film based on the very favorable reviews that I read about it here by others.<br /><br />They definitely saw something in this movie I didn't see, that's for sure.<br /><br />The movie starts off at a good pace, and the first 15 or 20 minutes of it are interesting, then it begins to get logged down and draggy, not to mention completely unbelievable.<br /><br />Eventually you find yourself saying: \"\"What?!? He's going to do that too? Just how far is he going to go with this thing?\"\"<br /><br />The plot begins with Jeff Goldblum's character, John, going into a deli to purchase a bottle of wine. There is a robbery and a new store clerk, Auggie Rose, gets killed during the robbery. <br /><br />John gets in the ambulance and goes to the hospital with the guy. This seems a little much, but wait, there's more.<br /><br />John becomes totally obsessed with Auggie Rose. <br /><br />For reasons that never make any kind of logical sense, John, who has a very good life, a beautiful, loving girlfriend, a secure, well-paying job, nice house, nice car, expensive suits--decides he wants to be a loser like Auggie Rose was, and experience life in a low paying job, living in a dump with a dippy girlfriend and possible connections with dangerous people.<br /><br />Why this dim-witted, half-baked film got favorable reviews I'll never know. Sure Goldblum does a good acting job - he always does - and his looks have improved with age -- but unless you have a BIG infatuation with Jeff Goldblum and have to see every film he's in, I wouldn't recommend this turkey. It's approximately two hours of your life you're not going to get back - and believe me - you'll have nothing to be thankful about when those two hours are over, other than being grateful you're not still sitting there watching this film!<br /><br />\"\r\n0\tWell, I had to sit down at the computer and write down the review immediately after watching this puddle of ooze. Why? Because I have to let it be known to all of you just how bad this movie is. It's unbelievably bad. Just to let you in on how bad it is, I'll offer this little detail about the movie. During scenes of mayhem, which usually consists of people shooting or kicking zombies, they intercut scenes from the video game. Yes, you heard me right. This movie really sucks. In fact, it makes me think about the fact that it costs ten dollars these days just to get into the theaters these days. And to see corn filled crap like this? There is no story to speak of and the movie basically has nothing to offer other than the occasional boob shot and really cheap kills. I'm really disappointed with this, knowing that I watched it. OK, I'm dumbstruck. It's so bad I can't even find the words. RATING: ZERO out of *****.\r\n0\tHow has this piece of crap stayed on TV this long? It's terrible. It makes me want to shoot someone. It's so fake that it is actually worse than a 1940s sci-fi movie. I'd rather have a stroke than watch this nonsense. I remember watching it when it first came out. I thought, hey this could be interesting, then I found out how absolutely, insanely, ridiculously stupid it really was. It was so bad that I actually took out my pocket knife and stuck my hand to the table.<br /><br />Please people, stop watching this and all other reality shows, they're the trash that is jamming the networks and canceling quality programming that requires some thought to create.\r\n0\tMy life is about saving animals. I do volunteer work with a cat rescue organization. I am a vegetarian because I couldn't kill an animal even to sustain my life. I can't even kill a spider, I put it outdoors. The scene where the children throw rocks at the bird until it dies, with Sooner participating in an attempt to be accepted by the other children, made me sick and has haunted me ever since. It simply convinces me that human beings are pathetic in their need for acceptance. The ending - the foster parents adopt Sooner - does not redeem the depiction of animal cruelty. Why would anyone want their child to see this film?\r\n0\tThis movie is just bad. Bad. Bad. Bad. Now that I've gotten that out of the way, I feel better. This movie is poor from beginning to end. The story is lame. The 3-D segment is really bad. Freddy is at his cartoon character worst. Thank God they killed him off. And who wants to see Roseanne and Tom Arnold cameos?<br /><br />The only good thing in the movie is the little bit of backstory that we're given on Freddy. We see he once had a family, and we get to see his abusive, alcoholic father (Alice Cooper).<br /><br />Other than that, all bad. There are some quality actors in here (Lisa Zane and Yaphet Kotto), and they do their best, but the end result is just so bad. The hour and a half I spent watching this movie is and hour and half I can't ever get back.\r\n1\tSergio Martino has impressed me recently with his Giallo classics 'The Strange Vice of Mrs Wardh' and the unforgettably titled, 'Your Vice is a Locked Room and Only I Have the Key' - but even so, I wasn't expecting too much from this film. The Case of the Scorpion's Tail doesn't get mentioned as much as the aforementioned titles when it comes to classic Giallo discussion - but I don't know why, because this is at least as good as those two! Dario Argento may be the 'king' of Giallo, but with the five films that he made - Sergio Martino surely isn't too far behind. In some ways, he even surpasses the master. All of Martino's films were released prior to the jewel in Argento's crown, the magnificent Profondo Rosso, so back in the early seventies - Martino was the king! The plot here follows the idea of murder for profit, and follows the insurance payout of a wealthy man. His wife inherits $1 million, and it isn't long before there's people out for her blood! When she turns up dead shortly thereafter, an insurance investigator and a plucky, attractive young journalist follow up the case.<br /><br />The Case of the Scorpion's Tail may not benefit from the beautiful Edwige Fenech, but it does have two of Martino's collaborators on board. Most famous is George Hilton, who worked with Marino on The Strange Vice of Mrs Wardh and All the Colors of the Dark, along with a number of other Giallos. Hilton has a great screen presence, and every time I see him in an Italian thriller; it becomes obvious why he is repeatedly cast. The beautiful Anita Strindberg, who will be remembered from Your Vice is a Locked Room, stars alongside Hilton and excellently provides the classic Giallo female lead. Sergio Martino does a good job in the director's chair once again, with several beautiful scenes - the best of which taking place in a room bathed with green lighting! The score by Bruno Nicolai (Wardh) excellently sets the mood, but it is the script that, once again, is the driving force behind Martino's success. Ernesto Gastaldi, the writer for Martino's other four Giallo, has put together a script that is thrilling while staying away from the common Giallo pitfall of not making sense; thus liberating this film from the rest of the illogical genre. The Case of the Scorpion's Tail is a quality Giallo film, and yet another success for the great Sergio Martino. If you like Giallo, you'll love this!\r\n1\tI cannot stop saying how much I loved this movie. This movie is one of the least known and one of the funniest movies I have ever seen. The movie follows the exploits of a rap group, NWH (Ni#$%rs with Hats) It goes from the beginning of the group to the end of the group, after it's tragic break up. Following the group is documentary maker Nina Blackburn. <br /><br />The movie is on a shoestring budget, but it does not seem to matter, this is a very well made, well produced film and the performances by all of these actors and actresses are excellent. The main strength of this movie is the writing, there are so many brilliant lines and takeoffs on rap in this movie, it is unreal. <br /><br />SPOILER<br /><br />There are takeoffs on actual rappers, like MC Slammer, Vanilla Sherbert, Ice Cold, Tone Def, Tastey-Taste, and songs (Booty Juice, Grab Your Dick, Etc.) Rusty Condieff has made an excellent film. In the movie he plays rapper Ice Cold. The movie does not quit, it is funny from the beginning to the end. <br /><br />The movie works so well because it becomes outlandish on occasion, but it strikes that line where it is funny without going too far out there. Listening to the three leads try to talk some kind of philosophy was one of the best parts of the movie, like Tone Def telling a record producer, when you take the bus, you get there', and the producer responding, that's deep!'<br /><br />The group portraying N.W.H. has some sort of natural chemistry to them. They work so well together, and they manage to pull this movie of to where there is not a week moment in the film. What really makes this movie so good is how true to some of the rap groups of the time this movie is. Many rap groups had problems with violence, with censors, and like NWA, the group only became popular when the establishment began to make a big deal out of the controversial lyrics.<br /><br />I like this movie because it is offensive. There is something here to offend everyone in a good natured way. The movie has a takeoff on a good number of people too outside of rap, the funniest being of Spike Lee. Where they came up with this dialogue I cannot imagine. The movie has line after line that will have you rolling on the floor. As I said before the writing is just excellent.<br /><br />I am not surprised that this movie met such limited release. It is an intelligent, controversial, and even thought provoking film. This is too much for mainstream, despite the fact it is hilarious, and nearly flawless in it's production. There are no major stars, but a lot of familiar faces, including Marc Lawrence, who plays Tone Def. Watch this movie, at the very least you will definitely have an opinion of it.\r\n1\t\"Often laugh out loud funny play on sex, family, and the classes in Beverly Hills milks more laughs out of the zip code than it's seen since the days of Granny and Jed Clampett. Plot centers on two chauffers who've bet on which one of them can bed his employer (both single or soon to be single ladies, quite sexy -- Bisset and Woronov) first. If Manuel wins, his friend will pay off his debt to a violent asian street gang -- if he loses, he must play bottom man to his friend! <br /><br />Lots of raunchy dialogue, fairly sick physical humour, etc. But a lot of the comedy is just beneath the surface. Bartel is memorable as a very sensual oder member of the family who ends up taking his sexy, teenaged niece on a year long \"\"missionary trip\"\" to Africa.<br /><br />Hilarious fun.\"\r\n0\tWhen a film is independent and not rated, such as the Hamiltons, I was expecting out of the norm, cut out your heart violence. I know that good movies don't always contain blood and violence, but I read reviews, I visited the website, and I even convinced a few of my friends to pay $9.50 to see this god awful movie with me. When there is a festival called Horrorfest, I am expecting horror, not Dawsons Creek with incestuous undertones. My expectations were extremely low for this film, yet the little expectations there was for the film were shot to hell once I saw that an hour had passed before we saw the first drop of blood come out of someones finger. There were too many plot holes and left too much to the imagination. I regret not seeing Happy Feet. I think there might have been more violence and gore in that movie than in the Hamiltons!\r\n0\tThis was one of the most ridiculous and badly directed movies I've seen in a very long time. I've never liked Spike Lee, but thought I'd give this one a try: bad mistake. The movie is supposed to show how the Son of Sam real life murders affected a neighborhood in the summer of 1977; what it really did was center around the most boring characters that I doubt anyone cared for as far as their drug problems, marriage problems, and so on, etc. The scenes that depict the murders are just that, and nothing more; a shooting and then it's back to Saturday Night Fever! What's even more ridiculous is Spike Lee's choice to show up as a reporter in the movie: Spike, trust me, you're no Hitchcock, stay out of the movies, it makes them even worse off. The most silly scene had to be the dog speaking in a goofy voice, which was depicted in a scene before it where it was supposed to have been shot??? Spike, what were you thinking when you made this film? Not thinking at all is my guess. People who think they'll see a crime drama, take my advice and do not waste your time or money on this loser. You're better off watching Jerry Springer in this case! Waste of film, I gave it a 1 out of 10: awful dud.\r\n0\tOh dear lord. This movie... It was horrible. I am a HUGE fan of horror movies. And most of the time, horror movies other people say are bad, I like. The actor who played 'Scarecrow' was amazing, I will say that. But this plot was awful. It made no sense! It had way too much gore, and an unnecessary (and revolting) sex scene at the beginning. I do believe the director was trying to be 'shocking' or whatnot, but it just came out awful. To add to the pile of festering crap they called a plot, the actors (besides 'scarecrow') we're awful, and I cared so little about them that I soon forgot who was who. In conclusion, this movie made me sick. If you can avoid watching this movie in anyway, please do.\r\n1\t\"Well its about time. I had really given up any and all hope that there was going to be a standout episode among this season's entries. While there have still been far too many drab to hohum entries, at least this episode turned out well. Its rather funny that director Rob Schmidt who only has the not bad Wrong Turn to his credit and writer John Esposito whose only scripting chores to date have included Tale Of The Mummy and Graveyard Shift should be the ones to give us the best written and most thought provoking episode of the season. In \"\"Right To Die\"\" we are treated to the story of Cliff and Abbey. At the start of the episode the couple are having a conversation. Abbey has caught Cliff cheating and he is desperately trying to win her back. While they speak, they find themselves in a car accident where Cliff is left with only scratches and bruises, but Abbey is thrown from the car and catches on fire when a spark ignites and gasoline that had dripped onto her catches her on fire. And this is just the setup people. Once in the hospital Cliff must decide whether or not Abbey should live in this state with no skin and only nerve reflexes. There's also a side effect too. Every time she flatlines, Abbey goes a walking as a ghost and causes trouble for all sorts of people. Hands down this is the best episode of the season and certainly ranks as one of the top episodes ever. From the gruesome effects to the taut script which threw in a few twists I never saw coming and suspense so palpable you can almost touch it, Right To Die should have the right to go on living forever.\"\r\n1\t\"Of course, by any normal standard of film criticism, Soldier is a very poor film indeed. Kurt Russell is a futuristic super soldier raised since birth to kill but then made obsolete after being bettered by a bunch of really super soldiers at a dangly hoop ruck that looks a bit like a Gladiators contest without the crash mats.<br /><br />Abandoned on a junk planet, he's befriended by a community of naff space hippies that teach him about gardening, family life and, um, breasts. Kurt doesn't talk much. Finally the really super soldiers turn up and kill the hippies by shooting them in the back while they're running away. Kurt gets angry and kills everyone. A planet gets totalled. The end.<br /><br />Unless the Academy start a new category for \"\"Best Explosion\"\", Soldier is not going to win any awards. However, as ludicrous as it is, it remains an enjoyable experience. The military hardware is the coolest since Aliens (the APC's especially) and, at 90 minutes long, it doesn't outstay its welcome. Please note that the below mark is only a guide. Knock five points off if you intend to take it seriously and discount one more if you don't like miniguns.<br /><br />7 out of 10\"\r\n1\t\"I thought this would be a sequel to the original \"\"36th Chamber of Shaolin\"\" but actually it's more of a light-hearted \"\"sister\"\" to the original. Gordon Liu still stars as a would-be hero on a quest to learn kung fu to defeat those pesky Manchus... but this time around it's lighter and more comedic. The film centres around the local dye mill, where wages are cut due to the hiring of 10 new Manchurian bosses. Liu plays \"\"Chao\"\", who is able to fool the mill bosses into thinking he is a shaolin monk possessing almost magical kung fu skill. But his luck runs out, he is exposed as a fraud, and he promises the mill workers that he will go to the Shaolin monastery to learn kung fu, and return to protect them.<br /><br />The comedy really begins at the monastery where Chao makes several bungling attempts to get accepted. This sets up lots of really funny moments, and lots of great fight choreography. Continuing in the \"\"36th Chamber\"\" tradition we see all kinds of neat and interesting (and supremely hokey) training methods at the monastery as well as creative uses of wooden benches as weapons.<br /><br />Also unique and of note is the blending of kung fu and the craft of bamboo scaffold building. Chao is not accepted as a student at Shaolin but is made to build bamboo scaffolding for the \"\"10 year restoration\"\" of the monastery. On the DVD I bought there is a special on bamboo scaffold building and the inspiration that director Lau Kar-Leung drew from it. This is a craft many hundreds (perhaps thousands) of years old, and in Hong Kong scaffolding is still built of bamboo even on large high-rises, though the West exclusively uses steel tubes and clamps. As a result of his scaffolding work, Chao develops a special style of kung fu... when asked what kind it is, he hilariously replies \"\"scaffolding kung fu!!\"\" which he first tests during a dust-up with the monastery's Abbot. In the final confrontation with the Manchus, there is a dazzling array of creative uses for bamboo poles and ties.<br /><br />From a comedy perspective, I think it's one of the best of the kung fu genre. As a kung fu film in general, it also stands out... I recommend it to anyone!\"\r\n1\t\"The main problem of the first \"\"Vampires\"\" movie is that none of the characters were sympathetic. Carpenter learned from his mistake and this time used a likable vampire hunter and a charismatic vampire. The female vampire Una certainly is the coolest vampire since Blade's Deacon Frost. Unfortunately while there are some good concepts like a cool slow motion restaurant scene (why didn't Carpenter use more of this??) this movie is nowhere near as good as it could have been. I expected to see strong vampires in action and at least one longer lasting nicely choreographed fight sequence (for example inside a city) and was left somewhat disappointed. While \"\"Los Muertos\"\" proceeds at a faster pace than its predecessor, it still drags a little in some parts (though nowhere near as bad as \"\"Vampires\"\" did). Much like \"\"Vampires\"\" however this movie's climax near the end is not very intense.<br /><br />Most of the above may sound like \"\"Los Muertos\"\" is a bad movie but it definitely isn't. It is generally enjoyable and ranks among the better entries to the genre. It is neither an unoriginal Dracula remake (like almost every other vampire movie out there) nor is it an unintelligent action spectacle like Blade II. It simply could have used a bit more excitement.<br /><br />I'd really like to see a third installment made by Carpenter but it's probably not going to happen.<br /><br />SPOILER WARNING The ending was way too predictable. Una should have gotten away- that would have made the movie quite unusual.\"\r\n1\t\"I consider myself a great admirer of David Lynch's works, for he provides the viewers with absolutely unique motion pictures with typical \"\"Lynch-elements.\"\" Having seen most of his works, I naively thought I could predict Lynch's next step. I was dead wrong. Dumbland is something I could have never imagined under the name of David Lynch. Still, after my recovery from the first shock, I started to contemplate about this extremely primitive main character, and I drew the conclusion that all the absurdities, cruelty, brutality and disgust presented here are mirroring bits from reality, being emphasized by distorting it. There are things in our lives we hardly ever emphasize, for they are either disgusting or horrible, however, they are surrounding us, so I take the courage to say, Dumbland focuses on these bits and pieces. This is not a movie to enjoy, though you'll sometimes laugh out of a strange, perverted sense of humor, this is an animated reflection of all things we rather reject to observe, with its simplicity, morbidity and absurdity. Take it as it is, you don't have to like it. It just exists. And finally, if you're attentive enough, you'll find elements typical to Lynch as well. I recommend it for tolerant people!!!\"\r\n1\t\"I watched 'Ice Age'in the movie theater and I liked the movie. Spite of the fact that 'Ice Age'has many flaws and scientific errors,like humans,sabers,dinosaurs and mammoths living at the same period, and even the location of where the story passes(looks North America,but has some characteristics from Iceland for example) we can have fun even so.(unless you are very severe!) <br /><br />The planet is entering an ICE AGE, and many animals are immigrating to the south where is warmer. Sid is a stupid Sloth that is left behind by his own family, that can't stand him any longer.Walking in his way, he meets Manfred,or how he calls '' Manny'' a moody mammoth who does not care about extinction or immigration and is going to the north. Worried that he can easily be captured, Sid decides to follow Manfred, and in the middle of their journey, they found a human mother with her baby. The mother dies but Manfred and Sid decides to take him and return the baby for the humans. Diego, one of the sabers, decides to follow and help them to go to a shortcut to the human's camp. What Manfred and Sid does not know, is that Diego is from a saber clan who hates humans and wants to kill the baby, and also pretend to betray they both to make they become saber's food. What will happen, will depend of Diego's behavior and conscience...<br /><br />aka \"\"A Era do Gelo\"\" - Brazil\"\r\n1\t\"Thought at first this film would be your typical Western film, however, it turned out to be very interesting and kept me spellbound right to the very end, which turned out very unusual. Charlton Heston,(Sam Burgade),\"\"Midway\"\",'76, had past experiences with James Coburn,(Zach Provo),\"\"Deadfall\"\",'93, and Zach never forgave Sam and would stop at nothing to make sure he caught up with him and paid him back. Unfortunately, Barbara Hershey,(Susan Burgade),\"\"The Portrait of a Lady\"\",'96, managed to get caught up in this situation and found herself among sex starved men who never seemed to leave her alone. Sam Burgade had to make some very hard decisions and and I was quite surprised at the conclusion. This is a very entertaining film and the acting was outstanding.\"\r\n0\tThis film is really ONLY Bill Maher's interpretation of religion. There are several funny moments, and some interesting points, but don't go into this expecting an even-handed discussion of religion. This is what I consider to be the worst kind of documentary - Everything is arranged ahead of time and in editing to provide you with the opinion of the director, rather than letting you make your own decision.<br /><br />EDITING - It's very chopped up, inter-spliced with clips from pop culture and the media to reinforce the point. The interviewee barely has a chance to finish a sentence before he is interrupted by the editing. The only people given a fair chance to speak their mind are those who say what Bill Maher wants them to say. Once someone deviates from the gospel according to Maher, they get edited.<br /><br />INTERVIEWEES - They are meant to represent the absolute MOST extremist religions. From the TV evangelical to the ultimate Jewish stereotype, to a TRUCK STOP chapel (Seriously. A TRUCK STOP CHAPEL). He's picked the worst money-grabbers, the heavy extremists, and those who don't have the budget to say no to pick on. And when he does get a good person to interview, he edits the hell out of them.<br /><br />STEREOTYPING - All religions are portrayed as stereotypes. Especially hard hit are the Muslims. During the Muslim segment, he barely gives anyone the chance to speak before interrupting them either himself, or through editing in pieces with suicide bombers. ALL Muslims are portrayed as gun-toting extremists through the editing, and none of the people interviewed is edited fairly.<br /><br />ENDING - The message at the end is INCREDIBLY heavy-handed, and while it is an interesting idea, it's not presented with fairness to the countless people who are not religious extremists. Bill Maher explains himself while clips of destruction play in the foreground. This literally gives the message that religion is stupid and dangerous, and that it will destroy the world. He also states that everyone involved in religion is stupid.<br /><br />With the faults to the film, it has some good points, and the humor, while very unfair, is actually funny. But know going in, it is a very one-sided view, Bill Maher's view, of religion. He's not discovering anything. He's telling you what he thinks.<br /><br />4/10 - Some good moments, but heavy-handed with an extremely irresponsible documentary style.\r\n1\tI love Sabrina! Its one of my fave shows!! My favourite episodes are; the one where she turns Libby into a geek, the first episode, the true love episode and most of the rest from the first series. I do think the college episodes were not as good as the high school ones but they were better than the last series which was awful. Valerie was a good character as she was more rounded than Jenny, but Jenny was in some brilliant episodes. Hilda and Zelda were amazing, and there seemed to be no explanation for where they went! Libby was a good character too. I never liked Morgan or Roxy, they just weren't as good as her other friends.\r\n1\t\"Personnaly I really loved this movie, and it particularly moved me. The two main actors are giving us such great performances, that at the end, it is really heart breaking to know what finally happened to their characters.<br /><br />The alchemy between Barbra Streisand and Kris Kristofferson is marvelous, and the song are just great the way they are. <br /><br />That's why I didn't feel surprised when I learned it had won 5 golden globe awards (the most rewarded movie at the Golden Globes), an Oscar and even a Grammy. This movie is a classic that deserves to be seen by anyone. A great movie, that has often been criticized (maybe because Streisand dared to get involved in it, surely as a \"\"co-director\"\"). Her artistry is the biggest, and that will surely please you!\"\r\n1\t\"I remember when this film was up for the Academy Awards and did not win in any category. For the life of me, I cannot remember what it was up against, but one thing I can say: It was one of the best movies I have ever seen. And the fact that Steven Spielberg directed the film did not persuade me one bit.<br /><br />Essentially, it is about a black woman's trials and tribulations as she is growing up from a girl to a woman. There are a lot of insinuations that are disturbing and horrifying, but all of them are needed to see how much this woman has put up with. Along the way, we see other women who have had to put up with their hardships and walk with them to redemption. Whoopi Goldberg gives her best performance ever in this movie. Danny Glover should have also gotten at least nominated for his role in this film. <br /><br />And the best part of this movie is that it treats its subjects humanely, not like some sideshow freak shows like the more recent \"\"Beloved\"\" did. I encourage anyone of any race to see this film. 9/10\"\r\n0\t\"Let this serve as a warning to anyone wishing to draw attention to themselves in the media by linking their name to that of a well-loved and well-respected, not to say revered author, in order to draw attention to their home-movies out on DVD.<br /><br />Hyped to the skies by its obviously talentless makers, in fact lied about only to be revealed, finally, as ludicrously inept in every department, the fans of Wells and of his book have been after the blood of its Writer-Producer-Director since it appeared on DVD.<br /><br />Many good points have been made by the other comments users on this page. Particularly the one about using this as a teaching aid for Film School students, since this \"\"film\"\" does not even use the basic grammar of scripting, editing, continuity, direction throughout its entire 3 hours running time. It is possible the Director did show up for the shoot. Certainly there was no-one present who knew even remotely what they were doing.<br /><br />An ongoing thread continues to evolve on this IMDb page which should at least furnish the watchers of this witless drivel with a few laughs for their $9.00 outlay.<br /><br />Much was promised. Absolutely nothing was delivered. Except \"\"Monty Python Meets \"\"War of The Worlds\"\" with all the humour taken out.<br /><br />Indefensible trash. Just unbelievable.<br /><br />There are REAL independent film-makers out there to be checked out. People who actually try to work to a high standard instead of flapping their gums about how great their movie is going to be.<br /><br />People could do worse than keep an eye on Brit film-maker Jake West's \"\"Evil Aliens\"\" for example.\"\r\n1\t\"This hard-hitting, often violent western in the Peckinpah/Leone tradition is surprisingly directed by Andrew V. McLaglen, whose previous westerns (particularly those that starred John Wayne) were mainly in the John Ford mode. It is both surprisingly traditional (good guys/bad guys) and incredible up-to-date as well.<br /><br />Heston portrays a former captain of the Arizona territorial police who has been in retirement for a year, having turned over the law enforcement reins to a reform-minded sheriff (Michael Parks) and finding his ways of enforcing the law being taken over by autos, telegraphs, telephones, and the railroad in the first years of the 20th century. But soon he is confronted with a menace from his past--a half-breed outlaw (Coburn) that he put away more than a decade before for a train robbery that killed four guards. In a subsequent shootout, Coburn's wife was killed; and so Coburn is out for a most nasty sort of revenge. It involves the kidnapping and, eventually, the rape of Heston's daughter (Hershey) by him and his gang. The result is a taut and violent pursuit through the mountains and deserts of southern Arizona.<br /><br />THE LAST HARD MEN, based on Brian Garfield's novel \"\"Gun Down\"\", is violent in many places, including the showdown between Heston and Coburn, and the rape scene involving Hershey and two members of Coburn's gang (Quade, Paull) is probably every bit as questionable as similar scenes in STRAW DOGS and DELIVERANCE. But that doesn't detract too terribly much from the film's psychological approach to the western genre. McLaglen is able to handle the bloody story with significant panache, and Heston's performance as an aging lawman was probably the best one he ever gave in any of his 1970s films. Coburn makes for an especially cold-blooded heavy, and both Parks and Chris Mitchum (as Hershey's intended husband) do good turns as well. The music here is cribbed from Jerry Goldsmith's scores to 100 RIFLES and the 1966 remake of STAGECOACH, but it still works here.<br /><br />Wisely filmed totally on location in southeastern Arizona, and utilizing the Old Tucson set, THE LAST HARD MEN needs to be released by Fox on VHS and/or DVD soon. It is a western that deserves nothing less.\"\r\n0\tThis movie stinks! You will want back the two-plus hours it takes to get through it. Sliding Doors, w/ Gwyenth Paltrow and directed by Peter Howit, did what Melinda & Melinda tries to do much much MUCH better. That movie was clever, witty, and well-acted. I cared about what happened to both Gwyenths -- or rather the characters she played -- and the performances by supporting cast were fantastic.<br /><br />Where as Melinda & Melinda is tiresome, the dialogue is contrived and I could have cared less about any of these people -- least of all Melinda. One Melinda is so dysfunctional -- her first glass of wine is at 10 a.m. -- and so melodramatic she is laughable, and not in the comedic sense. The 2nd Melinda is fine, but forgettable.<br /><br />Woody Allen's previous ensemble movies worked because, I'm guessing, he spent time on the screenplay and the actors were talented. One piece of trivia for this movie is that he wrote this screenplay in two months: you can tell. And while Chloe Sevigny is talented -- those around her are not, not enough to be a whole presence. The movie ends up being Chloe Sevigny and a bunch of other people you know you've seen in other movies but can't quite remember which ones.<br /><br />Sad, very sad.\r\n0\t\"Coyote Ugly might have been much more effective if the film-makers had made it an R-rated guilty pleasure/exploitation film (with plenty of nudity.) But since the PG-13 rating is what all the studios are wanting these days, we end up with a movie like this: a PG-13 \"\"tease\"\" flick that isn't allowed to go nowhere near as far as the movie should have gone.<br /><br />The script is go generic that it is easy to guess what plot point is going to occur 15 minutes before it actually happens. The acting is adequate, but the characters are so paper-thin that nothing could be done with them. There were also a lot of points where it seemed like I was watching a music-video rather than a movie.<br /><br />The film's only assets are the amazingly beautiful female leads. We get to see them in some extremely tight and pretty revealing outfits.....but only so much could be shown due to the PG-13 constraints. There's plenty of cleavage and toned, heaving bodies doing some well-choreographed dance numbers, but there's no nudity or sex to speak of. Tyra Banks (she keeps getting even more insanely beautiful with age) is also in the movie for a very small amount of time. Sexy newcomer Piper Perabo is also very easy on the eyes (and she has a killer smile) and shows some genuine acting potential.<br /><br />The only people I could see this movie appealing to is pre-pubescent boys who aren't allowed to watch R-rated movies yet. That audience might get a lot out of it from a titillation aspect, but adult audiences will feel annoyed and cheated.<br /><br />Rating: the movie-1 the women-10\"\r\n0\tEven if 99,99% of people that has seen this movie is Brazilian, I'll keep up with the English since it is the language of this website.<br /><br />This movie is a piece of cr*p. Worst acting I have seen for a loooong time. The kids are terrible. Specially the boy. This was the first time I saw someone with less facial expression than Arnold Schwarzenegger, and one single voice tone, like a 5 years-old kid reading in front of the class. How can someone so bad be the main actor of a movie ? The storyline is so shallow my daughter could have done better (she is 3 yrs old). It is so simple it could be written in a napkin and told in 3 minutes.<br /><br />There are only three possibilities for someone enjoy this movie: 1) you are a pre-teen; 2) you have been so brainwashed by Globo's stupidities that you think that anything that has the Globo's seal is awesome; 3) you have a serious brain damage.<br /><br />Avoid at all costs ! A shame to the Brazilian movie scene.\r\n0\t\"In my opinion, this movie's title should be changed from \"\"Only the Brave\"\" to \"\"All About Lane\"\". I went to a screening of this film a few months ago and was quite disappointed with the outcome. Although, I appreciate that the director made a movie about the men of 442nd - a subject matter that long deserved addressing in the film industry - the acting in some parts of film was quite stale. The performances of Marc Dacascos, Tamlyn Tomita, and Jason Scott Lee were all great. However, the director should have NEVER put himself as the main character in the movie. Sorry Lane, you are just not a film actor. Stick to what you're good at - theater acting. Gina Hiraizumi's performance in this film was also horrible. She should never have been given a speaking role and her looks were unfit to play the part of a Miss Nisei queen. There were other young actresses in the film who were naturally beautiful and whose performances were wonderful... Why weren't they cast for that role? Another major problem with this film were its action sequences. The Japanese-American soldiers don't look like they were fighting German soldiers... let alone anyone. Granted this was a low budget feature, but since this was a war-based film, isn't it important to show some actually fighting? This film was a worthy attempt, but definitely not worth a major distribution.\"\r\n1\t\"Absolutely wonderful drama and Ros is top notch...I highly recommend this movie. Her performance, in my opinion, was Academy Award material! The only real sad fact here is that Universal hasn't seen to it that this movie was ever available on any video format, whether it be tape or DVD. They are ignoring a VERY good movie. But Universal has little regard for its library on DVD, which is sad. If you get the chance to see this somewhere (not sure why it is rarely even run on cable), see it! I won't go into the story because I think most people would rather have an opinion on the film, and too many \"\"reviewers\"\" spend hours writing about the story, which is available anywhere.<br /><br />a 10!\"\r\n1\t\"Watching the commercials for this movie, I was fairly convinced that I was going to loathe it. For one thing, it was one of those \"\"loosely based on the novel\"\" movies, which usually means that the book author saw the script, hated it, and refused to be associated with the film. Worse, the trailer showed only the most mundane slapstick imaginable (ex: kid gets squirted in the face with a garden hose...and falls over). So when my little brother got it into his mind that this was the \"\"must see\"\" film of the season (of course, he thought the same thing about \"\"Cars\"\", \"\"Over the Hedge\"\", \"\"The Ant Bully\"\", \"\"Monster House\"\", etc, etc), I was admittedly less than thrilled.<br /><br />But once at the theater, the film won me over for a variety of reasons. First and foremost, the writers capture 'kid dialogue' better than just about any other children's film I've ever seen. A prime example of this comes directly after the boys' principal accidentally eats a worm stuck in an egg omelet. The boys do a lame, over-exaggerated impression of the principal lecturing them, which makes it realistic since all little kids think (mistakenly) that they do great mocking expressions of their adult tormentors. Then one of the boys asks, \"\"Why did he say, 'alley oop'?\"\" Another boy responds, \"\"Maybe he's crazy!\"\" and the entire group laughs uproariously. Not an overly witty rejoinder, but exactly the kind of thing a young kid would come up with on the spot and exactly the type of remark other kids his age would find hilarious. As if to confirm it, my kid brother laughed right on cue when they were spoken on-screen; I could practically hear his voice spouting the same exact lines if he was placed in a similar situation.<br /><br />Another reason the movie works is that the writers manage to work in issues like bullying, sibling relationships, the new kid in school, and peer pressure/conformity without making any of them seem as though they were subplots for some after school special. For example, the bully (Joe) isn't stereotypical; he's definitely bad but not pure evil, and just enough of his home-life is revealed that the audience feels sympathy for him and understands his bullying origins. There's also no \"\"cue the dramatic music\"\" moment where Billy ('Worm Boy') realizes what a complete tool he's being to his younger brother Woody, and yet, by the end of the movie, some type of minor transformation has been made. There's some realism here in the way the characters resolve situations and in the way they relate to each other, and very little of it comes across as corny.<br /><br />The only drawback to the movie comes in the form of an absolutely laughable dance scene that even the creators of the infamous McDonald's dance party in \"\"Mac and Me\"\" would scoff at. Why oh why was it put into the movie?? Did Austin Rogers (Adam) pull a Macaulay Culkin and refuse to take the role unless he was given a vehicle to showcase his oh so impressive dancing skills? The entire sequence definitely did not need to be there and had slightly less comedic value than any given show on \"\"The History Channel\"\".<br /><br />Overall, though, this movie was excellent, and the length (about an hour and twenty minutes) was just about perfect. One of the best, most realistic live action kid films you'll ever see if you're ever around children or just remember what being a kid was actually like.\"\r\n0\t\"Director Kevin Connor and wannabe action-hero / romantic lead Doug McClure, re-team in this ghost story set in Japan. They had been moderately successful together in the 1970's, with the likes of 'The Land that Time Forgot' (1975), 'At the Earth's Core' (1976) etc. Without plastic monsters to carry the narrative along though, the results are shabby and derivative in the most corny way.<br /><br />The film begins with a prologue set in the 19th Century, with a samurai husband killing his wife and her lover before committing suicide. A move forward to the present introduces married couple Ted & Laura, visiting Japan and moving in to the house where the tragedy took place.<br /><br />No surprises as to what happens next, with the spirits of the dead starting to take over the new inhabitants with family friend Alex (McClure) assuming the role of the wife's lover.<br /><br />Everything rumbles clumsily along with the elegance and grace of a charging elephant, to an inevitable ( but surprisingly downbeat ) conclusion. Main points of interest are two feeble decapitations ( 'The Omen' has a lot to answer for in promoting this as a standard horror set-piece ), and the love-making scenes featuring the doe-eyed but extremely kinky Susan George. The first is a long 'Don't Look Now' inspired piece with her hubby, complete with piano music; the second a much shorter (probably at her insistence) entanglement with McClure, both looking pretty uncomfortable. Anyway, every cloud has a silver lining and both scenes show of her fantastic knockers so all is not lost.<br /><br />Overall I can't decide whether 'The House where Evil Dwells' is rubbish, watchable rubbish, or entertaining in a masochistic kind of way. If you're not into the genre there is nothing here at all, but for horror fans there is probably enough to provoke the odd rye smile and appreciative nod of respect for effort.<br /><br />BEST SCENE - in any other film the big, black, tree-climbing, Japanese-muttering mechanical crabs would have stolen the show. They are eclipsed though by the legendary family meal scene, where a ghostly head appears in the daughters soup. On seeing this apparition she asks what kind of soup it is (!!!!), to be told beef and vegetable, before uttering the immortal line \"\"Ugh - there's an awful face in my soup\"\". If this wasn't enough the reply is \"\"C'mon, eat your soup for Daddy.\"\" Laurel & Hardy rest in piece.\"\r\n0\t54 is a film about a club with that very title in the setting of the 70s era. It features the classic good-looking bartender. The sexy females. The high powered owner. The partying. When all entwined together chaos ensues, and the bartender (played by Phillipe) seems to be at the brunt of it all.<br /><br />I'm going to be as blunt and honest as possible, whilst avoiding any outright unfair or untrue comments (like, it's an 'ok' film). I really do find it a completely dire film complimented by it's dire cast. Every time I sit down to watch a film casting Salma Hayek, I am always awaiting to see her beauty, radiantly expressed simultaneously with a great performance, but, reality invariably reminds me quite abruptly how utterly talentless she is. I mean, really, what has she ever bequeathed the masses with, other than her immense table dance in 'From Dusk Till Dawn'...? The same goes for Ryan Phillippe, another poor actor who gives nothing to the screen but his good looks and insanely dull facade otherwise known as 'acting'. Mike Myers, isn't quite as bad as these 2, he does at least give the Film something worthy. Playing the seedy, extroverted co-founder of the 54 Club. The type that the majority watching would hate (i.e. job well done), he puts in a somewhat convincing performance that gave me rare enjoyment from the flick. But alas, it is not enough to rescue the film from it's baseless and flat nothingness. Most 'bad' bad films I find something to take from the film, but this has nothing to it, really. Neve Campbell isn't too bad, but she is just 'there'. The storyline is dull, it appears the writer was more bent on making a film of this style and embellishment and forgot to add anything else. Any meaning. Any class. Anything at all. Because like most ornaments, they are just hollow pointless objects, that are merely pretty to look at, much akin to the basis of this disastrous film.<br /><br />Genuinely an hour and a half of time I could have spent better doing something much more exciting, like talking to 90 year old relatives on the phone about the weather.\r\n0\t\"Hmm I agree with the reviewer who said that \"\"strange people with generous tastes have been reviewing this film\"\". I thought the film was intriguing enough to watch it. I think that was primarily because of Marsden and Speedman - not the plot.<br /><br />The bottom line is that this film is mildly psychologically tantalizing on the one hand and profoundly homophobic on the other. Thumbs up on the former and triple thumbs down on the latter. I'm not sure if the film is intended to promote dialogue or to spread fear and propaganda.<br /><br />I thought the acting was mediocre. A lot of conversation that was about 90 degrees askew of reality. I kept wanting to derive some meaning from the plot, but it's ultimately just a conversation with a mad man (Speedman). I feel mildly sorry for him (Speedman) because of his loss, but not really. His loss is no greater and certainly is less than losses suffered every day around the world by more significant causes.<br /><br />Does the film expose naiveté about HIV/AIDS? Yes: That of the intended audience. Is HIV a dark, mysterious, evil killer? What about it's victims? The answer to both questions is NO. Neither HIV nor its victims have any more or less malevolent intent than lupus, multiple sclerosis, TB, hepatitis, CANCER, or their victims, FOR GOD'S SAKE. Just because a disease is communicable does not make it EITHER deliberate OR negligent - or evil - it just IS.<br /><br />Does this excuse ignorance or fool-hardy risk taking? - NO. Should all people practice safe sex? - YES. Will safe sex save the world? - NO. Is safe sex realistic in all instances of love and lust between passionate and emotional human beings?  OF COURSE NOT. What kind of a world would we live in if everyone followed the rules, no one ever took risks, and sex was never spontaneous and passionate??? Am I ignoring that the film deals specifically with gay sex?  YES. HIV is spread by sharing blood or bodily fluids between infected and non-infected individuals. Sex is not necessary for transmission, gay or otherwise.<br /><br />I'm always disturbed by willful violence of one person upon another. I actually thought the film did do a good job of portraying the absurdity of Tom's violent abduction, captivity, and intent towards Dan, and this kind of insane violence does occur every day.<br /><br />Stream of consciousness notes from the film: Tom is crazy.<br /><br />Why doesn't Dan ask \"\"why\"\" do you feel this way, rather than \"\"what are you doing\"\"? Implication: men who have sex with men get \"\"AIDS\"\" Implication: HIV = AIDS Where was Tom's responsibility in the sex act? Why was it Dan's responsibility to use the condom? \"\"maybe you slipped it off before you stuck it in\"\" What are we talking about here? Was one of the parties unconscious? \"\"Maybe she didn't want to hear the truth\"\" are you kidding me \"\"She's up in heaven and so unbelievably hurt about what she now knows about me\"\" right Is Dan's life over if he has HIV? Certainly NOT! Is this why the whole world is so homophobic???? They think gay men are the cause of HIV, that they will give it to the rest of the world, and we will all die are you kidding me??? Are people really stupid enough to think that homosexuality is the cause... is the problem??? Do we feel that way about the victims of tuberculosis? of malaria? I can see that Tom is hurt because of his wife's death, and he blames it on AIDS, but seriously who's at fault here? The victim or the virus? Are illnesses really the responsibility of the ill? (presuming they did not seek and did not seek to spread the disease).<br /><br />Sure, safe sex is essential to a safe life, but so is not-driving, not-flying, not-leaving the house, not-living. Do we really want to blame the disease on the victims? Would safe sex between Tom and Dan have prevented Tom's wife's ultimate demise? Perhaps, but not Dan's sole responsibility.<br /><br />Tom is crazy. Did I mention that.<br /><br />Tom to Dan: \"\"maybe you get what you deserve\"\" COME ON! 24 Days: Violent, naïve, and homophobic.<br /><br />Am I overreacting? Perhaps. But I think this film points a judging finger at gay men for their reckless and malevolent intent towards a \"\"straight world\"\" by practicing unsafe sex, when the rate of homosexuals practicing safe sex is proportionately equivalent or better than that of heterosexuals. We all need to wake up and get serious about HIV/AIDS. HIV is killing hundreds of thousands of STRAIGHT Africans every year.\"\r\n1\tI watched Lion king more times that all my friends put togther. Having a baby sister.. you know how it is. By now i memorized both the plot and the lines. After Lion king 2 came out i was like ok well let me see... the second one was significantly weaker... then i saw an ad for lion king 1 and 1/2... I was like ok there we go again. After watching the 1 1/2 i was like wow. All my expectations (for repetitevness) were broken. A truly lovely and original plot keeps you glued to your seat for the entire time. I have noticed that the cartoon was filled with so many comical moments that ROFlmao will apply here 100%.<br /><br />I definetly recommend seeing the cartoon.\r\n1\t\"I know the film snobs are snorting. But if you're looking for a surprisingly fun ride through the B-movie jungle, try \"\"Jake Speed\"\".<br /><br />A little thin at times, but its one-liners and the location more then make up for this. John Hurt(God love him), seems to be having fun doing his role as the ultra evil white slaver. The nemesis of Crawfords, Jake Speed. He adds a dimension to the film that only a pro like Hurt could provide. Crawford and Dennis Christopher( Jakes sidekick) are a good team,although you do wonder why they both put up with each other.However ,together both Crawford and Christopher portray a team that is just so much fun that, if you can get over yourself for a moment, you may find yourself acting like a kid again at the situations and the inherent suspense they provide.The delicious Karen Kopins does a great job as the damsel in distress that is more concerned about the motives of her rescuer then her tormentor.<br /><br />I have yet to find a movie that is as much fun without getting preachy,or bogging down the movie by trying too hard. Not every movie has to be the latest \"\"Citizen Kane\"\". And trust me,Wells was an original. So lets remember that sometimes, movies are for fun.Not social commentary or attempting to sway an audience politically. But just for the sheer fun of being alive and living in a time when our hero's live in a celluloid dimension.\"\r\n0\tAs a lesbian, I am always on the lookout for films relating to gays & lesbians. However, with this kind of crap out there--it would be enough to discourage any audience.<br /><br />I kept waiting for something to happen--anything!--a story to develop, or just for it to make some kind of sense. Neither occurred. It was just meaningless scenes, unconnected in any way with anything. The film failed to conveyed any kind of story or depth to the character.<br /><br />After an hour or more of this nonsense, I simply turned it off.<br /><br />Don't waste your time on this absurdity.<br /><br />1 Star - and it doesn't even deserve that.\r\n0\t\"This was a truly bad film. The character \"\"Cole\"\" played by Michael Moriarty was the biggest reason this flopped, the actor felt that conjuring up an unbelievably awkward southern drawl would make this character more evil, it didn't. After about 20 minutes I had wished for a speech therapist to make an appearance, this would have added some sincerity.<br /><br />- 1) badly acted - 2) unsympathetic characters - 3) razor thin plot line<br /><br />Yuck!<br /><br />\"\r\n1\tHouse of games has a strong story where obsession and illusion play a big part. A psychologist offers to help a patient with his gambling debts and gets caught at the game.<br /><br />Have you ever felt fascination for something that was both dangerous and wrong? Watch what happens if you pursue this urge and go all the way. Sit on the edge of your chair as tricksters are being tricked and victims turn into perpetrators. You're never sure of who is exactly who in this movie.<br /><br />This is both a quality and a drawback of the script. As the movie ends you feel that the story lacks a bit of consistency. But all this is largely compensated by the excellent psychological development.<br /><br />This is definitely one of the best movies about gambling.\r\n0\t\"Batman Mystery of the Batwoman, is, in a word, stale. <br /><br />The plot goes that a mysterious female vigilante (\"\"Batwoman\"\") is intruding on Batman's turf, and while Batman is trying to combat a Penguin/Bane/Rupert Thorne threesome, he's trying to figure out who the mysterious Batwoman is. <br /><br />There is nothing strikingly wrong about this, but there is nothing really special about it either, noting really made it stick out. <br /><br />Mask of the Phantasm had Bruce's long lost love re surface and mess with his head.<br /><br />Subzero was a major event in the life of Mr Freeze. <br /><br />Even the Batman Beyond movie spin off, Return of the Joker, dug deep with the characters involved. <br /><br />But Mystery of the Batwoman had some minor subplots, a lot of formula topped off by a mediocre setpiece on a cruise boat. Frankly, this thing is more Scooby Doo than Dark Knight, lacking the punch and bite that the Animated Series had in it's prime.\"\r\n1\t\"I can't believe John died! While filming an episode he collapsed on set! read this, (out of his biography online):John Ritter was Born In Burbank , Calafornia , On September 17th 1948. <br /><br />He landed his last television role in \"\"8 Simple Rules for Dating My Teenage Daughter\"\" (2002), based on the popular book. On this sitcom, he played Paul Hennessey, a loving, yet rational dad, who laid down the ground rules for his three children. The show was a ratings winner in its first season and won a Peoples Choice Award for Best New Comedy and also won for Favorite Comedy Series by the Family Awards! While working \"\"8 Simple Rules\"\", he also starred in his second-to-last film, Manhood (2003)<br /><br />That Same Year , While John Was Rehearsing for The 4th (3rd series) Episode of 8 Simple Rules (Now Shortened), he fell ill. Henry Winkler described it as \"\"John Looked Like He Had Food Poisoning\"\".Then He collapsed on the Set, he was quickly rushed to a Nearby Hospital, The Same Burbank Hospital Where He Was Born ,he was diagnosed with an aorta dissection, an Unrecognized Heart Flaw, he Underwent Surgery but did not make it. John Ritter Died At Age 54 , just 1 Week Away from His 55th Birthday , leaving His Wife Amy Yasbeck and 4 Children.\"\r\n0\t\"I saw Chan Is Missing when it first came out, about four years after moving from San Francisco to New York. Maybe it was the perspective of a few years away, but this movie seemed to capture the essence of the city and its people better than anything else I'd ever seen (still does). It concentrates on one particular community - the Chinese - but that's fine, because so much of the city's soul is refracted through the settings, the faces, and the maybe above all the voices of the characters.<br /><br />This isn't the tourists' San Francisco. The settings are humble and everyday: a taxi cab, the kitchen of a Chinese restaurant, Richmond District row houses, little Chinatown apartments and small-business offices, the piers, a Philippine elder center. This is what the city looks and feels like day to day to the people who live there - even now, in the era of Silicon Gulch urban redevelopment. Unlike, say, Dirty Harry (in its own way an excellent San Francisco movie as well), everything is filmed at street level: We come to understand the characters' points of view from the perspective their surroundings give them, not from some fancy vertiginous shooting.<br /><br />Wang apparently filmed in B&W because he didn't have the money to do otherwise, yet one of the strongest visual elements of the movie is the natural light he achieves. The often harsh, pervasive quality of the sunlight is one of my closest associations with San Francisco: It seems to expose everything, bringing the buildings, the hills, the other landmarks down in scale and, in a funny way, making the people you pass on the streets seem more individual and potentially closer to you than they might in another place. Wang's photography perfectly conveys this, and even helps the story along at points.<br /><br />Wang captures the speech and conversational style of Chinese and other San Franciscans better than anyone ever has, I think. If there's such thing as a true San Francisco \"\"accent,\"\" it's what you hear from the balding taxi medallion broker (I think) who appears talking on the phone in one scene (listen to the way he calls the person on the other end \"\"ya dingaling!\"\").<br /><br />The story is poignant and, despite a few very small missteps, makes its points beautifully about the longings that pull at the hearts of people living in old immigrant communities - including the justified political and ethnic resentments, and little ironic amusements, that help to fuel them. All this is communicated delicately - perhaps why some respondents here think the film meanders. It doesn't - suffice it to say that the two cab drivers' quest for Chan becomes a quest for something more personal.<br /><br />Chan Is Missing finishes up with a Chinatown travelogue sequence backed by a goofy novelty song from the 1930s (I guess) about San Francisco and all its crazy diversity. An American caricature, yes, but somehow not entirely off the mark either.\"\r\n0\t\"I was really, really disappointed with this movie. it started really well, and built up some great atmosphere and suspense, but when it finally got round to revealing the \"\"monster\"\"...it turned out to be just some psycho with skin problems......again. Whoop-de-do. Yet another nutjob movie...like we don't already have enough of them.<br /><br />To be fair, the \"\"creep\"\" is genuinely unsettling to look at, and the way he moves and the strange sounds he makes are pretty creepy, but I'm sick of renting film like this only to discover that the monster is human, albeit a twisted, demented, freakish one. When I saw all the tell-tale rats early on I was hoping for some kind of freaky rat-monster hybrid thing...it was such a let down when the Creep was revealed.<br /><br />On top of this, some of the stuff in this movie makes no sense. (Spoiler) <br /><br />Why the hell does the Creep kill the security Guard? Whats the point, apart from sticking a great honking sign up that says \"\"HI I'm A PSYCHO AND I LIVE DOWN HERE!\"\"? Its stupid, and only seems to happen to prevent Franka Potente's character from getting help.<br /><br />what the hells he been eating down there? I got the impression he was effectively walled in, and only the unexpected opening into that tunnel section let him loose...so has he been munching rats all that time, and if so why do they hang around him so much? Why is he so damn hard to kill? He's thin, malnourished and not exactly at peak performance...but seems to keep going despite injuries that are equivalent to those that .cripple the non-psycho characters in the film.<br /><br />The DVD commentary says we are intended to empathise with Creep, but I just find him loathsome. Its an effective enough movie, but it wasted so many opportunities that it makes me sick.\"\r\n0\tI wasn't expecting this to be a great movie, but neither was I expecting it to be so awful. I hated the mother character so much I had to turn the channel. I turned it back, hoping it was just one part of the movie, but no. And for the daughter to sit there take being embarrassed, or almost done out of a job, or driven to madness inside her own home? Are you kidding me? I was raised to respect (and even fear) my mother but I'd put her up fast in the nearest hotel if she proved that annoying in MY house. I was expected to follow a set of rules in my mother's house, after all.<br /><br />I didn't buy any of it. I tried giving it several chances, I really did. Sorry.\r\n0\t\"This movie is a pathetic attempt, apparently, to justify the actions of Mary Ann Letourneau. In order to do this, they cast a 19-year-old -well, probably not \"\"in order to do this.\"\" There was no way they could have cast a 12 or 13 year old as the boy because the love scenes would have grossed everyone out (if they had even been allowed to do them) - as they should. Mary Ann's boyfriend was my nephew's age, making her a pedophile. Sixth grade, people. The definition of pedophile doesn't have to include many children - all you need is one.<br /><br />I really don't care about her upbringing or her unhappy marriage. She had a responsibility to her students that she did not live up to. The reason given is that she is bipolar, rejected the diagnosis, and refused to take her medication. It's understandable, then, that she was not thinking rationally. One hopes that she now understands her actions.<br /><br />Now that she and Vili are married and have two children together, I pray that she is on her medication and thinking clearly.<br /><br />All that aside, Penelope Ann Miller was totally convincing and perfect casting for the role.\"\r\n1\tIt is one of the better Indian movies I have seen lately, instead of crappy song and dance or slum dog movies. All the actors have showed the right emotions at the right intensity with right timing. It is the hallmark of a good movie, that it make the viewer go back and research the subject, which exactly what I did checking on Harilal. I always enjoy Akshay Khanna's subtle style of acting and interestingly he had rather a complicated relationship with his own father Vinod Khanna, albeit not as dramatic as Gandhis and wonder how it helped him essay this character. I was impressed by the direction and 2 thumbs up for Anil Kapoor for producing such a classy movie.\r\n1\tA series of shorts spoofing dumb TV shows, Groove Tube hits and misses a lot. Overall, I do really like this movie. Unfortunately, a couple of the segments are totally boring. A few really great clips make up for this. A predecessor to such classics like Kentucky Fried Movie.\r\n1\tThis was an excellent film. I don't understand why so many people don't like it. There was so much in it to connect with, so many beautiful images, and so much compassion in the things that weren't said. I was thoroughly entertained, and was left with a feeling of joyous exuberance, just as I am when I finish most any Tom Robbins story. Now I haven't read this particular book of Robbin's, so I don't now how this matched up, but I can't imagine this movie could have been a very bad interpretation. The movie left a lot for you to define yourself, which is the best part of any Tom Robbins novel, dreaming up the details. <br /><br />To all of you who said this was the worst movie ever, I pity what little must be left of the dimming light in your hearts. Far from the worst ever this movie was glorious. Long live the whooping crane.\r\n0\tWell I must say this is probably the worst film I have seen this year! The jokes were extremely crude (wasn't expecting it from as PG movie)(Rated PG in Canada) and they weren't funny! With this great cast I at least expected some good acting but I didn't even get that. I am a huge Rainn Wilson fan and this is the first time I was extremely disappointed by his performance. Neither Luke Wilosn or Uma Thurman's characters are the least bit likable and i really could have cared less what happened to either of them. I didn't expect this at all as in the past I have really liked other movies by this director (Six Days, Seven Nights for example) This movie was NOT worth the $10 it cost me and i strongly encourage you not to see this movie. I guarantee that you will be like me begging for this movie to be over.\r\n1\tI've just watch 2 films of Pang brothers, The Eye and One take only. When I watched The Eye, I was kind of disappointed about this two guys, who I had heard good words about them before. That film (The Eye) has a really bad script, especially the ending (childish,cliche and too coincident in my opinion) , but its still good in photography and experimental images. So I decided to see One take only and I didn't disappointed again. Still great photography, stunning image, MTV-style editing, cool music and this time,the story has a lot of indie spirit,logical and beautiful, you'll see some tiny plot holes, but it doesn't cause any trouble with the storyline. The only problem about this film is I get a bad DVD.\r\n1\tThough the pieces are uneven this collection of 11 short films is truly a moving and human experience. There were some who, in the wake of the emotion on the anniversary of the bombings, took this to be anti-American. I don't think thats the case, even though some parts might be taken that way if you don't look behind the obvious. Ultimately the film is nothing except an attempt by people to express their confusion, sympathy and feelings about what happened. These are stories of people who's worlds have been shaken up by what happened on a Tuesday in September.<br /><br />As I said this film will move you, probably to tears. Its not always easy to watch, for example the film from Mexico is little more than a black screen with sound, but its effect is such as to lay even the strongest of people low. If you can be strong you really should see this film. It will comfort you and enlighten you and affect you...\r\n0\tHow this piece of garbage was put to film is beyond me. The only actor who is at all known to me is Judge Reinhold, an accomplished actor whose presence is merely a justification for putting it into production.<br /><br />I don't even think it is worth a nomination for a rotten tomato award, this film really does make B movies a cinematic enjoyment. A car travelling along the freeway with police in tow, and no one knows how to stop the car, yeah, right.<br /><br />The script must have been written on the back of a cigarette carton. Most made for TV movies are awful but this redefines the word. Check out the acting skills of the bridge operator, pure Oscar material.\r\n1\tLet me start by saying I have never reviewed a movie on IMDb before; however, I am in the video biz myself. And coming from that perceptive; I can say, without a shadow of a doubt that this film is what a short should be. It has a very good story and another thing I love-(an even better twist ending). Opening was very well done, I loved video chosen for it and how it was edited.<br /><br />I am not a fan of B&W but the way this film uses the effect it works. And with any film that is all that matters. The flow of the film works perfectly and editing was very well done. From a technical side of things (which is side I normally work on) everything is also very well done. There is no major tech. stuff to point out. Only minor one I have is that the end credits are a little bouncy. This is probably due to a rendering issue. Let me also say that I would have prefer to seen more of the love scene but I am guy (so you can chalk that up to a guy factor).<br /><br />So overall I rate it a 9/10. It is worth the watch if you fan of Indies and/or short films.<br /><br />ps. sorry for bad grammar or spelling.\r\n1\t\"I love Tudor Chirila and maybe that's why i enjoyed the movie so much. Two days before the movie premiere I went to see his concert. I saw the trailer and the video \"\"zmeu\"\" before the movie and I thought I had it all figured.. i was wrong: instead of a good movie i assisted a great one! i FELT the movie. it was sad.. it was funny.. but most of all it pictured LOVE.. I can't even begin to describe the soundtrack.. so i won't :) I'm not a movie critic.. I can't describe it in more words.. My kinda vague description is all because the play left me speechless.. thank god for the keyboard :) Thank you Tudor Giurgiu, thank you Maria Popistasu, thank you Ioana Barbu and THANK YOU TUDOR CHIRILA. Encore! :)\"\r\n0\t\"this movie, i won't call it a \"\"film,\"\" was basically about nothing and functioned mostly for the popular acts of the time. yeah the war was on full swing (pun intended), and this movie gave the troops and our audiences a treat.<br /><br />but let's have something with a bit more substance.<br /><br />loved seeing a young Buddy Rich on the drums. the music was good throughout.<br /><br />but one cameo after another gets old fast.<br /><br />i didn't even recognize Zero Mostel! so if you're one from the \"\"greatest generation,\"\" as they say, you'll definitely enjoy this...<br /><br />movie.\"\r\n1\tI absolutely LOVED this movie when I was a kid. I cried every time I watched it. It wasn't weird to me. I totally identified with the characters. I would love to see it again (and hope I wont be disappointed!). Pufnstuf rocks!!!! I was really drawn in to the fantasy world. And to me the movie was loooong. I wonder if I ever saw the series and have confused them? The acting I thought was strong. I loved Jack Wilde. He was so dreamy to an 10 year old (when I first saw the movie, not in 1970. I can still remember the characters vividly. The flute was totally believable and I can still 'feel' the evil woods. Witchy poo was scary - I wouldn't want to cross her path.\r\n1\tThis movie is proof that film noire is an enduring style, and extremely worthy of stay alive. For me, it is he best example of film noire since Chinatown.<br /><br />It will, unfortunately, never get the recognition it deserves. It was never promoted properly when it was first released and has had to build its cadre of fans through venues like Vanguard Cinema and word of mouth rental referrals.<br /><br />I highly recommend that people looking for something more than mindless entertainment rent this movie and delved into its highly convoluted plot.\r\n1\tI fell in love with Emily Watson in Breaking the Waves, then grew even more fascinated by her range and adeptness in Hilary and Jackie. Now comes this stunning portrayal of a rich girl who spurns breeding and convention in favor of mothering the tortured soul of the child of a man clearly in need of mothering. Her eyes are the mirror to his soul --and what gentle and beautiful eyes they are.<br /><br />Those who take things literally will find Marleen Gorris' poetic and allegorical direction quite frustrating. Romantics who are willing to go with the amazing kinetic energy is this filmed allegorical poem will be well rewarded.\r\n1\tThe barbarians maybe´s not the best film that anybody of us have seen, but really????........It´s so funny......I can´t discribe how mutch I laughed when I first saw it..The director really wanted to do a serious adventure movie, but it´sso misirable bad....so bad that it´s one of the funniest movies I´ve ever seen......so my advise is that you should see it.....and if you alredy did, se it again!!!!!!!\r\n1\t\"Mary Pickford often stated that Tess Skinner was her favorite movie role. Well said! She played the part twice and for this version which she herself produced, she not only had to purchase the rights from Adolph Zukor but even give him credit on the film's main title card. Needless to say her portrayal of this role here is most winning. Indeed, in my opinion, the movie itself rates as one the all-time great experiences of silent cinema.<br /><br />True, director John S. Robertson doesn't move his camera an inch from start to finish, but in Robertson's skillful hands this affectation not only doesn't matter but is probably more effective. A creative artist of the first rank, Robertson is a master of pace, camera angles and montage. He has also drawn brilliantly natural performances from all his players. Jean Hersholt who enacts the heavy is so hideously repulsive, it's hard to believe this is the same man as kindly Dr Christian; while Lloyd Hughes renders one of the best acting jobs of his entire career. True, it's probably not the way Mrs White intended, but it serves the plot admirably, as otherwise we would have difficulty explaining why the dope spent a fortune on defense but made not the slightest attempt to ascertain who actually fired the gun that killed his future brother-in-law! Needless to say, this particular quality of the likable hero is downplayed by Jack Ging in the bowdlerized 1960 version which also totally deletes the author's trenchant attack on smug, middle-class Christianity. Notice how the well-washed priest here moves forward a pace or two in surprise at the interruption, but then makes no attempt whatever to assist our plucky little heroine in the performance of duties that he himself was supposedly ordained to administer. This is a very moving scene indeed because it is so realistically presented.<br /><br />\"\"Tess\"\" also provides an insight into the work of another fine actress, Gloria Hope, whose work was entirely confined to silent cinema. She married Lloyd Hughes in 1921 and retired in 1926 to devote her life completely to her husband and their two children. Lloyd Hughes died in 1958, but she lived until 1976, easily contactable in Pasadena, but I bet no-one had the brains to interview her. Another opportunity lost! <br /><br />To me, Forrest Robinson only made a middling impression as Skinner. I thought he was slightly miscast and a brief glance at his filmography proves this: He usually played priests or judges! But David Torrence as usual was superb.<br /><br />In all, an expensive production with beautiful photography and marvelous production values.\"\r\n0\t\"This movie is written by Charlie Higson, who has before this done the \"\"legendary\"\" Fast Show and his own show based on one of Fast Show's characters (Tony the car sales man). He's also written James Bond books for kids.<br /><br />Actually I've seen before this only Gordon's movies that are based on Lovecraft's stories, and every one of those is marvelous. Here Gordon tries to do something different. The style is totally \"\"contemporary\"\", which means shaky camera, fast and strange cutting, cool chillout music in the background. It works quite well here, I guess, but it's still pointless and cheap. It makes me often think of the cameraman who's shaking his dv-camera in front of the actors/actresses and try to make stylish moves in the pictures (hoping that something tolerable would come out of it). The casting is good, and there is a whole atmosphere, which is the result of good directing. I think the main character, the \"\"zero\"\" young guy, is quite interesting in his \"\"zeroness\"\". The fat guy is also good. And the guy who looks like Alec Baldwin, but is not him. But pretty soon after the beginning the movie turns out to be something not-so-interesting: In this case I mean an endless line of scenes of sadism and sickness. There is not much humanity in this film/story: It's totally pessimistic, and every person in this movie is disgusting and hopeless, or soon dead. Needless to say that there is no humor either. It's a 1'40 long vomit without no relief in any moment. Anyway, Gordon remains to me one of the most interesting movie makers that are active today, and I think of this movie as an experiment, and as a failure in that. Everyone has to experience getting lost sometimes, just to learn and to find their way again. This might be Gordon's most uninteresting and empty work.\"\r\n1\t\"\"\"If I wanted to dribble, I'd call a nurse.\"\" <br /><br />\"\"Haven't you had enough?\"\" ...\"\"More than enough.\"\"<br /><br />\"\"You got me a choo-choo.\"\"<br /><br />\"\"If I begin to die, please remove (the cowboy hat) from my head. That is not the way I wish to be remembered.\"\" <br /><br />Some of the wonderfully humorous, and often insightful, quotations from this charming and often insightful film. Dudley Moore is charming, lovable and rich. Sir John Gielgud is aristocratic, charming and loving...and poor. The two have a non-father/father and son relationship which defines the man whom Arthur is to become. Will he follow his heart and soul, or just his wealth? Over twenty-five years, I've returned to this movie, with glee and amusement and joy. It is a movie to return to, time and time again, and remember what is important in life, as short as it is. <br /><br />Judge Miller\"\r\n0\t\"First of all, this movie reminded me of the old movies I used to have to watch in religion class in school. That's NOT a good thing. Basically, it's just a preachy and pretentious piece of filth, just like the terrible \"\"Left Behind\"\" series. I'm not offended by religious movies... but I am offended when these religious movies just happen to be extremely awful. I would just like to be able to say nice things about a christian movie but it doesn't look like that will happen any time soon. I bet if you gave the bible thumpers a decent budget, they still wouldn't be able to come up with anything good. Just avoid this one. Also, the fact that the \"\"American Family Association\"\" (basically, Reverend Wildmon's lackies) beam about this film on their website is another reason to make me hate it. In fact, after I viewed this, I went home and watched my copy of David Cronenberg's NC-17 rated \"\"Crash\"\". Forgive me father for I have sinned. Hahahahaha!\"\r\n1\t\"\"\"Maléfique\"\" is an example of how a horror film can be effective with nothing more than a well-executed plot and a lot of heart. Its cast doesn't have recognized names, it doesn't have a big budget and it certainly lacks in the visual effects aspect; but it compensates all that with an intelligent and well-written script, an effective cast and the vision of a director focused more on telling the story than in delivering cheap thrills. Eric Valette may not be a well-know name yet, but with \"\"Maléfique\"\", his feature length debut, he proves he is at the level of contemporaries like Jeunet, Gans or Aja.<br /><br />The film is the story of four prisoners in a cell, four different men with very different backgrounds but with one single goal: to get out. Carrère (Gérald Laroche) gets imprisoned after being declared guilty of a multi-millionaire fraud; his cell-mates, the violent Marcus (Clovis Cornillac), the intellectual Lassalle (Philippe Laudenbach) and the mentally challenged Pâquerette (Dimitri Rataud), are all convicted for murder and give Carrère a cold welcome. Their personalities will clash as Carrère discovers an ancient book detailing how a former prisoner escaped using black magic.<br /><br />Written by Alexandre Charlo and Franck Magnier, \"\"Maléfique\"\" is a great mix of dark fantasy and horror in a way very reminiscent of Clive Barker's stories. The movie's strongest point is the way it builds up the characters, they are all have very complex and different personalities and a lot of the tension and suspense comes from their constant clash of personalities. The story's supernatural element is very well-handled and overall gives the film the feeling of reading a Gothic novel. Despite being a movie about four men locked in a room, the movie never gets boring or tiresome and in fact, the isolation of the group increases the feeling of distrust, claustrophobia, and specially, paranoia.<br /><br />Director Eric Valette makes a great use of atmosphere, mood and his cast to give life to the plot. Despite its obvious lack of budget, he has crafted a brilliant film that feels original, fresh and very attractive. His subtle and effective camera-work helps to make the film dynamic despite its single location, and the slow pace the film unfolds is excellent to create the heavy atmosphere of isolation and distrust the movie bases its plot. The very few displays of special effects are very well-done and Valette trades quantity for quality in the few but terrific scenes of gore.<br /><br />The characters are what make this film work, and the cast definitely deserves some of the credit. Gérald Laroche is excellent as Carrère, a man at first sight innocent, but who hides a dark past. Philippe Laudenbach and Dimitri Rataud are very effective too, specially Rataud in his very demanding role. However, is Clovis Cornillac who steal the show with his performance as Marcus, a violent and disturbed man who deep inside only wants to be himself. The characters are superbly developed and the cast makes the most of them.<br /><br />The movie is terrific, but it is not without its share of flaws. Of course, the most notorious one is its the low-budget. Some of the CGI-effects are a bit poor compared to the effective make-up and prosthetics used in other scenes, however, it is never too bad for it. Probably the bad thing about \"\"Maléfique\"\" is that it seems to lose some steam by the end when it focuses on the supernatural black magic rather than in the characters, not too much of a bad thing but the ending may seem weak from that point of view.<br /><br />Anyways, \"\"Maléfique\"\" is another one of those great horror films coming out from France lately, and one that deserves to have more recognition. Valette is definitely a talent to follow as this modest (albeit complex) tale of the supernatural is prove enough of his abilities. Personally, this film is a new favorite. 8/10\"\r\n0\t<br /><br />As with the other episodes in this made-for-TV series expanding on the many adventures of the sea legend, Horatio Hornblower's super human infallibility ruins all chance for suspense.<br /><br />As little Wesley Crusher ruined many seasons of THE NEXT GENERATION, Horatio Hornblower invincibly saves every situation. Each and every clever solution inevitably comes only from the lips of Horatio Hornblower. Immeasurably superior, Hornblower's main trouble in this movie series seems to be tolerating the many error ridden characters above and below him in the chain of command. A perfect being makes for dull story telling. So superior is our hero, that even those who attempt to help him are powerless to do something correctly unless Hornblower is there to direct and control their every move.<br /><br />What is the sense in telling a story about any person who cannot do wrong and will repeatedly win at everything every single time? What is the point of watching such a story?\r\n1\tMy daughter, her friends and I have watched this movie literally dozens of times. I bought it twice and some little girlfriends absconded with it. Subsequently, I rented it so very many times. It just never gets old!!! Blockbuster doesn't even have it in their listings anymore and I have tried to buy, find, rent it for over 5 years. Without a doubt, this was and is my most favourite movie of my daughter's childhood...it has it all! We laughed, we cried, we discussed real life and how hard some children have it in the world. There was nothing pretend about this movie. We related to every second and every line Bill! Thanks a million for restoring our faith in human nature. Sincerely, Shelleen and Kailin Vandermey. Craven, Saskatchewan. CANADA,eh!!! :-)<br /><br />August '07 update:<br /><br />Who are we to judge if a rich woman falls in love with a poor man; or a man who has love chooses to raise a child who is not his own. It may not be my or your life. It is not only believable, it happens every day. Thank God! Keeps my faith in human nature alive!!! celebrate!!!!\r\n1\t*SPOILERS*<br /><br />This is only the second pay-per-view I've given a perfect 10, the first being the 1991 Royal Rumble. It was full of exciting matches that weren't memorable, just disposable fun. And that's why I love it.<br /><br />The opening match between Razor and DiBiase, as well as Ludvig Borga vs. Marty Jannetty were the only low points. They were OK matches, but DiBiase deserved better in his final pay per view match. These days, a match like this would have run-ins and a bigger climax for Razor's first major babyface push. And Jannetty, fresh off a Intercontinental title run, could have had a better match with Borga. But I don't think anyone really cared. They just needed a Borga push on pay per view television.<br /><br />IRS and The Kid were great, as were Michaels and Perfect. I wish Perfect could have won, but Michaels lies down for no one. Notice how right after this, he left the WWF so he wouldn't have to job to Razor. Bret Hart had two great brawls with Doink (notice how everyone's best match is against the Hit-man) and then Lawler. Their rivalry was a classic; that's why that year's Feud of the Year was a no-brainer. How often do you see two legends win Feud of the Year this late in their careers?<br /><br />The Steiners-Heavenly Bodies match was one of the best of the year. Who knew the Bodies could hold their own against one of the best teams ever?<br /><br />Many say that the Undertaker-Giant Gonzalez match was a waste of time. But I loved it. Remember, what made the old WWF (as in, pre-WWE) great was the mix of athleticism and freak show. Is there a soul out there who didn't like Akeem?<br /><br />The main event wasn't bad, although nowhere near match of the year status. They put Lex Luger over well, but made a wise choice in having Yokozuna keep the belt. He was the first heel since Superstar Graham to hold the belt for more than two months. Nowadays, heels are champions all the time. But from the beginning of the WWWF through the WWF of the 90s, if you blinked, you missed a heel title reign.<br /><br />As an old school wrestling fan, this one and SummerSlam '88 are my favorites.\r\n0\t\"good lord! (and that coming from an atheist), this \"\"movie\"\" is bad !<br /><br />much has already been said by the reviewers before (the ones who rated this piece 3 and below) to which I fully agree, I just like to add a few things: <br /><br />among the three guys who had to eat their own digestive end products, got chopped up by an Axe, raped by a broomstick, had their balls blown away - the ex-boyfriend suffers the worst torture while having to listen to the girl's endless and pointless babble at the kitchen table (as do we, but at least we have the mercy of the mute button).<br /><br />had the director cut out the point- and endless graveyard and inverted scenes, our suffering would have been over after 30 minutes.<br /><br />the only things that made this flick at least somewhat bearable are Emily Haack's tits (one point).<br /><br />forget it. don't buy it. don't waste your time. and your sanity. my brain is so fried after watching this I feel the urgent need to watch (and suffer?) \"\"Scrapbook\"\" right now.\"\r\n1\tA friend of mine recommended this movie, citing my vocal and inflective similarities with Des Howl, the movie's main character. I guess to an extent I can see that and perhaps a bit more, I'm not very sure whether or not that's flattering portrayal.<br /><br />This is a pretty unique work, the only movie to which this might have more than a glancing similarity would be True Romance, not for the content or the style of filming or for the pace of dialogue (Whale Music is just so much more, well, relaxed.) But instead that they both represent modern love stories.<br /><br />In general I'm a big fan of Canadian movies about music and musicians (for example I highly recommend Hard Core Logo) and this film in particular. It has an innocent charm, Des is not always the most likeably guy, but there's something about him that draws a sterling sort of empathy.\r\n1\tWell, Tenko is without doubt the best British television show ever, the performances, the directing, the casting, the suspense, the drama..... everything is fantastic about it.<br /><br />Although the show fell a little later in its final season, this ending movie picked up the threads nicely and wove a superb story for fans of the show and newbies. I cannot recommend this movie more, find it and watch it. But I do advise watching the series first, as the first 2 seasons are even better than this fantastic movie.<br /><br />An obvious (10/10)\r\n0\tChristopher Lambert is annoying and disappointing in his portrayal as GIDEON. This movie could have been a classic had Lambert performed as well as Tom Hanks in Forrest Gump, or Dustin Hoffman as Raymond Babbitt in RAIN MAN, or Sean Penn as Sam Dawson in I AM SAM.<br /><br />Too bad because the story line is meaningful to us in life, the supporting performances by Charlton Heston, Carroll O'Connor, Shirley Jones, Mike Connors and Shelley Winters were excelent. 3 of 10.\r\n1\tI would never have thought I would almost cry viewing one minute excerpted from a 1920 black and white movie without sound. Thanks to Martin Scorsese I did (the movie was from F. Borzage). You will start to understand (if it's not already the case), what makes a good movie.\r\n0\tSammy Horn (Michael Des Barres) is the head chef and owner of a famous restaurant in California. He has a lovely wife, Grace Horn (Rosanna Arquette), who is pregnant, and a beautiful son of about five years old. Sammy indeed loves his family, but like Dr. Jeckyll and Mr. Hyde, he has a double life, having sex with many different women. Dr. Jane Bordeaux (Nastassja Kinski) is trying to help him. OK, it is my fault: I read the summary of the other IMDB user comments, I saw the IMDB user rating, but I really did not believe that Rosanna Arquette and Nastassja Kinski could participate in such a bad movie. I decided to check it, and actually some comments are very complacent. The storyline, the screenplay and the dialogs are so silly and laughable that even in some X-rated movies we can find more intelligent stories. The photography is so amateurish and naive that in some parts it seems to be taken through a VHS camcorder. Michael Des Barres does not have sense of ridiculous: being an old man, bald, would be acceptable in an advertisement of Viagra or grandfather of the small boy. But as an attractive man who gets and has sex with any woman, it is scary. In Wood Allen's comedy, maybe he got a chance, but in a `serious' movie, it is funny. I am trying to figure out why or how Rosanna Arquette and Nastassja Kinski accepted to participate in such awful, amateurish and trash movie. Do they need money? Lack of chances in better movies due to their ages? Are they friends of the `director' (sorry for using this word) and decided to help and promote him? I do not know whether the intention of Rosanna Arquette was to show her breasts full of silicone, but it is unacceptable that such a great actress accepts such a script. The same is applicable to the gorgeous Nastassja Kinki. She is presented fat, without make-up, without any glamour. A total lack of respect with one of the most beautiful actress in the cinema history. A fact is really intriguing me: how can a reader, without any personal interest, promote this trash, giving higher ratings or writing favorable comments about this movie? Are they friends of the `director' (again, I am using this word...) or the cast? It sounds very strange to me that a normal IMDB reader can like such a film. My vote is two.<br /><br />Title (Brazil): `Viciado Em Sexo' (`Addicted In Sex')\r\n0\t\"****Don't read this review if you want the shocking conclusion of \"\"The Crater Lake Monster\"\" to be a total surprise****<br /><br />A claymation plesiosaur rises from the depths of Crater Lake to wreak havoc on a group of local rednecks, not to mention your fast forward button. To call \"\"The Crater Lake Monster\"\" amateurish is to overstate the obvious. If you aren't a fan of low budget drive-in films, you probably wouldn't be looking here in the first place.<br /><br />The problem with the movie is that when there's no monster action going on, it really sucks and goes nowhere. The script is very Ed Wood-ish, in that it's utterly contrived in the way it sets up the main action sequences. Nothing is too outlandish for \"\"The Crater Lake Monster\"\". It explains its dinosaur by having a meteor crash into Crater Lake, 'superheating' the water to the point where it incubates a dinosaur egg that has apparently been resting at the bottom of the lake for millennia. Even if we could accept that the egg could have been lying there for so long and remained uncovered and viable, wouldn't \"\"superheating\"\" the water to such a high temperature cause most of the lake to evaporate? Other than some token fog in one or two scenes, we see no evidence of the water being hot, other than a few lines in the script.<br /><br />The script is padded rather obviously in a few sequences, and it will do anything to get the characters near the lake so that they can be menaced by the claymation dino. A couple just passing through experiences car trouble and while their automobile is being serviced, they decide to rent a boat and head out into Crater Lake. Hmmmm...do you think these strangers in the story could be there so they would run into our title monstrosity? In a sequence that's just plain bizarre, a drunk robs a liquor store and decides to murder the cashier and a bystander instead of paying four dollars for a bottle of booze. A car chase ensues, and wouldn't ya know it...they end up right by the lake. Snack time for Cratey! Yeah, it's not hard to figure out, and you're so far ahead of the script that you're irritated when it takes another ten minutes for these scenes to unfold.<br /><br />The shamelessness of it all is endearing, and I really want to like \"\"The Crater Lake Monster\"\". I just can't do it. There's not enough here to go on, and this is more of a movie to put on during a party, because you could talk right over it and it wouldn't matter. <br /><br />The film has a slim list of the things going for it, the most important being the dinosaur itself, which appears in three forms: a shadow puppet, a large model head that is dragged woodenly through the water, and a fully realized claymation insert that actually looks pretty good. There are also a pair of lovable hicks in it, and they carry the majority of the intentional humor in the movie. A downbeat ending leaves us mourning the death of both the monster AND one of our beloved hicks, so every good thing about this film is dead by the end of it. Why was I so affected by this conclusion? Was it the mournful song played over the closing credits? Or was I just weeping inwardly for the time that I waste watching films like this?\"\r\n0\tScary Movie 2 is definitely the worst of the 4 films, for there is not much of a plot , bad acting, pretty tedious and some really cheesy jokes. But. And this is a big but, there is one good actor, one good recurring joke, and a good beginning. The good actor being Tim Curry, the one good recurring joke is the creepy,weird butler with the disgusting hand who always does cringey but laugh worthy things. And the good beginning is the spoof of the Excorsist.<br /><br />The plot to Scary Movie 2 is the main characters from the original and a host of new characters along the way are invited to stay the night at a creepy old mansion, but will they survive the night? This film is not very good but if your bored you might as well watch it!\r\n1\t\"I will start by saying that this has undeservedly be panned by just about everyone! The fact is it wasn't what anyone was expecting, especially from Guy Ritchie. What everyone was expecting was cockney geezers and good one liners \"\"do ya like dags?\"\" etc, but this is far more mature than his previous works. I would agree that it is confusing but all the facts are there for us we just have to see them and listen harder, this film demands all your attention! Look past the cool and dazzling look of the film, try to listen to the dialogue rather than admire the performances and i think we will all get a more thorough understanding of the whole film.<br /><br />Yes this has its influences from modern classics( fight club, pulp fiction etc ) but it is in the whole original in both direction and pacing with a music score second to none. I feel that if everyone watched this film over and over they would understand it a lot more and maybe appreciate it for the fine piece of modern cinema that it is and i hope also that Ritchie continues in this vain as i far prefer this to his mockney \"\"masterpieces\"\".\"\r\n1\tThis has got to be the best movie I've ever seen.<br /><br />Combine breathtaking cinematography with stunning acting and a gripping plot, and you have a masterpiece.<br /><br />Dog Bite Dog had me gripping the edge of my seat during some scenes, recoiling in horror during others, and left me drowning in my own tears after the tragic ending.<br /><br />The film left a deep impression on me. It's shockingly violent scenes contrasted sharply with the poignant and tender 'love' scenes. The film is undeserving of it's Cat III (nudity) rating; there are no nude scenes whatsoever, and the 'love' scenes do not even involve kissing or 'making out'.<br /><br />The message which this film presented to me? All human beings, no matter how violent or cruel they may seem, have a tender side. Edison Chen does a superb job playing the part of the murderous Pang.<br /><br />I rate this film 10/10. It's a must-watch.\r\n1\t\"Re: Pro Jury<br /><br />Although the lead actress is STRIKINGLY beautiful, the plot stands little chance of acceptance because too many distracting details face the audience during the unfolding of the story.<br /><br />One may believe that middle-class teen-age school girls in the 1950's easily gave away their virginity without thought of marriage to 30-year-old's they barely know, but I doubt it.<br /><br />\"\"EASILY GIVE AWAY VIRGINITY\"\"? WHAT A SHREWD REMARK ABOUT THIS FILM. TRULY.<br /><br />One may believe that young high school teens are highly self-confident and self-assured as they interact with their elders in complex social situations, but my experience has been, more often than not, teenagers feel very awkward and act clumsy as they experiment in the adult world.<br /><br />YOU JUST AREN'T AT ALL ABLE TO SEE THE WORLD OTHER THAN THROUGH YOUR OWN EYES? THAT'S SAD.<br /><br />One may believe that a experienced medical doctor would not know the pungent oder of Stroptomycin -- the smelly fermenting byproduct of busy earth microbes -- and not detect that some lifeless bland powder is fake, but I think not. <br /><br />AND ANOTHER \"\"EXPERT\"\" OPINION DRAWN FROM EXPERIENCE. DANDY.<br /><br />One may believe that 30-something-year-old troublemakers can enter into, and hang around inside, a public school rec hall during a school social and make trouble, but I think that school socials are traditionally a protected environment and parents, chaparones and school staff would be around to prevent this.<br /><br />NOW BE A GOOD SPORT AND TELL US AT WHICH INSTITUTION YOU GREW UP.<br /><br />One final nit, throughout Hey Babu Riba the five teenage friends referred to themselves as the foursome. There is probably an explanation why the FIVE were the FOURsome, but because it was never detailed, each reference distracts from each scene.<br /><br />OF COURSE THERE'S PROBABLY AN EXPLANATION. GOOD JOB FIGURING THAT OUT! NOW I'LL BE GENEROUS AND WILL HELP YOU OUT OF YOUR MISERY: ALTHOUGH IT WAS TRANSLATED AS A GENERAL \"\"FOURSOME\"\", THE WORD \"\"&#269;ETVORKA\"\" HAS ANOTHER MEANING: IT'S A SPORTS TERM USED TO DESIGNATE A 4M OR 4W SETUP - A ROWING CREW CONSISTING OF 5 PERSONS: 4 ROWERS AND A COXSWAIN.<br /><br />This movie did not ring true for me.<br /><br />WE SHOULD ALL HEED TO YOUR COMPETENT AND PRAISEWORTHY OPINION. DUDE.\"\r\n0\t\"Holy crap! What a terrible, terrible Spanish thriller! I've had it for about four years and finally started it the other night. I watched an hour or so before heading to bed. I was pretty intrigued by the whole thing. I finished it last night and couldn't believe where I stopped it the night before. Literally, I stopped it the second before the movie went completely downhill.<br /><br />Like I said, I was pretty intrigued and curious as to where this mystery was going but stopped it right when Simon receives the package in the bar. I picked up when he opens up the package to reveal a laser gun and then plays a \"\"menacing\"\" game of laser tag. Whew! Then the big reveal is that the whole thing is a terrorist plot by role playing game nerds. WHEW! You can tell the Spanish industry was definitely behind director Mateo Gil (co-writer of Amenabar's two big previous hits). There is an excellent score and great photography. But this scenario reeks of silliness. How anyone sat through the last 40 minutes with a straight face is beyond me.\"\r\n1\t\"I loved this movie. It is rare to get a glimpse of post-partum Vietnam, and this movie-sans combat scenes and exciting bombs and gunfire- did it. I had no idea I'd be so affected by it. What an amazing look at how alien Vets feel. It was tough to watch, quite frankly. We all understand the fighting and the Apocalypse Now type of drama, but this is so so different. What happens when they come back and try to live a life? They can't. It made me very aware of a large group of men that are rattling around lost in America. Not able to relate, can't sleep, can't have love affairs, can't deal with \"\"normal society\"\". They feel totally apart. This is a huge tragedy, and one that isn't addressed enough. Yeah, we've changed our attitude about Vietnam Vets, we like them now, but so what? It doesn't seem to have made any difference to them. It's too late? So it was a great film, but I cried a lot. I have no other criticisms.\"\r\n1\tokay, but just plain dumb. Not bad for a horror/comedy film. I was reading how people switched it with the Michael version and that is a good trick in my opinion because some grown ups hate horrors and when they see this one it will get them interested in horror films like this one or maybe (never seen it) the horror (possibly comedy) uncle Sam, i'll have to see about renting or buying that film but the 2nd is way better then this one but i bought this one on VHS of Amazon and got it November 21, the day before thanksgiving. worth the four bucks, l.o.l. at this film.<br /><br />9/10\r\n1\tThis is a very entertaining flick, considering the budget and its length. The storyline is hardly ever touched on in the movie world so it also brought a sense of novelty. The acting was great (P'z to Dom) and the cinematography was also very well done. I recommend this movie for anyone who's into thrillers, it will not disappoint you!\r\n1\t\"Had placed this on my TIVO for a rainy day due to the cast, some really hard working people in the industry, and when I finally watched I was NOT disappointed.<br /><br />This movie has some Altman-like flavor (he's mentioned in the end credits as a \"\"thanks\"\" person) utilizing seemingly independent unrelated plot lines that intertwine as the film draws to its climax. Macy is pure, clean, and honest as a man who can't seem to escape his \"\"destiny\"\", Sutherland plays and portrays as few can, Neve adds splash to a deliberately toned down environment, add Tracy Ullman, Barbara Bain (remember Mission Impossible on TV?), not to mention the steady John Ritter and you have all the ingredients for a good FILM. The script is uncluttered, the dialog is free from cliché and thoughtful (especially between Macy and David Dorfman). Suspend belief and enjoy, this is truly time well spent.\"\r\n0\t\"What a dog of a movie. Noni Hazelhurst's performance is quite good, but it sits amidst a jungle of abhorrent scriptwriting, mediocre direction and wooden acting from the bulk of the cast. Many of the characters are woefully miscast, particularly the ever overrated Colin Friels.<br /><br />Very little works in this pretentious garbage. Much of the \"\"character development\"\" is done through a silly, angst-ridden voice over and frequently completely contradicts the behaviour of characters on-screen. In fact, it's hard to even figure out who the voice overs are talking about because they describe such different characters to who we see on screen! How are we meant to know Colin Friels (Javo) is meant to be an erratic, violent and unreliable junkie? One of these silly voice overs tells us. For crying out loud, the nature of his character is half the point of the movie and the only thing that lets us know is a flippin' voice over! The real killer is the characters. Everything about them. Their clothes are perfectly maintained and look fresh from the rack, despite the fact we are constantly reminded they are meant to be artsy paupers. They are all absurdly well-spoken for \"\"junkies\"\". None seem to have any real comprehension of life on the skids or on smack and yet this is meant to be the case with most of them.<br /><br />Monkey Grip deserves no more attention than a weekday TV movie matinée. Crud like this, perfectly well shot and technically presented, but a cliché-driven angsty drama that shoots so wide of being plausible and meanders about for hours without really going anywhere. At least Noni gets down to her birthday suit at every given opportunity. There's no other sane reason to endure this junk.\"\r\n1\tBe careful with this one. Once you get yer mitts on it, it'll change the way you look at kung-fu flicks. You will be yearning a plot from all of the kung-fu films now, you will be wanting character depth and development, you will be craving mystery and unpredictability, you will demand dynamic camera work and incredible backdrops. Sadly, you won't find all of these aspects together in one kung-fu movie, EXCEPT for Five Deadly Venoms!<br /><br />Easily the best kung-fu movie of all-time, Venoms blends a rich plot, full of twists and turns, with colourful (and developed) characters, along with some of the best camerawork to come out of the 70s. The success of someone liking the film depends on the viewers ability to decipher which character is which, and who specializes in what venom. One is the Centipede, two is the Snake, three is the Scorpion, four is the Lizard, and five is the Toad. Each character has different traits, characteristics, strengths, and weaknesses. Therein lies the hook, we learn along with the student character, finding out who these different men turn out to be. We are in his shoes (so to speak), and we have to pick who we trust, and who we don't, just like he does. We learn along with him.<br /><br />Not only is the plot, the characters, and the camerawork great, it's also fun to watch, which in my book makes it more valuable than almost any other movie of it's kind. It's worth quite a few watches to pick up on everything that's going on. Venoms is a lesson on what kung-fu can really do...just don't expect many other kung-fu films to live up to it's gauntlet.\r\n0\tThe worlds largest inside joke. The world's largest, most exclusive inside joke.<br /><br />Emulating the brash and 'everyman' humor of office space, this film drives the appeal of this film into the ground by making the humor such that it would only be properly appreciated by legal secretaries writing books. The audience is asked to assume the unfamiliar role of a legal secretary, and then empathize with the excruciatingly dumb protagonist.<br /><br />The entire film is centered on the legal secretary finding free time, listening to music and writing a novel while working. These are his goals. You can't imagine the slap in the face it is to the audience when (around halfway through) they find out he has had a job which fit all three of those criteria, but then gives it UP! The director and screenwriter (Jacob Kornbluth and Josh Kornbluth) completely remove the audience's motivation to empathize or even find entertaining a protagonist that has previously thrown away that which he is complaining about the lack thereof.<br /><br />Apart from that major stumbling block, the legal secretary insider humor fails because they must be explained explicitly to the audience each time they happen. Without these asides, the audience wouldn't have noticed anything particularly strange. Humor is only effective if it doesn't need to be thoroughly explained to the audience what is funny.\r\n0\t1 out of 10.<br /><br />This is the kind of movie that you cant believe you just wasted 2 hours of your life as you see the credits role. I honestly think I could make a better Vampire movie.... and I know nothing. The only thing that does not just suck (harder than a Vampire) is Jason Scott Lee.... his character is at least a little bit cool, has some mystery, and kicks a little butt.\r\n1\t\"Talk about a dream cast - just two of the most wonderful actors who ever appeared anywhere - Peter Ustinov and Maggie Smith - together - in \"\"Hot Millions,\"\" a funny, quirky comedy also starring Karl Malden, Robert Morley, and Bob Newhart. Ustinov is an ex-con embezzler who gets the resume of a talented computer programmer (Morley) and takes a position in a firm run by Malden - with the goal of embezzlement in mind. It's not smooth sailing; he has attracted the attention of his competitor at the company, played by Newhart, and his neighbor, Maggie Smith (who knows him at their place of residence under another name), becomes his secretary for a brief period. She can't keep a job and she is seen throughout the film in a variety of employment - all ending with her being fired. When Newhart makes advances to her, she invites Ustinov over to her flat for curry as a cover-up, but the two soon decide they're made for each other. Of course, she doesn't know Ustinov is a crook.<br /><br />This is such a good movie - you can't help but love Ustinov and Smith and be fascinated by Ustinov's machinations, his genius, and the ways he slithers out of trouble. But there's a twist ending that will show you who really has the brains. Don't miss this movie, set in '60s London. It's worth if it only to hear Maggie Smith whine, \"\"I've been sacked.\"\"\"\r\n0\t\"Movie had some good acting and good moments (though obviously pretty low budget), but bad rating due to basic premise being badly developed. The main point of conflict between the two leads doesn't play out in a realistic manner at all. There are a few scenes where they disagree because of it, but no discussions of any great depth that would explain how they can be together while seeing the world so differently, especially since the employment of Glenn is so wound up in this part of his life (and Adam is active enough with his that he supports it with time and money.) Also, several times Glenn is portrayed negatively for being the way he is (apologizing to Adam for his past) while Adam is shown to be upstanding and \"\"traditional,\"\" which the film proclaims to be the \"\"good\"\" way in the end. I don't like being preached to like that. I attended a discussion session with the director after viewing LTR, and he said that he presented this conflict between them because, if he was in Glenn's shoes (and he said he does in real life relate to Glenn's view) that he could never date someone with Adam's views. Well, then, I think he should have done a much better job explaining how Glenn could do it in the film. Also, director said he directed this, his first movie, only after reading (Directing For Dummies.) Directing was not that bad, but far from a top notch effort. I've seen worse, but I rarely leave films feeling this frustrated.\"\r\n1\tI first read the book, when I was a young teenager, then saw the film late one night. About a year ago I checked it out on IMDb and discovered no copies available. I then hit the web and found a site that offers War Films, soooo glad that I did, ordered a copy and sat back and was able to confirm why I wanted to see it again.<br /><br />In my opinion to really enjoy the film I suggest you read get a copy of the book and then watch the film. The book is no longer in print but I did track a copy down via E-bay, the Author Alan White was a commando/paratrooper during the 2nd world war taking part in disparate clandestine operations and this was his first book. It is written by someone who knows and this fact I believe gives the book and film authenticity. I have not given the film a ten only because of the nature of the ending of the film, not as good as the book. There are a couple of plot lines that differ from the book also, which is strange as the book is not about the large scale nature of war but about the individual in war. The film illustrates this exceptionally well. I have the copy of the book to let my son read and then the film to let him watch, in that order.<br /><br />If you can track it down the book and the film then it is definitely worth it and I only wish that it was more readily available for more to read and see, one of my all best war films, ever!\r\n1\t\"On the face of it a film about women wanting to see a football match wouldn't appeal much to somebody with little interest in football such as myself however this isn't about football it is about discrimination and the women's enthusiasm for the sport they love.<br /><br />The film opens on the day of a crucial World Cup qualifying match between Iran and Bahrain, a girl is trying to get in to Tehran's Azadi Stadium by dressing like a boy, it looks like she will get in until a soldier tries to search her. Once caught she is taken to a small enclosure high up on the outside of the stadium where there are a handful of women who had already been caught, here they are guarded by a small group of conscript soldiers who's leader would rather be back home tending his livestock. We never learn the character's names but we get to know them as people as the girls plead with the guards to let them watch though a nearby gap in the wall and when refused try to get them to at least provide a commentary.<br /><br />As well as making an important point about the rigid gender segregation in much of present day Iran the film contains many hilarious moments such as the \"\"disguise\"\" one of the girls is made to wear when going to the toilet and the girl who disguised herself as a soldier and was only caught because she chose to watch the match from a seat reserved for a senior officer. The girls enthusiasm for the game is such that by the end the viewer is likely to be on the edge of their seat hoping that Iran will win and thus get to go to the finals in Germany. The soldiers aren't shown as fundamentalists, they are just conscripts who are there because they have to be and when explaining to the girls why woman can't watch men's sports don't seem that convinced by their own arguments.<br /><br />It is a shame that this film can't be seen in Iran itself but it is good that the wider world can see it and thus see that ordinary Iranians aren't a bunch of fanatics desperate to wage war on the west but normal people with the same passions and concerns as people everywhere. The cast did a great job in making their characters seem like real people rather than mere caricatures.\"\r\n0\t\"Uh oh! Another gay film. This time it's showing the black side. Bet your last dollar it's gonna have an unhappy ending! But WHY? With only less than a half dozen exceptions, ALL gay films have to end in death or an \"\"addio\"\" finale. It's like all the European Film Noir releases in the 40's, 50's, 60's, and 70's. The lead...male or female must die or ride off alone into oblivion. Why in God's name must writers, directors, and producers have the audience leave the theatre feeling depressed? After all, it's supposed to be gay...not glum. Maybe the category should be changed to a 'glum' film. A large percentage of gay relationships DO last and the couples DO ride off together into the sunset! No matter who writes or produces, he only shows the down side of gay life and gives the incorrect impression of gay lifestyle. This movie just proves my point. If you rent the DVD, take an antidepressant, for here comes another 'gay' film! This is WRONG!\"\r\n0\t\"I've barely just made it through one episode (\"\"Crouch End\"\"). The dialog was stilted and down-right cringe worthy. The acting was tragic. Eion Bailey, despite his best attempts to be dramatic, remains mostly expressionless. His eyebrows hint at a recent botox treatment. Claire Forlani could have just as easily been playing the damsel in distress in a silent movie. The characters were cartoons, each playing their stereotypical cog in the plot mostly random, meandering plot. Cheesy special effects can be excused given the TV miniseries budget. But attempts to create suspense and surprise through distracting cinematography added to the unwatchability. I get the feeling that the ending was supposed to be witty and surprising, but it was lame and had little to do with the rest of the story. If I had to compare it's overall quality to something else, I'd put this episode of \"\"Nightmares and Dreamscapes\"\" on par with the NBC's Hercules.\"\r\n0\t\"The Deadly Wake is THE PERFECT MOVIE for film students... to learn how NOT to make a film!<br /><br />Let's see... what did the crew mess up in this flick? Worst music mix Worst editing Worst script WORST ALL-TIME DIRECTING Worst acting Worst choreography Worst cinematography Worst props Worst sets Worst lighting Etc. Let's face it, if this \"\"film\"\" had been in ultra-high contrast black-and-white, AND silent... it still would have been awful. All scenes are dark (lighting people call it \"\"black\"\"), often, the music score drowned out the meandering dialogs, which was OK because nobody ever spoke two whole sentences without long pauses for effect. The \"\"evil\"\" robot was hilarious... what was that? Jazz dancing? Oh... I guess it was supposed to be walking tactically or something. I'm sure it struck fear into the hearts... of the poor editors. And, how do you edit so much footage of garbage? Not possible. Garbage is garbage, no matter how you splice it. How did anyone ever get this thru the dailys???<br /><br />Bottom line is- I couldn't stand to watch more than 15-minute segments, it was so bad... but I did see the whole thing (with lotsa breaks) just to see if it had ANY good parts in it at all. NOPE! NONE!<br /><br />A perfect example of how not to make a flick... a must see for EVERY serious film student!!!\"\r\n1\tenjoyed the movie and efficient Confucian crime drama, the old order survives the threat posed by a brash young greedy man, no doubt representing modern society. I thought the final scene was strange and could not understand if we were to believe that big D was being punished for being greedy or it was part of the plan a long. I loved the scene and for once in a Chinese movie, the violence was not a choreographed martial arts fest. On thing that always amuses me about HK films is that the main influence the British seem to have had is to introduce 'yes sir' and 'sorry' into the local language and its amusing that long after we have gone, they are still there.\r\n0\t\"A police officer (Robert Forster) in a crime ridden city has his wife attacked and young son killed after she dares to stand up to a thug at a petrol station. After the murderers get off scot-free thanks to a corrupt judge and he himself is jailed for 30 days for contempt of court, he decides to take matters into his own hands by joining a group of vigilantes led by a grizzled looking Fred Williamson. These Robin Hood types sort out any criminal that the law is unwilling to prosecute, and with their help he attempts to track down those that wronged him..<br /><br />This film is nothing but a big bag o'clichés. The only thing out of the ordinary is the on-screen slaying of a two year old boy, which was pretty sick. Otherwise it's business as usual for this genre e.g involves lots of car chases, beatings and shootings mixed in with plenty of male posturing. I could have done without the prison fight in the shower involving all those bare-a**ed inmates, though. Also, did they run out of money before filming the last scenes? I mention this because it ends very abruptly with little closure. If anyone knows, give me a bell.. actually, don't bother.<br /><br />To conclude: File under \"\"Forgettable Nonsense\"\". Next..\"\r\n1\tI loved this movie. In fact I loved being an actress in this movie. Iwas featured as a pregnant teenager in the second half of the movie. You may remember me more clearly in the classroom scene when the werewolf was exposing himself on film. I was the female in the front row with my hands planted on my face in reaction to what we were watching on the movie projector. In fact they double took me a few times so it's hard to miss that mistake. Thumbs up to Full Moon High. Wish it come to cable soon. Cheryl Lockett Alexander Leesville, Louisiana I loved this movie. In fact I loved being an actress in this movie. Iwas featured as a pregnant teenager in the second half of the movie. You may remember me more clearly in the classroom scene when the werewolf was exposing himself on film. I was the female in the front row with my hands planted on my face in reaction to what we were watching on the movie projector. In fact they double took me a few times so it's hard to miss that mistake. Thumbs up to Full Moon High. Wish it come to cable soon. Cheryl Lockett Alexander<br /><br />Leesville, Louisiana\r\n1\tHenri Verneuil represented the commercial cinema in France from 1960-1980. Always strong at the box-office, and usually telling dramatic and suspenseful tales of casino robberies, mafia score-settling and World War II battles, Verneuil could be counted on to give us two solid hours of entertainment on Saturday night. He worked with the cream of the male actors of his day: Gabin, Belmondo, Fernandel, Delon, Sharif, Anthony Quinn. I... comme Icare is the only time he directed Yves Montand. It's an oddly static film, taking place mainly in offices and conference rooms, containing not one chase scene and hardly any violence.<br /><br />Montand gives a good performance, if somewhat dry, and he is well supported by the other actors. I couldn't help wondering what Costa-Gavras could have done with this story, on the basis of Z (the Lambrakis assassination) and L'aveu (the torture of Artur London in Czechoslovakia by Stalinists).\r\n0\t\"The championship game is only a couple of days away, but things in New Orleans aren't as they should be. From players with marital problems to drug overdoses to gambling problems to a killer on the loose, life is getting in the way of what should be a memorable, wonderful time. Can things be put back into order and a killer stopped before the big game is ruined? <br /><br />Despite what you might think when you first read about Superdome, this is not a football movie. In fact football is nothing more than a plot device and an after thought. Instead, Superdome is another of those lousy soap opera-ish 70s made-for-TV movies populated with Hollywood has beens and those that never will be. The cast sleepwalks its way through the thing with no one really looking good. The best (or worst) example is Van Johnson in a very small role looking generally lost as to why he's there. The plot is dull, uninteresting, and unbelievable. Donna Mills as a hit\"\"man\"\"? Yeah, right! It's about as believable as the affair she has with the liquor soaked David Jansen. The movie also lacks any pace. Trying to get all four or five story lines into the film zaps whatever flow Superdome might have had. With no drama or suspense in sight, Superdome ends up being a very poor example of a 70s made-for-TV movie. The lone highlight for me was the voice-over work from the late Charlie Jones - a sportscaster I miss listening to. The eloquent way he overstates the intrigue and over-hypes the atmosphere in New Orleans is pure cheese at its finest.<br /><br />Like most others who have seen Superdome, I also did so courtesy of Mystery Science Theater 3000. It may be one of the KTMA public access episodes, but it's one of the best examples of the shows early start. So even though I've only rated Superdome a 2/10, I'll give this episode a generous 3/5 on my MST3K rating scale.\"\r\n0\t\"I'm amazed how many comments on this show are about how \"\"real\"\" it is. Maybe I'm not part of the same universe because if Veronica Mars is anything, it's over the top in a big way.<br /><br />The acting is chewing the scenery with enthusiasm and the plots have holes you could drive a truck through. That's not what I call real.<br /><br />It is so earnest in its desire to be \"\"relevant\"\" that it only shows how cut-off from reality Rob Thomas and his staff are.<br /><br />Overall, I found it to be at best a snooze-fest and at worst more than a little annoying. Kristen Bell looks like she could be a good actress, but it's hard to tell with the over-the-top style of the whole show.\"\r\n1\t\"Coming from the same director who'd done \"\"Candyman\"\" and \"\"Immortal Beloved\"\", I'm not surprised it's a good film. Ironically, \"\"Papierhaus\"\" is a movie I'd never heard of until now, yet it must be one of the best movies of the late 80s - partly because that is hands down the worst movie period in recent decades. (Not talking about Iranian or Swedish \"\"cinema\"\" here...) The acting is not brilliant, but merely solid - unlike what some people here claim (they must have dreamt this \"\"wondrous acting\"\", much like Anna). The story is an interesting fantasy that doesn't end in a clever way that ties all the loose ends together neatly. These unanswered questions are probably left there on purpose, leaving it up to the individual's interpretation, and there's nothing wrong with that with a theme such as this. \"\"Pepperhaus\"\" is a somewhat unusual mix of kids' film and horror, with effective use of sounds and music. I like the fact that the central character is not your typical movie-cliché ultra-shy-but-secretly-brilliant social-outcast girl, but a regular, normal kid; very refreshing. I am sick and tired of writers projecting their own misfit-like childhoods into their books and onto the screens, as if anyone cares anymore to watch or read about yet another miserly, lonely childhood, as if that's all there is or as if that kind of character background holds a monopoly on good potential. The scene with Anna and the boy \"\"snogging\"\" (for quite a stretch) was a bit much - evoking feelings of both vague disgust and amusement - considering that she was supposed to be only 11, but predictably it turned out that Burke was 13 or 14 when this was filmed. I have no idea why they didn't upgrade the character's age or get a younger actress. It was quite obvious that Burke isn't that young. Why directors always cast kids older than what they play, hence dilute the realism, I'll never know.\"\r\n1\tI have not read the novel, though I understand that this is somewhat different from it; the fact that I rather enjoyed this, coupled with the fact that this really is not my genre, leads me to the decision of not pursuing reading the book. Having not read a single word of Austen's writing, I really can't compare this to any of her work. What I can say is that almost every line of dialog in this is clever, witty, and well-delivered, as well as the biggest source of comedy in this. This made me laugh out loud a lot, with perfect British and verbal material. Every acting performance is spot-on, and Paltrow completely nails the role of a kind matchmaker. The characters are well-written, credible and consistent. I did find a couple of them extremely irritating, however, and while I think that at least some of that was meant to be funny, it tended to get repeated excessively, and it honestly wasn't amusing the first time they appeared. The editing and cinematography are marvelous, and everything looks utterly gorgeous. Plot and pacing are great, you're never bored. It does end in a *really* obvious manner, but maybe that's what the audience of these prefer. I can't claim that this did not entertain me, it did from start to finish, and I'd watch it again. There is brief language in this. I recommend this to any fan of romance stories. 7/10\r\n1\tDick Tracy was originally a comic book created in 1931 by Chester Gould. He is a plainclothes detective who tracks down a crew of villains, ranging from all types of visually original characters such as Flattop to The Blank to Big Boy Caprice. (These villains became so popular in the 40's that Warner Bros. created their own take on the Tracy-style villains in such cartoons as Daffy Duck) Tracy's comics were known for their liberal use of gunplay and the up-to-date technology advances (notably the wristwatch communicator), which got their fair share of screen time on this excellent movie. The music was done wonderfully by Danny Elfman, and the original songs by Madonna were interesting, but they were not the high point for her career. It's weird because as you watch the film and see the suspenseful moments, the film feels so much like Batman because of Elfman's memorable sound to his pieces.<br /><br />I love the tough-talking kid, Pacino's acting as Big Boy Caprice (and that chin!), Madonna's take on villainy, and the cinematography and directing were impeccable. This film was very professionally made and features tons of great actors who were known as great actors for a while before this film was made (Warren Beatty, Al Pacino, William Forsythe, Dustin Hoffman, Kathy Bates, Mandy Patinkin, Catherine O'Hara, Dick Van Dyke). The film was directed by Beatty himself, which was interesting. It is almost like Beatty saw himself as Tracy in a past life or something because he really fit the part.<br /><br />I had to give this film an 8/10 for everything that it brought to cinema that got overlooked (for whatever reason). There have been tons of misunderstandings over the rating of this movie on IMDb, and I still don't understand why. The characters were completely original and vibrant, as was the style of the sets, wardrobe, lighting, and everything in this film. Go buy it today. You will not be sorry.\r\n1\tbreathtaking, this is without doubt the best anime cartoon ever made. i first saw castle in the sky in the late 80s as a child and it left a lasting impression. years went by and i forgot the title of the film, and only by chance browsing on the internet i found this masterpiece again. after reading other peoples reviews and analysis I'm not surprised it has such acclaim and touched so many because it does leave an impression. a true fantasy adventure, a must see for all children and adults. its best not giving the story away so i would say watch this movie will a clear and open mind. if you have kids treat them to this i promise you they will love it. there's not much to say about this piece of art but if you've not seen it watch it and enjoy.\r\n1\tMy father, Dr. Gordon Warner (ret. Major, US Marine Corps), was in Guadalcanal and lost his leg to the Japanese, and also received the Navy Cross. I was pleasantly surprised to learn that my father was the technical adviser of this film and I am hoping that he had an impact on the film in making it resemble how it really was back then, as I read in various comments written by the viewers of this film that it seemed like real-life. My father is a fanatic of facts and figures, and always wanted things to be seen as they were so I would like to believe he had something to do with that.<br /><br />He currently lives in Okinawa, Japan, married to my mother for over 40 years (ironically, she's Japanese), and a few years ago was awarded one of the highest commendations from the Emperor of Japan for his contribution and activities of bringing back Kendo and Iaido to Japan since McArthur banned them after WWII.<br /><br />My father was once a marine but I know that once you are a marine, you're always a marine. And that is exactly what he is and I love and respect him very much.<br /><br />I would love to be able to watch this film if anyone will have a copy of it. And I'd love to give it to my father for his 94th birthday this year!\r\n0\tI thought that My Favorite Martian was very boring and drawn out!! It was not funny at all. The audience just sat through the whole movie and didn't laugh at all!!! Not even the kids laughed!! That is sad for a Disney movie!! I thought they could have found somebody better to play the martian rather than Christopher Lloyd!! He was really stupid!! And he was not funny!! I thought the talking suit was really dumb!!! In the original television series the suit doesn't talk and move around!! In my opinion they should not have wasted their time on this movie!! I give it two thumbes down!! Really a waste of time and I would not recommend the movie to anybody!!! Thank You!!\r\n0\t\"I give 3 stars only for the beautiful pictures of Africa. The rest was... well pretty boring. For about 50min we have the outline of the plot... In War of the worlds, the introductory part lasted, oh, about 10min? Then was real action! This is something like:\"\"Let's take a walk in the savanna and gasp at the beautiful sunsets!\"\". And maybe deliver a message, like \"\"Don't kill elephants!\"\". Very ecological. I would have expected this out of a \"\"new\"\" Steven Segal movie, not from this... The leading actress makes me think about artificial sun-tan, dyed hair and too much foundation! And I didn't see one scene where her hair is messed up, or she sweats, or her clothes are dusty. She just doesn't look like a 19 century woman! And in the bar, where they seek up our hero, Swayze makes a comment about the commander that he looks like Dracula. Hmmm, Bram Stoker wrote his book and published it in 1896, and it became famous in the next years. Livingstone and other explorers went to central Africa from 1840 to 1880. So unless the action takes place between 1896 and 1900.. Houston, we have a problem. :) Swayze makes a nice impression.. as a nutshell - hard on the outside, but soft and cuddly on the inside. Not that I would cuddle with a nut, but you get the point. He really manages to have that beaten puppy look on his face on several occasions. The movie stank. Way too long and increasingly boring. don't watch it! Don't buy it! It's a waste of your money!\"\r\n0\tThis is just a joke of a movie,they lost me already at the opening scene (Spoilerwarning) dangerous creature kills other creature in his cage,this is watched by a scientist that works there on a monitor and guess what she does,well lets go in to the cage to check the stuff out,omg how dumb do those writers think human beings are come on thats the same like jumping in a fish tank with a great white shark because it ate your goldfish...Pretty useless and even more dumber.And i will not even talk about the cast because they aren't worth the effort. why they didn't fired the guy that wrote that immediately is a mystery to me.....And this kinda dumbness continues the entire movie. Only good thing where the cgi that is better then average for these kinda low-budget movies.<br /><br />If these kinda things don't bother you go see it,but be warned if your IQ is above 60 you will probably hate it.\r\n1\t\"I'm far from a Sylvester Stallone fan and I guess the only time I really appreciated his appearance was in the French movie Taxi 3, which is an almost inexistent small role. And yet I must admit that this movie was actually not that bad, even though I feared the worst.<br /><br />When Gabe (Stallone) fails to rescue the girlfriend of one of his friends and she plunges to her death from a 4000 feet high mountain top, he can't possibly force himself to keep working as a mountain ranger. For almost a year he doesn't set a food in the reserve, but than he returns. Soon after he's back, they get an emergency call from a group of hikers who got trapped in a snow storm. At least, that's what the rangers believe. In reality it is a group of robbers who crashed with their airplane in the mountains after their daring plan to steal cases full of money from a flying government plane failed. The cases are spread all over the reserve and they need the help of professional climbers to retrieve them...<br /><br />This is of course not one of the most intelligent movies ever, but in its genre it's an enjoyable one. I especially enjoyed John Lithgow as the evil master mind and leader of the gang of robbers. I know him best from the TV-series \"\"3rd Rock from the Sun\"\", but I enjoyed his performance in this movie as well. Overall the acting is OK, it had a lot of action to offer and of course also some one-liners, but it also offered a very nice decor. This movie was filmed in a magnificent natural environment. I loved the snowy mountains and valleys, the mountain rivers and the forests... Perhaps that's why I give this movie a score higher than what I normally give to an action / adventure movie of this kind. I give it a 6.5/10. If you don't expect too much, this is an enjoyable movie.\"\r\n0\t\"This isn't cinema. It isn't talent. It isn't informative. It isn't scary. It isn't entertaining. It isn't anything at all.<br /><br />I got this because my cousin says, \"\"Diablo! COOL!\"\" Yeah, right. The only thing cool about this experience was the lone fact that I didn't buy it but rented it instead.<br /><br />It's shot like a bad soap opera. No wait. Soap operas at least LOOK professional...sorta. This? This looks like it was shot with someone's camcorder. It's horrid! Wretched! It sux.<br /><br />The cinematography is detestable! WHO IS this director anyway? I don't even care enough to look him up. He STINKS! The performances by these poor unsuspecting actors were far better than this crap-fest deserved.<br /><br />2.6/10 on the \"\"B\"\" scale. <br /><br />That registers about a 0.3/10 on the \"\"A\"\" scale from...<br /><br />the Fiend :.\"\r\n0\tThis has to be the WORST movie ever!!! The acting is scarier than the movie. Lots of blood, but no idea where it comes from, cuz they don't even show you the cuts. I can't believe I wasted my time watching this movie. We laughed like we were watching a comedy and not a horror movie. This is a disgrace to horror films!!! For one if they are in Asia why is there a white cop driving past Waste Management trash cans?! There's so much of another language that you don't even know what's going on half the time. The film editing is a joke, my teenager could do better. And if I went to a movie theater and that nasty old man was working the window that would be the first clue. DO NOT WATCH THIS MOVIE!!! NOT TO EVEN SEE HOW BAD IT IS, YOU WILL BE SORRY YOU DID!!\r\n1\t\"Ah, McBain The character name is immortalized and forever ridiculed by \"\"The Simpsons\"\" but it will also always  to me personally, at least  remain the name and title of a tremendously entertaining and outrageously violent early 90's action flick; directed by the cool dude who brought us \"\"The Exterminator\"\" and starring two of the most ultimately badass B-movie heroes Christopher Walken and Michael Ironside (the latter with a cute little macho ponytail). I guess \"\"McBain\"\" will largely have to be labeled as a guilty pleasure, because there's no way I can convince anyone this is an intellectual motion picture. The film is unimaginably preposterous (most action heroes take on a small gangster posse  McBain takes on an entire country) and yet takes itself way too seriously. The script is a non-stop and incoherent spitfire of clichéd situations, nonsensical twists, compulsory sentimental interludes, grotesquely staged action sequences and utterly implausible character drawings. It's a totally delirious movie; I loved it. <br /><br />Vietnam POW McBain's life is saved by fellow soldier Roberto Santos on the very last day of the war. They each keep half a dollar note as a symbol that McBain is in Santos' debt. Eighteen years later, Santos is a spirited rebel leading the revolution against the corrupt president of his home country Columbia. Santos initial attempt to take over the power fails and he's publicly executed on El Presidente's balcony. His sister travels to New York with the dollar note and turns to McBain for financial assistance and manpower. McBain and his former Vietnam buddies, who all coincidentally happen to be fed up with the injustice in this world, charter themselves a miserable little plane and fly to Columbia to open a gigantic can of whoop-ass. <br /><br />Okay, let's not fool each other here. The fact you're reading a user- comment on \"\"McBain\"\" already indicates that you have some sort of interest for low-budget B-movie action. One of my fellow reviewers spent quite some time composing a list containing all the main stupidities and insensible moments of \"\"McBain\"\". This list is totally accurate and I can only concur with it. Heck, I could even add some more senseless sequences to that list (like the preposterous and needless heroic self- sacrifice of a soldier who doesn't even have any affinity with the goal of the mission and the rest of McBain's squad), but what's the point? You definitely know not to expect a 100% coherent and plausible masterpiece. We know from beforehand this will be a silly and exaggeratedly flamboyant movie, and it's maybe even the exact reason why we want to check it out! This is a terrifically outrageous and exciting movie about a bunch of former Vietnam buddies turning into mercenaries and declaring war against the corrupt Columbian president and the national drug cartel. Please don't expect another \"\"Apocalypse Now\"\". This particular motion picture relies on the ruff 'n tuff acting performances of the macho leads, a whole lot of explosions and gunfights and  last but not least  a fantastic soundtrack in which Joan Baez sings a cover of \"\"Brothers in Arms\"\".\"\r\n0\tAlright if you want to go see this movie just give me our money I'll<br /><br />kick you were it counts and you'll have the same amount of fun. I'll<br /><br />even guarantee more fun. This movie once again shows what happens when<br /><br />you can't get any one else to hire your family and your forced to make<br /><br />your own movies. Same, I'm going through puberty humor jokes, just<br /><br />dumber and grosser. This movie is really a disgrace to movie goers. They<br /><br />try to shock you into laughing because you can't believe the levels they<br /><br />have to stoop to make you laugh. So my offer above stands as\r\n1\tThis movie is sort of a Carrie meets Heavy Metal. It's about a highschool guy who gets picked on alot and he totally gets revenge with the help of a Heavy Metal ghost. it is such a classic. The soundtrack is A++++. You've got living legends of Metal in it. And Marc Price was great in this film. This is a must have for metal fans.\r\n0\tIt's obvious that all of the good reviews posted for this movie so far are from insiders who were either involved with the film or who know somebody who knows somebody and have thus seen multiple cuts. Well, I don't know anyone involved, and I've seen the final cut, and it is pure garbage. The only thing it has going for it is ambition and multiple cameos from horror legends (none on screen for terribly long). It's as if the filmmakers made this movie on a weekend during a horror convention and got actors like Tony Todd, Tom Savini, David Hess and Michael Berryman to film scenes during their coffee breaks. This is an ultra-cheap, shot-on-video wannabe X-Files with terrible acting from a cast of non-actors with more mullets than is acceptable in the 21st century. There is little or no action; it's all overly explanatory dialogue that attempts to explain a pointlessly convoluted plot. Ther computer FX are a joke, but there aren't enough of them nor enough action to make this film enjoyable in a MST3K way. After about 8 straight scenes of nothing but talking, you'll find yourself reaching for the fast-forward button...and not letting go. Absolutely worthless.\r\n0\t\"I concur with everyone above who said anything that will convince you to not waste even a briefest of moments watching this amazingly amateurish movie. Very poor acting, offhand production values, utterly pedestrian direction, and a script so inept and inane it should never have been written, let alone produced. Even Hollywood \"\"professionals\"\" apparently go to work just for a paycheck, although no one should have been paid for this bad work. Careers should instead have ENDED over this inconsequential drivel.<br /><br />OTH, there is something fascinating about watching something so jaw-droppingly bad. And Chad Lowe is terrifically and consistently bad.\"\r\n0\tThis film, originally released at Christmas, 1940, was long thought lost. A very poor copy has resurfaced and made into a CD, now for sale. Don't buy it! The film is unspeakably terrible. The casting is poor, the script is awful, and the directing is dreadful.<br /><br />Picture Roland Young singing and dancing. And that was the highlight.<br /><br />Perhaps this movie was lost deliberately.\r\n1\t\"This is one of the best crime-drama movies during the late 1990s. It was filled with a great cast, a powerful storyline, and many of the players involved gave great performances. Pacino was great; he should have been nominated for something. John Cusack was good too, as long as the viewer doesn't mind his Louuu-siana accent. He may come off as annoying if you can't stand this dialect. The way that Pacino's character interacted with Cusack's character was believable, dramatic, and slightly comical at times. Danny Aiello was superb as always. David Paymer was great in a supporting role. Bridget Fonda was good but not memorable. There were times when this picture mentioned so many characters, probably too many. It may take a second viewing to remember, \"\"which Zapatti was which?\"\" After so many cross-references, one has to stop and think just to recap. The ending didn't have a lot of sting. It was built up for so long and then was a bit of a letdown. This was one of the few problems with the film. Since the movie wasn't billed as a \"\"huge, blockbuster\"\" big screen hit, it made some forget that this movie even existed. Pacino and Aiello were great but the film's lack of \"\"splash\"\" in the theaters may have accounted for no nominations. It was semi-successful in the home market, and viewers are still learning that this title is out there. Made in 1996, it still stands up today and will remain popular for many years to come.<br /><br />So, make yourself some lemon pudding (you'll see) and see this movie!\"\r\n1\tThe synopsis for this movie does a great job at explaining what to expect. It's a very good thriller. Well shot. Tough to believe it was Bill Paxton's directorial debut, though some shots do look EXACTLY like a storyboard version. <br /><br />Still, there are a few shots that really look good and show some real imagination on the part of Paxton. <br /><br />It's a solid story with some great twists at the end, several of them, all believable, all fun, and best of all, obscured well enough to make them true twists. <br /><br />The child actors in the movie do a great, too. I'm usually wary of movies with kids in starring roles because all too often they come off as Nickelodeon rejects, but both these kids do a good job.<br /><br />This movie is not gory. It's not very scary. But it IS very, very creepy.\r\n1\tSadly not available on DVD as yet, but worth pursuing on TCM or VHS. A secretary believes her boss is wrongly accused of murder, and courageously takes on many dangerous characters in an effort to establish the truth. A movie with many twists and dark alleyways, none of which I will mention! The jazz band sequence where our heroine seeks the information about the killer, is one of the most erotic scenes in Hollywood history, despite being at very low budget and made during WWII in black and white. Despite the low budget - Long Island looks somewhat mountainous - this is a movie of original style and outstanding vision. Ella Raines was a great actress discovered by Howard Hawks who knew much about these matters, casting the feistiest women - Joanne Dru, Hepburn, Angie Dickinson, Lauren Bacall, Ann Sheridan - of their era. Robert Siodmak was of one of several German, Hungarian & Czech film-makers - Sirk, Wilder, Zinnemann, Lubitsch, Curtiz,Lang, etc - who émigrés relocated to Hollywood, and brought a highly original fresh vision with them. Sadly Ella Raines was never given such a great part again, and eventually ended up in poorly produced westerns.\r\n0\tSomeone told me that this was one of the best adult movies to date. I have since discredited everything told to me by this individual after seeing this movie. It's just terrible. Without going into lengthy descriptions of the various scenes, take my word for it, the sex scenes are uninteresting at best. Jenna in normal street clothes in the beginning was the highlight of the film (she does look good) but it's all downhill from there.\r\n1\tClara Bow (Hula Calhoun) is daughter of plantation owner Albert Gran (Bill Calhoun), who is mainly interested in playing cards and boozing with friends. She's interested in riding in the countryside until engineer Clive Brook (Anthony Haldane) shows up to build a dam. One of her father's friends Arlette Marchal (Mrs. Bane) then competes for his attentions. His wife Maude Truax (Margaret Haldane) shows up for the contrived finale.<br /><br />Lots of 'pre-code' elements like nude bathing.<br /><br />Wonderful location shooting in Hawaii.\r\n1\t\"Artemisia Gentileschi, the daughter of Orazio Gentileschi, showed an early promise as a painter. Taught by her father, Artemisia was born in an era that denied talented women the right to have their work seen side by side art created by men. Her tragic life is chronicled in this biographic film directed and co-written by Agnes Merlik.<br /><br />Having read the novel \"\"The Passion of Artemisia\"\" by Susan Vreeland, made us investigate more into the life of this woman, her work, and her legacy. We also read Mary Garrard's \"\"Artemisia Gentileschi\"\", which should be a must read book by all art lovers.<br /><br />\"\"Artemisia\"\" presents the fictionalized facts we have read about showing the early life of the young woman as she starts to paint. She was clearly influenced by the work of her father, by Caravaggio, Agostino Tassi, and other Florentine painters of that period. Her relationship and love affair with Tassi is the basis of the film. Artemisia, unfortunately couldn't go as far as she could have because of the prejudice against women in the arts. It didn't help either she caused a scandal where she is accused of being raped by Tassi. She had to go to Rome in order to distance herself from that unhappy time of her life.<br /><br />Valentina Cervi makes a beautiful Artemisia. She is a gorgeous creature who awakened passion in men. Michel Serrault plays Orazio, her father. Miki Maojlovic is seen as Tassi, the man who wanted Artemisia, but ended up in jail. Emmanuelle Devos appears for a moment.<br /><br />The film has a glossy finish that the camera work of Benoit Delhomme captures in all its splendor. The scenic locales of the film offer an idea of what inspired that school of painting to show in their canvases. The music by Krishna Levy serves well what we see. Agnes Merlik directed with sure hand showing a visual style of her own.\"\r\n1\tWhat a GREAT movie! This is so reminiscent of the wonderful Disney classic family movies of the 60's and the 70's. I was so pleasantly surprised, after the past 20 years of absolute detritus Disney's live productions crews have churned out.<br /><br />This movie is an absolute joy. The child stars were just that; professional, quality actors. I am most impressed with the quality of this movie.<br /><br />Sigourney Weaver was a total sycophantic *insert hyperbole here* running a prison camp for wayward boys. Siobhan Fallon was wonderful as the star's mother.<br /><br />I won't recant the story here as there is little point in doing that yet again, but the story is wonderful, the direction was extraordinary and the acting quality was superb! This work reminds you what it's like to be a child, without going all sugary or being too grim. The deleted scenes featured on the DVD version were truly best left deleted. They were too harsh for this movie and would have taken so much from it. While the abuse was hinted in the finished product, it was not outright shown beyond a certain extent. It was best that way.<br /><br />This was an absolutely delightful movie to watch.<br /><br />It gets a 9/10 from...<br /><br />the Fiend :.\r\n0\t\"Well, it's Robin Hood as 'geezer' all right... just as advertised! That didn't sound very hopeful, and alas, it was worse than I'd suspected.<br /><br />A laddish Robin I can take; a Robin who tangles with a pert dyer's daughter I can credit; but a Robin who exchanges not-very-funny banter with his single henchman is harder to swallow, and a Robin and *entire cast* who seem to be having difficulty managing their lines is the kiss of doom. How could anyone let such laboured delivery pass without re-shooting the scenes? Again and again, Much sounds as if he's struggling with half-comprehended Shakespeare rather than letting loose with a salty quip; I hoped at the onset that it was just a failed comedy trait in a character clearly destined for the role of comedy sidekick, but then it started spreading throughout the rest of the cast.<br /><br />Whatever else you say about Errol Flynn in the role, he had the knack of delivering high-flown dialogue as naturally as if he'd just thought it up on the spur of the moment... and as this production shows, that's not at all as easy as it sounds! If they were going to cast the characters as cheeky chappies, the actors in question should have been given appropriate lines: they sound as if they haven't a clue how to handle them.<br /><br />I'm afraid I didn't even like the pantomime Sheriff, for a similar reason; the lines are clearly not intended to be taken seriously but delivered (and in this case written) with a nudge and a wink at the audience. They're out of place all right -- fourth-wall-busting stuff -- but really not that funny.<br /><br />This much-promised production reminded me of a limping school play. The only actor and character I felt any appreciation for at all was the one playing Guy of Gisbourne, who was the sole one who appeared to have any handle on (a) credible villainy and (b) credible characterisation -- but frankly, I wouldn't have said that was a very good augury for the future of the series! As of the time of writing, I'll give it another shot in the hopes that things may improve and bed down a bit by next week, with less stilted scene-setting required and perhaps the actors more at ease with the dialogue: after all, the opening episode of \"\"Doctor Who\"\" wasn't exactly a show-stopper, though it was nowhere near as bad as this. But if I see no improvement after episode 2, I'm afraid the series has almost certainly lost one viewer.<br /><br />Which would be a pity, because I've got a soft spot for the \"\"Robin Hood\"\" legend on screen, from the adventures of Douglas Fairbanks to the sturdy reliance of Richard Greene. But this Robin fails to stir my blood in the slightest.\"\r\n0\tI can't believe I watched this expecting more. It starts out OK. This movie pushes the limits of reality way to far!! At least the first one was somewhat realistic. It rips off the first movie and even mentions the Joshua Project. Anyone who knows anything about computers will hate this movie. It does have one good message in it though, WATCH OUT FOR BIG BROTHER!!! The movie just makes it seem like Big Brother is way bigger than he actually is in reality. That was very aggravating. Even the make-up on the actors was completely bad. Some of the acting is pretty good. Some of the acting is really bad though. The script was OK at some points and completely messed up at other parts. This movie plays on convenience about every five minutes. Like I said, I can't believe I watched it expecting more. I think I am gonna pop in the original to get back to earth...Q\r\n0\tI just saw Adam Had Four Sons for the first time and the thing that struck me was that I believe that the model used was Theodore Roosevelt and his four sons. They were approximately the same ages as the four boys in this film. Warner Baxter in his portrayal of Adam Stoddard talked about the same values and family tradition that you would have heard from our 26th president without some of the more boisterous aspects of TR's character. <br /><br />Like TR all of the Stoddard sons serve in World War I, in this case though the youngest only loses an eye instead of being killed. <br /><br />But what if a female minx gets into this all male household and disrupts things? That's Susan Hayward's job here. In one of her earliest prominent roles, Hayward is a flirtatious amoral girl who marries one son, has an affair with another, and starts making a play for the third. It's an early forerunner of the kind of a part that later brought her an Oscar in I Want to Live.<br /><br />I suppose that with as powerful a model of decorum as Theodore Roosevelt was and Warner Baxter portrays, everyone is afraid to tell Father what's going on. The sons and also their governess Ingrid Bergman. Here's where the plot gets a little silly. Bergman is introduced to us as a governess hired by Baxter and wife Fay Wray for their kids. Wray dies and Baxter suffers some financial reversals in business. Bergman has to be let go. She goes back to France and years later comes back to the family when the kids are grown up. <br /><br />I'm sorry, but I can't believe the kids need a governess now. Hayward is quite right when she confronts her that it wasn't the kids who brought her back. In the normal course of things, Bergman would have gotten on with her life. <br /><br />One of the previous reviewers said that a quarter to a third of the film I have was edited out. Possibly that could be the reason for the many plot holes we have.<br /><br />It's too bad that Ingrid and Susan could not have done another film together in the Fifties when Hayward was at her heights and Bergman had just made a comeback.<br /><br />Susan Hayward is the main reason to see Adam Had Four Sons. And I'm willing to believe that a good deal of Ingrid was left on the cutting room floor.\r\n0\tHalf Past Dead, starring Steven Seagal in the main role was a major B-hit. Half Past Dead 2 is just a direct-to-video sequel, an action movie with nothing lose but with no capacity to win something. It's less entertaining than the first one: in all aspects. But it's although worthy a look. If you like action movies or just something to watch during a popcorn session; if you also like to watch former WWE stars on screen or even if you love to watch sequels, even if they are direct or not.<br /><br />Kurupt did a good job, Bill Goldberg was below the average, I think he isn't made to the job. Kurupt is a good comedian, I say. The rest did the job, but nothing amazing, nothing far from alright.<br /><br />Technical details, well, a production made by Sony can't be great. Cinematography was a disaster but overall direction was acceptable. Whatever, just watch it if you want. If you watch, you won't lose anything. But if you don't... well, you won't lose either.\r\n0\tThis must me one of the worst takes on vampires ever conceived by men. How can one turn such a mesmerizing subject into a totally uninspiring story? Apparantly not such a difficult task... First of all, a conditio sine qua non of any vampirefilm is a dark and gloomy atmosphere with a nice sexy touch, this one lacks all these things.. Too much light - the spots! oh my god, why in the name of Christ/Judas was that about?<br /><br />Every time Dracula came about he was devoured by light (in the script to keep him weak, for the record: just weak) There was only one scene that made it almost worth watching, near the ending of the movie (beatiful dancingscene with Dracula and his new conquest). I really enjoyed the first one, the Judas-twist was defintely original, but this one's just not good, not in any way. Hopefully the third one will cary the vampire-signature I like so much in other classics like Herzog's Nosferatu, Coppola's Dracula or even Interview with the vampire.\r\n0\tThis has to be some of the worst direction I've seen. The close-up can be a very powerful shot, but when every scene consists of nothing but close-ups, it loses all its impact. <br /><br />Tony Scott has some very beautiful scenery to work with, the backdrops of Mexico, the cantinas, the beautiful estate where Anthony Quinn lives, and the dusty towns Costner rolls through on his journey for revenge. Unfortunately we only catch quick glimpses of these places before the camera cuts to a picture of a big, giant head. Even the transition scenes where Costner is driving alone across Mexico quickly cut to a close-up. <br /><br />The score is over-dramatic and intrusive, dictating every emotion we should feel. The story itself should have been handled much better. Among other things, too many people pop up out of nowhere to help Costner along - it's just bad writing. <br /><br />It's a typical thriller storyline, but many others have taken the same premise and done outstanding things with it. Costner's No Way Out had a somewhat similar storyline, but it was a much better movie. <br /><br />The ending was completely anticlimactic and suffered from the most melodramatic scoring of the film. This movie was never going to be great, but if we saw more of Mexico and less of giant heads this film might have been watchable.\r\n1\t\"Okay. As you can see this is one of my favorite if not favorite films. This is a character drama which is absolutely hilarious. The main character is a business man who is stuck in a \"\"same thing, different day\"\" mentality. He sees a woman looking melancholy out a window of a dance studio from his train everyday and wonders about her and decides to find out more about her. He decides to join the dance class only to find out she is not the instructor. From there he bonds with four other dancers and learns to enjoy dancing as well as finding out about the mysterious woman.<br /><br />There is no gratuitous (or any) sex involved, just how a small group of people learn how friendships are formed and developed.<br /><br />This film was remade with Richard Gere and Jennifer Lopez and the new one while appealing is nowhere as enjoyable as the original. The movie never made it big in America because it was not eligible for the Oscars since it was broadcast on television in Japan (movies cannot be released on TV or they are disqualified for Oscar nominations). It did win numerous awards in Japan for best film, cast, director etc for their \"\"Oscar\"\" awards.\"\r\n0\tThe plot of this terrible film is so convoluted I've put the spoiler warning up because I'm unsure if I'm giving anything away. The audience first sees some man in Jack the Ripper garb murder an old man in an alley a hundred years ago. Then we're up to modern day and a young Australian couple is looking for a house. We're given an unbelievably long tour of this house and the husband sees a figure in an old mirror. Some 105 year old woman lived there. There are also large iron panels covering a wall in the den. An old fashioned straight-razor falls out when they're renovating and the husband keeps it. I guess he becomes possessed by the razor because he starts having weird dreams. Oh yeah, the couple is unable to have a baby because the husband is firing blanks. <br /><br />Some mold seems to be climbing up the wall after the couple removes the iron panels and the mold has the shape of a person. Late in the story there is a plot about a large cache of money & the husband murders the body guard & a co-worker and steals the money. His wife is suddenly pregnant. <br /><br />What the hell is going on?? Who knows?? NOTHING is explained. Was the 105 year old woman the child of the serial killer? The baby sister? WHY were iron panels put on the wall? How would that keep the serial killer contained in the cellar? Was he locked down there by his family & starved to death or just concealed? WHO is Mr. Hobbs and why is he so desperate to get the iron panels?? He's never seen again. WHY was the serial killer killing people? We only see the one old man murdered. Was there a pattern or motive or something?? WHY does the wife suddenly become pregnant? Is it the demon spawn of the serial killer? Has he managed to infiltrate the husband's semen? And why, if the husband was able to subdue and murder a huge, burly security guard, is he unable to overpower his wife? And just how powerful is the voltage system in Australia that it would knock him across the room simply cutting a light wire? And why does the wife stay in the house? Is she now possessed by the serial killer? Is the baby going to be the killer reincarnated? <br /><br />This movie was such a frustrating experience I wanted to call my PBS station and ask for my money back! The ONLY enjoyable aspect of this story was seeing the husband running around in just his boxer shorts for a lot of the time, but even that couldn't redeem this muddled, incoherent mess.\r\n0\tThis was a classic case of something that should never have been. Gloria was now a single mother, her husband had left her because she wouldn't live in some commune with him (he was mad that Reagan had been elected and wanted to turn his back on society). Right then and there I had problems with the series - come on, I say to myself, is this the same noble Michael Stivic that countered Archie Bunker's right winged philosophies? The series went on, but it just didn't have any pizazz. Whatever momentum Sally Struthers gained from All the Family was long gone. Maybe, if the series had been given another name and presented as being totally independent of All In The Family, it might have worked out. Ah well, that's show business.\r\n1\t\"The movie starts out with a bunch of Dead Men Walking peeps sitting in individual cells, waiting for their inevitable meeting with death represented by the electrical chair.<br /><br /> Then our \"\"hero\"\", who is called Tenshu, is taken to the chair, he's zapped, and then....he's still \"\"Alive\"\". AHA ! He is given a choice by some creepy military guys who look really cool : Either we zap you until we've made sure you're actually dead OR you can walk through this door and take whatever destiny might lie ahead of you\"\". Our hero says yes to option 2, and then the actual story commences.<br /><br /> He wakes up in a different sort of cell (very high-tech and very big), where he finds another cell-mate, who also managed to survive the electric boogie-ride. A voice in the speakers tells them that they are free to do whatever they wish, as long as it happens within that room. Sounds a little suspicious, but the two men accept : What else can they do ?<br /><br /> What these two men do not know is that they have been set together, so they can awaken an inner urge to kill within them. Basically the unknown scientists in the background p**s them off until they decide that they should kill each other. Sounds weird ? Indeed, but there's a greater purpose to all of this. THIS is the part which should not be revealed, and so it shall remain unrevealed.<br /><br /> But fear not, it is the unknown that lures the viewer to watch more of this pseudo-action movie, fore it has an entirely different approach to the question : How long time can you stand being with a man who's an S.O.B. and would you kill him to obtain freedom ?<br /><br /> The first hour is basically trying to awaken your interest, it sneaks up without you actually knowing it. Then it becomes a roller coaster ride with WILD Matrix-like action fight-scenes with a touch of individuality to honor the comic book from which the movie is based upon.<br /><br /> The movie is indeed very special, so special that normal cinemas won't view it under normal circumstances. However, the story is fascinating, the music is fantastic, and the actors do their bit (some more than others) to make the movie truly unique.<br /><br /> If you should be so fortunate that your cinema or video store has it, watch it, and enjoy the fact that not everyone is trying to make mainstream movies to earn huge bunches of cash.<br /><br />\"\r\n0\t\"*Spoilers and extreme bashing lay ahead*<br /><br />When this show first started, I found it tolerable and fun. Fairly Oddparents was the kind of cartoon that kids and adults liked. It also had high ratings along with Spongebob. But it started to fall because of the following crap that Butch Hartman and his team shoved into the show.<br /><br />First off, toilet humor isn't all that funny. You can easily pull off a fast laugh from a little kiddie with a burp, but that's pretty much the only audience that would laugh at such a cliché joke. Next there are the kiddie jokes. Lol we can see people in their underwear and we can see people cross-dressing. LOLOLOL!!! I just can't stop laughing at such gay bliss! Somebody help me! But of course, this show wouldn't suck that bad if it weren't for stereotypes. Did you see how the team portrayed Australians? They saw them as nothing but kangaroo-loving, boomerang-throwing simpletons who live in a hot desert. But now... Is the coup de grace of WHY this show truly sucks the loudest of them all... OVER-USED JOKES!!! The show constantly pulls up the same jokes (the majority of them being unfunny) thinking it is like the greatest thing ever! Cosmo is mostly the one to blame. I hated how they kept on mentioning \"\"Super Toilet\"\" (which also has a blend of kiddish humor in it just as well) and Cosmo would freak out. And who could forget that dumb battery ram joke that every goddamn parent in Dimmsdale would use in that one e-mail episode? You know, the one in which every single parent (oblivious to other parents saying it) would utter the EXACT same sentence before breaking into their kid's room? Yes, it may be first class humor to some people, but it is pure s*** to others.<br /><br />If I'm not mistaken, I do believe Butch Hartman said something about ending the show. Thank God! Everyone around my area says it's, like, the funniest Nickelodeon show ever. I just can't agree with it I think it's just another pile of horse dung that we get on our cartoon stations everyday, only worse.\"\r\n0\t\"This movie is yet another in the long line of no budget, no effort, no talent movies shot on video and given a slick cover to dupe unsuspecting renters at the video store.<br /><br />If you want to know what watching this movie is like, grab a video camera and some red food dye and film yourself and your friends wandering around the neighborhood at night growling and \"\"attacking\"\" people. Congratulations, you've just made \"\"Hood of the Living Dead\"\"! Now see if a distribution company will buy it from you.<br /><br />I have seen some low budget, shot on video films that displayed talent from the filmmakers and actors or at the very least effort, but this has neither. Avoid unless you are a true masochist or are amused by poorly made horror movies.\"\r\n0\t\"\"\"Mistress of the Craft\"\" Celeste works as an agent for the London branch of Interpol's Bureau 17, which specializes in (I think) occult criminals. She possesses the Eye of Destiny, good in her hands, dangerous if anyone else got it.<br /><br />Bureau 17 has caught a Satanist from California, Hyde (no relation to Dr. Jekyll). Detective Lucy Lutz of LAPD flies to England to bring him back to the US. Lutz is the connection to the earlier Witchcraft movies, having been played by Stephanie Beaton before in Witchcraft 9. In part 7, Lutz was played by another woman; in 6, Lutz was a man!<br /><br />Lutz's part in 9 was not terribly big, but she's one of the main stars in this one. Though she's left behind her high heels and short skirts, she still has revealing tops in this one. And this time around she has nude and sex scenes. Beaton is pretty appealing in the role.<br /><br />As usual, there are a number of sex scenes. An anonymous clubgoer has a fatal threesome with two vampires, the Satanist and head vampire get it on with some kink, Lutz finds an English pal, and Celeste and her boyfriend make love.<br /><br />The main recurring character of the Witchcraft series, Will Spanner, does not appear in this one, although Lutz mentions him to Bureau 17 agent Dixon in a conversation about vampires. She also phones her partner Detective Garner (parts 6, 7, and 9), though we don't hear his end of the conversation.<br /><br />Hyde is sprung from jail by a group of vampires led by Raven, for a Walpurgis ritual having something to do with a god named Morsheba (I think). Hyde delivers all of his lines in a very flat manner, while Raven overacts to a campy degree. The fight scenes are terribly choreographed.<br /><br />The audio in the movie was pretty poorly recorded, and poorly edited. Additionally, some dialogue gets lost under blaring music or sirens. Cinematography isn't great either. Having the movie set in and actually shot in the UK was a bit of a novelty though, at least for this series.<br /><br />Wendy Cooper is very good as Celeste; attractive, certainly, but more importantly she's easily the best actor in the movie (bad fight scenes notwithstanding). I'm quite surprised her filmography is so small. If there's ever a Witchcraft XIV, and I would bet there will be, they should bring her back, even if it means flying her to California!<br /><br />Witchcraft X is available on its own, or in the DVD collection Hotter Than Hell along with Witchcraft XI and two unrelated movies.\"\r\n0\tThis comedy is really not funny. It' a romance that plays so much on stereotypes it makes no impact. It's a caper film so derivative -- yes, even back then -- it has no snap.<br /><br />The cast is adequate. More than that it's hard to say. However, what's nice is that the players are unfamiliar. At MGM, this would have starred Robert Montgomery. The wife of a businessman with no time for anything but work could have been any number of actresses.<br /><br />We can be grateful that this little known film is peopled by performers mostly unknown today. And the production values aren't awful. Yet it makes no real impression.<br /><br />It's a generic knockoff. And who wants that?\r\n0\t\"I bought this movie because this was Shah rukh khans Debut.And i also liked to see how would he do.I must say he is excellent in his role.Divya Bharathi is superb in this movie.Rishi does a wonderful job.Susham Seth supported well.Alok nath was good in his role.Amrish and Mohnish did their parts well too.Dalip also was good in his small role.Actors shine in a Mediocre movie.The direction is average.The editing is poor.The story is boring.It tells us about Ravi a famous pop singer.He has a lot of female fans.One of them is Kaajal.Ravi and Kaajal fall in love and get married.Ravi gets killed by his cousins.Kaajal becoems a widow..To escape from Ravis cousins.They go to Bombay.She comes across Raja.She falls in love with him and gets married.Ravi returns.The story is predictable.The climax is predictable.The first half bores.It also drags a lot.But it is saved by the actors and music.The second half entertains.The music is catchy with some nice songs.The cinematography looks outdated in the first half but it looks unimaginative.The song picturisations are dull except for \"\"Sochenge Tumhe Pyar\"\" and one rain song.The costumes are outdated.Any way watch this just for the actors and music Rating-4/10\"\r\n1\ti am totally addicted to this show. i can't wait till the week goes by to see the next showing. it's a great story line and it has the best actors and actresses on the show. i will tune in every week to watch it even if i am not home i always have my vcr set to tape monarch cove. simon rex is the best actor on the show. it is suspenseful and exciting. i think this show should stay on the air and i believe everyone should tune in to watch it. i saw the very first episode and actually i wasn't going to watch it but i was watching lifetime one day and i decided to watch it because it was on and i absolutely love it and right now it's my favorite show. i am really mean it.\r\n0\t\"This movie was great the first time I saw it, when it was called \"\"Lost in Translation.\"\" But somehow Bill Murray turned into an eccentric black man played by Morgan Freeman, Scarlett Johansson turned into a cranky Latino woman played by Paz Vega, and Tokyo, Japan turned into Carson, California. Instead of meaningful conversations and silence we enjoyed in Translation, we get meaningless blabbering in 10 Items that verges on annoying. Instead of characters that were pensive and introspective as in Translation, we get characters that spew pointless advice on topics they have no clue about. How can a character that wears hundred dollar T-shirts and has never been inside a Target department store expect to give advice to a working-class woman on how to prepare for a job interview as an administrative assistant? Don't think that stops him. If he isn't giving her clothing advice, he's telling her what she should eat. The most annoying part of the movie for me was how supposedly they were in a hurry to make an appointment, and yet the characters keep finding time to run another errand, be it washing the car, stopping at Arby's, or just laying around to list off their 10 Items or Less lists of things they love and hate. I kept wanting to yell at them saying, \"\"Didn't you say you had somewhere to be? What the heck are doing? A minute ago you were practically late, now you're eating roast beef and pondering your lives!\"\" Until I saw this movie, I never truly understood how something could \"\"insist upon itself,\"\" but I think this movie does exactly that, and undeservedly so. The dialogue makes the characters cheesy and unsympatheticwith the exception that I felt sorry for both of the actors for having signed onto this project.\"\r\n0\t<br /><br />Although the lead actress is STRIKINGLY beautiful, the plot stands little chance of acceptance because too many distracting details face the audience during the unfolding of the story.<br /><br />One may believe that middle-class teen-age school girls in the 1950's easily gave away their virginity without thought of marriage to 30-year-old's they barely know, but I doubt it.<br /><br />One may believe that young high school teens are highly self-confident and self-assured as they interact with their elders in complex social situations, but my experience has been, more often than not, teenagers feel very awkward and act clumsy as they experiment in the adult world.<br /><br />One may believe that a experienced medical doctor would not know the pungent oder of Stroptomycin -- the smelly fermenting byproduct of busy earth microbes -- and not detect that some lifeless bland powder is fake, but I think not.<br /><br />One may believe that 30-something-year-old troublemakers can enter into, and hang around inside, a public school rec hall during a school social and make trouble, but I think that school socials are traditionally a protected environment and parents, chaparones and school staff would be around to prevent this.<br /><br />One final nit, throughout Hey Babu Riba the five teenage friends referred to themselves as the foursome. There is probably an explanation why the FIVE were the FOURsome, but because it was never detailed, each reference distracts from each scene.<br /><br />This movie did not ring true for me.\r\n1\tThis movie, even though is about one of the most favorite topics of Mexican producers producers: the extreme life in our cities, has a funny way to put it on the screen. <br /><br />Four of the more important Mexican directors, of the last times, approach histories of our city framed in diverse literary sorts as it can be the farce or the satire, which gives us a film with a over exposed topic in our country, but narrated in a very different way which gives a freshness tone him. <br /><br />With actors little known, but that interprets of excellent way their paper, each one of the directors reflect in the stories the capacity by we have been identified anywhere in the world, that capacity of laugh the pains and to make celebration of the sadness. Perhaps to many people in our country the film not have pleased, but I consider that people of other countries could find attractive and share the surrealism of the Mexican.\r\n1\tThis really is an incredible film. Not only does it document the eternal struggle of indigenous and disenfranchised people to gain their rightful voice but it also shows the United States up for its dishonesty, subterfuge, and blatant disregard for human rights and self-determination. Chavez is shown as a very brave and charismatic leader struggling against what can only be characterized as a despicable elite devoid of any sense of proportion or justice. These filmmakers have recorded a coup unlike anything witnessed before.<br /><br />And in the cross hairs we see the USA, once again pulling the strings and blurring all sense of reality. It's heart-breaking to watch the initial stages of the revolt knowing full well that the subversion of democracy that we're witnessing is a tool long used by successive American governments and their seemingly blinkered citizens. The footage makes it clear that this is not a manipulation of TV or generic footage but an active documentation of a people and its government fighting for its future. Truly a moving experience for anyone with a conscience. These Irish film makers deserve our gratitude. Long live Chavez.<br /><br />We need to enshrine the notion that each country must be allowed to choose its government and to develop in ways that the majority sees fit. First phase in this process is the need to know what the realities of the situation are, and this documentary does a great job of doing just that.\r\n0\tI remember I loved this movie when it came out. I was 12 years old, had a Commodore 64 and loved to play Rambo on it. I was therefore really thrilled when I got to buy this movie really cheap. I put it in my VCR and started up: Man this movie is really bad! Sylvester Stallone says like 3 words in the entire movie (except for that awful sentimental speech at the end), and has the same expression on his face all the way. And that stupid love thing in the middle, it's just so amazingly predictable. I just ended up fast forwarding the entire thing and went to exchange the movie for something else.\r\n1\tMaybe the greatest film ever about jazz.<br /><br />It IS jazz.<br /><br />The opening shot continues to haunt my reverie.<br /><br />Lester, of course, is wonderful and out of this world.<br /><br />Jo Jones is always a delight (see The Sound of Jazz as well).<br /><br />If you can, find the music; it's available on CD.<br /><br />All lovers of jazz and film noir should study this tremendous jewel.<br /><br />What shadows and light - what music - what a hat!\r\n0\t\"This movie is very important because suggested me this consideration: sometimes you can wish to be sick ... sometimes you can wish to have a syndrome ... sometimes, for example, you can wish have Goldfield Syndrome... that way you'd not remember this boring movie ... and above all you'd not remember Adam \"\"superfluos\"\" Sandler... sometimes, simply, you can wish... have rented another movie...<br /><br />My vote? 3 out of 10. My suggestion? If you are neither a fan of boring romantic comedies or Adam Sandler (...it's a joke don't exist Adam Sandler's fan...I want to hope it), save yourself... Someone to save? Drew Barrymore. ... perhaps.\"\r\n1\t\"David Burton(Richard Chamberlain, quite good)is a lawyer, more adept at handling corporate taxation(..and suffers from unusual dreams which bother him seeing this aboriginal man shrouded in darkness), who is called on to take a case concerning a group of aboriginals charged with the murder of one of their own named Billy..we see that he tries to steal stones with ritual painting on them and is killed when a leader of an aboriginal tribe named Charlie(Nandjiwarra Amagula)uses a \"\"death bone\"\" to stop his heart. Meanwhile, revolving around David, bizarre weather patterns effect Sydney such as rain beating down polluted dirt and rock-sized hail during bright blue skies(with no sights of clouds, such as the one that hits a school in central Australia), not to mention, a \"\"deformed\"\" rainbow which is split(!)into groups. As David pursues the case he finds that he is far closer to the weird events taking place than he could ever realize. One aboriginal named Chris(David Gulpilil)appears to him in a dream holding a stone with blood and he finds that this man is one of those he is to represent at trial! He finds that it's quite possible, after some strange meetings with Charlie and conversations with Chris, that he very well might be linked to a spirit named Mulkurul and that his dreams are actual premonitions of possible horrors yet to come.<br /><br />Absorbing apocalyptic drama builds it's story methodically and is completely original and unpredictable. With Peter Weir in charge, the film is visually arresting as we see these very overwhelming images of possible doom towards civilization, but the film's most compelling angle is certainly David's journey to find that monumental truth that plagues him as he questions Charlie and Chris countlessly, at first to help his men get off from a crime they didn't commit, and ultimately to find out what he has to do with anything catastrophic that is occurring or might occur later.\"\r\n0\tThoughtless, ignorant, ill-conceived, career-killing (where is the talented Angela Jones now?), deeply unfunny garbage. It's no wonder Reb Braddock hasn't directed anything else since - anyone who has a chance to make his first film on his own rules, based on his own script, with the help of Quentin Tarantino himself, and creates something like THIS, anyone who feels that THIS was a story worth telling to the world, doesn't deserve a second break. Under the circumstances, the performances are good - the actors do what they're told to do, and they do it well. It's just that they shouldn't have done it in the first place. <br /><br />0 out of 4.\r\n1\tThe three main characters are very well portrayed, especially Anisio by rock musician turned into first time actor Paulo Miklos. He is extremely convincing as the lower class trespasser/invader. The film shows very well the snowball effect of getting involved in ever more shady business, the contrast and similarities between the lower and higher classes. How everyone gets carried away by greed and ambition. 9-9,5 out of 10.\r\n1\t\"***SPOILERS*** All too, in real life as well as in the movies, familiar story that happens to many young men who are put in a war zone with a gun, or rifle, in their hands. The case of young and innocent, in never handling or firing a gun, Jimmy Davis, Franchot Tone, has been repeated thousands of times over the centuries when men, like Jimmy Davis, are forced to take up arms for their country.<br /><br />Jimmy who at first wanted to be kicked out of the US Army but was encouraged to stay, by being belted in the mouth, by his good friend Fred P. Willis, Spencer Tracy, ended up on the front lines in France. With Jimmy's unit pinned down by a German machine gun nest he single handedly put it out of commission picking off some half dozen German soldiers from the safety of a nearby church steeple. It was when Jimmy gunned down the last surviving German, who raised his arms in surrender, that an artillery shell hit the steeple seriously wounding him.<br /><br />Recovering from his wounds at an Army hospital Jimmy fell in love with US Army volunteer nurse Rose Duffy, Gladys George. Rose was really in love with Jimmy's good friend the happy go lucky Fred despite his obnoxious antics towards her. It's when Fred was lost during the fighting on the Western Front that Rose, thinking that he was killed, fell in love and later married Jimmy. When Fred unexpectedly showed up in the French town where Jimmy, now fully recovered from his wounds, was stationed at things got very sticky for both him and Rose who had already accepted Jimmy's proposal of marriage to her!<br /><br />With WWI over and Jimmy marrying Rose left Fred, who's still in love with her, a bitter and resentful young man. It was almost by accident that Fred ran into Jimmy on the streets of New York City and discovered to his shock and surprise that he completely changed from the meek and non-violent person that he knew before he was sent to war on the European Western Front. Smug and sure of himself, and his ability to shoot a gun, Jimmy had become a top mobster in New York City's underworld! Not only that but as Fred later found out his wife Rose had no idea what Jimmy was really involved in with Jimmy telling her that he works as a law abiding and inoffensive insurance adjuster.<br /><br />Jimmy's life of crime came full circle when Rose, after she found out about his secret life, ratted him out to the police to prevent him from executing a \"\"Valentine Day\"\" like massacre, with his gang members dressed as cops, of his rival mobsters. While on trial Jimmy came to his senses and admitted his guilt willing to face the music and then, after his three year sentence is up, get his life back together. <br /><br />***SPOILER ALERT*** Hearing rumors from fellow convicts that Rose and his best friend Fred were having an affair behind his back Jimmy broke out of prison ending up a fugitive from the law. It's at Fred's circus, where he works as both manger and barker, that Jimmy in seeing that Rose as well as Fred were true to him that he, like at his trial, had a sudden change of heart. But the thought of going back to prison, with at least another ten years added on to his sentence, was just too much for Jimmy! It was then that Jimmy decided to end it all by letting the police who by then tracked him down do the job, that he himself didn't have the heart to do, for him!\"\r\n1\tLet's keep it simple: My two kids were glued to this movie. It has its flaws from an adult perspective, but buy some jelly-worms and just enjoy it. <br /><br />And the Pepsi girl was excellent!<br /><br />And Kimberly Williams was pretty gosh-darned hot, although she's not in the film very much, so don't get too excited there.<br /><br />Not that's it's really a bad thing, but it is the kind of movie you watch just once. Don't buy the DVD.<br /><br />Enjoy!<br /><br />Did I mention Kimberly Williams? (That was for the dads.)\r\n0\tThis is not the worst film I have seen of Peter Greenaway but it is close. That dishonor goes to the even worse Pillow Book. This director's films of 3 I have seen I find them all to be miserable. Like The Cook...,whatever positive cinematic flourishes he displays, are totally unredeemed by the repugnancy of his material and overall presentation.\r\n0\tThis film is a good example of how through media manipulation you can sell a film that is no more than a very unfunny TV sitcom. In Puerto Rico the daily newspaper with the widest circulation has continuously written about the marvels of this film, almost silencing all others. Coincidentally the newspaper with the second largest circulation belongs to the same owners. The weekly CLARIDAD is the only newspaper on the island that has analyzed the film's form and content, and pointed out all its flaws, clichés, and bad writing.<br /><br />Just because a film makes a portion of the audience laugh with easy and obvious jokes, and because one can recognize actors and scenery, does not make it an acceptable film.\r\n1\tWhile it certainly wasn't the best movie I've ever seen, it was certainly worth the $8 (which can't be said for many movies these days.)<br /><br />This was a pleasant account of a true story, although many of the details of the real story were twisted for the movie, (ie, Billy Sunday's character was three or four people in the real story combined together.) Robert DeNiro was of course good, and Cuba Gooding, Jr., was also impressive.\r\n0\t\"I thought Harvey Keitel, a young, fresh from the Sex Pistols John Lydon, then as a bonus, the music by Ennio Morricone. I expected an old-school, edgy, Italian cop thriller that was made in America. Istead, I got a mishmash story that never made sense and a movie that left me saying: WTF!!! Too many unanswered questions, and not enough action. The result: a potential cult classic got flushed down the toilet. Keitel and Lydon work well together, so maybe Quentin Tarantino can reunite these guys with better script. Oh, and the Morricone score: OK, but not memorable.<br /><br />Overall, not a waste of time, but not a \"\"must see\"\", unless you are a hardcore Keitel fan.\"\r\n0\t\"I read the reviews of this movie, and they were generally pretty good so I thought I should see it. I'm a big Francophile and art film lover, but I believe this is yet another case in which the critics make something \"\"arty\"\" or \"\"intellectual\"\" into something it is not. I will be blunt: it contains scenes of sexual perverseness that I never, ever wanted to actually see. Obviously, the piano teacher has some major psychological issues, but I really did not want to see them displayed so graphically. The film is, in essence, disgusting. I mean, when I saw Requiem for a Dream, I was repulsed by the last sort of scene with Jennifer Connelly, but that was not anywhere near the sort of disgust and repulsion I felt during this film.\"\r\n0\t\"David Chase's \"\"The Sopranos\"\" is perhaps the most over-praised television show in recent memory. Not only is the series devoid of intellect and passion, it's devoid of a soul. As anyone reading likely knows already, James Gandolfini *IS* Tony Soprano, a big, fat a**hole of a mob boss with a spoiled b*tch of a wife, and two bratty, sh*t-brained kids living in - you guessed it - the armpit of America (that's New Jersey, by the way). Not only is Tony a womanizing adulterer, he's also an unrepentant murdering scumbag, with a crew of \"\"Saturday Night Live\"\" skit-worthy caricatures for subordinates. It's not the fact that Tony is a piece of sh*t mobster that offends me (and apparently only me). Allowing characters to be who and what they are, without judgment, is something American TV hardly allows. But Chase - and his entourage of money-gorged, Emmy-gored writers - have not simply allowed us to observe Tony and his crew as they behave, nor have they even attempted to provide any insight into the action / reaction reality of (even obviously fictionalized) organized crime (a la \"\"The Godfather\"\"). Instead, Chase glorifies and endorses his characters' greedy, violent, and corrupt lifestyle in the same way that Tony, his wife, and even his hair-brained psychologist do week after week (or should I say month after month. Or is it year after year? It seems like the show's paltry 13-episode seasons come out with the same regularity as a lunar eclipse). Much has been made of the series' refusal to adhere to \"\"network\"\" structure, with plot lines that go nowhere, and characters that pop-up and disappear like backyard vermin. But if the show is so brilliant in its lack of structure, why does it always feel like I'm watching a soap-opera? Tired mob clichés, bored housewives, self-serving, irredeemable characters AND plots that go nowhere. More than ever, I can see why so many Americans of Italian heritage are p*ssed at this show. It's enough to make you want to curl up with a good book (Danté's \"\"Inferno\"\" springs to mind).<br /><br />People on IMDb love to claim that there's nothing good on television, and therefore \"\"The Sopranos\"\" is a breath of fresh air. Are these same people too busy paying their cable bills to watch \"\"The Shield\"\"? (It's included in Basic, ya know). How about the (still good) \"\"The West Wing\"\"? Or the brilliantly acted (if erratically written) \"\"Boston Legal\"\"? What about possibly the best comedy of the last few decades, \"\"Arrested Development\"\"? And lest we forget that we live in an age of DVDs - nobody *has* to watch *anything* new. I'd much rather shell out $40 for an over-priced boxed set of, well, pretty much *anything*, than give HBO $10 a month (or $80 a DVD set!) to continue to prove how much of a hack-factory it can be.<br /><br />You want good television? Watch \"\"Homicide: Life on the Street.\"\" Or \"\"Murder One\"\". Or \"\"Picket Fences\"\". Or even Chase's prior show, \"\"Northern Exposure.\"\" If you're already among \"\"The Sopranos\"\"'s legion of brain-washed fans and critics, it's too late for you. But if not, leave Tony and his worthless kin where they all belong - rotting with the fishes. (\"\"Sleeping\"\" would be way too kind)\"\r\n0\tThis movie is AWESOME. I watched it the other day with my cousin Jay-Jay. He said it was alright, but i think it RULEZZZ! I mean, it's so cool. Ted V. Mikels is so brave and smart. He made a movie totally unlike those terrible Hollywood films, like the Matrix and STop or my Mom will Shoot. It could have been better, though. I like ninjas and pirates. I also like that big talon that the funny man wears. I think he's the coolest guy since that Domino Pizza claymation guy. Not only does this movie look really cool, like those out-of-focus movies my dad made of my birthday when I turned 6. BUt it tells a complex tale with dozens of characters that seem to be totally unrelated, but they all meet up in the end. It's genius how this web is woven to make everything meet up. I wish Ted V. Mikels would make a sequel. But it needs more aliens. And a pirate.\r\n0\tI was mad anyone made this movie. I was even more angry I lost valuable minutes of my life sitting still to watch this. I could have had a wax job and been more entertained. At least Cherri makes me laugh before it hurts. I was a bit confused at first but then I caught on and realized what was going on. By this time the film was half way through, and Yes I am a procrastinator but I always want to see things through until the end. So I stuck it out I watched it all. Not only are the actors not as attractive as in Cruel Intentions, they just aren't convincing. I've seen my nephew cry for attention more convincingly than the supposed lust portrayed on screen in this movie. If you like bad movies with bad acting watch this.\r\n0\tTHE KING MAKER will doubtless be a success in Thailand where the similar (but superior) 'The Legend of Suriyothai' set box office records. The film directed by Lek Kitaparaporn after a screenplay by Sean Casey based on historical fact in 1547 Siam has some amazingly beautiful visual elements but is disarmed by one of the corniest, pedestrian scripts and story development on film.<br /><br />The event the picture relates is the arrival of the Portuguese soldier of fortune Fernando de Gamma (Gary Stretch) whose vengeance for this father's murderer drives him to shipwrecked, captured and thrown into slavery and put on the bloc in Ayutthaya in the kingdom of Siam where he is purchased by the beautiful Maria (Cindy Burbridge) with the consent of her father Phillipe (John Rhys-Davies), a man with a name and a past that are revealed as the story progresses. There is a plot to overthrown the King and Fernando and his new Siamese sidekick Tong (Dom Hetrakul), after some gratuitous CGI enhanced choreographed martial arts silliness, are first rewarded by the King to become his bodyguards, only to be imprisoned together once Queen Sudachan (Yoe Hassadeevichit) reveals her plot to kill the king and son to allow her lover Lord Chakkraphat (Oliver Pupart) to take over the rule of Siam. Yet of course Fernando and Tong escape and are condemned to fight each other to save the lives of their families (Tong's wife and children and Fernando's now firm love affair with Maria) with the expected consequences.<br /><br />The acting (with the exception of John Rhys-Davies) is so weak that the film occasionally seems as though it were meant to be camp. The predominantly Thai cast struggle with the poorly written dialog, making us wish they had used their native Thai with subtitles. The musical score by Ian Livingstone sounds as though exhumed form old TV soap operas. But if it is visual splendor you're after there is plenty of that and that alone makes the movie worth watching. It is a film that has obvious high financial backing for all the special effects and masses of cast and sets and shows its good intentions. It is just the basics that are missing. Grady Harp\r\n0\t\"I watched Phat Beach on cable for a while and I sort of enjoyed it. The fat guy is the best character, as he seems to be a nice guy. The rest of the characters are just various stereotypes of young men and young black men. I like to watch these low budget movies that capture a period of time because they are almost like a documentary of the year's attitudes and fads. Phat Beach is also funny because the low-budget babes in this movie are strictly home-girls. Most low-budget movies have that \"\"local babe\"\" quality, and you can tell the babes in this movie were the local strippers and underwear models for JC Penneys. Some of them had so much cellulite hanging from their bikinis that it was funny to watch how the \"\"youngsters\"\" went wild over what was essentially some really over-used, high-mileage skank. There were some cuties too. That is the charm of these low-budget crappy movies. You will see a lot of doggies, and some real cuties! I checked up on some of them at IMDb and seven years later Phat Beach is their only credit. Too bad. It would be interesting if someone ever managed to do a \"\"Where are they now\"\" book on all of the cuties that have appeared in the history of movies and then were never again to return. What happened?? There are probably one or two young people in almost every movie who seem to have a lot going for them and yet years later when you see the movie again on TV you wonder \"\"what ever happened to X?\"\" Anyhow, this movie mostly blows, but it has some funny moments.\"\r\n1\t\"Ernst Lubitsch's contribution to the American cinema is enormous. His legacy is an outstanding group of movies that will live forever, as is the case with \"\"The Shop Around the Corner\"\". This film has been remade into other less distinguished movies and a musical play, without the charm or elegance of Mr. Lubitsch's own, and definite version.<br /><br />Margaret Sullavan and James Stewart worked in several films together. Their characters in this movie stand out as an example of how to be in a movie without almost appearing to be acting at all. Both stars are delightful as the pen pals that don't know of one another, but who fate had them working together in the same shop in Budapest.<br /><br />The reason why these classic films worked so well is the amazing supporting casts the studios put together in picture after picture. In here, we have the wonderful Frank Morgan, playing the owner of the shop. Also, we see Joseph Schildkraut, Felix Bressart, William Tracy and Charles Smith, among others, doing impressive work in making us believe that yes, they are in Budapest.<br /><br />That is why these films will live forever!\"\r\n1\t\"Just after the end of WWII Powell & Pressburger were asked to come up with something to try to heal the rift developing between the UK & the USA. At the time there was a lot of \"\"Overpaid, over sexed and over here\"\" type of comments. Somehow they came up with this masterpiece.<br /><br />My favourite movie of ALL time. It's got everything. Romance, poetry, emotion, religion, drama and very quirky.<br /><br />I can never explain exactly why, but it hits all the right buttons and although I've seen it hundreds of times (yes, really) I'm still guaranteed to be in tears at many points throughout.<br /><br />Was it the magnificent acting, the wonderful sets, the inspired script ? Who knows. But *DO* watch it and you'll see what I mean.\"\r\n1\tThere is great detail in A Bug's Life. Everything is covered. The film looks great and the animation is sometimes jaw-dropping. The film isn't too terribly orignal, it's basically a modern take on Kurosawa's Seven Samurai, only with bugs. I enjoyed the character interaction however and the bad guys in this film actually seemed bad. It seems that Disney usually makes their bad guys carbon copy cut-outs. The grasshoppers are menacing and Hopper, the lead bad guy, was a brillant creation. Check this one out.\r\n1\t\"Though the story is essentially routine, and the \"\"surprise\"\" ending is nothing but a bad joke on the audience, you can see what attracted these good actors to the project - it offers them the kind of roles in which good actors can shine, and shine they do. The film is impeccably made - for its time. It was remade in 2000 as \"\"Under Suspicion\"\" and if you only want to see one version of the story (that's all it deserves, really), I recommend the latter one, with Hopkins' up-to-date direction and the more explicit references to plot points that the original could only hint at. The ending, however, still blows. (**1/2)\"\r\n1\tThis early Anime movie was a rather good film that I caught once on the Science Fiction channel when Anime was actually popular here in America and not the ratings disaster that adult swim claims it is on the cartoon network. I quite frankly think it has less to do with it being less popular and more with the fact people would rather now buy dvds are watch the episodes uncut on the internet. This film though probably did not have all that many cuts and the voice work was okay for a dubbed movie, though I would rather watch the original Japanese version. Americans tend to use some rather annoying voices for children in anything dubbed. This film features a young boy who boards a train called the Galaxy Express in the hopes that he can make it to a planet that has the technology to turn him into a robot. He wishes to become a robot to avenge his mother, who was brutally murdered at the hands of a robot who hunts humans for fun. During the course of his adventures he becomes friends with the various workers aboard the train as well as a woman that resembles his deceased mother, a beautiful woman named Matel, who as with most woman in Anime movies has a secret that could either be really good for our young hero, or really bad. He goes from planet to planet too as the train makes various stops and he runs into a space pirate named Captain Harlock who apparently starred in his own animated cartoon series, so basically the Galaxy Express takes place in that universe. All in all a very good ride with a rather strange and unexpected ending. There would be a sequel to this one, but it was not quite as good as this one, however the ending was a bit more final than it was here.\r\n0\t\"I didn't expect much when I saw this at the Palm Springs Film Fest this weekend. It was an alternate choice when two other films were sold out. Still, I held out hope. It sounded a bit much like \"\"Bride and Prejudice\"\" (L.A. guy falls for an Indian beauty, parental conflict, blah blah blah). B&P was not perfect but it was an enjoyable film with some good laughs and likable characters.<br /><br />\"\"My Bollywood Bride\"\" had none of that. The acting seemed stilted and way to by-the-numbers. Characters were so cliché the story seemed like it could have been written by high school freshman drama student. Technically, the sound really bothered me. It seemed as if there was a lot of over-dubbing of dialogue. I mean a lot. I know sometimes it's necessary but it sounded like half the film was shot in a closet and it became very distracting.<br /><br />Two stars is being somewhat generous.\"\r\n0\tThere was nothing about this movie that I liked. It was so obviously low-budget with bad lighting and camera work (almost like Blair Witch Project, only it wasn't supposed to be that way). There wasn't really much to the plot, and the movie just drug on and on. I actually fast-forwarded through the last 1/3 of the movies, but that did not help matters much. It looked like it might be good from the box, but I must say again: nothing about this movie even resembled good. No good actors, the special effects were so fake, the camera work was horrible, and the dialogue was painfully terrible. On my own personal scale, I give this movie a 0 of 10. Yikes!\r\n0\t\"I went to see this a few days ago, and it's hard to forget that film...for the wrong reasons. This film is supposed to be funny, it's not, not a single laugh in the theatre( perhaps for josé garcia and gérard Depardieu ), and it's boring, boring, boring. It was even hard sometimes to understand what they were saying. They just talk to fast and don't open their enough for us to understand. I was with a friend and more than 4 or 5 times i caught myself saying after a line that was supposed to be funny \"\" what, what did he say\"\", and i'm french. I hate to say that, given the fact that i think good films are made here, but i apologise in advance for all foreigners who will go see the film ( if ever shown outside of France ).<br /><br />We're deeply sorry for that cr@p. 2/10\"\r\n1\tJess is 18, very smart and wants nothing more than to play football, when she joins a local team she has to lie to her parents again and again, as they would never approve of her chasing her dream, they want her to settle down with a nice Indian boy and learn how to cook.<br /><br />Bend it Like Beckham is a very funny feel good movie that doesn't need to be deep and complex, it's just fine as it is. The cast are all very good and they play their roles very well, the story is simple and predictable, but it works perfectly and the script is very realistic and very funny.<br /><br />A great Family movie 8/10\r\n0\t\"there are those movies that are bad they are funny, then there are those where you scream \"\"i want that one and a half hours of my life back\"\"...thats pretty much what this is.<br /><br />dean cain tries to be an actor but fails. the sfx are really bad (repeated scenes and rocks that look like falling paper) and the fake plastic guns that have torches taped on them...the split screen effect used to show multiple things happening at once is just terrible.<br /><br />this movie cant even be used as one of those simple night entertainers, its just that bad<br /><br />if i could go negative ratings, i would\"\r\n0\t\"Whoever gave this movie rave reviews needs to see more movies.<br /><br />A loser takes his camera and photographs his mental family. The movie is filled with idiots and includes live \"\"teabagging\"\". That should sum it all up for you.<br /><br />Do not waste your time. You may want to watch the entire movie in the hopes that it gets better as it goes on - it doesn't!\"\r\n0\tI have read several good reviews that have defended and critised the various aspects of this film. One thing I see, over and over, is annoyance with Megan, the idealistic political scientist, trying to change the world. I loved her character. Maybe, because I am a 23 year old political science student and I think I'm going to change the world too, so I relate to Megan. Besides, she's cute. She's no super model, but more of a cute girl next door.<br /><br />OK, so she cried and screamed a lot. It's very dramatic, and seems overdone, but doesn't it fit her character? She goes on that show with the intention of sacrificing her life to prove a point. She thinks people who enjoy such a show are sick. I think she made her argument very well. Of course, being a young naive girl, she is terrified of what she is about to face. I think her acting accurately portrays a young girl showing moral courage despite her overwhelming fear. Furthermore, I think she maintained a certain dignity throughout the film despite the desperate situation she was in.<br /><br />As for the movie in general, other than Megan, it was pretty much what I expected. It had excellent gore scenes, by micro-budget standards. The plot maybe took a quick thought, hardly any contemplation. It's basically just a dark humorist senseless slasher film, which the name implies. I love the sadism of the doctor. He kept ripping Megan's shirt off, not just for the cause of sleaze (though largely so), but also to torment her, before he kills her. The Chainsaw hick was hilarious. For slasher film lovers, he was probably the best character.<br /><br />I give this film 4 out of 10. It had a good setting, almost no plot, and a mix of good and terrible acting. I would recommend it for a cheap thrill, but hardly a diamond in the rough that is micro-budget horror.\r\n0\t\"With a title like that, it's above and beyond my comprehension how this movie just did NOT appeal to me. Granted, there's a few decently sleazy moments and a little gore, but the way in which the movie was shot and the overall storyline just struck me as an idiotic and lazy attempt at profuse \"\"shock\"\" tactics... The inconsistent plot starts with a guy raping and murdering a woman stranded at the side of the road. He and his abetting brother are imprisoned up until the brother breaks out and arranges to meet his girlfriend out in the woods. He ends up forcing her into a house where they screw and he later shows her a collection of kidnapped guys in the basement. The heavily drugged captives consist of her old boyfriend who raped her, a \"\"grabby\"\" neighbor, and her sexually abrasive boss. He explains to her that he is going to kill them all. She winds up killing HIM and then turning her focus towards the men (or pigs) whom she tortures and kills, herself... Most of the violence and humiliation has to do with sh!t eating and genitalia destroying - all of which are far from disturbing and essentially mild. The best scene is a graphic broom handle masturbation followed by some painful man-rape... Surely, \"\"I Spit on Your Corpse, I P!ss on Your Grave\"\" was intended as an unofficial sequel to \"\"I Spit on Your Grave\"\" - based on, mainly the title, and a reference the main character gives - suggesting her mother was Camille Keaton. I personally consider that to be a wildly blasphemous assertion! This movie is a boring, amateurish mess that strives for shocks but failed miserably...\"\r\n1\tWhat an amazing film. With very little dialogue, the whole story is told with glances and body language. Very involving almost voyeuristic. My only gripe is that it has not been released on video in Australia and is therefore only available on TV. What a waste.\r\n1\tRunning out of films to rent, I picked up Freebird. I struggled through the first third of the movie wondering if the rest would be a waste to see. Fortunately, it really warmed up, and I loved the movie quite a bit. The second half of the movie had me grinning and laughing the entire time. Thankfully, although there were bits of CGI included, they were not overdone or prevalent.<br /><br />I would have to say, though - the actors all have heavy European accents, so be warned if you have trouble understanding those voices or their cultural humor.<br /><br />I really loved this movie, and will have to order myself a copy for my own collection.\r\n1\t\"I was forced to see this because a) I have an 11 year-old girl and b) we had shown her the Bonita Granville Nacy Drew movies from the 1930s, which she thoroughly enjoyed. Personally, I didn't think it was as humorous as the 1930s flicks, but on the other hand, it wasn't the nauseating piece of intelligence-insulting fluff I feared it would be. It was an inoffensive, mildly entertaining movie. Although I'm pleased that they didn't try to \"\"upgrade\"\" Nancy to 21st Century \"\"hipness\"\" (Veronica Mars holds the title as the Modern Nancy Drew), I do think that they made her a little too bland, that they didn't do enough to develop Nancy Drew - the movie could have been titled \"\"Jane Doe, Girl Detective\"\". I have to blame the script: I think each actor did a good job with what they had to work with. I liked Emma Roberts in this role, but they gave her a made-for-TV, not theatrical release, script...\"\r\n0\t\"In my book \"\"Basic Instinct\"\" was a perfect film. It had outstanding acting on the parts of Stone, Douglas and all the supporting actors to the tiniest role. It had marvelous photography, music and the noirest noir script ever. All of it adding up to a film that is as good as it will ever get!<br /><br />This sequel is the exact opposite, it cannot possibly get worse, bad acting and a lame script, combined with totally inept direction, this is really bad, boring, annoying. The only thing that somewhat keeps you concentrated is the relatively short wait for the next scene that is an exact re-enacted copy of the original. These copies are so bad they make you laugh and I laughed a lot in spite of myself, because it was like watching the demolishing of a shining monument. The only thing that is good in this horrible mess are the excerpts of the Jerry Goldsmith score of BI1. Michael Caton-Jones and the half-wit responsible for the script even included the \"\"There is no smoking in this room\"\" dialog in the interrogation scene and yes she sends her attorney (who is now a solicitor) away! <br /><br />I am sorry I have seen this awful film that should have never been made! It does damage to the original, so bad is it. The only redeeming value is the realization that cosmetic surgery (and I am sure Ms Stone afforded the best surgeon money can buy) can do a good job but can obviously not restore the perfection of the original. And what concerns the human body applies to film-making, too. There should be a law: Don't ever make a sequel to a perfect film!\"\r\n1\t\"You can debate Prince's acting talent, or even his choice to parody his own life in this film. There is no debate about his musical talent either then or now. He seems like a shadowy has-been twenty years later, but the music remains relevant and fantastic. <br /><br />Having lived through the hype of this movie (graduated high school in'85) I can tell you that there was nothing bigger at the time. From Tipper Gore (Al's wife) trying to censor \"\"Little Nikki\"\" and every thing else under the sun via the PMRC (Parents Music Resource Center) to every \"\"Air Band\"\" at the time impersonating Prince, it was the absolute hottest thing out. For a few weeks at least, Prince was bigger than Madonna and Michael Jackson. <br /><br />We all waited for the film and were soooooo excited when it premiered. It didn't disappoint. EVERYONE was caught up. I was an MTV junkie at the time(they actually played music then....all the time)Prince played at least once or twice an hour. I must qualify this commentary by saying that, at that time, my favorites were Billy Idol, Oingo Boingo, The Fixx, Flock of Seagulls and others in the Punk/ New Wave genre' The music of Prince at the time transcended all types and styles. One of the reasons that some of it seems so cheesy and contrite now is that it was SOOOOOOOO big then. All the things that remind you of the 80's were iconic then. It was mainstream and it seems like a cliché' now. It got so popular that it became ridiculous. It's like the rappin' Granny commercial for Wendy's Hamburgers. <br /><br />It looks stupid now because EVERYONE was caught up in it (sadly, kind of like a bizarre purple macarena or something. Anyway, I hope this gave you all a little insight.\"\r\n0\tIt does touch a few interesting points.. But! - It fails to show evidence of all the 'exclusive' studies shown. Who are the 'friends' and 'small groups of scientists' that gathered this data? - What's up with all the Al Gore biography going on there? Like how he liked playing with the cows on the ranch or that his kid got hit by a car.. too bad but.. what does that have to do with the ozone layer?<br /><br />I've seen MUCH better stuff, in much less time, on Discovery Channel.. I really don't understand why this has such a high score on IMDb. Unless you've been living under a rock, this 'documentary' shouldn't be any news to you... all this is old news... And all Al Gore is trying to do is get some popularity points. P.S. i'm not American so don't even try saying that i'm a bush fan :p\r\n0\t\"One of those, \"\"Why was this made?\"\" movies. The romance is very hard to swallow. It is one of those romances, that, suddenly, \"\"click\"\" - they are in love. The movie is filled with long pauses and uncomfortable moments - the drive-in restaurant being the most notable. Charles Grodin does a credible job but for most of the movie it's just him and Louise Lasser. Ask yourself, do you want to watch Grodin with his neurosis and Lasser with her neurosis together for a hour and half?\"\r\n0\tI went to see this one with much expectation. Quite unfortunately the dialogue is utterly stupid and overall the movie is far from inspiring awe or interest. Even a child can see the missing logic to character's behaviors. Today's kids need creative stories which would inspire them, which would make them 'daydream' about the events. That's precisely what happened with movies like E.T. and Star Wars a decade ago. (How many kids imagined about becoming Jedi Knights and igniting their own lightsabers?) Seriously don't waste your time & money on this one.\r\n0\t\"Elizabeth Ward Gracen, who will probably only be remembered as one of Bill Clinton's \"\"bimbo eruptions\"\" (they have pills for that now!) is probably the weakest element of this show. It really continues the tired formula of the Highlander Series- The hero immortal encounters another immortal with flashbacks about the last time they met, but there is some conflict, and there is a sword fight at the end where you have a cheap special effects sequence.<br /><br />Then you have the character of Nick Wolf. Basically, your typical unshaven 90's hero, with the typical \"\"Sexual tension\"\" storyline. (Seriously, why do you Hollywood types think sexual tension is more interesting than sex.) This was a joint Canadian/French production, so half the series takes place in Vancouver imitating New York, and the other half is in Paris... Just like Highlander did.\"\r\n0\tUnless you are geeky film student who has to see everything, this film will not only be a waste of your time and money and a huge disappointment, but it will also make you angry beyond belief.<br /><br />There might be a story worth telling somewhere inside, but Hopkins decided to hide it and encode under so many incessant chaotic layers of apparently random audio video microcuts, making the viewer's patience run thin after a very short while.<br /><br />Why would someone like Hopkins choose such a heavy, most difficult and highly unstable project as his first script, first score and third film can by anyones guess. Maybe he played with it in his mind for such a long time until it became unrecognizable as what it became, not even for himself. The result proves that he has by far not enough experience or skill to achieve the desired result.<br /><br />Even the weirdest Carpenter and Lynch films, to name just two uncoventional filmmakers, had 90% more coherence, 95% less characters and 99% more story flow.<br /><br />Sir Anthony you aimed for the stars, but unfortunately missed by a couple of light years. Please stick to acting, in that department you are a unequaled giant and nobody should ask more from you, not even yourself!\r\n0\t\"Was convincing the world that he didn't exist...<br /><br />This is a line that is probably remembered by a lot of people. It's from The Usual Suspects of course in relation to Kaiser Gold..I mean Sose..<br /><br />I got another one like that: -The dumbest trick a director ever pulled was trying to convince an audience he actually had a storyline-<br /><br />This movie is one of the saddest pieces of film-making I have seen in a long time. It starts out so well, with really fantastic cinematography, great acting and a very smart premise. But alas, the only way this movie is heading is on a course of self-destruction. And it does so, not by a single blow but with nagging little wrist-cuts.<br /><br />Pay no attention to the comments here that marvel at the fact that they found a way to explain this donut. With enough booze in my brain I would probably be capable of explaining the very existence of mankind to a very plausible degree. I have seen and read about a dozen totally different ways people explained the story. And they vary from a story set totally in someones head, playing chess with himself, to a cunning way for a criminal to play out his enemies by means resembling chess gaming.<br /><br />And that's all jolly swell. But at the same time it is a painful giveaway that there is something terribly wrong with this story. And apart from that, it is in any case a blunt rip off of a score of movies and books like \"\"Fight Club, Kill Bill, Casino, The Usual Suspects, Snatch, Magnolia and Shachnovelle. And we are not dealing with kind borrowing here, it's a blatant robbery.<br /><br />What ultimately goes wrong here in this movie is that the storyline swirls like a drunk bum on speed. If this movie was a roller-coaster ride, you'd have crashed into the attraction next to it shorty after take off. There are so many twists in this movie which will never be resolved, that if it was a cocktail, you'd be needing a life supply of hurl-buckets to work of the nausea after drinking it. Nothing is ever explained and when you finally get some grasp of the direction you think it's going, you get pulled in yet another one.<br /><br />I guess this story wasn't going anywhere on paper and Ritchy must have thought that is was awesome to make a movie out of it anyway, being the next David Lynch or something.<br /><br />1/10 for totally violating one's own work (Ritchy: seek professional help). What could have easily been a gem instead becomes a contrived art-piece, food for pseudo intellectuals to debate on at sundayafternoon debating-clubs. <br /><br />Spare your soul and stomach, avoid at all cost!\"\r\n0\t\"I remember reading all the horrible, horrible reviews for this film when it came out. I meant to go see how horrible it was but it was out of theaters in three weeks. The only other movie to manage that is Gigli. <br /><br />When the movie came out on DVD, I bought it to see how awful it was. I couldn't think of the sheer horrible attention that this film was getting was possible. After seeing it, I can understand. <br /><br />First off, let me say that this film is not without some cool shots. There's a nice shot at the beginning that shows a bullet being fired from inside the gun, which I thought was neat. And the way the monsters in this movie die is sort of cool to look at; but it gets old after the first time you see it. <br /><br />Let me start with the worst thing in this movie: Tara Reid. If bad acting was a sin, then Hell would've chucked Tara Reid right out since she's so unbelievably awful in this movie it's unthinkable. And of all the roles, she plays a curator. Now if she played a dumb, empty- headed sex toy then maybe I might be able to forgive her for how she treats her character. Apparently, Uwe Boll didn't realize that, although he did seem to think that if she took off her shirt in the movie, people would see it. He just didn't realize that making her do that in the middle of the film at the absolute wrong moment just made the movie even more hilariously bad. And is that a Mexican song or something during the scene of dry humping? I couldn't tell. <br /><br />Which brings me to my next complaint: Uwe Boll shows off some of the worst directing skills you'll ever see in a movie. I mean, I'd give House of the Dead an F (and I only do that for very few movies) but HotD would score at least a B compared to this screwed up piece of junk. The movie starts off with a very, very long narration that causes immediate confusion (and read by a horrible narrator) and from there, the cuts are really, really dumb. There's this one point where Slater and Reid are looking around a building that's been destroyed and the screen blackens out. When it comes back, Slater and Reid are shooting everywhere and suddenly, an entire army has joined them. Huh? <br /><br />And someone did NOT bother checking the mistakes in this movie. At one point, a team breaks through glass, but the glass breaks before they touch it. Tara Reid's earrings switch colors in the middle of one scene and after Slater walks away from a dead comrade, you can see her begin to get up. <br /><br />As for the story... I was really lost. Something about an old tribe releasing darkness and someone \"\"opens the path\"\" or something and all the evil monsters pop out. It's just an excuse to have a lot of gun scenes (the technology is so advanced here that no character ever needs to reload in this film) that get, quite simply, BORING. <br /><br />I bought this movie hoping to laugh at how incredibly stupid it was. I didn't laugh, but I still think it's stupid. Very, very, very stupid.\"\r\n0\t\"Basically, \"\"Caprica\"\" is the Cylon origin story. The premise of the show is interesting. However, the writers follow so many story lines and clog it with too many POV characters that it bogs down the storytelling. The plot creeps at glacial speeds dissipating what tension it might have had. In any given episode, little or nothing happens.<br /><br />Daniel Graystone (Eric Stolz) is a military contractor working on a robotic soldier using a stolen chip. Unfortunately, his only working prototype is driven by the AI version of his dead daughter Zoe, who died in a suicide bombing caused by Soldiers of the One (STO), an underground monotheist extremist group.<br /><br />Meanwhile, Joseph Adama (father of \"\"Battlestar Galactica\"\"'s Commander Adama) is struggling to hold his family together while searching for the AI version of his daughter (who also died in the bombing) in a Machiavellian virtual version of Caprica (which strongly resembles 1930s Chicago). <br /><br />In addition to the vapid writing, Caprica suffers from a similar problem as many origin stories. We already know how it ends (i.e. the Cylons develop their own civilization and rebel against humanity).\"\r\n0\tI'm not going to criticize the movie. There isn't that much to talk about. It has good animal actions scenes which were probably pretty astonishing at the time. Clyde Beatty isn't exactly a matinée idol. He's a little slight and not particularly good looking. But that's OK. He's the man in that lion cage. We know that when he can't take the time away from his lions to tend to his girlfriend, he will end up on an island with her and have to save the day. Someone said earlier that it is a history lesson. The scenes at the circus are of another day, especially the kids who hang around. I didn't realize that even back in the thirties, they sailed on three masted schooners. It looked like something out of 1860. I guess that's the stock footage they had. No wonder the thing got wrecked. They're always talking about fixing her up. There's even a dirigible. It tells us a little about male female relationships at the time, a kind of giggly silliness. But if you don't take it too seriously, you can have fun watching it.\r\n1\tUncompromising look at a suburb in 21st century Vienna mixing the stories of six groups of characters by former documentary maker U.Seidl is a provocative, minimalistic and intense piece of observation cinema.<br /><br />After the world-wide spread of Big Brother reality shows, Hundstage takes modern voyeurism to an unsettling, profound level. Hard to like but unignorable piece of European art-cinema might seem cruel and seedy, yet manages to convey the nihilistic alienated feeling of modern society in a praiseworthy manner.<br /><br />A must for lovers of world cinema.\r\n1\t\"To anyone who hasn't seen this film yet, I have a friendly warning: don't watch \"\"La Casa dell'Orco\"\" expecting any demons at all, because you won't find them here. This film is not a third installment to the \"\"Demons\"\" series and it has nothing to do with it whatsoever, except the fact that Lamberto Bava directed them. As a matter of fact, Michele Soavi's \"\"The Church\"\" is also known an unofficial \"\"Demons 3\"\" and it's a deceptive title in that case as well, so go figure. It is obvious that due to the \"\"Demons\"\" films success; they tried to deceive the audience with misleading titles, even though it is obvious that this is a disconnected story. Having said that, I think it's unfair on the other hand, to say that \"\"La Casa dell'Orco\"\" is not worth the look. Honestly, the movie is quite atmospheric and even though there are a few unintentionally hilarious situations, I thought it was genuinely creepy on the whole. Nevertheless, I think it's fair to say that the story somehow tries to emulate Lucio Fulci's \"\"The House by the Cemetery\"\". Of course, that's just a speculation I have, but I think I have my valid evidences. For instance, in both films, Paolo Marco is the man of the family, in both films, there's an irritating little son named Bobby, in both films, the woman of the house is a beautiful thirty-something, who seems to be the only one to see that there's something really wrong in the new house, and in both films, there's something really, really wrong going on in the basement. I'm sorry but I can relate both films very easily and I'm not saying that as an accusation. For the contrary, my point is that those who enjoyed \"\"The House by the Cemetery\"\" are probably going to enjoy this movie as well, keeping in mind of course, that \"\"La Casa dell'Orco\"\" is far less pretentious, less scary, not nearly as atmospheric, but the formula is still there.<br /><br />In \"\"La Casa dell'Orco\"\", Charel, her husband Tom and their little son, Bobby, go on a vacation trip to an old deserted castle, situated in the heart of an Italian villa called Trifiri. Leaving aside the beauty of the place, shortly after their arrival, Charel starts to have the feeling that she has been there before, which is impossible, considering that she had never been to Trifiri before. Sadly, Charel can't get over her déjà vu and the worst part is that her visions, come along with the image of a horrendous creature going after her. Tom, who is not a very patient guy to begin with, advices her to leave the nonsensical hallucinations aside and enjoy the vacation. However, the woman's visions become more and more real and the peace and quiet that they were supposed to enjoy, suddenly turn into a living nightmare. The old nightmare from Charel's childhood becomes real and this time, she won't be able to escape without confronting that menacing ogre first.<br /><br />As it is expected, the plot somehow turns out to be a little bit simplistic and as a consequence, it is hard to fill an hour and a half. This means that \"\"La Casa dell'Orco\"\" offers more than a couple of sequences with nothing but total silence and the image of the main character, walking around the castle for several minutes, reviving the images of her childhood and nothing else. It gets rather tedious from time to time, but overall, it's nothing serious. Like many Italian horror films that came out throughout the late eighties, this movie is pretty stylish and effective, but it also offers a nice variety of unintentionally funny moments, that make the movie unforgettable in a way. For instance, the part in which Charel is brutally slapped by her husband and instead of going to her bedroom crying like I would have expected, she strikes back against him by punching him on the face really hard and running away to the woods like a maniac. The funniest thing however, is the fact that two minutes later, they're a happy couple again, as if punching each other like that, was the most natural thing in the world. I know it's silly, but I myself, found it absolutely hilarious. The ogre (which is obviously the villain of the story) looks creepy and funny at the same time too and let's face it: a villain who can freak us out and make us laugh a little bit, it's twice as welcomed. It reminded me of Michael Jackson in \"\"Thriller\"\", but much more natural and human, of course. But if focusing on the genuinely good aspects that I mentioned before: the music composed by Simon Boswell is one of the high points and even if it pretty much always the same, it fits perfectly and it helps to create a rather dark atmosphere during the moments of tension. So if I have to give my final statement regarding this movie, I'm going to have to say that I can't help loving it, including the small flaws and most people who enjoy these typical Italian horror movies from the late eighties, won't be disappointed by this one. It has all the typical and always well received clichés, like the crazy old man who actually speaks the truth, the foxy local woman who is said to be a witch, a creepy castle, a huge dark basement with a terrible secret and the local folks who try to prevent the tourist with their hostility, to stay away from the infamous lands. I would say that \"\"La Casa dell'Orco\"\" deserves two thumbs up and a punch at your spouse's face, as a way to pay tribute to the heroine of the story. Take this movie for what it is and enjoy it.\"\r\n1\tAs incredible as it may seem, Gojoe is an anime- and Hong Kong-inspired samurai action flick with a pacifistic message. This ankle of the film is effectively portrayed through the protagonist (a great acting job done by Daisuke Ryu), a killer-turned-to-boddhist-monk Benkei. Benkei has sworn never to kill again, but he still takes up the sword to fight what he thinks is a demon invasion...<br /><br />Gojoe is a film difficult to rate. It's visual imagery is stunningly crafted and beautiful, but it uses too much trickery (circling camera and high speed drives, expressionistic shots, leeched colors, digital effects etc.), so the end result is somewhat tiring. That said, the beginning and the ending of the film are nevertheless both elegant and powerful. If only the director Sogo Ishii would have been wise enough not to overuse his bag of tricks.<br /><br />Other problem with Gojoe is the amount of violence. For a film with such an anti-violent message Gojoe wastes way too much energy and screen time to depict the endless battle scenes. Also, the way the violence is shown is always on the edge of being self-indulgent; in fact, a blood shower against the night sky seems to be one of the films signature images. Luckily, Ishii is wise enough to show the ugly, tragic side of violence as well. Still, it seems that Ishii is not sure whether he's making a traditional action film or a deeply moral allegory. The audience can't be sure of this, either, until the very end of the film. The powerful (albeit cynical) ending is what saves Gojoe; it clearly emphasizes that this film is something more than a mere gore-fest.\r\n0\tI watch lots of scary movies (or at least they try to be) and this has to be the worst if not 2nd worst movie I have ever had to make myself try to sit through. I never knew the depths of Masacism until I rented this piece of moldy cheese covered in a used latex contraceptive. I am a fan of Julian Sans, but this is worse than I would hope for him.<br /><br />On the other hand the story was promising and I was intrigued...for the first minute and a half while the credits rolled and I had yet to see what pain looked like first hand. Perhaps there are some viewers out there that enjoyed this and can point me in the right direction, but then again I know of those viewers who understand if not commemorate me, especially when we had to turn the video off, and that simply is NOT done with our watching (we had to make one exception obviously). <br /><br />If it were up for a remake, I'd give it a chance so long as they had at most 1% of the original incorporated into it. That's all.\r\n1\tHello Dave Burning Paradise is a film for anyone who likes Jackie Chan and Indiana Jones. The films main protagonist is most definitely the bastard son of these two strange fathers. As for the other characters well they are familiar transformations of similar action film stereotypes. Where this film is original is in the blending of the traditional Hong Kong movie style with the Hollywood action adventure. Sadly this has not been true of the films he has made in Hollywood.\r\n0\t\"I really wanted to like this western, being a fan of the genre and a fan of \"\"Buffalo Bill,\"\" \"\"Wild Bill Hickok,\"\" and \"\"Calamity Jane,\"\" all of whom are in this story! Add to the mix Gary Cooper as the lead actor, and it sounded great. <br /><br />The trouble was.....it wasn't. I found myself looking at my watch just 40 minutes into this, being bored to death. Jean Arthur's character was somewhat annoying and James Ellison just did not look like nor act like \"\"Buffalo Bill.\"\" Cooper wasn't at his best, either, sounding too wooden. This was several years before he hit his prime as an actor.<br /><br />In a nutshell, his western shot blanks. Head up the pass and watch another oater because most of 'em were far better than this one.\"\r\n0\tIn theory, 'Director's Commentary' should have worked. The talented Rob Bryden plays Peter DeLane, a former television director recounting his experiences behind the camera. Amongst the programmes he is alleged to have worked on are 'Bonanza', 'Flambards', 'The Duchess Of Duke Street', and 'The Bounder'. His commentaries are not the least bit informative, due to his habit of wandering off the point.<br /><br />But in practice, it failed dismally. It is a one-joke show, and the joke is not particularly funny. The scripts are completely lacking in wit, and Bryden fails to convince as an old man. Whenever stuck for anything amusing to say, which is like every five seconds, he issues a hissing laugh. Rather than being amused by DeLane, you want to shoot him. If senile old men strike you as hilarious, then this is for you.<br /><br />It didn't help that the shows mocked were, with the exceptions of 'Mr & Mrs' and 'Crossroads', rather good. For the joke to work, they needed to be really dreadful such as 'Charlie's Angels', 'O.T.T.', 'Telly Addicts', 'Neighbours', and 'New Faces'.<br /><br />The show tanked big time, so thankfully we are spared the horror of future editions. Wouldn't it be deliciously ironic if 'Director's Commentary' were someday itself the subject of a spoof?\r\n1\t\"Aro Tolbukhin burnt alive seven people in a Mission in Guatemala in the 70's. Also he declared that he had murdered another 16 people (he used to kill pregnant women, and then he set them on fire).<br /><br />This movie is a documentary that portraits the personality of Aro through several interviews with people that got to know him and through some scenes played by actors based on real facts.<br /><br />\"\"Aro Tolbukhin\"\" is a serious work, so analytical, it's not morbid at all. Such a horrifying testimony about how some childhood trauma can turn a man into a monster.<br /><br />*My rate: 7/10\"\r\n0\tTyrannosaurus Azteca is set during the sixteenth century where famous Spanish explorer Hernando Cortes (Ian Ziering) has landed in Mexico with six of his best men including Lieutenant Rios (Marco Sanchez), they intend to claim the land in the name of the Spanish & maybe steal some gold too if the opportunity arises. Within minutes they have their first sight of local Aztec savages, within minutes after that Cortes & his men are captured & held prisoner. If that wasn't bad enough it turns out that a couple of Tyrannosaurus Rex live there & like to eat the locals, in an effort to win their lives the Spanish offer to help the locals get rid of their monster problem but with various hidden agendas & ulterior motives it's not just the dinosaurs they have to watch out for...<br /><br />Directed by Brian Trenchard-Smith (who, coincidently, made one of my all time favourite exploitations films Turkey Shoot (1982) which I throughly recommend to one & all) & also more commonly known under the spoof sounding title of Aztec Rex (the title was changed by the Sci-Fi Channel when they aired it maybe as the original title Tyrannosaurus Azteca sounds like it might be a foreign film) this is yet another idiotic & cheap looking Sci-Fi Channel 'Creature Feature' & that's all you need to know really. Based on & around the real Spanish Conquistador Cortes during his expedition to Mexico the film definitely doesn't strive for historic accuracy although I will admit that the story tries to do something slightly different here but ultimately Tyrannosaurus Azteca is still just a 'Creature Feature' with a bunch of people running from some poor CGI computer graphic of a monster despite it's period setting. Not too sure what else I can say, despite being set centuries ago the usual clichés are here, the character's are the usual cardboard cutouts, make stupid decisions & the selfish one, the heroic one, the backstabbing one, the faceless victim who exists just to get eaten & the pretty woman are all here & easy to spot. The film is predictable, silly, dull & doesn't really entertain on any level although it does move along at a decent pace & there's one or two half decent moments of gore if that sort of thing interests you. The story isn't that good & has plenty of holes too, this is also the sort of film that you will have completely forgotten about within a few days.<br /><br />Now I have seen & commented on plenty of Sci-Fi Channel 'Creature Features' & usually the CGI computer effects are terrible & while Tyrannosaurus Azteca doesn't exactly buck the trend I will admit there are a few effects shots which look alright but then they are usually ruined by an absolutely awful effects shot straight afterwards. There's a few decent gore effects here too, there's a cut out heart, a guy's leg is bitten off, there's some blood splatter, a cool shot of a guy left holding his own intestines after he has been attacked by the dinosaur, there's a few dead bodies seen & someone is stabbed with a spear. The T-Rex gets to eat a couple of people too. The production values are really cheap, the Aztec set looks like one of those theme park attractions made from Styrofoam & those Spanish men must have been imprisoned in the worst enclosure in cinematic history with the fence supposedly keeping them in lower than a mans waist, they could have simply stepped out of it & run away it was so low.<br /><br />With a supposed budget of about $900,000 I can't see where the money went, shot in O'ahu in Hawaii in apparently fifteen days. The acting isn't great from no-one I have ever heard of.<br /><br />Tyrannosaurus Azteca really isn't any better than any other cheap Sci-Fi Channel 'Creature Feature' despite an almost interesting & unusual premise, that basic statement should basically be enough for you to decide whether you will enjoy this or not (at a guess probably not).\r\n1\t\"\"\"Secret of the Lens\"\" is perhaps a pretty campy all-time favorite of mine. The best and funniest from Kajawari Yoshiaki, who is known for splatter anime and sleazy hentai-ecchi anime. I wish he did more campiness like this.<br /><br />My favorite scenes are the psychedelic CG sequence, the parts where Lord Helumis blows up his failing henchmen, the party riots that Bill causes (one of the funniest scenes) and whenever my favorite character, Worsle appears.<br /><br />Check this out.<br /><br />WARNING:This is not for serious sophisticated Anime fans!\"\r\n0\tA number of brides are mysteriously murdered while at the altar, and later their bodies are stolen en route to the morgue. Newspaper writer Patricia Hunter decides to investigate these mysterious killings. She discovers that right before each ceremony, the bride was given a rare orchid (supposedly from the groom) which contained a powerful drug that succumbed them. Patricia is told that the orchid was first grown by a Dr. Lorenz, who lives in a secluded estate, with his wife. In reality, Dr. Lorenz is responsible for the crimes, by putting the brides in a suspended state, and using their gland fluid to keep his wife eternally young. Patricia, along with Dr. Foster (who is working with Dr. Lorenz on the medical mystery surrounding his wife) try to force Dr. Lorenz's hand by setting up a phony wedding, which eventually leads Patricia into the mad doctor's clutches. This movie had a very good opening reel, but basically ended up with too many establishing shots and other weak scenes. The cast is decent, Walters and Coffin deserved better, but that's life. Russell steals the show (even out hamming Lugosi- who does not give one of his more memorable performances, even considering his Monograms) as Countess Lorenz playing the role with the qualities of many of the stereotypical characteristics of many of today's Hollywood prima donnas. Weak and contrived ending as well. Rating, based on B movies, 4.\r\n0\t\"So far after week two of \"\"The lone of Beauty\"\" I am a little disappointed.<br /><br />Some of the acting is good, as long as we except that it is only drama.<br /><br />I am unsure how people can feel that this FICTIONAL DRAMA is \"\"factual\"\" coverage of the \"\"Thatcher\"\" years - it is okay as drama, but I feel the award winning book is still much better.<br /><br />I Wonder if the BBC will ever give us the follow up and the next part of the drama and the years that follow with \"\"Things Can Only Get Better\"\" finishing with 2006 and the Fact that we are still waiting! with that promise from a Government that is full of sleaze.\"\r\n0\tNever see this movie.<br /><br />It tries to be a spoof on scifi/thriller films of the 1950s and 1960s but all it succedes at is making you wish really badly that you were watching one of them and not it.<br /><br />It is very lame. A spoof has to have some aspect which has some above par quality to it. This movie does not have any such aspect.<br /><br />Save yourself. It's too late for me but... just don't watch it.\r\n1\tA great addition to anyone's collection.<br /><br />12 monkeys is a movie you don't see every day. It has excellent actors to go with a excellent story. This is not a normal role for Bruce Willis but he holds the role like he holds John McClane.<br /><br />The virus-kills everyone on earth and leaves a few hundred survivors story is not a new one but the story takes a fresh new direction on it.<br /><br />A man(Bruce)is sent back in time to get information on a virus which has wiped out most of man kind.<br /><br />The actors in this were awesome. I must give a mention to Brad Pitt who was hilarious as the mental patient James Cole(Bruce) meets in a mental hospital.<br /><br />The director did an amazing job on bringing us a disturbing picture of a future devastated by a man-made virus.<br /><br />The animals seen in the virus world made it feel like they run the world when humans are driven into underground facilities.<br /><br />This movie was excellent and must see and also its a must own.<br /><br />I very much highly recommend it.<br /><br />10/10\r\n1\t\"The title is the sound that one of the characters makes as he drives his imaginary trolley across the garbage dump where the characters live. The film is based on a series of stories by Shugoro Yamamoto and tells the story of a group of people who effectively live in ramshackle homes on the edge of the dump. It's a mix of laughter and sadness.<br /><br />First color film made by Akria Kurasowa has been something I've wanted to see for a long time. Weirdly it was often listed as being only available in a shortened version from a three or four hour original due to an error in the run time in some promotional material. I was holding out for the full version, waiting to see what Kurasowa wanted us to see, only to find out on the recent release by Criterion that the 140 minute version is the full version.<br /><br />Finally sitting down to see the film last night I'm of mixed emotions about the film. First and foremost its visually linked to every film that followed. You can see every other of Kurasowals remaining six films reflected in this movie, down to the painted sunsets. Its a striking film in its use of color and you can understand why it took him so long to a film stock he would he happy with (of course there are failed projects as well). The film is a visual work of art.(Though be warned if you're going to see this on your widescreen TV this was shot 1.33 so will appear in normal TV ratio.) The rest of the film is a mixed bag. Part of the problem is that the lives of all of these people don't quite come together. As separate tales they all work well but as a filmic whole they don't hang as one. I don't blame Kurasowa since one can't always hit things out of the box, especially when some one like Robert Altman who specialized in multi-character films of this sort occasionally bombed himself.<br /><br />This isn't to say that there aren't reasons to see the film. As will all Kurasowa films there are always reasons to see his films, whether they work or not. The first trip of the \"\"trolley\"\" is one of the best things Kurasowa ever did and is worth the price of a rental. Its one of the most magical moments in film history as the trolley is inspected and taken out. The father and son living in the car is touching (though ultimately very sad) and there are other bits and pieces that shine (like the cast which is across the board great) and one should at least try the film as something different from a man we usually associated with samurai films or crime dramas.<br /><br />Its an intriguing misfire from a master filmmaker which means in this case means its better than most other filmmakers successes.<br /><br />Between 6 and 7 as a whole, much higher in pieces.\"\r\n1\tEleven different Film Makers from different parts of the world are assembled in this film to present their views and ideas about the WTC attack. This is one of the best effort you will see in any Film. Films like this are rarely made and appreciated. This film tries to touch every possible core of WTC. Here are some of the most important stories from the film that makes this film so unique.<br /><br />There is the story from Samira Makhmalbaf (Iran) where somewhere in Iran people are preparing for the attacks from America. There a teacher is trying to educate her students by informing them about Innocent People being killed in WTC massacre. Then comes a story from Youssef Chahine (Egypt) where a Film Maker comes across face-to-face conversation with a Dead Soldier in the WTC attack and a Dead Hard Core Terrorist who was involved in WTC attack. Then we see a story from Idrissa Ouedraogo (Burkina Faso) where a group of Five Innocent children's sees Osama Bin Laden and plans to kidnap him and win the reward money from America. Then we see the story from Alejandro Gozalez Inarritu (Mexico) where you see a Black Screen and slowly you see the real footage of WTC buildings coming down. And the people who are stuck in the building are jumping out of it to save their lives. The other most important story is from Mira Nair (India) where a mother is struggling to get respect for her Dead Son whose name is falsely trapped in WTC massacre! After September 11 attack, Our heart beat automatically starts pumping if we hear two names anywhere in the world.. First is World Trade Centre and the second is Osama! This film totally changes our perception and makes a strong point by claiming something more to it.<br /><br />I will definitely recommend this movie to everyone who loves to have such kinds of Home DVD Collection. Definitely worth every penny you spend. But please don't expect anything more apart from Films in this DVD. There is of course Filmographies of the Film Makers but No Extra Features.\r\n0\t\"Well this is a typical \"\"straight to the toilet\"\" slasher film.<br /><br />Long story short, a bunch of teenagers/young adults becoming stranded in the middle of creepy woods and get hacked down by naked nymphomaniac demons.<br /><br />This movie has all the basics for this slasher fromage:<br /><br />-Naked women, -teens or young adults being marooned in someplace spooky, -gory death scenes, -the last survivor being a well built young woman who will always show off her midriff, but never bra less, -a creepy, crazy man who knows about the evil, -lesbian kiss scene, -sex being a killer, -no plot<br /><br />Even then for a cheesy slasher film, it was really terrible. The atmosphere is totally dead. Nothing, not even the sexually explicit scenes and nudity, was enough to keep the male and lesbian female audience interested. Watching it felt like it was being watched with a nasty head congestion or a nasty head cold.<br /><br />Give the demonic ..... 0/10.\"\r\n1\tTHE PERVERT'S GUIDE TO CINEMA (2007) **** <br /><br />If Loving Cinema Makes Me A Pervert, So Be It!<br /><br />If you are a true 'moviefreak' like me then I'm sure you can't get enough of films about film-making and I don't mean necessarily the dry documentary know and then. I mean a total discourse on the film viewing experience. Well if that's the case have I got a lulu of a film experiment for you.<br /><br />In Sophie Fiennes (sister of Ralph & Joseph if you were wondering) has noted philosopher cum cinephile Slavoj Zizek give his analysis on cinema with some impressive (and often outrageous) takes on everything from the silent era of Chaplin thru the modern age of the Wachowski Brothers analyzing, probing, and pontificating about the psychosexual underpinnings, socioeconomic, political and of course indefinable magic of the film going experience with his unflagging, determined and near-frenetic dissertations. To go from explaining how The Bates' house in PSYCHO is actually the mirrored psyche of the conflicted Norman Bates with each level as his Ego, Superego & Id is one thing but then to suggest the same thing about each Marx Brother in barely a beat is a remarkable test of faith that wins over the skeptic layman.<br /><br />Although I had no idea who Zizek was  he resembles a hybrid of filmmaker Brian DePalma, European actor Rade Serbedzija and the hyperkinetic energy of filmmakers Quentin Tarantino and Martin Scorsese  with his sibilant tongue and passion, the host comes across as a mad prophet. <br /><br />Fiennes cleverly inserts Zizek into several of the film clips' backgrounds peppered throughout making for a humorous tone but still lets the ranting and raving continue full throttle giving pause for argument in three acts covering the gamut of films by the likes of Kubrick, Lynch, Hitchcock and films as diverse as THE WIZARD OF OZ, THE RED SHOES, and FIGHT CLUB. <br /><br />There's something for everyone and if one man can provoke an argument or at least a reason to discuss a film's themes  even if they are Freudian/Jungian to a fault  then I say this collection of film theory is worth the watch. Seek it out now if you can before it comes to home video; it's the only way to appreciate it.\r\n1\tI really love this movie. I remember one time when I was in 2nd >grade, my teacher showed it to us on a 16mm film reel. This movie, however, can be a little frightening for 2nd graders such as the scene where Bill murders Nancy and seeing Fagin's face for the first time on the screen. One of my relatives is sick of seeing this movie because she studied over it in music class. If I were a teacher and could grade the people who produced this wonderful film, I would give them an A+.\r\n0\tAfter the superb AANKHEN(2002) which was a remake of a Gujarati play he comes with WAQT which too looks like a stage play<br /><br />In stage plays, we have characters shouting, overacting here too the same<br /><br />The first half shows Amitabh almost kidding the 40+ Akshay Kumar who acts too funny like a small nerd<br /><br />The film has a good message how not to spoil your son but sadly the way Amitabh wants to make Akki responsible is absolutely fake<br /><br />Even his reason for hiding his sickness, his runnign from the hospital and the melodramatic speech by Akki is a put off<br /><br />Some emotions do touch you but most are too over the top<br /><br />Rajpal's comedy is hilarious but too stretched in second half <br /><br />Direction by Vipul Shah is too overdone though some scenes are good Music is okay<br /><br />Amongst actors Amitabh overdoes it in the first half but is superb in emotional scenes Akshay Kumar too does his part well but looks umcomfortable in some too weepy scenes His chemistry with Bachchan is matchless Rajpal is a highlight, he makes you laugh without overacting and just his presence and his dumb behaviour and deadpan humour he is a riot Boman is good in some comic parts but too loud at places Priyanka is the heroine so nothing to do, this is her last film with Akki so far Shefali is awesome though she looks too young for Bachchan\r\n1\t\"Not sure if it was right or wrong, but I read thru the other comments before watching the short.I have to say I disagree with most of the negative comments or problems people have had with it.<br /><br />As a first time \"\"Lone Wolf\"\" director/producer,I like to see things that I can aspire to,not necessarily from the pro's, but by people just getting their feet wet like me.<br /><br />If indeed this is also from a first-timer,as I read,I applaud the effort.Marvelous job then in that respect! There were some comments about the music.I thought it was quite nice for the piece.Some say it kind of droned along for a while, but I found that created tension without(us)necessarily being conscious of it, and when he pulled the gun out and the guitar started crunching chords,it was like we knew there was a train on the tracks, but realize it is just now moving. Yes there is a 180 degree slip/clip in there, but shi* happens.Did anyone else see Hugh's dirty shirt turn white (near the end,in the rain) in \"\"Australia\"\"? Look how much money and people were behind that movie! Give the kid a break for Gods sake! All in all I think it was very well done. Only 2 things I would have mentioned are hardly worth mentioning-Don't walk up to a shiny brass picture frame with the camera, and I would have just displayed the splatter at the beginning shots to a still shot, so people wouldn't necessarily know what it is.<br /><br />My experience so far has taught me that it's not that it's hard to make a movie,it just takes time to learn how to do it,then the time to actually do it, and then you better take some more time still to think of all the details you'll need to have shot before you call \"\"post-production time!\"\" IMHO, it looks like director/writer Ryan Jafri did his homework, and if this indeed is his first report card, I'd give him an \"\"A\"\". The rest of you report to the principals office for a whuppin'.\"\r\n0\tWhile I have never been a fan of the original Scooby-Doo (due to its horrid production values), it appears like Shakespeare compared to this pile of crap brought to us by Hanna-Barbera! Without a doubt, Scrappy-Doo is about the most annoying and awful character created for children (and this includes the Teletubbies as well as Tommy the Tapeworm). Whose bright idea was it to create some sort of short mutant dog and enable it to speak and then saddle the Scooby-Doo characters with it?! Whoever it is deserves to die or watch this show (I think death is preferable). The bottom line is that the little dog is simply unfunny, annoying and grates on the nerves--and this is only in the BETTER episodes!! After many years, it would have been better to just end the franchise than create this mess! I can see why in the live-action Scooby-Doo movie they made the villain Scrappy-Doo--since practically everyone hates him!\r\n1\tRock 'n' Roll High School was one of the best movies ever made! I think the only reason it was so awesome was because of The Ramones! You couldn't have made the same movie and put something like the Sex Pistols, or The Clash in place of The Ramones, it just wouldn't have been the same. dey young, clint howard, Vincent Van Patten, Mary Woronov, Paul Bartel, and the hall monters, just added to the movie. The whole entire movie is about The Ramones...especially Joey! So everybody showed see Rock 'n' Roll High School if your a huge fan of real PUNK. Not the sissy new crap...but the loud, and fast kind. The kind only The Ramones could do. R.I.P (Rest In Peace) Joey Ramone 1951-2001. Dee Dee Ramone 1952-2002!\r\n0\t\"This was god awful. The story was all over the place and more often than not I was confused because of horrible editing. I felt no sympathy for anyone because their characters were not developed enough. They were extremely superficial people with no dimension. Cheesy, cheesy stereotypes with subplots that went nowhere. The stripper chick was just a distraction, even if she was decent looking. I don't know what this was attempting to be, but how shocked was I when they showed this trash on Sundance? I almost cancelled my subscription. You'd think a channel like that would show more quality films. There are much, much better gay and lesbian themed films out there. \"\"The Celluloid Closet\"\" is an excellent documentary. I thoroughly enjoyed \"\"Wigstock: The Movie\"\". I'm sure there are others that have slipped my mind at the moment, but what I'm trying to say is that this just wasn't worth it. If you catch it on TV, ok, but otherwise don't bother.<br /><br />There were maybe three or four shots that looked really nice (sad I can count them on one hand), otherwise the cinematography was pretty crappy as well. The lighting was way off in a lot of places. I think some of the effects were used to try and add to something that just had practically nothing going for it.<br /><br />I can't deny Johnny Rebel is pretty hot (without the blond hair of course). Too bad his acting did nothing for me. Stick with real porn, buddy.<br /><br />3/10.\"\r\n1\tGo see this movie for the gorgeous imagery of Andy Goldsworthy's sculptures, and treat yourself to a thoroughly eye-opening and relaxing experience. The music perfectly complements the footage, but never draws attention towards itself. Some commentators called the interview snippets with the artist a weak spot, but consider this: why would you expand on this in a movie, if you can read Andy's musings at length in his books, or attend one of his excellent lectures? This medium is much more suitable to show the ephemeral nature of the artist's works, and is used expertly in this respect.\r\n0\tAnd so the great rewriting of history continues Hollywood style.<br /><br />This was senseless ridiculous rubbish.<br /><br />Its shocks me that such an amazing amount of money can be spent to produce what is the most contrived, poorly acted inaccurate film I have ever seen. It is appalling.<br /><br />Nic Cage's brief flirtation with serious acting appears to be over. I can only assume that Leaving Las Vegas was a glitch in an otherwise litany of dreadful films.<br /><br />Diane Kruger proves that her performance in Troy was no fluke, she really can't act.<br /><br />Harvey Keitel should be ashamed of himself for working on such tripe.<br /><br />Only recommended for those either recovering from a recent lobotomy or people of an opinion that America invented the world.\r\n0\t\"What a bad, bad movie! I tried watching without fast forwarding...That failed. After about 30 minutes I stopped the movie, went on-line to see how many minutes this disaster was. (Only 84 minutes, Whew!) It was a confusing, boring movie. I don't think anyone can get knocked down by getting hit with a fluorescent bulb much less gutted by one!! The one funny thing is that I watched \"\"The Killer Cut\"\" version of the movie. The box boldly states \"\"More Blood!\"\" \"\"More Sex!\"\" \"\"More Terror than the theatrical release!\"\" Yikes! If this movie was horrible with all those claims I wonder just how lame the \"\"UN-Killer Cut\"\" was??? If you want to see a great movie about the world of the living & the world of the dead watch any of The Night of the Living Dead series!!\"\r\n1\t\"This film is one of those nostalgia things with me and I never REALLY expect anyone else to \"\"get it\"\" but am pleased when I recommend it and somebody DOES enjoy it. My late father HATED Arthur Askey but this film was one he really enjoyed and his consistent enthusiasm for \"\"The Ghost Train\"\" and \"\"Old Ted 'Olmes\"\" transferred to me as a child. Years later, I watch it every now and again, enjoying the familiarity. I always wonder if it will not be quite the same but I am never disappointed in it. There is much to enjoy. The sequence on the train is truly inspired when Askey and Murdoch proceed to annoy the arrogant male passenger. Then the whole section in the station is amazing with so much going on you have to keep up. Yes, it is dated and full of wartime Britishness in accents and plot (based on the original play by Arnold Ridley of Dad's Army fame!) but full of wonderful character performances - including Kathleen Harrison as a dotty spinster. The atmosphere is truly as near sinister as an Arthur Askey vehicle could get. This is available cheap as chips in the UK on DVD so treat yourself. It is a perfect Saturday/Sunday morning or any day lazy afternoon lightweight piece of entertainment. I Thank You....<br /><br />OLD MOVIES CAN BE GOOD MOVIES!\"\r\n1\t\"This movie rocks\"\" Jen sexy as ever and Polly wow were we really ever that young this movie can still touch the hearts of a lot of teens it needs to be put on DVD soon or it will become a classic. i Really enjoyed growing up to this movie i have always had a crush on Jen now i am too old but to this movie is made for all gens> you know i come from the early 80,s area were i Had to watch everyone els live the life i wanted but thru movies i can do that all over again i guess in short i am hoping and wishing that this movie not be lost in time but reborn to the youth so they may enjoy the heart warm filling you get learning about hormones and datting problems and how to get away with stuff that seems so major back then but don't mean nothan now so this movie is a dating tool.\"\r\n1\t\"I love this anime! I was laughing my head off with all of the jokes and the violence (mostly from Akane Ranma's reluctant but short tempered \"\"fiancee\"\")is so slapstick however Ranma does deserve it but he does try his best to make amends...clumsily. The main character Ranma goes to China to train only to fall into the cursed Jusenkkyo Spring and turns into a girl when splashed by cold water. From then on it's pure chaos one after another. Among the stand outs are the deranged brother and sister duo of Kuno and Kodachi, the sexy Shampoo, the pervert Happosai all causing trouble for our hero/heroine. However it is Ranma's selfish father Genma who winds up being the culprit for the mess most of the time. If anyone want an anime that's funny, this is the one. It's cuter and better with the Japanese dub.\"\r\n1\t\"I really liked this version of 'Vanishing Point' as opposed to the 1971 version. I found the 1971 version quite boring. If I can get up in the middle of a movie a few times(as I did with the 1971 version) than to me, it is not all that great. Of course, this could be due to the fact that I was only nine at the time the 1971 version was brought out. However, I have seen many remakes, where I have liked the original and older one better. I found that the plot of the 1997 version was more understandable and had basically kept true to the original without undermining the meaning of the 1971 version. In my opinion, I felt the 1997 version had more excitement and wasn't so \"\"blase\"\".(Boring)\"\r\n1\tI absolutely LOVED this Soap. It has been one of my favorite. Will highly recommend :)... I just love Brazilian soaps, they deal with real life events. I'm really sad that the soap ended but I'm sure I'll be able to find it somewhere. For those of you who have not seen it, please see it. I loved the characters, the plot and how things turned out in the end for the villains. The only thing I would have changed is the end for Xica and her long life love. I can't wait to see it again and highly recommend it. Xica has been by far, the best soap I have ever seen. Forget everything else :)GO XICA.. Hope you all like it as well.\r\n0\tThis was just horrible the plot was just OK, but the rest of the was was bad . I mean come on puppet and then they even tried to make the movie digital and that made it even worse! Normally I would like low-budget movie but this was just a waste of time and almost made me want to return the set that it came on. I have about ten low-budget movie set with like 6-8 movies on them and I would have to say this is the worse movie out of all of them. Also the wording is off and they use a fake plastic machetes that doesn't even look like a real one, they could of used one that looked even a little close to a real one so save your time and money and don't watch this horrorible movie.\r\n0\tThis is a really bad film, with bad acting and a very boring pace Lorenzo Lamas is really cool though!. All the characters are just annoying (except Lamas), and there is absolutely no one to root or to care for!, plus the action is very boring. The film gives us 3 villains who were supposed to find menacing and disturbing when in fact there boring, laughable and just a bunch of morons that i wanted to shut up!, plus it looks very cheap and amateurish!. Lorenzo Lamas has a lot of charisma but he can't save this piece of crap, and believe it or not the opening was really cool, as was the ending, however the middle is incredibly boring, and got me to have the urge to press the fast forward button!, plus The dialog is especially laughable!.There is a cool bar scene that i really liked, but once Lamas heads to the dock it all falls apart, plus the scene where The villains torture Jennifer's family, and kills them were supposed to find it disturbing when it in fact is laughable!. This is a really bad film, with bad acting and a very boring pace, Lorenzo Lamas is really cool though!, however it is not enough, not recommended. The Direction is very bad. George Erschbamer does a very bad job here, with mediocre camera work, bland location, and keeping the film at a boring pace. The Acting is pretty bad (except for Lamas). Lorenzo Lamas is awesome here, and while he isn't required to act, he is quite fun to watch, and has a really cool character, and had a lot of charisma, however even he can't save this one,and he had no chemistry with the cast either! (Lamas Rules!). Josie Bell is terrible here, and while she's decent looking, she isn't very convincing and had no chemistry with Lamas. Cheryl Jeans is hot, but does not have much to do but scream and scared, she did okay at that.Robert Scott is INCREDIBLY annoying as the main villain, and wasn't menacing at all, he was laughable as were the other 2. Rest of the cast are bad. Overall Avoid! Avoid!, even if you do like Lamas (like me). * out of 5\r\n1\tZentropa is the most original movie I've seen in years. If you like unique thrillers that are influenced by film noir, then this is just the right cure for all of those Hollywood summer blockbusters clogging the theaters these days. Von Trier's follow-ups like Breaking the Waves have gotten more acclaim, but this is really his best work. It is flashy without being distracting and offers the perfect combination of suspense and dark humor. It's too bad he decided handheld cameras were the wave of the future. It's hard to say who talked him away from the style he exhibits here, but it's everyone's loss that he went into his heavily theoretical dogma direction instead.\r\n0\tWho in the world told Harrison Ford that this was a good role for him???<br /><br />And Josh Hartnett...how does a 19 year old who can't fire a gun become a cop? Over used cliches plus zero character development and about 15 pointless music industry cameos equal a surprisingly bad film!!!\r\n0\tNo need to detail what others have written in other reviews - here goes the summary: <br /><br />* Much of the nested animation work is downright gorgeous - the colors are superb - would love to have it done in silk as a necktie<br /><br />* The story and execution is a total snooze - it was quite difficult to stay awake at times<br /><br />If you are a student of the fine arts, medieval calligraphy, early religion and so forth - have at it. This is a FILM for you.<br /><br />If you want an engaging, entertaining MOVIE - look elsewhere - this is a failure as anything other than an artistic statement.<br /><br />Vikings didn't have horns by the way...\r\n1\tI saw this film at the Santa Barbara Film Festival, and there was not a dry eye in the house. It is incredible to see not only what a great person Darius is, but how admirable the rest of the team is too and at such a young age.<br /><br />It also made me think how disgusting MTV was, and how on being given an opportunity to involve and inspire in a positive way, they declined. Shows you whether they really care about the youth and their viewers at all.<br /><br />It's a wonderful and heart warming true story...take your tissues but it's great to see how caring and inspiring youth of today can be.\r\n1\t\"\"\"Lost\"\", \"\"24\"\", \"\"Carnivale\"\", \"\"Desperate Housewifes\"\"...the list goes on and on. These, and a bunch of other high-quality, shows proves that we're in the middle of a golden age in television history. \"\"Lost\"\" is pure genius. Incredible layers of personal, and psychologically viable, stories, underscored by sublime cinematography (incredible to use this word, when describing a TV-show), a killer score, great performances and editing. Anyone who isn't hooked on this, are missing one of the most important creative expressions in television ever. It may have its problems, when watching only one episode a week, but the DVD format is actually an incredible way to watch this. Hope they keep it up (as I'm sure they do).\"\r\n0\tI know nothing of the Iliad so can not comment on it's accuracy to that story. However, as a stand alone film I found this very boring. The battle scenes tried to be large and spectacular but they were just obvious CGI.<br /><br />The acting is poor and no doubt Brad Pitt was cast just to attract the ladies. But he does not make a good warrior, too pretty i am afraid.<br /><br />Good points are is the design. This film does look good with the landscape and castle buildings/walls impressive. I do like a film that at least tries to get the characters accents true but this film just seems to ignore it completely. we hear American, Scottish English anything but what you might expect for a film about an ancient eastern civilisation.<br /><br />All in all, I do not recommend this film for a family sit down. It is too long and the young will get bored.<br /><br />For adults, it is OK if you don't care about the lack realism.\r\n0\t\"WOW! Pretty terrible stuff. The Richard Burton/Elizabeth Taylor roadshow lands in Sardinia and hooks up with arty director Joseph Losey for this remarkably ill-conceived Tennessee Williams fiasco. Taylor plays a rich, dying widow holding fort over her minions on an island where she dictates, very loudly, her memoirs to an incredibly patient secretary. When scoundrel Burton shows up claiming to be a poet and old friend, Taylor realizes her time is up. Ludicrious in the extreme --- it's difficult to determine if Taylor and Burton are acting badly OR if it was Williams' intention to make their characters so unappealing. If that's the case, then the acting is brilliant! Burton mumbles his lines, including the word BOOM several times, while Taylor screeches her's. She's really awful. So is Noel Coward as Taylor's catty confidante, the \"\"Witch of Capri.\"\" <br /><br />Presumably BOOM is about how fleeting time is and how fast life moves along --- two standard Williams themes, but it's so misdirected by Losey, that had Taylor and Burton not spelled it out for the audience during their mostly inane monologues, any substance the film has would have been completely diluted. <br /><br />BOOM does have stunning photography---the camera would have to have been out of focus to screw up the beauty of Sardinia! The supporting cast features Joanna Shimkus, the great Romolo Valli as Taylor's resourceful doctor and Michael Dunn as her nasty dwarf security guard...both he and his dogs do a number on Burton!\"\r\n0\t\"So on the Chills Network on cable they are having \"\"Vampire Month\"\", I'm such a dork, but I love vampires. So after a few duds that they showed I was pretty disappointed, but then I noticed Sleepwalkers was written by Stephen King. So I decided to go ahead and check it out, well much to my surprise, this movie was really bad. Most Stephen King films are entertaining and some are very scary. While Sleepwalkers was bad, it was a beautiful kind of bad. I had a good time laughing at this movie and just taking it for what it was. I've never read Sleepwalkers, from what I understand this is the only real vampire story by King, so I can't really compare book to film. I don't know if it was just my TV, but Sleepwalkers looked like it was made for TV. The special effects were corny and the story was a bit far fetched, even if it is fantasy, it had a lot of problems. <br /><br />Charles Brady and his mother Mary are vampires who feed off the life force of virgin women. They are considerably more resilient than humans and have powers of both telekinesis and illusion. Their one weakness is cats, who are not only able to see through their illusions but whose claws are capable of inflicting severe to fatal wounds upon them. They also maintain an incestuous relationship. Charles and Mary have taken up residence in a small Indiana town. Charles attends the local high school, and there he meets Tanya Robertson in his creative writing class. Tanya does not suspect the real reason why Charles wants her so much; to take her life force for his mother, who is starving. At first, it seems that Charles has fallen in love with Tanya. On their first date, however, a picnic at the nearby cemetery, Charles attempts to drain the life force from Tanya while kissing her. As it happens, Deputy Sheriff Andy Simpson who had earlier tried to pull Charles over for speeding, drives by the cemetery and notices Charles' car. When Tanya runs to him for help, Charles tracks Andy down and kills him. When Charles then turns to resume his life force-depleting make out session with Tanya, the deputy's cat, Clovis, rises to the occasion and nearly kills Charles by scratching him in the face and chest. Mortally wounded by Clovis, Charles staggers back home to Mary. Mary then seeks vengeance on Tanya's family.<br /><br />So to sum this movie up basically you should expect the cheese to overflow. The scene where Charles attacks Tanya for the first time is very cliché and you almost vote for Charles to win just because Tanya is one of the dumbest female leads in horror movies. Then you gotta love the scene where Mary has a gun and shoots it at a cop car and somehow the whole thing explodes, God bless Hollywood explosions and exaggerations. I'm taking the movie for what it is, it's just so deliciously bad that it turns into a dark comedy for me that I could just enjoy making fun of. I'm not sure if this is what Stephen King wanted to see for his story, but he does have his typical cameo in the film. So my suggestion if you watch this movie, just take it for what it is and don't over think it, it's mindless entertainment with corny effects, bad casting, a silly story and enough cats to make the crazy cat lady from The Simpson's say \"\"Wow, that's a lot of cats\"\".<br /><br />4/10\"\r\n0\t\"Title: Robot Jox (1990) <br /><br />Director: Stuart Gordon <br /><br />Cast: Gary Graham, Anne Marie Johnson, Paul Koslo <br /><br />Review: Stuart Gordon who we usually associate with extremely gory horror films such as Re-Animator, From Beyond, Dagon and Castle Freak, took a small detour here and did a little sci-fi flick. I stress the word \"\"little\"\" since this is a very low budget flick, and there in lies its main weakness.<br /><br />The story takes place in the future. A world in which the great superpowers (that according to this movie are the United States and Russia) duke out their differences not by going on a full blown world war...but by fighting gladiator style battles with gigantic robots. Our hero Achilles must go up against the evil Russian robot fighter called Alexander. Lots of cheap stop motion animation ensues.<br /><br />Well, the idea is awesome I guess. The great nations settleling territorial disputes with giant robots? Interesting premise and one that could have been handled properly if the proper budget had been available. Unfortunately what could have been a fun movie ends up being an embarrassment for an otherwise great director.<br /><br />I as a kid loved this movie, and I guess if you want any enjoyment out of this movie, you'll have to revert back to little kid mode to have some fun with it. I showed this film to some of my friends and as the movie progressed my friends where like \"\"what the hell is this piece of crap franco?\"\" And I'm like well this movie is a sci-fi by one of my favorite directors Stuart Gordon?\"\" But as the movie progressed into corny territory I almost felt like pressing stop and not having them go through that torture. I could go through it, cause I loved this film as a kid, and there's still a little nostalgia attached to watching it. But everyone else was just not going to get it.<br /><br />And I myself realized that the movie isn't really that good. First off. The movie is about giant robots kicking the hell out of each other. And in order to achieve this in a credible fashion you'd have to use some damn good special effects to make it work, expensive effects that would help us the audience suspend disbelief. But unfortunately this being a small scale movie, from a small scale company (Empire Pictures, which went bankrupt after making this film!)the effects only help us giggle and laugh at them. Heck even the sets and some of the wardrobe looks unfinished or half assed.<br /><br />OK granted, once you accept that you are watching a mixture of moderate stop animation and miniatures well you can sort of give in to the film and even enjoy the big robots kicking the hell out of each other. There are certain scenes when the robots are fighting that are kinda cool, and made me go \"\"thats why I liked thid movie!\"\" But every know and them, some crappy effect will take you right out of that protective little cocoon you were trying to hide in. And boom, your right back into realizing this film just doesn't live up to its premise.<br /><br />And heres another thing that sort of bothered me a bit about the movie. This movie is basically a movie for kids. You know, giant robots duking it out? Stop motion animation? Hello? But this movies dialogue had a lot of sexual innuendos and the violence gets a little bloody. So I kept asking myself is this a kids movie or not? After a while I just came to the conclusion that basically this was a kids movie with adult sensibilities, which really isn't a good mix.<br /><br />So for those of you who don't feel that certain naive childlike charm of watching two robots fighting each other and if you don't have a nostalgic connection to this movie (like I do) well Id suggest you steer clear away from this one. Gordons a great director, but this movie he made, just didn't do it for me. Well, at least not now that I'm a full grown adult.<br /><br />Rating: 2 out of 5\"\r\n1\tRobin Williams does his best to combine comedy and pathos, but comes off a bit shrill. Donald Moffat is too one-note as his father-in-law. Jeff Bridges is excellent though as the quarterback, and Holly Palance and Pamela Reed are marvelous, carrying the film through most of its rough spots. It fills time nicely, but is little more than that.\r\n1\t\"This movie is not a kung fu movie. This is a comedy about kung fu. And if, before making this film, Sammo Hung hadn't spent some time watching films by the great French comic filmmaker Jaques Tati (i.ie., e.g., esp. Jour de fête), he is certainly on the same wave length.<br /><br />Personally, I think Tati's films are hilarious; but they're not to all tastes. Some have told me that they loathe his work. I've never figured out why, but I think it's because the character that Tati usually plays himself is so totally dead pan, so unaffected by the events around him (which he is usually causing) that many miss the more subtle comic bits happening around him.<br /><br />At any rate, Tati's main shtick - or at least his best known - is to take a pretentiously upright petite bourgeoisie with 19th century sensibilities and drop him into 20th century France where he must confront a society that is largely defined by the gradual eroding of those sensibilities. He usually has serious difficulties with little things like record players or radios. He's a hazard in a car, but the world's no safer when he rides a bicycle. But through it all, he never loses his aplomb, which is derived from his inner recognition that the nineteenth century was more interesting than the 20th overall.<br /><br />In a similar fashion, the character Sammo Hung himself plays is a country boy come to the big city of Hong Kong, utterly convinced that what makes the city interesting is that Bruce Lee made kung fu movies there. This gets him into trouble in small ways, since he takes in stride happenstance which would never be noticed in a small town but which are deemed inappropriate in a big city - such as the moment when he appears to be urinating in the street, A cop stops him, only to discover that Hung is actually just squeezing water out of his shirt, soaked during an accidental dip in the bay. What's interesting about this gag is why it is Hung doesn't understand what the cop's fuss is all about - in a country town, as long as no one's looking, if you gotta go you gotta go. In other words, Hung is not really urinating in the street - but he certainly would - and what's the problem officer? Of course Hung's obsession with Bruce Lee also gets him into big troubles as well. He beats a gang of thugs who have refused to pay his restaurant-owner uncle. Of course, in a Bruce Lee movie, the thugs would be considered trounced, and they would have learned their lesson. But in Hung's Hong Kong, reality unfortunately prevails, and the thugs return when he's not around, to trounce his uncle.<br /><br />Of course, Hung finally triumphs in the end, just as Tati always did. Characters like this must always triumph (at least in comedy) because they are completely innocent, and as such, despite their comic missteps and misunderstandings, they really represent what is best in the humans we admire and wish to be. We don't really want to be Bruce Lee (who has to experience the loss of all of his friends before he gets a chance to beat the bad-guy), we, in our own innocence, really want a world where Lee's heroics are possible.<br /><br />Unfortunately, that world only exists on film.<br /><br />\"\"Ah, but what if...?\"\" - and in that question we find Sammo Hung at his comic best.\"\r\n1\tThe director and two stars of LAURA (1944) were reteamed for this solid policier: Dana Andrews is the son of a criminal who becomes a cop to cut all ties with the past but cannot keep his inherited violent ways in check while interrogating suspects and, one night, he goes too far; Gene Tierney is the estranged wife of his victim, a decorated war hero who has become involved with the town's leading racketeer and Andrews' No. 1 nemesis, Gary Merrill (who had himself been the protégé of Andrews Snr.)! As usual with Preminger, this is a well-crafted movie with a notable opening credits sequence and enlivened by a good cast that also includes Karl Malden (as Andrews' incumbent superior), Tom Tully (as Tierney's motor-mouth taxi driver dad) and Neville Brand (as Merrill's chief thug), with notable support also coming from Craig Stevens (as the slimy, wife-beating victim), Bert Freed (as Andrews' sympathetic partner) and Robert F. Nolan (as Andrews' stern outgoing superior). Having already been warned by the latter to mend his ways or else, Andrews panics and impersonates Stevens for a couple of hours following his murder to put the police on the (in this case) wrong tracks of Merrill; however, after Tully becomes the prime suspect (by which time Andrews and Tierney are romantically involved), the cop goes by himself in Merrill's lair fully intending to get bumped off and 'frame' the racketeer for his own murder! Clearly, the protagonist is a complex character and Andrews rises to the challenge with a first-rate characterization that is typically complemented by the in-house Fox noir style.\r\n0\tHave to admit, this version disgraces Shakespeare upfront! None can act except the nurse who was my fav! Juliet had good skills as a teen but she can't give emotional depth to her lines and we really can never connect to her. She's worse doing the scene when she is contemplating drinking the sleeping potion...god stop whining! I would have poured it in her mouth to shut her up! Anthony Andrews...yikes! Considering his other great movies (Brideshead Revisited, Ivanhoe, Scarlet Pimpernel), he's quite a shocker in this one. And don't get me started on Romeo...puhleasssssee! It's still good to see if you're on the hunt to see every Romeo and Juliet ever made in the history of film. Olivia and Leonard's version is still the best, followed by Leslie Howard's version and then the current Leo and Clare!\r\n1\t\"When I first heard about the show, I heard a lot about it, and it was getting some good reviews. I watched the first episode of this \"\"forensic fairy tale\"\", as it so proclaims itself, and I really got hooked on it. I have loved it since. This show has a good sense of humour and it's fun to see a good show like this. The cast is excellent as their characters, and I wouldn't want to change them in any way.<br /><br />For those unfamiliar with this show, Pushing Daisies centers around a man named Ned (aka The Pie Maker, played by Lee Pace) who discovered a special gift when he was a boy: He could bring the dead back to life with the touch of a finger. He first did so with his dog, Digby. However, there is the catch: If he keeps a dead person alive for more than one minute, someone else dies. He learned this when he brought his mother back to life, and his childhood crush's father died in Ned's mother's place. The other catch is if he touches the person again, they're dead again, but this time for good. He learned this when his mother kissed him goodnight. His father took him to boarding school, and when he left, Ned never saw his father again.<br /><br />Almost 20 years later, Ned owns a pie bakery, cleverly titled \"\"The Pie Hole.\"\" A co-worker of Ned's, Olive Snook (Kristin Chenoweth) has a crush on Ned, but Ned rejects her moves, trying not to get close to anyone, learning from past experiences. Private Investigator Emerson Cod (Chi McBride) discovered the gift that Ned has, and decides to make him a partner in solving murders. Ned touches the victim, asks who killed them, and when the minute is up, he touches them again, and they solve it. That's how they usually solve it. Throughout the episodes, the murders have very interesting plots and be what people least expect.<br /><br />One day, Ned discovers that his next murder to solve is his childhood sweetheart, Charlotte \"\"Chuck\"\" Charles (Anna Friel). He brings her back to life and decides to break the rules and keep her alive. In her place, the funeral director, who stole jewelery from the corpses, died. When Emerson finds out, and when Chuck wants to help with solving the murders, he doesn't agree a bit--for a while, we hear him call Chuck 'Dead girl'. This is all kept in secret from Olive, Chuck's aunts Vivian and Lily (Ellen Greene and Swoosie Kurtz, respectively), and everyone else for that matter, in case anyone recognized her from obituaries, the news, etc. Vivian and Lily, formerly synchronized swimmers, hadn't left the house in years. Emerson, Ned, and Chuck agree to work together. Ned and Chuck grow to love each other, though they can't touch each other ever again.<br /><br />This show is funny, has terrific characters, contains great plot twists, and will definitely get your spirits up. I hope it doesn't get cancelled at 13 episodes.\"\r\n1\t\"Another silent love triangle film from Hitchcock, not a mystery, but very English, very well-paced and photographed. Smooth boxer Bob Corby (Ian Hunter) recruits circus boxer \"\"One Round\"\" Jack Sander (Carl Brisson) to be his sparring partner, partly to keep the pretty but fickle Mabel (Lilian Hall-Davis) nearby. There are lots of character actors and grotesquesat Jack and Mabel's wedding the verger, standing in the aisle of the church, registers shock at the sight of the very tall and the very short men, the fat lady, the conjoined twins who, of course, argue about which side of the aisle to sit, and the wedding feast is amusing. The rest of the movie has Jack losing Mabel and boxing his way back to her heart, or something like that. It was another era altogether, with the audience in evening dress, and the boxers dressing up, too, when out of the ring. The camera angles, the pace, the use of symbols, the cuttingall very stylish and masterful. The camera-work and editing of the last boxing match is very gripping. Brisson's good looks are well-used in this one; his smiling is not so oblivious of what's going on around him as he is in Hitchcock's The Manxman, and so is not annoying. But can boxers have such dimples?\"\r\n0\t\"Greetings again from the darkness. What ever happened to the great Barry Levinson? He directed two of my all-time favorites in \"\"Avalon\"\" and \"\"Diner\"\". He had some fine movies as well (\"\"Rainman\"\"), but always provided something of interest ... until now. I believe the worst thing you can ever say about a comedy is that it is boring. \"\"Envy\"\" is the definition of boring. Never of big fan of pure slap stick (\"\"Dumb and Dumber\"\"), I was just stunned at how god-awful this movie is. There are maybe 2 chuckles in the whole thing - if you can pay attention that long. The best part of the film is the running gag of the title song by a Redbone sound-alike. If the film had been written as well as the song, it would have been tolerable. Rachel Weisz is a wonderful actress and I realize they all want to do comedy (even Julianne Moore), but the real world exposes one weaknesses. SNL cast member Amy Poehler is her usual over the top in her role as trailer park trash turned princess. The disaster of the film is Jack Black and Ben Stiller. The first work commute together flashes some promise, but after that their chemistry disappears due to the poor script. This script is like most of Jack Black's character's ideas - not a bad thought, but no hope for success.\"\r\n1\tIf you are looking for a sonic-boom-special-effects monster, click the BACK button on your browser.<br /><br />Deathtrap was written by Ira Levin (Sliver, The Stepford Wives, Rosemary's Baby). It's a stage play, adapted for the screen. 95% of the movie takes place in the gorgeous home of playwright Sidney Bruhl (Michael Caine). He's the author of a fabulously successful Broadway play, but his last 4 efforts have flopped - horribly.<br /><br />An aspiring playwright, Clifford Anderson (Christopher Reeve), who attended a play-writing workshop given by Sydney, has sent him a copy of the play he has written. Sydney tells his wife, Myra (Dyan Cannon) the play is fabulous - a sure-fire hit. But is it good enough to die for? Time will tell.<br /><br />Clever dialog and numerous twists and turns in the plot keep this movie entertaining from beginning to end. The whole cast seems to have a good time. It's reminiscent of another fun Michael Caine mystery: Sleuth. Worth watching.<br /><br />\r\n0\tHow could 4 out of 16 prior voters give this movie a 10? How could more than half the prior voters give it a 7 or higher? Who is voting here? I can only assume it is primarily kids -- very young kids. The fact is that this is a bad movie in every way. The story is stupid; the acting is hard to even think of as acting; the characters are characterless; and the dialogue is terrible. I saw this one rainy afternoon on the Sci-Fi channel. In the sad event that it is ever rebroadcast, I suggest you read a book instead.\r\n1\t\"OK, so the FX are not high budget. But this story is based on actual events. Not something thrown together to make a couple of rich actors, even richer!! As most movies that are based on books, there are somethings that just don't fit. Only a couple of people have stated that this movie was based on real events, not a knock-off as most people believe it is!! This movie is in no way related too TWISTER! Other than both movies are about tornadoes.<br /><br />For those of you who have problems with the science of the tornadoes and storms in the movie, there are a couple of things you need to remember... The actual \"\"night of the twisters\"\" was June 3, 1980. So this movie was released 16 years after the actual events. Try think how far storm research has advanced in that time. It happened in a larger town; Grand Island, Nebraska is the third largest city in the state. Even though the movie calls the town something else, and says it's a small town. For the real story check out: http://www.gitwisters.com/\"\r\n1\t\"A nice Shirely Temple short. Child actors screaming their lines seemed to be the norm for that day and time. Perhaps being \"\"seen and not heard\"\" needed to be made up for. Aside from that this is fun. Given the films era there are certain aspects of the thing, from a social viewpoint, that strike me as both very progressive and liberal. I won't go into those here, I'd rather not spoil it for you but let you watch it for yourself and see if you spot those elements. As early on as it was its easy to see from this short the fascination that was already developing for Temple. That makes it worth watching if you're a Temple fan. For others its a cool way to kill ten minutes while you're waiting for your good night glass of milk to warm up on the stove.\"\r\n0\t\"So...we get so see added footage of Brando...interesting but not exactly Oscar worthy stuff. Susannah York was hardly a slouch. New scene where Lois finds out Clark is Superman is slightly unbelievable in that he doesn't notice that there are blanks coming out of the gun instead of real bullets. Real bullets would have penetrated his clothes and then bounced off him onto the floor but forget that...let's listen to Donner make fun of Lester's version that made more logical sense. The president talks of the Zod \"\"defacing\"\" the Washington monument when it was originally Mount Rushmore. Tweaking that scene made that line quite absurd. Superman's \"\"freedom of the press\"\" line sounded silly compared to \"\"..Care to step outside\"\" which was delivered better and had a fitting connection to Clark's earlier scene in the truck stop. Then there is the ending with the \"\"turn back the world to go back in time\"\" effect. It turned back everything in the whole movie and made you wonder where exactly the rocket aimed for Hackensack, N.J. ever went since it doesn't free Zod and company any more.\"\r\n1\tAlthough I agree that it's a good but not great movie, for many of the reasons other posters have mentioned, I still enjoy it. One reason is the music: I'd call attention to the very cool appearance by the Candoli brothers -- Conte and Pete -- in a well-staged scene in the nightclub. These guys were two of the best jazz trumpeters of their day, and they manage to convincingly boggle the mind of Jimmy Stewart by playing an hysterical trumpet duet, one trumpet in each of Stewart's ears. The Candolis really did play that well, too, though I suspect the actual music for that scene was dubbed later by the two of them. I don't know much about George Duning, who gets the credit for the music (other than that he seems to have worked with the Three Stooges on more than one occasion), but the casting of the Candoli brothers as jazz-playing warlocks was a real nice touch.\r\n1\tThis is one of my all time favorite movies and I would recommend it to anyone. On my list of favorite movies (mental list, mind) the only ones on par with it are movies such as The Lord of the Rings series, Spirited Away and Fly Away Home.<br /><br />I can really relate to the main character Jess. At the start of the movie she's a shy girl with a slightly odd background who has a lot more friends who are boys than that are girls. She really sucks you into her life. I also certainly can't fault any of the protagonist's acting, or anyone else's in the film.<br /><br />The soccer was interesting to watch even for someone like me who has no idea of the rules. The movie is never boring. The romance is really cute and didn't make me blush tooooo hard! One thing that really made it though was the Indian factor. Jess' parents are Indian and there are many colourful Indian conventions throughout the film providing a very interesting cultural insight as well as everything else. The Indian people are also hilarious! Essentially this is a coming of age film about choosing the path you want and fighting for it.<br /><br />Feel good comedies are becoming my favorite movie genre thanks to this film. They're funny, they're refreshing and they make you feel good! ^_~\r\n1\tOkay, this film is about Bedknobs and Broomsticks, it's one of the most charming, delightful movies you'll ever see as a kid. It's the unforgettable movie about two adults and two spunky kids on an adventure for fun. It may be a little deniable to watch, but try it, I neither my mother didn't think it was bad, I was very enthused with the movie and the animation, they were all quite good.<br /><br />It is a delightfully wondrous comedy for the whole family to enjoy; even the kids. Ages 7 years and up will enjoy this wonderful, musical comedy with you and your family especially the animation. The animation movements and layouts are really nice and deserve a thumbs up. It's a terrifically good musical for the whole family so what are you waiting for? Go to the video store and rent Bedknobs and Broomsticks NOW.\r\n0\tWell here I go with another B industry movie. It's sad enough to see some badly made films but I don't care if a B industry or C industry produces the film. Show some effort in your work. The characters are really bad. The acting isn't in question in this one (surprise), but plot is. How can a tight-knit squad witness two of their fellow soldiers butchered, and then go on as if nothing happened. What sickened me was how the writer even threw in the remaining members a scene where they joke about how nice the doctor's ass was. Give me a break.\r\n0\tThe DVD was a joke, the audio for the first few minutes was terrible with sound out of sync and Segals voice not even his!!!! Pathetic! When the audio sync was better in about 5 minutes the poor plot, lines and actors should get another job because the movie business is not where any of them should be.<br /><br />While Segal had some good movies in the early days the latest ones are a joke and should be a an embarrassment to him and the company that made it.<br /><br />If Segal was the one that handled this he better return to having another party run the show, because he has no talent what so ever in this.<br /><br />This film is a complete embarrassment to all involved in its production and a disgrace to all who viewed it. I turned it off in about 20 minutes.<br /><br />I will be asking for my money back at Block Buster! Mark from Ontario, Canada\r\n1\tIn this glorious telling of a weekend shared among literary greats. Mary and Percy Shelly,Lord Byron and others created a entrancing group. Showing their quests for sexual enlightenment. Personal freedoms from political to moral. Liberal drug use for both stimulations and as addiction. Their creative views of life and writing. Describing without boring the viewer how each writer seeks to find their muse. Along with the distractions and affections each share. With breathtaking scenery that does not detract but very much enhances the story. Well created characters from grim to loving then angry to peaceful. With some of the most lovely and scene enhancing costuming to be had.\r\n0\t\"Not totally off the wall in a good way, but just totally stupid. \"\"Killer Tongue\"\" is an uneasy mixture of sci-fi, horror, and supposed comedy. What this equates to is a mindless and totally incoherent film. There is very little dialog, mainly due to the fact that the script, if there was one, is complete \"\"pond scum\"\". I wouldn't even call it strange, more like just \"\"total nonsense\"\". This movie is certain to disappoint, and you have been warned. There is absolutely no reason to waste time on this, and if you do, the pungent smell will linger like rotten fish............................................................... MERK\"\r\n0\tForest of the Damned starts out as five young friends, brother & sister Emilio (Richard Cambridge) & Ally (Sophie Holland) along with Judd (Daniel Maclagan), Molly (Nicole Petty) & Andrew (David Hood), set off on a week long holiday 'in the middle of nowhere', their words not mine. Anyway, before they know it they're deep in a forest & Emilio clumsily runs over a woman (Frances Da Costa), along with a badly injured person to add to their problems the van they're travelling in won't start & they can't get any signals on their mobile phones. They need to find help quickly so Molly & Judd wander off in the hope of finding a house, as time goes by & darkness begins to fall it becomes clear that they are not alone & that there is something nasty lurking in the woods...<br /><br />This English production was written & directed by Johannes Roberts & having looked over several other comments & reviews both here on the IMDb & across the internet Forest of the Damned seems to divide opinion with some liking it & other's not, personally it didn't do much for at all. The script is credited on screen to Roberts but here on the IMDb it lists Joseph London with 'additional screenplay material' whatever that means, the film is your basic backwoods slasher type thing like The Texas Chainsaw Massacre (1974) with your basic stranded faceless teenage victims being bumped off but uses the interesting concept of fallen angels who roam the forest & kill people for reason that are never explained to any great deal of satisfaction. Then there's Stephen, played by the ever fantastic Tom Savini, who is never given any sort of justification for what he does. Is he there to get victims for the angels? If so why did he kill Andrew by bashing his head in? The story is very loose, it never felt like a proper film. The character's are poor, the dialogue not much better & the lack of any significant story makes it hard to get into it or care about anything that's going on. Having said that it moves along at a reasonable pace & there are a couple of decent scenes here.<br /><br />Director Johannes doesn't do anything special, it's not a particularly stylish or flash film to look at. There's a few decent horror scenes & the Tom Savini character is great whenever he's on screen (although why didn't he hear Judd breaking the door down with an axe while escaping with Molly?) & it's a shame when he gets killed off. There are a couple of decent gore scenes here, someone has their head bashed in, there's a decapitation, someone gets shotgun blasted, someone throat is bitten out, someones lips are bitten off & someone is ripped in half. There is also a fair amount of full frontal female nudity, not that it helps much.<br /><br />Technically Forest of the Damned is OK, it's reasonably well made but nothing overly special or eye-catching. This was shot in England & Wales & it's quite odd to see an English setting for a very American themed backwards horror. The acting is generally pretty poor save for Savini who deserves to be in better than this. Horror author Shaun Hutson has an embarrassing cameo at the end & proves he should stick to writing rather than acting.<br /><br />Forest of the Damned was a pretty poor horror film, it seems to have fans out there so maybe I'm missing something but it's not a film I have much fondness for. Apart from one or two decent moments there's not much here to recommend.\r\n0\t\"Joe Don Baker. He was great in \"\"Walking Tall\"\" and had a good bit-part in \"\"Goldeneye\"\", but here in \"\"Final Justice\"\" all hope is gone...the dark side has won. <br /><br />As with most of humanity, my main experience with this one was on MST3K, and what an experience it was! Mike and the robots dig their claws deep into Baker's ample flesh and skewer this flick completely. It's obvious they were just beginning with \"\"Mitchell\"\" on their anti-Joe Don kick and here lies their continuation on a theme.<br /><br />It makes for a funny experience, though: there are plenty of choice riffs. My favorites - \"\"John Rhys-Davies for sale\"\", \"\"It's 'Meatloaf: Texas Ranger'\"\", \"\"none of them are sponge-worthy\"\", \"\"Why was she wearing her prom dress to bed\"\", and my favorite - \"\"'Son of a...'? What? What was he the son of: son of a PREACHER MAN?\"\"<br /><br />By itself, \"\"Final Justice\"\" is, as Joe Don puts it in the movie, \"\"a big fat nada\"\". But here, it actually has some entertainment value. You get a chance, catch THIS version of \"\"Final Justice\"\".<br /><br />Two stars for \"\"Final Justice\"\". Ten for the MST3K version ONLY.<br /><br />Oh, and try not to visit Malta when Joe Don's in town.\"\r\n0\t\"It's been about 14 years since Sharon Stone awarded viewers a leg-crossing that twisted many people's minds. And now, God knows why, she's in the game again. \"\"Basic Instinct 2\"\" is the sequel to the smash-hit erotica \"\"Basic Instinct\"\" featuring a sexy Stone and a vulnerable Michael Douglas. However, fans of the original might not even get close to this one, since \"\"Instinct 2\"\" is painful film-making, as the mediocre director Michael Caton-Jones assassinates the legacy of the first film.<br /><br />The plot of the movie starts when a car explosion breaks in right at the beginning. Catherine Tramell (Sharon Stone, trying to look forcefully sexy) is a suspect and appears to be involved in the murder. A psychiatrist (a horrible David Morrisey) is appointed to examine her, but eventually falls for an intimate game of seduction.<br /><br />And there it is, without no further explanations, the basic force that moves this \"\"Instinct\"\". Nothing much is explained and we have to sit through a sleazy, C-class erotic film. Sharon Stone stars in her first role where she is most of the time a turn-off. Part of it because of the amateurish writing, the careless direction, and terrifyingly low chemistry. The movie is full of vulgar dialogues and even more sexuality (a menage a trois scene was cut off so that this wouldn't be rated NC-17) than the first entrance in the series. \"\"Instinct\"\" is a compelling torture.<br /><br />To top it off, everything that made the original film a guilty pleasure is not found anywhere in the film. The acting here is really bad. Sharon Stone has some highlights, but here, she gets extremely obnoxious. David Morrisey stars in the worst role of his life, and seems to never make more than two expressions in the movie- confused and aroused. \"\"Instinct 2\"\" is a horrible way to continue an otherwise original series, that managed to put in thriller with erotica extremely well. Paul Verhoeven, how I miss you....<br /><br />\"\"Basic Instinct 2\"\" never sounded like a good movie, and, indeed, it isn't. Some films should never get out of paper, and that is the feeling you get after watching this. Now, it is much easier to understand why Douglas and David Cronenberg dropped out, and why Sharon Stone was expecting a huge paycheck for this......-----3/10\"\r\n1\t\"Hilarious, evocative, confusing, brilliant film. Reminds me of Bunuel's L'Age D'Or or Jodorowsky's Holy Mountain-- lots of strange characters mucking about and looking for..... what is it? I laughed almost the whole way through, all the while keeping a peripheral eye on the bewildered and occasionally horrified reactions of the audience that surrounded me in the theatre. Entertaining through and through, from the beginning to the guts and poisoned entrails all the way to the end, if it was an end. I only wish i could remember every detail. It haunts me sometimes.<br /><br />Honestly, though, i have only the most positive recollections of this film. As it doesn't seem to be available to take home and watch, i suppose i'll have to wait a few more years until Crispin Glover comes my way again with his Big Slide Show (and subsequent \"\"What is it?\"\" screening)... I saw this film in Atlanta almost directly after being involved in a rather devastating car crash, so i was slightly dazed at the time, which was perhaps a very good state of mind to watch the prophetic talking arthropods and the retards in the superhero costumes and godlike Glover in his appropriate burly-Q setting, scantily clad girlies rising out of the floor like a magnificent DADAist wet dream.<br /><br />Is it a statement on Life As We Know It? Of course everyone EXPECTS art to be just that. I rather think that the truth is more evident in the absences and in the negative space. What you don't tell us is what we must deduce, but is far more valid than the lies that other people feed us day in and day out. Rather one \"\"WHAT IS IT?\"\" than 5000 movies like \"\"Titanic\"\" or \"\"Sleepless in Seattle\"\" (shudder, gag, groan).<br /><br />Thank you, Mr. Glover (additionally a fun man to watch on screen or at his Big Slide Show-- smart, funny, quirky, and outrageously hot). Make more films, write more books, keep the nightmare alive.\"\r\n0\tThis is not the video nastie, but only because it came out in 1994 when they were presumably tired of the whole thing in Britain. It is 75% a rehash of The Boogeyman, and would have been banned for the same reason - whatever that was.<br /><br />I was initially confused as I thought that Annie (Kelly Galindo) may have been a different Lacey, but she was someone trouble by psychic visions of a boogeyman similar to the one in the first film. Fans will immediately note that they are not the same person.<br /><br />After seeing a murder in a bathroom, and also seeing the address as well, Annie, her psychiatrist and a para psychology student who greatly resembles the guy on the cheap romance novels and butter commercials, head to the house, and, sure enough, it's the same bathroom. 24 hours later a murder happens just as she described. Of course, we have no idea who this boobilicious woman is or why she was murdered.<br /><br />Then the movie shift to a rerunning of The Boogeyman story with some extra footage that we did not see in the original. Notably, the boogeyman is shown unlike the original. Sadly, some of the good scenes were cut, but 90% of it is there. Why rerun this film? Did they find the footage in the trash? What was the purpose? <br /><br />We'll never know and, despite the psychologist telling Annie she is cured, we all know the bogeyman will never die.\r\n0\tJim Carrey is one of the funniest and most gifted comedians in film today. With his hyperactive spontaneity and his rubber face he can just go crazy, and we love him for it. He has the ability to make mediocre comedies (ala Ace Ventura), and turn them into decent comedic outings. Or, in the case of 'Liar Liar', make them some of the most hilarious contemporary comedies around. Carrey has also proven himself capable of tackling dramas. He was excellent in both 'Man on the Moon' and 'The Truman Show.' The guy is remarkable.<br /><br />Then comes 'Bruce Almighty,' an ideal vehicle for Carrey, and a premise that should have worked; Carrey, after complaining about God and how his life stinks, is enabled with God's powers. However, the script is pure recycled garbage. Now, no matter how bad a script is, Carrey's improvisation alone sometimes makes an unfunny scene funny. The problem is that there are very few opportunities for Carrey to be unleashed because so much of the comedy relies on silly special effects, only some of which are amusing. Carrey is rarely able to improvise because he has to work around the special effects. The writers apparently thought that all these special effects and superpower sequences were funny, because the rest of the movie is simply filler giving Carrey nothing else to work with besides a whiny character who is absolutely humorless. He seems more like a 5-year yearning for our attention, wanting the viewer to find what he is doing funny, when it's really just annoying.<br /><br />I have always enjoyed Jennifer Aniston on 'Friends' and she was superb in last year's 'The Good Girl.' She too has a gift for comedy, but with the script as linear as it is, she is simply given the part of the bitter girlfriend. She comes across as nagging, grumpy, and there is no chemistry between the two stars.<br /><br />'Bruce Almighty' should have been a comedy that works. But it doesn't even have the guts to tackle the subject matter that it's making fun of; religion. A few minor giggles (his internet is Yehweh), but instead it's just turned into a comedic superpower comedy. Not to mention that it's tone shifts from silly to heavy-handed, and even black comedy at times. The movie fails on nearly every level. That's not to see it is entirely devoid of laughs, but it's close. Any movie that feels the need to incorporate scenes of a dog peeing to get it's laughs has problems. But hey, if you find pee jokes funny, go for it.<br /><br />\r\n0\t\"If John Waters had written and directed \"\"House of 1000 Corpses\"\" after being struck about the head repeatedly with a heavy object, the result would probably be something like \"\"The Blood Shed.\"\" It's mildly entertaining for the first half hour, but then it slides into a sort of featureless glop of constant screaming and people doing things to each others genitalia with electric carving knives, cutlery and pliers. Susan Adriensen (Sno Cakes) is incredibly annoying and Terry West (Elvis Bullion) is almost as bad in whatever it is he's doing in front of the camera.<br /><br />Maybe the best thing about \"\"The Blood Shed\"\" is that it won't take most viewers very long to forget about it.\"\r\n0\tThe Soloist has all ingredients to impress the Academy. Its director, Joe Wright, has already authored a best picture candidate. The leading actor, Robert Downey Jr., starred in a widely praised superhero film. Finally, the movie itself is a drama. When it was mysteriously pulled from release in late 2008, filmgoers and critics were baffled. Now that I've seen it, I assure you Universal didn't just delay this film to promote Iron Man-Oscar buzz. The Soloist is a weak drama with no external conflict that is vastly inferior to any 2009 best picture candidates.<br /><br />Downey and co-star Jamie Fox aren't to be blamed for this mishap. Joe Wright is largely at fault but even he can't save a Lifetime story. Many movies are too complex and alienate viewers. This one is unusually simple. It's a movie about a newspaper reporter, Steve Lopez (Downey), who befriends a homeless musician, Nathaniel Ayers (Jamie Fox). That's it. Ayers is schizophrenic and doesn't resonate with Lopez's traditional approach to friendship. The two become friends. They begin this movie as acquaintances and are BFFs by its end. Tension consists of moments like this: will Ayers let Lopez take him to the homeless shelter? This material would have been better suited as a made-for-TV production rather than a feature film.<br /><br />Wright includes many scenes of cheap humor to obscure the lack of content. Lopez battles yard-defiling raccoons in what I consider a sub-plot. Do you remember when this happened in Atonement or Pride and Prejudice? Those films were structured enough to permit an occasional joke but nothing so prolonged. Ayers' back story is fleshed out when it doesn't need to be. Worst of all, these scenes are not connected and appear at random intervals. It's a way of admitting that the main story carries little appeal. Nathaniel was a violin prodigy with a tough upbringing (I was too). This is a fabricated attempt to create sympathy with Ayers when most of us already have it. He's a homeless schizophrenic for crying out loud! The movie somewhat conveys humanity's love for music, like Amadeus and Beethoven Lives Upstairs. It isn't as effective as either of those pictures, however. The entire film is hinged on Ayers' schizophrenia. It ultimately is how he interacts with everyone else. His being a musician is a nice touch but hardly worth including. The film doesn't incorporate this characteristic fully into his persona. Take music out of Amadeus or Beethoven Lives Upstairs, and no film remains. The Soloist is more about friendship in general than music. Nathaniel could be a writer or film critic and few lines of dialog would need to be seriously altered.<br /><br />This is only Joe Wright's third film, and his first that isn't a romance staring Keira Knightley. Let's hope this film isn't an indication of how limited his abilities are. There are stylistic nods to his earlier works but The Soloist is much weaker than either of them. In his defense, Universal should not have agreed to widely release this picture. This film seems tailored for Imagine Entertainment (distributors of Changeling). I wouldn't be so disappointed with it if had a limited release. Its poor box office performance may inhibit better dramas from being distributed nationally.\r\n1\t\"I really enjoyed this movie as a young kid. At that age I thought that the silly baseball antics were funny and that the movie was \"\"cool\"\" because of it's about sports. Now, several years later, I can look back and see what a well designed movie this was. This movie opened my eyes as a small child to the struggles other children dealt with and real world issues. That kind of exposure is largely lacking in kids movies these days which I don't think is to our society's benefit. Sure the baseball antics seem really dumb now, but they drew kids in. No seven year old is going to ask to see a movie about foster children, but they will ask to see a movie about baseball. Disney realized this fact and took advantage of it to teach these children an important lesson about the world.<br /><br />As a young adult the performance of Al and the other angels seems far less impressive, however I will give credit to the actors playing both children and Danny Glover who all did a fantastic job.\"\r\n0\t\"\"\"Algie, the Miner\"\" is one bad and unfunny silent comedy. The timing of the slapstick is completely off. This is the kind of humor with certain sequences that make you wonder if they're supposed to be funny or not. However, the actual quality of the film is irrelevant. This is mandatory viewing for film buffs mainly because its one of the earliest examples of gay cinema. The main character of Algie is an effeminate guy, acting much like the stereotypical \"\"pansy\"\" common in many early films. The film has the homophobic attitude common of the time. \"\"Algie, the Miner\"\" is pretty awful, but fascinating from a historical viewpoint. (3/10)\"\r\n1\t\"In Cinema Retro magazine #2,it is revealed that Mark Lester's voice was actually dubbed by a 20 year old female, Kathe Green. Although Leste was considered perfect for the title role, director Carol Reed was not at all pleased with his singing abilities. The secret was revealed by on a 2004 UK documentary titled \"\"Oliver! After They Were Famous\"\". Greene was paid 400 pounds for her work and she had to agree to keep her participation secret, as did Mark Lester. They kept their word and only revealed this fact as part of the TV show decades after release of the film. For the record, Mark Lester retired from acting and is a practicing osteopath in England.\"\r\n1\tI laughed so hard during this movie my face hurt. Ben Affleck was hilarious and reminded me of a pretty boy Jack Black in this role. Gandolfini gives his typical A performance. The entire cast is funny, the story pretty good and the comic moments awesome. I went into this movie not expecting much so perhaps that is why I was so surprised to come out of the flick thoroughly pleased and facially exhausted. I would recommend this movie to anyone who enjoys comedy, can identify with loneliness during the holidays and/or putting up with the relatives. The best part to this film (to me anyway) were the subtle bits of humor that caught me completely off guard and had me laughing long after the rest of the audience had stopped. Namely, the scene involving the lighting of the Christmas tree. Go see it and have a good laugh!\r\n1\t\"Robert Altman shouldn't make a movie like this, but the fact that he did- and that it turns out to be a reasonably good and tightly-wound thriller in that paperback-tradition of Grisham thrillers- shows a versatility that is commendable. In the Gingerbread Man he actually has to work with something that, unfortunately, he isn't always very successful at, or at least it's not the first thing on his checklist as director: plot. There's one of those big, juicy almost pot-boiler plots where a sleazy lawyer gets caught up with a desperate low-class woman and then a nefarious figure whom the woman is related with enters their lives in the most staggering ways, twists and plot ensues, yada yada. And it's surprising that Altman would really want to take on one of these \"\"I saw that coming from back there!\"\" endings, or just a such a semi-conventional thriller.<br /><br />But it's a surprise that pays off because, oddly enough, Altman is able to catch some of that very fine behavior, or rather is able to unintentionally coax it out of a very well-cast ensemble, of a small-town Georgian environment. The film drips with atmosphere (if not total superlative craftsmanship, sometimes it's good and sometimes just decent for Altman), as Savannah is possibly going to be hit by a big hurricane and the swamp and marshes and rain keep things soaked and muggy and humid. So the atmosphere is really potent, but so are performances from (sometimes) hysterical Kenneth Branaugh, Embeth Davitz as the 'woman' who lawyer Branaugh gets caught up with, and Robert Downey Jr (when is he *not* good?) as the private detective in Branaugh's employ. Did I neglect Robert Duvall, who in just five minutes of screen time makes such an indelible impression to hang the bad-vibes of the picture on? <br /><br />As said, some of the plot is a little weak, or just kind of standard (lawyer is divorced, bitter custody battle looms, innocent and goofy kids), but at the same time I think Altman saw something captivating in the material, something darker than some of the other Grisham works that has this standing out somehow. If it's not entirely masterful, it still works on its limited terms as a what-will-happen-next mystery-Southern-noir.\"\r\n1\t\"A prison cell.Four prisoners-Carrere,a young company director accused of fraud,35 year old transsexual in the process of his transformation, Daisy,a 20 year-old mentally challenged idiot savant and Lassalle,a 60 year-old intellectual who murdered his wife.Behind a stone slab in the cell,mysteriously pulled loose,they discovered a book:the diary of a former prisoner,Danvers,who occupied the cell at the beginning of the century.The diary contains magic formulas that supposedly enable prisoners to escape.\"\"Malefique\"\" is one of the creepiest and most intelligent horror films I have seen this year.The film has a grimy,shadowy feel influenced by the works of H.P. Lovecraft,which makes for a very creepy and unsettling atmosphere.There is a fair amount of gore involved with some imaginative and brutal death scenes and the characters of four prisoners are surprisingly well-developed.It's a shame that Eric Valette made truly horrible remake of \"\"One Missed Call\"\" after his stunning debut.9 out of 10.\"\r\n0\t\"Where oh where to begin in describing the comprehensive wretchedness of Neil LaBute's latest attempt at film making? <br /><br />There are many kinds of film fans out there, but by far the most annoying and shallow is Mr. Intriguing. You know Mr. Intriguing, don't you? <br /><br />He's the fellow that no matter how stupid, lame, and incomprehensibly dull a film is, he says \"\"Gee, I don't know why everyone hated it, I found it intriguing.\"\" He's the kind of guy who finds the scent of dog poop intriguing. Especially when he smears it in the shape of a Hitler mustache on his upper lip and marches about the house ranting about the brilliance of science fiction that features thinly veiled references to Greek mythology. He's also the guy this version of The Wicker Man was made for. No one else could stand it.\"\r\n1\tthis film needs to be seen. the truest picture of what is going on in the world that I've seen since Darwin's Nightmare. Go see it! and If you're lucky enough to have it open in your city, be sure to see it on the big screen instead of DVD. The writing is sharp and the direction is good enough for the ideas to come through, though hardly perfect. Joan Cusack is amazing, and the rest of the cast is good too. It's inspiring that John Cusack got this movie made, and, I believe, he had to use some of his own money to do it. It's a wild, absurd ride, obviously made without the resources it needed, but still succeeds. Jon Stewart, Steven Colbert, SNL, even Bill Maher haven't shown the guts to say what this film says.\r\n1\tI've always enjoyed seeing Chuck Norris in film. Although the acting may not be superb, the fight scenes are fantastic. I also enjoyed seeing Judson Mills perform along side him. In my opinion, the Norris Brothers have proven themselves to be fine entertainers and this was yet another fine production! I hope you take the time to view this movie!\r\n1\t\"Gordon Parks, the prolific black Life magazine photographer, made a true ticking-timebomb of a movie here - one that does not mess around! Based upon the true story of two NYC cops - later dubbed Batman and Robin - who singlehandedly employed radical tactics to clean up their precinct neighborhood of drugs, this is a cop-buddy movie before that term became a repetitive formula. Lightning paced, there is not one unimportant throwaway scene here.<br /><br />Man, early '70s NYC must have been a terrible place to be a police officer, from the looks of movies like this and \"\"Serpico.\"\" These two cops start out as safety-division rookies, busting dealers in plainclothes in their spare time. But instead of receiving applause from the city police department, they receive nothing but resistance and antagonism from their peers. They have to singlehandedly navigate a minefield of police and legal corruption, boneheaded assignments meant to keep them from their work on the streets, ruthless drug kingpins, and a nasty ghetto neighborhood.<br /><br />Both David Selby and Ron Leibman are fantastic in the leads; part of the entertainment is watching Leibman's eyes darting around crazily in every scene in what is a flawless comic performance, and Selby's acting is low-key and wry. These two make all the comedy aspects of the story work - displaying a palpable frustration mixed with gutsy determination. Director Parks, who was already known for his coverage of controversial subjects in his photography, does not shy away from the grittiness of the story. Rather, the movie is uncompromising in portrayal of the toughness of the world of police and streets criminals that these two men inhabit. Adding to this realism is the fact that the real Hantz and Greenberg acted as technical advisors for the film, and even appear in surreal cameo roles as two fellow officers who ridicule the protagonists. It is a real tribute to the effectiveness of Parks' direction that he manages to perfectly balance this depressing mileu with bright comedy.<br /><br />Why has MGM/UA let this sit on the shelf for 30 years - barely giving it a home video or DVD release in the U.S? It is a minor masterpiece from the 1970s.\"\r\n0\t\"Nicole Eggert was listed as the star of this, despite Micheal Dorn & Stacey Keach being much bigger stars than her.<br /><br />Basically this is a bit of a spin on the \"\"Alien lands on Earth\"\" film. Eggert plays the girl who feels sorry for an Alien being chased by the military and takes in the runaway creature in her very sexy disguise. A bit of nudity and partial nudity, a pointless sex scene all feature along the way.<br /><br />The film stumbles through a few obvious set-pieces and running jokes about being shown photographs. I quite liked the Star Trek jokes when Micheal Dorn had been taken over and he got a really cool death scene.<br /><br />It was fairly obvious that Stacey Keach was going to be taken over and the film had quite a weak ending, it would have been nice to show exactly what kind of talent the Alien passed to Eggert.\"\r\n0\tAnd how it made it into production astounds me. The main character is an obnoxious show off who isn't the least bit funny. I can't stand the character at all. He's a dumb ass with nothing to offer the show. <br /><br />This is the worst cartoon to surface in the last 10 years, no joke. The story lines are both poorly written and executed. The jokes are as bad as the ones on Disney's Sweet Life of Zack and Cody. I could not dislike this show more, it's terrible and should be canceled. Even the theme song is bad. The title, even worse.<br /><br />It's as though this show is written by a couple of 15 year olds that based the character on themselves and think they're hot stuff when they're really just arrogant and lack creativity as well as humor.<br /><br />Johnny Test, go away far and fast!\r\n1\tEddie Murphy plays Chandler Jarrell, a man who devotes his time to finding lost children. When the beautiful Kee Nang {Charlotte Lewis} enters his life, she tells him he is the chosen one and he must find the Golden Child. Sceptical and driven purely by lust and intrigue, Jarrell gets involved without realising he's about to embark on a fantastical journey, one that involves peril and worst of all, the demon Sardo Numspa.<br /><br />Is The Golden Child a product of its time?, by that i mean, was Eddie Murphy and The Golden Child's popularity exclusive to the late 1980s audiences?. For i can remember vividly how much this film entertained folk back in that decade, it's box office was $79,817,937, making it the 8th biggest earner of 1986, but since the 80s faded from memory it has become the in thing to deny Eddie Murphy pictures the comedy accolades that they actually once had. The Golden Child is not up with the more accepted 80s Murphy pictures like Trading Places and Beverly Hills Cop, but upon revisiting the film recently i personally find that it contains Murphy at his wisecracking, quipping and charming best!, seriously!.<br /><br />Cashing in on a fantasy action formula that was reinvigorated and temp-lated by Raiders Of The Lost Ark in 1981, The Golden Child hits all the required genre buttons. Pretty girl, daring reluctant-hero with a quip in his armoury, dashing villain {Charles Dance so English i could kiss him myself}, wonderful colour, and a cute kid with mystical powers, the film only asks you to get involved in the fun, not to dissect and digress its worth as a cranial fantasy picture. Yes the CGI demon looks creaky now, and yes the genre had far better pictures in the 80s, 90s and beyond, but really if you agree with the disgraceful rating of 5 here on this site then you may just be taking this genre a little too serious, seriously. 7/10\r\n0\tIt is true that some fans of Peter Sellers work may be disappointed with this, his last venture. But surely any fan of Sellers will find delight in all of his films, simply because of the man's huge talent. and The Fiendish Plot of Dr. Fu Manchu is certainly no exception. Unfortunately this would prove to be Sellers last film, (it was even released after his death), but it's still nice to see how the man had managed to keep his irreplaceable talent right until his untimely demise. And not only do we get one Sellers, but we get to, for Sellers plays not only the title role but also his nemesis, the equally bizarre Nayland Smith, the detective on the hunt for the crazed 168 year old Fu. The story is equally outlandish as we follow Fu's outrageous antics to make his age-defying elixir and also Nayland and his group of associates trying to prevent him. Just like any of Sellers greater films, the film comes with a guaranteed impeccable performance from him, as well as many of his familiar-faced co-stars - David Tomlinson, Sid Caesar, John Le Mesurier, Clive Dunn and Helen Mirren to name a few. It's also nice to see Pink Panther stalwart Burt Kwouk (Cato) enjoying a cameo with Sellers - albeit playing the same role, but still nice. The story is indeed pretty ridiculous, as are many of the characters involved, which classes this as a film strongly under the Goon influence. And, although it never reaches the heights of Goon comedy, there are plenty of amusing jokes that seem to point in the right direction. The film failed commercially on it's initial release due to the entire world mourning after Sellers' death (the film was released less than 3 weeks after)and there is always that sorrowful thought lurking in the back of your mind when viewing it that this was Sellers last film. It's far from a great film - it's often slow, too ridiculous, and sometimes the jokes simply aren't there - but it is nevertheless enjoyable - if only for another top rate performance from Peter Sellers.\r\n0\tThere is a lot to like here. The actors are first rate and the script provides good dialog best capturing the ambiance of a tightly knit, likable family. However, for that reason the film does not ring true. We see Leo, who apparently just learned of his HIV positive diagnosis, essentially react in a way that is not in tune to the supportive atmosphere for which he finds himself. As well, the film ends somewhat abruptly avoiding what Leo, his brother and the rest of this close family must have dealt with in light of their love for him. The young actor who plays Leo's brother, Marcel, is impressive as generally is the rest of the cast. Unfortunately, the scriptwriters could not decide onwhether they wanted an insightful dissertation on the effects of HIV on a functional, appealing family or what the devastation HIV is on the victim - so it only hints at both. While this film provides food for thought it leaves the viewer wanting much more than it delivers.\r\n0\tThis film tried to be too many things all at once: stinging political satire, Hollywood blockbuster, sappy romantic comedy, family values promo... the list goes on and on. It failed miserably at all of them, but there was enough interest to keep me from turning it off until the end.<br /><br />Although I appreciate the spirit behind WAR, INC., it depresses me to see such a clumsy effort, especially when it will be taken by its targets to reflect the lack of the existence of a serious critique, rather than simply the poor writing, direction, and production of this particular film.<br /><br />There is a critique to be made about the corporatization of war. But poking fun at it in this way diminishes the true atrocity of what is happening. Reminds me a bit of THREE KINGS, which similarly trivializes a genuine cause for concern.\r\n0\tThis game has the(dis)honor of being the first game that I have stopped playing right in the middle of and felt like smashing into bits and then burning. Congratulations. FIRST and LAST Tomb Raider I will ever play I assure you.<br /><br />Plot: Just typing that word made me laugh. There isn't one. Neither is there character development. We finally have a girl heroine who can take care of herself,who isn't a *beeping*mary-sue,but unfortunately she dresses like a slut and her breast are huge. They had to attract the sexist boy gamers you see. Anyway all she does is go in tomb after tomb shooting things as she goes along. Why she does this I have no idea. I had subtitles on and the t.v. as loud as I could and I still didn't understand a damn thing. The development(or lack there of) for her, her two friends and the*villains*were laughable. There also will be levels that you have to go through that do-not give you any hint on what you have to do next and you literally will be in most of the boring as hell tombs for HOURS trying to figure out what the hell you are supposed to be doing. There is one course(out of two) in particular with her on a motorbike(Believe me it is not at all fun)that you will be on for ATLEASE an HOUR with NO save point in sight. That means you get hit by the other motorist and guys in vans shooting at you or you hit a tree you start the hour long trek OVER.<br /><br />Boss Stupid F*ck: You know lets makes the levels very long, have basically no save points, have no story, no character development, give no variety in game play, have most of the music on the longest levels ear-bleeding,and give no hints whatsoever to the player so they can stay even longer in a place instead of getting to the nonexistent plot.<br /><br />Stupid F*ck one: Those sound like bang up ideas.<br /><br />Stupid F*ck two: I concur. Who needs character development ,plot, or unboring game-play.<br /><br />Todd: I'm sorry sir,but these ideas seem like they will extremely p*ss the player off.<br /><br />Boss Stupid F*ck: Shut up Todd. You're fired.<br /><br />Game-play: All she does is shoot. Of course she can flip while SHOOTING, jump while SHOOTING, or kick while again SHOOTING.But flipping, jumping, and kicking does not erase the fact that all she is ultimately doing is SHOOTING. BORING!!!!!!!!!!!!!!!!!!!!! Music: The intro music is extremely beautiful. I love listening to it. The in game music goes from tolerable to wanting to cut your ears off.<br /><br />Visuals:Considering this game was made in 2006, I was expecting the visuals to blow me away.Well I was blown,but definitely not in a good way.<br /><br />Bottom-line: This game is a plot-less, no character development mess with a barely dressed unmarysuish(THANKFULLY)young women in the lead that goes through boring tombs for some boring reason(what that might be I couldn't tell you)with unimaginative shooting gameplay. STAY FAR AWAY FROM THIS B.S.!!!!!!!!It's gets two stars for having a women who isn't a damsel in distress(No matter how scantily clad she might be) and the beautiful into music.\r\n0\t\"Gods...where to start. I was only able to stomach about the first 10 minutes before I turned it off in disgust. Aside from the actor playing Robin Hood himself, the rest were just terrible. And, I can only stretch my suspension of disbelief only so far.<br /><br />From the very opening of the first episode, I lost count of how many errors, plot holes, and horrible costumes there were. It began with some poor peasant trying to hunt for a deer to feed his family. All well and good. However, the poor blighter must have been mostly deaf, because a handful of soldiers, in full armour, on horseback, were able to sneak up on him to within about 10 feet.<br /><br />Then, as he's running away, he goes from having them 10 feet behind him, to a shot where you cannot even see them at all, immediately followed by them about 20 feet behind him again. Then, he runs into some bushes, and is immediately manhandled by two of the soldiers...who just mere seconds before, were galloping on horseback, dozens of feet behind him.<br /><br />The \"\"armour\"\" on the soldiers is so painfully obviously cloth which they tried to make look like maille, and miserably failed. Not to mention, the lead soldier's \"\"armour\"\" being about 5 sizes too big for the poor fellow. Seriously, he looks like he is a small child wearing his father's over-sized armour! Finally, Robin manages to fire about 5, perfectly aimed shots all around one soldier's hand, in the span of about 2 seconds, from what appears to be a recurve bow. No human alive could make those kinds of shots, in that short amount of time, with a scoped rifle, much less a bow.<br /><br />After that, they escape the soldiers and stop to help an amazingly well dressed and clean \"\"peasant\"\" with digging a ditch...something that all noblemen were willing to do all the time, right? How this sorry excuse for a series ever got a second season is beyond me. The production costs (at least for what I saw) must have soared in the dozens of dollars (or Euros)...<br /><br />Seriously - I think a highschool drama class could have put on a better rendition. This was so bad, even that terrible Kevin Costner version of Robin Hood was better.<br /><br />I highly suggest you skip this monstrosity, and go rent or buy the mid-80's \"\"Robin of Sherwood\"\" series. Much better written, acted, costumed, and produced.<br /><br />For shame, BBC...for shame...\"\r\n0\t\"There's no getting around it-- this movie is terrible. I've seen the old Christopher Lee/Fu Manchu movies, I'm familiar with the characters and it's serial origins, but it's still just godawful. However, Peter Sellers' genius still shines through with his portrayal of Nayland Smith, with echoes of sadness, tragedy, and strength simmering through a stoic facade; it's a performance I place on par with Peter Cushing's portrayal of Van Helsing but done in a tenth of the cumulative screen time of all Cushing's \"\"Dracula\"\" movies. If the movie was done in a more serio-comic vein like BUBBA HO-TEP by way of the 1960's AVENGERS TV show, this could've been something special. If you're a Fu Manchu or Peter Sellers completest, this is something you need to see, but it's a pass for anyone else.\"\r\n1\t\"Have you ever, or do you have, a pet who's been with you through thick and thin, who you'd be lost without, and who you love no matter what? Betcha never thought they feel the same way about you!<br /><br />Wonderful, wonderful family film. If you have a soft spot for animals, this is guaranteed to make you cry no matter your age. I used to watch this movie all the time when I was a little kid, and I find that now, at age sixteen, I love it as much as I did then. I could never decide on a favorite character then, and I still don't think I can! I love all three of the animals. The dialogue seems very real and comfortable, like a loving, but feuding family. I do love Chance, and how at the end he says that he has a family at last. Cheesy, yes, but one must remember that this is meant to be a family film, and it fulfills that role perfectly. Sassy has just the perfect dose of \"\"sassiness\"\" and Shadow is the perfect leader/role model to the young, adventurous Chance.<br /><br />The animals way outshine the humans, but of course most of the teary moments are to be had during an interaction with them (ie. rescuing Molly, and the end). Not to mention the incredible soundtrack that gives each moment even more emotion, and an accompanying heart-swelling feeling. I give this 9/10. To be compared to (and even rated better than) Cats and Dogs and Babe.\"\r\n0\tThey're showing this on some off-network. It's well crap. While it is not as bad as the B-movies they show on the Sci-fi network on Saturdays but still a fairly large pile of crap. The acting is passable. The plot and writing are fairly sub-standard and the pacing is entirely too slow. Every minute of the movie feels like the part of the movie where they're wrapping things up before the credits - not the peak of the movie, the denouement. Also, large portions of the cast look way to old for the age range they're playing. The whole thing is predictable, boring and not worthy of being watched. Save your time. It's not even worth the time it takes to watch it for free.\r\n1\t\"This was great. When I saw the Japanese version first, it was probably the scariest movie I had ever seen. It was not blood and guts, it was eerie, atmospheric and terrifying. When the mother ghost lent over the bed in the Japanese version, I nearly had a heart attack... I was concerned that the American version would be watered down, and that Buffy would take away from the dark creepy nuances of the original version. I needn't have been concerned. The makers of this movie wisely kept the same Japanese people who were involved with the original movie on hand, and gave the direction of the movie to the same man. They also set it in Japan in the same location, in the same house. In fact, the Japanese director took pains to remake the same movie as it was in the original, the only difference was the casting of American actors. That actually turned into a benefit as it added the element of \"\"Strangers in a Strange Land\"\" to the overall horror. Not only were they being haunted by an absolutely terrifying and relentless ghost, but they were also stuck in a completely foreign land, having difficulty integrating into society. It just added to the overall anxiety built into the movie and I thought it was an excellent touch.<br /><br />Buffy actually does a very good job. She looks vulnerable and is able to convey her fear well. There are none of the smart aleck remarks that are so common to American horror movies, or one liners that detract from the overall darkness and horror of the characters' situation. In fact, it was easily as good as The Ring which I also thoroughly enjoyed. I hope the future of American horror follows more closely the Japanese New Wave of horror started with the incredible success of Ringu. We are finally getting movies that actually can be categorized as \"\"Horror\"\"!! 8/10\"\r\n1\tWhen I started to watch this movie on VH-1 I cringed. The MTV movies were all bad so I wasnt expecting much. But this movie was really good. I liked it a lot. And it even had a twist at the end. See this movie because it shows that Made For TV movies that are good exist.\r\n1\tThis move actually had me jumping out of my chair in anticipation of what the actors were going to do! The acting was the best, Farrah should have gotten a Oscar for this she was fabulous. James Russo was so good I hated him he was the villain and played it wonderful. There aren't many movies that have riveted me as this one. The cast was great Alfie looking shocked with those big eyes Farrah looking like a victim and you re-lived her horror as she went through it. Farrah made you feel like you were there and feeling the same anger she felt you wanted her to hurt him, yet you also knew it was the wrong thing to do. The movie had you on a roller coaster ride and you went up and down with each scene.\r\n0\tYou already know how painful to watch this movie is. But I wonder why one of the worst movies ever should include one the most beautiful cars. Why the cars should be not only the victim of violation, but also the only true actors and performers in it. So how on Earth you Porsche, Lamborghini or whatever could allow those people to get in touch with your cars and ruin you reputation for which you give millions.Stop the getting an advantage of the cars and earn money on their chests. It is painful for those who love cars. It is painful for those who love movies.<br /><br />I want my money back !!!\r\n0\tI was very skeptical about sacrificing my precious time to watch this film. I didn't enjoy the first one at all, and the last Jean Claude Van Damme film I liked was Blood Sports! After managing to sit through it all? Avoid, avoid, avoid!!\r\n1\t\"This familiar story of an older man/younger woman is surprisingly hard-edged. Bikers, hippies, free love and jail bait mix surprisingly well in this forgotten black-and-white indie effort. Lead actress Patricia Wymer, as the titular \"\"Candy,\"\" gives the finest performance of her career (spanning all of 3 drive-in epics). Wymer was precocious and fetching in THE YOUNG GRADUATES (1971), but gives a more serious performance in THE BABYSITTER. The occasional violence and periodic nudity are somewhat surprising, but well-handled by the director. Leads Wymer and George E. Carey sell the May/December romance believably. There are enough similarities between THE BABYSITTER and THE YOUNG GRADUATES to make one wonder if the same director helmed the latter film as well. Patricia Wymer, where are you?<br /><br />Hailing from Seattle, WA, Miss Wymer had appeared as a dancer on the TV rock and roll show MALIBU U, before gracing the cover (as well as appearing in an eight-page spread) of the August, 1968 issue of \"\"Best For Men,\"\" a tasteful adults-only magazine. She also appeared as a coven witch in the popular 1969 cult drive-in shocker THE WITCHMAKER.<br /><br />THE BABYSITTER has finally made its home video debut, as part of the eight-film BCI box set DRIVE-IN CULT CLASSICS vol. 3, which is available from Amazon.com and some retail stores such as Best Buy.\"\r\n0\tNot very impressed. Its difficult to offer any spoilers to this film, because there is almost no development in the plot. Everything becomes clear in the first ten minutes and from there on its like watching paint dry. The acting seems very poor as well, and reminds me of the old black and white Maoist era films shown occasionally on daytime Chinese television. Although this is difficult to tell with the female role, Yuwen, as the story seems to only require her walking round like a wooden mannequin. It reminds me of fading star Gong Li who somehow got a reputation as a good actress in the West for having a scowl on her face all the time. <br /><br />Tian Zhuangzhuang's film the 'Blue Kite' was a far better film. But don't be fooled by the fact that Springtime in a Small Town was set in the late '40s. Unlike the Blue Kite, the fact that this film is set in a time of upheaval is irrelevant to the plot itself, the ruins of the town seem to be nothing more than a scenic backdrop.<br /><br />I wonder whether Tian Zhuangzhuang is simply trying to ride on the popularity of Chinese films in the West and appeal to a foreign audience who can't tell the difference between a film that is 'beautiful' 'profound' or 'hypnotic' and one that is simply tedious and insubstantial.<br /><br />If any film fits the description of 'overrated,' this is it. I see no reason here to stop worrying about the state of the Chinese film industry.\r\n0\t\"AKA: Mondays In The Sun<br /><br />I have no idea what I just watched. Three men wander aimlessly and drink, grousing about everything and at everyone in their path. This is supposed to be a drama, but what it is, is a total waste of film, without a single redeeming quality.<br /><br />I have read reviews touting the performances herein as \"\"wonderful,\"\" \"\"beautiful,\"\" and \"\"heroic.\"\" I'm afraid I cannot agree, unless these men were supposed to come off as the dumbest most ignorant proto-humans who ever walked.<br /><br />All in all? This was not a movie. It wanders throughout and loses everyone but the audience. I've watched this three times, and cannot for the life of me see what anyone sees in this garbage. There is nothing profound here, whatsoever. It's crap.<br /><br />It rates a ZERO/10 from...<br /><br />the Fiend :.\"\r\n0\tAlright normally i am not as harsh on sequels especially if the first film is done well and was ultimately a good movie. As for 1999 i feel that one of the top five films was Cruel Intentions. It had everything a great movie should have except for an original story, being adapted from a novel it was still damn good. On to Cruel Intentions 2 which was supposed to actually just be the opener for a series based on the film called manchester prep. Which must not have happened. Actually after seeing this trifle of a film i can understand. Before the thing started i was like at least the writer and director Roger Kumble did this one also. Well 1 minute into this movie i was disappointed. It starts off with a rehash of the opening of the original with a different twist sebastian instead of putting the shrinks daughter's naked picture on the net he puts the schools principals wife in the school directory naked. This would have been alright if the lady was not like 50. And basically the rest of the movie is a wannabe carbon copy of the original. Which i understand the if there is nothing wrong with it leave it the way it was. But you can not do that with a movie. This actually being a prequel i gave it a chance just to see how they turned out like they did in part 1. But with Sebastian being more or less just a prankster and Kathryn being a herself and turning sebastian into the sexual predator he was in the real story, this movie had no foundation to it. Whoever did the casting on this thing was way off. They could have at least tried to get people who looked like the original cast but no, they just hired a bunch of not even really good looking actors. I am using this term although i dont know why. They for sure didnt do any in this movie.<br /><br />All this movie is a bunch of one liners that dont even match the wit that the original had, well some of them did but that was just because they were from part 1. Another bad point was in part one you could understand the need for them to act out for attention because there was no involvement from teir parents this one had them in it and they were poorly used, as if to show why the kids are like this. It didnt work though. The best thing though about the original was that the cast had chemistry they took you into this world. The on screen tension that was there made the film what it was. This thing Really ruins the experience of the first one stay way from this.\r\n0\t\"...though for a film that seems to be trying to market itself as a horror, there was a distinct lack of blood.<br /><br />There was also a distinct lack of skilled directing, acting, editing, and script-writing.<br /><br />Jeremy London put in one of most appalling performances I've ever seen - his \"\"descent into the maelström\"\" of madness is achingly self-aware and clumsy. Oh look at him twitch! Oh look at him drink strong spirits! Oh look at him raise his brow, and cock his head at a jaunty angle! Oh look at his unwashed, greasy dark hair! Oh listen to his affectedly husky voice! He must be a tortured artist/writer/genius! Oh, yes, out comes the poet-shirt - it's another boy who thinks he's Byron. (Or Poe.) Oh for the love of... did someone give this guy a manual on \"\"How To Act Good\"\" or did they just pull him out of a cardboard box somewhere, the defunct little plastic toy-prize in a discontinued brand of bargain-bin cereal. Okay, that was a stupid line - but that's only because London's performance has melted my brain with its awfulness.<br /><br />Katherine Heigl is cute, and very briar rose, but has yet to grow into her acting shoes in this film - she delivered her lines like she was being held up, in fact, her whole performance was very wooden, her poses as stiff as her lines - who knows, perhaps she was just reacting to, and trying to neutralise, Jeremy London's flailing excesses, but if that's the case, she takes it too far.<br /><br />Notable is Arie Verveen as Poe - while his character's role is confused, he delivers the best performance of the piece. He, quite simply, looks right, but it's more than that - he has some sort of depth, I believed that he had a life beyond the dismal two-dimensional quality of the rest of the characters. Huh, maybe it's just because I like Poe, and could thus just let my mind wander and invent while he was on screen - whatever, he had an interest factor otherwise missing.<br /><br />The rest of the characters are a faceless blur - there are all the usual caricatures: the perky blonde best-friend who's a bit of a floozy; the smitten local cop who's a bit of a dork; the protective older man who perhaps has too much un-fatherly interest in our heroine; the scheming old witch, etc., etc., yawn, yawn. <br /><br />As with the 'distinct lack of blood for a horror movie' issue, none of the themes that they mention (and that London's character mentions - so scathingly - in his attack on Poe's writing) are followed through on. As another reviewer said - there was potential here: murder, incest, - genuinely shocking stuff, but instead they skirt away from the issues, and cut away from the violence (a raised candlestick swinging through the air - closing in on it's victim - then---cut to black! This is fine in a Noirish traditional horror, indeed, it's expected, and is fondly received when it happens - it's a dear convention, especially when accompanied by fake lightning bolts and intense Siouxie eye makeup - but in 'Descendant' it just comes across as clumsy, or as though the editor got queasy at the last minute and cut it out.) This could have either been a very tense psychological thriller - the horror of palingenesis/delusion/madness - or a simple (and fun) slasher movie: it tries to be both, or neither (something new and exciting!), but either way it fails dismally. The only horror element of this entire movie is it's epic dullness.<br /><br />I think the editor (if there was one at all) must have been drunk when s/he chopped this thing up - there are awkwardly foreshortened scenes; scenes that appeared to be out of order (but that could have just been the poor script). LIkewise the director & cinematographer - there were some very strange shots and framing that I think were meant to be tributes to Hitchcock or Browning, but just ended up looking silly (again, fine in a noir, but this was trying to be something else.)<br /><br />The whole thing perhaps may have been funny (in that way that previous reviewers have mentioned - \"\"OMG how did this get made?!?\"\") if I had been in the mood for some trash- bagging, unfortunately for me I had settled on the couch, with the lights down low, with the express intention of scaring myself silly - this is a very poor film, and I'm afraid I can't recommend it to people, not even for laughs.<br /><br />Please, please, don't waste your time or money on this - either borrow a real horror/thriller film, or find yourself a copy of Poe's fantastical tales, either way, you'll have a far more enjoyable and frightening night than you could ever hope to achieve with this rubbish.\"\r\n0\twow! i watched the trailer for this one and though 'nah, this one is not for me'. i watched my husband and our friend's faces during the trailer, and knew this was a 'boy movie'. i mean, hallo! a bunch of chick barmaids that dance - another striptease?<br /><br />then, i started watching it, it didn't look all that bad. so i carried on watching. i watched it right to the end. what an awesome movie. if anything, this is a chick-flick. these girls have attitude. it is really a feel-good movie, and a bit of a love story. really leaves you with a nice feeling.<br /><br />basically, the story of a small-town girl making it big in the city, after going through the usual big-city c**p. there have been a couple of these, it is almost a new urban legend. but it also makes you think of your life, and what you have achieved. well, me anyway. i think it is because the whole working in a bar scenario is very familiar, not just for me, but for many people i know. Don't trust the trailers for this one - it is aimed at bringing the men in.\r\n0\tDon't get me wrong, I assumed this movie would be stupid, I honestly did, I gave it an incredibly low standard to meet. The only reason I even saw it was because there were a bunch of girls going (different story for a different time). As I began watching I noticed something, this film was terrible. Now there are two types of terrible, there's Freddy vs. Jason terrible, where you and your friends sit back and laugh and joke about how terrible it is, and then there is a movie like this. The Cat in The Hat failed to create even a momentary interest in me. As I watched the first bit of it not only was I bored senseless, but I felt as though I had in some way been violated by the horrendousness of said movie. Mike Myers is usually brilliant, I love the majority of his work, but something in this movie didn't click. One of the things that the director/producers/writers/whatevers changed was that they refused to use any of the colors of the original book (red, black, white) on any character but the Cat. Coincidentally or not, they also refused to capture any of the original (and i hate to use this word, but it fits) zaniness of the original. The book was like an Ice Cream Sunday, colorful and delicious, and the movie was about as bland and hard to swallow as sawdust.<br /><br />Avoid this like a leprous prostitute.\r\n1\t\"I saw this movie on Comedy Central a few times. This movie was pretty good. It's an interesting adventure with the life of Sunny Davis, who is arranged to marry the king of Ohtar, so that the U.S. can get an army base there to balance power in the Middle East. Some good jokes, including \"\"Sunnygate.\"\" I also just loved the ending theme. It gave me great political spirit. Ten out of ten was my rating for this movie.\"\r\n0\tMy friends and I rented that movie last night and we had one of the greatest laughs in awhile. The movie is not supposed to be funny at all, but it is just so ridiculous and it lacks any realism whatsoever. First, Phillippe (I forget what his character is called and I don't really care) uses his regular employee ID to go through all the top-security terminals. Not only is that pathetic but it gets topped when his enormous efforts culminate in his finding the so-scary Lego-room, which hosts the super computers. This is plain funny. The tense mood that we are supposed to experience is completely spoilt by the childish looking room. The ending, like all else, is very very very cheesy, especially when the bad guy's lawyer shows up 'right on time'. Anyway, this movie is a good laugh. If you need something to make fun of, definitely see it.\r\n1\t\"I am afraid it was a movie that you have to ACTUALLY WATCH to get anything out of it.I t is not a mindless movie like .....\"\"LEATHAL WEAPON PART 58\"\" you know the one where Riggs is really crazy? it is not a movie that is pretty much the same at the end as it is a the beginning. you can run everywhere talk on the phone do what ever and enjoy it in any way.I have noticed in the past that most people that do not like this type of movie are the type that will do most anything but watch a movie and then slam it because .....duh they don't get it or understand it or what happened.<br /><br />DON'T LET YOUR DOGGY TAKE A SHOWER!!!\"\r\n1\t\"Highly memorable, intelligent and suspenseful movie from one of French movies' true geniuses, the formidably able Henri Verneuil. The plot is an exact parallel of the JFK assassination, and takes place in a non-descript, fictional country. The film, visually as well as plot-wise, is razor-sharp. Shot with meticulous precision, it follows Henry Volnay, the Procuror who takes on himself to unravel the coup. In many ways, it's a very disturbing movie, not the least for the cold and analytical precision of its comment on a so-called modern state's inner workings. The atmosphere and characters are all utterly believable, and Verneuil left nothing to chance in its tight plotting. On another level, this relatively little-known movie just had a 15 years head-start on Oliver Stone, who was acclaimed for the \"\"JFK\"\" movie, a inferior film in many areas, the least of which not being credibility...<br /><br />It's a masterpiece, any cinema lover should see it, preferably in its original French version with subs.\"\r\n1\t\"\"\"The Garden of Allah\"\" was one of the first feature length, 3-strip Technicolor films. To correct a previous poster the first Technicolor feature (after Disney's 5-year exclusivity deal) was 1935's \"\"Becky Sharp\"\" which was a costume drama that used the color for it's garish color costumes.<br /><br />\"\"The Garden of Allah\"\" looks as if it could have been shot years later as the cinematography uses not only the color but also the use of shadows. It must have been amazing for an audiences at the time to see a color feature after seeing basically only black and white films for their whole life. Unfortunately, the film does not stand up to the cinematography. That being said, the film is worth seeing just as a visual treat.\"\r\n1\tMuch about love & life can be learned from watching the folks at THE SHOP AROUND THE CORNER.<br /><br />Ernst Lubitsch had another quiet triumph added to his credit with this lovely film. With sparkling dialogue (courtesy of his longtime collaborator Samson Raphaelson) and wonderful performances from a cast of abundantly talented performers, he created a truly memorable movie. Always believing in playing up to the intelligence of his viewers, and favoring sophistication over slapstick, the director concocted a scintillating cinematic repast seasoned with that elusive, enigmatic quality known as the Lubitsch touch.'<br /><br />Although the story is set in Budapest (and there is a jumble of accents among the players) this is of no consequence. The beautiful simplicity of the plot is that any great American city or small town could easily be the locus for the action.<br /><br />Jimmy Stewart & Margaret Sullavan are wonderful as the clerks in love with romance and then with each other - without knowing it. Their dialogue - so adeptly handled as to seem utterly natural - perfectly conveys their confusion & quiet desperation as they seek for soul mates. Theirs is one of the classic love stories of the cinema.<br /><br />Cherubic Frank Morgan has a more serious role than usual, that of a man whose transient importance in his little world is shattered when he finds himself to be a cuckold. An accomplished scene stealer, he allows no emotion to escape unvented. Additionally, Morgan provides the film with its most joyous few moments - near the end - when he determines that his store's newest employee, an impoverished youth, enjoys a memorable Christmas Eve.<br /><br />Joseph Schildkraut adds another vivid depiction to his roster of screen portrayals, this time that of a toadying, sycophantic Lothario who thoroughly deserves the punishment eventually meted out to him. Gentle Felix Bressart has his finest film role as a family man who really can not afford to become involved in shop intrigues, yet remains a steadfast friend to Stewart.<br /><br />Sara Haden graces the small role of a sales clerk. William Tracy is hilarious as the ambitious errand boy who takes advantage of unforeseen developments to leverage himself onto the sales force.<br /><br />In tiny roles, Charles Halton plays a no-nonsense detective and Edwin Maxwell appears as a pompous doctor. Movie mavens will recognize Mary Carr & Mabel Colcord - both uncredited - in their single scene as Miss Sullavan's grandmother & aunt.\r\n0\tI am sad that a period of history that is so fascinating and so rich in material for film can be made into a ho-hum event . Wm C Quantrill was barely shown in the film , probably the most intriquing figure of the period. Frank James was never mentioned, Cole Younger , ditto , and Bloody Bill Anderson , who would weep for his murdered sister every time he went into battle was completely absent in the script. Instead we were forced to watch fictitious characters that never developed into anyone we cared about. how sad. The costumes were wonderful however, as was the location shooting in Missouri. I hope Ang Lee will make another film from the period and try again, or some other film maker will look into the tremendous wealth of material to write a screen play on .\r\n1\tAn excellent and accurate film... McGovern takes great pains to research and document his writing and it pays off. He is not afraid to tell the truth, even though it might draw unfavourable reviews and comments from some who like stories to be clean and sweet and glossy.<br /><br />Once again, McGovern brings in Christopher Eccleston, though not in as high a profile a role as he played in Hillsborough. I found this movie as accurate, well acted and well presented as Hillsborough and I applaud McGovern for his poignant unapologetic writing. Well done and my hat is off to the writer, the actors, the production crew. A great film!\r\n0\t\"I almost called HBO and demanded my money back for the month just because they've been airing this movie. I can just see the movie execs sitting around going, \"\"Okay, we need to come up with something that's just like Home Alone, only we'll add a bunch of cash for the kid, hire cut-rate actors, and oh yeah, we'll make it a lot less funny!\"\"<br /><br />Okay, maybe not the last part, but that's basically what you've got here. Not even worth seeing if someone else rents it. And as a movie for kids? Forget it. I wouldn't let my kids see this, not necessarily because of bad-taste jokes, but because I wouldn't want them to say, \"\"What were you thinking showing us that lame piece of garbage, Dad?!?!\"\"\"\r\n1\tI could not agree less with the rating that was given to this movie, and I believe this is a sample of how short minded most of spectators are all over the world. Really... Are you forgetting that Cinema used to be a kind of art before some tycoons tried to make it only entertainment? This movie is not entertainment, at least not that easy entertainment you get on movies like Titanic or Gladiator. It has style, it is different, it is shocking... That's why most of you have hated it so much: because it does not try to be pleasing to you. It's just a story, a very weird one I admit, but after all, only a weird story. It is not a great story, not even a great cinema work, but I believe it is worth a 7-stars rating only for the courage of both author and director to shot a story that is not made to please the audience, thus selling billions of copies and making the big studios even richer. This movie is, for me, European-artistic-like movie made in the US, and everyone involved in the making of it deserves respect. Be it for the courage, or be it for the unique sense of humor.\r\n0\t\"This movie should not be watched as it was meant to be a flop. Ram Gopal Verma first wanted to make this a remake of classic bollywood movie \"\"Sholay\"\", but after having problems with the original makers decided to go ahead with the project and... i guess leave all the good parts of the movie (acting, script, songs, music, comedy, action etc) out and shoot the movie just because he already happen to hire the crew. Waste of money, waste of time. After making movies like Rangeela, Satya, and Company he pulled a Coppola (Godfather) on us; What were you thinking RGV? Anyways, the story is, though hard to follow, is almost like the Old sholay. Ajay Devgan playing Heero (Beeru, sholay) and Ajay, new kid on the block playing Ajay (Jay,sholay). Both \"\"bad yet funny\"\" friends help a cop capture a bad guy first. Later in the movie, now Retired cop hires them as personal security and safeguarding from the hands of a very most wanted Bubban played by Amitabh Bachan. In case you haven't been watching Bollywood movies, the Good guys win in the end. There I just saved you 3 precious hours of your life!\"\r\n0\tCould anyone please stop John Carpenter from continuously and deliberately ruining his reputation? How low can you go? It seems this man has lost any self respect.<br /><br />This episode looks like it has been done by a film student, it isn't even worth beginning to talk about WHAT was bad, because it was just a borefest, directed by somebody with no talent as a filmmaker or without any motivation...<br /><br />Come on, Mr. Carpenter, please retire immediately with a rest of self-esteem and stop spilling out trash like this in a bad tradition from Escape from L.A. to Ghosts of Mars.<br /><br />Get drunk instead.\r\n1\t\"This is your typical cheerful and colorful MGM musical from the early '50's and it's definitely on of the better ones to watch out there.<br /><br />The movie got directed by the genre expert Vincente Minnelli and stars Gene Kelly in the main lead. Both did quite a few movies together back in those days, of which this one is probably their best known one. <br /><br />The movie itself actually managed to win the best picture Oscar over the year, which meant it beat out movies such as \"\"A Place in the Sun\"\", \"\"A Streetcar Named Desire\"\", \"\"The African Queen\"\", \"\"Quo Vadis\"\", \"\"The Blue Veil\"\", \"\"Death of a Salesman\"\" that year. A real accomplishment of course but at the same time also a bit too much credit for this delightful, bright and entertaining movie.<br /><br />When you watch this movie you surely will be entertained by it all, which is also thanks to the movie its beautiful color look and the many nice characters within this movie. The musical numbers are also all nicely done, which is no big surprise when you have people such as Vincente Minnelli and Gene Kelly at work. <br /><br />But really, couldn't had everything that got told in this movie been done in halve an hour less or so? I mean, we already know where the movie is heading to but yet it manages to stretch it out all for as long as possible. Not that it makes the movie drag in any parts, it just makes it a bit overlong. The movie could had also definitely been done with a few less musical numbers in it.<br /><br />One of the better MGM musicals, that is not without its flaws though.<br /><br />8/10\"\r\n0\t\"... and yet, we were told, there was another hour and 20 minutes left to go.<br /><br />Why, oh, why wasn't there an editor to tell the writer/director to snip, snip, snip? Apparently that writer/director has previously done shorts; as a short, this would have been okay. But the lack of dialogue starts to grate after twenty minutes. The lack of much music glares. The background noises (talking, traffic, and especially a ubiquitous helicopter) get old really fast. But the worst failure is in story. There is precious little beyond a short.<br /><br />After an hour we saw variations of the same scene over and over again. I nearly screamed at the screen, \"\"We get it, we get it!!!!!\"\" It's amazing that after that left the theatre, we could drive home, watch the Daily Show and parts of the Colbert Report, get ready for bed,and know that the audience was STILL trapped in the theatre.<br /><br />It's not enough to indulge your vision. You have to give the audience enough to share your vision.\"\r\n0\tHello there,<br /><br />This is my first post in IMDb even though I use it as a reference for quite a while. I would therefore like to salute you all. The fact that I am a Greek is inevitably going to affect my judgement I hope not to your annoyance.<br /><br />I spent 2 years of my life, (all we Greeks did actually), analysing Omirus epos (and not Homers as you see everywhere), rhyme by rhyme. If I recall well it was Iliada (Iliad) on 8th grade and Odysseia (Odyssey) on 9th grade. Warner's Troy, was a big disappointment to me and my fellow Greeks around the campus (I study in the UK).<br /><br />Iliad epos is one of the very best literature works ever made. It was composed by a Greek poet Omirus a whole 400 years after the actual war. Historians put Trojan war around 1200 BC, and the actual reason of the war not being Helen's beauty but the strategically crucial position of Troy. That said one may now understand that Omirus epos is not presenting the actual events (as it's not accurate historically) but this was never the purpose of this work. <br /><br />Reading this huge poem, one can find himself wondering for the very definitions of honour, love, anger, hate, heroism, discipline, loyalty and so on. The best part and the most educational as well were these prolonged talks between the warriors before the battle. None of these though were revealed in 'Troy'<br /><br />Warner's Troy was really cheap to my eyes, and to other intellectual people English Finnish and German colleagues of me as well. It is a shame to spend millions of dollars in such a bad scenario. By the way perfect storm was a bad and stupid blockbuster (computers graphics did the whole work), and yet it is Wolfgang Petersen's best work. <br /><br />I conclude saying that you'd better watch something else instead. I would give Troy 2 out of 10. It is a really expensive B movie.<br /><br />Cheers <br /><br />Alex\r\n0\tProduction line collection of fart jokes that pretends 'Babe' was never made; the writers clearly hoped that the gimmick of seeing animals talk would be enough to keep the movie going. It's not. Eddie Murphy sells out yet again as a doctor who rediscovers his forgotten childhood gift for understanding the incessant and witless chatter of guinea pigs, tigers, rats, dogs and pigeons. The voice cast is impressive (Albert Brooks, Julie Kavner, Reni Santoni, John Leguizamo, Garry Shandling, Ellen DeGeneres, Paul Reubens, Brian Doyle-Murray) but the script is so unimaginative, charmless and depressingly unfunny that the whole thing rattles down the bin chute pretty quickly.\r\n0\t\"I have no idea what on earth, or beyond, could have possibly made Sam Mraovich believe that this would have been a worthy project to undertake. Ben & Arthur is one of the worst movies ever made. In fact, I see no reason why it should not be at #1 on the Bottom 100. For although I have not seen, for example, SuperBabies: Baby Geniuses 2 (#5 at the time of this publication), I would venture to guess that that film is considerably better than this oozing wound, because even in its vapid dismalness at least Baby Geniuses 2 was professionally made. By contrast, everything, and I do mean everything, in this film is completely unprofessional.<br /><br />The movie is intended to be an attack on the Christian Right's supposed bigotry and hatred toward gays. And I do emphasize \"\"intended.\"\" Not only does it completely and utterly fail at its purpose, it also leaves an ugly scar. Instead of creating a compelling and realistic portrait of a gay couple's struggle against a society that largely opposes them, it creates tired, crass stereotypes of each party involved. Ben and Arthur, the namesake couple, are portrayed as two crude, sex-starved, and hopelessly romantic cardboard cutouts who marry when the laws change to allow them to do so. This meets with the opposition of Ben's brother Victor, a Christian minister who, like all Christians (as this movie would have us believe), is loud, prying, stupid, and violent. He tries to kill Ben and Arthur after his associations with them get him kicked out of the ministry. Just like in real life. And if you think that's dreadful (it is), you haven't seen it all.<br /><br />The actors (?) here manage to completely destroy any vestige of credibility in this movie by saying their lines as if they were narrating a YouTube home comedy video. But not even Daniel Day-Lewis and Marlon Brando as the title characters could have saved this clunker, for there would still be the matter of the completely inane and laugh-inducing dialogue that fills every minute of the movie. Every scene has at least one awkward or misplaced quote. For example, in one scene, Victor tries to complain about not being able to have nieces or nephews because of his brother's homosexuality. But instead of portraying this idea clearly, he spits out the stupid, utterly confusing, whiny-sounding line, \"\"You know what, I'm never going to have any nieces or nephews, okay, because you're so F***ED UP!\"\"<br /><br />Even more glaring is the complete lack of production values. Yes, I know this ain't The Dark Knight, but even amateur film makers should know some basics about special effects and editing. For example, six dots of red cake dye do not suffice for realistic bullet wounds. People do not teleport across a room between takes. And objects do not fall FORWARD when shot! <br /><br />Do not waste your money on Ben & Arthur. I don't care if you're 7, 17, or 107. I don't care if you're gay, straight, bi, or undecided. I don't care if you're \"\"just curious.\"\" I don't care what pathetic reason you may have to be tempted to buy this dung-heap. Stay away, far away. This movie's only redeeming quality is its ability to be used as a Frisbee.\"\r\n0\t\"I'm not a regular viewer of Springer's, but I do watch his show in glimpses and I think the show is a fine guilty pleasure and a good way to kill some time. So naturally, I'm going to watch this movie expecting to see \"\"Jerry Springer Uncensored.\"\" First of all, Jerry appears in approximately twenty minutes of the film's running time. The other hour and twenty minutes is spent building up this pseudo-farce about trailer-trash, jealousy, incest and deception. Jaime Pressley (who looks hot as HELLLL) is a trailer-trash slut who sleeps with her stepfather (a very unusual-looking, chain-smoking, drunken Michael Dudikoff who finally strays from his action hero persona). The mom finds out about the affair, they get into a fight, they want to take it to the \"\"Jerry\"\" show (that's right, no Springer). And then we have a parallel story with an African-American couple. They take it to the \"\"Jerry\"\" show. The characters collide. Blah, blah, freakin' blah! Trash has rarely been this BORRRINGG!!!! I was wondering why the hell Springer has millions of fans, yet none of them checked out his movie. Well, now it's TOTALLY obvious!! Whether you love him or hate him, you will hate this movie! How can I explain? It's a total mess of a motion picture (if that's what you call it). It's so badly edited, with scenes that just don't connect, and after a period of time the plot virtually disappears and it's simply all over the map! Just imagine a predictable soap opera transformed into a comic farce. With seldom laughs. <br /><br />My only positive note is a hot girl-girl scene. That's as risque as it gets. Don't get me wrong, the scene's pretty risque, but if you look at the overall film comparing it to the material on Springer's program--this disastrous farce seems extremely sanitized.<br /><br />My score: 3 (out of 10)\"\r\n1\t\"Daniell Steel's Daddy, what a refreshing story. This movie glorified the importance of the family and the importance of parents in the lives of their children. How rare is that? In these times of \"\"Heather has two Mommies\"\" (or what ever, you fill in the blanks) it is easy to see why this theme is not for everyone. With the father's roles being prominent I was hoping this would be another Daniell Steel Saga. How disappointing to have it end. Every character was important and did a fabulous job carrying their role. I would have loved to see each character develop over the years. I loved this movie, it is one I will defiantly watch every time it's on. Good story, good acting, and I hope this isn't a spoiler, but no obtrusive sex or bad language. Yes it touched my heart. Warning, get the Kleenex ready. What I find sad is that this side of family life is rarely depicted today in our entertainment, be it Television or. Movie's. Daniell if your listening, You Go Girl, give us more.\"\r\n0\tAn unfunny, unworthy picture which is an undeserving end to Peter Sellers' career. It is a pity this movie was ever made.\r\n0\tWhy such a generic title? Santa Claus??? So bland and unpredictable. Movies before that tried to cash in on the holiday spirit, most notably 'Santa Claus Conquers the Martians', at least was entertaining to watch because of the campiness to it, and all the stock footage being used... for some reason, that seemed happy to me. But this movie just screws Christmas in the butt, and screws the joy of all the kids. Santa lives in space? His enemy is a devil named Pitch? Santa gets help from Merlin the Magician? How random is this!? Well, since it was made in Mexico then some of you might understand the way of how the film was made. I had to admit some of the effects were just wacky for the time. It was a all-out cluster of madness! Though, despite all the troubles with the movie, it still feels like a Christmas movie. Good conquers evil, and Christmas still plays a part of our hearts of every good girl or boy in the world, or possibly universe, thanks to Santa Claus Conquers the Martians.. apparently. So, I think you should give it a try, even if it is one of the worst holiday movies of all time... though it should put a smile on your face any day.\r\n1\t\"I was always a big fan of this movie, first of all have you seen the cast, the acting is superb and help make this movie move along very well. Cybill Shepherd was given great reviews for her role, and they were well deserved. The beginning of this movie starts in the past when Corinne Jeffries (Cybill) whose picture-perfect marriage comes to a shattering halt when her husband Louie dies unexpectedly. Fortunately, Louse gets a second shot at life when he agrees to be \"\"recycled\"\" back to earth as the newborn Alex Finch (Robert Downey, JR). Alex goes on to live his new life forgetting his past life while Corinne tries to get on with hers. But fate crosses Alexs path 23 years later when he meets Corinne's daughter Miranda (Mary Stuart Masterson) and is suddenly flooded with a wealth of unwanted memories (this is where the fun begins, and embarrassing situations occur.) The music is great and the scenes are heart felt and very cute. You wont be disappointed if you give it a chance, Chances Are you'll like it. Very funny and sweet!\"\r\n0\tVijay Krishna Acharya's 'Tashan' is a over-hyped, stylized, product. Sure its a one of the most stylish films, but when it comes to content, even the masses will reject this one. Why? The films script is as amateur as a 2 year old baby. Script is king, without a good script even the greatest director of all-time cannot do anything. Tashan is produced by the most successful production banner 'Yash Raj Films' and Mega Stars appearing in it. But nothing on earth can save you if you script is bland. Thumbs down! <br /><br />Performances: Anil Kapoor, is a veteran actor. But how could he okay a role like this? Akshay Kumar is great actor, in fact he's the sole saving grace. Kareena Kapoor has never looked so hot. She looks stunning and leaves you, all stand up. Saif Ali Khan doesn't get his due in here. Sanjay Mishra, Manoj Phawa and Yashpal Sharma are wasted.<br /><br />'Tashan' is a boring film. The films failure at the box office, should you keep away.\r\n1\t\"Having just watched this film again from a 1998 showing off VH-1, I just had to comment.<br /><br />The first time I saw this film on TV, it was about 1981, and I remember taping it off of my mother's betamax. It wound up taping in black and white for some reason, which gave it a period look that I grew to like.<br /><br />I remember very distinctively the film beginning with the song, \"\"My Bonnie\"\", as the camera panned over a scene of Liverpool. I also remember the opening scene where Paul gestures to some girls and says, \"\"Look, talent!\"\" So it was with great irritation that I popped in my 1998 taped version and \"\"remembered\"\" that the film opens with \"\"She Loves You\"\", instead of \"\"My Bonnie\"\". When you see how slowly the camera pans vs. the speed of the music, you can see that \"\"She Loves You\"\" just doesn't fit. Also, in this \"\"later\"\" version when Paul sees the girls, he says, \"\"Look, GIRLS!\"\"..and somehow having remembered the earlier version, THAT word just didn't seem to fit, either. Why they felt they had to Americanize this film for American audiences is beyond me. Personally, if I'm going to watch a film about a British band, I want all of the British colloquialisms and such that would be a part of their speech, mannerisms, etc.<br /><br />Another irritation was how \"\"choppy\"\" the editing was for television. Just after Stu gets beaten, for example, the film cuts to a commercial break-LOTS of 'em. Yeah, I know it depends on the network, but it really ruins the effect of a film to have it sliced apart, as we all know. What some people might find as insignificant in terms of dialogue (and thereby okay to edit), may actually go the way of explaining a particular action or scene that follows.<br /><br />My point is, the \"\"best\"\" version of this film was probably the earlier version I taped from 1981, which just so happened to include the \"\"Shake, Rattle & Roll\"\" scene that my 1998 version didn't. I started to surmise that there had to have been two different versions made for television, and a look at the \"\"alternate versions\"\" link regarding this film proved me right. That the American version had some shorter/cut/different scenes and/or dialogue is a huge disappointment to me and something worth mentioning if one cares about such things. Imo, ones best bet is to try and get a hold of the European version of this film, if possible, and (probably even less possible), an unedited version. Sadly, I had to discard my old betamax European version because I didn't know how to convert it.<br /><br />All that aside, I found this film to be, perhaps, one of the best films regarding the story behind the \"\"birth of the Beatles\"\". Being well aware that artistic and creative license is often used in movies and TV when portraying events in history, I didn't let any discrepancies mar my enjoyment of the film. Sure, you see the Beatles perform songs at the Cavern that made me wonder, \"\"Did they even write that back then?? I don't think so\"\", but, nevertheless, I thought it was a great film and the performances, wonderful.<br /><br />The real stand-out for me, in fact, was the actor who played John, Stephen MacKenna. I just about fell in love with him. His look, mannerisms, personality and speaking voice seemed to be spot-on. He looked enough like a young John for me to do a double-take towards the end of the film when you see the Beatles performing on Ed Sullivan for the first time. I actually found myself questioning whether or not it was actual Beatle footage, until I saw the other actors in the scene.<br /><br />If you're looking for a dead accurate history of The Beatles' life and beginnings, you can't get any better than, \"\"The Beatles' Anthology\"\", as it was \"\"written\"\" by the boys', themselves. However, if you're looking for a fun snapshot of their pre-Beatlemania days leading up to their arrival in America and you leave your anal critical assessments at the door, you can't go wrong with the \"\"Birth of the Beatles\"\"--a MUST for any \"\"real\"\" or casual Beatle fan.\"\r\n1\tThe last film in Lucas' saga is a lavish, spectacular-looking production. It is often considered the ugly duckling of the original trilogy, but I think it is a notch above episode IV (and just a notch below episodes III and V). In fact, I think it is the third best film in the 6-part saga. As far as I'm concerned, it is still a grandiosely entertaining film. It is not a movie with a beginning, climax and ending; the film's mechanism operates with only one goal in its mind: bring closure to Lucas' universe. There is an air of finality attached to the whole thing, which makes the film a little too sentimental, but emotionally rewarding. Also, it is a lot of fun. New characters are introduced and old ones face new, unexpected challenges. C3PO and R2D2 provide (as usual) great comic relief. Leia and Solo are a wonderful romantic duo, and Luke is still a great character to identify with. Again, it is Luke's (and Vader's) inner conflict what gives the saga its backbone. Lucas' aggressive imagination is still very much apparent, and the film's themes of loyalty, hope, and redemption resonate strongly. I'm glad Lucas eventually dropped the idea of making episode VII, VIII and IX, because this film is a great bookend to a long, fascinating and captivating saga. Not a perfect movie, but fun in the best matinée style.\r\n0\t\"Hollywood Hotel was the last movie musical that Busby Berkeley directed for Warner Bros. His directing style had changed or evolved to the point that this film does not contain his signature overhead shots or huge production numbers with thousands of extras. By the last few years of the Thirties, swing-style big bands were recording the year's biggest popular hits. The Swing Era, also called the Big Band Era, has been dated variously from 1935 to 1944 or 1939 to 1949. Although it is impossible to exactly pinpoint the moment that the Swing Era began, Benny Goodman's engagement at the Palomar Ballroom in Los Angeles in the late summer of 1935 was certainly one of the early indications that swing was entering the consciousness of mainstream America's youth. When Goodman featured his swing repertoire rather than the society-style dance music that his band had been playing, the youth in the audience went wild. That was the beginning, but, since radio, live concerts and word of mouth were the primary methods available to spread the phenomena, it took some time before swing made enough inroads to produce big hits that showed up on the pop charts. In Hollywood Hotel, the appearance of Benny Goodman and His Orchestra and Raymond Paige and His Orchestra in the film indicates that the film industry was ready to capitalize on the shift in musical taste (the film was in production only a year and a half or so after Goodman's Palomar Ballroom engagement). There are a few interesting musical moments here and there in Hollywood Hotel, but except for Benny Goodman and His Orchestra's \"\"Sing, Sing, Sing,\"\" there isn't a lot to commend. Otherwise, the most interesting musical sequences are the opening \"\"Hooray for Hollywood\"\" parade and \"\"Let That Be a Lesson to You\"\" production number at the drive-in restaurant. The film is most interesting to see and hear Benny Goodman and His Orchestra play and Dick Powell and Frances Langford sing.\"\r\n1\t\"Coinciding with the start of the baby boom, the years after World War II saw an unprecedented exodus of Americans moving out of their city apartments into the suburbs where they can fulfill their dreams of owning their own homes. Directed by H.C. Potter and co-written by Norman Panama and Melvin Frank (\"\"White Christmas\"\"), this lightweight but surprisingly observant 1948 screwball comedy captures the feeling of that period very well. Of course, it helps to have a trio of expert farceurs  Cary Grant, Myrna Loy and an especially acerbic Melvyn Douglas  head the proceedings with their natural likability at odds with the escalating frustrations of home ownership. Even though the film is sixty years old now, there is a timeless quality to the Blandings' dream and the barriers they face in achieving it. Obviously, Hollywood thinks so since it's been remade at least twice - first as a very physical Tom Hanks comedy, 1986's \"\"The Money Pit\"\", and again last year with Ice Cube's \"\"Are We Done Yet?\"\". One look at HGTV's programming schedule will show you how the situations explored here still resonate today.<br /><br />The plot begins with ad man Jim Blandings, his wife Muriel and their two daughters cramped into a two bedroom-one bath Manhattan apartment. Rather than pursue Muriel's idea to renovate the apartment for $7,000, Jim sees a photo of a Connecticut house in a magazine and realizes this is where they need to move. With the help of an opportunistic real estate agent and against the advice of their attorney and family friend Bill Cole, the Blandings decide to buy a ramshackle house badly in need of repair. However, the foundation sags so badly that the house needs to be torn down in favor of a new one. This sparks the Blandings to push the architect to design a house so excessive that the second floor is twice as big as the first. Costs rise with each new complication, tempers flare, and even a romantic triangle is imagined among, Jim, Muriel and Bill. Priorities finally sort themselves out but not before some funny slapstick scenes and clever dialogue that tweaks the not-so-blissful ignorance of the new homeowners.<br /><br />With his double takes and flawless line delivery, Grant is infallible in this type of farce, and Jim Blandings epitomizes his more domesticated mid-career characters. In a role originally meant for Irene Dunne, Myrna Loy shows why she was Hollywood's perfect wife. She doesn't get many of the funnier lines, but she combines her special blend of flightiness and sauciness to make Muriel an appealing character on her own. Watch her deftly maneuver the overly agreeable house painter with her absurdly idiosyncratic color palette. As avuncular, pipe-smoking Bill (\"\"ColeBill Cole\"\"), Melvyn Douglas shows his natural, easy-going élan as Grant's foil. Smaller roles are filled expertly with particularly memorable turns by Harry Shannon as the laconic well-digger Mr. Tesander, Lurene Tuttle as Jim's officious assistant Mary, and Louise Beavers as the Blandings' lovable maid Gussie. The 2004 DVD provides some intriguing vintage material including two radio versions of the movie - the first a 1949 version that did end up pairing Grant and Dunne and then a second 1950 version coupling Grant with his then-wife, actress Betsy Drake. A most appropriate 1949 cartoon, \"\"The House of Tomorrow\"\", is also included giving us a comical tour of a futuristic dream house. The original theatrical trailers for ten of Grant's film classics complete the extras.\"\r\n0\tThe film is almost laughable with Debbie Reynolds and Shelley Winters teaming up as the mothers of convicted murderers. With the horrible notoriety after the trial, the two women team up and leave N.Y. for California in order to open and song and dance studio for Shirley Temple-like girls.<br /><br />From the beginning, it becomes apparent that Reynolds has made a mistake in taking Winters with her to California. Winters plays a deeply religious woman who increasingly seems to be going off her rocker. <br /><br />To make matters worse, the women who live together, are receiving menacing phone calls. Reynolds, who puts on a blond wig, is soon romanced by the wealthy father of one of her students, nicely played by Dennis Weaver.<br /><br />Agnes Moorehead, in one of her last films, briefly is seen as Sister Alma, who Winters is a faithful listener of.<br /><br />The film really belongs to Shelley Winters. She is heavy here and heaviness seemed to make her acting even better. Winters always did well in roles testing her nerves.<br /><br />The ending is of the macabre and who can forget Winters at the piano banging away with that totally insane look?\r\n0\tThe only reason i am bothering to comment on this movie is to save you all 97 minutes of your life and maybe your money.<br /><br />I bought it ex-rental for £3.00, it looked interesting, so i took a chance.<br /><br />Within minutes of turning it on i realised i'd made a mistake. The entire cast should be stored away until winter and then thrown on the nearest log fire, where they could meet more of their kind.<br /><br />As for the Devin Hamilton (Writer and Director), he should just be shot, sadly this should have been done before he made this rubbish.<br /><br />Avoid this film, If you see it in the shops run away.<br /><br />1/10\r\n1\t\"An unusually straight-faced actioner played by a cast and filmed by a director who obviously took the material seriously. Imperfect, as is to be expected from a film clearly shot on a tight budget, but the drama is involving-- it's one of those films that when it gets repeated ad nauseum on Cinemax 2 or More Max or whatever they call it, you end up watching 40 minute blocks when you're supposed to be going to work. Along W/ \"\"Deathstalker 2\"\", \"\"Chopping Mall\"\", and \"\"The Assault\"\", a reminder that Wynorski is a much more talented director than many of his fellow low-budget brethern, who has a real ability to pace a genre film, when he actually's interested in the material (i.e., don't bother watching any of his Shannon Tweed flicks with a 3 or a 4 after the title!) Actors who've had too little to do recently (Mancuso, Ford, even Gary Sandy for chrissakes) really put their all into some of their best roles in years -- as for Grieco, he has the right look, although his acting is a bit one-note -- it's clear his character is supposed to be self-destructing throughout the film, but Grieco doesn't quite convey it. I checked IMDB and I see the writer also wrote \"\"Sorority House Massacre 2\"\" & \"\"Dinosaur Island\"\" for the director -- both minor classics in their own rights, but obviously \"\"silly\"\" Roger Cormon-like Cinema -- this one's more like some of the better Jonathan Demme and Jonathan Kaplan B-pictures of the 70's -- giving you the exploitation element but offering involving drama at the same time -- a real step forward. Not \"\"Citizen Kane,\"\" and the comic final moments are a bit disruptive, but a well-written, character-driven above-average straight-to-video actioner. Small achievements like this should not be overlooked when they come along, which is rare enough (as I was reminded as I tried to sit through an Albert Pyun monstrosity called \"\"Heatseeker\"\" the other night -- this low-budget stuff isn't as easy as it looks -- but that's another story!)\"\r\n1\t\"This \"\"coming of age\"\" film deals with the experiences of two young girls, Dani and Maureen, as they learn about life and love one fateful summer.<br /><br />Directed by Robert Mulligan, famous for his superb work in \"\"To Kill a Mockingbird,\"\" the film never hits a false note. All the acting is superb. As Dani, Reese Witherspoon makes a stunning film debut. Watching this beautifully photographed and superbly directed and edited film, I felt like I was looking through a window to reality, rather than watching a movie.<br /><br />I have watched this movie at least 5 times, and can honestly say that it is one of the single best movies ever made about being young, being in love, and going through the feelings, challenges, and changes of young adulthood. Families with children between 10 and 15 should watch it together, and use it as a discussion piece, as it raises a number of issues about sibling rivalry, how to deal with being in love, the responsibilities of a parent, etc.\"\r\n0\tMuch has been made of Rohmer's use of digital technology to 'fill in' the background. At times it works well, the scene where Grace and her maid witness from afar the King's execution is particularly striking. At other times it gives the film a strangely amateurish look, resembling a home video. However, the major failing is that the sheer artificiality of the mise en scene creates an alienating effect in the viewer. We know that what we are watching is not real so how can we feel for the characters? To be frank, I did not care at all what happened to the Lady or the Duke.<br /><br />The other major failing, I regret to say, is the performance of Lucy Russell in the leading role. She is in virtually every scene and the success or otherwise of the film rests on her performance. OK she is speaking a foreign language but she is incapable of expressing real emotion. Her emoting in the scene where she recounts to her friend Mme de Meyler (an excellent performance by the debutante Helena Dubiel) seeing the head on a pole caused some embarrassed laughter in the audience. Also, watch her hands when she is expressing emotion!<br /><br />All in all a very disappointing film, particularly given the positive reviews on this site.\r\n1\t\"I don't watch a lot of TV, except for The Office, Weeds, Entourage and E!'s Soup. I think I hold this show in good company.<br /><br />I love the scathing review of pop culture that this show gives. Soup also helps me stay on top of what people in the office are referring to when talking about a Sanjaya or Heidi Montag (sp?).<br /><br />The best part is that Soup shows clips of the highlights of these shows, which are usually the funniest or most controversial moments (c'mon, most people get hooked into watching American Idol because of the freak show that are the auditions), which is why most people claim to watch. And that means, I don't have to suffer through the other 98% of these mind numbing talk shows or \"\"reality\"\" shows, for one nugget of \"\"funny\"\" or \"\"shock.\"\" The only reason why Soup doesn't get a 10 in my opinion are sometime the sketches are not that funny, and on an even rarer occasion, the commentary isn't always up to par. But they can't all be home runs either, if so, Soup wouldn't be on E!.<br /><br />Joel's quick wit and Soup's writing team (which includes McHale) make for a great show. I happen to enjoy the laughing and comments from the crew who are off-camera. Even when they're being blatantly obvious by giving occasional courtesy laughs, it's hilarious because it IS forced. They're obviously being ironic. And that's part of what makes this show funny.\"\r\n1\tIn the film Kongwon-do ui him it features a relatively intimate look into the meaningfulness (as well as general meaninglessness) into the lives of various Koreans; empty people seeking ways to fill themselves, enjoying the escapism of nature. From the beginning to the end of the film we observe the fallibility of the various characters; we learn of their shortcomings and their desires, the overall complexity captured within human life (and yet the overal simplicity of humanity). Although the film is slow-moving, it can be very contemplative. It does not force any ideas, but allows the ideas to come about themselves, it allows the concepts to reveal themselves.<br /><br />The film ends as well and as suddenly as it begins, and one truly understands the meaning of aloneness, that love is often an act of selfishness, and the many mistakes that we make. It is a look into everyday life, very well and beautifully done.<br /><br />If you are looking for action or for intense drama, this is not the film for you. However, if you enjoy honest, original, and meaningful films that are not forced and without glitz, this is a great film to watch.\r\n0\tnot your typical vamp story, not bram stoker or anne rice here. a truly original vampyre story. these vampyres are genetic mutants who the sunlight don't bother. they are pure evil to. <br /><br />the film is not perfect. many of the actors are clearly amateurs. the two leads who play van helsing and rally the vampyre chick are pretty good though. the film is intensely violent which may disturb some people. also it is loaded with scientific detail that many will find hard to understand and may get bored with. i was sold on the clever storyline and the couple good performances. no telling how successful this film could be if they had a bigger budget and it got mass distribution\r\n1\tATTENTION, SPOILER!<br /><br />Many people told me that «Planet of the Apes» was Tim Burton's worst movie and apart from that much weaker than the original film. So I decided not to see it. Another friend of mine who hadn't seen the movie yet, advised me to watch it in spite of this because `a Tim-Burton-movie is still a Tim-Burton-movie'. I decided to do it, and I found that he was right.<br /><br />It's clear that a remake of such a famous film as `Planet of the Apes' is automatically influenced by commercial thinking. Still, Tim Burton managed his film to represent his weird playfulness just as well as `Beetlejuice' or `Batman'. If you are already fond of Burton-movies, it's hard not to like one of his films, even if it has some flaws: nerve-racking monkey squeals, over-dressed apes and a leading actor who could have been, without difficulties, replaced by anbody else.<br /><br />What the film gives us in the first place, is an answer to the question: What's the result when Tim Burton is instructed to create a remake? First of all, Burton wouldn't be Burton, if he wouldn't refuse to call it a remake from the start; it's a `re-imagining'. On the other hand, Burton knows that almost every viewer of his movie has seen the very first film version starring Charlton Heston (as human), and he knows that a remake doesn't exist without its model and that the two films will not stop being compared. So all he does is playing with this comparison at every moment of his film, e. g. by referencing to quotes. Concerning the story-line, Burton does a brilliant job by answering open questions of the original first, and then driving the whole audience to despair by destroying this wonderful clarity and ending the movie with  AND HERE IS THE SPOILER  Leo coming back to earth and finding himself inside a world that seems to have been ruled by apes forever. <br /><br />Now, this is the burtonesque answer to people's expectations they hold because of the astonishing, shocking ending of the first `Planet of the Apes'. An ending, even more unexpected, more astonishing and: completely confusing, because  and here I'm disagreeing with various `Planet of the Apes'-homepages and -platforms  it does not make any sense. There cannot be a meaning to it, or just a so complicated one that it becomes ineffective. Tim Burton is playing his cruel games, he does it with a grin and he does it well. Burton fans will sure like it, others may feel betrayed and complain about some sort of manierism. Well, and I don't think producers will ever ask Burton to direct a remake again\r\n0\t\"Having read the novel before seeing this film, I was enormously disappointed by the wooden acting and the arrogance of the producers in their blatant disregard of the plot. I feel this film in no way reflects the brilliance of Bronte's work, and rather gave the impression of a shallow love story. In the condensing of the film to a short 2hours, the film lost many of the key features which make the book comprehendable and progressional, thus resulting in a somewhat jumpy plot with little grounding. There is no build up to the romance between Rochester and Jane Eyre, so this appears rather abrupt and unfounded since the two characters have such infrequent interaction you cannot help but imagine their 'love' is superficial. This is such an injustice to Bronte's novel;you are given no impression of Jane's quirky cheek and boldness which attracts Rochester to her, and his arrogance which attracts Jane to him.<br /><br />Despite to poor scripting, I think that a few of the characters were portrayed very astutely, namely Mrs Fairfax and Grace Poole, however overall the production was poor. Given a better scripting, perhaps the film would have been more successful. See \"\"Jane Eyre\"\" (1970) with Zelah Clarke and Timothy Dalton for an outstanding production.\"\r\n0\tI don't know if this is one of the SyFy Channel original movies, but that's exactly what it feels like. A cheap, low budget action movie that was probably made very quickly, it contains laughable effects, lame dialog, and one vaguely faded star to give some name brand recognition to it (funny how many of the kids from 90210 are doing cheap TV movies now).<br /><br />Ian Ziering plays Cortes, who we know from history as the explorer who wiped out entire populations of native people while conquering parts of North America. Here, he is not played as a hero or even sympathetic, but as a slimy opportunist; his character would probably be killed off if this weren't loosely based on a historical figure. In this story, Cortes is on a brief surveying mission, trying to find something of value to prove he deserves financing to further explore America. He and his men find a small tribe of Aztecs plagued by dinosaurs.<br /><br />The actual hero of the story turns out to be Lt. Rios, who proves to be honorable, resourceful, and wise. He knows the right thing to do in every situation, which puts him at opposition with Cortes, as well as with the young, ambitious Aztec shaman. Of course, the native girl who is supposed to marry the headstrong, scheming shaman falls for Rios, furthering his anger towards the Spanish outsiders. So it's all pretty cliché. The dinosaurs are dispatched with relative ease. Despite taking place in an area that seems wide open, the story pretty much takes place in either the woods, or the Aztec village for 95% of the time, so it isn't visually exciting either.<br /><br />I didn't even recognize Ian Ziering. They gave him a ridiculous wig and an unconvincing accent, and somehow he disappeared into it. He doesn't look or sound Spanish for a second, however, making the casting choice wrong in every way. If this movie had been released theatrically, he would have been singled out for a Razzie, no question.<br /><br />Overall, forgettable.\r\n0\t\"Whew. What can be said about Gymkata that hasn't already? This is nothing but pure halarity from beginning to end. If you want a movie that will keep you on the floor laughing, this is the perfect movie to get. From Cabot's wild-style mullet/sweater combo to Parmistan (and it's four billion assorted ninjas), everything about this film reeks of crap.<br /><br />Directed by Robert Clouse, the infamous mind that brought you the mirror scene in Bruce Lee's Game of Death, he once again showcases his complete lack of directing talent. A few other faces you most likely won't recognize will appear for your enjoyment as well, from Buck Kartalian to Tadashi Yamashita, although you won't remember them or care about them after the movie is done.<br /><br />Supposedly based on a book called \"\"The Terrible Game,\"\" which, if I could find a single trace of it's existence anywhere I would be interested in reading it, to see where this thing went wrong. Instead, the book apparently is a figment of Gymkata's imagination. Probably something Clouse made up in order to sell his lame idea.<br /><br />Pick this one up and Yakmallah it for yourself. It is easily one of the best bad movies I have ever seen, and that is saying quite a bit.\"\r\n0\t\"I am a Christian... and I feel this movie is awful.<br /><br />Nobody but hard-core, Bible-belt Christians are going to like this movie. The message is just too in your face. If you want to touch a wider audience, you have to be way more subtle. You can't have the dad waving the bible around and carrying it with him in EVERY scene. RIDICULOUS! <br /><br />Poor direction. The reveal of people missing should have been terrifying, but it was laughable. They leave their clothes on the ground? It reminded me of old Ed Wood movies: \"\"Oh my God! People are missing!\"\" That scene in the plane is just stupid. Think about it: if you found your relative's clothes next to you, you wouldn't just scream \"\"oh my god. they disappeared! they're missing!\"\" and start crying and yelling. You would first be in denial... you just wouldn't jump to that conclusion. Watch Jodie Foster in FLIGHTPLAN. My favorite shot is the dog sitting out on the lawn with a pile of clothes and boots sitting next to him. I about fell off the couch I was laughing so hard.<br /><br />The music was so bad and so distracting. It was as if the composer was in his own world scoring his own movies. \"\"here's my chance to do a thriller\"\", \"\"here's my chance to do action!\"\" STOP TELLING ME HOW TO FEEL JAMES COVELL! A good score supports what's happening on the screen... this movie needed more of an UNDER score, but instead it was as much in your face as the message was.<br /><br />The writing was bland. So was Captain Christian Kirk Cameron. Chelsea was the worse: \"\"you don't understand! People are missing!\"\". Brad Johnson was laughable. The two stand out performances came from the Anti-Christ and the older guy (sorry, can't remember their names) In watching the \"\"making of\"\" (to answer my question of \"\"what were they thinking???\"\"), the producers and filmmakers and actors are just deluding themselves... saying \"\"we're gonna reach wide audiences\"\" and \"\"brad Johnson is amazing\"\" and \"\"this is just like a Hollywood movie\"\". I came to the conclusion that they just don't know what the \"\"heck\"\" they are doing.<br /><br />I commend the effort. Getting the message to a wide audience is a fantastic idea. Film is the best medium possible to do that. Look at movies like WIDE AWAKE, SIGNS, CONTACT, PASSION OF Christ, even O'BROTHER, WHERE ART THOU? The bottom line is that the film needed to be made by people who have talent and vision. Unfortunately, it was not.\"\r\n0\t\"A story of amazing disinterest kills \"\"The Psychic\"\" over and over again. The characters and plot are completely uninteresting (as is Fulci's mad camera work, which is usually a redeeming factor in his films), and any grasp of suspense is nowhere to be found. It's padded out to an insufferable degree--by the end, you won't be clamoring with excitement but stricken with boredom (and, like me, maybe an uncontrollable urge to fall asleep). Jennifer O'Neill's performance deserves occupancy in a better movie. Fulci gorehounds beware--there's just not much going on in \"\"The Psychic.\"\"<br /><br />3/10\"\r\n0\t\"This is my first movie review on IMDb. I was forced to register after watching this movie. I cannot in good conscience allow this movie to be unreviewed by me. The people must be warned!<br /><br />First of all, my rating is: 0 (as in \"\"zero\"\")<br /><br />I love Jack Black, Ben Stiller, Rachel Weis, and Christopher Walken, and yet, I hated this movie. There is a plot, but who cares when there's no script. The dialogue is unreal and plain boring, the situations are contrived, the flow of events is slow and somewhat arbitrary, the characters are unsympathetic and uninteresting, and the story, although based on a good premise, is stupid. This movie is a piece of poo.<br /><br />Never mind wasting MONEY on this movie, it's not even worth your TIME spent watching it. Please do not see it... I beg of you!\"\r\n1\tThe only complaint I have about this adaptation is that it is sexed-up. Things that were only hinted at in the novel are shown on-screen for some weird reason. Did they think the audience would be too stupid to understand if they were not shown everything out-right? Other than that, this is very good-quality. All the actors do marvelous jobs bringing their characters to life. For the shallow women out there, it's worth watching at least because Toby Stephens as Gilbert is the sexiest thing ever. If I were Helen I would have conveniently forgotten I was still married the minute I laid eyes on him...<br /><br />Sort of a spoiler- The ending scene is a funny reversal of what happened in the book.\r\n1\t\"\"\"Bell Book and Candle\"\" was shown recently on cable. Not having seen it for a while, we decided to take another look at this comedy. Based on the James Van Druten's Broadway hit, which was a vehicle for Rex Harrison and Lilli Palmer in the early fifties, the film was adapted for the screen by Daniel Taradash. The film was directed by Richard Quine, who turned the play into a delightful comedy.<br /><br />Evidently, judging by some of the comments submitted by IMDb, the big issue seems to be the pairing of the two stars, who had collaborated on \"\"Vertigo\"\", released the same year. Movie audiences didn't think anything about the age difference when this film was released. In fact, most of the aging male stars of that period were always involved with much younger women.<br /><br />The film set in Manhattan during Christmas is a delightful comedy that has enchanted viewers. Kim Novak was at the height of her beauty as it's clear the camera adored her no matter what was she playing. As the witch that becomes human, her Gillian is charming. James Stewart, who plays the publisher Shep' Henderson, is also seen at his best. Mr. Stewart was an excellent comedy actor who shows in here why he was at the top.<br /><br />In supporting roles the wonderful Elsa Lanchester, playing Queenie, is a welcome addition to any movie, as she proves here. Jack Lemmon's Nicky Holroyd, the brother of Gillian, is also good. Ernie Kovacs is also seen as the writer Sidney Radlitch.<br /><br />This is an excellent way to spend a winter night at home watching \"\"Bell Book and Candle\"\".\"\r\n0\t\"*May contain spoilers*<br /><br />I bent over backwards to be fair to this film. I knew it starred Madonna. I knew it lasted a whole week in theaters. I knew it got a lot of bad reviews. I wasn't expecting a deep and thoughtful examination of class, culture and sexuality like we got in the Italian original. The benefit of the doubt lasted a whole ten minutes.<br /><br />Madonna plays a rich, pretentious, nit-witted Gorgon who goes on vacation with her henpecked husband and flippant friends (the brunette woman is as bad as Madonna, exhibiting some really dumb facial expressions). Adriano Giannini plays the ship's first-mate who the Madonna character delights in humiliating and treating like dirt in every scene they have together. Why is she such a bitch to him? Simply because the plot requires it so that later when the two of them get marooned on a deserted Mediterranean island the tables will be turned and he will teach her a lesson. Just as inexplicable is how they fall in love despite having nothing in common and having abused each other for two-thirds of the movie.<br /><br />\"\"Swept Away\"\" is a silly, simplistic, superficial movie from beginning to end. Madonna gives a typically wooden performance. There are many dumb scenes: Madonna singing and dancing atrociously at the demand of Giannini, a fantasy scene with Madonna and a lot of scenes where he slaps her and kicks her in the butt. Guy Ritchie does his \"\"stylish\"\" editing which is laughable here. The film contains some of the worst dialog I've heard in a major movie in several years. The ending is sappy and implausible. It's basically \"\"The Blue Lagoon\"\" meets \"\"Overboard\"\" minus the nudity of the former and the sense of humor of the latter.<br /><br />Maybe Madonna's ego is so big that she insists on continuing to prove herself as a competent actress. Please give it up, Madge, for our sake as well as yours. This isn't her worst movie though. That distinction still belongs to \"\"Shanghai Surprise\"\". She hasn't made anything worse than that...yet.\"\r\n1\tJoseph L. Mankiewicz is not remembered by most today as one of the finest directors in Hollywood history, but this film proves that he is. Already a success by doing sophisticated American dramas such as A Letter to Three Wives and All About Eve as well as successfully adapting Shakespeare to life in Julius Caesar, Mankiewicz does a marvelous job of bringing this hit Broadway play to film and does it with style. Marlon Brando is perfect as Sky Masterson, even if he can't sing too well. He is the only actor who could pull it off perfectly wit his sheer coolness and clarity. Frank Sinatra is a wonderful singer, as expected, and does a good job of acting as Nathan Detroit. Jean Simmons is also very good as Sarah Brown and her scenes with Brando sizzle with great chemistry. All supporting actors do their part, especially Sheldon Leonard as Harry the Horse in a very funny bit. Still, Mankiewicz should be given most of the credit for bringing a fine musical in its own right to the screen in such a way that it feels authentic in many scenes but is still a story in its own world. All in all, Guys and Dolls is a great musical and works on many levels it normally should not have.\r\n1\tLast year we were treated to two movies about Truman Capote writing the book from which this film was made - Capote and Infamous.<br /><br />I cannot imagine a movie like this being made in 1967. A stark, powerful and chillingly brutal drama; elevated to the status of a film classic by the masterful direction of Richard Brooks (Elmer Gantry, Cat on a Hot Tin Roof, The professional, Blackboard Jungle).<br /><br />It is interesting that Robert Blake, who starred in this film, has had so many problems of late that may be related to his portrayal of a killer in this film.<br /><br />This is a film that stays with you after viewing.\r\n1\tThis is a great film!! The first time I saw it I thought it was absorbing from start to finish and I still do now. I may not have seen the play, but even if I had it wouldn't stop me thinking that the film is just as good.\r\n0\t\"Is nothing else on TV? Are you really bored? Well, then watch Phat Beach. However, don't rent it and definitely DO NOT buy it. That would be a big mistake.<br /><br />I watched this on TV and found myself laughing at certain points. I did not laugh long and I did not laugh hard. However, there were subtle jokes and comments I laughed at. If you are looking for an extremely funny \"\"hood\"\" movie then watch Friday. If you are looking for a powerful emotional movie (something that this movie tries at..kind of) watch something like hoop dreams or Jason's Lyric. If you are lookin for some good black \"\"booty\"\" go watch a Dominique Simone porn flick, because the nudity in this movie is nearly non-existent. However, if you have nothing better to do and this is on cable, go ahead and watch it. You will be slightly amused.<br /><br />***3 out of 10***\"\r\n0\t\"You have to figure that when the star's name is listed wrong in the opening credits, you are not in for a good time (the credit reads \"\"Cuba Gooding, J.R.\"\"). Some nice car chase, shoot 'em up, blow 'em up action if ALL you want is action, because the relationship to what plot exists is tenuous at best, and completely unbelievable. The motivations of the characters, especially that of Gooding's at the end, are worse then unbelievable, they are irrational when they are not hopelessly muddled. All I can think is that Andy Cheng must be a really nice guy to get this many good actors into this foul a project (he can't have something on all of them, can he?).\"\r\n1\tI admit creating great expectations before watching because some friends mentioned it (and they are not pervs!) as a must see. And it is a must see! Just don't expect to see something outbreaking.<br /><br />The Freudian psychoanalyzes are interesting in many parts of the film, but there's just too much perversion and it doesn't stick in the end.<br /><br />Some of the good things are the analyzes of Kieslowski's Blue, most of David Lynch's, some of Hitchcock's and perhaps a couple more I missed (I just remembered...Dogville), and I usually don't miss things unless they are too obvious or loose in the air.<br /><br />Other than being repetitive, which makes it too long, the documentary is enjoyable in the sense of noticing some perversions fed by our unconscious, hence the commercial success of most thrillers studied and used as basis for this theory.<br /><br />I really enjoyed the energetic tone of the narration and the effort of Mr. Zizek to revive Freud's theory, which has been numb for too long, specially in north America. Again, it's way over the top and I believe not to be a completely waste of time for I do believe most humans have a dark appreciation for death and blood.\r\n0\t\"This movie has a very Broadway feel - the backdrop, the acting, the 'noise'- and yet that's all it has. Some 'sense' of a Broadway without the bang. <br /><br />The movie is slow-paced, the picture disjointed, the singing 'pops up' on you so that you suddenly are reminded it's a musical. <br /><br />Disappointing: Sinatra <br /><br />Intolerable: Sinatra's fiancé---surely, the pitch and the accent of her voice was unnecessary. <br /><br />Tolerable: Mr \"\"i remember the numbers on my dice\"\" <br /><br />Delight: Brando's understated singing (very biased!)<br /><br />Surprise: how much Jean Simmons looks like Vivien Leigh in her Havana scenes. It's the bone structure! How i would've killed to have seen Miss Leigh in a role challenging Brando again.\"\r\n1\tA common plotline in films consists of the main characters leaving the hustle and bustle of the city behind, and finding themselves in the tranquility of nature. In Power of Kangwon Province, we are shown two stories of individuals doing just that, trying to find themselves through a trip to the popular Korean parks in the mountains of Kangwon Province. However, rather than epiphanal moments, we have two characters whose trip into nature was just another form of escape.<br /><br />The pace of this movie is slow, contemplative. We learn in the end what really brought each to Kangwon Province and we learn how they're connected. For those who want Hollywood glam and for a movie to give them a definitive answer, this movie will not satisfy. But for those who want a movie that leaves them thinking, wondering, affecting them years after, this movie will more than satiate that longing.\r\n0\twhat ever you do do not waste your time on this pointless. movie. A remake that did not need to be retold. Everyone coming out of the theater had the same comments. Worst movie I ever saw. Save your time and money!!!<br /><br />Nicgolas Cage was biking down hills, swimming in murky water and rolling down hills while being attacked by bees but yet his suit was still perfectly pressed and shirt crisp white until the very last scene.<br /><br />Although a good cast with Ellen Bernstein and Cage the acting was just as unbelievable as the movie itself. It is amazing how good actors can do such bad movies. Don't they get a copy of the script first. If you still have any interest at all in seeing the movie at the very least wait for it to come out on DVD.\r\n0\t\"...because 99 out of 100 times, the producers lied through their teeth (or someone else's) to get you to rent or buy their *mercifully censored*.<br /><br />Shock-O-Rama Cinema proves the truth of this yet one more time with the release of \"\"Feeding the Masses,\"\" a possibly well-intentioned but utterly inept and dismal entry into the zombie genre. Folks, this is not only low-budget film-making, this is VERY low-budget film-making by a bunch of people who--I'm sorry, I know they have families who love them--will never, ever be in Variety in any significant fashion. This is one baaaaaaaaaad mooin' pitcher, folks, and not just because it's cheap.<br /><br />The acting is mediocre, but I don't blame the actors; they had no direction. They had no direction because the script was a half-baked zombie fantasy with no sense of real cinematic storytelling. Characterization is thin at best, no thanks to weak dialogue and soporific direction. Have I mentioned yet that the script and the direction are pretty lame? They are. There's no drama, no tension, no great character moments, nothing. The whole premise of government suppression of the media is squandered on sophomoric \"\"commercial breaks\"\" and an undramatic storyline that defies rational analysis and awkwardly shambles to its ridiculous finish. Syd Fields would not be pleased.<br /><br />How could the government suppress the truth of a virulent zombie epidemic when the reality of it would be apparent everywhere? Why would they give it more than a cursory try? In this day and age of cellphone cameras with wireless access, what could they possibly hope to accomplish for more than a day or so at best? Now, if they were covering something up, like their own culpability....but \"\"Feeding the Masses\"\" never explores such possibilities. Instead, it dwells on absurdity and poorly staged events to dig for laughs and/or significance, praying its audience won't notice the near total lack of production value beyond basic film-making equipment. Did anyone in this film get paid? I hope the actors did, if only for their time wasted on career blind alleys like this one; at least the techies got to rack up some legitimate work experience.<br /><br />Even zombie fans will find little to gain from \"\"Feeding the Masses.\"\" The gore is remarkably tame for no-budgeters of its rank, and there are no distinctive set pieces or memorable effects. They're all eminently forgettable, in fact. KNB has nothing to fear.<br /><br />Even junk like the Aussie stillbirth \"\"Undead\"\" was miles ahead of \"\"Feeding the Masses.\"\" Sorry, guys, back to the drawing boards, and take your deceptive marketing with you.\"\r\n0\t\"As a true Elvis fan, this movie is a total embarrasment and the script is a disaster. The movie opens with the beautiful son \"\"Stay Away\"\" and the scenery of the Grand Canyon gives the viewer hope of something special. Elvis gets in the picture and his talent is wasted big time, especially on the rest of the featured songs. I sat through this movie twice, just to make sure it is a piece of junk!!! 1 out of 10!!!\"\r\n0\t*Can anybody tell me WHERE is the COMEDY ??!! <br /><br />*(Charlie Sheen) is a very weak comedian, (Thomas Haden Church) is looking so feeble (with him !), and the whole thing is so thickheaded ! <br /><br />*They tried to make a live comic book which turned out to be super bloody comic nightmare and it wasn't even funny? Like the plan's scene in the bathroom; it was so good with its cinematic imagination but there is nothing more.. except PAIN ! <br /><br />*Donald Sutherland ??! His relationship with his daughter ??!<br /><br />*This is actually a kind of work which they made it just to made it and earn some money from it , but it became such a crime when THIS money would be robbed from the very us whom got deceived by so low art work and an entertainment had absolutely no entertainment AT ALL !<br /><br />*Well, it would've been uglier if it was big production and starring Brando in his golden years with a REAL star.<br /><br />*The Sheen's family in here. Just be aware of that !<br /><br />*Anyone who found themselves admiring this movie or -God Forbid- loving it ! Then you must go directly to therapy before you become more dangerous and hurt anybody else !<br /><br />*(Brando) undoubtedly is a genius but the movie isn't ! And he wasn't intending to be one in here after reading this for sure !! But the main big problem is that no one else ever worked in this thing trying, or wanting, to be a small time smart or even good !!! (Sorry I'm crying now ! The movie's torturing is unbelievable !). <br /><br />*There is a scene where (Brando) hitting (Mira Sorvino) by her shoes ! That was so realistic !? Maybe he was seeing himself in her so he was punishing himself for being in such a crap ! <br /><br />*For the milliard time : This one could've been better (or less worse !). The script, till the train's heist, was nice and I just imagined that they'd escape to have some chase like it's another (Smokey and the Bandit) but with (Brando) as the sheriff. In fact any of those chimeras was much merciful than what I've watched !<br /><br />*Why this masterpiece didn't receive any Razzie award ?! You want to make me believe that there was lower movie than THIS ? I do not think so ! It's a situation where the Razzie's supervisor must himself win one for his negligence !!<br /><br />*Martin Sheen is here also as a guest star maybe for supporting his failure son but ironically the father was as failure as his son ! and why is that ?! Well ! Because I hate Martin Sheen maybe more than I hate comic movies weren't as good as its ambition ! <br /><br />*It's not a comedy movie, NO.. It's a horror one !, and I just hate horror movies especially those which have been propagandized as comic ones ! <br /><br />*Name good thing about it? Hmmm ! Well, this one compared to another Marlon Brando's monster movie (The Island of Dr. Moreau - 1996) would be close to (Casablanca) !! <br /><br />P.S : if you still want to know what are or who are precisely the bad, the ugly and the very ugly in this movie.. Just pray your last prayers and go watch it.. May God Help You !\r\n0\tI thought this was a sequel of some sorts, and it is meant to be to the original from 1983. But a sequel is not taking the original plot and destroying it.<br /><br />I actually had very little expectations to this movie, but I just wasted 95 minutes of life. No suspense - I actually feel clairvoyant, poor acting, and so filled with technical errors, so I as a computer geek just couldn't believe it. They have tried to make it a mix between a generic war movie and 24 hours. But this is not even worthy of a low budget TV movie.<br /><br />Do not see this movie, this is a complete waste of time. Instead get the original. The theme is still valid. Don't let to much power into a machine. And the acting and plot is far more exiting and compelling.\r\n0\tTypical thriller, has been done many times before. Simple plot outline; cop Liotta becomes obsessed with Russell's wife, and he tries to bump off good ol' Kurt so he can have her. This is beyond predictable, it doesn't even try to make you guess, the plot is the plot and there's no thinking outside the box here. I guess then the only reason to watch it is to see how it develops, but nothing is done originally or interestingly. There's not really anything to say about this film, it's not particularly bad, but there's no good points either. Russell plays Russell and you know what you're gonna get when you see him in a film. Ditto Liotta. Stowe has an annoying Cher-esque voice. I read the plot outline and I could see the film in my head, it was so obvious and basic. I watched it and it rolled out in front of my eyes exactly as I had imagined. I felt not a drop of emotion throughout. I have no feeling towards this film, it's as if I never even watched it. Considering this, it's a pretty pointless film isn't it? Still, I'll give it 3/10 for some reason.\r\n1\t\"In the sea of crap that Hollywood (and others) continue to put out, this is one of those diamonds in the rough. A small, simple movie that is very entertaining and leaves you with the feeling that you didn't just waste an hour and a half of your life.<br /><br />Ashley Judd is really quite amazing in this movie. I had never really been a fan or had noticed her before but going back and seeing this early performance of hers convinced me she's extremely talented.<br /><br />Watching this film was an assignment in a college course for me so I was skeptical I would even care. I thought, \"\"Oh boy, some dumb chic flick or feminist male-bashing indie crap...\"\" I was pleasantly surprised. Without analyzing the many relevant themes, I'll just say, if you haven't seen it, do yourself a favor and check it out. Sometimes the down-to-earth, slice-of-life movies are the best, and this is a great one.\"\r\n1\tMendez and Marichal have provided us with a serious, cogent and painful analysis of the social, spiritual, economic and political crisis that 108 years of colonialism have spawned in Puerto Rico. A beautiful island with the most hospitable people I have met and yet because our nation refuses to faces its imperial responsibilities, Puerto Ricans are allowed to wither and die.<br /><br />The spiritual crisis that the colonial situation of Puerto Rico has created, if undermining families, and the basic institutions that sustain any society. Corruption is rampant to the extent that people are not paying taxes (which has led a fiscal crisis for this nation) and a sense of cynicism and distrust permeate the island's culture.<br /><br />Fortunately, a grant allowed this painful yet powerful film to be produced.<br /><br />A must see . . .\r\n0\tI wanted to see an action comedy with a satirical twist (as this film was touted) but this one failed me miserably. For me, the plot was a bit confusing to follow and I rapidly lost interest. I feel so sorry for John Cusack, Joan Cusack, Ben Kingsley, Marisa Tomei and Hillary Duff for getting involved with this movie. I'll remain a fan of all of them but only time can heal my feeling over this one. The one thing I can say positively about the film is that Hillary played Yonica's character so well that I didn't even recognize Hillary; it took me a few scenes to realize that it was her. Luckily I rented it for $1 through Red Box; had I paid to see it in on the big screen, I would be really fuming!!\r\n1\tI found this movie to be very funny, I loved how it made of the politics of modern day sports. This movie is not as funny as South Park but it is pretty funny. And since I am a sports fan I loved how they made fun some of the more ridiculous things in sports. This movie is great for non sports lovers too, probably better for them actually since they have to go through life wondering why people follow sports so closing when there are so many insane rules and intricacies to sports and the fact that it means absolutely nothing. I also found the actual game they came up with to be interesting, it is sort of like horse with bases and psyche outs (for the person shooting). Overall I highly recommend you see this movie, and believe that you will end up loving this movie. However if this style of comedy is not your favorite you probably won't like it. (but that is with any comedy movie)\r\n0\t\"*** REVIEW MAY CONTAIN SOME SPOILERS *** I'll make this review short and sweet. I bought this movie from Best Buy because it sounded interested and had some top actors in it like Kevin Spacey and Morgan Freeman. How bad could it be, right? Well, it's pretty bad. Justin Timberlake plays Pollack, a wannabe journalist who stumbles across a case that may lead to corrupt cops at Edison's Police Force. LL Cool J is Deed, a cop within the force on a special force team called F.R.A.T. (First Response Assault Tactics). He's teamed with an \"\"on-the-edge\"\" bad cop named Lazerov (Dylan McDermott). In the opening scene we see Lazerov & Deed taking on some bank robbers, but at night they are busting a couple of guys doing drugs. I don't want to give to much away, but things turn bad for the guys doing the drugs. Pollack, who works for Ashford (Morgan Freeman) goes to a trial involving Deeds & Lazerov. He suspect foul play and with the help of Ashford, does some investigate that turns ugly. Wallace (Kevin Spacey) who is all within the F.R.A.T. team joins with Ashford to try to bring the corrupt cops to justice.<br /><br />You can tell from the beginning that Freeman and Spacey's performance are pretty lackluster. The only person that give a all out performance is Dylan McDermott. He is a complete nut case in this movie and made a believer out of me. LL Cool J is terrible in this film. He says every line the same way and shows pretty much the same emotion. He was much better in movies like Deep Blue Sea & Any Given Sunday. The film starts off with some nice action but then drags it feet through the rest of the film. The ending is far from satisfying.<br /><br />Don't waste your time with this film. I'm putting it on Ebay this weekend.\"\r\n1\t\"While browsing the internet for previous sale prices, I ran across these comments. Why are they all so serious? It's just a movie and it's not pornographic. I acquired this short film from my parents 30 years ago and have always been totally delighted with it. I've shown it to many of my friends & they all loved it too. I feel privileged to own this original 1932 8mm black and white silent film of Shirley before she became popular or well known. After reading the other comments, I agree that the film is \"\"racy\"\". Big deal! I only wish it was longer. It seems that I must be the only person who owns one of these originals, for sale at least, so I wonder how much it's worth?\"\r\n0\tThis has to be the worst movie I have seen. Madsen fans don't be drawn into this like I was. He is only in it for a maximum of five minutes. This movie is so bad that the only reason why you would watch it is if all the rest of the movies on earth as well as t.v. had been destroyed.\r\n1\tI love this show as it action packed with adventure, love and intrigue. Well some times love! It's so good see a show where all the characters work well together and they treat each other with respect. It's also very good to se Dick Van Dyke in a television role as I have only seen him in Mary Poppins. the mixture of the main characters, Mark, Amanda, Jesse and Steve is very capturing to the audience. This is a show you have to watch!\r\n0\t\"\"\"Ask the Dust\"\" looked intriguing from the trailer, and we especially like all of the actors. Unfortunately, the movie was not compelling enough to be considered drama, and it wasn't funny enough to be a comedy. It practically seemed to satirize itself, and to no entertaining effect. After seventy minutes of waiting for this thing to get better, my wife and I walked out, valuing not having wasted any more time on such nonsense. It simply was not interesting, moving, funny nor artistic. It appears as though it were written, produced and directed by a high school kid; worse yet, it was such a shameful waste of otherwise extraordinarily talented actors, not to mention our time and money.\"\r\n0\tDesigned only to annoy (or amuse) any self-respecting intelligent person. If the director's intention had been for the viewer to dislike the title character, then it would have been okay, but I know that there is no such thing as a Hollywood director who'd make a critique of America's pro-Marxist 60s movement, especially not a filmmaker from the 70s. There is so much idiotic dialog going on here, that sometimes I wondered if I wasn't actually watching a comedy. You wouldn't be at fault for thinking that this is a satire  that's how naïve the movie appears. Spacek has been in her share of Leftist movies which brings me to the obvious, inescapable conclusion that the redhead hick is one of those Hollywood liberal morons. But, I mean, aren't they all? Nice boobs, but s**t for brains.\r\n0\tWith a tendency to repeat himself, Wenders has been a consistent disappointment ever since he hit it big with 'Paris Texas'.<br /><br />'Land of plenty' is no exception. Taking into the fact that I anticipated an average-mediocre film even before I went in, Wenders' ambitions seem to always get the better of him. It's taken for grated now his films are heavy-handed and bombastic.<br /><br />I weren't sure if I was watching a comedy that mocks Middle America or some thriller. The outcome of Diehl's character is wholly predicable. Wender's insistence on layering many many scenes with some rock song is also intensely annoying. He was covering up the holes in his script and direction by jazzing up the scenes.<br /><br />I am certain that many people will find this film important and resonant but in all honestly, this clumsy and didactic effort only speaks of poor direction.<br /><br />Interesting that Wenders professed that while making 'Paris Texas', he had great help from Sam Sheppard with the script. Yes, that was Wenders' best and he should understand now he needs a good scriptwriter. His films from the past 15 years+ were a total mess.\r\n0\t\"Yep, the topic is a straight quote from the movie and I think it's pretty accurate. I was so bored to dead with this pointless effort. All the flashes etc. making no sense after first 20 minutes is just bad film making + If you are epileptic, you would have died at least five times already. Of course all the David Lynch fans would raise a flag for this kind of turkey to be \"\"the best film ever made\"\" because it doesn't make any sense AND when it doesn't make any sense it's got to be art, and art movie is always good. Right? I say WRONG. This kind of artificial art grab is just a pathetic way to try to show that you're a good film maker. Anthony Hopkins as a excellent actor should just stay acting.\"\r\n1\tThe movie was a big Car Commercial. :-)<br /><br />But who cares? I went to the theater to view the Shelby Cobra, Angelina & Cage.<br /><br />So I guess it was a good movie. *bg*<br /><br />\r\n1\t\"A surprising rent at a local video store, I was pleased to find a media satire worthy enough to challenge Oliver Stone's \"\"Natural Born Killers.\"\" And almost as disturbing. I think it went well with my viewing to be in late 2004 watching the Republican Machine do it's magic on the majority of America's television viewing populous. It brings up the question \"\"Are we really that manipulative?\"\" <br /><br />It definitely skewed my view. There was also a larger theological question being provoked- the story of Christ. Could word of mouth and overwhelming dependence on something exploitive as television produce a messiah? Could the story of Christ been exaggerated? Could it have been completely fabricated? It's something the movie puts in a extremely perceptive light.\"\r\n0\tUnderneath the dense green glop of computer graphics there gleamed the astounding art and skill of Ichikawa Somegoro. Alas: it got lost in all the goo. The scenes of Old Edo -- with the courtesan, drifting on the Sumida, rehearsing and acting in the Nakamura-za -- were all exciting and engaging, taking you back to an interesting and rich era. The action on the Kabuki stage, in which Somegoro excels and excites, was more enriching than any of the absurd high jinks that followed. The skill, the energy in the audience, the colors of the sets, were far more satisfying than all the nonsense that took over plot and performance. What a wasted opportunity! One of the best kabuki actors alive, and he gets lost in the dreck.\r\n0\tWhat an awful movie. I love monster flicks but I couldn't watch even half of the terrible acting, cardboard characters and abysmal special effects. There is nothing redeeming about this movie. The characters come from either an endless supply of suicidally stupid cannon fodder or else they are vacuous, uninspiring sock puppets. The plot is formulaic, cut and paste, standard science-run-amok drivel. Even the CGI is horrible. You know it's bad when you can't even depend on the movie to provide some good eye candy. No surprises here,just same old same old. This is truly one of the worst films ever made. Director Roger Corman should be hung from a lightpost so that children can use him as a pinata.\r\n0\tI never wanted to see this film, then one day, for a joke I watched it to see how bad it was; my preconceptions were confirmed.<br /><br />For starters I'd like to question the politics of the film. It hides behind of mask of women 'making it big in the city' but the only way that women can make it big is through using their sexuality rather than their intelligence or skills. These women are nothing more the whores. Are slightly less attractive girls not allowed to be successful? This is not the only right wing message of the film, there are hundreds of shots of American flags and huge wads of cash. A fine example of how the only powerful thing in America is capitalism and anything of spiritual, moral or artistic value is not even given a look in of this film. Money is depicted as the only important thing to young people.<br /><br />The manageress of the bar states that she does not allow drug users in her bar, and then she goes on to poor gallons of hard liquor down her own neck and then the necks of her staff and customers. Any one who knows anything about intoxicants will know that liquor can be just as dangerous as heroin and more dangerous than most illegal drugs.<br /><br />And finally, why are scenes in which the lead character is a point of sexual interest to the audience (when she is getting undressed or with her boyfriend) is her father always involved? We watch get her undressed with the camera virtually caressing her legs while she is one the phone to her father. She 'auctions' her father just as she 'auctions' her boyfriend. I find this most strange.<br /><br />In conclusion, this film is immoral, fascistic, degrading to women and frankly, disturbing. But what else do you expect from Jerry Bruckhiemer?\r\n1\tThis film is, in short, a cinematic masterpiece. The film is moved along brilliantly by intense images that deeply move the sensitive viewer. The film opens during the Spanish Civil War as a group of children seek their revenge on another child. In fact, they are acting out in their world a version of what they have witnessed in the adult world around them. Later we meet three of these children again as adults at a sanatorium. Here we see what life has wrought on each of them. One is a reclusive sexually repressed patient. Another man is a hustler who has become ill. The third child, a young lady, has become a nun and is serving at the sanatorium. This film is an allegory about the effect of violence on the psyche.<br /><br />This film has a climax that is definitely not for the squeamish members of the viewing audience but it is logical as well as profoundly moving. The acting is excellent and the script is quite well written. There is a musical score that provides an undercurrent of dread throughout this film. This is not a film for thrill seekers but a film for a thoughtful audience.\r\n0\tThis is so incredibly bad. Poor actors. You can tell they're trying really hard to polish a turd, but we all know you can't. The writing is so obvious and facile, it's sad watching them try to sell it. The humor and pacing are so labored, it's hard to believe any of these good actors signed on for this.<br /><br />That said, it's so awful that we're having a hard time looking away from the screen. We just have to know where this trainwreck goes. But that's only because we caught it on TV. If we had actually PAID for this, we'd be disgusted. <br /><br />So it gets 2 stars for being at least amusingly/fascinatingly bad. And the incidental music (as opposed to the trying-too-hard indie soundtrack) is laughably reminiscent of an episode of Scooby-Doo... but not as good.\r\n0\t\"It was the tag-line \"\"in the tradition of American Pie\"\" that fooled me into renting this movie. What I got was a piece of junk in the style of Jackass, with the major difference that compared to this Jackass the Movie seems like a Citizen Kane.<br /><br />This movie made me regret that I rewarded other movies with 1 out of 10, because now I can't go beneath that. This one makes quite some bad movies look like cinematic feats.<br /><br />I actually turned it off after 45 minutes, and that's something I very rarely do. But it was just too plain boring, stupid, uninteresting and unnecessary.<br /><br />Can't believe some people actually reward this with 10 out of 10. What did your parents do? Drop you on the head when you were just a child? Or was it the very first movie you ever saw, so you got nothing to compare it to? Are you still a virgin and are breasts all you ever think off? Something must be wrong, at least.<br /><br />My advice: stay clear of this one. Even if your in the mood for a simple movie that doesn't require thinking, choose something else, or you'll regret it for sure.\"\r\n0\tMan, I really find it hard to believe that the wonderful Alan Ball had anything to do with this mess. Having seen the first two episodes thus far, I think I can safely say this show isn't going to be on my must see list. It's just got so many things working against it.<br /><br />None of the actors cast are particularly good. Anna Paquin as the lead character Sookie, is just awful. I remember her being better in a lot of other things I've seen her in so maybe it's just the writing. She's not really much fun to look at either, there are moments where to be honest she looks downright ugly. The actor who plays Bill is marginally better, if only because his character is supposed to be sort of wooden and aloof. The other actors do their best but with the cliché characters with difficult to perform accents they are given it's a tough job. Tara is an absolute misery to watch, Rutina Wesley absolutely murders the accent. It's like nails on a chalkboard bad. Almost as awful is Nelsan Ellis, it's difficult to understand what he's even saying sometimes. Both his character as well as Tara's also seem a bit racist to me. I don't know, having a character say 'whycome' on an HBO show that isn't The Wire just seems a bit odd. Rounding out the cast so far are Sookie's doddering grandmother, her sex addict brother, and the only bit of genius casting I've seen in William Sanderson as the sheriff.<br /><br />The story seems to be meandering towards it's destination at this point, with no real worry about keeping the viewer interested. The romance stuff is very Dark Shadow-sy. Although this show ups the camp factor from something like those old Dark Shadows episodes times about ten. At times it seemed so campy to me, that I just have to assume it was intended to be. But unlike a show such as Buffy, that pulled camp off masterfully, this show does not. Out of place with the campiness is the extreme gore and graphic sex of the show. I'm not averse to either of these when they are done well, as they have in many other HBO shows but here at least they prolonged rough sex scenes involving Jason Stackhouse seem a bit over the top and pointless.<br /><br />About the only nice thing I can really think to say about this mess is that I liked the opening title sequence. HBO has had a string of bad luck with their shows lately, I hope they cancel this after the first season and try to get something better on the air.\r\n0\tI was really disappointed with this film. The first Waters movie I saw was Serial Mom and I loved it. Then I saw Pecker and I loved it. Then I watched Polyester and really sort of hated it. The only thing I liked about that movie was DIVINE. She/He had a hell of a lot of talent. I was truly surprised. As a whole, I wouldn't recommend this film...\r\n1\t\"If you want to learn something about the Spanish Civil War and about all the political details and intrigues, let me tell you, you've chosen the wrong film.<br /><br />This is a vision of the war as it happened in Majorca, a small island off the coast of Spain. When a war like this happens in a small island that takes position for the traitor almost at once, there is no war in the open. The soldiers are sent to the front to fight, in the mainland, while another kind of war happens at home, on the small island. There, neighbours tell on other neighbours, sometimes because their political views are contrary to the new regime, but many people are told on because of old family fights, or maybe the silent introvert who has no friends is told on by someone who wants to \"\"earn some points\"\". And these things don't happen in the open. There were some trials, true, but many other times people would just be woken up in the middle of the night, taken out of their homes to the closest cemetery where they would be killed. And the next morning the bodies would be found, and people would have an idea of what had happened, but nobody would dare to speak or to do anything. We're not talking about soldiers killing someone they had never seen in their life. We're talking about people killing their neighbours, and probably saying hello to their widow the next day, and even attending the funeral for the guy they had killed. We're talking about villages with one or two thousand inhabitants, where everybody knew everybody.<br /><br />I am from that small island and I've heard the stories my grandparents told me, and I must say that this film upset me, oh yes, it did; but I also found it remarkably beautiful and moving. The initial violence is not something the director or the writer made up, that's how things happened during that war. A kid knowing that his mate's dad is in the fascist squad that killed his dad? Completely possible. All that happened later on? Possible too. TB was real too. At that time my island was not the holiday resort it has become. People were poor, illiterate, and worked in small farms. After the war there were times of hardship.<br /><br />So, you won't find a war story in this film, or at least not the kind of war story you expect. There are no battlefields, no soldiers, no political intrigues. This is the meanest kind of war, which happens when the space is limited (just check the size of the island), when neighbours fight with their neighbours, when members of the same family fight each other, and they live in a place where everybody knows everybody. You'll find a story about the damage that this particular kind of war can cause to people and the story of how they survive that damage, or maybe they don't.<br /><br />I must mention the excellent work done by the writers who adapted the novel and by all the actors, who managed to sound really Majorcan. That was remarkable.\"\r\n1\t\"Saturday June 3, 6:30pm The Neptune<br /><br />Monday June 5, 4:30pm The Neptune<br /><br />Few celebrations of ethnic and cultural identity succeed as mightily as Carlos Saura's brilliant interpretation of Isaac Albeniz' masterpiece Iberia Suite. At the approach of its centennial, Saura drew together an unprecedented wealth of talent from the Spanish performing arts community to create this quintessential love song to their homeland. The twelve \"\"impressions\"\" of the suite are presented without narrative in stark surroundings, allowing the power of each performance to explode before Saura's camera. Creative use of large flats and mirrors, moved throughout the set, combined with screens, shadows, fire, rain and rear projection add glorious dramatic effects to the varied selections of song, dance and instrumental performance. Photographs of Albeniz reappear throughout the program, connecting the passion of the music to its great creator. Saura encompasses all Spaniards on his stage from the beautiful elegance of elderly flamenco dancers in traditional costume to children joyously dancing with their instructors.\"\r\n0\tAdrian has just gone out of the asylum, being rich and with no parents, his life seems empty. One day, he meets Gonzalo, a poor boy whom mother is prostitute. Desperate for earning some money, Gonzalo helps Adrian to search about his life and who where his parents. This is a movie from a new director, and it is perfectly clear in most of the film: scenes not correctly directed, dialogues a little forced, some incoherences in the script...Anyway, the ending is unexpectedly well done (well, just a little) and that saves a little the film. Actors are known and with great quality, nevertheless, they are not inspired enough to make the movie interesting; all of them have done better papers in other film. The film results boring and probably you will spend most of the time thinking how much time will pass until it ends. Of course there are lots of worse films, but, sure, there are many many better ones.\r\n0\tConsidering the risk of showing same-sex relationships before the late 1980's, Personal Best could have done better to play the same-sex relationship between Hemingway (Chris Cahill) and Donnelly (Tory Skinner) as a more than experimental phase of Cahill's life.<br /><br />It seems to me that the creators of this movie threw in the same-sex relationship between two fairly attractive women in order to attract viewers. Also consider the 90 seconds of exposing the crotches of several women jumping backwards over a high jump pole. This random scene had VERY LITTLE relevance to the movie and it appeared as though this was done merely to keep the audience interested in this bland movie. I suppose the producers were trying to counteract the boring plot and the even more boring setting of the movie (the 1980 Oregon Track and Field Competition).<br /><br />This review may seem harsh, but it is the truth. The exploitation of young Muriel Hemingway's body and the same-sex relationship ruined any credit that I would have given to this film.<br /><br />Pepper Thompson\r\n0\tI went to a prescreening of this film and was shocked how cheesy it was. It was a combination of every horror/thriller cliché, trying to comment on many things including pedophilia, Satan worship, undercover cops, affairs, religion... and it was a mess. the acting was pretty washboard; the kid and the Jesus dude were alright, but apart from them.... Anyways. I admire the effort (though slightly failed) on the attempt at showing the Christian people in a different way...even though they did that, the way it presented the gospel was a bit stock and kiddish. But then again, it may have to be since he was talking to a little kid... no. actually, I've decided it's just all around bad. music... oh my gosh... horrible... toooo over-dramatic. Okay. I felt bad for the people who made this movie at the premier; It seemed like a poor student project. I'm going to stop ranting about this now and say bottom line, go see this movie if you want to waste an hour and fifty minutes of your life on crap. there you go.\r\n0\t\"Della Myers (Kim Basinger) is an upper-class housewife that lives in a private condominium in the suburbs with her twin children and her abusive husband Kenneth (Craig Sheffer). Della gives all the attention to the twins, neglecting their house and her appearance and upsetting Kenneth. On the Christmas Eve, she drives to the local mall in the night to buy wrapping paper for the gifts, and she does not find any parking space available. When she sees an old car parked on two spots, she leaves a message to the owner calling him \"\"selfish jerk\"\". When the mall closes, Della's car is hold by the driver of the old car and she is threatened by four punks  Chuckie (Lukas Haas), the Afro-American Huey (Jamie Starr), the Chinese-American Vingh (Leonard Wu) and the Latin Tomás (Luis Chávez). When the security guard of the mall protects her, he is shot on the head by Chuckie, Della speeds up her car trying to escape from the criminals. However she crashes her truck nearby a forest while chased by the gang. She takes the toolbox and hides in the wood, fighting against the gang to survive.<br /><br />A couple of days ago, I saw the trailer of \"\"While She Was Out\"\" and I was anxious to watch the DVD. Unfortunately the trailer is better than the movie, and I am totally disappointed with this dull and implausible collection of clichés. Della Myers is presented as an insecure and neglectful housewife and inexistent as wife; the motherhood is her only interest in her concept of family. She is chased by four mean criminals but she defeats them with a toolbox that seems to be the Batman's utility belt. Therefore, the plot is so absurd that irritates. The gang of criminals is formed by the favorite cliché of American movies, with an Afro-American, a Chinese-American and a Latin together with an American lord to be politically correct. Kim Basinger has a decent acting, but their children are too young for a fifty-five year-old woman. My vote is four.<br /><br />Title (Brazil): \"\"Enquanto Ela Está Fora\"\" (\"\"While She Was Out\"\")\"\r\n0\t\"As a South African, it's an insult to think that someone was actually paid to produce this nonsense!<br /><br />Despite the fact that the director was one of the writers for the original Shaka Zulu mini, this \"\"addition\"\" to the series is appalling! The original series was based on historical facts about a man who was a great strategist, leader and warrior. A man who played a large role in shaping the history of local tribes in South Africa.<br /><br />The plot of this film, however, is nothing but hogwash, scraped from the bottom of the barrel by a writer that has failed to impress since the mid-nineties.<br /><br />While Omar Sharif and Henry Cele are good actors, what is David Hasselhoff doing here, rescuing drowning slaves with his red buoy and bleached smile?<br /><br />I kept expecting blond, busty women to appear out of nowhere and run across the screen in their tiny red bathing suits, for no apparent reason. Not that this would've been any more bizarre than the fantastical plot line that was probably dreamed up after 10 pints of beer at a fancy dress party, where someone's caveman costume inspired the writer to return to an African theme for his next \"\"blockbuster\"\".\"\r\n0\t\"I'm going to write about this movie and about \"\"Irreversible\"\" (the (in)famous scene in it). So you are warned, if you haven't seen the movie yet. This are just my thoughts, why I think the movie fails (in the end - pun intended).<br /><br />Acting wise, Rosario Dawson is really good and almost conveys portraying someone almost a decade younger (a teenager in other words). The villain guy is good, but loses his \"\"evil\"\" touch right before the end. If he really never changes, then why would he let a woman tie him up? He wouldn't, period. Then we also have the bartender/2nd rape Dude. Actually I don't think you would need him. At least not for the 2nd rape, but more about that later on.<br /><br />Let's reprise the story. Rosarios character is sexually insecure, might even have lesbian tendencies (see her scene with a female friend). This wasn't intentional, as Rosario states herself, but there is sexual tension between them. Rosario's character meets a guy, who is a sexual Predator, in all the bad senses. But he makes an impression on her.<br /><br />Rosario commented that her character had a boyfriend before. I beg to differ. Because she acts, as if it is her first boyfriend, which also underlines her phone conversation with her mother. Talking about her mother, here's another problem. After the first rape takes place, Rosarios character doesn't tell anyone what happened. Seiing that her relationship with her mother is a very close one, nothing of that gets explored after that. If Rosarios character wouldn't call her mother anymore or would behave strangely, the mother would be worried like crazy. There was so much potential here. Also her female friend: We see her at the party, it's obvious there is something going on and \"\"boom\"\" she is gone.<br /><br />The first rape is almost unbearable to watch. But feels like a pinch, when you compare it to the ending (rape), which feels like you're getting hit with a sledge hammer! After rape no. 1 we get too stretched out scenes. Threads are opened (such as her construction work is an indication that she might be lesbian, as one guy states who tried to hit on her ...), but left in the open. No real social contact is established, if you leave the bartender guy out, who is involved in the 2nd and last rape scene. It's apparent that he isn't a \"\"nice\"\" guy and his character get's fleshed out a bit. But when Rosarios character meets her rapist in class again, his being in the movie seems pointless. We get the point that Rosarios character isn't the same anymore, that she went \"\"bad\"\" and is able to hurt people. (Too) Many scenes show exactly that, her being without emotion just doing drugs and other stuff. Back to Rapist #1 who cheats on a test, gets caught by Rosarios character and they decide to hang out together again (really?). As absurd as that sounds, the guy meets up with her, not without us having seen him beforehand, with another girl (very likely that he raped her too, although we never see anything of that, fortunately) and his football career. Well career is a stretch and he is bullied. This is an attempt to give his character some depth and it almost works, but then again is too cliché to stay with you. So Rapist #1 submits to Rosarios character ... why exactly? Because he promised her, it was her day? Again, really? A guy like that never loses control, especially with a woman he raped before ... I guess this is supposed to show us how stupid he is. The bartender guy would have worked as someone who could have hit him over the head or something, but letting him submit like that, just feels wrong. Another possibility would have a drug in his drink.<br /><br />So rapist #1 undresses and get's blindfolded and let's Rosarios character tie him on a bed .... seriously, that's just crazy! But what comes next, is even crazier. First she talks to him, then she \"\"shuts\"\" him up and forces an object into him. This is as difficult to watch as rape scene number one. This isn't about what this guy deserves or not, it's just intense. And of course that was what they were aiming for. Now after she is \"\"done\"\" the bartender guy comes in and rapes ... rapist #1. If this really should work as a revenge movie, it would have been better if Rosarios character herself would have been doing all the \"\"revenge\"\". Having a henchman doing the job, takes away everything that was built up.<br /><br />This isn't supposed to be entertaining/enjoyable, it's a hard watch & it is Art-house. But the 10 minute (I didn't count ) rape scene at the end, just smashes everything. Rosarios character is more or less, only watching what happens. Which brings me to the biggest disappointment.<br /><br />Irreversible comparison: \"\"Irreversible\"\" had the rape scene, but the movie went on (even if it was back into time). Rosario is looking into the camera in the end and says something about having to get over this. First, that comes a bit too late, that should see her say that after the initial rape. And secondly and most importantly, this is where the Art-house movie should've come in. It is more interesting seeing were Rosarios character would go after the second rape scene and how she would cope, with what she had done. But then again, she didn't actually physically do that much (see above) ... a broken character that the movie cuts off ...<br /><br />Good intentions (Talia and Rosario had worked before), but failing to convey most of the things, they set out to do (even if you can see what they meant, it has to be convincing, otherwise it doesn't work) ... not to mention the overlong rape scenes as they are ...\"\r\n1\t\"This film has all the size and grandeur of many of the great biblical epics of the 1950's and '60's. But it is also perhaps the first that really humanizes the biblical characters themselves. The best thing about it is that it does not diminish them in the eyes of the viewer. This is a unique and compelling balance that helps us to realize that even great people like David are flawed people who find their faith and greatness in facing their flaws.<br /><br />The actors are all first rate in the film from Gilbert Barnett as David's second son Absolom through to the wonderful Susan Hayward as Bathsheba. Hayward is at her best in this film. Her own truthful but larger than life style of acting is quite at home here. She is ever the seductress, but she plays the role in such a way that you sympathize with her.<br /><br />Raymond Massey does a great job as Nathan the prophet. As a child when I first saw the film, Massey seemed like he truly had just conversed with the Lord himself and was an awesome sight. No doubt helped also by the great music composed by the always amazing Alfred Newman who also had great successes in other biblical epics like \"\"The Robe\"\" and \"\"The Greatest Story Ever Told\"\" along with perhaps 100 other films too! The cinema photography by Leon Shamroy is well done and adds to the size but also the intimacy of the film. Henry King, a truly underrated film director who like William Wyler never really pigeon-holed himself into any one genre, pulls together a larger than life production that never loses sight of the love story between David and Bathsheba and David's own deep struggle with his faith in God. The path tread in this film could have been very hokey, but King keeps it real and interesting all the way. Plus we never lose the sense of mystery about trying to understand the will of God, just as David himself is struggling with the same. From the first scene where a soldier dies trying to save the ark from destruction. David is not satisfied with Nathan's answer, (to paraphrase)that no one can understand the will of God. This is the journey we embark on right through to the powerful ending where David is finally confronted with himself.<br /><br />Finally this film belongs to Gregory Peck who wonderful as King David. His David is a man you can believe could rule a country ruthlessly but was at one time a faithful singer of psalms. This is one of his best performances.<br /><br />I don't see this movie on television much anymore, but when I do I never fail to watch it. I think it still holds up very well today.\"\r\n0\t\"This has the logical consistency of marshmallows filled with ketchup, and the overall aftertaste is just as disgusting. <br /><br />Will be used in the 9th circle of Hell at recreation time. Just plain torture.<br /><br />I would rather choose to watch 90 minutes of my computer going through 5400 blue screens of death than watch this appalling drivel again - ever. Horrible. Horrible. Horrible.<br /><br />You know, the good thing about Swiss Cheese is that along with the holes you get some cheese: here it's ONLY holes - and the excitement factor? Well that turns watching paint dry into an adrenalin rush and an Olympic speed sport.<br /><br />My brain hurts from trying to work out who OK'd this drivel, did they think about the premise? (I sincerely hope not, otherwise there is no redemption) the only consolation is they had the pleasure of sitting through the rushes. Made for TV should not be a synonym for: \"\"Sure, let the horses bowels run loose across the living rooms! Our audience are idiots!\"\"<br /><br />I was hooked just to know how it could get any worse. This is not a good sign, folks. <br /><br />Hallmark should be ashamed for releasing it.<br /><br />I should be ashamed for watching it.<br /><br />I am ashamed. I'm off for a long shower.\"\r\n0\tI rented this movie tonight because it looked like a fun movie. I figured that you really couldn't go wrong with a concept of Ex Girlfriend with super powers. <br /><br />... but the movie was confused and pointless ...<br /><br />it seemed that at every turn the writer kept throwing junk in. Also the writer kept throwing in way too much toilet humor and sexual situations that only a teenage boy could love.<br /><br />It seems that it could have been so simple to draw a story out of Fatal Attraction Super hero .. but I guess not. <br /><br />This is not a fun romantic comedy it was advertised to be. You could not take a child to see it and you would be embarrassed seeing it a date. <br /><br />If the writer could have done a basic story around the high concept and cleaned it up - the movie might have a fighting chance. <br /><br />A serious waste of time.<br /><br />B\r\n1\t\"This first-rate western tale of the gold rush brings great excitement, romance, and James Stewart to the screen. \"\"The Far Country\"\" is the only one out of all five Stewart-Mann westerns that is often overlooked. Stewart, yet again, puts a new look on the ever-present personalities he had in the five Stewart-Mann westerns. Jeff Webster (Stewart) is uncaring, always looking out for himself, which is why he is so surprised when people are nice and kindly to him. Ironically, he does wear a bell on his saddle that he will not ride without. This displays that he might just care for one person- his sidekick, Ben Tatum, played by Walter Brennan, since Tatum is the one that gave it to him. Mann, yet again, puts a new look on the ever present personalities he put into the five Stewart-Mann westerns. He displays violence, excitement, plot twists, romance, and corruption. The story is that Jeff and Ben, through a series of events, wind up in the get rich quick town of Dawson, along with gold partners Calvet and Flippen, and no-good but beautiful Roman and her hired men. They are unable to leave, because crooked sheriff Mr. Gannon (McIntire) and his \"\"deputies\"\" will hang them, since the only way out is through Skagway, which is Gannon's town. But, eventually, McIntire comes to them, but not to collect Stewart and/or his fine that he supposedly owes to the government. What is McIntire there for? He is there to cheat miners out of their claims and money. People are killed. A sheriff for Dawson is considered needed, and Calvet elects Stewart because he is good with a gun. Stewart, however, refuses the job, because he plans to get all the gold he can, and then pull out. He also refuses it because he does not like to help people, since law and order always gets somebody killed. So, Flippen is elected instead. A miner is killed because he tries to stand up to one of Gannon's men, a purely evil, mustachioed fancy gunman named Madden, who carries two guns, played by Wilke. Flippen attempts to arrest Madden and see that justice be done, but he cannot stand up to him, so he becomes the town drunk. A man named Yukon replaces Flippen. Stewart and Tatum start to pull out, but are ambushed by Gannon's men. Tatum is killed, and Stewart is wounded. Stewart finally realizes that he must do something, or Gannon will take over Dawson, set up his own rules, and it will become his town, just like Skagway. The audience also realizes what Stewart must do. Another thing that the audience realizes is that Stewart is the only thing that stands between the townspeople and Gannon. If Stewart leaves, Gannon would take over the town. If Stewart stays and keeps on not doing anything about it, the townspeople will be killed one by one mercilessly and uselessly. This is where a great scene occurs. Stewart walks into his cabin. He has a sling on his arm. For a few seconds, his gun, in the gunbelt, is hanging on a post beside his bed, the gun is close up, Stewart is in the background, just inside the door. He stares at it for a few seconds. He tosses the sling away. The sling lands on the back of a chair, and falls to the floor. This is symbolic, because he is throwing away his old life, which consisted of not caring about anybody but himself. He comes into his new life, of helping people when they need help. What ends the film is a guns-blazing, furious show of good against evil, and a genuinely feel-good feeling that everything will be alright.\"\r\n0\t\"The point of Wolfe's original novel -- indeed the point of the whole story -- is that things take place because of a carefully calculated sense of expediency. The goal is survival within a particular kind of life style. The novel is full of malice. The only relationship that rings emotionally true is that between Sherman and his daughter, Campbell, and that's only touched upon. That aside, everyone is out for what he can get in the way of publicity, power, money or self aggrandizement.<br /><br />Wolfe was criticized for hitting every character and every social segment of New York City over the head. His response was a denial. After all, he lived in New York himself and belonged to a neighborhood improvement committee and other admirable organizations, exactly the qualifications one would want on his resume in order to deny that he disliked New Yorkers. (Wolfe has a PhD in American Studies from Yale and is no dummy.) Those supposed weaknesses are what made the novel memorable. Nobody was any good. And Sherman McCoy wound up broke, a professional protester for social justice. The movie throws all of that away and imposes a moral frame on the story that simply doesn't fit. Wolfe did his homework. The novel was rooted in reality. Every event was not only possible but thoroughly believable. Wolfe might have made a great cultural anthropologist -- he knows how to get inside a system and record its details.<br /><br />Yes, any of us might have found ourselves, as Sherman and his mistress do, stuck in the South Bronx, threatened by a couple of black kids, and making a getaway after bumping into one of them. That scene is transferred neatly from print to celluloid. <br /><br />But after that scene the movie seems not to trust its audience and at times become frantic in its attempt to spell out its message, however nebulous the message is. <br /><br />Sherman might accidentally hit some kid and be arrested for it as he is in the novel, but he would not immediately upon his release from jail go back to his phenomenally expensive condo, take out a shotgun, and start shooting into the ceiling with it, as he does in the movee. In what's supposed to be a funny scene, ceiling plaster falls all over the party guests and they scurry away, shrieking. It simply would not have happened. The movie has left the novel's unspeakably detailed reality in the dust. Wolfe's sensibility, the work he put into capturing the real, has been lost. What we get instead is a noisy, fantastic, and silly scene that doesn't do anything except wake the audience up. Similar empty scenes follow, screaming out for Wolfe's verisimilitude.<br /><br />The movie also fails because it thrusts a lot of sin and redemption into an entertaining story of moral nihilism. Here we see \"\"Don Juan in Hell\"\" at the opera. We get lectures on redemption from a poet with AIDs. We see a lot of guilt in Sherman. A black judge who preaches from the bench and gives one of those final speeches about how we all have to start behaving nicely again. A reporter who feels sorry for Sherman after turning him into a sacrificial lamb. And a happy ending in which Sherman gets off by breaking the law with an idiotic grin. The scene sits on the movie like a jester's cap on a circus elephant's head. <br /><br />The movie not only makes points that are already trite and unoriginal, it overstates them, as if the audience were incapable of absorbing any subtleties.<br /><br />It's not the acting or the direction that's poor. The film's not bad in those respects. And the photography is pretty good too, including two rather spectacular shots -- the gargoyles of the Chrysler building and the landing of the Concorde. It's the script that is thoroughly botched.<br /><br />The first half of the movie, roughly, is okay in conception and execution. It keeps some of the little details from the novel. Sherman and Judy's dog is named Marshall. Who the hell would name a dog Marshall? It loses its focus almost completely in the second half and on the whole is barely worth watching.<br /><br />Wolfe's cynical redneck right-wingism may be offensive to a lot of people, but he's got the cojones to lay his percepts out. Alas the writers and producers did not have the courage to pick them up and thus blew the chance to make a fascinating study of New Yorkers.\"\r\n0\t\"Carlos Mencia continually, violently, hatefully screaming \"\"B**ch!\"\" at women is like screaming \"\"N**ger!\"\" at black people, except it's worse. Remember, the B word, unlike the N word, is the only pejorative term that is still associated on a daily basis with violence. \"\"B**ch!\"\" is the last thing women hear before they are raped, beaten, or murdered. This guy is perpetuating violence by hatefully using the language of violence. Sounds like he may be a gay guy trying to cover by woman-bashing, so that he will sound like a hetero. And how about all the Nazi white guys in his audience giving the fascist salutes while their stupid little bimbo white women whimper tee hee hee at their side, clearly terrified to protest this tidal wave of woman-hating. Tee hee hee. Bet Mencia doesn't believe or support free speech for THEM! Come on, Carlos  do you want women to have the free speech to b**ch-slap you as loudly and violently and big-mouthed as you do, or do you think \"\"free speech\"\" is only for men to crap on women???\"\r\n1\tI love this movie. It is great film that combines English and Indian cultures with feminist-type issues, such as girls wanting to play sports that were previously reserved for men. It shows the struggles of both an Indian person wanting to break outside her cultural barriers and women wanting to break outside the gender restrictions found in sports, especially in England at the time. I feel that the cultural struggles are more emphasized than the other issues.<br /><br />In contrast to the other comment, I do not think this movie is anything like Dirty Dancing or any other such chick flick. This move is loved by many types of people, men and women, young and old alike.\r\n1\tWho the hell rests at night whilst walking in the desert and travels in the heat of the sun, and these people are supposed to be professional trackers/journeymen!! Who the hell rests at night whilst walking in the desert and travels in the heat of the sun, and these people are supposed to be professional trackers/journeymen!! Who the hell rests at night whilst walking in the desert and travels in the heat of the sun, and these people are supposed to be professional trackers/journeymen!! Who the hell rests at night whilst walking in the desert and travels in the heat of the sun, and these people are supposed to be professional trackers/journeymen!! Who the hell rests at night whilst walking in the desert and travels in the heat of the sun, and these people are supposed to be professional trackers/journeymen!!\r\n1\tI think the film is educational. However, it fails to treat the issue which sparked so much controversy: plural marriage. Also, the film fails to reveal what the LDS church espouses. Big opportunity was missed to tell the world what they actually believe. I could not get a clear idea of what it is LDS views are on central topics of religion.<br /><br />I have many LDS friends and they are nice people. Would have been nice to get a clearer picture of how they view their prophet's more controversial statements. Maybe these statements are just too controversial to be treated in a film format, but it would have been great to hear the whole story of Joseph Smith's truly interesting life. After all, it gives insight into American thought on religion in the 18th century. Hope they do some documentaries on this fascinating subject, allowing historians to comment on Smith's life. We may have a Mormon president some day. After all, Smith ran for president.\r\n1\t\"This is the kind of film that, if it were made today, it would probably star Sandra Bullock and Hugh Grant; actually, now that I think about it, this one is quite liable to be remade one day. It's pleasant, but with no depth whatsoever. It suffers from the almost fatal miscasting of James Stewart in a role he is about 20 years too old for, and as a result there is no chemistry between him and the beautiful Kim Novak. Ernie Kovacs, in the small supporting role of an aspiring writer, is the only actor in the film whose performance approaches what you might call \"\"wit\"\". (**1/2)\"\r\n0\tWow...OK. So, after reading the little feud on here, I decided I had to see this movie for myself. This movie is HORRIBLE. I stopped watching it. I strongly recommend cleaning a closet instead of watching this movie, you'll be more spooked/entertained.<br /><br />It's low budget with bad acting.<br /><br />Whoever is giving this movie 10s is completely incorrect and should be disregarded.<br /><br />I am in no way connected to any of the other reviewers.<br /><br />Simply put, this movie is not worth watching.<br /><br />Very, very BAD MOVIE.\r\n0\t\"What a horrible comedy. Totally lame. The supposed \"\"humor\"\" was simple and stupid. Stanly Tucci (a great actor) had the only parts worth chuckling at. And he was tied up and gagged at the time. Don't waste your time with this one. It deserves a 0/10.\"\r\n0\tFirst of all, if you'r a fan of the comic, well, you'll be VERY disappointed I'm sure ! Low budget movie !!! Largo is supposed to be Serbian in the comic, now suddenly he becomes croatian, pfff! chicken producers, it gave some spice and guts to the comic ( By the way, in the film, his father speaks Serbian and he speaks croatian... Lol ). The striking N.Y. Winch building becomes a common average-small yacht in H.K. The good looking Largo becomes some unshaved Tzigan/Turkish looking guy. Freddy the cool 'scarface' pilot becomes some fat, out of shape, sad, average guy. Simon, Largo's good buddy, does not exist at all !? He gave some pepper ! Largo doesn't throw knifes at all, but just some snake stares... The whole story is confused and looks like a pretentious TV-film. French directors and producers, if you don't have the money, the ability or the technology to adapt correctly the comic, please stick to some romance shooted in Paris. Very very bad film, good thing I just rented it, don't count on me to watch the sequel ( If there is any ! ).\r\n0\tDisney? What happened? I really wish the movie had been set in the 60's ;like the book was. And I really could have dealt with cheap special effects in order to save the budget for a more accurate adaption..... I'm glad that, maybe, someone might be influenced to read the books..... but, The Man With Red Eyes interchangeable as IT? And what's up with the volcanic upheaval? Where was THAT in the book? Peter Jackson! Save us!!!! A long time ago (1978) I heard that there was European version of this film. I sure wish I could id it. I can only imagine it might be closer to the real story than this poor adaption. This movie needs to be X'd.\r\n1\tIf there's one genre that I've never been a fan of, it's the biopic. Always misleading, filled with false information, over-dramatized scenes, and trickery all around, biopics are almost never done right. Even in the hands of the truly talented directors like Martin Scorsese (The Aviator) and Ron Howard (A Beautiful Mind), they often do a great disservice to the people they are trying to capture on screen. Skeptiscism takes the place of hype with the majority of biopics that make their way to the big screen and the Notorious Bettie Page was no different. Some critics and moviegoers objected to Gretchen Mol given the role of Bettie Page, saying she was no longer a celebrity and didn't have the chops for the part. I never doubted Mol could handle the part since, but I never expected to as blown as away by her performance as I was upon just viewing the film hours ago. Mol delivers a knockout Oscar worthy performance as the iconic 1950's pin-up girl, who, after an early life of abuse (depicted subtlety and tastefully done, something few directors would probably do) inadvertently becomes one of the most talked about models of all time. The picture covers a lot of ground in its 90 minute running time yet despite no less than three subplots, there is still a feeling that there may be a small portion missing from the story. Director/co-writer Marry Harron and Guinevere Turner's fantastic script is only marred by a too abrupt and not as clear as it should be ending. Still, credit must be given to the two ladies for creating a nearly flawless biopic that manages to pay tribute to both its subject and the decade it emulates masterfully. Come Oscar time, Mol, Turner, and Harron should be receiving nominations. Doubt it will happen, though there certainly are no three women more deserving of them. 9/10\r\n1\t\"This is one of the best animated family films of all time. Moreover, virtually all of the serious rivals for this title came from the same creative mind of Hiyao Miyazaki and his Studio Ghibli. Specifically, other great films include \"\"My Neighbor Totoro\"\" and \"\"Kikki's Delivery Service.\"\" Spirited Away is quite good, but a bit too creepy for typical family fare - better for teenagers and adult. The one thing that sets \"\"Laputa: Castle in the Sky\"\" apart from other films by Miyazaki is that it is far more of a tension-filled adventure ride.<br /><br />Why is this film so good? Because it's a complete package: the animation is very well done, and the story is truly engaging and compelling.<br /><br />Most Japanese anime is imaginative, but decidedly dark or cynical or violent; and the animation itself is often jerky, stylized, and juvenile. None of these problems plague Castle in the Sky. It has imagination to burn, and the characters are well drawn, if slightly exaggerated versions of realistic people. (None of those trench-coat wearing posers) There is plenty of adventure, but not blood and gore. The animation is smooth, detailed, and cinematic ally composed - not a lot of flat shots. The backgrounds are wonderful.<br /><br />The voice acting in the dubbed English version is first rate, particularly the two leads, Pazo (James Van der Beek) and Sheeta (Anna Paquin). The sound engineering is great, too. Use your studio sound, if you've got it.<br /><br />One aspect that I particularly enjoyed is that much of the back story is left unexplained. Laputa was once inhabited, and is now abandoned. Why? We never know. We know as much as we need to know, and then we just have to accept the rest, which is easy to do because the invented world is so fully realized. Indeed, it is fair to say that the world is more fully realized than most of the minor characters, who are for the most part one-dimensional stock characters (e.g., gruff general, silly sidekick, kooky old miner, etc.) Highly recommended for people aged 6 to 60!\"\r\n0\t**Possible Spoilers**<br /><br />This straight-to-video mess combines a gun-toting heroine, grade-Z effects, nazis, a mummy and endless lesbian footage and it's still boring; the video's 45 minute running time only SEEMS like Eternity.The only good part is one of the blooper outtakes, wherein the bad guys force a 400-pound Egyptologist into a chair--and one villain's foot almost gets crushed under a chair leg. Take this snoozer back to the video store and watch televised golf, bowling or tennis instead.\r\n1\tFirst let me say that Before Sunrise, like all movies, is NOT a movie for all tastes. It appears some folks are less smart to acknowledge this fact, but it is remarkable to contemplate the kind of outright dislike this small harmless movie generates from some people. For me, like most folks here, Before Sunrise struck a deep chord in me, I was truly stunned, moved, inspired by it. This is a movie that ultimately benefits from more than one viewing. It creates some of the most awesomely unforgettable feelings and emotions you can possibly imagine. It is impossible to imagine this world without ever thinking about the kind of inspirational feelings I got from it.<br /><br />The movie works as a communion of two fragile souls that are starting to get to know each other. It is very intelligent and inspiring, not so much in how one conversation necessarily ties into the next or the significance of the topics of Jesse and Celine's discussions, but rather the little nuances, the perfectly articulate responses they provoke from each other. It captures an honest, romantic, yet fleeting human emotion that is starting to blossom in the awesomely sublime Viennese milieu; it convinces us that their evanescent relationship might be the greatest compliment in the world. And what happens after that night is open for debate, but I never doubt that they won't each other again.<br /><br />The facile comments by RockytheBear and the below user are hopeless examples of a doctrinaire dissenter unwilling to accept and respect those who love this movie.<br /><br />See it and it may change your way of life.\r\n1\t\"Richard Brooks' The Last Hunt was a film star Stewart Granger couldn't even stand to hear mentioned  he even tore up a vintage poster for the film when presented it for signing in his later years  but then the director did run off with his wife, so it's understandable. For anyone else this is one of the best of the adult Westerns of the 50s, and years ahead of its time in its attitude to the environment.<br /><br />In many ways it plays almost like a sequel to one of Anthony Mann's Westerns that see their heroes dragged to their redemption kicking and screaming against it every step in the way. Here Granger's legendary buffalo hunter has already seen the light but, after a buffalo stampede costs him his herd of cattle in a fit of poetic justice, he's dragged back into the darkness by Robert Taylor's callous and proudly racist gunslinger, justifying it on the grounds that \"\"I've already got the guilty conscience. I might as well have the money as well.\"\" Raised by Indians, he's fully aware of the damage he's doing as the disappearing buffalo heads for extinction, and he gradually becomes almost as consumed with self-loathing as Taylor is with hate. When the two men fall out over Debra Paget's squaw  the sole survivor of a band of Indians Taylor kills  and a white buffalo hide that's priceless to the hunters and the Indians for very different reasons, a showdown becomes inevitable, though the outcome certainly isn't.<br /><br />Taylor's is certainly ironic casting  it was Granger turning down many of the epic roles MGM developed for him in films like Quo Vadis and Ivanhoe that gave Taylor his 50s comeback after years of steady decline. His hair color may not convince but his performance does, a shallow and violent man so consumed with hate that he doesn't wear a gun, the gun wears him. Granger's accent isn't always convincing, but he makes a good quiet hero in the Jimmy Stewart mold, trying to keep hold of his newfound decency and reconcile his actions with his beliefs before finally getting a chance to make amends. Russ Tamblyn's halfbreed skinner and Lloyd Nolan's one-legged old-timer also give as good as they get, but the real star is the script: tightly plotted with an excellent eye and ear for character  not to mention an ending Stanley Kubrick borrowed for The Shining  it balances historical revisionism with entertaining drama without ever selling either short. The new French DVD is extras-free but does boast a 2.35:1 transfer with an English soundtrack.\"\r\n0\t\"I'm Irish and I've been living in Denmark for a while so I was looking forward to going home last week so I could see Intermission. And I will go on record as saying:<br /><br />THIS FILM IS AWFUL.<br /><br />It is not quite as bad a something like \"\"The Most Fertile Man in Ireland\"\" but it definitely does not stand up there with other Irish films such as The Commitments, I Went Down or Michael Collins.<br /><br />Some aspects of the film are actually quite funny, such as Colm Meaneys American-style garda. But the film itself is shot completely wrong. The bouncing around of the camera and the constant zoom-in, zoom-out tries to give the film an edgy look as if it were a gritty drama. But it isn't. This is an Irish Lock, Stock and Two Smoking Barrels and it should be shot like this. It should have smooth movement from one shot to the next. The film just looks sloppy and thrown together.<br /><br />The performances are okay, given the awful script. A friend of mine said to me like it was like they just followed Colin Farrell around Dublin for a week. He gives a decent display as a Dublin Dirtbag, but it no way compares to his performances in Minority Report, Tigerland or Phone Booth. The best performance was from Dierdre O'Kane who plays a sexually frustrated middle-aged woman who has just been dumped by her bank manager husband for a younger woman. I think she should leave her god-awful stand-up and focus more on her acting.<br /><br />All in all, its does in no way live up to the expectations put on it by the Irish press or deserve to be even considered as one of the best Irish films ever.<br /><br />I'm expecting a backlash from these comments because most people I have spoken to have said it was great. But before you reply, ask yourself: Would think so highly of this movie if it was set in England or America?\"\r\n0\t\"Despite being released on DVD by Blue Underground some five years ago, I have never come across this Italian \"\"sword and sorcery\"\" item on late-night Italian TV and, now that I have seen it for myself, I know exactly why. Not because of its director's typical predilection for extreme gore (of which there is some examples to be sure) or the fact that the handful of women in it parade topless all the time (it is set in the Dark Ages after all)it is, quite simply, very poor stuff indeed. In fact, I would go so far as to say that it may very well be the worst of its kind that I have yet seen and, believe me, I have seen plenty (especially in the last few years i.e. following my excursion to the 2004 Venice Film Festival)! Reading about how the film's failure at the time of initial release is believed to have led to its director's subsequent (and regrettable) career nosedive into mindless low-budget gore, I can see their point: I may prefer Fulci's earlier \"\"giallo\"\" period (1968-77) to his more popular stuff horror (1979-82) myself but, even on the latter, his commitment was arguably unquestionable. On the other hand, CONQUEST seems not to have inspired Fulci in the least  seeing how he decided to drape the proceedings with an annoyingly perpetual mist, sprinkle it with incongruent characters (cannibals vs. werewolves, anyone?), irrelevant gore (we are treated to a gratuitous, nasty cannibal dinner just before witnessing the flesh-eating revelers having their brains literally beaten out by their hairy antagonists!) and even some highly unappetizing intimacy between the masked, brain-slurping villainess (don't ask) and her slimy reptilian pet!! For what it is worth, we have two heroes for the price of one here: a young magic bow-carrying boy on some manhood-affirming odyssey (Andrea Occhipinti) and his rambling muscle-bound companion (Jorge Rivero i.e. Frenchy from Howard Hawks' RIO LOBO [1970]!) who, despite being called Mace (short for Maciste, perhaps?), seems to be there simply to drop in on his cavewoman from time to time and get his younger protégé out of trouble (particularly during an exceedingly unpleasant attack of the 'boils'). Unfortunately, even the usual saving grace of such lowbrow material comes up short here as ex-Goblin Claudio Simonetti's electronic score seems awfully inappropriate at times. Fulci even contrives to give the film a laughably hurried coda with the surviving beefy hero going aimlessly out into the wilderness (after defeating one and all with the aid of the all-important magic bowso much for his own supposed physical strength!) onto his next  and thankfully unfilmed  adventure!\"\r\n1\tThis was a great movie but it had the worst ending I think I have ever seen!!! The actors were great and displayed wonderful talent. The entire story was twisted and unexpecting, which, is what made it entertaining. As good as the movie was, the entire film is judged by the ending, which was terrible! Maybe a sequel could eliminate this bad ending.\r\n1\tSteven Rea plays a forensic scientist thrust on the job in Sovie Russia in 1982..in the very first hours of his job a body of a murdered girl is brought in..he has his workers go back to look for evidence and they bring back five more bodies..this starts the story of the hunt for one of the worst serial killers in modern day history..It is a stark depressing dark movie that explores how the bureaucracy of the old Soviet Union indirectly contributed or caused the deaths of many of the killers victims.It also explores in Donald Sutherland's character how the proper usage of bureaucracy in a communist govt can help achieve the ultimate goal of finding a monster A gripping movie not for all but for those who like a good detective story that will hold your interest this is definitely a must see on a scale of one to ten.. 9\r\n1\tIt' just funny, watch it!!! <br /><br />OK they want 10 lines so there: This is a spoof of 50s/70s werewolf movies. Lots of satire, some political. Feels like an early Clouseau movie (probably due to Alan Arkin), but with less slap stick. If you like the Naked Guns movies you'll like this too (once again less slapstick in this one). <br /><br />Actually, the humor ranges from light sexual innuendo (unavoidable in a teen comedy), to really poignant socio-political satire. The transformation of the Moon High School from 50s to 70s is really funny. The sequence with the changing presidential portraits is brilliant! OK maybe not brilliant but still hilarious. There are tons of (histarical) cracks starting from the 50s cold war paranoia and the late 70s inflation.<br /><br />Anyway, just watch the movie if you get a chance!\r\n0\tSpoiler: Bunch of passive-aggressive people having family reunion. The script has them saying and doing things people would never do, at least anyone with a shred of decency. The hero falls for a woman he sees as his soul mate at a bookstore the day of the reunion, unaware she will show up as his brother's girlfriend at the reunion. He tries to defer to his brother's claim, but she, knowing our hero is clearly infatuated with her, teases him mercilessly by wearing sexy clothing and behaving like a stripper, rubbing all over the brother in a ruse excuse that she is showing him how to stretch. At one point, she actually disrobes and gets into a shower with him. He tries to cover his eyes. His heart is breaking. She thinks it's funny, until she suddenly decides she doesn't want the brother and leaves the reunion.<br /><br />The movie really drags. The audience coughed and fidgeted its way through the long haul. The writing is unintelligent and unbelievable. We almost walked out, but kept thinking surely something would happen that would perk things up, but nooooo. All the lovely reviews must have been written by paid shills, out to dupe poor suckers like me into seeing crap like this. Comparing it to Little Miss Sunshine??? Jeez. Shame on them, the writers, the actors, the producers, and the theaters for letting anything this bad make it to the screen!\r\n1\t\"This film is worth seeing alone for Jared Harris' outstanding portrayal of John Lennon. It doesn't matter that Harris doesn't exactly resemble Lennon; his mannerisms, expressions, posture, accent and attitude are pure Lennon. Best scene: Lennon in a local cafe verbally sparring with a stuttering fan as to whether Paul McCartney & Wings' \"\"Silly Love Songs\"\" is worthy of #1 status in America.\"\r\n1\tA brilliant portrait of a traitor (Victor McLaglen in Oscar winning performance) who is hounded by his own conscience. McLaglen plays an IRA rouge who betrays his leader to collect a reward during Ireland's Sinn Fein Rebellion. The scenes showing fights and mob actions are very realistic, focusing on the desperation within individuals. The lack of hope for a better future seems to be a fate worse than death.<br /><br />Director John Ford superbly creates an murky and tense atmosphere, enhanced by the foggy and grimy depiction of the Irish landscape. Max Steiner's dramatic music score adds to the cinematic delight. Oscar Winner also for Best Screenplay, nominated for Best Picture. This is one of Hollywood's Classic.\r\n0\tAnd I thought The Beach was bad, with the difference that this movie has one of the greatest actors of our time, Nicolas Cage. Don't blame him for the awful script, if any one can make any sense of what the hell was the point of that movie, give your self a pat on the back. Its a cross between The Village and a crappier script. Its starts off kinda catching your eye, and then as it goes further into the plot, it just makes no sense, and don't get me started about the ending!!!! What was that? The only thing that makes this movie exist is Nicolas Cage usual great humor, and his ability to be funny in the weirdest situations. If you go to a blockbuster and this is the only movie to watch, save yourself five bucks and just go back home and turn put some thing on fire and when some ones asks you why, just say the stupidest thing that comes into your mind, and there you go!\r\n0\t\"Difficult to call The Grudge a horror movie. At best it made me slightly jump from surprise at a couple of moments.<br /><br />If one forgets the (failed) frightening dimension and looks at other sides of the movie, he is again disappointed. The acting is OK but not great. The story can be somewhat interesting at the beginning, while one is trying to get what's happening. But toward the end one understands there is not much to understand. \"\"Scary\"\" elements seems sometimes to have been added to the script without reason...<br /><br />So... (yawn) See this movie it if you have nothing more interesting to do, like cutting the carrots or looking at the clouds.\"\r\n0\tFrank Capra's creativity must have been just about spent by the time he made this film. While it has a few charming moments, and many wonderful performers, Capra's outright recycling of not just the script but considerable footage from his first version of this story, Broadway Bill (1934), is downright shoddy. It is understandable that he would re-use footage from the climactic horse race, which is thrilling. But he uses entire dialogue scenes with minor actors, then brings back those actors and apparently expects us not to notice, for example, that Ward Bond is 14 years older! Unless you want to see one of the last appearances of Oliver Hardy, skip this one and watch Broadway Bill instead.\r\n1\tFREDDY has gone from scary to funny,in this 6th installment in the Nightmare series.<br /><br /> It's been 2 years,well actually 11 since this film takes place in 2001.And FREDDY has killed every last kid on Elm street except one,John Doe(Jacobb from part 5,even doe the film gives on hint who he is),in which he uses to bring more children to come to Elm street.Not only does FREDDY gets his wishes,but he also gets his daughter back to Elm street.When she finds out what is happening,she and other kids decide to kill FREDDY once and for all.We also get to see some of FREDDY's eerie backgrounds.<br /><br /> Rachel Talalay,who has been contected to the nightmare series for a long time by now.Many people hate this film,but I liked it.It tried to bring out what FREDDY was doing with his wisecrackes...COMDEY and makes the series more funny than scary.So this film is really a comdey sore to speak.It is not the wrost in the series,part 2 still holds it.<br /><br />\r\n0\tI usually try to construct reasonably well-argued critiques of films, but I can not believe this got past the script stage. The dialogue is appalling, the acting very dodgy, the accents just awful, and the direction and pacing is scrappy at best.<br /><br />I don't remember the last time I saw a film quite this bad. Joseph Fiennes, pretty as he is, might just have killed his career as quickly as it started.<br /><br />The Island of Doctor Moreau was no worse than this garbage.\r\n0\tOK, I didn't have high expectations but this film descending into depths I could not imagine.<br /><br />The plot, as it were, involved a priest of an obscure 2 member order investigating the death of the founder of the order by a Sin Eater. The Sin Eater allows for Catholics to achive salvation outside the authority of the Church and is yet another immortal in film with loads of ennui. Nevermind that this makes no sense since then a Baptist could give you salvation....we'll move on.<br /><br />I'll layout the plot w/o giving much away: the priest goes to Rome with his buddy to investogate. He brings with him a mental patient (I'm not making this up) who shot him during an excorism and who loves him (not one lick of this BTW is explained), a drunk Irish priest and Peter Weller as a Cardinal. They get to Rome, find some creepy kids who do nothing in the film, meet with a bondage gear S&M anti-pope that the drunk Irish guy knows (not explained) and who gives information by killing people (oh, BTW, he's a bad guy so he has an industrial/techno soundtrack) and then...umm, seriously, I'm not sure. the plot meanders about. Heath chills with the Sin Eater, flies to New York with the Sin Eater for an overnighter and then some other stuff happens and then (all off camera) the anti-pope falls and the film ends.<br /><br />About 1 hour into the film one really wonder if anything has happened. By the end something has happened but you can't be at all certain that it matters and since most of the drama takes place either before the movei or off-scren you're really feeling cheated.\r\n0\t\"I enjoyed \"\"American Movie\"\", so I rented Chris Smith's first film, which I thought was a documentary too. In the first minute I saw that it wasn't, but I gave it a go.<br /><br />What a dead end film. Being true-to-life hardly serves you if you're merely going to examine tediousness, esp. tediousness that we're already familar with.<br /><br />I'm sorry, but will it come as a relevation to ANYONE that 1) a lot of jobs suck and 2) most of them are crappy, minimum wage jobs in the service sector??? I knew that before I saw the film. It didn't really provide an examination of that anyway, as while the film struggles to feel \"\"real\"\" (handheld camera, no music, etc.), what's going on hardly plays out as it would in the \"\"real world.\"\"<br /><br />Would an employer be so cheerful to Randy when he picks up his check, after Randy quit on him after 3 days when the guy said he expected him to stay 6 months?? Or the day after abandoning his job (and screwing up the machine he was working on), that everyone would be so easy on him??<br /><br />A big problem is our \"\"hero\"\"(?), Randy. This guy is a loser. Not because he's stuck in these jobs, or has a crummy apartment, or looks like one. He's a dope. He doesn't pay attention or even really try at these jobs. He has zero personalty. If I had to hire someone, he wouldn't make it past the interview.<br /><br />I'm looking forward to what Chris Smith does next, but guys, knock off the \"\"this-is-an-important-film\"\" stuff. \"\"American Job\"\" doesn't work.\"\r\n1\tThis long episode packs amount of astounding of surprises, thriller, mystery and concerns about a battle of wits of Sherlock against Charles Augustus Milverton, a master blackmailer. This is an excellent overlong runtime of Jeremy Brett-Holmes series. In the film appear usual Holmes's cannon as Inspector Lestrade and Mrs Hudson, though no Moriarty, however is a greatest villain, Charles Augustus.<br /><br />It's a genuine ripping yarn with intrigue, thrills, and suspense, including an exciting final twist. This is a particular Sherlock movie but we find to Holmes falling in love with a servant, kissing, crying and even robbing. This time along with the episode ¨Scandal in Boheme¨ with Irene Adler, result to be the only one which Holmes is enamored. Top-notch Brett performance, he alongside Peter Cushing are the best Sherlock TV , while in the cinema is forever Basil Rathbone. Brett performs as a resolutive, headstrong, impetuous sleuth. Here Doctor Watson isn't a comic, botcher, and clumsy pal personified by Nigel Bruce, but is an astute and cunning partner well incarnated by Edward Hardwicke, a perfect counterpoint of Brett. Casting is frankly magnificent, special mention to Robert Hardy as astute nasty. Hardy, today famous by role as Cornelius Fudge in Harry Potter, is a veteran actor with forty years of career and with several success such as, The 10th kingdom and Winston Churchill. Furthermore appear secondaries actors with terrific performances, Nickolas Grace, Sophie Gordon, Serena Gordon, among others. The movie gets a colorful atmosphere , the London streets and 221 Baker Street's house are well designed. The motion picture is well directed by Peter Hammond, director of various episodes. It's a must see for the Arthur Conan Doyle fans.\r\n1\t\"I had mixed feelings for \"\"Les Valseuses\"\" (1974) written and directed by Bertrand Blier when I started watching it but I ended up liking it. I would not call it vulgar (\"\"Dumb and Dumber\"\" is vulgar, \"\"The Sweetest Thing\"\" is both vulgar and unforgivably stupid); I would call it shocking and offensive. I can understand why many viewers, especially, the females would not like or even hate it. It is the epitome of misogyny (or so it seems), and the way two antiheroes treat every woman they'd meet seems unspeakable. But the more I think of it the more I realize that it somehow comes off as a delightful little gem. I am fascinated how Blier was able to get away with it. The movie is very entertaining and highly enjoyable: it is well written, the acting by all is first - class, and the music is sweet and melancholic. Actually, when I think of it, two buddies had done something good to the women they came across to: they prepared a woman in the train (the lovely, docile blonde Brigitte Fossey who started her movie career with one of the most impressive debuts in René Clément's \"\"Forbidden Games\"\"(1952) at age 6) for the meeting with her husband whom she had not seen for two months; they found a man who was finally able to get a frigid Marie-Ange (Miou-Miou) exited and satisfied; they enlightened and educated young and very willing Isabelle Huppert (in one of her early screen appearances.) Their encounter with Jeanne Moreau elevates this comedy to the tragic level. In short, I am not sure I'd like to meet Gérard Depardieu's Jean-Claude and Patrick Dewaere's Pierrot in real life and invite them over for dinner but I had a good time watching the movie and two hours almost flew - it was never boring.\"\r\n0\t\"Any movie with \"\"National Lampoon\"\" in the title is absolutely guaranteed to die a death in London,England,Paris,France,Rome,Italy,and anywhere in Germany.It may be an institution in the U.S. but it is practically unknown in Europe to the larger audience.\"\"National Lampoon's European Vacation\"\" is unlikely to rectify that situation. The appalling Griswalds are just that - appalling.They are not funny. Clearly Mr Chevy Chase thinks he's funny, after all Miss B.di Angelo laughs a lot at his jokes,but she's getting paid for it and didn't have to fork out £2.50 for the privilege. The section set in England is typical.The same old same old TV performers, Messrs Idle,Smith,Coltrane,Miss M.Lippman trot out the same old same old tired clichés,Mr Chase gets lost in the hotel corridor....yawn,yawn,yawn.. Bucking - ham Palace,Big Ben......I feel cheated that we never saw bobbies on bicycles two-by-two.........rosie red cheeks on the little chil - dren,need I go on? The English are buffoons,the French vicious - tongued Yank-haters.The Germans pompous and puffed up,(don't mention the war,Clark),and the Italians lecherous bottom-pinchers.Have I forgotten anything? Every possible \"\"comic\"\" situation is worked to death,Mr Chase gurns desperately,Miss di Angelo dimples sweetly,the children are embarrassingly bad. The fact that this franchise ran as long as it did must bring comfort to those who propound that you never lose money by underestimating public taste.\"\r\n0\tI normally have no problem walking away from a bad movie, however this was an unique case. This movie was so bad that I actually sat through the whole thing almost praying it would have one minute of good movie time to justify the hour and a half that was wasted. Needless to say I was brutally disappointed. Set at a beach house where a group of college friends are celebrating vacation, this movie suffers from numerous problems making it not worth seeing. First, there are gaping plot holes. Second, very few of the C-list (i don't even dare call them B) actors can act worth a damn, so any scenes that have potential fail miserably. Third, the rate of the film is very choppy and awkward to watch most of the time making suspense building very difficult, leading to very few surprises for the audience. Fourth and most importantly, the ending is completely anti-climatic partially because of how it ends (setting/who the killer turns out to be) and partially because the dialog is just atrocious. To the films credit, it is the only movie that I will ever say is the worst movie I have ever scene, and i've seen a lot.<br /><br />So, just like a bad joke you would have been all the happier never hearing, the next time someone asks you if you want to know a secret you will be yelling no, you really don't as you run in the opposite direction.\r\n1\t\"For animation buffs it's a must, but even general audiences will enjoy THE CAMERAMAN'S REVENGE, a very early example of 'pixilation' by the hard-working pioneer Wladyslaw Starewicz. Starewicz and his helpers painstakingly manipulated a cast of flexible insect figures to tell this story, paving the way for the likes of Willis O'Brien, George Pal, Ray Harryhausen, and legions of modern digital effect creators.<br /><br />THE CAMERAMAN'S REVENGE is only about 10 minutes long, but packs in lots of amusing detail as the story follows the amorous adventures of two beetles from their home to a nightclub, a hotel, a cinema, and, eventually, a prison cell. There are two brief dance numbers at the nightclub (performed by a frog and a dragonfly), a scuffle between a beetle and a grasshopper, and a large-scale donnybrook at the cinema, which ends with the projector bursting into flames. Pretty elaborate goings-on for 1912, when even John Bray and Winsor MacCay were just getting started, and Walt Disney was still in grade school!<br /><br />It's interesting to note, too, what an impact the alteration of a silent movie's title cards can have on the story being told. I've seen two versions of this film offered by two video companies, and watched them back-to-back, and although the image content itself is almost identical, two different sets of intertitles tell two very different stories. (And the plot outline someone provided above tells yet a third story, which suggests that there's another version out there somewhere.) The British Film Institute's print, which has rhyming intertitles, tells the story of two sibling beetles, each secretly married, who hide this information from one another in order to inherit their late father's fortune. The other, Russian print, tells a simpler story of married beetles who are each guilty of infidelity. In the Russian version Mr. Beetle visits his girlfriend at the \"\"Gay Dragonfly\"\" nightclub, while in the English version brother Bill Beetle visits his wife at the music-hall. Personally, I prefer the straightforward-- and spicier --Russian story; the BFI version tries to cram too much plot into what should be a simple tale, and some of the rhymes are a bit awkward.<br /><br />Still, in any rendition, THE CAMERAMAN'S REVENGE is a delightful film, and would make an ideal lead-in to that other great animated work which features beetles, YELLOW SUBMARINE.\"\r\n0\t\"I'm a huge Randolph Scott fan, but this film is a dud. The whole thing has a canned, fake, soundstage feel to it, with truly awful rear-screen projection. It has a good plot idea that the screenwriter has successfully buried in a nitwit script, which makes it impossible for the audience to become immersed in the action and truly care about any of the characters. The directing is pedestrian, and only accentuates how bad the script is instead of helping to improve it. I've seen plenty of thoroughly enjoyable \"\"soundstage productions\"\" before, but this is not one of them. All it does is make you appreciate the gritty Scott/Boetticher films all the more.<br /><br />Randolph Scott is tanned, trim, and shines that million dollar smile throughout. He's always a pleasure...even in the worst of his films. Aside from Scott, the other main reason I wanted to see this movie was due to how much I enjoyed Ms. Wymore in Errol Flynn's movie, \"\"Rocky Mountian\"\". In \"\"Man Behind the Gun\"\", she is just as beautiful, and you can tell she's a good actress, but she was forced to say some pretty dumb lines, and the blocking she was given by the director was truly awful. I've only seen Phil Carey in \"\"Operation Pacific\"\", and he plays the exact same character here...an arrogant pain-in-the-butt you want to beat into unconsciousness. I guess it proves he's a good actor...he made me hate him. There are some lame attempts at comic relief that only detract from the film, in my opinion. Although there are many elements to knock, I must say that I found myself truly enjoying the two Spanish songs sung in the musical numbers...but that's not why we go to see Randolph Scott movies, right?<br /><br />There are definitely worse Scott films out there, and this one certainly isn't unbearable, but it also certainly couldn't be deemed anything beyond mediocre.\"\r\n0\tThis is the absolutely worst piece of crap I've ever had to watch - actually it was so bad that I just HAD to watch it :-)<br /><br />The CGI is sooo bad it's fun! It's not even close to the shitty CGI animations in Spawn, that's how bad it is, har har har...<br /><br />I'm amazed over the fact that some distribution company actually has put money down to release this on DVD, but I guess they'll get more money out of it that way, 'cos the cost of making it can not have been more than a few hundred dollars.<br /><br />It's so awful that a kindergarten class could have made it.<br /><br />See it and laugh!\r\n1\tA very enjoyable film that features characters who do bad things and who let emotions like anger and a desire for vengeance bubble over. The cast is very good, there's plenty of action, and Stewart gets the girl and his revenge (with a twist) in the end. I've seen this film several times, and always watch when it's on AMC or cable. Highly recommended...\r\n0\t\"Poorly-made \"\"blaxploitation\"\" crime-drama aimed squarely at the black urban market of the early 1970s. Pam Grier stars in the title role, that of a nurse who becomes a one-woman vigilante after drug-dealing thugs make Coffy's little sister a junkie. Violent nonsense plods along doggedly, with canned energy and excitement; only Grier's flaring temper gives the narrative a jolt (she's not much of an actress here, but she connects with the audience in a primal way). Not much different from what Charles Bronson was doing at this time, the film was marketed and advertised as crass exploitation yet still managed to find a sizable inner-city audience. Today however, it's merely a footnote in '70s film history, and lacks the wide-range appeal of other movies in this genre. *1/2 from ****\"\r\n1\tThe good thing about this film is that it stands alone - you don't have to have seen the original. Unfortunately this is also it's biggest drawback. It would have been nice to have included a few of the original characters in the new story and seen how their lives had developed. Sinclair as in the original is excellent and provides the films best comic moments as he attempts to deal with awkward and embarrassing situations but the supporting cast is not as strong as in the original movie. Forsyth is to be congratulated on a brave attempt to move the character on and create an original sequel but the film is ultimately flawed and lacks the warmth of the original\r\n1\tThis movie is a half-documentary...and it is pretty interesting....<br /><br />This is a good movie...based on the true story of how a bunch of norwegian saboturs managed to stop the heavy water production in Rukjan, Norway and the deliverance of the rest of the heavy water to Germany.<br /><br />This movie isn't perfect and it could have been a bit better... the best part of the movie is that some of the saboturs are played by themselves!!!<br /><br />If you're interested in history of WWII and film this is a movie that's worth a look!!\r\n1\t\"UK newspaper reviews seem to have concentrated on the fact that the reviewers tend to know Toby Young, the journalist on whose real-life experiences this movie is based. The key word here is \"\"based\"\". How To Lose Friends is a fictitious romcom.<br /><br />Sidney Young joins a prestigious gossip magazine in New York, where he proceeds to make gaffe after gaffe before finally Getting It Right and Making It. This involves him selling out, and the movie has some serious points to make about journalistic integrity. However, they are not overdone: the main substance remains a comedy which centres around Sidney's misadventures. The script has its cake and eats it in that Sidney is a stupid, well-meaning buffoon at the same time as being a smart, moderately obnoxious skilled writer. This contradiction is never that much of an issue, because Simon Pegg (as Sidney) projects likability too well.<br /><br />Jeff Bridges underplays Sidney's editor a little too effectively, and Kirsten Dunst is rather anonymous as the conflicted eventual object of Sidney's affections And, with regard to Megan Fox (who plays an airhead bimbo starlet), I can say only this: just say the word, Miss Fox, and I will leave my wife, sell all my belongings, and buy myself a plane ticket in order to take my place at your side as your consort. Of course, given that I'm a fat 56-year-old English accountant, you might not find my offer too enticing, but it's there on the table anyway. Given how short her career has been so far, one might think it is a little too soon for Megan Fox to take on a role which mercilessly lampoons the sort of actress she might be thought to become: however, she does it sweetly, with some skill, and extremely sexily. This girl will go far.<br /><br />There is stalwart support from a variety of seasoned performers - Miriam Margolyes and Bill Paterson from the UK, Gillian Anderson and Danny Huston from the US.<br /><br />There are several laugh-out-loud moments, and I smiled most of the way through. As ever, the F-word makes appearances when it really doesn't need to, although at least a couple of these are very funny.\"\r\n1\t\"It seems a lot of IMDB comments on this film are biased, in the sense that they try to compare it to an older version. True, \"\"HOLLOW MAN\"\" is a remake of sorts of \"\"THE INVISIBLE MAN\"\", but that's where the similarities end. \"\"HOLLOW MAN\"\" is an entertaining movie,period. If you watch a movie with the intention of finding as many flaws as possible, then you shouldn't watch movies in the first place. True, some movies are plain horrendous and unbearable, but \"\"HOLLOW MAN\"\" manages to entertain and make you think what YOU would do if you were invisible and if you had your ex getting laid with one of your friends. Kevin Bacon stars as a eccentric scientist who, along with a team of collaborators, discover the way to make animals invisible. Now his mission is to make them visible again. When this team of young scientists (working, as you might guess, for the Pentagon)think they have the formula for making animals visible again, Kevin bacon volunteers to be the first to try the new experimental drug. After that, of course, things go wrong, as Kevin Bacon remains invisible for the rest of the movie and is obliged to wear a latex mask, so his collaborators know where he is. Feelings of paranoia and desperation begin to take over Kevin's character, and when he finds out that his ex girlfriend AND collaborator (Elisabeth Shue) is having a torrid affair with another of the young scientists in the team, he finally snaps. The movie then turns into a hybrid of \"\"ALIEN\"\" and a slasher flick, but that's not saying it's a bad turn. There are scares and chills and the movie moves at a nice pace. The special effects are top notch (a quality always prevalent in ALL of Paul Verhoeven's films)as we get to see some \"\"body reconstitution\"\" sequences never seen on a movie before. If there's anything to complain about, perhaps, is the predictability of the situations herein; by the first hour of the movie you KNOW Kevin bacon will make the jump from being weird and eccentric to being a homicidal lunatic in the end. And the ending is a bit abrupt, but despite this, HOLLOW MAN is still worth watching. If you want to know what a TRULY bad movie is, then waste your money on \"\"FEAR DOT COM\"\" (With Stephen Dorf) or the even worse THE UNTOLD (or \"\"Sasquatsh\"\", with Land Henriksen). Now THAT is \"\"hollow\"\"! 8* out of 10*!\"\r\n0\t\"Guy is a loser. Can't get girls, needs to build up, is picked on by stronger more successful guys, etc. Seen it, saw it, moved on. I'd have to say that Rob needs to move past the Adam Sandler part of his life. And get out of the Adam Sandler plots. There are two funny parts in the whole movie. I couldn't even finish the last 5 minutes. I was getting bored. \"\"The Animal\"\" is an alright film. I do usually enjoy Adam Sandler films that have the same plot. But this was trying too hard to impress. The jokes are very old. So, trust me. This is not a film that most people could really get into. But some did, so I'll be nice.<br /><br />3/10\"\r\n0\tStilted, stagy, strange and opaque, if visually striking ... a wannabe-erotic fantasy. Really boring, way too much male nudity (including father-son incest), and just a sort of shameless pointlessness. I will confess, however, that certain passages of dialogue, taken on their own terms, do have a lulling, haunting quality.\r\n1\t(SPOILERS included) This film surely is the best Amicus production I've seen so far (even though I still have quite a few to check out). The House that Dripped Blood is a horror-omnibusan anthology that contains four uncanny stories involving the tenants of a vicious, hellish house in the British countryside. A common mistake in productions like this is wasting too much energy on the wraparound story that connects the separate talesPeter Duffel's film wisely doesn't pay too much attention to that. It simply handles about a Scotland Yard inspector who comes to the house to investigate the disappearance of the last tenant and like that, he learns about the bizarre events that took place there before. All four stories in this film are of high quality-level and together, they make a perfect wholesome. High expectations are allowed for this film, since it was entirely written by Robert Bloch! Yes, the same Bloch who wrote the novel that resulted in the brilliant horror milestone `Psycho' We're also marking Peter Duffel's solid and very professional debut as a director. <br /><br />The four stories  chapters if you will  in the House that Dripped Blood contain a good diversity in topics, but they're (almost) equally chilling and eerie. Number one handles about a horror-author who comes to the house, along with his wife, in order to find inspiration for his new book. This starts out real well, but after a short while, his haunted and stalked by the villain of his own imagination. The idea in this tale isn't exactly originalbut it's very suspenseful and the climax is rather surprising. The second story stars (Hammer) horror-legend Peter Cushing as a retired stockbroker. Still haunted by the image of an unreachable and long-lost love, he bumps into a wax statue that looks exactly like her. Cushing is a joy to observe as always and  even though the topic of Wax Museums isn't new  this story looks overall fresh and innovating. This chapter also contains a couple of delightful shock-moments and there's a constant tense atmosphere. It's a terrific warm-up for what is arguably the BEST story: number 3. Another legendary actor in this one, as Christopher Lee gives away a flawless portrayal of a terrified father. He's very severe and strict regarding his young daughter and he keeps her in isolation for the outside world. Not without reason, since the little girl shows a bizarre fascination for witchcraft and voodoo. Besides great acting by Lee and the remarkable performance of Chloe Franks as the spooky kid, this story also has a terrific gothic atmosphere! The devilish undertones in this story, along with the creepy sound effects of thunder, make this story a must for fans of authentic horror. The fourth and final story, in which a vain horror actor gets controlled by the vampire-cloak he wears, is slightly weaker then the others when it comes to tension and credibility, but that the overload of subtle humor more or less compensates that. There's even a little room for parody in this story as the protagonist refers to co-star Christopher Lee in the Dracula series! Most memorable element in this last chapter is the presence of the gorgeous Ingrid Pitt! The cult-queen from `The Vampire Lovers' certainly is one of the many highlights in the filmher cleavage in particular. <br /><br />No doubt about itThe House that Dripped Blood will be greatly appreciated by classic horror fans. I truly believe that, with a bit of mood-settling preparations, this could actually be one of the few movies that'll terrify you and leave a big impression. Intelligent and compelling horror like it should be! Highly recommended. One extra little remark, though: this film may notrepeat MAY NOT under any circumstances be confused with `The Dorm that Dripped Blood'. This latter one is a very irritating and lousy underground 80's slasher that has got nothing in common with this film, except for the title it stole.\r\n0\tI have been a fan of Without A Trace from the premier episode. I really cannot express my disappointment in the episode last week. This is a REAL problem that far too many Afican-American families have dealt with and continue to deal with. The lack of media coverage crucial in the first 48 hours has been documented by a recent study. Law enforcement including local , state, and federal are also complicit. What was the purpose of advertising this subject matter and then copping out on the ending? Seemingly, television can deal with almost ANY subject matter EXCEPT RACE. This is shameful.Get it together or don't explore it next time.\r\n0\t102 Dalmatians (2000, Dir. Kevin Lima) <br /><br />Believed to be cured, Cruella de Vil (Close) is released from prison and sets out to make a new start in life. Things are going well for Cruella who is busy helping homeless dogs off the street. When the clock strikes on Big Ben, things turn bad. The hypnotic cure is reversed and Cruella is back, and this time she is determined to make that spotted coat she always wanted.<br /><br />Glenn Close reprises her role as Cruella de Vil and once again is the highlight of the film. Every scene with her in is worth watching in this dull sequel, which feels more of a repeat of the previous film, rather than a new story.<br /><br />She's Changed.  Ken Sheperd (Ioan Gruffudd)\r\n0\t\"Think \"\"stage play\"\". This is worth seeing once for the performances of Lionel Atwill and Dwight Frye. COmpare the Melvyn DOuglas in \"\"Ghost Story\"\" with the Melvyn DOuglas of this film. Are there vampires at loose in this 'Bavarian' village, or is there a more natural, albeit equally sinister, explanation? Dwight Frye is Herman, a red herring, who is cast as an especially moronic character. It's fun to look at his different facial expressions in what is really a stock character. NOt much happens for a long time, but then we discover that Atwill's pipe smoking doctor is the real murderer. There is too much 'comic relief' but that is par for the course for this era. Fay Wray looks really good.\"\r\n1\t\"Of all the British imperialist movies like Four Feathers, Charge of the Light Brigade for example, this movie stands out as the cream of the crop. It reflects a time when \"\"the sun never set on the British Empire.\"\" Get over it. I won't go into why because so many others have expressed the many reasons that makes this film great. I have visited the Alabama Hills and have photographed the pass through which the British marched and it remains as it was, unchanged by time and encroachment by man and vandals. And even though I know it's coming, seeing Din lying dead on a stretcher and when these lines are read <br /><br />\"\"Yes, Din! Din! Din!<br /><br />You Lazarushian-leather Gunga Din!<br /><br />Though I've belted you and flayed you,<br /><br />By the livin' Gawd that made you,<br /><br />You're a better man than I am, Gunga Din\"\" <br /><br />I still, at 54 years of age, get misty eyed and anyone who says they don't is a liar. The range of emotions within it is the mark of a great movie. Like the ending of another great film, Of Mice and Men.\"\r\n0\t\"This was allocated to the fans as the \"\"winner takes all\"\" match occurred between two separate \"\"companies\"\" (the World Wrestling Federation and the \"\"Alliance\"\": an amalgamation of former WCW and ECW superstars. Because the final match to duduce the superior company was a tag-team match, the wrestlers were confined to tossing opponents from each side of the ring to another; each wrestler concludes that in order to debiliate their opponents and to intensify the match, interfernce is necessary. Each wrestler merely pummels an opponent with punches, executes a special move, and tags in a partner. The storyline had previously been tarnished by the subterfuge of Vince that a member of the Allance would be fradulent and join the WWF. It was obvious, with that statement, that the WWF would prevail. Overall: very innovative storyline but poor execution, which is not the scarcity of the wrestlers because the match format is tag-team. The remaining matches are just revolting:<br /><br />Edge versus Test: potent \"\"big boot\"\" by Test, but this did not display the true talents of both stars<br /><br />Al Snow Versus Christian: good match but superflous to the pay-per-view<br /><br />Taji versus William Regal: the worst match of the night<br /><br />Immunity Battle Royal: This was an outstandingly fun match to watch, but because the main stars of both companies were involved in the main event, only a wrestler who characteristically appears on \"\"Heat\"\" and is probably a WCW light-heavyweight reject (i.e. the Hurricane who is merely hired as an entertainer)<br /><br />Hardy Boyz Versus Dudley Boyz: The best match of the night: Jeff Hardy executed a \"\"Swanton Bomb\"\" from the summit of a cage and through a wooden table and Matt was wedged into the cage, which appeared to be extremely painful.<br /><br />Because Stone Cold was the WWF champion, Rob Van Dam was the Hardcore Champion, and Kurt Angle was a \"\"mole\"\" in the alliance, all fundamental stars in the main event on the faction of \"\"the Alliance\"\" were granted work after the match's outcome, except for Booker T., who recently attacked a wrestler on \"\"Raw\"\" and will inevitably be given work. Shane McMahon will return to television somehow, and everyone desired to witness the downfall and demise of \"\"the Alliance\"\" to see Stone Cold out of work. The WWF has done much better. A match in which all tiltes were brought to one faction would have been better, and what ever became of Casket and Iron Man matches?\"\r\n0\t\"This movie sucked ! They took something from my childhood ,and raped it in an outhouse! This movie was so bad I wanted to go home and hold my \"\"Dukes\"\" dvds and cry in a corner. The cast was terrible ! It wasn't \"\"The Dukes\"\", it was Stiffler and Jackass driving a car. When was Boss Hogg evil? When was Rosco a tough guy? They never were ! Boss Hogg was greedy and Rosco was an idiot. When did Jesse smoke pot? He never did ! Now don't get me wrong,I'm very liberal and there's nothing wrong with a little chiba, but it had no place in this movie! The only thing good about this movie was the trailers before the movie and the end credits. It was a waste of money time and air. Avoid at all costs!!!!!!!!\"\r\n1\tWhat is most disturbing about this film is not that school killing sprees like the one depicted actually happen, but that the truth is they are carried out by teenagers like Cal and Andre...normal kids with normal families. By using a hand held camera technique a la Blair Witch, Ben Coccio succeeds in bringing us into the lives of two friends who have some issues with high school, although we aren't ever told exactly what is behind those issues. They seem to be typical -a lot of people hate high school, so what? A part of you just doesn't believe they will ever carry out the very well thought out massacre on Zero Day. The surveillance camera scenes in the school during the shooting are made all the more powerful for that reason. You can't believe it's really happening, and that it's really happened. The hand held camera technique also creates the illusion that this is not a scripted movie, a brilliant idea given the subject matter.\r\n1\tWhen this first came out, my dad brought it home- we were amazed by it- It was so different from anything we had seen before. I was looking for a specific movie last night, and I found 'The Mind's Eye' again. The box is falling apart, and I am surprised that the tape still works! Although it is not 'Finding Nemo' quality graphics, it is still very good. They should sell this again- it is a landmark for computer animation imagery. Highly recommended!\r\n1\t\"A really sweet movie that has some similarities to the 2001-hit \"\"My Sassy Girl\"\" but is able to enchant most of the time. The biggest applause should go to the two leads. Ha-Neul Kim is both sweet and quirky, Sang-woo Kwon is both attractive and rebellious. The chemistry between the two is very good.<br /><br />Director Kyeong-hyeong Kim uses some CG-inserts to pepper up the visuals and also offers impressive fight scenes in which Sang-woo Kwon can shine. I liked him a lot better here than in the highly overrated \"\"Volcano High\"\". And that boy has a future - those looks, those fight techniques, and a romantic lead. Not bad.<br /><br />Well, I can make it short: Nice film. My rating: 7/10\"\r\n1\t\"This will not likely be voted best comedy of the year, a few too many coincidences and plot holes. However we are talking about a movie where a hit-man and a white bread salesman become buddies so a few vagaries shouldn't come as too much of a surprise. Brosnan is excellent in this role, gone is the wooden James Bond (a role he was wasted in). If he can maintain this kind of quality I hope he continues to make comedies. Greg Kinnear is also excellent as Brosnan's straight man. I've read a few negative comments in here about Hope Davis but I thought she was quite good as a mousy housewife with a dark side buried deep within. There are lots of good chuckles as Brosnan sleazes his way through and a few scenes where I nearly died laughing. My father (a consultant) nearly lost it when Julian describes himself as a \"\"facilitator\"\". Much like \"\"Grosse Pointe Blank\"\", another hit-man comedy, the humour can be very dark. If you are in to that be prepared to enjoy yourself.\"\r\n0\tI saw the movie late one night on cable and could not believe how bad it was. I usually enjoy bad movies, but this one was so revolting that it wasn't even entertaining. Some of the highlights of this film include the absurd music which is constantly playing throughout the movie, the hideous special effects (when someone is shot with a laser gun they turn neon green and promptly disintegrate), and the disgusting acting. The acting, in fact, is what I feel steals the show. I didn't recognize any of the actors in the movie, and I hope that I never have to see any of them again. Overall, I recommend renting this movie (if you can find it; I can't imagine a video store carrying this garbage) just so that you can learn to appreciate quality films after seeing this trash.\r\n0\t\"The movie starts with a pair of campers, a man and a woman presumably together, hiking alone in the vast wilderness. Sure enough the man hears something and it pangs him so much he goes to investigate it. Our killer greets him with a stab to the stomach. He then chases the girl and slashes her throat. The camera during the opening scene is from the point of view as the killer.<br /><br />We next meet our four main characters, two couples, one in which is on the rocks. The men joke about how the woman would never be able to handle camping alone at a double date, sparking the token blonde's ambition to leave a week early. Unexpectedly, the men leave the same day and their car breaks down.. They end up arriving in the evening. When the men arrive, they are warned about people disappearing in the forest by a crazy Ralph doppleganger. They ignore the warning and venture into the blackening night and an eighties song plays in the background with lyrics about being murdered in the dark forest. The men get lost.<br /><br />In the next scene we realize that this isn't just another The Burning clone, but a ghost story! The women, scared and lonely are huddling together by the fire. Two children appear in the shadows and decide to play peeping Tom. Well they are obviously ghosts by the way their voices echo! Their mother appears with blood dripping from a hole in her forehead and asks the two ladies if they've seen her children, before disappearing of course. <br /><br />The children run home to papa and tell him about the two beautiful ladies by the river. This causes quite a stir and he gets up, grabbing his knife from atop the fireplace. \"\"Daddy's going hunting,\"\" The little girl, exclaims with bad acting. It is apparent here, that the dad isn't a ghost like his children.<br /><br />Freaked out by something in the woods, the token blonde splits, running blindly into the night, carrying a knife. She encounters the father who explains he's starving and it will be quick. This doesn't make sense because of the panther growls we heard earlier (Maybe he's allergic! Are panthers honestly even in California?) She ends up wounding him slightly before getting stabbed in the head. A thunderstorm erupts and the men seek shelter, which turns out to be where papa resides. Clearly someone lives here because there's a fire and something weird is roasting over it. The children appear and warn them of papa, who shows up moments later. They disappear as soon as he arrives.<br /><br />For whatever reason, our killer only goes after females. He invites the men to have something to eat and tells us the story about his ex wife. We are given a flashback of his wife getting caught cheating. The old man doesn't tell them however that he kills her and her lover afterwards, but daydreams about it. We aren't given the reason for the children's demise. The men go to sleep and are left unharmed. The next morning the men discover the empty campground of their wives. After a brief discussion they split up. One is to stay at the campsite, while the other goes and gets help. The one that is going back to his car breaks his leg. We are then reunited with the children as they explain to the surviving woman that they are ghosts who killed themselves from being sad about their mother. They agree to help the woman reunite with her friends<br /><br />The following scene defies the logic of the movie when papa kills the guy waiting at the campsite. He was also dating or married to the blonde. Somehow the children realize he is murdered and tell the woman about it. She decides to see it for herself and obviously runs into the killer. Luckily the children make him stop by threatening to leave him forever. You know where this is going.<br /><br />Overall the movie deserves four stars out of ten, and that's being generous. For all its misgivings, the musical score is well done. It's still watchable too. There are some camera angles that look professional, and some of the sets are done well. The plot is unbelievable. There is such a thing as willing suspension of disbelief, but with the toad 6 miles away; I can't imagine the token blonde would take off like that in the middle of the night. I mean, come on!<br /><br />- Alan \"\"Skip\"\" Bannacheck\"\r\n1\t\"This episode of Twilight Zone combines a silent section (1890) with melodramatic acting and sight gags, an homage to the early Buster Keaton films. Lots of slapstick: Buster falling on a bulkhead door, falling in a puddle, running around pants-less. Silly scientist's invention of a Time Helmet, reminiscent of a Flash Gordon idea of what the future would be. Cheap prices, like $1.95 for ladies hats, or 17 cents a pound for beef seem outrageously high to Buster. Even the world of 1890 is too much for Buster/Mulligan. How shocking when he is mistakenly transported to the \"\"modern\"\" world of 1960! Buster was trying to go backwards! The \"\"scientist\"\" of that time wants to return to a calmer world, the 1890 that he has studied and admired. They go back together, and Buster/Mulligan is now happy and the \"\"scientist\"\" regrets not having electronic equipment, modern beds or an electric blanket. So Buster sends him back with the crazy helmet.<br /><br />This Twilight Zone doesn't have a heavy message. Since Buster Keaton died in 1966, it is one of his last efforts. That's enough.<br /><br />One other cute thing--longtime underutilized Maytag Man Jesse White is a repairman who fixes the Time Helmet--foreshadowing his washing machine career.\"\r\n0\tKalifornia is disturbing. I believe there is no reason for this story to be told. It is neither entertaining nor does it have social value. Technically, the movie is very well make, the performances are top rate and first class. The story develops in an intriguing way that holds interest. But at the end this movie sickens and is abhorrent to decency. I recommend Kalifornia to no one.\r\n1\tIf you enjoy Cleese & all the British 'Pythonesque' humour of the time, then this little gem is absolutely hilarious.<br /><br />Arthur Lowe is a real treat!<br /><br />I saw this with friends on TV when it first came out, and its classic quotes have formed a part of our jokes for 30 years, and will do forever! I have it on tape and it is continually appreciated.<br /><br />Perhaps some reviewers are taking it too seriously.<br /><br />I can't believe it is now only available in the US (NTSC of course), and not in UK, where it should be an essential part of the history of British humour!!\r\n1\tThis movie is not about entertainment, or not even a movie you want to see to pass the time. This movie is a genuinely a display of true love that can only come from God. One cannot help but be touched deeply by looking at this movie. We have several dimensions of love that contributes to the value of this movie. There is the divine love of God that is beautifully portrayed. God's love transcends the heart and mind and endures and is eternal. There is the love in a marriage. While the main character grapples with his wife's disease, he realizes through God's love that he loves his wife more than he could ever imagine. He knows that he and his wife are one and can never be separated. Finally, you have the love of child and parent. The kids in the family come together and realize that nothing else matters except that love conquers fear. Dear friends, love is not love unless it comes from God, because God is love and love comes from God. Talk to someone and let them know you love them. Love does no good unless it is given to another. I pray this movie can inspire and change the lives of everyone who sees it. Amen!!\r\n1\t\"Ok, after reading a couple of reviews on Atlantis: The Lost Empire, I just want to clear up some misunderstanding as to it being a direct rip off from Nadia: Secret of the Blue Water. The only part that was a ripoff from Nadia is that the pendant from Nadia and the pendant from Atlantis bear so much resemblence in terms of how it's used, origins and how it's created from the source of life that there's no doubt about it being copied. If you want to consider how Kida and Nadia is dressed alike then you could put that against Disney too(It was kind of wierd for Nadia and Kida to wear that bikini style clothing in an adventure sci-fi, not to mention they both move in a similar style too). As an anime fan I have to agree there's some degree of copying but it's only on the minor details and even though not many of the ideas are original (like the encryption design on the wall in Laputa, the ancient mask from Princess Mononoke, the resemblence of the vehicles to the Garfish submarine in Nadia, etc)...The plot itself I believe it's highly original and it's quite amazing that Disney can pull it off without the use of Captain Nemo(the main character in Jules Verne's 20k Leagues Under the Sea which is also the main character in Nadia). As for Mylo and Jean wearing similar style glasses...As shown in the novel \"\"Lord of the Flies\"\", glasses is a symbol of wisdom and intelligence. I think Mylo, Jean, the main character from Stargate and a dozen of other \"\"INTELLIGENT\"\" characters would look kind of unfit for the role if they went in without glasses. As for the submarines, and how the submarines fight(with those wide blast torpedos which really resembles what Nautilius does), I want to state that it's a required element for either one if Atlantis is involved in the plot(after all it's a sunken city beneath the waters). As for the crew having some charactistical resemblence with the crew from Nautilius in Nadia, it might be the artwork but I don't sense any copyright infringement there as the character's personalities were perfectly original to me. As an anime fan that rated Nadia as the #1 best anime I ever watched even now today. I do have my doubts about Atlantis when I first saw the preview. But now that I watched the movie, I once again regained my confidence with Disney and have high hopes for their future movies after Atlantis. Overall, the best Disney movie yet without me shivering at the sound of their songs at the middle of the movie and it's a plus that they revised their cheesy scripts to make it even better. Also, it's amazing that they actually portray the bad guys look normal with out making them overly evil in the beginning (I was wondering who the bad guys are and only the blonde girl kind of resemble the looks of a bad character in terms of how Disney draws it aka make the bad guys look really menacing)\"\r\n1\tFaithful to the work of Pearl S. Buck whose years spent in China as a child of Missionary parents that provided her with deep insights into the Chinese culture and its philosophy, this film adaptation is brilliantly done, both in technically artistry and acting.<br /><br />Wang Lung is a humble farmer grateful for the basics of life: to survive off of his land and to be newly wed to Olan, a servant to a rich and powerful family in the village area. Despite Wang Lung and Olan's best efforts to farm the land, raise kids, and build savings and wealth, a famine threatens to wipe out everything they have worked for. Choosing not to sell their land, a traditional Asian belief, they instead journey to a major city to wait out the famine. While in the city, they are reduced to begging and being just one of hundreds of other unfortunate homeless families. Although not a looter, Olan gets caught up in a mob looting at a rich man's house. She's summarily rounded up for execution by the army, but is saved at the last minute. Her good fortune, however, is that she found valuable jewels at the looting site that affords her and her family the opportunity to return to their farm to start over again. The newly found wealth transforms Wang Lung. He becomes selfish, self-centered and takes credit for the find. He becomes a very rich farmer but that only makes matters worse as he increasingly becomes more unappreciative, arrogant and difficult to reason with. He loses touch with the basic things in life that money can't buy: loyalty, commitment, trust, fairness and honesty. As punishment, nature once again turns the table on Wang Lung by sending a plague of locust to destroy everything he has. Brought to his knees, Wang Lung enlists the aid of all friends, former friends, workers, and family. With all that help, he succeeds in saving the farm. From that experience, he once again returns to humbleness and an appreciation for the basics in life.\r\n1\tAs romantic comedies go, this was a cute and winning one. I thought that the writing could have been stronger to build up the final connection a bit better, but that is not a huge tripping point. But, Amanda Detmer and Scott Wolf give nice performances and are as charming as ever. These are two of my favorite actors, and I was just glad to see them cast as romantic leads. I hope to see them cast in more projects soon.<br /><br />Overall, this movie won't change your life, but is is sweet, warm and winning. Not a bad thing to be at all.\r\n0\t\"First off, I agree with quite a bit that escapes Mr. Chomsky's mouth. His matter-of-fact delivery of interesting counterpoint is what makes the man a hit on the university campus circus. He comes across likable, unassuming, pragmatic. He doesn't cater to the current political style (obnoxious bi-partisanship) and he sets his sights on the far left as well as the far right, chastising both, and for good reason.<br /><br />Unfortunately, the film itself is a dud. In fact, I would not even call this a documentary but rather just a collection of speeches. Watching \"\"Rebel Without a Pause\"\" is no different from watching a speaker on a 3am taped segment on CSPAN. There are no camera movements, no edits, no stylistic touches. There is no story, no narrative.<br /><br />Technically speaking, the production is strictly amateurish. Audio is terrible and inconsistent; sometimes we cannot hear Noam speak, other times we cannot hear the questions that are being posited by those in attendance. When Noam is speaking rarely are we allowed to see the reactions of the audience except when we are given a quick shot of his wife who apparently attends every one of his speeches and beams with pride every time we see her.<br /><br />I cannot recommend this film and would say that you're probably better off checking out his taped speeches on cassette or CD to listen to in the car.<br /><br />4 out of 10 stars...and I'm in a generous mood today.\"\r\n0\tI enjoyed the feel of the opening few minutes, but 20-minutes in I was liberally applying the fast-forward button. Far too many shots of Stewart (Michael Zelniker) walking from room to room, down hallways, through doors and down the street, and as many shots of him looking pensive and confused. Gave me the impression that the story had originally been meant as a short (20-30 minutes), and then stretched into a feature as a labour of love between director Grieve and star Zelniker (they co-wrote the screenplay).<br /><br />It might have been more entertaining if any of the characters had anything to say that I hadn't heard said in many other films before, or if the ending wasn't - disappointingly - the one I had predicted three minutes into the film (atypical for an independent/smaller studio film). At least its heart was in the right place - it wasn't your standard formulaic Hollywood manipulative nonsense.\r\n1\t\"Alain Delon visits swift, sure vengeance on the ruthless crime family that employed him as a hit-man in the Duccio Tessari thriller \"\"Big Guns\"\" after they accidentally murder his wife and child. Tessari and scenarists Roberto Gandus, Ugo Liberatore of \"\"A Minute to Pray, a Second to Die,\"\" and Franco Verucci of \"\"Ring of Death\"\" take this actioneer about a career gunman for the mob right down to the wire. Indeed, \"\"Big Guns\"\" is rather predictable, but it still qualifies as solid entertainment with lots of savage and often sudden killings. Alain Delon of \"\"The Godson\"\" is appropriately laconic as he methodically deals out death to the heads of the mob families who refused to let him retire so that he could enjoy life with his young son and daughter. Richard Conte of \"\"The Godfather\"\" plays a Sicilian crime boss who wants to bury the hatchet with the Delon character, but the rest of his hard-nosed associates want the hit-man dead. Like most crime thrillers in the 1960s and 1970s, \"\"Big Guns\"\" subscribes to the cinematic morality that crime does not pay. Interestingly, the one man who has nothing to do with the murder of the wife and son of the hero survives while another betrays the hero with extreme prejudice. Tessari does not waste a second in this 90-minute shoot'em up. Apart from the mother and son dying in a car bomb meant for the father, the worst thing that takes place occurs in an automobile salvage yard when an associate of the hero is crushed in a junked car. Ostensibly, \"\"Big Guns\"\" is a rather bloodless outing, but it does have a high body count for a 1973 mobster melodrama. Only at the last minute does our protagonist let his guard down and so the contrived morality of an eye for an eye remains intact. Tessari stages a couple of decent car chases and the death of a don in a train traveling through a train tunnel is as bloody as this violent yarn gets. The photography and the compositions are excellent.\"\r\n1\t\"Although The Notorious Bettie Page is well acted and shot, is is, at best, a Cliffs Notes version of Bettie's biography. The film mainly centers on her work with Irving and Paula Klaw, the brother and sister team who produced the bulk of her most famous photos. It does not detail her life after posing, aside from her religious rebirth. It cites \"\"The Real Bettie Page\"\", by Richard Foster as a source, but it ignores Bettie's later years of mental illness and incarceration in a mental hospital. The narrow focus of the biography can be debated, but the majority of Bettie's fans and the \"\"civilians\"\" would probably be more interested in her modeling career, which is what they get.<br /><br />The film is well acted, with Gretchen Mol faithfully reproducing the look of Bettie, as well as conveying the sweetness that her photos exuded. The character is played as rather naive, a probable byproduct of interviews given by Bettie in recent years. It is more likely that Bettie was aware of the nature of her photos but rationalized it as acting and costumes.<br /><br />The supporting cast is also outstanding, with Chris Bauer and Lili Taylor playing Irving and Paula Klaw, and David Strathairn as Estes Kefauver. The film errs with the character of John Willie, played by Jared Harris. John Willie never met Bettie Page and was not involved in photo shoots with the Klaws. Harris plays Willie a bit like Peter O'Toole, in his more debauched state.<br /><br />Despite the quality of acting, the film is a bit of a disappointment in terms of depth. The story is rather cursory and we never feel that we truly get to know Bettie. Much like her photos, it's just an image. It does tend to exaggerate Bettie's notoriety. Her photos were mainly seen in and around New York, in a very narrow market of underground and cultish publications. Her real fame came after her photos were reprinted in the late 70's and 80's, and the Cult of Betty Page (as her name was usually spelled) grew. Bettie's greatest exposure (pardon the pun) was in Playboy, appearing in the January 1955 issue (the Christmas photo, which is staged in reverse in the film).<br /><br />The film is well done, if rather shallow. It is able to sustain interest until the end and showcases many fine performances. It hits the high points of Bettie's life, but ignores many details which would have given it far greater depth. The ending is rather a let down. It feels rather abrupt. Still, the movie is definitely worth viewing by anyone interested in Bettie, or even the time period. The soundtrack is great, really pulling the viewer into the 1950's. If nothing else, the film stands as a showcase for America's burgeoning sexuality and the clash with its Puritan past. It's also a peek at an icon for both men and women.\"\r\n1\tWow, praise IMDb and Google, for I have been trying to remember the name of this f'ing awesome movie for over 15 years now. Slaughter High, man! Hells yeah!<br /><br />I'm not going to bore you with a plot summary, and actors, and yadda yadda yadda, 'cause you all know what's up. That's why you're here anyway. What I will do, however, is explain the fond memory I have of this quintessential 80's D-Movie slasher joint.<br /><br />In 1987, when I was around the age of 7, my father used to rent all these horror movies. Would he care that his kids were watching them with him? No. So, at that young age i saw Slaughter High. What I saw in that movie stuck with me big time. I haven't seen it since, but I remember to this day most of the ridiculous kills in the movie. For example, the post-sex scene (why is there a metal bed in a school?) gets electrocuted. Or, the guy being drowned in a cess pool. Come on! My personal favorite, though...the exploding stomach from the tainted beer. Amazing! How can you honestly hate on a movie where one of the characters finds a beer in an abandoned school, like, 10 or 15 years later and thinks it would be a good idea to drink it? Then his stomach explodes? What!? And that great line: Let's take my car...it always starts. Classic crap all the way. <br /><br />I mean, I look back now, almost 20 years later, and laugh at it. But when I was 7, I was scared sh!tless. That jester hat (or was it a mask?) that the killer rocks throughout freaked me the f*ck out!<br /><br />All in all, yes, a crappy movie. But for nostalgia purposes and for humor factor this movie gets a 9 out of 10 from me. Either stay up every night real late and hope to catch this on same Late Late Late Movie show, or hunt down a VHS copy and dust off your VCR.\r\n0\tThis production has absolutely no storyline. The acting is embarrassing. The promising Dutch television Sophie Hilbrand star should not add this movie to her CV. Her acting is far from flawless and personally I think she has crossed boundary of professional decency; relating to the way she exposes herself in this movie. This movie contains too much unnecessary nudity, vulgar sexual scenes and rude language. It also shows a wrong image of the Netherlands (as most movies do). Do not bother to watch this movie: a waste of time, a waste of money and an embarrassing record for Hilbrand, who has proved to be better with her close on on the screen.\r\n1\t\"This was basically an attempt to do the same thing with \"\"Batman\"\" that was done with \"\"Gilligan's Island\"\" in \"\"Surviving Gilligan's Island.\"\" For those of you who missed it (and shame!) \"\"Surviving Gilligan's Island\"\" (full title: \"\"Surviving Gilligan's Island: The Incredibly True Story of the Longest Three Hour Tour in History\"\") was a special from a few years back, where Bob Denver (\"\"Gilligan\"\"), Dawn Wells (\"\"Mary Ann\"\") and Russell Johnson (\"\"The Professor\"\") related the story of the show's creation, cancellation, rediscovery & rebirth. Along the way, stories were dramatized with actors portraying the original cast and crew. It was very well done. It was funny, well cast and came across as a genuine document of the show.<br /><br />\"\"Return to the Batcave: The Misadventures of Adam and Burt\"\" is in a similar style. The re-telling of the history of the show, the re-enactments, the general feel are all the same. What's missing is the straightforward approach that \"\"Surviving\"\" took.<br /><br />In \"\"Return\"\", Adam West and Burt Ward both receive invitations to a car show to which they were not meant to be invited. After being allowed to stay, Adam and Burt witness the theft of the centerpiece of the show: the legendary Batmobile! Adam and Burt decide to chase after it themselves, leading them through clues that cause them to think about the history of the show. This eventually leads to the revelation of who stole the Batmobile and why.<br /><br />Choosing to use this conceit (actually having a plot) is the biggest letdown of this show. Unlike \"\"Surviving\"\", \"\"Return\"\" forces the viewer to follow a less interesting storyline (the theft of the Batmobile) instead of focusing all its attention on what the audience would most be interested in (the history of the show.) It is the historical sections that work the best. The casting (as in \"\"Surviving\"\") is excellent. Jack Brewer (\"\"Adam West\"\") and Jason Marsden (\"\"Burt Ward\"\") capture the feel of the actors without looking *too* much like them. Brett Rickaby (\"\"Frank Gorshin\"\") bears a stronger resemblance to his subject, but captures none of the late Gorshin's charm, only his characterizations. Other actors' portrayals are short and functional, with none standing out as especially good or bad. Many of the stories have been told before, but they mostly play out amusingly, with only the occasional clunky presentation. Another wonderful bit from the historical sections was the use of audition footage of Lyle Waggoner's tryout for the part of Batman. The only place where the flashbacks fail is when they insert obviously made up plot points to advance the main story. This downgrades the accuracy of the flashbacks needlessly.<br /><br />The \"\"main plot\"\" (if that is what we must call it) is, of course, ludicrous. This is not really a fault in and of itself, but it's just not carried off well enough to cover up the shortfall. Strong performances and good writing can make up for a silly plot (especially in these kinds of things) but we really get neither, here. The performances by West and Ward seem somewhat flat (even for them); the dialog too carefully written for it to feel natural. Again, I think the comparison to \"\"Surviving Gilligan's Island\"\" can be seen in that the dialog is mostly just there to set up a flashback. In \"\"Surviving\"\", that's all it intends to be. In \"\"Return\"\" it tries to do double duty and, unfortunately, often fails. Gorshin and Newmar do well (although I agree with others that Gorshin had not aged well and that Newmar had - and what's Waggoner taking to look that good?) but aren't given enough to do. Again, I think they all would have been better served by a more straightforward presentation than the one chosen here.<br /><br />Another odd point about \"\"Return\"\". This special is about the \"\"Batman\"\" TV series and its history, yet all the clips shown are from the theatrical movie. Even the Waggoner footage is technically movie footage. If you know you're \"\"Bat-history\"\", then you know that the movie was originally planned to be made first, only to be delayed in favor of the TV show when CBS needed to fill time fast. So when Waggoner and West were testing for the role, it was for the movie, not the TV show. Why \"\"Return\"\" only uses movie footage is unclear. It most probably has to do with rights issues, but it is a distinct distraction to those in the know: seeing Julie Newmar in the present, but only footage of Lee Meriwether as Catwoman in the past.<br /><br />Overall, I liked the show, mainly for the flashbacks. I would have preferred the style used in \"\"Surviving Gilligan's Island\"\", but I can understand why they'd want a more story-oriented piece given the subject matter. Besides, I like these people. It's nice to see them out and about, still having fun with one of the great pieces of entertainment history. I just wish they had done it a little better and when more of the original cast was still alive to be there.\"\r\n1\tI'm not much of an expert on acting or other movie details, but this movie just hit me deep. I don't think I'll ever forget it. One scene especially (I think that anybody who has seen the film will know of which one I am speaking) is imprinted on my brain.<br /><br />I also watched the similar movie Lilja 4-ever (as referred to by a previous commentator). It was also very moving, but not quite as straight to the point and brutal. If you are sensitive at all, either will bring tears to your eyes, but Anjos Do Sol (Angels of the Sun) may stay with you forever.<br /><br />This is very depressing subject matter, but I think, no, I HOPE that the film succeeds in bringing more attention to it.<br /><br />More people need to see this film!!!!!!\r\n0\tI can't believe this show is still rating a 9 out of 10. I could see if those votes were in the first 2 seasons, but what would possess anyone to continue to rate it high after that? I was a huge fan the 1st season. I was hooked - all the mystery, suspense, unexplained events. You never knew what was going to happen next. By season 2, I was still watching faithfully, but was getting a little frustrated that some basic things had yet to be explained. And instead of giving you more answers, it just seemed like more questions. I LOVE suspense, but you have to throw people a bone every now and then to keep them watching.<br /><br />Now, I can't even remember what finally turned me off, but somewhere in season 2, I had enough. I'm not a big fan of appointment viewing - and you clearly can't miss an episode to stay up on what's happening. So, it was no longer worth the effort to me.<br /><br />It's a shame that they couldn't have been a little smarter and more considerate of the loyal fans. I agree with some of the posters that it appears ABC just got greedy and decided to see how long they can stretch this show out. Don't they realize that in the end, they are going to lose more fans than they could possibly gain.\r\n1\tWe saw this at one of the local art movie theaters in the Montrose area of Houston, TX. It was a total surprise compared to the write-up in the theater's newsletter but we were both blown away by the artistry. It was beautifully done and (apparently) photographed in a schloss (German name for château) somewhere in the Munich area. It is a very explicit exploration of the sexual relationships of a group of twentyish men and women isolated from the day-to-day constraints. It is fantastic on more levels than I can remember. We came home after the movie and talked and talked until about 4 am the next morning.<br /><br />The version we saw was in English (mostly) so there must be at least two versions since the first reviewer saw the movie in (probably its original) German version. I searched and searched for a video tape version but never came up with anything. Would absolutely love to have a VHS or DVD version of this. It explores relationships at a fundamental level and is also a great tutorial on how to relate to your partner. If anyone knows the writer/director, please convince him to release again, preferably on DVD these days. I cannot even imagine getting tired of watching the candid performance of the actors who are now probably all in their forties. Please, please bring it back.\r\n1\tThis is a fascinating account of the hunt for the Soviet Union's first known serial killer. I had tuned in, just expecting a half-decent TV movie, but found myself drawn by the compelling way the story was told. As others have said, there is much to admire here that is sadly lacking in many big screen releases.<br /><br />Much of the credit must go to Chris Gerolmo, whose intelligent screenplay and direction draw the viewer in, until it is impossible not to feel emotionally involved. The acting by the whole cast is also superb, especially that of the two leads, Stephen Rea and Donald Sutherland. Their convincing portrayals give their character arcs a great deal of credibility, and the scene where they have their first committee meeting after Perestroika is genuinely touching.<br /><br />If you prefer your crime films with a bit more depth and a little less sheen, I strongly recommend you look out for 'Citizen X'.<br /><br />\r\n1\tThe only thing serious about this movie is the humor. Well worth the rental price. I'll bet you watch it twice. It's obvious that Sutherland enjoyed his role.\r\n1\tI second the motion to make this into a movie, it would be great!! I was also amazed at the storyline and character build in this game. I have played it again and again (over 20 times) just to try something different and it gets more interesting every time. Final Fantasy eat your heart out!! THIS SHOULD BE MADE INTO A MOVIE!!!!! If anyone out there wants some help to start a petition to have this made into a movie, please contact me. I would love to help with that project any day. The graphics are great for PS1 and even make you forget it is PS1 most of the time. The multitude of side quests makes it different every time you play.\r\n0\tThis sleek, sexy movie is a must-see. Only upon multiple viewings can one truly understand the uniqueness of this film. Personally I enjoy the narrator for his intelligent, no subject left untouched, style of narration. The introduction grips you right away, and holds you at the edge of your seat throughout the film. He provides wonderful insight into the world of the trainables and allows the audience to really 'connect' with internal horror this film exhibits. The script itself holds the movie together wonderfully. Not only for kids, but the elderly alike will gain a higher understanding of the trainables and the modern grasp that they have on the sexual experience. Ahead of its time and groundbreaking in cinematography, it surely defines the word 'masterpiece'.\r\n0\t\"(Rating: 21 by The Film Snob.) (See our blog What-To-See-Next for details on our rating system.)<br /><br />Here's a movie that will have you clawing at your own face in an attempt to earn release from the on-screen tedium. <br /><br />You'll not be wringing your hands, nor rolling your eyes, nor sighing into your popcorn. No indeed. For a movie of *this* averagousity, only clawing at your own face will do. <br /><br />When you begin to claw your own face -- as begin you must! -- start in at the lower portion. You'll need your upper portion, with its handy tear ducts, intact for the Truly Tear-jerking third act which may bring you to your knees if you haven't clawed your way clear of the entire theatre by then. <br /><br />In a season celebrating Joe Six-Pack and Hockey Moms as the new Gold Standard for leadership and foreign diplomacy, permaybe a movie this tedium will be welcomed as A Thing that anyone could create. *Watching* it, however, is a much more dangerous undertaking. <br /><br />Here's our story... <br /><br />Sidney Young, the London publisher of a fourth-tier celebrity/entertainment magazine is just about to see his magazine go under. He needs a miracle, and what he gets is a phone call from New York City, in the USA.<br /><br />The publisher of Sharp's magazine, Clayton Harding (played by Jeff Bridges) says \"\"Come work for me!\"\" With his own employees carrying out the fax machine out of his apartment/office in the background, saying \"\"Yes\"\" is a no-brainer.<br /><br />Soon Sidney is at work in New York City, doing allllllll the wrong things. His interviews consist of asking Broadway musical directors if they are (1) Jewish, and (2) gay. <br /><br />He kills the pet dog of Sohpie Maes, the industry's hottest movie star, when she leaves it in the magazine's offices during a business luncheon.<br /><br />This is a spot of bad luck for everyone, for, among other things, Sidney imagines that he is in love with Maes, before he wakes up to the Dunst character.<br /><br />Worst of all, he totally alienates Alison Olsen (played by winsome scripting-confusion by Kristen Dunst), a colleague assigned to show him the ropes of the magazine *and* The Big Apple. (We have, of course, been to a movie before, and so we know how this relationship is going to end up. This is therefore why we'll need intact tear ducts for the movie's third act.)<br /><br />The problem with The Thing is, the script just never jells, excepting for the one tear-duct set piece in which True Love prevails.<br /><br />Publisher Harding is supposed to be a son-of-a-bitch who also wants to just throw the whole job over. The script never comes down firmly on one or the other sides of this dichotomy, however, and Bridges is left to twist and waffle in the breeze.<br /><br />Alison Olsen is supposed to despise Sidney Young, but whenever he comes up to her (as he does constantly) she makes a point of engaging him in conversation, instead of attempting to discourage his existence.<br /><br />The \"\"comedy\"\" of early scenes is built around a piglet destroying an expensive hotel room, and then taking the elevator downstairs to urinate on the expensive high heels of a celebrity at a cocktail reception.<br /><br />The hot starlet Maes confesses that she is attracted to Young because he is \"\"wounded.\"\" The character never shows us *why* he is wounded, however. This is yet another resultant of the movie's mortally wounded script.<br /><br />At one hours and fifty minutes, This Thing feels longer (and more deadly) than Napoleon's retreat from Moscow. It is uninspiring, unfunny, unredeemable, and not even rentable. Run Away\"\r\n0\tTHE SEVENTH SIGN has a great opening hook as the Israeli defence force come across a terrorist base . This is the type of hook that is a must when writing a script , it grabs the reader / audience and the introduction of David Bannon as he rents a room from Abby and Russell Quinnn telegraphs the point that this is a man who`s not who he says he is . However after the great opening third I found the rest of the movie confusing and uninvolving with a large number of plotholes and isn`t all that different from umpteen other supernatural thrillers that I`ve seen\r\n1\t\"Wizards of the Lost Kingdom is a movie about a young prince (Simon) who is banished from his kingdom due to his father (the king) being killed by the cliche \"\"evil adviser\"\". This movie's about Simon's adventures. The special effects, plot, acting, and generally everything about this movie is BAD. However, it's so bad that it's funny. You will keep watching this movie simply because it's so bad it's funny, and, like the other reviewer of the movie said, it's so bad it's good.\"\r\n0\t\"Necessarily ridiculous film version the literary classic \"\"Moby Dick\"\". John Barrymore is Captain Ahab, who falls in love with the pastor's daughter, Joan Bennett. His brother Derek is a rival for Ms. Bennett's affections. When Mr. Barrymore loses his leg in a whaling accident, Bennett rejects him. He must slay the whale and win Bennett back...<br /><br />There are several scenes which may have thrilled 1930 theater audiences; particularly the scenes involving Barrymore losing his leg. The film hasn't aged well, however; there are much better films from the time, both 1920s silents and 1930s talkies. The two name attractions, John Barrymore and Joan Bennett aren't at their best. <br /><br />**** Moby Dick (8/14/30) Lloyd Bacon ~ John Barrymore, Joan Bennett, Lloyd Hughes\"\r\n0\t\"Even in a bad film, there is usually some redeeming feature, something that you can say yes it was terrible, but there was that performance, or that part of the script, or that special effect, this was just simply terrible all over. The acting was laughable, the script terrible, complete with many inexplicable Breakfast at Tiffany's references, and even the special effects were shoddy at best. This was a very bad film and one that even Drew Barrymore wishes was expunged from history. Watch it if you want to: a) Suffer harsh self inflicted pain. b) See just how bad a film can be. This is one film where I can use the cliché \"\"there's ninety minutes of my life I will never get back\"\" with some justification!\"\r\n0\tWith no fault to the actors (they all put on great performances), the overall story was not very well executed. The movie opens with a great zinger: a crazy old guy forces a young Aborigine girl's car off the road. But then, we're forced to endure 40 minutes of character development with an entirely new group of characters ... and we don't know why until the 40 minutes are up. It turns out that they are the ones who eventually discover the girl's body ... and the story progresses from there.<br /><br />While the story does pick up at that point, it really goes nowhere. After 2 hours, I asked myself: was there a point to this, or was it just to see the characters struggle with accusations of racism and stupidity of how they handled the discovery? The story was ultimately unsatisfying and felt unfinished. While it is well acted, there's not a strong enough backbone in the film to warrant recommending it.\r\n1\t\"Your average garden variety psychotic nutcase (deliciously essayed with unhinged glee by Stephen Sachs) knocks off various dim-witted young \"\"adults\"\" (to use the term very loosely) in Dayton Hall University, which is being closed down for demolition. Featuring dreadful acting by the entire cast (Daphne Zuniga makes her ignominious and inauspicious film debut here as Debbie, a bimbo who has her head crushed by a car!), a hefty corpse tally of 10, okay make-up f/x by Matthew Mungle, a few bloody murders (baseball bat bludgeoning, chicken wire strangulation, your standard drill through the head bit, that sort of gruesome thing), a downbeat surprise twist ending which was later copied in \"\"Intruder,\"\" a creepy score by Christopher (\"\"Hellraiser\"\") Young, a slight smidgen of gratuitous female nudity, and endearingly incompetent direction by Jeffrey Obrow and Steve Carpenter (who also blessed us with \"\"The Power\"\" and \"\"The Kindred\"\"), this entertainingly abysmal slice'n'dice atrocity sizes up as a good deal of delectably dopey and drecky low-grade fun.\"\r\n0\t\"This is one of those horror flicks where twenty-somethings fool around with the dark arts around a camp fire, getting into a heap of trouble for doing so. A portal was opened containing a world of demons known as the Kelippoth of the Sitra Achra by a man whose daughter, Summer, gets kidnapped by something, taken into it. Summer is trained by a mysterious group whose identities are never revealed to battle the demon monsters. This is a portion of the plot which lends itself to scrutiny. Anyway, three wannabee witches, who went to high school together, Renea, the most enthusiastic, serious practitioner in the dark arts, and her lesbian cohorts, Jasmine and Marlene(..it's more or less a passing fad with them, though..) join up with buddies, Jason and Ricky, on a trip in the wilderness where Summer vanished from her home ten years ago. Opening the portal through a spoken text written in an ancient book, a demon is set free, as is Summer, now a warrior babe whose training has led to a very fit and athletic body and skills that have been needed to ward off monsters in the other world.<br /><br />Low budget contains a loopy, but ambitious story, restraining it into a confined setting. These young adults spend a lot of time running around in the woods hoping not to be fodder for a beast. As can be the case in these movies, the demon stands on the sidelines while the story develops as Summer attempts to remember how everything came to pass, while befriending Jason who wishes to help her restore the lost time. The action is shot mostly in the dark, making any violence hard to decipher. Brigitte Kingsley(and the rest of the female cast for that matter), is some mighty nice eye candy, dressed scantily clad as a female Conan, a gorgeous body we have to pleasure to gaze upon from the moment she appears until the closing of the movie. Some lesbianism(..some kissing and fondling)and nudity spice things up nicely, and the cast seem to be having fun with the goofy plot..it's so preposterous that the silly tone is probably appropriate for the material.<br /><br />Might be of interest for co-starring World Wrestling Entertainment's \"\"Captain Courageous\"\" Christian(real name, Jason Reso)as one of the group, spoofing his alter ego, as a chicken, quivering at the sound of a snapping tree twig. Landy Cannon is likable as unlikely hero, Jason, a lovestruck, naive young man whose ex-fiancé, Jasmine(Vanessa James)is now bi-sexual and in love with Marlene(..Jasmine's cruelty is in toying with Jason's feelings by hiding her affair with Marlene from his knowledge), while Ricky and Renea attempt to steer him away from this idea that he can rekindle a dead flame that gone out, never to ignite again. The Kelippoth demon is mostly darkly lit, I guess to refrain from showing how ludicrous/laughable it looks if presented in full. The lesbian antics of Jasmine and Marlene(Haley Shannon) is mostly tame, their love making, once alone in the woods up against a tree, is toned down and also lighted using the blackness of night. My rating is a bit favorable towards it, almost solely because of Kingsley, for purely superficial reasons, rather than the plot or film-making. The movie aims to please and is marketed to the boys(and girls who love hot women). I think, though, for the most part, the humor falls a bit flat.\"\r\n0\tI saw this film awhile back (while working on a trailer for the film's production company) and it was TERRIBLE. Hewitt is mediocre at best, Hopkins phones his performance in (but still blows away Hewitt in their scenes together) and Alec looks bored. Trust me on this: you should avoid this film like the plague if it ever gets released. It seems to go on forever as the tired plot unfolds at a snail's pace. It is relentlessly unfunny, the cinematography is crappy and the direction is pedestrian. Alec Baldwin should go to film school if he plans to direct again. In terms of his acting, his character is totally unlikable, which makes it impossible to root for him. Dan Ackroyd is pretty funny and the surprising makeup of the jury near the film's end is cute, but this film is just plain awful.\r\n1\tBASEketball is awesome! It's hilarious and so damned funny that you will wet your pants laughing. I have seen it so many times I have stopped counting. But everytime it gets funnier.<br /><br />Trust me on this one...BASEketball is a surefire hit and I loved it and will continue to love it. I hope one day there will be a special edition DVD brought out!!!<br /><br />Ten Thumbs Up!!!\r\n1\tThat was definitely the case with Angels in the Outfield. It was on TV last night and I believe I hadn't seen the film since my sophomore year in high school and I'm now in my 4th year of college. Although the film has many flaws, it is just so touching that you can't help but sit down, watch it, and enjoy yourself. It is also hilarious. Danny Glover's ranting is just so over the top that you can't help but laugh out loud at him at most time. It adds to the film and I'm sure it's exactly what the director wanted. You actually feel for the characters in the film even though the development isn't the best. A must see. I highly recommend.<br /><br />8/10\r\n1\tWritten by the writer who penned the excellent Murder Rooms series which chronicled ACD's adventures with Doctor Joseph Bell, I was looking forward to this and I wasn't disappointed. It was quite slow moving, with a lot of emphasis on Doyle's frustration at Sherlock Holmes which was very accurate and excellently portrayed. It was an interesting character study and very well shot ( on digital video, unusual for a period piece ). The acting was excellent all round, particularly Tim McInnery and Brian Cox although the actor who portrayed ACD, whose name I cannot remember impressed me no end. An excellent character study which has about the same amount of twists as any normal Sherlock Holmes case. Do see this if you get the chance\r\n1\tCall me adolescent but I really do think that this is a great series. If you haven't had a chance to experience a few episodes of the latest Star Trek series, you should definitely watch this one. Perhaps more compelling than that of Voyager's Caretaker, which launched the series with Cpt. Janeway, Archer's adventures are completely different, yet strangely familiar...The music is catchy too. No true Sci-fi fan can go without seeing at least one Star Trek episode--and these installments make the wait worthwhile.\r\n0\tI have no clue as to what this was shot on but you can definitely tell that they had no budget. Bad acting, horrible cinematography, and lame plot and some decent special effects do not make a good movie. The WWF style cinemtography will make you cry...where's the tripod?! The filmakers aimed high, but sorely missed their mark.\r\n1\tCorbin Bernsen's sent letters to four criminal associates he's worked with in the past and it's a real intergenerational mix with Fred Gwynne, Lou Diamond Phillips, William Russ, and Ruben Blades. They're to meet him in this obscure Montana town and he doesn't explain why because he's then picked up by out of state police from New Jersey on a warrant. <br /><br />Of the criminal group that's been gathered together, they all know Bernsen, but don't know each other. A lot of comedy involved is them feeling each other out. As the oldest Gwynne though denying it kind of takes charge with the others grumbling, but going along. Especially when they figure out what Bernsen had in mind.<br /><br />As for Bernsen, he's got the good fortune to be picked up by a pair of bumblers in Ed O'Neill and Daniel Roebuck. He gets the drop on O'Neill and escapes.<br /><br />After that it's the four criminals trying to finish what Bernsen started and Bernsen getting away the police. In the intricately plotted screenplay, it's fascinating how both story lines keep intertwining with each other. Hoyt Axton as the local sheriff watches in amazement at what unfolds in his town.<br /><br />Disorganized Crime is a fabulously funny caper film by a bunch of players who seem mostly to have had a background in television or would soon. I can't say that anyone stood out in the cast they also seem to click so well together. <br /><br />Ironically none of these people are comedians per se, but they all exhibit a light comic touch that good directing brought out. <br /><br />Disorganized Crime is one very funny caper movie, the kind of film that well known pessimist Mr. Murphy would have written.\r\n1\tIt may (or may not) be considered interesting that the only reason I really checked out this movie in the first place was because I wanted to see the performance of the man who beat out Humphrey Bogart in his CASABLANCA (10/10 role for the Best Actor Oscar. (I still would have given the Oscar to Bogie, but Paul Lukas did do a great job and deserved the nomination, at least.) Well, I'm glad I did check this movie out, because I enjoyed it immensely. I think the movie did preach a little, but not only did I not mind, I enjoyed the speeches and was never bored with them.<br /><br />The acting was outstanding in this movie. I especially enjoyed Paul Lukas, Lucile Watson (rightfully nominated for an Oscar), Bette Davis (wrongfully not nominated), George Coulouris and, oddly, Eric Roberts, who plays the middle child. I really enjoyed his character: an odd-looking boy who talks like some sort of philosopher. He just cracks me up. Even the characters name (Bodo) is funny. <br /><br />The ending, in which Lukas's character was forced to do something he considered wrong even though he was doing it for all the right reasons, worked for me as well. I agreed with why he felt he had to what he did, and I understood why he couldn't quite explain it. The message this movie makes is a good and noble one, the scenery (meaning the house) is beautiful, and the acting is the excellent. Watch this movie if you ever get a chance.<br /><br />9/10\r\n1\t\"I've only watched the first series on DVD, but would summarise The Sopranos as a Shakespearean plot with a Tarantino-like script. The series is as good as Goodfellas and Casino, and almost as good as The Godfather (hence not a \"\"10\"\"), and far better than any of Guy Ritchie's efforts. Although there's plenty of action, some of it pretty bloody, the story is character driven. Even some of the minor characters contribute to great story lines; e.g. the priest's relationship (or lack of) with Carmilla and the restaurateur's wife, and Christopher and his dimwit friend (who didn't last very long (a Darwin Award nominee?))<br /><br />Apart from the plot, the script and the acting, the other reasons I liked it;<br /><br />1. It made me want to visit New Jersey and eat pasta with a tomatoey sauce. 2. The music. 3. It shows that literally anyone can suffer from mental health problems.\"\r\n0\t\"A singularly unfunny musical comedy that artificially tries to marry the then-cutting edge rock 'n' roll explosion with the middle-class sensibilities of a suburban sitcom. The result is a jarringly dated mish-mash that will satisfy none of the audience that went for the music, but will at least keep their parents sated.<br /><br />A quick glance at the promo write-up on the back of the video release should give some idea of the content. Tom Ewell is a drunken agent, overplayed with so little comic ability you almost expect him to bellow \"\"hi honey, I'm home!\"\" The blurb sites him as \"\"So funny in 'The 7 Year Itch'\"\". It sounds almost like an excuse. What other film would sell itself on the fact that a leading player was good in something else? It reads like \"\"So funny in 'The 7 Year Itch' ... but he's rubbish in this\"\".<br /><br />Mansfield, a beautiful girl with rumoured 50-inch assets, is, unfortunately, a bargain basement Monroe with all the acting ability and comic timing of a rotting haddock. Her wooden delivery combined with Ewell's OTT double-takes make this a comedy partnership from Hell. For her part, the sell gives us: \"\"[Jayne Mansfield] whose more obvious talents are the cause of many of the film's biggest laughs!\"\" As you can see, a movie sold on the idea that it's lead has a big chest is not the most sophisticated of things. Most of this \"\"humour\"\" is men literally falling over themselves, their glasses cracking upon site of Mansfield, etc. Only the Freudian nightmare of a milk bottle overflowing casts doubt upon its \"\"U\"\" certificate.<br /><br />For the musical side, the most adenine of players are chosen. Would you really care to see Eddie Fontaine offer: \"\"I love your eyes, I love your lips, they taste even better than potato chips\"\" in a song called \"\"Cool It, Baby\"\"? Only the incendiary Little Richard breaks out of the MOR, though is forced to sing some of his more dad-friendly songs in a four-minute sequence. And how come all the acts sing without a single microphone? Attempted satires on the industry are broad and childlike in their conception.<br /><br />Technically, the picture was quite advanced, with special effects (including a ghost-like Julie London) and deluxe color (Which now looks flat and artificial. In fact, with its reds that bleed and fake-looking flesh tones, it resembles a colorised movie). Direction, though, isn't outstanding, and the sound quality is also quite poor.<br /><br />Perhaps it comes down to it being so old. A time when men still smoked on screen, sickeningly cute child actors made adult remarks and black servants only got to cook and dance. (All of which happen here). Yet Some Like It Hot, The African Queen, Ben Hur and many, many more stand as examples of films from the period that can still be enjoyed today, so the \"\"good at the time\"\" argument doesn't really stand up. At its heart The Girl Can't Help It is a cynical and patronising venture that doesn't bear close inspection. 4/10.<br /><br />\"\r\n1\tIt's not very often a movie can literally make the entire audience laugh, and five minutes later fill their eyes with tears. Many movies try to do this, but few can deliver the emotional impact that this film did. Adam Sandler practically drags you in with his heated and often violent outbursts, but also makes you laugh when the shadow of his past isn't pulling him down. I'm not going to ruin anything, but there is one scene in particular that should have your eyes watering and lip quivering. Even the most macho of men would have to be heartless bastards to not feel something while watching this movie. Don Cheadle gives another great performance, but is out-shined by Sandler. Liv Tyler and Jada Pinkett Smith give solid performances, but nothing in the line of the two leading roles. Sandler's humor is still present, which actually saved this film from being border-line depressing. There are several laughs to be had, but don't think you will stay there long, because it gets serious again without much warning.<br /><br />I could go on and on about how well this movie hit on just about every emotion the human body contains, but I will cut this one short. I feel there is no need to tell you anything more. Do yourself a favor and take the time to see this movie. Even if you have to wait until it comes out on DVD, it's 100% worth the time. A deeply moving film sure to put tears in your eyes and a smile on your face...unless of course...you are a heartless soul.\r\n0\tI thought this was a very clunky, uninvolving version of a famous Australian story. Heath Ledger and Orlando Bloom were very good in their roles, and gave their characters some personality; but the whole thing felt forced and mechanical.<br /><br />The beginning could have been a lot more involving; perhaps starting with a shootout, and then flashing back for a recap of how they got there or that sort of thing. And I felt like every scene was routinely predictable and signposted, like a very bad tv soap.<br /><br />I was really looking forward to this movie, and hoping for something a lot better. The only thing I can say in its favour is that it beats the Mick Jagger version, but not by much.\r\n0\t\"I didn't really expect much from \"\"The Night Listener\"\" and I actually never heard of it until I saw the cover in the videostore. However, the movie is very effective when it comes to building up suspension and tension. On occasion it drags a little, but it actually helps to keep you wondering what's going to happen and more importantly: when. As the movie progresses, the character played by Robin Williams gets dragged into some kind of \"\"cat and mouse\"\" spiel to the point where he becomes obsessed with finding out the truth and existence about a 14 year old abused kid that no-one seemed to have ever seen in person. The Night Listener is an interesting story, which is great in building up the suspense throughout the movie and you're pretty much kept in the dark of who is lying and what's real. However, in the end it kind of disappoints and doesn't live up to the potential it could have had. It doesn't really give you a detailed or plausible explanation about the other main character, which would have been helpful and interesting.\"\r\n0\tI'm probably not giving this movie a fair shake, as I was unable to watch all of it. Perhaps if I'd seen it in a theater, in its original presentation, I might have appreciated it, but it's far too slow-moving for me.<br /><br />I read the book some 25 years ago and the details of the plot have faded from memory. This did not help the film, as it's something less than vivid and clear in its presentation of events.<br /><br />This is really four linked films, or a film in four parts, and was, I believe, intended to be seen over four nights in a theatrical presentation. I found Part I to be enjoyable enough, but it was all I could do to sit through Part II, which drags interminably. Reading Tolstoy's philosophizing is one thing. If you get a good translation or can read it in the original, his brilliant writing far outweighs any issues one might have with the pace of the story. On film, however, it's hard to reproduce without being ponderous.<br /><br />I have other issues with the parts of the film that I saw. It's very splashy, with a lot of hey-ma-look-at-this camera work that calls attention to itself, instead of serving to advance the story.<br /><br />Clearly, I'm missing something, but I just couldn't summon the enthusiasm to crank up parts III and IV.\r\n0\t\"The First Power (1990) was a terrible film that came out during the late 80's/ early 90's era of cheaply made horror films. I found this movie very boring but extremely hilarious in some parts. This movie lacks so much sense and credibility that it ain't even funny. The swift justice system in this film makes Texas look weak by comparison. Lou Diamond Phillips is in way over his head with this role (he plays a hard-boiled cop) and Tracey Griffith (Melanie's more attractive sister) plays a psychic. Don't waste your time with this one because it's bad. What a minute, I take it back. This movie makes a great party film. Check out the switchblade crucifix packing nun, she has the nicest legs I've ever seen on a Nun that wasn't in a Jesus Franco nunsploitation flick. Yeow!<br /><br />This marked an end of an era for L.D.P. His star was tarnished and he couldn't draw flies to a dung heap. It was D.T.V. for him until his \"\"ressurection\"\" a few years later.<br /><br />Not recommended unless you're desperate.\"\r\n1\tThere are enough sad stories about women and their oppression by religious, political and societal means. Not to diminish the films and stories about genital mutilation and reproductive rights, as well as wage inequality, and marginalization in society, all in the name of Allah or God or some other ridiculous justification, but sometimes it is helpful to just take another approach and shed some light on the subject.<br /><br />The setting is the 2006 match between Iran and Bahrain to qualify for the World Cup. Passions are high and several women try to disguise themselves as men to get into the match.<br /><br />The women who were caught (Played by Sima Mobarak-Shahi, Shayesteh Irani, Ayda Sadeqi, Golnaz Farmani, and Mahnaz Zabihi) and detained for prosecution provided a funny and illuminating glimpse into the customs of this country and, most likely, all Muslim countries. Their interaction with the Iranian soldiers who were guarding and transporting them, both city and villagers, and the father who was looking for his daughter provided some hilarious moments as we thought about why they have such unwritten rules.<br /><br />It is mainly about a paternalistic society that feels it has to save it's women from the crude behavior of it's men. Rather than educating the male population, they deny privilege and rights to the women.<br /><br />Seeing the changes in the soldiers responsible and the reflection of Iranian society, it is nos surprise this film will not get any play in Iran. But Jafar Panahi has a winner on his hands for those able to see it.\r\n0\t\"Although the actors were good, specially Fritzi Haberland as the blind Lilly, the film script is obsessively pretentious and completely arbitrary. A famous theatre director (Hilmir Snær Guðnason), becoming blind after a car accident, is on the run for himself and his destiny. Lilly, being sightless since her birth, is teacher for blind persons, and wants to make him \"\"seeing\"\" again. (Blind persons are seeing with their fingers, nose and ears.) Here this movie is becoming a roadmovie; and the longer the road becomes, the closer their relation develops, which was predictable since the beginning of the film. The theatre director is on the road to his mother (Jenny Gröllmann). His mother is living somewhere in Russia on the sea and making artistic installations - of course, what should she do other! - and she is still living, because she is waiting his son, to die. My God! This are destinies!<br /><br />Finally the son arrived! Mum is celebrating a big party! At the beach. Wind is blowing and a pianist is playing on a real piano in the middle of a dune. Yes, they are celebrating her farewell. The son arrives just in time. Mother can finally swallow the pills administered by a pretty nurse. Now a great artist can die in the arms of her great artist son, speaking sad contemplations about live in perfect German, while the son is answering with a rough accent. Because the son is unable to see, he is not falling in love to the nurse, - the film script would have become also too complicate! - but is looking for Lilly on the way back to home.<br /><br />Parallel to this roadmovie the sister of Lilly, staying at home is asking a gawky schoolmate to deflower her, who has first to booze himself to courage. The occasion is favourable. Because Mum (Tina Engel) is on journey together with the lover of Lilly, Paul (Harald Schrott). They are after Lilly, to bring her back. Paul and the mother of Lilly are not falling in love, because the film script would have become too complicate. The film script missed to make out of Paul something exceptional too. I would suggest an architect or a Pianist, or course a famous one! When they finally find Lilly, they want to convince her, to come back to Paul, because he has two eyes to see and is able to care for her. But Lilly felt in love to his pupil, the theatre director; did I mention, that he was even a famous theatre director?<br /><br />This is German film art! As you may see in this pretentious production, that the German film subsidy fund is not always producing good films, because they subsidy just such kind of pseudo intellectual films. This film is really embarrassing. I have the impression, that the film script has been cobbled together from some highbrows in coffee shops and restaurants. Everybody is entitled to contribute with an idea. Probably also Til Schweiger has contributed with some intellectual flash of wit, being a co-producer. I was reminded by this film script to an other German film of absolute painfulness: \"\"Barfuss\"\" - already the spelling of the title is not right! \"\"Barfuss\"\" DVD cover writes proudly: \"\"A Til Schweiger Film\"\". This film got also subsidies of Filmstiftung NRW, Filmförderung Hamburg and the FFA.<br /><br />Please don't spoil your time with this film! There are really good films in Germany. Watch out for film directors like Marcus H. Rosenmüller, Joseph Vilsmaier, Hans Steinbichler, Hans-Christian Schmid, Faith Akin ...\"\r\n1\t\"New York police detective Mark Dixon (Dana Andrews) is a guy who has to deal with his own demons on a daily basis at the same time as coping with the normal ups and downs of everyday life. The strain produced by his internal struggle and his intense hatred of criminals, leads him to make serious errors of judgement and to fail to recognise the need for any code of conduct to be adhered to in his dealings with people on the wrong side of the law. He has a track record of treating suspects and known criminals with gross brutality and this has brought him into conflict with his superior officers who have censured him for the amount of violence he has regularly used. Dixon cannot reconcile these calls for restraint with his own extreme and irrational hatred of all criminals. He is tormented by the fact that his father was a criminal and has been left with a powerful need to live down his father's reputation and to avoid fulfilling the low expectations that many people have of him as a consequence.<br /><br />When a rich Texan is murdered following an evening's gambling run by gangster Tommy Scalise (Gary Merrill), Dixon is assigned to the case. Scalise tells Dixon's superior officer Detective Lieutenant Thomas (Karl Malden) that the victim had been accompanied by Ken Paine (Craig Stevens) and his wife Morgan (Gene Tierney) and that Paine had committed the murder. Dixon goes to Paine's apartment and questions the suspect who is both inebriated and uncooperative and when Paine punches him, Dixon retaliates and Paine collapses and dies. Dixon goes on to dispose of the body in a nearby river. Paine's wife is questioned and after describing what had happened at Scalise's place, adds that her father had gone to Paine's apartment later that night to take issue with him about the fact that she'd returned home with facial bruising. Paine had previously attacked her on a number of occasions and her father, Jiggs Taylor (Tom Tully), had threatened that if it happened again he would beat Paine up. This information leads to Taylor being arrested and charged with murder. Nobody accepts Dixon's explanation that Scalise had killed the Texan and then had Paine killed to eliminate him as a witness.<br /><br />Dixon continues to make various attempts to get Scalise convicted but eventually realises that the only way to successfully achieve his goal is to write a confession about his own role in Paine's death and the cover up. He does this and also records that he is going alone to confront Scalise so that the police can arrest the gangster for Dixon's murder. The confrontation with Scalise and the eventual means by which Dixon achieves his own redemption, provide a tense and fitting conclusion to this gritty thriller.<br /><br />Dana Andrews' strained and preoccupied expressions convey his character's perpetually troubled nature and his anxieties as he deals with a series of misfortunes which include and follow Paine's accidental death. Dixon, however, isn't the only one to experience misfortune as Morgan, a successful model loses her job because of all the trouble surrounding her. Her father, who'd some years earlier been awarded a diploma for assisting the police, unjustly finds himself charged with a crime he did not commit. Ken Paine who'd been a war hero had experienced unemployment and a loss of self esteem which led to alcoholism and wife beating and Scalise who'd been set up in business by Dixon's father also suffers his own misfortunes.<br /><br />\"\"Where The Sidewalk Ends\"\" is a thoroughly engaging tale involving a group of interesting and diverse characters and a main protagonist who is the absolute personification of moral ambiguity.\"\r\n0\tThis movie is once again, one of those movies that someone thinks or tries to make others think that they understood it. Anyone who tries to make any sense of this is a MORON! My advise would be to take TWO not one but TWO hits of very strong acid and at least you'll get a visual thrill out of it!! Although at the end you may kill yourself for wasting your acid!!!! Being that this comment requires 10 lines of info, let me write something for those of you that will try to defend the movie. Unintelligble. Garbage. Schitzoid. Waste of talent. Movie is ice, with paper on destination with ringing clouds, on a sunny dive in the pudding.... Sounds like lion in a red light with seeing hair. Now explain that to me!!!!\r\n0\t\"A retired diplomat, played nicely by Michael York, goes to Russia to get revenge on the Russian gangster that murdered the diplomat's policeman son. There the diplomat meets an exceptionally strong and decent Russian cop who helps him bring the Russian gangster to justice.<br /><br />I remembered the old action flicks of the 1980s that always portray the Russians as evil bad guys out to undermine the righteous U.S. government. It's interesting to see this time the Russian guy as a hero.<br /><br />Not a great flick, it's really typically a \"\"B\"\" action flick. Michael York lends some class to this mediocre movie. Alexander Nevsky, who plays the Russian cop is kind of \"\"blah\"\" but surprisingly has some chemistry with Michael York. Face it, Michael York is such a good actor that he'd have chemistry with anyone he's doing a scene with. Disappointingly, the handsome Adrian Paul gets killed within the first 15 minutes into the movie. Now, if Adrian Paul was in this movie longer, it would've been an above average \"\"B\"\" action flick. All I can say about Adrian Paul is that he is real nice to look at for the first 15 minutes of the movie. The villain, played by Richard Tyson, is your typical bad guy. He's very blonde and very villainous in this movie.<br /><br />Rent this flick if there is nothing else on TV to watch. It's okay. It doesn't suck too bad. The action scenes are decent. The acting could be better, the plot could've moved much faster, but hey, you get to see what Russia looks like today!\"\r\n0\tThat is the only thing I can positive to say about this movie. Cleveland is the star, I've been there and never saw the city look this good. Beautiful river and cityscapes.<br /><br />This movie moves ahead at such a pace they hope you won't notice the lack of real world relevance. People running around and shooting guns without any consequence. For example, there is a shoot out at Rob Lowe's character's house- two cars are stolen, and yet the cops don't show up there till much later in the movie. Murder for hire never looked so implausible.<br /><br />Whoever wrote this movie should be on the receiving end of one the movies countless stray bullets. Many of the actors in this movie are so much better than this. I check the date of the movie just to make sure it wasn't written during the writers strike but alas this was not the case. This movie is currently in rotation on Universal's HD channel- unless you want to drool of over Lowe there is no reason to watch it.\r\n1\tBefore Dogma 95: when Lars used movies as art, not just a story. A beautiful painting about love and death. This is one of my favorite movies of all time. The color... The music... Just perfect.\r\n0\t\"In my eyes this is almost the perfect example of Hollywood ego, only beaten by the new king kong movie. Superman is the original super hero and deserves to be treated with respect even though he wears tights. Brandon Routh was the worst superman I've ever seen, from the start of the movie u just wanna shove a chunk of kryptonite down his throat. He looks just silly wearing the costume. But enough about him, Kate Bosworth was a bad choise for lois lane, she is supposed to be a hard ass reporter, but in this movie she looks more like a schoolgirl. The plot was weak and predictable (WOW, He is actually supermans son, who would have ever thought....) and the acting was horrible. This movie has one good thing going for it, and it's name is Kevin Spacey. His portrayal of Lex Luthor was brilliant but even he could not save this movie. What this movie needed was the cast of \"\"lois and clark\"\" (except Kevin Spacey of course) and a different story. I watched this movie after watching \"\"the hills have eyes\"\" and I was chocked to learn that there existed worse movies then that.\"\r\n0\t\"Nothing will ruin a movie as much as the combination of a poor script and poor direction. This is the case with \"\"The Mummy's Tomb.\"\"<br /><br />The script is leftover ideas from older, better Universal horror flicks like \"\"Dracula\"\" and \"\"Frankenstein.\"\" The direction is trite and stale. The acting is mediocre. Even Chaney's Kharis is feeble compared to Tom Tyler's in \"\"The Mummy's Hand,\"\" and the producers are foolish enough to add footage from Christy Cabanne's vastly better prequel and point up the weakness of their own film!<br /><br />Universal realized how bad this movie was, and essentially remade it from scratch two years later as \"\"The Mummy's Ghost\"\" with a much better script and better director. The result was likely the best film in their four film \"\"Mummy\"\" cycle, although not anywhere near as good as Karl Freund's 1932 original.<br /><br />Cabanne's footage raises this film to a 3. The \"\"new\"\" stuff is a 2 at best. Dick Foran and Wallace Ford were probably glad to see their characters bumped off so they wouldn't have to appear in dreck like this anymore!\"\r\n0\t\"Warning: This review contains a spoiler.<br /><br /> Wow. Almost impressively bad. Note I said, \"\"almost\"\". This is nothing more than lots of random scenes strung together in a loose attempt at a story. The protagonists (you CANNOT call them \"\"heroes\"\") shoot innocent bystanders for their food, and also rob same for similar reasons. There's also tons of homoeroticism, which was a turnoff for me. (SPOILER: It seems as if the villainess (who only is topless and not naked as other reviews claim) gets killed early on, but miraculously recovers, adding another 70 minutes of audience-torture.) I can't shake the feeling that animal abuse occurred numerous times in this cinematic abomination. If you're in a MST3K mood, you might find this watchable, but for the most part you can forget it. Go rent the original Conan DVD instead.\"\r\n1\tSudden Impact was overall better than The Enforcer in my opinion. It was building up to be a great movie, but then I saw the villain(s) and was disappointed.<br /><br />Sudden Impact was different than the previous installments. The plot went a different direction in this movie, as Dirty Harry doesn't take as much of a police approach this time around. We also don't see the villain(s) until later, which means less screen time for them, which is better for us all.<br /><br />Clint Eastwood once again steals the show as Dirty Harry, enough said. Pat Hingle was enjoyable as Chief Jannings, Harry's new assigned boss. Bradford Dillman seemed to change his name to Captain Briggs here, either way, he wasn't any different. Michael Currie is decent as Lt. Donnelly, Harry's annoying superior. I personally enjoyed Kevyn Major Howard as Hawkins, the young punk who has a vendetta against Harry. Albert Popwell was excellent as Horace, Harry's buddy. Audrie J. Neenan was good as Ray Parkins, a famous lesbian around town. Jack Thibeau was well cast as Kruger, a pervert. Now for the really bad part. Sandra Locke, Eastwood's long-time lover was horribly miscast as Jennifer Spencer, Harry's love interest. And Paul Drake was just horrible as Mick.<br /><br />The movie would have been so much better if not for better writing and acting on some parts.<br /><br />8/10.\r\n0\t\"Another turgid action/adventure flick from the Quinn Martin Productions factory. Roy Thinnes plays undercover agent Diamond Head (Mr. Head, to you), working for his G-Man handler \"\"Aunt Mary\"\", looking for \"\"Tree\"\", who's on a mission to...well, just watch the movie. <br /><br />This one deserved and got the full MST3K sendup. As the boys and various reviewers have pointed out, the movie \"\"Fargo\"\" had more Hawaiian locations than this film. Apparently shot on a puny budget, this movie highlights Hawaii's broken-down dive shops, gas stations, and cheapo hotels. Zulu -- later to star as Kono in Hawaii-Five-O -- appears as Thinnes' lumpy, inept sidekick, while France Nguyen models the Jenny Craig diet gone horribly wrong. Others sharing the flickering screen include a drunken Richard Harris knockoff, a George Takai imitator, a not-so-smart hit-man with sprayed-on Sansabelt slacks, and the villain \"\"Tree\"\", sporting a veddy British accent. You can pretty much figure out the plot halfway through the opening credits, but relax--just enjoy the giddy mediocrity of this 70's movie-of-the-week.<br /><br />Whenever I think of this movie (and I think of this movie often), I catch myself humming the theme, written for flute and tuba...no one knows why. <br /><br />Trivia note--Diamond Head was directed by Jeannot Szwarc, one of three contract directors at Universal who would go on to make much bigger films, in his case Jaws 2. The others were John Badham (War Games), and a young fellow named Steven Spielberg...\"\r\n0\tLaughed a lot - because it is so incredibly bad - sorry folks, but definitely one of the worst movies I have ever seen... I know it is low budget, but anyway: the actors behave like playing in a soap, the dialogues are absolutely crappy and the last time I have seen such odd pictures was at a trash nite at some youth video festival ten years ago. I really appreciate that people gather together and shoot cheap movies, but at least a certain amount of quality should be accomplished. But at least one good thing: the first three minutes of the movie were quiet interesting and looked okay - and the score was really worth listening to. The DVD cover promised a lot, but that is by far the best this film has to offer...\r\n0\t\"A terrible film which is supposed to be an independent one. It needed some dependence on something.<br /><br />This totally miserable film deals with the interactions among Irish people. Were they trying to imitate the wonderful film \"\"Crash?\"\" If so, this film crashed entirely.<br /><br />There is just too much going on here culminated by a little brat running around and throwing rocks into buses and cars which obviously cause mayhem.<br /><br />The film is just too choppy to work. One woman loses her husband after 14 years to another while her younger sister is ripped off by a suitor. This causes the former sister to become a bitter vetch and walk around in clothes not worth believing. The older sister also becomes embittered but soon finds romance.<br /><br />Then, we have 3 losers who purchase masks to rob a bank. Obviously, the robbery goes awry but there doesn't seem to be any punishment for the crooks. Perhaps, the punishment should have been on the writers for failure to create a cohesive film.\"\r\n1\t\"The first time I saw this episode was like a shock to me, it was actually the first time I saw \"\"24\"\". The speed things are happening is amazing, and it's so surprising, thrilling, and even interesting, it's almost as if you are reading a book; once you start it, it's very hard to stop. From the minute Richard Walsh was talking privately to Jack about the possibility that they have a mole inside CTU, I was sitting 6:40 hours, which means 10 episodes!!! (Sounds funny and crazy, but I'm the kind of guy which when he is interested he just can't stop)This series is one of the best of it's kind. And it's build in a way of having a few different stories that are being connected together. Recommended in every way!\"\r\n0\tOK first of all let me say that i'm still amazed of how the plot sucks,<br /><br />but than again its a movie that sequels a Steven segal movie only with no Steven segal omg!!!<br /><br />just random low budget action scenes really no point i 'm still amazed i burned 90 min on this crap really !!<br /><br />just rent a Jacky Chan movie or go see wwf more fun and has no and presume not to have and plot!!! plz plz plz avoid it!! btw the best actor playing there is bill goldberg and that says a lot!!<br /><br />and no he doesn't play very well like i said plz avoid it pfff i still cant believe i wasted 90 min and spent 10 min more writing this!! :)\r\n0\tOver the years I've seen a bunch of these straight to video Segal movies, and every one holds the same amount of entertainment; unfortanetley, the entertainment level is at a low. Sure, the action sequences were amusing, but that was pretty much it. Seagal was really in his prime when he did movies like; Under Siege, Under Siege 2, and Executive Decision(at least on the action standpoint), but during the past ten years, these types of movies that star Segal really do not meet his past qualifications.<br /><br />On the more positive side, the movie did make good use of time, like some of the action sequences and use of wit. Just when the movie seemed to just drag on, a pretty cool action scene brought it up out of the gutter. I honestly believe that more of Segal's movies would do better if he wasn't the only one that fans recognize in the movie. Supporting actors and actresses are a very important thing, and if his current movies had this known supporting actors and actresses, maybe the movie will get more popular results.\r\n0\t\"For anyone who has seen and fallen in love with the stage musical A CHORUS LINE, the movie is a shoddy substitute. Not only are songs cut, but unnecessary plot twists added, new dance sequences choreographed, and, let's face it, Richard Attenborough just doesn't know how to film dancers.<br /><br />Onstage, Michael Bennett's A CHORUS LINE was just that: Michael Bennett. His idea, his choreography, his direction, his gift to Broadway and the rest of the world. It was two hours of hard-hitting, in-your-face realism that really made you feel for these \"\"boys\"\" and \"\"girls.\"\" The movie, however, lacks empathy and depth: the actors look like they are auditioning for A CHORUS LINE rather than actually auditioning. Every move, every line of dialogue seems so weighted and planned; Michael Douglas, especially, as Zach is too in control for us to believe that he is this extraordinarily bitchy choreographer. Even when he throws his temper tantrums, you never quite believe him because every gesture, every accented word, every nuance is so obviously rehearsed. And as for him not dancing: Kevin Kline auditioned for the role of Zach on Broadway. Michael Bennett loved his reading, but Kline couldn't dance and ultimately lost the part. How I wish they had done the same for Douglas! A CHORUS LINE is supposed to be a show about nobodies, and aside from a few recognizable faces (Vicki Frederick, who played Cassie on Broadway, as Sheila and Khandi Alexander, of TV's NewsRadio, as one of the many auditioning dancers) you're not supposed to KNOW any of these people. Because you DO know these people. Having a star in any of the roles is a terrible decision: when you focus on Michael Douglas and his ranting instead of on the girls and boys on the line and their stories, you lose something.<br /><br />It is truly unfortunate that the best sequence in the show (Montage: Hello Twelve, Hello Thirteen, Hello Love) is cut drastically to make way for a terrible new song entitled \"\"Surprise, Surprise\"\" that surprisingly received a nomination at the Oscars. Cassie's \"\"mirror dance\"\" has a new song and tragically boring choreography -- one wonders why they bothered to shoot a movie version at all if they were going to mess with a working formula this much.<br /><br />For fans of musical theatre and those who enjoyed the stage version, this movie is a sad mockery of everything they cherished and loved. For those who never got to see the original production, either on Broadway or on tour, this movie is the only reference they will have to go by. And they'll have to wonder just how it got to be the longest-running musical in Broadway history -- until a little show called CATS overtook it in the late 1990's. But THAT is a different story, and don't even get me started there.\"\r\n1\tI thought this had the right blend of character, plot, futuristic stuff and special effects without going over board. It will take a while to get going, but the acting was good and I was intrigued by the angel who is not to hard to look at. I like the attitude too! Certainly not like other attempts at futuristic stories.\r\n0\tI actually saw China O'Brien II before I ever saw the original China O'Brien. And I have to say that the first incarnation is actually worse. But: worse = funnier! And funnier = better. If you're a bad movie fan like I am, this is great material. If, however, you are looking for any sort of meaningful plot, acting ability, or movie-making skill, this is best avoided. The best part is how they filmed all the fighting sequences in stuttering fast-forward. Hilariously bad. See it for a laugh, see it for mindless entertainment, but whatever you do, see it for free on TV.\r\n1\t\"I may be getting ahead of myself here, but although the film itself was a technical masterpiece for its time, I watched it piece-by-piece on TCM last night, the question arises to me: Why did they do that? putting their lives in jeopardy, many of them died on the trek, why would they undertake such a life-endangering journey, just to find food for their animals (!) once they reached the \"\"land of milk and honey\"\", why didn't they just stay there? Would you endanger your life, and that of your entire community, just to find food for a herd of cattle? As dangerous as it was, to do it for that purpose alone, shows the inbred simplicity of these types of people. Risk death for a cow?? Better them than I!\"\r\n0\t\"you have a strong stomach. Holden was actually 55 years old at filming but looked near 70 and he only lived another 8 years. At one point Holden said, \"\"I am over twice your age.\"\" Okay, try triple grandpa! The \"\"old enough to be your father\"\" theme they were shooting for didn't work. Granted senior citizens sometimes wind up with legal teens. More power to them, but that doesn't mean I want to watch it. It's not a matter of judgment but the digestive track. I like my food where it belongs. Lenz is fun to watch and the 70s cars, clothes, furniture, etc. make it worth it if it comes on cable late at night and you want to watch something to wind down for bed. It would have been nice to see the blonde friend of Lenz, the one who hocked her guitar, get more scenes. Pleasingly spacey... Who was this chick? I'm going to try and find out.\"\r\n1\tHad this movie been made just a few years later, I would have knocked down the score a point or two because the sound quality was rather poor. At times, the movie appeared to be a silent film during the in-between-scenes (normal ambient sounds are missing). But, given it was 1931 and a French movie, this is quite forgivable. Especially since this also occurs in later French films--by which time the sound difficulties should have been worked out completely (such as in L'Atalante from 1934).<br /><br />Okay, apart from some minor sound problems, this is a cute little film about a missing winning lottery ticket and a long list of people trying to get it. And, during the search there are lots of jaunty little songs that you can't help but like. A nice charming film all-in-all.\r\n0\tAbsolutely laughable film. I live in London and the plot is so ill-researched it's ridiculous. No one could be terrorised on the London Underground. In the short time it is not in service each night there are teams of maintenance workers down there checking the tracks and performing repairs, etc. That there are homeless people living down there is equally unlikely. Or that it's even possible to get locked in and not have access to a mobile phone in this day and age...<br /><br />The worst that's likely to happen if someone did find themselves there after the last train is that they might get graffiti sprayed on them. Although this has been coming under control due to the massive number of security cameras on the network, another thorn in the side of the story. (Remember in London as a whole we have more security cameras than any other city in the world.)<br /><br />If it had been set in a city I am not familiar with perhaps I could have enjoyed it through ignorance, but it's not a high quality film so I just couldn't bring myself to suspend my disbelief and try and enjoy it for the banal little tale that it is.<br /><br />I would have given it 0/10 if such a rating existed! Possibly the most disappointing film I ever thought I would like.\r\n1\t\"One of the best documentaries released in recent years. Some points...<br /><br />1. Hugo Chavez was elected Venezuela's president in 1998, his support largely coming from the poorer regions of Venezuela.<br /><br />2. In 2002, a coup briefly deposed Chavez. At the time, Irish filmmakers Kim Bartley and Donnacha O'Briain were in Caracas, shooting a documentary about Chavez for British television. Their film deconstructs the coup and its aftermath, and electrifyingly records history unfolding on-the-spot, outside and inside the presidential palace.<br /><br />3. Chavez aimed to free Venezuela from the free-market policies imposed on it by the US. Though Venezuela's oil was already state-owned, it was run for private benefit by executives who Chavez wished to replace.<br /><br />4. Despite being the world's fourth largest oil supplier, Venezuela remains swamped by poverty, its resources literally sucked away by foreign multinational corporations.<br /><br />5. The documentary begins by portraying Chavez's first years as president before the coup. It focuses on his popularity with the poor, and his various policies which proved popular with working class locals (educational plans, distribution of the oil revenue, grass-root democracy etc).<br /><br />6. Chavez was a huge proponent of education, and printed thousands of copies of the Venezuelan constitution, encouraging children and adults to study and understand it.<br /><br />7. When Chavez came to power, he immediately pledged to redistribute oil profits. This, understandably, made the oil companies nervous.<br /><br />8. A media-war broke out. The six private TV stations promptly began opposing the state-run TV station. They questioned Chavez's motives, sanity and sexual orientation.<br /><br />9. Without media support, the coup would not have been successful. The film makes it clear that coups rely heavily on the media to disseminate information and that news can be easily fabricated.<br /><br />10. Under the guise of \"\"re-establishing democracy\"\", the opposition silenced the state-run TV station, dissolved the National Electoral Board, Supreme Court, National Assembly and took control of the military.<br /><br />11. Moneyed interests, backed by the military elite (encouraged by the US and CIA), organised a citizens' march on the presidential palace to effect the coup. Snipers shot at Chávez supporters, but the private media stations edited footage so it appeared that return fire was aimed at the opposition march that in fact had been safely diverted.<br /><br />12. Police went on a shooting rampage against Chavez supporters, further bloodying the streets.<br /><br />13. Chavez, held captive, refused to resign. Of course the media/government then lied, saying he had resigned, but Chavez's cabinet members communicated the truth to the international community, which eventually got the message back to Venezuela by cable TV.<br /><br />14. The people rose up, pressuring the return of the president they had elected, whom only a referendum could constitutionally replace.<br /><br />8.9/10 - At a little over an hour long, this doc is far too short. Nevertheless, its an engrossing piece of journalism and deals with a form of \"\"media warfare\"\" which rarely gets touched upon. Makes a great companion piece to \"\"The Battle of Algiers\"\".<br /><br />Worth one viewing.\"\r\n1\t\"This was a movie that I had heard about all my life growing up, but had never seen it until a few years ago. It's reputation truly proceeded it. I knew of Michael Myers, had seen the mask, saw commercials for all of the crummy sequels that followed. But I was growing up during the decade where Jason and Freddy had a deadly grip on the horror game, and never thought much of the Halloween franchise. Boy, how I was being cheated with cheap knock offs.<br /><br />Halloween is a genuinely terrifying movie. Now, by today's standards, it isn't as graphic and visceral, but this film delivers on all the other levels most horror movies fail to achieve today. The atmosphere that John Carpenter creates is so creepy, and the fact that it is set in a quaint, mid-west town is a testament to his ability. The lighting effects are down right horrifying, with \"\"The Shape\"\" seemingly appearing and disappearing into the shadows at will. The simple yet brutally effective music score only adds to the suspense.<br /><br />The performances by all the players are well done, with specific nods to Jamie Lee Curtis and Donald Pleasance. Ms. Curtis is such a good Laurie Strode because she is so likable and vulnerable. It is all the more frightening when she is being stalked by Michael Myers because the director and viewer have invested so much into her, we want her to survive and get away.<br /><br />Donald Pleasance plays Dr. Loomis like a man on a mission, and it works well. He adds a sense of urgency to the predicament the town finds itself in because he knows what evil stalks their streets.<br /><br />Overall, not only is Halloween a great horror movie, but also a great film. It works on many levels and draws the audience in and never lets up. This should be standard viewing for anyone wanting to experience a truly scary movie. And for an even more frightful time, try watching it alone with the lights off. Don't be surprised if you think you see \"\"The Shape\"\" lurking around in the shadows!\"\r\n0\tWow, this was a very bad movie... as read in other comments this movie has no plot, no character development, they possibly had some kind of script but it's difficult to tell based on the actual end result.<br /><br />The editing of this movie was really non-existent, it tends to jump from scene to scene without any connection or anything to assist the viewer in determining what is actually happening.<br /><br />All in all this is simply a low budget zombie flick that was not thought out at all, has bad acting, bad dialogue, bad everything.<br /><br />The only thing that saves this movie from a 1 or 2 is the gore factor, I think this must be where they spent whatever money they had to try to justify making this.<br /><br />Unless you are (like me) dedicated to finding and watching all the zombie flicks you can find, do not watch this. Period.\r\n1\t\"Finally! An Iranian film that is not made by Majidi, Kiarostami or the Makhmalbafs. This is a non-documentary, an entertaining black comedy with subversive young girls subtly kicking the 'system' in its ass. It's all about football and its funny, its really funny. The director says \"\"The places are real, the event is real, and so are the characters and the extras. This is why I purposely chose not to use professional actors, as their presence would have introduced a notion of falseness.\"\" The non-actors will have you rooting for them straightaway unless a. your heart is made of stone b. you are blind. Excellently scripted, the film challenges patriarchal authority with an almost absurd freshness. It has won the Jury Grand Prize, Berlin, 2006. Dear reader, it's near-perfect. WHERE, where can I get hold of it?\"\r\n0\t\"I passed this one on the shelf a few times, looking at the myriad of huge positive quotes (with tiny names) on the front and wondering if I was missing something. The other night it was on one of the movie channels, and I tuned in. I missed nothing.<br /><br />I must admit that I only watched the first 30 minutes. Perhaps the movie becomes comedy gold after that. Given the slow, plodding pace and complete lack of laughter in the first 30, I seriously doubt it.<br /><br />The lead character starts the movie in classic \"\"I don't know how to start my movie\"\" style, with a long, tiresome monologue about how he doesn't want to get sued. It's not funny. It's not even remotely funny. Others have commented on the \"\"San Franclisco\"\" bit; ok, a small chuckle the first time he says it. Then he grinds it into the ground, smiling at the camera like it's the funniest thing ever written. Get over yourself. In fact, I think the talking to the camera bit was the reason I instantly disliked the film. Don't assume familiarity with your audience. Familiarity is _earned_, much like respect.<br /><br />From there you basically have a fat whiny guy talking in a very effeminate way about his dull life as a temp. I didn't realize he's Jewish; it's a discredit to Jewish comedians to call this \"\"Jewish humor\"\". It's just unfunny humor. Just because you're Jewish doesn't mean you have a knack for the comedy. A WASP, Spalding Gray, does a better job of self-analytical humor than this guy, so obviously it's not about ethnicity.<br /><br />If one of the bits I had seen had worked, I might have stuck around. But some schlub going on about how much he loves the names of the women he works with, then listing them for five long minutes, doesn't make a great movie.<br /><br />This is an obvious attempt to capitalize on the popularity of \"\"Office Space\"\". Don't let yourself become a victim of target marketing. Just say no to \"\"Haiku Tunnel\"\".\"\r\n0\t\"God, what an awful thing ! Oliver Stone probably wanted to experiment or something (see the terrible use of music and pictures here) but what for really ? The whole thing behind \"\"Natural born killers\"\" seems to be a \"\"clever\"\" look at how medias can turn into complete trash but unfortunately the movie turns into trash itself. Please Mr. Stone, next time you want to criticize the fascism of tv shows using violence to get high rates, avoid doing the same with your movie ! Michael Haneke said quite cleverly about this film that it was denouncing media fascism with fascist cinematographic ways. How true... Only he forgot to tell us about the massive headache you get after sitting through this overlong load of crap !\"\r\n1\tThis movie is finally out on DVD in Italy (completely restored). I have seen this movie so many times and I find it even actual these days (2003) when Italy suffers again from a sort of brainwashing dictatorship (or the US for that matter). I am glad there are outcasts as the one played by Mastroianni in this movie who can sing out of tune; maybe they can teach the Sophia Lorens of this world how to be strong and fight to be recognised as human beings.<br /><br />Back to the movie: as most people here already mentioned the acting is wonderful but the audio background is astonishing. I must assume that unfortunately something is lost if you don't understand the Italian language but I can assure you that the show-off of machism, the distortion of reality in that ever-present radio-chronicle of the Hitler visit to Rome can really make you shiver!<br /><br />A masterpiece!<br /><br />\r\n1\t\"This movie was not so much promoted here in Greece,even though it got good actors , great script and rather good photograph was not a so called \"\"blockbuster\"\" movie in my Country. The movie itself is very powerful,it's about the hard time that a newcomer had to go through when he returns in his home-village after been released from a 5yo prison time(drugs) The end is rather sad.... Mourikis is trying to keep up with his part and he handles it pretty well... Lambropoulou is great and very sexy in a strange way and of course Hatzisavvas is for one more time close to excellency... 7 out of 10 because very few Greek movies can make such an impression!\"\r\n1\t\"Unfortunately many consumers who write reviews for IMDb equate low budget with not good. Whatever else this movie might need, more budget really isn't part of it. Big sets and lots of special effects would have turned it into another Lara Croft movie. What we have here is a step or two better than that.<br /><br />The nearly unknown Alexandra Staden is captivating as the enigmatic Modesty, and this is crucial for this movie to work. Her wise little smiles and knowing looks are formidable, and you find yourself wishing that the camera won't leaver her face. It makes it workable that the bad guy Nikolai, played by also little known (in the U.S. at least) Nikolaj Coaster-Waldau might take an unusually cerebral interest in her, something Modesty can exploit. She is able to divert his raping her with just a shove and spitting out \"\"stop wasting my time!\"\" then storming off between his heavily armed yet suddenly diffident henchmen. Making a scene like that plausible doesn't happen by accident.<br /><br />Probably the biggest problem I have with the rail-thin Staden playing Modesty is it just isn't very believable for her to go hand to hand with an athletic and muscled looking guy like Coaster-Waldau and beat him. She just ain't a Peta Wilson or a pumped-up Hilary Swank type actress who can throw a convincing punch. Coaster-Waldau letting himself be overpowered by Staden looks like he's just roughhousing with his little sister.<br /><br />Since this is not really an action film, this isn't a big flaw. I just hope they do better on that if and when they make sequels.\"\r\n0\t\"<br /><br />I saw this on the Sci-Fi channel. It came on right after the first one. For some reason this movie kept me interested. I don't know why, stop asking.<br /><br />---SPOILERS--- Okay... It was cheesy how this guy got involved with the making of the movie. In the first movie, he had a \"\"reason\"\" to kill people, but in this sequal, half of the killings/attempted killings were basicly for no reason. Stanley killed the director due to creative differences, he captured the co-writer due to creative differences, but what was the deal with trying to kill off the cast? No cast, no movie. He wanted it to \"\"look real when they died\"\"? If this was supposed to be such a high budget movie, use the special effects, MAN. Of course like the first one, the captured girl gets away, and Stanley ends up getting messed up, and dissapears. Woooooow (sarcasm). This movie HAD potential. And the saddest thing of all... the really sad part... I would watch a \"\"Cabin by the Lake 3\"\". Only because I like Judd Nelson, and he's the only good part about this sequal.\"\r\n1\tI have seen the movie at the Viennale a few years ago, where the audiences liked it. I liked it as well, Summer Phoenix performance still haunts me, that´s why I decided to write a comment.<br /><br />The story unfolds in London around 1900, where a jewish girl decides to become an actress. She tries desperately to become one, but it isn´t before a man treats her badly that she realizes on stage, that she has talent and that she connects with the audience and emerges as a stronger human being.<br /><br />There were certain reviews, were her performance was smashed, they accused her of being dull, not able to bring life to her character. I think that´s her strong point, that´s exactly what Esther Kahn should be and Phoenix makes a brave decision to make her Esther a rather boring girl. So her transformation at the end is more powerful than it could have been otherwise. <br /><br />The cinematography is great, the images of London around the turn of the century are very dark and sad, you can see how unpleasant life was back then. <br /><br />The only fault in my opinion is the length of the movie, you loose touch with the characters, after all it´s only about finding the actor in yourself, so there are no dramatic actions in the film. It´s Phoenix credit that we don´t loose the interest in the movie after the first hour.\r\n0\t\"How come I've never seen or even heard about this junk-movie before? It's right up my alley with bloody teenkill, laughable plotting and an irresistible 80's cheese-atmosphere hanging around it. For some reason nobody is really interested in, the staff and students of an elite Catholic university are butchered by an unknown psychopath. Freshly recruited teacher Julie Parker becomes involved when all the people she has contact with either turn up dead or behave strangely. This movie is hilariously bad! There's absolutely no logic or coherence and every character is equally meaningless to the others. For example, there's a girl killed and her body dumped in a container. Then, and for no reason, the story suddenly moves forward three weeks yet the murdered girl is never mentioned or even missed. Not even by her boyfriend! The acting is pitiful and there isn't even a bit of nudity to enjoy. The revelation of the killer is quite funny because the makers really seemed convinced that it was an original twist... It's not, guys! \"\"Splatter University\"\" is easily one of the worst horror-turkeys ever.\"\r\n0\t\"Watching this again recently, I found it heartwarming to see the way they sincerely tried to bring the book to the screen, even if the shoestring budget and hammy actors meant inevitable failure. By any objective measure this was a disaster, but I found it easy to imagination how good a Lord of the Rings movie could be if someone was to make one sincerely - and with the money to employ the most talented artists and script writers. Unfortunately, thanks to Jackson, that will not be possible for a long time.<br /><br />Watching this movie left me with the impression that with any sort of budget at all, then this story simply couldn't be stuffed up. Fantasy just provides so many opportunities for making an interesting film. There were many moments in this film that were potentially more interesting than the way that Peter Jackson did it, although of course you always have to use your imagination due to the poor execution. The way they tried to show the wraith world from Frodo's point of view for example. Or the way that Galadriel showed Sam what was happening back home for another.<br /><br />Another thing I really appreciated in this version - the silent moments. There were moments when dialog was spoken with no background music against a still back-drop. Compare that to the grandiose swooping camera of the Jackson films, and the intrusive score which seemed designed to stress how each and every scene was the most poignant and powerful scene we had ever watched. Jackson's films were full of their own importance, this was quieter and a lot more modest.<br /><br />Jackson and co hit this with more than US$270 million dollars in production costs, at least $90 million dollars more for marketing, a massive tax break from the NZ government, and also gained massive savings from filming in NZ not the USA. However, despite the marketing claims, the intention to be faithful was never there. This is well documented. Philippa Boyens said as much in an interview, when she said they deliberately didn't re-read the books before writing the script. Jackson also stated that they originally intended to make a fantasy film \"\"along the lines of\"\" the lord of the rings, and that the one he really wanted to do was Return of the King, because it had a lot of battles but no character development.<br /><br />In contrast, this film tried to be more true. Of course a lot of things were wrong, the acting was awful and pretty much sunk everything, and the pace was too fast. Naturally they cut a lot, and adapted other scenes, and for this they deserve credit. While Jackson added a lot of action scenes that served no plot purpose, Bakshi cut book scenes which did nothing to advance the plot anyway. There's actually a curious similarity between the structure of the Jackson and Bakshi films near the beginning - in that they both deviate from the original books in the same way - although of course some of this could be coincidence.<br /><br />This was not a good film, but the potential was there. Bakshi said in an interview to the Onion AV club that only animation could do the lord of the rings justice. His version didn't work, but he might have been right.\"\r\n0\tSome amusing humor, some that falls flat, some decent acting, some that is quite atrocious. This movie is simply hit and miss, guaranteed to amuse 12 year old boys more than any other niche.<br /><br />The child actors in the movie are just unfunny. When you are making a family comedy, that does tend to be a problem. Beverly D'Angelo rises above the material to give a funny, and dare I say it, human performance in the midst of this mediocrity.\r\n0\t\"First, I am not really a fan of the whole \"\"things eating flesh in disgusting new ways\"\" genre of film but I am a bad movie afficionado so my next door neighbor said he had the worst movie ever. This one. So we start watching it. First and foremost - it is recorded on a camcorder sans tripod! Second the voice of the skinny white doctor is dubbed by a large black man! Third, none of the dialogue makes any sense. Fourth, the zombie scenes, though unconvincing and chockful of poor makeup and tomato paste, lead me to believe the director (and my next door neighbor) are in need of psychological help. It's funny for about 5 minutes but it gets old fast. It's so amateurish it's like watching a poorly dubbed high school video yearbook.... with zombies. A note to anyone involved with this movie - I want the 20 minutes of my life I spent watching this, before I fell asleep, back.\"\r\n1\t\"I strongly disagree with \"\"ctomvelu\"\" regarding Jim Belushi's talent. I happen to like Belushi very much. Admittedly, I was skeptical when he first appeared on the scene, because I was such a HUGE fan of his late brother John. But Jim has an on-screen charm that has gotten him very far -- and he has developed it well over the years.<br /><br />Curly Sue is one of his earlier films -- his weight is a giveaway (ain't that true for most of us?) -- and I like the film. Yes, it is touching and heartwarming, so if you're into car chases, explosions and gratuitous sex, then you might want to pass on this one -- it is a warm film of three lost soles who find each other. Don't get me wrong, I am all for the three aforementioned keys to a successful film, but I also like a nice, solid tale like this one.<br /><br />And although Belushi and Kelly Lynch deliver excellent performances, the real star of this film is Alisan Porter -- who is absolutely adorable.<br /><br />I don't know what happened to her career, but whoever is responsible for dropping the ball (agent? parents? herself?) should be shot. You couldn't ask for a more perfect introduction to fame than this film, and yet nothing of note has been heard from her since.<br /><br />Another sad Hollywood story ...\"\r\n0\tSome nice scenery, but the story itself--in which a self-proclaimed Egyptologist (Lesley-Anne Down) visits Egypt and, in the course of doing Egyptologist things in the most un-Egyptologistic of ways (e.g., flash photography in the tombs, the handling of old parchment, etc.), uncovers a black market turf war and somehow (in the span of two days, no less!) becomes that war's jumpsuit-wearing epicenter--is more puzzling than any riddle the Sphinx ever posed. Down is simply awful as the visiting British scholar (that she seems to know absolutely nothing about the culture of Egypt and even less about antiquities is the fault of the writers, certainly; but that she's annoying as all get out is her own fault entirely), and the rest of the cast, including Sir John Gielgud and Frank Langella, seem as downright confused by the proceedings as I was. In short, not what you'd expect from Schaffner (Planet of the Apes, Patton) and co.<br /><br />Worth watching for a laughably dated scene in which Down rails against all male scholars, blaming them for her failure as an academic, while bathed under the softest light Hollywood could muster. To top it off, she spends the next hour of the film shrieking and harried and running into the arms of any dude she can find. Wow, talk about your performative irony!<br /><br />*Note to would-be Egyptologists: take a year or two of Arabic in grad school. It'll really help out in the long run...\r\n0\t\"Fox's \"\"The True Story Of Jesse James\"\" (1957) is a remarkably poor widescreen remake of their prestigious 1939 Tyrone Power/Henry Fonda classic \"\"Jesse James\"\". I'm not sure where the fault lies but the casting in this version of the two central characters, the uneven direction of Nicholas Ray and the ham-fisted screenplay must surely have something to do with it.<br /><br />In the late thirties and forties Tyrone Power was Fox's top leading man but in the fifties his star began to wane and studio head Darryl Zanuck started to groom newcomer Robert Wagner to take his place. This was a major error on Zanuck's part as Wagner proved to be a less than a suitable replacement. With the possible exceptions of \"\"Broken Lance\"\" (1954) and \"\"Between Heaven & Hell\"\" (1956) it is hard to think of Wagner distinguishing himself in anything! Also, Jeffrey Hunter was nothing more than a Fox contract player before being assigned to play Frank James to Wagner's Jesse in \"\"The True Story Of Jesse James\"\". Borrowed from the studio the previous year this actor's one distinguishing mark was his excellent and revealing performance in John Ford's classic \"\"The Searchers\"\". But his playing here, along with Wagner as the second half of the James Brothers, is nothing short of boring. Neither player bring any personality or colour to their respective roles. They totally miss the mark, lacking the charisma and appeal so vividly displayed by Power and Fonda in the original. The movie is also marred by too many flashbacks and with the all over the place screenplay Wagner, as the Robin Hood of the American west, comes across as a charmless introverted twit that you can feel no empathy for whatsoever. The supporting cast are hardly worth mentioning but it is a shame to see such a great actress as Agnes Moorhead barely getting a look in as Ma James.<br /><br />The best aspects of this uninvolving so-so western is the wonderful Cinemascope/Colour cinematography by the great Joe McDonald and the excellent music score by the underrated and little known composer Leigh Harline!\"\r\n1\tPialat films people in extreme emotional situations, usually with several violent scenes. In La Gueule ouverte, he's dealing with the devastating effects on a woman's husband and son as she dies of cancer. In A nos amours, the teenage girl's sexual experimentation leads to violent confrontations with her family. Here we have a rather spoiled young woman who abandons her husband to take up with a sexy ex-con. Her motivation is a little cloudy, since Loulou is incapable of reading or discussing anything more challenging than TV shows; on the other hand, he's got a fabulous body (I wonder why Depardieu never made a sports movie to show off that physique--he would have been great as a rugby player).<br /><br />The casting is impressive. Isabelle Huppert isn't allowed to give a bland, inexpressive performance (she has given many); Depardieu plays Loulou with all the dynamism and charm you could want--see the scene in the bar, where he's stabbed in the gut, runs away and seeks treatment, then soon restarts with Nelly. Guy Marchand, with those coal-black eyes and distressed look, plays Nelly's husband beautifully; it's a fine repeat of the pairing in Coup de foudre.\r\n0\t**WARNING: POSSIBLE SPOILER**<br /><br />If you can get by the extremely unpleasant subject matter, this film does offer a heaping helping of outrageously campy melodrama. Surprisingly enough, this movie has been copied and ripped-off several times over the years, although it's hard to fathom ANY filmmaker being inspired by this trashy drama. Neither one of the Hemingway women can act here (although Mariel HAS improved over the years), Anne Bancroft offers the only touch of class as a prosecuting attorney, and Chris Sarandon is by turns pathetic and unintentionally hilarious as the smirking, smarmy bad guy of the piece.<br /><br />Veteran director Lamont Johnson can't make a silk purse out of this sow's ear of a script, which is stuffed to bursting with howlingly bad dialogue and outlandish situations. For example, the final sequence, where Margaux grabs her shotgun and chases Sarandon down after his latest shocking act is meant to be exciting but elicits hearty chuckles instead. Add a notoriously shrill and spacy musical score by Michel Polnareff and you have a true guilty pleasure, even though you're likely to feel grubby and needing a hot shower after viewing it. Don't say you weren't warned.\r\n1\t** possible spoilers **<br /><br />I like this film and have no problem staying awake for it. It reminds me of me at 20, except this is even better. Like Veronica says, two chicks at one time. It brings out the horniness in me, the casual conversation, these two real life chicks, rather than hookers, teasing us every step of the way. I get into the conversations too. Even if they are utterly b.s. at times, so what? Every chick, just about, that I've ever talked to and is high on herself is usually full of the same unreasoned rambling gratuitous self-centered b.s. philosophy. It's just a bunch of nonsense, and about as sensible as that other b.s. philosophy chicks are often into: astrological charts. The only deal with this movie is the guy is almost as feminine as the women, he's into the same b.s. and moodiness. The brunette chick is actually the most masculine person there.<br /><br />I think it's kind of funny that the brunette chick gets so obviously turned on by Veronica. She'd love to pull the little blonde away from Alexander, but Veronica plays her all the way. She's brilliant. She gets the brunette thinking there's something up between them, and then she steals the boy-child/man, which is only appropriate since they appear to be from the same age group. The brunette knows she's been had by the end, when she's dropping her face into the palms of her hands while Marlene Deitrich sings in the background that, paraphrasing, there are a million couples in Paris tonight, but I only have this refrain.<br /><br />But do they get married in the end, Alex and Veronica? Mmmm? I can only imagine a super-tumultuous relationship ending in a pre-marriage breakup. They are too selfish to be anything to each other than stepping stones.<br /><br />I like the film though. It kept me entertained, it's got a nice look, and it's sexy.\r\n1\tA shift in outlook is neccesary to enjoy modern British films, one that somehow allows them to be seen in their own right and for their own qualities rather than by the criteria that American films are judged. Britfilm has to try hard to be gritty and finds it hard to make it, but at warmth British films can lord it over their otherwise overwhelming competitor.<br /><br />This film fails not in its content but only in attaching itself to the predeccesor, so allowing it to be all to easily seen as the work of star and director somewhere near the end of their tethers. It's a couple of decades later, Gregory teaching and this time with two girls on his mind. He teaches at his school railing against human rights abuses. When students he's fired up find abuses in their midst he must face whether he's just all talk.<br /><br />This is a subversive film in that there's not the usual worldly character of any American movie that you expect to do whatever he does, but a naive man boy who may still put everything on the line for principles. Maybe. It's certainly no protest-by-numbers though, being too warm. Where U.S. film may seem realistic because they're urban and gritty, this and other British films of recent years - those that don't try to match America for visceral thrills - are real because British humour reveals truths.\r\n0\tWhen my wife and I decided to watch this movie we thought it couldn't fail. I love Billy Crystal, my wife loves Julia Roberts and everyone we talked to said they loved it.<br /><br />We were misled, in spades.<br /><br />On my part, I felt Billy Crystal's character was extremely one-dimensional and did very little for the film. Sure, he cracked a couple of good jokes, but as a character he did nothing but take up space.<br /><br />And poor Julia Roberts. In past shows she plays well as a strong-willed, self-determined lady. In this flick, she seems completely repressed and had very little fire. This is not the Julia Roberts that my wife enjoys watching.<br /><br />OK, if I were to find one good thing, it would have to be Christopher Walken. Now that's entertainment. But, just like Billy Crystal, hardly anything is shown of his character.<br /><br />If you're looking for a night of mindless laughs with very little redeeming value, go see it. But if you're looking for a smart, romantic comedy, this is not your film. It's none of the above.\r\n0\t\"I know that in this episode there's other stuff apart from what I am going to discuss, and in fact I think it has some virtues; for example, the fact, after we had been given a very negative opinion of Jin from seeing Sun's flashbacks in \"\"House of the Rising Sun\"\", we get to see Jin's side of things and get a new, more balanced understanding of his life.<br /><br />But there is an element in this story that made me so deeply uncomfortable that it greatly dampened my enjoyment of the whole episode. Before now, in the scene where Jin appeared with blood on his hands and shirt, it had been hinted that Sun's father was someone who was getting rich through shady, illegal methods. I thought maybe he was a mob boss, even; mobs operate in Korea, just like in almost every other country in the world, so it was a reasonable possibility. However, in this episode we learn that Sun's father is in fact the boss (or a top executive) of a Korean automotive company, and that what Jin had been doing was physically attacking a government official (who was actually going to be murdered) on his behalf.<br /><br />I may be especially touchy about this because I happen to work in the automotive industry, but I would say it is SPECTACULARLY offensive and racist to even suggest that this kind of thing goes on in Korea; that huge, serious companies like Hyundai or Kia (which must be the model for this fictitious car company, as they are the only ones that actually exist in reality) operate with these mafia-like methods, instead of like any normal automotive company of the West. it is just unbelievable to me that the writers would have the gall to write something like that into the story, and that there hasn't been an uproar in Korea over it. It feels like extraneous \"\"Buy American!\"\" propaganda, portraying foreign car companies as criminal, untrustworthy, third-world outfits.\"\r\n1\tLove hurts. That, I think, is the main message Mike Binder's newest film Reign Over Me brings across. Whether that love has caused your relationship to become stagnant, or has brought anger from the one you love cheating for years, or has broken your heart to the point of being unable to open yourself up to the world, love hurts. The great thing about this film, however, is not in its portrayal of these lost souls trying to let their past heartbreaks go, but in the eventual restart of new bonds for the future. No one in this drama is perfect; they are all at some degree trapped emotionally in relationships that they can't free themselves from alone. There is some heavy subject material here and I credit Binder for never making the story turn into a political diatribe, but instead infusing the serious moments with some real nice comedic bits allowing the tale to stay character-based and small in scale compared to the epic event that looms overhead. What could have become a trite vehicle for opinions on how 9-11 effected us all, ends up being a story about two men and a connection they share that is the only thing which can save their lives from a life of depression and regret.<br /><br />This is a new career performance for Adam Sandler. I like to think that my favorite director Paul Thomas Anderson was the first to see the childish, pent-up anger in his stupid comedies as something to use dramatically. The juvenility of a character like Billy Madison allows for laughs and potty humor, but also can be used to show a repressed man, shy and shutout to the world around hima man with no confidence that needs an event of compassion to break him from his shell. Anderson let Sandler do just that in his masterpiece Punch-Drunk Love and Mike Binder has taken it one step further. Sandler plays former dentist Charlie Fineman whose wife and three kids were killed in one of the planes that took down the World Trade Center on 9-11. That one moment crushed any life that he had and as a result, he became reclusive and started to believe he couldn't remember anything that happened before that day. He really delivers a moving portrait of a man trying to keep up the charade in his head while those around him, those that love him, try and open him up to the reality of what happened and what the future holds. Always on edge and ready to snap at any moment when something is mentioned to spark the memory of his perished family, he goes through life with his iPod and headphones, shutting out everything so as not to be tempted remember.<br /><br />Reign Over Me is not about Charlie Fineman though, it is about dentist and family man Alan Johnson. A man that has trapped himself into a marriage and dental practice that both have stagnated into monotony, Johnson needs as much help in his life as his old college roommate Charlie does. Played perfectly by the always brilliant Don Cheadle, Johnson has lost his backbone to try and change his life. He has no friends and when he sees Charlie, by chance, one day, his life evolves into something he hasn't felt in 15 years. He revels in the chance to go out with an old friend no matter how much he has changed from the death of his family. Cheadle's character wants to revert back to the college days of hanging out and Sandler's doesn't mind because all that was before he met his wife. The two men get what they want and allow themselves to grow close despite the years of solitude that used to rule their lives. Once they begin opening up though, it is inevitable that the subject of the tragedy will creep up and test the façade they have created for themselves.<br /><br />The supporting cast does an amazing job helping keep up appearances for the two leads. Jada Pinkett Smith has never been an actress that impressed me and throughout the film played the tough as nails wife nicely, but it is her final scene on the phone with Cheadle that really showed me something different and true. Liv Tyler is a bit out of her element as a psychiatrist, but the movie calls her on this fact and makes the miscasting, perfect casting. The many small cameos are also effective, even writer/director Mike Binder's role as Sandler's old best friend and accountant, (my only gripe here is why he feels the need to put his name in the opening credits as an actor when it is everywhere, considering it is his film). Last but not least is the beautiful Saffron Burrows. She is a great actress and plays the love- crushed divorcée trying to put her life back together wonderfully. A role that seems comic relief at first, but ends up being an integral aspect for what is to come.<br /><br />Binder has crafted one of the best dramatic character studies I have seen in a long time. The direction is almost flawless, (the blurring between cuts and characters in the fore/ background really annoyed me in the beginning), the acting superb, and the story true to itself, never taking the easy way out or wrapping itself up with a neatly tied bow at the conclusion. Even the music was fantastic and used to enhance, not to lead us emotionally, (why after two great uses of the titular song by The Who did Binder feel the need to use the inferior Eddie Veddar remake for the end, I don't know, but it did unfortunately stick out for me). Reign Over Me is a film about love and how although it can cause the worst pain imaginable, it can also save us from regret and allow us to once again see the world as a place of beauty and hope.\r\n1\t\"Why this is called \"\"Mistresses\"\" is a puzzle, because it's about four women, three of whom aren't mistresses Except, wait. Ah, I see. It's a salacious title and we all have to merchandise I suppose. The series itself? Delicious. Most of the characters are hell bent on cutting metaphorical chunks off themselves. Great fun. Reminds me of LWT's 1976 miniseries \"\"Bouquet of Barbed Wire\"\", where every character and their dads wielded the machete.<br /><br />Siobhan (Orla Brady) is the only actual mistress and she's getting herself in proper trouble. Husband is infertile. So no chance of a baby there then. But at work, there's Dominic, played by uber-sexy Adam Rayner, who looks so good that there's no surprise when heavy lust breaks out. Dominic, it turns out, has no fertility problems. I expect his sperms do swashbuckling - probably each carries a little sword - and now Siobhan is inevitably pregnant that way instead. What Siobhan should do is to shut up good and tight, and go with - it's a miracle. What she actually does of course is say to her friends \"\"I have to tell my husband\"\". No you don't. Really, you don't. Stop. Stop!<br /><br />Katie (Sarah Parish) was a mistress once, for we learn that she'd had an affair with a married man before the series started. Unwisely, she's now taken up with his son. The father died of cancer and Katie, who is a doctor, helped him on his journey. So, she's an euthanasiarist, has had affairs with two of her patients and is sleeping with the son of the father in carelessly ignoring the incestuous undertones. It's not going to end well for Katie.<br /><br />Jessica is an experimental lesbian. She arranges events and she's busy doing a lesbian marriage as the series gets underway. She quickly gets into steamy eye exchanges with one of the brides Alex, played by Anna Torv, and the script hurries along to a lesbonk with great haste. However, it can't think of a good way of putting the two women in bed together, so it invents a very lame \"\"You're not having a hen night?! Well I can't let you get away with that. I'll organise one and the guests shall be .. Me!\"\", which achieves the result but isn't exactly Winterson. I thought script writers were supposed to earn their living. Lazy. Torv's interpretation of her character is good. Alex treats Jessica as possibly unsavoury and Alex's body language always points backwards when she's moving forward. Mind, once she's over the wall, in she happily goes, and unsurprisingly, for Shelley Conn is so mouth-watering that so would a good percentage of the human race given the chance.<br /><br />Which brings us to Trudi, who's a widow. Of course there should be plain people in a community but, if you're going to have a plain character, then you have to invent something to admire in them. It's quite possible to be a lump and engaging. However, Small's Trudi looks like one of those characters that Casting put prominently in a medieval crowd scene after the director said \"\"That's ridiculous, not every single character would be pretty\"\". More tellingly, you can't find anything to admire in her. Nothing. She's a turnip in a bowl of apples. Appallingly, she does \"\"sexy\"\" from time to time. I won't forget her appearance in bright red corset with stockings tucked into her crotch for a long time, and for all the wrong reasons.<br /><br />So, good, delinquent fun all round. There's easily enough material here for a second series and I hope that they do one. I trust they learn one lesson though. The characters never take off their underclothes in bed! Having spent abandoned hours of unbridled lust, afterwards they surface still wearing their bras, or keep the sheets tight wound round their naughty bits. After several episodes, no nipples yet and you can go beg for a cock. What's this? Early 21st century puritanism? So production team, are you listening? Your characters will solve some of their mental problems if they Do abandon as well as Talk it. At least they'll have more fun in the fun scenes, poor things. In a series dominated by either being in the bedroom, or wanted to be in the bedroom, or having just been in the bedroom, it's a bit silly, and jars a lot, that the characters bonk in their underwear.<br /><br />Overall. I was going to score 6 (top end medium), but the series does one trick that's rare enough. When each episode ends, you always want more, and you look forward to the next one with anticipation. So I score 7.\"\r\n0\tThis is absolutely the dumbest movie I've ever seen. What a waste of a splendid cast. That's James Cromwell as the ignoramus playing deputy. I could go on and on, but I would obviously be spending more time on this review than anybody ever did on the script. The only thing this movie is about is us vs. them and how to revel in profane slapstick beyond any reasonable human being's tolerance. This is one of the 10 worst movies I have ever seen -- and I LOVE James Garner.\r\n1\tMost people, especially young people, may not understand this film. It looks like a story of loss, when it is actually a story about being alone. Some people may never feel loneliness at this level.<br /><br />Cheadles character Johnson reflected the total opposite of Sandlers character Fineman. Where Johnson felt trapped by his blessings, Fineman was trying to forget his life in the same perspective. Jada is a wonderful additive to the cast and Sandler pulls tears. Cheadle had the comic role and was a great supporter for Sandler.<br /><br />I see Oscars somewhere here. A very fine film. If you have ever lost and felt alone, this film will assure you that you're not alone.<br /><br />Jerry\r\n0\tOK, look at the title of this film.<br /><br />the title says it all right? the title is great... i mean, a lot of things should come into your head after readin it. in fact, you might be extremely anxious to see it.<br /><br />well, sadly, you won't see any of that.<br /><br />just a bunch of bad actors, some blood spilling, some hot chicks, and some lesbo action.<br /><br />oh, well, i think there are about 5-10 minutes of zombies and vampires indeed...<br /><br />get away from this if you want to see a good movie. else get it.\r\n1\t\"My kids recently started watching the reruns of this show - both the early episodes on the N, and the later ones on ABC Family - and they love it. (I wasn't aware the show had even lasted past the first or second season) I'm curious as to what prompted all of the cast changes - I've seen them described as \"\"highly publicized,\"\" and yet a half hours searching efforts on the web have revealed nothing but endless comments on how the early episodes were so much better than the later episodes. (Personally, I don't see a whole lot of difference - the scripts and themes remain largely the same throughout - but they do lose some great people along the way) My daughter has put the DVDs on her wish list, so perhaps the land of special features and commentary will shed some light on all of this. I also wish they'd done some self-referential humor about the changes - like on \"\"Boy Meets World\"\" where they drop the little sister for an entire season or so, and when a different actor later shows up playing her, they ask her where she's been and she says \"\"upstairs,\"\" or when early series token geek \"\"Minkus\"\" shows up for the high school graduation, they ask him where he's been and he says \"\"over there,\"\" pointing to the part of the classroom never shown by the camera, before saying \"\"Hey, Mr. Turner, wait up!\"\" and running off screen (Mr. turner being another character who left) Oh well - maybe there will be an E true Hollywood story on this or something? I was just glad to see Aunt Hilda show up for the finale - she was always one of my favorites - it's too bad it couldn't have been a more encompassing cast reunion. (The Zelda candle just didn't cut it for me)\"\r\n0\tI was very displeased with this move. Everything was terrible from the start. The comedy was unhumorous, the action overdone, the songs unmelodious. Even the storyline was weightless. From a writer who has written successful scripts like Guru and Dhoom, I had high expectations. The actors worked way too hard and did not help the film at all. Of course, Kareena rocked the screen in a bikini but for two seconds. I think Hindi stunt directors should research how action movies are done. They tend to exaggerate way too much. In Chinese films, this style works because that is their signature piece. But, Hindi cinema's signature are the songs. A good action movie should last no more than two hours and cannot look unrealistic. But, in the future, I'm sure these action movies will get much sharper. Also to be noted: Comedy and action films do not mix unless done properly. Good Luck next time.\r\n1\tThe kids, aged 7 to 14, got such a huge kick out of this film that we gave a copy to all of the other kids on our birthday list this year. They all loved it! Kids from 2 to 7 watch it repeatedly and frequently, and we get a kick out of watching it with them.<br /><br />It's rare that a film entertains the kids for so long, and offers laughs for the adults, too. Most enjoy it more than the first.<br /><br />Top-quality production and an excellent cast, led by Christopher Showerman as a superior George--athletic, energetic, and wholly credible, with a lovable innocence and a particular knack of taking a tree in the face--well supported by the inimitable Christina Pickles as the evil mother-in-law, Thomas Haden Church as the evil jerk rival, and everybody else. This is fun.\r\n0\tUma Thurman plays Sissy, a young woman with a gypsy spirit (and freakishly large thumbs) who hitchhikes cross-country, eventually finding her true place amongst a group of peyote-enlightened cowgirls on a ranch devoted to preserving the Whooping Crane; Rain(bow) Phoenix is their lesbian leader, Bonanza Jellybean, who falls in love with Sissy, thumbs or not. Gus Van Sant directed and adapted Tom Robbins' book, but his satire has no primary target and just skitters all over the map, like Sissy (maybe that was his goal, but it's not involving for an audience). Notorious box-office flop wasn't so much panned as it was ignored, and one can see why: it's a series of sketches in search of a plot, and the performances, directorial touches and cinematography are all variable. Thurman is a stitch posing alongside the highway trying to get a ride, but this pretty much put the kibosh on Phoenix's career. Writer Buck Henry (who didn't write this, but perhaps should have) gives the most assured performance as the doctor who works on one of those thumbs.<br /><br />Two thumbs down.\r\n0\tNot even Bob Hope, escorted by a raft of fine character actors, can save this poorly written attempt at wartime comedy, as his patented timing has little which which to work. The plot involves a Hollywood film star named Don Bolton (Hope), and his attempt to evade military service at the beginning of World War II, followed by his enlistment by mistake in a confused attempt to court a colonel's daughter (Dorothy Lamour). Bolton's agent, played by Lynne Overman, and his assistant, portrayed by Eddie Bracken, enlist with him and the three are involved in various escapades regarding training exercises, filmed in the Malibu, California, hills. Paramount budgeted handsomely for this effort, employing some of its top specialists, but direction by the usually reliable David Butler was flaccid, and this must be attributed to a missing comedic element in the scenario. A shift toward the end of the film to create an opportunity for heroism by Bolton is still-born with poor stunt work and camera action in evidence. Oddly, Lynne Overman is given the best lines and this veteran master of the sneer does very well by them. Dorothy Lamour looks lovely and acts nicely, as well, and it is ever a delight to see and hear Clarence Kolb, as her father, whose voice is unique on screen or radio, but there is little they can do to save this film, cursed as it is with an error in script assignment.\r\n1\tI've never seen many online movies in most of my life, but if I'd pick any of them, I'd pick Spatula Madness, A clever reference to most movies like star trooper (etc.), using a camera, and wits of steel, Jason Steele mastered the art of turning a normal image into a painting, and then putting it all together with frame-by-frame animation to get a world inhabited by spatulas. the story begins at the middle, hows that for directors delight? then the middle is at the beginning, and so on, when I first watched it, I expected a soggy pixely look, but Jason, Like me, Loves looks, so took every detail to the max. although I don't recommend it for children, or would anybody besides me like it, but please search it up on the net (its a short film, look up film cow), its style reminds me of south park, but less violent. 10 for the look, 6 for the laughs, and 6 for the story, it all comes to a 10/10, good work<br /><br />Jason Steele, I'm anxious to see the movie.\r\n1\tThis may not be a memorable classic, but it is a touching romance with an important theme that stresses the importance of literacy in modern society and the devastating career and life consequences for any unfortunate individual lacking this vital skill.<br /><br />The story revolves around Iris, a widow who becomes acquainted with a fellow employee at her factory job, an illiterate cafeteria worker named Stanley. Iris discovers that Stanley is unable to read, and after he loses his job, she gives him reading lessons at home in her kitchen. Of course, as you might predict, the two, although initially wary of involvement, develop feelings for each other...<br /><br />Jane Fonda competently plays Iris, a woman with problems of her own, coping with a job lacking prospects, two teenage children (one pregnant), an unemployed sister and her abusive husband. However, Robert DeNiro is of course brilliant in his endearing portrayal of the intelligent and resourceful, but illiterate, Stanley, bringing a dignity to the role that commands respect. They aren't your typical charming young yuppie couple, as generally depicted in on screen romances, but an ordinary working class, middle aged pair with pretty down to earth struggles.<br /><br />I won't give the ending away, but it's a lovely, heartwarming romance and a personal look into the troubling issue of adult illiteracy, albeit from the perspective of a fictional character.\r\n1\t\"This film caught me off guard when it started out in a Cafe located in Arizona and a Richard Grieco,(Rex),\"\"Dead Easy\"\",'04, decides to have something to eat and gets all hot and bothered over a very hot, sexy waitress. While Rex steps out of the Cafe, he sees a State Trooper and asks him,\"\"ARE YOU FAST?\"\" and then all hell breaks loose in more ways than one. Nancy Allen (Maggie Hewitt),\"\"Dressed to Kill,\"\",'80, is a TV reporter and is always looking for a news scoop to broadcast. Maggie winds up in a hot tub and Rex comes a calling on her to tell her he wants a show down, Western style, with the local top cop in town. This is a different film, however, Nancy Allen and Richard Grieco are the only two actors who help this picture TOGETHER!\"\r\n0\tThe plot is rocky. The acting is somewhere south of a Jr. High School play. The cinematography is not bad but it looks like it was cut with a machete. I couldn't decide of this was an intentionally hokey flick or if the people behind it actually thought they were making a good film. Think Death Valley Days meets Mayberry RFD. People running around in a 'lawless' modern town wearing quick-draw 6 gun rigs. It has more than its fair share of 'cutsey' stuff. Picture the Good Guys pulling up to an old farm house, and parking the Ford Mustang right in front of a hitching rail. Picture the clerk in a hotel watching an obviously western (hemisphere) movie sporting a Japanese sound track but with English sub-titles. It's all really strange but might be improved if watching it while partaking in a little peyote. It's a real curiosity with modern parallels to every western movie cliché you can think of. There's even a modern version of the good hearted dance-hall girl, AND a twanging Jew's-harp in the soundtrack. Really! If someone brings this to your home for a Saturday night movie session, tell 'em your DVD player died.\r\n1\tOne of the finest musicals made, one that is timeless and is worth seeing time and again. Delicious! The acting, especially by Ron Moody as Fagin, is superb. Costumes are exquisite....even the shabby ones.<br /><br />The two young lads who play Oliver and The Artful Dodger are wonderfully talented. Oliver Reed does a great job portraying Bill Sykes to where you can't help but hope he comes to a terrible end....which he does. <br /><br />The dancing is cleverly choreographed and is mesmerizing. Oliver can hold its own with the likes of My Fair Lady, The Sound of Music, Oklahoma, etc. A film for the entire family.\r\n0\t\"I usually come on this website prior to going to the movies, as I like to see what other people think of the movie. I read many reviews which said 'thriller not a horror movie'. This prompted me to give this film a try. I really must take issue with these 'thriller/horror' statements, as it was neither! I almost went and asked for my money back, and if you lot of reviewers enjoyed this rubbish....well you must be easily pleased! At the end of the movie, the people behind me said out loud \"\"what a waste of time\"\" and I turned to them and replied \"\" I couldn't have summed it up better\"\". I kept waiting for something to happen...but it didn't. There was the potential for a lot of good scares (or thrills if you like) but none happened. Williams acted the part quite well but I felt he was short changed by a poor script which dithered around and went nowhere. Save your money folks, this is a turkey which will be featuring at a DVD store 'bargain box' near you in the very foreseeable future!\"\r\n1\t\"Worth watching twice because of the rapid-paced causal shifts among several compelling stories, \"\"Bug\"\" emerges as a wholly satisfying work of art that plays ever-optimistic love against myriad examples of frustrating reality.<br /><br />My favorite characters are Wallace (John Carroll Lynch)whose overriding concern for life--from that of a cockroach to the airline passengers for whom he is partially responsible--frames the film; Olive (Christina Kirk), who spends considerable time creating surreal but tasty meals for her impossible husband Ernie (Chris Bauer); and Mitchell, a cable TV technician with unbounded trust in fortune cookie messages: \"\"You will meet the girl of your dreams.\"\"<br /><br />Against such optimism are the forces of quirky reality, all generated by actions of the characters: parking tickets, a clogged drain in a Chinese food/donut shop, TV disruption, a crushed auto fender, an obliterated dinner reservation that eventually results in cancellation of a Hawaiian vacation.<br /><br />The film is funny: Olive getting drunk at a Chippendale performance, Johnston (Michael Hitchcock)as a customer service rep attempting to deal with an irate customer, the germ-obsessive Cyr (Brian Cox) facing a restaurant inspector, Dwight (Jamie Kennedy) reacting to his girlfriend's refusal to have children by writing hostile Chinese cookie fortunes: \"\"Your girlfriend is lying to you\"\" and the guy who falls asleep while manning a jackhammer because he spent the night looking for his girlfriend's missing cat.<br /><br />A minor story with public cable access host (Darryl Theirse) and a local acting teacher reading from \"\"The Boy in the Bubble\"\" expresses the major theme: love comes from the heart.<br /><br />\"\"Bug\"\" entertains on much the same level as \"\"trains, planes and automobiles\"\" but on a lower budget and with a fresher eye.\"\r\n0\t\"I can't for the life of me remember why--I must have had a free ticket or something--but I saw this movie in the theater when it was released. I don't remember who I went with, which theater I was in, or even which city. All I remember was how offended I was at this travesty someone dared to call a film, and how half the people in the theater walked out before the movie was over. Unfortunately I stuck it out to end, which I still consider to be one of the worst mistakes of my life thus far. My offense became pure horror when just before the closing credits the smarmy demon child sticks his head out from behind a sign and says \"\"Look for Problem Child 2, coming soon!\"\" That was hands-down THE most terrifying moment ever recorded on film.<br /><br />The plot, if I recall correctly, involved John Ritter and perhaps his wife (Lord, how I've tried without success to block this film out of my mind) adopting a \"\"problem child.\"\" Maybe they think they can reform him, or something. I really don't know. If that was their intent, they fail miserably because from first frame to last this child remains the brattiest, rudest, most horrid demon-spawn ever to hit the big screen. Forget Damian, forget Rosemary's Baby. This kid takes the cake. The only difference is, we are supposed to feel sorry for him because he's a \"\"problem child.\"\" However, this is impossible since this child is quite likely the most unsympathetic character ever portrayed. You want to kill him through the entire film, and when (SPOILER, like anyone cares) John Ritter decides to keep the vile hell-child you will be yelling \"\"Send him back!\"\" in shocked disgust (like several of the people at the theater where I saw it did).<br /><br />This is only the second movie I have given a \"\"1\"\" to on the IMDb. The other was Superman IV, and by God I couldn't tell you which was worse. John Ritter had a quote in TV Guide about the time that Problem Child 3, which he was not in, came out. He said something like \"\"The only way I would do another [Problem Child] sequel is if they dragged my dead body back to perform.\"\" Amen to that!<br /><br />I would rather watch a 24-hour marathon of Police Academy sequels than see even twenty minutes of Problem Child again. 1/10, only because I can't give it a negative score, which is what it really deserves. Someone burn the original negatives of this film, please!\"\r\n0\t\"The first point that calls the attention in \"\"For Ever Mozart\"\" is the absence of a plot summary in IMDb. The explanation is simple since there is no story, screenplay, plot or whatever might recall the minimum structure of a movie. Jean-Luc Godard is one of the most overrated and pretentious directors of the cinema industry and this pointless crap is among his most hermetic films. I believe that neither himself has understood what is this story about; but there are intellectuals that elucubrate to justify or explain this messy movie, and it is funny to read their reviews. <br /><br />My vote is one.<br /><br />Title (Brazil): \"\"Para Sempre Mozart\"\" (\"\"Forever Mozart\"\")\"\r\n1\tThis was a very thought provoking film, especially for 1973. At the time it was actually a huge box office success. After the 1970s it appeared to be forgotten, but its central messages were too important to disappear completely.It was actually at least fifteen years ahead of its time...no one had ever heard of the 'greenhouse effect'before 1985, and the controversial subject of euthanasia was rarely brought up.<br /><br />The sets and special effects might look a little outdated, but big money for sci fi films was a gamble in that period. If you look closely you will see everything usually makes sense. This is a message movie, not for zonked out star wars fans that cant sit through one minute of thought stimulation unless it contains a million bucks worth of explosions.<br /><br />This was also Hestons last good film, the end of his famous dystopian sci fi trilogy. After that it was all overblown disaster epics and big budget crowd pleasing trash. THis might not be the most amusing two hour movie ever made, and the ending might be creepy and depressing, but its hard to find any film producer with guts anymore who would tackle a subject like this.\r\n0\tThis movie was bad from the start. The only purpose of the movie was that Angela wanted to get a high body count. The acting was horrible. The killings were acted out very badly. Like when Ally got stuffed down that toilet I guess it was in the abandoned cabin. But when the end of the movie comes and Molly and the other guy are in the cabin you see Ally so Angela must have gone in to get her. The part that really got me was when the black girl and Angela were in the cabin and Angela took the guitar string and chocked her. One it was horrible acting and two why wouldn't you just turn around and punch the bitch?!?!? Then when Molly is getting chased by Angela if you have the neigh why not just turn around and stab her??? So stupid. This movie sucked...\r\n1\t\"In Iran women are prohibited from attending live sporting events because of the fear that they will be \"\"corrupted\"\" by bad language, close proximity to thousands of men, and the fact that there are no toilet facilities for women in the antiquated stadiums. Based on an actual incident involving the daughter of the director, Jafar Panahi's Offside follows six girls, disguised as men, who are refused entry into the soccer match in 2005 between Iran and Bahrain, a match that will decide whether or not Iran goes to the World Cup. In a departure from the bleak, minimalist films we have been accustomed to from Iran over the last ten years, Offside is an exuberant comedy that has a patriotic fervor and a universal appeal but contains enough subversive social commentary to warrant its prohibition from screenings in Iran.<br /><br />Shot with a digital camera using non-professional actors who are more than up to the task, the girls try to sneak into Azadi Stadium in Tehran but are arrested and placed in a holding area outside of the stadium. They are guarded by three young army conscripts (Safdar Samandar, Mohammed Kheir-abadi, and Masoud Kheymeh-kaboud) who express ambivalence about their task but are pledged to follow the rules. The women are soccer enthusiasts, not political activists and cheer for Iran's victory but this does not deter the soldiers from detaining them while they wait for the girls to be transported to the Vice Squad and an uncertain future.<br /><br />Outspoken rather than acting like victims, they continually question the soldiers about the rationale behind the restrictions, making their absurdity quite obvious. Although they can hear the crowd noise, the women cannot see the action but achieve a minor victory when they persuade one of the soldiers to provide a running commentary on the game. One of the funniest sequences takes place when a female \"\"prisoner\"\" is escorted to the men's room by a soldier. The young recruit then must cope with a near riot when he has to prevent anyone else from using the facilities while the girl is still inside.<br /><br />Little by little, to paraphrase Adlai Stevenson, that which unites them turns out to be greater than that which divides them and the unlikely antagonists rally behind their country and root for the victory that will send Iran to the World Cup. Although the point is made early and often and the film sags a bit in the middle, Offside makes a telling point about a society where a political elite with a medieval social mentality has to contend with an growing group of educated and politically astute citizens. One can only hope that world pressure and the awakening of its own people will force the Ayatollahs to come to terms with the 21st century.\"\r\n0\t\"VAMPYRES <br /><br />Aspect ratio: 1.85:1<br /><br />Sound format: Mono<br /><br />A motorist (Murray Brown) is lured to an isolated country house inhabited by two beautiful young women (Marianne Morris and Anulka) and becomes enmeshed in their free-spirited sexual lifestyle, but his hosts turn out to be vampires with a frenzied lust for human blood...<br /><br />Taking its cue from the lesbian vampire cycle initiated by maverick director Jean Rollin in France, and consolidated by the success of Hammer's \"\"Carmilla\"\" series in the UK, Jose Ramon Larraz' daring shocker VAMPYRES pushed the concept of Adult Horror much further than British censors were prepared to tolerate in 1974, and his film was cut by almost three minutes on its original British release. It isn't difficult to see why! Using its Gothic theme as the pretext for as much nudity, sex and bloodshed as the film's short running time will allow, Larraz (who wrote the screenplay under the pseudonym 'D. Daubeney') uses these commercial elements as mere backdrop to a languid meditation on life, death and the impulses - sexual and otherwise - which affirm the human condition.<br /><br />Shot on location at a picturesque country house during the Autumn of 1973, Harry Waxman's haunting cinematography conjures an atmosphere of grim foreboding, in which the desolate countryside - bleak and beautiful in equal measure - seems to foreshadow a whirlwind of impending horror (Larraz pulled a similar trick earlier the same year with SYMPTOMS, a low-key thriller which erupts into a frenzy of violence during the final reel). However, despite its pretensions, VAMPYRES' wafer-thin plot and rough-hewn production values will divide audiences from the outset, and while the two female protagonists are as charismatic and appealing as could be wished, the male lead (Brown, past his prime at the time of filming) is woefully miscast in a role that should have gone to some beautiful twentysomething stud. A must-see item for cult movie fans, an amusing curio for everyone else, VAMPYRES is an acquired taste. Watch out for silent era superstar Bessie Love in a brief cameo at the end of the movie.\"\r\n0\t\"My Name is Modesty is a low-budget film that tells the story of the origins of Modesty Blaise. It's not that the movie is terrible, it's just not what I was expecting or hoping for. While I've been aware of the Modesty Blaise character for years, I'm not overly familiar with the comic strips or the graphic novels, so I'm coming into this movie as something as an outsider. That may be part of the reason for my disappointment. I was expecting more action and more comedy. The film is dialogue driven. I suppose I was looking for something with a little more camp value. As it is, My Name is Modesty is a deathly serious film. There are very few, if any, \"\"light\"\" moments. The acting, at least from Alexandra Staden, is acceptable but nothing outstanding. As others have commented, she does appear a little too frail to be completely believable in the title role. What action scenes there are in My Name is Modesty are one of the films weakest points. I never bought into the notion that this woman could handle a band of trained killers.<br /><br />I really hope Quentin Tarantino goes ahead and makes the rumored a big budget film based on the Modesty Blaise character. I'm convinced the concept has a lot of potential and I would very much look forward to it.\"\r\n0\t\"This movie will promote the improvement of the mind. Read a book! It's incredible anyone would think this movie deserved the time and investment to make. I've seen \"\"B\"\" movies before but the \"\"C\"\" movie has just been invented. I didn't think I would ever enjoy Power Rangers since my kids stopped watching but I found myself looking for the videos fifteen minutes into \"\"Knights.\"\" High school productions are better than this and the actors involved should erase this from their resume. Embarrassment is one of many descriptions that come to mind. My roommate, who loves these types of movies even turned it off. Now that has to really tell you something. If you watch this movie, and like it, I will pray for you.\"\r\n1\tThe show is about two sisters living together. Holly being the younger one has some teenage problems on the other hand her sister Val has job,boy friend,fiancé problems like most of the women on the planet. They try to support each other they make mistakes sometimes but they don't give up and continue. And the show is also about friendship. The priorities in life. I loved this show so much. It is funny and the actors are so good. I am really sad that the show is over. I still watch the reruns time to time:) Amanda Bynes is very talented. Jenny Garth may be new to comedy but she plays really well. She is one of the actresses i like watching. I like Vince and Holly's relationship they are very natural. Gary is a natural talent and makes you laugh each time he shows up. With Tina Holly found a real friend and i really like them hanging out. Lauren character is so funny and she is a natural talent. I would like to see her more. This show really takes you in and makes you laugh. I wish the show hasn't been over.\r\n0\tLorenzo Lamas stars as Jack `Solider` Kelly an ex-vietnam vet and a renegade cop who goes on a search and destroy mission to save his sister from backwoods rednecks. Atrocious movie is so cheaply made and so bad that Ron Palillo is third billed, and yet has 3 minutes of screen time, and even those aren't any good. Overall a terrible movie, but the scenes with Lorenzo Lamas and Josie Bell hanging from a tree bagged and gagged are worth a few (unintentional) laughs. Followed by an improved sequel.\r\n0\t\"........and an extremely bad one at that!!! How long did this train-wreck last?? 14 episodes or something?? I can see why now.<br /><br />I bought the \"\"Serenity\"\" episode from Amazon Unboxed. It was my first purchase, so was free. That is the ONLY good thing about the experience (incident??)<br /><br />I won't comment really on the acting, since these were, I guess, fairly new people who hadn't really gotten the job down just right yet. At least I've never seen them before in any type of major show, theater or TV. If I did, then I have easily forgotten them.<br /><br />But the special effects were absolutely horrendous. True, this isn't exactly a multi-million $$ project, but the original Star Trek did better than this & that was THIRTY-FIVE YEARS ago. I especially got a laugh out of the bad guys (reapers or something like that) ship as it chased the hilarious looking Firefly, with smoke coming out of the engines looking something like a gigantic model rocket. I fully expected to eventually see the Wiley Coyote riding on top, while chasing after the Roadrunner. MODERN jet/rocket engines don't even do it that bad.<br /><br />And that wasn't even the worst of it. The wild-west type shoot-outs had me wondering if I was actually watching a sci-fi film or a Gene Autry one.<br /><br />Regardless of the hype, don't waste your time...I did...all 80-something minutes of the disaster called \"\"Firefly\"\".\"\r\n0\t\"I tried twice to get through this film, succeeding the first time - and it was like pulling teeth - and failing the second time despite a great DVD transfer. The problem? It's simply too boring.<br /><br />If you can get to the dramatic courtroom scene, which takes up most of the second half of the film, you have it made, but it's tough getting to that point. There are some interesting talks by \"\"Abraham Lincoln\"\" (Henry Fonda) during the trial. The ending is touching as Lincoln walks off and they superimpose his Memoral statue over the screen.<br /><br />It's a nice story, well-acted and such....but it lacks spark in the first half and discourages the viewer from hanging in there. I suspect the real Abe Lincoln was a lot more interesting than this film.\"\r\n0\t'The Curse of Frankenstein' sticks faithfully to Mary Shelley's story for one word of the title, which wouldn't be so bad if the changes were any good at all. The tragedy of the creature destroying Frankenstein's family has been completely excised and replaced with... nothing. The heart and moral centre of the story is gone. It doesn't help that this Frankenstein is a conniving, devious murderer; he deserves everything he gets. The plot is basically a shallow checklist of Frankenstein clichés. Even taken on its own terms, this is rubbish: a bland, rambling film featuring a shite-looking creature with a pudding bowl haircut. As it's the first of Hammer's horror films, directed by Terence Fisher and starring Peter Cushing and Christopher Lee, its place in horror history is secure. But it's crap.\r\n1\tThe premise for this movie is simple and so is the script: an elderly Muslim gets his teenage son to drive him in his similarly elderly station wagon from France to the haj in Mecca, Saudi Arabia, so that he can fulfill his holy Muslim obligation before he dies. The father is clearly devoutly religious, but the son is unimpressed; he accepts out of obligation to his father rather than to religion, he'd rather be with his (non-Muslim) girlfriend. The father is stubborn in a lot of things which the son doesn't understand and the petulance between them is the device that maintains the drama, although it is often rather irksome. However, like any good road movie there are oddball characters encountered along the way; for example a woman on a backroad in Croatia who upon being asked for directions to Belgrade simply gets in the backseat and points with her hand uttering one word which they assume to be a place but can't find it on the map. In Bulgaria another man they ask directions of confirms he can speak French but then provides an extensive commentary in Bulgarian. There is also occasional humor - in one country the son tires of eating egg sandwiches and wants meat - they are given a goat, but unfortunately (perhaps fortunately for the viewer) it runs away before the father can perform the Muslim slaughterman ritual. They eventually make it to Mecca - the Muslim equivalent of the Vatican but on a much grander scale. For westerners it is all bizarre but fascinating. The movie isn't sophisticated but is charming in its own way, a kind of National Geographic with soul.\r\n1\t\"As part of our late 1950s vocabulary, we well knew the Ponderosa, Little Joe, Hoss, Ben Cartwright,etc. on that great show \"\"Bonanza.\"\"<br /><br />It came Saturday night and everyone was glued to the television set. This was a real show depicting family values. There may have been a weekly crisis, but it was the strong family atmosphere that pulled everyone together.<br /><br />Lorne Greene was dominant as the patriarch of the family. His words depicted wisdom. We often were left to wonder that Ben Cartwright, a widower, must have been the best of husbands to that poor wife of his who had died. He reared wonderful sons.<br /><br />Naturally, we all wondered why Pernell Roberts left the show. The show was a gold mine and Roberts surrendered loads of money when he departed. His career never took off as he was associated as a Cartwright son. He should have tried to get back into the series. He certainly lost a bonanza by dropping out.\"\r\n0\t\"Seeing as I hate reading long essays hoping to find a point and being disappointed, I will first tell everyone that this movie was terrible. Downright terrible. And not, surprisingly for the reasons mentioned in the first review. I thought I might agree with him, seeing as he gave the movie the rank it deserved, but was sorrowfully rebuked upon reading what he said. I am quite ashamed to be taking the same side as someone who commented that the movie \"\"definitely lacks good-looking females.\"\" Let me be the first to say, \"\"Wow! that was definitely some serious in-depth reviewing there. My mind can hardly comprehend the philosophical musings about this movie.\"\" Seriously though, a lack of \"\"good-looking females\"\" shouldn't be considered an essential to a movie. If you're desperate enough for \"\"good-looking females\"\" you should really watch other types of movies, not necessarily falling into the sci-fi category.\"\r\n0\tIn the standard view, this is a purely awful movie. However, it rates a near perfect score on the unintentional comedy scale. I can think of few actual comedies that make me laugh as hard as I did watching this movie. Andy Griffith's ghost dressed in Native American garb dancing sends me into hysterics everytime. I wouldn't waste the gas or energy driving to the video store to rent it, but if you happen to be laying on the couch at 3 in the morning and it comes on TV, check it out.\r\n1\tThis film is a wonderful movie based on the life of a man called Grey Owl in 1930s Canada. I found it to be similarly riveting and heartfelt as 'Rudy' and 'Awakenings'. It picks up late in Grey Owl's life and follows him through his most tumultuous and influential period.<br /><br />The film is about a Canadian Indian trapper who finds himself promoting the plight of the over-trapped Beaver. He also predicts the decrease in natural lands and the overuse of Earth's resources. This is an outrageous concept in the 1930s and surprisingly well received. He becomes a well known speaker and the masses are ready to listen.<br /><br />The casting of Pierce Brosnan seems rather odd, but is not outrageous. Anyone wanting to argue that point must first watch the movie to understand. Brosnan provides a wonderful performance as does Annie Galipeau. Galipeau is a strong actress whose place beside Brosnan is refreshingly natural compared to the forced pairings in recent Bond films.<br /><br />I would recommend this film to anyone interested in good drama, beautiful scenery, or environmental causes. It is a movie for families as well, however children under 10 (depending on maturity) would have trouble following the plot.\r\n1\t\"If Hollywood is to be believed, being in the the Navy is nothing but a bludge. Though the sailors may complain in chorus about the monotony of the ocean, it seems that their oceanic duties are completely non-existent, and somehow Fred Astaire finds enough free time during the day to offer dancing classes to a fleet of would-be romantics. Such is the world of Astaire and Rogers. Mark Sandrich's previous film, 'Top Hat (1935),' completely ignored the Great Depression that was then bringing America to its knees, and presented audiences with a glittering world of the rich and famous; it was the film's optimistic outlook on life that perhaps contributed to its success. Likewise, here Sandrich deliberately forgets that the life of a Naval officer is difficult and draining, and instead substitutes the duties of a sailor with an assortment of catchy lightweight musical numbers.<br /><br />\"\"Bake\"\" Baker (Astaire) and Sherry Martin (Rogers) are two former dance partners whose romantic relationship fell apart after the latter rejected a marriage proposal. After Bake returns from several years of duty in the Navy, he finds Sherry as dance hostess in an unsophisticated San Francisco ballroom. While the two former lovers alternately attempt to woo and rebuff each other, Sherry's plain, music-teacher sister (Harriet Hilliard, looking really quite pretty) receives a complete makeover and tries to charm superficial sailor Bilge \"\"Bilgey\"\" Smith (Randolph Scott). There are plenty of the usual screwball comedy shenanigans, a few moments of mistaken identity, and even a hilarious trained monkey that steals every scene it's in. Particularly amusing is the scene in which Bake sabotages a performer's audition in order to create a window for his estranged girl; unluckily for both of them, it is an unfortunate Sherry who drinks the bicarbonate of soda and loses her ability to sing.<br /><br />'Follow the Fleet (1936)' was the fifth winning collaboration between Fred Astaire and Ginger Rogers, and the third (of five) in which Sandrich directed the pair. Irving Berlin provided the film's music and lyrics, and each musical number is enjoyably lighthearted and entertaining, even if they aren't quite as memorable as those in 'Top Hat (1935),' 'Swing Time (1936)' or 'Shall We Dance (1937).' Astaire attempts to break free from his typical rich-man-about-town persona, without much success, but it's hard to imagine the performer without the boyish carefree charm that could only accompany being considerably wealthy. The side-plot of the romance between Connie and Bilge works well with the antics of the two main stars, and Harriet Hilliard (wearing a brunette wig to avoid clashing with Ginger's blonde hair) has a couple of emotional solo numbers, including \"\"Get Thee Behind Me Satan,\"\" which was originally written for 'Top Hat.'\"\r\n1\t\"First off, if you're planning on watching this, make sure to watch the UNCUT version (although it is very interesting to go back and then watch the scenes that were tampered with due to censorship), it makes a HUGE difference. This film is about a young woman, played by Barbara Stanwyck, who since the age of 14 has been forced into prostitution by her own father. When her father suddenly passes away, she is able to go out into the world on her own. After reading about Nietzsche's philosophies on life, she uses her sexuality to manipulate men into giving her what she wants and leaves them in ruins and desperate for her love. Throughout the movie she becomes increasingly materialistic and manipulative and the audience begins to wonder is she has any sense of morality left at all. Overall, Baby Face is a very shocking movie with blatant scenes of sexuality that most people would not expect to see in a black and white film. While no sexual acts are explicitly shown on screen, it is very obvious what is happening off camera.<br /><br />I enjoyed watching this film very much and I believe most modern audiences will get at least some enjoyment out if it, especially with the films shock value. I did think while watching it that the pacing seemed a bit slow at parts, but I think that about most movies the first time is see them. Actually, I think that almost all movies I've seen made from the early 30's had some minor pacing problems or certain parts just didn't quite \"\"flow\"\" right. This was probably just the craft of film-making wasn't quite perfected yet  it would take just a few more years. Compare a film from 1939 and compare it with an early 30's film and I think you'll see what I mean.<br /><br />Once again, I'm very glad I was able to watch the original cut; it really does make a big difference. Also any John Wayne fans will be surprised to see him in this movie before he was famous in an uncharacteristic role.\"\r\n1\t\"\"\"The Man In The Moon\"\" is a pretty good movie. It is very touching at times and is very well done in all respects. I wouldn't say the film was terribly original, but what is these days?<br /><br />The cast members all did a great job with their respective roles. I really enjoyed seeing Reese Witherspoon at such a young age, and does quite a good job. Jason London does a fine job as well. And the only other person I recognized was Sam Waterston, who did a fantastic job with his role. I really liked Sam's character (Matthew Trant) a lot. At times he seemed to be the kind of father you dread, but in the end you really like his character. The rest of the cast was very good as well.<br /><br />If you're into touching movies about growing up and dealing with what life throws at you, then you ought to watch this film. I'd suggest reading the plot synopsis and if that sounds like something you'd be interested in, then go for it. Anyhow, hope you enjoy the film, thanks for reading,<br /><br />-Chris\"\r\n0\tI purchased this movie on blu-ray because it promised great visuals and music. I was also a great fan of a similar movie... Baraka. The movie is very much styled after Baraka, wide angles, very similar shots with cameras set to capture long time passage in each shot. Even some of the scenes were identical (the street with traffic). Whereas Baraka told a great story, juxtaposing nature, man-made environments, spirituality, and horrors of the world in an engrossing fashion and great music, this movie just jumped from shot to shot with no encompassing story, mediocre musical score, and then.... POOF, it's finished! I thought there must be some sort of mistake! History of the world? Half the movie is Egypt and landscape (looks like Arizona, but I didn't bother to check). Seriously folks, this is horrible, rent it if you must, but do not buy it. The filmmakers should be ashamed of themselves for putting this out.\r\n1\t\"What do you do with a 14-inch cocked porn star who was involved in drugs and murder, and then died of AIDS? You make a movie, of course. The probable reason why it wasn't made earlier is the fact that Eddie Nash would have been in the way of its production. So it's no coincidence that the film was made just a little while after Nash was sent to prison.<br /><br />The best thing about the movie is its quick pace. There is no time wasted on unnecessary crap. And why would it be? There is too much good material here to require dull filler scenes.The cast is good. Kilmer has been mediocre in a string of movies, so here was finally a role quite suitable for him. Bosworth is cute so it's irrelevant how she acts (she's solid), and McDermott, who is otherwise quite annoying, is rather good, to a large extent because he is wearing so much facial hair that I didn't recognize him at first. (I wish they did that to Cruise in every movie so I wouldn't have to watch his dumb face.) I utterly failed to recognize Christina Applegate, and wouldn't have known she was in it, had I not seen her name in the end-credits. Kudrow is charming as ever, a bit unusual to see her in a dramatic role. (Btw, \"\"Friends\"\" is the worst TV sitcom of all time.) The only casting choices that were questionable were an early near-cameo by Carrie Fischer and the totally absurd inclusion of the 90s moron Janeane Garofalo. You thought I'd include Paris Hilton, too, didn't you? No, I think Hilton is the ideal choice in her 10-second appearance as a dumb whore. Because the film is about decadence, among other things  and about a porn actor  she fits in perfectly.\"\r\n0\t\"\"\"American Nightmare\"\" is officially tied, in my opinion, with \"\"It's Pat!\"\" for the WORST MOVIE OF ALL TIME.<br /><br />Seven friends (oddly resembling the K-Mart version of the cast of \"\"Friends\"\") gather in a coffee shop to listen to American Nightmare, a pirate radio show. It's hosted by a guy with a beard. That's the most exciting aspect of his show.<br /><br />Chandler, Monica, Joey, and... oh wait, I mean, Wayne, Jessie, and the rest of the bad one-liner spouting gang all take turns revealing their biggest fears to the bearded DJ. Unbeknownst to them, a crazed nurse/serial killer is listening...<br /><br />Crazy Nurse then proceeds to torture Ross and Rachel and... wait, sorry again... by making their fears come to life. These fears include such stunners as \"\"voodoo\"\" and being gone down on by old ladies with dentures.<br /><br />No. Really.<br /><br />This movie was, in a word, rotten. Crazy Nurse's killing spree lacks motivation, there's nothing to make the viewer \"\"jump,\"\" the ending blows, and--again--voodoo?<br /><br />If you have absolutely no regard for your loved ones, rent \"\"American Nightmare\"\" with them.<br /><br />If you care for your loved ones--even a little bit--go to your local Blockbuster, rent all of the copies of \"\"American Nightmare\"\" and hide them in your freezer.\"\r\n0\t\"This movie is chilling reminder of Bollywood being just a parasite of Hollywood. Bollywood also tends to feed on past blockbusters for furthering its industry.<br /><br />Vidhu Vinod Chopra made this movie with the reasoning that a cocktail mix of \"\"Deewar\"\" and \"\"On the Waterfront\"\" will bring home an Oscar. It turned out to be rookie mistake.<br /><br />Even the idea of the title is inspired from the Elia Kazan classic. In the original, Brando is shown as raising doves as symbolism of peace.<br /><br />Bollywood must move out of Hollywood's shadow if it needs to be taken seriously.\"\r\n0\tWatching this movie was a waste of time. I was tempted to leave in the middle of the movie, but I resisted. I don't know what Ridley Scott intended, but I learned that in the army, women get as stupid as men. They learn to spit, to insult and to fight in combat, and that's also a waste of time (in my opinion). And, anyway, what the hell was that final scene in Lybia? Are they still fighting Gadafi or is it that it's easy for everyone to believe islamic people are always a danger?\r\n1\t\"This show is so incredibly hilarious that I couldn't stop watching the marathon on Comedy Central tonight (despite the fact that I've seen all the episodes previously). I've always regarded Silverman as a huge talent and this is finally a vehicle for that talent to be enjoyed by a wide audience. I watch this show and I laugh a very large percentage of the time... I can't say that about many TV shows... can you? This show is finally something new and interesting and (most importantly) funny! This is a show I will never miss and it is one I will buy on DVD as soon as it comes out. You owe it to yourself to watch this show... I predict a long run for this series... And just to be clear, the people who are offended by this show just don't get it... perhaps they lack the intelligence to comprehend it... they should stop making fools of themselves by attacking something they don't understand. Anyone who uses the word \"\"bigot\"\" in reference to Silverman, or who claims that she only aims to \"\"shock\"\"... is way off the mark... She's exactly the opposite; just Google her and you'll quickly see that she's a huge proponent of civil rights, etc. If you don't know that she's ironically embracing all of these outrageous viewpoints, you don't get it. And if you don't get it, do the rest of us a favor and be quiet about it so we can all enjoy the hilarity...\"\r\n0\t\"Well, what can I say.<br /><br />\"\"What the Bleep do we Know\"\" has achieved the nearly impossible - leaving behind such masterpieces of the genre as \"\"The Postman\"\", \"\"The Dungeon Master\"\", \"\"Merlin\"\", and so fourth, it will go down in history as the single worst movie I have ever seen in its entirety. And that, ladies and gentlemen, is impressive indeed, for I have seen many a bad movie.<br /><br />This masterpiece of modern cinema consists of two interwoven parts, alternating between a silly and contrived plot about an extremely annoying photographer, abandoned by her husband and forced to take anti-depressants to survive, and a bunch of talking heads going on about how quantum physics supposedly justifies their new-agy pseudo-philosophy. Basically, if you start your day off meditating to the likes of Enya and Kenny G, this movie is for you. If you have a sense of humor, a crowd of people who know how to have fun, and a sizable portion of good weed, then this movie is for you as well. Otherwise, stay away. Take my word for it.<br /><br />The first thing that struck me about \"\"What the Bleep do you Know\"\" is that is seemed to be edited and put together by the same kinds of people that shoot cheap weddings on camera, complete with pink heart effects, computer-generated sparkles across the screen, and other assorted silliness. Who let these people anywhere near a theatrical release is a mystery to me. I guess this is what too much Kenny G does to you. The movie was permeated with cheesy GCI, the likes that you or I can produce on our own computer via over-the-counter video editing software, but never would, because it's just way too ridiculous.<br /><br />The script was _obviously_ written by someone with no writing experience whatsoever. Not only were all the characters and conversations cumbersome and contrived beyond belief, but the \"\"writers\"\" felt like they had to shove every relevant piece of information, or rather disinformation, which is what most of this movie was all about, all the way down your throat. Well, given the target audience, that may not have been too bad of an idea. The main character, for example, spends half the movie popping pills. Apparently, though, it was deemed not convincing enough, so there are at least a couple of dialogs in throughout, which refer to her anti-anxiety pills specifically, just in case the viewers should not be able to connect her overacted pain and suffering with little white pills she takes whenever she feels down. The acting... Well, I've seen better acting in Ed Wood movies, and no, this is not an exaggeration. Heck, the little play I was in when I was 12 featured much more inspiring acting than this. It really did.<br /><br />The story is interrupted here and there with a bunch or random talking heads, a strange mix of kooky scientists, kooky doctors, and self-proclaimed mystics, go on and on about how quantum physics supposedly provides an \"\"explanation\"\" for how ever man or woman created their own reality just by participating in the experience of life. Reality, you see, is a probability-field of a bunch of different possibilities, and is only set in stone once you the Observer chose to notice it. What happens when more than one Observer Observes they didn't say, but then again who cares. Listen to Enya, meditate, Observe, and you shall be God, and nobody gives a damn about such silly and archaic things as critical thinking, logic, etc. All reason is immediately dismissed as people being stuck in their ways and unable to achieve a \"\"paradigm shift\"\" and \"\"go down the rabbit hole\"\". Furthermore, the Heidelberg Uncertainty Principle supposedly is proof positive of alternate realities, parallel universes, and such.<br /><br />Speaking of rabbit holes, the analogy permeates the movie. All of these people keep talking about going down rabbit holes. I'm not sure what that had to do with anything else they were saying or showing, but one thing I'm certain of is that it somehow involves anal sex. Actually, the movie is _extremely_ anti-sex. Throughout, sex is presented as dirty, ugly, and anti-enlightening.<br /><br />In any case, the talking heads talk, the main character achieves harmony and enlightenment by painting hearts all over her body with a magic marker, and proceeds to walk around with an even stupider look in her glazed over eyes than she started with.<br /><br />I want 2 hours of my life back.<br /><br />Here's a couple of random quotes which I happened to remember:<br /><br />\"\"What I think of as unreal has become a lot more real to me, and that, which I used to consider real, is oftentimes a lot less real than the unreal.\"\" - Some talking head on the spirituality of quantum physics.<br /><br />\"\"What does it take for one man to have an erection? It takes just one thought. Nothing changes on the outside, all the changes are within. An yet he has an erection\"\" - Some self proclaimed mystic, head of her own school of enlightenment.<br /><br />[while looking at herself in the mirror] \"\"I hate you! I hate you! You're fat! You're ugly! I have you!\"\" - main character, the fat and ugly photographer.\"\r\n0\tComplete drivel. An unfortunate manifestation of the hypocritical, toxic culture of a decade ago. In this movie, pedestrian regrets for slavery go hand in hand with colonialist subtexts (the annoying redhead feeding Shaka rice?). Forget historical reality too. Didn't most western slaves comes from West Africa? An American slaver easily capturing Shaka with a handful of men?. Finally, David Hasslehoff could not have been any more obnoxious. One can only ponder, how would he have fared in the miniseries? (Promptly impaled most likely). The miniseries was superb, and it is unfortunate that DH should have gotten his hands on something unique, and made it mundane. (I tend to think that he had hand in creating this fiasco).\r\n1\tNeatly sandwiched between THE STRANGER, a small film noir picture that proved Welles can do a formidable genre work on budget and on time and ironically proved his biggest box office success in the forties, and MACBETH, a no-budget Shakespeare adaptation shot in old western shets in 23 days, comes THE LADY FROM SHANGAI, a dark film noir woven from the very same fabric of Wellesian mythos that covers THE MAGNIFICENT AMBERSONS, MR. ARKADIN and any other film the director didn't manage to save from the clutches of studio bosses.<br /><br />Six years after THE MALTESE FALCON, with the post-war craze of the film noir in full swing, Welles, always ahead of his time, a true visionary director of tremendous artistic integrity, envisioned a labyrinthine world of shadows that is already darker, more sinister, paranoid and serpentine than anything his contemporaries were doing at the time. It's no wonder the movie was so misunderstood at its time, to the point that one full hour of footage was forever left in the cutting room floor, and it was once again Europe that championed it as another Welles classic.<br /><br />Certain set-pieces stand out. The aquarium scene with its flickering light and ominous shadows, and of course the Funhouse/Hall of Mirrors finale that is as classic a piece of Wellesian bravura as any in CITIZEN KANE or THE TRIAL. The only faults I find with the movie is Welles' ill-advised Irish accent and perhaps some of the erratic editing in the first act. The story however unfurls in a progressively mesmerizing manner, which the cuts only serve to intensify. I believe the heavily chopped versions of Shangai and Ambersons attain a surreal quality for that matter.<br /><br />Welles would exile himself in Europe for ten years and return in 1958 to deliver yet another stonewall classic, the monumental TOUCH OF EVIL, perhaps the crowning jewel of the film noir that was already in its waning days by that time. Shangai was not the box office success a star vehicle for Hollywood's premiere star of the time, Rita Hayworth, ought to have been, and Welles marriage with Hayworth ended before the movie was even released. Sixty years later and one hour of footage less, Shangai is still one of the best film noir pictures one is likely to discover. Surely that must count for something.\r\n0\tIt's always tough having a sibling doing better in their life than you, always a struggle to get out from under that shadow and not let bitterness keep you away from your family. So, imagine that your older brother is Santa and then imagine how tough that must be. That's the premise here.<br /><br />Vince Vaughn plays the titular Fred, an embittered loser who spends a lot of his energy making sure that people don't go around expecting good things to happen to them or giving his brother, Santa (played by Paul Giamatti), too much praise for simply being the limelight-hogging, fame-hungry, slightly creepy guy that Fred would want to portray him as. Then, wouldn't you know it, Fred needs a financial favour and so has to make up for it by helping his brother on the run up to Christmas. And hilarity and life lessons ensue.<br /><br />Well, that's what should happen. The reality is that we get a Christmas movie featuring a few good moments of Vaughn's patented fast-talking, a ridiculously out-of-nowhere music video moment, Kevin Spacey playing an auditor out to close down Santa's operation (and he's one of the weakest baddies I have seen in some time), not enough of the gorgeous Elizabeth Banks in a lush Christmas outfit, too much of John Michael Higgins in his elf outfit (to be fair, he's a highlight though) and a movie that's too swimming in bitterness to feel like good seasonal fare yet too schmaltzy in it's latter half to feel like a fun poke at all the bad things about the commercialism of the time.<br /><br />Rachel Weisz is along for the ride too, as is Kathy Bates, but it's really nothing more than a movie for Vaughn and if you like his style you will find something to enjoy here. Unfortunately, there's very little else to recommend this seasonal stinker. Outside of Vaughn's rantings the script barely throws up anything decent with the exception of one particularly good scene involving a hilarious support group dealing with a very specific problem.<br /><br />David Dobkin's direction is as mediocre and staid as the 20p Christmas card that you send the auntie you haven't seen in 10 years and he seems to think that simply putting the ingredients together without a good mix or decent care taken will guarantee a delicious Christmas pudding. Nope, we get a burnt, bland lump with too much sugar on top. Forget this and stick the hilarious Elf on again if you want a great, modern Christmas comedy.<br /><br />See this if you like: The Santa Clause 2, Santa Baby, The Santa Clause 3: The Escape Clause.\r\n1\t\"If this movie proves only one thing, it's that Keaton is, was and always will be a comic at heart, even when dodging bullets, heading for the electric chair and getting at the wrong end of an information line in prison.<br /><br />But \"\"Johnny Dangerously\"\" goes on to prove even more. In the '80s, the ZAZ boys (Zucker, Abrahams, Zucker) were the pinnacle in the world of genre spoofs. But there were several pretenders to the throne. This time, Amy (\"\"Fast Times at Ridgement High\"\") Heckerling tries her hand, with an amazing amount of television writers behind the script (go and check). <br /><br />This slap-happy slapstick spoof of the 1930's cops-and-\"\"gag\"\"sters movies throws just about every cliche for a loop and even adds a few cliches that didn't exist way back when.<br /><br />And not only is the ever-dependable Keaton on hand as the Johnny of the title, but so are such funny guys and dolls as Piscopo, Henner, Stapleton, Boyle, Dunne, DeVito, Walston and just about every other actor in Hollywood that happened to walk into the immediate vicinity. You'd be surprised by how many faces you'll recognize. I know I was.<br /><br />And the jokes? Well, when they start out, they come at you fast and furious, like a machine gun. There are too many to count in the beginning, topped off with a crazy theme song by Weird Al Yankovic. But you have to watch for when they reload. And they have to reload a little too often. <br /><br />Everyone tries, they seem to be having fun and I was laughing a good amount of the time. In the end, though, there was plenty of time to think about how certain scenes could have been funnier - not usually the best thing to think about after watching a comedy.<br /><br />But for a slow night when there's nothing good on TV, pop in \"\"Johnny\"\" and be ready for some \"\"Dangerously\"\" serious laughter.<br /><br />Eight stars. Check out \"\"Johnny Dangerously\"\"... don't be a \"\"bastidge\"\".\"\r\n0\tRedundant, everlasting shots, useless shots, useless scenes are what you will find in this film. In other words, it seemed technically poor to me. The musical bits are amateurishly directed (no synchronization in the would-be dancing, badly post-synchronized, bad and obvious improvisation of the actors from time to time, etc). <br /><br />The film is long and boring. Eventually, it makes few point and even less sense. <br /><br />There are some good ideas though. Some of the comic elements are actually efficient, especially the opening scene. However, the film gets worse and worse so that it is completely unbearable and impossible to understand by the end. <br /><br />The trailer I saw was very dynamic, that is not true for the film. That is to say the discrepancy between the trailer and the actual film is something very close to a rip off.\r\n0\tEverybody who wants to be an editor should watch this movie! It shows you about every mistake not to do in editing a movie! My grandma could have done better than that! But that's not the only reason why this movie is really bad! (It's actually so bad that I'm not able to write a sentence without exclamation mark!) If the first episode of Les Visiteurs' was a quite good familial comedy with funny jokes and cult dialogues, this sequel is copying badly the receipe of the first one. The funny parts could be counted on one hand and maybe half of it. Clavier is over-acting his role even more than in the first part, Robin is trying to act like Lemercier (because she's replacing her) but that's grotesque'. Lemercier is Lemercier, Robin is Robin! Even if Muriel Robin can be funny by herself on stage, she is not in this movie because she's not acting as she used to act. I know that it should be hard to replace somebody who was good in a role (Lemercier obtained a César award for her role in the first movie) but she made a big mistake: instead of playing her role, she played Lemercier playing her role'! As for the story, it's just too much! Of course we knew at he end of the first movie that there would be a sequel but Poiré and Clavier should hae tried to write a more simple story like the first episode. The gags are repetitive, childish and déjà-vu. No, really, there's no more than 3 funny parts in this. The only good things might be the costumes and some special effects. So you have only 2 reasons to watch it: 1) if you want to learn how to edit awfully a movie, 2) if you want to waste your time or if you really need a brainless moment'! 2/10\r\n1\t\"I LOVED GOOD TIMES with the rest of many of you. I love reading INTELLIGENT and INSIGHTFUL commentary. The writers on THIS show were fantastic and the Actors were beyond TALENTED. To answer Strawberry22 (the neatest commentary to the other superior and positive commentary)...What happened was that James was killed in an accident (I believe I remember that it was a trucking accident or car accident) and it was the saddest episode (when it first aired and I was a tiny thing...it was so sad to me..).<br /><br />Florida and the Children actually get out of the projects and EVEN become neighbors with Willona (Wilnona) and that is how the very last show ended.<br /><br />ALL of the children achieved their dreams and found opportunity in each of their dreams. It was a wonderful ending and I cried because I was happy for them and the show seemed so realistic that I actually believed in their fate. I hope that this kind of ending rings true in actually for many.<br /><br />A great show and many other great shows followed including Benson and The Jeffersons. This was an awesome period for African-American television and the best writers were awesome at that time. TV LAND is Awesome for the memories and I just LOVE it because I cannot STAND the junk that we are watching today. SOMEBODY...bring back the 1970s and 1980s quickly...your intelligent viewers are a dying breed out here and we need better material.<br /><br />Love, a TV LAND original sitcom junkie of the 70s and 80s (as they sing in \"\"ALL in the Family\"\"...those were the days......\"\r\n0\t\"I was always curious about this film because it is so tough to find, so when I stumbled upon it on Ebay I forked over the $10 and bought it, now I understand why its so rare! This film is SO bad, so terribly written and hopelessly low budget that the ending credits, which show all of the cut scenes where they fumbled their lines, are literally the movie's highlight. The film is about a psychic (Pettyjohn, cast for one obvious reason, her topless scene) whom uses her powers with an experimental machine to pull objects from another dimension into this reality. When she pulls in some kind of box like object the military nonchalantly throws it into the open back of a truck with one soldier to guard it, and gee, what do you know? SURPRISE! A kid in a foam-rubber monster costume pops out, instantly kills the soldier with a scratch across his face, then escapes to a nearby city. But rather than deploy half the armed forces of the county to find it and protect the public those in charge just leave it up to Pettyjohn and Ray to find it on their own, but no matter, this movie blows all its credibility LONG before then. This barely escapes being voted a 1 by me only because of unintentional laughs, somebody needs to alert the producers of \"\"Mystery Science Theater 3000\"\" if they don't know about it already! 2 out 10, really, REALLY bad!\"\r\n1\tOh, those sneaky Italians. It's not the first time they based a movie on source material without the permission or knowledge of the, in this case, author of the novel. Of course this is not something that is typically Italian but got done quite a lot in the early days of cinema, mostly because they often thought they would be able to get away with it. James M. Cain's publishers managed to keep this movie off American screens until 1976 but nevertheless the movie itself has grown a bit into a well known classic.<br /><br />The movie is not as great to watch as the 1946 American version but it's a great movie nevertheless. This of course not in the least is due to the movie it's great strong story, that is an intriguing one and provides the movie with some great characters and realism. It follows the novel quite closely and is therefore mostly the same as other movie versions of its story, with of course as a difference that it got set in an Italian environment.<br /><br />Leave it up to the Italians to make a movie about life and the real people in it. These early drama's always have a very realistic feeling over it and are therefore also quite involving to watch. Unfortunately the movie lost some of its power toward the end, when the movie started to feel a bit overlong and dragging in parts. The movie could had easily ended 15 minutes earlier.<br /><br />Nevertheless, I don't really have much else negative to say about this movie. It's simply a greatly made one, based on some equally great and strong source material. Quite an impressive directorial debut for Luchino Visconti, who continued to direct some many more great and memorable Italian dramatic movies.<br /><br />8/10\r\n1\tHollow Point, though clumsy in places, manages to be an extremely endearing and amusing action movie.<br /><br />The primary entertainment value here is humor - everyone turns in clever performances that provide the film with a great deal of energy.<br /><br />Oh, by the way, advocates of gun safety will be horrified by the conduct of the characters in this movie...\r\n0\t\"*** WARNING! SPOILERS CONTAINED HEREIN! ***<br /><br /> This is a semi-autobiographical look at what might happen to Madonna if she were ever to be stranded on a deserted island. There's absolutely no challenge to Madonna in this role, and it shows. She's just Madonna playing Madonna, and she can't even get THAT right. I know what you're saying, you're saying, \"\"How do you know this is what Madonna is really like, you've never met her!\"\" Correct, I haven't, but we all remember \"\"Truth or Dare\"\", don't we? I know Kevin Costner does.<br /><br /> You would think, in the year 2002, that Madonna might have learned something, one way or the other, from the \"\"crossover\"\" ladies that have also made their way across the silver screen. For goodness' sake, hasn't Madonna seen \"\"Glitter\"\"? Mariah Carey showed the film world HOW IT IS DONE!!! Mariah kicks Madonna's trashy butt to the curb in beauty, talent, screen presence, charisma, characterization, you name it! All we see from this glimpse into Madonna's world is she's the only one in it. <br /><br /> If there's one thing to be said for Madonna, it is that she's consistent. When she was an MTV darling, she set the world of women's fashion back 20 years. Now, in film, she has set women's roles in film AND society back 20 years, by glamourizing all the most hated, horrible, reprehensible, odious qualities women have been reputed to have locked away inside them, qualities they have been so desperately trying to prove they really don't possess.<br /><br /> ***HERE'S THE SPOILERS!!! DON'T READ ANY FURTHER IF YOU DON'T WANT TO KNOW...***<br /><br /> Here's the one good thing I will say about this film, and I really was impressed by it. They didn't go for the \"\"Hollywood Ending\"\" - Madonna's character lives. In the typical, happy Hollywood ending, Madonna's character would have died on the island, and her long-suffering, oppressed, whipped husband would have been free to finally settle down with a good, decent woman, a woman who would be the exact opposite of his deceased wife, and they both live happily ever after. But in this extremely depressing conclusion, she is rescued, and once more, this poor victim of a husband is once again saddled with his demon of a wife, and his life will once again become a living hell.<br /><br /> *** HERE ENDETH THE SPOILERS ***\"\r\n0\t\"I saw this movie two weeks ago at the \"\"festival des nouvelles images du Japon\"\" in Paris. Though i wasn't expecting much from it, i have to say i've been disappointed just like many people in the audience... if i wanted to sum up how i felt, i'd say i've been comparing it to princess mononoke and nausicaa from the beginning to the end. Of course it's silly. But i couldn't help it. The stories are quite different, but the worlds pictured are very much alike. And from this point of view, \"\"a tree of palme\"\" definitely can't stand the comparison with Miyazaki's masterworks. Even if it's quite good technically, boredom remains... in the end its complete lack of originality makes me advise you not to care to watch it. I rated it 2 out of 10 (a bit harsh, i guess it deserves 3 or 4)\"\r\n1\t\"I agree with \"\"Jerry.\"\" It's a very underrated space movie (of course, how many good low-budget ones AREN'T underrated?) If I remember correctly, the solution to the mystery was a sort of variation (but not \"\"rip-off\"\") of 2001, because the computer controlling the spaceship had actually been a man, who had somehow been turned into a computer. And like HAL, they tried to disconnect his \"\"mind\"\", but not the mechanical parts of him, and as with HAL, it led to disaster. There is at least one funny moment. When the Christopher Cary character, who can't find any food, finds the abandoned pet bird, there's a kind of ominous moment, but then the obvious thing doesn't happen after all.\"\r\n1\t\"I finally purchased and added to my collection a copy of \"\"Show People\"\". I cannot comment any more than what previous viewers have stated and to the characters, plot and overall quality of this film without repeating their own words. Seeing the cameo, out-of-character appearances of so many M-G-M silent stars is worth the viewing in and of itself. I really like the scene where Marion Davies plays herself and is encountered by herself playing the main character of the movie, Patricia Pepoire. Make sure you read her lips as there is no title card indicating what she is saying when she sees Marion Davies but it is something to the effect of \"\"I don't think I like her!\"\" Pop the corn, pop in the tape and get ready to go back more than three quarters of a century in movie making history. Enjoy!\"\r\n1\tBasically, this movie is one of those rare movies you either hate and think borders on suicide as the next best thing to do, rather than having to sit through it for two hours. Or, as in my case, you see it as a kult hit, one of those movies wherein the humour, the plot, the acting, is actually very hidden but for those of us willing to go looking for it, trusting the director well, the reward is: U laugh your A.. of !! The fact that U have to find the things mentioned above, actually makes the movie even more funny, because u get the impression the director isn't even aware of how funny his movie is, which doesn't seem likely and therein lies the intelligence at the helm of this magnificient project called : Spaced Invaders !!\r\n0\tOMG this is one of the worst films iv ever seen and iv seen a lot I'm a Film student. I don't understand why Angelina Jolie would be in this movie? Did she need the money that badly? I love AJ and have seen almost everything shes ever been in so i watched this 2 tick another one off. It was SOO bad! not even good bad, just bad bad. It had 1 or 2 funny little moments but all in all it was bad n a waste of 101 minutes. I cant even say AJ looked good in it because well she didn't. The plot is predictable unless you r expecting a re-telling of Romeo and Juliet then its not. All round disappointing. Maybe if your 12 this could be a good film otherwise I really don't recommend it.\r\n1\tA famous conductor decides after a heart attack to go back to the village where he was born to live a quiet life. There, he comes in Dutch with the local church choir, that will change his life.<br /><br />I had no expectations when I saw this movie for the first time yesterday; I like watching foreign movies that are not English, and I've already seen a couple of Swedish movies in my life, but this one was the best so far.<br /><br />Where to start? In my opinion, this film is a jewel, thanks to many things, of which one is the outstanding acting. Michael Nyqvist is perfect as the thoughtful, almost shy and devoted conductor Daniel Daréus. Beautiful Frida Hallgren is enchanting with her pretty smile and her subtle acting. The choir members are all well-developed, interesting characters with their own story each.<br /><br />This movie tells a story, a beautiful story, about music, love, pain, memories, death, about a man who devoted his life to music, and who tries to create a calm existence in the village where he was born, while trying to make peace with the past and with the way his life has been till then. Kay Pollack shows us that the Swedish are outstanding movie creators. Go see Så som i himmelen, it's a movie that makes you think about life and love, and that's also comforting, in some way.\r\n1\tYeah, it's a chick flick and it moves kinda slow, but it's actually pretty good - and I consider myself a manly man. You gotta love Judy Davis, no matter what she's in, and the girl who plays her daughter gives a natural, convincing performance.<br /><br />The scenery of the small, coastal summer spot is beautiful and plays well with the major theme of the movie. The unknown (at least unknown to me) actors and actresses lend a realism to the movie that draws you in and keeps your attention. Overall, I give it an 8/10. Go see it.\r\n0\t\"As a single woman over 40, I found this film extremely insulting and demeaning to single women over 40, not to mention every other woman, of any age. It was a sad, pathetic attempt by a man to write and direct a \"\"chick flick\"\", and it failed miserably. Andy McDowell isn't much of an actress to begin with, but given the non-existent \"\"plot\"\" (I hate to even refer to it as a plot) in this, she didn't have a chance. There was no character development, no reason to feel sympathy/empathy for any of the characters, and no attempt to make the film in any way realistic or believable. And then there's the obligatory male-fantasy of an attractive straight woman suddenly deciding to give lesbianism a try -- PLEASE.<br /><br />Not only do I wish I could get my money back for the DVD rental, I also want those 112 minutes of my life back. What a ripoff.\"\r\n0\tMost of the episodes on Season 1 are awful..There is no comparison to Twilight Zone or Outer Limits, as they programs actually had decent story lines. Most of Amazing Stories are well dull..not amazing in the least..go rent or buy the Twilight Zone series...I have heard Season 2 of this series is much better..also for some reason on the DVD's they cut out the Ray Walston parts which further diminishes this compilation. The one cool thing is to see actors and actresses when they were younger in 1985...Most of the story lines are very predictable though and the series could of been better with twists and turns that left you wondering...\r\n1\tI have been a fan of Pushing Daisies since the very beginning. It is wonderfully thought up, and Bryan Fuller has the most remarkable ideas for this show.<br /><br />It is unbelievable on how much TV has been needing a creative, original show like Pushing Daisies. It is a huge relief to see a show, that is unlike the rest, where as, if you compared it to some of the newer shows, such as Scrubs and House, you would see the similarities, and it does get tedious at moments to see shows so close in identity.<br /><br />With a magnificent cast, wonderful script, and hilarity in every episode, Pushing Daisies is, by-far, one of the most remarkable shows on your television.\r\n0\t\"First off, the movie was not true to facts at all. I just saw the documentary a few days earlier and the movie wasn't anything like it. First of all Nash was a genius at mathematics and this is what the movie should have been about not a story about a man who was cured and who found love at the end and so on. Also there are a lot of scenes that were just plain wrong - the scene where he rode around with a bike at the campus happened in his early university years not after it. In my opinion Russell Crowe didn't fit to this part at all since he doesn't look the intelligent/individualist type, therefore he really couldn't play one. It would have been great if it would have focused more on the mathematics (similar to Pi) and not the over-dramatized lovelife. At this level ABM was too hollywood-ish and too superficial to be great. Personally I think he wasn't mad nor paranoid and he was onto something since people of that caliber tend to know more than we \"\"lesser mortals\"\". 5/10\"\r\n1\t\"\"\" Domino \"\" has been widely condemned on this site for its frenetic editing style and \"\" sickening \"\" photography. It's detractors cite its superficiality and criticize its deployment of \"\" style over substance\"\" I couldn't disagree more. I believe that \"\" Domino \"\" represents the absolute height of Tony Scott's film-making career. <br /><br />After having created the dominant Hollywood action movie style throughout the late eighties and early nineties Tony Scott has moved progressively closer to a more subjective style of cinema. As early as \"\"Crimson Tide\"\" Scott used his stylistic talent to portray the inner worlds of his characters- the claustrophobia and drama inherent in the conflict on board a nuclear submarine was embodied in the excellent use of long lenses combined with dutched-angle framing. This was then carried through to \"\" Enemy Of The State\"\" and \"\"Spy Game\"\" which visually represented the worlds of surveillance and espionage respectively. <br /><br />\"\" Man On Fire\"\" was an extreme departure , a move into an expressionist more painterly aesthetic. Here Scott used an antiquated hand cranked camera and flash frames to express his character's explosive rage . Although not entirely successful it introduced the techniques which were to find their full expression in \"\" Domino\"\"<br /><br />Couched in the framing device of an FBI interrogation \"\" Domino\"\" presents the life of the infamous bounty hunter via her narrated disjointed fragments of memory. She grasps at memories as we all do- in fragments, flashes and brief snatches. As Domino relays her story verbally Scott relays it visually illustrating not only the events which she describes but also the point of view which guides them. She does have \"\" traces of mescaline\"\" in her system but her individual vision is anyway Unusual -that of an woman who eschewed the life of luxury for bounty hunting. <br /><br />It is when Domino begins to relate the events which lead to her captivity that Scott really lets rip. Together with Cinematographer Dan Mindel and composer Harry-Gregson Williams Scott orchestrates a postmodern canvas of contemporary Americana. Gradually we begin to realize that unusual though she may be Domino is no more disjointed than the \"\"90210\"\" culture she has rejected. As she wades through this cultural melange Scott makes his viewer more aware of the innocence which it destroys through the underprivileged children which the narrative introduces. Ultimately Scott portrays their salvation as the only escape we have from this surreal trip. <br /><br />To criticize this movie for being overly stylized is akin to criticizing a Picasso or a Pollock for not representing that which is recognizably human. Like any great painting the meaning in \"\" Domino\"\" is in the surface and the surface is everything. <br /><br />I am not in any way associated with Scott Free but have always been and will continue to be a huge admirer of Tony Scott's work\"\r\n0\t\"This is by the far worst piece of cr4p I've ever seen in my life. It barely made sense. It wasn't scary at all (unless you class scary as loud noises and screaming?) Sarah-Michelle Gellar needs to stop with these sh1tty horror films. I think everyone else in the cinema agreed with me when i shouted \"\"SHITE\"\" when the credits rolled up. <br /><br />On my list of the worst movies ever made this is how it would go:<br /><br />1. The Return 2. Cabin Fever 3. Silent Hill<br /><br />The reason i made Silent Hill 3rd is because it showed some frightening scenes, but the rest was absolute cr4p. Same with cabin fever, made no sense, but the return topped that list. Its worse than Silent Hill and Cabin Fever put together\"\r\n1\tA chance encounter between a salesman and a hit-man changes both their lives. This is an odd film that works, an impressive effort for writer-director Shepard. In a daringly unglamorous role that is a far cry from James Bond, Brosnan is surprisingly effective as the lonely hit-man who starts to buckle under the stress of his job, but is unable to connect emotionally with anyone to help him cope. Kinnear is equally good as the salesman, a decent fellow with a void in his life. Davis is fine as Kinnear's flirtatious wife. Mainly a character study, the film is rewarding because it feels fresh and unpredictable, an extremely dark comedy.\r\n0\tMy kids picked this out at the video store...it's great to hear Liza as Dorothy cause she sounds just like her mom. But there are too many bad songs, and the animation is pretty crude compared to other cartoons of that time.\r\n1\t\"Gorgeous Barbara Bach plays Jennifer Fast, a television reporter who travels with her crew (Karen Lamm and Lois Young) to Solvang, California, to cover a Danish festival. The problem is that their accommodations have fallen through and all hotels in town are full. So they travel out of town to a remote location and take advantage of the hospitality of the seemingly friendly Ernest Keller (a phenomenal Sydney Lassick). Wouldn't you know it, Ernest and meek partner Virginia (Lelia Goldoni) are hiding a big secret in their cellar: pitiable, deformed, diaper-clad \"\"Junior\"\" (Stephen Furst, in a remarkable performance) who ultimately terrorizes the girls.<br /><br />A deliciously unhinged Lassick plays the true monster in this disturbing little horror movie. It builds slowly but surely to an intense confrontation / climax, delivering the horror in small doses until the final half hour. The hotel and the foreboding cellar - large echoes of \"\"Psycho\"\" here - are great settings. Most of all, the perverse plot involves incest and patricide, allowing the movie to take on a truly dark quality. And yet it also becomes poignant as we realize Junior is no one-dimensionally evil bogeyman but as much a victim as the girls. The final shot is especially sad.<br /><br />\"\"The Unseen\"\" is a solid little horror flick worthy of discovery.<br /><br />8/10\"\r\n0\t\"I'm not a stage purist. A movie could have been made of this play, and it would almost necessarily require changes... comme ci, comme ca. But the modest conceits of this material are lost or misunderstood by the movie's creators who are in full-on \"\"shallow blockbuster\"\" mode. It would be hard to imagine a worse director. Perhaps only Josh Logan & Jack Warner could have ruined this in the same way Attenborough did.<br /><br />Onstage A Chorus line was a triumph of workshopping as a production method. Dancers answering a casting call found themselves sitting around shooting the crap about their stage-career experiences (very 70s!). Then Bennett and Hamlisch took some time, handed them a song and cast them as themselves. ...astonishing! Unbelievably modern. The 'story'of ACL is (in turn) about answering a casting call for a play we never have a complete view of, because the play doesn't matter. It was meta before the idea was invented, 25 years before Adaptation noodled with a similar idea. ACL was also another in a reductivist trend that is still alive, & which is a hallmark of modern creativity: that technique itself is compelling... that there's more drama in an average person's life than you could ever synthesize with invented characters. What a gracious idea. The stage play had one performance area (an empty stage) and three different ways to alter the backdrop, to alleviate visual tedium, not to keep viewers distracted. The space recedes and the actors stories are spotlighted. It worked just fine. That was the point. All these ideas are trampled or bastardized. Set-wise, there wasn't one, and no costumes either until the the dancers came out for their final bows, in which the exhilarating \"\"One\"\" is finally, powerfully, performed in full (gold) top hats and tails, with moves we recognize because we've watched them in practice sessions. The pent-up anxiety of the play is released --- and audiences went nuts. <br /><br />After Grampa manhandles this, it's like a mushed, strangled bird. He clearly has the earlier, respected All that Jazz (and Fosse's stage piece Dancin') in mind as he makes his choices. Hamlisch's score was edgy & interesting for it's time, but time has not been kind to it. It's as schmaltzy as \"\"jazz hands.\"\" And that's before Attenborough ever touches it. He's remarkable at finding whatever good was left, and mangling it. <br /><br />A simple question might have helped Attenborough while filming this, \"\"Could I bear spending even a few minutes with people like these?\"\" A major issue for any adaptation of the play is how the 4th wall of theater (pivotal by it's absence in theater) would be addressed in the film format. There's never been a more \"\"frontal\"\" play. The answer they came up with was, \"\"I'm sorry.. what was the question?\"\" The cast has been augmented from a manageable number of unique narratives, to a crowd suffocating each other and the audience, and blending their grating selves together. I was well past my annoyance threshold when that annoying little runt swings across the stage on a rope, clowning at the (absent) audience. The play made you understand theater people. This movie just makes you want to choke them.<br /><br />Perhaps Broadways annoying trend of characters walking directly to stage center and singing their stories at the audience (Les Miz, Miss Saigon) instead of relating to other characters started here. But the worst imaginable revival of the play will make you feel more alive than this movie. <br /><br />A Chorus Line is pure schlock.\"\r\n0\t\"Kill Me Later\"\" has an interesting initial premise: a suicidal woman (Selma Blair) on the verge of jumping off the top of an office building is protects a bank robber (Max Beesley) who promises to \"\"kill her later.\"\"<br /><br />The actual execution of this premise, however, falls flat as almost every action serves as a mere device to move the plot toward its predictable conclusion. Shoddily written characters who exhibit no motive for their behaviors compromise the quality of acting all around. Lack of character depth especially diminishes Selma Blair's performance, whose character Shawn vacillates from being morose to acting \"\"cool\"\" and ultimately comes across as a confused dolt. This is unfortunate, as under other circumstances Ms. Blair is an appealing and capable actress.<br /><br />Compounding matters for the worse is director Dana Lustig's insistence on using rapid cuts, incongruous special effects (e.g. look for an unintentionally hilarious infrared motorcycle chase at the end), and a hip soundtrack in the hopes of appealing to the short attention spans of the MTV crowd. Certainly Ms. Lustig proves that she is able to master the technical side of direction, but in no way does her skill help overcome the film's inherent problems and thus the movie drags on to the end. Clearly, Lustig has a distinct visual style; however it is perhaps better suited to music videos than to feature film.<br /><br />The producers (Ram Bergman & Lustig)can be commended for their ability to realize this film: they were able to scare up $1.5 million to finance the film, secure a good cast, and get domestic and foreign distribution. This is no small feat for an independent film. Yet given the quality of the product, the result is a mixed bag.\"\r\n1\t\"I collect Horror films from all over and I have seen the good and the very bad - Zombie Bloodbath is a low budget video. Sure, the acting is bad, the storyline is basically a mix of all zombie movies thrown together and the quality is low in some spots. The thing you seem to be missing is that it's still entertaining and really very fun. The effects range from, like someone on here has said, pasty-faced zombies that look like KISS rejects to really good ones with some amazing latex work. But the reason you buy a movie with a title like this is for the gore and this film is amazing in that area. The effects are very good for such a small film. Someone called it a Party movie and it is. 100% fun party movie. I have heard from various websites that this is actually a \"\"rough cut\"\" of the film that got general release but the actual \"\"director's cut\"\" is coming on DVD and it is very nice quality. I will buy it and judge for myself.<br /><br />Story is basically a Nuclear power plant goes bad and makes zombies. The gov't closes it down, hides the story and sanctions houses to be built over it. Some of the plant is still underground and these undead come up and attack the area. A few actors do a great job, there's some pretty straight social commentary that is insightful and true, good music, great lighting, some effective suspense and tons of blood and sick gore. One guy gets attacked and ripped from the lower area all the way up, if you know what I mean. Then his guts are shoved out of his mouth. Another is torn in half like in Day Of The Dead and they did a great job of that effect. There are a million gore gags and it's almost ALL action. I say stop being a prude, enjoy life and get more movies like Zombie Bloodbath and Meat market. Two great undead epics.<br /><br />OK - UPDATE!!! I just got the DVD set and here is what I thought:<br /><br />MUCH better picture quality and for once I was able to see the actual DIRECTOR'S CUT of the film and it is a much better movie. I liked it before, but now I can see what Todd Sheets was actually trying to do with this one. And the commentary helps too, hearing Sheets talk about the film in detail, He knows it's a trashy zombie movie, but he does show respect to all people involved. Also, Sheets has a great sense of humor and some humble integrity that others could learn from in the movie field. The behind the scenes of Zombie Bloodbath is pretty fun as well. I felt it was almost as entertaining as the film it was made for. There are some great interviews and behind the scenes footage, mixed with news stories about the film from some major places like CNN, FOX and MTV. Over all, a fun little film that is VERY rough around the edges, but still had me laughing and enjoying the ride! I have seen many DV films, and some shot of video films, and many are quite dull, but this one really wasn't. While newer DV films are technically superior, they just aren't this much fun!<br /><br />PS - I heard they are now remaking this on a big budget???\"\r\n0\tI had always been a big Lynda Carter-Wonder Woman fan so when the Sci-Fi Channel ran this movie,I had to see it.I was bitterly disappointed.This is a Wonder Woman movie in name only.She doesn't wear the right costume [she must have refused to or had ordered major changes] and the plot runs like a poor man's James Bond.There's none of the things that made the comic book heroine a success i.e. the superhuman strength or determined will.It's just one long bad dream.I don't even think Cathy is all that attractive anyway.I wouldn't waste your time on this.\r\n1\tI picked this up in the 'Danger After Dark' box set, and watched it solely because of my interest in the performance of Hyde and Gackt. I expected a corny horror film that was a huge gore-fest and with very bad dialogue. Which is exactly what it would have been if it had been made in America. Instead I found myself intrigued by the good development of the characters, and the way that Sho (Gackt) develops through the movie as a person. The acting skills of both stars was surprisingly good, considering they aren't professional actors, and the director did a marvelous job with it all, setting it in the future minus the flying cars and holographic billboards.<br /><br />On a side note, Taro Yamamoto's performance was very surprising. The only other film I've seen him in is Battle Royale, where he plays Shogo Kawada, and in this film he seems to be the exact opposite of Shogo. Toshi is bright, exuberant and hyper, serving as a sort of comic relief with his antics. Shogo was the big tough guy on the island who killed without thinking anything of it. So, watch out for his performance, if you're familiar with Battle Royale, you'll be very surprised by him.<br /><br />But don't be thrown off by the summary on the back of the box, because this isn't really a vampire movie. It's just a movie with a vampire in it. That Hyde's character is a vampire is almost a background fact with what's really going on in the foreground, and you guys will love the last scene. It's a really moving picture at some points, the photography is really well done. It's definitely something to pick up the next time you're at Blockbuster.\r\n0\tLet me state first that I love Westerns & Civil War stories. I also consider John Ford as an excellent director. I also have the same high feelings for John Wayne & William Holden's acting ability.<br /><br />I cannot remember if I saw this film when it first came out in 1959. Last night was the first time I saw it since then.<br /><br />As per my 4 rating, one can say I did not like the movie.<br /><br />I now will attempt to tell some of its shortcomings.<br /><br />John Lee Mahin who wrote the screenplay from Harold Sinclair's novel, was a very gifted writer & wrote many fine scripts, This script is poorly written & badly researched. They make mention of the awful conditions of the Andersonville prison, At the time of the movie Andersonville was not in operation. They also use rifles that were not used at the time.<br /><br />John Ford was directing films for over 40 years & won 4 Oscars. He must have been ill during the making of this.His usual style was missing. It could be that this was film in the south & east and not in Monument Valley.<br /><br />He normally had a stock company of players he used in nearly all his film, MOST were missing this time. This time only minor cowboy stars Hoot Gibson & Ken Curtiss have roles & of course Anna Lee has a small role. There were no other familiar faces except for the 3 stars. (see below) Mr. Fords stock company made most of his films the classics they were; sadly missed here.<br /><br />Now we come to the main stars John Wayne & William Holden. The Duke also must have been ill,he seemed out of place here. This sort of role usually fit his style perfectly, he was just adequate here. Wiliam Holden did the best he could, but nowhere as good as he usually was.<br /><br />It was required that there be an actress in this type of movie. Here in her first major role (second film) is Constance Towers, a very beautiful person, But not really an actress, She is still having roles on Television. Let me be kind and say she has had a long career,more based on her looks than acting talent. Also in caas as Ms. Towers servant is Tennis Star Althea Gibson.I am glad she stuck to tennis.<br /><br />The rest of the production credits were far from the usual high standard of other John Ford films There were a few military type songs supposedly done by the marching cavalry, not good at all. The action scenes were good but come at the end of film.<br /><br />Ratings *1/2* (out of 4) 47 points (out of 100) IMDb 4 (out of 10)\r\n1\t\"There is nothing remotely scary about modern \"\"horror\"\" which is an insult to the word \"\"horror\"\". Freddie Vs Jason, the Scream movies, Cabin Trash, and especially Stephen King's infantile attempts - he's recycled every story from The Monkey's Paw to whatever, often in the same story - at horror in both writing and on film (except for Kubrick's version of The Shining which actually was scary, unlike King's books which are as frightening as my big toe - the left one, which still has the nail.<br /><br />But The Woman In Black is that rare modern film that will make the hairs on the back of your neck stand on end. This is the way it should be done; the director creates tension, and the scariest ghost ever actually seen simply by having her suddenly turn up standing still somewhere or other with that incredible look on her face. Then he brings it all to a ghastly disturbing close. He's learned his lessons from the masters who knew how to make horror - Val Lewton (original Cat People) and Robert Wise (a Val Lewton disciple and director of the Haunting and The Body Snatcher), Jacques Tournier (another Val Lewton disciple who directed a truly horrifying zombie film, not the gross rubbish Raimi did (gross isn't scary, folks, it's just gross), and Lewis Allen (The Uninvited), and of course Jack Clayton's turn on Henry James The Innocents, and the way the master of suspense, Hitchcock, can still bring you to the edge of your seat even with a slow-building and burning period piece like Under Capricorn.<br /><br />TEN STARS...\"\r\n0\tProm Night 2 is an OK horror movie but prom night is way better and this movies about how the prom Queen Mary Lou in 1957 gets killed by her boyfriend and comes back 30 years later for revenge.The best actor in this movie is Micheal Ironside and the movie stars other OK actors and actress like Justin Louis (I),Wendy Lyon,Lisa Schrage and Richard Monette(I).And there are some good gore scenes like when Mary Lou kills the girl that is trying to hide in her locker by crushing the lockers together and how one of the students are on the computer and Mary Lou electrocutes him to death.Over all this is an OK/good horror movie and my rating is 4 out of 10.\r\n1\tI have no idea how IMDb sorts reviews but I do know that, as happens often on Amazon.com, there are a striking number of very negative reviews for this movie which repeat the same, somewhat obscure talking points, almost verbatim. A campaign? Only IMDb knows.<br /><br />As for this movie: it's fine. It's a funny, cute and very straightforward movie.<br /><br />It's been over a decade since I worked in Brooklyn, lived in Queens and visited relatives in the South Bronx. But I found nothing inauthentic or exploitative about these kids. Is the grandmother a bizarre character? Yup. Do the dialogue and plot acknowledge this? Yes, thankfully, they do. Are other movies set in the LES and featuring Dominican / Puerto Rican kids possible? You betcha. Does that make this movie a crime  as some of the (to my eyes, astroturf) comments would suggest? Hardly. Let a thousand plastic flowers bloom.<br /><br />This is better than any episode of Degrassi JR. High or Degrassi High. Scoff at the comparison but _we've never had that_ and I'm touched, to the core, by this movie's humility of purpose and tender spirit.<br /><br />That said, I'd love to know the backstory behind all this backbiting! :-D\r\n0\tI see what the director was trying to do but he missed the mark. The main actor was really good but the editing around his moments takes you out of it. The camera work, ie lighting and exposer is kind of amateur which I could forgive if the direction was more fluent but it wasn't. The sound was a bit off and that takes you out of the film as well. I see could see this director doing a little bit better in the future so not a total right off but don't expect a dv movie nearly as good as 28 days later or anything, keep your expectations low and you'll get more out of it. At least it was only an hour and a half. Oh yeah and other than the lead the acting was pretty bad if you ask me. But I'm a movie snob so take that for what that's worth.\r\n0\tThis movie proves that good acting comes from good direction and this does not happen in Ask the Dust. Colin Farrell is usually a fine actor but in this he is juvenile. Donald Sutherland comes across as an amateur. Why? Because the script is awful, the adaptation is awful and the actors seem bored and half hearted. The atmosphere of the movie is bad - I could only think when it would finish and I turned it off half way. The director has done a very poor job and even though I have not read the novel it is certainly a missed chance. The atmosphere this film is trying to evoke and the message and storyline never reaches the audience. In one word, it is a TERRIBLE film.\r\n1\tWell let me just say something about these actors, they really were a good decision, and from experience, having actors really brings the dialogue to life. If you walk into this even fifteen minutes late, you'll be in for a shock, the movie will have already began. You don't want to miss the first few jokes, assuming you came to not miss any jokes.<br /><br />Wow! I have never seen a movie that ended with such a final ending. Not to be harsh, I mean I loved it, but it just surprised me that it really kept going until it stopped! But i'm getting ahead of myself, lets start with the very start of it, when it began. The plot outline goes like this, there is this man, and not to give away any spoilers, (*Spoiler Alert!!*) (he hasn't had any sex ever(!) they use this plot device to set the story moving, and there are (intentionally or not, it could go either way) some funny situations had by the main characters, some containing irony, and jokes, and awkward situations, you know.<br /><br />The director uses the advancements in technology by combining the film shot on the set and scripted dialog, some music, and jokes to make a funny movie, designed as a comedy, where he takes us on a journey from the opening credits to the end with an entirely full movie in between. I went into this movie expecting to see a funny comedy because of what I already knew about it, and left feeling as though i had just left a theater that just played a funny comedy. TEN STARS!!!\r\n0\tThere's nothing new here. All the standard romantic-comedy scenes, even down to the taxi sprinting to the airport to stop the woman flying away. The only thing that saves this is the acting of Alison Eastwood & some of the minor characters (blink and you'll miss Gabrielle Anwar), who obviously had some fun.<br /><br />Turn it off when the pair are in bliss, and you won't have to go through the inevitable plot pain.\r\n1\t\"Los Angeles TV news reporter Jennifer (the beautiful Barbara Bach of \"\"The Spy Who Loved Me\"\" fame) and her two assistants Karen (the appealingly spunky Karen Lamm) and Vicki (the pretty Lois Young, who not only gets killed first, but also bares her yummy bod in a tasty gratuitous nude bath scene) go to Solvang, California to cover an annual Danish festival. Since all the local hotels are booked solid, the three lovely ladies are forced to seek room and board at a swanky, but foreboding remote mansion owned by freaky Ernest Keller (deliciously played to geeky perfection by the late, great Sydney Lassick) and his meek sister Virginia (a solid Lelia Goldoni). Unfortunately, Keller has one very nasty and lethal dark family secret residing in his dank basement: a portly, pathetic, diapered, incest-spawned man-child Mongoloid named Junior (an alternately touching and terrifying portrayal by Stephen Furst; Flounder in \"\"Animal House\"\"), who naturally gets loose and wreaks some murderous havoc. Capably directed by Danny Steinmann, with uniformly fine acting from a sturdy cast, a compellingly perverse plot, excellent make-up by Craig Reardon, a nicely creepy atmosphere, a wonderfully wild climax, a slow, but steady pace, likable well-drawn characters, and a surprisingly heart-breaking final freeze frame (the incest subplot packs an unexpectedly strong and poignant punch), this unjustly overlooked early 80's psycho sleeper is well worth checking out.\"\r\n1\t\"The premise of this movie has been tickling my imagination for quite some time now. We've all heard or read about it in some kind of con-text. What would you do if you were all alone in the world? What would you do if the entire world suddenly disappeared in front of your eyes? In fact, the last part is actually what happens to Dave and Andrew, two room-mates living in a run-down house in the middle of a freeway system. Andrew is a nervous wreck to say the least and Dave is considered being one of the biggest losers of society. That alone is the main reason to why these two guys get so well along, because they simply only have each other to turn to when comforting is needed. Just until...<br /><br />Straight from the beginning of the film lots and lots of problems happen to them. Both of them get involved with crime, Andrew suffers from paranoia and simply doesn't dare going out of the house. Dave is unsuccessful at his job and his colleagues don't treat him very well and with the respect he deserves. The amount of problems they face keeps increasing until that one day where they may have to face the inevitable and deal with it. This is just too much for them and they wish that everything would just go away... And of course that is exactly what happens.<br /><br />The rest of the story places Dave and Andrew in this world of nothingness. At first they are surprised and have problems understanding and dealing with the features of this crazy environment, but later on they find out that they can do just about everything they want because it seems as if they are the only ones still left.<br /><br />Nothing features an incredibly small cast - in fact, besides the first couple of shots from the film, we only see Dave (David Hewlett) and Andrew (Andrew Miller) in the entire film. It is clear that in order to pull this off, the cast has to be more than up for the task, because in a world where nothing exists there is nothing that can distract the viewer in any way. Vincenzo has decided to use a reasonable amount of close-up head shots to make it more interesting and it actually works quite well. Director of Photography, Derek Rogers, also has a nice way of teasing the audience by withholding visual information, especially at times where a character sees something and reacts to it, but we don't see it right away.<br /><br />Obviously, this can't be an event driven film and it's not. Much of the action happens outside their house when they move around in the void. And that's where some of the most hilarious scenes take place, especially in the case of when Andrew discovers a candy bar.<br /><br />Now, one could be thinking: \"\"How does nothing look like?\"\" Well, it looks like nothing indeed. The entire world of nothing is white... white no matter in what direction you look. This is the weakness of this film... After an hour or less it's getting extremely boring to look at and there has to be events to make sure it's more interesting to look at. Thank God, there are some. For example at times when the two lads, due to the properties of nothing, are able to jump really high as if nothing is made out of... tofu (as Andrew claims). It's fun to see how they are instantly able to use nothing to become gods of their own little society.<br /><br />One of the best parts of the film is the set... Production designer Jasna Stefanovic has done a beautiful job in this film, the house in which these two guys live is so unnaturally fun to look at, still it seems right for these two to be living in a place like this. All in all, the production design is with no doubt one of the most powerful aspects of this film at it really makes the film worth watching...<br /><br />However, the very best part of the film is the acting. Both David Hewlett and Andrew Miller really look like the professional actors they both are. The camera is on them for every second of the film and as previously said, there are just about no props in the film, they are really on a bare stage. With plenty of character development and some decent one-liners, clever dialogue (at times hilariously stupid), it all works to that end - and this really moves the movie away from the low-budget area to well-crafted handwork.<br /><br />Let's talk a little about the visual effects, because they are definitely worth mentioning. Nothing features digital visual effects and prosthetics that equals any modern horror film. There's a rather horrifying dream sequence in the film, and although The Drews have milked that scene completely it's still fun to watch. One of the best visual effects in the film is at the end where Andrew and Dave suddenly discover their powers in this environment - they have the abilities to wish everything away, so what if they can do it the other way around and make things appear?<br /><br />\"\"Nothing\"\" is a bright and well-lit movie, it really helps promoting the idea of them probably being dead (this is in fact one of their theories), but \"\"Nothing\"\" is a comedy and it slowly destroys its own theory. We don't know where they are or what has happened to them. We don't know if they will ever get out, because the movie ends before we see anything like that. The ending, by the way, is not as good as it could've been. It's rather easy to predict what is going to happen, still the writers have thought up a few incidents that help make it a little more interesting and in the end, it's a reasonably satisfactory one.<br /><br />Take \"\"Hollow Man\"\", \"\"Kill Bill\"\", \"\"Cube\"\", \"\"Epoch\"\" and lots of other films and you have \"\"Nothing\"\". It really is an amalgam of different styles, still there is no other film (at least that I know of) Nothing is really like. For the people remembering the original Cube Production Commentary on its DVD may remember that Vincenzo Natali talked about how he came up with the story of Cube. He talks about him and André Bijelic having been room-mates at a time and they both were in this extremely dull room with no hope of getting out, \"\"Nothing\"\" could very well be the screened version of the origin of the Cube story, and to that end, it's almost like one of the Cube prequels.<br /><br />What can I say? I enjoyed \"\"Nothing\"\", it is a great movie and the different parts of the movie are extremely well-made with tons of intelligent ideas, still I feel the movie is missing something and I have problems finding out precisely what it is... Maybe if we have a \"\"Nothing 2\"\" I can answer that question. \"\"Nothing\"\" is a great film, but not as good as I expected it to be.<br /><br />Final rating: 7.5 / 10\"\r\n1\t\"Forbidden Planet rates as landmark in science fiction, carefully staying within \"\"hard\"\" aspects of the genre (science -- not fantasy, ergo nerds will love it) while still playing with imagery and ideas of contemporary 1950s values. Morbius's isolated house is a model of modern design with open spaces that step out into sculpted gardens, a swimming pool, and the ultimate home appliance: Robby the Robot. \"\"A housewife's dream!\"\" exclaims the Captain after lunch and a demonstration of the robot's abilities to synthesize food and disintegrate waste.<br /><br />Also revealing to the 1950s: Fruedian psychology rears its head in the Id explanation, although Morbius dismisses it as an outdated concept. There is a touch of the Pacific war drama in the battle with the invisible monster and life aboard the saucer. Perhaps most timely is the post-atomic fear that Science is the enemy, and arrogant scientists will unwittingly bring down destruction in their blind quest for knowledge.<br /><br />Yet the suburban drama presented by Forbidden Planet seems uniquely fresh in the sci-fi genre. They aren't swashbucklers or heroes, but ordinary sailors crossing the galaxy with a serviceman's crudeness and honesty. The good guys drive the flying saucer, and the aliens are so long gone we don't even know what they looked like -- although their music er-\"\"atmospheric tonalities\"\" by Bebe and Louis Barron are remarkably futuristic today. The views from Morbius' house are truly alien with jagged cliffs and pink bonsais. The interior of the saucer is just this side of Buck Rogers. There's a lot visually to like. Although we get fantastic monsters and robots for the kiddies, Forbidden Planet is a cerebral movie, slow paced and talky. It is working on many levels at once: hard sci-fi against space adventure, philosophical against domestic. <br /><br />There are many suburban touches. In spite of all their space-talk, the soldiers are dressed for the golf course. Morbius' fatal discovery is a humble educational facility, a schoolhouse. The most interesting character is Morbius' daughter Altaira. Having never seen a man she is unashamedly forward to the crew. She's a post-Madonna teen who designs her own space-age clothes and takes every opportunity to change outfits -- imagine Christina Aguilera with a household replicator. Men watching the film might see her as a naive girl in a minidress, but every woman knows there is no such thing as a naive girl in a minidress. Anne Francis deserves better recognition for humiliating the Leut with kisses. Alas we'll never know if she was \"\"working\"\" him as he suspects, since the Captain interrupts and becomes a more interesting target for her attention. She is the character who makes the important change in the film. Shocked that her father compares the dead Doc to the other \"\"embeciles\"\" in his landing party, she turns away from her father, her home, to leave with the sailors for Earth. It's this act of defiance, of maturity, that sends Morbius' Id creature over the edge, allegorically destroying its creator just as it did thousands of centuries earlier to the Krell. <br /><br />Maybe the Krell had teenage daughters too...?\"\r\n0\tThis apocalyptic zombie film tries to be vicious and shocking; but FEEDING THE MASSES comes off lame as some of the stiff-legged zombies stalking the streets. In Rhode Island, a zombie epidemic known as the Lazarus Virus is being played down by the government manipulated newspapers and television stations. A couple of brave, but dumb, souls at Channel 5 TV News feels its audience is being given false hope and no idea of the real danger at hand. An eager reporter(Racheal Morris)and her cameraman(William Garberina), with the aid of a military escort(Patrick Cohen), risk life and limb to present a 'live' broadcast to show the doom at hand. Do yourself a favor and don't watch. This thing is obviously very low budget and comes across with the feel of a high school play gone bad. Acting is atrocious and the flesh-hungry zombies are almost comical. Also appearing are: Michael Propster, William DeCoff and Brenda Hogan. FEEDING THE MASSES should be left to starve.\r\n1\tUneducated & defiant, beautiful TESS OF THE STORM COUNTRY is the daughter of a fisherman squatting on a rich man's land. Spirited & bold, she captures the heart of the millionaire's son, but violence, terror & sudden death are what will haunt her immediate future before she can claim the sweet peace of happiness.<br /><br />Mary Pickford is utterly charming in this splendid, heart-wrenching film. She considered Tess to be her favorite role and she fills it with all the spunky joy & enthusiasm which made her for years the world's most popular movie star. The story has all the essential elements for a modern fairy tale, with Mary the lovely, distressed heroine beset by all manner of dangerous, stressful situations. The atmospherics are first-rate, with the outdoor fishing village sets being particularly well-conceived.<br /><br />In the supporting cast, Jean Hersholt stands out as the vile villain who tries forcing Pickford to marry him. Hersholt, a very gentle soul off screen, manages brilliantly to depict his character's complete moral corruption.<br /><br />This was actually the second time Pickford filmed TESS. A 1914 version had been one of her first important films, but its production values were a bit antiquated by the standards of the 1920's (no close-ups, for instance) and Mary, producing her own films & powerful enough by 1922 to make whatever film she wanted, decided for the only time in her career to remake a film. The end result certainly lived up to her expectations. Both films were very popular at the box office.<br /><br />A fascinating study for some future film researcher would be the influence of Christianity in Mary Pickford's life; it certainly runs like a golden thread through the silent movies she produced. Although the romanticism inherent in the very nature of silent cinema might cause these spiritual sentiments to appear somewhat awkward today, we are compelled to accept them as sincere reflections, by their very repetition, of Mary's heartfelt beliefs. In TESS, one beautiful scene in particular stands out in this regard: Pickford is teaching herself to read using a Bible. She indicates to Lloyd Hughes (who plays her sweetheart) a word from near the back of the Book that she does not understand. He mimes it for her (the word is obviously `crucified') and, eyes turned Heavenward as the full meaning of the Sacrifice dawns upon her, Mary's face becomes positively beatific.<br /><br />A splendid new orchestral score for TESS has been supplied by Jeffrey Mark Silverman which perfectly underscores the beauty & pathos of this wonderful film.\r\n1\t\"I was lucky enough to attend a screening in Stockholm for this elegantly expressed, enjoyable, and thought-provoking film. With romance as the heaviest weapon in its arsenal, Paris je t'aime boldly plunges into love in Paris, navigating the different forms in eighteen separate \"\"quartiers\"\" but without pouting Parisiennes and saccharine formulas. Its goldmine undoubtedly stems from frustration on the directors' parts  frustration over only having 5-10 minutes of screen time  thereby you are only presented with the best and most assured direction from each party.<br /><br />Debating whether or not I should review all 18 segments, I reached the conclusion that it would be merely redundant and long-winded. Instead simply rest assured that each director graces the film with their eccentric styles and skills, and certainly you'll find your favourite. Although Gus Van Sant cannot resist the temptation to be introspective, his LES MARAIS is one of the better contributions, even sneaking in a well-placed Kurt Cobain reference. The Coen brothers recreate one of the more accessible segments in Paris, a scene with a muted but emotionally transparent Steve Buscemi, deadpan humour and clever camera angles that surely generated the most laughter in my theatre, and perhaps rightly so. <br /><br />In this way, all story lines are exquisitely unique  filtered through the minds of different directors  but the one that deviates the most from the rest is Vincenzo Natali's QUARTIER DE LA MADELEINE, a dark horror-Gothic love starring Elijah Wood as a lost tourist in the backstreets of Paris in the night who meets a vampiress. With a black-and-white format but blood-red colour contrast that seems to incongruously bleed off screen, it nearly becomes a pastiche of Sin City  a refreshing eerie and visual turn in an otherwise fairly grounded film. <br /><br />Yet my single favourite segment was FAUBOURG SAINT-DENIS by Tom Tykwer but I think I was conditioned to think so, given that I went in the theatre with him as my favourite and nudged my friend in the side saying \"\"finally, that's my favourite director here\"\". Nevertheless, it cannot be denied that Tykwer delivers a lovely segment in which a blind boy picks up the phone, and hears from his girlfriend (Portman - for once not annoying) that she breaks up with him, and he reflects on their relationship. As is Tywker's style, the story is dizzyingly fast-paced, kinetic and repetitive, featuring screaming and running (Lola Rennt) making it the most adrenaline-pumping segment in Paris je t'aime and possibly also the most touching once Tywker starts wielding his most powerful tool  music.<br /><br />To fill the negative account, clearly not all directors manage as touching as Tywker, Van Sant, Cohens, Coixet and Dépardieu. Sylvain Chomet scrapes the bottom of the pile by carving out a truly disposable segment in which a little boy retells the story of how his parents met. They are two lonely mimes. This part is so in-your-face French and desperately quirky that it is insulting to international viewers. Suwa also directs a poor and fluffy segment with an unusually haggard-looking Juliette Binoche whom mourns the loss of her son. Nothing else happens. Finally, the wrap-up and interweaving of the 18 stories in the end feels somewhat rushed and half-hearted.<br /><br />Yet Paris je t'aime truly spoils you with quality, for all the other stories are well-crafted with crisp acting and amusing writing. It is certainly one of the highlights of 2006 (not saying much, I suppose) and a very personal film in the sense that it is unavoidable to pick a favourite and a least favourite. Highly recommended both to mainstream of \"\"pretentious\"\" (heh) audiences.<br /><br />8 out 10\"\r\n1\tThe original DeMille movie was made in 1938 with Frederic March. A very good film indeed. Hollywood's love of remakes brings us a fairly interesting movie starring Yul Brynner. He of course was brilliant as he almost always seemed to be in all of his movies. Charlton Heston as Andrew Jackson was a stroke of genius. However, the movie did tend to get a little long in places. It does not move at the pace of the 1938 version. Still, it is a fun movie that should be seen at least once.\r\n0\t\"...am i missing something here??? \"\"unexpected plot developments\"\"? \"\"plot twisting with subversive glee\"\"? are these viewers watching the same Arquette vehicle to which i just subjected myself (in an now-obvious sub(un)conscious bout of sadomasochism)...I just joined this site simply to make sure that no one else ever rents this stinker...this movie was an embarrassment to every single person involved...quick question: did Sir Stevie read the script before he gave the thumbs-up to Kate C.? if so, then it must be the same Spielberg who greenlighted \"\"howard the duck\"\"...don't give me that, \"\"it was a hit play\"\" crap--i'm guessing Mssr. Reddin ain't too pleased ...the DVD cover promised \"\"surprising corners\"\" and a \"\"twisted story...\"\" Story!!Story?? It's crap like this that make old Bobby McKee and his wandering band of Structuralists sound like geniuses...Sundance??Berlin??Toronto?? I have a home video of my cat farting that evokes more interest than Arquette's negatively-dimensional portrayal of anguished loss...and, talk about deux ex machina for Mr. Stanley T.; thank god, just in the nick o time he thought to have Dave call the cops! and thank shiva that the cops had just caught the true killer...what!!! up until the credits i was still waiting for it to be some kind of grift against Arquette and his \"\"hidden millions\"\"...no, Mrs. Spielberg, you don't escape unscathed: what the hell was that kitchen scene with the \"\"athlete's foot in my crotch\"\" gag??? are you worse in this or \"\"just cause\"\"?? i dunno...hey film lovers: why don't you make it a blockbuster night and rent this along with \"\"jersey girl\"\" and \"\"white chicks\"\" and then commit sepukka (or is it seppuka)...and take E. Dunsky with you....\"\r\n1\t\"Is this the future that awaits us? An overpopulated, unforgiving wasteland with a hellish, unwanted existence? This film brings to mind a problem that still plagues us, doubly so since the film was released in back in 1973. Let's hope that the world isn't going to end up like this...<br /><br />Soylent Green is a wild movie that I enjoyed very much. It had likable characters, a semi-apocalyptic setting, a compelling and thought-provoking storyline, and the macho-est macho man out there: Charleton Heston. Richard Fleischer gave the movie a very unpleasant, dirty feel. You're almost choked by the stench from the city and its filthy inhabitants.<br /><br />The characters are wonderful. Charleton Heston, who has become one of my favorite actors, IS Thorn. The man created this role of badass, yet likable tough-guy. I could definitely put myself in Thorn's shoes. He sees that something isn't right, but everyone around him either doesn't listen (more like paid not to listen) or wants him dead. Edward G. Robinson (in his last film, R.I.P.) plays the lovable old Sol, who has had enough of this nasty place. Everyone else is great, especially Leigh Taylor-Young as Shirl, a piece of \"\"furniture\"\" that comes with the apartment in which she resides.<br /><br />The special effects are fantastic, even for 1973. The Soylent Green factory, the futuristic apartments, and especially the \"\"scoops\"\" (bulldozers that get rid of people) were excellent. The polluted air outside looks disgusting and very nasty. The empty city streets filled with the vile and putrid people are very unsettling.<br /><br />One final note is the ending, which even now still shocked me. It is gruesome, but if you think about it, it's a pretty good idea.<br /><br />The Bottom Line: <br /><br />An excellent 70's Science Fiction flick that makes you think and leaves you feeling very uneasy.\"\r\n1\t\"2 WORDS: Academy Award. Nuff said. This film had everything in it. Comedy to make me laugh, Drama to make me cry and one of the greatest dance scenes to rival Breakin 2: Electric Boogaloo. The acting was tip top of any independant film. Jeremy Earl was in top form long since seen since his stint on the Joan Cusack Show. His lines were executed with dynamite precision and snappy wit last seen in a very young Jimmy Walker. I thought I saw the next emergance of a young Denzel Washington when the line \"\"My bus!! It's.... Gone\"\" That was the true turning point of the movie. My Grandmother loved it sooo much that i bought her the DVD and recommended it to her friends. It will bring tears to your eyes and warmth to your heart as you see the white Tony Donato and African American Nathan Davis bond. Through thick( being held up at knife point) and thin( Nathan giving Tony tips on women) the new dynamic duo has arrived and are out to conquer Hollywood.\"\r\n0\tI went into this movie expecting it to be really god-awful. And it was. I really felt sorry for the star-studded cast- Kathy Bates was a wonderful actress... before she made this movie- Vince Vaughn and Paul Giamatti were disappointing as usual but Miranda Richardson couldn't put in one of the fabulous performances I know and love her for. Fred's dad, played by Trevor Peacock (of Vicar of Dibley fame, amongst others), had about one line.<br /><br />The plot was predictable and all over the place, and the humour was... lacking. (However, there was one part of the movie where Santa enters the house of a Jewish family... that made me laugh just because their expressions were classic) Don't see this movie unless your only other alternative is having a head-on collision with a train (actually- maybe the train would be better...)\r\n0\t\"Fot the most part, this movie feels like a \"\"made-for-TV\"\" effort. The direction is ham-fisted, the acting (with the exception of Fred Gwynne) is overwrought and soapy. Denise Crosby, particularly, delivers her lines like she's cold reading them off a cue card. Only one thing makes this film worth watching, and that is once Gage comes back from the \"\"Semetary.\"\" There is something disturbing about watching a small child murder someone, and this movie might be more than some can handle just for that reason. It is absolutely bone-chilling. This film only does one thing right, but it knocks that one thing right out of the park. Worth seeing just for the last 10 minutes or so.\"\r\n0\t\"Superficically, \"\"Brigadoon\"\" is a very promising entertainment package. Gene Kelly and Vincente Minnelli, the team behind \"\"An American in Paris\"\", are reunited with a lot of the great craftsmen and women behind their previous collaborations. Gene's leading lady is Cyd Charisse, one of the best dancers of 40s/50s cinema, and unlike the generally superior \"\"It's Always Fair Weather\"\" this film gave them the chance for not only one but two dances. Lerner and Loewe were the rising team behind such future hits as \"\"My Fair Lady\"\" and Minnelli's musical masterpiece \"\"Gigi\"\"; Lerner and Minnelli had already demonstrated their sanguine collaborative juices on the excellent \"\"American in Paris.\"\"<br /><br />What happened along the way? Why is the movie itself such a stupid bore? Minnelli himself didn't want to do the movie, despite his previous warm artistic and personal relationship with Lerner. Maybe it was because the movie's innate conservatism was just a bit too much of two steps forward for MGM and one step backward for Vincente Minnelli. But once trapped in this assignment like the denizens of Brigadoon are trapped within its city limits, Minnelli strove to turn it into something that would be entertaining in a specifically distracting, if not liberating way. The ultimate result is truly horrific to behold.<br /><br />While aiming for the naive charm of previous Minnelli hits like \"\"Cabin in the Sky\"\" and \"\"Meet Me in St. Louis\"\", the plaid-tights wearing inhabitants of Brigadoon can conjure up none of the illusive nostalgia of those never-have-been locales. Its whimsy doesn't even match up to the glossy luster of \"\"Yolanda and the Thief\"\" or \"\"The Pirate\"\" because the highlands settings seem at the same time too specific for such an exotic fantasy and too generic for real human emotions. The only people in Brigadoon who I at least can relate to are the malcontented man who tries to escape and the unfortunate fellow-traveler played by Van Johnson who accidentally shoots him. The general proceedings in the township of Brigadoon itself are too arcane and provincial even to be attributed to a backwards form of Christianity: they seem positively pagan in their aspect. For example, in exchange for Brigadoon's immortality, the honorable and most generally \"\"good\"\" pastor of the town has sacrificed his own place in the supposedly blessed refuge.<br /><br />At one point we're assured that \"\"everybody's looking for their own Brigadoon.\"\" Suffice it to say the box office for this picture confirms my own suspicion that most of us aren't looking for this kind of quasi-queasy paradise. The premise itself is ridiculous and almost insultingly patronizing, but could work if the players were perfect. But Kelly himself is the most patronizing thing about the movie, and Charisse is horribly miscast as a virginal optimist in much the same way as Lucille Bremer was miscast in \"\"Yolanda and the Thief.\"\" Van Johnson does his best version of the classic Oscar Levant sidekick to Kelly (even lighting 3 cigarettes at one point like Levant in \"\"AIP\"\"), and he provides a lot of amusing moments. But it says something in itself if the best part of a big budget extravaganza with all the best talents of MGM is a tossed-off Van Johnson performance.\"\r\n0\tAlthough, I had no earthly idea on what to expect from this movie, this sure as hell wasn't what I would have had in mind, had anything actually come to mind. Once I heard of its existence, all I knew was that I had to own a movie called Please Don't Eat The Babies. unfortunately, I could only find a copy under its alternate title, Island Fury. Looking back, I guess I could call it a lose-lose situation. On one hand, I still don't get to be known as the guy who owns a movie called Please Don't Eat The Babies, and on the other hand, Island Fury would ultimately reveal itself to be an awful, pointless, boring, unwatchable piece of garbage. Yeah, definitely lose-lose.<br /><br />I'm not even sure what genre they're going for here. Just early 80's badness, with a flashback that might actually be longer than the non-flashback. First up, two teenage girls are being chased by two bad guys, once caught, the bad guys bring to our attention that one of the girls have a coin on a string, around her neck, and somehow, these bad guys know of a lot more of these coins hidden on an island somewhere. And this is where things start to get weird, somehow these guys know of a trip the girls took to some island, years earlier, when they were only 10. I guess this is supposed to mean that the girls should know exactly where this alleged treasure is. So, now, we're in the past, while the girls try to retrace their steps, so these bad guys don't kill them, although, I wouldn't have minded if they had. In the flashback, the 10 year old counterparts are on a boat trip with their sisters and the sisters boyfriends, eventually stopping by an island for some air, they get mixed up with some kid and his killer grandparents. Any potential suspense or reasons to keep on watching never shows up, but the flashback was undeniably better than the present, which, still, isn't saying much.<br /><br />For a while there I had forgotten about the original story, At one point, I Ithought maybe the director had too, and when the flashback ended, that would be the end, which would have worked for me considering this disappointment would have been a half-hour shorter. This pointless movie within a pointless movie does eventually end, and real stuff does happen, but it's stupid. I guess I didn't exactly expect a movie filled with infants being devoured, or anything like that, but I did expect some form of outlandish B-entertainment, mostly just a confusing, inept storyline, unsure of its genre. My advice would be to seek out something worthwhile like Attack Of The Beast Creatures. If anyone, I would only recommend this one to serious B-movie collectors who must have them all, anyone else interested probably has brain damage. What really gets me is that I still have no idea why they called it Please Don't Eat The Babies. 3/10\r\n1\t\"I MAY have seen an episode or 2 when the show originally aired but when I watched 1 episode on netflix I was also hooked. I watched the whole series in like 2 days. :) I really liked Gary Cole's character. First he's thoroughly reprehensible then you start liking the character (\"\"These things have a thousand uses\"\")! His folksy Andy Griffith meets Charles Manson meets Satan is great. Charming, charismatic, smarmy, and uh kind of dangerous and by \"\"kind of\"\" I mean \"\"really\"\". I wanna be like HIM when I grow up. Lucas Black is great too. The accents are great too. Anyway, I thought this was one of the best TV shows ever and you owe it to yourself to see it.\"\r\n0\tI'm a fan of the series and have read all 7 books. I wanted to see this just to see how it was done. All i can say, is that the only people who should watch this are ones who have already read the series and are curious about it. Its pretty bad, and will turn you off reading them. Not to be mean, but Lucy is so ugly it detracts from the movie. Was she the directors daughter? Seriously, I'm sure the beavers in the movie were jealous of her teeth. She had an overbite that would put any beaver to shame. The movie just loses so much in translation. CS books don't translate as easily as the Tolkein LOTR books, or even Harry Potter.<br /><br />One thing they did right! Aslan! very well done. Although the other human actors with painted faces ( beavers, wolf) look silly, Aslan was really well done since it was not just a human actor walking around. ( i guess its like that old horse custume? 2 people inside? ) Also, i would be curious what kids think of this movie. Maybe they would enjoy it? But as for adults, safe bet they wont, even if a CS fan.\r\n1\t\"-A very pretty red headed woman waiting for her plane meets a charming young man that she connects with. As the two get on their flight and sit next to each other the young man Jack becomes deadly as he threatens Lisa to either change the room that a politician and his wife will be staying in, or else have her father die. See now that's what you happens when you fly coach, stuff like that never happens in first class.<br /><br />-Other than having a conflict that takes place on a flight, the other thing that this movie shares with \"\"Flightplan\"\" is the sheer unbelievability *if that's a word* of the story. The point of the whole is to get the main character to change a politician's room so he can be assassinated which is a pretty plausible plan, but won't it have being easier for Jack to just find someone that was computer savvy and have them hack into the hotel's system? Teenagers today can damn near do anything with computers, so I'm pretty sure it would have been easier for him to simply get someone to change it using a computer instead of going through the trouble of spying on Lisa and getting her into the predicament that she lands on in the movie.<br /><br />-Plus one thing that struck me as odd was how no one on the plan heard a single thing they were talking about. This is a very small plane were talking about here and since their voices were raised occasionally it seems to me like the other passengers should have heard something. But I'm 100% sure that I'm reading way too much into it. The movie is meant to be as realistic as an episode of \"\"24\"\" so one can't be perplexed by such complexities. For all my complaints though, this is still a very fun movie that gets the job done. It's not exactly the type that requires to shut of your brain, but at the same time it doesn't require great intelligence to fully enjoy.<br /><br />-I'd love to sit here in my comfy chair and rave about the brilliant acting in the movie but really I can't. I love Rachel McAdams, I love Cillian Murphy, and I like Brian Cox, but they don't really stretch their acting muscles here. It's not really much of a problem since this isn't the movie that studios hope to win multiple awards and the acting isn't the least bit horrible, just not great. Wes Craven isn't exactly the first that comes to mind when you think of a movie like this, but he does a very nice job considering the time they had to film the movie and the lack of depth to the script. It was definitely a huge improvement over the disappointing \"\"Cursed\"\" and as much as I liked him doing something different with this movie, I still would love for him to go back to doing what he did in the past which is great horror movies that is talked about decades after it's release.<br /><br />-One nice thing about the movie which I really appreciated was just how short the movie was. It is great to sit and watch a nice three hour or so movie once in a while, but nowadays it's like every movie that comes out feels too long, where as this movie just felt like the right length. Not too long, and too short. They don't waste time by trying to develop the characters too much because they know this isn't the movie for that and by doing so they made a very nice short movie. Being a huge film music geek, I have to say that the best part of the movie is the ultra cool score by Marco Beltrami. It's really nice to see Beltrami go from writing the predictable stuff to the great music he's doing now. I really the cool techno/orchestral stuff he does for the main titles. Too bad that I can't find the soundtrack anywhere, would have really loved to listen to the titles anytime I wanted instead of having to pop in the DVD when I want to hear it.<br /><br />-Overall It's nice for what it is and whiles it's far from great cinema, should still provide for some small entertaining hour and a half\"\r\n0\t\"I have a severe problem with this show, several actually. A simple list will suffice for now, I'll go into more depth later on: superficial characters, a laugh-track and boring humour.<br /><br />If you don't wish to look at the rest of this review and are only reading it so you can feel superior (as if you see anything in this show I didn't) to a frequently irked teen from Canada I'll summarize: Friends sucks, not only because it is unfunny but because it destroyed the TV audiences for new, good shows (Arrested Development, Dexter etc.). Friends is as much to blame for reality TV, \"\"Two And A Half Men\"\" and \"\"The King Of Queens\"\" as the television executives. Now then, on with the review.<br /><br />These characters have no soul, they are exactly the same in every way (outside of gender and hair colour). They react the same way in boring situations and are completely secure in their own bodies. Where is the conflict and the humour that comes with it? Why isn't Rachel storming out on Monica after Monica starts hanging out with Rachel's enemy? Why doesn't Joey contemplate suicide because nobody seems to take him seriously? Oh right, cause he's the dumb one and he's comfortable with that. This is the curse of having perfect characters: lasting conflict and (god forbid) personality becomes an impossibility.<br /><br />The laugh-track is the one thing that should have died out right after it was born. Any show that has one is almost certainly the opposite of funny. How can I make such a broad generalization? When a show that claims to be \"\"comedy\"\" requires laughter from someone BESIDES THE AUDIENCE it must mean that the audience would not laugh without it. Laughtracks destroy humour by preventing quick comebacks. Humour becomes a construct rather than a free flowing entity (see The Office, Arrested Development).<br /><br />This leads to my next point: the humour is boring. There is no way to make a perfect character anything more than slightly humorous (without a laugh-track apparently) simply because our everyday humour comes from recognition of our flaws. So what if Monica dated a 17 year old? She immediately recognizes that what she is doing isn't right and breaks up with him. There has to be some sort of conflict rather than an immediate solution. Maybe her mother finds out or one of her friends tries to get rid of him and ends up seducing him. That would be great, it would be like a custody battle! So now I've provided evidence for my position. Many of my friends love this show because they haven't heard of Curb Your Enthusiasm or Arrested Development, many of my friends hate this show because they recently started watching Curb Your Enthusiasm or Arrested Development. <br /><br />I have watched very little of \"\"Friends\"\" in my life, but I have watched enough to spot huge flaws that make the show, in my opinion, completely unwatchable. If you've read this far, thank you, and I hope you at least start watching some of the shows I have mentioned.\"\r\n0\t\"I am normally a Spike Lee fan. It takes some time to really get into his \"\"mojo\"\", but once you see the clear message and the ability to tell the story that is close to his heart, Lee is a genius. Unlike The 25th Hour or Bamboozled (two of my favorite films of his), there was no clear story in this film. I was able to understand the struggle between Washington and the choice to play well or be influenced by others, but for some odd reason Lee was never able to get the true feeling out. Washington did a decent job with what was handed to him, but you could tell that this was not Lee's favorite film. Not only did Lee direct this film, but he also wrote it. You could tell. The camera work was horrid and the writing only contributed to the decay of the film. This film was coming full circle and it wasn't going to be pretty. Lee was not 100% behind this film as he was with Do the Right Thing. Of all the films I have seen Lee direct, this was the brightest and more modest of his films. It was almost as if he created a Hollywood movie instead of one that was all his own. I don't know if he saw the money from Do the Right Thing and ran with it, or what  but this film did not demonstrate his true talent.<br /><br />For anyone out there that has seen this film, and perhaps stopped watching anything directed by Spike Lee afterwards due to this film, I suggest you give him a second chance. Don't get me wrong, I see exactly where you are coming from with this film and why you would want to put this behind you, but Lee does grow up. His work becomes more of his own, and you can see the transformation from a desire to make money to just wanting to make good films. It took me awhile to watch The 25th Hour, but when I did, it was sheer brilliance. Perhaps it was the actors, perhaps the story, but Lee crafted an amazing film out of one man's journey into the unknown. I guess that is what I was hoping Mo' Better Blues would turn out to be. This really dark journey into the life of a man that really never grew up, but instead all I got was Denzel being Denzel. He really is one of the most versatile actors of this generation, and I do consider him the Sydney Poitier of cinema, but this was not the film to showcase his talent.<br /><br />Another issue that I had with this film was the use of Spike's sister playing one of the love interests. I don't know about you, and your family, but I do not think that I could have filmed a sex scene with my sister. I don't care who the actor is or how much money I am getting paid, I would never do it. It is just something that I never wish to see, but apparently that is different for Spike. He went ahead and showed the full nude image of his sister without any remorse. It was sad and it even made me blush. Also, I need somebody to answer me this. What was Flavor Flav doing introducing this film? So, I am sitting there on my couch, ready to start the film, when suddenly there is a voice from the past spelling out the studio that made this film, then he acknowledges himself. That did not build for a strong remaining of the story. Again, I felt that Lee was going for money on this film instead of actual talent. Perhaps that is how he could afford both Denzel and Wesley in the same movie without any explosions.<br /><br />There were two great scenes in this film that made it worth watching through to the end. Don't get me wrong, this was a very bad movie, but there is always a diamond in every alleyway. The scene when Bleek accidentally forgets which woman he is with was mesmerizing. He continually went back and forth, weaving truth to confusion in a way that proved that Lee was actually behind the camera. It was a visionary scene that was probably lost in the shuffle due to the remaining poor scenes. The other scene that was worth watching was the way that Lee introduced and ended the film. By keeping the same pacing and direction, he was able to bring this tragic character around full circle and give him the chance to change his life. Other than these two moments, the rest of the film was pure rubbish, not worth viewing unless you are about to go blind.<br /><br />Grade: ** out of *****\"\r\n0\t\"Demer Daves,is a wonderful director when it comes to westerns and \"\"broken arrow\"\" remains in everybody's mind.As far as melodrama is concerned,he should leave that to knowing people like Vincente Minelli,George Cukor or the fabulous Douglas Sirk. The screenplay is so predictable that you will not be surprised once while you are watching such a tepid weepie.Natalie Wood 's character was inspired by Fannie Hurst's \"\"imitation of life\"\" (see Stahl and Sirk),but who could believe she's a black man's daughter anyway?Susan Kohner was more credible in \"\"imitation of life\"\")and Sinatra and Curtis are given so stereotyped parts that they cannot do anything with them:the poor officer,and the wealthy good-looking -and mean- sergeant.Guess whom will Natalie fall in love with?France is shown as a land of tolerance ,where interracial unions are warmly welcome.At the time(circa 1944) it was dubious,it still is for narrow-minded people you can find here there and everywhere.\"\r\n1\tThe first collaboration between Schoedsack & Cooper is a compelling documentary on the migration of the Bakhtiari tribe of Persia. Twice a year, more than 50,000 people and half a million animals cross rivers and mountains to get to pasture. You'll feel like a pampered weakling after watching these people herd their animals through ice cold water and walk barefoot through the snow to cross the mountains while trying to get their animals to walk along steep and narrow mountain paths.\r\n1\tThis movie is by far the cutest I have seen in a long time! Wonderful animation and adorable characters (even the bad guys were cute!) made this one a total winner in my book, and also in the books of those I saw it with. I still want to see it again, but haven't had time. Better than Toy Story, which was good too, but not THIS good .\r\n1\tHow can the viewer rating for this movie be just 5.4?! Just the lovely young Alisan Porter should automatically start you at 6 when you decide your rating. James Belushi is good in this too, his first good serious role, I hadn't liked him in anything but About Last Night until this. He was pretty good in Gang Related with Tupac also. Kelly Lynch, you gotta love her. Well, I do. I'm only wondering what happened to Miss Porter?<br /><br />i gave Curly Sue a 7\r\n1\t\"This film is so old I never realized how young looking Ray Milland looked in 1936, I remember him playing in a great film, \"\"Lost Weekend\"\". Ray plays the role of Michael Stuart, who is a very rich banker. There are three girls in this picture who are not very happy about their father and mother separating and they find out their father is going to get married to a young blonde who is a gold digger only looking for a rich sugar daddy. They hire a man to pose as a very rich Count, his name is Count Ariszted, (Misha Auer) who is drunk all the time and is penniless and gives plenty of comic laughs throughout the picture. Deanna Durbin, (Penny Craig) surprised everyone when she was booked in a police station and told the chief of police that she was an opera star and then Penny starts singing with the most fantastic soprano voice I have every heard, the entire police department and convicts started applauding, which was a very entertaining and enjoyable scene from this film. This is Deanna Durbin's first film debut and she became an instant success over night and went on to become a great movie star with Universal Studios after leaving MGM.\"\r\n1\t\"\"\"Citizen X\"\" tells the story of \"\"The Butcher of Rostov\"\", nickname for a heinous and perverse Russian serial killer who claimed 52 lives from 1978-92. The film focuses on the novice detective (Rea) who doggedly pursued the killer against all odds in the face of an uncooperative bureaucracy in self-serving and convenient denial. An HBO product for t.v., the film offers a solid cast, good performances, spares the audience much of the grisly details, but plays out like a docudrama sans the stylistics of similar Hollywood fare. An even and straight-forward dramatization of a serious and comparatively little known story more interesting than \"\"Jack the Ripper\"\". (B)\"\r\n0\tThis is complete and absolute garbage, a fine example of what a BAD movie is like, this can't be appealing to anyone, not even b-movie fans. Do not, I repeat, DO NOT waste precious time of your life on this piece of trash. Bad acting, bad directing, horrible (but I mean really horrible) script, and complete lack of an idea as to what entertainment (of any form) is. I bought the DVD for 3 dollars, I swear I could almost pay someone to take it. Burning it would not be enough for what this movie did to me. I like b-movies, the killer toys, the weird lagoon monsters, but this is nowhere near. You know those movies that are so bad they are funny? Not even. Just plain old pathetic.\r\n0\t\"I watched this film in youth group, where my otherwise intuitive youth leader and his wife squeed over it. Then some adult couple at a church-related Christmas party misled themselves into giving a copy of this movie to every single family in attendance, and now my household is stuck with the film (though it thankfully still remains in its shrinkwrap). I cried bitter tears over these sad events, and here's why: First off: this film has good intentions, especially if you're a Christian like me. This movie is trying to show that you should put your faith in God and that it'll make your life better. Not so bad, right? Eh. It turns out a be a problem--a big one. This movie was made by a church, so of course every single issue has to be dealt with as tastefully for Christians as possible. It is all black-and-white, no gray areas. God's grace and will in this movie is a predictable thing, and it comes instantly to all those who do His bidding.<br /><br />This is not the God I know. This is not the Christian life I am familiar with. The God I believe in is a powerful and trustworthy God, but He is not one that grants my every wish. I follow Him as best I can, though the going is often hard; yet the football team in this movie finds their humility and self-control a lot easier than anyone should EVER find it. I cannot relate to cardboard cutouts who flip from bad-side to good-side in the course of a few structured movie scenes. And when I DO follow His commandments as laid out in the Bible, I certainly don't find myself showered in blessing as these characters do. The largest of my immediate rewards is knowing that I have done the right thing; everything else comes with long, messy, arduous work.<br /><br />But take the example this movie sets: Grant Taylor coaches the football team at Shiloh Christian school, which has had 6 losing seasons in a row. He may lose his job over it, and he and his wife are low on money as it is. They want a baby, but the doctor tells him he is sterile. Oh, and his car doesn't work. And the boys on his football team are disrespectful to their parents, whiny after their million losses, and bad at kicking field goals. This is sure one rundown community here.<br /><br />But wait, Grant Taylor decides he's going to trust in God for everything! And he passes on his faith to his team. So far, so good. Not for long. As they begin to obey, blessing literally POUR in on them. Suddenly the students stop disrespecting their parents; the school has a big \"\"revival\"\"; the team starts winning EVERY game; they even win the grand championship against the hardest team in the league! Coach Taylor's job is reassured; the school gets him a shiny new truck as a present (which, by the way, is the epitome of shallow, fair-weather employers); he gets a raise; his wife (get this) even gets pregnant from his sterile sperm! And that skinny kid manages to kick his first darn field goal right when it really matters!! Wowzers, woot, yay, praise the Lord, etcetera, etcetera!!! ...<br /><br />Yipe. Just YIPE. Nobody in my church has ever experienced Christ in a such a cut-and-dry manner. Yes, there have been miracles aplenty in my family, as well as gifts and creature comforts, and I attribute them to God's grace and lovingkindness. But God isn't some faucet tap that you turn on and off by being good or bad! He is by and large a mystery; His gifts come unexpectedly, often when you think you don't need them but you really do. It's a long, hard slog to the road of fulfillment, and things NEVER turn out the way you thought they would.<br /><br />This movie has good intentions. But because of its supreme shallowness and total escapism, it tanks tremendously to a 1/10. The bad acting and sports movie clichés seem to be mere pimples next to the leprous falsehoods that this movie inadvertently pushes.<br /><br />To all you future churches planning to make a movie: don't be afraid to show REAL life, even you have to add some inconvenient truths into the mix. However much the baser populace is wowed by this cotton candy treat, nobody has learned anything substantial from it. Give us the meat, the bones, the REAL stuff! True life applies to everyone, not just Christians, and that's one aspect \"\"Facing the Giants\"\" didn't manage to grasp.\"\r\n0\ti rate this movie with 3 skulls, only coz the girls knew how to scream, this could've been a better movie, if actors were better, the twins were OK, i believed they were evil, but the eldest and youngest brother, they sucked really bad, it seemed like they were reading the scripts instead of acting them.... spoiler: if they're vampire's why do they freeze the blood? vampires can't drink frozen blood, the sister in the movie says let's drink her while she is alive....but then when they're moving to another house, they take on a cooler they're frozen blood. end of spoiler<br /><br />it was a huge waste of time, and that made me mad coz i read all the reviews of how this movie was great, how many awards this movie won, and this movie was f****ing s**t!!!!\r\n1\tThis was my first introduction to the world of Bollywood and I'm now hooked! Okay so it requires adoption of a different mindset to watching US films but once you allow yourself the pleasure of enjoying it for what it is you won't be disappointed. The songs are superb, melodic and very catchy. The actors are visually compelling especially Karisma Kapoor who is surely one of the most beautiful actresses anywhere in the film world. Locations, colour are spellbinding. If you want something different and are looking to be uplifted, cheered up and stimulated I recommend you catch this movie.\r\n1\tI loved this mini series. Tara Fitzgerald did an incredible job portraying Helen Graham, a beautiful young woman hiding, along with her young son, from a mysterious past. As an anglophile who loves romances... this movie was just my cup of tea and I would recommend it to anyone looking to escape for a few hours into the England of the 1800's. I also must mention that Toby Stephens who portrays the very magnetic Gilbert Markham is reason enough to watch this wonderful production.\r\n0\t\"First of all, I'd like to say that I love the \"\"Ladies' Man\"\" sketch on SNL. I always laugh out loud at Tim Meadows' portrayal of Leon Phelps. However, there is a difference between an 8-minute sketch and a feature-length movie. Watching Leon doing his show and making obscene comments to his listeners and coming up with all sorts of segments for his show, like \"\"The Ladies Man Presents...\"\" which is reminiscent of \"\"Alfred Hitchcock Presents...\"\" is absolutely hilarious. There's a great episode where Cameron Diaz role-plays Monica Lewinski, and Leon plays Bill and they call it \"\"The Oral Office.\"\" See, that's funny!!! <br /><br />In the movie, we don't see Leon on the show too often. In fact, he gets kicked out of almost every radio station in the country. And the plot revolves around his quest for true love, involving a mystery letter that got dropped off at his houseboat, signed by \"\"Sweet Thing.\"\" Karyn Parsons, who is famous for playing Hillary on \"\"Fresh Prince of Bel Air,\"\" works with him on the show and has a secret crush on Leon. The movie just piles on one boring subplot after another. And the gags are boring as well. The first time we see Leon mention the word \"\"wang\"\" it's pretty funny. When he uses it over and over again, supposedly trying to get a laugh, the joke has run dry. Most of the jokes he uses in the film are jokes we heard before, and done better, on the SNL sketch and played out tediously for a whole hour and twenty-five minutes. They even try to insert a musical number by Will Ferrell and his gang of Ladies' Man haters, who all want to destroy him because their wives had an affair with him, to bring some life into this witless comedy. Ferrell has some funny moments, and tries to make the best out of an otherwise unfunny role. Ferrell just has that unique comic talent, and he's funny at almost anything he does. Even Julianne Moore gets a cameo. Watching her, you can't but wonder \"\"What the hell is an Oscar-winning actress doing in this movie??!!!!\"\" Her name wasn't mentioned in the opening credits--probably by her consent. And of course a movie of this theme has to include the Master of Love himself, Billy Dee Williams. Billy Dee is charismatic as always, but even he can't breathe enough life into this film. I also have to add that the soundtrack is full of soft R & B hits, which impairs the film even more, giving it a horribly downbeat tone--as if the script isn't boring enough. I mean, this is \"\"supposed\"\" to be a comedy. The soundtrack would've been appropriate for something like \"\"Love Jones.\"\" <br /><br />\"\"The Ladies Man\"\" only has sporadic laughs. There are exceptions in which SNL can produce a great movie out of a short sketch. Watch both of the \"\"Wayne's World\"\" movies, and you'll see how it's done. But this movie, just like adapting Mary Catherine Gallagher's character to screen in \"\"Superstar,\"\" shows the flip side. Some sketches are meant to be remembered on SNL, and not on the silver screen.<br /><br />My score: 3 (out of 10)\"\r\n1\t\"If you're going to put on a play within the prison walls why not go for the top playwright William Shakespeare? And if you are going to choose your cast from a whole lot of criminals serving long sentences for the most heinous crimes, you can be sure there will be plenty of time for rehearsals. In a Kentucky Correctional Prison a courageous project such as this was undertaken with amazing results. This film shows how it was all done.the casting.the rehearsals.the set and costumesand the final presentation of Shakespeare's play \"\"The Tempest.\"\" It had not occurred to me before but there is an analogy between the setting of the play and the correctional prison. In the play the ship-wrecked characters are confined to an island with no contact with the outside world. Prison life too is much like that.<br /><br />With a simple painted back drop of a surrounding seascape, the characters in a most pleasing assortment of costumes bellow out their lines to an approving audience, may be not quite as Shakespeare intended but with good heart and true sincerity for sure.<br /><br />More interesting than the play itself were the little cameos of each man behind his character. One inmate saw the play as a lesson in forgiveness another as a redemption of his sins. It was quite moving to see the men wipe away a tear as they spoke of murder, shooting and strangulation. One had the feeling that they would all like to wind back the clock and reconsider their brutal actions. However (as someone said) the past was past, and the present was the beginning of a new future. At least the play gave temporary relief from the depressing thoughts of past events.<br /><br />The prison authorities should be applauded for allowing the play to take place. Such an event would put Kentucky on the map and hopefully other prisons might follow their good example. It seems to me that everyone stands to benefitnot only the Kentucky prison but the prisoners themselves who need to find new confidence and self esteem and be prepared for the day when they go out on parole.\"\r\n0\tThis show had pretty good stories, but bad dialog. The main character was especially annoying. It's quite obvious why this show was canceled, although, like most UPN shows, I never knew it even existed until it was in syndicated re-runs.<br /><br />Most of it's plots seemed to be copied from other shows and movies, leading me to think the producers didn't have an original idea in their heads. <br /><br />I haven't commented enough. You've got to have at least ten lines of text. The special effect were not bad for a 2001 show.<br /><br />The gnome was a nice character.\r\n0\tThis is one very dire production. The general consensus has always been that while Princess Margaret may have been spoilt and pampered and may have revelled in the excess of luxury at her disposal, she was a very beautiful young woman. Here was the production's weakest point, the actress failed to get that across. It also appeared that the production budget couldn't stretch to a hairdresser - from the outset, the hair on the Princess Margaret character had a permanent birds nest in disarray look and looked as if she had been dragged through a bush. The actor playing the Duke of Edinburgh appeared to have prepared for his role by watching Rory Bremner imitate Prince Charles and was farcical.<br /><br />The production was a flaw ridden, cliché ridden, embarrassing load of rubbish. I think all Daily Mail readers deserve a free DVD copy for Christmas!\r\n1\tOh, what fun there is here! <br /><br />Amy Heckerling has a flair for directing comedy (Fast Times at Ridgemont High, Look Who's Talking) but here it looks like she told the actors to go out and have fun. Micheal Keaton breezes through the role of Johnny, easily his best screen performance. Joe Piscopo is great as the appropriately named Danny Vermin, what a shame directors didn't pick up on this. And I have even mentioned Richard Dimitri playing Moronie and the character's unique vocabulary. I don't think it's an accident that the bulk of the character's name is spelled MORON.<br /><br />Good lines are sprinkled throughout the movie, with Peter Boyle, Griffit Dunne.Maurren Stapleton, Merilu Henner given good lines. Even actors with minor roles like Dick Butkus and Alan Hale get in a good lines.<br /><br />recommend it to a friend.\r\n0\t**MAY CONTAIN SPOILERS**<br /><br />The titular topless heroine rescues another beautiful babe and her father (an eccentric professor whose stock pith helmet is broken in one shot and whole in the next) from a moth-eaten, dime-store mummy and nasty Nazis out to--what else?--build a Fourth Reich. Misty's costume, like those of some other wimmen, gets skimpier as the movie rolls on. The last portion of the movie is devoted to protracted lesbian action; this footage actually gets real boring, real fast, which says more about the critters behind the camera than the curvaceous creatures in front of it. MISTY gets its nominal plot out of the way first and fast, then gives undivided attention to nudity and soft-core sex. This makes MUMMY RAIDER a throwback to movies made in the 1960s by guys like Stan Borden, David F. Friedman and Harry Novak. Just think: if this wonder-work had been cranked out four decades ago, it would have played for years on 42nd Street along with WHAM BAM THANK YOU SPACEMAN and KISS ME QUICK. As it is, MISTY MUNDAE MUMMY RAIDER went straight to home video. Grab yours, quick, before it goes out of print.\r\n1\t\"I enjoyed Albert Pyun's \"\"Nemesis\"\" for its cheesy action and semi-complicated script. A lot of people complain about the \"\"confusing\"\" plot to the first film, which is probably why \"\"Nemesis 2: Nebula\"\" has a dumb as rocks plot with the same super-action to carry it through.<br /><br />This one gives the name of the first movie's hero, Alex, to a bulked up super-female sent to the past to save the future. She is raised by a tribe in Africa. A good portion of the film only has dialogue in an African tongue without subtitles, which I liked because it made it seem somewhat authentic (how often do movies in this genre really try to do that?). It doesn't take long for the evil cyborgs to time travel back in time to find her and try to kill her.<br /><br />Don't get me wrong, this is a piece of crap (not that the first one was anything great). There are subplots involving Africa's political unrest, treasure hunting, and tribal combat. The picture is very short on brains, so none of these things gets a very good treatment. The picture is basically a drawn out fight with some chases that boils down to muscle-babe vs. cyborg. It has its entertainment value, just don't expect quality, or anything of the first movie.\"\r\n0\tI just saw this movie (mainly because Brady Corbet is in it), and I must say that I was not pleased. <br /><br />Of course, the computer graphics were amazing, but the story line needed a little touch-up. Also, I think this movie would have done much better with more curses and blood, as well if it were rated PG-13. <br /><br />That would definitely attract more people to see it-->teens. What would also attract more teens (particularly teen girls), would be a large close up of Brady Corbet on the Thunderbirds poster! <br /><br />Even though the movie had it's down points, I still saw it and thought it was okay!\r\n1\t\"In the opening scenes of this movie a man shot arrows through his hotel room into another man's bathroom and blew out all the lights. This must have been very hep for 1936, but rather way way out and had nothing to do with the film, Robin Hood did not make an appearance as far as I could see. However, Bette Davis(Daisey Appleby),\"\"The Whales of August\"\",'87 was very young and attractive and performed one of her best roles in a long career in Hollywood. Daisey never stopped teasing or being very sexy with her nightgowns and so called swim suit on her yacht with George Brent(Johnny Jones),\"\"The Spiral Staircase\"\",'46. Daisey even proposed marriage to Johnny in a Ferris Wheel upside down and even got a black eye. Davis and Brent made a great couple, one suppose to be very rich and the other a very poor reporter. Off stage, Davis and Brent were having a real torrid love affair, which is good reason why there was sparks when these two appeared in this film. If you liked Bette Davis and George Brent, this is the film for you!\"\r\n0\tIstanbul is another one of those expatriate films that Errol Flynn was making in the last decade of his life trying to support his family and stay out of trouble with the IRS. It's a remake of the Fred MacMurray- Ava Gardner film Singapore from a decade ago.<br /><br />Unlike that studio product, Istanbul has the advantage of that great location cinematography right at the sight of the Golden Horn. But Errol Flynn, who was aging exponentially before the camera in every film, was way too old to be playing these action/adventure types any longer. His scenes with Cornell Borchers really do lack conviction.<br /><br />As for Cornell, she plays Errol's former sweetheart who through the trauma of being saved from a fire now has amnesia. She both doesn't remember Errol and is now married to Torin Thatcher. <br /><br />But Errol's got some nasty people led by Martin Benson and Werner Klemperer who are after some diamonds which have come into his possession. Got to deal with them too.<br /><br />Best reason to see Istanbul is to hear Nat King Cole sing and play the piano. Most people today don't realize that Cole was an accomplished jazz pianist, they only think of him as a singer. Actually he was a pianist first, the singing was an afterthought.<br /><br />Istanbul is a routine action/adventure film for those who are fans of that type of movie.\r\n1\t\"This movie makes a statement about Joseph Smith, what he stood for, and what the LDS church believes. With all the current media coverage of a certain fugitive people have confused the LDS church with the FLDS church and criminal fugitive Warren Jeffs. Jeffs is Not associated with the LDS church yet media groups internationally have asked for comments about Jeffs from The LDS church. Jeffs is not mentioned in the movie at all but I think that it is ironic that this movie with all it's points about Joseph also point away from the fews of the FLDS church and their leader at this time in the media world. This is a movie about Joseph Smith and a great one at that. Some of the most obvious differences between Jeffs and Joseph is portrayed in Joseph's humanity, acceptance and love. Jeffs views and opinions differ greatly from Joseph Smith and the LDS Church and it is seen in this movie. Jeffs thinks of the \"\"Negro\"\" as devils. Joseph Smith knew they were children of god and gave up his wife's favorite horse to a African American (former slave) to buy his son's freedom. Joseph is shown doing housework for his wife Emma and is criticized by a member until Joseph tells him that a man may lose his wife in the next life if she chooses not to stay with her husband and that doing chores is a way to help and cherish your wife. Jeffs brought one of his polygamist wives to her knees in front of a class full of students by grabbing her braid and twisting it painfully till she came to her knees. Lastly Joseph participated with law enforcement and sought aid from the government at all times. Jeffs thumbs his nose at government and flees at all times.<br /><br />I loved this movie and if you don't know much about Joseph Smith and what the LDS church believes, then this is the movie to see. And if you had confused the LDS Church with the FLDS church then you really need to get your act together. We are not much different from anyone who believes in Jesus Christ, the Sanctity of marriage and the family, as well a patriotic to our homeland and country. We are all different as well just like you can find different protestants, Presbyterians, methodist, baptist and Catholics. What's important is our message and what we stand for. This movie trys to portray that but there is so much of Joseph's life that can't be covered in a mere 2 hour movie. This was a really great show.\"\r\n0\t\"For years Madonna has tried to prove not only herself, but the public eye, that she can act. Unfortunately, trying too hard while failing to shed her own persona doesn't mix well.<br /><br />She seems to fare better when she's NOT the star of any movie: if you watch her in supporting performances in DESPERATELY SEEKING SUSAN (1985) or A LEAGUE OF THEIR OWN (1992), she actually comes off looking good. Since the story revolves on other actors, the weight of the expectation is taken off her shoulders by default.<br /><br />The trouble starts when she is asked to be the star of a movie, regardless the genre. Being the focus of a plot that needs to be told in a visual way, whether it be good, mediocre or plain awful, she has to emote in ways that are akin to an actual movie performance as opposed to a video performance. This is the crucial difference between Madonna and, let's say, Bette Davis, or Meryl Streep. The latter two, even if the movie were to fail (because the visual storytelling lacked some effectiveness in having us relate to it, or because the script fell short, or because the actress per se was just not at her moment), there would be an extra something in their performances that would elevate the movie from being a complete bomb. Both Davis and Streep have had their share: Bette, having a longer career than Streep, in such fare as BUNNY O'HARE (1971) and WICKED STEPMOTHER (1989); Streep in SHE-DEVIL (1989). But at least there's been that naturalism in the way both attacked their roles that made us forget the banality of the movie and watch the performance.<br /><br />Madonna, on the other hand, not being an especially gifted actress capable of really letting us in on her ability to convey a persona other than herself, fares much worse, and even in the hands of someone as Woody Allen in SHADOWS AND FOG (1992), an inferior classic, she in her pat screen time seems stilted and a little stiff, maybe even nervous, as if she were aware of the cameras and crew and just couldn't let go.<br /><br />So here she tries yet once again to prove she can act in what is essentially a two-character movie. Guy Ritchie, more known for action movies filled in masculine energy, seems as adrift telling a story closer to someone of the likes of Michaelangelo Antonioni or Ingmar Bergman, who could tell a tale of two people with incredible ease. And at 89 minutes, the events which take place happen in such an unconvincing way that when the final half hour comes along and the story takes a dramatic turn, it doesn't feel sincere. From being an absolute witch with no redeeming values to suddenly being in love, this has to be the most unconvincing 180 degree turn since Fay Dunaway's Laura suddenly discovered her passion for Tommy Lee Jones in THE EYES OF LAURA MARS (1978). Equally unconvincing is Adriano Giannini's nasty turn around the middle of the movie -- it lacks any humor and feels genuinely psychopathic -- and when he gives in to Madonna's love, it's too quick to be believed. Filming this in slow music and a visual montage of lovemaking and beautiful scenery doesn't enhance or add upon this \"\"transformation\"\" from what would have been a story of survival between to unlikeable characters to a love story where both discover each other.<br /><br />Trying to have an unsatisfying ending works against the movie as well -- it only makes it drag, bog it down, and when Madonna has to be filmed going from hope to devastation in a tight close-up, it feels she's trying too hard. Many an actress have done better in conveying so much doing so little. Hers is a performance more suited to acting styles of the late 20s, early 30s where posturing compensated as acting a part or an emotion.<br /><br />Could the movie have been better? Of course. There are a myriad of ways to have filmed it in a way that would leave the viewer feeling that these people could at least hope to see each other again -- it's been done before, in OVERBOARD (1987), for example. It could have had an existential undertone in which two very different people have to rely on each other but not necessarily change (to ensure a moral tone). Much dialog and unnecessary erotic scenes could have been spared for a more \"\"silent\"\" film look -- as in PERSONA (1966). It could have even been something of a thriller, providing that the Giannini character have a mean streak as Billy Zane had in DEAD CALM (1989). Even if it would have been done as a sex farce it would have worked better for Madonna as the over the top, uber-control freak getting her comeuppance. But with its mean streaked humor, without at least a glimpse of her character having a softer side that hides behind a mask of bitchdom, and without really defining Giannini's own character, this becomes another misfire trying to look like a battle of the sexes.\"\r\n1\tSeveral story lines are interwoven here around different women characters. The shoes they wear serve as an indication of their troubled lives. All are transformed at the end of the movie. Adela (Antonia San Juan) leads a brothel; Her daughter Anita (Monica Cervera) is retarded and has a restricted life. Leire (Najwa Nimri) is a shoe designer with problems and loses her boyfriend; Maricarmen (Vicky Peña) has lost her husband and now raises the children from his deceased former wife. Isabel (Ángela Molina) is a bored rich lady.<br /><br />Other characters are used to connect the five main women characters. In storytelling not everything is given away in the beginning: Some connections are established surprisingly late in the movie and that adds to the experience. The shoe-theme is driven to extremes: For example when Leire as a shoe-designer and working in a shoe store where she steals her shoes faints, she breaks one of her heels.<br /><br />In editing small connections are made between the scenes. A telephone rings, a cigarette is lit, a song, etc. are used to make the connection and fast cuts. Frequent change of storyline keeps it from being boring or reaching TV-levels. It is strongly music-driven to set tone and atmosphere. The cities of Madrid and Lisbon serve as the backdrop for the stories, and shots of those cities are used to extend the story beyond the characters. One of the more moving shots is when Anita, who makes the same walk every day, widens her walk and restricted life from the relative calm of her street to the busy main road: How the restriction of space is visually translated is well done. As with most Spanish movies a lot of storytelling is done visually, using the soap-like stories as the simple backdrop. There is a poetic ending that is somewhat romantic and sentimental but is still beautiful.<br /><br />As Ramón Salazar is too much in love with his own material it is overlong. Some scenes are kitsch and on the soap level, including the acting (Adela's love life, Isabel's doctor). The shoe-theme is exaggerated and is a weak metaphor.<br /><br />This is often compared to Magnolia because the structure is the same. But they are different. Magnolia is more technically competent, but somewhat mechanical. This has more the ability to translate emotion and atmosphere visually. After seeing this, you are inclined to immediately move to the new movie-city: Madrid.\r\n0\t\"I have no idea as to which audience director George Schlatter hoped to sell this comedy-of-ills. With Redd Foxx in the central role and enough pimpy outfits and polyester to carpet the entire 1970s, \"\"Norman\"\" plays like a blaxploitation picture combined with any number of silly sitcom episodes involving comic misunderstandings, not to mention an elongated cameo by Waylon Flowers! Based on a play by Sam Bobrick and Ron Clark, this tale of an estranged married couple (Foxx and Pearl Bailey) learning the hard way that their son is secretly gay--and living with a mincing, prancing white homosexual--has enough limp-wristed jokes to shame any early episode of \"\"Three's Company\"\". Bailey keeps her dignity, and Foxx's sheer confusion is good for a couple of chuckles, but the rest of the performers are humiliated. * from ****\"\r\n0\tYou loose 100 IQ points just for tuning in. This show has to be awful, I refuse to tune in from just what I've seen in commercials. Where did they dig this guy up at anyway? Also, what do they intend to do next season? The secret is out. Everyone already knows the set up? Are they going to look for people who has been living under a rock to star in next season? Where are they going to dig up more stupid women? No wonder America is a big joke to outsider's,look what you are watching!!\r\n0\tI think the show had a pretty good concept to work with. But the execution was poor. The script is poor and acting is bad. There were many issues that could have been portrayed in a better way, like the protest against gay marriage or finding the graveyard. The show can't be properly termed as comedy show as it lacks humor miserably. I should say this show was barely successful in putting the life of Muslim community to some extent.<br /><br />Till now second season is worse than the first one. I had my hopes high regarding this show, but I was kind of disappointed. Still I appreciate CBC for putting up such concept in front of the viewers. Anyway I wish best of luck for the future.\r\n0\t\"I hope the viewer who regards 'Dream Machine' as one of Corey Haim's finest and the \"\"best movies of the century\"\" was kidding. Undetected sarcasm on my part? I sincerely hope so.<br /><br />'The Dream Machine' marks the first of a long line of mediocre capers that would plague the rest of Corey Haim's career (except 'Prayer of the Rollerboys' which was surprisingly decent). Here, Haim plays nonchalant college boy, Bernie, who supposes that a cool car will attract his dream girl's attention. Lucky for Bernie, a rich woman aiming to get back at her cheating husband, hastily decides to reward her faithful piano tuner--Bernie--with a gift: a slick Porsche Turbo. However, unbeknownst to the woman, and unfortunate for Bernie, is that her dead husband was murdered and his body was hidden in the trunk. Now, being that in this movie, bodies don't seem to decay or possess a rather foul funk, Bernie is unaware of this. In fact, the oblivious boy has no idea that something suspicious is afoot despite several odd circumstances that arise. In particular, a grizzly man follows him around, desperate to get hold of that body relatively undetected.<br /><br />This is a low-grade action fizzle as many of Haim's films like this are (see The Double O Kid). Despite being part action, part romantic comedy, this movie fails to offer the viewer much of anything of interest for at least the first forty-five minutes in which the filmmakers take more than enough time to show the immediate problem (i.e. Bernie being in possession of a car and a dead body, and a hit-man finding out that the Porsche is going to be hard to find). After which, and thanks to poor acting by Haim (I loved this kid, too, but it's not exactly sacrilegious to admit the times when he obviously couldn't act well) and the lack of real immediacy and emergency between Bernie and the villain that makes much of the events unconvincing and as a result, inappreciable. To add injury to insult, the soundtrack was unbelievably laughable and sounded more like self-evident songs you would hear in Team America (see the 'date' montage).<br /><br />Loyal Corey Haim fans, however, should not be disappointed to see their boy in abundance. However, others understanding that Haim's career probably peaked when he was 14 or 15 and never recovered, might expect mediocrity, as will viewers just looking for early 90s b-comedy fluff to pass the time.\"\r\n0\tMatt Cordell is back from the dead for a third go-round, although I'm not sure anyone cared at this point except for rabid MANICA COP fans. Cordell, who died in the last flick, is resurrected through voodoo, and is now hot on the trail of several miscreants involved in the shooting of a fellow officer Cordell is very fond of. I missed part of this early '90s low-budget quickie, but it was pleasing to see Cordell wracking up the body count in various, gruesome ways. Problem is, the overall film is pretty static, and Cordell simply ain't Jason or Freddy. The interest wanes pretty fast, even with that grand B-movie master Robert Forster as a doctor who ends up with his brains scrambled. Stick with the first film in the series, which is funny and scary and exciting, all at the same time.\r\n0\tYears have gone by since Don Wilson used his martial arts expertise to take down a robot who was programmed to destroy him, he's also married to the blonde reporter (Stacie Foster) who led the rebellion in the first film, now a new conspiracy is in the works, one that involves look-alike droids who frame our two heroes, and a corporation looking to rule the world (There is no plot to back any of this up) and Cyber Tracker 2 becomes a virtual replay of the first movie. I admit that I have bought DVDs from the bargain bin that were made by PM, PM was a company that specialized in cheap-jack action flicks (like this) which had tons of explosions, little story and overall nothing but mean edged action. Some of these titles have been (mildly) enjoyable (Last Man Standing and The Sweeper) however Cyber Tracker 2 is stuck with the casting of the charisma-less Don Wilson. When comparing the protagonists of similar PM efforts both Jeff Wincott and C. Thomas Howell are Oscar nominees when compared to Don Wilson. Another telling sign is that this was directed by Richard Pepin who has none of the flair Joseph Merhi seems to have in crafting action sequences that feel much more expensive than their budgets. Then again though both C. Thomas and Wincott are probably more expensive to obtain. Cyber Tracker 2 is a rip off with a capitol R, there are so many steals from better movies (Robocop, Terminator, Universal Soldier to even Halloween III!) that it's almost as if Richard Pepin is trying to infuse a sense of identity to the pedestrian material yet without the intelligent ideas or at least the mindless zip of great action, Cyber Tracker 2 falls flat. There is literally no good idea that isn't borrowed from a better movie and the supporting cast overact. The only exception comes from Tony Burton who is miles better than the material. Also Stacie Foster looks like she could be better with far better material. However Cyber Tracker 2 comes off mainly as noisy, bland and lackluster as its leading man, however with no real martial arts sequences to fall back on, all there is, is lots of cars tipping over and that alone is no substitute for the bankruptcy of ambition expressed here.<br /><br />*1/2 out of 4-(Poor)\r\n1\tEverything is idyllic in Suburbia when the little family moves in, as the father have got a new job in a computer company there. But no paradise would be complete without its snake. Strange things happens as the family joins the local country club without the husband, as it certainly holds secrets. The father is not a joiner, but pressure is on him to join, as everyone who is anything in the neighborhood and at work are members. Robert Urich's good guy part is a bit tepid, but Joanna Cassidy as good natured housewife turning nasty sizzles. Suspenseful and well-made chiller with a bitchy Susan Lucci as club chairperson. Look out for cult favorite Michael Berryman in a bit part as a valet. The movie captures the sense of paranoia and the special effects final is worth waiting for. I have seen this movie quite a few times.\r\n0\t\"and rent a GOOD horror movie. It's like the writer had never seen a horror movie before and didn't realize every single thing he wrote was clichéd and hackneyed and has been parodied to perfection in movies like \"\"Scream\"\" and \"\"Scary Movie\"\".<br /><br />In between the scary bits is the most BANAL and BORING dialog ever written. Stupid \"\"we're going to the prom\"\" junk. I wanted to claw my ears off. Honestly, \"\"The Hills\"\" has better dialog.<br /><br />There really was no need to make this movie. Leading lady is uninteresting and I kept thinking \"\"Her? Really? Guy is obsessed with her? Really?\"\" <br /><br />All the characters act in stupid ways, including the police. (Cover the place in teams of 2! Front and back! Not one sleepy cop sitting in his car with the window rolled down just waiting for his throat to be slashed.) <br /><br />The serial killer just swans about murdering everyone he wants without the least bit of problem. No resistance from victims (or doors). Nobody has any protection or the least idea of fighting back (or flipping the security lock on the hotel room door). The people are like mentally disabled sheep.<br /><br />By the by, if you're a gore fan, you'll be disappointed too. All the killing is kept offscreen and is -- ahem -- tastefully done. (So boo hoo for you!) <br /><br />None of the killings is the least bit interesting. Most of the time they've already happened by the time we find out.<br /><br />The only cliché missing was the cat that always pops out in this kind of movies. \"\"Oh kitty! You scared me! I thought you were the killer -- AIIEEEE!\"\" <br /><br />And then at the end when it's time for the killer to die -- well, let's just say it's the easiest and most obvious choice. Snore.<br /><br />The audience was jeering and talking back to the screen throughout. It was too dumb to believe and not really scary enough. Don't encourage this kind of lazy film-making.<br /><br />(Oh, and by the way -- no crowning of a prom king or queen. No tiara. No bucket of blood.) <br /><br />So save your money and rent \"\"Carrie\"\" or \"\"Friday the 13th\"\" or \"\"Halloween\"\" or \"\"Scream\"\" or \"\"Scary Movie\"\" (any of them) to get a good scare with some original twists.\"\r\n1\t\"I really loved this film, yes, I know it was fairly far fetched, there is no way that Shelby car could have managed to stay on the road as well as the 540i with all it's traction control and other gizmos but other than that the whole film was well put together. Cage was excellent as usual and the rest of the cast were also pretty good with the exception of the Brit Bad Guy, he was a little \"\"too\"\" much don't you think? Anyway, great film, great cars and great acting. I for one made sure my car was locked and alarmed in my remotely controlled garage that night. :)\"\r\n1\t\"Let's start this review out on a positive note -- I am very glad they didn't decide to wimp out with Tony being shot and do a retrospective season like some people were rumoring. Actually, creator and writer of this episode David Chase did quite the opposite. We don't actually know if Tony will live or die. He's in a coma and his chances of recovering are very slim to none. This episode seemed to move very slow, and the coma induced dream Tony was in involving mistaken identity and robed Asian monks slapping the sh*t out of him was absolutely, flat-out weird. After 45-minutes I got a little sick of everyone grieving, but that shouldn' t be a reason to slam this episode. It was a weird and unpredictable episode, but it was still well-written and intense. Edie Falco gave an astounding career-defining performance in this episode as the conflicted wife having to face with her husband's could-be demise. I also found it interesting AJ dropped out of school and swore a vendetta against Junior, which AJ most likely won't have the balls to pull off. Silvio is now acting-boss which opens numerous doors to problems in later episodes. There were a lot of great quips in this episode, also, and I think Vito 'Pole-Smoker' Spadafore may meet his demise if he keeps being a greedy S.O.B.<br /><br />This wasn't a great episode and disappointed only because even though Tony kills people, we as an audience adore him and feel he is our hero of the show. This was a necessary episode for the series, even though it was a little snore inducing towards the conclusion. Kudos to Edie Falco's performance, and David Chase and the writers for creating this wholly original and unpredictable plot twist. This is the only season of 'The Sopranos' where I haven't a f*cking clue where it is going to go. I can't wait for next week's episode. My Rating: 7.5/10 <br /><br />Best Line of the Episode: (Paulie to AJ): \"\"Let's go, Van Helsing!\"\"\"\r\n0\t\"I notice that most of the people who think this film speaks the truth were either not born before the moon landings (1969-1972), or not old enough to appreciate them. I think it is much easier to question an historic event if you did not live through it.<br /><br />I was a youngster at the time of Apollo, but I was old enough to understand what was going on. The entire world followed the moon landings. Our families gathered around the TV to watch the launch. Newspaper headlines screamed the latest goings-on each day, from launch to landing, from moonwalks to moon liftoff, all the way to splashdown, in a multitude of languages. In school, some classes were cancelled so we could watch the main events on TV. During Apollo 13 the world prayed and held its collective breath as the men limped home to an uncertain fate. You couldn't go anywhere without someone asking what the latest was. The world was truly one community. <br /><br />Now with a buffer of 30-odd years after the fact, it is easy to claim fraud because worldwide enthusiasm and interest has died down. We are left with our history books, and anybody can claim that history is wrong and attempt to \"\"prove\"\" it with a bunch of lies and made-up facts while completely ignoring the preponderance of evidence showing otherwise--not to mention the proof that dwells in the souls and memories of those who lived through these wonderfully heady and fantastic days.\"\r\n1\tI just saw this film last night at Toronto Film Festival where it was playing under the Midnight Madness section. To tell you the truth, the only reason why I went for this movie was because it shared its name with the Radiohead song, and also because my friend had bought the tickets so I really didn't have a choice :-D I went in expecting it to be something like The Silence of the Lambs, but it turned out to be semi-gore flick. Somebody has already mentioned that none of the characters are likable, and that is absolutely correct. I really couldn't care less if Potente's character got her entrails ripped out by the Creep. I was rooting for the homeless to make it out alive with Potente's character getting her just desserts. Christopher Smith has certainly done a great job with the visual aspect of the film. However, the story is rather weak, but then again the whole point of the movie was to scare the crap out of you and it did that quite effectively. The score by a Bristol band called The Insects was top notch. That, more than anything else, really scared the crap out of me.<br /><br />The director was a really decent chap and was quite entertaining during the Q&A session. I really do hope he gets to make better films in the future.<br /><br />This one is strictly for genre fans, but I'd recommend non-fans to give this a try anyway. It was a fun ride.\r\n1\t\"This is very much not the sort of movie for which John Wayne is known. He plays a diplomat, a man who gets things done through words and persuasion rather than physical action. The film moves with a quiet realism through its superficially unexciting story.<br /><br />For the open-minded, the patient and the thoughtful, this movie is a rich depiction of an intriguing part of history.<br /><br />There are two intertwining stories. The big story is of internalised, isolationist Japan and externalised, expansionist America clashing when their interests conflict. The small, human, story is of an outsider barbarian (Wayne) and a civilised Geisha's initial hostility and dislike turning to mutual respect and love. The human story is a reflection of the greater story of the two nations.<br /><br />The movie is very well done and all actors play their roles well. The two lead roles are performed to perfection. John Wayne is excellent as Townsend Harris, striking exactly the right blend of force and negotiation in his dealings with the Japanese. Eiko Ando is likewise excellent as the Geisha of the title, charming and delightful. The interaction between her character and John Wayne's is particularly well portrayed. This is exactly how these two individuals (as they are depicted in the film) would have behaved.<br /><br />The script is very well written. It lacks all pomposity. and is a realistic depiction of the manner in which the depicted events may have occurred. The characters are real people, not self-consciously \"\"great\"\" figures from history. Furthermore, the clash of cultures and interests is portrayed with great skill and subtlety. Indeed, the clash of a traditionalist, and traditionally powerful, isolationist Japan and a rising, newly powerful nation from across the ocean is summarised very well in one exchange between John Wayne and the local Japanese baron. Wayne complains that shipwrecked sailors are beheaded if they land in Japan, and that passing ships cannot even put into port for water. The Baron responds that Japan just wants to be left alone. Wayne's character replies that Japan is at an increasingly important crossroads of international shipping, and that if things continue as before the nation will be regarded as nothing more than a band of brigands infesting an important roadway. A very real summary of the way in which the two countries each saw themselves as being in the right, and saw the other as being in the wrong. The resultant clash between two self-righteous peoples with conflicting interests has its reflections throughout history, a continuing theme that echoes into the present and on into the future.<br /><br />Cinematography and the depiction of mid-nineteenth century Japan, before the accelerated growth towards industrialisation that was to follow later in the century, is excellent. A visual treat, and an enlightening insight into Japan's ancient civilisation.<br /><br />I highly recommend anyone, whether a John Wayne fan or not, to watch this film if you get the chance. Just be aware that it isn't an action film. It is a representation of an interesting place and time in history, and a slow-boiling love story which (much to their surprise) comes to dominate the personal lives of the two main characters. Watch this film on its merits, without preconceptions, allow yourself to be immersed in its story, and you will thoroughly enjoy it.<br /><br />All in all, an excellent film.\"\r\n"
  },
  {
    "path": "data/imdb/test_token.csv",
    "content": "1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 74 28 928 9 28 907 10 270 334 7 2 51 1 22 1415 3 3 83 889 11 78 3643 32 1 45 23 118 116 4929 2994 23 365 75 10 5824 23 76 365 10 55 197 11 13 6 308 316 27 271 19 2000 9 6963 38 1 5001 35 1373 1 5102 5893 4 1246 41 8457 207 48 6 1869 5 1 17 128 42 37 109 13 92 718 507 6 51 200 1 66 6 28 4 1 700 7 9 184 5603 27 40\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 313 141 2 1087 572 4 2759 1462 3 28 4 1 113 124 117 1001 2291 1 3275 157 7 2 1284 346 3092 3242 8426 3 3 1 2437 362 735 6663 2182 2 797 1190 5 9 5990 4 81 7 2 4277 6 1314 28 4 1 80 2911 27 289 11 10 6 888 5 90 3800 104 197 2863 2962 3 25 398 21 6 93 279 283 292 1 67 4 8006 415 1076 16 62 4109 6 20 169 14 2529 14 1 7\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 6 866 197 101 3680 69 4673 197 101 10 649 2 641 67 4 2 231 7 3477 4 1424 1251 14 1 4 3141 3 31 1342 90 1 1255 3944 13 92 121 6 360 69 193 630 4 199 7 1 1585 22 1458 5 24 455 4 127 1041 72 130 24 223 989 69 33 309 62 120 15 9810 3 69 127 22 3965 647 239 15 580 17 15 132 1963 3099 3 11 42 1258 20 5 390 4596 7 1 2876 13 2718 321 52 124 36 9 69 72 321 52 1214 1132 1749 124 132 14 476\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 298 2442 5502 3425 4 1493 18 2885 2677 6635 1660 1072 6 262 30 1660 4630 4 611 987 131 1911 3502 4 1660 3 87 4 25 671 3 45 23 29 1 260 5105 285 2 732 85 4 1 326 285 1 3907 10 232 4 276 36 468 539 7 6125 29 75 1 21 213 46 501 17 43 797 7982 168 32 2645 1 4145 22 1256 7 1 1869 5 1 141 1660 1072 12 643 30 2 136 2458 32 2 4 611 33 96 9 63 1335 1660 5035 16 242 5 26 1660 55 193 25 129 6 377 5 26 711 1018 16 43 302 128 9860 3 1076 541 69 46 64 1660 139 15 1 1 5398 4972 2165 30 23 1861 1660 93 615 162 540 15 3826 65 2 9532 1368 959 1 769 1 206 636 9029 1337 2 16 2 178 39 620 535 269 33 7597 179 11 59 15 838 8472 88 1435 365 9 803 13 3382\n1\t699 27 999 5 186 126 47 136 128 288 16 11 28 282 27 13 677 24 71 2 163 4 137 203 104 1295 2916 355 5 1657 30 2 8160 41 3067 3207 17 9 28 544 10 399 426 2562 45 23 96 38 194 80 4 137 203 104 72 34 320 22 1 879 11 24 2338 41 1856 3889 200 350 1326 5859 322 45 10 247 16 137 120 511 24 2590 257 1912 49 72 61 13 1392 294 165 2 163 47 4 1 203 104 4 1 3 2746 297 27 563 77 28 21 11 1728 1 898 47 4 2 163 4 81 155 7 1 518 9 124 122 14 2 206 5 99 3 93 2248 544 1 895 4 4130 1072 35 266 1 282 101 8389 30 1 8160 13 252 21 190 291 1881 2087 17 155 98 51 247 78 47 51 36 476 42 71 7170 32 3 3867 142 2787 17 3146 76 198 2469 1 1410 203 108 10 128 380 23 6830 2575 5 9668 3765 265 136 72 64 174 1757 70 4106 30 11 492\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1956 455 4 2 1081 2 1081 2743 488 944 2 464 2099 12 7412 5 26 2 249 17 1 1101 756 554 7074 5 131 1 18 19 86 195 42 241 503 903 108 1 263 42 311 892 4662 377 5 26 2 1005 146 36 2 715 172 161 635 916 17 48 56 6114 23 295 42 1 3161 35 152 12 20 1202 14 2 7632 2443 266 1722 2 400 810 2 293 1101 7632 7 5680 6 9 76 328 5 552 2 170 327 282 157 4394 697 1101 249 1136 5 1 2851 327 17 332 3365 7 1 1014 1621 9 28 3 90 725 2 2 18 11 6 2 1152 5 1101 616 59 294 9747 7 990 1643 165\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321 308 367 4 2 18 3 5 26 11 10 485 36 10 12 383 140 8 12 1385 4 11 14 8 140 5481 9 28 1478 5 26 383 140 13 92 67 12 509 3 10 12 20 1553 11 16 1114 4 168 6542 2121 61 1345 47 4 1229 41 54 59 209 77 1229 94 4559 4 290 115 13 3926 307 485 1 166 37 10 12 254 5 738 1 807 8 637 9 1 8485 13 677 12 1348 5 474 2354 1348 5 390 942 7 3 1 18 6424 58 1267 822 19 2 46 240 1165 4 85 3 274 4 13 743 900\n1\t157 59 30 25 276 3 11 2323 7 2413 1 28 35 1304 4 992 14 1 282 2701 4014 635 4 2 1086 2002 488 4 611 3 2 2670 17 35 1371 3470 3 173 359 2 29 74 33 311 4008 827 3 253 299 4 17 98 33 34 694 7 2 6430 3 369 1 148 299 183 160 47 403 146 4541 2580 9490 13 808 271 47 3 762 4192 2215 3 244 17 33 83 2867 14 33 96 244 1339 200 6 31 4213 809 1506 1852 3 151 736 266 197 55 13 23 830 11 1524 6958 4305 15 34 127 1477 4 611 80 291 17 1 131 270 1 1881 5 2 147 3432 195 1337 7 43 4 1 80 4015 67 456 2 3280 63 694 224 3 335 28 4 1 113 249 289 1218 1 28 11 100 123 102 268 1 166 177 3 66 424 1074 5 80 11 22 3031 45 23 70 83 369 9 131 369 23 3192 6912 19 1 5833 125 3 125 488 996 23 76 64 1 3280 870 32 2 212 147\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8755 6 28 4 1 113 124 180 117 575 42 254 5 134 603 278 6 7768 3 3524 5335 22 941 62 5160 689 42 2 304 901 4 4 157 3 6543 3275 500 941 432 157 3 389 157 6 689 148 81 29 28 3 1 166 85 414 62 221 486 3 390 1956 2684 634 47 1 546 4 2791 4 3176 1 1449 6\n1\t41 8555 385 15 1 22 205 1 1790 272 3 1 272 4 6165 16 616 69 15 792 1567 5742 2433 7233 15 1 1 3880 51 22 97 35 2580 1 4 616 32 1 1967 77 1 1455 4 1 13 724 1064 9 386 702 51 6 162 38 110 1 21 6 331 4 238 69 2 178 5209 77 727 3 1 2446 4 1 2990 6 32 1 155 5 260 41 303 2266 4 611 1 106 1 443 3 286 1 443 1421 2188 1604 1263 1 9073 1 888 10 5 86 6725 1 190 26 2 5001 17 10 76 26 314 16 6024 69 5 8022 47 1 1561 5761 194 194 8117 592 13 6 1 1267 864 4 1 135 127 4436 4572 22 1 22 19 62 1 6085 1128 3260 25 1 21 2091 3764 102 2514 4 516 1 1 4572 22 9017 7 62 1 567 4 1 181 5 26 31 1854 4 8940 17 33 543 174 1 2638 1231 450 1 74 21 6 93 1 74 665 4 31 1854 4 5962 86 2 34 105 108\n1\t0 0 0 4 717 104 22 169 692 127 2569 16 56 380 86 8630 8900 3564 266 44 129 826 689 117 220 60 114 723 172 5838 60 40 2 4684 129 7 9 108 444 2 298 35 40 877 4 3 181 5 70 47 4 95 1261 444 1107 1133 266 3360 111 183 19 244 8069 7706 30 1 82 5859 6 7043 15 1 540 4106 30 44 7632 2832 3 44 277 82 417 1088 5 414 19 1 1305 601 318 33 899 77 2 1150 429 106 2 1433 70 400 47 4 5361 5987 157 19 1 82 601 4 1 6367 63 26 463 299 41 4444 6 9901 30 3 3360 34 1 85 1875 60 196 8188 864 255 155 254 106 60 6 643 7 2 6994 3 28 196 1136 5 2 78 972 1368 1758 65 213 519 72 165 5 3684 157 75 10 705 7 3933 23 165 5 26 5844 38 1 81 3690 1038 16 503 8 12 50 221 3292 3 8 2292 5 875 11 84 1224 84 640 9 1324 2 843 47 4 715\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 67 29 1 6 7 1 3782 1556 32 1585 3724 5 1 6380 750 1 465 15 10 6 11 10 7023 102 4 206 742 430 3 5 90 199 241 11 46 413 54 26 1126 5 200 3 728 1236 7942 7 1585 3724 6 14 1202 14 4135 16 7 515 205 549 30 8031 3 78 52 3733 136 6380 4179 22 7 2001 583 3 447 5705 9938 6 28 4 1 210 1869 5 37 144 59 272 47 3 98 2497 2 1091 14 1 59 1827 42 631 9985 3 5146 4 137 81 30 2 3100 13 92 121 6 845 6831 258 30 745 6336 3 492 4018 6 53 14\n0\t1976 5 2460 15 1 379 4 2 4854 10 153 9144 106 1 379 4 1 8426 5 2460 15 43 439 482 5649 16 11 729 1603 6 65 5 2460 15 9 6169 482 2010 27 55 40 8730 3632 44 13 9694 79 8 87 20 36 578 145 20 273 48 10 6 38 849 17 8 179 25 561 7 12 1119 3 8 96 11 2647 54 100 176 1882 29 122 37 8 173 241 11 1 379 4 2 1127 2244 164 36 54 3693 3 1621 44 157 16 550 8 83 241 122 14 2 6138 3 8 39 83 64 1 6992 25 129 181 5 24 237 52 68 54 90 2509 3 242 5 90 122 176 36 2 7 1363 1 9939 12 11 736 96 38 194 23 22 133 34 4 127 120 730 77 7 639 5 9 1698 250 129 3 51 100 12 132 2 13 3632 276 1115 3 981 52 598 68 80 380 2 84 1835 3 15 25 7631 39 75 78 27 12 1014 42 2 1152 1 21 200 122 57 58 302 5\n0\t78 1 166 177 675 6 9068 331 4 1893 4 50 288 77 1 750 1352 83 36 35 145 1 3609 5213 333 2 32 7786 22 542 5 1 862 231 359 9395 199 4 75 609 3 964 33 2140 5 1 272 4 284 2 6373 4 1 82 1393 10 12 7 69 8 83 118 69 1 147 11 12 31 161 8 237 32 20 3379 38 127 1046 245 8 214 126 169 2406 78 4 1 927 6 610 36 1 211 691 32 7384 1188 124 69 59 244 470 25 171 5 309 1 456 246 20 201 411 7 1 141 27 40 345 1282 1977 973 34 4 25 3 7600 1573 44 77 31 2685 36 3730 4497 7 13 92 1048 119 69 5017 231 15 5895 532 69 181 5 26 7037 52 41 364 32 1 1048 231 3842 9515 65 15 2 163 4 10 34 255 140 7 1 1 8920 4 2 19 1 11 1 81 1323 19 1 6446 5673 13 406 124 22 364 17 93 237 364 2072 646 186 1550 89 2 3288 2803\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 1 362 236 2 526 4 3 236 2 6710 2246 657 9 6 13 252 18 6 404 144 6 10 404 8 617 1 3742 1013 116 312 4 2 84 7992 6 5 4382 645 5100 5194 15 2 2372 4332 69 19 20 2 84 7 233 169 2 3160 7992 45 1387 26 8242 17 51 23 13 92 21 554 3009 2 526 4 2916 35 22 15 8006 47 2 33 390 1997 11 2 7245 6 19 1 5 5455 9 3612 33 3639 65 3 6613 38 7 1 8296 10 741 7 2187 16 80 4 2350 13 6 2 955 89 1222 108 1 305 1042 8 2111 12 1 461 10 784 5 26 757 4 2 1551 222 4 3151 9 151 1 305 55 52 1445 3822 987 543 194 2 1222 18 4 882 6 2 351 4 290 16 3 388 1858 5863\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1091 7338 6578 2236 7 1288 451 5 7576 44 2035 3357 711 6 105 904 5 652 1 5 5546 1 800 4 1 380 3241 5 2 3338 3 5237 44 1338 16 2 3 1 82 130 17 27 6 30 25 64 2 568 1112 4 157 3 469 3 60 748 1 212 334 19 6 2927 3 37 6 104 934 15 84 8195 132 14 1489 3 72 24 406 107 43 138 104 89 4 137 17 9 12 28 4 1 362 3449\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 192 29 75 91 9 21 705 14 2 4 362 3782 1556 368 10 748 2 147 402 69 55 576 1 41 76 891 217 8 100 179 420 64 2 21 527 68 137 2824 5080 33 61 38 2 1056 264 217 3856 5519 1 217 2439 61 13 2409 142 236 1 586 1602 14 1335 7852 114 23 9 259 2051 14 9311 14 6393 5326 127 81 83 55 905 5 328 5 1708 1 176 41 478 4 1 1165 33 22 13 3562 226 572 131 12 2 547 158 17 9 177 6 2 2662 217 1 344 4 617 71 78 828 497 65 421 3331 217 217 3142 3807 142 2 223 85 1924 128 53 16 9501 1815\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 109 201 3469 4 2 148 322 2740 8 247 1057 17 8 96 9 6 75 10 190 24 71 3704 8 96 51 22 102 3705 296 4225 7 1 4356 3 7737 5 127 130 26 4225 5 80 1532 1441 123 2 84 1835 3 37 87 679 4 82 4566 1488 1 226 2290 269 4 1 21 22 5875 69 3 8 467 1027 261 35 63 2460 109 94 126 6 6704 144 42 37 464 69 10 34 7553 3 10 229 485 39 36 688 2740 114 11 226 178 19 1 1276 2276 56 186\n0\t52 1267 68 193 42 37 7943 11 8 83 96 33 89 31 525 16 10 5 26 7 66 524 10 63 26 1 1164 177 6 11 33 519 139 5 84 5 26 5054 2186 11 10 741 65 355 7578 36 2966 7 1892 5 3 98 5028 10 1923 102 168 3513 144 55 652 10 65 45 10 2601 58 1734 16 1 119 3 6 100 55 3 36 3039 30 25 697 442 7 43 1025 3 30 25 678 706 442 1183 7 82 4718 13 6998 1267 5119 1 21 88 128 24 71 31 548 99 45 10 247 16 1 914 7677 51 213 31 9779 4 7529 7 768 444 3 301 2130 1377 4 5533 378 4 101 2 1269 3 4478 2201 498 77 2 4741 2901 15 2 91 524 4 4 11 255 32 1 345 505 17 6 93 32 345 263 4480 237 105 97 439 1005 168 22 428 77 1 1471 519 23 1121 133 3 23 61 133 7706 2639 4 8422 3 5846 32 13 614 23 175 5 99 146 38 9 4795 235 17\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 104 36 9 23 118 23 22 160 5 70 1 692 716 3646 3831 14 2 1272 6 167 695 3 1 82 171 93 87 2 53 1614 10 6 1 593 3 1 67 11 6 9884 11 88 24 71 4861 57 1 716 1066 828 1 465 59 6 11 51 662 97 4019 273 8 1309 2 342 4 1287 1251 32 1 648 51 247 31 9779 4 6250 5 26 1887 7 1 108 8 1844 1 206 20 712 1 804 5 42 331 5589 3831 407 40 1 1411 3689 5 131 52 17 114 20 70 1 1617 5 87 1943 790 9 18 6 4528 16 2 2714 8833 82 68 11 10 63 26\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 187 9 18 2 535 14 10 6 527 68 1 1280 104 11 2005 2 2305 2824 10 123 20 90 356 5 5917 322 10 153 24 1467 9 6 174 1706 18 15 2 439 640 1453 369 79 862 3921 640 106 1032 15 3346 1112 2 1032 2075 4 9799 13 10 70 95 68 2782 1 59 53 177 7 9 18 12 15 44 1528 7404 3429 8 555 492 3 1 1338 54 582 7781 1230 871 7 1230 7164 8 1266 29 225 12 8 118 561 32 2 163 4 484 27 40 1171 7 104 29 9 42 306 11 27 12 1550 7 2 580 1538 17\n1\t25 6510 2328 3 1829 19 1409 1 2204 921 31 1846 426 4 15 4214 6314 1 280 4 1 3 1725 3 918 14 1 766 35 198 255 408 406 68 244 377 1467 9 6 2 1892 11 1092 7954 277 488 30 1 182 4 194 72 63 301 15 35 1373 13 1164 6 2 1442 1073 80 4 34 73 10 40 2 163 4 2935 16 34 62 42 631 11 1 102 24 877 4 7805 16 239 1885 80 107 49 4214 440 5 6481 77 2 6903 378 608 436 8935 608 393 65 918 75 27 1 723 4714 3586 638 3 3147 22 93 1506 239 82 38 43 4248 17 23 173 8269 11 2109 165 1 113 4 62 3113 5 2055 4214 14 193 162 40 653 5 122 190 24 2397 514 7 17 300 101 4603 247 169 1 3013 7869 5 1687 4 3 1031 43 1545 370 19 986 1039 266 12 937 945 30 1060 1756 349 9 21 153 311 4466 29 1 166 4245 3 1 733 189 1 102 951 6 9462 140 2931 3 78\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 180 1019 172 288 16 2 973 4 9 37 8 88 131 10 5 50 2802 1 18 6 722 3 3722 3 1 1144 4 25 1301 131 144 33 61 1 113 7063 7 1 4552 33 57 5 26 11 53 5 309 11 8 36 10 3 354 10 16 18 2791 4 34 13 92 18 6 38 2 473 4 1 1556 15 2 1176 4 11 22 3 1 4972 1301 6768 20 1076 1 236 1 692 599 8508 1069 1 8860 4 3722 2376 3 25 896 267 3148 2666 30 3561 2640 3 4545\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 297 38 9 21 12 1634 5 357 15 9 21 57 2 167 53 201 3 8 149 10 1258 5 90 132 2 84 201 77 1 1003 2662 5 1 2041 21 870 1218 1 478 1584 12 36 28 4 2 46 91 5055 1382 1211 10 57 9 265 140 1 212 21 3 10 544 5 70 169 13 7017 786 786 786 786 87 20 725 15 9 2662 23 76 59 26 1977\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2929 2 673 2353 1660 6 2 46 211 21 11 57 146 1061 5 3051 10 247 28 4 1290 113 2137 17 27 12 128 4010 2395 3386 12 39 260 14 6857 2051 57 43 53 2184 8 773 1312 19 218 3229 13 150 36 206 816 4331 4 502 27 93 114 3 1 9913 7 34 277 4 137 3 7 1660 27 270 2 184 267 376 3 649 2 423 67 15 550 2 206 35 789 1073 63 70 1 860 27 3 63 348 2 4673 3 1244 67 15 10 6 254 5 13 1226 1003 3731 6 11 33 130 24 314 52 8297 8 59 320 277 3656 8297 2326 3 33 61 1 277 1340 546 4 1 212 108 50 497 6 11 1 74 156 4 1 1106 57 52 8297 17 33 61 757 47 73 1 1278 61 1893 4 1098 207 105 91 73 8 179 10 12 2 1155 13 1226 13 47 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 2 514 665 4 75 31 240 21 63 26 89 197 712 184 460 3 184 2170 39 348 2 306 67 38 1 3525 4 102 2602 296 415 125 2 13 252 18 6548 199 34 5 176 29 257 221 923 3 64 11 81 22 1046 20 4308 6384 5673 13 18 15 2 53 4979\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 1324 28 4 50 7219 42 20 56 95 501 17 42 84 5 539 3706 1 494 63 390 862 3936 3 775 1171 63 72 1006 23 2 156 6838 96 23 63 352 199 15 1 95 1076 6 52 41 364 90 273 5 99 16 1 482 259 35 5134 1 250 807 27 59 40 102 2131 17 244 28 4 1 113 559 7 1 8852\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 9341 98 7 7 1 164 35 256 1 4265 130 70 31 1570 16 5 256 154 28 4 1 1099 2110 11 61 77 1 8 57 5 4165 65 1 81 8 12 133 10 2159 375 1287 94 10 12 2780 8 343 91 16 246 126 960 115 13 4511 4 1 21 6 556 65 15 1247 146 76 152 3659 17 162 117 2788 10 12 806 5 2324 1584 4 3242 3 1 120 61 1289 3 30 1 182 4 1 141 23 39 3388 307 54 6920 307 1225 200 463 101 41 3 531 34 115 13 872 2428 72 219 2 938 41 102 4 1 1253 39 16 3738 3 23 6150 3 34 11 72 159 12 81 101 38 75 9574 1997 33 2620 45 33 57 1017 1 85 19 1 18 11 33 114 730 19 1 2366 10 228 24 71 279 2034 115 13 150 12 758 7 852 1 3008 4 8 165 2 19 1055 140 1 671 4 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 71 31 16 172 3 12 56 288 890 5 9 880 8 57 10 274 5 2096 34 767 73 8 179 8 88 56 825 43 84 147 2508 8 229 88 45 8 88 70 576 13 1964 273 2 163 4 9 6 5612 5 291 36 2 864 131 3 1376 5 11 897 4 3930 10 153 216 16 275 809 56 942 7 1 13 252 131 130 26 404 15 13 8535 1984 6 132 2 84 4 300 2 330 131 207 56 686 38 1 3682 54 26 2 53 3742 188 224 6 20 2429 16 43 4 2533 115 13 150 58 1534 2096 767 41 99 1 983 17 87 369 79 118 45 2 148 1504 131 190 26 7 1 3375\n1\t3 2101 9289 3 2695 266 7032 2 641 287 15 2 402 946 329 35 40 39 71 1783 30 561 2030 5 2459 550 27 7829 44 5176 26 155 7 2 14 25 532 6 7840 37 60 467 136 693 5 70 14 78 4 25 231 5 5014 1 2279 14 2623 59 465 424 49 60 615 711 9289 2695 6726 33 357 246 2 6519 3 51 112 271 19 5 11 2968 178 7634 1 462 255 93 993 918 2695 4346 14 9598 3 2101 9289 1707 14 2981 3 294 14 10 741 15 58 2279 16 2030 3 17 60 3 61 749 1413 10 1196 1 918 16 113 2511 1106 428 2829 16 1 2238 3 10 12 2695 16 113 206 16 4402 1240 1 4855 4 1 3 113 3236 10 12 2695 1 16 113 868 16 2097 3 113 215 5220 3 10 12 2695 1 2101 16 113 1729 572 69 3 113 4852 10 12 604 19 2226 1166 2226 5324 47 4 10 12 604 3581 19 2226 1166 2226 3 10 12 604 19 2226 1166 2226 4267 46\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 132 978 13 743 658 4 81 3363 7 31 2841 2727 33 357 355 643 1237 33 118 33 22 101 37 48 87 33 5633 28 282 1036 5 186 2 174 1036 5 19 44 766 1018 6 93 15 31 161 1845 37 33 936 149 2 2023 1240 31 161 2841 3 139 29 592 13 872 10 255 140 15 1 840 3 1 13 872 42 93 240 32 2 272 4 3972 106 1 692 1575 1222 6 2 6180 4 75 72 793 41 75 1995 793 170 1046 41 14 368 3547 1 344 4 1 913 9 40 2 979 8546 9 6 2 21 89 5 26 31 296 42 892 5 64 75 396 1 598 171 35 22 242 5 1271 4992 9720 155 7 5 62 2736 13 614 23 36 978 1575 1920 98 23 76 36 9 5592\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8970 3 1186 711 328 5 2711 19 101 30 184 49 711 6309 2 1700 9971 294 5874 2448 1 131 14 1 289 4432 204 11 27 88 24 71 31 121 1047 29 2 327 1428 5 31 1303 7268\n1\t657 51 6 2 9984 487 1018 1609 276 36 2 3 244 9984 117 220 27 5823 2 2345 3187 11 643 205 25 1007 300 16 1 98 9 1101 282 6 107 30 27 69 66 270 361 3 27 6 4079 7 112 15 44 69 48 6 28 4 1 80 4741 188 38 1 18 6 11 9 1598 151 29 44 69 42 36 2 1114 3894 482 242 5 7458 2 7 698 308 1 1114 3019 65 1 3 40 44 421 25 7796 69 60 2311 2816 1 3 657 1 21 270 1 85 5 131 25 1114 4005 70 4 34 1069 236 2 1238 7 10 73 1 1101 1840 191 24 455 11 296 1607 36 3311 3 27 1609 713 5 70 2 69 236 93 9 2896 178 106 1 6935 2 1598 5295 69 863 1 1114 3 1123 10 5 1 1101 4663 1773 1359 69 195 50 1773 6 4664 3 36 434 317 1 9 21 6 52 1213 68 146 1984 2865 88 24 117 960 45 23 22 2 325 4 382 616 930 69 3143 9 1248\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 396 560 144 9 251 12 37 1264 8 179 10 12 609 3 93 46 4763 428 3 8 96 7 85 5 209 10 76 26 107 7 1 822 10 11 6 45 33 117 2272 110 97 65 3 588 170 267 171 1478 7 9 3 34 337 19 5 2974 2508 300 9 233 76 90 81 1997 4 86 1548 3 10 76 24 5 26 3899 2414 745 3 20 225 6337 4 1 6174 1134 1504 1 1063 6732 3 1777 22 102 4 1 2049 267 1063 4 1 661 3669 261 11 63 2230 267 36 435 3351 339 26 2262 4 523 146 20 1822 4 45 10 6 117 8 76 407 751 110\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 213 1 700 249 131 7 2994 17 42 20 237 1294 10 153 24 1 119 41 8313 4 1 1585 4779 41 815 55 362 245 10 6 5032 1 80 3800 131 8 24 154 209 8 112 1 111 8 173 497 835 160 5 3109 8 112 1 4 1 4280 155 584 66 396 187 2264 5 147 16 199 5 64 126 1107 7 43 1175 8 175 1 131 5 226 9117 17 8 96 33 63 70 3299 47 4 10 183 33 24 5 182 10 19 2 4427 7156 1 2053 4 1 120 3 62 7364 15 1 3989 16 866 9890 3 1826 434 120 34 1583 5 1 5081 356 11 9 131 6 146 46 264 32 48 72 22 314 1467 42 2065 3 2 103 8691 16 34 4 23 4477 52 68 2 103 359 137 3480 317 59 3301 5 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 527 68 1 210 638 2854 5098 151 58 356 3198 1130 860 1037 200 36 33 22 7 2 3 1254 19 51 6 129 5064 10 311 418 1 318 7 900 87 20 70 3154 77 9 73 4 1 845 514 1488 33 22 340 162 5 216 2159 3 23 76 26 1437 835 160 19 533 1 5875 1452 8 496 354 8617 5098 29 34 1013 23 22 77 116 1568 77 900 7442 69\n1\t237 32 1 3880 1 59 6 11 23 24 31 796 7 265 2633 2133 1615 7 6109 1 111 7 66 1 5834 4 1 102 6655 22 6 2 425 5571 4 1 8668 2 1301 63 3 133 1 1228 2089 65 3 7827 47 1 7496 6 9331 8 1023 15 82 746 11 798 10 54 26 327 5 70 2 570 736 32 9910 2443 220 244 674 2769 14 25 221 210 4334 3 1 5 1 1514 5 39 13 4511 240 5 79 6 1 1451 16 1 62 551 41 3 16 9910 25 1 7496 1451 1 632 1 526 8924 55 45 1 526 5214 297 1 7496 195 820 16 2243 207 1 113 427 6 49 1 16 1 666 1352 495 24 126 2882 147 79 3 1 47 128 751 62 6821 5 503 9 39 289 75 1127 53 265 63 5721 13 64 9 141 55 45 23 118 162 4 463 9510 42 52 38 1 1626 4 891 265 3 75 33 2210 11 151 9 21 37 1470 42 1219 5 917 2 526 37 4441 16 37\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2848 1 8154 1825 51 6 2 527 18 68 116 8300 251 47 939 8 1196 9 18 7 2 7473 29 9973 3 10 12 2 351 4 319 55 45 10 12 7844 783 2376 460 14 2 323 489 2851 603 242 5 149 43 41 2730 29 225 2848 1 100 1120 437 420 243 24 50 1789 68 64 9 702\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 83 48 11 82 753 12 648 1395 9 373 213 2 141 7 698 8 83 96 51 12 28 547 288 282 7 110 1453 42 39 5174 1984 1145 1724 3 42 565 8 173 55 905 5 348 23 75 91 10 705 8 159 10 518 29 366 19 9421 3 8 12 7 1 233 11 9 18 12 117 612 6 31 2158 5 199 513 1 171 61 463 417 4 1 1840 41 3073 1 293 363 22 2 6182 3 1 1428 6 7533 5 79 1024 1 265 8066 10 513 2 6030 88 787 2 138 833 15 2 3339 87 20 760 9 1689 17 45 23 117 64 10 19 9421 99 110 468 26 2275 29 75 91 2 18 63 1142\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 238 983 17 162 7956 9 28 472 334 298 7 1 66 1049 43 327 1769 3 6522 28 164 270 19 2 526 4 1 466 3 27 3738 10 88 24 71 404 271 5 1 10 12 11 10 114 24 28 46 1535 178 260 29 1 74 4 1 21 66 57 79 8809 7 3535 20 2 91 3236 17 39 166 166\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 46 754 7 27 6 2 232 4 91 35 63 90 23 230 46 57 89 43 6568 7 2534 8 320 28 7 66 12 288 16 776 200 395 2729 12 38 2 6904 115 13 252 103 18 6 36 2 91 2991 91 3387 3 489 2263 8 173 241 11 2 3094 18 36 9 12 7 1 3447 345 13 88 89 9 18 73 4 25 1725 1 1840 4 9 2 287 46 109 3228 15 2294 249 1255 3788\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 198 335 283 104 11 90 23 2564 3 83 39 1 3405 5 62 1754 6 28 4 127 581 3 292 97 1755 24 4246 11 10 6 832 5 9675 15 2 222 4 3 31 1089 438 8 165 110 74 290 2627 10 153 1498 5 82 36 218 692 41 17 7 86 221 260 86 31 1244 3 7601 135 115 13 3221 177 8 56 338 38 9 21 6 75 1589 304 10 705 154 1146 154 443 5105 181 5 24 71 179 38 16 5311 45 23 64 10 468 118 48 8 13 3986 5 99 10 15 31 1089 438 3 23 190 335 110 45 1375 322 6025 117 367 6 16 3622 3 207 50 358\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 100 78 338 1 141 8 1116 75 10 4425 1 368 29 1 290 407 773 2417 726 31 6580 193 8 24 5 560 45 97 81 35 3082 1 1854 56 159 1 21 3 118 48 10 12 34 38 13 150 19 2 342 4 172 989 3 143 96 10 57 3412 95 138 3952 1 982 236 2 3663 38 10 7 1 616 1254 622 709 5082 106 42 340 2305 1365 16 1472 132 184 460 7 48 12 98 31 5006 2426 245 1 18 6 105 3837 5 26 4226 105 810 5 26 2 3 37 3297 242 5 1965 11 10 1082 5 41 3162 5644\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74 4 399 8 338 46 78 1 1284 312 4 1 508 7 1 8002 8550 19 943 3444 69 1281 17 519 52 7 233 1 22 533 1 21 2521 7 1 4659 106 1 951 7 1 25 3 1208 25 823 94 683 7 1 226 350 4 1 158 27 432 2443 3776 7 1980 710 9593 7 1 449 4 16 1 3186 115 13 92 790 1511 6 3837 243 68 7372 331 4 3 356 4 3285 101 52 41 364 9 6 2 169 3591 572 4 31 161 3575 8019 17 5360 3 3058 9553 1 1 1512 52 5 3642 2834 4 3 2277 68 95 4683 43 4 126 22 20 3816 4 623 1024 232 4 309 59 63\n1\t9 34 125 702 115 13 92 67 40 428 167 109 17 8 920 11 62 634 22 103 4652 9 6 258 16 9010 73 25 3689 4 121 6 457 32 1 82 3 10 6 1021 5 785 1 111 49 27 2656 15 82 1587 571 25 2020 1587 688 42 73 9 6 62 74 85 5 634 7 1 682 13 150 96 8812 242 5 131 199 38 75 275 63 26 37 904 49 33 1621 1 80 731 454 7 62 500 49 12 4864 49 1783 5 473 5 101 1706 36 122 73 27 495 369 44 6252 49 711 8983 1743 585 6252 3 1 113 3 304 178 6 49 1369 55 8 553 11 3689 6 128 1021 17 8 187 122 102 65 29 11 13 3057 2 85 106 1 119 271 105 884 36 33 143 348 1 302 144 585 63 2612 1 558 4527 3 101 4334 73 33 22 2 53 493 29 1 576 3 93 585 6 711 7 13 8 112 9 6202 78 115 13 252 6 31 238 18 15 2 1462 304 471\n1\t47 3 80 4 126 61 8 12 133 10 316 94 2 223 85 3 8 51 12 2 223 4 81 3 1 9722 33 1242 49 1 2 8580 5617 788 310 19 6343 4 3 61 5 239 210 6833 4738 4 11 6439 109 7 1 518 3991 7399 17 40 128 71 46 2915 5 25 5263 14 25 4099 356 1373 1 155 98 10 34 10 12 34 53 1066 3 1633 1 8696 897 1640 48 299 10 12 1156 3 98 12 58 288 155 16 9 14 10 337 19 5932 19 253 137 1297 1720 19 251 30 2 156 17 336 30 1 13 614 23 22 288 16 2 53 85 15 162 5 87 760 10 41 99 10 19 249 8 83 96 23 76 2580 320 86 1 210 29 86 113 13 8 99 137 104 49 8 70 85 8 2004 582 8 134 139 1929 3 24 2 53 85 14 51 22 268 49 72 34 112 4230 3 5376 49 86 248 30 1 4 62 268 10 1416 6 3245 354 10 5 34 18 2791 1104\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 681 172 1742 8 1049 9 21 7 43 2598 5452 7 3 63 128 320 1 3008 4 1 33 61 10 6 20 39 38 1 35 24 2336 3 414 7 1 4 17 93 38 1 82 1804 35 333 1 51 6 2 885 178 7 66 2 2026 2 136 2 9593 4 836 10 6 2 20 59 53 16 17 93 16 6684 38 220 51 6 37 78 38 1 7659 189 1 3 82 3 1 212 4 34 4 1 11 414 7 3 200 1 115 13 150 555 10 12 1492 19 2388 37 11 8 88 99 10 316 3 131\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 267 15 78 4698 1870 3 5903 3316 106 80 508 51 24 71 97 124 4 9 870 15 52 3045 171 2621 5 3882 9 4060 66 617 209 2882 774 1 1384 3 4 9 461 9 6 1416 73 1 4340 201 15 1485 453 30 4300 3 9098 291 37 11 1 864 4 62 120 7513 9808 116 796 3 1676 3 998 126 533 1 135 29 1239 1 238 181 243 3 17 28 4723 2486 11 127 102 243 1526 7247 81 22 2805 3 242 5 3846 55 45 140 239 1715 2745 5217 4 1977 3 2048 22 37 11 28 811 126 14 28 450 23 76 474 38 127 102 1904 17 1768 2572 81 3 449 11 33 76 4891 73 42 7 894 3 34 7043 19 2 931 3037 1607 76 70 5 64 52 4 4300 3 9098 14 9 21 1501 62 6156 14 46 4368 171 660\n1\t35 440 5 149 25 111 13 89 97 249 3 18 4647 7 17 98 12 20 107 78 16 1 398 156 982 444 195 2972 3 6 1758 65 5 26 2 304 3248 44 2618 56 65 1 1250 45 60 63 70 43 52 53 871 60 88 24 14 53 2 895 883 68 6868 174 277 654 635 1651 17 3037 197 43 4 1 922 11 40 71 7 13 1869 5 50 1315 2375 35 39 1616 765 1 441 1 21 114 20 291 5 917 1 347 34 11 322 17 12 548 630 1 5067 1 393 4 1 21 384 36 2 184 7354 16 43 3066 6229 5 2089 5757 66 228 20 26 132 2 91 1606 10 12 327 5 186 1 231 5 2 18 3 20 24 5 3915 38 5322 882 41 447 4718 13 1268 82 53 1329 4 1 18 12 1 30 1 5548 561 104 4151 2292 5 131 1217 5962 3467 14 136 27 40 28 933 3309 1146 27 8502 1 416 15 2 7651 5361 10 12 93 327 5 64 1867 355 43\n1\t70 2 412 2476 29 1 2101 3065 4 98 156 22 55 5 26 6218 1467 51 22 58 5 26 57 38 1 1134 412 4 3150 41 7834 17 10 151 1 449 16 1 7697 7502 9720 5 26 4610 47 5 5679 115 13 724 16 399 1 376 2447 22 53 3590 3 31 845 855 868 1256 7 15 2 17 299 84 2875 67 15 170 4086 2875 1161 53 16 518 4 8930 151 29 225 153 1193 4025 1 540 3197 135 1 593 1834 65 14 1 201 2995 1 67 7 1386 4306 5785 1875 261 77 265 41 5079 1 21 151 16 2 13 92 1574 3501 4 1 21 6 2013 1254 2766 7 2 7 2 609 941 15 1461 1 9 6 2 1719 604 4 3987 3 42 327 5 118 27 179 4 10 183 1802 5124 544 605 5 1206 19 5412 3 13 777 20 610 1157 224 5 2 7009 3 3 3639 17 10 6 2 7192 1195 9262 4 9045 11 936 963 7 116 2333 3 480 1 6 128 2 2273 13 9409 7530\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 21 6 2 1894 4 19 39 38 235 47 939 10 40 58 1229 7353 58 58 148 4979 6379 6 4425 125 1 401 3 6 3 9 18 173 5608 1 4 253 589 106 3772 154 346 6597 4 911 498 1279 77 2 927 11 6 37 687 4 31 121 897 106 51 6 58 3895 5 9 1 171 4 75 53 33 22 173 352 17 8186 15 4257 9080 4860 1 125 505 5 256 10 1 1177 6 4 58 352 675 162 63 552 9 10 6 3 509 5 9925 7 5247 891 15 1 2190 3 6411 3991 120 6613 197 2 1538 2252 3 2840 22 9 6 5309 1 53 2156 366 15 1468 3 632 3867 3335 13 646 187 10 3230 13 2361 124 24 9 21 6 5383 27 2925 827 36 1 344 4 450 726 27 40 162 4 796 5 134 13 150 24 58 2277 5 64 235 316 32 9 259 646 32 32 195\n1\t0 0 0 0 0 0 2 29 2 3720 869 6736 3029 2 2009 4 81 5 473 77 1713 35 3321 139 19 2 2 3507 4 2104 87 62 113 5 2711 9 6168 3927 31 6239 112 3 2380 16 6778 3 3067 203 27 8883 31 1428 4245 7917 1 412 15 1184 1357 3 5224 863 1 464 494 5 2 8335 407 153 19 1 2461 3 6021 2864 9 572 1510 2 4 3569 679 4 28 3751 40 25 683 827 3 236 55 2 327 19 2 6078 7447 985 16 2202 1 1511 3591 3 1858 5 1 3837 182 2022 1632 202 34 4 1 250 120 3235 65 1496 1028 4672 9 739 40 86 1551 1555 4 1 2858 375 1035 29 3 1 2496 489 121 32 2 5368 201 34 597 2 53 934 5 26 9430 401 139 5 1 167 3 16 44 1103 4 1 1403 8613 123 109 14 1536 2661 3101 113 4 399 273 5654 4 31 356 4 3 631 16 1 203 870 8477 11 9 1373 2 900 7759 5 99 32 357 5 4726\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 76 26 21 6 31 5314 5 307 571 86 1 46 233 11 10 6 2 7470 4 1 447 1926 181 318 72 22 5 2 8823 941 1361 1 119 6 903 58 28 571 1 80 325 4 91 203 76 70 235 47 4 110 3 16 1 112 4 851 786 582 667 9 21 6 2 901 4 4159 433 41 55 4 633 73 10 6 169 674 20 48 1 9 12 30 237 1 210 21 29 1 1672 2948 8 159 275 55 2507 140 1 21 229 73 33 339 186 95 52 4 110 9 190 291 36 31 2235 3014 17 8 1975 481 149 2 1362 865 4 9 21 571 16 436 45 23 186 10 14 1011 1211 7 386 9 21 6 113 219 19 2 4 897 2\n1\t97 268 10 12 3976 1 510 39 3 3 369 44 70 295 154 290 1 510 57 37 97 3878 10 12 36 851 12 242 5 134 65 3 2089 1 282 75 97 87 23 1 5073 189 168 844 23 1437 114 8 773 37 97 119 1931 32 178 5 1361 8 12 1094 36 1184 49 33 636 5 5 5 70 295 32 1 1 4659 76 552 23 32 2 32 46 8 497 1 4659 34 4955 174 178 11 301 33 2006 16 1 74 85 3 57 2 684 178 29 1 4133 33 3 143 55 118 239 1 178 12 37 3847 3 1 12 58 3895 29 225 7 82 104 10 228 291 5480 17 8 467 33 39 2006 55 193 33 22 51 1687 61 36 33 4079 336 239 82 378 4 10 243 9 18 6 279 133 16 1 3032 4 567 116 671 3 283 1 7114 91 368 104 76 291 36 2617 49 1074 5 476 7 1 182 86 279 133 23 4108 70 1120 23 76 26 9405 154 4174 154 178 7 116\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2301 8 83 55 118 106 5 42 36 1956 419 2 3780 445 5 31 3 367 79 2 18 38 1 1085 1 1043 6 3976 1 861 12 1610 29 1726 154 625 4 494 12 301 3985 3 1 1177 1104 322 12 51 55 2 206 9252 297 12 39 37 1445 3 1054 3 13 2 2636 16 9 18 6 1 7060 177 468 117 1861 115 13 2298 45 23 338 9 6054 468 93 534 3 2 8853\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4493 136 20 169 12 373 2348 48 130 24 30 1 330 3196 15 12 11 130 311 26 8188 429 5820 43 259 3 7 148 727 54 24 71 65 16 1 431 54 24 71 5794 7 3858 3 1617 3 1 54 24 89 47 4 3 1 933 4972 27 1066 1987 27 54 26 7 1641 14 54 261 7 1 4 1828 4071 3 1 54 24 1196 429 2 227 5 359 122 15 109 77 25 161 3669 136 54 3235 65 1339 2037 2 242 5 411 30 403 53 16 81 16 102 172 183 81 5 1 233 11 3771 107 10 34 1448\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 369 1 804 3282 12 28 211 108 1 247 377 5 26 2 1211 1 67 748 23 65 2068 16 31 393 11 100 55 2428 1 7340 6 100 23 76 597 1 856 2227 9560 11 8 1090 10 2 358 311 73 51 61 2 156 1516 529 4 17 1 1812 844 23 301 5307 5667 2423 114 14 53 2 329 14 63 26 909 7 1 1538 17 27 57 46 103 5 216 1566 51 22 1164 3 240 498 9902 66 57 332 162 5 87 15 1 108 369 9 28 209 47 19 388 183 2721 116\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 83 70 476 1 18 515 40 2 167 53 3550 10 40 46 53 5785 10 40 327 8072 53 1043 3 167 53 1177 854 98 144 850 144 143 33 4158 275 5 87 2 570 4 1 263 37 10 54 20 26 37 1589 978 3 144 850 144 114 33 4158 132 2256 171 11 173 634 62 111 47 4 2 3618 9 18 88 24 71 452 29 80 268 10 276 53 3 811 53 17 7 1 769 23 853 11 1 18 12 58 53 29 2616 13 1627 8 54 134 42 2 53 397 17 2 91 108 105 91 13 872 209 628\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 88 20 55 652 512 5 99 9 18 5 1 714 8 481 878 19 1 67 14 8 114 20 99 1 212 21 3 1 302 8 339 99 10 12 73 4 1 6421 16 1 80 185 33 39 485 4345 3 145 273 62 3645 61 7 62 1191 39 47 4 2990 69 17 207 2 1681 1 250 2272 8 24 15 1 171 213 56 62 42 2525 201 9 2814 209 926 9 18 310 47 7 8 179 11 1084 81 7 62 518 5 309 2916 337 47 4 2753 15 147 8 481 99 2 18 106 28 4 1 74 2131 32 2 2260 164 972 68 2758 6 3490 75 63 261 186 11 83 735 1757 5 9 141 139 47 16 2 1243 16 1597 269 3 468 70 237 52 68 9 18 88 117\n1\t475 159 1 18 3 8 12 46 9214 27 876 199 1 170 2791 4 15 2 4 1 3 72 24 2 1 67 8749 6 696 5 822 5736 7 1 477 5 686 29 1 714 1 206 93 89 129 11 23 88 1999 1467 1 177 8 114 20 36 38 12 11 1 120 61 105 1 1084 1583 5 86 7419 6586 619 79 15 2 53 1663 9 6 2 580 3 80 8541 27 4982 1 1174 1 113 6 728 8796 7 698 9 6 44 113 1663 44 412 1761 6 37 23 22 3597 5 112 44 1663 3 22 1440 20 28 353 811 47 4 1888 115 13 92 759 61 169 1832 17 33 76 478 138 94 133 450 3 87 22 327 6 93 327 7 2034 1 759 662 3709 3 3 33 22 52 36 1 1675 6 66 6 3597 5 3006 23 4 3 37 48 12 1 4594 7 1 1973 1 18 196 169 2690 3 1 393 6 169 17 1 18 6 128 271 29 2 53 4404 253 10 2 425 231 135\n1\t1 1260 213 197 86 4386 51 61 268 49 1 5946 3 51 61 1035 5 70 10 2401 12 2 103 3 1 795 914 65 5 1 570 7869 61 243 8 93 179 51 61 43 673 529 37 43 4 1 948 343 245 8 336 75 12 7287 10 57 2 46 696 1117 541 5 1 609 4573 3 10 56 274 1 4523 48 15 1 534 443 216 3 534 1 5151 529 61 595 5840 9 12 1553 30 28 4 1 80 2762 265 4695 7 2 8584 300 20 14 1577 14 1 28 7 28 102 50 66 419 79 1 119 6 7456 15 34 1 3785 193 20 14 4326 14 50 7 43 111 11 6 2 53 1606 1 121 12 46 501 638 6 118 8 173 333 9 736 2681 17 8 173 96 4 2 138 736 5 1431 25 278 7 1 14 3 7611 2538 3 87 2028 5 62 120 3 1 1554 57 84 4421 3 109 1619 19 1 5012 591 3337 14 34 7 399 1195 948 17 153 5368 385 1 1293 5582\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 40 293 363 66 16 42 85 22 46 5956 43 45 10 6 728 15 1 168 262 9890 17 1 4 866 1512 19 31 4293 19 21 6 1317 109 248 340 11 9 21 12 89 52 68 172 1924\n0\t37 23 63 70 939 9 18 8143 42 256 371 7 132 2 111 11 23 118 1 911 22 20 7 1037 51 6 28 178 11 6 1135 2411 3 88 26 5708 197 261 9 178 55 792 3 741 15 126 2037 2 4391 37 23 88 757 32 28 606 178 5 1 82 3 100 24 1155 1 1445 178 7 1 13 252 18 93 57 2 678 7030 4 457 4243 43 1733 136 125 4243 2750 43 5 1 272 106 23 63 497 1 389 9518 65 10 93 57 2 7030 4 2 566 229 39 73 33 339 4535 110 51 22 93 2 156 5403 91 168 106 1 9518 6 2722 19 2 1182 3 1 570 1112 1295 8984 2954 48 13 614 23 22 2 325 4 99 9 18 73 444 4010 60 123 2108 5 1173 47 4 44 4746 2 156 268 3 90 16 2 53 1360 2646 2266 20 294 763 266 1 166 129 27 266 7 297 244 117 248 220 372 155 7 37 207 162 13 659 399 8 419 9 18 2 8537\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 3046 417 3 8 61 39 6514 75 3519 72 22 15 1 111 104 3 258 684 22 101 1001 72 230 5888 30 1 11 368 6 6416 65 127 663 14 33 634 36 34 6 2593 13 4956 34 6 20 1 1675 4 2 156 2437 36 9 108 10 153 24 1 184 442 1041 1 184 2039 8 83 96 10 57 2 184 1042 669 1150 32 368 10 143 56 24 235 11 80 184 445 684 13 724 10 114 24 48 80 4 137 10 57 84 1300 189 1 112 3 62 112 67 247 929 19 199 36 37 9323 1 206 472 25 85 5 1959 127 120 5 323 70 5 118 239 1715 62 67 1385 79 4 28 4 50 13 92 607 201 1253 20 59 56 211 709 2103 17 1384 5 1 67 14 530 578 129 12 332 1040 493 12 5334 15 25 1658 7 2 5427 12 2 163 4 6141 13 150 8 8 2299 75 84 10 811 5 735 7\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 114 20 24 105 78 796 7 133 1 1 1719 3607 4 9100 17 27 57 71 4733 32 1 3 27 57 71 3546 30 31 206 404 57 1 507 11 57 89 2 53 21 17 10 57 20 7366 1 33 4733 122 3 2490 174 531 123 20 216 109 320 1 1 7817 5 26 138 68 48 8 20 2 84 21 17 42 31 240 3 548 129 1273 6 46 109 248 3 8 88 118 1 120 46 733 189 1 102 250 120 6 1574 3 8142 3 3619 5702 652 3909 139 5 1 1332 1656 66 56 2705 79 6153 12 2 799 7 66 10 9368 7327 12 1 4 6208 4156 5 187 1 18 52 3 4156 230 47 4 334 3 62 1761 6 96 1 21 130 24 71 52 2924 4 354 1 14 2 53 20 1201 29 42\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35 262 1 2528 7 2 900 4 484 741 1 3607 15 9 313 21 7 66 27 196 5 90 112 5 2 13 92 184 314 396 7 1 5995 4 9414 6 5343 13 12 25 692 1537 14 27 8418 137 35 54 2303 32 1 5 6883 29 5453 5 137 35 88 20 4535 5 13 92 692 491 3 3689 4 1 184 259 12 8351 385 15 1 13 1964 160 5 773\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 114 20 96 9 18 12 279 235 91 1252 91 121 571 16 58 7233 439 640 766 3 7361 5506 45 23 24 100 107 9 18 183 83 55 1460 42 20 279 10 29 513 1 59 177 11 12 53 38 10 12 11 114 2 53 329 1014 766 6 2 1544 65 7370 6844 35 40 1196 2 163 4 4021 3 55 1866 1294 27 96 27 6 37 1831 17 27 6 56 39 2 44 113 493 40 31 1971 15 44 766 3 768 327 282 4789 444 2 148 1265 444 58 326 29 1 4133 1497\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 1964 273 155 49 9 12 612 7 10 12 78 3271 16 86 290 155 98 124 61 9341 3620 5 1959 1607 5 917 3 1 471 204 2 164 1047 77 2 429 7165 30 25 226 379 11 1436 7322 15 25 147 2866 1 4526 1944 30 2822 35 93 470 27 4215 56 6 31 1223 27 196 2 5 2979 11 60 6 7 220 27 563 11 51 12 4896 309 7 1 74 5367 2295 27 173 348 2829 48 7553 37 27 440 5 2545 44 142 15 1 72 93 149 827 159 44 1007 6252 1826 4065 2 3657 4 1741 11 466 5 36 97 1607 2087 8 214 1 2216 5 26 2 103 105 673 16 50 17 45 23 36 203 197 2 163 4 2565 9 21 6 16 4840 13 1149\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 266 7 1 4929 3 6 38 31 1101 25 379 3 62 102 537 3 32 7 4302 5 7 1 6556 8 36 9 158 73 8 96 10 6 169 10 289 922 66 97 2118 2752 24 49 33 209 5 174 33 24 5 70 314 5 2 147 6136 2 147 3682 3 9 63 26 258 45 23 83 118 1 10 6 832 16 1 231 17 33 149 2 33 1089 2 5528 66 1664 687 1101 3 10 6 654 36 62 1 21 93 289 264 5948 69 3 735 7 112 15 1 166 1753 3 292 40 5 216 46 6550 4364 5 946 319 5 4783 52 966 966 17 8 83 175 5 348 23 75 10 271 778 23 130 99 1 21 6115 42 2 327 28 69 8 24 93 89 2 38 10 3 168 66 131 264 3283 3 51 22 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 191 64 16 18 3760 17 10 93 1834 65 109 421 2542 502 8 96 72 24 1 4 1 398 2394 2181 13 3127 13 92 445 6 2050 8023 58 293 363 7353 3 33 1524 314 2036 7 4569 286 9 18 6828 998 4 23 3 100 1572 3192 1 1106 6 595 7654 286 1 171 3 206 1622 10 142 15 528 10 40 2106 10 40 3 10 40 3 10 34 557 6340 13 4255 272 7 6396 1 8506 45 23 175 5 64 31 13 2 7286 2869 7 75 5 90 2 402 445 739 11 56 5609 64 9 2396 13 2056 42 93 56 9760 13 1149\n0\t5 26 2 5248 3415 1053 1238 3 2 8348 3 37 27 196 2 583 556 14 2 7 1 115 13 252 6 2 259 72 22 377 5 115 13 92 212 18 6 676 36 476 80 4 1 607 171 22 1339 189 1233 395 5 167 53 395 3318 91 259 3 25 2002 35 22 102 109 587 1827 171 69 33 39 139 140 1 17 33 22 3 55 10 65 33 22 17 140 10 399 129 2734 810 600 4873 3 3036 11 70 29 225 102 2831 1438 81 4864 1069 2 342 4 91 559 35 228 24 71 556 2191 197 1 333 4 2483 13 2699 1 1061 3453 220 8460 4 1 18 6 274 19 41 7 1 23 70 5 64 679 4 167 1769 3 679 4 327 3 4439 288 3 1581 4949 411 190 26 19 1 1423 601 3 1056 17 27 213 11 20 1 11 9 124 1396 2989 2014 3 1 7 62 892 291 5 13 659 2179 9 18 6 53 16 388 17 1 545 130 20 946 95 838 5 2420\n0\t7482 123 2 547 329 29 505 17 23 173 90 2 953 45 51 6 2 84 551 4 13 252 178 8086 2 53 572 16 23 4 1 18 2521 136 7482 6 8418 30 4854 5266 60 1036 5 694 224 3 655 2 572 60 615 32 44 1 572 6 32 44 752 3 10 4263 6838 112 23 35 123 146 36 11 1785 48 1 3 241 79 49 8 134 11 10 6 20 670 14 439 14 43 82 168 4 1 108 275 4246 11 9 6 2 322 8 24 5 2474 9 18 40 2716 1503 16 2 2560 3 42 20 2 4773 1608 3 3402 8 83 55 175 5 357 5581 38 1 808 10 6959 50 1568 531 1 551 4 2947 123 20 1460 79 45 10 6 7 346 17 9 18 676 6 89 888 59 73 4 1 551 4 688 8 128 187 10 2 843 73 55 193 10 6 8397 3965 7 10 40 732 1646 11 721 79 133 2268 1 3158 13 1627 45 23 2497 5 99 490 23 118 23 24 71\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 63 8 134 38 9 21 11 459 71 109 5 348 1 1387 8113 4 10 276 46 1429 36 43 4 1 3 1 75 1645 193 9 12 148 8 5130 2510 4925 273 33 54 26 4101 3 6362 44 8113 4266 45 10 1306 618 1 168 15 1 3 1 1053 3570 176 46 3015 3 1 570 7 1 1128 178 6 3007 248 3 6 1 59 177 19 21 11 40 117 2220 437\n1\t515 7416 142 257 6257 2296 1126 4 25 6828 1 74 2088 395 1612 27 8745 671 926 3 295 15 25 147 886 1629 1 196 3 5 5593 5 26 1049 142 5 2 1754 4 611 27 2296 1126 805 1 3 271 19 1 909 200 1 707 13 92 439 494 7479 40 58 334 7 978 293 363 395 4131 1668 412 216 3 3339 22 258 7 62 46 3 2 8339 263 11 55 1035 2 6239 9560 1 2 164 41 2 9208 34 4635 371 5 932 28 4 1 625 80 7906 903 1598 1198 2092 5 117 86 2271 111 577 1 184 1250 138 1604 72 93 24 2 156 8236 2816 5 734 1988 5862 8658 5 1 459 1262 1 2311 421 28 4 1 66 3029 10 5 3 2 4143 4 32 1 1 1 8394 874 136 27 151 671 29 1159 1 15 25 2919 136 2 1400 9654 3 1 1658 55 2296 2 1559 5631 15 25 1952 9 8303 3 1464 382 1421 5669 14 2 1884 4 6517 207 1822 4 2 8311 5121 2790 1280\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2343 2 360 141 16 37 97 10 100 1145 5742 15 2 263 3 927 4 298 2717 66 8650 31 232 4 706 1587 18 59 248 7 2539 341 620 59 7 4324 632 18 6673 49 10 74 3 117 248 7 1 13 120 7 1 164 7 1 482 993 3361 5297 3 1990 333 1145 3487 911 36 3 5466 3 1346 9491 4 1300 36 4380 3 98 5707 1 5415 4 127 5 1 855 164 3 1 9061 1145 1745 2693 13 92 164 7 1 482 2465 6 1 2738 4 1 6201 104 66 195 234 2433 3 407 580 4324 2 4715 4278 553 67 2320 30 5927 3 1202 9461 706 171 1018 309 4368 3 42 34 248 15 1073 7545 3 356 4 4549 66 1980 4536 54 24 13 130 64 9 141 3 6435 43 1822 1951 3 25 130 90 174 36 592 13 777\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 63 241 194 526 4 2976 1110 5 3254 277 172 94 28 4 137 4790 4826 28 4 62 402 3 2 3413 1727 2 3433 954 772 28 29 9127 498 65 5 351 126 28 30 461 9 6283 1 3707 142 8362 4040 14 28 4 1 74 17 207 106 1 240 2998 182 3 34 11 1373 6 2 2674 2399 397 15 8283 453 3 2 2 1298 123 103 5 7643 1 3 6 146 113 8260 7 2 2889 3 1837 1395 28 16 2896 1222 5863\n1\t12 122 6 52 68 964 227 5 87 669 338 1 82 706 8324 4 2 103 2425 17 78 4 1 21 19 3 1209 6698 6 2856 2575 5 122 89 79 96 9 1176 191 24 57 5281 5 1 82 706 73 6308 65 46 4441 15 1 215 292 316 133 2 8324 6 9057 16 738 1 14 78 14 8 112 9 158 8 83 96 317 2 84 934 311 133 9 933 2939 294 4 4080 10 65 3 50 6 11 7075 36 37 97 2750 311 112 9 21 37 78 11 33 713 46 254 5 8477 86 298 13 40 57 1246 7 1443 7 1058 172 15 6706 295 3 3075 4 25 156 124 8 143 474 17 5 79 6 128 25 261 1100 15 25 406 216 76 202 407 335 9 1188 1093 3 805 9 21 6 2 1313 29 1 401 4 25 921 4101 19 154 420 946 184 319 5 26 446 5 64 9 19 2 1114 136 11 76 229 100 3659 42 53 5 118 11 29 225 9 382 40 71 19 1771\n1\t8 56 83 1023 15 656 436 10 6 73 33 59 64 11 161 164 2037 19 25 3 83 175 5 96 95 9541 45 23 176 542 227 68 468 365 11 9 164 6 403 34 9 73 27 789 27 40 308 71 1989 11 59 25 4650 3010 7 1 111 4 283 25 711 316 3 11 27 451 1603 422 5 64 11 1221 37 33 495 90 1 166 6633 45 11 213 1052 1509 75 78 2812 123 2 67 24 5 139 16 23 115 13 150 54 93 36 5 734 11 9 18 56 57 10 513 43 304 7029 31 296 18 11 289 146 422 68 1 4 147 3820 6444 41 43 82 184 43 46 514 121 30 742 7400 3 2 46 7779 111 4 1083 480 1 233 11 9 6 2 638 2854 108 8 118 195 11 8 12 301 540 30 6314 11 9 18 511 26 5 50 6280 42 28 4 1 46 113 104 180 107 7 2 223 290 9 18 4229 16 50 683 3 645 1 5727 8 187 10 1 331\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 657 2835 10 88 24 71 2 53 108 2 112 16 1 17 6 20 2 31 240 441 831 955 8242 1 1854 6 519 6445 519 1530 1 572 276 3 1 478 693 52 838 2887 531 123 7 9578 1 822 3 1666 22 519 955 1 1077 6 386 3 6 20 3244 1 2286 38 1 1140 17 1 113 651 6 1 1 508 22 121 3 481 2883 1 3930 1 121 6 49 10 130 26 5222 3 1087 49 10 130 26 42 2 572 16 8651 553 30 1 2778 1460 59 45 483\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2003 8 1887 11 12 101 4337 7 1 2269 8 12 8 98 57 1 6564 5 99 1 7222 1606 8 6313 7607 3111 1402 38 1 360 4122 1 120 7 1 347 22 548 3 46 1 2208 11 26 35 22 1968 16 9 791 24 100 24 284 28 4 6028 59 1 442 40 235 5 87 15 1 1199 1739 1 551 4 1100 647 8 149 1 212 131 8919 10 181 11 1 171 230 33 191 9498 62 456 3 2703 29 239 1715 45 23 112 7607 3111 5675 83 351 116 85 19 9\n0\t1 397 1353 22 401 98 1 1398 1049 960 51 22 97 922 32 9 272 926 17 1 1003 28 12 1 4 2014 106 218 12 2052 30 1 1685 1084 4 1290 218 12 2945 30 27 63 26 46 211 49 25 22 106 33 709 154 18 244 89 11 12 323 211 12 56 39 2 865 2206 267 32 9153 5 37 27 440 5 87 1 166 177 737 42 39 11 127 267 22 52 36 1 691 11 33 1382 29 1 182 4 20 722 39 7191 20 11 1 1063 1553 122 47 94 1 1515 1 18 498 77 31 594 4 623 8508 775 3 1035 29 4138 2466 9 18 12 1 80 1262 839 8 24 117 5125 3856 37 78 860 3 216 337 77 146 37 8 118 11 1 1217 460 4 9 18 76 26 2831 30 9 5594 8 39 449 11 1 360 9026 3 76 70 52 3878 5 131 62 7976 7 237 138 502 45 23 22 2 786 925 9 36 1 15 104 36 3 3990 7 9328 23 24 237 138\n0\t100 10 136 1076 1 6897 3 9696 48 6 377 5 26 6 9034 8 591 336 1 178 15 1 7 86 6426 8981 7 1 750 4 2 3297 1611 136 2588 30 10 197 110 850 115 13 79 4 11 431 4 1 106 33 139 5 1 8547 2312 3 561 5914 2019 25 11 431 4 1 5914 658 12 78 138 68 9 212 2814 115 13 92 312 4 132 568 3369 11 1348 2615 5027 101 3963 740 2 1085 2704 4 1 199 6 51 22 3583 4 7111 7 9 3369 4789 115 13 2663 2428 1 2583 3 7882 4 66 2423 615 3 3467 47 48 22 377 5 26 5107 5 127 1980 22 1 115 13 92 453 30 3 1 82 171 7 22 14 4345 3 1289 14 33 5223 245 49 317 770 15 132 2256 1765 42 254 5 2818 1 5886 4933 16 3230 13 3369 6 31 1233 21 5 64 3633 8 173 354 10 660 11 3 54 373 20 4517 9 125 1 5199 2955 4 2 9983 13 10 45 23 191 64 10\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1150 9 18 19 1771 8 563 11 1 18 511 414 65 5 48 10 5586 79 19 1 155 4 1 1723 17 308 8 159 11 12 7 194 8 57 5 760 110 10 418 142 167 501 15 1 804 101 11 8977 124 22 101 3246 125 8411 245 1 250 129 40 162 38 44 5 90 23 230 1140 16 44 7353 3 1 182 4 1 18 56 844 23 51 22 111 105 97 8399 9606 51 12 2 84 178 29 1 182 11 400 472 79 30 4064 17 790 9 6 2 46 5447 3459 141 17 8 497 10 12 279 1 2551\n0\t0 0 0 0 0 0 0 0 0 0 162 7 9 18 6 695 8 179 1 4493 685 2 423 1 4 2 6730 12 240 3 130 1851 16 43 4267 6231 51 6 311 162 211 38 1 108 16 1632 1 250 129 253 2 1369 29 2 7 4855 7 1 750 4 2 7134 6 20 722 10 19 33 22 200 15 7 9 21 19 28 3994 3 10 39 3883 13 2718 34 118 11 3311 76 2089 3128 1 250 129 403 9 15 4690 9902 6 93 20 695 10 432 2 13 424 8 7663 4752 7 1 1174 30 490 8 467 11 244 20 2 91 1651 17 15 5491 1097 42 832 5 878 19 3266 245 1 82 350 4 1 951 28 1810 1 604 4 1804 11 1 250 129 40 796 7 14 684 951 181 2692 30 1 212 1689 14 109 60 130 1142 60 181 5 26 121 7 43 232 4 32 34 1 82 171 7 1 108 115 13 8844 9 21 59 45 23 555 5 26 1120 30 2764 6196 3531\n1\t82 2070 72 54 1064 2 1 27 63 7 1 166 744 94 34 6 2 996 20 2 5885 14 27 6 1979 36 2 27 5 1650 75 2 1238 228 60 2731 85 15 1 147 7141 196 42 49 60 3155 11 44 3838 213 39 2 3838 11 1 893 1560 189 1 102 418 5 390 4901 69 6 2 941 44 517 1633 1714 14 72 357 5 70 2 29 25 221 270 199 32 283 2 129 35 6 46 28 5321 7 1 2353 5 102 5321 49 72 64 244 2 5 2 277 5321 129 49 72 64 122 357 5 735 16 25 1313 14 2 996 20 14 2 5885 7 50 1520 42 279 133 9 67 39 5 64 9 129 1069 266 15 132 23 202 357 5 555 23 57 28 854 1070 451 5 96 38 1 958 3 75 62 733 76 8722 17 14 395 442 60 380 122 14 28 54 442 62 147 2063 608 72 205 563 9 247 160 5 26 446 5 8517 99 9 131 15 2 1089 2867 42 279 110\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 336 9 18 220 8 12 1450 3 8 159 10 19 1 567 1393 10 12 37 1462 3 3391 8 2474 354 283 16 513 42 2 18 5 99 15 116 231 30 13 1226 6070 7159 16 8817 168 4 3 43 7337\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 12 37 1634 10 247 299 5 99 29 513 55 1 178 106 1 282 6 712 2 55 207 20 299 5 99 7 9 108 8 134 805 1 178 106 2 282 6 15 2 6 20 55 299 5 836 41 300 45 11 12 1 59 185 4 1 18 11 23 39 282 19 7205 712 2 300 33 130 24 39 612 11 28 178 7 9328 300 98 1 18 54 26 837 19 2 732 3432 50 884 890 5 11 1746 99 194 1 141 99 10 805 300 23 88 335 725 16 358 719 11 699 9 18 4031 6291 8 7827 19 116 3830 3 7964 3157 7 1 3631 4 210 104 11 8 24 117 575\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 40 5 26 28 4 1 113 1545 19 1 756 29 1 4457 10 270 1 312 4 2 131 9568 200 2 542 231 3 498 10 77 2 169 1087 286 211 2553 4 2 687 231 528 15 3 5304 4629 7161 3 145 202 619 42 13 2044 86 8710 641 789 42 2 267 3 153 328 5 26 1129 105 97 289 3 96 39 73 86 466 120 22 195 2916 98 33 130 9955 1055 1636 3 182 65 2123 62 1569 30 101 105 9 6 2 5072 641 40 10 123 9955 43 1636 3798 14 101 1 416 17 10 40 299 136 403 1943 7 233 1 59 85 10 40 56 71 686 12 49 10 2970 1 1697 469 4 294 5188 3 25 5943 13 872 8 2564 292 294 5188 76 26 1547 1155 220 27 12 1 302 1 131 89 86 8576 641 63 128 87 109 45 10 7115 86 1569 3 153 90 435 2 330 324 4 776\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 213 5739 73 8 59 89 10 38 2507 140 1 108 28 4 1 156 104 8 24 152 20 71 446 5 99 664 5 13 92 121 6 2007 1 443 216 6 2007 1 119 6 903 3 1 212 18 6 39 3206 3 7883 16 665 69 285 2 9256 1 9256 6 39 721 2324 7 2 69 145 58 17 8 96 81 1227 256 10 7 2 13 3828 333 1 166 439 478 1380 1875 2 4134 6 1256 4662 11 125 1 401 3 33 333 3339 2962 15 2484 7 478 13 18\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 649 4 2 8724 35 1304 1 1641 4827 6 47 5 564 550 9 46 2116 21 6 31 15 2 904 775 1619 9767 3 2 28 5321 278 30 2 5684 21 20 1822 4 1231\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 118 9 981 1164 588 32 275 1711 202 1194 172 94 1 131 2165 17 8 112 9 880 8 83 118 3740 17 8 335 133 110 8 112 1895 1 1293 1 59 1832 177 6 11 1 59 334 8 214 5 751 1 3299 19 305 12 7 8632 3 11 12 59 1 74 102 11 6 17 207 4010 646 359 288 45 261 40 95 19 106 5 751 1 330 140 8896 786 79 29 8 459 221 1 74 461 1 59 224 601 6 11 1 7500 101 32 8632 33 59 309 19 50 305 2228 3 50 850 530 8 128 221 1027\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 323 5940 7631 2908 80 188 7 1 21 176 52 41 364 36 17 98 51 22 4975 188 39 1256 1356 36 1 1796 3 11 1 206 384 5 26 7 112 15 8753 1 59 56 3045 278 12 1 282 35 262 17 220 51 12 58 201 8 83 118 66 651 11 1306 9 28 6 279 6515 3737 6901\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 28 155 5 1 663 4 1 49 374 15 1677 422 5 4008 47 472 62 7690 5 1 94 62 1186 7656 10 143 729 48 12 19 1 412 69 1 103 374 54 694 140 10 3 1 184 374 54 2900 110 1 8651 4 611 54 100 64 592 13 724 33 256 10 19 3481 1441 385 15 80 4 1 82 1879 6733 203 2092 4 1 2101 3252 9 644 8583 3 4833 623 6 32 6667 395 6897 5 6163 345 823 69 33 57 10 119 954 1341 242 5 309 1330 286 1198 1761 7 1 3368 3896 6 100 1435 3 121 11 29 1974 41 13 252 6 2 84 1433 158 6314 116 6891 335 3301 927 3 2219 5 1286 1262 7 698 130 23 41 116 6891 2923 52 3560 9 21 6 93 1492 19 388 7 86 1145 856 7 66 1 4016 3 8492 4 1 1280 249 251 90 1 2429 16\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2477 6 2 84 108 8 11 43 81 96 11 9 228 20 26 370 19 2 306 471 58 729 9 1 18 6 1111 3 34 2890 63 96 6 20 144 2 15 2 9271 19 10 741 65 1642 7 1 9271 569 3 37 926 378 517 11 1427 103 4663 555 310 3 9 907 11 34 257 6958 1912 76 209 306 45 72 1961 7 3119 3 87 34 7 9 234 5 90 126 3040 1 103 282 69 7 1 3 44 9241 61 1 113 171 180 71 107 7 2 223 290 53 16 16 34 1041 34 16 1 2254 45 275 63 348 126 490 786 348 949 1427 2992 349 259 32 666 1479 23 16 253 9\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 6 2 683 6315 21 38 102 81 35 149 239 82 3 352 28 174 3038 62 922 7 500 157 6 73 27 100 2178 5 284 41 6 2 15 102 1410 537 770 7 2 106 60 762 60 1036 5 3964 3328 75 5 284 29 44 408 7 44 4479 290 125 85 33 390 4758 94 3328 2486 5 8563 27 271 142 5 2 53 329 7 59 5 1110 5 3 1006 44 5 2459 2693 13 777 2 56 53 21 197 3536 2504 41 11 66 6 1219 7 2001 703 2 53 21 34 115 13 1149\n0\t61 34 111 516 7 62 5316 3 165 997 15 62 8666 1781 1 344 4 1 67 6 36 1 1689 41 764 103 106 1 4827 6 9620 3 643 142 14 33 328 5 2 111 5 1291 2633 5423 1 1 1983 4145 2070 6 534 66 181 5 26 1 986 1666 16 80 4 1 772 1983 293 2170 10 924 276 138 68 2 9428 3 1 534 5232 90 10 832 5 64 95 240 1733 7 1 823 4 1 34 10 276 36 6 2 5232 1 121 6 364 68 2444 127 3901 634 36 2 658 4 537 35 481 1023 19 3128 3 9 151 10 4607 16 1 4145 5 564 126 142 7 943 1035 5 8940 966 2503 9372 6 924 138 68 95 4 1 201 4 1903 171 7 9 108 27 181 5 6601 5 1 952 4 25 607 1440 9 18 6 1581 56 7226 1 121 6 565 1 67 6 6465 1 1983 6 46 46 772 3 51 6 162 38 9 141 10 6 20 55 2 53 5 29 136 403 41 82\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 3692 11 12 50 2671 9 6 1 113 1540 8 96 8 63 55 134 42 390 50 430 18 2233 8255 8 348 23 4875 8255\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4539 40 165 5 26 1 113 251 249 57 117 1 212 312 4 1083 2 67 7 2 4539 594 148 85 1165 6 1 541 4 1673 3 2216 6 48 199 5 99 110 3 783 6 28 4 1 700 4531 7 2 249 251 7 2 223 290 8 1090 490 385 15 1 3 1 50 277 80 430 249 5061 13 252 74 431 792 15 1 4477 5 199 8926 638 35 6 93 599 16 6 404 5 25 1400 7 639 5 2033 35 6 516 34 9 488 29 1 166 387 842 25 5776 3048 5 1 94 32 44 9113 792 31 1406 19 1 113 1105 541 488 835 113 4 194 6 11 10 198 270 334 7 148 387 66 151 9 249 251 2 148 216 4 5056 7 2 85 106 202 154 2218 19 249 181 5 26 781 199 1 166 188 125 3 125 3 2287\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2907 254 5 134 48 12 1 210 177 38 9 1 91 505 345 4 264 91 748 16 1 4795 1 345 1471 10 54 24 71 327 45 1 263 1417 1 215 901 2 222 2912 361 236 227 1560 3 53 1097 7 8391 5 1851 2 84 934 4 53 4948 3 2 138 67 2519 68 1 88 209 65 8340 13 872 144 5337 2 678 147 4880 36 2 11 7510 13 150 64 11 9 18 12 89 7 2569 10 289 7 1 551 4 3266 145 477 5 96 9 6 940 2742 556 30 1045 1354 341 9944 49 10 255 5 253 104 47 4 382 3493 7 1 576 156 5775 13 1118 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 56 619 79 14 10 6 2 267 3665 1740 8703 6 1528 14 1 1284 919 3 307 999 5 309 10 826 227 16 1 267 5 26 1574 3 13 92 1077 6 56 501 3 1 274 1657 22 2 2421 5 8 354 11 23 99 9 21 15 2 658 4 2 156 4 116 4 9391 3 6264 5 26 8890 3 496 13 252 2995 19 37 1080 32 6579 36 1439 1709 32 3836 1032 11 10 6 7 1 306 6733 18 17 48 151 10 52 68 11 6 1 7281 4 1 81 35 472 185 7 1 135 3044 16 5821 8 128 149 50 1537 29 1 178 106 8703 224 2 274 4 4365 16 58 1649 302 7 31 202 9843 3358 34 2 222 3 34 1 138 16 2420\n0\t50 635 151 138 4033 68 4460 8 230 3867 142 4 1 1019 2424 9 51 6 58 1992 19 1 388 1723 791 2776 30 488 835 55 2428 236 58 397 1992 16 1 215 21 3893 2882 7 1 1540 1 59 1992 340 6 914 31 6233 5 241 244 355 2 1058 803 13 252 18 12 37 91 32 2 4 101 3 7826 16 95 85 1165 17 6244 49 10 12 1716 11 145 2275 11 261 54 186 1 85 3 9507 5 2967 10 14 2 3324 10 228 26 4 796 5 1554 6775 1 4 1 1 3 3131 47 17 49 23 284 1 155 4 1 388 1723 236 58 3506 11 11 6 48 317 45 23 87 90 1 2082 4 2424 10 1024 10 6 229 113 2111 136 19 5413 37 11 116 438 76 52 4441 1484 1 4 1 3443 4 1 7896 3 5893 4 116 1296 4 438 136 133 194 8 63 348 23 11 10 153 70 95 138 94 1 74 814 1311 458 145 273 468 26 884 3072 223 183 1 714\n0\t2666 30 50 2240 249 4716 89 10 478 2 163 52 240 68 10 152 705 6 30 237 1 210 203 21 11 8 24 117 1586 2 462 2941 1525 30 570 32 86 567 178 8 88 348 42 160 5 26 56 573 17 8 12 37 1120 11 8 339 474 5067 9 21 1263 1941 505 258 30 1 259 809 8963 7 25 6248 1115 14 7 20 4233 119 6971 3 43 4 1 265 180 9284 3 145 536 7 2 1165 49 1 1143 4 7554 3 1 1276 1 1003 465 15 6 11 42 20 695 28 54 2 21 14 1065 3 509 3 37 20 782 14 9 54 328 5 8658 188 65 2 222 15 2 156 211 4834 204 3 1057 17 3911 72 24 8963 6413 9957 493 242 5 26 722 17 310 577 14 761 3438 3 3402 87 348 503 35 7 9 1184 234 6 2896 3 227 5 1978 2 1119 4193 7 1 750 4 1 58 4941 45 317 160 5 90 2 203 141 29 225 90 10 2959 9 28 6 235\n1\t1 158 17 93 649 146 38 75 264 622 3 55 157 4 1205 81 12 7 1074 5 82 55 7 5286 13 92 21 6 31 1260 4 2 821 30 2 3755 35 1436 285 1 4483 3717 521 94 1 347 12 10 649 1 67 4 31 3028 4 7210 603 157 6 94 27 6 19 2785 29 1 182 4 1 4180 676 1 74 185 4 1 21 649 1 67 4 25 566 16 5336 7 7182 1 330 3764 25 5 25 157 94 101 4303 25 1042 6 152 59 4 1 4929 2080 32 122 264 2514 4 3 17 286 25 566 16 5336 6 14 1360 6108 14 7 13 92 21 6 1171 30 43 4 1 113 9578 1488 35 40 1 466 280 54 26 7 174 85 3 174 334 2 72 63 70 204 2 53 3289 4 25 3088 121 3981 292 2572 32 2 3 1424 519 7 1733 41 129 1 21 6 128 31 731 7649 16 1 9578 2433 14 109 14 16 1 2196 4 1 1700 3 5926 1353 7 1 9578 4277\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 489 135 8 219 185 4 9 19 4798 9389 50 6097 4409 14 8 219 2 6547 119 3 9094 5 20 2 625 427 32 1 1313 4 4834 88 209 542 5 3948 235 7406 2 10 12 37 91 10 89 79 175 5 6972 5055 122 200 3 4397 88 8 118 97 124 22 248 7 1247 5 2559 7 19 1 6152 4 2 340 353 41 6317 17 3402 3727 131 2 103 1451 16 116 1754 42 747 3 782 11 81 61 909 5 946 5 64 132 1 1735 4 1 55 30 2714 3390 756\n1\t406 172 10 6 25 585 35 40 5 122 827 316 3 702 17 30 1 665 274 30 25 1508 3 35 270 125 14 49 25 435 271 5 7182 3 25 1916 6 1172 142 5 31 1108 2486 362 11 4304 6 1 111 4 20 1083 1 3880 29 74 27 10 2 3947 17 1108 825 5 348 1 260 3 5 26 20 2708 1 584 32 85 5 85 11 27 348 137 35 175 5 1876 38 411 3 25 13 7624 6984 262 30 15 1 352 4 2 3201 4 66 1 598 15 1429 1799 16 1166 3 1166 39 14 1 598 114 15 1 1091 6238 11 61 7736 7 1 2736 183 3 285 1 392 69 33 721 19 5994 1429 1799 5 223 94 1 7194 730 57 71 41 311 71 3546 30 13 92 170 35 309 7 1186 172 123 10 3 80 4 126 22 52 4051 68 1 5981 103 52 3 262 30 17 23 751 1 1820 14 11 6 396 1 111 72 720 140 727 32 7201 5 41 13 109 279 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 9 30 680 781 19 2240 19 405 5 36 10 14 8 179 5430 12 169 211 32 48 8 1 59 2745 3510 8 57 533 1 18 12 6097 7206 5418 29 75 489 2 18 8 39 3126 7878 13 92 454 35 367 9 6 28 4 1 1340 104 4 34 85 786 272 47 28 2519 39 28 1146 11 6 55 279 2 13 7567 6 2 78 138 2851 68 8 320 44 5 1718 17 8 143 175 5 99 2 13 150 96 9 6 2 18 328 254 5 36 220 33 96 33 130 3 83 793 10\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 39 219 9 18 1188 1163 16 1 85 7 535 2569 8 192 2 622 1946 11 40 105 78 85 19 50 8794 8 321 2 500 8 214 1 18 6908 2 4183 3491 5 3437 155 8 93 214 11 8 176 2 163 36 1922 45 27 61 896 50 430 427 7 1 389 18 12 32 561 1248 63 1743 2 1128 32 7962 1608 3 50 430 178 7 1 18 12 49 1 598 61 588 1356 3 1 28 35 12 37 4787 5 25 1093 3 27 2268 1 2214 14 45 11 8778 54 182 1 392 10 322 1333 34 8 54 36 5 134 38 9 108 1608 28 52 3566 6 31 2896 1646 8120 11 6\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 30 237 1 210 18 117 1001 45 23 24 5 932 2 21 1 259 35 266 8062 7 68 83 90 1 1589 135 8 24 5 134 11 8 88 99 7 1032 1639 268 183 8 88 99 1 1625 16 9 4 2 108 1895 3543 130 26 32 95 18 94 9 133 9 18 6 36 2 1541 4 2575 5 3 1472 116 2097 7 2 261 15 350 4 2 1568 3611 76 853 11 9 18 6 20 279 2 45 8 57 31 1988 3780 3 57 5 1017 194 420 187 10 5 1 1594 9193 183 2512 9 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 152 28 4 50 430 581 8 54 354 11 307 4011 110 51 6 43 84 121 7 10 3 10 289 11 20 34 8104 124 22\n1\t0 0 208 12 20 852 1 1127 839 4 42 31 58 1041 2254 8 57 455 10 12 501 17 20 9 3629 13 7 2 40 248 31 3215 329 4 4392 1 3525 4 2868 1 6 15 4519 3 47 29 44 298 416 355 7 1245 15 1 416 3 44 2567 60 6 101 3172 30 44 625 2002 35 784 5 112 44 3 44 2823 17 7879 2 1839 1446 19 25 2778 1 2894 1839 1446 6 9762 30 1 233 11 1 2823 6 605 3696 4119 29 1 558 17 4491 6 696 19 31 5 1 5 889 4491 6 7732 30 2568 153 36 37 27 3 4491 4622 27 196 1 319 32 1508 98 380 10 5 4491 5 186 1 4119 7 25 8779 13 252 6 152 2 6945 141 14 4491 3567 3 2486 38 992 140 762 2 2112 3 43 46 686 1636 236 58 11 63 139 260 123 139 5836 2 1420 10 36 1 864 3 923 1636 22 105 184 16 3813 17 7 50 1520 6 2 138 3 52 3476 21 16 2420\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1060 6 2 18 1822 4 8254 290 10 6 2 1883 158 3 721 50 838 1 389 290 294 6 332 1528 7 25 1103 4 2 5366 4009 3 5138 6 14 1 4620 17 7893 752 4 2 496 5531 1736 1499 1 1300 189 3 19 412 6 631 32 1 799 62 120 889 7 1 471 34 7 399 9 18 6 28 4 1 113 276 29 1 157 4 2 4009 3 3 734 2 212 230 5 1 135 80 81 76 209 47 4 1 856 6523 3 507 595 2610 30 9 609 176 29 1 80 2422 4 112 4260\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 990 6 7095 5 26 58 52 1359 5 435 3 2 658 4 1490 1072 1018 40 220 367 11 27 12 7 5 3825 7 9 30 25 1278 35 553 122 4057 4 84 171 61 6 435 3 196 5 87 25 692 686 3 782 1 201 22 20 105 573 193 80 24 195 5343 32 1014 1 21 40 464 478 363 1242 32 19 31 161 1182 10 3 10 3605 29 268 69 781 2 178 4 1 16 2937 16 48 811 36 719 29 2 290 480 9 1 67 6 167 2318 7 2 426 4 111 3 1 397 6 28 178 1008 2913 1301 3 379 846 1403 1796 3 1539 4020 480 86 8908 1109 8 1975 405 5 64 75 10 34 1066 47 3 1826 169 338 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1407 140 202 28 431 4 9 251 3 39 339 186 3041 10 343 14 193 420 219 4775 4 767 6372 3 98 10 645 162 147 180 455 11 1399 19 8 159 275 735 36 11 19 2098 31 431 4 749 663 57 202 1 166 2991 630 4 1 171 22 240 204 43 61 53 19 82 289 1491 3 508 22 147 5 2 8596 33 130 24 100 925 9\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 6 229 1 210 21 11 8 24 117 575 145 6775 710 29 1185 3 1826 2786 34 1 3140 37 1 1587 247 31 8 191 134 10 6 56 254 5 15 95 4 1 120 2769 7 1 108 51 6 59 28 1730 353 7 1 201 3 145 3584 58 1730 971 41 13 3422 8 24 1274 10 755 47 4 394 10 229 153 6156 132 2 345 4274 9 6 1674 2 991 4 86 1955 790 1020 4 5 146 52 3735 436 54 26 2 52 2186 1020 73 1 21 6 2 306 2226 269 41 37 7 2206 11 23 76 100 70 9142 13 92 148 1152 6 11 8 192 273 43 1185 1465 6 25 8153 253 2 21 1882 14 53 3 350 1 618 45 23 175 5 2612 1 66 181 5 26 3343 200 970 23 228 14 109 139 1929 187 7 2 394 14\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 336 9 141 646 920 110 9 40 5 26 1 113 388 18 180 575 8667 79 3 50 493 636 39 16 11 4932 760 9 108 72 563 48 5 504 3 72 165 610 48 72 5627 1069 1129 49 11 808 5631 196 65 421 1 6078 30 1 72 1345 219 11 185 38 277 5 723 984 10 12 11 491 4 3 2368 850 144 123 1 250 129 24 5 2456 11 36 4105 72 118 11 317 7 9847 3343 11 78 213 1927 352 34 11 1264 17 1581 45 9 18 6 7 317 558 388 1320 760 110 10 6 279 1 319 3 42 20 55 11 573 36 42 573 17 20 862 565 1952 528 491 76 26 7 1320 16 23 45 23 760 9 108\n0\t2 2596 559 15 4633 1 1516 2026 176 452 1 344 4 1 21 123 1265 42 34 3445 396 19 392 20 211 227 5 26 2 3 105 16 261 5 55 96 38 1034 1 644 859 228 1718 66 8 1331 228 26 1 1175 11 36 392 5789 3 5408 197 2 3131 4 340 5 75 33 4338 855 1476 17 1 2314 39 153 216 73 42 20 211 3 29 86 683 1 21 40 58 2935 1181 377 5 187 2 1589 38 75 392 6301 4 2 129 243 68 1 3367 4 486 3327 1251 30 13 7527 5749 380 2 547 1663 25 129 802 4 1053 3 3269 1 2015 2345 17 22 928 5 6163 129 6 14 1 684 6008 51 56 213 2 163 4 1300 189 450 440 2 1736 1778 3 153 90 2 3282 4 5533 1990 5749 39 5276 3 3 689 1147 228 24 5 1110 1 918 45 27 153 357 47 2 547 278 195 3 702 13 777 20 2 464 141 17 7 1 182 23 3305 1006 48 6 10 53 332 2798\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 470 95 111 1 3235 6114 14 27 54 2369 2 4923 3508 125 2 5480 3 1205 4 1 67 516 9 18 39 271 95 66 111 1 3235 3 11 63 323 26 2763 5 1775 45 23 22 3023 3 1774 11 705 902 35 1296 11 51 6 162 5 359 1 371 22 1907 35 1 898 6 11 9945 1604 8 56 381 9 108 6 2 2211 2267 334 3 95 111 2291 11 6947 10 93 2291 1 1 1 1 3 1 882 11 7 2 1524 3430 3317 1 18 6 2571 211 3 2 103 412 2289 76 20 90 14 1423 31 1880 14 25 265 7 11 822 43 228 26 1558 17 98 805 524 54 26 2 1546 16 95 111 1 3235\n0\t1243 140 2 212 3962 1464 4017 27 57 2 3902 25 15 3942 4007 3 98 16 156 300 55 3583 5 9211 4659 6 237 295 32 106 27 6 9901 30 8 3388 11 29 225 1076 168 76 26 501 17 207 55 52 211 68 1 994 45 23 143 1374 4 3962 22 6000 4 43 1563 4554 17 3795 3 1620 1 47 4 450 20 59 33 564 126 33 63 2382 3 1337 126 295 30 2 625 899 3 1 91 559 2874 156 36 23 190 1006 79 114 8 99 9 18 5 1 8 1322 2368 73 8 39 405 5 64 2190 4 127 102 1500 76 1 3720 3310 4 156 3302 3 5524 4 2 3 98 8 1640 48 3282 8 4 611 42 18 94 513 3 20 59 27 15 17 27 87 10 69 8 88 787 2 347 38 34 1 439 188 7 9 141 17 8 54 1017 50 157 13 3986 1350 4 9 18 89 174 3795 9791 233 5 26 1253 19 25 4125 63 3795 9791 3720 1661 3 27 63 87 10\n0\t38 95 4 1259 17 8 54 24 179 2 5530 5 111 54 131 75 27 1168 65 7 8 55 57 43 796 7 152 283 48 13 5140 1333 20 50 59 465 15 1 135 1 353 35 262 114 20 87 105 91 2 2340 17 27 88 20 24 2052 9 21 45 27 236 20 55 34 137 103 188 11 130 26 1256 7 51 11 111 596 54 3704 23 83 64 95 1635 4 41 82 1659 120 7 1 74 628 8 54 24 338 5 64 146 36 656 48 6 55 2428 6 8326 6 7 9 158 286 27 153 309 1 166 129 27 266 7 1 74 135 184 2082 19 62 1871 144 201 1 166 353 16 2 264 919 10 89 1 18 527 68 10 459 5265 13 2519 8 192 2 111 1787 9 147 826 5 305 1042 6 2 45 23 22 2 1787 83 99 9 18 588 7 15 298 4911 9 18 114 676 162 16 503 3 10 6 373 28 18 8 4108 26 4025 65 19 2388 41 133 117 702\n1\t329 7 25 3609 51 61 97 168 66 8 381 2034 33 2403 1 477 4 2 103 487 608 841 47 1 3 1 393 590 77 66 1325 3353 1 67 1413 115 13 3221 360 178 5562 49 1 1207 8408 6464 5 1776 16 25 231 5 149 3405 5 25 1389 38 25 231 11 2841 550 115 13 1226 430 178 653 49 1 170 164 475 25 532 3 44 2671 959 550 13 1601 1 171 5484 62 546 530 115 13 659 1993 5 3609 561 2647 2236 5 131 144 27 1196 31 918 1570 3 6 1134 7 34 25 121 2237 27 57 2 627 1761 7 9 682 13 5036 2917 9805 144 27 12 37 260 16 1 185 4 6464 27 1012 46 148 3 4142 13 35 262 1 185 4 112 4584 2 1796 4 6663 19 1 1250 1 1300 109 189 1 684 4720 13 4850 35 262 1 185 4 3232 2 8231 919 1071 293 13 3422 72 59 64 44 16 2 156 1507 1 651 35 262 532 419 31 1485 9433 13 130 64 6464\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 957 4186 4 1 3607 1008 2 658 4 1383 242 5 564 102 3 2 8 187 10 2 843 47 4 1860 3643 3 50 16 1 18 6 373 1 210 4 1 10 56 173 26 556 2556 52 245 133 9 18 8 173 352 17 1682 43 240 7737 189 1 3 1 74 4186 7 205 6 2 2642 1577 21 11 40 390 2 1280 3210 1 330 6 31 3 1 957 6 2 202 3416 41 18 11 40 23 3343 19 1 3135 6754 896 36 1 34 1 104 22 301 7523 5 28 2877 33 33 59 1720 1 4848 442 5 8778 65 796 7 1 8 6528 515 3 24 102 264 397 6655 29 216 737 17 45 819 107 34 277 104 4 205 23 149 725 5648 155 3 3194 189 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 173 365 144 37 97 4902 6355 9 880 4070 6 28 4 1 80 509 4235 8 24 117 107 7 50 3223 13 2719 8 24 107 34 1022 755 3428 3 283 1022 358 431 3441 311 8 173 186 9 131 13 6696 106 6 1 2305 7 1950 13 659 1022 6449 51 12 2 178 11 1807 4035 3448 5 2 63 23 497 144 27 114 3559 27 39 175 5 3658 3873 30 403 9 136 6557 3018 1514 340 30 7193 13 8732 51 22 105 97 2411 168 7 9 4811 13 1701 1632 1022 358 544 15 2 178 11 2 1230 161 164 2601 1807 4035 15 2 4259 4 6674 136 4035 22 8981 224 19 1 27 165 1 1653 4632 7 25 8652 2930 9 161 164 6 403 162 17 667 43 1230 6588 207 2616 13 252 178 6 56 509 3 55 223 1394 535 9861 1099 42 36 4359 13 150 54 284 43 709 1402 243 68 64 9 131 3041\n0\t55 2610 1204 1 545 1437 610 144 307 6 253 132 2 184 934 38 126 3 144 33 22 1774 5 3693 62 9697 13 92 129 1273 6 20 53 29 513 58 1138 41 923 1273 844 1 410 20 56 3379 29 34 38 48 629 5 949 3 37 1 238 1102 735 13 92 1776 16 1 741 3 15 58 148 20 1204 95 356 4 14 5 48 1 212 1776 12 8279 13 252 6 28 4 1 210 5178 4 2 347 8 24 117 575 10 6 586 3 2 351 4 290 45 23 24 20 284 1 1158 1899 1 18 3 284 110 45 23 24 284 1 1158 1899 1 18 3 592 13 499 6 202 14 45 1 272 4 253 1 18 12 5 1 1158 11 6 75 775 248 3 903 9 18 705 10 6 2 1152 1221 73 10 88 24 71 53 57 33 19 10 29 1 5597 4 86 1246 3 33 229 54 24 71 446 5 70 2 53 3209 3 43 53 7540 13 7017 83 351 116 387 284 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 36 9 18 1878 42 293 574 4 623 30 3 8 96 42 138 98 300 42 832 5 365 49 23 22 20 45 23 22 20 133 11 141 39 335 194 83 438 38 235 39 6558 9431\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 352 1 69 1017 116 319 1 5133 4 1 18 4347 1 74 886 40 44 766 73 27 12 4451 19 768 207 110 30 4792 571 4719 3 60 6475 3 2 4486 8267 4477 66 58 28 789 196 295 301 13 2361 3656 985 22 591 136 2379 7 1044 4 1 4719 2 1 98 3849 1 155 4 1 13 3 9206 99 21 32 2 1949 4908 3 33 33 139 5 84 5 2909 1 158 3499 11 33 22 1 59 81 11 24 2 973 4 9 46 1228 803 13 2656 15 2 4827 1 708 11 51 12 58 4719 2506 51 12 52 68 28 454 4758 1 98 11 1 4477 1680 1 1 3 1 8 560 6 1 6 13 1 74 6769 6 2 4719 173 90 47 2 3 60 3908 105 32 2 264 9528 176 32 50 63 261 773 11\n1\t318 102 172 9490 13 22 20 262 30 2020 296 1488 294 3142 12 712 2020 296 171 7 1 1 1278 88 24 728 248 37 4465 172 3513 11 6 2 580 16 2522 13 677 22 82 4955 7 1022 6449 1183 3 27 6 2769 14 2 5901 1368 1183 12 4539 7 1 584 93 189 3 48 12 52 4739 16 31 51 22 2987 4386 125 3 8137 13 499 6 595 1221 11 51 6 37 78 848 7 1 74 4207 7 387 1 848 12 13 6714 4 1 767 186 2 9574 4264 66 54 26 254 5 6020 340 1 17 187 1 1063 1365 16 1 7 1 6419 477 7 1 13 5537 367 34 458 1 121 6 501 3 8 24 209 5 8015 7 50 1967 172 11 129 12 1366 138 68 95 8 83 96 4252 117 165 1 1365 27 896 1022 755 1 233 11 2362 12 2 53 13 6714 4 1 584 8434 148 1267 6479 1 3678 460 61 8463 13 252 12 84 231 3560 3 1 251 1421 65 46 109 30 95\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1517 381 9 18 73 51 12 2 2438 7 1 1014 1 523 12 578 6 2 84 353 3 27 1049 10 675 1579 6836 12 105 161 5 26 3 63 261 56 309 17 13 3221 84 353 7 9 899 12 35 419 1384 5 2327 2 9915 3 1618 454 35 1699 4445 140 4352 13 2120 43 190 96 1 18 12 10 2151 1 1112 14 10 679 4 1417 30 2 342 719 4 3276 13 1118 1475 79 80 38 9 18 6 11 10 89 23 96 38 2 1232 3 75 43 81 22 1774 5 1288 16 48 33 241 1107 7 9 326 3 717 49 1348 1421 16 3128 8 214 10 2763 5 96 11 51 12 2 85 49 81 1436 16 58 729 75 23 190 230 38 1 3329 4 1 290\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 646 348 23 2525 636 5 5761 9 18 5 90 10 4739 16 756 12 46 297 3646 2310 6 757 47 3 2777 75 87 33 87 194 23 228 322 33 83 87 10 46 322 207 16 5183 1441 378 4 1 66 6600 3 8162 22 377 5 24 7 62 33 22 367 5 24 1604 1 120 139 200 7 2 4 4487 508 385 62 111 15 58 2651\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28 4 4120 31 855 1 59 177 5 354 10 6 763 6065 372 1 1 3177 6 3705 4 9 870 4623 15 286 174 202 6350 8 143 36 1 4929 1571 3 9 324 247 78 4 31 7801 19 110 8 24 58 312 144 1130 25 85 19 2 6503 98 805 1078 75 91 25 1058 104 24 71 4017 5648 5 25 1065 18 3 34 1 879 15 25 147 1522 2922 1 4794 282 9 213 55 11 91 30 9274 3 1078 5535 405 5 87 1 88 24 71 237 2194\n1\t40 100 71 915 5 95 3962 10 2091 255 14 58 1197 11 1 410 7 7766 9 21 15 2 78 52 54 93 36 5 3692 48 1803 367 49 27 12 30 2 4530 4017 32 2297 172 4 536 204 3 94 34 9 2504 72 190 1006 5275 45 10 6 128 888 5 2469 228 519 96 11 10 54 26 4607 5 3497 2436 68 5 139 19 7702 72 22 36 1 120 7 50 1 1590 4 1 9 6 1 302 144 1 2015 9051 35 6 936 6 1 129 7 1 141 73 27 2 536 1359 5 1 27 270 3320 4 9 9 424 7 1 250 177 11 8 3 1 7 50 1520 3184 47 7 9 141 3 11 72 114 20 946 838 5 43 3260 1 120 7 1 18 66 1 2381 3184 47 15 84 7882 3 2466 814 5 3350 1095 264 9528 17 8 96 11 9 6 936 1111 73 10 79 16 48 6301 1 958 4 2433 11 6 5 134 11 10 109 100 26 915 5 2 4 111 4 9290\n1\t1064 2 1058 5815 7 66 31 2536 12 10 1113 2753 3 2380 385 5 116 558 15 2 4 2 3540 1877 444 1727 2 3 3 44 1191 22 516 44 1877 1 3 447 6376 9018 11 9023 633 341 93 1076 5732 367 86 8906 187 415 893 6627 3 198 1049 415 7 1377 4 62 28 228 8015 11 1 8642 3 6507 4 1 6697 1981 128 1834 13 1842 3547 22 5 1 441 39 14 1 1292 4 5038 6 5 3 5 1 1109 4 893 3805 3270 7 1 2736 3 199 69 14 3651 5 1 52 8532 1782 214 7 10 88 26 1 4 5038 3 3 22 55 7 11 2094 976 2 7632 253 2 3430 2266 3803 1782 5 4442 1137 1 9065 1664 5 44 32 1 228 26 17 10 93 8650 2 287 7 321 4 13 10 41 812 194 1 2741 4442 1981 6 31 1846 3 3215 158 3 2 1700 637 16 137 11 110 51 6 313 3322 505 3 8792 14 6 1884 14 1 212 21 3316 41 621 19 44 1127\n1\t5666 14 33 87 7 9 135 1 3958 3372 140 1 3 5 106 2630 7240 3 1 1212 4 10 6 198 1057 17 37 6 1 11 30 1 6705 4 1 1162 5 154 1438 482 236 2 510 3 586 4494 7 257 234 3 11 6 144 1 2717 72 24 71 340 100 1435 181 5 3038 1 869 4 257 91 3 1 82 601 4 1 1124 1208 154 423 6888 10 6 38 75 97 999 5 359 1 534 601 3 20 1 4 43 4 257 6 20 2 91 1689 3 30 712 9 2717 3 283 66 4 1 22 53 3 66 573 33 63 26 7366 197 882 3 1 8008 3 6430 1242 30 110 423 6 20 52 68 31 1764 15 2717 11 6 37 806 5 26 1837 3 6957 5 1 1138 30 188 11 230 138 3 52 3476 29 239 3 436 2585 4457 21 6 2 5347 3385 3 1269 391 4 2548 616 15 833 3 93 31 665 4 75 78 63 26 6471 3 340 30 2 21 35 6 93 59 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 143 504 78 49 8 1150 9 18 3 10 4104 79 1695 45 23 36 53 1794 53 129 1273 11 4373 23 77 2 129 3 151 23 474 38 949 468 112 9 682 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3932 2 4743 9200 18 1 18 544 142 46 1470 8 12 56 3565 30 1 67 3 1 948 4 1 135 17 1 393 12 2 900 1 18 12 160 385 8100 3 12 2000 65 2339 10 384 36 1441 5 2 46 714 17 497 48 51 6 58 714 1 18 6 39 125 3 94 202 719 1 410 6 39 303 1437 48 3136 144 61 34 1 8399 1389 7 1 21 303 51 12 58 2651 29 34 38 95 4 1 1659 985 7 1 994 9 21 6 36 133 2 701 948 3 98 100 1565 47 35 114 110 46 9 21 276 36 1 1278 39 2183 47 4 319 3 100 9701 1 135 2 148\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 284 1 821 16 1 74 85 155 7 10 12 2873 11 85 11 8 159 1 15 3744 6275 3 10 12 31 313 324 3 46 78 36 1 1533 172 1372 8 3808 671 19 9 324 3 12 962 1977 6 400 4405 14 1803 1803 6944 6 2 6245 919 106 14 962 1977 2148 122 14 2 4646 4 1 166 271 16 4950 10 12 36 133 102 1713 1413 9 6 67 38 112 3 9906 17 8 339 64 10 7 9 2939 1453 155 5 1 2 360 85 6\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 112 9 108 8 467 1 67 190 20 26 1 1726 17 1 1206 80 407 151 65 16 110 23 70 5 118 2 103 222 38 239 129 1 111 33 175 23 5 825 38 450 8 39 96 11 23 495 36 9 18 1013 317 77\n1\t0 0 0 0 0 0 0 0 0 8520 6 31 161 1170 5444 35 6 587 14 2 4 16 25 4 720 3981 6 2 754 1814 5444 4 632 3 8520 14 31 2342 3 14 2 3792 6 4126 11 2 3666 632 1513 1288 15 8520 3 37 27 1 7273 4 31 7 5 1960 1 21 6 38 976 1296 4 4554 1353 3 80 8541 13 150 173 354 9 21 2160 1 212 21 6 7 297 40 2 86 2 223 67 66 40 71 2619 37 109 11 1 2206 4 1 21 6 39 1452 2 900 16 681 269 10 6 31 1703 158 398 681 269 86 2 747 158 398 681 269 86 2 3323 10 39 863 2708 86 1646 36 86 2689 1714 25 3374 226 178 19 1 6 67 3 263 6 171 22 3711 205 1 4531 22 3249 23 63 348 1 111 33 24 46 5956 10 12 20 55 2695 16 11 349 165 1 113 21 918 3 7 1 2118 21 3631 12 39 1233 3 38 1 3556 367 1 828 99 10\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 937 219 9 21 29 1 21 6438 3 5 26 1784 10 12 19 4 1 210 124 180 117 57 1 6564 5 836 83 70 79 1989 51 22 1 211 3 548 91 124 608 1191 4 3 98 51 22 1 489 91 703 3332 28 621 77 1 1967 1 861 12 5999 3 20 7 2 53 699 10 343 36 1 9946 5482 721 297 47 4 1229 1543 1 1675 4 2 2270 1 2036 12 146 189 8225 259 599 200 15 2 822 3 1 171 61 14 91 14 1902 171 17 20 14 91 14 1665 1041 3 419 1 1418 11 154 427 310 14 2 900 1197 5 450 1 59 1362 865 12 1 176 4 1 8160 3300 2 382 176 2 1420 1856 32 1 1 119 12 483 3652 3 1 393 55 2194 8 54 59 354 9 18 5 261 8452 31 665 4 75 2 203 21 6 20 377 26 176 2102 41 300 31 8452\n0\t3 28 4 1 2475 6 1 166 259 11 266 4849 4346 1209 840 7 1 2121 4 840 251 3 27 6 39 14 464 14 1 761 1277 7 9 135 1 82 1277 39 38 3525 5 70 25 464 456 689 195 145 34 16 402 445 616 17 9 21 6 39 1634 45 10 247 16 1 46 806 19 1 1128 2479 3 62 8 54 229 24 2910 51 6 2 222 4 840 17 42 100 52 68 43 1764 5299 2954 19 1 3954 4 1 1 1028 3452 19 1 82 874 276 84 3 25 2749 223 11 27 1123 5 1890 25 2100 15 6 232 4 211 29 1287 51 6 93 2 350 547 178 106 1 506 621 7 112 15 2 447 1 7488 15 1 672 6 1 8889 177 8 24 117 107 7 2 135 10 6 39 2 3928 3339 19 2 8922 13 92 393 6 483 565 23 54 504 1 506 5 256 65 78 52 4 2 566 68 27 2788 851 789 75 33 89 227 319 5 90 2 4384 115 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 3 358 3298 219 34 535 251 4 3 1023 9 6 30 237 28 4 1 2982 138 212 201 61 46 1321 7 1 546 33 1012 3 292 1 3925 251 12 595 9341 10 12 1683 956 3 50 4108 26 1 166 197 894 72 76 26 133 10 316 14 10 6 2 251 66 8 54 100 70 1415 4 956 3 331 4249 5 1 2982 16 132 2 609 251 3 1 1090 7 34 3 54 354 9 251 5 261 292 43 717 7186 191 26 1050 73 4 43 1217 9050 5 1 2982 16 7423 9 251 19 305 3 3324\n1\t7358 75 78 6 1 1774 5 187 65 16 25 6413 3 75 78 6 11 1946 1774 5 7 639 5 359 1 82 112 4 25 727 6 48 9 18 6 34 5722 13 2595 1239 23 228 96 11 1 2126 4 1 18 22 4257 16 709 9531 322 145 747 5 4043 33 22 1265 2758 14 2 6266 1787 63 134 33 22 34 3040 8 54 328 29 154 111 1492 5 64 154 1876 5 126 19 1 2066 41 917 126 19 1 8 284 1 2225 3062 154 1393 3 657 50 974 276 36 1 938 7820 4846 15 2 6524 331 4 642 715 910 3 23 118 1 6161 129 55 40 1 808 7258 13 12 4233 227 14 1 808 7258 55 193 27 88 1622 10 142 197 1496 2 1254 851 1895 3543 247 7 3 1 119 200 75 9 342 713 5 2108 15 239 4971 13 7414 134 4353 26 2 4459 684 1211 20 227 5 26 738 1 113 104 7 17 407 2296 2 77 1 870 3 6 2529 227 16 413 3 415\n1\t22 1829 7659 4 4084 127 102 81 24 1457 15 239 82 62 212 727 3 22 20 1076 7 1044 4 1 443 73 33 175 1 5837 17 243 73 33 173 352 648 5 239 82 9 699 33 118 239 82 105 109 5 2321 62 2558 51 6 58 7 1 769 1024 55 14 33 1844 239 82 16 62 4322 33 56 112 239 82 5637 666 60 153 175 44 532 5 6252 73 60 1371 44 46 1878 3 666 11 60 153 175 5637 5 597 44 73 60 153 175 5 26 13 724 1 80 240 1329 4 1 21 6 11 5893 4 62 161 3575 1 102 415 173 352 26 5859 33 481 352 101 28 1 9459 1 82 1 34 62 1703 2576 7 1044 4 62 2904 49 5637 2080 638 9454 24 23 71 34 50 60 6 56 46 749 11 60 475 196 5 131 1 212 234 992 3 44 360 8491 2 304 3306 4 5415 3 2 1817 11 6 496 2422 5 26 117 107 805 1 111 59 1 3 156 508 88\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8978 207 75 1 700 267 4 249 10 40 71 2042 172 220 1 46 74 431 17 10 40 3884 15 1 166 1343 2268 1 46 226 4207 73 207 106 6 19 3215 1650 22 605 334 738 1721 417 35 76 100 597 32 257 987 134 2 184 1359 5 3 7 257 74 72 64 75 2817 2 259 1240 1 6181 75 1104 1776 16 1 6153 6 58 425 2112 144 34 23 415 22 2189 15 3 75 116 1892 63 26 2175 49 1 2185 4 116 157 1937 11 444 2 2268 72 889 3 7 1 398 335\n1\t16 9 6 2 901 4 2566 3 1961 3 1 7186 33 63 26 5496 1467 1337 7 1037 14 31 2755 3 2611 14 25 4770 341 138 2755 68 27 9506 3 72 24 2 327 103 67 11 1834 1 13 8196 6 162 41 2741 16 95 302 69 10 6 20 31 215 9198 10 153 131 882 11 951 5 1 3216 648 38 42 41 4101 69 10 6 1674 2 53 67 15 43 514 2263 1037 6 5118 15 25 3840 3 111 4 648 69 8 12 169 1120 15 1 5943 13 136 5417 6 162 9909 60 1630 322 17 42 20 610 2 1201 9433 13 2611 245 6 7 514 5078 2 1904 3 6804 129 1581 51 6 20 78 5 216 8340 13 724 90 58 2082 69 9 6 108 180 223 71 2 325 4 44 1093 3 9 6 58 6193 60 7 154 178 60 3 61 10 20 16 1159 1 21 54 229 77 509 9596 8 591 7301 44 278 7 1 178 189 44 3 13 92 21 93 40 2 609 13 47 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 555 8 88 134 11 9 131 12 1846 7 42 10 6 692 7 154 40 1 1230 17 509 3 4877 1725 385 15 1 3921 6008 16 5873 693 961 3758 15 55 52 961 4042 32 1 9 1741 119 456 5 597 79 463 3628 41 7 2 1052 2460 52 7406 11 4 31 17 10 228 26 19 16 2 136 286 73 10 380 1 855 296 2 5 66 33 63 323 259 39 36 23 3 414 7 1 2516 37 5 79 9 131 6 39 1 2738 4 737 11 4112 129 6 9902 7 43 921 41 122 19 756 6 1798\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 275 152 419 9 18 358 2682 236 2 46 298 680 33 321 7319 1730 352 14 261 35 153 1017 1099 2110 5 64 45 23 63 1570 58 460 6 169 1345 13 252 21 6 1104 109 1104 8 497 42 167 78 43 232 4 525 29 2 586 1665 1889 8977 18 15 58 1665 41 58 148 586 2126 32 1 505 640 441 3239 494 3 8 4983 10 12 38 7214 115 13 10 6 152 169 782 7 317 6907 275 76 209 125 3 468 100 26 446 5 1431 48 10 6 3 4541 139 295 517 317 2 6051 11 4011 2399 2629 4033 41 146 385 137 2933 115 13 1964 37 556 145 523 9 753 19 50 7905 37 8 83 995 5 525 5 652 1 1020 224 1231 68 1 1955 5 552 508 32 1 166 586 3125 11 8 39 115 13 150 210 21 180 117 107 3 8 63 134 1543 874 19 10 76 100 26\n0\t2170 688 1052 2563 8 57 15 132 2 964 201 3 1404 76 20 2704 2 158 809 215 12 2 885 3 4140 18 11 2786 1 7358 632 4 322 106 22 23 50 5195 24 2911 18 40 881 1328 657 397 2217 6 1 18 6 1529 3 7746 1461 63 100 117 87 1328 688 1 263 1275 42 514 171 5 1 126 5 1917 1 232 4 6476 494 11 6 59 3340 7 502 7 1 769 1 198 360 2501 6 1 59 5444 5 1291 15 43 207 39 688 1 1004 4 34 4945 6 11 1 203 6 620 5 2533 72 63 58 1534 333 257 230 11 586 9225 4 1401 4 1 1453 72 70 43 1117 363 5 131 199 48 1181 377 5 26 1893 23 118 3070 14 1529 1640 14 33 1117 363 209 142 14 426 4 4553 3 1 2281 6 2 188 57 881 1722 540 223 183 656 115 13 9300 7 1 2762 6 6077 3 145 1893 51 22 58 148 5991 41 7 9 161 2590 429 841 47 1 215 13 3382\n1\t336 6449 10 57 2 163 4 382 716 642 11 9820 259 7 1 35 198 181 5 26 29 1 540 334 29 1 540 387 27 6 128 121 1 166 259 7 1 358 18 17 7 50 1062 278 6 20 14 211 14 10 12 7 1 74 141 7 233 23 83 1682 122 78 29 513 2 177 11 89 79 96 91 38 9 18 6 1 1412 4 7 9 18 51 22 59 2075 33 273 6 17 137 87 20 90 9203 36 1 184 5869 314 7 1 74 141 8 338 1 161 879 138 3 127 147 151 28 4 1 226 168 176 903 49 1 164 7 1 1283 3130 47 4 10 5 1 6618 32 137 346 323 2 23 24 5 1942 11 1181 20 536 7 1 166 14 7 3041 9 18 93 1263 2 222 52 882 68 1 74 461 292 1 18 12 84 34 7 513 180 39 19 43 9215 11 8 12 945 7 17 1 344 4 1 18 61 65 5 50 6287 37 139 64 1027 42 279 1\n0\t6 58 21 6 31 19 1 543 4 194 28 88 90 1 524 11 10 6 38 2 6392 35 29 1 46 799 4 25 2659 15 3155 11 157 6 645 3 2633 1246 6 2528 4343 14 27 6 77 2 4 189 985 7 387 6248 3 4084 4973 10 6 37 6361 11 10 844 58 974 16 95 3506 4 9080 55 5 1 169 4295 4 4476 199 2 2771 15 86 4720 13 150 143 96 1 3 416 4 6016 3 1043 503 17 655 1 21 8 192 477 5 853 11 10 57 2 163 5 87 15 110 51 22 37 97 104 4 1 576 3000 7 66 1 2932 41 443 3510 24 478 363 14 109 14 82 1813 8 1331 7 9 524 10 12 7 11 86 1734 12 5 1 4 5613 245 8 563 1092 235 38 49 133 194 3 8 310 47 1 166 699 3 8 39 87 20 73 8265 89 58 991 5 90 199 4219 51 22 484 3 51 22 104 11 694 7 2 4355 3 5395 4 116 6 1\n1\t8 24 5 920 11 5481 4044 6 28 4 50 9816 2737 5481 4044 20 59 3437 10 274 2 1 4022 1 1224 1 3 1 5 9 1344 50 417 3 8 128 5 1 5481 4044 1077 3 4294 5 26 2523 3 1 13 2719 1 18 2105 8 39 928 48 8 367 7 1 2953 73 16 1 80 1871 9 18 554 6 89 30 1 1948 1 786 83 369 79 2095 19 11 220 9 6 28 4 50 430 2737 73 8 118 11 10 12 20 918 1822 30 95 17 8 96 1 4738 11 472 9 18 12 7390 3 62 4510 38 12 39 660 2406 8 39 175 5 1090 9 18 19 1 3956 1102 73 8 343 11 10 12 48 89 1 682 13 6 2 668 1744 3 1242 304 1948 136 1 18 3 121 6 167 573 9 18 6 128 2 299 28 5 99 29 366 3 55 941 854 9 18 6804 1 7299 37 39 24 299 15 110 2523 54 175 10 11 744 39 5 1433 19 1608 2010 11 2397 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9160 1800 380 25 34 7 9 1325 829 1706 739 66 1664 103 422 4 4939 301 2130 7 41 914 2479 15 6992 28 547 2 156 529 4 4759 4281 3 2 6199 13 92 18 7 2 251 4 6437 189 129 3 2 9051 109 262 30 3744 17 480 62 113 9131 205 171 22 5 1 2146 4 1 644 13 3371 2 3556 353 7 1 466 280 361 3 197 1 5576 4 2773 861 361 54 3599 77 1 2918 4 1879 1706\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 74 85 8 159 490 8 143 539 105 1264 29 1 387 8 12 59 38 3334 172 161 3 179 11 300 43 4 1 2812 623 12 105 3287 16 79 5 365 29 1 290 8 57 1 166 2671 49 8 2111 10 2 330 85 2 156 2017 1742 3 9 387 10 12 73 2436 525 29 1 477 4 1 18 232 4 1 18 2 4885 9 178 89 43 4 1 188 918 367 3 114 5 4214 406 7 1 18 291 3 62 2328 1121 14 1474 14 33 88 24 5674 57 8 20 459 587 1 441 8 54 24 71 4126 11 43 4 4931 5 4214 228 4269 122 125 1 14 10 1220 10 143 90 79 539 41 2618 36 1 756 131 15 783 3 1347 1322 1604 34 7 399 2 167 53 18 3 10 28 4 1 700 19 3252 1450 47 4 1731\n0\t1495 1 330 594 6 17 316 1 2281 6 75 63 261 5062 2 454 35 636 5 2410 5917 8 9269 1283 1036 5 139 5 4660 3 1006 5 25 1359 5 25 1848 49 27 4838 243 68 41 122 9903 122 15 1301 3 666 27 12 1 302 516 1 389 12 5 131 129 14 2 45 657 68 819 1200 1 59 1193 8 175 5 1006 6 458 54 23 3224 2 454 35 2945 23 15 132 2 84 787 48 23 8949 83 3282 199 72 22 8390 227 5 365 835 53 41 1265 115 13 252 6 2 668 17 1 265 30 6 1634 20 2 625 788 2683 7 116 1960 115 13 6 1016 1815 27 2995 1 21 19 25 7261 3 123 1581 56 109 7 1 931 1192 17 316 25 129 6 620 14 2 3429 66 151 122 176 36 2 7 1 714 9269 6 1381 501 17 9903 40 122 6 3 48 6 2 84 860 36 403 7 9 3124 193 2657 6586 6 6398 14 1 13 2699 1 5012 9 1153 1373 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 31 1963 1 868 4 204 19 970 2336 65 43 4759 1691 688 850 12 8 1558 1 74 177 11 3264 79 22 137 4728 2802 657 8 118 2976 63 26 5407 3 37 926 17 144 22 33 7 104 198 1012 14 528 51 12 28 129 11 8 179 12 9338 17 1491 5089 10 6722 12 643 142 111 183 1 714 1 82 120 12 775 3370 3 55 1 377 39 143 87 10 16 437 19 1 1069 1 119 6 167 53 3 1 4261 1353 2 757 845 16 127 232 4 6635 1 121 12 1227 20 46 501 1421 47 7 2 346 1174 17 10 34 1082 15 2518 3 807 23 39 582 3379 38 126 94 394 1452 8537 341 1333 101\n0\t11 59 63 7196 31 4 161 3 1906 4728 83 474 16 1 986 3 757 142 16 25 1480 664 5 551 4 9056 9 3029 745 5 333 411 14 1 7588 6782 16 25 78 5 50 51 22 601 363 3 7075 70 490 77 146 11 6 77 257 11 40 71 8386 16 4 27 93 1010 5549 3899 94 2 212 326 4 1311 768 60 40 2 4757 25 442 6 27 6 31 2048 103 13 213 2 464 141 39 20 2 109 1160 461 1 212 85 8 219 9 8 339 70 576 1 233 11 9 12 829 7 1 176 3 230 4 1 18 6 518 5662 538 29 1 10 123 20 352 11 42 385 15 7042 104 14 6 185 4 6452 9591 2297 4290 51 6 676 58 21 538 1820 3198 1 570 681 269 22 1011 91 18 5502 11 2740 16 79 29 2532 552 1 18 32 2 2478 4274 946 838 5 1 1182 132 14 58 560 3763 116 1182 173 9 6 1822 4 2 793 1417 30 2 1285 5 116 558\n0\t123 27 87 49 27 123 27 4351 4 448 49 27 2019 2374 213 2374 6 59 1968 49 27 3 1 2947 271 2873 3 2873 3 3 10 741 65 610 106 1 306 693 10 5 1718 154 8 57 5 645 9457 49 1 178 15 1 5902 5381 2 4262 147 3862 310 19 37 8 88 582 3343 19 1 3135 1094 50 3404 142 3 1236 50 6 20 48 2374 8 149 10 1164 11 80 37 404 291 5 463 995 41 2900 9 859 32 62 258 49 8 64 2 2374 5295 19 1 155 4 2 568 3498 11 4859 79 36 145 2379 13 3221 859 9 18 6 11 2374 791 3457 52 38 1 1364 2807 2096 4 2 1669 298 416 2358 968 11 27 123 38 1 3367 4 537 7 1 1162 1 570 178 106 1 3 8881 2 7134 2857 4825 3 10 6 7928 65 14 31 3625 1115 6871 1275 1 570 4722 79 15 2 1842 808 19 9 8302 8 59 419 10 277 460 73 1 259 35 262 1 315 5902 88 152\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 240 11 2 821 15 58 119 40 390 1 3397 16 102 703 136 1 12 2 501 45 20 1135 8584 2647 7192 6 2 8339 3 775 4278 571 16 1 185 4 4849 21 11 88 24 71 37 78 3606 13 92 2024 1035 29 253 168 61 37 631 11 8 152 10 40 630 4 1 7615 3 641 1212 11 2 18 15 58 119 63 5021 132 14 8 1023 15 82 708 38 1103 4 3766 14 31 378 4 2670 3 60 89 79 9322 44 20 230 16 4341 13 5073 32 5 1217 1 212 272 4 1 441 12 39 14 10 12 7 1 3854 17 72 83 24 1 5576 4 2 1567 672 5 348 199 11 7 2 2814 8 96 275 1260 897 29 13 150 1116 1 2024 1035 5 90 2 866 3 304 21 47 4 2 832 3864 17 10 39 143 916\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6939 1 80 1134 756 1480 294 117 2723 40 1 230 4 2 74 11 12 4847 77 397 183 95 88 26 1001 51 22 43 810 1154 533 3 55 2 156 1269 4449 17 1 67 14 2 212 831 153 734 65 5 5915 13 6 2 1024 14 1010 2126 3 513 5892\n0\t1 1820 189 2 7488 3 2 3792 20 5 798 1 233 11 58 28 88 815 26 11 2670 3 1230 5 241 1 864 4 6797 3 4647 19 1 166 1344 36 9 635 2788 49 8 12 8 273 57 52 5905 68 656 115 13 6044 1 56 439 177 6 11 307 422 181 5 26 1424 16 9 9984 6797 14 322 58 1389 1 1193 533 1 21 424 6 10 56 41 6 10 43 1184 454 848 81 142 1875 27 811 36 1947 322 244 165 423 7409 2336 3 37 8 497 244 377 5 26 7 1 18 14 322 1286 33 114 2 2256 329 110 977 15 9 454 101 423 3 399 27 12 446 5 564 31 161 6769 2 164 3 25 715 2475 5889 15 2962 3 2505 8 3 2 156 82 515 307 12 39 2379 51 1000 16 849 41 13 92 212 1292 3 111 4 1083 1 67 6 332 1 210 177 180 1586 3 8 54 100 354 261 5 351 755 594 3 1099 269 4 62 486 5 99 9 900\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 1319 8 173 96 4 28 177 53 38 110 1 119 1931 61 37 568 23 88 1564 2 140 450 1 121 12 91 11 55 1922 7647 130 26 3 11 6 667 3 1765 48 96 11 8 12 2 325 4 1 74 28 669 333 11 878 86 52 36 2 2737 68 235 9 18 57 5019 7 10 16 2826 47 162 53 63 209 4 9 108 48 151 9 21 55 527 6 11 10 6 91 23 173 55 99 10 15 2 658 4 417 5 90 299 9 40 165 5 26 7 50 401 681 210 104 4 34 290 73 10 6 254 16 79 5 187 2 3441\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5267 12 2 609 2285 11 12 2 74 296 886 1196 6387 7 6364 7 3 2071 44 6387 15 31 1101 13 7567 1059 9 1151 7 66 12 2 330 28 94 44 74 821 3235 3 1585 7 3 44 477 7 6364 12 885 655 44 13 7567 1196 7 7 6364 19 44 6879 821 395 53 66 89 2 609 19 1 157 4 1596 3 25 379 3 62 3117 5 543 1 4 254 7 62 990 5 2500 16 62 184 5117 30 62 13 6211 7 9 280 14 1596 11 27 3023 411 7 9 280 655 25 15 1596 81 7 2524 5340 7 62 569 5 26 1596 610 14 2 148 3 13 6211 7 44 280 14 30 9 609 2774 11 60 1196 31 1748 14 2 113 651 7\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 2 1865 1540 1 210 4 1 9 18 6 14 548 14 2 434 439 994 35 1059 9 12 51 117 2 263 16 9 3309 18 41 114 1 206 39 2311 4107 1 19 25 443 3 98 636 5 90 1 21 65 14 33 337 6 9 928 5 26 2 374 18 41 2 267 41 3070 50 417 1186 711 6 7 1 2442 3 122 3 25 9966 39 114 31 16 62 66 9 9533 9 6 30 237 1 210 21 8 24 107 7 50 8329 51 6 39 58 1335 16 9\n0\t327 5522 13 92 168 4 1 18 1210 131 11 51 12 43 319 1019 16 1759 3 274 161 31 4 1170 4432 3 1034 12 965 5 90 2 2325 572 12 939 775 428 3 13 1226 305 666 10 1225 16 1507 10 12 52 36 1452 10 310 5 31 182 197 5184 2 7230 51 12 2 17 58 7230 1 18 39 65 421 1 6950 7345 16 476 8 1390 7345 16 476 8 88 24 969 535 4 1398 2135 3 219 50 543 14 27 52 13 1701 2 156 2110 7 1 178 94 7718 196 2 1969 10 485 2102 9 18 54 24 2 1197 1298 11 54 90 16 31 240 135 98 10 39 1407 3617 13 92 170 5432 353 262 30 1970 88 24 57 2 78 2223 185 7 34 11 12 160 19 675 9 201 88 24 89 2 53 803 13 150 96 45 33 757 185 3 333 1970 7 25 334 3 720 1 263 3 359 1 3 1621 1 1301 3 734 2 2030 478 9002 9423 98 33 165 9540 13 8170 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 57 2 156 2018 7 1 576 156 1166 1790 15 4 1 5098 7 18 19 5 362 27 310 47 15 2253 487 3 195 255 490 4397 5 1621 417 3 9375 66 6 7 97 1175 28 4 50 1522 4 1 8354 13 92 21 6 38 3598 2 164 35 5051 2 4636 4390 35 151 299 4 650 73 27 6 20 28 4 450 1441 28 4 1 80 1134 4390 8952 1944 30 2356 5237 122 5934 4 5 216 29 25 3598 6 4 448 2337 3 1047 5 4505 51 27 762 2 282 3990 523 2 1158 3 8431 13 252 21 6 84 3 8 449 52 209 47 36 10 7 1 774 3667 40 308 316 340 81 5111 174 53 21 3 8 2004 947 5 1 64 1 957 185 4 1 813 3 2488 7009 3607 8 1090 9 21\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 338 1 74 102 581 98 145 1140 5 134 317 20 160 5 36 9 461 9 6 1 56 3160 3 2411 826 5 3481 229 249 89 4384 1 128 3921 17 327 1648 3145 6 128 536 15 25 231 3 27 40 25 221 9018 831 25 379 451 5 70 3996 4 2 3145 6 37 439 27 25 8458 3 411 15 25 6442 98 27 25 379 3 854 195 1 1995 24 5 149 2 111 5 70 1 374 4 1 429 5 70 126 167 78 2 3640 4 1 82 102 15 59 28 41 102 147 2789 8640 2 3339 606 7892 5904 7 966 167\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8412 7786 6 2 8284 7 2498 35 615 992 8418 30 80 986 940 3 2 6520 1810 361 3 207 19 401 4 101 4596 5 2 132 6 1 804 11 28 4 1 80 2392 7 18 2008 51 22 1105 30 1 2 3 326 17 1 683 4 9 5016 21 6 1 9735 1295 6730 6619 3 59 1056 52 657 42 3508 4 1 562 183 42 34 125 55 1 3992 7 1275 7 31 1635 361 14 2 58 188 780 2 103 105 4901 3 884 1918 1 769 5864 7 43 5034 16 9 17 48 1 3106 361 3 44 413 6 174 1768 3665\n1\t1 1066 371 19 218 1285 5 2 21 11 181 202 7 3770 5 9 461 6 20 3237 2 53 2254 7 698 244 39 1092 9 601 4 1 673 1428 844 2 163 4 974 16 7745 35 1 21 15 39 1 260 356 4 8002 822 217 13 9 6 2040 2 829 3290 15 103 7 1 111 4 1043 41 1177 10 34 255 5 1 1014 14 237 14 145 3096 236 58 2387 675 626 3 578 7646 7763 102 4 1 113 296 171 6094 1711 7 932 120 11 22 5788 3715 7 235 1739 7702 2 170 353 35 8 12 1100 15 32 3 266 2 129 46 78 36 25 82 362 2237 27 6 7539 1056 1728 3 3279 127 22 3016 11 291 1574 32 2693 13 7254 2 462 36 6 2 5 9 135 11 2953 385 15 1 567 1146 291 5 932 31 1854 4 2 237 52 1214 574 2129 45 1039 4261 83 796 23 468 175 5 1369 19 9 28 14 530 3823 9 228 26 610 1 21 23 555 33 89 52 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 55 1006 79 144 8 219 4460 1 59 1335 8 63 209 65 15 11 8 12 1415 15 3 105 904 5 720 1 7306 3662 42 105 464 16 2800 1 18 11 424 20 1 1 121 6 742 10 65 14 2 1235 506 15 2 16 142 1788 7 2 278 14 1 1277 19 25 6826 3 2943 2181 999 5 256 7 1 59 3098 280 7 1 389 135 1 263 6 15 3847 2131 23 742 5 154 625 28 4 25\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1589 53 1540 28 11 6 1067 1 759 11 1 537 2369 7 1 18 419 79 2 356 4 62 7016 17 93 62 449 16 1 3667 5122 5019 1275 7 2 53 278 737 17 1 113 278 533 1 212 18 6 11 4 1 651 35 266 1 462 1223 8 555 60 12 7 52 3648 13 252 18 130 24 2 2302 4274 8 187 10 2\n0\t0 0 0 0 0 0 0 3134 17 8 76 2600 205 1 119 427 3 1 393 16 23 7 1750 4 8617 2 3200 36 1 28 11 8 195 3374 1 435 2180 3 1 532 2080 2327 7 2 3674 5 652 122 155 5 1 231 16 2327 2788 1508 6 749 7117 3 400 5395 4 1 233 11 27 57 6920 34 741 13 724 14 2 5304 35 937 219 50 681 6339 1621 25 113 2540 10 12 2 203 1772 195 50 585 6 2173 11 34 27 40 5 87 5 652 25 2640 155 6 5 1006 87 20 1 4 2 170 58 1234 4 76 2883 122 11 10 12 59 2 18 3 11 25 1238 6 20 588 155 16 8373 10 40 71 683 2828 5 99 25 2421 59 5 118 11 1075 4999 27 76 24 5 543 25 2807 13 19 23 19 4 34 1 11 24 433 2 336 28 9389 10 6 254 227 5 934 15 1 2807 28 85 16 2 3338 17 51 22 43 3451 11 72 1513 55 2074 14 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 58 104 24 6686 50 838 36 9 28 7199 23 2198 8 24 405 5 99 9 18 316 16 125 982 1 28 3 59 85 8 159 10 12 14 2 66 190 24 71 1 349 10 12 4988 13 1118 8 87 320 4 1 18 6 11 10 2610 137 1676 37 9106 11 51 6 128 31 5081 2277 5 99 10 702 1 5660 9 18 1745 30 1 423 1656 4 3078 3 2811 6 273 5 1388 154 423 1898 35 4011 110 144 9 18 40 20 71 758 47 4 3 620 14 396 14 97 82 104 4 3556 8157 8 87 20 8545 13 2071 973 4 18 3 94 133 10 316 12 7086 5 64 11 50 2079 1525 3040 1020 6638 18 6694 54 36 5 99 9 18 19 305 14 283 9 397 19 2 314 1919 2581 472 295 32 1 790 3266\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 71 169 43 85 220 180 219 9 8 192 3990 4135 16 2 973 5 9710 216 6 169 306 5 1 215 916 1 2946 22 3 519 13 1 18 6 1693 41 51 22 28 41 102 268 106 1 857 5 2 688 790 361 751 9 108 42 84 16 2517 1995 3\n1\t380 5281 5 1 3 1 4 1 429 2777 30 1379 11 57 428 19 1 3235 7 438 136 1167 25 73 205 124 934 15 1 915 4 1 4 5529 86 3 8820 1958 6357 1 2592 11 1 6 31 2272 728 3353 5 1 1284 833 4 5529 7 9 1723 2 7335 7 893 1 82 84 21 11 1819 15 869 3 1123 296 157 14 86 5571 6 4926 28 511 96 29 74 4 5390 189 3331 3 124 17 51 22 2 53 4961 1790 15 1 1255 14 1 4 1 4003 5117 3 393 7 1 233 11 9471 3145 14 1539 3564 12 6345 30 2 246 25 221 435 5010 1 166 353 3471 205 3145 3 9 2252 6 481 26 2 13 19 1 3235 6 2 1719 7 154 7 3225 3 9830 7 541 3 2 3501 7 1 895 4 9 360 2254 43 134 11 9 6 25 113 135 7 50 1520 11 2617 198 3 4 22 39 14 452 3 16 137 35 256 9524 7 1 952 4 41 8 555 126 58 749 714\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 432 2 414 7 16 170 35 40 937 433 44 4413 17 4624 44 434 532 2 163 3 5106 44 3830 7137 7 2 260 516 1 518 29 60 93 762 44 13 252 418 142 53 15 2 323 3664 980 7 1 621 6584 1 67 6 1779 3 51 6 3159 4 5 90 1 21 269 2043 1 121 6 464 577 1 2870 1543 5575 728 101 1 955 470 15 43 4 1 210 1043 180 117 107 7 2 1729 2129 168 341 22 39 757 142 15 58 41 2560 93 1 21 40 464 341 13 858 16 813 3 1027 236 46 103 3 48 51 6 276 862 7810 180 100 107 132 36 1495 1837 7183 108 23 63 1899 9 5592\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 74 159 9 21 49 8 12 38 1756 172 161 3 12 301 30 10 98 17 16 172 12 2161 5 149 47 48 1 21 12 195 8 192 2290 28 3 4177 655 1 21 30 2561 38 102 2584 989 3 969 2 8312 292 50 2079 4 1 21 12 2 103 8 12 7 58 111 945 30 48 8 7031 1 847 7 9 21 6 1016 65 31 389 234 11 6 37 1202 3 37 109 1139 11 23 22 1366 7 5 1 21 30 11 3420 17 9 21 93 40 2 119 11 76 3 3162 1995 3 537 8247 15 2 5869 5797 2 1341 5396 2 3430 8395 3 2 109 7209 112 67 9 21 76 20 369 23 224 8 54 354 9 21 5 95 461\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 1037 626 3 578 309 1444 16 1 874 4 4110 2 770 6657 35 8068 8751 1793 15 1 4 234 392 4780 1 3 7894 4110 32 1 74 350 4 9 397 6 254 15 1 277 976 951 65 1 1769 15 4834 3 494 11 1108 3567 1 330 350 19 238 1102 14 1 199 2875 205 2 1091 3 2 127 1102 22 6778 3 17 790 9 6 31 3 8729 15 2 1289 1905 16 596 4 1 460 5863\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 164 6 2 53 21 11 40 2 53 201 66 1680 962 8453 745 492 1777 3 1490 121 30 34 4 127 171 6 46 452 1977 3 22 56 313 7 9 135 8 179 11 33 3193 452 1 5991 6 56 53 3 43 4 10 6 1 18 6 829 46 452 1 265 6 452 1 21 6 169 240 3 1 18 56 863 23 160 318 1 714 9 6 2 46 53 3 3765 135 45 23 36 962 8453 745 492 1777 1490 1 344 4 1 201 7 1 158 3 240 124 98 8 2474 354 23 5 64 9 21\n1\t775 73 8 167 78 1595 44 129 3 114 20 6249 28 222 15 1159 58 729 75 78 60 72 917 7417 140 44 157 14 60 5231 65 15 1658 7386 6333 4526 3 4456 1 1176 390 65 7 1 3877 3 1283 40 2 864 131 4090 457 1490 249 397 1404 4378 6 1490 6107 403 7 154 158 30 1 8 497 11 6 2 1269 21 73 195 1347 1133 6 1126 5 333 14 78 6411 131 1043 1131 14 27 10 432 2 4 6919 1615 29 9 7499 13 499 98 11 1 67 6 553 29 31 3007 4404 15 679 4 9493 627 1587 3 1653 3151 51 22 43 211 42 34 46 661 3 2757 29 1 166 290 42 2 5594 17 42 2 243 837 2908 10 6 1391 3965 7 37 97 1175 395 171 328 105 254 5 90 62 120 16 6861 17 10 3375 8 187 10 2 904 7530 66 190 291 5567 49 1074 5 1 940 4 35 9 21 8371 17 8 230 10 57 43 53 1154 3 3370 126 2593 13 47 4\n0\t47 2 1114 482 4 43 5250 2 406 525 5 122 15 2439 7 2 6865 4 13 743 1277 6 29 1 2430 73 25 2185 165 955 1977 7 2 936 1 1277 196 65 15 28 4 1 633 14 109 14 31 35 6 758 1107 51 22 375 170 374 5066 200 1 6890 35 8 1331 1181 377 5 149 17 35 22 483 761 103 33 780 5 6613 77 1 974 106 1 6 101 3 780 5 2 19 110 203 18 2947 54 134 33 2005 5 1288 16 490 17 479 100 55 7 95 13 92 3567 3 418 81 549 295 32 194 3 519 959 10 16 43 2560 1 2430 196 3355 30 1383 35 22 3023 5 2410 297 45 321 5721 13 677 22 58 56 1683 120 7 1 141 3 80 4 1 85 10 181 36 81 22 2811 200 16 1 10 12 1002 1466 674 10 7099 146 5 1 1928 484 15 1 1198 101 1711 1208 2 423 3 246 375 6521 4 86 236 93 2 129 654 3 1 466 651 40 8986\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7816 37 2 103 30 2001 5049 3 43 4 1 121 6 167 3 80 4 1 293 363 88 195 26 30 2 2437 2042 349 161 635 15 2 547 1182 1043 9103 3 83 70 79 544 38 1 13 252 6 128 2 84 141 1801 172 94 10 12 4303 8 1662 65 133 19 1 558 249 19 2714 37 180 107 169 2 156 6056 104 32 1 29 2 85 49 80 104 61 1933 5 5055 2 5997 2417 19 1956 3 24 122 2 2726 4 2 2977 5200 1849 2681 3172 1 1940 3 1049 11 10 12 888 5 90 2 1145 1724 18 66 152 57 2 6199 13 150 894 11 97 6056 104 89 7 1 76 128 26 1050 279 133 7\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 119 4 1 6 7132 3 31 2755 3269 125 1 1696 3 1 4351 3029 122 5 1621 3 1621 5 1 1530 130 26 2571 17 1 881 571 1638 800 1304 1943 3 492 82 203 2285 3 1 3209 4 9 4862 158 123 814 854 1 2755 6 20 59 27 6 2253 1221 1 6 36 31 7706 391 4 930 16 2 454 35 75 40 100 107 235 37 3094 68 3255 8 63 59 8298 322 176 29 1\n1\t82 68 35 88 24 1012 5038 138 3653 300 5846 8520 6 14 6819 1586 1 1343 35 2448 1 683 4 1223 44 1103 4 1 462 129 6 323 2762 3 4884 6 892 14 1 35 6183 1 170 13 2699 1813 3994 9 21 6 46 55 30 2001 5544 1 593 6 4455 8 555 11 2001 368 7738 54 3143 47 964 3249 36 243 1424 155 19 1 692 6919 388 41 2729 1 861 6 9612 23 24 5 95 7745 35 63 90 2 21 176 53 49 80 4 86 168 186 334 7 1 434 4 2016 1 293 363 3624 6 7 698 80 4 1 2070 363 7 9 21 2963 295 1 5862 1983 3 11 24 390 7 661 203 4121 13 8535 86 4227 1427 1596 1272 8999 40 102 1822 2 1139 141 3 3330 630 4 1 124 11 1417 10 41 7170 10 61 446 5 1708 1 1449 4 9 3210 8858 9 21 6 3021 956 16 95 203 325 41 39 261 288 16 84 111 5 1017 269 4 116 290 394 47 9825 13 3382\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 12 1 210 18 8 24 107 220 8 12 1094 140 47 1 212 18 378 4 101 10 12 211 75 1 7336 54 1776 16 933 3062 4 1 8847 823 5 1643 16 1632 1 6551 1 1 1 45 72 24 107 2377 1354 72 118 7336 4108 875 19 1 823 308 33 16 239 933 178 1 7336 54 6912 1 8847 3 54 875 19 1 823 8669 1 3792 8 241 1 1840 114 20 2221 25 1799 19 7336 3 62 7847 8 2004 241 8 1130 50 319 19 9 8 83 354 9 18 1961 39 947 318 10 6 29 1 3780 2114 41 760 2420\n0\t1 700 5079 17 42 1 8197 9 18 6 38 2 466 2851 35 196 643 136 101 3732 4 2064 14 27 25 1327 35 4094 7 25 9510 1 466 2851 442 6 1740 6 434 94 102 172 3 25 1301 255 155 16 2 3956 59 1 6 1 466 2851 9 290 1740 44 3 963 271 200 848 34 127 81 3 5287 1 282 3 81 200 44 96 146 540 15 44 3 11 2508 60 475 1036 5 139 5 2 3 4062 65 25 3830 5 64 45 244 128 939 60 1148 11 244 434 17 128 3 6348 25 6026 285 1 182 4 1 18 72 149 47 1 302 516 34 4 490 1740 40 2 711 654 294 3 294 11 27 12 3992 4 25 711 3 11 27 643 34 137 81 5 70 155 29 122 3 334 1 1844 19 25 711 3 98 186 25 1327 3 44 73 60 404 122 7861 1 393 6 46 3 1 121 6 46 1054 3 8 36 10 2799 8 99 10 16 1 4923 8 555 8 57 2420\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 1800 76 26 612 19 5577 7 2 53 7014 16 257 417 5 2033 9 215 3 5629 3939 10 12 620 7 371 15 2 4286 5 2611 7 4 1 3517 60 419 2 1313 7232 46 78 1083 38 44 7195 14 718 1951 3 553 1 410 38 1 293 3874 66 1699 44 5 1743 3298 7 1800 1882 2521 1 74 324 165 433 16 501 37 2 330 1363 12 6639 3 1 21 590 47 5 26 264 29 1 714 2 167 489 465 7553 7 9 1723 5 932 1 5109 4 2 46 627 2803\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 152 6017 45 1397 36 5 344 116 1568 16 31 594 37 98 139 1929 3 99 110 42 404 2088 3 37 83 504 3537 3 4673 4019 48 9 18 3 335 34 1 2809 72 24 38 102 42 39 2 211 18 5 99 19 2 1992 41 15 2 1404 4 417 2166 45 317 20 105 2930 5572 3 8111 22 128 167 1053 42 2 2082 5 2095 9 18 14 2 391 4 3981 9 18 6 38 42 377 5 26 5341 211 3 28 52 1689 8 87 20 96 11 624 76 1116 3 36 9 18 17 259 373 6725\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 137 4 23 35 96 2673 6 39 38 1598 96 702 51 6 2 400 264 601 5 1 873 4974 2888 6 28 4 137 3434 10 6 2 901 4 2 170 487 15 1 4846 5 90 7935 25 4053 6 34 38 1749 2 873 9648 11 63 1484 15 1 754 1827 1 131 6 14 5532 14 33 209 3 145 273 11 902 76 773 2 163 4 1 4019 17 10 6 128 46 327 5 99 73 4 1 528 1438 4 1 880 115 13 659 1 234 4 10 6 20 16 81 5 176 36 2109 39 57 31 94 2306 1 9648 6 3 63 187 1 2 2081 7938 4 1500 32 5 5904 36 2 11 1021 1329 151 10 77 28 4 1 225 961 3 211 289 180 219 7 2 4222\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 2332 8918 3 425 16 3247 8 336 9 141 10 1071 52 68 41 37 2682 9 18 6 1 67 4 31 2169 35 2486 51 6 52 5 157 68 3 81 35 825 11 51 6 2 85 16 7266 2 321 5 8 1309 3 650 1407 7 6125 4 9 471 53 523 329 16 31 238 2493 3 1 119 12 3271 3 1002 1 393 247 17 10 12 128 2332 45 23 36 1291 32 147 3820 41 6750 16 1 9 18 6 16 1038 20 31 1234 4 840 41 2504 10 12 20 832 5 99 7 11 8184 146 16 3622\n0\t1 108 6586 485 565 51 12 37 3 1717 125 44 5524 1580 17 60 114 20 485 53 8 83 118 144 1 898 114 9260 6586 3946 132 2 91 1174 51 12 162 78 5 87 16 122 7 1 108 39 73 10 6 2 21 123 20 907 11 31 353 130 1942 1 280 618 91 10 705 367 6689 12 8 96 11 10 6 298 85 11 1297 971 3 1278 357 517 4 1297 14 1244 3284 48 22 72 1785 48 87 33 2564 33 76 131 358 413 605 19 2 8114 5 3 72 76 241 450 6 1 1297 613 37 439 11 33 22 242 5 43 33 186 31 389 8114 4 2226 5569 3 58 28 12 51 5 1 1 238 12 930 3 8 24 100 107 132 91 2286 5685 7264 12 189 2 6430 4 34 1363 29 3 27 1363 155 29 450 630 4 1 7721 2610 122 17 27 643 34 1 2145 6960 13 150 96 1 566 206 35 179 4 9 178 130 186 13 150 2474 354 20 5 64 9 108\n0\t741 15 3795 38 5 1337 47 1 74 15 1 3138 1083 25 147 113 493 3795 20 5 3915 38 4183 47 154 14 27 1336 1256 2 2372 7 2 8354 13 385 1 427 2 9257 1855 1141 491 49 1 3138 615 47 27 6 553 11 1 3877 63 1 506 17 76 100 26 446 5 2162 110 37 1 3138 2307 1 9257 1855 42 28 1352 83 70 122 19 1 3 348 122 11 27 6 5 32 34 1404 11 27 4920 19 3 2373 34 11 27 7199 3 5 20 70 47 4 427 3456 13 9 18 12 37 1865 11 8 339 473 10 1294 10 12 19 756 32 192 5 7806 3 8 219 10 513 8 247 590 142 30 1 4333 8 12 590 142 30 1 5353 1173 224 4 34 6639 8 83 55 365 144 1752 12 5550 3 15 34 127 754 1496 2098 144 1 435 12 1506 3364 15 25 585 605 2 3 51 12 1 1881 799 774 1 182 49 1508 649 1352 100 553 23 490 17 145 2586 4 7669\n1\t519 2 84 391 4 632 36 9 18 63 187 79 31 202 1842 2751 28 1283 3155 11 51 6 56 1468 5 3223 13 150 191 920 11 49 8 74 455 38 9 18 8 12 8 179 1 119 2397 2971 3 8 12 1893 11 1 67 54 26 17 101 2 638 2854 325 8 636 5 187 10 2 3192 10 472 79 38 1099 269 5 26 1435 2151 30 1 141 17 98 8 12 301 433 7 110 51 6 37 78 7073 3 6091 7 9 1540 8 303 1 616 507 11 8 57 323 2178 146 5044 38 3223 13 252 6 20 2 687 638 2854 141 3 7 43 1175 10 12 46 2065 11 27 130 90 132 2 21 94 5987 1 534 4251 4 423 1109 16 37 97 982 19 1 82 1737 8 192 20 619 11 27 999 5 3642 1052 1676 3 3537 423 3122 73 8 93 179 27 1180 11 46 109 7 1 5542 1368 2854 6 28 4 1 80 5927 971 200 3 8 96 1 826 67 6 25 113 5142\n0\t2 15 102 82 3675 8026 571 146 629 11 122 5 3 98 49 33 209 100 438 48 653 5 1 82 3675 17 257 40 9500 5 1453 20 39 4874 1095 17 36 31 2488 7009 7 109 1233 300 20 11 6382 17 8026 118 48 8 13 3514 27 196 34 808 217 3 1 233 11 244 5392 151 122 56 8 497 27 93 5391 47 1 3697 73 1283 27 789 11 7 639 5 359 32 400 5392 2408 27 40 5 2089 423 37 27 418 7416 81 13 677 22 82 647 17 7 2 18 106 2 164 3 3 341 87 23 56 321 95 835 731 6 35 76 27 6893 3 48 76 26 303 4 8101 75 223 76 10 186 16 122 5 39 295 5 144 12 9 18 89 7 1 74 106 114 33 70 1 49 76 23 735 3072 136 133 13 3440 46 670 17 8 128 24 227 85 303 5 348 23 11 9 18 6 1495 55 193 1 312 6 56 797 3 232 4 1 3452 6 4115 17 297 422\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 339 947 5 64 9 108 38 350 111 140 1 141 8 339 947 16 10 5 714 34 4 1 171 61 4643 62 456 36 2394 2181 57 39 1113 10 36 98 33 367 62 456 19 412 36 33 61 242 5 2394 10 12 37 3182 72 34 118 75 76 56 3 27 153 5793 125 25 911 36 561 1 267 4328 4 9 21 12 39 14 509 14 1 2432 3 373 100 211 41 55 2072 8 191 920 11 8 24 100 71 2 580 2394 2181 1787 3 9 18 373 40 20 437 8 96 11 25 523 12 39 14 91 14 25 3344 9 18 76 139 224 14 28 4 1 210 394 104 8 24 117\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 346 21 600 156 120 286 10 666 146 38 5974 11 23 495 149 21 6 7 34 42 42 1161 600 1313 600 1 9998 600 8926 752 600 3 845 34 118 7 1 15 126 41 5 15 450 33 22 257 747 622 3 33 22 257 8942\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 119 12 2764 1 624 61 3 1 377 1101 976 466 57 674 100 455 31 1101 367 1 1161 61 1257 7 9 21 17 10 39 384 5 26 1029 15 1669 1098 51 61 1345 58 1362 1008 38 9 803 13 150 96 9 6 2 16 171 11 76 100 216 805 15 1 2557 1675 4 1 9534 6504 35 291 5 81 16 58 13 150 449 1 9534 6504 149 146 47 4 1 5 359 126 295 32 1 1033 4552 33 24 58 334 7 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 9 937 15 50 379 3 2144 42 138 68 4018 292 42 20 78 700 117 412 353 123 20 291 105 942 7 9 1538 66 6 2 2502 14 27 228 24 10 15 52 8759 7 25 7163 8419 181 55 364 436 14 25 129 6 46 775 4993 962 6 1824 17 25 412 85 6 488 805 25 129 6 20 109 13 4657 6 14 304 2 287 14 8 24 117 1586 17 6 340 46 103 5 1690 1 21 228 24 8362 2 84 934 30 52 19 44 471 6336 2448 1 983 17 676 30 372 2 709 129 169 47 4 2202 15 1 644 686 1 265 6 345 3 9499 151 28 4 25 97 1445 3916 8476 895 40 71 370 19 9 16 4029 13 8736 40 5 26 16 20 1177 9 52 27 12 31 6018 21 1392 3 9 6 28 4 25 8130 502\n0\t7 1 18 89 199 175 5 564 122 16 242 178 7 3 178 47 17 27 12 36 2 8510 6858 16 1629 45 27 57 71 1789 32 1 18 297 228 24 71 51 61 43 211 3758 8 241 28 12 49 1 526 4 1161 2303 28 4 1 1665 104 3 10 498 47 5 26 1040 17 5 113 3350 65 1 267 8 76 311 348 1 567 4722 16 1 2253 4163 27 2898 2 3 2492 38 20 1311 49 146 6 7076 13 2044 1812 1237 1 5264 4 1 18 88 24 2052 1 18 30 1 2253 3474 3005 47 910 269 4 1 416 168 3 253 31 393 11 6 1534 68 4465 2110 4 1610 13 7551 51 22 102 53 824 11 1 18 266 25 280 1529 3 5052 25 716 37 11 630 22 1155 41 1 82 1362 1656 5 1 18 6 1 304 3232 44 129 6 4603 80 4 1 18 66 6 2 13 2687 351 116 85 55 2424 9 461 10 143 1376 5 79 3 8 12 185 4 1 3080 410\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 36 2 1902 1814 9 131 6 16 1259 14 3425 14 8 192 3096 10 123 20 216 16 79 3 94 133 535 767 8 39 173 99 10 3041 10 6 509 3 673 3 16 2 131 11 1 6 370 200 172 989 45 23 3381 10 19 8489 16 9997 19 990 33 273 291 5 24 34 1 166 691 200 36 1 349 161 8156 2037 224 1 3180 3 81 133 1 349 161 986 442 4262 4798 10 93 271 1 166 15 1 344 4 1 748 14 109 19 1 983 51 6 39 5 78 4 2001 691 602 7 10 5 20 8 96 33 88 24 248 2 163 138 4 2 329 5 70 200 127 1636 3 1661 8489 57 43 4 1 166 1636 17 20 670 14 565 14 3425 14 1 344 4 1 131 10 6 20 670 14 53 14 7267 12 3 10 6 2 345 967 5\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2477 6 2 1219 7014 49 8 175 5 64 2 18 702 218 6 132 2 108 7 161 85 18 3050 8 54 24 2716 256 16 52 12 9 67 16 1 10 40 1 4 13 92 34 376 201 1124 62 120 3 15 35 54 20 175 14 31 972 8 24 336 44 216 220 13 3371 80 484 28 4473 73 72 118 11 10 6 1 216 4 1041 8223 7896 478 966 10 12 254 5 5238 132 4473 7 218 28 811 132 2 185 4 9 75 8 405 5 209 5 1 7370 4 49 44 231 6 44 931 500 3 405 5 7158 1072 2961 14 60 3444 4093 29 1773 1 623 533 6 20 8652 539 2106 17 378 40 2 6945 538 11 237 52 68 3 13 92 112 11 6 1012 7 9 616 231 6 5 26 3 13 499 6 58 8638 11 1 231 3892 6121 32 1 1101 907 1060 336\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 181 36 102 28 2 2288 6083 6578 38 31 35 6 556 125 30 1 546 27 1 82 2 609 1055 878 38 2 750 3412 5506 35 6 1459 65 30 2 6042 5602 6 360 14 2 5310 15 174 1255 19 1 4867 60 5716 1423 4912 38 1 321 16 44 7 3 44 2277 5 70 77 1 3118 8 112 1 3289 4 44 7877 1289 15 2 516 2 3 44 464 6335 4 13 4098 171 70 5371 16 72 118 33 5371 16 6630 1046 1727 2 163 4 41 4851 5 26 1 168 801 139 19 3 22 2685 3 3 37 22 1 168 106 1347 276 6913 136 2575 5 25 221 13 5676 1 744 2047 294 6 20 27 151 10 169 935 7 31 362 178 11 27 314 5 26 2 5442 5649 49 27 5324 25 2894 27 77 2 5048\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 31 1536 8 12 1768 5888 30 9 135 7 50 1520 10 6 2 9382 5 137 35 5218 7 1 3004 2251 5 134 11 1 148 6056 1481 8 563 61 5888 30 9 930 6 31 45 1 21 61 1463 14 2314 41 55 14 2 1254 2887 10 54 24 71 138 17 10 12 556 1067 50 97 1046 258 810 14 10 8 337 7 3572 7 1 518 1575 81 384 5 2095 79 3 1838 7 940 30 9 135 987 1861 2 6 1789 142 2 1641 216 1671 5 139 19 2 1085 2462 5 5 1126 43 296 7 2 599 1112 27 1141 38 4334 1481 15 31 2863 1653 11 100 1225 47 4 3 100 3 27 100 599 15 2 1653 1525 65 15 28 8 88 139 926 17 145 355 2 8 419 9 2 59 73 42 1056 138 68 7391\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28 4 4350 113 124 11 8 63 335 133 6281 23 190 728 497 1 17 35 7558 86 39 908 299 1291 16 755 594 1452 3 94 34 247 104 928 5 70 295 32 864 16 39 2 386 85 9945 1 201 15\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2636 9940 7 9 5103 3 5684 238 141 123 25 692 1360 487 3603 3 25 958 148 157 4729 6 3404 6362 1053 2646 5465 6 2 9051 30 19 25 220 1228 2240 249 51 213 227 3059 5 7259 9 14 2 2737 13 92 263 40 43 9665 7 28 1146 2185 25 5 1 11 43 4 1 3274 22 167 9055 41 911 5 11 5957 9 4712 3487 6 2973 17 7 822 4 1 2064 3030 3636 94 9 18 12 4988 10 6 323 3 2091 548 7 31 586 699 8 12 37 11 8 1309 318 310 47 4 50 195 207 2 2737\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 773 534 13 150 365 20 117 28 1143 194 17 14 237 14 145 3096 1 131 130 20 24 71 258 16 174 1032 131 9059 13 1964 765 1 1402 1705 33 22 403 2 167 53 329 4 4243 17 8 128 96 72 130 70 2 249 18 41 9540 13 92 6051 3961\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 144 8 214 9 8 339 149 9 18 2882 8 192 37 1096 72 214 10 72 24 107 10 19 249 183 3 405 2805 5 149 10 3 751 3 24 375 417 942 7 2512 110 28 82 4150 4753 11 10 6 12 1495 193 8 191 134 11 10 6 1265 258 45 23 22 2 2839 3292 23 76 112 9 108 1 5458 22 8175 109 4853 3 1 18 6 109 1613 10 6 407 28 72 76 26 16 257 408 305 9889 72 76 26 10 5 257 2567 1 2164 89 189 164 3 2839 7 9 21 12 37 5487 3 89 23 175 5 1017 52 85 15 116 9 6 407 2 18 11 72 76 99 375 1287\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 84 589 15 34 1 5635 2777 571 16 66 12 105 673 3 130 24 620 52 3824 168 36 129 1 4504 355 2035 378 4 39 246 10 1991 5 36 137 54 24 721 1 410 295 43 4118 269 88 24 89 52 974 16 52 168 36 4 1 21 721 9 28 32 34 85 9005 292 5 64 4504 204 151 1 21 37 279 596 4 3782 1556 5616 3 7535 76 56 36 9 14\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 294 4958 80 8818 21 5 1992 6 28 4 25 138 4449 1078 10 757 224 19 34 4 1 3 9120 66 291 5 80 4 25 817 916 1432 1 1349 3 1 893 2326 22 128 1057 29 225 10 6 1463 7 2 13 3053 481 26 8069 105 4896 41 9846 664 5 43 84 1084 9 21 56 758 47 1 8726 2920 15 661 632 3 1 1109 4 116 661 211 3 595 1623 11 6 888 16 9 6 28 4 137 124 8 54 99 19 2 7052 1393\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2003 8 159 9 29 2 2700 8 179 10 485 56 53 3 1766 36 9591 762 2597 7307 3 8 467 10 59 2591 277 5 26 1784 8 83 96 10 12 55 279 3230 13 499 384 36 1 1 339 1088 704 405 5 87 2 9687 426 4 203 41 2 2637 1222 3535 10 1168 65 15 2 1881 2637 4412 594 3 3334 269 15 34 1 120 101 28 5321 3 23 339 474 364 48 653 5 126 17 5 328 5 90 1 410 474 38 1 120 33 1253 2 4118 29 1 182 3 1 477 4 1 21 66 5 26 1080 1784 247 13 92 59 53 185 56 12 1 8 495 2704 10 16 1038 17 11 12 1 59 5892 13 5944 2 1445 836 10 343 36 2 102 594 21 17 12 7 233 59 8931 1452 45 23 175 31 9687 8360 45 23 175 2 1222 83 1 21 1047 37 1633 15 162 117\n0\t32 79 7 1 74 141 3 83 55 70 79 544 19 8624 3 12 2 17 2083 435 7 1 74 141 3 7 1 3914 42 202 36 244 433 25 76 5 3707 1401 77 1 4418 4 25 308 2 709 3148 11 89 307 539 15 25 4357 646 920 5313 8 114 637 50 2 32 85 5 85 94 7 9 158 34 17 7668 2 607 129 55 7 1 1239 27 29 225 1253 146 5 1 108 27 12 1086 15 2 8021 1 508 143 5021 3 7 1 5409 33 34 17 10 32 122 8624 12 128 1 5102 17 1882 14 14 1448 8553 83 87 656 83 55 328 5 1378 15 257 430 41 257 430 103 2253 35 432 2 1508 3 40 2 4 46 761 2778 244 3 244 3 27 276 36 244 160 5 1289 427 95 13 92 3 61 3 94 2 3166 23 39 357 5 3622 258 35 40 58 1384 5 44 13 872 28 4 127 2491 8553 145 6362 47 4 50 3223 13 614 8 143 112 116 37 1264\n1\t31 483 1127 278 7 66 1 545 6 1366 7 5 1 931 7 66 60 1036 5 1 3451 4 2 766 60 1768 1371 7 639 5 2783 44 2277 5 8065 992 14 1532 32 1 4 1 19 31 3757 6 7157 35 266 2077 16 27 380 2 1087 3306 4 2 164 20 670 14 1618 14 25 379 35 6 3327 189 25 112 16 44 3 1 2728 4 1908 3 13 614 5742 9 21 54 24 71 2 1683 3 240 2331 1078 10 6 2627 10 1714 5 2 3276 6158 7 148 727 1 81 3 1 2370 100 1435 32 1 795 11 472 334 939 10 472 202 350 2 1556 16 1 1908 5 86 1332 280 7 1 3929 3 55 193 3 2077 1457 47 62 486 7 1 9842 33 100 1435 32 48 12 248 5 126 30 1 1842 3 62 1658 13 10 26 9019 1048 3376 5 6835 4 9391 7996 77 2891 212 41 39 908 19 2629 3 3273 72 2630 407 24 1 1514 5 333 4842 14 2 1127 1332 1426 7 257\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 8 74 159 9 21 8 179 10 12 160 5 26 2 53 135 531 49 23 24 127 2514 4 104 236 1227 28 17 7 9 28 51 6 36 3070 1450 41 394 4 121 12 501 119 12 1530 8 338 1 168 106 1 6 848 1 74 156 46 53 443 916 8 12 852 10 5 26 2 2637 21 17 10 12 46 4618 9 18 12 111 138 68 1 1045 1354 56 693 5 90 52 581 8 467 8 56 338 12 20 501 1 28 145 6540 6 1530 17 1 18 12 1375 17 145 20 6540 11 37 369 79 70 155 19 9 18 6 53 16 2 7052 9645 17 16 95 82 3911\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1023 15 80 45 20 34 4 1 817 816 1 251 6 2 84 129 2221 2746 15 84 3409 1076 3 13 150 24 107 8 241 2972 40 20 71 612 19 6194 755 1 9800 12 4652 1 67 427 12 3 384 5 26 2 4 97 817 67 2933 29 28 1746 8 12 1437 45 8 12 20 283 2 1015 4 2 817 803 13 252 21 12 1832 73 10 544 5 19 363 954 522 3 364 19 1 4 1 1223 34 1 817 124 6211 370 19 1 857 3 1357 3 1196 2 84 1068 197 246 5 5090 5 13 150 192 39 1247 11 1 4307 124 87 20 917 1 166 9 6 1 74 21 32 25 8 496 354 34 1 817 124 361 3 354 450\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 240 67 38 2 2169 7 2 392 35 4624 47 19 2084 1 157 4 2 170 282 32 1 4334 3 6 2590 30 9 6203 55 193 27 114 552 97 82 2778 1 21 9301 2 522 3 9 2169 6 195 2 1946 7 2 298 416 11 6 1180 650 30 1 3 55 897 7 82 2800 1 298 416 6 2 1641 3 80 4 1 374 946 46 103 838 5 62 7461 41 4828 266 1 1946 3 1036 27 6 160 5 5460 6684 3 139 77 174 245 1 5548 2080 122 5 24 2 897 14 25 226 5288 14 2 10 6 29 9 272 7 1 21 49 34 898 2296 2324 3 1 67 432 2 528 328 5 335 194 45 23 636 5 793 10 579\n1\t5 2693 13 872 207 48 5382 2772 424 2 1031 50 493 2772 40 294 5 2843 65 94 550 207 2 331 85 329 14 72 64 9805 7 50 493 93 100 214 2 2 976 7 233 73 27 12 128 9763 1103 4 1777 6 2483 2186 3 37 148 16 2522 13 3782 1556 6 101 929 5 2459 174 1961 1248 7 8549 220 27 495 216 16 2 1 4595 4 101 757 142 6 169 148 16 550 27 59 40 25 8319 262 30 294 3 262 30 3351 2192 5 25 6536 47 1467 72 130 34 24 132 13 7527 7 25 670 1556 4 157 407 114 138 216 68 7 1777 19 21 3 7 233 6 52 587 16 25 1039 2263 286 12 2 349 4 7641 29 918 290 1 1748 419 1531 6403 3 5371 16 19 2101 3 1 113 607 353 1570 2040 16 1 216 4 2 11 164 12 3982 128 29 25 5436 202 5 1 3158 13 1627 5 1403 6732 35 1066 7 1 21 3 5 2413 2 2438 148 157 8 9 5835\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1274 26 1274 3747 16 627 1587 3 3243 893 26 2134 408 388 13 2770 6 74 820 65 267 310 47 7 98 27 2371 7 1 18 3 1678 3 27 12 19 2156 366 89 102 820 65 267 3 7421 3532 73 8 39 214 1 915 729 5 26 52 618 6 93 46 211 15 1602 648 38 25 2113 3 253 299 4 8378 132 14 3 8589 132 14 492 325 4 7757 267 124 130 64 1602 8721\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 159 2 1625 16 9 19 174 3481 3 636 5 760 49 10 310 689 2010 12 8 1 67 6 483 1495 1 121 32 1490 6 573 3 8 339 474 364 38 1 647 1923 32 56 1841 5 64 766 70 1490 280 6 132 2 48 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 336 9 21 49 8 12 4618 1163 29 3581 10 6 28 4 50 34 85 430 1139 703 304 847 3 2529 120 22 39 102 4 1 188 5 36 38 9 135 292 97 81 228 20 335 43 4 1 4501 80 4 126 22 3 139 385 15 1 471 10 2405 19 2 2652 1091 9114 35 190 291 9583 5 43 29 17 963 76 1364 23 8137 13 2078 2 21 30 95 396 46 534 3 4140 29 1287 2 2055 16 1862 596 3 847 17 87 359 2 7 100 1082 5 90 79 1717 3 76 87 1 166 16 137 35 22 18 5032 28 4 1 700 1139 124 4 34 290 385 15 224 3 50 5849 13 7479 2 3665\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1915 104 36 2555 142 98 5 1 147 402 4 7416 142 1847 36 127 24 43 232 4 5408 5 7334 801 3970 676 4280 447 1912 69 850 17 48 11 40 5 87 15 235 6 7663 571 5 369 1 206 25 16 33 131 9 224 7 1 6430 4 4299 28 236 58 148 119 69 39 69 3 1035 29 623 3 2 4759 525 5 1 956\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 2 2153 46 362 3264 6143 5256 14 2 4818 1 129 6 128 7 2 5073 6 20 1366 14 14 27 406 12 3 25 672 213 169 1907 7 4637 1 1300 189 3 3264 6 2 103 6 43 345 35 7308 3264 32 2 3838 6 58 1653 41 2277 19 25 185 5 7759 1 6143 5 245 480 490 9 6 128 2 46 837 135 1 362 3264 12 373 52 7902 3 3549 68 25 406 7 406 581 27 5235 15 1334 3 508 73 33 544 5235 15 1 688 7 9 158 27 6 78 52 36 4 1 518 9408 3 362 5588 35 39 1371 2850 2 306 378 4 1 950 4 1 406 136 9 213 738 1 113 6143 10 273 6 299 5 99 3 42 240 5 64 39 75 78 244 1241 125 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 548 227 664 5 31 313 278 30 5071 3 1 233 11 6 618 1 302 1 18 6 37 961 6 11 2224 107 10 34 1448 180 617 284 1 347 2 4291 4846 17 8 449 16 7554 3 3032 10 6 301 264 68 9 108 1013 23 1064 393 2 18 15 48 6 2040 2 265 388 31 215 3486 1 389 18 876 5 438 1 736\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 46 1134 7 25 1730 157 17 46 2161 7 25 1100 727 762 2 487 15 224 3959 32 2 409 205 120 230 46 5239 3 1 791 364 1244 28 76 131 5 1 3419 1 1212 4 1 346 188 7 15 9 1 936 1190 3 1 3680 1224 8 143 504 17 2 3094 108 1441 14 51 61 43 240 168 395 487 6 519 169 2 1330 3 1 4247 4 205 1041 2668 3 12 46 501 8 636 5 139 19 133 1 108 1 710 2433 7 5396 40 1 1514 4 781 146 11 181 169 78 5 727 3651 5 1 52 296 1913 688 73 4 458 10 6 78 52 1832 5 64 94 1 2271 2526 15 1 1258 469 4 1 2010 1 1515 7508 1 5526 4 1 1562 1 772 1 5875 2931 4 1 1 259 32 2617 14 492 56 9602 7 50 5621 3222\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 56 381 476 8 165 10 517 10 12 160 5 26 2 4626 17 10 2722 554 14 2 53 391 4 6045 7 6141 13 150 96 9 40 71 109 2427 167 78 31 4559 249 131 77 2 158 17 664 5 1 120 41 243 215 171 5 24 299 3 26 89 299 142 1605 9 216 7 2 84 161 541 1438 3293 13 614 23 22 2 325 4 1 215 249 251 98 8 192 273 23 76 335 2938 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21 15 1853 3 927 3 2 46 345 7 4637 8482 3 4796 2 5892 10 270 58 85 5 2033 75 9 3427 3960 705 1 74 178 6 2 900 1029 15 3 1 478 6 2444 443 5954 22 197 2407 14 6 1 2000 4 807 58 58 1546 58 240 5574 1 171 4487 1506 3 72 64 9180 16 4868 46 4543 7940 3075 1675 2521 2993 327 3 641 111 4 372 1 645\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 56 381 9 12 3334 49 9 18 310 47 3 8 88 9 76 26 2 18 8 54 131 50 374 5 369 126 1374 1 1687 33 22 246 22 10 6 211 5 64 75 72 88 26 37 30 188 29 132 2 170 563 11 72 54 3\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5593 21 1672 5854 10 6 6 13 92 4428 3115 4 1 147 158 218 184 41 218 84 9486 41 637 10 48 23 76 9 6 2 13 1 4246 9 21 12 1868 959 537 7 9764 96 4 4 1 41 8999 16 9764 94 1 3115 8 63 365 106 33 61 160 15 458 17 1589 9 6 94 513 27 470 1 21 1 49 10 3115 29 1 1672 61 4610 47 29 1 3 1453 11 247 39 2 6063 13 2 170 487 15 2 3033 408 157 432 3 27 6461 77 1 750 4 2 84 1343 2155 106 27 762 2 526 4 3430 5595 35 390 25 140 25 13 252 6 20 56 16 2517 109 20 7305 407 64 126 355 1728 15 43 4 127 5595 1958 1 3430 19 9 6 1031 235 180 107 7 1 18 856 1448 2 1189 4191 43 46 211 2266 3531 23 76 20 26 1120 63 4810 656 76 9 117 645 2672 13 1226 1020 4256\n1\t355 7 1 3443 3 5160 4 1235 9118 7 233 244 165 2 80 1846 27 451 5 139 2146 913 3 1978 1 4 375 754 1235 9118 17 27 3 22 1289 13 7 52 1175 68 4740 15 1 6206 4 3360 4504 3 8032 3337 2 2204 4 678 2516 2514 35 1023 5 3639 1 2591 4 3498 19 9 2146 913 9618 10 498 47 4504 6 2 1235 506 411 3 27 1036 5 87 2 103 2531 19 25 3011 77 1 438 4 275 35 6 4574 15 13 6 20 1 574 4 21 8 531 139 3410 17 7 233 1 121 1514 3 4197 4 3360 4504 90 10 216 5 2 1114 4504 6 1 1323 5501 4 31 3762 32 17 138 68 27 6 6 8032 3337 35 308 316 6 372 127 402 1537 2514 66 60 181 5 87 530 99 44 178 15 14 60 123 44 1773 3 3337 3764 44 747 3 1526 500 927 3 4042 3753 5 26 620 7 121 5452 200 1 13 1701 137 35 36 62 1222 7020 33 83 209 138 68\n0\t308 316 89 2 46 940 7920 370 19 1580 8133 41 2774 15 162 5216 5 155 50 5719 65 2159 3 308 316 8 12 301 9 131 6 2 900 5700 40 34 1 1411 3312 4 2 1 415 22 3628 1805 17 105 5 95 148 507 32 1 3930 51 6 332 58 302 5 582 725 32 599 224 5 1 558 249 2276 15 2 63 4 3 2 3 5994 154 973 4 9 155 5 4359 115 13 115 13 16 1 360 709 4 3147 988 5131 700 709 129 2099 9 259 266 3 27 6 75 53 6 27 322 1923 32 101 722 25 329 6 5 90 5700 176 452 207 36 242 5 90 5651 176 452 17 8155 2734 10 142 15 3358 275 130 2 6387 7 709 37 27 63 1364 10 154 2463 197 3147 988 9 131 54 7211 4 2 1056 288 5700 125 1 522 15 2 5497 136 27 4152 25 7796 3 266 15 1 19 1 3135 4 25 715 460 16 3147 988 8155 1411 8623 73 27 1 8021 4 297 244\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 1431 9 21 14 1847 6 29 225 6750 140 1847 63 26 31 9 739 12 1070 779 9760 13 8623 63 634 3913 340 1 4343 37 58 894 57 31 1037 5 4839 49 27 4786 5 9 4513 4852 1 1341 1648 67 4 40 71 553 1704 71 553 1824 3 71 553 197 5 37 97 4056 293 13 4511 4 137 293 363 291 5 26 2336 200 1 7959 4 3012 415 3 3311 23 88 751 7 1 362 7 1 2736 33 61 14 1060 164 66 6 300 106 33 165 1 462 16 9 803 13 293 1456 4513 1252 6791 6199 13 1149\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 259 40 58 312 4 1913 2054 10 181 27 89 2 156 856 289 7 25 9315 3 38 102 4752 104 11 57 1246 52 4 1105 1318 1232 33 9515 1 4483 9 34 6 46 501 17 176 27 123 20 118 25 1 168 22 197 2305 357 3 488 15 2 1933 3 331 4 27 40 162 5 134 38 1 7347 37 27 15 2504 3 7337 75 6 10 888 5 359 2191 132 2 5491 5180 35 100 2786 235 4 8596 3 144 83 33 369 122 7\n1\t4936 1 601 4 3 1 566 4 25 585 7057 15 1 4212 25 2002 3 80 8541 3553 7 25 3268 28 4373 7737 5 7057 1 435 4 1 3961 3 3525 95 585 88 24 15 62 13 92 121 6 452 3 7 11 734 1666 3 5 9 683 901 4 35 5 26 39 308 3 93 1225 295 29 1 1388 4 1 13 593 3 1 397 6 7898 3 9838 245 1 1106 3084 71 8 57 107 1 309 43 172 989 19 2 388 574 305 2887 12 404 6033 8 3 10 12 407 52 1024 1 1324 1138 868 3 1 3 529 22 39 2 609 13 252 18 88 24 71 1051 42 5 656 10 40 1 1187 37 568 5 24 71 39 2 67 5197 189 2 435 3 585 41 39 7057 41 55 5679 8870 1 119 6 433 3 49 23 504 1409 8910 4 8309 162 255 5 4840 13 499 5 82 407 20 31 21 36 14 4686 1 21 39 38 999 5 149 86 245 28 6 303 1437 2386 279 2 836\n0\t215 4366 251 10 12 5000 202 32 1 357 30 31 3419 7392 4627 35 343 4565 5 8117 3 1 5501 4 48 2 4366 251 88 26 801 89 9 4975 131 3944 32 2 1005 1 697 143 352 3291 30 25 4737 3 1455 4 817 2748 767 3 4 1 7051 2887 12 2050 631 362 19 11 27 12 7 10 59 16 1 100 24 8 107 2 11 37 5040 114 2 5 2 201 4 964 171 37 2043 10 6 14 45 9 389 251 12 1160 7 1137 1 2759 756 5325 106 1 410 1958 2 6 52 7282 3 3733 7 62 1005 451 3 831 10 784 14 45 3 24 6211 7 1321 1 2302 5101 29 6408 11 3126 32 3 11 86 3064 410 12 114 20 1243 295 17 12 3424 1294 2230 2 538 4676 11 486 65 5 1 298 3 3220 4 86 3 33 395 76 13 8534 7 2 4053 106 72 22 340 289 36 3 218 1 191 187 1 956 1228 2 4366 11 65 3 6 10 6 39 11 7234 3\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 28 4 1 1340 289 8 24 117 575 10 6 56 2763 5 99 3 8 12 7 97 1287 8 497 51 6 2 1055 3608 5 9 105 66 151 10 169 1470 45 127 61 482 624 54 33 70 1 166 300 33 300 33 1 120 118 58 7186 50 3 87 20 261 32 62 2733 356 4 22 37 97 211 50 4148 6 1 2215 1 461 42 37 810 42 4551 45 23 36 2733 315 267 98 9 6 16 1038 45 23 36 2202 65 4647 10 229 3772 6 286 174 892 598 2982 267 620 19 10 6 132 2 211 131 3 1 120 19 1 6233 1228 22 539 29 1767 6017 10 54 26 1258 5 359 2 826 543 133 1 1184 120 3 1 4042 4 1 9 251 728 1583 5 1 313 1545 101\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 180 107 2 163 4 930 7 50 1344 17 1053 8682 270 1 8 159 2 1126 3115 7 7517 1 82 2016 8 63 59 449 33 131 1 211 324 5 1 2709 1 184 1308 61 1 119 12 3 1 120 61 28 5321 29 1293 28 3501 6 2 892 1206 178 15 1895 10 12 9360 3 12 1 59 178 8 323 57 2 539 3706 82 68 458 8 63 59 3 434 5638 4542 217 596 190 26 1558 8 118 8 12 852 52 32 110 17 10 2179 8 373 54 20 354 6401 2 1126 3115 41 2709 5 99 9 135\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 251 40 86 5101 3 2579 3 1 1967 6 1 1723 675 236 31 1234 4 15 31 5583 4 1 1248 17 1 1043 21 6 2 1067 1 3164 554 68 8499 29 984 1 238 5 2 14 1 443 1026 1 4 1 35 670 196 433 362 778 34 7 399 13 3053 1113 236 2 9359 5286 538 5 1 265 3 238 11 190 1364 1 4 4286 4680 9 4186 2731 78 4 86 85 1068 1 1681 4 1 103 2010 35 792 5 7571 77 1 4 469 25 435 3296 16\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 118 180 459 1253 2 878 17 8 39 405 5 13 1964 20 43 161 32 1 1248 7394 3157 11 1662 65 6596 5 2 572 4 5181 2413 5673 13 12 459 910 172 161 183 8 12 1711 17 8 57 1 1935 4 5909 5181 9053 4 8 560 45 8 54 24 381 1312 7687 45 8 1808 107 41 455 4 5181 69 8 83 118 69 300 8 54 13 2361 4 1 82 1755 35 96 9 18 6 1822 4 2 920 11 33 617 107 1 1766 8 63 59 4254 23 5 1017 269 4 116 157 133 2 625 2351 45 94 133 1 215 5438 217 4617 1712 23 128 96 11 1312 21 6 235 845 2 69 646 820 23 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 2 327 1894 19 104 3 9 28 12 1253 5 110 604 5 26 115 13 92 462 57 79 160 29 2808 6865 8 179 9 54 26 2 84 203 108 12 8 117 1328 83 70 79 1989 9 6 20 1 210 18 8 24 117 1586 17 10 88 24 71 2 163 828 8 112 34 484 17 9 28 12 28 11 12 52 4 2 539 98 2 115 13 5070 4437 345 505 3 345 383 22 43 4 1 5635 11 88 24 71 535 47 4 394 13 6 4528 16 2 53 2499 45 116 288 16 28 4 137 104 5 90 299 2787 98 9 6 4941\n1\t13 5537 20 107 2 5219 6876 21 16 38 2 8 6537 9 28 15 43 25 609 4261 4 1 57 1475 1396 3 1607 15 62 979 541 3 6625 1 2024 1188 124 2450 3709 120 3 2649 542 4 157 361 396 7 1 5229 4 223 5797 147 887 41 7 147 887 707 554 361 11 61 8236 3 13 1226 2319 32 1 3530 4 9 18 14 2 5 50 2273 4064 6876 999 5 25 109 3573 541 3 1229 5 2230 2 496 215 589 4 1644 10 557 7 52 1175 68 28 228 21 1 927 3 129 1229 11 22 25 385 15 2 13 10 6 496 3271 340 1 1955 1261 7 1 234 3 1 1296 4 392 11 40 71 30 534 824 19 34 6876 40 758 34 25 2576 5 146 147 361 2 1105 21 1822 4 101 1505 7 1 166 4039 14 323 27 6 588 77 25 2487 1 201 123 2 514 329 4 2419 3 3358 596 4 2872 6995 76 64 44 7 331 737 128 15 199 3 52 3 1612 68\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 83 118 75 261 88 812 9 108 10 6 37 695 10 472 2 979 438 5 209 65 15 9 4185 42 20 116 687 1928 108 127 4026 22 37 439 3 23 321 5 760 10 29 225 3633\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 12 3592 5 9 18 49 8 485 29 201 9446 17 94 8 219 10 8 191 920 11 8 343 2 222 1558 1 250 465 4 9 18 6 11 171 662 2262 4 2648 9 18 19 62 1877 2368 73 4 91 1471 292 4599 3 2376 328 46 254 5 186 9 18 19 174 3994 51 6 58 4628 4400 3 1 593 6 105 37 16 2385 596 9 6 3245 141 39 36 16 4 304 4507 2622 5112 1072 2376 6 198 84 17 9 6 20 18 16 237 2255 25 3432 37 45 23 70 3863 65 30 9 84 201 99 10 17 83 504 235 184 41 1 59 177 11 468 320 38 9 739 6 4507 4599 344 4 10 6 46 9086\n0\t262 30 2611 1 950 32 1 5662 1045 1280 21 66 424 14 180 9497 29 5838 1 210 1045 21 117 1001 266 1 466 912 191 2303 25 606 155 4557 8 853 11 58 28 3457 38 9 2659 4 102 84 1045 17 8 1405 3 8 93 191 134 11 9 6 28 4 1 104 4 34 290 1183 121 693 1 1 119 693 8562 3 1 129 4 1 8785 262 30 4444 39 228 26 1 80 761 129 4 34 387 2233 7 95 21 180 117 575 17 42 2 299 18 5 99 19 2 3175 1344 41 2 1925 518 29 1925 46 9221 42 28 4 137 124 11 288 16 146 17 197 169 1565 10 3 1891 29 1 166 387 42 389 1734 424 36 5 311 3097 14 705 3 10 2788 3 48 424 213 11 1111 17 23 173 134 10 213 2571 73 16 31 594 3 2 350 23 228 230 3867 1237 17 23 495 230 37 473 142 116 2867 3 335 9 5940 2067 197 95 6287 3 190 1 1426 26 15 1259\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 1916 472 79 5 64 9 18 49 10 310 47 200 1075 4 8 336 10 98 3 8 112 10 1705 8 118 307 151 299 4 1773 7 9 628 17 8 96 60 276 3 981 4407 8 291 5 320 2 604 4 415 35 7170 11 176 29 1 3900 896 1 6072 178 189 6649 3 6 39 37 1 265 6 84 14 530 9 6 1 2032 29 44\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2228 271 5 1 707 1 366 183 31 3912 106 27 6 5 26 1459 65 30 25 3 98 188 139 5790 13 7624 4184 40 390 1795 65 7 2 1358 934 1295 558 1889 2568 1018 276 36 95 2041 2882 17 6 3396 5 867 432 7 1 3 10 213 223 183 3462 4 1484 22 5 1 155 4 25 438 14 1 9735 795 13 1214 2141 1730 353 7594 6973 1275 7 2 8970 278 14 170 2670 3 3505 266 2 185 109 2255 25 3669 113 1594 255 32 294 14 3 31 548 280 30 638 14 28 4 1 2475 1068 1 6479 2456 6 396 722 3 2 46 4211 333 4 31 6708\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2343 54 653 49 2 5693 1277 557 15 2 9968 19 190 26 2 163 4 9 18 274 2 7 1 870 4 1 1913 647 67 3 2 1428 11 189 1308 40 43 8 1901 10 16 2 2273 85 4 2072 3 2612 62 3117 5 566 421 2 1302 3 7 2 85 49 42 832 5 1961 9 18 76 1197 1259 1 82 601 4 1 4 17 20 15 162 5 3 45 23 36 5 118 51 106 156 168 4 3 1 707\n0\t57 2941 71 2 6854 2085 27 6 553 42 20 2 2464 2462 3 27 6 51 5 186 5993 13 2609 2 91 525 29 32 2 2345 27 2019 80 4 25 762 25 4208 1018 498 47 5 26 2 1257 3 4411 224 2644 15 5 1 13 4052 615 51 22 128 6023 3 461 14 1 535 32 350 1 1536 19 62 2644 3068 33 22 30 1 17 7391 1141 126 34 3 33 22 929 5 1720 19 5 1 272 19 2749 94 62 3068 6 3 2573 65 15 7391 202 19 13 6 316 3 2841 14 5269 1 2209 4 1 2464 10 6 935 14 1843 5 3381 5 122 11 58 6715 61 909 5 26 13 498 65 14 2 1736 5438 3 7391 6 4872 3 963 3902 59 5 26 8418 30 52 6318 3 848 97 4 949 7391 475 2448 2 3 80 4 1 6023 5 1110 5 25 13 4052 1 4254 5 564 16 122 17 7005 1 13 743 904 119 3 46 904 393 14 7391 2530 142 77 1 14 2 1126 1368\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1503 7501 40 71 3475 38 3 19 30 375 1949 16 62 223 5 1749 1 113 376 2748 584 3 5 3858 31 665 4 1 11 12 2013 62 1229 19 2155 3 7636 4 264 9893 6 19 3459 41 137 4 1 82 2748 251 3 502 1 397 1548 544 142 14 4693 3 6905 17 125 1 1450 3299 4 397 1 121 40 1 584 22 52 7456 3 1 1117 3463 24 1866 3 52 5956 7 1022 1639 431 6449 51 6 28 4 1 1003 1032 5154 7 2748 2008 1 6688 22 8083 109 3 1 1032 5154 22 1502 3 7420 1 148 2725 5 7501 6 20 1 6688 41 1 17 10 6 1 81 3 1 3 4 807 51 22 93 5 82 2748 251 3 104 15 1678 3 120 72 34 2510 8 354 95 2748 325 5 841 47 3 23 76 26\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 56 678 11 6 20 2 91 1606 10 6 2 2053 4 2 21 38 1 3479 3 2 2603 4815 145 273 11 43 190 149 9 18 2 222 105 4965 17 8 336 110 308 805 9 206 876 371 2 360 201 4 3275 81 1491 3 196 2 84 1663 292 20 670 14 747 14 205 104 24 2 46 696 272 5 28 39 123 10 7 2 46 699 2900 1 978 293 399 10 12 89 7 1 362 3787 3 293 363 662 1722 731 3086 883 29 225 33 1513 26 7 1670 39 694 155 3 335 1 46 678 3 810 6480 1013 23 22 2 900 468 24 2 13 5676 1 744 220 8 74 7207 9 158 8 24 107 174 470 21 11 6 31 1409 5971 3 11 6 1 537 22 133 2533 136 20 2 1189 41 822 7 1343 36 6871 7 2 84 21\n1\t130 96 316 220 236 58 203 7 10 29 34 1 970 14 808 8 192 20 273 38 1 2526 19 1 28 874 10 12 327 5 64 1 1518 414 16 2 720 66 271 421 2094 7296 17 10 228 24 71 52 3476 5 64 3529 564 122 7 43 3293 13 791 419 808 1128 31 2319 445 4 17 3743 10 5 292 42 128 2 46 109 89 21 15 8987 397 7542 152 383 7 3522 5768 217 7505 7 1 21 12 1521 428 15 766 217 379 2077 7381 217 2549 7381 1576 16 1 951 17 963 1 1350 16 1186 7672 14 8 24 459 367 2817 6 1011 1128 3470 217 6 2 900 6752 7 9 217 279 133 1 21 16 19 44 2487 1608 217 60 1275 7 2 547 278 4095 13 1128 6 2 56 884 3620 4587 1560 1029 103 953 11 8 381 8 143 96 8 54 335 10 14 78 14 8 114 217 8 192 1096 8 636 5 99 110 9 373 196 2 8253 32 79 217 2817 56 6 1053 691 7\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 219 9 21 246 56 381 282 97 172 1924 9 12 1 119 12 5731 15 1 1946 3 25 493 125 624 7 46 386 817 291 5 96 11 9 153 3683 17 8 214 10 243 45 23 24 537 29 416 98 1 226 177 23 175 6 5 96 11 154 1946 6 94 25 72 61 619 11 1 369 11 2086 1251 32 11 1 21 12 39 2 351 4 290 1 263 12 345 3 294 3466 242 105 254 5 25 1056 5532 3 142 1 144 261 54 175 5 6468 94 122 7 9 278 6 7449 9 21 1200 19 34 16 437 786 83 351 116 85 133 110 7521 105 386\n0\t6 1021 3 33 899 5 2 1863 73 25 435 6 1 4 110 72 149 11 1 635 40 2 1 9 4846 100 117 40 235 5 87 15 235 571 5 90 1 635 291 3876 98 1 18 196 52 509 3 509 318 1 164 475 271 7861 27 271 19 2 5 564 1 635 3 25 379 322 27 811 36 110 144 422 54 27 87 1947 34 4 2 2585 72 64 2 1326 287 7 1 1 164 44 3 3155 27 6 6365 2 434 66 6 1169 9846 936 2 315 164 3849 1 1863 3 6 15 31 98 1 635 3 1 287 186 1 315 1559 2451 3 597 1 2002 35 2180 740 269 4 80 104 662 2 528 351 4 387 17 9 621 260 77 11 6683 1 265 6 1 120 22 2390 3653 783 35 6 2 53 1 119 6 2733 3 2589 1 3530 4 1 393 6 46 2674 1 857 6 2690 9115 3 1466 9 18 6 483 925 9 18 29 34 4484 145 619 42 1866 132 2 298 1020 19\n0\t10 811 3704 1441 218 4332 9375 6 38 14 1289 14 2 2518 14 2 4 3 14 1303 14 2 14 1244 14 34 277 13 119 7 2 2 1207 196 8103 30 2 4332 136 3698 47 2 7909 15 25 379 3 8618 498 77 2 4332 69 322 20 610 2 4332 17 2 2070 11 276 52 36 2 3020 35 1141 25 2100 7 2 443 13 724 98 236 1 1255 4 1 2643 35 6 38 1 210 232 4 1 5250 27 1046 27 29 1136 2891 27 2448 32 395 27 15 28 4 137 7 25 2333 3 2492 29 1 166 387 253 122 176 3 478 36 8587 2028 7 3 1 3 3332 6 1 210 244 1 80 9728 129 7 1 212 13 92 212 158 1024 6 39 249 7 9 42 31 16 2826 47 48 114 23 7093 918 7281 13 872 48 422 63 23 134 38 2 21 11 20 55 3934 63 13 5094 460 16 218 4332 331 324 41 3934 13 5676 1 744 45 236 117 2 967 16 9 141 145 50\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 368 123 10 702 679 4 2128 58 145 273 1 1063 61 19 146 82 68 49 33 1059 9 461 370 19 1 8 179 11 9 54 26 2 211 108 17 45 23 22 20 65 19 1 2045 439 2133 1615 98 468 773 80 4 1 810 623 7 9 108 144 351 116 290 23 63 694 19 2 403 162 3 24 52 299 68 9 18 76 13 1149\n1\t379 6 1435 4518 3 693 5 26 721 2191 1864 6668 3 25 3526 6844 4 218 175 5 8629 1 8629 19 44 3 5723 1 606 9482 748 65 2 1598 2152 7774 5 359 44 752 2191 14 2 3 1844 297 19 5936 8300 1343 255 155 16 1489 3 1141 275 7 3690 1875 60 40 2 774 4790 839 15 1 2949 94 2 156 6668 3155 10 228 26 16 122 5 359 25 379 2191 45 27 451 5 2469 2191 14 530 5 6 2 431 3 610 1 574 4 691 8 198 3388 5 64 32 2 1292 36 4 42 1330 3 2637 15 2 1415 217 2733 356 4 623 3 4057 4 7673 5007 1 833 3 1 212 7466 2152 8484 11 10 6 77 1 263 46 322 286 197 8943 5 1105 41 4590 1 1190 6 3604 3 1 848 1102 22 6740 1858 3 1624 2897 3632 3 2549 8218 205 24 167 543 3 66 6 198 2 3224 3496 3 6 475 2649 1 680 316 5 8017 2 3 84 373 28 4 1 4856 4 205\n0\t32 2 1289 3609 2434 292 5 26 3314 51 247 78 5 216 1566 7 1 769 1 330 67 255 142 1726 17 20 30 1264 115 13 1701 1 80 1871 1 453 22 1976 29 1293 690 14 1 940 1320 9377 123 31 45 20 591 1685 1614 3741 19 1 82 1737 6 169 53 14 1 3643 16 44 6533 480 1 2674 3531 245 80 4 1 120 22 167 1779 9181 115 13 1268 54 96 11 5919 54 24 590 47 828 690 35 470 1 1571 4463 5 9642 1 5220 370 19 52 4 1638 4625 4260 3452 363 2342 816 498 7 43 501 2637 916 37 144 6 1 21 2 8 497 6796 143 56 175 5 90 2 330 158 17 12 929 5 87 37 16 4740 3799 10 12 2 3000 4 203 3 37 9 28 12 407 8 63 830 1 259 523 1 263 7 2 4025 65 25 3 599 1294 8 497 27 57 5 87 48 12 2429 5 70 25 221 5203 72 173 1844 2693 13 9409 7138 5934 4 13 30 147 234\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 12 56 288 890 5 133 490 101 11 8 112 1954 3 8 96 8730 3632 6 2 5927 3868 1 477 12 1470 8 338 1 733 189 1 102 2682 10 98 1108 3130 5 1 250 640 66 6 33 70 3219 30 2 526 4 6490 3 196 4464 483 91 136 3632 196 33 98 1088 5 139 16 43 5677 981 501 3294 322 42 1265 1 67 196 509 3 3 732 188 70 56 7627 8 495 187 47 95 8344 17 188 780 11 4780 16 628 24 58 2277 5 1861 8 36 5 187 34 104 1 5576 4 1 4724 3 8 56 405 5 36 9 461 10 39 143 216 689 8 187 10 2 535 47 4 3623 1281 16 1 1014\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 159 218 3 8 12 56 2 53 1606 8 112 3 8 56 338 9 461 51 61 37 97 1 706 11 89 23 2248 7 116 8070 1024 105 78 2467 32 1 410 89 10 832 20 5 2499 8 96 1 80 782 178 19 1 49 1 543 9301 30 19 1 41 49 1323 197 44 1 3624 6 93 46 452 519 23 88 56 64 10 12 1057 17 10 12 128 3301 2 9436 176 5 1 1361 1 487 12 46 53 2835 37 1257 197 3624 3 37 1722 782 15 10 778 1 398 85 8 785 2 8975 4271 8 76 229 230 167\n1\t1 2133 376 262 30 72 22 1694 5 2747 66 1680 2 2432 11 40 2590 122 117 220 3 1 4242 4020 654 35 152 6 599 1 389 8982 16 122 341 262 5185 30 1990 136 43 529 22 262 6740 125 1 5199 33 662 198 1 529 23 504 3 1 103 2816 396 1236 23 30 4802 34 1 473 7 1195 2263 1778 255 3 271 17 1286 60 123 2 46 327 329 3 271 2 223 111 5 44 834 6 211 17 7615 136 1 221 670 154 178 33 22 1107 5 26 5739 33 22 340 53 3531 1 1063 473 7 2 53 263 15 227 1552 3 498 3 1117 2249 5 359 23 533 34 1 111 5 1 961 7230 7 698 1 4 1 182 6 1 59 177 11 863 79 32 1020 10 2302 14 1 67 1552 3 498 42 111 5 1 909 13 614 23 36 116 267 3861 3 51 6 229 20 227 204 5 359 23 942 1 389 108 19 1 82 1737 45 23 36 267 3 3861 9 6 16 1038\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 407 28 4 1 80 1213 124 117 89 69 55 16 38 1 59 28 52 1213 6 25 9 6 2 102 3 2 350 594 7172 140 2 678 234 4 3 893 4496 151 2 3 1 1164 19 7 2 251 4 7523 556 32 1 84 2197 5 4783 1 3930 1 632 593 3 2417 2217 22 618 7621 1 1748 1155 19 20 55 1 1081 17 114 554 2028 30 31 918 16 1 93 2695 12 1 1445 3 202 4852 139 1 21 19 388 6 59 1507 5230 269 386 4 1 215 599 290 9 545 12\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 173 348 23 75 2048 8 12 94 9 108 1 120 22 20 1 4631 222 1476 3 1 119 6 37 94 1000 5 64 75 1 486 4 127 120 4732 239 1885 1247 11 1 576 358 3 2 350 719 61 914 65 5 43 2846 8693 48 87 72 2 4199 4 195 657 8 365 1 2326 5 1 5169 3 1 4698 4561 17 74 4 399 10 12 1463 15 332 58 3 330 4 34 10 54 26 433 5 261 35 40 20 284 1 5169 954 2846 4328 4 1 41 1539 954 128 3844 14 2 595 109 284 3292 8 179 9 18 12 2 1537 345 6772 4 2 13 2687 351 116 290 10 54 26 138 1019 13 235 5 26 1784\n1\t11 42 2 609 21 30 95 8252 17 42 373 279 2 4578 13 1149 6784 1 2766 4 1994 1944 30 206 2 5559 583 195 2260 1095 3 1790 5 1876 5 25 510 13 1149 6 46 327 1 802 22 3 1 2036 6 5799 3 240 5 176 3706 9 21 152 40 31 1656 4 397 1548 5 194 1031 82 1058 6816 36 3 1546 802 3 9970 383 131 53 333 4 9 644 13 1149 245 6461 7 1 166 1678 11 37 97 82 558 124 1690 3 207 7 1 67 3 129 188 39 3109 1994 153 29 513 4888 244 198 71 6477 42 39 11 81 22 1790 5 1 21 39 6511 385 86 111 15 46 103 5064 896 1 393 6 46 13 1149 220 9 6 2 203 158 220 49 87 72 474 38 8427 72 39 175 5 64 81 6252 3 407 14 1 823 1810 81 7 1 856 544 564 49 81 2703 155 29 1 2238 42 198 6141 13 1149 207 1 334 106 42 1434 3 7 1 769 207 34 11 56\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 6545 6682 8767 3 1469 61 1 113 102 7 110 2054 37 1 2118 259 35 6722 15 1 7385 16 25 2389 12 695 9 6413 1855 12 501 854 17 1 18 56 5 3 127 102 130 24 57 2 163 52 85 19 412 1413 479 1300 12 1051 1 6192 8571 4502 13 6 2 3309 5310 35 3389 2 2118 164 3 741 65 29 1 7 1 750 4 2 119 664 5 1 7250 4 5 771 38 54 26 5 187 2 163 1695 1934 9 6 2 243 1073 3 10 205 1105 601 2 212 163 52 68 1 10 2816 19 1105 7443 3 39 1092 19 684 13 1149\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 335 124 36 296 1611 1285 217 1209 925 9 1262 7450 29 34 4484 10 6 31 7389 351 4 7324 11 130 100 24 71 8593 78 364 152 4440 3 2925 5 6233 728 1 210 21 8 24 107 7 1 576 4423 91 16 1 389 269 4 42 57 10 71 78 8 54 20 24 71 446 5 787 9 753 197 712 1064 725\n0\t172 5787 75 87 72 118 15 95 3116 4 11 1 1849 6 49 1 6821 4 22 496 6269 29 41 11 164 6 1 4707 1232 4 1947 1 1836 6 72 83 217 1145 6 100 2 4465 172 1742 85 4390 114 2 1203 2 7875 2488 1 1387 6 11 95 2442 1145 1946 109 7 990 1145 76 348 23 11 8789 217 9745 24 52 5 87 15 257 1714 7 8148 68 377 2958 48 1712 840 1082 5 9727 7743 55 45 1443 1036 5 917 1 5039 1869 5 1712 217 297 27 75 22 72 160 5 70 1 344 4 1 234 5 917 2465 49 72 173 55 70 126 5 1023 19 146 37 631 14 42 6523 561 840 217 23 101 2 1081 4 1 4324 118 1027 45 1 2104 35 1160 61 56 3314 33 54 24 3594 62 21 840 451 17 48 420 56 36 6 16 275 5 1006 1 1081 144 61 102 4 1 1003 5283 3695 217 32 30 1 1441 8 785 1 1278 4 22 770 19 62 398 21 6469 217 257\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 440 5 254 3 6 5 1809 15 34 4 25 5751 3 160 6477 1793 19 411 3 3343 19 1 8509 5 1264 6088 2563 70 725 371 3 90 199 2499 8 143 169 365 25 3770 1918 4816 3 891 2682 39 73 51 205 65 19 1039 41 27 367 11 154 3561 451 5 26 2 891 3384 145 273 12 56 77 11 49 27 12 5010 27 57 2 156 53 716 36 1 800 1399 106 81 29 1 1564 8 93 338 1 1657 4644 45 39 143 634 37 1741 27 228 26 3288 3 8 228 24 340 9 2 2302 5280 14 298 14 300 31\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 358 663 7 1 8 96 9 6 28 4 210 104 180 117 575 39 174 4 1 223 427 4 8282 11 24 220 5378 1 1190 1 18 2182 6 1474 16 1 74 681 1507 17 98 1 21 1350 90 1 2082 4 4476 2411 3 6571 882 5 65 1 317 138 142 9802 9 5592\n0\t31 594 77 1 135 94 458 1 67 270 2 1528 8979 66 2378 1 226 3334 269 5 26 3 2724 1127 608 42 36 2 6590 4134 5 1 17 7 2 53 699 42 202 2 568 3148 5 230 146 94 37 223 15 127 807 1 226 681 269 4 1 21 83 24 95 494 29 34 3 1 1122 6 1 113 185 4 1 21 608 7109 5394 123 25 113 216 4 1 4215 3 80 6728 977 15 1 3383 1079 255 1 80 5760 4 34 608 11 42 370 19 2 306 441 66 165 79 5 9290 15 34 1 1765 1 4301 2840 3 1 551 4 1262 10 5562 5 79 11 15 102 2382 3404 171 3 2 102 228 90 2 56 1039 309 608 300 55 2 45 51 22 95 5227 856 1278 47 51 765 490 8 373 354 283 45 23 63 70 2 998 4 1 21 3 4208 1 7729 3492 41 51 228 26 146 5 9 67 94 13 52 1799 19 9 41 95 82 7729 3492 158 841 47 62 5272 29\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 21 418 47 46 7140 15 1 5783 4 5342 31 29 2 25 379 40 71 5 44 408 15 31 14 1 1122 4 2 6900 16 5342 6 2 1910 4 1 1473 3 270 13 858 72 99 243 1065 157 1283 51 255 146 147 3 2 4309 255 5 3203 28 4 86 460 6 7639 6442 244 2 17 27 40 2 293 13 1627 123 479 205 41 81 2262 4 1790 140 1741 9879 5342 863 25 2208 7639 1572 25 118 48 27 63 13 43 4 62 5197 139 155 5 2 2113 5815 106 33 8935 2200 1 469 4 2 5342 1834 155 32 712 25 7639 451 5 139 1228 19 2377 13 1 3683 7639 451 1725 912 33 205 2431 172 6884 60 432 2 7343 4 3 432 28 4 1 302 11 1 1338 475 24 2 13 92 21 6 2571 17 20 695 8 96 227 4 10 5 24 2 973 7 50 9889 42 2 53 8236 4006\n1\t0 0 0 220 5302 4 226 3002 8 24 71 723 5 1721 124 239 1679 32 1 5141 2647 66 5469 31 1502 305 5650 395 323 6 2 4 86 124 22 47 29 95 340 5878 8 12 6324 5 149 1 386 124 4 638 1311 103 38 1 1139 1125 8 1459 65 145 204 5 5854 458 16 638 2854 3760 133 1 3077 767 6 350 31 594 13 92 80 1884 865 4 127 1516 1657 22 62 239 431 40 86 221 3 1851 5006 3079 1778 5824 1710 882 1 9079 3 385 1 97 82 824 2222 47 1 1 2216 4 1 3243 847 396 863 7 15 1 5473 17 1 1077 554 3538 79 14 4438 796 7 1749 3 9 916 7 2 744 127 3077 4074 22 979 13 3053 1113 1 1650 22 9508 9448 1230 3 211 14 4359 3 236 227 1032 740 126 5 4951 19 75 2271 72 2630 63 1142 8 173 134 11 646 99 1 1894 805 17 16 261 35 7 1 5954 11 6 1 6 279 350 31 594 4 116 290\n0\t5 174 57 1 263 3 121 71 138 98 8 88 24 728 1837 11 8 12 133 2 21 383 1135 19 402 445 3324 9 12 2 1002 215 2991 15 2 1269 395 391 4 593 7 11 72 59 117 165 5 186 1 32 1208 4 1 1826 253 10 230 78 52 3015 72 100 165 5 64 1208 95 82 6467 132 14 1 1320 41 1 2857 106 375 4 1 415 3 9 88 24 1253 78 965 13 92 263 12 456 7886 83 230 105 8 175 5 139 94 28 4 1 624 40 71 8418 30 2 4241 5 1890 30 2 3 383 6052 291 2 103 13 92 121 12 32 1 114 34 1 250 715 1624 7 9 825 121 30 605 2 448 285 2 223 1 478 12 37 91 11 8 57 5 99 1 389 21 15 1 4220 3377 13 92 206 384 5 24 31 806 329 7 476 10 181 11 1 59 593 27 191 24 340 13 872 14 16 1 45 23 99 9 786 26 273 5 24 43 29 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4172 48 2 28 4 210 703 1 91 121 7364 15 2 45 20 263 90 79 16 85 8 1130 19 956 9 19 2240 756 1877 20 56 78 8 63 134 38 194 2 6459 196 105 3638 5 1 454 244 35 629 5 5507 5 2 7965 11 629 5 26 19 1 4 392 66 629 5 26 636 30 2 6459 3118 3737\n1\t897 278 14 3859 86 52 68 1277 919 27 2 163 66 6 146 215 7 1014 99 25 168 15 25 435 912 27 5214 217 912 27 1 7529 4 44 129 5 1 909 3432 50 851 48 2 1574 5217 60 12 323 2 5924 16 79 217 244 2 609 129 353 45 340 2 680 217 204 7 43 4 1 168 27 55 1 18 6 93 2 2289 4 2 2911 1518 19 1297 14 42 174 67 11 27 143 70 132 2 280 217 202 1837 1163 14 28 4 1 1767 1518 4 1493 2442 238 703 99 1 178 106 3173 85 432 2 5285 16 25 435 1944 30 217 398 205 22 7520 1413 75 2558 1387 544 5089 16 205 1 129 15 1687 4 112 217 812 16 239 1715 102 2121 4 1297 613 217 3 7 189 350 1387 5 9963 1 21 1196 358 2377 2520 14 113 8709 865 21 217 113 217 535 2520 7 113 158 113 206 217 113 607 353 115 13 5 34 35 22 942 7 6236 4 686 8709 4121 13 7101\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 172 183 27 1059 3 470 1312 3466 57 2 1681 645 15 25 1106 16 9 1411 2451 16 1531 98 9603 218 2 3787 1185 341 2 3 196 1136 197 95 19 1 5 90 741 27 498 5 1 234 4 963 1496 2 1573 1904 77 31 4112 229 2397 36 31 240 312 29 1 85 341 2 273 111 5 3613 122 32 25 756 17 1 716 3 1650 22 396 3 1266 5612 243 30 206 4959 591 3243 6 2 222 1295 3431 1472 1 1047 19 32 14 2611 276 2 103 47 4 44 49 3355 30 34 127 249 1 1151 1329 4 1 263 7138 32 4577\n1\t408 6 8102 3 432 1204 6730 58 1412 17 5 1743 2693 13 9608 1 723 1161 274 47 5 3183 1 6417 15 1 212 67 516 1 3479 242 5 3642 2 6527 17 101 1067 1270 2312 6 29 42 113 2 163 4 1 268 49 10 6 101 2348 2385 3 262 10 3516 9 8007 3 143 56 7470 1 3479 6417 39 592 13 92 1965 799 4 1 431 255 49 2 1648 4632 411 7 31 525 5 925 1 9 6 1 74 85 2 2436 19 1270 2312 271 1989 3 72 99 1 345 164 773 25 1568 3 98 525 5 1743 411 97 268 136 27 2050 5580 174 1685 1270 2312 13 3616 1 431 12 722 17 10 12 721 32 101 84 30 95 148 2219 19 1 3479 3 6927 826 15 1 1028 1 393 6 595 722 17 162 13 2719 72 191 947 318 16 1 398 4 4916 42 2 223 17 1270 2312 191 26 16 42 7985 1 131 384 5 26 599 47 4 8239 226 4336 17 195 42 155 7 331 4239\n1\t9868 10 3 186 3113 13 2018 19 2 1568 7292 1 559 3 87 10 19 2 2377 756 4155 48 629 204 6 167 13 92 6663 1161 6 93 2 3279 9770 67 14 109 38 161 3669 3701 6 19 412 16 80 4 1 158 17 42 3945 35 165 1 4675 7 1 921 4 31 918 29 1 161 717 4 13 758 2 222 4 1 923 77 9 21 14 530 14 72 34 118 27 12 1 826 164 4 1 360 267 968 4 35 1 6502 8769 4863 2 163 4557 7 664 5 3839 8250 2181 5343 3 690 721 160 260 65 5 1 717 4 41 29 225 167 542 5 14 31 7736 13 92 6663 1161 6 370 19 1 968 4 618 3 45 23 36 1 6663 1161 8 2474 354 23 64 102 9303 5 2404 16 2 176 29 2 2204 4 559 35 61 548 1 296 1228 29 1 473 4 1 226 4588 1 1207 8185 11 3701 3 3945 87 6 2829 32 62 13 872 8 87 96 23 76 36 1 6663 7013\n0\t13 1701 628 9 6 2 2484 324 4 2 1091 249 397 4 962 6493 17 45 236 2 52 52 3 324 47 51 8870 10 191 24 71 1171 29 2442 115 13 5537 107 10 19 3934 15 2014 3 1 6048 605 53 29 1 161 2010 1 4 315 3 482 2534 3189 3 1 7073 4 5045 121 47 31 706 309 3 253 10 176 36 31 7786 13 3027 611 1 113 546 22 1 113 3490 1927 1 84 1352 83 96 814 1 9344 9228 76 23 352 79 15 50 1145 488 50 923 9996 285 2 1433 69 1204 3512 13 724 98 236 372 6493 700 129 78 36 2 4972 1320 59 20 14 58 894 244 2 84 1651 17 204 27 255 142 38 14 109 14 776 7 218 4055 117 64 11 8645 23 3305 99 127 102 19 2 13 659 1 769 9 6 28 5540 106 42 306 11 317 78 138 142 5 39 284 1 1533 29 225 1 347 213 2484 30 13 1268 376 59 16 9 764 3108 4191 16 1 3934 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 4985 4440 9 73 4 8358 10 57 2682 10 384 10 337 5523 13 677 6 78 55 32 444 38 910 3 372 2 5230 349 3176 51 22 277 120 11 22 377 5 26 307 422 6 1 2020 1101 3263 61 501 8 5425 1 170 976 466 6 4709 50 379 307 422 7 9 18 6 2 2253 1101 3248 55 1 13 150 130 24 587 11 49 2097 1209 12 201 14 2 6730 6138 11 11 12 2 91 1 102 5740 3889 62 374 200 22 36 1 723 1101 13 1226 379 54 20 369 139 4 1 3037 60 12 20 605 5784 41 10 12 2 1415 3 2733 2053 4 5191 3 10 12 13 142 50 303 12 20 9248 5 8056 32 1 1870 4 133 9 108 45 9 18 289 65 19 116 2534 87 725 2 2454 3 8804 116 522 140 1 249 412 3438 468 26 1096 23 1322 1 59 18 180 117 107 11 12 527 68 9 12 1 41 300\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1934 1929 361 9723 29 116 221 13 1226 250 465 15 9 18 6 11 308 1599 2486 1 9920 4 1 277 361 15 4633 6702 361 27 2236 5 7909 77 62 3 98 1 212 178 15 25 379 101 27 1036 5 25 382 606 65 5 1543 1 319 7 66 151 199 186 2 167 5669 8694 4 13 37 27 405 5 359 25 1971 15 47 4 1 1228 1128 664 5 25 5367 4570 15 1 5781 9 8 63 2198 17 144 20 4158 275 5 5055 127 200 2 3947 41 55 564 126 308 3719 3446 51 12 58 697 9646 2774 9 12 2 167 240 18 16 1 74 4 110 94 458 10 426 4 621 6584\n1\t668 4677 132 14 1760 1206 15 1461 1 1760 1206 15 6832 3325 1299 15 9989 372 7834 8478 1299 15 3 78 1129 1 7025 6 3454 15 43 4628 443 216 132 14 283 2 5701 262 32 140 3 8478 107 140 1 4 174 2904 1 119 6 9246 17 23 70 602 32 217 19 33 24 5 186 408 2 487 3 3325 621 16 25 5 274 122 65 15 1 3518 1760 4203 11 3325 63 70 44 31 15 9989 17 170 3 2670 7 9 628 3 7 25 221 6271 911 621 7 112 105 7857 136 479 242 5 4208 809 100 27 418 5 735 16 174 282 17 195 1424 112 15 6 80 396 2299 16 1 2053 8685 1889 1254 980 15 816 3 17 236 2 163 52 204 207 279 2 5786 145 685 10 3555 460 3822 136 42 20 169 14 53 14 1 113 4157 69 7 1 1 265 996 69 10 6 28 4 1 74 4 62 897 4 7025 184 4261 6756 889 79 7 6676 2820 12 1 3 138 68 80 2349\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28 4 1 3556 4 1 42 39 46 775 3 10 59 1225 2 156 269 1534 68 8657 387 16 1632 17 10 811 2 3106 4 2 163 9950 9 6 3897 664 5 1 6614 1151 189 6997 1133 3 9348 1133 6 1550 117 1470 8 36 444 4502 3 8 112 29 225 28 4 44 4501 106 22 516 79 44 82 6 2 904 32 401 5224 757 32 11 917 1 54 152 26 2 91 21 45 20 16 29 225 277 609 941 1102 189 5124 3 1 1206 7473 16 1 401 1780 4 95 4 62 8191 1 941 6 39 4083 3490 1472 34 50 7 28 2334 1 102 2 941 11 33 83 169 24 5142 86 90 10 34 1 52 3090 3 9029 543 1 265 3 6 728 28 4 8725 113 5773 37 1 21 6 109 279 133 16 86 84\n0\t106 12 1 944 145 34 16 2 52 541 3 2 1610 1630 4 7 124 3 4205 3 34 458 17 9 12 39 2348 9 143 652 235 4673 5 1 2876 13 3926 180 107 1 3 7 10 3044 2722 25 221 38 1 7995 27 339 209 65 15 2 53 393 16 1 441 37 7582 27 39 42 100 14 78 38 1 120 14 33 89 1 226 431 5 1142 1 212 3378 12 3949 4 172 7 1 3486 1 4999 1689 12 93 314 7 1 4716 5 1 3 241 23 503 51 22 2 163 4 7267 35 118 11 933 4185 3 1874 4 195 236 2 857 11 12 20 1066 47 322 29 513 378 72 70 6 403 44 1081 809 910 172 83 70 79 1989 145 34 16 972 415 15 1186 3788 1 52 869 5 450 17 9 1104 39 89 58 8588 13 1601 7 399 395 523 9 251 6 14 3965 14 33 1576 86 120 54 1142 11 271 55 16 1 226 2351 8 449 433 3 4539 87 1824 15 62 251\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 192 2 84 325 4 1867 19 603 347 9 21 6 831 1 206 40 71 2161 5 8258 1 347 5 1 1250 1 821 6 1517 2192 661 3 496 6293 7 86 5692 9336 120 3 1 4 2094 119 427 3 129 5064 10 6 31 892 5990 4 423 3 30 28 4 1 80 1700 4 2759 598 1 206 4 1 21 40 301 1155 1 272 4 1 3854 7 25 7409 1 21 5276 385 29 7 154 587 3979 383 3 443 5105 2623 10 6 36 4354 19 3 2440 32 11 972 2024 1537 65 5 2 20 55 1 3289 4 1612 353 1850 12 227 5 552 9 7439 21 16 437\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 28 4 1 104 72 219 7 1 226 156 2017 15 2 961 119 427 3 167 91 121 32 1 607 1 3634 15 4545 9367 19 1 305 12 152 52 68 1 21 13 9367 515 256 2 163 4 991 77 2793 75 5 941 1 17 1 4943 4 25 129 59 3021 11 27 411 29 1 182 4 1 1 18 6 370 19 1 1635 4 2 1386 282 3 84 265 17 127 22 20 9248 5 90 53 13 614 23 24 100 107 41 1 1208 4 2 598 9 21 6 16 1038 358 47 4 1731\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5988 9 16 9 1266 1086 161 844 25 4363 5 25 1217 2383 34 4 126 3 102 1119 2666 33 1017 1 1679 7 25 3848 161 2168 48 629 11 366 76 1197 59 137 35 617 107 2 18 41 756 131 1448 94 2 3983 4 2064 7 66 1 2100 176 36 479 5528 72 24 2 2050 631 1298 1905 1 201 6 466 30 43 308 6701 171 191 24 71 1770 16 62 51 22 93 2 156 171 35 61 5978 29 1 85 17 223 1837 1705 14 2 4818 1 21 34 1 589 3 948 4 31 431 4 8 76 187 1365 106 42 1 3383 178 6 1269 3 7067 45 317 128\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3756 4 1 2279 104 468 1861 105 105 78 4 86 85 1165 37 10 12 47 4 1992 183 10 645 1 6247 1 7498 2809 22 36 2 6182 571 33 39 7 1 225 222 211 675 6352 109 48 422 693 5 26 5672 187 23 2 2481 5 1 60 7005 2 2279 73 5890 39 495 26 5505 151 10 77 9 15 3 1275 19 2 401 3 307 9483 29 44 243 68 44 86 2 2 201 1221 841 47 75 1423 9098 705\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1489 19 199 1 956 1228 8 1407 140 9 358 594 18 3 8 12 1000 16 1 330 634 5 2382 7 37 11 1 18 1457 65 5 86 3588 17 100 25 2791 3125 60 2180 3 1 18 5824 8 12 303 1437 106 1 344 4 1 18 1306 45 2 18 6 404 1489 98 1 950 138 70 43 30 1 182 4 1 135 8 57 2 1412 4 283 9 41 315 4044 29 1 616 5224 8 159 1 82 1338 18 29 1 616 997 65 15 9 3960 19 3324 51 12 28 53 177 38 1 21 3 12 86 304 833 1876 5 1 99 9 86 1319 755 47 4 394\n0\t0 0 0 2735 8 12 1092 2648 19 5 9 131 14 249 49 33 544 1 761 265 457 154 1146 49 1862 12 202 2 1363 3579 1723 49 1 46 4507 12 515 3523 2266 72 1121 5 3 49 12 2 17 944 7 6 3363 15 2 8153 329 35 6 31 631 2399 15 2 9982 7 31 9137 173 550 2 2830 2857 1807 35 40 71 3173 140 1 1945 97 268 3 6 2830 7 7266 173 186 47 2 8153 1614 20 49 367 8153 329 276 2408 5716 25 4843 25 20 55 49 27 276 65 29 1 200 1 36 2 19 2 16 910 13 3204 1 178 310 11 369 79 118 11 14 78 14 8 335 2793 32 1 17 46 1515 1539 3 25 1494 796 50 2848 5309 76 26 138 1019 1286 1862 380 638 1 11 6 1 3920 16 218 6 38 5 139 638 6 33 564 1 3131 1 1 8153 329 13 481 77 1 8153 1614 1 91 259 741 65 15 205 7155 638 741 65 13 1964 1613 449 1 22\n0\t101 7 1 1735 6148 8 1266 9 431 151 332 58 9413 1821 283 146 11 151 23 139 187 79 2 8479 9 431 93 40 2 264 230 5 194 1 265 6 202 929 5 7221 2 507 4 5 1 272 11 10 4597 187 79 43 2302 5807 36 41 235 17 127 22 46 509 4026 5 90 31 431 2246 8232 196 5 1963 25 754 7709 2927 7725 1275 19 1 49 1 295 17 5816 123 1265 33 139 140 11 9413 195 16 1 957 85 11 8 63 4995 1466 29 225 1022 398 767 54 26 4 1 3 4 1 3 508 5 9675 253 2748 2 547 131 5 99 7 106 10 54 1351 81 36 79 65 14 6213 4238 923 2748 336 5 333 1 1666 86 232 4 2 36 49 33 22 7 1 1137 1 1 11 6 1797 4005 6 195 72 100 57 2 5481 4612 17 86 240 5 2198 8 1887 10 7 375 3428 10 12 248 30 2 822 3 10 557 46 109 17 7 9 2541 7 1 6688 6 167\n0\t9679 4 62 500 33 2321 7 7 7 19 7 1 5339 3 55 7257 3523 3129 29 28 272 2 1028 1026 2 287 65 1 5 564 3 2089 9207 5 4269 44 77 1 5339 137 1713 3 62 5532 356 4 13 677 6 877 4 840 1815 22 1504 3 236 78 7 1 111 4 3569 2306 3 81 355 62 2121 1107 236 162 5 1484 1 17 45 91 90 65 363 22 116 4830 23 495 26 369 6124 13 1601 9 3 180 20 55 1505 1 489 1224 1 8054 1642 1028 4843 1 1648 603 121 152 999 5 820 47 14 56 573 41 1 570 4290 7 31 6443 1298 19 1 2066 2276 101 30 7375 8215 535 380 199 31 697 1028 881 125 5 62 257 7506 8784 183 5 1811 1076 421 1 7 2 967 11 1547 100 13 535 6 3160 69 10 54 26 58 2807 5 1 234 45 154 625 3687 12 2945 3 34 6821 4 42 3052 286 936 8 230 50 157 6 16 246 107 592 13 8 134 8 928 269\n0\t26 8306 45 1 624 88 90 65 16 194 17 33 34 735 111 3752 3 763 1420 22 34 169 1386 7 62 221 286 8205 162 3 390 1 4 48 33 22 242 5 5981 2940 7866 4 62 1081 1670 33 176 37 1054 3 1770 69 52 73 4 1 2451 33 22 7 243 68 62 221 51 22 43 82 1386 17 23 56 87 20 64 78 4 2357 9635 373 88 26 31 3271 1020 16 476 1 4948 1 3 206 22 34 3 2431 69 3 316 69 20 6017 10 12 2 1798 594 1069 1157 140 490 3 11 6 2 1152 14 8 12 852 146 2940 3 1434 1 259 372 30 1 111 12 1 59 148 539 16 437 20 11 27 12 53 29 34 438 1259 17 154 85 27 3296 25 2333 8 721 517 75 323 489 27 1306 1 5252 2437 1780 204 29 34 6 283 561 1045 2443 3231 309 1 4 2 8776 7617 3 5 25 8776 404 82 68 11 9 6 2 528 69 195 75 6 11 16 174 4481\n1\t129 6 1331 5 26 1 166 14 1 2470 1215 129 32 3044 12 1 3043 4 1 336 246 294 4919 200 14 2 7575 3 57 2 36 335 5099 1 333 181 37 1087 14 5 90 28 4630 114 33 56 333 115 13 8212 5309 40 2 2133 230 5 10 4 1666 3 2032 6 8296 1 238 6 884 3 15 2 163 4 10 6 3 51 6 58 1073 39 2 100 393 4404 14 45 1 206 6 242 5 256 199 77 1 884 6560 6405 298 5 90 199 230 48 1 120 22 6947 9 6 2 2461 108 10 40 28 4 1 80 7863 1330 168 8 24 117 107 7 2 108 10 152 289 1 2064 730 1 671 4 294 4919 29 74 3 98 32 2 957 454 10 6 37 10 276 36 613 2774 4 2 6576 8 57 5 9457 94 9 178 3 3006 512 9 12 39 2 108 9 18 6 373 20 1901 16 3622 8 354 10 14 2 53 6253 5 16 137 942 7 1 82 4251 4 294 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 8 57 1640 294 3145 12 7 9 141 8 54 20 24 219 110 42 5 1 2557 16 368 3 2685 5 95 517 3792 17 977 80 294 3145 104 22 36 656 368 7 1 8383 128 3114 11 1603 7 1 234 336 1838 49 1 1387 12 341 128 9506 595 3026 1 18 1819 15 1 1556 4 9764 300 42 368 11 130 26 256 10 14 14 5887 9 21 6 4904 4 2 15 91\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 12 288 890 5 7834 18 15 84 8333 94 1 2174 4202 3 1639 5371 66 10 12 831 10 56 213 2 53 108 1 2553 4 1 1261 407 384 5 26 2186 3 1202 19 34 17 660 11 1 67 311 310 577 14 3 1 593 4 1 18 1478 5 26 3 1 171 256 7 2 53 5718 17 16 79 8 143 56 70 48 1 18 12 242 5 1142 42 20 14 3971 3 3800 14 331 2853 20 14 1859 14 1301 4 4629 20 14 238 3485 2357 8 407 173 64 144 10 12 2695 16 37 1878 779 144 81 22 10 5 127 1859 438 1259 340 1 4 104 7 1 226 342 4 172 8 1331 236 20 2 163 5 2497 4557\n0\t30 1 51 6 4301 1349 217 1 168 22 46 995 38 95 813 41 840 14 51 213 95 1251 32 2 13 1 124 167 501 1 1165 1167 217 397 2217 22 152 169 1502 292 42 20 3144 7 4943 10 123 1 329 3910 2160 1 21 40 2 327 356 4 4306 217 1 861 6 4835 1 21 6 2484 37 42 254 5 187 31 1062 19 1 215 453 17 1 672 171 22 464 217 1 494 6 55 527 68 13 1420 6 2 464 158 10 151 58 2509 10 40 2061 58 67 16 125 31 5086 10 40 815 1 80 7756 462 117 217 6 56 1065 217 509 15 2 1852 439 1905 14 237 14 203 596 139 51 22 877 4 78 138 124 68 9 37 786 83 351 116 387 14 16 261 422 9 6 373 28 5 9864 8036 1 2741 4310 7 1 3850 21 6402 5316 4 1 226 663 4860 898 1464 217 1 4494 7 4855 12 470 30 217 27 40 2 1002 8311 280 14 2 613 1557 7 1420 1420\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1915 23 36 1052 23 76 335 7 9 313 18 15 1638 7 250 1174 1 67 6 38 1 80 754 891 526 155 51 7 678 3 33 636 5 309 371 702 688 4 611 51 6 160 5 26 679 4 465 285 2367 6066 3 1037 22 1111 3 788 218 128 6 3090 23 24 5 99 2420\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 9 18 14 2 2901 3 1279 15 8752 1103 4 2 7 3368 9275 60 811 11 60 76 100 26 14 304 14 44 972 3504 8211 954 195 1550 107 5138 3 507 47 4 334 7 1422 4 44 6024 98 349 161 3544 3564 1 585 4 44 4291 542 493 1047 7 398 7147 3212 44 74 136 3544 4283 44 9018 3 9003 3316 7 355 44 74 4420 32 849 17 14 521 14 27 1148 27 621 522 125 8384 16 1159 1204 1 542 2164 6 5733 30 1 11 66 59 49 3544 2180 7 2 1697 6994 1 624 98 22 89 5 853 75 78 33 321 239 6874 13 3 9886 22 39 425 14 1 2083 4192 242 5 3922 62 29 1 166 85 242 5 359 1 231 1413 1 304 2653 3 1 360 1077 1738 3568 1 3 97 52 7622 1529 5 1 644 1190 4 2 1425 13 743 1462 21 15 2 5092 4979\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 72 22 20 7 1 2603 901 4 1 1326 72 190 6001 1 1387 4 48 72 2198 197 101 2212 11 9 131 6 7 97 1637 39 7631 3 11 10 6 11 78 4 10 12 1242 47 4 1011 197 148 13 3562 515 97 81 36 132 2688 8 5074 8 2923 109 179 3 3434 3 8 93 11 1 131 6 78 5 686 16 50 1600 3 112 3 1358 22 37 97 1303 15 163 4 1216 17 4070 173 1236 50 3726 8 83 474 38 137 1046 571 4035 3 3466\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 223 14 236 71 5411 8468 8 236 71 847 89 16 110 8 320 2 2862 1254 15 9443 3 7 110 8 83 320 1 442 29 1 4174 17 1 119 12 11 2862 1066 29 2 12 8439 31 5542 3 9443 3 61 4097 1 9 12 89 5 99 7 5411 229 45 23 653 5 99 889 1 7 5411 7 9328 33 1049 9 1254 183 1 18 3 2667 1 1733 4 42 51 22 229 1339 200 2226 3267 89 5328 5 26 2111 140 5411 9 2635 12 2 91 899 73 42 20 832 5 2162 126 1328 19 401 4 458 9 39 276 36 2 91 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 56 4001 205 703 62 205 3 24 911 7 126 8 54 100 134 2758 37 8 5085 13 724 49 10 255 5 4 1 66 8 39 1092 219 16 1 74 85 226 8 726 2 325 4 1139 581 82 68 7 4 1 2 2839 6 1711 3 963 432 1 3043 4 25 9840 28 1925 27 1148 2 678 822 7 1 3 27 748 142 1918 110 9 238 963 951 5 25 3 375 52 2508 533 1 141 72 785 2 42 140 1 3462 4 8634 193 1 5458 100 9226 9 6 48 151 1 18 37 33 395 18 148 5458 5 87 1 981 1 5458 630 4 137 981 61 89 30 13 762 2 304 3 103 2 35 7265 103 9591 406 1343 3 33 139 599 13 150 24 100 71 2 184 325 4 1579 17 8 9671 5 751 1 1077 5 9 21 7 1 774 3667 115 13 4634 9 158 3 23 495 2580 110 50\n0\t1 120 61 5 134 1 1632 34 4 2 2585 1 164 5738 23 242 5 528 1 21 73 116 532 37 1181 377 5 139 385 15 2782 72 57 58 312 10 12 44 752 318 350 111 140 1 135 1 18 56 143 8495 19 4792 72 143 118 235 38 1 250 81 35 5823 571 129 12 2 2922 1 259 12 19 1 274 49 1 81 1436 3 405 5 26 2 206 36 44 4413 20 323 7 5 118 35 33 2620 384 188 61 4847 5 39 70 5 1 1 212 119 6 1135 105 904 16 50 1600 3 8 12 483 1558 261 35 381 9 391 4 4419 515 693 5 825 2 177 41 102 38 21 6799 8 173 241 261 54 1023 5 376 41 55 216 19 9 2129 42 20 722 10 12 20 782 3 12 7606 140 1 389 135 8 214 512 48 54 780 183 239 1146 66 241 23 79 247 254 29 34 5 1405 42 2 9382 3 145 1768 1140 8 1130 31 594 3 2 350 133 1 2908\n0\t15 202 34 4 1 1921 7520 226 1487 15 628 9 515 1583 162 5 1 21 17 6 2 327 103 1388 8 1 121 6 1233 17 1 1797 276 433 217 202 14 45 244 2227 411 48 244 403 7 9 217 45 5176 117 216 702 995 38 95 2565 275 6 51 6 2 15 2 11 629 142 2238 275 6 15 2 5341 2 1182 271 1184 217 217 1282 4997 47 4 823 29 74 14 2 1028 66 12 169 2 797 1361 51 22 43 331 8853 1349 802 7 1 624 3660 14 322 45 207 116 1606 5 187 10 43 1365 1282 5964 366 2795 6 1233 5 1775 40 5057 397 1353 533 217 6 1227 109 1001 790 8 12 945 30 1282 5964 366 10 12 39 105 673 217 1391 5 4778 50 796 16 670 2226 1452 145 20 273 704 10 1071 2 535 41 843 376 5280 646 187 10 2 843 14 236 162 5328 540 15 10 8 1331 217 180 1407 140 78 527 124 17 10 39 143 56 87 235 16 79 145\n0\t55 2478 68 1 35 1 80 1630 4 3 516 10 34 6 4666 8 192 46 2048 29 9 108 75 4000 33 1 2122 4 2752 4 137 75 4000 33 9059 1 486 4 1 2950 413 3 415 35 62 486 5 552 137 3363 7 1 5000 19 11 326 4 75 4000 33 328 5 3 29 1 166 85 9567 19 2 2377 2432 7 1 4 2 3 9109 115 13 2044 137 35 24 1 5 55 96 4 283 9 6108 4904 8 134 9 15 2 1423 683 15 34 50 8560 96 155 5 11 326 3 1006 725 704 41 20 23 22 2 3 1700 3792 96 155 5 11 1344 1006 725 704 41 20 9 21 6 2 9382 3 5 1 486 433 19 11 1393 96 155 5 11 326 4 1 4 2752 4 336 3449 96 155 5 11 326 4 1 486 433 19 137 102 96 155 5 1 1231 10 2200 1068 1 13 725 45 23 24 2 13 8560 1451 1 2122 4 1 486 433 19 30 20 283 9 21 29 513\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8440 56 4104 10 19 9 461 154 1744 6 1747 2 8457 1 1292 6 514 17 1 3225 6 955 13 677 6 31 1276 4 1189 38 9 21 253 10 146 4 31 632 135 1 5401 4 9292 2005 2 3 52 1087 97 4 126 24 240 584 5 9194 2 46 1832 135\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 431 6 407 264 68 34 1 82 193 43 4 1 1733 22 128 1057 1 7354 6 301 3026 11 151 9 2365 6801 3 240 5 1775 55 193 29 268 23 228 555 16 1 161 8 338 10 2 3600 17 977 8 36 202 95\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 313 16 1 1068 5884 10 4223 84 3 4509 10 1049 1 4 2 3682 6291 2 461 6774 294 121 12 9306 27 1012 9676 46 530 9279 10 1049 1 4 307 7 2 5717 10 419 199 2 572 4 48 228 780 7 1 958 7 97 8 12 93 1475 15 1 121 16 1 80 2482 121 1220 8 1 80 1 9224 3 1353 4 307 7 2 1261 22 65 16 1 4264 4585 3 1 6024 1255 164 22 2262 4 403 235 7 95 1261 3 22 1381 84 2688\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28 4 1 104 4 1 31 5875 2590 429 267 15 265 993 6651 3043 3 341 6879 1185 12 426 4 1 5 3722 7763 10 65 16 25 6891 3 9039 65 30 25 4 244 2490 5 309 2 4777 1433 7 2 1 232 106 6311 32 3724 22 5539 3 4986 19 1 1 6 15 2 1119 2 782 31 9717 679 4 3 227 91 716 5 2222 277 2215 449 1 759 4433 2367 3 2030 22 162 5 827 3 1070 6 10 65 15 1097 11 498 155 764 982 5005 32 3615\n1\t204 1791 6 1 53 2112 2 234 9109 7946 35 40 5 139 155 5 2 329 27 5214 73 4 4740 13 92 2185 244 2163 5 1337 7 15 6 626 6852 2501 16 1 4174 8 894 45 236 117 71 2 1898 68 1645 35 2501 7 7941 27 12 31 296 1297 1076 421 1 8642 65 30 2 3261 262 30 2820 7 1 226 244 1 3261 675 27 1141 205 7946 3 4694 16 1011 27 1141 28 1297 231 49 33 2303 25 3 270 1 5771 4 28 36 43 27 9894 1 1935 4 7865 893 244 152 1341 49 153 64 10 11 3293 13 4255 729 75 396 33 6110 5 9177 14 2 8 12 100 56 2173 27 12 95 185 42 1 59 7335 8 214 7 1 226 13 4642 1 161 7946 2501 3 652 385 6 39 1051 7916 2448 154 178 244 7 15 1 1440 115 13 1701 137 35 36 62 4047 3715 35 175 5 64 2 601 4 626 2501 100 107 19 2238 3 35 83 36 772 1 226 2955 6 1 4528\n0\t48 58 28 789 6 137 6568 61 1474 19 74 956 29 924 16 2 1199 395 648 361 207 174 471 195 11 54 90 16 31 1930 3 144 19 990 114 4573 361 14 7 1 4107 361 152 1023 5 751 1 129 3376 32 16 2782 94 399 1 312 4 2280 7 1 661 234 6 924 979 5 5181 57 2 2156 366 414 280 14 1 2755 125 2 3000 1924 3 207 75 2 1292 36 9 557 113 361 14 31 2579 17 2 1998 954 7490 251 404 3796 38 9190 93 314 1 7 1 661 234 7333 10 3890 28 115 13 1268 4 1 3989 7896 35 12 93 1968 16 1 12 937 14 6838 61 37 2337 49 72 61 1363 257 6568 73 72 343 36 72 57 146 11 12 46 979 3 72 57 2223 584 5 5790 13 659 1 4 91 2534 9 6 7095 5 186 86 334 6291 3 1 14 28 4 1 3931 4120 1 466 353 7 1 2685 152 337 77 3814 94 10 12 7518 58 894 257 417 76 917\n0\t54 26 58 321 5 70 13 872 10 39 271 19 3 778 1 212 750 185 4 1 18 6 1019 15 1 102 5385 355 433 7 1 4905 98 33 98 33 5290 2 3 2900 1 5276 4 62 2098 98 33 6613 200 43 1129 42 39 37 509 3 1445 11 8 590 1 305 142 2507 2086 115 13 4 127 120 22 258 1 879 11 70 1 2009 4 1 412 290 411 89 79 539 47 1767 154 85 8 159 122 69 27 276 36 2 635 7 2 3146 25 543 65 5 176 4548 27 41 130 8 134 200 36 244 1 293 363 22 1 121 6 16 1 80 185 1853 3 162 151 95 8588 13 3616 300 9 1292 88 24 1160 31 2940 21 45 33 256 43 52 85 3 991 77 194 355 3996 4 1 3936 1765 1749 120 15 697 1904 246 43 426 4 5480 3347 5 1 1357 3 300 55 253 2 633 129 7 2 1494 17 1453 378 72 70 9 6232 2418 4 3257 11 76 3551 23 5 2295\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 1445 18 15 162 17 2270 3151 1 59 299 8 57 12 372 1 14 78 4 10 12 829 7 50 408 569 4 8 36 5 1594 1160 124 17 9 28 12 2 580\n0\t566 15 6048 58 28 88 2176 2 138 3486 1572 5800 19 257 80 3365 5 566 257 115 13 666 48 38 1 1392 48 38 550 27 151 2 53 141 27 151 2 91 108 51 6 58 302 5 187 9 18 43 1365 39 73 4 1 1392 300 27 12 8 1517 381 9 141 73 10 12 37 978 3 903 8 57 5 2499 8 152 57 2 53 85 133 194 109 571 16 1 3346 35 498 47 5 26 31 79 58 28 54 64 9 259 14 31 37 10 6 2 4064 618 48 232 4 2505 3919 6 2 3721 1290 2799 8 12 747 5 64 3934 57 20 248 9 461 8 192 685 2 102 376 1020 618 73 162 88 26 14 91 14 1 1191 4 13 92 445 123 20 729 4032 8 24 107 877 4 5057 104 11 57 162 16 36 1 857 12 20 55 7790 3 8 24 107 138 121 7 416 33 88 24 31 7216 349 161 32 95 750 416 13 1351 10 1095 10 6 2 299 18 5\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 112 9 108 10 12 28 4 50 430 502 1 238 100 1 212 18 12 248 46 530 1 393 6 56 452 4 10 101 238 33 55 24 2 619 256 7 51 16 1038 49 8 159 48 1 18 12 38 19 1 3480 8 12 232 4 20 273 45 8 405 5 64 9 141 17 356 8 192 132 2 184 2917 5114 325 8 636 5 187 10 2 3614 8 192 1096 11 8 114 187 10 2 680 73 9 12 2 46 109 193 47 108 10 12 46 1766 2525 179 65 9 18 196 2 2379 32 437 1 121 12 1051 2917 5114 114 31 313 329 308 702 8 187 9 18 1 4066 4274\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6366 6 1 3560 17 10 6 93 1 4 1145 1724 3 2 1061 16 15 3 1451 561 3 561 8 555 23 322 1479 23 205 16 116 3085 5 13 6 48 2748 6\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1424 32 1 3631 4 53 3 211 1254 251 5 2 1669 3 1314 9120 586 3425 16 102 349 7 1 576 277 41 723 1166 515 1 29 130 26 47 4 7832 94 224 34 4 1 647 3301 55 147 4449 9766 43 3079 2720 8 36 2943 60 6 20 3 246 58 356 4 2987 7 2 431 8 219 1 82 1344 5112 3 239 165 2 147 17 10 3578 2541 1 4424 3311 100 1397 96 1 4030 88 564 1 131 16 17 13 1601 8 76 134 3646 9 293 6 11 10 136 20 14 586 14 1 3428 307 6 55 68 33 4416 642 5363 27 314 5 26 1 113 129 19 1 983 17 944 27 40 58 148 1 393 6 3 1 59 177 264 189 9 3 82 1865 147 767 6 11 1 374 63 8314 15 5706 48 13 4255 460 29 34 16 218 34 786 2410 9 131 183 10 196 95\n0\t1807 10 6 1 59 2437 129 954 7666 1416 1576 30 6876 14 977 6 27 434 3034 2 606 728 253 9 1 80 1330 21 5 7120 3 34 540 7 2 21 207 459 34 540 32 1 736 13 858 16 1 82 147 647 2993 3282 883 6 10 20 5 798 4600 322 8 495 2600 62 14 1 18 123 2 53 227 329 4 11 34 19 86 221 6768 10 213 554 15 286 174 66 380 1 1418 11 6876 6 866 9890 32 5 1865 21 13 252 391 6 2 528 2 2384 1378 11 213 55 227 5 7 86 378 10 1 3705 299 4 86 206 77 1 28 3 68 10 321 26 17 20 670 1906 41 467 227 5 209 542 5 246 235 5 3051 7 403 814 6876 6367 34 125 50 2122 4 127 81 3 1 3102 234 27 1868 1242 16 2350 13 150 24 1550 71 37 5693 29 1 484 3 145 9689 5202 66 29 225 1619 1684 147 120 72 1662 5 112 183 5714 949 378 4 1279 120 459 13\n1\t17 48 63 23 504 16 2 74 148 21 32 275 128 7 298 4294 16 2 799 11 1 445 153 3821 45 23 186 295 2 222 4 1 505 1 478 538 801 152 247 1 2818 4 1 8 159 9 29 2 1672 3 1 478 12 4810 2525 89 1 305 554 6082 3 1 233 10 12 383 19 98 48 22 23 303 1 441 1 1117 3 1 1898 4 1 158 66 22 13 63 348 2 471 11 78 6 6566 60 63 787 2316 3645 138 68 80 81 7 3727 932 2 383 1307 11 1080 11 441 3 652 10 5 157 7 2 8761 1688 111 458 61 9 2302 2039 228 24 1196 187 10 52 2830 1041 138 478 3 378 4 3 55 1 339 9 282 6 9803 3 2202 7 438 11 12 89 2 53 156 172 1742 444 248 43 491 216 4836 1 1625 16 1912 4 31 2986 289 458 3 8 173 947 5 64 1 2302 445 691 444 1613 3108 9 6 28 898 4 2 18 32 28 898 4 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3121 164 7 1 6 2 1325 1087 176 29 157 140 1 671 4 31 206 626 9660 3209 6624 4 44 2113 15 1612 861 3 2 668 6460 9 21 2018 408 14 28 4 1 80 1127 3 2537 124 7 1058 4352 13 252 21 6 9803 34 1 121 74 9749 258 1334 3 31 6483 278 30 8752 7 44 21 23 76 230 154 1900 14 9 157 2708 1702 7 19 1 231 4399 255 5 2 13 5851 164 7 1 12 2 1953 1042 7 3 23 76 112 1 233 11 80 4 317 231 3 417 76 229 24 100 455 4 110 751 9 305 3 335 2226 269 4 1011 7006 3981 9 21 6 1 3593 4 29 86\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2176 2 18 15 2 53 201 3 327 288 1972 216 17 10 39 83 24 110 206 742 3668 191 24 71 2 103 222 1455 29 9 1039 4 1 75 78 138 25 1 9095 1 5458 3 1 344 4 1 238 384 5 26 7 673 1729 55 285 1 1729 1192 9 21 965 5 26 45 2357 11 2839 273 485 489 5952 5 79 3 1 631 7131 6367 7 137 3063 5565 39 4865 916 105 565 1 171 114 1530 17 180 407 107 34 4 126 87 828 1147 198 2 1815 8 74 159 9 739 202 1099 172 12 945 98 3 4915 37 655 330 956 1099 172 3513\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 2 147 402 738 1 523 6 6936 573 120 22 1258 5 15 3 22 463 3094 41 1 882 6 4904 3 3685 20 46 6069 6209 3 289 199 1 601 4 25 4045 140 25 185 15 137 671 3 11 672 4 25 11 204 59 15 1 6 738 50 681 210 18 3212 2233 2 1214 100 5 26 7 1 1332 8184\n0\t270 2 147 1910 3 2 7488 11 4831 1956 3 151 44 24 2 1 886 11 57 1 3 44 766 139 142 5 2 334 404 19 3 1 886 5936 6 283 31 1854 4 44 975 41 2525 10 6 3039 5 44 3 3199 44 5 875 295 32 51 3 5 100 333 44 2208 51 41 60 76 5317 1 342 94 33 70 9867 224 7 1 678 569 2033 11 34 1 6705 22 34 5967 3 60 432 3 1893 4 34 4 44 6589 3 2567 98 678 188 357 5 780 14 1 886 1937 2 7548 605 334 19 2 3069 11 1283 2948 12 14 109 14 283 1 103 487 5 4182 6046 29 1 11 27 406 2080 1 886 5 352 122 652 155 5 500 1 886 521 440 5 1291 1 569 17 59 5 149 992 30 42 6705 3 2208 3 615 992 9326 34 4 48 1 1343 440 5 2979 44 1395 9 18 6 1530 42 40 42 529 4 1216 17 10 56 88 24 248 78 138 68 5 24 4182 7 939\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 728 2 587 52 16 709 871 7 1 1188 185 4 25 121 3987 123 2 55 1528 329 4 4849 2 2622 710 1235 13 4052 6 39 37 1202 29 154 3 95 799 7 1 158 11 1 353 301 8893 516 1 129 69 59 1 46 113 117 3882 9 3 49 33 87 10 6 59 7 2 3507 4 546 29 6837 13 92 212 67 954 148 67 66 653 7 3782 1556 6 37 8307 37 3775 69 10 151 16 2 46 627 21 11 28 7115 16 2 1896 223 290\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3688 1 164 6 38 2 259 35 6511 1 2391 4231 289 4 14 2 111 4 15 25 5512 9822 8 333 1 736 73 197 2575 5 2 206 2127 2219 801 8 143 24 1492 5 7327 41 765 65 19 1 21 2546 5 4171 902 495 24 2 2481 48 10 6 5722 13 3 596 4 1809 104 190 26 77 133 1 164 15 1 2988 4 43 3061 168 4 6865 3 6363 3602 5752 17 1013 479 93 4147 4 5690 7648 2433 4541 149 9 28 2 148 5 694 7878 13 269 4 1906 4586 4927 30 5473 464 265 3 7631 1765 9 489 6003 6 1 425 111 5 2476 1962 45 819 128 165 34 116 468 4218 9 3160 142 3 99 146 547 378 669 219 1 212 1689 17 192 109 1997 11 145 301\n1\t34 4 66 151 25 1659 178 7 1 18 34 1 52 13 3422 43 4 1 1773 3 5784 5616 22 2 222 2431 4297 1367 1 388 562 620 7 1 7800 17 1 915 4 1 21 6 167 78 5023 367 27 57 405 5 90 1 21 16 43 85 73 27 56 3114 7 1 4 13 188 90 9 21 2 2073 1 67 6 13 92 121 6 258 1 189 5023 3 15 327 453 93 30 3 13 92 265 6 332 3090 1 4 3 2746 15 1 1117 824 90 16 43 323 866 1192 9 12 1 19 1 9959 16 1 803 13 872 1 833 883 1 4 1 21 6 2 2846 461 657 42 2 21 38 17 19 2 52 731 1367 42 2 901 38 48 63 139 540 15 1559 4 4076 42 7 1 11 23 149 1 148 859 4 1 135 946 838 5 48 666 38 1 7957 4 1 576 801 6 257 3 1367 75 6 6843 4 48 6 13 252 21 6 28 4 50 401 1045 124 4 34 5623\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 480 2 3348 811 29 268 36 10 12 308 2 1534 3236 15 97 120 3 119 2841 41 1391 43 4 127 22 3691 15 7 1 323 313 3 237 1914 5409 6910 6 2 17 42 128 2 953 38 2 11 1 692 3 8286 2720 20 1 7 7359 4 1506 11 63 473 7 1 85 10 270 5 90 2 1969 42 93 2 21 106 1 80 4879 129 213 198 1 80 5215 628 14 1 4290 393 151 59 105 28 63 830 2 3657 4 1872 101 2429 16 34 1 11 28 19 28 2557 13 34 105 396 2 353 17 198 29 25 113 457 2132 40 815 100 71 138 7 1 4903 20 225 73 1347 78 52 278 151 25 52 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4985 8 57 5 26 5567 3 187 9 2 2824 9 12 1281 664 5 1 2270 1931 757 7 11 106 44 5374 2620 8 214 11 2715 6813 82 68 458 9 18 123 162 52 68 1851 2 156 53 1308 15 2 4699 211 45 317 1774 5 1337 1145 708 29 10 15 7689 17 10 3195 58 138 68 2 2824 3 2 358 167 78\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 277 3493 22 553 7 9 158 11 384 5 24 71 383 197 2258 4 9 101 2 2746 135 1 1350 1999 1 277 30 246 126 34 3228 5 9968 1867 292 23 100 64 43 4 1 951 15 13 92 74 40 1494 2 287 1893 4 297 457 1 151 6226 176 246 2 8046 3400 29 408 3420 23 76 1345 2703 29 16 403 43 903 2508 60 2731 1 2009 4 44 85 7 2 66 289 142 44 491 9610 17 44 21 6 1 210 45 20 1 80 13 92 330 6 7165 30 1037 7753 14 27 2148 1 6595 32 4359 25 6595 2378 122 5 186 528 3320 4 849 3 1037 123 37 1875 27 13 92 226 12 211 14 2 164 5195 11 469 76 186 122 29 95 4174 78 36 25 7760 35 5 469 19 31 13 2078 46 1476 14 1 18 14 2 212 181 7122 371 15 46 103 179 4758 2 191 16 1037 7753 4238\n0\t25 585 4218 32 1800 416 5 13 1226 1003 555 6 4167 11 6173 3142 57 1674 829 2047 1814 16 269 3 1 344 4 1 138 1891 8 555 27 1808 89 218 185 29 513 185 2795 419 199 1 425 1905 9 3601 142 12 8868 3 13 9 6 20 2 2671 5 1 135 8 219 34 535 6531 124 125 2 4403 989 2720 8 12 1 74 20 59 123 9 467 11 50 1691 16 185 6377 1121 6082 1240 698 8 57 274 1 1940 243 402 16 10 94 48 8 17 10 93 907 180 57 2 53 85 5 96 38 34 277 703 136 8 12 2 222 945 15 185 2795 29 1239 1 52 8 179 38 194 1 138 10 17 15 185 10 12 91 5 905 2159 98 165 527 1 52 8 179 38 110 1 747 177 6 11 97 81 76 582 15 185 4780 17 45 33 99 185 2795 14 322 33 76 80 1458 139 19 5 185 45 23 24 1 6546 99 546 8 217 2795 3 4294 36 185 6377 100\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 462 130 24 71 218 11 12 59 27 114 13 677 12 162 19 1 18 11 12 452 1 3530 4 1 18 153 56 15 1 6199 13 92 59 177 11 8 63 70 32 1 18 6 11 27 12 2 53 2375 17 2 402 157 464 13 1964 1140 11 8 50 319 3 387 19 9 108 8 159 81 1204 1 856 7 1 750 4 1 108 8 2716 1247 11 10 76 2 6633 8 165 8350 13 614 51 6 2 8691 11 8 63 90 5 27 1840 6 5 25 157 5 174 73 253 104 6 373 58 25 4259 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 117 5279 1867 5 1015 9 3124 3 20 59 114 27 1015 194 301 2704 1947 1 6658 3113 5 90 1 129 262 30 626 7789 1240 25 80 6077 1835 3 207 667 2 77 2 1842 6 3976 3 4 6419 30 368 341 561 6419 11 1063 5 96 11 1 113 111 5 90 2 129 2896 6 5 2 19 25 1877 7 95 1723 9 18 6 1319 115 13 1149\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 143 96 10 12 888 16 2 203 267 21 5 2197 37 19 205 1319 1 233 11 10 153 186 554 1067 2 53 557 421 194 4176 73 1 171 22 37 1974 23 56 54 5245 33 22 765 7669 19 1 3934 2614 14 3541 40 2 156\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7451 7926 12 536 140 766 9133 217 469 49 60 114 9 135 891 4166 12 774 1 401 4 25 4529 3741 6973 6 7 313 5078 3 3700 31 918 16 626 6942 6 2695 217 621 39 386 16 25 6404 13 92 67 6 2 103 32 174 85 17 39 14 4211 14 80 491 75 109 63 1564 7 9 21 217 93 75 1108 6942 65 7 2 342 4 1 124 362 13 2136 63 64 144 1 201 6 37 53 217 152 397 2547 9 21 6 46 452 23 63 348 7926 6 6913 285 9 21 14 136 44 121 6 4275 60 276 2537 7 43 13 92 893 2326 7 9 21 22 37 11 97 4 2001 170 902 54 20 853 48 33 2620 21 123 2 53 329 1083 2 67 217 152 844 2 967 5 26 89 29 1 182 193 630 117 12 193 428 660 1 3235 54 26 2 53 3588\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 2 18 11 8 3388 8 88 1379 5 50 296 2567 17 94 843 1035 5 99 1 18 5 8693 8 563 8 339 55 99 1 1589 177 5 4619 23 22 202 2173 1 697 392 143 55 226 11 2043 4971 76 328 5 1193 50 16 2 18 36 476 17 1289 827 23 173 139 32 133 2084 2015 2934 5 995 38 1 18 445 1820 41 1 410 69 137 83 2 206 32 253 31 1244 108 1 2206 4 1 18 6 20 37 91 3 1 233 11 10 6 6196 69 33 359 8435 1 166 3069 17 187 10 264 8 179 1 12 2 464 69 9 3069 485 36 50 1 129 1273 1102 395 7907 288 155 5 62 226 2103 183 101 130 24 71 533 1 18 3 20 39 77 28 223 8708 5 9 1344 8 24 286 5 99 1 1905 17 51 12 2 78 138 18 1491 667 404\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 9 21 19 756 3 4574 30 1 1212 4 2051 10 12 2 4115 21 3 23 63 99 10 16 1 1212 4 3724 3 4 448 29 11 85 8 12 6324 133 9 18 3 32 98 8 192 242 16 4 9 21 17 8 192 2161 5 149 110 568 2602 151 1635 25 21 3 72 76 26 3528 311 30 1 5524 4 137 1804 3 2278 4 450 34 3062 4 410 63 99 9 18 591 537 76 335 9 135 17 43 168 1295 2495 16 9 135 10 6 2 837 3200 18 16 28 3 513\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 51 6 2 305 7561 7 1 2736 7 7555 3920 19 1 7328 58 19 1 58 3920 7 1 2558 13 2 826 5805 32 115 13 677 6 58 78 272 6 5581 31 1217 135 17 9 28 1263 2 4301 640 3 1 120 22 2959 10 12 620 7 1 2269 2063 7 1408 13 3440 107 10 7 111 155 7 13 858 132 10 1071 2 334 7 31 4 502 1 305 40 58 293 1008 3 58 3 12 229 89 712 2 1919 2581 14 2732\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2003 8 134 1786 1207 35 1786 23 228 65 31 1854 4 816 4949 600 41 3650 41 300 745 409 49 8 134 1786 578 2164 1786 202 407 65 31 1854 4 2077 5689 136 2 346 3507 4 81 190 96 4 2402 2772 41 4656 4430 409 17 49 8 134 1786 1786 332 307 76 96 4 5181 409 1031 1207 35 41 578 2164 1 280 3852 5 28 353 409 3 1 465 15 9 21 324 6129 555 23 61 133 1 161 315 3 482 131 409 7 233 1 212 312 4 253 2 21 324 4 197 7 1 462 280 255 542 5\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 821 6 728 1914 3 1 113 546 4 1 21 22 1654 32 48 16 5540 1 2446 17 3591 1569 11 2296 77 1 168 15 8964 3 41 1 4116 11 270 125 43 4 1 994 106 1 21 32 1 2797 10 5162 5 1 13 8 83 175 5 1379 11 1 21 6 91 7 95 699 10 198 276 1 185 3 1 67 2683 7 1 438 36 2 53 43 4 1 1681 120 61 2188 171 35 88 473 62 874 5 13 777 2 2384 1152 11 1 644 20 1492 19 1771\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 215 12 1571 3654 1476 9738 3 774 3090 191 26 2 9362 16 74 967 5 2 56 53 7 307 863 49 2 4722 153 216 74 42 2494 174 715 268 15 43 4712 449 11 10 76 963 390 695 6 2 586 2234 4 571 4 448 11 2 2234 130 26 45 23 336 39 83 64 9 158 39 64\n1\t0 0 0 0 0 0 0 3089 107 9 21 52 68 308 944 3 236 198 275 7446 38 1 4 1 119 9076 17 98 69 9 6 185 4 27 266 385 15 1 3508 4 7933 13 777 46 4358 75 1 496 9419 67 4 75 1 102 624 6 316 7 3152 55 52 9419 441 11 1 624 90 65 16 2 8903 9 21 6 2 1486 189 233 3 5742 42 52 38 188 11 228 24 653 7 1 576 41 228 26 2267 7 1 5050 68 10 6 38 697 42 2 3149 4 69 37 9083 227 51 22 2 163 4 228 24 214 240 16 25 1153 36 34 1 115 13 3926 8 2564 228 26 240 5 26 219 7 3770 5 1955 2119 616 4 1 3275 2868 93 811 2590 7 31 3713 1100 699 9 21 6 20 38 1 8128 5 1431 10 14 1 67 4 102 624 35 889 3 963 390 417 3 41 14 1 67 4 31 2707 35 3572 16 44 433 2626 674 153 134 78 38 1 1109 4 29\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 76 2382 116 1127 121 7 2 67 11 9965 34 4 199 5 414 47 257 5613 4452 76 139 1678 32 737 3 1 607 201 12 4455 144 54 54 261 175 5 875 7 3 2210 315 9945\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1447 8 6537 8 192 2284 3 42 5428 391 15 84 420 284 2143 8173 19 86 4768 3 4683 4470 48 8 165 247 490 17 2 1517 179 7977 3 2316 616 839 1031 95 1715 8 6783 241 11 1 2009 4 1 35 343 1 21 12 41 6537 1 21 14 45 10 61 436 9 6 6314 6 146 1576 5 1 17 10 6 7023 1 3448 44 34 77 44 278 685 10 2 1087 3 3099 11 6 311 1321 3 44 5374 190 26 44 44 3 44 4141 17 30 1 182 4 1 158 1 410 255 5 3658 15 1159 3 1942 44 9502 14 9 1388 380 44 55 52 47 57 1 206 201 2 1 1380 54 24 71 8 481 52 496 354 9 179 7977 5754 26 3023 5 78 179 7 9 5482 3620 135 1 4937 3 545 76 26 1517 9794 7 1175 80 82 124 88 7193\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 173 820 10 49 81 139 64 2 18 49 33 118 33 495 36 110 50 1916 1143 1330 484 37 144 114 60 64 1947 60 1274 10 39 5 652 224 1 4274 37 8 118 207 144 10 143 24 2 2302 4274 8 187 10 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8739 50 851 48 1 898 653 145 20 160 5 134 9 316 17 48 426 4 18 6 2782 1 3710 7 9 6 111 210 68 1 3710 7 2344 6033 5433 57 5 26 1 210 651 7 10 3 1 4982 22 56 38 43 1518 404 35 196 5 2031 2 3345 9837 11 40 1 166 2838 14 800 2344 17 49 9 3345 2296 224 27 4160 174 28 3 98 440 5 7799 27 49 4968 5433 196 151 2344 25 5705 17 297 271 540 3 800 2344 3426 1 3345 94 2693 13 49 8 12 133 1 18 8 165 2 49 4968 5433 3 1 82 544 8 1407 140 1 6353 4 133 1 305 136 10 12 372 8 12 1247 11 1 6951 7 1 18 12 160 5 182 318 1 393 40 5 26 2 56 91 28 73 33 3084 620 2344 155 19 25 1444 1076 4765 3456 13 2687 99 1 18 457 95 3874 41 45 23 4 1 2259 23 76\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7047 63 2025 134 11 9 18 6 2 45 8 57 20 881 15 98 50 8 54 24 2910 3072 3 1783 16 50 319 1877 8 112 17 10 12 36 60 12 19 1 540 4994 8 36 80 2646 7020 17 8 1595 9 461 9 6 1 59 85 8 159 37 78 3 12 20 590 778 137 9536 61 111 58 28 2492 11 111 4078 3 8 83 96 33 55 114 3483 1 1206 185 12 4729 367 5 79 8026 36 11 143 8026 96 10 12 8 367 1661 59 5 4479 44 7854 195 8 118 144 72 100 6 28 4 1 210 104 8 24 117\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 107 1 18 3 96 86 4407 86 3808 155 1816 38 85 1 598 21 1926 310 140 15 146 86 53 75 1 259 35 2006 126 29 1 3085 2276 196 1505 111 77 1 21 7 1 1949 327 9963 1 121 12 1321 669 192 2 33 1385 79 4 43 53 268 8 24 57 7 1 6092 1361 10 12 53 5 64 1 21 206 355 7 19 1 505 109 248 3650 579 29 1 182 2 147 196 5598 7 5974 6 9 1 9193 16 2 4339 3124 449 37 359 126 9385 84 21 600 109 2878 1087 120 579\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 206 4 8 96 8 159 2 222 4 9 7 50 2152 8497 7232 3 8 1 914 2922 37 8 713 194 480 1 1020 30 1 676 797 635 742 2934 3 5699 492 968 65 5 701 2 1610 282 5 3953 730 3 64 45 33 63 70 295 15 10 197 1 613 1565 450 6195 1 701 6 1557 1060 15 147 2185 1334 6983 35 22 167 30 1 2774 214 19 1 1146 8640 1 1439 153 291 5 26 301 160 109 73 3 1334 87 169 1108 24 742 41 5699 14 10 6 39 2 1193 4 45 33 63 126 1695 93 993 14 3529 1469 7381 14 1796 637 14 2046 8682 3 816 14 1712 8 63 64 195 1 166 1292 14 3361 4906 8962 15 1 5234 16 2 3953 1689 17 9 21 123 10 7 2 46 810 744 3 20 55 2 3408 53 63 552 10 32 101 1065 3 2775\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 169 8305 9 21 6 13 499 418 142 8305 288 36 2 2221 4 2 7893 170 282 3 271 19 5 390 2 1325 3995 203 803 13 2687 504 2565 41 7214 9 6 3 39 14 27 54 93 87 7 6351 2981 999 5 3642 1 203 11 6 20 101 13 85 23 99 9 158 23 3539 52 38 835 3 38 75 1 102 5029 7 9 21 13 24 100 71\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 252 6 28 91 108 2556 121 7 332 2680 1 5614 22 3 1 119 6 224 260 1319 17 3255 86 37 91 11 86 299 1 263 6 37 91 11 86 23 39 24 5 6113 3 539 29 456 132 14 1352 497 1333 48 23 637 14 1 415 3984 62 5374 29 1 8 467 209 19 1333 211 1232 86 37 6149 10 40 132 586 716 11 479 6017 17 94 2 136 10 39 432 5 78 14 1 18 498 77 2145 8 56 544 5 735 1961 79 1024 1 3928 9472 2749 19 1 844 3 1 1829 4 2 6323 109 359 23 1094 16 2 223 290 193 8 24 5 134 10 57 28 797 185 49 1 9472 3867 11 3751 7 350 3 27 39 4986 51 16 2 136 47 48 5 1405 3670 141 66 40 5 26 2695 16 1 3934\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3046 710 5452 198 381 9 21 46 1264 7 2 298 2860 1 21 2666 97 5258 16 4784 1240 710 7 7232 17 8 118 2 163 4 4784 337 19 7 706 94 1 80 631 6 1 733 189 3 1074 5 1 28 189 3 13 150 198 1505 11 8 343 9 21 57 28 4 1 168 8 57 117 107 7 2 108 28 3002 2 7465 49 27 2242 47 1 1 28 106 6 3244 65 44 3400 34 1 136 205 22 1 6180 4 1 82 7 1 971 333 1 49 98 175 5 1229 19 1 2558 2631 19 1 185 4 28 41 52 129 7 2 9 6 2 425 665 4 1 3 10 6 13 4511 1554 57 1245 2308 1 182 4 1 135 28 5822 11 28 833 4 1 18 12 3 11 58 729 75 78 28 336 3724 41 28 481 2602 1920 1 4244 713 5 28 191 26\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2003 8 74 159 1 1203 4 9 18 954 1598 3889 2 156 3 1 442 8 563 8 247 7 16 95 184 368 108 8 12 3202 619 5 64 1312 7 9 2493 35 198 123 2 53 329 7 1034 280 27 1 5614 22 167 5966 51 213 105 78 4 2 640 3 145 128 20 273 144 9 18 6 404 1668 73 51 6 162 7 9 18 5 87 15 17 209 19 1046 48 114 23 42 20 56 14 91 14 10 45 23 335 1 161 4978 541 315 3 482 1643 484 9 28 6 676 31 6921 2614 197 1 293\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 12 37 288 890 5 283 9 49 10 12 7 10 590 47 5 26 1 1 1003 369 1781 2 237 1717 32 1 234 4 4849 10 12 6447 3 8 83 96 4849 54 24 1 5922 3686 1075 12 78 828 8 365 10 57 43 1546 1217 716 7 10 17 50 537 24 286 5 1236 778 3527 1 1398 7 1 3341 33 997 2 163 52 68 8 54 24 65 15 4849 10 56 2705 79 5 64 75 9 5092 382 165 19 1 184 412 64 48 33 87 15 6348 2 449 9 28 123 4849 43 8097\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 40 43 4 1 700 1411 927 3 1201 5324 117 7720 7 28 2814 1 119 6 595 17 1 2038 22 227 5 90 65 1 9484 9 6 2 5092 18 16 34 3436 11 6 273 5 8473 14 2 1262 632 921 10 6 496 3 15 580 460 36 4837 9824 8707 3 8194 75 88 23 139 115 13 927 3 132 14 9 40 223 71 3 6 46 832 5 2 53 665 4 9 6 107 7 1 4 9 4356 1 319 15 816 3969 3 6042 2043 480 1 860 3 1710 267 4 127 3108 1 21 3295 3 2071 345 746 3 545 6588 306 1411 927 6 31 3981\n1\t33 61 34 147 171 3 1684 3 39 176 48 33 33 1544 15 1 131 3 10 12 2 5168 86 28 4 1 113 289 117 89 3 86 229 1 1340 3280 180 117 107 7 50 500 10 76 26 747 5 64 10 182 17 45 33 182 9 983 8 449 5 851 11 1 251 3177 271 47 15 28 4 1 1003 11 95 1022 3177 40 117 5125 8 83 474 45 1 212 1022 3354 73 33 552 34 1 16 1 570 2351 139 224 70 28 226 4134 1107 1 131 1071 194 1 596 2005 194 45 33 3137 369 307 118 86 160 5 769 36 19 2098 3 369 1 3177 26 8 134 70 6581 3 1994 8 134 24 9010 3 566 3 390 417 805 8 134 24 146 240 780 189 3 2413 73 40 71 242 16 37 1896 17 4 448 10 4108 216 47 16 550 39 542 47 1 251 184 85 13 3053 2847 131 76 198 26 1 113 7 50 3888 8 555 8 57 23 559 14 2567 23 22 1 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74 8 12 997 400 142 3998 30 1 644 2319 3 98 8 726 400 15 1 67 3 15 1 609 5246 1 120 61 34 1435 9462 20 17 39 36 1 81 72 414 738 2882 72 22 7 1 1561 7 7 3960 41 7 4505 34 301 1202 423 5807 15 3 368 88 825 37 78 32 9 304 135 10 289 11 51 6 58 321 5 139 77 154 103 2252 516 154 238 5 652 47 1 212 833 935 3 3 11 289 1 5115 4 1 1359 5 6651 3 1 360 201 16 9 1016\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 9 18 94 4465 1756 982 8 12 7216 172 161 3 997 9 739 19 1270 4133 29 1 223 881 616 856 19 2647 7 8 179 106 42 12 2 46 53 108 944 245 94 202 5315 1166 42 20 14 53 14 10 1306 268 24 3 9 18 6 195 2 1455 161 4 1 392 189 1 10 114 245 1236 2 334 7 85 66 6 39 2 8708 42 56 240 5 64 1 1 161 2 1862 4380 3 2 4138 567 4923 1 121 12 5417 1 263 595 17 1 2122 61 128 106 42 6052 190 20 26 106 42 29 16 1259 17 16 503 10 12 128 2 327 3 548 1285 224 2079\n0\t4 81 35 1274 9 21 2 394 12 674 2 7881 4061 73 6 1 1998 1854 1847 23 24 107 1704 125 3 8137 13 123 20 2883 14 31 590 2 622 1946 5293 5 2 3234 2727 25 121 6 39 908 2007 3 6747 5 634 432 52 6766 7 1 168 15 1 4605 2802 463 33 22 84 171 4077 1074 5 33 291 84 171 69 39 73 33 291 1574 3 8409 13 40 43 824 11 88 24 71 5261 240 16 9 402 445 18 69 2 298 2860 723 2976 7 15 2 1946 3 2 526 4 4879 3728 242 5 70 7 69 17 1 67 36 1 9169 1957 762 1288 6550 41 6 10 7271 6 331 4 1698 4604 679 4 2515 3 2984 807 3 987 20 995 4828 8581 6 1 250 13 3 309 2 9881 3 342 7 112 3 33 1917 1 80 4752 453 4 1 141 55 45 27 181 2 1879 324 4 1334 3 2 7 2 18 106 297 62 3 541 227 1684 1276 5 4012 50 796 32 7206 5 2435\n0\t1422 4 345 505 4118 2132 3 397 7542 7 9 18 2 1139 4898 5601 65 94 2 8663 2018 2 2889 7 3 792 19 1 558 7 1 3765 1 1991 30 28 558 14 1427 1598 15 4089 42 6013 125 1 2435 5 1430 86 6392 183 2 10 2 342 4 268 217 10 2180 32 154 129 7 9 6 2 528 28 1445 4389 289 2 139 77 2 1320 5 4517 2 4 378 4 311 2512 1 1 3399 4632 1 3 174 4632 29 2 6388 196 4106 959 1 34 37 11 27 63 6957 30 1 2557 6053 4 1 1198 3673 10 5 26 162 52 68 2 391 4 236 2 1429 7173 2280 15 2 5952 598 1778 5213 90 122 291 52 102 8764 3068 43 978 7909 248 7 3 761 1138 7 28 1370 1146 1 1429 7173 3 25 2108 5 1 18 31 1988 843 269 30 19 75 190 460 33 63 64 7 1 366 55 193 10 6 674 326 85 55 19 1829 9 3 6959 565 666 637 1 7675 9 9939 4808 56\n0\t281 6 2 687 402 445 7042 2908 42 377 5 26 2 38 2 1176 4135 9546 140 1 7460 154 129 6 2 32 1 2020 296 5 1 3398 1 121 3 3585 22 2 528 4644 45 317 1247 5 64 2 163 4 9546 1131 69 359 51 495 26 1878 3 48 51 6 23 88 87 7 116 15 2 772 2417 3 2 10 54 176 138 68 9 682 13 777 20 11 8 83 36 7042 402 8 1405 42 11 9 6 132 2 1378 4 91 505 91 647 2256 67 3 58 5991 11 23 39 173 335 110 10 123 20 1179 77 1 5560 91 42 7455 9234 779 63 23 70 2 539 47 4 75 91 10 6 197 1 352 4 42 650 2 163 4 509 1131 4 1 81 2914 3 133 1305 500 51 6 2 9546 1643 66 6 301 1521 257 493 6 2966 6126 224 19 1 32 845 136 33 1473 62 155 29 550 30 11 272 23 22 6750 2761 16 9546 5 5716 43 6126 19 1 2177 3 582 1 212\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 58 907 2 5347 3 237 32 6369 1726 128 40 78 160 16 110 1 2840 3 304 2653 652 199 155 5 2 85 223 220 3186 6369 3993 123 131 529 4 25 576 3 6 1233 14 1290 2 1823 809 576 255 155 5 9195 550 1 572 6 152 2 1015 4 3 1 67 181 4289 2971 3 30 2001 5544 93 97 4 1 607 201 291 5 26 311 140 1 7 9 2129 97 81 24 93 1074 10 5 28 4 1 34 85 136 133 1 158 8 88 64 97 4 1 17 3255 40 1685 3330 37 186 11 16 48 42 7 45 23 22 2 325 4 41 161 5500 112 3313 23 228 175 5 187 9 21 2 5786 3823 420 354 41 1 14 2 53 3213 5 43 4 4589\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 6 2 1517 45 1716 108 8 713 10 73 10 460 742 3 2356 102 53 1041 3 73 1 119 427 69 2 3250 1855 6 38 5 26 612 32 2 1741 9015 69 2397 1 18 6 4803 14 2 1073 48 72 24 6 31 2174 251 4 802 69 23 130 1 7666 69 4 81 7 6819 3 45 595 1363 239 82 69 7 1 4843 683 3644 185 4 1 6 10 136 4712 3 1765 43 4 66 6 5 26 2318 7 2 426 4 699 494 16 1 212 18 88 1179 19 2 3 27 2898 2 625 2745 4050 69 2 69 2880 5429 3 7309 87 1 113 33 5435 2781 4640 123 2 1 1079 1307 2452 3 5846 17 8 936 1155 126 899 19 62 1 212 177 6 6162 6283 3 31 8 5 1 541 4 3 1711 45 23 338 468 229 36 476\n1\t84 4551 618 8 721 194 50 1062 5 512 16 172 6523 1416 8 191 26 818 7 9 38 1194 172 41 37 94 8 159 9 21 16 1 226 85 19 5165 8 5 284 1 161 217 2 3062 4 1 3522 5768 1287 1 1193 12 5 6569 3 1 1193 9440 4782 23 22 1050 28 4 1 700 171 4 34 387 912 98 87 23 1064 5 26 738 1 700 25 1836 1220 3 4526 8 12 17 20 5658 8 155 5 25 3 8 343 46 53 16 246 107 9 84 1514 7 849 3 195 246 50 793 5211 30 174 216 8 406 4 448 51 12 3 97 82 84 529 15 9 158 218 226 130 26 107 30 34 121 8030 8 3478 481 320 2 84 934 38 1 21 94 34 127 172 17 561 7468 7 194 76 100 597 437 45 261 47 51 7115 9 21 1 166 14 8 5633 8 54 26 942 7 2261 32 1038 16 9 572 7 50 683 818 8 419 10 2 394 39 19 1 543 4 25\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3326 5464 8168 40 39 7561 44 74 821 3 6 507 224 38 44 8596 507 11 42 5 352 44 2 170 6993 2080 44 5 352 122 946 142 25 45 27 323 451 5 352 122 70 828 204 60 196 602 15 988 5 3673 95 52 4 1 119 54 2600 28 898 4 2 299 18 3 4 190 46 109 26 1 113 5177 18 180 575 638 1059 3 470 9 2067 207 331 4 1765 84 3 227 1552 5 359 23 3584 1 714 6 425 14 1 5464 8452 2 720 3 8066 44 14 1 3 15 1 1675 4 2 8638 7 1 226 6538 4 1 141 1 21 6 7 1963 1377 4 42 3 72 22 2083 1 13 6685 47 4 3615\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 207 144 254 5 115 13 2679 1 1217 272 4 793 1465 272 4 8 191 134 8 1310 670 3072 675 1432 51 6 43 1094 178 5889 1 1365 270 204 17 11 173 552 1 834 574 4 263 3 212 141 207 13 47 4 394\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 987 70 43 188 826 1713 83 3097 37 1 1951 63 24 126 6334 898 55 2874 45 27 451 1467 207 48 151 9 215 1028 18 37 452 297 33 114 12 37 1589 1766 8 812 10 49 1132 87 297 36 6796 41 49 325 1161 504 297 36 43 5385 96 11 1713 130 59 36 2 687 6796 141 308 316 1713 83 3097 37 2 1951 63 90 1713 45 27 1 1713 7 9 18 34 176 46 53 17 515 33 22 20 8249 220 33 39 9413 33 22 167 5235 65 193 3 331 4 7122 2121 3 5099 28 4 1 168 12 2 350 6957 10 485 37 1589 148 50 752 4555 49 60 159 110 9 18 165 56 53 746 7 3 37 11 89 79 175 5 139 64 110 145 1096 8 33 22 198 260 49 10 255 5 148 203 394 47 4 139 760 1027\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 497 11 307 40 5 90 2 29 43 2115 3 207 610 48 2692 6122 783 5 87 7 218 113 4 1 164 35 337 34 1184 15 1 2066 7 5892 6 372 7 9 1723 27 5135 5 2 562 11 2591 25 298 416 2 3588 17 213 39 160 5 139 385 15 10 37 13 42 20 1 113 18 16 463 1368 17 2011 3 2999 22 152 2 167 53 267 4894 3 43 4 1 1487 7 9 18 22 1458 5 187 23 1 5213 134 1 841 10\n0\t9499 3 2 3100 2678 1 3100 2112 7 2984 7469 7 1401 3 418 16 25 17 1 4143 4234 9499 1421 627 15 58 72 93 24 1 4 154 1910 14 101 2 6169 2599 41 1 5323 482 1753 4 611 792 1078 220 444 39 2 904 482 282 94 513 49 1 482 259 6 7038 30 1 1144 27 4 448 191 735 7 15 1 35 22 1115 258 1 184 9686 259 35 6 4464 224 1108 30 1 627 315 3788 1620 65 2 259 1882 25 2056 8879 13 3027 448 1 315 413 100 62 221 81 3 9499 1047 7 15 126 1 168 106 2488 6164 6738 25 482 3 863 126 7 427 22 39 439 361 4 448 27 6 1 28 136 25 904 482 694 7 1401 4 122 3 963 899 689 9 18 12 39 464 3 1 393 89 79 152 539 47 8919 1 2235 223 189 3 196 892 15 1 2121 33 90 361 42 36 133 50 7486 3 253 2121 29 239 82 341 479 34 457 87 725 2 2454 3 1899 9\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 5 26 1852 15 1 298 416 21 4 1 166 3892 9 6 2 176 29 2360 404 73 2 147 3043 41 6 30 1980 154 102 982 102 22 65 16 1 3887 3 140 3 576 1584 2096 1 2075 6 4730 5 134 1 4822 6984 470 5 5337 23 5 31 201 197 117 101 1693 1 67 1552 3 498 183 5089 554 7 34 86 1798 1 2119 6531 9 6 1375 17 10 6 31 837 953 7 2 2041 870 11 76 597 23 19 1 1590 4 116 3104 3 29 1 3151 7930 755 8 96 86 3516 5 134 51 76 82 14 72 139 2812 77 1 8437 234 4 1 3 34 62 3 1255 463 111 9 6 2 53 357 3 45 51 22 58 3066 2 84 21 7 86 221 1907\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 192 8 1 59 28 35 159 1 2771 189 1 4784 4 1060 6543 4 3 7608 7 324 2 164 6 5 1017 25 15 2 1598 11 27 191 2456 65 2 831 154 85 27 4838 1 401 1 3 741 65 155 29 1 1735 16 122 5 3587 51 190 24 71 2 29 25 3253 145 20 273 260 1705 7 1 18 1282 2731 44 157 2280 5 70 44 157 2193 831 154 85 60 95 60 621 3 2019 3577 524 7 272 54 26 1 1433 60 3448 106 60 196 44 5847 3 6 2060 3219 30 7 524 23 1193 9 1367 75 9 178 741 15 44 2621 5 7362 2 3677 4 460 136 1402 735 32 1677 44 6230 318 1391 60 4859 689 1 398 2341 49 60 60 6 128 19 1 100 246 3866 1 5037\n1\t482 179 171 165 7 1 111 4 27 337 19 5 1431 75 3719 71 340 2 5 7362 224 488 9806 10 12 5503 686 49 10 1283 13 70 7 1 111 4 228 26 2 16 482 2465 3598 262 5164 30 5297 7 5253 6887 7349 21 4 27 3457 59 38 25 1093 86 69 3 1 3 15 1 1675 4 2 342 4 647 236 202 1348 5 4201 16 7 9 2314 19 5137 3 13 7 1 21 3009 4 2 77 1 482 2465 4 1 3 3578 1035 30 1 5784 1926 3 86 5 592 13 2120 1 1926 5195 1 1735 76 3131 47 4 1 1 2700 3135 3915 38 1565 730 47 4 2 1614 3 1035 9675 15 205 319 3 31 1926 752 19 1857 1 1990 5 1 3158 13 5 390 4 50 222 4 49 236 58 5 774 1 4619 2 5534 1808 55 1050 69 3 40 316 30 1 1324 7822 13 743 45 7132 1073 6984 3193 69 3 167 78 1 1193 4 1034 653 5 1 822 3 1 606 11 2183 19\n1\t88 26 78 52 38 25 8562 4411 3 9 6 237 32 2 528 572 4 1 996 25 2113 796 7 25 796 7 1 1402 27 55 25 1644 3988 6 59 2610 778 3 48 38 25 3549 56 48 6 80 942 7 213 17 9479 3 1 7055 1418 11 1 719 597 6 4 140 1692 3 3721 15 8394 3 1415 413 3 415 3 5 2 1 1232 4 393 1 4 1 275 1505 101 1385 4 1060 808 3 657 1 1112 1782 6 17 1060 1779 808 40 4684 120 2025 8428 1739 3 42 2 56 53 135 9 6 31 17 3 13 252 2761 8445 4 112 6229 97 52 191 209 5 946 16 6 2 8614 6015 105 223 16 2 1998 2322 1042 3 105 386 16 2 8179 580 24 89 10 77 146 52 3 14 10 6 42 2 223 258 7 1 330 13 777 935 11 9 88 24 71 2563 193 42 20 37 935 48 921 1 5864 21 54 24 15 2 103 222 4 2902 10 228 24 71 169 2 53 5592\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 21 38 1 9756 3 28 2285 7 10 10 15 2 661 326 67 38 2 2535 315 13 614 11 981 4712 42 73 1 18 554 705 42 1002 6886 3 2022 1 80 93 1 168 7 1 576 22 383 7 5799 315 217 93 9 6 28 4 1 156 21 1873 15 1040 413 11 123 20 4832 295 32 447 168 1491 11 4683 3 58 1604 8 650 1595 2938 13 92 21 34 125 1 2416 6 331 4 9583 120 2989 1 250 3 3332 6 1 1047 29 2 7341 277 268 8 1050 1204 1 2114 73 8 12 37 1169 7374 17 1 206 12 51 37 8 115 13 7624 771 289 9 12 2 8445 4 112 3 472 1639 172 5 8 56 555 8 88 36 9 52 6153 22 46 156 124 1873 1582 15 1040 17 8 1013 317 46 942 7 1 9756 236 58 302 5 64 476\n0\t27 2 1648 7 321 4 2559 5 1812 25 5316 183 27 5580 866 32 106 25 6 556 125 30 275 422 27 271 5 1 1270 4 3871 106 27 557 2 5729 136 242 5 227 319 5 2162 25 1770 16 319 27 151 2 934 15 1 170 1086 379 4 2 35 6 60 76 122 45 27 1605 44 6311 1 766 37 60 63 186 25 319 3 1720 19 15 2 1018 8 96 6 45 23 96 8 165 11 32 133 1 18 317 1989 8 57 5 284 48 82 81 5189 5 842 47 3136 2368 73 9 18 57 79 433 32 102 269 57 58 312 48 12 160 19 15 86 2143 120 3 2767 119 2933 103 6 47 3 78 213 367 318 959 1 182 30 66 85 8 56 143 4219 86 2 1065 1378 4 796 3031 16 278 66 6 243 1164 29 1287 5 26 1784 9 6 1 59 85 180 117 107 122 6414 77 4928 3655 1213 86 20 154 178 17 2 156 3 151 79 560 75 78 33 4986 689\n0\t1122 6 2 2662 37 2757 11 28 6 303 11 33 39 143 637 2 582 5 1 212 177 94 288 29 1 74 8 83 55 1844 1 1440 5 218 1 58 28 88 815 209 142 109 7 9 1 3425 58 138 68 7316 35 88 815 634 7 9 13 74 2082 12 7 517 11 12 2 309 279 1961 503 10 4819 42 31 7 1 428 16 31 9461 4 361 20 1 692 410 16 66 27 236 2 163 4 3666 341 2326 5 2759 9740 4 409 409 409 7 82 2800 924 1 426 4 1097 5 1376 5 2 3861 1754 4299 10 153 1376 5 31 410 459 5 1211 1 309 481 26 5612 197 3005 1 3864 3 2805 10 15 95 9586 11 255 5 5361 66 7911 1 6370 144 13 330 2082 12 7 517 11 6493 4 2 309 88 26 3455 15 2 4 674 1 3486 41 7963 12 5 90 31 3919 16 661 1607 30 5661 296 2133 1615 224 62 29 1 166 290 17 805 9 7911 1 6370 144 13 3382\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 229 20 1 21 5 99 45 317 20 2 492 2538 3123 145 2 184 325 3 381 1 2009 4 1 158 1 393 247 885 17 1 74 2297 41 37 269 61 69 45 317 2 13 150 1454 241 1 74 2297 269 22 97 268 2287 1 1206 7 239 388 6 1 265 885 5 1876 5 3 1 494 9760 13 499 1680 97 4 25 2049 4033 32 91 3 32 25 1188 10 93 1680 43 414 3956 13 614 317 2 184 325 4 492 2538 9 6 2 45 317 20 2 36 492 109 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 28 4 1 80 2107 18 4 86 290 49 133 9 18 600 116 1029 15 1357 3 49 20 56 600 1 1569 6 609 523 16 2 18 11 12 89 5 187 199 2 1909 1541 600 4 2 562 131 106 3728 22 1 3 2 774 958 106 1 940 1228 34 24 2 16 5226 153 369 199 224 15 43 4 25 113 28 83 175 5 2600 235 16 23 8 76 348 23 49 5226 380 25 26 155 27 196 1 113 4645 4 126 34 7 9 108 449 23 335 9 2067 14 78 14 8\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 413 63 125 45 33 36 883 44 419 44 442 5 2 1422 16 5374 7 17 1 2479 24 31 55 7 1 8058 4883 35 6 20 59 304 17 63 3218 83 26 45 116 324 40 58 4220 73 7 9 3373 6948 67 4 112 3 2155 7 66 34 6 5739 33 22 20 34 23 321 118 6 458 29 1 477 4 1 158 4263 7590 3 649 122 27 76 2459 1 752 4 1 6928 1 67 6 169 908 32 1 9860 3 1 3 13 2699 1 7310 3453 1 4 1 67 3 1 8339 4 1 1511 390 595 3 10 6 761 11 1 710 791 1064 730 105 1914 5 368 5 1460 55 2621 1 4 86 1303 3 4 448 1 4624 1 2579 222 4 132 8 191 348 23 11 50 683 3852 5 50 48 89 23 96 8 12 942 7 11\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 12 1 397 19 9 141 3 8 93 165 5 87 43 6258 216 19 194 37 145 20 1135 17 45 10 61 1853 8 54 134 1943 8 179 10 12 2 299 158 20 2 5257 5347 30 95 8252 17 51 61 877 4 1308 385 1 699 1 5169 2063 11 2931 123 53 36 2 37 133 9 18 88 26 53 16 116 13 1627 97 4 1 171 7 9 572 1808 286 3866 62 6123 29 1 85 72 89 9 135 3150 4 611 6 28 35 40 220 881 19 5 78 2974 12 107 19 249 19 2 8132 3397 14 2 5282 7 1 249 589 1199 626 9911 406 726 587 14 128 2762 3242 5613 28 4 50 923 430 171 19 9 131 12 8324 35 262 1 27 12 31 313 1411 1651 3 2 323 4358 6239 3792 72 34 57 299 770 19 9 983 3 8 96 11 299 255\n0\t7 58 111 7459 554 5 26 47 16 5298 1452 3 37 72 2091 24 5 694 140 125 31 594 4 133 81 1243 2246 11 6 1027 7 1 212 74 350 31 594 332 162 5547 1251 32 133 275 1243 5 2 3 98 535 559 1323 140 2 9 85 88 436 24 71 1019 19 5641 17 3911 3 37 51 6 332 58 2771 5 1 81 19 2238 3 37 49 33 357 5 70 2859 72 339 474 7 233 8 12 7 1 182 16 1 37 11 1 21 54 19 401 4 9 1 443 216 6 323 9 1585 6 5663 8 812 5 645 2 2112 17 1581 25 216 6 127 1065 542 5101 3 98 223 625 270 1068 81 14 33 1243 69 145 273 27 1304 244 5687 17 1 2439 22 37 1065 8 39 405 5 582 1 21 3 50 75 9 164 40 71 758 19 5 1654 1 398 3254 6608 18 6 660 6116 5 8693 1 121 6 93 66 271 16 1 21 14 2 7835 116 1382 935 4 9 4 900\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 1 11 100 1306 14 78 14 8 405 5 112 10 198 384 105 16 79 5 16 10 1077 6 28 4 50 430 19 1 82 1737 1047 29 2 9341 341 2171 105 1428 3 193 42 595 6810 7 86 901 38 2 2707 10 557 73 2625 3 1 344 4 1 201 473 7 84 2263\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36 80 4 1 8967 151 16 31 240 99 2 21 1333 34 1154 3 103 9981 292 1502 16 42 631 402 445 1 21 7 42 570 1298 3 432 223 285 42 1366 47 3 631 7230 1 21 6 38 2 231 4 4854 242 5 2711 94 51 1007 24 6920 33 7799 81 600 1 813 32 126 3 5357 146 3746 295 7 62 236 43 327 2318 453 32 3 3 1 344 22 39 1 21 100 811 1087 41 46 1577 16 11 3821 17 16 1 74 350 77 31 4614 2318 3 534 4060 66 6 2 2065 1 398 350 213 37 1134 14 10 77 21 15 3206 1552 77 2 3605 3177 11 498 1 389 21 77 1963 2145 42 2 1152 193 51 6 58 894 11 43 860 12 602 15 9 397 3 292 1768 3965 10 1373 215 3 105 91 11 49 10 255 5 1 3312 10 301 1082 19 154 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 114 20 504 1 453 4 8812 3 9010 5 26 14 109 248 14 33 4416 779 114 8 504 126 5 26 201 7 132 31 1703 18 15 227 119 5 359 23 942 3 227 5 90 10 1766 9 18 12 31 2231 1719 16 503 3 646 26 19 1 16 1 398 18 36 110 8 258 36 1 233 11 10 6 2 1706 141 17 10 247 2 978 1706 2493 779 114 10 125 11 5977 1 120 34 57 423 1 111 10 289 1 4 1 120 12 862 3 10 151 23 152 230 1140 16 126 533 62 2058 8 187 9 18 102 4085 37 237 960 373 1 113 18 8 24 107 7 1 576 681 982\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 313 231 4285 380 2 163 5 96 236 332 162 540 7 9 135 297 6 39 3090 1 263 6 84 69 42 132 188 88 780 7 4325 500 3 83 995 38 121 69 42 39 39 176 29 7623 3 468 118 48 8 179 9 572 6 2 148\n0\t531 2923 327 5 9602 37 6296 104 36 127 1550 70 13 8 173 4376 9 18 1497 23 63 128 24 31 2431 927 17 128 539 3 1717 125 1 471 133 490 23 39 6846 116 522 1006 6115 4397 439 63 23 9 6 68 5966 45 23 118 48 8 9605 10 6 37 2390 8 481 105 97 81 152 1157 140 1 389 13 92 67 676 6 242 5 70 47 4 73 27 151 65 43 67 38 602 15 43 32 147 887 707 14 45 11 12 1 81 61 2 163 52 7 1 161 2569 1397 785 1 3277 14 45 1311 1086 41 304 81 12 1 4066 4776 23 88 90 10 500 42 34 1963 4 611 3 276 55 52 37 13 2298 42 38 14 1438 3 2843 2 67 3 251 6153 61 2 350 2596 4 127 2127 3169 124 14 23 88 8105 896 45 23 36 5 785 5208 98 9 6 116 14 60 4094 2 342 4 759 7 204 3 60 44 111 77 2935 850 996 8 202 1337 65 55 523 38\n1\t2635 463 5 26 95 138 41 2194 245 8 87 2635 11 3898 2 2821 5873 1156 32 2001 4458 106 132 1353 22 14 673 3 1466 115 13 92 21 554 6 58 5347 193 29 268 10 4838 1703 14 7 1 1325 4478 178 15 86 570 383 5978 5 3673 1 5898 1 673 9410 4 1 7189 15 86 6593 4 727 5972 3 22 93 1529 127 22 1 232 4 168 11 83 1259 17 340 5895 77 31 839 14 1201 7 86 221 111 14 1 2806 4 2 115 13 2699 1 82 1737 1 21 6 519 14 49 19 1 591 7 1 42 254 5 118 48 5 90 4 9 243 436 1 6379 40 5 87 15 1 4747 7684 11 254 216 1834 16 1 950 3 81 7 2 833 98 101 6980 30 1 3978 1913 1604 86 1761 204 6 243 13 180 165 5 920 11 8 7403 7 3003 5 64 1 1612 7 1 17 195 8 24 5 920 11 7 1 2196 8 93 165 2 163 52 68 39 2 7172 7 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1454 8 339 70 77 6 20 2 112 86 2 609 21 3 236 2 84 67 427 5 194 8 39 214 512 3698 1 85 19 50 1969 154 102 5 64 75 78 12 303 4 1 803 13 150 112 1 733 189 3722 3 51 11 542 33 19 239 82 5 70 385 7 500 29 1 166 85 8 555 1 733 12 52 68 48 10 705 6 7 112 15 17 3722 7 112 15 41 27 153 118 75 5 112 550 1 1630 4 19 205 3558 24 2 184 1380 19 1 102 3788 33 22 205 30 1 233 11 1 82 2183 295 3 2841 949 29 2 85 49 33 323 965 239 82 16\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1459 65 1 18 15 58 1203 3 20 55 1311 48 10 1220 17 49 8 219 10 8 1309 37 5053 10 6 195 28 4 50 430 104 4 34 290 3 1 559 1242 2 1719 8 54 496 354 9 18 5 95 28 15 2 356 4 2466 1479 23 16 685 199 146 5 539 3706\n0\t190 41 190 20 24 5323 49 60 12 2 3338 3 35 6 101 30 2 6261 613 2457 15 733 7443 136 1 376 8116 1036 11 27 153 175 5 26 2 1200 583 2 3125 66 40 174 28 4 1 562 131 32 1 35 72 64 6 195 2 5726 7 112 15 2 15 3 7 321 4 319 16 136 1 562 3989 7392 411 2057 4 2080 25 976 5804 5 352 122 65 15 1 585 27 2841 172 1742 3 35 40 8618 390 2 1537 352 55 14 561 330 379 2440 32 4593 125 246 5389 2 2057 3 1608 8834 10 4678 284 3 8 192 23 1 3625 223 3 8045 1345 239 129 181 5 209 65 15 19 1 2874 16 58 41 302 82 5 90 273 1 21 535 719 3 432 14 2 115 13 2136 22 229 517 11 8 88 24 248 2 138 329 4 1 18 341 7 473 4 20 1693 45 8 57 428 1 1589 177 2 103 52 300 7 2 156 378 4 39 322 195 23 118 75 8 6378\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 80 832 177 38 9 18 6 5 134 235 1061 38 110 1 120 61 2984 1 1324 9518 12 32 1 2353 3 1 210 865 4 9 18 12 11 1 1349 12 37 5622 32 823 10 12 695 11 12 1 59 211 177 7 1 108 1631 54 26 138 3455 45 7 1 5050 60 54 32 712 44 5 1098 10 12 311 11 565 1 28 1061 1329 4 9 18 3332 40 162 5 87 15 1 4 1 4215 6 11 50 711 47 1 319 16 9\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 4 884 217 197 95 4 1 1362 10 153 321 5 24 2 4326 119 15 2767 1552 3 9714 17 10 693 9 6 1 5610 4 2 1665 158 106 1 857 3 494 7211 4 4417 2110 29 1 477 3 1 166 29 1 714 571 11 9 6 2428 73 23 83 70 116 1495 1258 2075 4677 3 2 464 351 4 4056 304 7077 66 202 1332 985 16 246 1478 7 9 108 1432 444 9055 17 809 11 1770 16 31 19 412 8 230 36 1 206 1407 51 15 2 3341 331 4 494 3 119 3 31 1315 2871 154 85 33 6043 1192 58 686 454 35 9893 41 789 235 38 10 54 99 9 18 3 335 1 2075 1192\n1\t268 954 465 66 152 557 7 2454 4 1 11 1113 205 87 53 4109 790 3 1851 2 1002 1202 1300 2880 42 1 6778 607 1249 245 11 56 90 9 8324 37 78 1816 591 3 1183 205 22 1080 201 3 2303 154 178 479 14 15 1 127 102 56 9175 2 1876 5 1 834 1 263 1260 19 1 2324 601 29 169 2 222 4 1988 456 2633 2219 5728 4 66 22 211 3 508 595 1923 32 29 225 28 4510 7 1 7242 218 234 481 414 197 8091 14 3651 5 1 215 3093 173 2711 1251 32 532 1 790 647 441 3 1343 2469 1002 2915 5 1 1766 19 1 5012 51 6 103 272 4485 1 834 324 5 1 215 1587 239 1275 62 221 19 9 2622 5347 3 8 36 126 5679 93 138 68 52 17 1171 3 775 428 972 8324 32 1 518 83 241 2025 35 666 9 324 6 5 503 1 2738 6 115 13 744 1024 23 173 139 540 15 2473 7 1 42 28 4 3931 3 8 496 354 2420\n0\t3 169 1577 2266 1609 1490 1072 38 5 2 434 4348 14 45 444 2 966 2740 9 18 12 152 36 43 426 4 4 6495 3 1 433 15 73 297 1490 1072 262 6495 12 667 38 9636 167 78 3867 142 32 154 82 1706 18 7 1 3754 1 2070 4 1 366 191 1288 29 1925 3 1 4 9636 486 7 20 78 16 1 505 17 1 210 4 10 310 32 4444 8 29 43 272 7 1 21 8 214 512 6750 16 1 9636 5 2555 44 7003 827 73 11 1589 7003 198 57 5 134 2730 1441 1 119 6 167 810 3 37 236 58 148 272 7 1083 1259 23 88 39 284 38 10 19 30 1 744 1 177 11 56 151 79 38 9 18 6 1 233 11 42 1 59 21 47 4 34 1 1756 3066 1333 3017 7 95 111 5 1 215 1491 9689 66 12 2 1015 4 1 1571 41 7 82 2800 2 967 370 19 1 166 37 83 64 9 108 236 58 148 2895 924 95 3 39 586 293\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 511 134 9 6 2 108 831 16 503 8 70 1 507 11 1 52 23 118 38 1 527 10 196 311 664 5 1 233 11 10 432 400 8366 180 71 220 8 12 2972 172 2195 3 9 18 2148 10 46 6505 6815 7701 6 53 341 784 5 24 43 17 80 4 1 82 1 291 5 26 5513\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3046 46 430 129 7 581 17 7 670 34 4 126 1 129 4 40 2 346 222 4 14 2 3433 3 45 1 348 35 6 457 11 98 33 22 13 724 7 4321 1076 1 3433 7917 25 212 543 253 10 2 148 948 14 5 35 56 3191 13 724 3086 6 28 4 1 113 7 124 3 5 652 10 65 5 1992 96 2047 8265 7 218 3433 4 6 2 13 1226 796 7 124 6 17 24 2 148 5046 16 1 4 1 13\n0\t1940 3 182 65 29 62 106 2 901 38 2 4854 5628 6710 1 46 166 2265 255 306 49 239 4 1 8893 15 59 7488 546 303 516 5 348 1 901 4 62 13 92 506 5628 153 55 131 65 7 1 21 318 774 1 182 3 10 276 162 36 1 6400 2553 4 10 19 1 388 1009 32 101 10 676 2731 31 594 200 7 1 4905 65 2865 3 8 481 134 227 91 188 38 1 1249 258 1 102 559 3 1 35 463 1917 62 7389 494 15 2 5132 5951 4 7201 41 29 1 80 6695 1287 153 56 352 11 1 263 6 301 3 1169 3816 4 3423 9128 940 41 2466 8 88 139 19 16 663 19 75 3365 9 21 424 75 97 2987 5437 51 22 3 75 3161 1 212 397 424 17 646 39 7777 142 30 47 1 212 8717 6 169 2 9722 7 11 232 4 3293 13 4804 11 1 21 40 71 612 204 7 1 199 14 2896 5628 42 3990 457 86 4 3591 13 755 47 4 394\n0\t6720 2 974 72 22 15 2 793 4 2 842 7 1 4406 3 2 3319 19 1 34 383 7 31 3971 7114 1 5494 6 8043 30 1 1635 4 2 9188 1028 35 297 7 25 4165 7 25 7239 5 24 768 25 1860 6 28 4 1 156 529 4 148 203 7 1 135 1 183 3 94 833 8328 140 1 1863 11 266 4016 5 1 9152 4 1 7603 1039 4 1 3 406 14 2 5 257 4531 6 15 31 4901 51 6 2 178 7 66 28 4 1 1481 8611 2 65 974 11 674 6673 4 1 3 9 6 169 188 390 52 1005 49 33 2870 730 7 1 1863 5 48 17 9 6 2970 3 20 670 14 1535 14 10 88 24 13 1601 7 34 8 54 134 9 21 190 39 38 2005 5 26 404 2 4453 8470 65 4 2 5261 1535 1028 243 68 311 2 140 3 140 91 135 45 162 422 10 40 877 4 1 4833 1308 11 180 209 5 504 32 39 38 235 1101 3 2637 32 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 59 6 10 2 89 1879 141 17 1 119 554 6 39 13 743 164 11 6935 341 30 1 8955 20 5358 13 45 165 162 138 5 87 1920 23 130 99 476 4789 1907\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 275 422 40 459 367 737 154 178 7 9 21 6 4773 80 124 22 2029 5 24 28 178 11 6 3454 17 206 645 2 408 549 154 290 1 201 165 39 1 260 186 19 1 313 1252 3 7 4637 2097 668 3832 4 1 1814 3 1 82 265 89 16 2 425 9744 254 5 830 75 33 721 1 1646 160 533 1 223 397 4 2 135 1 267 6 1546 3 1 6016 9151 154 103 931 4 1 6 132 2 267 4346 1018 8 118 650 140 25 1403 280 19 34 7 1 231 318 8 159 122 7 9 3 98 7 1 237 2974 68 27 117 3 6279 4583 22 39 1 8353 4 1 49 10 255 5 685 4675 5 9 3439 1440 40 117 428 38 9 13 112 5 284 110 254 5 842 47 144 1 855 1020 204 29 970 6 37\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5858 8 336 9 1540 10 6 38 1408 157 7 2 346 38 3 112 3 4407 10 6 38 188 1603 3661 7 500 23 24 5 87 188 15 17 43 81 76 20 1116 116 2380 3 76 328 5 582 1038 51 22 81 35 149 1 1062 4 508 3 76 1 6589 52 731 68 5 917 62 2935 83 369 1062 582 23 32 116 1912 3 8 336 1 233 11 1 171 61 34 56 1408 1046 10 88 24 71 50 1499 58 184 17 34 81 23 735 7 112 15 285 1 108\n0\t308 1 570 1079 1647 5 245 8 88 51 61 97 546 4 1 18 8 338 361 43 650 2231 119 6971 43 363 11 61 1314 293 4017 20 9689 1 137 61 775 3 43 240 1813 216 361 3239 11 574 4 1606 906 8 165 1 6474 1418 11 45 8 284 1 347 4 5760 5 2 6030 3 274 1 6030 7 1044 4 2 16 31 5086 8 3084 1866 2 138 1471 3 1 265 12 660 978 1958 16 2 2164 325 35 1143 1609 978 265 7 168 4 238 3 37 8 555 8 88 26 36 307 422 7 1 856 361 36 1 81 35 310 47 2826 3 73 4 75 1115 10 12 361 17 145 20 275 35 63 26 30 2 846 35 3448 43 911 125 2 8297 3 2 1850 19 110 8 321 2 53 119 3 1202 494 183 8 63 335 80 484 3 9 39 143 24 1497 145 3134 17 8 511 354 9 21 5 4315 3 207 1 6158 49 76 72 64 43 1244 1850 10 40 5 26 47 51\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 233 11 1 18 6 961 6 20 2 4287 9 18 6 36 2 304 5404 5 26 1 7617 178 6 36 2 327 265 3324 1 447 178 6 31 34 105 1100 178 7 34 4 257 1217 2058 17 1 18 54 20 998 95 796 16 79 197 6836 6836 3466 6 300 28 4 1 80 2107 171 4 257 290 202 297 8 118 38 121 310 32 6775 650 25 3888 27 57 1 80 1683 3374 25 129 8108 1 3016 8 176 7 2 2112 3 6836 3466 6 9612 8 1609 555 3719 25 195 14 25 3 61 25 274 398 5 25 3888\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 34 38 2 161 35 44 2083 3 231 47 4 1860 236 2 222 4 11 228 26 38 576 17 42 650 39 403 1 3149 4 188 1920 5482 2 346 583 7 2 11 54 521 24 2 164 4025 65 25 3495 15 2415 2836 11 153 780 675 10 276 53 3 1 121 6 514 3 236 162 56 540 15 1 1292 17 42 39 37 3429 123 9 18 112 2330 2502 10 213 670 14 1269 41 14 211 14 10 1304 10 705 1 59 7 1 131 69 3134 18 69 255 32 355 3 3 1 59 1197 255 32 133 1 3944 9419 1175 60 123 476 207 39 36 7 2 66 6 48 9 424 15 1 1253 4 4 3 2 599 290\n0\t15 48 10 6 6 2 955 428 3 2022 1 80 955 1171 2331 10 5 26 3098 5 1 1757 4 1 1890 17 1 178 7 257 3374 5 26 400 1784 245 121 6 37 91 7 11 980 11 10 2019 95 148 1880 10 228 24 5125 1 3912 168 61 509 3 2775 3 1 18 39 337 105 237 49 1194 349 161 6 5323 11 247 8 87 920 193 11 10 114 466 5 2 84 393 49 6828 2 1653 3 4632 3789 17 2 170 282 5323 6 39 13 153 4136 16 2937 12 58 3868 60 12 407 2 304 287 341 31 697 2726 8 17 44 121 303 2 163 5 26 9430 10 1 135 12 39 1233 17 9 12 28 4 44 74 703 123 48 27 63 14 1 27 247 91 17 1 464 263 1066 421 2693 13 150 87 320 2261 11 29 2 3115 4 9 155 7 43 415 3010 65 3 49 12 643 37 300 9 557 16 43 1098 8 214 9 1495 4812 3 56 7054 2 755 34 1 699\n1\t6 2 3439 1234 4 991 11 337 77 9 108 8 1266 39 5 70 1 161 18 802 33 5021 3 896 34 4 1 1 18 6 2 84 441 3 8 96 10 6 1227 5498 2815 10 6 109 3808 827 15 1 277 546 200 5881 2356 3 6409 51 22 43 1123 4 128 1667 11 22 7 1 33 134 10 6 2 147 574 4 5411 8468 3 10 56 3375 1 277 8783 120 205 7 62 3679 3 7 1 8459 14 31 6409 6 2 27 7512 5 1 4 25 6119 7 2 111 11 8 24 59 107 492 87 7 3 1221 1 67 4 25 2659 25 435 6 2 4773 10 56 2610 2522 13 499 6 39 11 1 18 88 24 71 37 78 1129 1 46 226 185 4 1 141 49 1 1079 380 2 3506 4 48 10 88 24 5674 51 22 43 304 802 4 9203 15 2 2313 4169 395 1077 7 1 344 4 1 18 6 193 23 190 36 10 45 23 22 325 4 1 416 4 3086 236 50 102\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 56 2 46 91 108 8 192 2 568 325 4 1101 2895 3973 6795 3 657 55 257 53 493 204 519 255 47 15 2 53 461 8 214 1 74 102 124 5 26 496 548 69 33 61 37 91 33 61 84 17 9 28 6 39 37 91 11 10 6 1581 56 565 10 6 7863 1495 1 67 100 271 2882 3 8 1595 1 120 69 1 379 766 3 8092 1870 7 1 7568 379 5461 79 51 12 1677 774 227 4 1 67 4787 5 1 35 12 229 1 113 353 7 1 212 135 8 590 10 142 38 277 4 1 111 140 73 8 12 2153 46 83 8360\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 284 294 67 172 989 7 3 8 320 517 48 2 84 18 10 54 6555 3 10 229 54 24 71 57 492 100 165 25 1191 19 110 14 237 14 145 8181 12 28 4 1 210 171 19 4482 3 25 1703 337 111 125 1 5199 696 5 25 5931 4 1 9186 7991 347 251 6 1 505 16 551 4 2 138 4930 6 8018 1 1106 3 51 22 52 6053 4 68 130 26 13 252 18 6638 67 14 78 14 9186 429 19 1 6638 1 1402 6 12 778 42 39 174 2451 5 131 142 4131\n1\t16 2443 27 100 41 2492 38 62 6499 51 61 43 232 4 2816 36 160 5 751 34 137 1402 19 1157 260 224 19 1 2312 5 284 6073 8 36 1 312 11 2 5304 54 152 328 5 149 146 47 38 243 68 39 549 142 5 70 2599 41 15 25 13 7784 68 458 42 232 4 39 48 10 181 2 103 4 2 4314 31 1592 7 66 43 1040 81 179 11 45 826 81 39 1407 224 3 219 2 2739 1835 72 88 34 825 5 112 3 365 28 3 73 4 1 212 4 9 1689 1 1809 2809 3 494 39 209 142 14 3 1851 2 84 934 4 16 4784 19 75 188 24 1241 16 7 1 576 1099 982 8 497 1 59 177 11 181 2973 6 1 312 11 633 417 22 2805 7 112 15 949 3 22 1774 5 70 126 2599 7 639 5 2460 2159 3 30 2350 13 3255 841 47 616 763 50 5272 19 91 3 978 104 1543 2 156 53 104 1256 23 63 149 1 7 50 7743\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 165 9 305 32 2 2540 35 165 10 32 275 422 341 11 229 863 160 55 1 1203 4 1 305 276 4543 14 6 1 389 108 3 8377 2026 15 478 1456 43 4 1 210 171 107 7 50 727 2 46 641 640 10 89 79 539 50 3954 15 46 156 4740 8 191 920 10 485 167 107 14 2 141 10 12 28 4 1 3492 7 2 2596 4540 2092 1000 1987 45 1455 3 175 2 772 2655 64 9 108 45 1375 1337 10 47 4 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5457 2868 3346 114 20 15 1 166 23 228 149 29 2 10 114 1851 31 2186 3289 4 11 326 3 3575 7 2868 8 93 96 11 5 323 7470 9 141 28 54 24 5 24 1457 7 1 85 3 4633 334 11 10 12 1001 51 12 53 1224 299 268 488 657 2 156 3 29 1 1 733 4 8565 3 36 6688 2834 7 1 12 109 49 65 1 1367 11 7400 57 428 5 10 1 2432 4 97 306 157 1 389 67 12 109 179 689 8 179 1 201 3 1176 114 31 313 1614 8 179 1 412 309 12 109 428 3 1133 5205 130 24 2071 31 918 16 113 607\n0\t8 367 10 12 240 17 1 551 4 53 121 32 1 389 201 3 1 551 4 95 53 523 41 297 38 9 1310 77 1881 1 103 5711 635 7 416 418 6775 15 1753 33 70 2193 24 447 3 98 7394 72 24 2 103 4163 436 10 3084 71 138 57 1 523 71 109 138 3 57 1 121 71 5236 180 1067 1866 52 1900 47 4 3 25 7307 68 8 114 47 4 95 353 7 9 21 3 207 167 91 283 14 1 104 22 930 3 6189 37 237 1 59 240 1886 18 180 107 12 37 237 1 3865 601 4 9 686 1261 40 2012 52 548 136 128 685 1 166 4979 36 8 367 1 312 12 215 80 4 127 124 1229 19 1 1886 532 17 9 28 2167 20 5 378 10 2405 19 1 589 4 1 435 17 316 1 5056 123 20 552 9 18 32 8 56 449 275 1036 5 463 9 18 15 2 138 201 3 2 138 846 41 39 90 174 696 21 73 9 28 12 1130 5589\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5421 8081 380 2 1528 141 66 8 1517 1660 3360 4504 3 55 1 346 1635 4 151 1 18 332 9 6 1 59 5421 8081 21 180 1586 3 5715 7747 6 373 7 50 401 1731 8 96 9 6 28 4 1 723 113 1660 8014 3 3360 1293 3360 4504 1510 2 425 1663 815 28 4 1 764 113 5886 278 11 180 117 575 27 262 25 280 46 1660 280 5852 12 93 169 6699 205 1660 8014 3 3360 4504 1171 530 15 1 609 67 5 155 1 84 3 5 155 11 1095 5421 1016 5246\n0\t7 1096 5 64 6796 57 1 53 356 5 187 10 2 773 14 145 273 27 12 1783 5 52 436 72 130 272 1 5196 29 5806 7867 603 1483 1 2947 3 249 1015 4 3328 1719 1060 13 7254 10 6 31 6410 4 1 1296 4 756 1938 22 72 37 4 53 249 203 11 72 7301 95 161 4865 11 1 1732 257 2836 300 8895 13 8 511 64 1 272 4 3301 2 878 11 153 3809 1 9502 3 7678 4 2 2675 420 39 1090 10 245 14 9 251 6 8304 2130 7 95 6156 1543 436 1 4707 1675 4 1 833 8 787 9 14 52 4 2 3199 68 2 83 351 116 85 3 1686 45 23 4091 15 79 98 42 52 68 1458 11 23 617 107 227 547 3535 436 1 1188 124 4 43 4 127 971 54 26 2 78 138 334 5 4691 17 45 127 4 203 61 101 19 127 557 5239 3771 100 24 71 1747 5 9592 15 55 62 1013 4 448 33 61 6775 16 2 3116 32 1 4728 4\n1\t7 8 24 58 312 45 5 117 1 305 7 1 8 2172 10 228 20 87 11 109 7 1 4324 7 940 8 560 75 1036 106 3 75 5 42 4121 13 659 1 441 3918 6 7 44 362 770 29 8600 7 1 3450 1102 22 248 3 186 3918 32 38 1709 172 2195 140 44 2976 65 5 44 1955 717 7 1 18 69 38 420 6528 8 56 83 96 236 2 16 16 97 4 199 3918 3760 444 78 105 1127 2 1761 7 257 6 60 6 46 3 60 40 679 4 60 40 2 84 543 69 28 11 4054 7 116 438 109 94 1 18 6 2287 1869 5 3918 40 243 2 7355 842 68 17 145 1774 5 6330 656 45 2236 7 1 1538 8 96 60 76 3287 77 10 69 39 14 3918 3567 52 1127 3 7325 14 60 196 459 6847 623 3 1409 46 530 139 1929 3 760 9 141 42 20 36 235 422 819 107 3 55 193 10 12 470 30 1133 10 6 331 4 84 443 2036 3 238\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 832 21 5 8 12 100 685 10 217 14 641 14 1 119 1478 8 339 134 16 732 610 35 12 403 48 2956 1 296 3877 120 217 48 62 871 5091 779 88 8 186 1 1067 14 21 120 49 62 456 217 168 61 34 7 1 541 4 28 4 25 4205 20 1171 3335 13 252 6 162 52 68 2 431 4 2 5924 249 983 15 2 2496 5447 119 160 926 66 39 384 5 70 7 1 699 618 14 95 131 6 198 279 2 1775 9 21 6 109 279 2 176 1221 17 20 19 1075 1393 648 4 2768 180 138 188 5 87 105 68 26 19 3127 13 743 298 8537\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 12 37 2674 11 285 1 389 85 317 1247 11 1 631 2172 6 3 236 43 82 184 1298 128 9385 10 8143 27 39 2236 5 634 5840 3 60 2236 5 2900 110 1282 214 46 2774 29 25 2416 3 60 128 5619 3 48 12 11 1 51 12 58 60 849 27 367 437 8 24 5 139 564 27 3 11 12 1 182 4 110 33 90 1035 5 333 82 1920 11 28 972 282 29 1 17 479 301 2740 34 1 120 22 33 24 58 8157 3 1 1167 6 39 908 35 7043 47 7 2 86 6905 3 162 6 109 9818 16 8129 49 60 844 25 334 94 246 1 3 27 615 1 3 60 1225 47 3 27 4705 44 3 33 182 65 246 447 7 11 48 12 3559 44 4042 1121 7 1 606 60 1171 1728 36 10 88 24 71 2060 17 98 34 72 64 6 44 1 398 10 88 24 71 37 78 78\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 28 4 50 430 104 7 42 5250 1 5334 189 6701 3 6108 627 120 6 31 5 3 1 4556 3920 2956 8336 3 10 4918 1626 36 4930 3 1961 36 156 124 24 248 488 906 630 11 8 63 2209 220 1 469 4 1 7 1 518 1 980 6 224 5 1 536 162 47 3 1826 914 1 77 2 5171 119 260 3 540 197 1128 5076 3 2577 168 11 22 396 965 7 3556 4 1 870 7 639 5 359 1 410 58 132 168 22 1124 41 1 5541 6 1784 5 1 31 731 7 2 870 11 105 396 3882 1216 140 1 4 1 1754 1453 9 6 20 773 2 1367 4 16 1 265 6 7 639 2 21 5 99 3 154 20 39 5 1861\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 36 502 8 36 8 12 1247 8 54 36 9 682 13 150 88 2900 1 345 1456 1 396 3833 1224 1 2933 8 88 2900 1 8417 3929 3 1 233 11 1 18 1506 4088 19 4729 6 340 1 915 3821 8 88 2900 1 233 11 1 81 35 566 3 328 5 2500 234 3778 22 1 91 4797 630 4 127 188 564 1 108 48 1141 9 18 6 11 42 39 908 3 641 1466 162 152 202 34 168 7 1 18 22 2776 5 4269 1 18 9224 19 1 7125 29 1 2591 4 152 246 2 5306 441 41 95 232 4 13 614 317 288 16 31 548 176 8151 9 18 6 39 1466\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2003 4679 418 288 77 44 7119 2214 60 792 5 2172 146 52 3775 68 1 2912 60 196 5 1 4845 1 52 4 2 4595 60 432 5 44 3 1 344 4 1 558 4541 87 1034 6 2429 5 256 2 582 44 13 614 317 77 484 315 40 2 163 5 7196 1 18 6 1029 15 877 4 1349 3 9108 4470 28 178 7 933 1295 2 170 287 3 2 191 26 107 5 26 906 34 1 7673 7 1 234 173 552 315 80 4 1 18 6 2 900 82 68 1 28 178 180 459 5598 1 2143 447 168 662 1985 3 407 662 1 121 6 29 1293 55 870 430 427 380 2 1832 1663 1 119 56 153 3821 86 250 7413 181 5 26 5 998 1 3983 4 1065 447 168 1413 145 59 1100 15 28 82 18 470 30 9989 1074 15 25 3571 4 4806 11 6529 3 2895 315 255 142 14 8542 6 38 1 113 8 63\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115 13 1118 6 9 18 47 4 1377 1043 3 861 11 6308 65 15 2 464 994 10 6 747 5 64 3286 2447 139 1130 7 36 22 407 9497 75 1 481 552 3846 1137 2495 815 296 3449 3 72 118 1 435 6 2 919 27 6 2 2833 94 399 1031 1 379 35 52 73 27 6 27 643 34 4 126 517 60 6920 3 114 4 611 60 60 6 2 170 635 3 23 22 20 377 5 1977 1 4 1 368 3123 1 4622 142 178 12 1 59 177 11 79 32 1020 10 2255 1 43 4907 3184 1 4 132 104 76 186 85 5 3192 10 6 7 1 1020 4 132 104 11 72 24 5 894 16 2 18 36 9 3 16 50 221 2015 139 2550 76 26 7 1 2552 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 12 152 1 74 5411 1139 108 8 969 10 19 305 38 535 172 1924 143 8467 157 93 87 3559 8 96 10 12 29 7 11 37 145 667 183 33 139 3 333 11 14 51 896 5411 12 2 1729 29 2905 33 130 128 1064 10 14 2 141 73 10 1478 7 2 3 23 88 751 10 16 1771 1 18 12 4709 29 225 1 103 5091 8 338 8 1023 15 33 114 2 851 329 47 4 253 2 18 47 4 146 11 6 39 2 6610 8 354 10 5 2752 3\n0\t37 8 12 288 890 5 476 10 114 20 791 370 19 5043 382 10 1026 2 435 3 752 4135 2 633 1706 2190 629 5 26 15 450 98 72 24 2327 6573 883 1 5396 14 27 1143 5 26 404 6722 599 125 1610 7214 114 8 798 51 12 2 1028 1 434 22 3776 5 157 17 1348 181 105 6526 72 24 5490 7135 7375 2169 1713 3 55 7214 791 2327 6573 6 288 16 25 752 35 40 71 590 77 2 850 947 51 22 58 8456 1 282 6 7 2 9334 6346 3 6 44 41 6 1 1713 22 155 3 3054 2241 8 36 3804 3 8 36 1713 17 8 258 36 3054 4470 162 36 43 5 70 1 49 22 72 160 5 64 3804 566 6 60 2 1706 41 6 60 2 41 6 2 1053 1494 3054 1706 41 2 52 23 63 100 24 227 204 209 1 7214 7307 52 3054 447 98 1 1713 564 3 2089 1 8 497 1 1713 41 114 8427 35 693 2 119 49 819 165 3054 3804 3 3\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6545 9 18 6 2 1011 10 40 1 117 37 1330 203 1795 15 2 103 1216 3 2 163 4 315 1211 1 3810 56 418 5 2324 25 438 3 42 837 5 99 122 87 1943 9 18 6 16 732 1046 1815 463 468 301 112 10 41 23 76 400 812 110 2 53 18 5 760 3 99 49 23 83 165 235 422 5 1405 93 3413 6377\n1\t3927 2 4650 3 3056 6045 11 3272 5 2321 44 221 38 5533 266 1 280 15 2 2771 5 3386 11 1 427 189 31 202 112 3 1710 292 60 266 10 1325 3 42 20 29 34 14 1119 14 10 17 55 14 60 811 44 2771 5 3386 40 2 7166 1128 16 1 864 4 62 264 5029 3 2932 3952 368 15 2 3056 11 4364 5 1942 235 17 1 13 92 18 6 5734 722 3 109 2878 15 494 11 6 641 17 9281 8 284 28 970 753 11 367 1 456 61 66 8 96 6 2 4 1087 423 51 22 58 184 737 58 1052 1898 2811 2184 3 37 1 3979 424 8 2564 5 131 75 81 7 3275 157 63 9833 15 28 2877 3 8 96 3386 3 1622 10 142 5404 2 572 4 2 2164 189 102 81 11 36 3958 19 1 3 223 94 42 881 10 486 19 7 116 23 15 48 228 24 5674 1530 11 12 2 222 17 8 56 114 36 1 453 3 1 108 8 54 373 354 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 18 418 47 4835 47 15 147 1327 3 1 13 92 18 6 1029 15 439 2024 36 1352 192 588 224 87 3070 439 439 8741 13 7017 87 20 351 116 85 1247 11 10 76 70 20\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 12 1774 5 139 15 1 215 10 337 385 15 1 119 3 2716 306 5 1 120 4 28 4 50 430 4260 245 9 18 1220 7 50 1520 2 7179 15 2040 1 166 67 427 3 58 935 129 8 143 1582 474 48 653 5 95 4 450 1 6472 185 4 1 215 67 20 6 1 120 3 62 20 1 795 2449 8 247 935 318 8 284 1 970 11 9 18 12 928 5 26 2 258 220 1 462 1680 2 604 8 909 2 5409 17 98 3446 11 10 191 26 2 5428 5754 125 399 8 191 134 11 9 18 8563 5 79 29 2532 36 2 2245 1665 324 4 8973 8 12 20\n0\t7 1422 4 4437 33 2292 5 2552 32 1002 53 5 7975 3 906 203 7512 32 1 6 2912 5 1 1 119 6 39 116 855 67 4 2 6081 41 794 6 1 524 6722 35 6 256 5 469 69 17 20 183 19 137 35 114 966 72 98 70 2 3 28 177 951 5 3152 3 167 521 1 3370 6 65 5 58 53 702 1 119 6 2690 2050 509 3 1 21 1506 811 5370 1 120 3983 47 4 3 10 100 2601 1 21 7 95 111 3198 776 1059 1 1252 3 45 23 1006 79 27 130 1382 5 121 73 1 494 6 4481 7 1 3 59 2601 5 90 1 21 55 52 509 68 10 459 705 35 93 470 7 1668 671 4 1 2415 7488 3 4351 4 1 2710 1745 1065 593 737 66 1143 1 494 123 162 5 352 1 135 519 930 124 36 9 24 2 732 1817 38 17 203 7512 32 1 153 55 24 656 9 6 2 2050 509 21 11 40 103 41 162 7 1 111 4 3208\n0\t235 1160 1938 10 57 2 1734 1868 4 101 17 1108 310 5 26 374 3648 13 7161 57 2830 1 148 1606 3 10 511 26 318 1334 2 3000 406 35 475 1 808 4 6772 813 7 1087 3 20 318 25 114 261 1288 7140 15 84 1870 3 6060 318 392 3 1653 2026 61 2 243 9781 1359 13 2044 64 2 18 57 103 41 58 3342 1 1995 143 1960 33 511 24 10 8 4630 58 5299 1 6736 500 37 9 18 57 34 4 1 6637 3 630 4 1 9340 12 4739 16 374 13 2136 76 64 11 8 5293 2 723 5 9 4274 144 54 8 87 3559 530 10 6 2 464 108 58 729 75 8 112 110 8 87 112 9 18 73 10 758 155 28 4 1 529 4 50 9822 17 10 6 20 34 11 53 4 2 18 7 538 676 9340 5 390 2 1151 821 16 13 81 99 110 4 5871 8 192 20 667 5 875 1695 8858 1 119 6 4736 1 120 33 22 23 63 112 2 91 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 57 1 1617 5 64 9 21 2289 29 1 21 6438 7 66 10 1196 31 1570 16 113 2129 9 21 6 2335 2427 15 31 313 201 11 557 109 14 31 50 430 453 61 32 5699 4599 600 3 1895 896 51 22 43 84 363 15 3 11 8 12 619 5 149 47 11 9 21 12 248 19 2 346 3550 1 1895 7763 35 8 241 93 1196 31 1570 16 25 2511 123 31 313 329 15 3344 1 410 336 9 108 2146 76 359 23 1094 533 1 108 373 2 191 1861\n0\t24 1407 140 10 106 10 20 16 1 233 11 42 19 1060 8050 1 119 152 380 1 21 2 547 3381 69 41 29 225 52 4 2 547 3381 68 80 9563 124 69 3 10 1026 31 651 35 6 3542 3 3295 142 77 1 2 3076 6 98 2490 5 149 1159 17 385 1 111 27 40 5 2950 1 466 30 2 164 35 2307 411 218 1 1 21 676 39 385 16 681 269 3 51 56 662 97 168 4 3208 42 2 148 1152 11 8180 6170 1168 65 253 124 36 9 73 1 164 674 40 14 107 30 124 132 14 1 4849 7 3 60 1141 7 17 831 25 53 124 22 39 7478 2956 4 930 3 2710 3076 6 46 78 2 185 4 1 2145 8 159 9 21 3031 73 8 175 5 26 446 5 134 180 107 297 19 1 1307 4072 102 52 5 3 145 3584 207 144 80 82 81 35 24 107 194 159 110 17 45 317 20 19 1 16 51 56 6 58 302 5 1460 15 9 5592\n1\t4 69 421 1 8702 914 5 1 2833 1 2125 12 227 5 946 4445 16 1 17 4445 433 350 4 42 27 54 26 3138 16 1 226 85 7 7 85 5 187 8951 91 42 28 799 4 6637 69 2327 3308 2925 1 4659 4 3 147 4445 395 5 1 2125 58 82 2833 3138 1491 55 117 2591 25 913 37 78 114 2373 47 5 2118 1255 17 27 2336 65 8088 403 27 12 7 3 9867 7 7143 51 27 1180 5 87 25 80 1688 27 1694 5 1 3 10 726 43 115 13 2327 3308 6 1186 68 1 3 35 726 5131 113 2391 4517 27 6 20 160 5 820 16 3 27 3130 77 6903 29 2 80 4 1 85 25 3318 315 6160 204 2 598 1711 1834 25 6045 69 27 123 20 555 5 26 7 1044 4 2 6375 8114 14 27 88 1142 17 6 4940 364 68 30 25 29 1 769 49 818 15 1 4805 6441 6643 4 1 434 4203 11 33 348 1 234 48 2327 3308 6 56 3704 3 33\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 222 673 3 1495 1 901 4 31 161 164 3 25 379 536 2 2000 3 15 2 201 4 120 36 1 1 1338 1157 19 1 1 3326 4966 1368 1 1667 4 1 2644 6 14 6 1 9254 1165 45 23 36 4 8961 9 6 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 565 565 565 137 277 456 3350 65 9 1865 103 21 11 63 59 6381 3399 537 3 62 1007 5 1 1913 3 8243 18 7 48 6 9 913 8450 2014 7504 288 52 36 43 886 11 621 3072 740 535 1452 2 1054 119 15 2124 4019 42 3 1319 49 3 9255 255 47 7 8446 646 26 37 1602 2770 3 3935 2395 76 229 309 102 242 5 149 1 433 3 4541 328 5 1430 3 11 467 259 35 22 599 295 15 110 669 449 33 83 2704 1 382 83 351 85 3 319 30 283 476\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 477 4 1 141 10 380 1 507 1 206 6 242 5 2074 3393 48 8 467 5 134 11 378 4 1 67 1 541 7 66 1 18 130 26 1716 27 40 881 7 1 2738 744 27 57 2 574 4 899 11 27 405 5 3 1059 2 67 5 110 3 27 40 1200 7 10 46 8606 8 497 27 12 242 5 90 2 3489 108 95 111 8 96 9 18 6 2 900 351 4 85 3 4471 7 1 1365 4 1 1392 27 789 1 2152 11 27 6 770 2159 48 8 192 242 5 134 6 8 24 107 210 104 68 476 204 29 225 1 206 789 5 4778 1 2987 7 1 108 3 1 171 93 24 340 2 547 1663\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 215 21 324 4 1060 6 7 50 401 764 124 4 34 8 6537 9 8661 15 8 12 260 5 26 14 9 21 6 2 775 428 3 955 3370 3790 4 161 34 137 602 130 26 1 215 12 5287 5 79 14 2 583 16 28 23 64 2798 626 2547 314 4628 6016 3 1016 2036 5 9450 1401 3 9 6 144 10 1 1152 4 1 147 324 6 11 10 4088 19 1269 293 363 3 5 70 32 2 5 128 6 11 1 4534 61 51 132 14 7157 3766 5 87 146 3026 9 21 130 59 219 14 31 665 4 1210\n0\t6 446 5 309 44 280 60 6 1321 3 4217 7 14 223 14 23 83 284 1 462 4288 11 1026 308 60 1986 44 2333 5 36 8 1113 1603 422 6 55 2897 44 278 204 151 2 53 5541 16 144 60 100 306 13 92 210 3 80 1474 185 4 9 18 6 1 1423 1511 11 2995 140 34 4 110 129 40 877 4 106 27 19 38 75 1 2543 4 1443 6 7 42 1700 3 160 260 155 5 1 4 2271 9 1324 40 71 1991 14 17 42 1231 68 656 10 40 37 103 8911 7 864 11 8 24 2 507 1607 29 11 85 143 186 10 95 52 1067 68 661 902 13 252 18 6 610 48 1 2292 5 96 4 14 2 1414 141 15 42 1700 1974 121 3 91 3344 9263 289 11 27 88 26 2 464 1392 15 58 356 4 8072 443 41 3689 7 6592 463 263 41 1488 8 173 830 2025 7 62 260 438 605 10 2556 1495 673 3 8 354 10 5 5121 1414 18 36 512 5863\n0\t76 3494 31 3757 1555 4 6415 6 20 3 40 100 71 688 5488 199 11 59 2 346 4 1838 998 80 4 5131 51 6 2 53 11 23 41 8 63 2500 1 952 4 1 750 4575 488 35 789 48 63 780 32 26 216 29 1 46 2532 23 3 8 76 26 446 5 2500 29 225 43 1623 20 4 257 5613 7 727 162 6 17 72 198 24 11 146 5 2500 1987 488 45 23 41 8 83 24 6248 72 228 14 109 26 3789 7 4505 51 6 198 974 16 877 4 1750 3 5613 14 72 22 2 185 4 1 17 72 198 63 390 1 3043 4 1 13 499 40 198 71 50 839 11 3 4842 87 1857 162 52 68 5620 17 8 946 7529 3 187 1451 5 81 15 82 5308 3 688 14 237 14 1 740 9 158 8 87 20 24 95 2845 7 132 5308 3 8 5368 9 21 15 2 755 47 4 7 34 9810 3 4845 9 21 1071 2 9 21 40 58 3 8 481 354 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 228 26 1 210 21 117 1716 3 6 815 279 283 16 11 302 3420 6649 6 5403 1698 14 2 170 287 7815 14 2 164 7 639 5 2221 1 1077 6 1738 2315 47 43 4 1 5118 117 256 5 135 3 83 55 70 79 544 19 1 994 23 76 152 70 52 47 4 9 21 68 97 1545 73 10 6 1634 1 6636 4 517 60 88 936 3081 9 7056 5 918 1699 5 9 5318 145 167 273 1 9459 1595 9 21 3 100 8 173 1844 550 9 18 6 36 133 2 606 6895 7 673 1729 16 102 719 15 1 1077 4 1060 478 4 101 262 9890 19 31 161 42 323 11 565 145 2275 11 261 32 6649 381 9 18 19 1 952 11 10 12\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 56 153 87 1 6587 8097 10 418 47 955 15 1512 32 1 3 2528 6431 883 12 10 2528 275 2528 791 32 3836 1032 3 1083 199 1 157 584 4 943 6587 2390 14 10 424 9 228 26 1 2325 80 240 185 4 9 3939 7888 1 59 177 5 64 6 171 1 382 829 7 1429 315 3 482 15 1 1143 4 3 1 166 759 9076 9 6 2 53 3511 5 131 199 144 1 161 6587 61 56 37 1111 17 10 153 90 16 1683 3817 51 6 924 235 7 204 11 88 4800 253 10 2 21 3 20 2 2066 3103 1348 130 26 929 5 64 127 955 248 42 2 1152 16 3 258 16 1 925 29 34 4484\n0\t3530 4 1 157 15 1482 89 79 96 8 57 89 1 260 13 9883 283 1 892 1429 176 4 5593 12 3876 896 1 1261 3 1635 4 1 429 384 5 50 74 13 3053 12 300 1 74 394 269 4 1 4285 66 7888 485 36 31 13 4751 207 39 79 20 2308 706 2134 1569 6704 5887 706 93 87 20 198 365 17 51 12 227 691 7 11 16 2 386 141 1129 300 11 88 26 2 1468 16 1 1441 202 297 12 3 46 156 188 61 55 542 5 211 7 50 13 858 2 729 4 698 1 12 138 68 1 108 29 225 23 365 1 6067 516 11 66 89 297 565 1 1187 4 1 312 12 207 144 8 1150 1 141 101 942 7 1 81 1606 17 1891 8 114 20 118 1 212 4053 54 3 15 10 55 2 272 5 1 682 13 614 23 22 706 10 181 23 88 1116 1 558 5946 1078 1 2065 604 4 81 35 419 9 18 31 9427 3823 39 96 1882 183 2123 116 3666\n0\t0 0 0 8 192 20 55 49 8 134 11 9 6 28 4 1 210 104 8 24 117 6870 9 21 24 2 625 9779 4 5056 7 86 7472 927 41 86 5622 67 3875 8 63 20 55 905 5 1810 1 604 4 188 7 9 21 11 22 515 3867 142 32 218 3 82 104 36 110 16 665 1 7 9 21 6 152 28 4 1 7941 1172 5 4716 3 2909 1 4 9 478 2 163 36 3232 5 261 1939 174 177 6 11 1 61 33 74 165 1 583 4518 5 1 2435 39 2 156 2017 94 27 12 39 36 7 218 618 5271 28 2906 5823 1 3 3959 15 3945 34 125 25 174 3 5 401 10 34 142 1 4518 2906 6 3997 7 2 2430 974 15 1482 4 2374 34 125 1 78 36 1 2906 7 218 246 7667 4 1 5169 19 1 5412 36 786 83 55 70 79 544 4401 5319 189 1 393 4 9 18 3 218 16 23 73 14 180 4246 845 51 22 237 105 97 5 798\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 2 464 108 5491 5798 57 2 53 1020 16 9 854 83 26 6038 30 1 1061 10 247 3681 10 247 695 10 247 10 495 55 998 116 3726 8 39 1130 358 719 4 50 157 956 9 1 1182 6344 1198 12 240 5 64 1 74 342 1287 94 38 1194 269 10 58 1534 6539 1 494 12 2007 191 26 2 6981 1606 174 1332 11 3010 47 12 1 3399 535 61 1012 3 33 61 34 2130 919 2717 3 195 8 76 787 2 342 4 456 5 9 220 72 24 5 24 1731 1 29 1 388 1320 130 24 8410 79 16 2472 9 462 5 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 1869 5 79 2 169 1213 18 15 2 163 4 623 7 110 8 511 134 11 10 6 46 3903 17 52 299 8 6528 11 6 45 23 36 203 502 7348 232 4 2299 79 4 4 1 17 128 1265 45 23 1498 127 102 104 9 6 78 52 299 5 99\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2068 3 262 30 1 102 170 3834 14 3 8412 14 292 1 119 6 243 2 3304 4 1 5553 170 599 16 7637 181 47 4 2416 5 26 13 2120 1 121 6 109 248 30 34 3096 1 18 5162 5 551 2 2438 1190 4 2331 436 2224 2260 5 504 3022 864 7 484 243 36 4485 5 75 1504 12 50 100 2867 239 4 126 22 53 7 62 221 3293 13 150 87 4429 1990 55 45 44 280 6 595 675 750 4 1 1611 1033 109 4462 16 1186 7125 3 75 327 29 268 5 26 5794 5 514 4459 265 66 6 202 2 13 150 149 9 18 5 26 2 720 14 10 6638 5629 1353 16 1 1758 65 1166 3 58 882 1479 2 2624 231 21 5 3589\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3417 331 4 8847 6 1544 285 2 4537 1 613 24 8209 1 42 3 33 22 1544 7 2 103 318 1 1611 40 71 245 94 2 3166 62 6103 6 590 5 14 10 181 11 28 4 1 8847 12 20 1868 19 1 3417 3 190 39 26 31 9 951 5 2 2582 11 6 3857 17 93 243 211 7 2 3293 13 252 6 174 4 1 299 767 4 1 4921 378 4 1 687 1552 41 1055 9031 9 28 1008 58 7055 4979 245 42 93 46 3 7573 37 35 610 48 5193 468 39 24 5 64 16 13 5676 1 744 9 28 460 294 543 80 4 23 76 3082 32 3330 161 249 289 3 502 7 202 154 1723 27 262 2 148 1920 1539 4599 285 1 166 17 487 114 8 112 283 27 1 4746 3 12 232 4 211 29 1 166 290\n1\t2843 3 1 478 8934 1359 5 4569 6 1 3318 4 1 4081 477 15 44 60 380 7228 1799 38 1 4 1 158 1 1084 3 1 3033 2426 60 6 93 38 1 4 3650 44 1845 35 726 1 1324 7392 3 44 15 14 2 2254 8 39 555 60 88 24 2666 52 708 11 2829 1999 5 48 6 19 1250 60 93 5162 5 3640 1 166 49 1 1646 3723 1159 10 196 5 785 16 1 957 85 75 1 454 372 1 12 2 493 4 8 96 246 2 330 88 24 1366 47 82 32 4341 13 677 6 2 9041 2476 7729 11 289 43 1474 7042 258 3 8364 51 22 93 5715 7982 168 2403 15 28 6 2 709 178 66 1385 79 75 78 8 36 6649 7 8221 174 6 31 4559 178 7 66 60 266 19 1 6354 7 1044 4 31 35 98 621 1 80 240 6 31 5626 186 19 1 668 3177 884 66 8 1023 15 6649 130 24 71 1 2322 4669 16 34 277 2639 4 1427 376 6 22 93\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 2 462 36 490 23 118 20 5 504 2 84 203 108 17 9 12 56 573 55 15 402 4911 1 119 6 56 4096 3 31 3959 1950 2898 2 3146 37 307 200 122 1304 244 275 1939 9 1399 228 152 216 16 715 41 394 1507 17 20 285 1 389 18 579 1 171 22 20 11 573 17 62 120 22 243 1230 3 1 67 6 509 3 2724 2317 58 3423 58 3008 3 103 840 6202 103 440 5 4635 203 15 267 3 1082 29 656 10 726 37 509 959 1 769 11 8 152 2165 133 394 269 183 1 714 8 339 474 1034 3136 5819 12 84 7 5378 5742 17 209 11 12 3492 172 1742 3 60 1336 248 235 547 94 656 37 58 560 11 60 57 5 6601 14 402 14 9 391 4 925 41 26\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 12 39 224 260 565 8 112 392 104 3 63 1797 209 295 32 80 104 3 149 146 11 8 9 12 20 28 4 450 9 18 3870 3895 3 8 70 194 1 256 65 28 898 4 2 566 3 1333 1111 17 1 67 6 775 8242 23 83 24 95 148 2771 15 95 4 1 120 3 236 58 148 67 427 5 5345 23 39 139 32 28 1610 178 5 3152 162 8594 5 921 1 67 11 6 242 5 26 45 23 175 2 392 18 11 76 359 23 3 3007 227 197 5154 1025 98 8 54 1379 1091 5476 41 45 23 2923 2 84 67 427 3 2 163 4 238 98 8 54 1379 4 5476 127 102 104 76 20 369 23 224 14 3907 392\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 5586 4332 1098 10 143 51 12 2 259 35 165 222 30 2 17 48 12 15 1 3 1 439 106 12 1 8427 106 12 1 35 310 65 15 1 312 5 90 2782 144 12 10 1747 5 26 2368 2368 8 497 4547 100 2510\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2477 12 2 686 525 5 131 1 5641 5405 4 102 3 114 20 328 5 7679 86 55 30 2001 5049 1 21 6 240 3 115 13 3 22 205 6401 1 166 4663 6 5605 3 432 2 16 1 1316 60 44 140 2 604 4 4439 642 2 1285 140 31 77 44 74 3054 3 77 44 74 115 13 92 21 123 20 7679 95 2241 779 6 51 31 9569 4 1 4586 6 8430 17 519 1 443 105 1896 3 1 67 271 115 13 92 1392 337 19 5 90 2 604 4 4683 2944 124 457 1 442 4 1531 27 198 40 483 5394 3313 53 505 3 46 298 3220 4 13 245 9 6 436 25 80 25 406 1035 16 3560 3527 3 12 2 2221 77 1 1109 4 7670\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 8 159 9 141 8 339 241 50 3888 106 127 892 7127 15 184 56 928 5 26 41 106 33 2776 5 24 2 53 539 669 6783 449 45 23 99 4715 23 63 55 64 1 9049 9595 126 126 577 1 1 212 12 243 211 68 782 3 8 57 2 53 85 133 1 18 73 8 12 2275 30 86 790 5 24 59 28 53 2482 10 6 28 184 1399 32 477 5 182 3 8 241 9 18 3852 77 2 147 37 1698 1865 468 26 1094 32 477 5 714 4017 20 55 1927 328 5 878 19 1 121 41 34 1 82\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 45 51 1121 227 4 137 5869 200 29 1 85 6372 72 24 204 174 1054 6531 32 1 206 4 66 8 57 219 1188 9 2463 1 442 7 9 85 6 35 3849 1 7612 3 6 74 107 32 243 5 25 3 1727 2 7 1 541 4 710 1251 32 20 288 27 2225 58 1778 4 95 232 82 68 25 1100 7768 977 151 16 31 2422 2041 69 1251 32 101 2 914 25 733 15 66 432 29 1 739 4 31 6551 6 93 3784 2166 220 27 8618 432 602 15 1 6706 1410 6187 16 2 2041 2493 236 3666 103 238 5 1271 4 3 630 4 10 6 7 95 111 1201 2720 1 3177 274 7 2 6 109 227 6850 1 868 30 763 6 17 162 1939 1 305 8 1150 418 142 140 1 1079 37 11 630 4 1 201 1144 69 41 55 1 644 462 69 6 117\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 180 223 405 5 64 9 158 101 2 325 4 205 745 3 638 8 1023 11 1 684 12 2 351 4 387 17 1 860 4 3372 140 9 1174 1479 16 5365 382 66 3246 1 131 226 4514 8 63 830 11 51 61 679 4 922 15 537 94 1 2155 258 15 1 111 188 61 533 1 43 4 1 1161 22 2 222 3681 8 407 511 175 5 2006 126 19 2 5563 78 364 2 534 461 51 61 43 53 7993 3260 1 1687 4 2 14 322 41 14 33 637 849 2\n0\t695 51 22 43 3886 17 33 22 156 3 237 9107 80 4 1 18 6 30 1 1005 119 66 6 862 4326 3 20 46 1470 9 551 4 267 6 258 9964 45 317 314 5 52 2759 1545 132 14 66 16 1308 7 154 185 4 1 682 13 1231 2440 32 1037 6815 3 5141 551 4 121 1037 6815 6 2 84 3561 17 27 12 20 2 46 1683 1005 353 29 9 272 7 25 3987 3 5141 6 372 5141 127 102 22 39 20 53 227 14 171 5 1720 1 1005 4 1 682 13 80 4 1 267 11 51 6 7 2480 200 1037 129 37 45 23 83 149 11 129 211 1920 8 317 20 160 5 149 80 4 48 103 267 51 6 7 211 6062 13 6 46 78 2 18 4 86 4314 10 1336 3412 109 3 6 20 279 2034 45 23 175 5 99 31 362 1575 267 8 54 354 36 1 623 7 6 20 14 8100 14 7 2759 4964 17 1031 10 40 3412 78 138 3 14 2 1122 6 128\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2946 3 363 22 65 5 3459 15 1 1 215 21 3 1851 2 163 4 1033 55 45 1 857 6 2040 1 166 14 1 74 102 703 10 93 181 2 163 52 5911 68 8 320 1 82 124 7463 45 317 2 184 325 4 1642 1773 3 11 63 2500 34 1 111 224 77 116 468 36 9 135\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 572 16 79 4695 46 496 14 10 6 2 6174 837 3 1474 3087 4 1928 605 125 2 569 3 97 4 9030 413 13 92 569 3 1 2274 22 34 47 7 426 4 4529 541 3 1 212 18 40 2 7427 3 230 5 110 43 4 1 168 22 892 36 15 1 3241 4 31 1928 13 1601 1 171 187 331 3 686 453 66 151 1 21 55 3288 3 1 293 363 3 4026 22 29 225 10 181 5 79 7023 3925 1090 5 734 5 1 13 8365 574 4 124 396 2005 2 1280 13\n1\t7 1 769 72 917 126 65 1 5 62 570 4457 115 13 92 102 3193 30 626 4469 3 1133 14 5114 1752 3 2097 88 26 107 19 95 1170 7 95 3203 6 2 6039 487 398 1945 3 5584 1 259 15 460 7 25 671 32 1 540 601 4 3203 9 272 6 89 7 1 18 3 10 198 3917 199 11 3728 22 58 264 7 1635 68 261 1939 4670 55 1 80 6 185 4 1 423 127 102 413 564 31 389 1562 288 16 2 3516 11 213 939 308 19 1 6334 33 357 523 91 47 2 6826 16 1 13 677 22 97 514 607 1488 8 36 294 14 1 1557 19 1 1723 7429 896 76 3372 7 2 1516 17 313 178 14 1 13 150 24 396 405 5 64 9 18 34 1 111 3171 246 59 997 10 7 386 8 114 475 70 5 10 94 2512 1 1771 1 1122 6 1 2049 382 1004 18 8 24 117 4164 13 2687 773 9 609 108 5 503 9 6 48 84 3164 6 34 1395\n1\t7733 4 2759 9631 3074 4252 6 31 161 5500 1753 35 2615 7 53 2813 3 1451 16 1733 11 22 5873 1156 32 2001 703 60 6 128 53 227 5 70 17 60 93 789 75 1124 3 1537 8184 60 44 30 770 254 3 6 20 1893 5 131 2 103 49 10 6 965 5 3882 44 13 2120 605 2 3533 5 257 2594 6 1366 77 1 948 4 2 368 651 35 12 1 1757 4 4896 1283 60 6 30 44 1272 3 9 748 142 2 251 4 795 11 228 3183 1 948 41 1122 7 146 2384 16 5533 48 151 1 18 169 548 6 1 103 8344 14 60 1937 11 44 234 6 162 1074 5 1 3610 1146 3 9 6 109 197 5 2411 6447 1587 41 235 2461 41 8496 8834 1 206 40 227 1377 5 90 10 34 46 5 34 2514 4 7708 32 1 170 879 5 1 1995 7 1 1754 10 6 2 18 11 1071 5 26 1586 3 2 21 11 6 1219 3 3 42 20 1893 5 26 14 7311 681\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 114 9 18 1 120 61 4250 1 119 8 2242 9 339 26 105 91 73 10 40 27 191 24 248 9 73 27 12 1120 3 965 1 1686 1 120 61 377 5 26 2706 17 57 31 2706 5048 8 192 2805 242 5 149 146 327 38 490 8 173 571 6107 114 2 514 329 15 2 1974 1223 149 146 5 8563 41 99 83 117 64 9 108\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 18 38 35 40 2 766 35 60 60 1371 447 7290 7 1 448 4 1 18 60 196 2767 413 7 44 766 3 93 236 2 3054 13 252 21 256 9177 19 1 8022 3 12 669 1 74 5257 4221 1274 21 1218 10 12 2 184 645 49 10 310 689 906 10 153 1992 2593 13 499 6 3 6 39 84 653 5 3 10 12 46 30 2001 3220 42 483 145 619 10 40 31 1020 58 5121 447 3 10 59 40 5329 6563 3 58 976 1349 29 513 93 42 167 1065 3 1 1993 4 3329 29 1 182 12 1693 341 167 10 6 279 5076 193 5 64 48 12 1050 46 1985 7 8 159 1 757 324 801 40 31 3747 17 180 455 59 2 156 2110 204 3 51 22 6515 115 13 398 21 1 6753 4 1 6 78 138 3 7690 46 530 1236 11\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 3175 39 2021 8 219 2584 66 12 46 452 94 11 8 219 9 135 115 13 150 24 348 23 10 6 28 4 1 80 509 37 404 203 23 88 117 836 1 168 61 8902 51 12 58 263 3 58 994 1 1928 2070 12 3 1 566 168 4759 1074 5 2 416 7134 3 5 90 10 527 1 259 654 57 31 2324 9681 6045 66 838 32 1 250 803 13 38 9 4866 243 139 3 99 2584 9490 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 9 18 2 156 663 48 1 898 12 13 150 36 104 15 1579 33 22 211 3 3473 49 8 159 2 442 4 9 462 3 870 8 179 1111 9 28 88 26 56 43 2234 16 41 174 840 98 8 284 2 4265 3 179 260 10 88 26 53 17 10 13 1226 45 36 104 33 176 103 222 36 4626 15 103 222 4 267 328 43 9763 104 41 1928 33 22 56 38 2730 9 28 12 115 13 872 256 2 267 5 58 56 91 1399\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4005 6 2 234 2330 3 103 5637 414 7 774 900 2306 2488 7009 3 7 2 4963 7 62 5916 4532 38 136 532 8787 44 5776 9 6 2 2011 309 209 5 157 3 130 8270 7814 3 14 1 1213 3 494 6 4933 13 92 1261 7 1 429 1523 79 610 4 75 50 5305 3 44 752 1457 16 2 3000 68 11 33 61 345 3 33 54 34 1344 5305 648 38 44 425 576 136 44 752 6129 44 16 1155 7536 15 3012 1093 3 13 252 21 6 2 5971 16 261 523 2 733 4 9 5250 10 6 747 3 17 1 1132 114 31 491 329 355 1 4771 227 5 8205 730 37 10 6 1219 5 64 306 157 9 111 3 34 1 52 293 1078 1 4 2 1127 231 77 7 1 4 62 221\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 850 50 8 414 7 3 49 1990 6006 310 5 60 337 260 140 50 4305 3 29 79 8 192 9681 1086 37 60 405 5 176 29 50 4305 850 3 8 112 101 1086 95 1175 60 310 16 1 155 5 50 796 7 1 11 131 151 23 175 5 272 116 5196 29 146 3 90 10 5777 8 467 10 6 39 37 1688 3 8 112 10 8 54 112 5 26 19 11 11 131 6 39 491 8 467 35 117 310 65 15 11 131 8 175 5 39 187 126 2 184 4420 8 467 10 151 79 230 138 49 145 1415 3 151 79 749 49 145 1341 8 467 45 275 649 79 33 83 36 10 8 76 771 43 356 7 5 23 1233 1233\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 213 1 113 9546 117 1716 17 30 1 1058 3220 4 1109 881 484 650 781 19 1 1045 9669 9 6 538 2688 10 40 43 1357 43 2106 547 3 4781 6 17 37 22 43 9366 66 8 13 5944 9 18 6 279 2 99 45 23 22 2 325 4 1493 3 321 2 42 138 68 1 18 3 20 2 967 5 194 37 83 26 13 92 121 6 138 68 23 190 504 5 149 7 2 18 36 9 3 1 1177 6 52 68 504 2 222 4 2 14 1 120 22 17 118 11 188 76 1351 960 45 23 22 133 2 305 23 190 175 5 1899 2 5242 41\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2003 50 221 583 6 6858 79 5 597 1 567 131 4 9 158 8 118 10 6 565 8 405 5 50 671 689 8 405 5 2500 140 1 412 3 5055 2014 7504 16 1 226 9458 4 7529 27 5125 9 6 28 4 1 156 124 7 50 157 8 24 219 3 1279 4318 5 45 59 10 61 2623 1 82 124 101 3 3 205 66 22 138 68 9 930 7 1 13 150 190 3827 512 5 2460 7402 7 2 9915 525 5 995 8 117 4899 9 19 1 53 13 2044 2014 8 134 1382 15 6661 41 55 1162 39 73 10 1066 16 1290 153 467 6 2 1246 16 34 13 3382\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 322 8 88 70 77 1 640 17 1333 39 79 29 984 5519 9 18 40 165 2 1515 9908 121 6 2438 29 268 3 548 15 1 2579 1430 980 1295 66 12 6807 1 2281 6 1852 3 17 128 5 7569 13 92 4873 22 1476 5376 73 4 1 2032 5202 5876 51 22 2 156 8139 29 1 769 66 359 79 16 2 4222 17 8 83 96 8 1493 3889 1 2388 39 5142\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 40 165 5 26 28 4 1 210 104 180 117 6870 51 61 81 1204 1 8531 508 61 1424 3072 10 12 2 518 366 9 6 2 141 28 4 137 35 63 90 23 100 175 5 64 31 47 4 2542 572 702 8 54 112 5 99 1 4 9 18 14 8 192 1768 942 19 48 271 19 1 3443 4 1 4 132 3095 87 33 539 49 33 932 34 9 903 691 41 87 33 152 96 479 403 146 8 1 1077 6 489 1251 32 43 691 11 1523 23 4 2 817 55 45 317 2 325 4 1224 875 2613 42 1 113 177 5 1405 1 5145 1657 4 327 265 22 58 302 16 23 5 139 47 3 9081 725 5 9 8762\n1\t4578 13 1889 206 962 1071 1365 16 588 65 15 9 6443 25 129 6 2 1201 28 7940 8 96 25 2216 6 2 103 43 168 1920 1 28 15 1 3797 139 19 2 103 1896 17 1391 27 1510 9349 3641 15 2 3116 4 1 2281 6 258 6141 13 265 6 93 810 285 43 3 861 2182 43 56 84 802 29 1287 11 876 79 5 4627 885 3 1321 3452 1456 66 921 2 496 6701 16 1 141 260 224 5 1 2059 570 13 6 457 1 1423 3452 16 202 1 389 18 93 196 50 3442 16 246 1 18 645 1 2435 3 123 48 27 40 5 87 109 2160 151 16 2 243 3 810 4128 3 2536 213 37 1053 463 14 25 1725 17 492 3 4071 22 514 7 42 93 279 10 5 64 5350 36 1752 31 5329 3431 9934 3 3855 218 3815 24 3 55 206 4467 7 2 222 13 252 6 2 496 548 4428 18 15 227 2565 3 1308 5 1090 10 14 279 5076 16 2791 4 1045 1889 203 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 435 1662 1662 65 133 690 7859 14 2997 3 49 8 12 2 103 635 27 57 767 19 1919 3 369 79 793 126 642 9 18 126 224 7 1 231 45 23 3 8 336 592 13 8798 3 8475 4599 70 1172 5 2 346 569 15 3 3570 2550 3 32 1 2550 8398 413 3 30 1 569 4983 5 26 2483 3 42 65 5 2997 5 582 9 13 777 39 37 360 3 299 5 3972 1 161 541 293 363 3 478 69 1 1176 1789 142 132 2 1212 15 132 103 690 7859 12 50 950 49 8 12 2 103 3474 3 145 5230 944 10 39 271 5 131 75 5092 3 382 127 2766 2620\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 57 169 298 1750 16 9 158 55 193 10 165 2 91 753 7 1 8 12 483 3 1407 140 1 389 135 8 343 169 1415 30 1 3158 13 3422 8 192 20 7 1 225 41 591 3401 5 9078 381 205 2394 7384 23 117 405 5 118 38 3 492 214 1 4116 15 9 1841 5 3827 5377 6674 400 3 49 1 21 7 31 106 1 487 8150 205 25 4291 14 109 14 11 4 1 287 27 40 71 94 16 1 212 158 8 202 15 16 1 900 3 3680 11 10 3191 13 2687 70 79 1989 8 335 1 4486 2009 4 1827 2433 14 109 14 89 581 37 9 739 130 24 3414 79 925 9 21 29 34 10 130 26 5 1 4 622 14 2 2869 7 91\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 181 11 1 4748 4 1 21 12 5 131 1 129 4 41 29 225 4 137 446 5 2203 1137 62 184 11 10 6 105 806 5 2452 2 2471 7 3 11 598 613 6 37 11 10 481 149 1 454 35 9400 1 2471 55 49 127 5258 22 1204 1 913 30 5638 7 4637 5921 9124 3 1 377 1736 9406 5355 2 1587 20 286 229 3340 30 4026 7 1 17 237 5 26 1 1736 461 37 45 23 56 175 5 771 139 5 41 6676 3 359 725 3297 2793 1736 1587 3 86\n0\t115 13 659 50 715 6643 266 954 442 27 191 112 220 11 12 25 442 7 806 2 1086 27 259 35 1371 415 3 196 1136 36 86 2798 109 195 27 2 568 391 4 2391 3 220 1 2391 12 549 30 1 27 715 9 981 36 2 84 312 16 2 108 1 465 6 3577 1 263 6 37 345 11 181 5 26 667 25 28 7934 5 1 443 3 34 1 601 120 24 162 5 1405 1 18 276 36 10 12 383 19 388 15 43 56 345 4061 1102 11 22 515 20 3779 9318 266 2 2041 35 276 36 27 6 2057 5 134 1 6901 736 801 27 130 220 1 21 6 1274 3747 17 266 14 45 10 12 3 1461 3967 40 2 327 358 938 83 70 79 1989 29 268 8 114 539 29 2 156 4 716 17 1 345 164 6 355 111 105 161 3 111 105 7533 72 63 64 25 716 588 32 3 1 21 498 111 105 8538 66 1359 5 1 586 1 2032 3 1575 39 153 216 3041\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7494 613 6 197 2 4 2 4724 28 4 1 80 491 289 117 7712 17 20 39 7 1 2857 4 4974 136 1 74 185 755 3 4509 650 2903 4 238 3 1816 1 330 185 6 52 686 3 28 130 20 2055 1 330 185 7 1 2544 166 111 14 74 2482 1 22 323 47 4 9 234 3 1 5642 6 660 3711 23 191 24 31 1988 3116 4 2717 5 1116 1 4 1 330 185 3 8 87 24 43 6808 1815 7 1 74 1871 1 7494 169 1345 3130 125 2 7494 3 10 114 20 90 95 356 29 513 28 228 93 1193 1 4 4700 19 1 4779 4 5462 55 193 10 12 3876\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 80 81 773 4589 272 4 7333 45 2 950 63 4747 5 1 438 4 2 3338 740 1 9444 4 1 1800 98 4780 4 1 4119 101 4587 30 4976 13 659 34 268 4 2631 41 2155 1 1228 3 1655 176 16 2641 5 1 1729 572 1926 876 2641 5 1 412 16 81 5 3658 15 69 132 14 4976 578 3 2349 4976 4279 6 2299 30 52 68 28 3157 14 101 1 4 1 183 578 2997 41 95 4 1 2349 34 508 11 917 4976 4279 22 59 2 185 4 1 919 20 1 4\n1\t24 5 2500 16 1 7404 3 6 1 691 9 21 6 89 2562 45 20 25 1726 42 50 80 336 4 34 3648 13 252 979 1719 3006 3119 14 80 4 1 82 124 32 1 1392 48 157 6 883 130 1549 433 883 3 449 3 2845 3 14 1 788 32 912 1 124 270 86 462 109 587 1 21 151 1 1258 2627 3 440 5 90 199 1997 11 6025 6 446 5 2095 34 9 15 1 4 2 267 3 1 3718 4 2 5171 593 395 74 764 1507 15 1 9087 1068 1 202 197 2 427 4 1765 7209 655 1 276 3 3547 4 1 120 11 370 19 1 6 2 897 19 616 5322 146 11 2178 109 32 25 8278 971 32 1 2101 717 4 1 15 2 1016 201 3 2 4427 1077 2989 1 113 4 9 141 331 4 3 3 237 295 32 3 794 43 1396 1071 2 138 334 19 1 622 4 296 616 68 106 10 24 71 42 20 19 2434 386 19 10 6 1618 7 86 3 2211 332\n1\t140 77 31 6405 953 106 62 473 126 77 1 951 22 1321 199 11 9 1164 342 88 56 74 2659 15 776 6 31 837 5156 7 66 60 1035 5 25 3 59 5 2033 11 27 1220 318 46 5878 2 35 266 40 11 202 1514 5 139 32 5 1612 3 155 316 740 2 4346 266 776 14 2 1238 35 59 56 181 29 408 49 244 5381 2 3826 41 1 3957 11 6 1458 5 70 122 13 4567 97 710 581 50 29 1239 5 26 38 162 7 933 318 23 7564 5127 1 4760 3 149 11 42 229 38 3577 1 59 1367 6 2 4389 3646 1 1156 379 4 2 3511 11 181 2971 59 5 352 1 250 8912 4 1 67 77 2 4115 103 13 499 12 1 710 4 1 4198 11 74 1694 1 1292 4 5 21 253 3 180 198 343 11 95 5652 6 595 49 23 24 5 333 2 2090 4 5 352 6825 5313 37 42 198 2 1935 5 2033 2 21 11 181 5 2489 41 138 1604 8914 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 510 4026 7099 2 568 5 745 362 124 91 1600 3 191 6001 5 100 2926 137 124 591 3 8 134 1 166 38 1585 6 2 206 35 674 1419 3576 4 25 221 3 6089 5 2303 32 137 912 27 276 65 433 1810 4 1 1234 4 268 2 580 368 21 12 80 4369 578 1234 4 813 3 840 19 131 204 213 211 1967 182 4 1 21 432 1455 3 3295 10 54 24 1066 138 14 2 386 171 2 593 6 904 3 1 119 6 3772 63 64 48 1 206 12 242 5 4367 27 12 242 5 508 24 248 1 166 177 2 163 138 68 1463 675 8537\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 381 1 74 878 237 52 68 8 114 1 21 49 8 159 10 29 2 2114 7 1 362 8 12 1475 98 30 1 474 556 5 932 1759 37 4441 94 1 17 5 503 1 201 12 2496 62 4421 30 1 136 1 593 8 96 4 14 101 3 1 1667 1 1020 224 29 1 85 12 2 66 907 6965 279 1157 140 55 13 9008 8 105 54 2248 29 2 680 5 24 2 330\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1503 7501 6 2 325 89 983 7 1 234 4 376 1 67 270 334 94 40 4463 32 1 409 10 40 43 120 32 1 4335 376 2748 4205 17 80 4 126 22 215 5 1 880 1 131 270 334 19 1 376 3381 1052 1032 2042 3 19 375 1032 66 380 10 7536 1 4335 289 83 3702 1 120 24 1 1617 4 2 5978 7 1 66 120 7 289 15 59 28 2468 153 3702 1 131 40 53 1182 847 4 17 1 121 270 334 7 1044 4 29 3 10 380 2 1504 200 1 1488 20 34 1 171 22 1381 501 17 80 87 4835 1 767 22 129 3424 3 1 120 2210 125 97 4916 11 6 2 222 52 36 7 9063 68 7 80 4335 376 2748 3434 1503 7501 270 11 55 1 4335 251 40 32 34 7 34 8 381 133 110\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 360 2553 4 48 10 12 56 36 5 414 19 1 1 254 216 3 2852 2838 11 61 965 5 2711 1 4 1 3 1 551 4 2949 474 22 15 1 3 1 4 1 1 589 12 258 4673 73 1 67 6 370 19 1 4 148 81 603 128 414 939 10 12 93 327 5 64 1 1585 9437 30 148 1098 58 28 12 6520 41 485 14 45 33 57 39 1019 2 15 1 3452 41 2417 6 39 2856 60 6 31 665 4 1 4234 81 35 310 5 7 1 362 3782 1556 3 369 58 820 7 62 111 4 2 147 157 7 2 147\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 12 2 986 18 229 73 4 1 623 7 194 1 441 31 129 35 65 34 1 966 211 177 424 23 229 339 90 2 18 15 9 462 45 23 2025 17 14 235 422 54 26 8069 3261 30 1 8538 9104 115 13 2394 14 1 482 259 35 498 47 5 26 14 53 45 20 138 68 95 4 1 315 6459 6 240 14 6 25 250 8402 13 57 2 163 4 211 2131 3858 78 4 1 2466 1 91 185 4 1 21 69 66 153 1460 2 163 4 81 69 6 1 1809 7 204 3 1 4 34 1 807 11 1680 4472 262 30 51 22 58 56 327 81 7 9 108 16 11 2650 8 173 1582 354 1 158 29 225 20 5 417 41 137 35 22 5888 30 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 173 241 11 33 472 9 142 1 5638 49 33 59 57 2 156 52 767 8555 50 2626 975 3 2 156 4 50 417 336 133 9 880 72 61 37 3364 49 33 2165 781 9 73 4 37 404 10 6 20 1551 5 1 81 35 61 133 9 131 220 1 4362 72 57 2 260 5 64 1 714 8 555 33 54 186 31 790 2400 32 34 81 15 2 535 268 2 349 5416 33 88 2702 47 7 1 9460 3 72 14 902 88 187 31 790 2400 19 34 7373 11 72 99 41 24 455 1395 9 88 93 352 5912 2 147 880 81 54 64 10 3 560 48 10 705 20 59 88 23 64 48 1 902 22 4171 23 88 93 333 9 14 2 9677 16 1126 16 249 3 2240 72 175 5 64 1 82 4916 652 10\n1\t24 107 9 18 69 8 229 118 1 389 927 9890 69 286 8 192 1366 5 10 85 3 3456 13 7 2 170 2367 1791 266 1 7053 35 432 1 1085 8200 4 5483 1438 4940 432 3 29 216 371 7 38 1 1933 4 25 674 6 15 69 17 6 2161 5 90 25 1687 587 1864 27 6 7 5123 15 1 109 23 4108 26 69 9 67 40 2 4502 202 393 69 17 72 34 118 10 6 1 393 72 34 13 7784 120 279 6557 22 1403 2395 372 25 692 1538 9 85 14 1 2250 4214 14 2453 14 1 6169 69 37 109 262 11 23 481 352 17 812 122 260 32 1 13 962 3935 35 999 5 411 5 199 34 15 25 4 2 2700 5811 13 14 165 993 816 3969 217 5260 2934 16 79 6 20 14 53 14 1 215 69 292 8 2172 1186 1607 54 13 614 9 21 6 19 7 116 2265 125 9581 8 1379 23 725 2 327 4914 4 256 2 19 1 1473 3 24 2 1009 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 40 89 79 175 5 390 2 1392 3 3233 6 3711 75 1 898 247 60 19 401 2992 457 60 4152 126 513 9 21 373 2149 1 1751 7773 6387 29 113 21 8 24 117 575\n0\t15 706 4220 8 39 179 10 12 2444 1 716 384 573 1 263 12 8 1266 187 1 410 2 8552 3 4258 65 2 103 23 1589 5 1 272 4 202 253 50 522 125 31 4 8100 1874 3 2271 13 2298 8 179 1 847 12 56 3876 1 312 6 1111 3 10 6 109 9286 7 137 1139 1192 245 1 14 521 14 1 120 22 303 1923 5 357 15 31 2174 20 211 29 34 4510 125 128 10 39 151 23 175 5 884 890 5 1 398 4741 120 5636 13 150 284 6 152 3759 19 2 967 16 476 1 312 12 53 17 2069 300 1 330 185 76 652 65 1 53 546 4 9 74 28 3 152 90 31 240 141 41 300 10 76 26 52 3 52 1192 17 4299 45 23 179 648 522 12 491 4 884 2135 76 187 1232 23 2 13 3027 611 34 9 878 6 370 19 1 3212 4 275 35 6 229 9 6 400 4118 5 873 1046 300 10 12 2 56 211 21 433 7 3283 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 191 26 28 4 1 210 3923 104 117 1001 115 13 499 6 2685 11 132 2 91 263 12 1747 5 390 2 18 3 620 7 7059 14 937 14 349 13 3440 100 107 37 97 6766 7 28 3 1 166 108 10 1513 26 11 8128 115 13 150 173 365 144 37 97 587 171 55 179 1 312 5 55 26 6766 7 2 18 36 476 45 8 57 95 1451 16 43 4 1 587 171 7 9 18 183 8 159 1 141 10 6 881 16 273 1705 115 13 3440 455 11 51 76 26 2 917 65 18 5 9 28 3 8 173 365 75 11 6 55 2623\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2538 54 24 4826 2 1780 16 1 129 7 1 2101 3338 3 73 27 1371 2802 11 143 216 341 144 130 37 378 72 24 1602 2770 47 5 552 1 234 30 8 54 2474 1379 34 958 5 786 1517 2221 1 5886 5419 494 7 9 3445 1189 69 1406 69 267 207 2 1825 2912 5 1034 2770 666 41 123 63 26 113 17 83 70 79 540 38 25 5898 3865 27 153 5507 7 9 141 3 1 166 337 16 1010 1 882 3 2946 2746 22 1318 5 10 14 2 1280 1464 3210 3 11 511 24 89 95 356 14 368 3 18 721 7 19 1 2678 1874 4 6932 33 61 1789 142 3007 109 29 1 85 4 8214 2770 6 237 138 29 588 5 1443 3 17 9 6667 18 213 50 1388 4 2101 16 2 1316\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 20 50 430 7 17 10 6 28 4 1 80 754 124 7 1 10 6 12 1160 30 2402 35 29 9 272 57 459 1160 2 156 10 6 631 11 1 21 440 5 309 15 1 3573 8447 1 18 270 334 7 31 4324 7182 20 7 2 36 80 703 145 20 273 45 11 12 2 2547 17 10 6 31 4752 720 4 7341 56 196 77 25 2340 198 16 147 1175 5 1124 2 1100 7 698 27 6 2 103 105 4086 16 25 221 452 1 1951 2182 2 156 2757 1153 1102 11 22 2288 17 10 6 299 5 64 75 254 27 440 5 256 9 21 845 116 855 1772 17 87 20 128 740 1 4 1 51 6 877 4 1349 3 2504 146 11 76 5624 5121 4238 1 21 6 2 103 2690 17 10 6 46 2072 1 201 6 452 6 2 37 60 123 20 321 31 3 2315 8603 6 2 14 1 1184 6 5873\n0\t48 1 7487 22 1083 38 43 6122 4670 3 560 49 3 75 578 76 2033 476 93 49 1 1173 578 6 7 2 111 9620 30 1 4670 3 23 230 43 1216 318 218 6 8137 13 31 1438 304 1327 11 3165 29 1 210 888 85 3 82 1446 203 8817 3 23 70 1 9929 13 92 129 6 152 1002 501 23 22 1694 5 80 4 1 81 11 196 4864 43 4 126 23 8451 5 13 92 21 748 31 4524 1146 9 6 93 248 1002 530 51 22 5153 11 22 69 7 31 4752 3293 13 92 250 919 578 6 46 1202 69 1 67 38 31 4942 1465 1790 5 216 6 53 7 9 13 1118 1141 9 18 4347 5005 439 293 363 69 2 661 324 4 1709 32 3836 91 395 510 1198 276 36 2 808 5005 43 91 121 883 229 46 156 270 49 69 1 250 120 519 1630 3 452 5005 1 478 6 29 268 46 13 150 721 517 1352 88 90 2 18 36 9 15 50 408 388 533 1 4006\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 727 72 74 7 132 14 2 3987 1562 8230 3 1629 7 9 744 72 3968 149 1032 189 127 5 1179 4693 257 346 45 23 634 7 31 744 23 76 20 24 227 974 16 3844 1 681 4531 7 9 21 22 415 35 24 20 71 446 5 1 1114 7 62 2058 2 2294 1729 572 206 25 74 865 7 9 699 1 21 649 1 4 681 2524 3 22 5 5724 1 11 1030 7 62 3048 4077 5867 11 22 7 62 33 22 681 7 1776 4 2523 1515 3 2 147 680 7 500 1 113 67 4 127 681 6 11 4 35 93 460 7 3 4\n0\t656 2010 10 151 478 2824 25 1896 6262 1773 3 810 4349 25 315 528 15 5841 20 273 48 4 2109 165 122 17 10 3195 630 105 13 129 3441 25 153 87 122 95 1497 2824 1 164 6 101 30 25 3341 285 1 389 2814 88 33 20 149 2 3341 5 1179 5619 55 2 4349 25 8666 22 105 3348 7 1 5841 27 6114 1 4487 142 25 1653 28 105 97 984 45 23 118 48 8 1266 3 8 96 23 13 614 23 22 2 7703 9987 41 5697 1787 3 842 10 228 26 2 720 4 1428 5 64 126 7 2 6488 87 725 2 2454 3 995 11 5425 55 1 5458 176 2948 424 49 33 83 176 13 659 34 8 920 11 4047 22 50 225 430 21 2489 17 180 128 107 1878 78 138 68 2938 13 2699 2 267 3994 41 14 298 7150 1 635 3375 3823 42 545 5787 64 9 59 45 9478 23 191 64 154 1214 47 51 9900 23 22 2 306 5697 41 95 4 1 845 708 1376 5 1038\n0\t418 14 2 2911 267 1633 2019 86 7341 40 1 119 200 1639 112 584 3 27 2004 90 2028 5 95 28 4 51 6 58 189 126 5 357 2159 3 620 7 226 910 269 39 291 5 26 929 5 4329 1 2876 13 6 89 527 30 810 4996 6432 4 126 2494 7 8709 616 125 439 13 153 3539 11 60 152 693 5 309 44 280 243 68 39 288 19 31 1963 351 4 1212 197 121 13 872 98 51 6 217 5685 35 359 29 1 401 4 62 5 459 1455 13 7704 53 185 7 18 6 294 217 112 67 217 327 30 217 17 33 22 37 53 29 62 871 11 39 127 102 5740 88 24 1 18 197 10 15 82 658 4 807 62 5115 196 433 7 1 8407 4 82 119 13 1226 497 69 206 12 253 102 3613 26 3 43 4020 1795 65 34 1 660 2 272 4 126 827 37 206 12 303 15 58 1412 5 131 10 34 14 2 625 13 4634 10 59 45 23 175 5 2476 116\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 489 1540 51 22 37 97 188 540 15 9 158 505 2511 2132 2858 966 11 42 491 11 146 7512 5 1 401 3 1501 554 5 26 1 1409 4120 1 8 4139 11 1 21 40 102 9 191 26 1 302 144 154 625 2990 40 1224 4 1 1409 210 18 541 33 24 100 455 4 1 4050 6 10 165 37 1370 5 1876 2339 8 1 478 154 85 51 12 58 1765 20 11 1 494 12 11 452 23 24 5 230 1140 16 626 3 816 145 273 33 143 64 871 36 9 7 1 4921 4 62 64 10 29 116 221\n0\t55 40 43 4 1 4 1 215 17 27 6 195 52 3909 3 6 909 5 3183 1 1004 411 136 9199 3 1568 39 4578 13 40 103 5 136 60 262 2 580 280 7 1 9428 5909 1 1004 3 194 3 2171 355 2151 30 1 1341 195 60 6 311 1694 3 98 292 60 123 29 225 4813 77 13 6 1 1324 324 4 1010 35 12 2 243 164 35 3807 3 1407 7 25 25 543 1503 32 4706 14 27 25 1398 3 943 195 27 6 311 2 164 15 2 16 2 1737 15 58 948 516 1 5943 13 3 1341 1398 3097 7 1 141 17 22 243 5 592 13 2663 346 546 4 1 1254 662 7 9 1 754 4050 12 7322 1241 5 3 195 276 264 3 13 677 6 55 2754 8164 144 6 6525 19 2 144 123 1 24 16 41 13 4 1 1254 76 812 194 508 228 76 1458 149 1 18 2255 3 49 34 6 367 3 2427 9 18 6 174 525 5 90 43 1911 4821 142 174 161\n1\t4 4767 72 118 29 1 11 27 6246 72 118 27 10 6 7071 73 1 111 1 67 6 8680 10 6 631 1002 362 19 11 1 4 3891 7 6 4767 6 5942 14 2 2118 3 1082 5 4329 15 1 4902 7 1 111 11 27 114 15 1 27 66 6 7071 5 99 73 8 343 11 27 130 24 587 49 5 187 65 3 899 19 5 1885 436 52 1 18 123 20 122 105 1264 27 1141 1046 27 27 3525 15 25 3 1026 2 433 1232 223 94 27 130 24 340 65 3 1527 926 27 844 2 379 818 5 652 65 681 13 724 1952 31 313 3919 7 382 18 6799 28 14 8 219 1 199 4853 1481 899 7 9204 5 1351 142 4767 3 25 346 1301 4 6027 28 30 628 10 1385 79 4 1 3177 5 7049 8 202 590 5 50 766 3 367 814 17 517 27 54 149 132 3462 4481 3 47 4 1888 14 72 303 1 2114 27 590 5 79 3 367 23 96 1 182 12 36 7049\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8879 13 150 1019 1 74 594 1000 16 1 18 5 186 1294 10 12 2069 1495 3 9875 650 4 81 2914 5354 200 1 3815 15 58 1649 3344 98 1 950 255 77 1 2129 1711 14 31 17 49 27 1662 1095 27 726 515 27 247 55 542 5 2834 16 27 485 36 5699 10 12 483 3 1 67 114 162 5 352 1 1445 1112 1102 3 1054 3251 42 31 594 3 5315 681 269 1896 3 30 1 182 8 12 242 5 2089 50 221 3374 8 219 9 73 81 29 1 388 1320 106 8 216 22 198 2227 79 45 9 18 6 95 452 195 8 24 31 10 271 146 36 4167 53 851 42 83 87 9 5 8 54 354 174 141 436 28 207\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 96 9 6 2 84 2614 8 310 19 204 1704 5 352 79 149 66 324 8 130 333 3 8 337 5 1215 6855 7795 3 284 2 878 32 8734 878 3 98 1553 79 5 70 9 2939 8 87 20 2580 4025 9 324 3 1070 76 1038 8 713 133 34 1 82 2639 3 630 6105 65 5 6 162 36 1 1961 79 45 23 22 765 1 347 23 175 146 11 6 160 5 1484 65 15 110 49 23 22 288 16 146 148 3 866 94 23 24 284 1 347 10 6 254 73 23 175 146 11 6 160 5 1484 65 15 656 8 54 134 851 1454 1699 79 5 9 2939 10 985 5 306 112 16 2 9768 8 54 134 6009 112 6 51 6 235 1824 8 54 36 5 64 110 17 37 237 51 6 630 36 1027\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 1 1409 210 18 8 24 117 51 12 332 162 53 5 134 38 9 108 8 24 107 43 91 104 17 9 28 270 110 51 6 58 119 3 80 4 1 18 23 22 463 884 1 18 5 70 10 248 6167 41 23 22 1437 48 1 898 6 160 19 73 23 173 1067 96 11 275 179 4 9 18 3 23 22 133 110 8 230 1140 16 261 35 40 5 694 140 9 1370 594 3 2 6869 786 186 50 2952 3 87 20 99 9 18 16 8 118 23 76 96 10 6 1 1003 351 4 85 23 24 117 1019 7 116 500\n1\t26 1784 8 56 83 118 48 1 465 15 10 3191 13 777 2 547 701 948 3205 620 32 943 985 4 4706 32 31 5366 201 4 396 47 1187 642 1 518 1665 4731 294 786 284 1 119 5133 16 1 2544 1733 4 1 1324 119 69 8 555 5 7622 52 5 2 753 68 2 13 6714 1755 337 37 237 5 187 9 18 62 5083 1020 664 5 882 17 8 56 83 64 110 97 661 104 61 527 69 2084 2015 2934 12 1391 52 1330 68 9 141 66 396 4088 19 9782 813 68 697 1798 395 2064 2769 7 9 21 61 248 15 466 13 150 12 15 205 4 1 18 69 1 74 781 294 4919 14 2 2559 6877 1358 3 1 330 350 781 25 601 14 2 1681 7 2 6232 1 18 40 313 505 55 193 6617 276 52 68 2 222 47 4 334 7 25 3 91 487 13 92 1077 12 93 1477 69 2 885 1541 4 2032 891 3 4248 6455 47 125 2 342 4 719 7 34 1 260 1678\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 28 6 3455 2 147 32 2118 703 11 6 62 84 33 186 32 157 3 3272 10 65 296 581 1550 4000 5 1388 1 5200 5258 4 4277 105 97 3 2 6906 1401 4 4740 8457 1 62 146 66 5237 1827 7 4637 1607 234 2081 2469 6877 16 581 258 137 66 1857 2 6912 47 4 1 2572 823 4 7989 480 1 1401 4 971 41 8223 97 1607 16 5984 3 1 8021 4 500 11 6 48 1 21 8906 1 303 4 1 1664 5 2284 7645 2 231 3746 7 1 4473 11 4 231 32 1 4 42 5 286 49 1 4 2 231 42 1144 22 3569 3 813 8780 1029 15 1912 3 534 98 1 102 22 274 7 421 2330 266 2 585 35 5135 5 1377 25 2558 15 1 7210 4 25 2832 266 25 2832 6 2 170 287 35 5135 5 2 5200 32 1 231 6 1 6442 1 21 1664 1878 17 123 270 31 483 1234 4 85 5 134 110\n1\t1 166 2463 15 34 664 1365 5 3739 3538 79 14 105 78 4 2 3 8939 1859 5 3226 2452 2657 14 1 232 4 18 8 54 474 5 64 52 68 3633 136 557 254 5 26 2 686 2452 2657 39 6828 23 3 23 77 86 9746 2619 20 2 625 178 6 13 2657 1263 1 425 3922 4 1005 7868 238 3 55 2579 2466 1 120 22 109 1080 8807 3 8558 11 126 7 62 4602 1165 13 33 22 20 7866 4 53 3 510 14 72 34 105 396 7 55 661 803 13 1701 1632 136 72 449 1 4747 2452 2657 72 853 25 22 4 25 221 4650 3 356 4 1542 8216 266 28 4 1 80 8300 91 559 7 1 622 4 2433 286 51 22 529 49 72 63 365 75 1 795 4 25 157 24 8035 122 77 1496 48 27 705 2452 2657 2 952 4 129 1273 11 151 86 67 55 52 1202 3 13 2657 6 2 2038 1738 28 4 1 700 3409 2026 117 5870 3 2 393 1822 4 34 1 4730\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 83 118 48 10 6 8 149 37 4217 38 9 158 17 1 74 85 8 159 194 8 405 5 64 75 10 145 20 2 184 325 4 776 779 4 17 8 12 323 1437 39 75 3 49 54 149 25 3049 34 27 789 6 11 1 487 40 1504 3888 1387 26 8680 8 24 20 107 9 18 7 172 779 40 10 71 620 19 249 7 2 3166 17 9 18 6 595 4 28 1559 94 1 4 2251 289 2 46 3098 3 683 6315 1103 4 2 164 433 30 25 9715 51 6 31 4698 859 7 9 18 11 27 6 288 16 1 226 9458 4 423 4590 7 1 8346 4 9 392 3 1 864 11 27 123 144 9 18 6 20 286 19 305 41 388 6 2 948 5 437\n0\t2 364 1202 420 24 71 15 3190 7 8986 1 4494 33 314 176 2 84 934 322 36 2 259 7 2 772 5997 2465 15 43 1773 6596 19 3 43 323 489 488 8 118 11 97 81 24 459 1 17 50 851 10 12 1319 28 178 1008 2 287 3 418 15 2 301 4781 324 4 1 2922 2801 17 16 43 302 197 50 74 179 1220 9344 144 6 28 4 1 120 32 1573 77 2 810 288 13 3514 8 36 5 176 16 7 95 158 3 51 61 2 8464 1 861 12 7360 395 21 12 383 66 6 3 43 4 1 453 61 20 1634 10 12 93 240 283 14 1 3781 80 109 3479 1696 3 8110 14 1 462 91 2678 896 1 5522 869 165 34 65 322 3 45 317 288 16 236 43 167 9 741 1 3663 4 1 13 3616 45 23 175 2 53 3020 158 328 296 3020 7 1 215 218 41 55 218 2720 11 1962 165 52 5953 68 45 317 2 98 186 2 3823 187 9 28 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 133 9 18 6 36 2306 2 4 162 17 10 3003 276 84 17 1391 1745 58 13 92 119 6 2 5940 1378 38 2 3339 4436 3 1 2495 4 4548 814 75 6 10 888 11 15 9 1048 119 3 2549 2011 11 1 18 128 498 47 37 42 73 1 572 6 34 1635 15 58 3895 36 1 464 572 2011 114 29 1 477 4 25 21 3163 1 21 191 24 2591 2 5117 17 436 51 247 227 319 303 125 5 4158 1063 35 57 2442 13 92 21 6 28 2346 1399 11 271 19 3 19 3 19 3 778 8 56 192 8881 144 10 12 89 7 1 74 407 247 89 5 1851 95 426 4 2815\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 360 5 64 11 8369 6 459 1644 2728 69 8973 5625 97 1626 15 2 974 16 9604 1 4712 897 2849 845 770 17 109 2255 1 2002 1 2841 2868 1 356 4 1217 1 1092 661 2868 500 115 13 724 45 8369 6 31 3083 7 7525 3 25 3272 5 5604 1 3 243 4725 915 3683 2768 32 298 5156 5 2432 740 115 13 677 22 3 17 6 31 2116 164 15 2116 603 1035 5 3539 126 22 136 2852 69 1 1 113 1892 980 220 1 434 3 1 2483 69 2108 5 32\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1507 3 10 343 1882 11 1516 7923 6 20 1516 2160 2835 1 74 2297 269 41 37 7211 202 1135 4 2 494 7241 4 2 4 2 287 8988 750 3575 38 2241 3 44 1058 5 2 710 2901 60 2006 7 1 13 92 3240 2236 14 33 139 5 3 5 2 8573 106 475 44 9965 122 1695 1 173 182 1057 4 611 37 60 122 5 1876 5 44 19 52 14 60 876 122 5 44 13 1118 103 3596 2241 41 16 11 3683 235 29 34 9 21 40 1739 3837 6 924 227 5 4800 1 2154 4 2 2551 1013 23 22 28 4 137 35 112 4772 106 162 240 629 29 513 657 1 393 6 46 2068 2427 17 10 6 8461 5 915 725 5 48 5453 5 2 1573 116 536 974 77 2 7286 15 2 13 3027 611 43 81 36 110 8 88 26\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1915 23 175 5 118 1 148 67 4 1 8 1379 23 1351 65 2 973 4 215 471 9 18 12 20 59 91 17 57 162 5 87 15 1 13 150 336 1 347 49 8 284 10 14 2 635 1240 30 12 37 2337 5 64 2 18 370 19 10 209 689 8 12 37 945 49 8 475 159 110 174 177 6 11 51 61 105 97 8538 533 1 18 11 57 58 334 7 1 135 49 1 347 12 428 8538 143 55 13 1226 8691 6 83 351 116 85 41 45 23 64 10 19 1 388 1320 4892 597 10\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 218 1996 3 1 12 31 2751 1 7448 6932 9741 4 272 4 4706 3 1963 1212 4 1 1167 3 120 303 79 7 2 4 13 92 119 6 4736 740 1 4 11 5969 2 234 6135 11 4373 23 7 3 844 23 13 150 8 8 13 252 6 2 18 23 63 1961 725 5 361 187 725 125 1467 4000 8 134 10 6 31 634 4 112 1576 16 95 1438 2935 10 4838 5 1 683 4 1 95 3352 1 234 140 147 3253 14 45 107 32 1 13 5781 308 367 11 306 632 4373 1 545 660 272 4 793 77 7 4084 8 230 8 24 71 5 5 9914 158 2 216 4 306\n0\t1983 23 63 8 12 1 206 8 54 757 11 185 16 1432 419 79 1 4254 5 582 283 1 344 4 1 4285 16 43 81 10 76 26 509 1232 10 1419 1357 811 408 89 186 16 665 2 178 11 28 4 1 417 1436 3 398 177 33 22 403 6 3070 1083 203 584 5 239 94 2826 16 13 3221 439 177 12 49 33 61 648 1208 1 3068 33 57 36 4 7 1 4674 7 1044 4 3068 6 3355 30 43 232 4 7693 1 3 179 10 12 6872 712 17 20 517 38 1 1739 101 7 298 2918 13 92 501 43 782 168 33 22 2068 248 8 338 519 203 557 138 49 86 1503 49 86 516 146 378 4 781 2787 37 9 18 123 10 501 300 73 86 2 402 445 8 83 1374 17 10 557 514 16 6116 23 76 230 1560 45 23 995 43 1931 36 1 879 8 1505 13 4098 20 504 78 4 1027 17 45 23 36 4 18 99 9 628 26 328 5 13 38 50 3532 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1915 1 1176 516 117 284 490 2176 43 2952 115 13 4385 7 2 141 42 20 2 53 312 5 6053 4 154 469 7 1 18 7 1 567 6950 11 5162 5 2600 1 6971 115 13 5369 8 118 23 1160 9 19 2 3 69 5 26 1551 69 23 1066 15 116 445 17 3402 4158 81 35 63 152 3218 41 29 2532 771 3 29 1 166 290 988 145 288 29 13 6867 45 317 160 5 274 2 185 4 116 18 7 1 2747 59 87 9 45 23 24 1 5398 3 1759 4 1 1425 13 9166 1298 5536 22 377 5 26 2 4802 1432 72 83 175 1552 11 90 58 2509 17 1 14 521 14 23 5337 2 207 20 2 84 13 5 1 559 16 17 7 34 420 243 33 13 7704 16 1028\n0\t1276 1426 5 566 1 1 2201 6022 3 37 792 2 2244 8982 5 1708 1 91 8569 183 33 63 8024 261 9809 13 3079 1 169 109 3075 4 1 156 7 1 4215 17 25 53 216 6 202 2175 30 595 345 478 3266 1 344 4 1 672 216 6 7132 15 46 103 5 652 1 120 5 500 1 6 1 59 129 11 6 1139 69 9342 1419 3 1 8569 22 2776 341 176 202 32 239 55 1 1678 22 1598 913 258 255 65 2179 101 162 52 68 2 15 2579 6126 3 29 269 1 21 6 20 610 286 10 4089 169 955 7 546 664 5 1 6592 4 375 5007 103 4 1569 6 8328 28 5242 7 1 347 1819 15 1 112 4 3 6 2406 7 1 158 1 166 3062 6 400 643 30 2346 8 310 5 1 1 852 679 4 299 3 17 48 8 165 12 167 78 1 9 28 6 2 1200 11 311 153 1484 1 4 1 347 7 95 4972 69 906 5787 10 191 139 224 14 28 5\n1\t179 49 8 159 9 124 10 6 20 56 2 158 29 225 10 6 20 48 72 830 49 72 785 1 736 10 6 1135 297 7 10 40 2 8630 37 45 23 22 20 314 5 2783 177 7 2 8813 744 23 76 149 10 4965 45 23 22 20 15 9092 4162 727 23 76 96 42 39 2 3 55 2 1021 628 16 79 218 2247 4 6 1080 3 8 87 36 110 10 649 199 7 1512 1 67 38 1 566 189 822 3 1 566 11 6 14 161 14 3 154 28 35 6 7 1776 4 1 7 9 157 6 15 110 1 21 6 515 89 30 8 192 20 2 50 4842 3 1 2419 4 1 234 3 423 6 3026 17 14 237 14 72 22 34 2630 3 24 1 166 423 1109 72 3237 24 1205 3212 3 63 365 239 1715 10 6 2 56 304 2814 3 8 66 72 57 52 124 36 9 69 124 11 24 2 8630 51 22 105 97 2213 584 66 22 53 59 5 90 85 1369 52\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 34 23 321 5 118 38 9 21 629 7 1 74 681 10 276 3879 10 40 2 1195 215 1077 4 1 4795 3 34 17 2 342 4 86 120 22 308 23 70 11 6527 23 190 14 109 4218 5 174 803 13 2689 7791 25 304 4472 28 4 1 156 81 7 25 157 35 3457 38 550 98 30 1 85 27 270 44 2952 5 2612 44 7 1 148 4 536 2 1189 21 4 66 244 1 5332 123 37 30 5028 44 1923 3 9173 65 15 31 651 244 660 2560 2 342 1308 3 43 5629 632 593 22 1 59 188 279 133 3127 13 92 21 6 93 240 14 4 1856 735 32 7 761 12 146 5 26 17 204 42 25 1921 59 3266 231 2771 674 6892 122 7 9 2176 1247 25 4331\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 21 1260 4 578 6 2332 1 1041 1 672 1 2132 10 34 2291 1 230 4 1 821 197 86 221 1 123 31 313 329 14 1 164 1136 5 1 7902 8 332 112 9 2129\n1\t17 14 2 640 10 557 530 1 2753 7 66 72 889 1 6548 4 101 851 6 78 138 68 25 922 2193 3 6 446 5 2321 554 1002 2593 13 858 23 229 118 32 2261 38 9 18 7 1 74 2416 121 2683 7 129 5271 1509 6 3 8861 3 380 1190 5 1 18 178 30 1361 704 33 54 920 10 41 1375 1 280 12 428 41 16 197 849 1 1569 54 473 5022 14 1569 6 350 9981 3 1 1569 6 46 53 7 1 74 1888 17 197 10 54 1609 230 36 2 42 2 360 157 13 6 84 488 58 729 48 43 190 867 123 20 634 36 1 59 1335 16 1 957 3218 29 2532 23 83 96 11 49 23 64 768 60 380 2 7574 278 3 151 23 995 317 133 2 141 60 3 4173 230 46 78 36 2 148 13 92 18 811 4426 1 18 5 40 2 46 327 9523 1 312 8201 3 138 68 909 3 790 130 100 24 71 404 8410 371 39 5 552 895 801 247\n1\t2642 3 93 3426 122 13 92 1003 2725 4 1 21 6 4609 1 233 11 10 460 1 102 1003 203 460 4 86 326 69 8637 4592 3 4928 3 205 187 313 2263 4592 56 289 48 2 53 353 27 6 3 25 129 40 877 4 5143 16 4592 5 5561 1566 4928 3655 40 2 280 66 6 483 264 32 48 1181 314 5 283 122 1356 3 42 2 84 278 32 122 42 327 5 64 2 222 4 32 1 21 123 70 142 5 2 243 673 17 188 521 357 5 1351 960 1 330 350 4 1 21 6 1 113 3 207 56 49 1 21 196 1303 3 4592 196 2 680 5 5868 1 21 123 20 256 86 1229 19 184 293 363 3 2496 4088 19 1 2628 4 1 1284 129 5 359 188 3 10 123 216 46 530 1 21 1373 240 533 3 224 5 2 46 547 2281 11 297 65 1952 1 3395 1796 190 20 26 28 4 1 46 113 203 124 4 1 17 42 2 46 53 28 3 255 4869\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 512 69 8 4177 1732 9 131 518 7 42 8 59 997 2 156 767 7103 183 10 12 30 8 336 1 647 3 857 69 17 80 4 34 1 84 8 12 2 325 4 447 3 1 2977 37 8 159 102 120 8 4546 12 217 1 129 12 14 109 14 3460 4024 2264 5 3 7722 8 335 133 170 171 70 62 3 343 36 9 131 54 62 895 1231 4508 8 449 9 29 225 196 256 155 47 19 2388 3 300 76 1351 10 65 16 2 330 1022 7 1 145 956 10 19 5272 32 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 71 2 223 85 220 8 226 159 2 18 9 1 121 6 46 6831 1 67 6 2069 1495 3 145 29 2 2807 16 911 14 5 1 9981 10 12 301 3 9 6 14 78 2 267 14 4414 2 3523 115 13 1268 4 1 74 168 395 28 15 1 756 131 69 106 1 898 22 165 10 260 69 1 201 12 4 987 543 10 69 1837 1488 45 33 61 1247 16 2 895 98 8 96 10 228 100 780 15 9 19 62 1 263 57 1 5796 17 1070 4 1 171 779 1 206 31 353 3 674 130 1382 5 101 31 1789 10 1294 1802 12 1 59 28 35 384 138 68 95 4 1 13 1964 3134 17 45 23 117 1064 133 9 69 8 496 354 23 473 5 146 364 73 20 59 42 2 900 2807 4 387 17 93 2 904 665 4 48 91 616 276 3704\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 596 4 5725 5879 574 203 581 9 18 130 26 2 9573 1 59 177 8 143 36 38 1 21 12 1 233 11 745 12 1130 19 1 210 2351 7 5396 245 9 6 2 9349 3848 103 108 45 9 6 20 113 158 42 407 28 4 450 1 113 2541 2052 16 6294 6 1 28 1738 3650 14 2 203 21 6 56 2332 14 53 14 12 7 9 1538 42 254 5 241 27 143 87 52 4 127 2514 4 502 34 7 399 9 6 31 548 141 66 1728 1 3106 47 4 79 14 2 3338 3 66 128 380 79 1 5 9 1393\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 46 747 108 3181 162 629 7 9 108 1 263 6 8 497 2109 39 1 74 1194 7667 5 1597 1 1278 191 24 179 987 932 2 368 18 204 7 33 143 195 7 1 957 1679 10 6 59 599 7 3 29 41 2730 7 1 576 72 24 57 56 53 104 7 36 7851 6 2 351 4 116 290 300 23 88 4813 7 1 856 94 819 107 2 148 108 45 819 107 394 269 4 819 107 10 513 10 12 6525 5 469 19 558 2066 3 2229 8 449 10 76 5777 7 1 7851 5982\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 112 6178 124 3 23 617 107 9 141 23 22 4451 4175 9 18 6 28 4 1 59 6178 11 88 26 1901 16 596 4 34 2514 4 135 10 270 2 6266 325 4 1 870 5 64 235 7 127 581 17 9 28 40 10 7238 1 67 6 109 8680 3 1 566 168 22 1111 3 2292 5 182 183 317 301 1120 15 126 1337 7 2 103 948 3 2629 3 819 165 725 28 3106 4 2 108 64 9 28 29 34 4484 9317 50 379 55 381 592 13 8359 9176 13 47 4 13 1149\n0\t662 29 985 7 1 18 11 22 377 5 26 722 33 22 7 4645 5 1659 529 7 1 21 11 22 37 775 248 23 230 14 45 116 133 1 4186 4 782 108 2301 12 9 377 5 26 2 1015 41 2 1 21 1350 1155 1 1183 37 955 737 11 2 1114 604 4 1 410 7 1 856 8 6218 2117 47 38 2507 140 1 108 66 7 8 555 8 57 1613 20 79 1024 8 57 5 2629 512 3 1382 15 10 1247 10 54 70 828 3396 5 134 10 6629 1 9200 168 22 2 6182 20 55 37 78 73 4 1 121 17 73 4 1 2132 1 1252 1 3 1 443 916 1 18 999 5 176 14 45 33 1019 2 5117 5 2230 194 17 128 310 47 4 10 15 2 445 108 8 2507 909 5 64 3780 1320 19 43 4 1 5398 3 721 517 8 54 1780 2 1665 376 7 1 201 8449 115 13 252 104 782 9338 45 9 6 1 958 4 184 445 203 98 1 203 870 6\n0\t91 39 153 2465 6349 6 2 1386 3 4368 651 4426 4564 3 8016 7 66 60 93 15 2077 17 60 784 3 60 40 2 1302 19 44 11 3624 173 3 1 1759 83 291 1 518 626 123 2 6701 473 14 3361 292 27 59 6127 5 14 25 430 243 68 25 66 60 12 5 26 7 1 1533 896 10 181 5 79 11 6064 3 6349 22 105 161 16 62 871 8013 42 1 3 1 1769 6 7596 6162 5232 3 197 37 78 4 2 3506 4 2 6422 8 365 11 10 6 274 7 9036 17 10 6 1504 51 3 33 87 70 62 1 1103 4 816 129 3 25 66 153 780 7 1 2797 1 21 55 1129 1 28 1061 1367 6 2077 278 14 292 10 153 55 209 542 5 1103 7 1 141 123 90 28 467 6350 7 2179 99 9 59 45 819 165 2 156 719 5 17 83 504 235 1303 41 16 10 5 26 306 5 1 3854 64 95 82 324 1394 17 8 496 354 4215 125 9 1455\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9625 9626 5489 6 1 2658 4 9 108 60 266 44 280 202 7 2 17 128 876 577 44 2094 3730 4497 12 1 18 554 12 53 20 45 23 22 2 9625 9626 5489 325 10 6 279 4498\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1055 2219 12 111 9336 3 1 948 554 6 2336 3 140 2 251 4 5353 11 61 1135 4178 162 40 1241 7 923 157 7 1 576 3000 11 151 10 2363 1470 115 13 150 55 57 1245 2308 144 27 12 7446 38 25 875 7 5747 14 1074 5 1 7536 5 3183 5153 11 27 40 7 6990 63 27 20 411 19 1 2141 10 181 36 2 46 6293 119 272 5 70 122 602 7 2 1004 13 92 1967 767 4 1 215 251 61 167 5172 3 519 19 3 9 28 3019 65 11 243 68 3776 5 1 1229 4 251 461 5882\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 322 23 118 1 9 40 5 26 1 210 18 180 107 7 2 223 223 290 8 63 59 830 11 57 43 5 946 49 605 19 9 6404 13 92 466 280 6 262 30 5213 7327 2 528 1903 3 8 54 830 6478 260 155 77 260 94 9 13 1072 1699 1 1563 1792 4383 7 1 362 2032 3 220 98 566 168 24 5 26 463 1563 1792 370 41 29 225 1798 45 712 1170 1076 9 18 1123 884 2932 5 131 142 1 1563 245 55 9 173 8797 1 233 11 1 886 153 118 75 5 1337 2 31 855 1315 349 161 487 54 186 44 1251 19 9 13 1 59 948 19 131 204 6 75 9 143 1364 1 2101 16 86 2463\n1\t457 1 3 77 1 9273 115 13 92 67 93 1733 1 11 102 4 1 277 7506 3521 136 4309 140 3512 3 9405 3572 94 33 32 1 34 277 35 713 5 1291 152 645 408 1225 3505 5 62 408 1 1974 2839 380 2 46 2186 3 306 507 4 1 1560 3 795 4 2 1 18 12 383 19 1 697 2840 385 1 1 102 7 62 9210 89 15 237 364 2 445 68 1 84 8940 1 1974 2839 6 52 1087 45 20 52 1303 68 1 84 1291 3 100 1082 5 359 23 32 1 1590 4 116 3104 6750 16 1 5 90 53 62 9210 115 13 92 67 427 6 8934 3 1 121 3557 306 3 6 227 5 359 1 1560 65 34 1 111 140 1 108 1 1974 2839 6 370 19 1 347 4 1 166 442 30 28 4 1 1994 8028 3 424 30 3980 1 113 1291 67 117 89 77 2 108 43 4 1 697 61 314 7 1 18 5 62 3052 14 6023 7 8 187 9 18 2 109 2149\n0\t194 17 10 2397 797 3 180 71 1841 5 64 2 56 18 16 8334 4648 9 21 12 20 48 8 12 288 1987 8 57 3388 16 1 1726 17 1670 12 2320 2 509 11 384 5 2739 19 105 223 480 86 938 599 290 1 644 804 6 1930 42 38 2 35 7698 25 851 3 6 37 11 27 1 2375 654 5 469 3 14 2 9 259 6 98 929 5 414 3 1330 3657 94 1 18 6 829 1509 15 43 1086 861 3 453 30 1 1041 17 805 8 214 512 1120 3 9783 49 9 54 714 1 1132 57 2 680 5 90 146 243 548 3 17 33 4409 1 436 10 3084 71 5236 15 43 772 2605 1256 7 132 14 2270 1349 3 679 4 8 1266 72 22 648 38 737 662 61 377 5 26 91 1509 48 15 34 1 3 37 662 377 5 26 55 52 34 7 399 1013 317 2 325 4 1 170 3 4077 22 6115 7 698 31 2896 35 1143 1537 8288 420 229 935 4 9 391 4\n0\t1460 5 351 116 319 19 9 108 87 20 55 139 77 116 606 3 96 11 23 228 64 9 18 45 95 508 87 20 1376 5 1038 45 23 191 64 2 18 9 139 64 1982 3456 13 92 263 12 2444 1080 428 32 1 1610 203 18 9420 2 334 7 9017 2 15 943 2 2284 164 35 999 5 34 4 1 5107 11 1784 613 6862 481 256 2193 3 31 1438 3 2235 286 304 3 627 287 15 912 97 7 1 410 54 112 5 26 446 5 637 62 5657 1541 2193 734 78 775 3370 2565 3 48 1 4299 987 256 43 7 51 16 2 103 5 1 6199 13 92 121 12 2680 3 1 120 1698 69 12 52 1202 68 2938 13 63 275 786 348 79 75 2 63 90 2 7721 32 1 454 94 101 383 197 55 253 1 454 35 12 383 145 7 1 72 321 11 232 4 691 16 13 47 4 3623 3 8 54 334 10 7 1 4 11 9778 65 5 187 10 1 5083 888 868 8\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 83 320 101 58 52 68 2 46 1446 1557 131 7 2768 14 3579 95 6969 1867 983 634 8 12 1 3273 634 2795 12 1 466 129 47 1 3273 634 6377 12 1 119 1298 8654 129 634 12 1 5836 3 1 12 6697 2227 44 2376 75 27 2242 47 1 1004 3 98 275 667 146 2347 29 1 182 4 1 4811 13 1268 177 8 87 320 12 1 5935 84 7746 1461 313 833 4923 1 567 1365 980 89 79 175 5 64 1 131 142 3 19 16 1 1756 3299 1 131 12 19 1 5638 8 76 93 920 11 10 12 327 5 64 7 2 280 82 68 480 101 955 8 39 4318 1 131 12 52 548 68 49 8 74 2299 592 13 8 219 31 3634 15 7746 1461 19 8897 140 62 4 296 756 7306 987 39 134 11 8 12 52 232 68 38 1 131\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 330 474 4398 18 6 7925 138 68 86 10 40 2 2812 640 138 129 3612 3 1 5499 2166 1 3383 22 205 6748 3 273 1 18 5162 5 125 5509 3379 17 209 926 10 6 2 474 4398 108 9 18 6 2 84 572 5 131 5 374 73 10 8230 1549 3 805 20 5 798 1 474 4398 22 39 105\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4929 1183 5346 2897 1461 3924 4598 1037 4444 1539 6518 8488 6466 612 5 14 331 2206 865 4215 38 1 14 107 140 1 671 4 205 2 482 231 3 2 315 1499 1 644 74 350 6 3424 30 1 313 278 4 14 6431 2501 3 1 857 189 1 9346 245 129 6 643 2507 140 3 1 315 231 6 301 1837 7 2 2764 3 2724 489 4339 6869 6070 843 47 4 1731 20 1274 1274 7159 16\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 173 241 8 351 50 85 133 9 8 114 73 4598 419 10 31 5280 3 16 249 104 9 6 531 2 7434 4 43 538 13 92 121 12 1530 17 2525 1059 10 130 26 2681 5281 5 95 5652 4 1 119 6 1 5829 4 1 6897 400 3 1 943 231 7659 810 3 16 1632 1508 11 1330 2671 5 6 573 17 27 498 47 5 26 31 454 20 73 4 25 1 17 73 244 167 53 15 25 13 92 59 859 8 12 446 5 32 9 12 11 1 3720 231 6 53 3 5626 536 22 565 1608 3 91 81 780 5 53\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 9 19 50 4 28 431 8 159 226 366 8 83 96 646 26 133 702 1 121 12 400 8705 1 119 301 2674 1 393 400 3206 361 8 467 35 54 241 2 1099 1519 3780 7920 16 1 469 4 2 1358 9716 15 1 466 353 384 37 202 2692 7 25 280 361 436 27 1640 75 91 1 523 8 1435 853 11 1 589 2649 9 1022 6 167 3652 17 33 63 1416 149 138 300 33 22 1 523 5 4660 41 646 2398 72 495 26 283 9 28 398\n1\t19 15 1 1733 7675 8 96 10 6 2 21 279 4498 1 1045 67 228 26 214 855 16 5 79 12 56 452 1 238 6 1111 1 443 6 1126 5 2874 5111 3 8 467 8164 188 23 54 20 26 446 5 87 41 64 6 4368 8204 1 201 278 6 501 7 50 1062 58 28 2018 1 540 13 5140 1 177 11 8 214 1477 6 1 4974 5411 176 2 709 347 758 5 500 1 1733 19 1 6316 380 52 14 45 10 57 71 248 30 874 4017 273 10 12 17 49 1 3407 720 23 64 1 115 13 92 1840 29 1 3115 3475 38 1 254 216 516 1 4356 1450 1 1392 60 1113 6 3435 17 436 27 12 169 220 27 59 57 28 386 21 7 25 814 97 81 57 306 2845 7 450 33 544 62 221 1210 32 7564 3 117 220 33 3521 1 3953 33 758 655 2350 13 2687 773 110 8 96 23 495 2580 3951 300 742 16 1 570 176 4 9 21 6 1914 5 25 8 4630\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 314 5 26 31 6213 545 318 8 1454 1019 223 1302 719 3244 2031 2 408 16 1 482 1562 59 5 26 5 64 1 429 2 349 3513 34 4 1 304 891 40 71 1 1612 891 7424 3 1044 24 71 34 1 7932 3 7932 7 1 1044 24 71 757 2563 2090 40 71 3867 689 10 195 276 36 2 2662 6556 33 83 55 414 51 95 33 414 4668 3 209 47 59 16 1 9129 10 79 5 96 4 34 1 719 11 1 84 81 4 5 127 81 3 5 64 1 9112 1 67 11 72 34 159 19 249 247 301 1 83 241 154 177 23 64 3\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21 3 121 3897 4014 30 86 301 961 67 3875 55 1 265 6 2163 37 11 1 911 1179 1 238 154 290 2 4 1464 7043 200 9 1772 14 2 1165 6054 42 52 2186 68 1265 86 2553 4 1 2432 4 1404 3 551 4 6 17 6270 1469 4035 498 7 2 278 14\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 63 8 867 42 2 1589 53 108 64 10 45 23 128 84 443 557 3 2036 8175 39 4544 4182 3331 6 1115 1060 886 32 63 407 186 1 334 4\n1\t53 1775 11 7142 86 915 109 3 649 86 67 3 2091 93 7 2 687 595 673 710 1262 13 777 2 588 4 717 141 11 1229 19 1 157 4 1281 535 400 264 5405 6 2 184 833 740 1 141 66 196 2970 3 10 151 1 18 3 86 67 790 2 167 1087 628 193 436 2 222 2674 220 1 18 153 169 1857 235 215 227 740 86 7933 13 252 574 4 710 18 76 229 2545 142 2 163 4 81 73 4 1 302 11 33 229 504 10 5 26 46 15 1052 6802 3 5 110 7080 618 6 2 46 8818 18 16 307 3 23 56 83 24 5 26 77 104 5 1116 9 108 42 2 1316 3 595 232 4 141 664 5 86 915 3 1117 13 92 18 6 93 101 89 1087 30 86 1041 35 83 57 3 24 2 163 4 839 740 1 18 1255 17 22 4602 288 3 507 740 62 2237 1 627 2852 120 1851 1 18 15 43 327 1626 3 53 13 743 53 18 19 86 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 19 4063 3 1641 8148 7 1 3368 1270 4 1 6 331 4 91 2516 6664 528 15 20 59 54 10 26 2973 5 1 4 80 296 9 391 4 216 255 142 14 39 2 7 7 86 6185 215 2939 4973 121 6 1227 845 855 3 1 518 3795 7 4909 123 2 53 329 4 253 902 812 193 27 276 595 3418 7 375 1192 236 93 2 280 16 1 518 626 35 784 14 1 3 6268 4110 4 89 2 243 1202 4412 1641 50 3737 115 13 3382\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74 1237 8 4001 202 34 3767 2414 502 17 51 6 146 38 9 11 6 6801 11 4373 79 1356 3 8 54 134 10 6 738 1 80 548 1545 8 24 575 1 330 85 8 219 194 1 2771 12 6566 49 114 3767 2414 889 50 115 13 1893 33 228 37 27 1241 126 77 3788 3 75 1065 54 10 26 45 33 61 59 131 460 6 52 1434 109 9 6 2 923 5551 3 50 128 536 5305 29 717 5047 55 2393 2313 4 8269 10 361 17 43 4 23 191 149 7 127 4720 13 8 24 103 16 690 17 936 27 590 7 28 4 1 2049 607 453 8 63 2209 341 50 518 5305 55 381 194 292 4636 5 3082 1 1884 5390 60 5916 15 1 21 13 5891 7498 7 3 125 1 5199 23 76 463 539 3 539 41 473 9 1294 16 503 1 1935\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 112 372 2358 3 8 179 9 18 12 84 73 10 4223 2 163 4 2358 7 110 9 12 2 53 21 3 8 192 1096 10 1196 3581 3 61 53 3 37 12 12 84 29 372 1 5774 1371 372 2358 17 44 1007 175 44 5 825 75 5 5393 31 175 44 5 70 49 5774 418 372 16 2 2358 968 4940 60 762 9213 3 988 35 6 44 49 44 1007 149 47 1245 3723 17 44 1508 1572 44 309 1 184 1484 19 44 3298 29 1 182 44 1007 3539 75 78 60 1371 2358 3 369 44 139 5 3103\n0\t9 850 37 97 268 1704 17 48 9 46 2940 3 169 3563 6 1 278 4 18 3 2773 152 42 20 2 91 739 30 39 51 22 138 879 47 1057 66 22 696 7 311 1419 10 221 3358 1 9711 1109 3 4524 6865 3 55 2 1388 4 3416 1544 47 36 146 32 434 13 92 709 67 6 323 47 15 42 315 5946 17 10 63 70 5172 3 2 222 7 2570 7 1 299 3917 87 1095 258 1 570 66 6 109 14 8 179 10 88 24 47 15 146 52 16 2 1879 397 1 5614 3452 63 176 3 46 17 236 43 6571 529 11 76 90 23 2618 68 152 55 2 4 893 1560 1 441 1359 5 278 14 1 4413 2773 4321 6 169 7 2 4015 356 3 27 2734 10 142 483 530 33 61 205 7925 14 1 342 23 336 5 1740 6 2038 7 2 278 14 206 5568 1 21 3 43 3489 168 4 3800 3 13 42 4605 3 676 810 17 23 165 5 874 10 5 10 16 43\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 187 9 1892 535 172 3 1333 110 6 5973 3 44 893 576 151 79 2499 60 649 1469 27 40 31 1854 5 2909 3 191 925 4311 27 1136 768 1469 40 402 1537 3 32 2 264 85 8 24 162 421 17 9 2053 6 20 1927 24 2 749 117 94 1905 44 532 367 27 12 31 161 3 1304 9 6 25 226 525 5 25 9631 204 358 46 53 81 35 22 1927 182 65 7 2 1858 8 83 96 25 161 1786 5914 6 1927 1179 77 25 147 500 8 64 126 101 4258 689 1469 367 25 417 61 52 731 68 25 1499 1 5211 122 3 12 51 16\n0\t5516 1 7416 142 4 8728 2954 19 1 7 1 4663 6972 1 1128 3 7 3276 2252 3 691 36 656 46 1415 3 467 6706 21 3 40 332 162 5044 41 9 74 3465 6 1 3 80 3161 7588 292 10 6 20 14 1909 14 1 398 1871 4 3569 3 3342 66 440 5 26 14 1985 14 13 7941 3763 6 436 1 177 180 107 3 1 4639 177 5 8977 51 705 9 6 128 3431 9887 1 59 1820 5 2438 6 11 58 28 2180 41 6959 16 148 7 9 135 8 481 354 9 5 261 220 5729 6 37 3 33 35 1064 9 6 2 84 203 21 365 162 38 616 3 1 148 1468 4 110 8 219 9 14 2 5765 794 1 82 546 7 1 3 195 8 118 75 1652 127 2620 33 216 59 7 1965 952 3 207 20 105 5044 1262 7941 3763 6 436 1 21 180 107 3 9271 7 2 6782 9279 6 436 1 80 3094 21 180 575 37 127 22 167 1809 7 50 1158 17 207 34 33\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 39 219 9 18 19 169 30 2561 8556 45 8 511 24 59 57 1639 4 2460 16 1 576 102 663 98 8 511 24 310 408 362 32 916 45 8 1808 310 408 362 32 216 8 511 24 107 9 108 8 511 24 587 48 8 12 17 8 2893 1155 2 13 6570 1 111 9 18 705 42 202 372 19 1 1763 8623 5957 11 3 50 117 129 6 7 43 111 41 2877 1357 9 18 6 39 2856 145 160 5 24 5 149 2 973 5\n0\t3021 956 16 34 298 416 1554 577 1 1162 1334 6 2 6690 436 1 80 1744 5 117 2278 1 616 234 15 25 13 8212 87 8 905 15 9 8645 154 4 1147 3 1777 12 37 301 3 14 4172 27 6 37 1805 145 619 27 143 139 16 561 8 339 2735 512 285 1 2801 1361 8 9 18 5 50 711 3 27 404 79 19 1 1969 667 75 2801 178 590 122 8 192 400 4 611 73 4 9 21 3 42 1325 3995 4119 7 144 39 5446 8 4518 224 2 1908 3 8 1059 1334 3 7 86 13 92 861 12 1 113 177 38 9 135 49 11 2345 472 5 1 1 7590 7932 4 8 3740 8 100 55 563 33 57 7590 7932 7 41 11 81 88 2203 19 183 9 135 10 3296 50 671 5 2 147 5634 4 9 21 1685 79 5 7 1334 416 4 412 2511 505 3387 6172 397 2217 3 148 8 39 175 5 867 1259 561 1479 23 16 2472 9 5591 77 1 1162 72 63 100 23\n1\t2462 1258 1644 850 530 8 179 3739 3071 12 167 44 386 8 2564 1253 43 447 17 9 2452 1791 259 229 88 24 71 138 1249 300 15 2 52 109 587 249 18 2099 1 1177 12 547 3 1 523 88 24 71 5236 19 69 205 88 24 71 2 103 2 103 52 28 177 11 12 84 38 9 12 1 333 4 148 1827 11 88 728 24 71 1241 37 9 88 24 71 829 7 4857 17 33 56 61 7 304 1678 36 815 2 12 1 206 2633 1412 5 2990 732 802 572 3090 20 452 57 9 71 2 52 1005 1729 572 383 16 1 184 2238 572 425 168 56 321 5 186 2 3 39 26 2 327 185 4 1 5157 9 12 39 2 1024 37 33 57 5 734 43 5 1 572 3 43 4 11 310 32 1 7754 1952 56 2 91 108 646 348 23 4875 9 12 332 1 113 397 8 24 117 6870 341 1 59 11 8 118 8 9 5 26 2 1669 4743 141 685 10 2 2442 4\n1\t2355 14 322 1573 7 2 1002 278 140 66 60 3548 3 2334 44 129 169 193 60 40 5 26 595 5 1999 5 999 5 87 10 7 31 111 11 6 1135 9281 80 6728 73 4 1 2252 60 876 5 44 1835 10 151 44 733 15 1202 3 7459 900 4102 5 1 471 23 24 17 5 176 77 671 5 118 11 1 1687 444 8807 22 3015 42 2 1442 222 4 216 32 2 964 3 5927 13 92 607 201 1680 578 1490 7978 745 5914 1183 1760 3076 5253 4135 3 109 3995 3 6 31 2537 1295 158 1463 15 2 6711 11 9350 2 356 4 3 436 2 6180 655 1559 5 1368 72 83 321 2 141 4 611 5 348 199 11 51 6 8454 7 1 17 72 22 109 3455 30 1 5652 4 1 616 49 10 1523 199 4 146 72 130 100 14 72 34 24 1 1514 5 1380 1061 8722 3 5 90 2 1820 7 1 486 4 137 200 2533 8 1090 9 28 115 13 1149 115 13 1149 115 13 1149\n1\t40 43 136 1227 10 3 55 2 156 2508 841 47 16 43 896 571 16 28 178 7 66 27 15 25 1 18 301 7791 1850 17 1078 4350 303 4779 207 20 13 2 163 4 1 61 248 5 90 1 67 52 286 1 910 938 718 19 7390 11 6 2403 19 1 305 1008 43 1799 11 151 25 67 52 1005 17 6 32 1 682 13 1701 1632 32 3241 318 25 231 9867 7 2597 16 53 49 27 12 7390 2972 1287 3 25 2319 1681 3415 895 1168 94 723 140 66 27 433 350 4 1 7 25 303 1826 253 25 2966 55 52 13 2044 1435 1116 3 365 1 67 4 1290 42 53 5 20 59 99 218 17 5 99 1 7398 4626 841 47 1 4424 5004 5 1 1324 3 229 93 5 284 93 3594 218 8 617 284 1 347 17 8 449 5 28 4 127 6371 13 724 1952 218 6 2 46 53 1103 4 2 67 3 6 2 1127 7144 5 1 869 4 1912 3 1 5228 4 1 1205 1368\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 6 832 5 149 95 7 9 108 181 14 193 1 1840 965 5 90 2 4027 197 78 991 217 5259 72 22 1979 5 2 331 781 4 66 6 1 1335 16 2 18 7 2008 1 613 624 485 483 1494 7 62 103 52 238 802 4 1 102 2475 217 2 163 364 4 54 24 71 1 111 5 3192 4 448 11 54 734 5 1 445 37 33 636 5 2222 1 1032 15 11 7439 7951 123 313 288 1494 217 44 121 6 74 7951 912 8 57 455 4 17 20 107 19 412 183 93 485 46 17 181 5 551 1048 121 3694 1251 32 7951 9 6 148 3095\n0\t3 32 2268 5388 316 14 2 49 8 12 140 50 558 8768 388 8 310 577 1 21 1028 469 429 3 8 1108 8260 10 155 17 183 866 19 8 1887 11 294 12 20 59 31 353 7 9 21 17 16 1 74 85 11 8 24 117 455 4 2 2254 9 3565 79 4297 1 772 2154 3 8 3 8 57 5 24 110 655 588 408 8 1640 11 9 21 114 20 414 65 5 82 216 55 25 505 66 190 24 71 5940 30 1 1253 4 5246 17 10 12 20 39 122 1 82 171 3154 854 10 384 14 45 33 57 34 71 1789 47 4 2 1058 4717 1743 3 553 195 559 23 56 24 5 3218 1 21 55 276 4 1575 1665 3266 8 481 7 53 2845 354 9 21 5 7703 7125 17 45 23 22 31 2189 325 4 1 1575 35 1155 47 19 1 1615 11 310 32 11 1592 30 101 1711 5 5935 41 2 325 4 930 124 68 9 28 6 1987 93 45 23 4062 294 14 8 1405\n1\t2 156 909 3 385 1 3293 13 92 21 40 2 8367 373 1532 230 5 194 4700 32 28 178 5 1 398 20 7 4664 17 243 3 685 7350 77 1 4280 486 3 1092 29 2 306 994 17 1 21 151 58 378 1573 1 67 77 28 4 8230 1549 3 34 7 1 4424 824 4 2 4975 4212 3 13 14 1 1706 6 2355 685 1384 5 1 129 3 1 121 4 8812 14 31 8969 35 5186 8520 93 3372 14 1 35 432 417 15 2 1 67 2480 200 127 120 3 62 4559 417 3 231 140 264 7 62 4322 3 75 641 2566 63 37 728 26 590 77 9629 3 13 2120 1 238 29 268 6 3206 3 293 363 1030 39 5 28 177 1 21 100 123 6 5 26 38 1 7925 986 2119 8589 10 9610 1 14 171 24 62 6975 3 37 87 62 807 1 18 1550 196 1495 3 741 106 10 94 4700 38 169 2 4885 6 243 6133 2318 29 984 3 55 46 10 6 373 279 116 3900\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 492 2608 267 4 1 166 462 12 16 5862 293 1456 17 1074 5 48 2467 1341 690 65 16 9 203 267 479 5937 1 506 8330 181 5 26 89 47 4 3 25 4209 176 36 66 33 229 5091 1 201 8745 10 19 4901 7 9 2234 4 4775 4 82 104 3 776 6836 14 1 569 1207 6 591 1201 7 2 346 17 892 1174\n0\t106 479 1642 155 5 1 250 5797 3 22 6514 1 8148 4 20 11 6 160 5 90 34 1 9484 790 7 9 9234 247 56 1 11 54 90 1 220 27 12 1553 30 97 385 1 3293 13 743 163 4 1 82 691 6 232 4 788 247 670 14 1316 3 837 14 1 873 461 4510 5 126 667 25 1894 15 2 55 2428 1868 3096 1 111 3 61 101 143 23 256 126 7 49 23 997 8101 9 6 36 126 5 26 78 264 32 8849 38 122 517 22 188 5 26 36 45 51 61 95 148 1362 1353 7 490 33 310 32 968 43 167 211 2933 20 56 5 90 79 539 47 5973 17 52 5 90 79 3 1056 6702 1 7 50 322 11 12 1 226 296 18 145 160 5 1861 180 1 957 28 3 149 10 46 3473 8 54 243 20 64 174 873 18 26 2175 7 1 166 2753 14 1 74 3468 646 26 1 2638 28 14 530 995 1259 374 3 23 24 79 16 1 226 290\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2003 8 337 3 159 9 141 8 57 84 4911 17 8 57 37 1328 9 18 12 610 14 154 82 203 502 42 2 1713 966 610 14 6122 510 3 4961 97 82 502 17 1 1820 15 490 3 82 484 6 11 1 67 6 46 4514 42 91 171 3 509 1948 1 7249 6 1233 17 1 344 6 900 2145 83 64 9 9200 141 139 3 64 1 2412 358 41 95 82 18 809 78 52 4 2 471 8 449 33 76 582 253 203 104 35 40 2 4474 3 1 4474 6455 3 90 81 5 7214 72 24 107 227 4 656 1 59 53 177 7 1 18 6 49 33 22 2379 29 2 9544 3 1743 7997\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7047 88 8 113 2783 50 1687 38 9 3515 2 551 4 5306 908 328 34 4 1 845 16 9 3 11 39 16 1 13 109 8 497 51 6 2 471 102 1230 176 16 2 329 94 33 3187 2 2345 77 2 9324 5871 33 22 5225 16 2 3 22 30 102 28 1304 122 7955 907 2 7120 3 1 82 196 1 1681 353 60 1912 2562 3 4 611 1 16 1 11 33 2031 15 1 8600 13 1143 34 9 88 26 9424 497 702 33 328 5 90 10 722 17 86 1265 1673 1102 662 109 1613 180 107 138 1673 7 2360 2344 502 2946 22 855 16 2 518 2804 135 17 1 465 6 11 86 2 9579 682 13 2078 279 50 85 5 117 99 9 702 10 128 153 1620 1954 18 32 1 362 2804 14 1 210 18 4 34 387 17 98 316 11 21 6 7 2 897 4 86 2487\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1501 11 4958 40 58 4748 4 2708 25 7427 1175 7 25 161 3669 2 163 4 188 24 1241 220 4958 544 253 124 7 1 17 1801 172 406 27 6 128 403 48 27 451 5 1405 125 1 1166 1 445 4 124 40 9 6 28 4 25 80 1058 17 8 12 2275 5 64 11 4958 128 40 11 9963 2574 266 2 635 35 6 2189 15 27 486 2 169 157 7 15 25 417 3 1499 17 1 838 4 2 147 887 632 1807 395 198 3245 3 25 157 1714 16 1 4120 308 805 4958 151 299 4 4554 3988 3 10 6 20 738 25 113 581 17 51 22 43 184 8652 1308 204 40 1 113 456 7 1 10 6 5040 1269 3 722 3 40 11 46 11 8 24 209 5 112 7\n1\t3963 2191 876 199 5 2 5090 11 40 39 3 6 521 5 13 2718 357 15 2 259 7 6297 65 5 925 1 5109 4 6435 11 153 90 1821 244 38 5 2963 295 28 591 184 628 49 27 1 5090 6 480 25 113 9131 2302 5962 649 122 25 326 6 8137 13 14 307 31 13 145 20 1927 3673 95 2425 34 8 63 134 6 9 12 2 3641 2776 16 1 231 1354 801 8 39 159 10 926 3 1 233 10 57 58 6568 1501 42 2 42 2 167 547 158 17 42 7087 13 49 81 22 3963 30 2488 3 479 20 39 30 4077 48 38 2 6904 16 2 42 20 2623 3 2958 48 8 173 5509 1509 6 11 31 6201 481 582 2 13 42 279 2 2551 41 2 249 6745 17 20 13 92 18 6 1274 17 300 10 130 24 2071 146 2 103 52 2 487 670 2019 25 2749 7 31 17 25 7716 6 757 200 1 2 259 6 30 3 3 7 1 4073 5331 434 81 22 8981 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 234 190 24 831 9 21 5823 14 286 174 7144 5 6747 5 90 104 11 139 660 1 300 42 73 34 257 56 53 81 1867 386 4617 139 5 7 233 42 105 91 386 247 201 7 9 2288 3 6744 135 27 228 24 340 10 43 1 2134 1655 130 853 5644 3 9 18 6 2 2313 665 5644 11 319 77 1 123 20 1122 7 53 1913 45 1 81 65 127 1228 57 57 5 33 228 24 71 929 5 209 65 15 146 6902 14 10 6 33 24 1160 286 174\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 710 1338 114 146 1348 422 2723 33 57 2 388 443 1 326 11 9 2432 3136 33 61 7 2000 49 23 88 64 2563 81 4101 1 2435 32 4700 32 132 2 13 150 467 10 271 14 237 14 49 205 6292 33 337 62 443 12 128 49 1 482 7692 2777 949 33 214 2 2700 3 165 17 34 9 1131 6 148 3 8 96 33 114 2 885 329 4 4392 10 16 13 460 271 5 1 1338 11 829 9 3215 21 11 8 99 154 8361 37 646 100 995 48 9 913 337 2086 8 241 45 8 320 2401 10 289 1 74 469 4 1 2906 4 1 136 27 12 101 3091 5 1 1908 3 25\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 20 2 91 135 10 6 20 5692 722 17 10 6 240 13 10 40 2 156 211 2184 380 2 13 7 2 280 11 6 46 2738 44 3602 13 818 6 279 1 836 45 9 18 57 209 13 10 54 20 24 71 17 30 8631 3220 13 2332\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7494 613 6 31 3919 7 21 6799 1 857 577 1 843 546 3670 1357 2106 1462 3099 3 179 7977 4934 9606 42 254 5 241 11 51 12 59 28 1392 14 1 541 1714 32 431 5 2351 2 5971 18 16 261 35 1143\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6518 6006 794 1290 1 80 7053 7 7128 2977 6 475 355 5 167 2088 5310 794 6352 25 153 118 194 17 561 6006 6 4940 1 1214 245 6006 6 3759 5 139 9949 664 5 25 1892 906 1631 1937 1085 1864 8006 65 25 814 60 2307 142 1 6893 5 1 7976 4 1403 794 6848 13 1033 32 27 12 58 364 68 8243 29 1 1009 6139 30 16 1 172 3 4 1282 1 3471 406 926 1403 12 169 2 3 2 115 13 2 7825 4 1 962 6518 6006 5110 962 6518 1403\n1\t113 7 1422 4 3 1184 1642 40 3995 204 31 2055 15 514 278 3 78 7404 1 1111 1697 3024 266 2 6723 950 35 2683 1 366 7 2 2590 5467 3 196 602 15 2 1528 1996 1343 3 2 5532 278 6 1029 15 2670 17 1817 3 6 142 1 2282 14 1 35 289 142 43 3 55 196 2 668 436 113 142 34 6 5846 8520 14 1 1996 8634 323 2 4621 5 15 154 3510 3 1 21 270 7 824 4 7233 2895 267 3 3596 34 371 77 2 1506 548 1177 3 6592 1 6328 380 43 4115 3 7917 1 21 15 7227 3 3841 685 154 3841 178 2 1529 4858 93 3045 22 1 4538 1773 3 1612 4 1 633 647 2159 45 145 20 5846 8520 9640 1773 248 65 36 1996 6594 29 984 2 9963 193 1 21 1008 2831 103 238 3 43 436 2861 978 2133 759 29 984 9 6 2 304 391 4 3560 15 120 3 55 1 1164 4115 129 2 774 1829 8044 4 1117 4918 3 9025 4858 31 496 4869\n1\t71 829 19 17 58 465 69 42 128 2 78 2107 1386 32 1 119 181 2 222 6905 29 984 14 45 33 61 253 10 65 14 33 337 5485 17 73 10 6 6018 1834 1 838 5 1 3837 714 1 319 802 49 1 358 2791 22 818 7 62 974 22 15 43 243 6476 1765 17 42 34 37 1386 5 735 77 95 63 26 22 127 358 170 81 4 2 7 3871 41 311 2436 22 1002 45 1 22 170 3 7117 15 62 486 183 126 54 23 96 235 82 68 11 33 61 39 5913 13 262 1 185 4 7018 109 69 60 721 11 19 44 4099 3297 533 180 59 107 2 156 124 15 69 27 6 1 80 1502 14 7 69 50 1245 6 154 85 8 64 25 543 8 96 4 7 13 743 5096 109 1171 3 5016 21 15 37 78 2267 10 693 2 156 8441 5 70 10 34 7 1888 3 89 31 4415 304 7 25 4339 21 57 2 346 1474 185 14 2 1040 1368 34 7 8011 2856\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5028 12 2 360 880 78 36 434 36 79 3 23 63 348 12 1242 30 8 63 365 75 81 35 83 24 78 4 2 112 16 5599 2433 4157 3 1 36 54 26 9 6 20 2 687 756 2218 3 1 885 6 105 78 16 127 81 291 5 321 43 2 103 52 3 1511 5 359 126 7614 9 2218 15 7915 29 161 18 1025 15 1115 265 3 964 2263 51 6 162 1610 38 1 4331 11 22 89 32 2417 5 1 67 270 97 1552 3 498 17 34 46 8818 73 1 6437 22 38 1549 2807 3 37 97 82 188 72 543 154 1393 1 59 2557 1329 12 1 393 4 1 131 3 11 12 4847 73 5028 12 83 1782 9 14 2 687 249 880 96 4 10 14 31 3400 29 1 5599 98 694 155 3\n1\t411 2 2 184 3813 19 1 155 16 1076 94 1297 9975 4135 1 754 6513 4 1 1076 7 1 199 3 1270 1443 285 234 392 358 3 7 147 887 285 1 362 4 448 7 72 114 20 118 38 561 4116 16 2202 1085 19 1784 8702 81 36 1 1867 4731 17 210 4 1085 112 1971 15 25 45 23 175 5 118 52 38 11 7347 8 1379 283 1 21 4926 5119 9 67 4 2 157 7 1 3877 14 553 30 2367 1791 151 16 2 5417 17 2431 135 2765 14 25 4787 379 6 93 452 17 2367 6 1 108 14 78 14 8246 397 3 198 89 273 1 3877 12 107 197 2367 1791 419 1 21 2 423 31 4776 1078 12 198 288 125 25 1 1138 868 6 93 8 24 284 1058 4947 8290 11 9 6 2 1837 135 2367 1791 12 28 4 1 700 21 460 4 34 85 3 630 4 25 124 130 26 7668 9501 12 1 226 3201 5 131 10 2 223 85 989 3 8 449 33 131 10 702\n1\t32 1 6226 35 6 242 5 564 1 5595 7 1 9273 236 84 1563 55 2 6226 11 2296 47 77 3582 788 14 27 5052 8526 3409 1 18 123 2 163 4 2094 161 1563 632 124 15 1449 3 1642 140 1 9232 32 6078 5 15 7436 223 3 17 1 18 1975 3 297 6 13 6 5 26 1136 5 2 510 6078 66 2004 26 501 3 72 230 44 6533 7 44 408 106 72 889 44 3298 3 35 6 323 20 13 659 1 182 33 191 566 2 6078 1897 15 2 2483 3 139 15 1052 77 1 683 4 898 5 566 2 3583 349 161 510 5 552 62 3 652 155 5 44 408 16 2 2305 8997 37 60 190 24 2 680 29 13 743 304 67 11 323 4240 838 5 8506 28 6 2610 7 97 1175 30 9 141 468 2655 3 39 24 299 15 1 84 1563 1792 3 5785 3 193 29 1 769 3 5038 2062 142 77 1 2341 3958 457 2 72 100 118 45 12 2 17 72 87 118 768\n1\t1065 5 836 1065 73 42 650 2 2365 18 30 1 347 11 153 24 148 1201 529 7 194 20 1065 73 42 2 509 18 5 4578 13 92 701 554 12 169 6443 3 1 1292 4 246 2 1004 67 846 5234 25 523 2185 1049 43 84 3 240 5589 1 67 618 143 56 5802 34 4 86 29 225 207 1 507 9 18 303 79 8340 13 92 18 12 128 2 53 28 5 99 5519 1359 5 1 129 4 783 35 1304 244 98 664 5 25 523 839 3 440 5 187 122 34 2329 4 888 914 295 32 2085 17 4 448 2365 789 138 3 27 6 25 604 28 2172 32 1 74 799 19 17 27 14 692 266 1 562 13 92 18 123 24 2 53 790 541 3 1123 43 514 443 3887 3 5826 211 5 64 11 93 80 4 9 12 34 650 5424 15 406 1093 258 43 4 1 13 743 514 3 1080 3245 2365 18 17 83 369 1 442 4 5535 3638 5 10 2264 116 1691 16 10 105 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2199 2 568 2372 1787 50 4 9 21 6 75 1087 10 2884 7351 57 34 4 1 260 1047 3 4 2 580 3415 10 6 2 885 306 67 553 15 39 2 103 105 78 16 50\n1\t98 8 5207 7 698 8 12 46 1475 3 10 1279 726 28 4 50 430 3648 13 7 1 67 1026 2 526 4 1170 711 3 35 2452 3 701 5 90 2 7702 19 28 4 3661 1706 4058 7 1 140 1 4 795 306 1109 6 286 58 28 122 8213 13 92 85 4859 3 11 1 40 3172 3 1 102 24 2 31 483 542 3 98 3196 585 7 31 5006 1653 3 33 390 1911 2567 205 3 9010 735 7 112 15 6184 3504 13 1929 316 3 289 2 2260 9 85 4 10 93 2980 11 3 585 24 390 13 2432 94 2432 9 18 77 1 864 4 157 3 34 42 4049 19 2566 3 1629 10 6 2 323 1462 18 11 6 747 286 304 29 1 166 1425 13 858 16 1 505 8 96 8812 114 2 2313 1614 9010 114 31 491 329 16 2 74 13 92 802 61 2211 17 1 18 114 24 42 1219 3 386 3067 13 1601 7 399 8 191 134 9 18 6 3982 4422 3 8 496 354 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 292 9 21 12 89 183 14 1 7195 4 3 183 4569 125 361 4466 656 23 70 1 2115 9 1719 674 8152 137 6 39 1485 14 1 87 109 2285 3 1 1428 6 2690 17 814 73 1 861 6 37 3391 2096 10 1 398 85 86 19 73 8 4810 468 100 64 2 138 6236 3957 4798 108 100 343 37 4817\n1\t4 767 52 68 767 93 9272 140 85 1031 5080 32 6 84 17 10 963 196 161 17 1207 361 195 207 378 4 253 6293 2717 2304 3 187 122 1 3035 5 2783 660 235 23 20 59 6 132 2 84 353 17 1 804 1167 16 25 1537 14 2 6138 1537 9013 195 11 6 1145 1724 29 86 2074 122 14 2 766 1136 5 31 16 3 55 361 7 1 431 183 5 639 3 90 1031 66 22 15 358 304 415 260 32 3173 2541 40 5 2711 535 3299 197 2934 3 8 241 10 6 11 3091 126 15 25 7676 4 448 1 344 4 1 201 1300 39 8594 1599 2611 3 816 2498 361 46 8 112 2579 2106 480 101 2 2958 145 37 1096 33 165 3996 4 11 215 633 2046 361 1608 45 23 70 5 99 1 1219 1131 361 1479 851 16 60 40 1619 140 1 1450 172 77 31 483 6256 3 6701 633 48 2 84 1479 23 376 2748 16 253 8 335 154 2541 1 1688 4887 4 4 3 4 257\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 194 29 399 23 24 107 49 1599 2006 98 925 9 461 10 76 20 59 90 23 7231 116 522 19 1 4674 14 144 173 2855 55 90 2 53 17 93 9988 23 15 1 37 404 211 529 7 110 1 1817 4 1 18 6 6515 276 1634 440 5 634 36 27 6 28 898 4 31 2099 1 2392 11 24 71 1459 65 32 1 1571 83 176 1535 1497 1 185 106 205 4 126 652 62 417 385 3 33 645 2 5233 10 39 153 176 48 63 26 52 23 2942 351 43 2128 9 6 48 23 63 5338 3823 256 43 52 3 99 1 1766 86 105 53 5\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2929 105 97 172 4 2587 9187 4139 347 218 429 398 40 475 71 8096 1 1122 2 222 32 1 821 2768 258 7 1 74 67 4 1 3607 6 7779 45 8729 14 42 2 249 158 1 212 4 66 6 3 152 46 501 39 20 14 84 14 1 1158 28 4 1638 4625 4148 3 28 4 2550 14 2593 13 3371 52 599 85 3 14 2 2322 4227 34 1 8583 7 1 215 67 4 1 9717 429 88 24 71 5802 3 258 1 7242 5760 774 1 46 3158 13 9008 1 212 201 123 109 7 9 5629 901 4 3670 51 22 2 156 2411 772 17 1 1758 1190 4 9225 6 109 9818 2740 28 4 1 80 1577 168 2027 31 5404 4 1 429 30 86 5849 35 6 242 5 86 6967 19 13 273 5 284 1 84\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3458 1237 369 79 357 15 2 3692 2 493 4 2550 367 136 133 9 3515 3378 389 18 57 5 24 71 2 23 1374 2102 8 2398 23 339 90 1 210 18 15 9 141 2109 89 2 53 991 29 11 3588 1 363 2140 4 611 4878 1 6 36 2 4 4 2126 2632 32 154 1493 203 18 117 1001 1 1041 145 22 377 5 26 7 9628 286 546 4 10 2166 29 1 90 10 291 36 479 377 5 26 7 298 41 750 2727 10 151 58 1821 1 7348 160 200 848 81 213 1 225 222 3473 29 1 769 49 33 442 3 27 1 315 259 3 7348 22 205 229 47 4 3148 33 61 19 62 226 1146 3 29 1 978\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74 2869 11 43 21 1350 8234 137 1685 30 321 5 118 69 39 123 20 8 497 49 6121 76 467 3358 3914 45 23 22 898 8001 19 4194 2434 11 123 20 4479 23 32 246 2 547 2876 13 40 43 67 66 88 24 15 43 138 2254 17 10 6 20 16 1632 34 277 69 3 5685 69 22 29 264 985 7 1 471 17 9 7354 6 20 5 9539 51 88 24 71 2 138 1541 3 1484 4 62 2628 1102 22 32 1 13 4 1 21 6 1319 8 96 39 2460 2117 140 9 135 24 256 65 2 53 868 17 10 123 20 5507 5 9 135 144 6 51 2 788 7 144 6 1 797 788 941 20 19 9260 6586 49 27 6 1 28 35 6 706 115 13 7264 6 1 2084 2278 4 1 135 17 27 6 7 25 23 495 438 1156 9 135\n0\t1 1048 804 6 53 69 7872 1398 81 35 564 5 7240 966 69 426 4 2 8954 19 1 1706 13 92 177 11 151 10 34 735 1251 6 1 900 4 1 250 807 55 118 11 23 321 5 359 2 402 45 23 175 5 2711 69 176 75 223 10 472 5 1236 1 3 11 12 73 2 231 1910 2242 10 3335 13 5676 1 635 341 5 2 3556 1 5077 14 193 479 1 635 1141 197 2 179 16 20 1204 2774 41 2 6826 41 2 536 75 127 81 1180 5 875 2191 3 16 2 4403 6 5999 369 818 4029 41 13 777 56 2 1152 69 9 88 24 71 37 78 52 45 10 57 71 428 685 1 250 120 1 952 4 1205 356 33 54 24 965 5 70 30 16 37 13 7784 68 458 20 2 91 8 336 1 222 29 1 182 106 154 1398 7 569 19 1 429 69 154 85 8 256 47 2135 19 1 3 64 257 4532 1283 3937 7 32 33 61 1704 8 96 4 11 1361\n1\t147 63 149 305 136 972 69 3 237 1914 557 132 14 9 21 69 22 1677 5 26 15 34 1 9208 38 1 4590 883 551 4 3 796 7 9936 1 2767 783 3 9 54 291 5 26 31 631 1412 16 1042 19 1771 2627 10 276 36 2 7828 1729 572 73 10 6 2 7828 1729 2129 17 541 5119 9 6 128 2 397 11 152 40 146 5044 5 867 3 40 877 4 2392 1552 5 359 31 410 6539 45 162 2684 76 1956 786 1064 355 1 1077 1732 43 232 4 704 10 26 2 15 82 265 41 14 2 8 83 118 45 1926 81 1460 5 284 48 72 596 24 5 134 38 62 17 45 23 22 765 9 3 82 4168 786 186 199 2556 72 22 2709 16 116 7898 9466 15 257 3188 1019 19 7500 3 69 187 199 48 72 34 11 1113 45 23 22 765 9 3 24 20 107 9 158 16 42 1042 37 23 190 64 48 137 4 199 35 24 107 10 22 648 1395 23 76 20 26\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 292 294 254 6 50 604 755 430 108 17 8 24 5 134 613 67 6 50 604 358 430 108 8 134 9 73 1 1 2026 3 1 238 50 430 185 4 1 18 6 49 2413 3672 3130 142 1 29 1 401 4 1 29 1 8768 6828 19 5 2 3355 15 3647 3 224 1 1310 140 2 3 475 2391 19 25 155 19 1 254 8509 751 10 29 16 883 146 7 2972 147 427 408 3324 95 1389 41 708 786 230 1126 5 4017 59 2972 17 8 118 106 23 63 149 95 18 117 45 23 288 5111 16 2 18 3 173 149 10 786 5 437 1479 23 3 53\n0\t37 1319 8 339 64 11 5567 601 4 66 3269 1 8864 5 112 1 7610 3 6091 60 289 5 44 1 189 44 3 66 5552 44 5 256 44 6510 5526 845 44 221 794 60 1 59 3757 5428 7 44 5812 30 773 1803 129 7 9 1260 39 784 7654 243 68 39 3797 3 2 222 13 252 1260 80 8541 1082 652 5 157 1 733 189 1803 3 62 733 6 2336 19 7999 1451 3 1803 6 4 1681 9502 11 44 2717 3 2438 474 16 508 76 100 1959 44 5 139 1722 3 3074 276 65 5 849 193 3814 9 3 7511 5 333 44 221 1 6833 224 27 380 44 260 29 1 477 4 1 131 301 1 5541 189 949 3 7045 34 5109 4 2239 1 1109 4 62 733 14 180 1991 1803 6 93 1805 5 652 5 157 1 893 1560 189 1 951 883 5 8270 95 32 1 633 13 2444 8 173 365 144 261 35 323 36 1 821 3074 88 36 194 1013 10 554 94 1 272 8 6043 10 1294\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2360 776 1 164 35 2336 1 3259 6 2035 385 15 25 379 30 25 25 4070 217 22 3639 6584 2992 172 1372 2 6653 7 3522 217 2 536 7 2360 2612 2495 5 7576 62 701 217 2635 1 13 252 6 1 330 85 11 1209 6669 217 24 1066 2193 246 2941 248 9 6 93 1 74 4 277 124 5 865 1209 6669 372 871 217 22 1 1 119 6 2 46 4812 186 19 1 1489 441 1 644 4707 1362 865 101 1209 278 14 102 46 264 81 608 1 1086 635 217 1 1360 2678 14 10 5655 1209 6669 153 87 2 46 53 329 7 463 1538 292 25 186 19 2822 6 2715 6813 10 6 14 5 24 1 1338 5225 16 239 1885 15 126 1727 264 2389 217 246 264 151 2 46 1822 16 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1311 4816 16 169 43 387 8 57 5 64 9 108 8 24 179 9 54 26 2 53 111 16 1 2342 14 5 6455 25 632 3 1154 5 8115 1754 8 24 93 179 9 54 26 2 53 18 5 3 8 179 8 76 335 133 3951 8 12 6231 1 18 12 2 306 2629 5 836 1 312 40 688 18 844 111 105 78 5 26 3 676 307 35 1148 9 18 6 303 15 1418 11 27 88 87 10 828 8 76 20 90 8691 704 23 130 64 9 18 41 1265 3878 22 45 317 765 127 7667 11 23 24 459 107 194 41 11 317 1927 64 10 69 17 26 3023 16 46 91 1452\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 16 1469 891 15 25 1595 122 94 8008 4880 8 1595 307 7 11 18 94 36 122 49 27 6 411 3 20 2648 7 109 9 6 25 113 852 9 5 26 11 50 142 1 212 290 1469 891 1510 2 1316 360 67 9039 30 43 4 1 1340 267 180 107 7 169 43 290 336 110\n1\t1 4879 1277 35 6 3446 5 1584 122 2563 1034 1 15 3383 7 19 25 76 582 29 162 5 8477 25 27 762 2 167 4762 9572 35 693 25 352 5 1291 44 157 4 13 743 7619 3061 589 15 84 2653 491 478 5853 2 2762 3168 3 1195 453 32 3 1072 794 109 14 9933 14 112 1238 6912 1238 6 28 16 596 4 2119 9706 385 1 456 4 34 780 9335 7 9 21 3 22 997 30 206 13 3027 611 9 6 1 232 4 901 11 6 7095 5 24 31 5192 393 16 34 4525 3 273 1509 167 78 307 7 9 21 2180 1858 906 51 6 2 514 427 189 2432 3 1073 3 7 86 570 2103 1238 6912 1238 4360 7 2 5403 570 1146 3 22 3746 7 1112 14 2 3523 276 778 8834 94 34 277 24 3126 4969 285 1 2 8394 5052 2 19 954 195 4643 62 1248 529 183 27 411 13 9 21 228 20 26 2 5527 4 2360 2344 15 86 238 3 3489 6932 42 128 279 3078 689\n1\t2 800 35 6 160 10 181 1 234 6 101 30 2 568 1198 3 34 4 1 1 800 40 1172 47 24 100 4463 41 45 1 87 1110 33 209 155 14 7 7239 1 800 5820 1 4145 6333 5 582 1 234 4 448 13 1118 63 8 134 82 98 144 6 9 21 3814 457 2 9 6 2 56 53 103 21 11 6 301 142 1 571 14 2422 918 86 2 1325 885 288 21 395 234 10 270 334 40 5869 6559 3 1184 11 1506 57 79 160 29 110 1 706 672 201 15 14 3075 4 1 113 7162 453 180 117 3 2452 14 9706 1312 6 74 1381 84 6 1 263 66 153 771 224 5 86 2996 712 43 148 5217 20 1797 455 7 1139 124 1491 834 779 86 34 56 109 7076 13 6450 10 1453 43 4 1 2126 139 19 105 1896 17 29 1 166 85 86 6 1589 9760 13 614 23 70 1 680 64 476 86 28 4 1 138 1139 124 32 3 6 160 19 50 327 1197 1307 16\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 84 7655 7 2 84 3767 2414 18 370 19 25 645 13 6312 258 49 1 7655 7 1193 22 3701 3 346 560 144 3945 1196 31 918 16 244 14 3056 3 14 211 14 1218 3 3701 6 154 222 25 45 2 4312 52 13 252 6 1100 2414 102 161 6863 7292 16 2 249 293 17 128 173 820 28 174 94 34 127 5775 13 777 2 4621 5 99 127 102 1351 29 239 1885 62 168 371 90 9 21 31 1409 2758 8 258 381 1 3707 1889 1361 3 45 317 2 325 4 463 3945 41 468 335 194 4095 13 659 698 468 335 1 212 108 115 13 2682 256 2 103 7 116\n1\t19 1 111 827 1 129 262 30 6 2 607 1538 17 52 68 8 12 1247 160 1107 245 9 85 2394 181 5 24 428 2 129 11 323 2589 25 1955 1031 25 1984 129 7 235 2684 41 25 2528 206 7 368 2526 9 85 1 129 6 2 4771 436 52 6728 9 85 1 129 557 7 1 471 740 1 33 149 730 1356 27 6 55 52 68 66 6 314 5 84 1411 1380 2880 6765 6 2 7173 372 5 346 7708 17 1 233 11 27 6 32 174 1592 6 2954 1044 3 2658 16 257 13 724 48 38 48 38 4387 8 338 205 4 126 5 1 4295 11 33 22 314 7 1 5754 8 591 338 386 17 1535 6 1515 15 1 6702 4 7957 11 12 37 396 1012 7 124 32 2297 172 1924 32 5481 2981 4 13 1627 48 114 8 386 300 25 113 826 267 220 5387 125 364 9970 68 5769 364 68 364 929 68 346 85 41 368 1905 2394 40 475 214 2 709 672 11 557 7 1 7220\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 56 338 9 1540 55 193 10 247 235 36 95 4 1 1402 10 128 1 11 382 2943 2300 3358 8 57 71 283 2 163 4 16 9 18 3 220 8 12 56 77 1 2943 2300 1402 8 57 56 298 1691 16 9 18 3 33 80 373 2006 137 4911 167 78 34 4 1 120 61 610 75 8 126 32 765 1 6028 8 192 56 749 11 8 159 9 108 34 4 1 171 3 1624 56 1171 36 33 1171 36 7 1 347 1199 117 220 8 159 9 18 8 24 405 5 284 154 625 2943 2300 347 51 6 47 939 34 4 1 171 3 1624 56 165 77 62 120 3 10 373 1049 49 1 3246 9 18 19 1 184 1250 10 373 384 36 34 4 1 171 3 1624 61 56 7 1 11 1 120 61 7 8 80 373 187 9 18 2 394 47 4 1731\n1\t338 5 64 48 426 4 164 1777 1220 3 39 144 25 585 1050 122 5 26 132 2 950 3 280 174 240 111 4 253 1 21 54 24 71 5 7317 19 9866 3 19 7727 15 15 3757 340 5 1 102 413 3 15 171 4 696 372 450 1 111 7 66 1 21 152 12 89 384 5 79 5 26 364 240 68 463 4 127 6253 13 499 54 26 1989 245 5 187 1 1418 11 8 5085 1 21 292 8 190 20 24 4786 15 4247 4 1 250 1538 51 6 58 9019 11 27 262 10 15 25 1408 3 1 21 14 2 212 6 2 53 665 4 2 9349 5629 3 10 6 2 53 158 17 28 11 88 24 71 2 138 461 13 2699 2 5233 1 8022 66 6 620 712 285 1 4144 392 289 1 1 189 1 102 4144 2063 11 114 20 209 77 3052 318 94 1 2251 395 12 1 896 8 96 11 12 5648 5 1 4 2251 392 190 26 17 10 6 832 5 1876 15 16 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5159 5185 2186 9571 4 242 5 2373 2 1471 718 2018 34 1 119 6397 129 529 4 3 3 1 17 2896 4 4194 2 263 41 355 31 1807 7 34 1 17 1391 2213 4 7752 5 101 77 218 3 1708 1 799 4 517 317 475 2 9388 59 5 149 11 48 271 65 255 224 884 3 7 2 16 8054 8250 368 40 1527 19 3 303 23 3698 116 3754 116 6248 3 116 5290 6 2 5971 16 1554 7 21 416 5 1600 1 438 3 11 424 16 6914 1 1611 11 191 26 5 2373 3 1962 5203 7 3853 45 116 1946 41 40 100 71 1057 33 173 348 23 48 23 321 5 6264 16 9 5 2645 860 6 2429 17 237 32\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1739 1 233 11 50 1307 4 430 18 1350 4347 9135 9 18 152 6 138 68 1 347 341 1 249 9251 193 9 6 31 806 1078 1 1 6243 1673 1 121 3 34 85 604 28 1 265 69 90 10 1 1719 4 3535 8 219 1 249 9251 2 156 172 989 3 338 1 67 3 8 57 50 1750 38 9 49 8 165 2 998 4 110 10 4104 79 10 6 237 138 68 8 117 5332 110 10 418 673 3 40 2 163 4 11 4160 65 1 4281 1 9693 178 6 2 382 30 34 907 3 8 219 10 38 910 268 39 16 1 1190 10 5 1 212 135 93 1 21 153 1857 2 163 4 840 2887 40 39 227 3 10 6 30 58 907 2 6535 11 8 812 7 1058 326 203 703 39 99 1027\n1\t0 0 0 0 0 0 0 0 0 0 0 2 38 264 81 7 19 1 8700 3175 4 1 2463 10 1026 48 33 22 403 3 300 52 48 33 22 20 6306 1 6 46 23 24 5 47 183 23 64 13 2409 23 162 6 2267 3 23 70 2 103 2048 125 1333 1 6417 73 86 1 1646 4 1 21 3 1 56 327 1055 1087 1482 66 22 327 7 9 163 4 81 76 134 86 86 20 11 96 86 52 314 16 1 43 56 211 4417 161 287 4810 86 1 80 7 21 18 66 6 96 1333 1 65 7 116 11 151 10 2 222 1182 148 14 72 34 118 104 63 1364 125 864 49 10 255 5 403 1415 86 78 527 7 1 148 13 614 23 2711 1 18 23 63 357 5 176 29 116 6589 3 33 22 36 1 6224 7 1 2398 2 163 4 126 47 81 536 15 2 327 1 18 8 230 86 52 240 5 176 29 50 13 724 300 23 64 9 18 19 116 74\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 28 4 116 3313 3 207 2 148 2838 4 9 135 51 22 29 225 102 1830 7 66 364 9347 1063 54 24 1253 43 961 684 7809 33 20 59 4479 1 410 490 17 1337 7 43 3917 29 1 166 290 51 22 2 156 2103 591 774 1 769 17 33 22 1952 10 12 279 1 2551 3 10 12 501 6141 13 45 23 70 1 2388 99 1 3663 106 1 206 5488 23 75 5 90 72 1417 44 8837 3 10 12 398 85 72 76 90 10 1 326 183 72 1439 5 2089 194 73 9 6 28 11 373 196 138 15 2 331 366 7 1 5 369 1 8274\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 721 1000 16 9 18 5 8451 98 8 3626 16 10 5 5611 3 49 10 114 8 39 1407 1057 9218 5884 10 88 815 26 9 573 3 4509 11 8 57 39 1130 2 342 4 719 19 39 1860 8146 8 57 2845 11 2300 339 815 24 89 9 91 4 2 4285 3 2010 114 8 117 1621 50 83 1460 15 9 4941 2300 17 1 18 12 775 2878 775 4278 3 39 775 8 173 241 2 263 9 91 117 165 10 57 2 1519 3878 5 152 87 146 15 1 3486 395 736 6 105 184 16 9 18 5 55 7259 3 10 128 143 139 86 39 106 1 82 2381 165 1 312 11 10 247 1 5867 6116 73 241 503 45 10 165 95 527 420 24 50 183 8487 8381\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28 4 1 700 21 8 24 107 9 300 183 3958 66 6 93 107 518 29 366 818 7 1 8 36 1 312 4 1 1379 1126 76 4 164 3 257 7335 421 85 576 30 578 3 7834 22 7095 5 2197 3 31 8 87 36 1 714 17 2 184 1193 93 1 4474 3968 20 26 612 805 130 13 659 1 226 178 7 1 9989 6 1172 155 5 889 578 316 30 958 49 27 348 122 11 3901 57 459 165 25 859 3 118 275 422 54 6455 1 3 33 102 371 889 7834 49 7834 348 578 1 306 164 6 1010 37 10 6 674 9989 93 70 1 306 1799 38 1 359 31 1128 19 122 29 1 85 3 27 40 37 144 297 6 128 144 958 3901 83 87 235 94 1 1387 6 50 1003 1193 94 1 8061\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 1447 176 29 1 733 4 2 625 435 7 3 2 625 532 7 3353 371 30 2 9754 1385 79 4 7 742 85 14 8083 30 1490 7859 3 1215\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5159 313 21 5449 1 2146 7 1 486 4 2 1541 4 20 37 2116 81 7 1 3368 7460 1195 1177 3 523 385 15 514 505 258 1 453 30 3 2362 9 21 12 89 7 1 166 349 14 1 496 1134 428 3 470 30 776 1 1428 4 1 238 190 20 26 14 9735 14 11 7 2868 3522 3 1 120 190 291 5 26 138 15 239 82 7 32 17 1 923 1830 4 1 120 22 14 3965 3 3033 3 62 584 14 14 95 4 137 7 16 137 902 35 3281 9 6 2 191 64 135 896 596 4 1290 3 294 8482 76 36 9 2803\n0\t9201 105 78 7671 105 78 2411 5 2 441 105 78 439 120 669 33 405 5 3882 709 17 8 59 405 5 105 78 4 3577 1152 5 2600 28 4 8058 584 32 36 476 2670 6094 19 2 91 7382 3 15 163 4 8 83 96 9 88 359 2 583 4 681 16 52 98 764 1452 2879 6 9294 17 130 26 1232 651 83 118 75 5 1720 2 1174 344 4 1 201 6 55 6897 6 56 565 1152 11 1 5892 6 20 828 59 822 7 9 534 424 4 611 638 35 271 831 1768 224 457 25 952 15 490 17 29 225 359 25 2576 29 5037 145 128 1140 5 64 122 7 2 177 36 490 17 1096 11 8 57 146 5 99 7 212 37 1479 23 9032 9032 16 849 8 187 9 358 460 5 9 54 187 52 16 849 17 11 54 2264 570 868 5 389 108 1 344 6 37 573 11 8 5848 36 5 2442 194 17 51 6 58 2442 2150 98 755 737 3 8 96 11 54 26 105\n0\t397 28 3966 75 2 206 63 90 37 97 6457 3283 106 61 1 873 9041 3 3283 20 19 1 115 13 743 873 493 4 2550 152 1309 47 1767 29 43 4 1 3283 60 219 8469 183 44 3888 7 2 406 3749 60 1113 2 206 253 2 18 7 38 1 296 2886 392 712 4794 3923 171 14 5479 1536 3 14 1 527 830 6833 1 9302 633 466 7 2 1165 1156 1 3 9640 2 4529 300 43 81 7 228 20 853 11 1 12 1 41 3082 1 1213 1215 5810 17 7 33 54 20 241 62 671 41 26 1094 7 1 67 3 1667 26 13 4 2 12 1370 16 261 1100 15 873 3283 697 41 873 3 11 12 1 3356 4 1 1540 368 6 491 7 86 793 4 21 6799 33 3270 70 1 184 319 188 260 136 3851 1 1733 11 56 8284 2 124 8397 1328 8 179 218 226 12 1 4776 4 75 91 31 1286 53 21 19 2888 88 1142 4 2 6 8397 138 3 527 29 1 166 5623\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 320 49 8 12 681 3 50 1007 179 10 12 2 1998 1254 49 1 3 5387 544 8 24 5 1023 9 18 76 90 261 3 307 3364 73 10 6 274 5 307 3 1 1387 6 10 6 211 14 898 14 10 6 8 354 9 5 261 35 1143 1280 93 328 1 1398 3 1 3555 486 4 1 45 145 3013 3101 114 11 18 2027 2 1398 11 271 140 254 268 15 1562 600 966 49 8 12 161 227 8 1150 34 4 127 104 689 73 12 31 2973 462 285 11 1592 10 12 93 7085 14 1170 3101 93 89 797 234 993 2 46 170 3360 1423 12 174 1254 11 3691 15 1 1170 157 4 2 170 1368\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 96 11 80 4 1 2104 35 24 5189 708 19 9 18 83 365 75 5 99 2 18 2633 24 103 356 4 1239 5 2 18 23 321 5 365 1 4295 5 66 297 7 1 21 557 1413 661 5426 84 2331 1453 8 83 467 84 1167 4 120 3 9769 17 33 291 5 5426 931 11 22 3461 1697 41 3461 9 6 2 1546 108 86 1212 1936 7 86 6788 1491 5 26 1852 15 1070 1 67 779 1 120 22 641 7 9 108 10 6 2 1325 829 18 11 151 1 80 4 8012 423 442 110 1 234 42 274 7 54 26 1928 3 20 2786 234 106 45 23 24 10 23 24 5 10 195 3 55 45 23 59 96 23 24 592 13 6714 81 1163 83 365 11 7477 1342 247 56 7477 14 81 365 11 3277 13 252 18 1605 274 1 2096\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1233 86 20 1 113 21 180 117 107 17 29 1 166 85 180 71 446 5 694 3 99 10 67 427 12 167 489 3 285 1 74 185 4 1 74 386 67 8 3307 48 1 898 8 12 133 17 29 1 166 85 10 12 37 489 8 336 10 772 1308 34 1 3293 13 872 1071 31 918 16 25 280 7 9 18 1 59 177 11 369 122 224 12 350 111 140 27 2165 25 810 442 13 5944 1 21 12 167 17 45 116 94 772 1308 3 23 64 10 7 9085 2391 139 30 110\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 84 108 3 22 3454 1 759 22 4092 1 15 2 933 798 16 1 22 9612 14 16 1 1139 1 1484 189 1804 40 390 31 4653 1 2281 15 1 1643 4 1 6 4290 3 9331 8 354 5 64 1 5755 269 324 41 29 225 1 269 3324 204 7 4302 72 24 59 1 269 2614 292 1 21 12 1463 7 86 215 1042 29 1 599 4 1452 45 5887 99 93 1 1091 10 12 6344 32 1 269 599 17 42 1156 4 154 6110 5 234 392 2795 3 4 34 1 168 189 706 81 3 62 3850\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 261 1374 106 8 63 64 41 9417 1 2386 8 36 38 1022 843 767 7 1 73 8 54 1288 5 64 126 3 204 7 3512 51 495 26 620 19 2229 786 352 437 8 2942 64 1 1022 843 767 8606 8 459 24 107 431 843 3 431 4423 19 17 8 339 149 52 767 4 1022 5841 6 51 300 2 5272 106 8 63 64 1 73 180 284 43 708 7 32 3512 3 51 61 81 66 57 459 107 1 1022 843 767 55 193 33 617 71 620 29 249 7 8 192 749 38 154 1799 8 63 5338 1359\n0\t0 0 0 0 0 0 170 287 2440 32 1 11 60 6 2 370 655 2 231 2247 4 31 3732 4 3 643 16 101 461 664 5 44 576 2794 30 3012 60 4411 1 7189 3 848 1 413 60 1424 7 112 15 2 232 996 44 157 784 5 186 2 473 16 1 138 49 60 6 5323 3 44 2150 6 643 30 2 1301 4 316 30 127 2045 3929 1 287 1843 5 44 1330 1175 3 5135 1489 19 1 1869 5 1 305 13 6298 792 15 331 941 30 2088 35 794 2615 60 6 2 1 8700 185 6 49 1 443 4705 1138 1473 189 44 1 567 3352 44 12 2 1631 424 906 20 2 60 6 1674 2 46 627 13 858 2 158 1240 54 24 71 138 45 129 56 12 2 633 15 44 893 2 84 222 4 688 14 237 14 5725 3059 3 813 2092 3137 9 28 6 254 5 6 463 2801 41 533 1 158 66 1008 2 1551 1234 4 2270 5941 7418 794 3 2604 7734 794 22 53 607\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3392 4 9 21 515 153 118 235 38 135 8 96 1 19 9 1480 12 3353 65 3 3546 15 2 73 154 107 12 463 105 534 41 57 1 1053 5015 68 1 115 13 92 67 12 1853 1 120 61 46 28 16 275 5 24 367 11 9 21 12 89 16 596 3 20 21 3760 11 275 6 9877 62 1537 2887 12 229 1 58 325 7 9 234 1143 9 108 55 116 319 164 5214 9 5603 5 139 77 2 8600 3 309 2 156 1191 153 187 23 1 839 5 787 38 359 116 326 1614 3 45 42 372 98 23 191 26\n0\t2 3277 13 92 1278 191 24 2 163 4 73 9 717 2272 5 80 4 1 607 807 35 266 1 569 2643 6 1186 68 80 4 1 13 92 1048 7354 6 11 9512 3 102 82 1086 1433 624 1944 30 3 2817 22 29 9628 33 1555 794 62 1465 2 3630 11 6 3 138 68 1 3630 19 148 6962 954 804 52 1202 68 5243 372 7316 1047 77 1 3630 3 792 5 186 125 500 29 225 11 111 475 196 2 6595 32 44 221 3157 37 1 102 63 24 2 3054 1361 607 278 6 1 59 53 177 38 7875 113 3 44 112 178 15 6 4807 37 797 3 9687 11 10 153 1179 15 95 4 1 82 300 10 12 47 5 2 53 206 3 13 92 4992 892 67 6 1463 7 2 251 4 5801 3139 4 447 3 239 30 2 383 4 2 7316 7 2 2430 9924 38 350 4 412 85 6 1019 4304 15 2 6426 7 44 9201 20 2 53 895 899 13 3204 805 48 87 8 145 59 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 34 1 1886 124 36 218 9169 3 7 11 22 10 6 2065 11 9 28 6 37 13 677 6 58 447 7 194 17 447 6 179 2787 642 1 312 11 10 190 729 48 508 96 38 110 1 374 87 20 198 70 385 15 62 4192 17 1070 1 1007 41 1 374 22 107 14 198 260 41 1989 3 1 1007 22 20 107 14 13 499 1819 15 75 28 282 123 2 2244 1689 66 88 24 466 5 148 183 5018 11 60 12 5790 13 92 18 6 232 4 1929 4 9030 290 28 635 2080 174 635 48 3241 1377 60 60 666 60 6 403 162 5 321 3241 7130 60\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 508 2230 124 16 1 4984 5585 1354 11 209 7 15 4 7197 43 865 8562 363 1093 508 865 6798 6255 3 128 508 865 205 361 16 13 3003 4826 11 9 21 12 29 1519 3188 17 42 2050 631 11 9 12 229 1160 16 45 20 7272 364 68 656 156 748 22 2 604 4 168 22 383 421 1504 412 3 80 363 291 3 13 777 1370 5 836 20 37 78 73 10 6 775 4454 775 3370 3 5913 17 73 97 4 199 24 71 1068 1 6230 4 9 397 16 169 43 85 3 57 298 1750 16 9 21 480 86 2831 8107 13 4 199 35 3114 7 9 18 49 10 12 1868 9043 24 5187 1 4 137 3340 4 30\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 112 5458 3 4429 874 1366 4500 37 8 909 162 386 4 32 147 1139 572 4 1 8 497 23 88 134 8 12 2 103 222 1558 23 24 360 847 3 29 74 48 181 36 2 425 471 2 67 38 332 162 17 2 2839 7 6360 1 1804 83 2369 1257 759 41 55 771 361 2 580 2836 1 21 40 31 16 3585 30 2385 2 5262 1077 30 3 227 238 168 5 1498 10 5 2 1461 2426 45 1 21 1350 54 24 39 2716 15 4932 24 2 1719 675 9 6 20 2 84 158 17 10 6 53 1033 16 346 2778 8 54 354 9 21 5 2752 73 10 40 86 683 7 1 260 334 3 86 1 59 177 47 51 260 195 11 213 2973 5 346 2778 20 573 17 88 24 71 78 828 46 167 2946 1815\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 360 18 15 2 1816 1269 67 3 1 8357 4 1615 5197 3 1 599 833 4 835 731 7 157 90 9 2 46 108 83 369 1 4 1 234 23 32 283 476 2608 40 360 529 3 8 560 29 1 233 11 267 6 100 73 171 36 2608 90 160 32 623 5 686 2126 176 9156 7802 84 18 34\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3089 107 9 18 1882 15 50 2916 35 112 110 9 28 3753 5 26 2 1280 1 113 2519 4099 6 1768 666 1 2523 5 5365 3372 14 1 8 93 36 1 4529 1592 2588 3 1 2523 6 2 84 6165 32 1 687 27 440 5 875 3879 17 1082 5 2321 25 112 16 1 44 6 20 4914 5 1 215 17 3262 2019 6 6687 17 196 10 155 32 1 5 1 50 59 3731 6 11 10 6 20 620 52 3 181 5 26 202 1258 5 5338 3037 2965 41 76 357 9 28 7587\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 7 50 1062 6 28 4 1 113 238 104 4 1 10 20 59 1008 2 84 201 17 6 93 5646 15 1305 3 8286 11 22 128 1502 1938 1 67 6 38 2 3004 101 30 25 711 5 352 2843 65 1 1950 1656 7 2 346 569 3 48 629 49 8400 418 605 3320 4 25 3887 3 432 14 91 14 1 3728 27 12 2490 5 70 3996 2562 42 84 283 8400 309 421 3 3259 5548 205 1857 84 1594 14 1 5763 2479 4 1 102 976 2682 289 148 18 376 4746 7 9 135 8 83 96 9882 1426 6 19 388 17 10 2171 289 65 19 2229 42 2 84 739 16 559 35 36 502\n0\t5 503 14 962 6 2 46 4499 21 488 7 50 1520 20 34 11 4730 41 3 286 2176 174 2843 2 2294 28 9 387 11 7153 1 67 4 2 170 282 11 196 5279 30 1011 510 3 498 421 44 221 1499 776 1018 8 191 920 276 169 1053 6722 266 1 2906 35 196 6537 30 294 73 25 975 2813 1241 220 60 2006 44 147 29 74 1 2906 153 241 10 17 49 823 6 2144 15 86 5631 6400 2813 432 52 6 20 59 46 42 93 31 509 2814 204 3 206 57 31 1089 1617 5 90 2 2605 739 331 4 3 2565 3 286 1 1122 6 2 5963 3 790 589 670 256 23 5 1 226 2290 269 2735 43 3971 2103 5087 46 2212 3 236 169 2 163 4 829 633 1349 3 1 1409 551 4 445 6 58 148 1335 220 776 459 2012 183 11 27 40 227 2407 5 90 65 16 2 7 1686 9 6 39 31 489 158 182 4 471 82 1827 218 22 218 3 1 3 33 4206 14\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 668 267 130 1142 2013 1760 794 988 153 773 2 3 1403 3325 794 9832 153 773 2 168 15 126 371 22 46 501 781 75 78 860 63 734 5 2 595 6425 994 1352 735 7 112 105 6 31 6410 4 25 98 3 958 1293 3341 15 2 170 2833 282 6 1760 407 4710 25 7927 14 113 2099 3 51 6 2 4 323 211 2131 3093 96 1 2875 270 3093 96 2025 4094 2 5 488 6838 165 7 2 103 72 1459 65 2 103 2 1517 837 141 39 1 177 16 7782 142 1 7692 4 2 937 234 392\n1\t204 3806 224 5 69 6806 224 5 8088 106 81 5 6741 5 149 138 1390 216 68 7 1 7189 1394 6806 2 4 5678 6230 69 20 4 105 97 2930 37 1 1854 4 1 3180 4 147 887 707 101 105 5 1243 140 3 4 246 81 2460 7 6 595 13 724 26 6038 77 517 7480 1504 6 2 2418 4 2390 6078 930 73 8 1064 9 5 26 1 113 21 4 13 409 10 266 19 1 2258 4 1 234 106 3 22 9784 730 15 2421 29 1565 9922 600 3 1684 5143 409 7 29 246 2488 7 25 600 19 2 3 1510 1 382 427 1786 45 8 88 4535 10 4487 102 600 300 277 4 127 2 326 1786 409 17 6806 1 4 1 1201 14 29 1 1512 4 1305 1804 600 600 599 1793 3 4537 2777 6274 600 2 234 3157 40 100 587 409 9 6 2 46 2762 178 66 151 7480 1504 2 46 1201 21 600 2746 15 1 233 10 1008 1 570 412 1635 4 2574 9236 7243 14 1 2547 161\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9307 2011 196 44 74 2192 3197 993 280 3 196 13 2044 2 53 3587 9 21 6 2 109 1171 548 13 3371 2 3287 833 11 54 26 2494 2 1519 268 13 659 1 958 69 1438 282 8389 1119 287 13 84 3 45 60 405 2339 229 88 24 881 19 13 4098 52 3 138 124 17 1869 5 44 115 13 78 419 65 770 16 7411 463 111 60 6 13 3 2316 11 86 299 5 64 44 7 2 400 264 13 4 1 2905 12 3088 13 124 15 1081 3197 460 94 11 1210 13 86 1003 1487 14 10 1647 5 224 13 4567 5431 3 508 165 5 90 538 13 124 29 2905 14 33 515 128 57 4401 869 13 92 1009 6494 8 555 9307 57 89 52 17 220 60 13 9 28 34 1 52 4155\n1\t498 77 31 2986 14 9077 5135 47 3 34 137 1968 16 2 2432 11 5193 362 19 7 1 2876 13 19 1 821 30 19 428 30 1579 3 470 30 1347 9040 6 2 238 572 11 100 295 32 1 3532 6606 4 86 915 3821 10 270 2 3693 7 2227 199 5 3658 15 2 164 35 424 16 34 3 25 6709 30 3 5234 1098 127 168 4 3 882 22 205 1883 3 55 45 33 87 29 268 4659 19 1 55 138 22 1 7539 5241 529 189 9077 3 7 1 362 546 4 1 108 2647 3 1 360 8065 31 11 1605 5 274 1 1039 16 1 5555 3 7921 5 13 2995 1 18 15 25 538 4 253 199 365 25 129 19 31 931 952 55 45 48 27 6 403 199 7 1993 5 1 102 6386 51 22 1195 453 32 6817 4526 2817 3 17 10 6 2647 3 1 2038 1631 35 2303 1 4811 13 19 54 24 71 138 15 38 2 350 594 556 47 86 599 387 17 9 6 128 2 1004\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 144 54 2 454 139 155 5 2 3292 35 3738 126 7 1 20 3464 20 8327 17 125 3 125 3456 13 252 21 5488 199 11 7 639 5 149 112 72 191 1942 3303 1491 39 5062 194 17 1435 1942 5908 58 560 50 74 733 59 3890 764 982 8 515 247 50 2558 13 858 523 9935 51 22 97 360 1637 5 9 4692 245 7 639 5 4800 1 4704 4 9535 3 52 129 1273 54 24 71 72 22 100 15 7 698 72 22 1699 5 241 11 27 6 20 2 292 6 496\n1\t44 801 60 40 71 4940 533 44 3 5231 2495 15 1 1170 3120 6 237 52 964 68 1 3 1 319 792 5 3347 1107 60 153 186 95 319 14 60 6 3326 3 153 321 110 44 372 6 3806 16 1703 13 6 107 28 326 30 3042 35 12 1 4 1 9510 10 181 11 3042 12 69 3 128 6 69 169 1 996 3 3120 69 101 59 3334 29 1 85 69 12 1 59 1301 1910 35 114 20 839 82 68 13 6 1685 30 44 5 70 1 161 526 371 308 316 5 309 16 1 416 1826 792 2 2038 1285 224 2079 4599 2746 15 1637 4 2 2318 1611 1285 18 69 34 142 15 43 56 53 8657 3 13 150 497 145 29 1 717 7 66 8 56 335 972 1624 403 62 3488 3 9 21 6 2 3369 14 10 20 59 460 17 60 6 5211 30 630 364 68 3024 3 2 4016 4 7903 598 129 9 6 34 142 30 1 3215 672 4 13 4375 10 6 17 400 2038 3 548\n0\t5867 9 28 181 5 26 1 4 1 212 5061 13 2409 4 399 1 113 185 4 1 21 12 11 10 12 31 296 4808 158 66 6 198 13 2298 51 22 4 91 188 5 134 38 9 135 74 4 399 1 67 40 2 46 6667 9708 1239 51 6 1 3213 4 1 647 98 1 4 1 429 3 475 1 4536 239 4 66 40 610 2992 269 4 1251 32 1 940 4 1 640 51 6 103 5 58 129 3612 66 151 2 1839 4 2 91 6199 13 32 458 8 1768 5085 1 7 9 135 11 424 781 1 14 1 483 3879 3675 3 9266 1 14 896 10 289 6563 59 14 893 3 7112 14 59 1841 5 2055 1 6563 14 893 13 32 458 1 121 12 93 4878 15 436 1 1675 4 1312 13 3986 7 1 769 2 1227 4489 158 45 107 32 2 3014 272 4 3972 45 107 32 2 1886 272 4 4706 8 497 11 42 1824 17 9 21 6 1274 7 80 37 10 1513 56 26 107 30\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 40 31 1476 5087 595 1045 640 17 42 1130 15 345 593 3 293 2170 5388 8162 6 480 1 551 4 2 1202 67 3 593 5424 15 44 3694\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 56 336 9 18 3 37 114 1 410 11 8 159 10 15 7 3522 94 1 158 679 4 81 61 2826 3 667 75 78 1 21 57 4732 450 8 63 64 144 10 12 132 2 568 645 7 86 1 21 6 6529 470 3 239 129 2335 1366 37 11 30 1 182 23 56 118 127 81 3 474 38 450 1 265 6 46 1574 3 1 250 788 7 1 21 169 9167 17 54 373 354 9 21 16 307 5 64 69 55 81 35 83 1797 139 5 703 373 2149 1 918 7927 73 4 1 3537 1626 4 1 21 197 7 2 2712 15 3275 1098 10 6 2 21 11 199 7 9 8628 234 3 289 199 1 1187 4 1 423 9003 2 191\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 159 9 21 49 10 74 310 47 7 49 8 12 2 7 298 2727 8 472 2 1992 5 64 110 8 143 8451 3396 5 867 73 1 21 12 37 6149 1990 895 100 14 955 14 10 2149 94 253 9 1853 2346 2145 7 698 2346 213 2 4969 227 9 21 6 23 1243 47 507 36 95 2931 11 228 24 5562 12 4464 47 4 23 183 10 88 3109 9 213 279 133 47 4 41 47 4 95 356 4 10 101 20 55 1 1671 29 3934 3084 89 9 279 1 233 11 1740 895 5823 9 362 2436 525 6 2\n1\t1442 3 420 36 5 4158 23 17 8 9 89 79 96 38 864 289 2087 106 1 59 177 11 6 1 1299 41 1206 860 3 106 1 7773 198 666 11 2544 911 5 1 183 43 4 126 22 1204 1958 49 33 22 20 42 6550 23 191 29 225 737 106 34 4 126 56 22 13 2044 348 43 4 1 3313 1 120 333 759 488 7 28 3914 1 1039 270 2 147 157 3 10 1345 6 9168 1153 209 1 265 30 3 1 5695 30 2574 90 1 856 5 21 5073 197 6975 781 127 1687 3 3851 126 87 137 360 30 492 1 347 7 1 856 93 432 2 6243 3 46 386 1106 30 5226 66 6 46 1462 29 1287 37 45 42 20 15 2 788 10 76 26 15 2 17 7 1427 5442 42 1258 20 5 26 13 28 4 1 2296 7 1 2 293 6130 262 30 270 1 1039 5 2883 2093 129 11 60 63 87 110 1 911 79 941 16 100 2397 52 1784 3 52 1325 256 7 265 3\n0\t59 2 2597 6198 298 19 3570 3 54 24 2 465 2308 10 45 275 10 577 1 8190 3284 7 1 3570 1255 6 7 15 1 1655 883 45 23 1 6 7 15 750 5286 3 1 4103 6 2 4381 4 1839 1873 1774 5 95 427 11 255 62 699 1 59 81 11 70 248 125 22 1 53 4449 36 1803 8331 1608 3 6 2 1122 4 1 5401 66 2182 49 4015 1 234 288 16 2 41 277 409 11 56 2589 5 1 4 1 8361 13 659 9 4 1105 3 368 6 65 7 2 4 67 11 473 3 140 1 4 62 221 318 1 345 545 6 303 818 15 1 2582 9218 115 13 4385 1 130 100 26 369 774 2 443 316 115 13 5369 81 36 8331 3 1977 228 118 75 5 3603 17 33 273 83 118 75 5 1351 2 263 115 13 6867 45 23 175 5 64 2 21 11 1819 15 6967 7 184 1255 3 1 8273 139 3 64 7647 8359 66 6 211 3 2335 6189 115 13 47 5\n1\t7 1 750 6437 3 2585 32 1817 5 5407 3 747 1770 16 10 863 23 3584 38 25 5654 19 25 3 75 10 76 4338 137 200 550 42 2 222 36 2575 5 2 5701 2228 11 2171 3 6191 2018 2 540 1367 136 27 17 10 3375 1 124 59 82 580 1538 11 4 6 20 670 14 498 7 2 1195 45 278 14 2 1998 988 15 2 1998 988 157 3 13 92 21 153 56 24 95 568 41 366 6971 17 8 247 446 5 497 1 393 3 10 343 8136 10 153 24 95 1052 4934 41 4162 7993 3 286 10 343 46 3 10 143 24 95 683 606 5008 41 1653 5154 3 286 8 179 1 2216 12 109 248 3 8 12 100 7374 300 1 59 148 859 204 6 38 1 423 321 5 2500 47 3 90 9833 15 28 3152 3 75 137 693 24 58 1700 55 2 3873 693 2098 3 55 53 81 63 26 417 15 91 1098 42 2 878 19 1 4965 1610 234 72 414 1107 2 53 4692 279\n0\t16 437 8 24 107 80 4 3 24 214 10 5 26 46 6779 36 34 4 25 124 40 31 240 640 43 1102 3 2 1551 1234 4 245 127 3016 22 7 2050 386 8044 7 5010 1 119 6 797 45 20 34 11 215 3 88 24 89 16 2 167 7491 135 906 1 2216 6 2050 673 3 1 21 270 31 717 5 70 183 5184 1002 961 8224 1 238 6 39 38 15 1 570 566 167 3879 3 1 1188 28 38 4010 1 1188 28 6 93 30 253 16 364 51 22 43 4115 1117 363 3 43 240 1154 5869 200 7 1 494 17 1 21 128 4089 8606 1 120 22 1070 109 9253 47 779 109 1171 3 1 1167 3 940 1666 5408 6 3 1466 1 21 6 20 301 464 3 40 43 985 4 4584 436 333 4 1 884 890 7891 88 5471 110 15 38 2290 269 556 142 1 549 85 9 88 26 2 167 547 4984 5585 3323 17 1 331 2206 21 6 4320 59 1901 5 46 4937 3 3446 4238\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 114 20 36 1940 32 1 166 13 150 114 20 99 25 82 502 33 310 3 13 724 6 2068 1001 181 3015 36 32 7937 13 92 1741 4 1 37 404 298 1342 6 1 3469 4 1 108 7 1 8407 4 34 1 86 832 5 466 2 1408 157 66 1 2788 686 141 20 5 26 219 15 537 41 852 4 6 1 692 334 16 1 6368 160 19 7 1 7843 4 1 1086 3 8696 35 7 78 52 8089 98 48 6 75 9 6 93 2 1255 6 620 7 1 108 2592 70 1390 5 7843 3 90 2 1086 17 20 754 81 754 30 7939 15 1 8378 4876 5 1 13 92 1214 1615 40 77 1 298 1342 4 169 1 18 289 10 58 1834 13 418 2 147 1486 32 675\n1\t876 5 9 280 11 557 109 16 44 129 3 151 44 3 286 60 1419 95 3506 4 948 11 190 24 1253 11 293 5 1 2482 17 789 75 5 70 1 113 47 4 25 1041 3 27 407 114 15 13 4052 93 563 48 27 12 403 15 5850 35 6 332 8921 7 1 280 4 444 100 485 1824 3 1002 19 1250 17 90 58 9 6 58 1871 3 1510 2 528 8717 15 9 1223 1 538 4 44 278 63 26 7 698 7 1 1880 60 151 15 243 1953 412 290 3 42 1 4746 60 37 1435 15 44 1212 11 151 2975 37 1952 2 1442 329 30 13 92 607 201 1680 3247 2999 1856 1072 2030 2501 3739 7978 1922 4679 7 147 3 294 38 8757 3171 9 28 190 24 23 9783 116 221 356 4 17 344 30 1 182 4 34 76 26 42 2 5 26 1432 3 2 1305 17 9 6 1303 1033 11 1664 2 3 4458 28 23 24 5 64 5 8245 42 1 3 1449 4 1 502 13 1149\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2053 4 7516 3 1165 21 38 1539 1 622 4 6446 8 12 945 30 9 104 6658 3 4060 4 148 3 3088 2008 10 380 1 1418 11 86 846 40 58 148 2308 4 1 8468 41 622 1 644 7347 17 6 770 378 32 2 426 4 8929 1703 1418 4 450 9 2018 2 1780 15 503 14 180 223 71 9368 30 1 9363 4 1 1792 5 1732 3 4289 1145 1422 3 1154 5 1 272 4 9203 24 2 3490 20 29 34 732 11 350 2 157 6 138 68 58 157 29 13 252 18 123 527 68 2197 5 3162 69 10 1 59 1362 1548 8 63 830 16 10 6 11 10 228 6381 2 545 5 825 38 1 915 10 37 955 42 52 8 2564 5 5912 2 8020 4 1145 3 3141 4 95 3116 4 14 32\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 132 2 84 18 5 99 15 170 2778 145 198 288 16 31 1335 5 99 10 125 217 2287 8237 12 501 6600 12 1736 12 501 3748 12 5675 217 4 448 5206 12 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 6 1050 2753 5 3501 154 1055 510 14 2 1122 4 3 976 618 7237 9 7033 190 1142 618 740 1 67 3 833 4 1 158 51 6 58 4005 2265 3 1 287 35 130 26 404 1 644 6 1 4 1 457 58 3874 63 48 60 114 26 5405 4 415 6 39 4202 7 9 524 3 40 162 5 87 15 1 10 6 4 1 2059 1 164 1168 65 3333 25 7324 3 85 7 1 5459 4 174 1559 5 401 10 399 1 80 4 3172 30 1 535 633 120 7 1 2281 6 4224 2 3540 893 693 22 58 1335 16 44 5 3497 3 6129 44 766 3 2428 51 22 58 82 2778 37 7 3593 25 157 40 71 8188 7 43 106 2028 128 132 1650 1122 7 1 3225 4 1\n1\t717 5 1 4791 36 1599 11 18 12 93 84 17 128 2668 12 38 2042 172 161 7 1 74 18 3 8 12 38 37 75 88 27 139 32 2042 5 5230 7 38 843 172 3 145 59 145 20 273 45 27 6 5230 260 195 8 96 27 6 202 4423 17 1333 232 4 1021 49 2890 176 29 28 18 3 19 1 398 51 38 843 172 161 98 2890 49 33 61 59 755 7 1 20 273 8 24 2 184 2407 3 8 36 5 192 232 4 2 1182 454 17 8 36 5 87 2 163 4 374 188 4330 8 192 46 1831 36 6262 5723 7 1 18 17 28 177 8 83 36 7 1 18 6 49 11 259 2307 1 3564 408 3 151 6262 5723 70 556 295 8 54 564 11 259 45 27 56 57 248 10 7 148 500 109 145 160 5 582 523 8 118 2 787 2 163 519 17 374 87 24 2 163 7 51 522 11 321 5 70 47 3 45 33 83 374 76 100 70 5 13\n1\t86 46 13 2298 12 20 818 7 9 1859 1 2511 2666 30 1542 12 39 14 13 92 494 12 37 3 1654 11 10 419 1 171 132 1761 3 4197 19 1 1250 5328 1 570 178 106 9481 3352 992 5 26 28 4 1 3 2 1518 34 1 387 6 428 7 132 2 534 1511 11 10 6 28 4 1 80 4290 5536 8 24 117 575 6 1 398 626 13 659 2 570 1367 10 6 631 11 9 397 12 58 346 13 78 3442 191 26 340 5 1840 1133 35 181 5 24 1 6250 3 1744 5 1243 398 5 1461 100 183 24 8 4899 2 397 37 1751 15 37 78 838 470 29 154 103 9278 2 1278 329 6 28 4 1 7 95 18 3 151 10 176 13 1601 7 34 9 21 5961 1688 2511 1528 397 3 5171 3344 9 6 1 632 4 21 29 86 1293 49 1 393 4 1 21 3165 1 59 177 11 6 8263 6 5521 13 92 9604 6 2 1719 488 80 6728 1 9604 6 1314 3981\n0\t276 36 2 443 7 1 697 2840 7 6676 13 2 147 635 15 58 1950 2096 758 77 1 3759 4 2 2471 6767 30 28 4 1 82 236 52 68 2 3861 3506 11 236 2 1040 733 160 19 189 170 1312 3 638 244 20 338 29 34 30 1 82 6767 7998 1281 73 4 25 551 4 1950 115 13 93 40 2 282 493 7 6352 3 60 5359 146 258 49 27 418 2458 200 15 3 578 14 109 14 34 167 3234 807 11 54 407 70 50 13 92 84 6676 2820 2471 9216 57 102 971 1539 3 294 114 650 4655 3 143 87 78 4 2357 28 4 137 102 636 278 12 113 3455 30 403 2 91 6166 5557 115 13 252 21 190 139 224 14 1 210 117 248 30 1312 145 1774 5 2398 11 2097 3025 3 723 376 4261 57 459 4721 122 16 405 434 41 2191 73 8 173 241 33 54 24 45 33 159 2938 13 33 54 24 107 146 1 1228 54 24 4861 571 16 1 6833 16 9 8302\n0\t98 4986 9473 224 7 1 3 2311 30 1 344 4 1 1440 236 93 2 5967 2306 2 434 9383 2 140 1 4843 275 274 19 6602 2 2 1170 2581 1 5358 355 5323 30 43 2 559 3 7065 1359 5 7488 3 43 82 2688 32 2 1813 42 2 21 15 167 53 2653 2 547 868 3 53 840 2170 1 1167 6 93 167 6807 3482 8234 29 1 3 7734 205 291 36 479 246 299 3 6 84 14 1 510 55 193 81 36 5 127 2491 244 20 91 7 25 1538 6062 13 2699 1 224 3453 480 34 1 2565 1 21 181 595 1065 3 10 196 94 38 31 6708 1 3018 1626 22 5940 3 9530 854 49 120 22 101 7097 77 1 5967 5 26 4872 3 4864 1 1132 636 5 1 2467 171 125 43 810 288 808 1380 11 276 7883 3 1 1897 554 6 3 7198 2776 15 3 136 80 4 1 201 6 29 225 5417 2 156 4 1 453 8234 1 35 266 1327 3 1 22 37 91 479 1506\n1\t7 1 14 2 487 35 6218 3 1 362 172 4 416 7 1270 2783 12 2 986 1139 2218 32 6713 66 1685 170 1161 35 7403 7 5 1153 4 3330 2766 7 62 396 3 1303 1486 140 157 11 450 1 2122 4 77 9 1139 2218 19 189 1315 5 183 2023 13 61 43 360 100 5 26 57 13 858 8 1527 5 4505 3 136 204 16 125 358 8 519 3307 38 11 85 3 2416 7 2 913 3949 4 2765 295 8628 32 1443 30 31 8511 4486 4 9 2113 15 86 645 833 5079 3 4 1 487 654 25 5428 1 1591 3 4 1 1591 2783 13 97 172 13 1702 136 8 12 7 8 12 446 5 1584 224 2 973 4 1 215 2783 19 2388 3 10 758 155 2 163 4 7574 9715 2783 1373 14 5498 14 1 74 85 23 2144 10 34 137 172 1742 567 65 137 5661 2122 4 147 31 731 1966 16 170 1161 35 7403 7 3 19 62 7521 1486 77 13 5 360 9715 2783 13 5 50 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 12 2 2156 366 3 2 18 404 12 19 2229 8 57 198 405 5 99 10 17 100 165 200 5 10 49 10 12 7 1 1913 487 12 8 911 481 1431 75 211 9 21 424 993 1 4030 4 1270 6926 35 1555 2 1574 19 412 1300 49 101 695 8 6332 1 1 398 326 3 610 28 1679 94 133 10 16 1 74 387 8 24 107 10 1450 4925 2189 15 194 3 8 118 261 35 3 216 76 1116 9 108 2 191 2198 9 6 50 8243 267 4 34 85\n0\t5 26 3238 5 1959 25 1286 8037 3117 5 26 37 1130 7 218 13 1268 4 50 210 739 5195 40 209 5 3837 8 11 1 1177 3 1043 541 758 5 50 838 30 1 776 228 5 82 703 541 12 98 758 5 147 8904 7 1 226 102 4 1 2936 3607 703 50 1401 57 209 5 7 50 1520 127 124 22 89 56 91 30 127 66 2082 16 17 1 14 37 2083 2307 25 2559 791 2173 508 7 368 5 139 7 1 3132 16 6382 184 13 50 23 368 238 693 5 26 674 5016 3 20 1674 9497 29 30 3652 3840 13 872 218 271 37 237 14 5 218 2936 7 478 7 1750 62 4605 1607 173 356 450 16 1632 45 8 785 2 1277 2066 28 52 387 646 39 1 3878 22 53 8 495 785 10 8 407 495 117 793 218 3456 13 150 354 5 137 4 23 35 24 286 5 64 218 39 26 1933 15 1 9 551 5 116 3223 13 47 4 8 192 6159 5 2478 11 5 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 310 77 9 18 56 1841 5 427 110 8 179 1 804 57 2 163 4 1187 3 12 16 31 240 108 83 70 79 540 737 8 247 852 4926 8 12 605 9 16 1 1493 18 11 10 705 11 1113 10 128 1310 386 4 1 1 1267 1329 4 1 67 6 125 3 1 393 303 79 2 222 1 121 7 1 18 12 46 34 7 34 8 187 10 843 16 2 84 3486 17 1 18 88 24 8683 78 2302 15 2 222 52 838 5 18 253 6 10 279 8 143 555 16 50 102 719 2366 17 8 83 118 11 420 354 10 5 2349\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 7150 66 57 1 2557 2902 5 26 7412 200 1 85 4 1 7599 1071 132 9111 1 90 2 4 505 152 101 590 49 1783 16 52 68 44 692 1438 6295 5 3433 44 1 18 6 29 268 3654 49 10 792 5 1006 237 105 78 4 1038 2 346 487 863 2 3780 3345 7 25 6524 66 2296 49 340 105 97 30 1 4 7330 9 6786 3 6 2 580 2228 7 1 903 804 4 1 141 66 181 185 386 185 8699 30 1 6591 4894 8 3551 23 15 490 6880 10 5 134 23 63 59 539 49 3521 15 110 246 367 34 4 490 10 6 837 5 1775 7 2 2052 30 1 6729 232 4 699 1 1151 3 8468 22 14 1698 14 239 1715 896 45 317 31 7492 86 16 1 1474 453 4 2257 32 5467 4 488 4989 896 1275 7 2 9932 473 14 2 426 4 4540 35 5186 87 20 139 774 9 18 45 23 22 20 2 325 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 100 4753 19 2 21 1448 8 219 9 18 15 50 1327 226 2016 180 284 708 667 9 18 2683 15 1038 10 2788 42 71 202 4539 719 3 8 192 128 301 9 18 303 79 9783 50 221 75 63 8 815 1498 512 5 2 129 132 14 1147 35 6 400 8 336 9 108 8 112 104 11 359 79 3584 3 1437 318 1 714 8 230 102 1676 5526 3 31 491 230 53 18 3 2 46 747 28 854 8 37 405 1147 3 5138 5 26 2193 17 7 1 769 33 4416 4665 45 23 617 107 9 141 70 10 3 99 110 39 90 273 23 24 58 468 175 5 64 154 7 9 2129 28 16 50 9889\n0\t0 0 0 0 0 0 0 0 0 9 6 2 46 2518 3 397 4 28 4 6493 80 8921 8 63 59 497 11 1 4187 12 5 90 1 309 14 8818 3 7779 14 888 5 31 410 11 40 20 71 5794 5 3189 1448 30 403 490 193 69 30 253 154 427 935 3 154 4187 631 69 33 24 1 309 4 157 3 590 10 77 2 1289 6435 10 6 152 509 69 2 46 254 340 132 360 13 92 121 6 5684 29 113 69 1334 14 3 2093 14 1862 2750 245 87 20 3425 37 530 4564 950 6 2 11 3270 1461 1862 294 6 2 6658 1254 129 19 1 952 4 2720 12 78 52 13 6815 7701 4678 1374 1 259 35 643 6 20 7 9 2614 1013 27 12 7 8797 3 57 25 442 5708 32 1 13 11 1 7392 2453 6 676 2 856 3429 9 397 6 20 59 1832 17 14 2593 13 2687 1460 15 476 99 8167 78 378 69 25 324 6 15 3 2106 5 134 162 4 360 2263\n1\t46 109 8 228 7 1 2032 2 85 4 1 113 5316 7 21 15 101 446 5 798 2 7088 9 18 6 20 38 2 454 101 5726 41 1375 10 6 618 38 1549 7 34 42 678 9 21 123 131 43 4 1 7620 4 101 1040 7 1 2032 7 3727 41 7 167 1161 101 485 94 30 972 20 37 167 3788 415 35 57 5 875 1768 3746 7 1 931 6524 41 3693 20 246 2 3163 61 31 185 4 1 1040 13 3204 1 1189 369 199 1541 2 3054 15 2 1040 3 734 43 3 48 87 72 109 9 141 66 7 95 111 12 138 68 11 7541 218 398 184 436 275 130 24 1783 1 389 1176 5 64 9 18 3 98 328 5 87 3606 13 150 381 9 18 49 8 159 10 7 1 2032 3 10 128 876 2 2618 5 50 8754 1705 8 5268 261 35 451 2 722 4952 5 65 15 43 4616 3 24 43 1434 43 81 321 5 3 9 6 1 21 23 130 87 10 13 3382\n0\t6457 14 1 1254 1306 174 233 6 25 152 216 5 1 272 8 571 16 1 3570 27 93 6082 15 1 1511 4 66 314 5 26 7 31 2337 8 343 37 945 11 33 1 1254 37 8606 1603 422 343 11 111 854 199 349 320 1 1254 3 72 336 154 938 4 592 13 150 337 77 1 18 15 31 1089 2867 1311 11 33 54 24 6082 15 1 5256 8 12 556 29 75 3985 1 18 1306 10 19 2364 8508 3 439 494 16 2466 834 4088 19 1870 3 1710 623 5 4269 2 374 18 4508 2754 6 1445 7 9 158 3 10 3434 1 606 6 20 11 53 29 8975 1 176 4358 17 33 61 202 2235 1 1254 12 2 138 5786 1 810 168 61 2145 7 1 269 8 219 1 141 20 28 539 12 9284 3 33 1309 29 1 9 18 130 20 26 219 30 81 35 175 2717 7 62 231 2815 8 496 354 218 6175 66 12 3279 17 46 46 452 9 18 6 2 7687 5 1 212 231\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 217 1 170 6 1727 331 3 483 386 4074 217 165 38 910 269 140 3 1640 10 88 26 2 1153 209 3040 1 265 981 2 163 36 146 420 785 29 2 4311 9862 8 152 96 9 18 6 2 1415 1399 69 42 20 2 231 108 1096 8 12 133 9 15 50 2626 8 83 175 44 5 96 42 1408 16 2752 5 793 1665 1413 46 573 46 747 42 2925 14 2 231 158 5846 76 229 26 2692 27 12 7 110 3 835 15 6075 10 14 2 363 1 363 87 176 402 2039\n1\t3556 5097 5 70 577 86 3022 5786 90 58 2082 11 9 88 24 71 2 167 288 21 15 679 4 4306 3 688 72 70 2 718 1782 7 1 570 391 253 297 176 36 10 12 383 19 2 687 3275 443 16 1 4468 19 1 874 1525 6 93 1649 17 6 27 100 2378 1 21 5 390 105 78 36 2 1864 29 1 166 85 8290 1 644 445 3084 71 350 4 48 10 1306 42 279 667 204 11 5535 367 27 405 2084 2015 2934 5 176 36 697 7729 1131 41 146 385 137 456 3 14 45 10 12 4440 32 1 392 4718 13 2120 101 46 211 3 2571 6 128 2 84 2221 4 48 151 81 20 3237 7 392 17 7 1 4639 888 86 2221 19 28 164 3 75 78 27 5214 1 2090 11 27 481 55 186 10 1067 6 1447 14 6 1 1564 4 239 51 22 375 1201 168 3 1650 7 2 7764 45 20 5192 393 1089 116 438 3 90 23 96 38 48 42 436 56 36 7 1\n1\t30 2 91 1648 35 451 5 7679 2693 13 4052 25 901 5 2 3098 7 1 3896 35 6022 5 352 122 1291 3 149 25 2810 13 3372 14 1 35 40 31 1089 438 3 184 683 3 35 5 352 103 5206 480 1 3460 266 1 672 4 1 3 28 4 1 7877 120 27 255 13 677 6 2 103 1587 17 9 21 6 3271 16 80 374 3 55 52 37 45 1 1007 2612 7 19 1 299 3 99 854 10 6 2 5296 5687 1859 67 3 1391 2 84 112 67 38 2 5746 3 25 103 2784 27 1776 16 3167 741 15 2 169 31 2231 1197 16 80 81 35 118 78 38 13 35 24 107 1 1305 1504 7 3522 5768 3 76 258 5576 32 283 9 21 3 2308 11 258 22 20 34 537 9902 76 64 11 921 1052 730 3 11 1 112 3 4 2 1238 41 6 2 4846 5 26 13 1627 58 6752 737 52 4 31 1115 1486 15 2 13 3 328 58 5 4443 65 285 1 747 3955\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1386 5116 651 2448 9 21 32 457 1 4 4075 58 346 1078 1 1442 453 3690 4341 13 266 31 595 7600 341 436 651 35 6559 2 7239 329 288 94 2 3412 435 654 395 84 5116 353 35 1436 29 3636 94 9 21 12 13 13 4364 5 5 261 27 9758 1 5927 603 3 2352 876 1 345 161 2710 155 32 2 469 13 1994 40 89 2 627 21 38 1 6111 2 4998 585 262 30 40 2083 2 435 35 40 100 3946 550 1 21 1918 1 769 17 40 43 731 188 5 134 38 1 1109 3 1548 4 2083 3 3 75 28 3292 1 63 1 448 4 2 423 500 496 4869 278 6 818 279 1 2154 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 51 24 71 97 21 3 249 4261 4 1215 6855 239 15 1637 5 354 949 17 8 2172 9 6 1 28 11 81 76 128 26 5909 3 1424 7 112 15 4029 32 1705 42 39 2 382 341 1664 78 52 4 1 67 68 508 3744 6275 6 1169 7 25 1656 14 1550 1156 1 25 278 6 3 136 100 105 237 32 1 534 4 1 1223 1215 6 52 6361 68 17 60 151 2 425 9888 16 6275 125 1 7733 4 44 278 209 140 138 19 2 330 956 819 8123 1 1965 4 51 22 43 1813 9502 3 2 342 4 529 106 1 397 1353 88 24 71 193 9 167 78 12 2 397 30 1 3220 4 11 290 688 42 1 453 11 22 1 148 83 773 9 4941\n0\t1736 2121 1 250 3441 6591 404 4962 7 13 5369 48 6 31 312 49 7391 139 5 2248 32 1 17 27 1541 4349 2 1 113 178 6 49 60 5580 60 907 2 163 5 550 27 789 44 16 27 16 1159 1104 5617 50 851 5348 5841 75 97 6 27 25 4830 6 198 331 4 1 8 143 1682 2 178 106 27 7378 126 69 17 8 24 107 1 178 106 875 7 1 3004 522 69 11 6 46 731 6148 75 97 5462 63 6861 8 24 107 5841 17 24 645 38 910 4 2350 13 1 250 2482 48 1 1736 293 1536 87 7 94 1 9552 74 178 49 27 2645 77 25 74 312 12 5 1 35 6 2379 19 1 6078 19 1 1089 4172 48 31 312 68 3441 15 1 6407 2890 63 757 1 6175 300 59 89 7 2824 69 712 16 645 28 599 5617 50 3429 2890 1838 56 321 5 825 38 1 87 2890 118 75 78 10 270 5 1 669 96 846 24 71 133 5 78 104 32 2795 234\n0\t3721 2644 30 27 2486 11 2 558 298 2906 8421 28 4 80 7644 57 2061 1 558 5215 32 2 536 45 33 83 87 25 1 282 57 71 2163 5 390 1 37 60 6167 68 23 63 134 9 2 1230 119 41 1 282 6 3542 30 1 3 4463 5 1 5797 3 1417 30 3709 2294 129 262 30 294 35 4094 375 3 2 1655 22 142 5 186 19 1 3 25 2906 6 303 94 2 251 4 395 6 311 2 5177 164 7 31 770 15 1 2906 7 1 1086 5267 2 222 4 1357 3 709 3148 3 759 30 297 4838 1 909 749 13 2554 3 1 1008 2 668 868 30 1 609 21 3 6 237 138 68 48 1397 504 32 9 1540 115 13 2120 1 21 54 1851 2 182 5 85 7 3211 54 1279 139 19 5 309 3721 2 52 8954 4 1 6615 996 7 1 860 602 7037 1 790 2754 29 225 2 103 845 1 900 1378 10 88 24 13 12 38 5 70 2 90 2780 3 390 78\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21 6 332 45 23 99 10 15 116 417 10 63 26 2 46 327 515 23 24 5 118 11 1 21 6 439 3 46 91 470 3 1171 48 2 3 11 6 229 1 527 21 7 1 1561 17 23 63 335 10 46 1264 72 219 10 7 7475 3 10 12 2 46 327 8715 1 113 168 22 1 74 628 49 1 3728 564 1 493 4 3 27 440 5 634 36 2 3 1 1122 6 2 709 178 4 74 3 98 49 27 289 5 48 2 9854 1 3 98 1 2561 4 11 308 6 160 19 44 606 47 4 1 3 2 330 1372 1 606 6 301 48 2\n0\t3 10 123 2735 529 106 10 7 11 3344 245 1 1048 67 312 6 78 4684 68 228 26 5627 3 6 2 6701 991 29 2239 4046 1636 7 1 234 392 2795 1592 1 6798 201 6 645 3 15 742 3 1 1740 5897 2011 1293 1638 245 3671 39 386 4 25 7 31 376 13 92 515 402 445 951 5 7 1 397 7542 1 2840 22 1111 1 363 3 238 22 5128 830 45 2015 57 9875 4 350 1 355 643 610 1 166 111 57 3653 72 87 70 5 64 1 383 73 33 363 173 3258 98 5568 3 3945 5461 200 7 2 3 383 681 5045 16 1 7268 1891 1 15 1 4747 1481 5381 58 1451 16 62 73 33 22 6384 3 3261 2046 101 30 490 6 6889 14 22 1 1102 4 4 129 523 7 2 4 25 5332 6759 45 1 1481 61 1747 5 566 378 4 13 659 2179 8098 153 169 17 42 2 6701 20 2 91 4644 10 88 26 6642 14 2 46 53 158 488 14 10 6 31 240\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2377 4 632 1049 1 433 215 6185 324 4 9 21 19 7780 3623 10 9589 168 757 30 655 86 4228 1 129 4 1 2 1700 2852 7 1 215 1042 4 6 204 1463 14 2 4 1 3 44 5 333 413 5 44 111 5 1 5037 896 1 2390 393 4 1 215 66 8 2309 6 7 1955 1919 2639 6 3 1 393 6 5755 5 86 215 4239 2 360 21 4 3 5475 51 76 2 4 9 21 19 305 16 34 5 1116 86 84 176 16 110\n0\t322 65 5 1 226 8165 73 94 1 67 432 400 1 8813 736 16 2 710 10 8252 542 5 3257 55 10 1 7200 54 36 5 652 2 6239 13 1118 87 8 24 5848 2 53 4738 4 657 8 1374 33 22 535 2098 17 1 6 2 222 3395 16 437 1 5669 3917 30 44 3 1510 2 514 121 14 3708 34 7 2245 3 202 9984 9 503 73 14 82 514 3249 41 7896 1 166 9060 6 5665 125 3 2287 7 44 1723 42 2102 1034 1 141 42 198 1 166 129 6804 30 44 44 5308 35 486 264 4260 8 128 83 118 75 5 274 1 8117 883 1 189 1 3249 3 1 13 3221 1061 601 4 9 18 6 86 1388 217 1 240 264 985 4 3972 1 415 24 239 62 221 111 4 55 45 33 22 34 10 876 2 163 4 3 2793 5 2928 75 2 166 3 979 864 63 26 7 14 97 1175 14 5294 13 8568 1 18 6 169 17 1 84 570 2932 1 2277 4 2 398\n1\t16 768 8 12 1506 1 18 6 373 17 1 413 7 1 18 22 20 39 3042 4071 6 8053 14 10 6 58 560 11 307 7 1 18 6 7 112 15 849 8 273 1306 2640 6 2823 47 4 7130 4545 2640 47 4 1377 197 5994 25 121 224 1 542 40 50 430 178 7 1 108 10 1385 79 4 1 754 178 32 10 6 464 3 6097 7206 8 12 1169 1 28 121 2259 12 136 44 566 168 61 8375 80 4 44 121 4 10 54 24 4462 44 5 186 31 121 6072 183 72 57 5 44 42 2 53 177 60 247 7 4383 4 1 1 2946 4 1 18 22 7745 339 90 2 21 7 7915 822 37 1080 6105 5 1646 3 7953 1 1117 9491 4 1 3984 155 1102 22 1127 3 51 61 97 168 11 88 24 71 3 2925 14 3981 8 920 194 8 3400 6 2 1127 108 3400 6 2 2646 739 17 2 56 84 2646 1772 45 23 175 5 5561 2 287 15 2 18 9391 1351 8715\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 50 1520 1 113 18 1218 8 112 49 81 1006 79 48 9 21 6 1395 8 531 2618 3 134 33 3 229 100 187 10 174 5425 1 233 11 307 32 154 1138 63 1999 5 43 185 4 9 18 151 10 34 11 78 52 2713 2 191 64 16\n1\t980 7 37 7 1 4 1 18 72 70 2143 4134 34 46 1330 3 6777 2 6092 1430 11 6 332 3982 97 2749 5008 66 22 55 52 3982 2 3765 606 1430 11 6 3 850 37 78 17 1 3501 16 79 40 5 26 1 178 7 8660 495 2704 10 17 16 43 302 57 79 13 1627 95 2387 16 1 1973 7 50 671 1453 17 45 23 22 20 2 325 4 1 2936 251 41 24 20 107 1 817 102 98 8 511 354 16 1038 1 18 153 328 5 1364 125 95 147 596 14 10 4054 5 48 1 4848 123 113 3 39 1583 2 327 222 52 857 3 238 1102 19 5037 1 2936 6 4609 1 113 4 1 251 3 1 113 2965 4 14 2 578 2164 10 6 2 84 16 79 5 134 11 6 2 163 138 68 2 2009 4 1 2164 484 3 1961 79 10 270 2 163 16 79 5 134 656 136 2936 14 2 212 228 20 26 2 138 4848 68 1 2164 1125 10 6 373 670 86\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 131 40 34 1 687 120 7 2 1 53 2112 1 1 1 1086 17 42 274 19 1 207 1 59 1820 11 10 40 15 82 249 8221 8 83 118 75 23 63 36 9 880 86 623 6 8 1266 1 716 22 37 2 687 927 6 4167 1608 2413 8 175 5 24 447 15 1038 317 2 850 1661 8 3 9 213 695 8 96 11 45 10 143 24 137 1308 669 83 118 75 23 637 11 7 5400 23 511 539 29 513 9 213 1244 1073 9 6 31 2158 5 1 6154 8 36 80 4 1 296 4964 17 9 213 53 29 513 8 54 187 10 843 47 4 1731 16 50 345 706\n1\t6 106 1 2129 40 44 30 4231 483 3234 976 447 15 60 1304 9 6 1 570 5677 2236 5 186 34 4 3 25 7529 5 2798 14 266 9 178 14 1202 14 261 5435 27 6 2 627 353 372 2 627 129 3 1 2838 255 47 34 125 1 1250 94 1 141 285 2 2667 11 9 178 3021 2 163 4 1961 189 122 3 2615 11 9 1489 76 552 44 17 8 83 96 10 2788 28 4 1 570 168 40 2 4 543 3 23 64 2 4443 2456 224 44 9 12 2 3088 178 3 9350 1829 4784 32 261 35 271 5 64 9 108 114 60 70 1 1489 60 12 10 14 3476 14 60 7 50 1520 10 123 1265 10 59 151 3291 8350 13 252 6 31 313 141 76 109 1171 2842 3 8 354 10 5 261 35 6 517 38 160 5 64 110 8 54 39 26 2 103 45 457 3581 172 4 3669 3 130 26 16 4109 109 1613 1 1177 3 1667 191 93 26 10 12 2 366 11 8\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 8 192 2 5921 9124 8 54 946 5 64 3 785 44 284 1 1969 1158 2768 16 34 8 1374 60 190 24 71 403 49 60 12 1874 1736 7 9 108 115 13 1601 723 4 1 22 2355 17 1 18 554 6 2 604 4 53 1512 3 138 168 1525 371 30 13 2120 28 6 198 1578 5 5238 4038 136 133 2 141 9 28 2080 105 78 4 1 3930 115 13 499 88 24 71 46 211 801 10 6 7 41 169 4140 801 10 6 7 28 17 1 206 143 291 5 118 66 111 5 3192\n1\t11 9 21 1092 40 2 119 29 34 6 56 28 4 1 113 188 38 194 17 8 96 8701 472 10 38 28 3116 68 10 965 5 139 3 1 21 123 15 3 2 156 1659 119 985 130 24 71 936 1920 11 1 250 129 271 5 1270 9866 5 70 25 683 378 4 39 781 122 51 34 4 2 2585 197 95 2651 4 106 27 6 41 144 27 6 93 43 4 1 82 120 384 2411 3 14 45 33 61 39 7531 16 8701 5 333 171 60 1143 286 316 129 7 933 6 2 103 7807 73 23 359 852 11 60 6 160 5 24 43 1604 1 21 6 862 3 1 861 6 660 2713 10 6 373 46 78 2 1719 7 42 221 699 29 225 14 53 14 52 45 20 828 3619 8701 40 5 26 50 430 710 206 29 9 1746 138 68 93 8 24 5 920 11 1 1270 4144 980 56 123 87 7 138 68 11 21 554 123 341 4780 1031 5748 192 2 568 325 4 11 21 14\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3721 6608 6 105 496 3 255 577 14 2040 8402 9374 12 540 16 1 466 3 51 12 58 1300 189 122 3 55 193 236 877 4 860 7 9 141 42 650 1130 73 1 546 22 3743 5 103 52 68 896 378 4 311 781 4063 16 1 1906 3 439 177 10 424 3722 1072 6089 5 3938 10 200 36 2 7 2 80 8849 3 2850 5042 8 89 10 140 80 4 1 21 17 8 339 169 1812 194 3 458 16 503 1550 4216\n0\t107 34 723 4 1 104 7 9 1199 239 28 1231 3 1231 32 1 6028 9 6 1 210 28 5142 50 465 6 11 10 123 20 917 1 347 10 6 3594 94 7 95 1 971 3 1278 130 24 654 10 95 177 82 68 1 59 177 38 9 18 11 2363 4831 1 347 22 1 1487 4 43 4 1 120 3 1 4 1 537 22 1328 1 389 67 427 6 58 106 7 1 13 150 149 10 2 84 5 44 1402 3 44 596 5 2230 2 18 457 44 462 11 6 20 3013 7 95 699 1 265 6 105 8919 1 171 22 20 1321 69 33 551 13 614 23 175 2 53 231 141 9 228 1405 10 6 83 99 194 1024 45 23 22 1247 16 2 324 4 1 1533 8 449 11 9 76 26 1 226 18 32 9 1125 17 8 894 110 45 51 22 52 104 1716 8 555 492 7918 3 508 54 1382 2912 5 1 215 119 3 67 2933 1 1402 22 313 488 45 4441 54 90 313\n0\t582 94 11 3 875 7 1044 4 1 2904 9 18 6 2 6599 32 357 5 8693 3 42 1065 3 1974 15 162 78 160 16 110 2 392 950 270 2 329 770 16 2 3250 6763 196 2 222 105 3430 15 1 379 3 98 1 379 6 643 30 1 3250 1855 411 217 1 392 950 5539 3 1172 5 7182 469 944 9 933 1641 40 71 19 8815 3 6 9814 43 2441 11 76 473 413 77 1 2059 848 2863 954 4 611 297 271 540 3 98 236 34 127 7997 81 3363 7 1 7182 43 4 912 22 1573 77 1713 3 1 344 35 1283 39 83 175 5 26 51 3041 9 39 271 19 3 19 3 19 15 162 591 78 5 131 41 134 16 2105 3 8 2165 10 183 1 769 66 384 36 10 12 588 2 156 268 17 1453 10 12 791 59 355 274 5 186 142 19 2 264 3 1381 1065 45 28 219 5 1 182 33 190 109 390 2 1028 3846 37 83 3693 110 358 47 4 1731\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 438 75 9 18 165 1001 8 219 10 136 8 1066 29 408 523 3 1 1969 361 8 59 219 10 73 8 3388 1 185 54 26 452 3396 5 867 1 1489 3 1 929 119 1552 61 20 279 1 285 66 33 61 5399 7 698 145 20 55 273 48 653 29 1 182 95 1129 1 121 12 14 91 14 9245 19 1 131 361 30 3980 1 210 59 3 63 815 26 14 91 29 8 143 55 118 11 1 914 164 12 7 957 1128 2528 318 8 485 1 18 65 204 19 6675 17 86 631 144 27 1336 89 95 104 4836 8 449 27 6 2 53\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1711 7 1 6347 8 1662 65 133 1 249 4 1 7 1 362 2032 3 336 1 1119 104 11 61 620 642 6897 416 16 1 366 6446 17 9 28 6 39 908 6 515 1 7344 242 5 9567 19 1 3276 2064 32 2 156 172 6884 1 18 460 2884 4 3 3988 14 2 435 35 270 25 231 7862 19 2 1 231 3661 43 35 16 43 302 1088 5 1 1499 1 302 16 9 6 100 3 6 254 5 16 6009 637 1 8619 1620 1 898 4 126 41 3393 39 83 694 51 3 38 110 1 121 6 167 4153 1 67 5999 966 3150 276 1257 7 2 17 207 38 110 2900 9 45 10 117 19\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 2 91 108 145 56 619 11 7789 3 55 9374 54 26 2920 15 146 36 476 45 317 160 5 90 2 18 11 2027 3 289 168 4 29 225 90 1 238 176 595 3735 144 12 1 3216 198 2379 65 16 58 933 302 285 3 1 226 178 7 1 12 3559 72 22 936 1699 5 241 11 7789 40 214 25 111 1732 1 2857 7 31 3 11 1 562 6 55 101 262 7 2 4 1 210 117 168 7 2 2225 108 535 460 47 4 1731\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 332 336 9 880 8 219 10 32 1 85 10 74 3246 7 1 518 3991 5 1 46 226 2351 7 50 1784 1062 10 12 2 360 231 589 11 6 37 1219 127 2569 373 2 131 23 88 99 15 2 493 41 116 2778 1661 188 24 1241 2 222 15 220 72 226 159 44 7 1 5082 17 42 128 1683 15 84 584 3 53 1 651 11 2148 123 2 360 329 14 123 14 1 353 35 266 1788 533 1 251 72 70 5 64 1 5641 1151 189 3 1788 14 109 14 1 3229 584 3 4119 1 374 3 1554 8 354 9 131 5 4315\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 1 462 130 1718 8127 13 252 18 5961 7155 3 3670 848 5 90 28 6219 4 31 108 369 79 90 50 272 7 2 251 4 3405 574 13 1118 629 7 1 1973 81 13 6450 11 1947 13 1118 6 1 119 9370 48 13 1118 6 1 272 1 18 6 242 5 848 6 1 59 13 1118 22 1 120 483 3965 3 1918 62 221 13 6450 51 235 53 38 9 1973 7002 145 273 33 314 43 327 5097 7 1673 592 13 614 23 36 1829 848 3 98 99 1 108 45 23 780 5 26 30 132 98 6 20 16 4840 13 2044 3350 10 1095 1 1 120 662 279 62 3166 1 857 6 301 3 162 2589 6340 13 252 1501 28 7629 1 1041 7896 3 2525 1553 90 9 18 407 662\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1420 8 1420 395 9801 3 1 3764 1 157 4 2 349 161 487 654 35 6 2189 15 5374 1758 65 7 8 112 9 18 73 1 120 22 46 1784 3 46 7546 36 34 1 120 7 104 4297 206 4 1385 79 4 75 1930 3 1303 157 63 26 29 11 3669 93 101 32 4 10 758 679 4 2122 5 50 1960 9 18 289 75 304 424 327 1046 327 157 3 5376 679 4 1098\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1786 4034 14 845 37 11 46 293 272 106 8058 3 423 8 6313 9 21 579 2 4773 1661 491 2278 13 150 12 37 1768 1527 30 86 46 423 3266 8 1309 3 4555 140 2 212 600 1314 375 4 13 609 14 2668 600 2 74 1090 6245 1835 4051 3 25 2558 822 3 4340 860 3372 140 7 154 1146 154 5334 154 8 12 400 3 997 65 1 441 66 6 257 8374 441 1 67 4 157 7395 13 92 21 12 93 37 4 97 8394 583 3338 8859 8433 8058 3282 69 34 1 120 37 148 3 306 5 157 69 34 84 3 6711 7 437 115 13 499 6 2 148 2055 5 64 132 2 179 7977 286 1517 6133 548 135 850 995 1 4 3869 3 304 9004 115 13 23 34 69 9 3923 21 76 1416 81 609\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 88 597 23 2 103 7 1 373 20 28 4 113 502 83 70 79 1989 15 95 294 3145 899 51 6 198 43 53 3 9 28 40 42 1551 17 125 34 1 572 1047 673 3 39 153 414 65 5 1 10 88 24 5674 1660 316 123 31 1485 329 14 1 6350 1072 3566 6 174 2437 1780 7 1 108 1 374 7 1 18 61 855 17 88 24 71 201 828 9 54 26 2 53 18 16 1 3077 5 3334 349 161 18 13 252 54 26 2 53 231 899 5 99 15 116 2778 39 26 51 6 2 342 4 168 11 23 190 175 5 186 2 176 29 183 23 369 1 170 879 64 110 17 80 374 11 8 118 35 24 107 1 18 36 110 300 42 73 33 70 5 64 374 62 717 87 34 1 2260 65 916\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 1390 28 3780 16 9 305 3 29 74 8 12 507 3867 1237 17 98 8 544 517 38 10 3 8 130 26 8 24 214 2 5326 2 148 4 91 1913 45 23 96 1 567 1005 802 4 31 2213 3505 15 2304 443 7743 98 947 318 1 567 1079 2456 19 1 1 263 181 5 26 371 32 4107 3 8 39 173 241 75 91 690 6409 705 27 181 5 24 332 58 2771 5 235 27 3908 1 59 7051 8 63 6 8 2398 33 96 8 192 5906 56 9 6 31 8 195 118 75 91 10 63\n1\t11 3377 13 4052 3 24 71 7 4193 94 1 469 4 2 2906 11 12 3014 4 1 289 27 6 2 1574 16 1 864 880 27 8570 411 77 2 842 35 6 31 4653 1246 7 1 9103 35 6 2 287 35 6 3989 7392 173 1291 32 1 111 4240 44 1846 3726 7379 6 1 1757 4 25 221 1246 7 1 3158 13 603 74 3609 329 9 18 424 57 43 1246 7 1 111 1 21 1 280 4 3252 66 12 7613 5 127 2514 4 40 107 86 1555 4 1 7654 66 6 48 1 206 343 6 31 6011 19 1 956 1228 3 405 5 274 25 67 32 1 272 4 793 4 1 81 11 22 253 2 5117 47 4 1 2670 6899 13 92 3322 201 40 43 53 529 7 1 135 561 36 95 353 35 1036 5 1654 25 74 7628 54 24 71 52 1535 19 1 572 7 1044 4 1 2904 2 53 2922 6 28 4 1 113 1318 16 133 1 108 638 6170 3 1 344 109 5 1 147 2254\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 9 257 2892 950 5154 3 2720 2262 4 438 1377 3 6781 32 10 270 277 4 126 5 2 1377 4 38 102 2596 1 263 32 2592 5 144 114 1 4026 2528 1 144 87 33 1 1481 15 49 479 59 31 2213 6562 3 48 1032 279 62 2968 5502 1 1906 5282 74 378 4 25 3443 175 5 3973 791 25 915 30 2 6942 4 14 27 472 7 2 3156 1839 5606 395 3383 412 5469 11 42 370 19 697 36 43 190 230 4518 30 1 8830 17 10 130 128 1376 5 4477\n1\t11 247 1 272 4 253 1 135 24 23 107 1 3815 24 671 1 1890 178 12 211 378 4 292 145 273 51 22 43 1665 21 1350 11 24 713 5 2459 1665 15 3535 17 220 33 229 4206 29 253 581 33 229 511 26 446 5 1622 10 1294 1 18 40 2 1577 1890 178 73 1 1624 22 152 1665 460 3 33 131 297 55 193 1 18 790 13 4395 105 91 11 2 18 173 26 89 197 517 4 1 319 1329 4 10 399 258 49 648 38 31 41 4274 145 273 9535 8216 40 1 5 90 25 21 251 78 78 1824 17 27 40 105 5963 10 224 5 70 31 3747 29 225 8 449 11 25 104 3154 73 4 127 13 4634 4 469 41 52 68 45 23 175 58 148 1131 217 1004 83 995 11 9 18 12 89 7 1 233 11 9 21 63 128 820 65 421 80 930 89 127 663 666 2 163 38 9 135 11 54 26 36 275 667 1 1500 3973 1338 3354 73 1 40 138\n0\t2046 40 7 1190 3 3463 10 1419 7 4400 3 1 119 16 9 21 6 2348 11 101 1113 1 21 6 160 16 2 507 4 21 7769 4 33 57 167 237 47 584 3 91 121 69 17 630 4 949 3 8 467 630 4 949 57 1 445 3 184 1487 9 21 5125 102 1748 1570 1707 4113 3 9160 1800 88 359 2 21 28 54 2564 17 2743 2046 6060 480 86 885 534 3791 8 214 512 5364 1 21 54 39 182 3 8 88 70 19 15 50 500 8 57 103 796 7 2 67 11 6344 103 3208 8 143 474 29 34 16 95 4 1 5456 12 39 1319 9212 12 2 1399 15 2 280 15 2061 58 7068 1800 481 1720 1 4270 34 105 19 25 1953 8 1266 987 543 194 244 20 76 5584 3739 41 55 8402 1 747 177 38 2743 29 225 16 503 12 11 10 1525 37 78 2988 286 2320 37 4618 8 12 1120 764 269 77 1 21 69 1000 16 146 5 5833 50 796 69 3 10 100\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5129 51 61 2 156 3234 5015 3 43 119 456 11 1121 610 306 5 919 9 12 382 1 647 1137 4 2014 61 306 5 5078 3 1 4704 168 4 3 61 14 1052 3 109 1171 14 235 117 5 2278 1 346 4124 13 1 4316 4860 6 2 325 2493 17 1421 19 86 221 14 109 14 95 431 4 1 1199 3 114 2 360 329 7 3769 2324 741 32 1450 3299 3 154 580 201 1910 4 218 113 1589 131 19 371 16 1 251 3177 11 8488 100 2705 5 187 110 306 5 5078 51 61 58 749 132 6 500 207 48 40 198 274 9 131 1251 32 1 3670 1277 289 303 19 3252 4675 5 1 1063 3 1 201 16 1749 146 125 1 8585 4 1 251 3 7 1 18 11 8182 756 902 3 1278 13 8 637 512 2 45 16 58 82 302 68 5 359 50 7 2 9627\n0\t0 0 0 0 0 0 0 0 0 0 0 42 20 37 78 11 57 103 5589 1314 1 462 6 169 1930 488 16 29 225 1 567 5818 9 9934 9126 991 7829 5 3162 7 2 111 59 978 203 5435 17 1339 189 3360 278 3 1 2235 7202 640 9 6392 953 2019 86 3293 13 2450 204 183 25 203 325 3381 57 6 855 259 4 448 855 559 83 875 855 16 223 7 203 484 37 94 2 72 64 943 823 546 357 5 521 244 82 1046 1221 78 5 1 4 6657 7760 262 30 13 2120 1 462 4 1 21 2 1198 19 1 206 9126 5 90 1334 31 3207 9 1782 380 1 21 31 1253 423 1384 10 54 1286 17 10 93 199 32 323 1 423 1181 303 1437 704 9 54 24 1066 138 14 2 991 2232 19 5463 13 6 2 167 991 49 34 6 367 3 1613 10 76 1720 1253 1376 16 596 3 137 35 173 70 227 9899 2895 26 10 501 91 41 7 17 59 19 2 673 2016\n0\t7 1 21 1513 1718 132 14 7834 246 31 1971 15 2 82 1154 93 83 216 132 14 1 1085 1342 106 34 1 986 374 889 5 5466 1 4 82 8030 1 21 93 57 2 580 465 4 8 118 11 2916 87 24 2241 519 2 3600 17 49 248 19 21 41 5165 6 1979 46 2556 28 754 356 12 49 1018 6 200 7 1 4215 5 447 19 1 155 4 2 2839 5 1 272 106 60 40 2 1 312 4 1573 2 282 200 77 2 6 39 46 540 15 503 3 1513 26 89 77 2 915 4 1211 1 716 7 1 21 735 5022 704 45 42 2 9896 4722 36 271 34 49 60 1148 5 2 1117 4722 106 8624 9965 7834 543 74 77 13 677 6 2 163 540 15 9 158 66 8 83 24 85 5 139 17 8 134 10 130 26 9864 39 99 3549 1864 20 2 3210 128 6 2 547 21 3 4918 1 915 729 2593 13 252 21 6 39 2 5472 246 246 679 4 447 15 239 1715\n0\t3841 2227 6490 5 352 122 49 27 88 24 39 1783 25 1 6769 5 186 122 5 1 13 4196 143 95 4 1 120 1460 5 1243 77 569 5 70 352 49 188 544 355 573 22 33 34 56 11 13 2663 45 776 12 6068 30 1 259 1 16 19 25 1725 776 88 24 39 1172 2356 41 155 5 1 429 5 1006 16 4136 1 282 27 1371 6 13 1118 12 1 272 4 1 13 4196 114 2356 139 155 5 1 3254 94 27 303 49 307 422 12 355 45 27 12 11 184 4 2 5588 5 597 7 1 74 334 511 27 24 39 881 155 13 614 1 613 337 5 34 1 1245 4 7856 65 1 374 3 4058 126 19 1 1473 144 114 33 1337 776 2507 77 1 10 247 55 2429 16 1 119 73 1 1793 12 459 13 8750 151 47 4 2644 5339 11 930 40 7626 844 3 3264 7 110 144 339 1 102 374 24 39 333 1 6098 5339 10 12 1221 37 1 439 393 54 128 916\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 8 159 11 9 18 12 101 620 19 2534 8 12 56 288 890 5 110 8 1662 65 7 1 9145 3 36 307 422 35 40 2260 65 7 11 4314 24 107 154 1575 1886 3 1702 1464 18 47 939 37 8 339 947 5 64 9 18 11 400 9101 11 21 1818 48 2 1 18 12 162 17 2 658 4 56 91 716 3 2249 125 3 2780 15 924 95 119 3 58 7068 3 1 1132 1035 29 534 623 400 4 127 2654 716 143 209 577 14 235 17 2724 3549 3 1 59 53 188 38 9 21 61 1 1224 3 1014 10 12 327 5 139 19 2 6236 1285 3 64 34 4 1 1702 5784 5616 32 1 7299 3 1 166 271 16 1 1948 3 1 121 12 9217 202 34 4 4589 113 7655 61 8942 105 91 33 143 24 138 1097 5 216 1566\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 134 11 69 480 1 1164 3936 5 25 5189 204 69 1 206 4 9 1336 89 2 21 4836 109 11 6 313 1949 14 237 14 145 13 8040 40 34 4 1 4 86 17 1419 1 2485 3 1813 11 90 1867 1 13 1833 76 1 598 21 1926 4165 65 3 3539 11 45 10 451 5 1 3734 10 308 57 10 130 582 3948 3160 36 9 3 90 146 148 81 76 152 175 5 13 5827 36 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 165 5 134 11 7947 9897 6 1 287 19 1 7724 9 18 12 1257 3 8 467 5906 10 57 34 1 1933 11 80 1545 24 17 15 146 2 7947 3 2917 205 24 9 17 1202 1300 11 291 5 7 239 178 409 205 291 5 932 9 9508 2733 3 240 733 15 1127 1560 11 23 539 318 23 173 230 116 543 3041 3308 3 1 344 4 1 607 201 291 5 309 142 239 4971 871 1080 3 55 243 346 280 76 359 23 6754 193 127 232 4 1545 662 16 17 8 24 5 134 8 337 15 2 454 11 153 531 335 127 124 3 27 12 1094 36 7861 9 18 6 407 20 16 3622 258 1186 537 220 43 529 22 103 1572 134 1217 16 1186 4680 34 7 34 8 12 3202 619 30 9 141 1360 1 393 8 214 12 2 103 904 1074 5 1 344 4 1 135 47 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 716 70 56 806 5 1690 2 131 36 9 57 138 90 273 10 40 146 49 11 146 1988 6 635 2639 4 1105 3467 253 716 38 1 958 33 83 24 1891 42 39 908 7442 2097 3 690 5248 22 248 109 17 2097 236 93 35 40 2 5549 19 5248 16 43 302 3 2862 35 213 56 11 696 5 2862 29 513 1 120 1550 187 62 1487 37 42 2 948 14 5 35 88 26 35 1923 32 3 13 92 767 24 5306 584 17 207 20 670 227 5 359 9 32\n0\t65 36 1 18 54 26 38 550 98 23 24 1610 8959 3 1145 37 97 81 22 1694 3 98 1108 1837 38 318 33 321 11 454 5 463 552 1 326 41 2248 47 16 2 772 2545 11 10 432 1108 13 9 6 2 3840 108 58 148 39 2 156 961 2248 1 274 65 16 127 6 37 4538 10 6 2406 16 5043 1 331 4 5099 10 6 37 631 11 6 160 5 2133 47 4 1 8437 5099 3 286 72 24 5 947 237 105 223 5 70 5 1 5221 2248 94 9 27 1141 28 4 1 8827 3 3844 8030 72 34 118 444 160 5 390 28 4 1 17 48 87 1 508 5633 44 7 2 2513 3830 774 1 2168 37 23 118 35 76 2248 47 29 23 49 1 2475 131 65 29 1 13 8420 2593 13 4751 275 76 70 1 3506 11 10 6 1258 5 90 2 782 1706 18 3 39 139 16 3 98 72 76 182 65 15 31 389 18 11 6 14 53 14 1 567 5636 13 3382\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 20 14 53 14 34 1 104 4 5155 180 117 575 3 145 169 2275 11 7 9 67 451 5 1812 49 1 794 109 1 82 1296 10 1419 93 2 46 731 1 630 4 1 82 104 1899 9 46 731 1 2845 4 34 4 199 6680 1936 7 9 46 8932 14 776 666 7 28 4 25 5330 5278 5155 114 20 2264 32 1 2927 257 2845 6 2 46 1502 178 16 79 7 9 18 12 283 19 1 3180 1 1373 4 1 11 61 314 49 2374 6672 115 13 8568 3 7 5 50 3100 2374 12 20 2 3 14 2 729 4 698 27 12 93 2 51 22 877 4 9661 3 11 2162 1 3052 4 9 3215 130 8 1113 851 390 2 11 1314 1241 8 2474 5268 27 6 2 5 284 38 1 80 609 3100 4 1\n1\t0 520 1414 21 1 4650 4 1 7066 993 1282 7719 12 377 5 26 274 7 2 3047 1444 142 1 5976 4 7 80 4 1 802 61 829 7 19 5631 774 375 6866 5635 642 1 3 2473 7244 50 2319 796 7 1 21 12 73 4 102 5884 1 21 1972 7 50 488 4509 1 233 11 50 5305 7607 12 2490 14 2 16 1282 7719 285 1673 4 375 168 642 1 205 415 61 346 7 3 205 50 435 3 5305 3017 1 233 11 60 12 2 15 44 155 5 1 443 16 1 6668 178 14 185 4 1 1673 4994 8 39 405 5 1999 9 67 16 958 21 3 1 21 554 5363 305 973 6 595 6 46 109 248 15 679 4 238 3 121 642 375 168 106 773 7719 2148 2 627 287 8 381 10 3 54 112 5 70 2 138 973 4 10 292 8 192 8881 704 28 5027 14 8 24 107 7 943 18 11 4307 5554 22 534 73 4 2 46 327 21 4 1 1414 870 15 679 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 86 2 53 177 8 1150 1 18 183 283 1 545 1020 32 9 10 12 2 360 18 11 8 76 26 3301 5 50 1075 1 201 12 1529 2163 3 1147 7100 266 2 53 914 1174 8 54 348 902 35 24 20 107 1 18 5 139 1929 3 751 110 8 1090 10 260 65 51 15 1075 1 18 12 46 211 3 109 428 3 1147 266 1 5366 1086 3419 46 530 1 188 27 666 3 123 6 39 75 8 54 830 2 454 15 105 78 319 5 3218 1 18 6 78 3288 68 1 2327 6573 3 1075 15 1 1069 10 40 2 53 67 427 3 5488 1 306 1468 4 1075 66 6 23 173 751 112 15 1686\n1\t6 3 7140 3 25 4 10 34 792 5 200 122 14 60 2 3528 59 60 40 1 869 5 1405 6 815 52 2244 944 68 60 12 36 1 74 628 4547 100 56 1374 76 308 1 6 7 5413 3 2 4 2944 1769 13 252 21 123 20 1 74 628 17 243 5738 1 817 124 9381 4764 32 85 5 290 9 6 2 53 1606 10 1572 199 14 31 410 118 11 1 263 40 71 428 5 652 1 952 65 2 4744 41 3468 6832 1966 199 805 14 193 2972 172 40 20 209 5 44 330 549 4 1 6 260 19 1 1780 14 6884 39 638 6 109 1249 3 999 167 530 1 233 11 2 376 12 151 25 278 34 1 52 837 73 72 14 31 410 24 58 1138 19 849 39 48 72 64 122 50 570 5 1709 47 4 1731 37 42 20 1 74 628 779 63 10 414 65 5 1 74 879 6387 1707 1888 10 5402 245 414 65 5 1 3220 274 30 1 74 158 3 10 123 10\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 528 13 92 18 674 40 71 383 7 2672 1214 1297 1296 4 176 29 1 1430 178 69 1 8811 22 1 523 34 125 6 8709 69 1587 314 7 9452 1 1564 140 6 19 687 93 1 8196 6 7 69 38 394 2765 32 1 6473 7 62 7103 1 4215 7 305 7447 291 5 90 10 478 11 33 62 486 1363 7 3 2246 202 34 4 62 238 168 22 383 7 9452 1 178 106 33 64 2 526 1299 200 1473 6 37 1429 11 33 114 20 55 96 38 2708 10 5 5350 4923 33 39 4440 1 5350 4923 75 87 8 118 10 73 8 24 11 2265 33 22 39 19 1 5 90 184 19 1 8 87 3953 1 21 1350 5 8269 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1923 32 1 4131 121 3 1 903 3 3936 640 9 18 247 105 565 906 11 153 597 78 18 20 5 87 20 351 116 85 19 9 158 55 45 23 149 725 2572 32 14 8 1322 99 31 3438\n1\t40 881 19 5 2 84 934 4 1246 7 1 1033 1926 14 2 21 7392 846 3 2254 32 1 74 799 4 256 1 443 19 79 72 63 64 1 4 2 1040 103 487 242 5 842 10 34 689 72 93 64 4251 4 1 1703 438 3 2328 11 22 20 198 41 5644 488 9 6 2 5227 899 16 95 2342 5 1555 15 31 1754 115 13 677 22 37 97 5089 2103 17 1 80 1577 3 1618 529 3970 2 18 7 66 72 64 2 3100 1464 1757 101 4872 3 643 30 2 72 2033 3952 3679 3 3585 11 1 3850 6 262 30 2 3100 583 3 1 185 4 1 1757 6 262 30 2 3049 10 6 2 2050 1577 799 11 7350 77 1 5151 601 4 1401 3 1 111 537 216 3952 1 5113 4 1 1217 234 11 22 660 1217 2308 78 364 11 4 2 3049 115 13 252 6 78 52 68 43 408 502 9 718 2291 1 7016 5984 2421 3 5903 4 1758 960 1127 691 5644 3 109 279 115 13\n0\t193 60 276 29 268 11 444 121 7 132 2 7237 2876 13 4833 9 6 1 232 4 21 8 63 320 283 155 49 51 61 128 429 3050 200 1 913 3 33 314 5 1483 930 36 9 14 1 957 18 19 2 15 43 953 18 11 12 475 253 42 111 5 1 906 7 9 3575 80 902 24 5 5682 127 818 195 197 1 839 4 101 185 4 31 410 3 2966 691 29 1 412 73 1 21 6 37 1634 66 951 13 1665 460 242 5 650 19 874 73 1 1278 83 321 5 41 15 126 5 16 4559 447 1025 17 9 531 907 33 152 70 5 1271 43 456 11 22 377 5 5379 2 67 68 4789 41 488 33 34 1917 6984 29 288 8222 49 242 5 3218 420 202 4110 2181 32 9 526 45 44 129 247 377 5 26 31 2706 1916 3 444 152 2621 29 268 5 87 31 6049 66 39 863 1 9483 13 777 327 5 176 16 1 1061 7 34 3 207 48 8 472 32 9\n0\t895 8585 32 2268 27 191 24 71 2 2280 206 35 57 2 254 85 355 216 77 1 1926 3 378 308 7 2 136 12 340 2 3556 263 5 216 1566 25 104 22 34 1903 879 3 1797 93 20 4 105 298 13 93 20 995 11 9 6 2 18 17 286 10 52 811 36 2 28 41 436 55 14 28 32 1 9 6 4 448 650 664 5 1 233 11 9 18 165 383 7 315 217 1227 1874 315 217 482 104 32 1 396 24 2 772 288 507 125 10 3 9 18 5710 58 13 777 2 243 678 2364 283 4526 7468 3 2820 3 25 1301 14 730 4231 371 7 2 10 247 1 59 18 1478 7 193 3 27 54 396 2133 65 7 127 574 4 484 396 311 14 2085 8 497 5774 2791 63 128 595 335 133 9 18 664 5 86 1224 220 51 6 169 31 1234 4 10 1124 7 9 108 1 18 152 2071 31 918 7927 16 113 215 13 4550 2304 103 18 3 7046 32 4526 13\n1\t32 1055 6368 5 4012 101 7038 30 1 3843 49 60 8924 102 3 294 60 6 2161 5 187 126 1 112 11 33 2421 8 228 24 1525 7 50 164 41 95 583 4 2550 41 55 1 908 822 4 60 5770 61 929 5 2 30 43 1173 4 2305 114 8 117 1271 1 36 1 8297 35 5 1 3063 73 60 88 20 1231 5 44 844 5 414 7 17 963 1843 5 1 13 858 1 178 155 5 1 8351 1225 295 5 31 2841 429 774 1 7105 11 60 7115 32 44 2113 5 1291 32 101 2954 7 2 408 30 3 25 379 9796 204 60 762 2 170 164 654 6964 35 270 31 796 7 44 3 44 5 176 29 3 186 8481 16 1 3036 60 89 7 44 500 1 1966 2986 2734 47 34 1 931 3671 17 100 1435 3548 86 120 5 1 272 106 8 343 95 7 1 7116 292 1 6706 278 30 5429 1981 14 4787 17 2670 1327 3 1 866 570 168 652 2 147 2157 5 1 644 330\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 137 4 199 1248 35 6834 105 518 19 1 178 5 1116 578 2503 1867 1049 199 1 111 7 9 84 13 92 804 6 806 797 4980 762 346 569 2643 3 17 1 7853 3 4 9 18 1 606 8153 7 34 4 2533 115 13 9 213 779 6 10 84 17 10 6 2 686 18 38 7077 3 1 1744 11 6 1867 13 9 3 1116 10 16 48 10 424 3 16 48 1867 76 8 336 9 18 1758 65 14 2 1886 7 1 3 23 76 854\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 418 142 240 17 10 271 224 3069 7857 1 59 53 353 6 6729 3 27 40 2 46 346 2482 660 40 58 1362 1548 41 3208 40 52 7 2 156 663 68 3610 40 7 2 2463 1 178 7 1 8768 6 37 2971 3 301 4178 3 34 1 238 168 176 36 2 658 4 957 1472 19 2 3103 42 1853 311 9185 13 2519 45 12 89 7 1 4198 41 2032 10 54 26 1050 2 345 6733 897 108 1 233 11 12 89 7 8699 6 56 5882 6 51 132 2 177 14 2 897 1973 45 814 6255 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3074 6757 751 31 161 429 106 2 1798 701 653 172 989 7 46 91 5538 15 1 4748 4 110 33 899 15 62 752 9342 3 390 417 4 62 6589 1922 3 690 245 3664 795 780 7 1 1828 1 469 4 7 4777 7788 2 813 3 33 597 1 2416 2 1085 9490 13 5851 429 11 5 6 2 782 3 28 4 1 113 767 4 1 251 429 4 1 885 2 3 1 1697 2582 22 56 2332 50 2400 6 13 9267 1427 5745 429 11 5\n1\t22 3 1 4365 22 146 36 656 1 9829 22 14 53 14 1293 9052 7775 6 1 5596 3 3775 6109 3093 1374 22 5 755 421 23 361 17 22 20 115 13 150 173 139 19 105 223 15 127 7334 17 479 34 169 722 3 37 22 1 49 27 3451 27 61 7 1 5136 65 15 3 1 1189 6 1463 14 1751 8118 5009 23 118 11 1585 2 4056 3 35 87 23 1331 1745 1 17 2201 4 49 33 2364 1 147 1561 275 6399 11 10 276 1051 1352 83 474 48 10 276 11 334 6 160 5 26 404 13 3514 297 6 475 827 193 1 7383 30 9 85 6 169 3 5136 65 7 1 9857 15 1 260 13 3440 89 10 478 105 4709 5848 17 10 6 5906 1 374 76 335 1 4 4487 3 1 1449 3 1 2390 112 471 1 1995 76 70 2 2382 47 4 1 52 5872 824 4 1 67 1018 22 1 1013 33 780 5 26 1185 7 66 524 33 228 175 5 1382 15 1 3 867\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 59 1548 7 9 18 6 676 5 539 29 75 91 10 56 705 15 2 119 11 151 116 855 846 176 501 3 121 66 6 202 14 501 10 196 50 1735 6460 28 4 816 3969 46 362 124 106 27 515 143 24 1 1935 5 26 148 1 113 293 1380 4 1 18 2903 4 2 259 2147 65 7 31 862 1429 5997 1198\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 517 38 97 911 209 5 1960 738 126 7595 3 13 150 314 5 812 137 104 32 1 3818 5 518 11 61 676 4 2703 17 127 147 159 22 477 5 90 137 124 176 36 33 128 5 1 166 11 137 82 104 61 37 1134 29 9576 17 195 33 734 2 147 952 4 11 90 1 5715 5 349 161 624 479 4229 29 230 36 479 5121 3 13 252 18 6 2 3790 4 509 7994 48 1 898 40 653 5 3147 25 442 1336 71 3638 5 235 53 220 55 814 8 12 128 619 5 64 11 27 57 235 5 87 15 146 9 6149 12 261 619 49 1 1324 112 796 590 47 5 26 28 4 1 114 261 20 118 10 49 33 74 159 5619 59 275 35 40 100 183 7 25 41 44 727 117 107 174 1540\n1\t27 1108 432 2 3045 129 5 3119 3 2 3098 628 14 72 64 122 25 157 3 685 1793 5 2057 13 724 1 113 3117 4 1063 3 971 22 34 16 197 2 2262 1440 1401 1375 16 40 2 9217 4941 2359 3 4837 2961 61 4462 5 1 4948 220 62 113 871 61 1227 214 1339 19 1 189 589 3 1211 2961 7 933 6 29 25 1726 2496 1202 17 39 2171 2828 77 11 2864 3 11 12 25 2093 3190 6 20 169 65 5 1 1446 4 25 17 27 6 30 58 907 565 3 4 448 51 6 1334 30 25 276 5 2681 309 127 103 17 35 422 88 309 126 15 132 7529 3 8 24 20 274 47 5 1 2766 4 6369 3993 3 5529 3 1314 97 4 62 1482 22 1409 3156 11 8 112 17 123 188 11 55 1 113 4 137 88 100 20 59 123 10 15 1 6948 976 466 41 1 3847 10 3505 1 238 870 15 267 3 7 2 111 11 156 1482 24 248 183 41 4836 3 207\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 91 3 16 2 72 2323 53 257 1063 3 22 738 1 3781 1293 1 2377 9843 6 1274 738 1 401 681 7036 7 1 1162 17 72 90 1909 489 7164 9 28 213 258 565 42 258 687 3 3705 573 383 7 102 222 3 1228 15 1779 2132 298 416 952 121 3 64 48 9 7891 19 1 443 45 492 12 37 4187 19 403 2 783 5492 339 27 29 225 24 248 2 53 783 5492 3 45 1 18 12 383 7 323 28 4 1 6741 19 990 3 93 2 7302 4 2000 4 1 144 7 6009 442 87 72 369 11 2134 1618 11 10 26 7980 14 20 59 192 8 1341 38 9 158 145 3 52 68 2 103 1 473 47 43 4253 2688 72 2230 2288 330 1090\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 179 9 12 28 4 1 113 104 180 107 7 2 46 223 290 10 12 2 84 67 427 3 1049 11 81 22 37 7202 7 34 2329 4 264 3635 24 1901 10 5 34 50 8 198 335 2 53 67 427 3 9 18 57 28 4 1 113 180 107 7 2 223 290 8 88 64 512 246 2 752 3 403 1 166 188 11 9564 114 5 149 47 52 38 44 157 3 10 1049 75 72 20 59 24 486 15 257 2752 17 93 24 546 4 257 486 11 72 83 1555 15 126 69 14 10 190 20 26 7 62 113 796 5 118 34 1 1733 4 188 72 83 87 11 72 22 37 2586 13 150 176 890 5 174 132 141 3 76 359 50 1128 689\n0\t0 0 0 0 0 0 0 0 0 0 0 0 58 1262 737 618 207 20 55 1 731 9119 75 123 10 3425 7 86 5 26 2 3909 1992 376 13 92 2441 3503 1 1257 633 466 2 1420 2934 41 236 2 249 13 3012 531 642 1 465 115 13 2 119 11 1 4 1 2682 37 3980 37 3629 13 1118 6 1 976 466 5 7211 27 40 5 90 34 1 415 7 1 18 3 7 1 410 341 1 1040 3677 4079 481 26 37 14 5 5 1 976 2996 3 27 173 1 3384 2456 13 92 465 6 7873 1304 444 128 7 2 40 59 28 14 1 11 444 89 2 895 47 2562 2 2262 651 228 24 1789 10 142 94 1 112 1146 106 188 6652 77 1 1902 115 13 2136 173 352 507 53 16 63 284 10 7 25 543 11 27 1148 140 34 4 476 244 1866 34 1 1451 4 2 3657 9 387 27 28 47 5 1 3199 3 58 28 63 842 47 48 5 1690 14 27 270 408\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9280 1 4 690 9 5498 3 400 215 1189 7 954 2053 4 847 140 414 238 6 38 14 237 5708 32 1 692 3425 14 235 89 30 3101 9296 7 25 2335 6547 120 132 14 1 1238 3101 3075 4 2 4738 4 7038 395 5185 3 8682 395 157 77 2 1269 2606 4077 1 6879 566 189 1912 3 7 9 1 759 19 1 1077 3753 20 5 24 1066 17 936 33 1405 42 2 148 5787 11 8 24 57 5 99 9 3034 2 323 32 2 249 4 1 324 608 51 6 93 2 11 224 1 1587 16 86 1919 1042 608 220 1 21 6 1286 19 1771 205 1531 3 638 1066 19 9 572 7\n1\t5 139 1137 25 2293 6 2006 30 2 282 4716 35 2307 19 44 1916 5 2635 60 12 49 27 153 751 32 550 850 2056 1 613 22 94 122 1221 94 1 1916 4 1 282 637 126 7 5 2693 13 48 2 6093 13 1118 45 23 88 90 34 4 9 11 6 1 212 804 516 1 102 7855 1 8959 1 282 1 7077 1 1 236 162 17 482 9 6 31 240 1292 8 5425 8 93 485 29 1 85 4 490 1099 269 57 881 7 1 141 3 8 128 57 31 594 303 7 1 108 88 1 358 171 90 9 216 3 359 199 2983 16 4417 292 1 171 9011 4417 269 6 2 223 85 3 51 6 674 434 1276 7 1678 4 9 108 17 1 102 1041 912 22 417 15 239 82 3 1 1392 24 132 84 15 239 1885 11 10 12 299 5 99 16 1 494 3 5471 200 1 102 1405 51 22 679 4 3018 8817 17 42 52 4 62 4645 5 127 824 11 1391 90 9 21 279\n1\t44 435 5 1126 60 1 4882 4 44 711 35 649 2 1658 8635 1352 118 48 33 87 5 1 8 159 340 25 60 6 5227 227 5 5068 3 139 5 1 401 106 44 1212 3 1817 2162 16 1 4 6136 2453 2 587 136 9 3047 185 4 1 21 40 71 14 5 1 415 10 6 2 1267 233 11 12 46 7736 7 253 1 5445 13 92 206 2969 31 3 6 58 3421 5 1105 2331 60 470 2 21 38 3 3 2 67 4 1 733 189 102 9757 28 4 912 5 1105 882 5 8612 44 4264 7 2 21 60 1066 19 16 3077 1166 60 57 5 90 3301 1 1124 326 3047 1656 7 639 5 24 44 21 7004 11 10 557 37 109 6 2 3362 5 1631 2969 3 1 304 1106 30 5572 603 435 12 2 32 1 795 29 187 1 4004 5 35 867 12 162 72 88 195 2969 40 620 1 2738 5 26 2627 11 146 88 26 248 5 5608 1 10 6 1697 11 1 665 114 20 1236\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 199 1030 5 549 1 2736 613 35 34 549 200 5170 5 1 3495 3 114 23 118 11 6862 720 77 8524 49 33 582 216 3 139 224 1 9 40 165 5 26 28 4 1 80 3206 124 15 1 210 1103 4 7537 2736 613 11 40 117 71 19 1 6233 6154 8 63 64 11 1803 9374 228 24 965 1 319 5 946 25 155 6723 1037 17 48 1 3106 2 53 353 36 1539 941 12 403 7 10 6 2 13 68 1 527 402 445 6733 21 4 1 31 594 3 2 350 4 2436 3 85 8 76 100 70 9142 13 5827 10 36 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9607 296 4808 18 40 71 224 257 3 9 28 6 1 210 28 4 126 513 10 153 2005 1 442 296 33 130 24 2165 29 218 13 252 18 811 36 39 2 439 1665 18 66 33 8410 1 462 296 4808 778 49 8 12 133 9 8 343 36 8 12 133 2 264 1199 10 153 1310 36 296 4808 29 513 10 40 264 623 3 10 6 78 52 8681 3 40 97 52 447 168 98 1 82 296 4808 3648 13 150 83 354 10 1218 152 8 83 354 95 4 1 6300 4808 502 39 1382 15 1 327 215 13\n0\t132 168 7 2 18 11 6 400 20 965 16 1 13 92 82 2223 4594 7 1 18 12 11 51 247 95 425 189 1 584 4 264 154 67 554 276 14 45 10 6 556 32 264 7020 256 371 5 921 2 4412 119 4 2855 128 40 5 825 2 163 32 104 36 106 1 206 789 1 425 632 4 1 264 7523 1102 5 921 2 425 13 136 8 12 1 18 746 275 11 1 18 511 87 53 73 1 462 4 9 18 1583 65 5 1 604 3 6 1050 2 91 604 7 17 8 400 186 50 820 30 667 1 18 76 2197 20 4 86 17 73 4 1 4 4594 11 7 1 108 3 49 206 36 63 90 132 580 7 1 389 857 4 1 141 95 560 511 24 2052 1 18 32 29 1 1009 13 1226 8691 16 34 23 559 424 786 925 133 9 18 29 95 10 213 279 2 4808 11 23 946 16 1 51 1314 22 138 104 19 856 8052 3990 66 22 279 133 52 68\n0\t41 37 341 207 31 594 3 2 350 4 50 157 646 100 70 155 805 1479 23 46 42 91 227 1 250 120 4 9 18 24 1 931 952 4 180 587 138 571 300 16 3924 35 12 837 2160 39 1 74 1194 269 41 37 4 1 18 106 2257 129 266 11 761 8726 4 2 562 38 2966 34 5 1 3235 57 50 113 493 3 8 9368 660 7579 8 553 50 766 57 52 3 29 2532 1 120 7 1121 350 14 5017 14 1 5385 61 7 9 2908 42 761 5 99 4531 35 291 5 24 58 2481 38 1412 7 62 4322 3 230 479 162 52 68 8492 5 8727 3 1 4 75 1169 145 273 9 18 76 26 52 1458 381 30 137 243 20 4783 7 1 9069 4 253 52 1618 157 4331 3 98 536 15 1 94 399 2176 2 18 106 257 950 3 2594 414 3472 117 94 59 94 8077 3 6353 19 102 82 3242 486 62 5763 20 5 798 82 6035 3 2098 39 5 70 3617 13 3382\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 74 159 9 18 38 910 172 989 3 24 100 1837 110 42 1325 829 3 1 67 863 28 16 1 389 290 42 832 5 241 9 12 89 7 14 1 901 6 128 1684 2087 3 56 151 28 4630 145 20 46 3260 21 4568 618 1 293 363 7 9 21 22 1442 1078 49 9 12 1001 7 4637 1 121 6 5670 3 1 333 4 706 3 296 171 169 8 937 4323 1 305 37 195 145 446 5 99 1875 8 8 496 354 261 942 7 8946 598 124 5 99 476\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 143 504 78 32 490 17 8 24 5 920 8 12 3343 19 1 2435 1094 2 156 268 285 9 135 45 23 22 20 9812 5888 7 1 74 764 1507 9 228 26 2 21 16 1038 45 23 22 1 574 11 54 335 133 5819 6604 16 31 594 3 2 6869 42 407 20 2 216 4 1073 17 340 1 1879 9 6 5 952 1 372 2857 16 830 34 4 1 1210 124 15 62 30 2 3608 4 2226 41 37 3 64 48 23 4675 5 745 9731 3 25 3201 16 283 9 2086 8 176 890 5 25 398 4471\n0\t2 934 38 44 101 295 16 37 3 48 12 15 1 3309 9536 29 1 145 20 55 160 5 70 77 1 233 11 1 60 1390 16 621 7 112 15 3084 71 3038 30 138 145 39 667 11 1 647 1 4893 3 1 119 662 9253 47 227 5 90 31 55 595 471 1608 3 1 210 1871 7 50 1520 6 1 5424 333 4 1 80 3407 19 8574 24 1 1132 45 8 61 8 1266 4105 145 34 16 415 101 35 33 2140 17 3740 7 1756 5730 172 4 76 3 2278 6745 24 8 20 117 1887 75 862 1164 44 5468 73 137 1278 22 232 5 9 141 36 50 82 225 430 18 2233 6 1 2818 4 1 20 1 1488 8 63 64 205 7873 3 7 127 871 15 2 138 4342 1392 3 13 252 728 196 50 2400 14 28 4 1 210 104 180 117 1130 85 778 145 39 1096 2 493 79 44 2388 37 34 8 1130 12 290 45 51 61 2 111 5 90 9 753 1580 3108 420 87 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 491 11 9 18 498 47 5 26 7 28 4 50 94 513 10 6 30 237 1 604 755 210 18 8 24 117 4164 13 2078 59 24 8 117 71 9 1120 183 20 16 52 98 1 1035 29 623 11 865 10 22 20 55 542 5 355 17 28 4 1 4 50 2333 1056 94 1 74 46 2304 1871 23 2292 5 449 11 1 82 546 76 26 29 225 1056 828 23 449 7 10 59 271 5523 32 3617 13 92 18 40 58 67 279 1083 5216 3 7153 9 277 1287 28 63 59 449 11 30 43 6871 34 4307 5554 4 9 18 22 433 2681 3 3071 100 8745 25 1191 19 2 443\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 292 8 24 20 107 9 6466 7 125 2290 172 8 63 128 320 75 1 3922 189 3 901 4 3102 2766 1 333 4 293 363 12 253 2 52 7006 243 68 1083 4 1 471 1 102 2639 180 107 61 2484 3 1 171 1030 5 1271 62 221 1587 20 39 1101 37 51 6 2 4287 10 123 20 2600 1 67 738 1 201 9662 14 9819 6 1 80 6798 5 2672 1901 5 34 4 117\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 2 900 351 4 1686 1 397 6 3652 1 293 363 22 1634 7 50 913 33 57 1 4344 5 256 9 21 19 388 654 14 218 73 4 1 1246 4 6205 135 273 11 23 63 149 138 203\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 850 7913 114 10 6259 4789 9 18 10 12 28 4 1 3173 104 8 159 4 768 3 8 24 5 134 8 230 7 112 15 1159 60 12 84 7 9 13 278 12 1485 3 48 8 338 1 80 12 1 1769 3 1 9041 10 12 491 23 63 348 11 33 256 2 163 77 1 18 1 624 61 13 150 449 9 878 1605 3 2890 63 751 1 141 1 857 6 1477 6 46 979 3 145 273 2890 22 160 5 36 110 7913 2275 199 308 52 3 58 560 1 18 1196 37 97 44 3624 3 9041 6 46 46 1494 3 1 624 19 624 178 6 2713 5376 1 28 106 60 276 36 31 42 2 191 64 3 8 449 2890 1555 50 7444\n1\t2 17 27 40 2 4790 4594 1205 5 97 4 27 153 175 5 7961 4315 5176 8056 1 3216 15 7110 3 55 243 68 272 47 1 1906 13 6 1 4761 1854 4 4832 3 17 896 73 4 25 873 6277 5 26 1 4 91 1 178 7 66 74 255 5 15 1 2291 1080 1 873 1782 5 5 6808 15 1352 365 48 23 22 17 495 7450 25 47 8919 9 14 3 271 295 7936 2224 165 11 3332 6 128 2 465 7 1255 5558 7 1 7220 13 3 24 1 166 70 1 4436 770 889 397 3 62 8481 5 1 4572 457 450 7 770 959 9 33 239 24 5 186 2 1981 32 1 1533 231 1496 52 6 31 631 5821 93 1367 11 1304 42 1164 49 2980 75 27 57 5 90 2 1228 5 25 4572 16 4636 126 361 3 1891 406 7 1 141 123 610 11 13 92 119 3 86 5836 22 2 103 17 3255 9 6 2 1211 45 23 63 6330 1 1324 6975 51 6 2 84 67 38 3\n0\t3 7 1 330 441 2 526 4 24 62 3533 757 386 49 31 9800 270 29 246 25 3830 3377 13 92 1028 6784 6 31 525 30 846 3 206 3360 29 253 2 1028 327 3486 17 15 59 102 3313 10 621 8304 3752 3 207 20 1 59 111 7 66 9 402 445 840 739 1082 5 1 121 6 2256 1543 988 14 1 685 28 4 1 453 8 24 117 1 2840 22 1 263 6 236 2 447 178 15 1580 3 1 322 11 13 2044 26 5739 43 4 1688 6016 6 1535 2243 1 4568 7438 14 120 549 140 1 1692 6 2 4312 3 988 840 6 31 6 8103 1237 22 827 2 543 6 5905 22 3 51 6 2 8370 127 39 38 90 1 21 17 26 1 1028 6784 3195 2 7 1 6926 55 16 7903 902 4 13 150 187 1 1028 6784 17 3081 50 1020 5 535 220 8 143 70 5 793 1 21 15 1 5576 4 5411 2243 8 24 2 11 31 1988 7684 511 24 89 11 78 4 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 57 2 53 441 17 12 758 224 73 10 143 24 227 203 21 824 3 3151 10 12 36 133 2 414 238 5256 10 54 4 71 138 45 9 67 6 48 33 7412 32 1 357 4 1 74 18 37 33 88 4 262 16 106 1 251 12 6034\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 83 474 75 97 91 746 5481 4044 9 18 313 141 40 10 399 84 4 3596 3 13 252 6 56 2 46 747 141 46 6270 8 83 175 5 134 5 78 2425 20 77 685 295 1 640 17 8 76 134 21 6 46 5222 51 22 37 97 684 1830 11 139 140 127 4386 37 97 5 1 28 2769 7 1 135 8 64 9 14 101 46 1087 3 101 37 3715 151 1 18 11 78 52 6270 50 3157 336 9 18 1758 1095 37 97 4 199 336 2523 3 51 6 8113 5 1999 5 16 95 2901 35 40 881 140 13 3053 1113 42 20 39 2 18 16 9667 10 5 34 717 3 42 20 34 37 2642 1 18 40 43 84 1224 1301 278 1025 3 1494 299 168 189 2523 3\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 15 79 19 102 6647 14 2 635 8 12 32 1588 3 19 7 2 913 136 8 3959 1 3 57 3212 66 1160 2122 2022 665 2261 2 2369 28 534 366 16 1 46 74 6439 3 2926 2 157 8 100 88 24 57 7 6453 8 1155 50 231 3 4126 38 450 816 6 31 161 164 603 379 3 583 24 205 1436 3 35 486 818 7 2 346 913 31 161 164 35 6 195 197 2 379 603 374 24 1866 1136 3 414 237 295 7 174 8 192 316 7587 1 5945 532 6 2 1842 15 46 1164 1154 4 5459 2 3049 220 2 1052 7805 40 2260 189 161 816 3 9 170 816 271 7 1776 4 122 3 475 122 32 46 1164 3 2244 8292 29 1 182 4 1 67 51 6 84 1560 220 664 5 43 10 181 11 1 583 6 160 5 1621 275 35 40 1619 2 2083 733 15 550\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 154 308 7 2 223 136 2 18 76 209 385 11 76 26 37 489 11 8 230 4565 5 2979 1098 45 8 8445 34 50 663 3 8 63 552 17 28 1898 32 133 9 141 75 84 76 26 50 13 8212 5 905 50 4784 4 8000 16 9435 51 12 2 668 5175 154 681 1452 51 12 58 129 5064 154 129 12 2 72 57 2112 2253 259 35 6935 3309 2118 2112 966 1 263 343 14 45 10 61 101 428 14 1 18 12 101 3812 1 397 1548 12 37 862 402 11 10 343 36 8 12 133 2 5811 298 388 24 1 7896 8223 966 117 55 107 2 18 6 355 527 3 527 15 154 147 1 1292 16 9 18 2397 37 695 75 88 23 139 540 15 2142 3 2 3507 4 595 8720 1488 17 1961 79 49 8 134 490 188 337 1989 46 1328\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 20 2587 1855 816 1 1306 11 6 1 302 1 726 4525 27 404 3 1783 122 5 70 1 602 7 1 3060 8 1457 1137 4 29 1 85 37 1 524 12 1044 1981 1949 154 1393 8 93 284 2536 347 3 159 1 3663 19 816 12 2 31 3 2 27 4826 5 112 2536 3167 17 34 27 405 12 275 11 27 88 7130 49 60 511 369 122 87 11 4078 27 643 1159 1 2059 921 4 7130 8 96 42 2 351 4 319 11 27 6 128\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 83 70 6038 30 1427 3328 21 6 2 46 91 21 66 831 40 71 14 28 4 1 203 124 117 124 130 932 132 2 1401 11 285 5309 81 130 62 4418 47 136 517 38 2 306 203 6 58 148 203 29 34 17 48 72 149 378 6 39 2 525 89 5 932 4290 789 14 5 75 53 1 1035 22 45 33 22 264 32 11 6 53 7 1 21 6 1 793 4 1 1 1863 106 80 4 1 171 61 784 53 736 38 1 171 783 5492 276 36 2 1898 35 6 100 56 273 4 48 27 6 377 5 6 20 78 5 26 367 4 2 353 35 16 1 80 4 268 6 3297 2 635 321 5 1844 1 91 6882 16 1 481 26 5503 14 1 21 40 71 89 3 345 9135 6 20 2191 5 90 95\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6939 55 88 24 1789 142 2 2921 4061 36 48 840 40 248 15 9 528 391 4 9 6 2 2221 7 75 2139 3 63 26 5 134 1034 23 24 126 5 3051 1 840 666 24 4721 1732 1 4 5039 6315 1483 1055 3 54 23 134 2 6 31 3083 7 1 2857 2531 3 7106 22 602 7 87 20 1594 2506 4 5039 14 28 4 137 770 7 1 2857 16 1 226 1801 172 8 24 20 107 95 2774 5 1594 5039 50 7106 4 9 18 3 2628 125 1 226 342 172 876 79 5 1 2582 11 5039 6315 6 25 111 4 3997 731 3 58 2425 58 5067 1006 95 5039 6315 41 28 641 23 134 5039 6315 6 2 580 4287 348 437 48 6 1 990 377 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 1 210 5921 9124 56 9 18 40 2798 8 54 20 99 10 316 55 45 10 61 1 226 18 19 4076 84 171 17 91 1471\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 12 605 50 5 9 141 14 8 143 96 10 12 160 5 26 109 1613 1 2517 3436 1639 3 394 61 274 19 283 194 37 8 8 191 920 11 10 12 20 670 14 91 14 8 57 3394 17 12 128 2 237 1717 32 1 1533 1 18 384 260 19 15 1 394 349 2308 3 356 4 2466 8 214 11 1 1639 349 161 2786 48 12 160 19 3 27 12 5918 5 1 1636 11 61 605 1888 8 963 57 5 1346 11 519 1 104 83 131 1 113 5 1 922 73 10 6 52 299 5 99 48 629 45 33 90 1 41\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 48 12 37 84 38 1 382 5499 3267 12 62 3 75 33 1121 1893 5 87 235 11 33 7 9 1723 1 8238 40 31 5 652 155 31 273 1509 27 255 577 3264 35 4 2 19 1 185 4 5885 94 475 3264 69 30 907 4 31 69 3264 40 52 691 7412 16 1 155 5 48 8 467 424 45 23 179 11 10 12 2 580 720 7 1 2090 49 33 4 86 1849 98 23 3195 107 162 657 218 271 34 689 75 33 751 7 3836 1032 6 229 660 80 1046 17 1 272 204 69 8 467 69 6 5 24 1434 3 241 503 23 373 6725 94 399 2 103 100 1977\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 152 2 2451 16 1 416 4 45 23 22 1437 35 1 4347 6 2 6339 35 1478 7 4963 7 2647 7 7825 2506 11 60 6 7306 60 93 7265 1 5 3 7 66 60 7803 5 139 77 2 3 2656 4589 324 4 706 7 2 6026 60 40 3949 4 3 40 89 3367 4 3188 4231 14 29 2 3 29 44 416 4 3 32 1 4 5082 3 3 60 191 24 9562 2811 16 1286 1408 81 44 5362 5 1017 719 7 2 6162 294 28 4 5131 2049 54 2456 25 671 38 9 108 27 40 7 1 1058 576 16 62 3 4 7652 9 18 123 1 166 177 14 137 13 677 6 2 84 753 4 9 18 29 8 354 261 1078 133 9 18 284 10 74 183 5 2 13 8 1887 28 2381 204 29 970 134 5 186 9 18 15 2 4 10 76 186 227 8751 5 564 2 2839 5 140 1 4 9 2803\n1\t0 0 0 1806 4 1 435 4 1 5715 172 161 3748 8068 25 752 5 1 750 164 4 2 5 26 7438 14 2 3 24 2 138 500 245 1 282 6 5 1 7986 11 1159 3 27 380 1 5559 282 5 25 2901 585 5 24 25 74 893 2751 98 60 6 1172 5 2 7 2 2660 2857 7 3 5802 25 9377 1 8231 49 3748 3902 5 763 852 2 138 727 60 6 5802 30 1 13 87 1 747 3 864 4 583 7 140 1 3125 4 1 282 226 349 8 159 11 649 31 9811 67 7 1 1081 3978 2091 9 465 123 3097 7 957 234 206 3 846 2334 2 84 18 1 864 17 100 781 1349 41 4683 893 1192 10 6 1 2289 4 1 2911 35 40 31 313 278 7 1 280 4 2 1728 583 1076 16 80 4 1 22 3 10 6 1258 5 3082 1 754 37 264 60 6 94 97 3928 1 3837 3 182 4 1 67 6 93 46 3735 50 2400 6 13 9267 87 4 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9340 6 28 4 137 104 11 23 76 175 5 64 125 3 125 702 492 2608 6 256 7 4383 4 2 873 606 1404 5 209 5 25 569 1826 1749 4109 16 1 6448 4 48 629 94 11 6 28 892 799 94 2877 1 102 7727 3 10 6 65 5 2608 5 998 188 1413 176 16 84 453 32 690 294 3 34 22 1080 1440 83 26 6038 30 1 402 604 4274 9 6 2 7 50 1533 10 6 240 5 1367 11 1 569 442 4 12 93 314 7 298 657 51 6 2 148 17 7\n1\t643 3949 4 43 6518 1655 6862 55 6980 1 5566 4 1 1 7946 3961 12 2945 30 7250 3 156 22 770 1163 5 1 115 13 5851 226 1834 28 4 626 80 240 3 1618 453 3 16 308 6211 7 1 3179 11 58 410 54 1942 2501 14 2 1423 13 7624 5642 4 2 4412 7946 35 1141 59 16 57 86 1 76 5 87 8024 5 115 13 1833 27 6 5187 30 25 1658 7946 9529 10 6 4225 11 127 102 647 15 2738 6207 76 7727 46 13 1363 12 20 1953 5 1305 27 93 335 848 4694 35 2303 25 27 55 440 5 1151 2 304 35 289 364 68 5567 5 25 693 3 13 508 7946 6333 22 4642 1485 14 2 3582 7946 9177 14 2 3 3142 14 1 17 2501 2448 1 742 3668 2291 1240 3 3621 793 4 655 1 14 1 7489 4 127 3943 13 92 21 6 2 1214 15 146 5 134 38 161 1214 3 2 754 2281 7 66 1 91 259 5 469 136 1000 34 366 5 1653 224 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 8 83 118 144 8 1459 9 18 5 1775 10 40 2 678 462 3 32 1 3530 10 39 485 36 146 3026 154 308 7 2 136 86 53 5 328 2 21 207 1056 264 32 1 2542 368 739 3 9 21 407 12 3026 260 32 1 477 9 21 57 79 3565 17 8 339 842 47 144 318 1 182 45 1 21 49 8 1640 11 1 18 12 84 73 1 120 61 37 3015 8 179 1 121 12 1016 3 1 129 1273 56 151 23 474 38 126 3 449 188 473 47 109 16 126 7 1 714 8 96 11 307 35 4011 1 21 88 7 43 111 1999 5 28 4 1 120 3 9 151 16 84 956 3 43 53 1308 29 1 1860 4 1 1488 115 13 2595 1 4 1 18 23 373 70 2 356 4 109 9986 3 22 303 15 1 22 160 5 26 574 4 2 6947 145 273 9 76 24 2081 1376 3 130 26 340 2 3614\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 610 48 8 5627 20 1111 17 93 20 11 91 1497 7 50 1062 104 662 782 227 37 207 144 8 459 563 8 12 160 5 26 1120 533 1 389 135 273 51 61 782 188 160 19 7 1 1863 5331 17 162 72 34 617 459 575 8 497 8 143 36 10 73 8 179 51 61 105 97 1552 3 498 10 165 161 3 8 93 143 365 45 34 1 188 5749 12 9696 7 1 974 12 148 41 1265 51 6 58 2651 16 95 4 1 795 11 1 18 39 4089 19 3 49 10 475 123 209 5 31 182 23 175 10 5 359 160 73 23 22 128 1000 200 16 275 5 348 23 48 1 212 18 12 1395 48 8 114 36 12 1 293 2170 82 68 11 51 247 78 3805 32 110 300 86 39 79 17 8 179 9 12 2255 7699\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 308 316 2 21 382 40 71 6642 15 6565 9056 1 462 6 2785 14 6 297 38 9 135 1 1165 6 20 3 1 951 291 111 105 170 3 105 5 55 26 1777 21 57 2434 2106 2 272 4 4706 3 12 89 30 964 1098 55 45 1 324 143 3097 9 54 128 26 31 2411 135 1 324 32 1 1463 2 324 4 9881 3 17 10 12 7277 3 4628 16 3 10 57 43 1485 453 11 1747 23 5 4219 9 1015 181 32 1 215 21 243 68 1 1387 14 587 3 1 171 7 9 324 22 3 20 1 225 222 1470 30 34 907 1899 9 28 3 449 1 324 76 26 828 88 10 815 26\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 250 129 9474 196 643 3 5 2617 183 25 290 49 2617 2486 38 1 2082 27 6 340 1 823 4 39 5212 1086 161 3 482 561 13 743 170 315 259 7 2 161 482 823 128 36 1 170 315 164 6 300 211 45 23 64 10 248 30 31 161 482 2099 7 9 18 8 1168 65 9395 512 375 891 6 377 5 26 31 161 482 13 92 212 1292 123 20 309 14 1 6 20 9495 109 3 1 112 67 6 20 1202 29 513 1 233 11 34 23 64 6 1469 891 372 2 170 315 2112 73 1 161 482 454 307 6 377 5 64 6 59 620 7 346 1025 6 5 78 4 2 3953 16 1 902 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 91 5220 345 1667 3 7 34 46 515 31 74 991 29 2729 3164 30 1 53 81 29 13 1482 40 57 84 1246 7 1 576 30 3244 5 652 1 67 4 5 1 184 1250 17 218 6 31 2557 14 2 1850 35 3 2 163 4 86 3 35 336 8 128 149 10 1258 5 354 9 21 5 4315 33 87 78 53 15 62 17 9 213 31 665 4 110 83 351 116 760\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 878 9 18 6 6 2007 46 91 4247 8580 3344 20\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7811 13 777 2 5103 67 361 96 218 1910 4 1 4 1427 1702 55 9186 361 3 51 22 529 106 228 24 1 1224 20 314 41 262 224 1 4 1 7154 3823 42 248 15 1219 931 154 427 40 9523 3 1 2216 6 39 1907 55 1 1084 2223 18 460 15 52 6798 4421 228 24 1 3531 7 4909 6 44 427 22 1684 3 1571 3 44 823 1587 6 39 260 16 2 19 1 4999 4 6 93 46 4275 55 45 27 40 5 1017 78 4 1 18 7 3 47 4 1 231 13 1268 9680 11 1 644 1350 61 1997 4 86 2729 361 58 184 3108 58 184 606 58 293 363 361 3 636 5 90 1 113 888 141 1009 1400 26 42 5241 3 3314 3 10 4054 5 1 45 23 149 725 65 29 1 769 23 83 24 5 230 819 71\n0\t12 383 3031 14 2 3956 21 10 54 26 2 84 839 831 42 20 3 14 132 1 18 40 43 13 2409 4 34 6 1 4131 129 218 6 377 5 209 142 14 43 574 4 1355 4 156 911 831 9 39 255 142 14 2390 3 2 53 129 130 29 225 24 43 2103 831 129 1550 40 125 2 156 911 4 927 7 1 21 3 42 254 5 241 11 3719 70 1 282 9 699 297 39 181 2 103 142 737 66 6 2 1152 73 23 63 348 9 6 2 129 207 1722 3 486 2 46 2985 7240 17 72 662 117 1747 5 70 1208 4 592 13 743 2065 1329 4 9 21 6 39 75 78 4 9 270 334 7 2523 3 486 1524 186 2 155 3104 5 1 453 737 66 8 497 151 356 32 2 1255 9528 17 42 5 24 2 358 594 18 106 1524 350 4 10 270 334 19 7167 258 49 1 1921 155 584 70 4425 1923 16 592 13 1627 5 3350 10 9 213 2 46 53 2803\n1\t1071 154 222 4 8203 6444 258 276 4807 15 3174 4 2588 32 1 1592 3 1029 15 81 7 4982 3 306 55 45 2 103 1983 6 13 92 67 6 93 2 4676 2 423 543 5 48 6 396 107 14 2 2984 870 4 18 6350 1800 6 1317 5703 14 1 202 6283 506 3 1501 11 23 83 24 5 26 5697 41 763 6065 41 5557 5 309 2 1 21 6 7132 2037 4044 3 17 29 225 882 3 848 22 107 5 24 31 931 3 1872 1880 19 137 35 3 137 35 1674 2928 132 1 212 177 6 4 2 817 717 3 817 104 17 10 295 1 161 3 15 2 661 901 4 6709 1 3 10 63 230 2 103 673 7 7714 258 45 317 314 5 4 7 104 36 80 661 1607 1920 17 6743 911 63 1271 68 9238 40 2320 2 514 8888 5 25 9399 9935 2 21 66 6 14 1244 14 10 6 304 5 836 5 190 20 26 5 4325 9761 17 9 6 28 305 8 3968 20 26 9387\n1\t754 4945 11 24 653 7 1443 3 25 282 69 35 6 2 5282 69 6 160 5 186 1 37 33 274 47 19 2 6826 4 754 2064 20 1311 48 126 19 1 699 5 1555 1 1486 33 1088 5 149 174 342 3 33 256 31 17 1 342 11 3405 10 6 20 39 95 9229 10 6 28 4 1 5740 1218 1 282 6 2 2070 11 1912 2 163 3 1371 1 164 6 610 1 9730 2 3549 4879 72 825 11 362 7 1 21 3 72 917 122 385 1 1486 5 1491 15 8392 14 3708 17 15 6295 1 736 385 25 1486 4 701 3 475 34 1 6386 3337 3 187 56 53 453 3 23 24 5 186 77 11 49 9 18 12 829 20 55 28 4 126 12 2 3384 1 1667 6 3982 15 4806 7693 1 700 546 4 1 141 3 1 265 4982 1 534 129 4 1 135 19 1 212 9 6 2 56 53 108 83 773 110 468 96 316 183 605 43 3421 7 116 606 5 1555 1 3498\n1\t764 172 11 1 251 12 19 1 9232 10 4 596 3 55 1 1145 1724 1125 4366 7 1422 4 6152 7 732 10 726 1 599 1045 251 7 1 1561 330 59 5 3 1 296 1160 1045 1125 246 218 59 2 156 2017 183 10 13 3898 1 4 1 7 86 1246 3 6152 1699 5 1 397 4 2 251 6469 66 12 94 681 3299 3 2226 767 7 9597 292 2827 16 174 865 21 1310 3171 102 581 1 4 3 61 612 7 3 52 22 7412 16 1 20 105 3621 3667 2 957 8685 1125 6 93 664 5 6321 29 43 272 398 2463 6153 1220 906 31 1139 1125 66 2183 59 32 7555 5 9373 17 1 364 367 38 11 1 480 1 182 4 3 14 7511 1125 1 958 4 276 46 2437 13 659 4641 136 40 286 5 3494 1 166 3116 4 986 7929 14 82 580 1045 756 132 14 4366 3 86 128 2831 147 1074 5 137 102 1045 8569 3 8 24 154 6627 11 10 76 1811 16 4961 97 172 5\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 331 4249 16 4 1 4510 125 1 434 5757 6493 1183 54 26 256 5 13 10 776 41 12 10 4354 35 130 26 19 1 1884 33 22 1086 3 1244 3 109 279 116 85 45 23 36 104 15 53 8 214 1 67 1567 5641 169 109 260 65 5 1 6258 13 677 6 103 422 5 771 38 7 9 4692 55 294 5749 40 248 138 871 68 9 461 1 21 6 46 976 415 22 3170\n0\t202 419 65 19 616 94 283 9 7975 2908 127 61 2 46 1065 3 1370 1597 1452 1797 8 328 5 925 2721 2157 19 91 21 6799 646 186 1 3826 3 2456 15 1 17 7 9 524 2 1551 3199 6 7 1888 75 19 990 114 70 1240 1114 185 32 16 9 4989 51 12 58 263 5 1271 1294 10 88 26 30 31 6443 1951 15 1154 41 2 201 15 59 2 103 52 6992 630 7353 39 2 5731 6804 9198 1352 175 5 87 146 32 2 3540 272 4 1 1122 6 31 2158 243 68 2 3362 5 2 633 2821 19 3223 13 2044 90 188 2428 236 20 31 240 383 5 26 214 7 1 389 135 8 481 96 4 2 201 35 88 24 9 28 1095 17 6 2 822 7 1 2642 45 888 15 9 4513 551 4 3531 145 242 5 830 75 713 1177 3748 176 29 1 4547 21 23 16 277 1507 39 2783 2 425 5939 16 70 2 973 3 99 9 518 29 1925 8323 105 256 23 5 13 5644\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1110 4 1 6 407 1 80 238 3485 4 1 1125 3 6 2 514 2582 5 1 376 2283 15 9517 6132 30 1 3 1 6390 2000 2 147 469 3974 1 5285 9319 6 4475 31 1593 421 1 534 3453 3 59 257 1522 2641 63 1622 10 6739 13 92 567 4393 274 19 72 64 2 7694 4 3 3 147 408 5 9517 14 2917 3 1 1671 6264 16 25 3 15 33 24 1 13 2718 93 2928 2 3439 1112 29 1 714 3 1112 10 47 19 1770 5 1 1 469 3384 1 5285 1699 30 1112 15 1 136 33 947 16 1 5 139 2563 3 2917 40 2 570 15 9007 31 1859 182 5 2 382 3 42 59 39 4 1 1428 4 1 74 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46 264 3356 1979 7 9 135 2 7234 3 641 3530 4 558 1596 30 288 29 1 3229 8982 4 2 1228 549 30 1 161 2250 3 25 3985 2375 49 972 585 1843 2293 3499 25 435 40 6920 75 154 164 7 569 151 25 3229 1978 5 309 8016 5466 923 3291 3 70 1784 1739 1 692 49 161 164 6246 627 3 5730 231 5842 90 972 585 186 37 1228 6072 8982 6 20 3 2958 1 6206 4 5 182 9 111 4 3333 719 3 355 4508 1 1228 6072 40 5 26 253 334 16 2 2729 1618 5 26\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 46 678 18 6 1031 235 89 7 1 1585 29 1 290 15 86 1676 3 4 6248 3 6554 7525 86 1380 6 205 304 3 1 171 22 5870 52 36 941 68 1014 10 1263 1 59 1153 980 8 118 4 11 152 4831 2 148 2232\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 481 241 9 428 3 470 391 4 7606 21 165 1001 51 22 38 723 53 288 802 395 206 130 96 38 9549 5 128 3 207 110 2 627 201 6 1169 168 4382 182 29 1 225 240 529 3 1 263 666 162 7956 786 4479 725 9 108\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7047 97 76 1369 318 1 203 124 1 7696 2109 1180 5 2555 142 2 1519 984 3 396 10 1066 109 69 66 39 271 5 131 11 5056 213 11 78 4 2 7 1 203 870 883 11 145 46 3 806 5 245 9 85 200 8 214 512 2 103 595 7374 42 20 2 91 158 17 42 29 225 1534 68 10 130 1718 15 86 2271 269 1074 5 97 82 873 203 581 1419 1190 3 3496 1 393 6 10 151 58 356 29 513 14 16 1 5910 88 24 209 65 15 2 8586 11 6 52 1535 68 11 5684 103 1606 55 193 10 12 262 2 2596 268 8 173 55 320 10 69 207 75 782 10 1306 1874 4 16 122 9 6 146 4 2 2729 37 45 261 1304 33 228 26 355 4 1 41 6222 479 2721 62 5623\n0\t1 1271 264 3 63 100 2210 2 1587 37 696 5 661 326 16 1 33 7454 66 40 71 4204 30 1980 5116 3 115 13 3283 5197 173 26 3038 37 1961 40 5 26 286 5111 1 968 3165 33 22 197 95 3 357 81 200 36 33 22 62 4 448 148 596 54 878 11 33 22 14 1 81 33 889 130 26 2220 30 62 3141 3 126 4 9172 3 1 13 1267 6809 2325 10 228 5731 3006 23 4 4536 41 6136 17 261 63 4099 7 2 658 4 41 549 5 2 558 2417 2551 16 2 3928 15 3 2635 5 176 1 2482 2 856 526 229 40 138 13 174 1054 2675 66 7813 2183 16 764 223 982 14 2 374 131 10 88 90 1 17 261 35 40 2 103 2258 38 423 2813 3 1587 339 2698 5 55 99 1 74 5715 767 4 1022 6449 36 8 39 1322 8 46 78 405 5 241 8 57 214 2 547 1045 983 1286 8 54 4258 10 4 3 50 1182 4 9 94 1 74 681\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 56 36 9 880 11 6 144 8 12 945 5 825 937 11 690 6 2 3 11 27 4733 142 1 983 311 73 27 2144 11 60 247 2 17 12 31 32 8 2178 9 32 81 19 1 880 60 12 56 28 4 1 138 546 4 1 983 3 9113 5 825 11 55 738 137 35 23 54 96 54 26 3401 5 11 33 63 93 812 7689 39 73 4 1 913 106 33 61 6 56 4652 8 56 36 9 880 11 6 144 8 12 945 5 825 937 11 690 6 2 3 11 27 4733 142 1 983 311 73 27 2144 11 60 247 2 17 12 31 32 8 2178 9 32 81 19 1 880 60 12 56 28 4 1 138 546 4 1 983 3 9113 5 825 11 55 738 137 35 23 54 96 54 26 3401 5 11 33 63 93 812 7689 39 73 4 1 913 106 33 61 6 56 4652\n0\t1208 1 2 648 874 255 47 4 1 5299 4 3 1 1706 35 6 19 1 1706 968 63 771 5 127 5997 8492 7 75 114 1928 3804 825 3 213 7 37 1513 33 26 648 144 54 43 103 569 24 62 221 45 23 63 5238 116 4722 3 70 576 1 648 5997 15 1 674 866 1208 1 98 23 24 5 934 15 1 82 1928 51 22 1 35 36 5 2951 1 2121 4 62 98 51 22 1 39 908 1906 879 11 34 291 5 24 2 163 4 2745 98 51 22 1 761 6753 624 3 62 35 22 423 3 4813 77 1032 37 11 33 63 1 7370 37 11 127 1032 3804 63 13 8568 45 23 96 34 4 1 845 6 211 3 279 2 2655 23 24 5 934 15 1 957 1090 201 4 3201 249 9836 11 90 65 9 968 4 2984 2048 2641 66 22 1506 1076 738 2449 144 123 202 154 1045 1354 18 24 5 333 466 120 11 22 4127 41 39 400 8 214 512 1247 1 648 5997 54\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2071 31 918 16 44 278 7 1 53 4076 906 44 280 3021 3911 60 114 20 134 78 3 485 6929 533 1 135 129 12 2 5705 98 340 295 5 1892 5 776 129 3211 114 2 885 329 16 25 274 7 1980 205 171 61 20 17 61 46 1321 7 62 2237 8 449 11 776 2071 31 918 16 25 1835 73 11 6 48 191 24 1866 44 918 1987 60 191 24 71 2 2922 28 4 1 74 5 7195 3218 9 181 36 146 11 368 123 6281 1712 3366 40 262 31 1101 3 8 343 278 5 26 6707 4245 3 49 60 8983 60 114 20 720 7 4050 32 95 817 1192 60 2716 1 166 533 1 4692 60 59 1241 44 4050 41 1900 300 8704 45 44 609 121 12 37 7109 8 1331 8 114 20 64 110\n1\t3862 94 42 71 174 1430 1295 2 3 2 6178 566 15 2 3790 4 4333 7 2 1170 608 1 168 22 1087 3 1330 17 36 8 1113 33 22 7 2 5042 106 56 6 86 838 5 11 514 9278 49 1 22 7 1 22 2777 15 8290 479 34 1804 7 14 207 75 33 5077 19 1 1137 49 7 174 514 391 4 838 5 2252 6 1 111 1 712 6007 3 20 730 845 82 522 6513 333 395 223 53 3 93 1596 4270 4 3185 6007 5 41 13 6 2 53 21 11 6 109 227 5 335 3 2 21 11 40 885 14 23 176 29 835 160 778 43 4 1 3832 3 1 5784 14 109 14 1 4 541 11 6 19 14 1 1776 3 1430 16 1 1 6 36 174 386 21 1135 3 46 109 77 1 4692 29 1596 4270 7 1 7762 8 230 1 113 178 6 1 393 178 14 10 4987 10 65 102 120 8922 3 1 4 1 34 1 136 4307 5222 6018 3 7 2 7215 4 5871\n1\t34 274 7 1 234 4 2404 2114 15 676 1 166 833 4 1 131 191 139 778 7 1993 5 3 3025 1 124 2450 1 6328 4 8712 131 5720 5499 3 97 4 1 166 607 13 1601 22 5032 3156 4 62 870 17 8 191 920 2 935 16 664 5 42 1428 2157 3 466 578 4232 962 7 2660 3 3265 7 1170 730 14 1 289 397 591 14 1 4518 47 6337 7 1776 4 28 226 1009 1400 205 551 1 2157 4 5697 245 35 1080 1 1428 4 1472 19 2 2404 7251 27 6 31 1409 14 27 1819 15 397 6878 6863 3 2 2660 13 3027 448 5697 818 123 20 90 1 382 11 10 705 1 263 15 43 3056 1839 2320 30 2 607 201 1738 1403 4545 259 3 258 1990 35 2932 307 224 5 8712 941 2139 22 3 3 248 39 7 1 1788 4 85 183 1 6206 4 1 368 3920 7 2836 1 3 7587 660 54 100 64 132 2 89 668 15 1 3 4 702 3 4590 89 273 4 110\n1\t2599 2633 1 861 6 955 15 297 288 8027 3 1 478 6 37 464 11 23 63 1092 785 48 81 22 1 210 177 7 9 18 6 1 302 317 133 4470 1 302 81 99 127 188 6 16 1053 447 168 1738 56 1053 624 7 808 8795 4149 1 447 168 662 1053 479 383 7 11 4717 541 106 297 6 39 2 1313 383 4 102 81 160 29 110 1 287 93 176 36 33 22 32 2 1665 145 20 242 5 26 8681 41 467 737 17 33 34 24 11 9801 3 2 4518 5786 55 1 2953 981 36 2 5121 1772 20 11 8 83 24 235 421 1665 69 7 233 8 112 110 17 8 175 50 9108 3 50 48 117 653 5 1624 36 8965 8965 3 2611 415 11 88 634 3 35 54 400 5917 3 48 653 5 1493 2944 4023 36 823 3 55 5 1432 630 4 127 106 17 29 225 33 343 36 502 3496 33 61 5028 1 160 660 4589 2831 19 2241 893 3 195 33 39 90 124 197 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 40 10 513 2364 8508 1546 3758 309 19 911 3 10 6 38 2 5440 526 4 1161 32 264 7498 3 1055 5452 11 209 371 5 5423 2 1205 45 23 99 9 52 68 3464 23 76 149 23 22 10 36 1764 429 341 1661 8 112 1764 429 8 256 7 1 401 1194 1340 502 1 580 29 2 1161 1383 1748 6 9561 11 154 635 6 91 3 451 5 1232 1245 1240 9 18 27 6 27 6 3549 3 40 5 26 556 1781 1 526 4 1161 11 87 20 70 385 29 1239 182 65 371 5 2711 3 70 3996 4 1 580 15 2 5532 1439 59 1341 4390 88 4 2 191 64 69 23 76 112 1027\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 173 320 97 1733 38 1 983 17 8 320 75 6245 8 12 38 10 3 75 8 12 3446 20 5 773 95 4916 831 29 1 85 72 57 58 37 8 617 117 107 1 251 702 618 8 63 320 2474 75 8 343 136 133 10 3 75 6324 8 12 154 85 10 310 778 1334 12 50 430 353 127 663 669 96 8 12 202 7 3 27 1373 28 4 50 430 171 5 1 1344 650 664 5 25 1635 7 1 1199 8 54 9 1125 8 96 8 54 139 5 84 7 639 5 64 10 316 3 2 2113 223 95 123 2025 789 4 2 2819 4787 5 1 251 41 40 1 767 19 2581 32 62 74\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 219 9 739 5446 3 8 24 5 134 42 1 2049 203 21 89 16 180 117 107 1 21 6 373 279 3078 47 45 23 22 2 1028 3123 9 18 4 1898 3 4858 43 4 1 802 4 1 22 1 113 117 3030 5 135 46 1119 288 8249 1633 5 62 2467 13 2134 415 15 1494 3263 76 359 23 183 1 203 86 5180 2306 3268 9 21 2983 32 357 5 4726 8 339 1006 16 52 68 656 50 59 3731 6 11 6 12 105 3752\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 336 9 1540 9 56 270 79 155 5 49 8 12 2 4163 127 61 1 663 49 1 7461 128 1049 124 19 3 45 23 61 501 33 54 1 18 1633 37 23 88 99 10 309 8 128 320 28 4 1 567 12 25 3892 3 27 12 31 27 1457 15 25 975 37 3 37 7 1 9 6 2 84 18 16 374 3 14 7644 14 1 808 29 1 182 1 82 1297 1161 7 1 2370 1 5 3 27 432 31 2085 27 196 5 414 1 111 27 198 405 1467 27 196 5 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1571 684 2876 13 5891 53 121 4 205 5921 9124 3 1147 13 9124 123 2 327 329 7 2 1736 5048 1147 4685 6 93 53 14 1 1065 16 1 413 341 43 2521 773 9124 276 885 3 6 46 8 3001 48 2 1612 287 60 705 42 20 254 5 830 11 294 621 7 112 15 768 43 2231 498 7 1 67 22 53 16 1 4281 292 8 3388 16 2 749 2526 1 226 185 4 1 18 12 169 2 1197 16 437 115 13 2521 53 108 115 13 2521 5011\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 2790 267 18 6 436 28 4 1 210 1545 180 117 575 8 130 24 587 10 12 160 5 26 91 49 1 1009 57 1 7709 5 428 19 3951 1468 11 1 1132 61 160 5 1229 52 19 23 47 68 253 23 13 252 18 6 31 3161 4 5407 91 647 3 527 32 1 1526 8185 5 1 2050 2346 5226 33 39 662 695 1 156 6310 11 22 2 103 211 22 156 3 237 189 69 133 3904 309 2 1040 16 665 69 17 55 33 139 19 105 223 3 70 2175 32 7236 29 6385 13 1 2790 267 18 8381\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7926 3 1539 8964 87 20 1851 1 260 1300 204 7 9 803 13 677 6 2 53 67 204 38 1 242 5 6322 5 333 16 1 7104 2251 906 9 185 4 1 67 6 20 1670 72 934 15 2 1521 30 1 744 7926 6 14 598 14 13 92 148 121 4675 271 5 2661 918 3712 14 12 1 524 15 44 1201 7 1 918 912 1 6729 316 266 2 2294 5001 17 9 85 60 6 2 16 1 7741 60 6 169 2 4774 129 49 60 3448 2 2972 349 161 583 47 1 60 3114 11 8964 57 340 1 583 731 1097 5\n0\t15 1 293 2170 10 56 114 176 36 6166 522 12 3638 5 1 823 4 2 103 3792 8 100 10 16 2 13 8 336 43 4 1 2231 638 1628 262 31 761 5528 9459 3 25 4 50 3 19 9554 61 294 2190 262 435 7 1623 23 4995 27 1 15 1 195 266 435 7 103 1368 37 11 12 6141 13 458 9 18 6 38 14 1202 14 482 75 1230 6 10 49 55 1 1207 173 348 11 42 2 164 3 20 2 244 165 2 331 274 4 75 6 10 888 11 58 28 181 5 1682 11 42 20 2 103 164 6 37 91 11 236 2 2452 3 3402 45 317 439 227 5 351 19 9 141 29 225 87 79 2 2454 3 87 20 652 116 2778 9 18 6 111 105 893 16 346 537 4 716 3 38 2241 160 2563 2306 827 3 8 343 2692 16 1 1007 35 758 62 374 5 1 3115 8 12 929 5 45 23 8171 19 283 31 3921 158 14 225 4479 116 537 1 1870 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 192 2 2543 379 3 72 472 43 2543 5 64 9 135 72 98 1019 31 594 242 5 1346 10 5 450 33 143 70 10 3 8 143 335 110 10 6 370 19 2 1292 11 40 549 140 34 277 4 1 580 4 1 234 395 5169 1 3920 3 1 3920 7 1 3 6 37 6269 14 5 26 3534 9 6 20 2 1825 890 16 6680 7 1 10 6 2 1825 890 16 137 35 241 72 841 257 5905 29 1 9634\n1\t122 5 25 329 3 9144 16 480 1 233 11 27 6959 25 4944 3 693 5 899 200 19 2 991 475 3 27 271 155 5 1 2203 17 25 4344 25 2098 3 307 1371 122 1129 39 183 1 182 4 1 1125 6 19 1 329 14 2 4716 4 2 1032 1464 928 5 369 537 825 52 38 94 1 3940 6 125 72 64 122 421 2 2 4 4150 27 2187 32 1 2870 11 405 16 276 29 1 391 4 3618 3 1308 3 3886 39 36 2 635 288 29 25 4967 5 190 100 70 48 27 17 27 25 8727 3 123 9 251 6 37 20 73 1 950 95 4747 17 25 3 4254 5 853 25 1153 66 90 199 560 3 1031 41 82 8121 9 131 199 3 5488 199 2730 6142 3 205 24 1 3 33 87 48 33 63 480 82 8 354 82 970 8734 5 64 1 873 249 1199 45 23 22 2 23 76 230 52 8 230 1140 11 970 24 86 300 23 63 1006 1956 32 2888 5 352 1038\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22 1 80 3 4774 4 34 157 28 6392 1757 7 218 2 3977 1015 4 4 1 4 1 3 38 2 3583 3 144 22 2772 2244 68 28 228 3822 1869 5 1 166 63 1430 657 8 63 320 28 6402 5815 49 1 12 39 2 101 4106 34 1 111 408 32 416 30 2056 1907 906 1 7 9 7877 103 3960 232 4 176 36 103 43 4 66 2456 200 36 510 508 66 38 19 236 20 55 1 4 4431 41 1216 5 26 214 675 16 1318 303 1 7273 2837 22 7388 47 30 2297 55 193 33 63 1243 38 7 1 66 40 38 268 52 9879 14 23 63 2198 20 78 179 12 256 77 9 9939 1 666 139 4515 378 4 2721 116 675\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 143 118 48 5 90 4 9 135 8 497 11 6 48 10 12 34 38 3181 8 24 100 107 2 21 36 10 3 8 894 11 8 56 117 76 702 4671 1275 371 146 11 6 979 5 550 8 96 5 1116 10 23 24 5 284 43 4 25 300 64 28 4 25 3434 8 56 36 9 2112 27 6 39 37 1213 8 173 352 110 8 159 9 21 183 10 12 140 86 570 2858 37 300 48 8 24 107 3 48 508 24 107 22 3026 8 76 1374 8 7663 45 8 2497 5 793 1 21 702 8 96 8 76 24 5 26 4492 1358\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 483 1466 10 130 225 20 52 68 1194 1452 1 1512 4 583 3 1764 101 643 61 103 222 13 8 83 787 708 17 9 28 12 37 91 246 37 97 53 3 313 6588 8 96 7 9 524 72 22 28 1825 2912 5 1784 4 9 13 1118 52 63 8 7952 8 735 3072 285 9 18 535 1287 10 12 38 843 719 94 8 57 65 32 1315 719 223 3105 3856 8 96 10 6 1 272 7395 13 677 6 58 927 189 120 571 300 358 29 1 46 3158 13 1833 23 735 3072 308 133 10 87 20 328 5 3 1236 65 73 23 76 735 3072 702\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 219 9 18 5446 3 12 496 5013 13 6732 3 816 676 57 5 1720 9 1698 263 16 681 719 883 618 223 10 152 32 1 2353 154 625 1656 4 9 18 6 4178 9 18 89 79 9235 375 984 17 33 61 1281 47 4 1965 11 1 152 909 199 5 241 1 97 8370 824 11 3380 5 391 9 18 6340 13 92 1324 1229 6 5232 3 44 1636 15 188 70 240 49 60 3155 11 60 3 44 711 24 6191 111 105 78 7 13 8905 245 378 4 9 67 77 146 1202 3 1 206 863 605 5232 77 127 3936 1552 11 100 152 90 95 356 29 513 101 31 9 18 384 5 48 34 96 72 139 140 7 1 7762 26 45 1 7344 57 10 20 71 16 1 1257 1300 189 3 6732 30 1 744 12 8 54 187 10 2 1332 535 2682\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 201 5 1288 16 7 2 18 11 6 7272 5067 9481 6 2057 17 183 60 271 60 792 5 348 44 3571 1 67 4 44 157 3 4 44 1085 13 252 6 28 4 137 104 66 40 1 176 3 1691 4 101 2 84 21 311 73 33 24 37 97 84 171 3 1624 7 10 37 10 181 5 26 38 146 82 68 1 11 10 56 705 20 91 14 132 17 15 6937 5205 6221 3042 3 508 5889 685 514 23 504 52 68 2 67 1333 2 222 52 68 2 13 16 8411\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 2 1831 263 3 2 5759 874 32 3392 1763 6 31 548 3 46 1904 948 3323 1 18 418 3 4160 65 8239 14 1 5107 905 5 3673 11 162 6 48 10 181 5 1142 3 22 1442 14 33 968 65 5 1 5150 9395 79 4 1788 3 32 1 3697 502 6 313 14 2822 8963 379 3 1 129 2842 262 30 2661 171 1539 1867 5584 1660 2587 3 3071 22 109 248 3 1851 877 4 822 529 29 39 1 260 290 236 55 2 2691 30 7163 7 399 8 343 36 8 12 765 2 53 347 30 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 53 471 53 1471 53 8903 53 1014 53 5246 53 632 3344 53 53 9004 53 5826 53 3577 256 10 34 371 3 23 182 65 15 53 13 92 1152 4 10 6 11 51 662 670 227 124 4 9 7281 101 89 127 2569 72 190 1810 5275 2029 11 36 294 8085 22 2171 446 5 90 62 1688 3079 13 8 1682 11 145 133 2 21 16 1 957 41 2638 85 3 128 149 10 1517 3476 8 24 5 8015 11 146 38 11 21 6 1907\n0\t1138 1 6492 1463 204 12 452 1 265 8 88 24 248 197 1491 11 10 12 91 1224 39 11 10 143 1179 9 21 29 13 858 16 1 1933 4 1 158 1 206 876 65 1 2821 19 3052 3 2 6554 3770 4 1 3 795 4 157 2606 1 486 4 132 14 3 98 27 876 65 1 4 9921 3 2334 31 1723 17 20 28 11 4104 79 8213 13 614 1 206 57 1544 15 1 2998 3 3884 19 15 949 9 21 54 24 71 452 245 29 9 272 7 1 158 10 77 2 526 4 5134 19 3739 4 1 3 2 1850 2015 416 66 1 206 6218 7 25 9631 285 31 3634 15 25 161 801 285 1 448 2787 10 255 5 822 11 1 206 274 65 457 2785 8 343 11 1 206 12 121 426 4 27 12 2227 53 1389 688 36 1 21 2105 1 3634 77 31 1643 19 9 933 2015 20 13 1601 7 399 45 317 39 942 7 43 99 1 74 1099 269 41 37 3 98 4258 10\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 185 4 2 147 3938 4 873 2433 605 46 1688 7896 3 3 770 19 5926 8195 48 1 873 637 6 483 1688 7 1422 4 7915 4824 3 5826 3435 1 147 3938 4 873 5348 124 2378 2 29 2094 7160 7 3553 3 2208 11 61 407 2 185 4 62 1980 6136 17 20 56 5802 7 5348 41 1 1199 174 514 665 4 9 870 6 8 54 334 206 14 28 4 1 80 240 3 1688 4 1 147 3938 873 82 1058 873 1165 1657 8 54 496 354 1483 4921 5348 3 1 2528\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 436 28 4 1 80 4499 2654 203 3156 117 1716 3146 123 865 1 1201 492 7504 3 43 84 121 30 4130 1072 13 2298 86 3608 6 46 542 5 14 51 6 31 1234 4 85 1019 19 5 1 697 13 252 6 1 426 4 18 23 63 1243 295 32 5 4616 3 20 773 235 29 2616 13 5094 10 37 97 8 76 100 13 851 2452 1028 6 9075 476 3 8 812 13 27 76 52 68 8186 16 34 1 1610 9941 15 43 3445 985 4 796 11 1 215 5733 13 252 6 2 18 72 230 72 24 5 2102 78 36 1 111 1181 4587 11 72 130 335 13 2687 2309 9 6 2 2073\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 28 4 1 210 879 4 1 2463 1 250 120 24 58 1300 3 1 121 6 2444 776 6 1 59 28 11 40 95 4045 3 1 59 28 11 6 20 3182 8 24 100 219 37 8 83 118 75 3831 7922 6 19 11 983 17 7 9 18 60 12 2444 42 36 60 789 162 38 1014 34 44 129 123 6 533 1 158 3 60 173 1622 142 101 2 3 128 26 2072 3 1 82 1753 2889 3927 103 1900 3 42 36 23 22 288 29 1 7669 6604 14 60 4263 2350 13 858 16 1 441 10 6 37 10 271 32 272 2 5 1493 15 103 4802 37 78 52 88 24 71 314 15 2257 14 2 1 119 130 24 52 200 44 3 1 188 60 123 14 2 13 42 20 279 2034\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 464 108 13 8365 456 22 39 1 18 12 565 144 8 24 5 19 11 8 83 2510 9 6 459 2 351 4 50 290 8 39 405 5 2979 2349 925 9 108 1 121 3354 3 1 523 6 39 91 7 154 699 1 59 327 177 38 1 18 22 55 11 12 2175 193 30 2 464 3 1890 1361 1 18 6 2 775 2971 3 400 1698 391 4 13 195 8 192 39 160 5 19 970 16 9 439 3717 4 394 456 4 3864 74 8 351 50 85 133 9 98 507 4565 5 2979 508 8 932 31 3110 15 970 59 5 2033 11 8 24 5 787 2 19 1 21 39 5 2783 75 91 8 96 10 705 400\n0\t4751 1 580 465 6 11 1 61 372 3846 41 29 225 712 62 221 10 29 225 343 1574 3 14 3651 5 1 2971 7866 3 22 9663 3 220 49 114 4123 87 3 37 97 29 3559 1352 12 1927 187 23 2 2379 1352 54 36 5 50 582 1027 115 13 7704 3045 799 6 2 3487 5 1 1 1254 129 35 5916 3147 217 8960 4 448 969 1 442 6229 5 64 2 94 3745 3 3 12 3 1840 4 9 115 13 54 4123 3 6607 87 8835 2249 45 33 61 2191 54 33 4914 15 2415 24 4123 101 7 1 15 2 3 182 19 2 184 987 449 5075 13 150 114 539 3464 17 8 96 11 12 39 7 4038 29 75 464 10 34 705 144 12 9 21 89 7 1 74 35 114 1 1350 96 54 36 1947 815 1 210 18 180 117 1586 31 1409 8 1662 1415 4 133 94 39 1 74 681 1452 38 14 78 299 14 246 116 522 3363 7 2 7583 136 2 3 22 9046 65 116 155\n1\t75 78 368 88 70 295 15 183 1 3920 12 256 77 322 831 6 8257 37 109 39 24 5 99 3 25 5 149 689 16 51 6 2 1884 1234 4 893 3 55 5794 39 176 29 2801 136 2554 6 396 179 4 14 124 89 16 170 1161 3 58 28 2684 9 572 1501 11 1 251 12 1868 46 125 172 1372 10 6 128 14 1494 14 10 12 49 10 310 3335 13 659 1993 5 1 5028 5972 10 6 2 1016 3 1303 1406 471 180 198 381 1 3721 124 11 368 47 7 1 9408 3 1 17 51 22 156 32 1 870 420 637 84 703 3 25 6 30 237 1 113 21 32 9 223 881 1 1102 4 1 5134 19 1 30 463 41 6650 128 2108 5 932 1560 1938 896 1 1804 22 34 105 797 1 2966 1 121 495 1364 95 580 2520 6574 17 6 407 52 68 7433 16 9 574 4 2129 1 21 6 308 316 2632 30 1 6030 7 1 28 4 1 80 548 3359 4 368 47\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 2 568 325 41 1 1125 8 24 71 1000 1450 172 16 1 398 9 431 145 1893 39 123 20 414 65 5 1 13 1843 5 94 1450 172 16 25 3571 2279 3 196 602 7 2 701 4734 61 2 8963 30 3984 7123 32 25 3940 4 5288 7 5182 271 19 2 848 13 1118 8 114 20 36 38 9 431 6 1 483 8505 111 10 6 34 274 65 3 75 6 1699 5 1 10 6 34 2253 5 13 677 22 618 43 53 168 7 3984 7123 32 5182 66 22 829 1051\n0\t610 273 48 5250 27 40 102 4109 29 2 30 723 2792 3788 25 74 329 6 5 3 32 1032 2243 9 152 181 52 36 2 27 123 49 20 770 19 329 329 3503 122 5 256 19 2 2465 3 139 77 2 534 225 207 1 113 8 63 791 1 6 20 610 14 1 1648 876 25 379 939 60 7043 47 19 62 111 5 2 136 27 1937 2 859 32 580 990 2494 125 3 2287 27 666 146 38 10 101 1 74 859 32 1032 244 117 71 446 5 25 379 649 122 479 160 5 26 518 16 1 5194 6632 37 33 597 3 139 5 1 1433 529 406 27 615 47 11 3695 40 3126 2 580 32 1057 1 18 657 1490 1072 6 7 194 17 11 56 153 352 1264 6187 1072 380 2 6707 278 385 1 456 4 25 1635 7 6949 9 18 6 1495 17 10 40 227 439 824 11 23 228 175 5 2686 140 10 308 45 23 36 1490 1072 41 3496 236 679 4 2188 1131 4 1 990 101\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 18 12 20 2 351 571 16 43 509 168 7 1 415 201 419 2 167 53 131 68 1 7112 35 61 3534 115 13 724 2181 56 7 1 18 672 12 37 3 168 7 1 2023 1295 130 24 17 60 89 10 37 3245 3 68 95 28 88 56 6 28 4 1 113 7 132 93 2446 109 14 1 7 1 226 715 6 1 240 185 4 1 682 13 4640 12 20 11 53 3 9 12 20 25 113 14 31 238 88 24 2163 2 138 263 68 96 27 114 16 1686\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 12 619 49 8 159 9 135 420 455 10 12 1 113 117 829 4 1 3854 75 945 8 5265 13 5094 95 306 1215 6074 325 63 1090 9 1260 6 2 948 5 50 3888 1 24 636 5 1382 7 2126 4 903 1569 66 22 2685 29 1 113 4 984 17 93 2704 1 230 4 1 3856 14 16 1 6512 5456 151 2 243 2513 2594 2266 98 95 296 376 54 26 6269 7 1 6937 6 3 345 9099 6 89 5 176 13 150 56 88 20 134 2 53 177 38 9 135 8 291 5 26 738 1 46 156 35 83 1090 194 17 45 23 175 50 64 378 1 249 397 993 2257 9071 69 241 503 11 6 237 5 9 5026 3786\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 56 165 142 5 2 84 3587 10 57 1 1187 5 473 77 2 56 684 112 67 15 861 11 4440 1 112 189 3 9934 7 1896 7006 3 1192 10 56 143 321 5 26 235 52 68 458 3 16 2 799 51 8 726 2337 11 275 12 475 253 2 304 21 16 86 221 174 5092 3210 2 661 6543 3740 850 3740 98 1378 10 65 2507 140 30 253 1 466 129 300 145 1156 1 1746 17 87 72 56 321 174 21 38 41 6 9 321 7 368 5 2074 1 1415 601 4 423 1109 4 2 52 940 7 1 18 16 2 799 1057 8 12 160 5 90 2 1741 1367 4 1 2024 195 145 303 507 29 225 10 130 26 1253 7 1 644 7370 11 34 1 171 384 5 7 62 2237 896 2817 2865 6 56 1386 5 176 29 3 2 53 651 15 679 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 192 3 12 46 2983 30 1 108 10 12 50 34 85 430 18 4 101 3172 7 1 2032 600 8 12 37 7 112 15 8400 176 3 448 8 192 58 18 16 1 85 96 10 12 46 452 8 46 78 36 1 4 6649 3 8 179 33 1066 46 109 1413 8 24 107 1 18 97 268 3 128 112 1 102 4 126 14 9307 3 294 8 192 2 46 568 325 4 8400 3 64 122 7 3956 49 8 5435 48 2 964 2851 788 5 8 24 107 122 7 97 128 96 155 5 2 376 6\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 284 95 119 73 7 911 1 119 228 291 3 5370 1 21 6 2355 1 121 30 205 3286 3 5047 76 139 2743 7118 1961 79 19 39 3 1 119 6 438 152 6 2 346 736 5 333 16 132 964 1488 1 21 6 39 370 19 697 2998 3 43 120 22 20 2 233 11 1583 65 5 1 1965 11 8 12 246 285 3 94 1 135 45 23 22 4147 4 205 171 3 4 595 5284 581 23 128 617 219 116 430 28 503 7 1 182 23 76 24 2 1021 3 8054 6947 1 21 6 8175 64 194 760 194 751 10 41 83 773\n0\t3 57 43 635 3827 47 4 592 13 2719 11 2224 1866 34 11 47 4 1 744 369 79 134 4167 236 56 58 302 5 64 9 108 42 311 2 2226 938 2729 2776 5 9567 19 1 1 2247 4 3 1500 3973 1338 4349 8 333 1 736 7 1 356 5887 73 10 181 36 9 18 12 428 125 2 3175 30 2 4750 968 4 81 35 57 100 262 3 470 30 2 164 15 364 356 4 541 68 50 300 45 1 846 3 206 1407 224 3 152 262 43 2205 2193 3771 853 11 33 61 38 5 21 900 3160 3 378 139 5 416 5 825 75 5 606 13 150 449 11 9 40 71 31 839 16 1038 10 273 1336 71 16 437 7 698 8 96 8 228 24 433 2 156 7 1 634 4 133 9 18 3 523 38 110 398 85 317 29 1 388 1320 3 23 64 1 1 1 6081 3 1 6081 4 8719 34 1157 51 19 1 4892 7 2 167 103 187 126 34 2 773 3 309 2955\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 174 4 1 97 1493 7310 104 14 21 1762 7 1 449 4 43 796 7 146 11 6 3816 4 110 34 1637 4 1 21 69 1252 505 593 69 22 8093 1 121 30 1 277 951 6 8 497 294 12 909 5 139 1678 7 1 18 1255 17 98 275 5303 27 57 103 860 3 2091 1168 65 403 249 916 1072 8134 35 6 531 1442 481 2264 845 1 345 263 3 345 3344 1215 6 377 5 26 2 5925 17 255 1677 774 1321 1 4680 1 18 123 24 102 4 1 288 2588 11 8 24 117 1586 1 28 7 66 294 271 94 1072 8134 6 591 1 305 5805 6 687\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2676 2 184 325 4 7662 17 9 6 20 28 4 50 7219 136 1 1292 516 1 18 12 2 1574 2451 16 2 382 1045 2493 1 206 105 2761 19 10 5 1720 1 108 42 935 27 12 770 15 58 2128 73 1 389 18 6 5646 15 494 11 271 19 3 19 4665 8 24 107 37 78 7 2 682 13 677 22 229 364 68 4417 2110 4 7 1 389 141 3 80 4 1 344 4 10 6 81 2316 7 2 163 4 3251 10 12 299 5 64 1312 7607 3 3111 2193 17 53 88 1084 24 179 261 7 62 260 438 54 241 126 14\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 398 5 990 7 1145 1724 7383 6173 5283 940 40 2 346 280 14 2 2892 3 11 7 554 130 348 23 11 9 18 191 26 51 6 1147 4394 1748 1570 1707 7 9 7056 3 2 156 508 547 1488 23 24 5 560 48 5279 126 5 1088 5 87 9 489 108 1 265 271 65 3 224 36 42 2 580 1005 471 55 45 23 946 838 1 119 6 1258 5 5345 1 363 22 1669 14 109 3 291 56 34 4 1 171 1271 7 2 672 3 24 58 2694 5 62 3251 8 88 139 19 3 19 19 75 9 6 2 91 108 29 225 15 990 42 37 91 42 211 17 9 6 39 1493 5617 3747 8 5932 7481 925 1013 23 175 5 26 5 6086\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7177 6790 9465 1605 3183 2767 2064 738 1 3326 94 2 1238 4811 13 8 812 2235 4326 5153 1920 17 8 112 9 108 10 1047 46 1108 8513 6 1325 470 30 492 3211 1123 3159 4 443 4156 11 39 2583 1 1567 40 2 46 6443 67 427 2989 2 7869 5 2 3746 974 701 11 12 39 3 40 2 46 53 1440 115 13 6 46 3 84 14 153 291 5 26 6 1282 213 340 78 5 87 17 60 1583 897 3 1212 5 1 2426 1603 422 6 46 53 1221 17 113 4 34 6 6059 14 1557 244 2 46 53 353 15 2 46 672 3 43 4 25 456 61 13 31 313 5126 368 701 5251 109 279 13 1149\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 64 2 163 4 502 159 1 215 172 989 3 336 110 9397 106 128 1427 184 16 1 80 4 199 3 1 18 12 7 42 221 3293 13 252 628 245 276 36 2 402 445 366 4155 900 4419 32 357 5 13 92 119 6 37 4250 23 495 241 10 318 23 64 1 18 801 8 54 20 354 7 1 74 8 63 20 272 47 28 353 11 152 114 2 53 329 7 9 108 17 3255 15 11 263 8 2893 71 619 45 261 88 87 2 53 329 1014 679 4 1881 1192 1983 276 36 42 556 47 4 1 13 1453 145 355 7 2 91 1646 39 523 38 476 87 20 99 9 682 13 5 386 5 351 10 19 133 1865\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 96 42 2 84 108 73 23 70 5 64 75 157 29 408 705 60 165 37 78 3 60 451 5 2162 11 624 63 566 854 8 96 60 3 61 84 1488 73 4 9 18 8 192 3696 854 10 56 1475 437 1 59 1332 185 8 4630 6 1 714 73 42 6398 189 4491 3 17 23 83 70 5 64 75 10 6 29 2613 3 8 143 56 36 10 11 23 93 83 70 5 64 75 44 435 6 9576 3 44 6442 17 8 96 10 12 2 84 18 3 8 96 145 160 5 99 10 2 163 8 354 10 5 4792 55 49 23 83 36 23 70 5 64 2 163 52 68 59 8 57 2 84 85 133 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 219 1 74 1194 1507 517 10 12 2 148 718 1543 31 2235 1005 9434 13 1833 8 1640 10 12 34 5612 8 179 6359 54 8 175 5 351 50 85 133 9 37 8 590 10 142 3 310 4947 5 2979 82 1098 1 120 83 634 7 2 1202 699 105 78 7706 7953 16 2 259 5 2203 350 111 200 1 234 77 2 392 3327 4087 27 1171 36 2 4163 3 8 83 241 10 12 73 129 12 37 3364 38 1 4622 2658 13 5891 4481 3 8741 13 23 107 4 433 710 534 1189 21 38 2 259 35 9154 374 3 2448 62 8 338 8381\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 31 525 5 652 155 1 1886 1222 870 11 12 556 295 30 9101 36 782 18 3 45 23 118 48 8 114 226 2848 1 144 114 81 36 73 10 12 1571 147 3 337 660 235 207 117 71 1613 144 114 33 36 73 29 225 10 89 1821 6 39 2 439 11 40 924 95 840 48 1 119 6 37 696 5 3146 3 2868 2247 42 20 695 3 1 799 1 506 255 19 2238 23 118 35 10 424 42 39 2775 1 1886 1222 870 6 434 70 125 9176 13 47 4 394\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 718 6 29 86 113 49 10 6 311 781 1 3 2794 51 6 58 9019 1 5401 7 4660 3 7239 4 55 62 245 14 31 5541 16 7 5396 9 21 1082 6060 292 1297 798 246 107 137 6922 22 20 3 72 24 5 186 1 4712 7849 4 62 7487 29 543 218 1207 367 51 12 58 218 1207 367 10 12 966 322 6829 153 467 6829 3 48 574 4 610 123 1 4937 1 21 6 29 86 80 49 781 6290 7 4100 51 10 6 3688 5 1 1528 8691 11 246 2 298 2282 1170 329 63 90 116 3954\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 180 5187 970 37 81 118 48 2 84 21 9 8233 42 20 396 23 209 577 2 21 207 866 3 2325 1262 286 819 284 1 119 37 34 8 175 5 134 6 83 99 10 73 23 175 5 64 2 7727 4 3283 1842 2849 207 1 687 81 284 7 39 1116 3 3539 42 38 2 435 3 585 19 2 1758 5 118 239 82 140 62 751 10 3 1369 10 19 183 70 2873 5 110 9 12 28 4 1 46 156 124 5 26 2695 16 2 101 1532 3 1 1212 4 10 6 11 10 999 5 1376 5 261 55 45 23 100 99 235 41 39 314 5 1 368 39 2 84 67 11 76 359 23 1 59 177 8 555 6 16 10 5 26 1534 3 64 48 629\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 159 9 21 7 9597 29 1 2377 4 315 7 42 74 1228 1 21 6 5036 2917 6 360 14 6464 9 170 353 40 2 46 2437 3667 1 148 6464 6634 114 2 84 329 523 1 21 3 593 6 260 19 1 1686 64 10 567 9129 23 495 26 1558\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1915 23 24 2810 1041 745 2555 690 3 1037 23 83 321 1740 41 95 82 3144 860 6 400 1130 7 663 5 15 1 1844 1424 19 1 1471 50 3533 124 22 38 14 240 14 9 5913 1611 108 45 23 175 5 64 75 5 2 2661 201 15 2 53 1252 841 47 218 51 56 22 58 1362 737 3 133 127 360 171 2280 15 132 904 1097 6 2 6576 8 405 5 36 194 17 1 2513 263 1 2996 30 2040 685 1 171 162 5 216 1566 69\n0\t3006 23 4 1 1257 1272 363 11 61 406 7 218 429 106 510 6 229 1 225 782 1272 18 1218 533 80 4 1 599 387 468 26 1437 704 206 1763 1018 5519 89 1 313 203 124 3 660 1 7023 405 5 90 25 18 211 3 36 17 98 805 307 7 1 201 2236 5 1271 456 15 2 826 3 6239 4141 37 8 497 72 22 5519 377 5 186 297 1067 3 230 218 429 106 510 6 100 3604 41 55 2363 1303 3 10 153 55 2735 95 1512 1251 32 1 5931 29 1 4362 8 192 1435 1997 4 75 2513 10 17 1 102 168 7 66 3150 690 271 5329 22 1 59 306 322 137 3 300 93 1 7889 4 978 3 3605 883 22 33 7 1 5776 75 400 1610 3 7826 12 3559 45 23 117 1088 5 187 9 18 2 680 86 91 90 273 23 597 116 1205 356 3 29 1 13 1367 16 203 359 31 1128 1089 16 1 11 12 93 2 391 4 1769 7 1 609 873 203 382\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7949 266 2 5177 164 35 77 1 157 4 8316 1922 27 440 5 6590 44 136 60 122 142 15 44 480 62 3 9215 33 735 7 1629 49 7949 2311 1141 2 164 285 2 27 1225 47 1204 5730 5 5377 1641 106 60 1937 444 3 2604 523 6 313 533 15 97 3 2065 120 2989 2 3100 287 3 2 315 287 3 44 9240 435 262 15 924 2 8434 4 7949 3 131 62 14 171 3301 1083 7733 3 5 62 120 11 2702 126 660 1 687 7949 3 2237 3 1 593 6 78 138 68 1397 504 32 1334 28 304 383 40 101 77 1 7182 98 1699 47 77 2 1317 9492 14 1 443 6367 94 768 9 6 28 4 1 113 4 205 1 7 8091 3 7435 3 40 43 4 1 113 494 117\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 20 2 18 16 596 4 1 692 3664 2854 2688 4990 42 16 137 35 463 1116 2 53 441 41 24 2260 1455 4 1 691 15 9772 3 3378 6 132 2 360 1540 23 191 64 60 6 2401 16 13 92 67 6135 3 72 22 556 385 2 1486 458 8 6020 80 4 199 76 209 5 3082 29 43 290 2 1486 106 72 90 257 576 49 8988 5221 13 6 197 861 8613 169 3 1 494 844 47 39 227 16 1 545 5 5654 1 1733 1 2876 13 743 2624 108 20\n0\t3 844 47 102 1659 8714 238 3 1 7417 8783 1008 2013 9035 14 2 8724 32 1641 7 639 5 3471 43 1355 742 2574 3 9535 22 25 5644 33 6295 216 16 1 17 458 36 80 4 1 1324 119 2519 6 100 89 6566 9035 2080 2 163 4 1389 11 100 70 37 1 21 271 332 7293 136 10 5 26 36 366 1047 3 1 4706 1 7417 8783 65 3 948 15 5034 3 1 21 6 483 109 5016 17 55 11 557 421 110 593 6 3816 4 95 3358 42 2 46 6422 13 92 121 6 514 15 9035 6785 244 167 78 6843 4 101 565 4696 3 22 6740 1858 3 2913 6 109 201 14 3549 55 1 531 4112 4526 7468 6 167 53 14 28 618 6 1 1084 4 14 2866 1181 553 444 248 85 7 1641 3 60 181 5 26 242 5 256 19 43 426 4 2516 312 4 253 44 1030 5 26 1625 1652 6 5 24 44 2951 31 1906 3566 42 2 280 138 4462 16 1 1143 4 9733 41 3150\n0\t644 447 5105 6 5403 236 28 591 211 178 106 3 427 5466 62 510 2827 3 98 1283 1088 5 205 24 2 4 1 170 2088 2109 13 777 93 167 2637 7 1678 69 4369 2 3466 799 106 427 44 1191 77 2 1559 7796 5 5724 25 13 92 113 185 4 1 21 6 1 167 1535 1713 35 473 65 959 1 714 479 1108 1728 142 30 2 1473 1024 3 83 1460 588 1877 66 6 2 7661 1 178 106 1 1713 245 6 1 644 80 3365 4457 10 34 629 7 223 2859 3 72 617 56 165 2 2481 835 2267 318 72 64 43 3467 19 32 1 51 22 375 3160 529 36 490 1359 2496 5 345 5826 49 2 621 457 1 3528 4 522 236 2 184 542 65 4 25 543 11 181 5 226 2681 3 2601 58 1734 13 1601 7 399 20 2 84 203 158 17 548 2160 4 611 1 324 8 159 12 2 2484 296 324 11 57 229 71 7122 5 16 34 8 1374 1 215 2294 324 88 26 2\n1\t386 4 1 290 1298 19 1 67 6 5 333 15 1 4944 7 4974 1 67 4160 14 561 6 997 19 443 15 2 32 1 558 30 2 3992 49 561 255 408 5 149 25 379 7 1 4209 4 44 1703 2540 27 5008 44 200 17 963 44 3 270 44 47 5 64 2 108 245 3232 521 2486 4 44 4703 14 1 18 33 99 6 1 3992 1131 4 561 3 1 1413 3232 561 15 44 561 3130 140 1 2238 3 33 205 182 65 7 4193 94 1 33 6895 4705 19 6793 1 22 2954 7 3832 132 14 2 429 41 2 3 22 340 423 8029 4 9788 3 5677 1 120 1720 1564 3 55 2951 6296 286 33 93 62 3 1089 3 542 62 14 148 7550 1 7575 4 1 67 153 2951 554 827 55 94 2767 17 14 9220 14 1 5954 2140 1 21 1047 238 629 15 7202 7280 17 3 2 1428 4 1673 6 433 7 1 7762 480 86 4404 1 21 6 31 313 665 4 362 3 6 496 4869\n0\t1 2399 2192 397 11 12 5 9 135 50 221 2185 3 8 1407 224 3 257 324 4 1 178 712 11 2591 364 68 3 740 2 326 57 681 269 4 178 11 485 138 3 52 1087 68 48 180 107 124 15 4 364 68 1519 176 828 78 3606 13 659 50 1062 1 293 363 314 7 1 215 800 2344 61 52 3733 3 138 68 293 363 7 9 135 7 698 8 24 2 78 138 4870 16 1643 4 1 506 5798 73 4 9 135 236 58 1335 15 2001 3141 16 2 21 5 176 36 2 4978 3641 1013 11 12 1 66 1513 24 71 15 9 933 13 743 465 8 57 15 1 305 5805 12 11 1 21 6 174 4 2399 13 3616 8 24 5 134 11 8 1160 2 1480 7 9373 11 24 138 861 3 293 363 68 9 803 13 150 2474 5975 261 35 53 3164 41 35 6 2 325 4 5 597 9 21 19 1 4892 3 99 1643 4 1 2297 2749 287 3438 10 54 26 4607 19 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 2 84 296 1563 1792 108 1 1076 168 61 167 1502 16 296 18 89 7 9831 4 448 1 1076 168 662 11 53 14 7 2344 484 152 59 156 296 104 24 1076 168 66 22 14 53 14 7 2344 484 55 49 23 99 296 1563 1792 141 23 22 852 5 64 364 1502 1076 1025 17 128 246 43 327 66 63 26 1317 53 6743 41 29 225 207 48 145 852 32 127 502 8 12 1475 30 9 135 43 1076 168 61 56 1 505 593 3 1 119 61 53 1509 37 42 2 56 279 133 141 45 23 36 296 1563 1792 124 4 1 9831\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2636 9940 109 8 96 9 18 6 229 1 210 21 117 1001 229 7 1 541 4 1984 1 1 8698 6 1634 1 265 6 46 3 209 1 121 9905 109 51 6 58 13 3057 2 259 35 152 271 7 1 2865 5 1776 16 25 1156 379 3 186 1 85 5 24 447 15 2 13 92 506 6 2 5628 35 339 2 13 8413 1144 4 1 201 6 439 3 1 206 256 154 2515 4 104 7 1 21 197 13 92 182 6 37 237 1 80 439 117 1001 96 38 4360 1 809 121 3689 6 38 1 166 14 25 1 1568 516 9 9242 2 3 102 4 25 417 5 25 3254 16 1 3 1141 19 2341 27 271 155 5 6 1400 36 162 8928 13 92 2432 6 11 328 5 90 199 11 42 2 231 1971 11 271 19 16 1848 6 1 5628 13 1627 4 448 58 2475 22 1927 1193 122 94 25 271 13 13 1149\n0\t5 134 145 1156 1 145 1265 8 70 10 47 4 1 3132 16 217 468 149 306 5526 3 2558 26 327 5 116 4334 3 9 76 7744 122 77 9 181 5 26 1 4 1 18 3 7 554 9 6 20 2 91 804 16 2 441 292 924 1766 1 465 6 11 7609 311 153 24 1 3689 14 2 18 5518 5 1720 10 1294 29 1 799 49 55 259 7609 490 27 784 5 70 1120 15 1 67 3 792 5 1 178 49 196 7388 125 30 2 606 69 2368 1 1363 4 43 168 14 8670 709 805 13 677 22 37 97 2324 217 8399 1389 303 29 1 182 4 1 18 23 88 70 34 38 10 3 328 126 827 41 311 1942 11 51 22 58 3405 217 239 545 76 188 7 62 221 699 8 12 37 1120 15 1 1511 4 1 21 11 8 311 143 4219 3478 1 393 339 209 105 521 37 11 8 143 24 5 694 140 95 52 4 9 2288 13 743 351 4 102 719 4 50 500\n1\t11 5342 114 350 2 1556 183 550 4949 63 3312 1097 11 54 478 903 588 47 4 174 1651 3 207 835 37 84 38 550 27 56 181 5 467 48 244 7936 5893 4 75 9309 631 41 3977 66 1275 122 7 2 3415 15 5112 1072 7763 2773 4321 3 1862 42 48 89 1 1323 5669 3607 216 37 322 3 11 166 1449 6 204 7 570 8097 9 12 2 8311 645 7 3050 3 19 388 7 1 3 10 40 3412 2 163 138 68 97 4 1 436 138 587 238 2092 4 1 4180 30 866 1 238 32 2597 5 8301 236 2 148 5092 538 11 153 23 295 32 1 238 19 1250 5 26 3314 180 198 381 1 124 4 35 6 2 206 7 1 166 6104 14 5725 4414 3 9 6 28 4 25 1293 570 2028 6 28 4 1 433 7478 4 1 518 696 5 164 19 1473 7 86 306 3 3151 8 1331 45 33 1015 9 15 1 8125 2 212 147 410 76 209 5 112 10 14 78 14 8 1405\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 12 1 210 180 117 4164 13 499 153 291 5 24 2 119 17 1 85 23 853 9 6 237 660 1 477 4 1 18 37 23 24 5 99 1 4258 16 2 223 85 5 3082 1 900 4 1 1392 4860 1 11 266 1 2646 7 1 141 3 72 87 20 241 1 9599 7 9 141 244 2 73 1 148 36 72 118 32 3 218 54 100 4786 5 132 2 8256 13 1059 9 1037 4258 371 15 25 2290 172 7310 8048 9 18 418 15 1 1079 4 1 102 250 647 9599 3 3 98 1 102 263 7303 9599 3 3 98 1 1392 13 395 5771 762 2112 259 5771 15 259 35 4341 13 9267 7 1 315 5771 2953 166 13 4098 20 99 9 42 2 900 4\n0\t6 106 1 250 465 15 1 18 8493 30 1 46 1109 4 7188 40 46 156 456 5 3 37 1 21 3753 5 24 30 65 1 1560 4 239 1361 1670 27 6 620 1323 2701 1157 2701 3 37 926 15 59 2 4301 356 4 14 2 4818 105 78 6 2954 19 3139 5 1 3033 1892 14 1 2732 4 7809 127 168 1674 70 7 1 111 3 83 591 734 78 5 1 471 55 2428 2171 7188 608 25 543 2777 15 69 1572 47 2 2703 41 4069 66 65 2557 7737 5 1874 4 72 88 24 248 15 101 1 2364 4 25 17 10 6295 1553 359 122 2624 29 13 3221 2259 6 5572 5723 1867 7 2 400 278 14 1 4413 205 60 3 1 435 24 46 103 1880 7 1 108 16 2937 72 22 100 620 75 33 4793 5 1949 4 75 33 228 26 2464 3 37 778 9 6 39 28 2732 4 1560 1 6473 54 24 248 109 5 3684 378 4 3333 37 78 85 19 795 11 653 183 1579 19 25\n1\t44 9 88 466 5 34 2329 1068 2392 7 2 1408 3515 149 2 147 2185 3 101 749 41 5693 227 5 1593 3 475 564 60 123 328 5 564 6102 17 20 94 2 251 4 4969 15 6857 60 7 3429 59 5 149 11 851 181 5 5062 4075 55 1 3207 322 8 130 26 5844 204 38 3429 1 18 153 467 2 177 421 6857 1 111 1 18 1819 1 2272 6 169 20 7 1 3540 272 4 793 41 32 6009 2821 1240 9 744 51 54 26 679 4 9813 1642 8 4990 42 32 2 957 6551 1 18 369 199 5 9698 3 153 1346 2 9404 13 92 18 511 26 37 240 61 51 59 1 3248 236 9 164 809 5111 200 1 287 3 515 7 112 15 1159 17 7 25 221 699 244 2 211 2112 36 2 5628 8 130 867 35 7043 200 257 1 2053 4 127 4069 1 287 331 4 7868 2826 3 2966 65 3541 3 1 996 6039 3 648 741 65 7 2 53 3922 4 162 540 41 105 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29 2918 115 13 13 13 3 13 32 6607 19 2 3068 8822 17 27 3 4123 70 1795 65 15 31 3959 8724 5555 13 252 865 2206 267 69 31 1233 3465 66 6687 36 2 3170 6772 4 3745 3 113 216 69 7507 1 570 189 3 1840 5219 7 1 18 7 2 1201 7105 94 1 1161 22 556 30 1018 4632 2 5 2162 75 1360 27 1 2249 22 1530 17 3576 6 436 664 5 1 4 3466 2941 1968 16 74 6132 991 7 1 478 1592 1160 7 17 603 216 204 1419 2 7034 4 5739 17 162 4155 1645 3801 3 578 90 3678\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 37 573 10 63 59 26 1074 5 1 3931 210 613 1748 9552 58 1308 533 1 108 87 146 235 3181 39 83 351 116 85 19 9\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 53 201 1543 28 580 9965 86 111 140 1831 822 12 100 1824 41 68 60 6 204 15 809 2 2661 809 3446 5 390 2 5 70 47 4 1 2251 27 3 25 4714 361 642 2961 361 522 5 2524 5340 19 597 3 357 1 1433 136 5 1291 1 3085 6976 140 5678 1874 1 59 177 38 9 18 207 20 2038 6 278 14 112 4584 66 270 65 105 78 4 1 644 85 3 224 1 1428 7 1 330 6869 3 24 53 1 9586 6 11 444 274 19 253 112 5 154 5213 87 44 5288 16 1 392 5718 4 9887 17 244 2 1136 164 2190 1371 25 2866 33 2303 1 18 15 103 1245 32 2961 1474 204 7 1 74 185 4 1 158 49 20 15 25\n0\t44 2518 4982 3 1773 170 123 2 547 329 29 1321 1 410 4 44 5146 16 3788 144 422 54 60 1006 44 59 493 5 8595 14 2 7018 39 37 60 63 2475 35 328 5 1351 65 19 8101 9 5146 6 93 1 59 302 144 60 7619 2 5282 35 380 415 2 4591 3 1 2037 1426 516 9 1865 108 133 170 139 32 5 1349 123 103 5 3081 4584 17 1 60 3448 2379 398 5 2 1473 30 2 2889 2788 133 44 3 5955 38 44 3 893 6002 151 112 4945 279 1 2551 17 42 34 5523 5 3 32 939 480 44 4254 5 652 3042 129 5 9414 44 2576 301 1291 44 7 1 4 44 221 1455 6468 3 3042 123 2 547 227 329 14 2 7462 45 10 1066 7 3105 15 1 4334 10 273 14 898 63 216 7 476 17 8 173 352 17 560 45 1 9964 551 4 2157 170 876 5 1 21 5948 15 25 145 3584 10 123 3 1 1122 6 2 15 5991 11 22 1517 91 3 286\n0\t6 37 11 1 462 919 7 1 1967 77 2 232 4 193 28 35 2236 5 2369 298 361 156 45 95 4 1 171 7 1 21 22 1 3 72 70 2 1839 6079 4 1 35 6 107 14 1 543 2266 20 455 14 1 4 3 93 784 7 1839 5839 14 2 232 4 41 35 285 1 372 4 1 53 2848 265 361 7 2768 30 1 744 1 4 1109 6 5484 30 2 4 3 1544 7 31 66 437 7 1 2114 72 519 24 5 391 47 132 15 257 17 8 173 96 144 339 1356 16 3 2779 14 7448 14 12 2666 16 2975 4082 7 478 4 13 92 478 6 254 5 1 298 3079 3 1 7 933 31 11 1583 174 426 4 5 257 15 1 4737 3 4 1 275 7 174 753 1505 1 9353 3 193 25 22 396 46 2690 57 48 6976 2 356 4 2 507 16 1 3 3347 4 1 265 361 488 94 350 2 5694 1 478 7 11 4881 7 661 6 128 1914 5 9 4006\n0\t374 15 4116 3 1 82 6 2 7338 13 3793 1 442 10 1537 6 20 56 3228 15 1 67 29 513 33 22 20 101 2 280 2726 3 41 87 235 17 5 3272 62 85 16 48 33 24 1613 1 67 6 46 961 2720 3 1 623 6 4068 3 72 459 107 1 166 120 30 7 37 97 82 104 1920 8 96 8 539 3 202 1310 2 13 4956 1 1084 12 6398 94 34 27 6 1 28 11 2230 1 4852 3 1 121 6 8773 14 909 49 133 9 574 4 108 3 1 2132 48 87 28 9 6 1 166 259 35 758 199 5472 1053 296 9223 3 11 18 93 4597 17 936 27 198 1180 5 652 7 43 376 5 6381 25 4131 682 13 8 343 20 900 7674 142 17 2 301 351 4 290 59 1 1326 168 291 5 26 1 113 185 7 1 108 56 64 95 272 144 8 130 354 9 5 13 3120 102 5329 4718 13 20 722 2384 441 1349 3 374 87 20 1541 6340 13 9409\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 417 3 13 150 497 45 28 1886 451 5 390 8297 15 174 98 207 62 6879 69 39 320 2517 153 467 8 83 474 48 1 4556 1465 19 1 82 1737 55 45 1 4882 5324 411 14 2 4 2 684 244 128 59 4101 19 2 298 416 2784 45 60 12 50 3504 420 2089 9 559 13 7784 68 11 8 214 47 11 83 4420 1 166 111 1 710 87 3 11 2372 2274 654 36 7358 13 150 96 420 202 243 99 1086 28 52 85 68 2686 1 4 9 1479 1259 3 53\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 119 3 335 1802 5124 403 2 326 3 375 82 28 2 4738 15 2 6279 1990 204 72 64 5124 403 48 22 2040 5866 7 2 921 68 7 25 124 15 4110 3 183 27 2178 75 5 186 331 3320 4 1 1187 4 135 113 4 8011 1 233 11 72 64 3945 3 2181 183 62 267 3987 403 1 232 4 1206 33 191 24 248 7 3 114 20 24 2 680 5 87 7 62 6408 1185 124 32 1 8421 12 308 2 6098 941 62 102 2139 15 1802 22 298 985 4 1 158 3 279 1000 1987 1 74 2245 4188 6 2 16 1 9554 7 66 1 277 4 126 2369 3 941 140 1 7176 3 82 10 202 181 325 4 1802 5124 3 3945 217 2181 76 149 10 279 8911 65 457 1 180 107 9 28 843 41 715 984 3 149 1 884 890 7891\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 56 439 18 7 11 687 2804 238 1211 10 4831 3937 594 17 301 1419 1 1357 1 1308 3 1 1300 189 1 250 120 4 11 108 369 10 26 587 11 8 335 3460 14 2 7757 3 14 2 771 131 17 27 39 481 3218 27 6 489 49 27 440 5 634 1360 69 27 1092 999 5 359 11 6151 142 25 543 136 667 25 4834 2768 30 1 744 662 46 695 3 283 122 549 1958 155 6 20 2 2273 7 4637 8 24 2 507 11 3813 69 29 225 30 2001 3220 69 153 187 2 46 4210 3013 1418 4 1 83 55 70 79 544 38 1 471 8 187 10 2 358 47 4 1731\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74 9 485 36 2 509 267 36 1 1164 8189 17 49 8 165 77 10 10 590 47 5 26 2 56 211 135 676 3904 9289 3 918 3 2695 2393 3 1712 3337 3 2101 2695 690 61 2 84 267 3 2 758 155 371 5 62 2430 8185 16 2 249 880 1147 3904 9289 1707 742 6 9347 33 63 70 371 316 15 58 254 1687 16 239 1885 75 540 27 705 33 481 70 19 34 1 387 33 22 205 258 285 17 33 87 10 93 993 1072 14 5804 7 8185 4679 14 3232 9796 2626 14 5804 3 7127 32 6505 6815 7701 14 8 96 1 113 427 4 1 21 6 3945 6557 11 3701 404 122 1427 585 4 2 10 12 2695 1 5371 16 113 632 3 113 2511 1106 2744 32 82 4948 10 12 2695 1 16 113 5220 3 10 1196 1 2101 9289 113 1729 572 69 3 10 12 2695 16 113 4852 46\n0\t339 634 5 552 25 414 9706 6667 1009 4 25 278 303 79 4245 3 80 4 25 3340 927 3870 51 12 31 5081 356 11 27 12 463 242 105 254 5 3642 25 1676 6179 41 1 3312 7 1 263 12 7 463 1723 1 839 12 29 268 8 343 2692 16 1 13 2663 4746 12 2172 285 80 4 1 1076 5007 1 1112 15 1 8176 1807 1752 12 407 28 191 16 2 164 37 5927 14 361 11 27 54 55 351 25 85 2316 7 132 2 1112 49 52 3291 5014 2166 49 23 1064 25 1514 5 2874 41 25 1514 5 1 407 88 24 1 78 3 52 805 132 1630 6883 730 5 2 263 30 3 168 1242 14 8172 5 359 199 32 507 7 257 1691 4 1 120 1242 7 1 74 21 22 2836 16 137 852 52 4 1 166 361 23 76 407 1243 295 507 5013 13 2298 45 23 186 14 116 238 141 3 995 1 1115 67 3 1 4 129 1273 32 1 74 158 23 130 1243 295 507 169\n0\t48 27 404 74 12 2 461 2 1187 1757 6 818 140 1 534 4 1284 2312 15 59 1 478 4 146 41 275 6 1068 768 60 15 9679 457 2 1170 146 1 4 1 845 768 60 276 51 6 2 5973 11 151 116 1773 820 19 714 42 2 3417 712 86 1276 5 582 16 768 1 1278 314 29 225 102 7 9 21 3 33 1234 5 2798 2 259 6 1323 577 31 16 2937 3 51 6 1 2585 4 2 3862 11 202 2018 550 51 6 58 274 65 5 1 3812 42 7 15 2 13 150 83 78 474 16 104 11 1 5108 4 14 9448 3 14 2 729 4 698 58 7336 22 80 22 3 97 22 3391 6850 479 52 68 7 62 5954 3 1782 5 23 175 2 16 328 2 42 2 56 884 49 10 1148 146 5 10 65 3 10 6124 13 3514 45 23 175 5 64 43 4275 1879 782 581 83 1460 15 9 461 149 218 1398 9375 41 28 4 82 1681 4 66 9 6 31 631\n1\t297 710 3 98 8924 2 243 17 46 2950 950 7 1420 1012 30 1 4253 4883 1 6948 170 164 2615 1169 7 1 3125 69 4369 11 27 76 2459 800 2820 465 424 1420 521 149 60 105 6 7 112 15 13 30 53 3409 3 82 6706 238 1102 1 21 1047 29 2 1428 3 15 97 709 2184 1 593 6 436 1 5118 1329 17 1 21 6 37 822 3 270 554 37 11 8 88 20 187 137 2 330 5425 176 47 16 2 2094 1423 7 710 581 242 5 2303 1420 253 411 2 3 8439 1 263 5 1 5117 11 4263 1420 3 48 2 2067 6 14 1 3 800 2820 11 6 20 8011 37 97 304 415 7 28 21 151 79 555 8 61 7 3871 3 19 1 274 155 7 1 21 190 24 209 47 11 349 17 86 1016 1667 3 1 1201 4883 8477 11 10 1373 661 3 2 1935 5 836 8 54 20 5 354 10 5 50 369 818 5 261 35 1371 104 7 940 3 7 87 64 1027\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2199 237 14 6767 104 3137 9 28 6 167 5128 2987 6 167 51 213 227 129 2987 5 56 230 36 23 365 95 4 1 807 745 4796 6 1111 3 27 6 28 4 1 1318 86 279 2034 4796 40 43 84 2131 36 26 260 2366 27 751 5 43 41 146 36 51 22 2 156 327 1025 292 33 22 1135 664 5 1 3117 4 1 1488 2132 1252 3 1043 6 167\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 790 31 483 1832 2129 2153 46 673 2031 65 5 1 1048 4185 1 280 4 3748 2811 16 44 2752 1085 3186 186 181 5 226 51 6 56 58 7108 7 1 44 532 5063 6 9901 32 1 30 2 1091 1696 262 30 1 389 129 4 5063 6 37 28 37 1 21 2932 155 3 3194 189 1124 326 147 887 3 6598 3 6598 7914 2730 786 49 23 87 458 187 1 410 31 6410 4 48 85 610 1 67 270 1888 51 6 100 2 935 6410 4 85 608 46 3182 210 185 424 1 714 1 389 131 3 38 1 7377 101 37 1722 311 30 2 187 79 2 8479 207 75 1 7377 165 47 4 1 1 1193 4 35 1 7377 6 100 12 6 35 8101 114 8512 2460 15 7 1 21 1196 31 121 1570 16 2368 608 8 24 58 3742 191 26 1 3100 833\n0\t27 3 25 975 2720 62 733 5 239 82 6 138 2786 406 7 1 4215 22 140 1 3063 19 25 27 784 14 2 1722 7539 3 6743 5799 129 7 1 1761 4 1 13 2718 118 28 177 6 16 273 3 11 6 426 4 4162 2509 25 4 3477 3 59 1056 3824 5 1 441 1 6013 4 66 3009 277 4036 8336 809 606 2296 224 3 35 5800 19 816 5 352 126 47 4 1780 197 355 7 62 699 4 611 816 621 16 28 4 1 2 170 287 654 3 7585 10 34 277 459 421 239 1715 17 20 7 2 111 11 56 2439 7 235 4 78 948 41 2286 7 698 1 212 18 34 1 136 181 5 175 5 2031 65 5 146 17 56 1082 5 87 1943 55 1 2526 4 66 266 47 36 2 4481 901 341 28 11 56 3352 2 163 4 1567 6 202 39 14 13 499 190 26 279 242 45 23 83 438 1 1722 673 8072 17 22 7 1 29 2532 16 146 2 103 264 68 1\n1\t3653 300 9 144 8 63 728 354 10 14 2 74 4692 42 425 16 137 35 24 58 1691 32 246 459 107 1 1115 4 43 4 25 52 1058 13 2663 1 393 788 4 1 158 49 6121 77 5400 6847 1 356 4 7061 16 1 5924 4 43 232 4 433 3 43 232 4 11 88 20 26 214 7 257 5410 2058 218 302 8 223 16 1 97 3647 6 11 23 22 51 7 28 4 990 2844 1259 2844 199 205 1416 40 198 2666 7006 5695 5 90 393 759 47 4 988 1612 17 9 6 1 59 28 180 107 207 205 2 1462 112 788 3 31 7110 7193 8 24 214 512 774 2187 39 2575 5 592 13 7 1 190 20 26 80 9462 9165 41 4673 1093 17 42 332 425 16 48 10 56 12 928 5 2 306 2419 4 2113 7233 3 2 360 1291 32 864 16 95 1995 35 555 33 88 24 1 166 360 356 4 2407 33 57 49 33 61 39 103 2802 694 2366 3 112 10 16 48 10\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 4952 1325 3995 397 1052 224 3837 1316 77 50 7463 1 1 157 3417 4244 3 1 7461 4421 1124 2 9208 14 1 67 1 1217 120 34 291 50 50 3417 239 28 4 62 5719 37 7790 3 109 49 2 1659 5815 629 19 1 3417 72 22 1172 19 2 4 34 1 85 1 4 1410 2157 6 59 39 721 457 1377 30 1 4 1 9618 1803 4841 6 9696 78 1870 533 409 27 1523 79 4 392 7247 7461 8 114 20 365 49 8 12 31 13 3 1 1278 2005 78 9558 16 9 109 8035 598 135 1 121 1 168 10 130 26 4768 1492 286 123 20 291 5 24 71 340 1 260\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 18 1123 2 3005 1590 462 16 2 1054 471 564 54 24 71 6807 1 18 168 5 90 1 545 899 155 7 62 1 168 22 2411 3 1 18 6 146 2 412 846 88 24 39 2 351 4 18 5398 3 3201 1686 8 24 5 787 394 456 4 3864 5 7470 9 21 49 10 6 20 279 394 456 4 50 387 17 8 24 5 4269 19 5 369 1 81 118 5 925 1 7442 45 81 22 9689 19 23 5 2497 2 53 18 16 18 1925 1351 146 1939 45 23 24 2 1898 83 5698 10 30 725 5 9\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 6 2 1529 4812 916 837 32 357 5 182 10 6 205 747 286 7910 29 1 166 290 1 453 32 9658 9052 75 60 1071 37 78 52 690 5335 22 304 3 286 202 1370 5 1775 14 1 102 4872 5160 209 5 365 239 1715 1 607 201 4 4572 29 1 434 3674 1400 22 360 7 126 14 6 7141 35 8 339 352 17 230 1056 1140 1987 236 28 933 178 8 88 99 125 3 125 341 8 42 132 2 1152 11 124 36 127 83 70 3 2091 652 126 77 1 1228 1128 16 52 81 5 3589 8 8 1309 3 8 420 354 9 21 5 4315\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3842 556 32 2 962 441 1160 30 294 3 470 30 742 4696 2177 65 3368 4917 106 25 2324 379 5154 15 2201 3 4696 411 196 1 1128 16 7451 35 6 1472 44 157 155 371 94 1 469 4 44 766 3 3049 3 274 7 31 85 3 2416 3 15 2 3 112 67 1503 7 1 4696 3 7926 87 24 43 53 1300 2193 17 9 263 380 126 162 5 2031 778 16 6244 31 5086 80 4 1 494 3009 48 5 87 38 1 2458 7 1 4189 3332 7845 213 314 14 243 42 2 808 7 2 1 572 1750 5 131 1 11 81 209 5 49 479 770 7 1 166 8596 3 307 1304 62 1062 6 2401 17 831 1 111 9 6 1070 779 2072 6621 32 4577\n1\t29 3745 59 3150 13 294 4919 1081 800 4 9463 2250 4 2 1099 223 3 195 2 13 7846 8326 3 1334 22 6195 19 1 524 3 328 5 4750 10 15 1 352 4 2 2928 11 2506 5 118 11 294 29 1 46 225 472 185 7 1 638 7141 3 242 5 70 2 2928 5854 47 4 5388 1327 3 32 35 1547 153 320 235 52 68 7227 38 1 366 44 4703 522 12 7 3 202 3126 1 166 3 1 442 4 1602 2 580 1358 1018 6 198 200 2479 132 14 255 77 822 14 2 2172 4 1 13 724 48 114 780 11 3 88 6832 1725 118 146 38 1947 6 2 1883 3205 2 1770 112 67 3 2 67 4 2 1559 747 34 7 51 6 2 1269 333 4 1 4568 8264 64 1 795 4 11 326 3 366 32 1 671 4 3150 9732 46 3 2 327 593 3 2 84 1252 17 6 650 1683 16 1 2137 258 35 270 1284 1039 15 25 519 5407 603 6 3713 627 6832 3 1438 13\n1\t4 1 158 1 265 12 2970 46 1063 2097 3 4387 5043 1 3 61 516 1 598 249 131 125 1 3 1 759 678 9922 262 61 30 7867 5 26 1852 15 1 7867 37 10 12 2 2659 4 81 35 563 48 33 61 648 1395 896 102 201 1144 22 7063 7 62 221 8 83 118 2354 193 1 21 1079 122 15 25 221 3 27 407 276 36 2 466 2851 4 11 4314 136 2367 6066 12 7 174 598 249 131 66 12 193 8 995 1 3892 3 27 12 7 3 1 508 22 1321 29 110 3 3166 14 8 1113 2 163 4 2032 6284 36 678 9922 955 959 2891 1 18 153 90 1 166 16 1 287 35 1026 3744 14 1 4048 4 1 9213 6 169 53 3 266 2 1435 9778 5943 13 92 82 171 22 34 53 14 322 15 293 3442 5 1638 35 7142 1 52 1005 280 109 197 51 22 2 342 4 119 985 66 83 1093 17 790 9 6 169 3473 850 2056 3 1 265 6 53 854\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 179 9 18 384 36 2 524 2221 7 75 20 5 90 2 18 16 1 80 2482 220 8 192 2 8 187 10 2 358 16 13 92 922 2469 32 477 5 182 15 1 119 101 483 961 712 2126 3 1657 4 6914 45 20 399 817 1134 392 4260 1 1182 6344 3463 61 105 78 36 956 2 388 562 29 985 3 51 384 5 26 58 525 30 1 206 5 734 43 1087 538 5 1 471 8 12 942 7 1 445 5 70 31 312 4 48 27 57 5 216 2159 17 114 20 149 11 13 499 384 36 9 1480 4425 1 7186 4 2 402 445 18 105 237 5864 7 2 397 11 4089 1 545 385 15 1 67 197 62 2407 101 1 171 1121 573 17 1 119 693 52\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 286 174 21 38 2 4872 466 129 72 22 377 5 474 5722 13 2687 70 79 540 8 192 46 1089 5 34 2329 4 142 1 2282 104 11 24 14 1 466 129 2 2474 1223 48 8 4293 5 38 9 28 6 11 51 6 37 103 1138 5 9 2678 144 114 9 259 812 411 3 1 57 1 263 3691 15 9 52 33 228 24 1180 5 43 3643 16 550 14 10 6 27 39 255 142 14 31 4524 8300 919 20 39 13 2609 605 84 5 90 9 259 14 1184 3 14 888 3 253 25 3125 14 534 14 888 1 846 98 40 1 5 90 2 749 13 252 6 20 1 210 21 8 24 117 107 17 10 6 7 51 1472 65 2 53 83 351 116 290\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8675 125 79 94 1 35 6 2 18 11 6 273 5 652 2 4443 5 202 4325 5727 10 12 2 866 67 4 2 259 11 433 25 231 7 1 234 4622 2658 172 1372 27 1225 77 31 161 1185 6595 11 27 153 55 3082 664 5 1 5509 30 1 2807 4 25 1499 1 102 62 161 2566 3 919 3155 11 27 191 70 919 43 352 183 42 105 13 252 12 1 74 18 11 40 89 79 1717 7 2 223 290 42 301 279 133 3 94 283 194 145 1061 1 545 76 1116 25 41 44 231 78 1129\n0\t4 9 108 10 270 554 37 1067 17 255 577 5 1 410 36 2 204 6 31 8129 752 4357 6 195 2 423 1352 175 50 5560 87 850 2056 3 43 259 440 5 4258 224 30 3769 277 568 15 69 947 16 10 69 19 3 142 428 19 450 1 121 34 2873 6 36 1014 145 273 1803 206 2892 1327 19 4564 32 1 1254 1410 7079 950 69 60 4364 5 139 73 60 44 8 467 209 19 69 75 97 8299 63 2 21 815 786 1876 5 79 1658 970 8734 69 83 1388 9 15 2 5 2905 1 1110 40 58 4276 5216 5 1 74 108 7 698 45 33 1121 404 98 23 54 100 118 10 12 2 4384 6 195 2 423 316 69 48 1 1 59 334 7 66 27 63 5281 1 3480 6 7 2 34 1 147 176 36 33 61 3295 142 1 5563 33 22 11 9823 9 6 1011 2629 5 1775 37 87 725 2 7359 69 83 2629 4175 69 113 185 4 1 3515 9604 3130 142 2 2000 3\n1\t137 39 481 1431 110 8 173 39 2497 28 178 11 3010 47 16 437 8 1331 45 8 57 5 1307 2 156 10 54 26 1 4042 4 1 5 1 7996 478 4 4700 1 2671 4 81 3363 7 1 35 61 5395 4 48 12 160 926 14 33 475 8398 5 1 3276 1 1965 3 4038 4 1 3 475 1 115 13 2699 11 1344 3 55 944 8 192 1385 4 376 2283 3908 343 2 84 7 1 14 45 3367 4 3079 1283 4555 47 7 4431 3 61 1283 10 6 491 75 10 6 37 2186 7 86 51 12 323 2 7 1 13 252 718 8521 3352 9 1 1687 22 37 862 1 9788 1 1 1 5448 1 3 1 9013 4 86 46 42 34 939 20 2 177 6 13 252 6 2 1127 3 80 866 718 3 109 6662 4 1 20 39 73 10 9661 8361 17 73 10 6 311 297 10 130 1142 115 13 614 23 1439 5 1775 26 273 5 4558 2 1009 4 468 321 450 8 118 11 8 1322\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 142 4 41 258 1352 118 48 23 114 226 236 43 1033 737 3 2 103 3903 17 33 965 43 13 4550 1033\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 231 436 2 7777 5 2 170 487 35 77 411 94 25 972 711 7 2 1363 480 915 729 2794 30 206 1490 51 22 43 8357 7 9 747 67 279 906 1 4658 1190 3 1 4 1 1217 120 5 186 4383 4 1 1261 1 21 2 2751 48 15 626 5205 3 7 1 1249 1 18 6 670 2 4704 4 218 105 91 9 1480 143 70 1 2429 860 516 1 443 5 56 47 2 1201 2129 7138 32 4577\n0\t27 12 31 3 6295 27 57 1699 25 389 157 242 5 90 10 5 1 2115 11 272 23 64 142 7 1 5604 106 1 303 3 260 7261 4 1 1611 209 2193 3 1 1611 554 27 486 59 5 26 3 907 58 2861 19 4315 72 159 375 268 49 51 61 27 2165 5 90 273 1 82 4244 12 1976 183 866 926 55 1 2475 11 61 3889 2693 13 1833 27 159 1 4 25 3132 27 472 25 157 243 68 26 4611 3 414 2 157 4 27 1436 36 27 599 2081 13 659 1 1015 40 2 212 622 2989 2 74 3892 244 242 5 70 5 1 2430 106 25 379 6 2572 32 7972 5 44 27 6 2 4787 3357 3 2337 2832 27 255 5 1 3113 5 186 25 157 94 2261 25 379 1436 7 17 33 55 597 11 7 1193 49 33 1379 11 27 190 24 4059 47 4 1 606 183 10 2183 77 1 33 55 419 1 185 4 1 2528 9976 1012 30 103 7 1 5 1856 187 79 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 63 8 7952 8 118 9 18 32 357 5 4726 42 2406 42 31 627 5004 5 50 576 3 76 720 1 111 8 793 21 7 1 3667 1874 3662 1 236 58\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1915 23 64 9 141 23 118 23 76 64 31 4 986 1948 17 23 76 149 1129 1115 84 265 3 2 327 85 5 335 15 116 2802 45 23 1498 9 141 23 24 5 320 6 2 2133 3502 4 7 1 79 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 6 169 31 18 66 5 4755 1 16 3035 7 43 598 2727 850 1661 42 36 7 1 9455 23 825 5 3 87 48 317 1783 1467 1661 1 170 1153 4 146 422 17 10 2296 62 1912 3 295 62 19 1 4 500 6389 13 207 75 23 88 3350 65 1 327 4957 7 327 4957 11 58 1 1122 6 2 108 87 23 64 75 509 8 13 2595 225 11 1553 9135 201 7 2 2 18 15 2 323 1127 1055 2314 3 58 8868\n0\t365 75 9 18 165 95 53 5656 8 96 127 81 685 132 53 746 22 39 242 5 4202 1 18 16 6063 62 746 291 46 3206 3 10 276 36 31 1208 2340 66 151 188 52 104 130 70 306 1061 708 19 62 221 8239 3 20 2971 115 13 92 121 12 2696 4 2 978 4717 141 3 20 7 2 211 699 8 83 438 402 445 104 15 91 121 45 33 118 75 5 216 15 110 115 13 150 214 1 466 129 5 26 25 2745 5217 3 623 12 8 179 9 12 5 90 1 4477 291 52 837 3 17 33 61 55 2194 115 13 92 263 12 93 46 2304 8476 6077 1255 3 1 2346 8121 115 13 150 114 20 149 235 1362 38 9 18 82 68 43 4 1 1805 13 24 8 343 11 2 1020 12 9 8 12 942 30 86 804 17 1728 142 30 297 1939 4 448 64 10 45 23 17 8 39 143 175 261 422 5 70 62 1750 62 290 115 13 4751 10 6 39 229 1265\n0\t0 0 0 0 0 0 0 0 0 0 0 0 281 21 57 37 78 8 12 46 2337 38 9 135 7 1 769 10 12 1941 29 1726 1370 29 4120 1 121 5616 2183 1 9792 32 1581 1581 1289 395 1 379 3 5 8 343 11 1 494 12 39 31 525 5 5805 1799 5 1 410 378 4 148 81 242 5 771 5 239 1715 946 293 838 5 1 178 3260 218 42 167 78 31 2158 5 1 1514 5 842 188 689 7 7370 4 11 1146 1024 10 165 1 1003 539 4 1 212 108 8 57 284 11 33 1019 8113 4 319 4309 5 943 105 91 33 143 90 333 4 110 8 143 230 36 8 12 9495 5 4439 2025 88 2188 1131 4 1 7 245 5 182 19 2 1061 5233 8 179 1 748 61 167 452 8 56 338 1 3463 11 61 5148 19 1 10 6 50 207 34 10 9506 11 45 1 3608 54 24 71 78 78 2478 3 1 238 3608 54 24 71 3461 9 21 54 24 71\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 80 1185 1554 149 730 433 7 1 4 757 142 32 1 7 66 33 2221 3 7408 62 6437 22 1525 15 62 1658 1554 3 1 1185 1970 718 6 2 2796 665 4 2 1185 1465 35 1 389 2712 370 19 1953 4208 15 2 346 604 4 86 13 92 718 2665 19 2 346 526 4 4490 35 61 1012 14 1114 6655 4 1 14 6 3708 1 81 35 2703 1 80 70 1 80 2152 3726 82 68 86 4 1 2712 7 66 1 21 12 4881 1 718 12 109 1001 50 59 6 11 1 1687 3 2769 7 1 21 61 5 1 389 2712 243 68 1 156 4490 35 6471 2350 13 10 6 731 5 2 36 9 3 90 81 1997 4 1 5197 11 3097 189 1105 17 10 6 903 5 31 389 2712 4 81 7 1 2628 4 2 156\n1\t1285 19 3 49 23 63 728 369 116 6636 41 2 5534 3433 23 1514 5 8612 48 23 175 41 3038 48 23 9393 1 120 22 109 3995 7 9 18 15 34 4251 101 9253 47 488 306 5 7609 7469 479 34 3353 7 30 43 11 3448 2 7 4325 8 88 3 54 36 5 139 19 38 9 21 3 86 979 7733 17 8 83 175 5 186 105 78 295 32 10 45 23 617 107 10 13 499 190 186 2 156 5 70 140 34 1 7202 6802 17 42 2 84 18 3 10 130 26 575 45 317 2029 3 23 617 107 1 199 4227 64 45 23 63 70 1 215 2736 324 14 10 76 90 16 2 84 4784 391 738 417 14 23 328 5 9759 7 116 8 159 10 15 50 1176 200 3 1181 128 648 38 10 15 103 188 2224 1459 65 19 1938 10 40 86 1280 3 42 2149 14 1 21 106 7609 47 1 1009 3 3437 25 2 13 7479 41 503 17 3402 96 145 4155 72 1555 31 1181\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 997 9 18 19 50 558 18 9669 3 8 243 381 133 1 135 10 40 34 1 824 4 2 53 1886 158 3 52 69 9 158 1923 32 1873 15 1830 3 447 3 1 2102 93 1819 15 1 2272 4 333 30 170 5294 13 92 21 40 11 3602 230 5 10 69 58 1767 1224 58 293 363 3 58 5006 168 69 2768 16 9 141 12 1907 11 230 151 10 806 5 1999 5 1 120 7 1 21 69 43 4 66 72 229 118 32 106 72 13 3616 2 53 141 299 5 4578 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4985 300 20 1279 183 1 800 17 55 2 156 2017 183 12 2160 50 1007 367 11 33 159 10 3 1 398 177 23 1374 1 613 165 3 1420 165 4518 5 1 9994 10 39 271 5 131 1 1296 4 2075 5558 7 4100 1 119 40 482 3 7465 2414 1496 417 94 2414 3389 157 7 1 315 3411 18 1840 1932 1867 7 2 686 9489 1304 11 2270 882 6 56 27 196 3812 236 93 43 7 1 3515 3 25 231 209 5 853 11 33 662 536 14 33 56 13 499 181 11 40 595 3242 796 7 2075 17 9 28 310 47 78 6884 300 4547 100 26 446 5 24 2075 5558 7 9 4236 17 463 744 6 2 84 108 10 1763 7778 14 50 430 2099 93 993 1282 2872 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 492 22 2 1136 342 11 22 4451 19 239 1715 40 2 2150 7 1 2430 3 492 5820 2 7018 11 153 5624 550 1 102 15 62 17 2108 5 4329 5 239 82 7 1 3158 13 3057 20 2 212 163 5 9 933 3752 1 593 6 3 66 6 501 1 121 6 17 1 67 844 2 103 222 5 26 9430 3740 87 72 474 38 127 102 8791 42 2 103 254 5 64 75 9 67 4054 47 32 95 82 67 571 11 42 78 52 224 3 153 1776 16 1468 7 10 954 720 4 1428 45 13 150 83 1374 42 888 8 83 4329 5 127 584 73 180 100 2830 450 17 8 24 1887 11 1 7 127 22 3705 1 5102 2 342 648 371 136 8617 30 4851 5 26 7 966 1 327 188 38 386 124 6 11 33 1851 2 222 52 974 16 242 146 4638 3 420 36 5 64 2 264 13\n0\t5 26 19 305 794 4 15 7 1 69 174 8 8038 65 1415 7 2023 9 2341 15 2 6162 636 5 99 2 18 5 7158 79 65 5748 1 4569 1 804 485 240 227 73 8 36 956 3641 7139 1615 3 7893 1886 6635 10 384 1100 936 3 15 1147 7 1 1249 8 144 48 2 184 10 12 2 586 357 5 50 6093 13 7704 94 956 194 8 195 118 144 1 77 1 4 50 9828 8 2299 283 588 16 9 21 14 2 161 4017 155 7 1 29 1 2 558 632 856 11 58 1534 1 212 856 1309 9577 3 55 47 1767 29 75 91 9 18 6925 1853 2007 2 4644 45 23 2497 5 99 9 94 50 1352 553 23 13 6 1 425 462 16 9 8061 23 230 94 956 9 18 69 41 300 11 23 130 26 556 5 2 16 2721 116 1568 1695 8 24 107 1500 1315 104 11 256 9 21 5 7661 373 2 147 1993 5 50 3931 401 764 210 42 65 51 224 15 115 13 7\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 28 4 1 5118 2245 1665 21 2246 8 173 241 1956 1059 9 439 67 183 253 43 1 259 2014 6 2 580 3 9799 8 173 241 27 143 175 5 186 2 3660 15 25 6937 3 26 7 2 15 1 710 5282 27 123 87 2 15 6937 3 17 11 12 386 8 812 11 154 85 7 2245 3064 1665 124 189 2 1696 2 996 3 2 287 6 386 17 2 177 6 38 31 6708 5 1 1350 4 127 124 24 1 8113 1534 9 21 7007 24 102 168 20 28 17 3468\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 578 1791 3 5483 309 7 2 4846 2700 35 83 56 36 239 1885 20 1311 479 56 9642 35 24 286 5 13 743 46 1515 684 1073 46 262 30 42 102 1904 460 3 2 46 607 1440 1 67 6 109 428 3 1 21 40 11 684 4159 5900 169 118 75 5 1346 3676 11 124 1163 39 83 3702 9 63 515 26 1074 5 1 1058 819 165 3 1 215 3700 7 154 3293 13 252 6 956 239 9581 8 173 96 4 2 138 111 5 2 1075 230 68 9 103 4773\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 48 12 60 8450 5122 5019 266 2 1277 7 1 958 35 6 15 2 648 4898 8913 16 2 1004 524 1295 2 35 451 5 357 174 6 2685 3 3976 2 7 1776 4 2330 791 9 12 2 8445 4 112 16 86 4467 1018 93 3455 14 28 4 1 2836 1 182 2439 22 5 26 3170 1761 6179 63 396 6952 53 76 3 2931 58 729 75 345 1 1252 17 204 444 8953 3 23 63 64 1 2346 9056 58 460 32 3615\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 46 627 108 1660 6 53 3 3360 13 858 8 96 51 22 102 6741 1155 7 1 1307 32 1 1307 1660 13 3053 907 1 287 12 2 148 8174 3 60 114 44 13 3562 5856 181 5 79 216 7 9 108 245 8 87 241 7 155 5 1 958 3179 4 13 1627 1660 88 552 1 1561 17 20 25 4370 13 659 1 3179 4 4814 5029 1 164 63 889 13 872 8 87 241 51 6 58 465 7 656 204 8 4091 15 1010 3566 32 13 724 1 67 2042 7747 40 86 221 7404 4 34 127 4 28 234 41 97 41 28 63 241 11 27 6 56 2896 3 1 1207 69 25 1327 12 39 13 743 980 4 795 66 190 466 44 5 241 11 27 6 32 1 3667 1 7721 69 109 10 228 26 43 43 13 4956 8 36 9 18 69 40 5 751 2 9074 13\n0\t8905 17 207 14 237 14 33 186 9 6374 378 4 77 48 88 780 45 275 89 9 232 4 33 1173 1 1589 1606 9 88 24 71 2 53 6374 536 15 1 4 9 232 4 5529 3 1873 15 1 1829 1 3395 1368 17 33 1173 1 1589 1606 3 451 5 8885 37 98 1 1207 1 177 155 2193 3 5 8503 2085 59 5 24 10 65 30 25 304 17 1230 66 511 653 45 1808 636 5 8885 37 195 27 6 1 913 601 848 81 73 25 103 3763 3 33 511 187 122 1686 98 5 90 1 18 2428 1337 7 2 2570 598 733 189 1 102 2490 5 550 189 62 2083 33 90 2 342 4 1035 5 149 122 136 27 1141 142 350 4 7593 34 4 9 88 24 71 4298 142 30 20 2828 1 1589 66 54 100 24 653 45 1808 8555 9 18 713 37 8 187 10 31 1784 358 460 16 5718 17 10 54 24 71 138 45 33 1808 3437 1 1589 253 253 122 328 10 702 1589 23\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 173 134 8 338 9 18 46 40 43 1474 10 153 291 446 5 90 65 86 438 704 10 6 2 267 41 2 153 56 216 14 105 822 7 1511 5 26 2 1 1474 529 22 156 3 237 93 153 90 2 163 4 291 5 780 16 58 42 93 483 230 36 33 39 89 188 65 14 33 61 33 57 39 556 2 222 4 85 5 1346 228 24 71 2 138 54 134 1 393 12 17 11 54 467 1 344 4 1 18 57 152 71 2000 65 5 10 39 3149 207 143 149 10 36 8 51 39 213 95 187 3907 1141 2 6277 3 904 8542\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2393 3701 3 690 3945 39 216 37 109 1413 1 4 15 1 1712 6 2 4060 89 7 8996 1 178 49 33 889 316 7 1289 6 2 2067 3 1 570 178 65 1 21 5 7419 2393 3701 380 2 1016 278 14 1 3561 14 59 27 5402 1 7 1 672 3 1 4257 7364 15 25 940 4 48 6 160 19 921 2 84 690 3945 3718 6 2622 3 1677 12 10 138 68 7 9 158 25 6088 15 3063 2570 22 4884 99 16 1 178 774 1 182 49 1712 3 25 752 1006 146 4 1 2294 3 2671 69\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35 470 9 514 158 6 19 2 1174 94 1 547 3 1 382 1240 6713 267 40 1417 25 221 568 15 2 13 92 67 6 7342 72 205 539 396 6 3654 14 27 6 7 102 817 3 56 4201 16 1 807 17 5 79 1 184 7447 6 1 176 9 18 380 1 545 77 873 1342 69 148 157 7 9764 40 2 9827 16 781 3602 6368 15 548 1 1122 6 2 18 11 76 1622 23 1356 90 23 2655 90 23 2564 3 205 3162 23 3 187 23 3122 77 2001 13 4804 176 16 1 1 250 1315 171 32 14 33 34 1030 316 7 943 2842 32 607 120 5 386 3916\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 1150 9 305 16 102 3799 2 201 4 84 1041 3 1 1392 55 193 626 9304 63 26 645 41 6789 7 9 1723 10 12 2 184 6789 525 29 1749 1216 1310 19 86 94 283 3730 4497 7 2 53 21 36 8485 8 143 96 27 88 815 7622 5 132 2 3 8 449 10 143 2704 25 626 181 5 24 2910 1 111 4 80 918 19 2 11 1680 121 7 124 132 14 9 461 12 308 2 84 353 7 313 581 55 193 25 113 278 12 20 17 218 84 9 18 12 323 2 184 351 4 290 8 187 10 2 358 47 4 5579\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 59 937 71 446 5 1236 65 15 1 124 4 9511 5433 220 33 22 20 620 19 9501 7 1 24 71 78 3565 125 1 172 73 9 12 28 4 1 4 1 12 60 56 43 460 4 9 1592 36 43 4 1 1449 128 3372 20 16 1206 181 2304 3 775 1299 595 1953 3 14 31 651 60 151 5420 291 36 527 7 9 21 14 1 1228 57 2260 1455 4 4157 2061 34 4 1 668 2139 24 71 72 22 303 15 2 267 4 11 1165 15 103 148 12 101 1390 16 8 24 59 102 60 12 775 3455 30 1 616 41 60 57 58 860 29 96 11 1 1387 6 1 406 68 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 159 9 18 49 8 12 2 103 2784 3 8 24 381 10 154 290 273 1 3463 22 2 103 5174 1074 5 944 17 155 7 1 2032 10 12 1051 8 159 10 7 1 215 2294 324 59 3 179 10 12 2856 11 12 75 8 320 50 61 15 50 231 69 2327 6573 12 491 3 8 339 947 16 122 5 209 155 239 8354 13 614 23 24 2 3 1271 652 126 65 133 9 161 5500 324 4 42 2 264 324 68 72 22 314 5 2087 17 35 666 51 6 28 13 777 2 299 18 5 836 10 5488 537 53 2606 565 8 83 118 75 1 706 324 6 41 45 51 6 31 706 28 4 490 17 1 2294 6 1 1293 335 3 749\n0\t7 2 3339 6 5596 3 9680 31 1190 4 258 15 1 3 561 46 3 207 174 1606 75 63 2025 2 569 3 1603 7 1947 463 744 4723 1937 11 1603 7 6 2 1897 3 561 44 5 1 569 73 4 44 3018 1514 5 1 3789 220 97 172 6372 40 71 242 5 652 25 5212 585 155 5 157 3 244 3023 5 90 95 423 5320 10 8 1582 83 64 1 272 4 1 212 108 42 2 4282 3957 4 608 28 4 1 5626 4235 55 6 608 17 1 263 6 5940 3 660 7579 144 213 261 1747 5 24 537 16 14 223 14 585 1373 207 39 56 7973 106 3 75 114 1283 825 5 1 373 1263 2 156 1975 9422 3 3971 2103 17 127 22 4368 463 30 528 8638 41 140 2 900 551 4 3550 1 8027 1667 1745 1 21 15 31 3664 3 1 274 1657 176 772 227 5 26 8220 4182 9070 278 608 4609 1 402 272 4 25 895 608 6 3 128 42 1 113 1329 38 1 389 2803\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 10 255 224 5 2603 3262 12 1 28 11 89 23 1717 1 345 3262 6 2 282 35 57 44 212 157 2632 30 358 510 3 1906 3 2 3 1359 5 561 6096 8553 72 165 5 2928 3262 7 13 8643 1 67 3262 3 44 435 22 3 1086 660 62 5 1555 25 6415 3 5 187 25 752 43 9757 1508 5546 2 1696 17 98 2180 521 8145 1 59 283 3780 4432 7 44 671 3 7 44 1612 13 1627 16 97 2491 3262 6 2 5705 5 44 3 44 60 40 449 245 1359 5 44 2098 1 9880 4 1 408 36 3262 247 372 15 2 331 60 40 449 11 28 326 6106 149 44 1 680 963 255 49 1 2523 4 1 6646 693 2 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 2242 1 212 1399 4 1 18 54 26 5 64 43 1086 482 259 121 36 1469 8125 3 98 64 1469 891 4793 5 3242 378 23 39 64 1469 891 101 411 3 81 20 2308 550 51 22 300 358 168 7 1 389 18 106 33 333 62 9 130 24 71 2 163 828\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1915 51 61 102 52 1515 4113 68 745 6336 3 4910 1752 3825 371 7 2 52 1515 18 7 8 83 118 35 33 5091 8 74 159 9 2038 103 2067 2992 172 989 29 1 717 4 3 8 1064 95 349 7 66 8 24 1200 5 694 224 5 99 10 316 2 1130 461 42 5605 9384 4502 9451 3 1169 1 1151 4 127 102 1055 6 205 709 3 1722 866 69 100 52 37 68 7 4910 1770 525 5 652 65 1 260 4288 7 1 2 178 207 205 211 3 2 425 3306 4 9167 3 11 570 19 1 8181 2083 543 4 6336 14 27 23 34 69 40 261 117 89 1 176 3 478 4 37 1080 3 8 54 100 175 5 118 261 109 35 143 112 9 2803\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 320 9 131 32 3923 3252 8 12 59 1450 172 4 717 3 10 1728 79 660 13 150 54 112 5 9 251 3 64 45 10 12 39 14 313 14 320 193 8 2172 50 1600 3 4292 24 13 3422 9 12 612 183 1928 3 2 4 82 8 2172 11 10 40 86 4201 7 782 104 32 1 3 1 1105 4 1 49 8 96 4 194 9 12 2 148 2 18 242 5 5466 4296 3 1105 1389 38 35 72 22 3 48 72 2620 1 3277 1045 40 220 98 390 4725 3 209 5 26 1 3277 16 95 18 11 40 7 450\n1\t3 33 5 352 122 47 30 122 7 393 25 3 37 792 3132 77 2127 6 1 3 1 6013 4 1 623 32 25 5 1 1650 27 615 411 7 533 1 135 43 4 1 623 6 3243 3860 47 3488 17 80 4 10 6 39 109 248 1244 1211 7 4637 8 214 43 546 4 1 21 152 167 1462 14 2127 615 411 5641 205 684 1830 3 436 16 1 74 85 7 25 500 145 20 242 5 2074 1 18 14 2 112 67 41 2 42 2 3343 7 116 1211 1604 154 53 267 8 24 117 107 1263 227 683 16 23 5 474 38 1 807 2 53 3770 54 26 1060 2279 32 1188 9 5358 40 2 696 2106 17 6 436 2 222 52 6447 7 43 4 86 4019 8 591 336 1 393 4 1 158 66 8 179 12 2 425 111 5 182 1 1772 197 685 235 2408 10 1385 79 4 38 46 822 3 10 844 23 1094 3 66 6 610 75 23 130 230 49 23 1812 2 1211 8 54 496\n0\t594 1183 23 175 5 26 256 47 4 116 29 269 223 10 6 8533 1649 11 10 130 24 71 2619 5 457 358 13 77 1733 3646 1 1054 263 3 121 2601 103 55 7 1 1381 1853 2889 29 225 1 453 1037 3 6403 7209 47 4 31 483 904 1252 61 227 5 90 23 539 29 1 108 7 3173 5 6252 28 741 65 59 16 1 85 433 7 1000 5 64 48 629 94 1 567 178 4 1 4 1 633 13 92 1043 6 37 91 28 6 100 1694 5 28 4 1 250 647 35 8 96 100 169 6 2 60 39 784 7 28 178 7 1 750 4 2 515 1 178 106 60 6 1694 5 1 545 12 4409 19 1 8509 3 58 28 1640 11 2 129 3825 47 4 1677 12 31 1846 21 13 659 2 4930 83 351 116 85 15 9 461 50 379 3 8 555 72 6629 17 29 225 72 1242 257 221 30 5581 7 943 1678 7 1 21 36 10 12 948 1145 3447 7 409 409 409\n1\t177 8 24 5 134 6 11 8 221 4452 180 107 10 29 225 394 1287 9 18 6 28 4 1 80 299 104 117 1001 1 21 792 15 5483 242 5 149 44 6641 44 975 12 3542 7 2498 3 1 231 40 455 2798 385 255 4452 2583 1083 44 610 106 44 975 6 3 253 31 1857 5 149 768 4452 2583 6 2 5803 27 153 216 16 319 73 27 39 451 5 352 3 24 2 53 6610 25 2185 1026 122 200 3 5051 62 2766 77 9 21 6 2 84 6610 42 3654 42 42 39 1051 8 497 42 2 1280 21 15 2 46 346 1280 7715 6 425 14 4452 2583 3 3448 47 43 4834 11 468 100 3 1490 22 93 53 14 1 282 3 1 294 8453 1 259 809 3954 4104 65 7 266 1 66 39 1583 5 1 1434 7 97 3178 9 21 6 696 5 7326 7763 7 43 1175 42 696 5 578 2164 703 300 10 130 24 71 404 7326 2164 17 1034 42 462 424 42 2 46 837 135\n0\t30 1 344 4 1 167 78 13 69 9 6 28 4 1 210 124 180 117 57 1 6564 5 915 512 854 1 445 57 5 26 38 3 12 1019 1135 19 1 840 5614 801 152 190 20 24 71 2 91 51 6 162 5 1028 7964 82 68 903 288 840 168 15 679 4 2069 2484 6625 9 21 151 82 36 2207 4 1 536 434 176 36 43 190 5368 7 1 3631 69 3 8 497 45 317 56 2599 41 298 3 133 10 15 2 156 417 69 8 497 10 88 26 485 29 11 699 17 20 30 437 8 1595 167 78 297 38 110 45 1028 7964 41 1028 1597 801 6 1381 4904 3 6 2403 14 2 19 1 1042 4 6 4 82 557 69 98 27 130 26 4310 32 117 246 235 5 87 15 253 2 21 117 316 457 4 2295 51 6 28 1474 6178 1112 7 1 1967 350 4 1 158 3 2 163 4 813 69 37 646 2961 9 28 2 46 5567 8542 69 87 725 2 2454 3 1899\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 1274 1048 8869 358 7118 286 11 18 165 364 68 2 843 4274 9 21 59 165 2 843 32 503 17 10 40 32 125 1098 8 83 64 2 302 144 33 36 9 21 37 5915 13 252 21 6 1495 73 10 924 117 844 137 7185 7 11 2415 184 2168 3 10 59 40 2 900 4 715 81 7 9 135 10 6 202 102 719 223 66 6 400 97 4 4996 22 673 3 1 21 1511 6 93 534 1668 66 6 2578 5 836 1 21 63 39 26 5 2 156 13 252 21 1523 79 4 470 30 11 28 6 1381 1495 1 4996 22 93 1381 1466 10 93 40 2 298 8 57 5 582 133 11 28 94 1 74 67 13 252 21 1419 4 2380 41\n1\t1260 4 386 67 9168 793 32 2 12 74 620 19 598 756 7 19 1 103 219 4569 1354 2982 5841 8 159 11 10 12 101 2494 316 19 2982 7983 3 636 5 187 10 2 3137 7739 1 1134 7042 5178 4 82 578 584 642 3 646 209 5 23 50 3 1060 193 20 7 1 166 897 14 127 9168 793 32 2 6 6687 31 837 3 29 268 3604 13 743 3165 7 2 346 3368 2370 5 176 125 1 1894 4 2 937 5212 4 1864 47 7 1 27 1148 31 11 40 71 7 7045 16 3174 4 982 17 48 123 9 24 7 2771 15 31 161 2204 4 3 2 3067 2247 38 1 654 3 48 87 1 913 3 25 9655 118 38 1 1864 20 782 7 95 744 8 381 9 103 2675 3 57 1 599 85 71 1534 68 1801 269 10 88 24 390 2 323 84 14 10 424 10 34 811 2 103 4847 3 2 222 52 8415 5 274 1 1646 54 24 71 13 150 187 10 1450 47 4 1731\n0\t105 170 14 2 5305 15 2 1185 717 1072 6 53 292 60 93 6 7 44 406 982 1 964 6 457 3 93 999 5 176 2681 170 49 44 750 3412 585 5356 475 5546 8933 9562 151 23 560 48 127 415 159 7 550 83 118 75 95 545 88 1999 5 25 6021 1 80 4233 278 6 340 30 4387 35 151 1 344 4 1 201 176 36 5368 10 11 1 2652 976 7 9 1859 54 2469 117 625 136 33 1 915 4 62 5 475 5 1942 450 63 2025 241 11 2652 626 54 2469 625 16 4029 1000 16 2208 5 475 1942 25 2174 1892 1 189 1 3 1 6 3534 5 905 2159 1 5045 114 20 1 3062 4 3871 318 518 7 1 2155 10 12 8246 30 1 710 5930 72 64 1 710 2 19 5 2303 94 66 33 34 457 2 4612 1000 16 2 4 3850 6318 5 1197 3 8101 45 23 175 5 64 2 109 1171 6466 274 7 2 2118 4087 83 99 4111 2 237 138 6253 54 26 1\n0\t364 68 900 145 20 667 23 511 24 17 14 521 14 1 2265 12 14 1383 2505 54 186 6025 54 139 142 19 62 221 55 5 333 1 13 872 45 10 61 2144 11 1 2265 12 37 15 11 1 8114 12 2161 5 3258 1 9847 33 54 2066 7 16 3 241 503 62 54 20 26 45 51 12 2 680 11 1408 54 20 1690 1 8114 54 24 2 1383 2272 3878 2140 45 33 61 2161 5 841 7 154 5086 2 1776 54 26 13 659 639 5 1942 9 141 23 191 1942 11 257 1481 22 6223 15 6223 3 31 6223 4380 4 136 10 190 128 26 306 11 1 80 2244 177 7 1 234 6 2 15 2 8022 3 257 1383 2495 22 1029 15 5605 3909 15 22 237 2255 257 1514 5 934 8340 13 3371 1 212 3225 4 1 18 8498 19 1 1258 5 1 21 1082 5 1670 72 22 909 5 241 11 257 8948 3 22 6843 4 1873 15 55 1 80 1669 13 858 2 5455 8 149 1 18\n0\t110 1 6932 1 1252 1 121 3 1 525 29 95 5056 34 22 5 104 36 476 3496 42 7159 37 10 153 55 1917 1 840 41 5 9751 10 14 2 2737 1935 1958 1 324 6 8 57 455 11 1 18 4223 43 3660 178 189 217 14 1 18 1310 1251 7 1044 4 79 3 34 82 1033 384 5 26 433 8 214 512 1000 16 1 3660 178 69 29 225 8 54 70 146 47 4 476 98 10 1 102 624 70 2756 19 62 33 2248 7 1 3660 1435 3 10 1294 207 110 81 179 9 12 6 28 4 137 509 104 11 6 37 904 3 3365 11 10 6 254 5 24 95 1687 29 34 1918 110 10 1275 47 162 3 6 924 279 523 1395 7 1 182 10 844 199 9668 3177 6 2 1378 4 822 3 478 3 207 229 1 80 6778 2482 10 76 58 894 26 253 1 14 2 518 366 19 4324 41 1 1045 9669 664 5 42 402 2591 3 7159 1020 69 3 207 229 113 16 2420\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4173 6 53 14 3708 3 55 193 51 22 169 2 156 4173 42 373 20 2 4173 13 777 650 29 2383 3 8 1180 5 335 10 14 132 108 10 12 6980 7 9938 14 174 1290 4173 141 37 137 35 909 2 1021 125 1 401 267 61 5013 13 92 18 40 327 529 3 557 109 14 2 18 16 2802 8 173 134 8 336 9 141 17 98 316 145 20 86 3080\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 215 1084 312 71 721 20 9 18 228 24 2836 4063 57 5 209 77 1 572 3 1378 10 960 1 315 397 4827 339 1959 1 26 6384 37 33 3 2237 9 12 59 1 357 4 1 4 9 135 1782 5 59 11 9 12 174 329 1313 2859 542 1095 542 960 427 6 10 55 1123 52 1688 443 916 4 1060 80 2244 6 29 225 31 525 29 1 382 4801 17 1082 5 187 199 95 5829 16 144 1 120 22 403 476 72 22 100 340 1 8250 82 68 6829 28 76 773 127 144 1 3043 14 123 127 2508 1923 32 2 278 30 294 3 2 1551 329 30 1539 87 20 1460 15 9 461 28 346 222 4 51 12 2 148 2561 285 1673 11 8998 3 7817 7 1 469 4 1 170 4244 11 2200 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 74 159 9 49 8 12 200 9552 8 2299 48 8 3114 5 26 2 4712 8749 4 48 472 1888 498 47 944 1194 172 1372 11 8 2299 297 15 84 7882 73 10 181 1 1063 100 165 660 253 31 8749 5 1 471 51 6 58 119 5 9 51 6 58 129 3612 58 155 441 58 129 2798 1 53 559 87 188 73 33 22 501 136 1 91 559 87 188 4580 73 33 22 565 28 4992 892 185 6 49 275 35 23 54 96 5 26 731 2180 3 1348 3457 7 1 4822 33 39 62 7261 3 899 778 236 1092 95 494 1497 45 23 757 47 1 566 168 3 1 599 1025 23 1621 4 1 682 13 4634 9 73 23 175 5 64 43 53 847 3 16 58 82 2560 41 45 23 36 5 176 29 1053 1254 6031 883 1053 1254\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 3088 347 38 2 1996 3 25 231 35 123 48 1405 11 101 4097 32 3 848 318 2 4188 4 1088 2109 57 227 4 9 1996 3 328 7 943 1175 5 24 1 465 33 22 4 448 29 154 473 3 136 1 4188 22 47 29 1 1996 4037 1 231 3471 421 1 277 13 324 8 333 1 3277 21 46 6 52 4 2 851 489 4 296 6767 104 591 1 502 33 33 55 24 690 8331 14 1803 1996 5 5 734 5 1 2158 3 2108 5 773 1 272 4 1 67 169 37 4675 5 126 90 679 4 319 3 2410 174 382 537\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 405 5 36 9 158 1661 86 2 4379 4379 4379 17 8 36 137 703 45 248 109 9 57 34 1 4534 4 101 2 501 20 3435 17 53 137 4534 57 881 1 121 12 2007 3 9 12 74 107 49 1 22 1694 15 62 28 30 28 556 1 6399 3 28 7934 22 39 2007 1661 8 1374 91 9 6 52 68 458 10 12 91 523 7364 15 91 1014 102 4 1 57 71 7 2 733 15 239 82 3 114 20 55 9 318 2 163 1231 77 1 13 4925 55 1437 144 8 192 5 753 9 18 29 2616 13 150 76 182 15 119 8432 119 1931 217 52 119\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1027 835 20 5 165 116 23 165 116 7375 23 165 116 231 7443 23 165 116 1055 23 165 725 28 514 3569 2306 457 897 1525 29 6849 30 31 4126 38 704 479 1 398 3843 23 339 1006 16 5521 13 6 4455 6496 2536 6 1409 7842 14 2 1055 444 205 3 154 7193 6 56 84 14 1 585 39 242 5 26 14 1408 14 888 7 9 2232 3 936 244 2 2438 412 46 3 197 126 399 1 344 4 1 201 6 2856 1531 266 2 5596 7632 15 3 103 14 45 42 25 3275 1740 6 2038 14 2 514 8 555 11 27 57 262 1 462 280 7 15 5246 50 356 6 11 25 962 5342 54 24 71 2912 5 1 697 1223 25 6 286 2 327 13 659 2179 2 84 3 3102 29 5308 1055 7 984 3 5 1258 2 306 864\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 9 21 316 3 1887 75 542 10 6 5 1 821 45 72 2900 1 185 38 9822 1078 13 2595 1 85 20 78 63 26 620 19 1 2238 11 51 6 78 7 1 1 4116 4 1 129 15 6691 6 46 109 8328 5 1 1754 8 354 9 21 5 261 35 117 1310 16 174 454 3 1 82 601 713 5 186 3320 4 122 41 768 8 24 284 11 12 1783 5 90 2 5486 4 1 821 16 17 49 27 544 5 7 1 1210 27 1647 2826 3 88 20 1812 52 68 2 156 456 3 212 1480 12 28 63 348 1 821 6 428 32 1 683 3 1 21 6 2 13 4 2 185 4 10 29 4822\n0\t1 13 252 6 2 747 1296 4 9100 3260 2041 23 563 106 9 21 12 13 150 1345 1309 47 1767 49 29 1 769 49 6 9958 44 6184 823 16 60 2063 11 136 25 157 57 71 757 386 29 717 27 57 390 2 1368 48 27 57 71 2 6217 1059 1 80 3833 4581 265 15 1829 4277 11 178 7 1 106 27 649 2 1946 11 14 2 27 76 6773 52 68 1 1946 6 2 425 665 4 48 271 19 7 257 1 528 3 1963 551 4 1451 16 1 13 92 3278 1585 5976 1671 4581 6 100 1435 34 72 64 22 2962 13 743 464 572 403 162 5 4012 1671 3151 48 586 280 6678 22 127 4581 8589 3 62 4896 1948 1 2602 296 2712 130 186 29 62 46 7463 35 12 9 2253 35 1012 27 89 32 1 161 756 131 176 1779 30 9274 8 118 10 12 1 3180 4 11 1241 9 103 487 77 1 6447 1198 11 27 1306 48 2 1140 1296 4 9100 49 9 6 404 1729 572 2815\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 317 20 2 184 6859 1787 891 2456 298 416 6 1 700 891 2456 18 117 1001 2368 73 457 34 1 10 4918 15 1451 1 9138 3 2976 396 230 341 16 1 1495 2212 234 4 5706 11 570 178 6 28 4 1 80 4427 3 7910 570 168 5 2 18 8 24 117 575 671 24 107 1 6637 4 891 13 3382\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3756 4 50 430 289 155 7 1 14 8 2209 10 337 5 1276 19 2848 883 815 19 1 3555 3201 204 7 7718 3 2414 61 84 6340 13 431 531 3866 2 2281 15 246 5 4783 7 874 5 874 5455 15 43 426 4 3018 5 62 8710 1 1063 89 2 991 5 70 295 32 1 692 2873 4 3804 3 4237 14 78 14 13 150 320 28 431 7 66 1 12 1 1343 4 31 1980 1297 3318 14 2 3144 1955 66 544 5 564 81 7 2 707 7731 1 570 159 242 5 386 1 9752 31 6201 4 3 850 109 7582 23 57 5 26 51 29 1 85 17 10 12 31 240 13 198 3485 2 163 4 2157 3 7201 77 25 871 3 9 12 28 4 25 6837 13 1071 2 334 7 9603 4 5 3692 1347 7582 23 22 19 10 4077 7 1 524 4 1 3801 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 619 38 1 97 633 35 55 187 9 21 138 50 179 38 9 21 12 11 1 3080 410 6 1217 3 3 4872 2891 1489 3 2 298 823 1810 22 687 1694 77 21 622 30 1 9359 1 567 3 1 22 1 618 1419 1 541 4 8640 3168 121 3 861 22 1669 29 113 17 45 23 176 16 1 845 1505 4534 23 22 7 1 260 334 675 3 1 171 83 24 31 1101 13 1889 1731\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 1 330 185 4 1060 2 1894 4 1139 386 104 11 348 199 2 103 52 38 1 234 4 1060 13 659 9 28 72 825 75 413 3 5779 88 20 216 3 414 1413 10 6 2 103 622 2869 7 1 234 4 1060 20 14 53 14 1 74 185 570 3677 4 1 17 128 167 2072\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7519 5801 518 3907 2539 4 362 13 51 6 128 5903 3 97 170 3 6630 32 1 84 7489 4 413 3 506 4 62 587 195 14 234 392 13 415 1555 9 1386 346 6422 1101 2473 19 2 28 2 170 5771 35 6 8953 44 7 9735 102 415 35 76 62 221 3 2 2638 287 35 6 1455 4 44 754 434 13 723 415 76 209 371 15 102 7225 3 2 1081 2169 69 202 2528 69 5 70 2 4162 16 28 84 4564 3533 7 362 13 5 6392 2221 9 21 16 75 1646 3 1212 63 348 2 471 7058 20 2 21 5 786 97 13 2188 65 19 5515 217 1053 3 9242 1 624 125 19 43 5801 518 3907 6 4564 7829\n0\t67 6 1 210 11 8 24 107 37 3980 5036 4411 5 4445 7 1776 16 43 813 27 333 43 240 4333 2266 162 1074 5 3 6 185 4 43 1209 6333 1530 17 27 216 3420 244 5293 5 1 5995 4 2 1127 1706 2201 11 6 2811 43 315 5 3471 2 8526 66 76 44 5 26 5 202 2 967 4 3804 470 30 294 4654 3 2371 30 578 5036 357 25 3132 7 1 1776 4 1 2201 15 43 147 56 91 121 2 2901 197 4458 435 763 1420 2 3403 2 933 1706 3 1796 174 3083 1706 37 515 7 9 1406 27 213 13 2136 63 357 507 75 9 18 54 26 39 288 29 25 466 353 6 2 568 1820 7 1 121 538 1074 5 578 4905 3 977 45 23 99 1 21 669 83 354 9 23 76 70 602 7 28 4 1 52 3313 400 2674 15 464 121 2137 56 91 293 363 3 3627 13 150 1768 354 20 5 64 9 760 174 141 64 174 9669 139 47 15 116 2098 5673 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8518 83 55 96 38 2424 9 32 1 73 9 6 28 898 4 2 91 108 1397 96 11 57 428 9 108 4888 2 5556 6 224 1 4200 3 936 40 5 70 155 689 596 4 1 301 464 228 9369 17 217 596 76 229 473 295 7 896 144 143 33 87 10 7 41 8 1266 1983 16 31 4989 200 136 33 369 87 1 212 1606 1989 1989 670 154 625 129 6 1853 1251 32 11 9436 2112 35 6 39 260 16 2 18 6350 17 297 422 38 1 18 6 2764 2764 8 202 1310 3072 15 6103 133 9 108 1453 5865 2740 8 114 735 3072 15 6103 133 9 108 42 39 1634 17 8071 42 20 14 91 14\n1\t23 284 32 1 2671 4 1 4450 708 36 9 508 149 1 541 2764 3 646 26 1 74 5 920 11 1 21 6 125 50 4843 17 55 6170 2443 49 30 1396 35 219 9644 11 27 143 55 365 1 21 3 27 470 1027 43 228 134 11 12 1674 2 5 25 52 8278 1093 7 1050 25 30 73 10 93 1 3580 106 1 2689 153 323 118 704 6 9696 146 148 41 7 2 2509 36 1 72 22 9696 1 166 574 4 6 9907 3164 106 72 662 340 1 5 48 6 610 160 778 488 2 84 934 4 1 494 153 352 6 93 7984 30 2514 3 158 1427 4 7393 299 3706 50 923 430 178 29 2 888 3054 189 3 2 287 60 762 29 2 2 1213 1189 980 106 22 314 243 84 2840 3 5774 338 9 21 2758 292 8 63 365 144 10 123 4190 2 1332 336 11 28 178 29 1 1433 15 2 9054 222 19 1 3135 7 2 1612 3400 14 508 6401 1 44 7 31 8582 4\n1\t80 4 1 2064 22 670 1 1401 6 20 7 2214 17 7 20 13 92 121 6 452 1745 78 4 1 124 1953 623 341 28 4 1 113 2943 498 7 2 547 278 3 98 51 6 1 170 2607 1 6439 4130 44 278 29 74 181 4832 3 286 23 1108 853 11 10 6 425 16 1 919 35 6 992 4832 3 3 20 29 34 3023 16 48 60 6 5 3374 3 4 448 51 6 1 1080 201 2862 14 1 3446 6756 2 103 1010 1334 344 7 3778 561 13 614 1 21 40 2 10 54 26 1 7752 4 290 220 1 1042 4 9 21 37 97 172 989 670 3330 3 24 209 385 3 2632 1 124 113 2126 318 670 297 38 10 40 390 2746 15 1 1714 16 410 1691 3 28 615 78 4 1 124 3532 869 5 323 1116 10 7 9 326 3 3575 10 191 26 2111 14 10 308 1220 14 146 13 1 9960 8 24 58 15 496 9 21 5 261 288 16 2 501 782 290 4066 13\n1\t568 4972 22 1 6673 4 1 81 106 33 77 48 33 6 242 5 875 7 1388 15 62 423 286 7 1 3359 22 1 893 562 4 1 161 886 15 1 413 66 19 8192 1 259 2123 25 9358 3 4101 25 1327 3 1 170 287 35 3 44 13 92 21 40 58 1077 14 10 19 1 4 86 1512 5863 174 687 865 4 341 82 6 25 781 4 893 9000 127 1483 1 4 1 161 287 16 44 3357 1 893 168 7 1 1 893 562 4 1 886 15 1 102 413 7 44 8599 5673 13 659 40 1012 1 486 4 81 35 963 190 26 14 78 14 33 88 26 8063 4 5618 147 887 41 1 902 130 20 9322 41 230 2502 16 1 7 1 18 14 33 730 88 390 2100 4 1 166 423 3 5087 7 264 8292 7 1 769 8 241 21 6 2 3199 5 199 38 1 464 1296 4 423 1830 37 4769 2722 7 3 45 1 545 123 20 5 1 1318 16 9 510 40 4013 25\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 112 471 51 6 20 28 3596 51 22 29 225 8766 17 33 34 24 5 87 15 1 166 1499 1499 7032 6 38 5 2459 2030 60 153 112 849 17 27 6 1316 3 53 1368 49 27 844 5 1978 25 2057 532 7 4302 7032 762 711 27 3 2030 617 3340 239 82 7 681 172 3 7032 451 5 9242 122 5 1 4 448 33 735 4079 16 239 6874 13 5094 9 67 3 112 584 4 1007 3 1848 3 3518 2210 6 146 23 311 24 5 64 16 4175 154 107 6 2 4621 5 1775 15 14 1 2437 376 7 1 750 4 3577 60 1196 3 56 2149 1 918 11 2463 2423 6 167 501 3 3309 14 322 3 14 532 3 4346 14 44 435 22 9306 9 18 6 722 1515 3 2091 496 3473\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 370 19 2 306 67 4 75 2 164 1929 4 25 85 69 1 84 5240 1556 296 3 6096 69 89 2 2846 7785 5 75 1214 4918 81 15 1872 13 7 1 2794 4 81 15 1872 4386 27 1647 5 15 4572 3 94 283 1 1872 6665 4 1 85 3 3549 6096 7038 137 3 1979 7487 15 6711 3 82 81 5 87 1 1 67 4 7659 15 7487 3 6 331 4 1794 53 623 3 2521 2930\n0\t3 37 778 3 37 3377 13 92 59 111 8 230 8 63 70 2 8864 5 365 1 3276 870 11 9464 3717 621 457 6 5 932 2 5717 134 11 1 141 1 1801 349 161 12 38 1 250 129 101 73 27 12 3803 14 2 3049 17 378 4 246 1 18 186 2 52 1005 8979 8652 1308 3 267 54 15 34 4 1 4280 4042 101 11 4 8671 423 5807 4851 5 4219 115 13 7 2 5522 14 1 80 129 11 88 24 71 757 301 47 4 9 775 428 1252 385 15 2 976 129 35 3448 295 34 4 25 1842 7160 3 9224 5 26 15 2 282 35 5625 630 4 1 166 7444 14 7075 14 109 14 31 31 2411 606 1430 1146 6749 529 4 120 242 5 1999 5 239 1885 3 819 165 9464 13 150 214 9 18 5 26 31 2158 5 95 4 137 81 47 51 35 22 2280 1041 24 2 163 52 860 3 662 355 13 2687 64 9 18 2521 50 115 13 872 45 23 70 2599 183\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6552 357 142 2159 220 9 18 6 2 1015 4 2 3210 1 1020 40 5 26 220 9 324 460 7 1 466 280 4 10 13 9 39 36 1 2269 2063 1655 1024 5 28 4 86 221 981 36 1856 129 32 1 1540 17 10 6 1 4845 1 1655 54 87 235 888 5 2410 2 1559 157 16 242 5 70 408 5 25 2866 2 1725 35 6 7 8445 58 9960 3 190 20 90 592 13 12 2 85 7 9 913 11 1 613 54 2 164 5 25 3523 1 911 4 1 4447 13 677 61 43 84 802 4 1769 7 9 158 3 84 606 5008 3 2 163 4 94 78 8 419 9 21 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36 4182 3331 4465 172 12 340 218 1003 1591 274 7 1 309 831 3870 1 1514 5 87 235 52 68 99 25 1591 274 390 2 1591 6895 11 6 128 3340 4 15 1965 3 2 678 426 4 480 2192 69 661 936 5 64 10 14 2 1040 41 55 6561 233 4 1 729 6 11 10 12 2 580 2662 7 8974 3 1373 28 261 340 1 7324 29 1803 88 24 6082 65 37 1373 2 4441 69 492 117 310 542 15 1 1105 3 1703 11 124 1478 5 26 6636 16 62 5763 971 17 29 225 1803 57 89 28 4 1 84 104 4 1 5725 183 1 1803 57 59 1 243 7 25 88 43 1201 3 109 69 2970 274 69 1657 12 311 6 1 210 665 4 8669 1 874 11 7 1 622 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 24 107 125 104 3 9 28 1421 47 14 28 4 1 210 104 11 8 24 117 575 10 6 2 1152 11 33 57 5 9 1847 5 1 3869 788 3773 45 23 24 5 90 2 1412 189 133 9 18 3 1370 1093 8 54 1379 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 144 87 81 38 9 18 3 20 38 489 104 36 1 6257 6 1 700 18 4 1 7220 84 3 1227 3577 9 18 6 198 7096 30 34 73 28 326 43 28 367 33 143 36 10 95 52 37 80 4 1 234 636 5 51 6 162 540 15 9 108 34 8 63 134 6 11 9 141 20 59 101 1 80 2761 918 18 4 34 387 1 80 319 117 89 117 3 1547 28 4 1 80 2107 104 180 117 575 1251 32 11 10 6 323 1 113 18 4 34 290 1 59 104 11 209 542 5 101 36 34 1 376 2283 3 1 2207 4 1 3557 3607 41 235 30 1 6000 3595 41 5535 41 1542 127 22 34 53 104 3 971 17 630 1484 65 5 578 1719\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1187 18 274 285 1 5240 5694 1200 5 15 171 36 4910 5584 2913 3 97 2750 51 12 58 302 16 1 18 5 245 1 18 3870 31 2526 57 2 1140 1335 16 2 119 2519 3 1310 5 1657 15 86 2 687 67 4 2 1086 282 3 2 345 2010 758 371 30 112 3 2945 30 1212 883 551 3 40 2 1462 601 4 2 4291 362 469 3 31 2832 1 2002 262 30 6 2 4756 996 25 752 7 157 14 109 14 2295 27 2615 25 5776 551 4 53 276 54 2704 25 5117 30 9685 5127 62 1055 1 171 3380 5 48 12 303 4 1 4185 2647 7192 6 2 315 4037 4 2704 3 2721 3666 85 4 137 35 836 8 187 9 18 2 755 378 4 2 3031 16 1 6542 552 6115 875 935 4 2647\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1661 1 7021 600 2 85 4 3 600 3795 3 2 4016 4 82 238 460 3814 7 2 2527 3721 6297 295 409 29 1 85 8 241 75 104 36 7391 600 1156 7 238 3 1394 3 35 63 995 1 903 808 5388 1785 2930 89 319 29 1 1009 1400 600 238 930 15 2 243 142 1472 260 4779 3 33 24 2431 46 955 409 392 6 2 6045 7 186 19 127 574 4 104 17 165 5 1006 725 114 33 321 7 1 74 334 1785 4 448 20 409 392 1419 95 426 4 69 193 10 123 90 1 272 11 58 148 1820 189 260 4779 3 303 4779 879 69 3 519 811 52 36 2 2442 18 68 2 2702 65 409 300 10 6 1785\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 335 283 48 191 24 544 14 2 358 594 18 7 4 468 112 9 135 3823 468 39 560 75 33 88 24 89 132 2 21 32 146 37 641 5 8258 5 1 184 412 14 3859 13 659 1 6260 16 1 158 97 168 61 620 66 61 20 7 1 158 3 740 1 158 43 168 39 83 90 1821 136 1 18 6 1056 364 68 755 594 3 2 5818 8 63 59 96 4 28 323 1201 4174 3 11 6 39 183 41 285 1 13 1149\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 310 577 9 21 30 2561 49 34 1 124 8 405 50 975 5 2096 16 79 1864 8 12 19 3200 3 8 192 37 1096 11 8 2403 9 461 10 1819 15 1636 11 80 971 4832 295 7178 50 59 465 15 9 21 6 11 10 12 89 16 249 37 8 339 751 2 973 16 50 13 777 2 1462 67 38 75 81 15 2306 83 3237 4832 295 32 307 3 75 97 152 24 10 758 5 50 838 11 292 63 4778 2 1002 10 40 52 686 5570 19 62 3839 11 97 81 22 4563 2562\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 6 20 396 8 99 2 21 11 6 14 2384 14 9 461 8 3884 5 1775 154 938 1247 11 9 12 1576 14 2 1399 59 5 149 10 12 928 5 26 556 2556 322 14 1067 14 9 870 13 92 121 12 3 1 1650 2069 2971 3 45 2 21 12 89 7 2022 3 57 1 538 4 2321 217 3143 7 86 593 72 54 96 11 616 155 98 12 14 10 5547 9 21 12 89 7 5198 3 8 24 286 5 64 2 21 32 1 1414 1592 11 40 14 103 1817 14 9 2396 13 20 16 1 686 13 279 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2524 966 1 164 12 167 2081 9202 3 2 8 112 133 122 8314 5819 41 1862 41 674 12 246 2 2871 3 8 96 27 89 10 4607 19 25 6891 14 223 14 33 563 1929 4 85 10 247 2 7475 186 232 4 2426 6558 3 26 2324 12 674 1 442 4 1 562 3617 13 4052 1523 79 4 559 36 300 1461 3337 43 854 84 1980 2249 11 721 1607 7 16 1860 3805 38 48 27 12 6306 25 747 103 5628 27 262 12 53 7 2 1462 13 8 96 244 1111 246 39 969 2 102 305 274 4 25 289 32 41 814 10 876 25 691 155 7 2 4147 111 16 437 8 63 320 283 122 19 249 29 1 182 4 25 549 49 27 12 65 1 251 7 41 8895 13 9 47 45 23 22 2 325 41 27 12 2\n0\t55 101 274 7 8 96 9 306 16 307 422 35 219 10 105 14 1 61 402 3 1911 29 1 714 80 143 875 16 1 6062 13 150 83 96 56 179 1 21 47 1929 4 290 97 4 1 168 384 5 26 757 386 14 45 33 61 100 1616 41 27 39 143 118 75 5 1812 450 27 4059 32 28 178 5 1 398 3 23 57 5 328 3 842 47 41 497 48 12 160 778 8 56 143 70 2015 157 41 1845 1497 48 61 34 1 976 3 2629 1482 4024 6058 9370 48 12 27 8450 8 96 10 12 25 46 345 525 29 242 5 932 9 534 2015 157 16 129 10 143 916 10 143 55 291 5 90 356 13 92 59 53 177 38 9 21 12 2394 27 262 25 129 23 56 114 70 2 84 356 4 48 2 190 24 71 36 2290 172 27 12 84 3 80 1458 76 100 70 4546 16 110 115 13 858 16 5204 3 7441 13 2687 64 1027 10 6 1013 23 22 2 306\n0\t0 0 0 0 0 0 0 0 300 42 1 41 300 42 1 2174 168 4 81 41 1286 2844 926 17 8 214 9774 5 26 28 4 1 80 341 2091 124 180 117 575 1 21 418 47 45 14 1916 8412 7786 6 105 3297 5 1017 85 15 44 4014 4 2 585 1864 7001 3 6853 5253 3162 62 6891 29 2 5194 7788 1 440 5 564 2443 1167 7 1729 2 157 2708 251 4 795 11 149 7786 3333 85 6711 19 1 345 3 19 30 4483 4530 5264 60 521 2731 52 85 15 1 68 60 123 15 44 3357 35 521 44 65 7 31 2896 6346 16 44 7786 266 1 9380 280 5 1 44 280 14 1990 4 3 123 2 885 329 4 2036 3 1673 44 5 113 5957 906 1 263 7534 86 272 408 15 14 3 1916 186 498 3 1850 30 1 570 4443 1146 8 57 57 52 68 50 2222 4 127 7297 807 2 148 1825 224 16 14 27 295 32 3 1231 1 8193 3 7070 1626 4 4529 4 6676\n1\t0 0 0 0 2 184 325 4 1 684 267 2489 3 2091 246 107 2 1114 604 4 127 581 10 6 1219 11 28 3723 79 14 400 8956 16 11 3683 10 6 1381 1219 11 8 192 16 4039 140 1 2931 285 375 1192 1 112 67 6 2 103 1779 19 1 9743 17 420 134 207 229 16 1 1726 14 9 684 267 40 1 4468 6917 19 3 7 95 524 10 1 4 4102 39 2 103 52 68 8 36 80 5 1405 1 723 3901 2666 43 4 1 1340 529 20 39 7 9 158 17 7 95 21 180 107 7 2 223 4222 8 16 1 4 529 183 475 6734 2 125 2 14 2 5280 14 8 241 11 237 105 97 81 333 10 3 2091 1 9287 1020 2019 43 4 86 145 93 2 184 5260 2934 1787 66 17 9 6 28 4 1 156 124 180 107 7 66 420 134 60 6 60 3 1542 5860 22 201 14 1 6386 17 16 79 309 330 5 1 4931 4 1 6261 2 2438 574 4006\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 418 47 14 31 240 67 1108 77 2798 83 1460 133 5 1 182 1247 16 31 2651 4 48 6 6710 1 51 6 58 1905 58 58 9 88 24 71 2 53 18 10 33 57 4323 31 389 1471\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 8 191 920 8 100 159 2 18 15 132 53 67 3 630 582 298 293 1380 1563 632 1076 1361 45 23 36 1 885 2489 36 503 23 76 407 26 52 68 34 129 24 46 797 869 3 1 293 1380 22 774 7 28 4930 8 76 1876 5 9 18 2 163 7 1 398 982\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6524 40 1 931 869 4 2606 2746 15 1 2407 4 55 1 477 293 1380 181 5 187 2 7777 5 17 9 6 2 67 11 270 334 7 661 984 20 7 2 392 172 989 3 7 11 111 10 40 55 52 1938 6524 6 38 2 2010 31 59 3338 2060 818 19 1702 1873 15 25 231 1424 6584 42 2 203 18 36 1 508 3 1 7091 2509 2 203 18 16 1 517 3792 45 317 288 16 2 1222 141 9 495 26 116 4259 4 6007 17 45 317 288 16 2 67 11 6 205 1462 3 3604 15 53 505 9 6 1 18 16 1038 29 1 3115 8 8 5245 51 12 28 799 106 1 389 410 8 496 354 5076 9 135\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 175 5 134 1 121 6 573 17 8 96 10 12 1 1177 11 89 10 1943 8 100 179 78 4 17 11 28 88 26 19 1 13 252 28 245 40 58 81 70 383 136 15 2 164 7 1044 4 137 232 4 385 15 31 85 2519 1021 1112 8283 3005 3 345 1117 1456 151 9 28 2 8283 21 125 2616 13 3204 36 37 97 82 24 34 9 296 1 1091 940 101 2060 1728 4 25 2151 296 26 3023 5 2 163 4 194 292 7 346 13 2044 3350 10 1095 2 20 586 17 128 373 8283 392 18 7 34\n0\t0 0 0 0 0 0 0 1 59 1362 3016 9 18 40 22 1 1002 215 469 1192 82 68 11 9 18 6 2 184 72 24 2611 1 6842 1633 8208 3952 1 558 8768 16 1 74 1099 4 1 141 66 1253 2798 98 1 18 3019 65 2 222 14 60 40 2 7887 15 843 35 472 65 358 8190 19 9 3297 33 905 5 1430 44 94 1 558 2792 3998 35 713 5 352 768 32 51 9 18 196 2428 111 2194 8 118 86 59 2 18 3 819 3305 139 15 1 3347 17 444 165 38 2 715 3 60 173 2321 41 149 275 5 352 768 378 60 3269 5 2 350 2336 9784 2 7 687 2753 60 123 297 60 63 5 1959 44 5 728 1584 768 17 195 60 498 77 28 1360 23 70 1 2115 87 20 457 95 3874 751 41 760 9 18 58 729 75 78 23 36 9 42 37 7033 468 26 9783 154 1361 10 6 2685 16 7482 3 5414 3 1 344 4 1 1249 14 109 14 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7804 143 24 95 106 114 33 10 12 100 207 144 9 18 12 37 4544 1069 419 25 374 1 84 121 854 742 8422 2149 5 1364 113 607 2 8 5659 5729 50 430 427 32 1 18 12 7870 645 1 2 8 5659 6518 9 18 12 16 1 8 713 5 187 9 18 1 17 10 3884 48 192 8 403 8 179 1 12 8 54 36 11 16 2 880 144 247 1727 8 118 25 4520 12 835 65 15 137 1184 144 143 11 231 259 1796 8770 70 2 27 88 24 314 461\n1\t5 2452 32 25 435 432 364 13 2699 2 923 5233 8 481 241 75 78 1539 1385 79 4 50 221 2002 3 75 78 2127 3 7028 1385 79 4 50 221 711 3 5450 436 9 190 26 28 4 1 1318 11 8 381 1 21 37 78 14 9 67 4 2 3014 2002 2 52 1134 972 2823 3 2 364 1134 1186 711 645 37 542 5 2613 6204 50 711 3 8 100 310 5 1 1296 4 9403 2 1004 421 50 497 72 61 89 4 3 52 1700 9357 13 252 1618 4 4421 3 2628 40 71 6984 256 371 30 1392 3598 29 27 128 40 1 5 187 1 410 6712 120 3 238 11 2042 2048 413 12 25 74 21 89 6840 172 2546 5 183 1 2710 789 317 2927 17 27 1336 433 95 222 4 25 1449 1388 7 781 199 120 11 76 26 223 13 92 795 3 120 7 183 1 2710 789 317 434 22 3061 3 3 9 6 373 20 2 6945 108 245 10 6 102 719 4 2059 1033 66 8 1517\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 84 9198 2 84 1249 3 48 2 2502 51 247 52 85 5 3569 47 1 471 8 336 10 3 405 1129 3 195 51 22 43 148 1604 3 44 129 818 57 227 3895 5 1720 1 263 125 43 4 86 3556 2184 8 24 10 19 2581 3 76 1811 5 99 194 1247 11 51 6 2 2481 29 1 182 11 4203 51 76 26 2 9653 13 69 58 69 58 13 1149\n0\t2 750 4 1677 3092 4532 3 469 521 917 450 11 38 4987 10 5470 13 6144 920 11 8 192 2 103 47 30 4532 94 283 9 108 17 7 34 7 2924 4 1 2143 188 11 22 540 15 9 158 3 241 79 51 6 877 4 11 5 139 2701 10 6 790 2 46 837 956 7509 13 92 120 22 52 36 7866 204 15 59 62 3397 5 5800 778 5448 4650 6468 41 4519 181 5 26 34 11 127 1098 292 10 63 26 11 11 7148 7 2601 1 1083 4 1 471 1 3018 804 3 1 233 11 10 6 2 1638 800 11 8 24 235 3656 421 561 22 169 2068 5211 30 43 240 5614 1093 3452 3 169 4739 1948 1 1409 2067 4 9 21 6 197 2 894 3256 35 266 1282 1 13 999 5 186 2 641 67 4 41 81 35 22 2 103 69 2 163 7 9 242 5 1179 7 3 1552 10 77 2 2940 125 1 401 103 203 2067 11 40 5 26 7 1 1894 4 95 203 3123\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 381 133 9 109 1171 18 46 12 109 30 651 3552 2955 3 171 1970 3 2356 12 2 46 240 15 589 3 1 477 5 1 46 11 307 186 1 85 5 99 9 89 16 756 6 313 3 40 84\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 2 148 3953 5 90 2 18 38 2 1248 101 30 1305 3 1 532 101 3732 4 701 211 17 421 34 5643 9 28 6221 6742 380 1 278 4 44 727 17 15 11 709 1744 11 863 23 1094 55 14 2 532 3525 15 1 2059 13 614 1545 38 1 101 6957 30 3311 22 20 116 4259 4 6007 23 228 26 3418 133 9 488 657 10 6 31 1164 1412 4 3356 16 2 5156 17 56 46 103 4 1 18 40 235 5 87 15 11 14 10 2405 19 685 6742 2 4755 16 44 7981 1778 3 2745 115 13 7 2 29 2152 9985 3 3 16 463 1 1387 41 380 1 18 1 680 5 90 1 4161 272 11 137 188 22 565\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 11 8 4001 484 17 9 12 2 15 156 1362 1996 12 1 425 672 16 6427 3 1 344 4 1 860 12 8188 4545 9367 63 26 3007 722 17 6 20 340 1 680 7 9 108 8158 9045 3 54 924 1376 5 261 125 1450 172 4 3669 64 3339 441 2837 41 3438 8542\n1\t264 807 33 720 533 1 441 3 136 479 20 1 6472 171 7 1 1561 479 29 225 8409 13 92 302 8 134 9 88 26 2 2598 21 457 1 260 6 73 1923 32 2 156 3 2 595 2411 1909 1153 4393 1 3 396 810 230 4 9 18 88 46 78 26 728 30 2802 37 8 149 10 31 1164 1412 11 1 1063 636 5 734 43 1587 3 2 346 1234 4 2565 258 1078 51 213 46 78 4 110 9 3084 1866 2 9635 1020 728 57 33 311 757 2 156 188 47 3 1241 2 103 3251 51 6 46 103 38 9 158 17 39 227 5 359 1007 32 1841 62 374 5 64 110 8 59 134 207 2 1152 73 20 73 8 1594 17 73 11 190 24 71 1 59 177 9 18 32 246 8115 13 2595 95 9749 9 6 2 3408 548 158 5087 15 2 156 1192 17 16 1345 101 38 4516 3 2665 1135 19 102 120 3 62 7659 15 332 4516 33 87 2 1317 53 329 16 31 1532 4006\n0\t0 0 0 0 0 1 505 82 746 12 5096 3360 4504 7142 1 280 4 31 4127 4112 169 530 82 121 6 4835 1 67 88 24 71 17 6435 10 4624 69 28 100 56 7848 41 3457 16 1 120 3 37 1 441 66 88 24 71 169 1082 5 2725 7 9 6899 13 1769 3 2653 2 5096 1005 306 441 731 795 11 8035 1 234 11 72 414 7 69 17 8 88 1375 328 14 8 3970 512 7 9 471 14 31 3360 4504 325 669 1064 122 28 4 1 401 715 171 4 25 8 909 5 9 739 69 3 1891 10 303 79 13 499 88 26 2 4636 740 2758 17 8 2292 5 272 1918 1 1688 182 4 9 18 69 2132 2675 1043 69 6435 33 433 437 42 2 4897 73 10 88 24 71 13 505 1005 441 1325 383 69 10 130 24 71 10 5958 229 279 4171 39 5 90 116 221 438 65 19 10 69 17 83 504 105 1878 3 436 23 495 26 14 945 14 8 1306 10 1120 437\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 219 1 18 89 7 801 7 473 6 229 1685 30 31 706 18 4 166 9854 223 1877 1 1048 67 4 6 1 166 69 17 10 6 553 7 2 1526 744 1 9244 716 3546 30 3484 879 66 22 214 7 1408 8709 104 7058 1 206 114 9 5 2465 1 1600 4 8709 115 13 150 617 107 1 706 1766 17 57 56 381 1 21 30 12 2 601 1073 155 3483 4 448 1 121 30 3 1018 114 1 9489 12 37 1574 3 13 8 192 105 30 1 21 11 8 481 55 1 4693 2387 7 86 8709 6503 17 8 128 230 11 5685 7264 3 294 7701 24 40 248 2 547 329 69 17 153 2500 2882 774 13 724 34 7 34 86 1530 45 28 10 5 82 1058 8709 267\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 617 286 284 1 3247 347 9 12 2744 7178 17 8 192 1100 15 43 4 25 82 216 3 12 942 5 64 75 10 54 26 6121 5 1 1250 1952 8 96 9 6 2 46 1134 1260 4 28 4 10 3009 1 67 4 31 296 536 7 3512 35 6 14 2 2881 16 1 2533 25 329 6 5 411 15 298 3 2702 1085 3545 5 1 3034 25 8132 2066 880 17 49 1 392 741 27 6 14 2 392 1950 17 3902 5 147 3820 106 943 1164 119 1552 13 614 532 366 40 2 465 42 11 10 5162 5 70 2 103 105 3680 29 1287 17 16 80 4 1 21 1 6 721 5 2 5951 3 1 46 678 119 6 3091 140 15 3689 3 3 51 22 43 3088 529 4 315 267 1295 277 260 4779 1850 3 2 46 496 3850 7 2 1641 46 78 4869\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 299 5 836 45 23 338 15 1763 23 76 70 2 2382 47 4 476 96 881 1270 296 14 266 783 31 353 189 35 6 874 5254 30 1 522 4 1 1444 3961 4 1085 8619 5 6163 1 3582 4 2 94 27 40 57 2 683 1643 3 6920 5485 7092 7 25 280 30 1 14 33 525 5 1 2827 4 4467 5602 93 151 31 1635 14 2 296 35 498 47 5 26 93 993 3200 3 115 13 677 22 2 156 2271 529 132 14 1 823 4 1 161 26 721 8664 16 2 3002 3 1 570 1146 106 35 40 1 7721 823 4 6 107 529 406 34 7 4308 15 2 19 768 17 34 7 34 10 6 2 84\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 149 10 46 1930 11 1072 2413 975 3 1 4184 4 127 2891 54 5975 1 5 90 6618 3 9186 1 915 4 2 135 33 407 88 26 1050 1 7 1 231 1 1988 1008 19 1 305 1483 375 2759 2753 43 4 62 1154 5 127 9711 3129 420 134 11 261 942 7 2753 54 149 1 4784 30 127 9331 5158 33 41 192 8 1156 9 18 6 254 5 209 6210 7174 123 20 24 110 4361\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 67 4 2 164 35 40 1687 16 2 418 47 15 2 567 178 11 6 2 1442 665 4 2271 1211 2 410 6 590 77 31 1330 3250 30 1 1184 4 42 831 10 2683 2271 1 212 85 15 58 940 1567 963 253 10 39 105 142 55 137 32 1 1592 130 26 590 1294 1 494 54 90 3189 291 806 5 2 957 19 2 1813 952 42 138 68 23 228 96 15 43 53 861 30 958 84 958 460 3899 3 63 26 107\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 909 9 5 26 2 163 828 8 112 1542 1093 37 8 12 56 2337 5 64 127 4947 386 703 322 33 1121 29 34 48 8 57 13 150 83 56 118 48 610 10 6 8 83 3704 8 497 479 39 426 4 4320 1 478 8551 503 3 80 4 1 647 292 8 336 2657 1 2010 3 13 92 1484 282 431 229 79 1 6914 292 10 12 167 3883 13 150 93 83 36 1 111 43 4 1 120 5317 36 75 1484 282 676 274 1 3498 2276 19 6602 41 75 1 282 35 8983 7 6109 469 12 7067 469 30 2 606 46 215 11 89 79 539 37 13 677 22 43 188 11 662 3271 16 2802 39 43 1587 3 5941 207 38 34 8 24 5 8542\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4669 16 9 21 61 138 68 1 108 48 351 4 860 3 1686 555 8 2893 3626 16 9 18 5 209 19 305 73 29 225 8 511 26 47 1 18 400 4624 1 8659 48 88 24 71 2 84 18 16 34 1041 590 47 5 26 2 3641 29 1293 18 1527 46 673 3 39 49 8 179 10 12 160 8870 10 202 114 17 98 10 6629 7 9 326 3 3575 72 321 6018 119 1552 3 7 158 3 9 21 2649 1 212 177 38 75 307 6 2 2172 6 501 245 20 273 45 10 12 1 111 10 12 4454 1 4702 1 3312 4 2131 1 523 41 4875 17 162 310 32 110 163 4 4202 16 2798 8 12 46 945 7 9 158 3 145 1083 307 20 5 64 110 1 978 265 533 89 1 21 527 14 530 3 1 393 57 162 5 87 15 1 344 4 1 135 48 2 3315\n0\t282 35 2601 58 1734 5 1 119 571 5 1851 2 1317 1911 2637 701 39 14 1 432 41 55 1 477 66 4203 2 4 4571 533 1 2265 55 193 10 6 1649 1 506 100 237 32 1 41 1 1213 8526 15 1 8751 217 11 167 78 4987 65 80 4 1 124 8583 551 4 13 2 466 651 35 173 634 17 29 225 6 1774 5 87 43 301 7826 2801 3660 168 3 9 388 6 323 9602 17 20 7 1 111 23 13 2 1068 311 16 101 4310 7 1 2736 7 1 1575 73 4 2 570 1317 125 4559 10 1664 162 17 5765 3 28 382 701 5900 29 225 764 269 13 2609 2 1243 7 1 1692 257 1757 255 5 2 243 66 33 515 1593 960 2507 140 33 64 2 842 29 1 401 2147 7 315 3 2 1114 48 87 33 5633 224 3 549 36 1 344 4 1453 4 448 33 1593 5 1 401 3 820 8984 327 3 7 1044 4 1 701 13 499 56 6 59 2 18 14 33\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 132 2 84 18 79 73 10 289 75 2 454 40 3126 16 37 223 197 1311 48 12 540 15 768 16 9721 5686 5 209 47 7 1 1128 3 348 44 67 6 31 3576 5 137 35 2686 32 9 8 24 2 163 4 1451 16 44 14 2 3792 1 59 177 8 83 36 6 8 173 70 10 19 180 713 288 16 10 17 15 58 5168 95 28 118 75 5 70\n0\t1478 19 1 1250 265 15 1 462 3 5266 4599 47 2 2418 41 4581 19 1 25 6853 40 4587 3813 4063 13 614 95 4 23 53 81 117 96 4 5 127 8976 81 786 7 1 442 4 851 2 41 6459 5 2 2135 26 2 184 711 41 975 5 2 583 17 786 83 187 5 127 81 73 33 24 71 200 16 125 1801 172 3 13 614 23 128 83 241 79 574 3813 285 2729 1173 19 1 4125 3 645 1776 3 308 23 785 48 56 2102 8 118 16 273 11 23 76 20 187 28 5 127 3 30 1 111 5421 308 57 2 5506 3 3813 40 3475 421 5506 97 268 19 25 13 150 36 5 134 5 1 2104 7 3 5 1 327 2104 35 165 645 30 3 8 449 86 2 2273 1393 40 8982 71 8406 5 147 894 786 369 257 8034 8 30 1 111 2104 45 116 7840 139 5 2 148 1207 3 1572 1603 539 29 127 3 9871 3 5421 63 139 422 3 186 62 2048 851 15\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 137 358 985 22 4286 1 5057 278 32 5685 8 118 2855 124 87 20 56 5 26 1087 17 786 2 6096 834 397 6 52 1087 68 9 994 1 435 6 2057 3 123 48 95 53 5304 25 585 47 1 585 15 25 3523 2866 2 156 188 11 61 105 254 5 3441 5904 4381 7 1 3 5 139 32 11 5 536 6877 7 44 4515 2824 5685 1283 165 1 329 14 2 4061 996 196 8103 30 5 98 39 1243 1294 9 21 6 31 2158 5 257 2717 8 56 2004 241 8 8486 5 1 35 89 9 21 30 605 50 231 5 64 194 72 303 1 616 15 2 786 87 20 915 725 5 9 1378 5 133 9 186 50 2952 3 87 20 351 116\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 12 2275 29 1 89 7 31 1139 135 45 23 694 542 5 1 2238 23 76 64 1 2252 7 1 9813 3 4760 1 7280 7671 3 22 29 225 31 639 4 138 68 3339 471 75 33 61 446 5 1622 142 1 8 76 100 2510 8 87 449 11 76 1851 2 718 19 75 1 21 12 1160 37 8 63 149 47 75 34 9 12 370 19 9 158 8 96 1139 124 4 1 958 76 26 7766 19 1 3397 4 9 135\n1\t239 1715 23 1374 10 1385 79 4 1 2833 249 251 4 1 2032 5335 106 43 120 22 301 355 576 127 402 985 4 1 141 10 6 152 2 84 141 1078 1 3423 1 120 3 1 994 2884 6 797 14 1557 1385 79 4 122 14 7 1288 254 358 106 27 266 202 1 166 232 4 1223 115 13 3562 9 5551 1 393 4 2147 5 564 6 1 166 393 14 10 6 7 8 83 118 45 8 56 338 458 73 8 812 8 365 11 6496 6 2 18 32 37 42 20 152 31 73 94 34 10 12 25 17 10 590 5 26 2 6196 312 7 2147 5 37 88 24 248 146 264 378 4 781 2943 2181 9171 65 32 2 91 1153 1 166 111 10 629 5 5756 8725 29 1 393 178 4 9 1220 4 611 15 58 4724 174 402 2115 17 45 23 70 576 490 23 76 149 11 2147 5 564 6 2 56 53 141 3 8 8577 23 11 42 1375 30 95 8252 2 351 4 85 133 2420\n0\t34 11 21 3 57 5 65 43 4821 5 751 2 156 4569 388 3 12 929 5 90 31 18 38 1 710 9479 3 93 143 24 95 748 3 57 5 24 50 585 2756 1 3 93 1 59 171 8 88 149 61 1 81 35 143 90 1 4 11 5201 1902 9299 3 8 12 93 929 5 20 333 95 265 7 1 389 158 3 93 1 7413 19 1 443 143 216 571 16 28 85 49 10 2311 544 7 3 339 850 3 45 8 1595 50 2996 98 8 228 90 146 232 4 36 9 1853 286 3654 351 4 290 1 202 1751 288 17 301 1429 288 1385 79 4 43 4 690 2045 66 89 10 37 78 52 1832 73 140 1 212 141 51 12 11 103 4 449 7 1 155 4 50 438 11 1 21 54 2281 7 2 8 83 467 5 2600 1 18 16 137 35 617 107 194 17 207 20 75 10 5824 1 59 177 8 63 96 4 11 1130 52 85 68 133 9 18 12 523 9 5835\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 322 369 79 357 142 30 667 75 1169 892 9 21 424 8 311 339 359 512 32 1094 29 1 1860 4230 4 110 83 70 79 1989 10 6 109 1171 591 30 17 1 263 6 109 1 438 13 92 804 6 53 3 65 318 152 5173 1 701 10 6 2316 17 94 11 10 39 271 5523 409 350 111 140 1 21 1 2689 2734 47 44 3 4 448 378 4 10 29 1 6413 4843 60 1036 5 1622 47 2 606 783 3 475 2 794 7 16 2 7538 5 564 44 13 3204 51 6 1 570 427 11 8 45 10 153 24 23 7 98 8 76 2089 50 221 303 13 150 54 354 9 21 5 137 35 311 175 5 539 29 43 53 161 4904 21 6799 228 8 93 1379 23 99 47 16 1 178 7 1 7134 15 1 259 1424 32 1 28 2749 298 4 196 79 154 290\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 300 145 6679 5 1996 584 3 34 17 8 179 9 12 1529 7076 13 150 56 381 11 10 12 620 49 5204 247 132 14 1 1473 3 1 974 20 5 2600 105 78 8601 8 96 207 731 16 374 5 64 3 328 5 13 2609 765 2 156 508 708 145 2 222 8627 28 666 11 29 1 182 1 532 3 44 585 14 444 71 1 28 1083 44 585 38 44 471 1 18 8 159 114 20 24 1 532 41 585 29 1 769 1674 2 5404 4 2 282 15 2 63 275 79 19 3559 3086 8 56 381 9 141 292 43 168 63 26 2 222 673 66 228 26 832 16 298 2157 374 5 694 2086 128 279 10 45 33 63 694\n0\t2898 25 3433 55 7 1641 17 93 100 2 736 1104 1 18 40 1092 95 927 3086 37 83 13 5031 271 16 2 182 106 7273 1 752 7 15 44 434 1508 5 36 1 6224 72 159 19 388 19 980 13 252 6 3951 58 6527 58 640 58 2650 58 543 516 1 58 1138 571 2 439 67 11 7273 12 14 2 13 252 18 4088 3031 19 156 1659 168 3 62 1965 4939 8 924 320 2 18 9 2213 4 95 1900 41 859 41 2815 86 36 133 9597 2790 1104 1333 514 15 503 43 81 76 335 9 8187 17 48 6 56 254 5 820 38 10 6 1 7 1 477 3 1 233 11 1 18 6 109 89 1078 363 3 55 1 121 6 105 53 16 9 351 4 115 13 1627 75 123 5031 70 319 5 90 132 49 3949 4 964 971 216 19 6 20 39 1 3593 4 3976 86 536 3905 11 1 1126 2967 6 3965 1104 2029 4666 11 1 1091 6 2709 16 2 163 4 9 351 5 70\n1\t3 16 1 3843 874 19 1 2865 34 1 136 15 1 35 93 5218 239 82 16 1034 13 1268 710 6 303 5 1288 30 25 221 17 999 5 1291 3 6 721 6854 30 31 2020 136 27 6 2 4 1 1869 5 1 4 1 27 6 1747 5 414 7 4633 5861 16 2017 318 1 85 6 260 16 122 5 26 643 3 6957 7 2 8526 4 13 1118 8 112 38 9 21 6 11 10 7 2083 2252 1 3 62 4954 2117 1326 3 61 3 2080 199 5 3082 3 1942 1 157 7 137 268 14 10 7 2 1612 157 12 5517 331 4 1526 3 1213 1 6827 4688 3 652 62 221 4386 642 52 882 15 138 4333 3 51 6 58 41 737 10 6 39 81 242 5 2711 7 2 1360 4370 13 92 18 6 1070 3098 779 4 1 32 48 8 118 4 1 7347 1 2553 6 1002 2186 66 1583 31 1276 4 5 1 75 97 104 24 23 107 3260 1 486 4 8723 6650 3 62 362 9100 15\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 9 18 15 2 658 4 417 3 292 59 102 4 199 2117 47 4 1 616 517 75 797 10 1220 1 508 39 1309 3 4753 19 75 439 10 1306 109 11 12 73 10 213 377 5 26 556 37 2301 676 10 6 2 2 18 11 203 2092 3 123 2 1589 53 51 181 5 26 174 18 588 47 36 11 1221 782 109 9 6 3 2899 123 2 278 3 2978 40 2 2437 958 7 8 449 5 64 52 4 450 6352 12 2 53 3 12 31 55 138 1 1258 2879 12 2201 4 1 8 354 283 9 2493 14 468 26 3584 318 1 46 182 1 2771 15 3 1 18 11 100 165 1616 910 172 1924\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 12 91 108 10 76 2089 116 683 47 136 23 99 110 8 6864 83 99 9 1540 23 76 812 23 2123 719 4 116 42 20 14 43 104 11 22 37 91 11 23 63 99 137 3 9 18 6 509 51 6 162 14 509 14 9 108 23 76 812 725 94 133 9 18 2268 1 714 3 23 76 812 725 11 23 143 1876 5 2522 13 150 812 5450 8 4872 512 3 8 114 99 9 18 5 1 714 195 1335 503 8 76 383 5450 8 24 107 2616 13 284 9 46 83 99 9 803 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 899 12 1340 180 107 7 2 3166 5685 3 294 2382 3404 14 3541 3 1 6031 22 1053 854 1 67 6 8175 679 4 84 3758 3 2525 7207 9 183 79 6 31 5 122 8 134 11 2890 22 20 4 1297 1138 37 2890 511 365 1 623 2890 83 1090 104 2890 83 5084 48 114 2890 1775 1 324 106 2009 4 716 22 433 7 1333 48 8 179 115 13 7264 6 1 113 353 117 3 1501 308 316 25 27 63 87 20 59 238 17 267 14 322 3 6 313 29 110 294 40 2012 411 14 322 9 6 25 74 267 280 3 27 12 93 313 29 110\n0\t1 3734 33 2 21 36 1 1209 190 195 291 36 2 391 4 7183 17 10 12 2 645 49 10 12 612 1491 5 798 3578 14 2 1839 865 15 82 7312 13 92 1209 12 2 425 665 4 645 4 655 1 1646 4 29 1 85 4 2 644 4228 737 10 12 2241 5413 891 2456 3 1 1516 14 508 24 10 6 3857 11 1 788 7 1 21 6127 5 2 8156 49 1 462 2451 6 2 7 1 21 2330 8 57 2 569 106 8 12 29 1 85 55 127 5 26 4 5038 19 2 425 3906 427 16 1 13 677 22 1 692 4 8104 3 3834 3 2989 2 607 222 30 1954 7 97 1175 9 213 78 264 32 1 161 4133 1433 104 4 1 17 195 65 15 1349 3 1358 515 248 19 2 1953 445 3 2 1953 1 21 385 3202 227 15 2 1817 11 16 5748 30 2001 3220 3547 4 13 92 382 1388 6 2 16 4 5038 19 657 2 3255 23 3305 24 146 1053 16 137 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 94 765 140 97 4 1 4900 8 83 118 48 18 43 81 61 4171 17 674 10 247 1 166 28 8 13 252 18 6 2444 1 505 4176 6 39 1634 1 287 481 3218 327 17 60 39 173 3218 29 58 272 114 60 209 577 14 1 697 1223 1670 10 12 4014 368 651 271 5 1 4133 5 309 15 1 13 872 207 48 9 18 1391 6 361 368 1 2505 1102 22 125 1 5037 1 3329 361 125 1 5037 1 1105 361 125 1 5037 1 5455 168 361 23 5152 194 125 1 5037 116 2462 6 5 70 7 3 70 47 197 101 37 48 87 23 5633 144 1743 142 14 97 3 90 14 78 4271 14 5887 4 5871 850 23 63 26 50 4779 164 13 92 804 6 501 17 14 521 14 368 196 2 998 4 194 72 182 65 15 401 1653 15 13 1118 52 6 5 26 909 32 2729 199 124 20 78 8 6528\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1244 623 313 4231 8 173 241 75 81 88 96 10 1071 2 8 449 9 18 76 26 620 5111 37 307 63 335 10 45 23 117 24 1 99 3951 83 773 10 51 6 2 185 49 1 5548 171 22 2037 3 1299 3 4394 788 16 374 669 10 88 93 26 1270 7618 145 20 9 102 759 11 24 1 166 17 81 83 531 853 42 39 8 713 5 787 9 7 205 2294 3 5400 73 42 31 4285 17 1 1981 511 1959 79 449 23 335 8381\n1\t21 6931 24 62 313 305 1042 14 2 16 207 48 9 21 424 1011 3 4736 36 86 5938 701 29 1 1 701 119 6 39 31 1335 16 31 4538 131 15 8636 3 492 914 2 201 4 624 642 2536 4114 2535 2315 5114 3 3741 4959 6 93 19 874 5 6883 25 627 672 5 16 4609 1 1324 80 986 5079 10 6 455 58 364 68 723 1287 245 42 492 35 2448 1 983 20 59 15 44 5024 4 17 44 627 278 14 1 8784 7038 5657 14 16 1 344 4 1 1249 72 88 24 248 197 783 3 2359 7346 1 59 53 177 38 280 6 25 904 599 4722 15 1280 7594 7 698 5 187 23 31 312 14 5 75 237 1 344 4 1 267 6 3 3859 7346 311 481 256 25 1191 19 1 506 55 1024 54 23 6020 7 9 5540 10 629 5 26 1 454 23 80 206 9471 152 271 5 84 5 272 1 506 47 5 55 1 7060 1910 4 1 616 410 30 685 1 2228 3096 94\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 336 9 313 108 8317 262 1 185 3 15 53 2935 60 266 2 287 35 6 3424 5 1809 5 2909 992 3 44 417 94 60 6 3219 30 2 94 101 7038 30 1 613 60 3155 60 6 19 44 8548 13 3204 28 326 49 60 29 408 818 1 3421 2296 77 44 408 3 5134 44 702 20 101 38 5 637 1 613 41 70 122 47 60 6 929 5 122 7 1 671 3 122 7 44 13 150 96 51 6 2 321 16 2 4165 65 637 5 1 7751 4 1 9001 33 22 105 806 19 127 42 85 16 52 3061\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 2736 1872 953 6 587 7 1 2269 2063 14 2605 4 8730 35 266 31 1805 750 3412 4 3895 654 60 191 5014 2 1255 1433 3 5237 35 39 2 2792 2090 16 1159 5 26 44 19 1 111 2293 140 1 1692 19 2 8672 15 2 94 3769 1 8394 1764 142 1 1 342 6 3219 30 2 3582 1671 4 1895 6 1620 5 2 3256 6 1671 5323 3 205 22 2537 3 3628 30 1 4879 49 1 9920 4 62 22 3256 3 1895 274 47 5 2544 5677 1 342 29 268 149 730 29 5643 19 75 5 934 15 1 4879 62 570 3113 6 5 7576 15 58 369 51 26 58 6 4359 93 7 1 2047 3101 7596 3 1798 2504 1577 7525 1349 3 2461\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 784 5 186 334 7 2 31 1592 223 881 6934 106 1 1003 5038 2 635 88 3497 54 26 7 1 1800 3 355 2 10 1986 15 2 170 633 355 1 1255 32 44 35 44 77 2 606 207 38 10 16 1 6 650 3096 15 891 1 2104 29 296 1644 61 515 4147 4 5417 7192 2976 35 338 5 1433 3 286 143 438 31 1217 51 22 2 156 1474 1839 3 6838 179 4932 209 47 16 43 1684 9454 114 23 96 1397 149 194 224 44 17 1 1272 6 2 103 518 7 1516 29 1507 1 18 199 15 2 7242 606 2075 11 152 270 334 3 2 66 151 58 1821 245 16 6236 43 3670 1434 6621 32 4577\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 219 3254 30 1 2889 9 3390 19 1078 9 18 12 89 16 249 6 12 240 227 5 99 1 4384 814 8 4317 7 16 1 9 3400 3 12 483 1558 8 563 8 511 36 1 141 17 8 12 20 852 5 26 30 1 333 4 1 18 54 24 71 45 10 247 16 127 4569 802 11 384 5 209 32 7293 8 909 1 119 427 5 26 3353 7 15 127 4067 17 51 384 5 26 58 5480 9516 1 1068 300 2 1 1089 393 7 3254 30 1 2889 12 17 1 1089 393 19 1 967 6 2348 8 63 59 1110 4 1110 5 1 3254 30 1 2889 101 99 446 6 45 1 18 12 620 65 421 4516 17 29 843 7 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5457 218 4420 4 1 9197 201 2897 14 2 1105 6854 7 31 5432 296 4087 9 85 27 557 16 2 7 2 3047 5432 296 4236 1 1283 5716 2927 37 2897 9745 15 2 2404 353 6010 1363 2 18 7 1 4236 32 1057 40 5 842 47 75 5 26 2 34 1 136 10 15 25 221 3223 13 6450 10 3271 5 473 1 4730 1261 7 5432 1443 77 322 125 123 2 53 329 15 110 58 729 48 33 87 7 9 141 33 1622 10 1294 10 39 271 5 131 144 742 6 28 4 1 700 171 4 257 4314 3 48 72 433 49 2897 6920 373 279 4498 93 993 1018 15 2897 7 4467 5602 3 9067 1932 13 150 1 74 886 6\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 1 330 598 5368 21 5 7284 1 584 4 5 135 34 17 28 67 32 123 20 2203 109 77 1 3 1 171 4510 6 7132 14 59 598 171 3312 63 1142 7 181 3 52 68 1 74 21 13 1268 4 1 922 127 102 124 173 3038 6 11 62 2732 1097 12 428 172 2546 5 1 703 30 1 4529 384 243 45 20 2724\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 2 84 18 11 57 2 163 4 457 4304 10 3691 15 1636 4 3 4575 688 10 93 57 2 859 4 1311 725 3 605 8481 16 4175 9 18 12 46 1052 10 419 1 859 4 11 23 3 59 23 63 1377 116 10 93 1049 11 1311 725 3 101 4771 15 35 23 22 6 1 59 111 23 76 117 1179 77 4277 48 508 96 4 23 6 20 6820 8 241 9 18 114 2 360 329 4 781 110 1 171 8 96 61 446 5 3642 239 129 8 39 179 10 12 491 75 1052 9 18 56 1306 29 2 39 176 23 511 64 75 1052 1 18 424 17 19 1231 176 23 64 1 1468 4 1 108\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3568 40 303 1 2000 3 244 2029 73 27 143 24 5 99 9 2346 178 94 178 206 6868 615 1175 5 90 31 2346 263 55 364 6813 1029 15 2346 4481 1040 3 6946 3758 9 21 6 52 1770 68 6813 9 6 1 426 4 21 11 151 28 449 2611 7482 1026 9796 326 77 369 199 320 44 1 111 60 12 3 20 48 444 638 1 7935 2884 7081 3 1 344 22 34 1130 2447 675 615 2 111 5 62 2447 29 154 1 259 372 3568 981 52 36 68 1 59 56 53 222 4 1084 6 1 170 282 35 266 7482 14 2 60 56 276 36 44 3 6 152 167 452 1 59 82 302 5 99 9 21 29 34 6 5 176 16 1 816 3969 1 2691 213 34 11 722 17 29 225 86 20 7191 28 40 5 560 45 40 1482 4 3969 41 146 11 54 90 122 87 9 108\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 322 8 36 5 26 1784 15 34 1 1607 11 8 969 10 73 4 447 1025 17 831 8 114 20 64 78 4 450 34 447 168 61 386 3 248 7 2352 385 15 34 1 1021 3 2390 1138 265 39 36 34 82 1493 104 69 10 39 153 176 78 36 102 81 246 4470 51 6 2 2568 222 4 119 1918 1 182 69 147 2150 6 2 3207 75 144 83 72 9 18 16 918 8 173 830 75 91 1 18 54 176 36 45 10 61 6 32 1274 256 10 224 3 1243 2408 37 495 182 65 15 101 2 9799 36 2522 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 247 6116 10 1220 50 4070 711 4002 666 5 49 38 101 125 29 1888 8 24 314 9 427 4775 4 268 125 1 172 3644 28 40 286 5 241 194 13 252 18 6 28 4 1 3931 113 16 1860 299 3 1970 2773 12 425 16 1 185 4 37 78 37 11 27 12 7 14 1 166 129 1491 670 14 78 412 387 13 2307 2 6 174 427 16 1 5311 9 382 21 12 373 279 1 2154 4\n0\t568 1028 18 3123 8 336 34 4 8342 2092 3 1517 381 1 4 5388 4 1 3789 37 49 8 57 455 154 625 4907 9 18 8 12 128 8 1266 1396 1595 6122 4670 3 136 10 190 20 26 2 591 84 158 8 381 10 45 20 16 1 233 11 10 12 39 2 299 1028 65 15 2 350 547 994 9 245 6 1011 2145 464 1765 640 3 388 562 168 9046 77 1 135 35 7 62 260 438 179 11 12 2 53 3742 1 59 177 38 9 18 669 333 1 3277 11 8 381 12 14 2046 5816 136 25 442 3448 5056 47 1 23 63 64 7 25 278 11 27 789 244 7 2 851 489 21 3 27 228 14 109 90 1 113 4 110 307 422 1630 14 45 479 403 3 46 955 8 228 676 1 59 302 261 130 64 9 6 45 23 22 2 568 1028 6931 3 191 64 154 1028 739 89 41 36 5 309 1 408 3118 64 10 15 417 3 26 3023 16 3159 4 4833 13 1149\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 144 186 2 131 11 3367 4 199 219 3 336 14 537 3 90 2 528 1399 4 1947 33 1006 144 368 213 253 1 319 10 314 1467 73 33 256 47 1847 3 946 171 568 5453 4 319 5 26 1847 413 3 1006 199 5 946 5 64 62 3095 1 249 131 12 48 10 1220 53 81 7 91 1650 106 1 53 1161 209 47 19 5037 10 247 881 15 1 3235 17 10 12 1434 9 18 6 368 173 209 65 15 235 215 37 33 186 146 11 12 53 3 2704 10 16 43 8 59 449 11 9 18 151 364 68 10 2591 5 6555 1 59 1962 5 24 95 299 15 9 930 22 1 559 35 165 5 1564 1 940 1 410 6 1 13 2687 64 194 99 1 4 1 249 131 3438 33 128 998 65 910 172 3513\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2343 63 23 815 134 38 2 131 4 9 218 40 1345 756 14 72 118 110 10 40 2415 34 3 274 147 3220 16 756 297 6 1 2511 3387 3 16 503 80 4 399 1 1014 133 9 131 468 149 725 5018 11 127 120 22 20 3015 1 121 4156 23 77 517 51 6 2 148 1347 41 95 1223 9 131 6 93 46 43 81 83 99 1 131 73 42 5517 42 20 34 38 1 2504 42 38 5877 1562 3 97 2812 188 11 34 19 48 1259 14 2 325 1861 16 503 8 83 36 49 81 6110 5 1 983 2 131 38 1 16 503 42 2 131 38 1499 2 231 2190 140 780 5 26 1251 4 1 790 9 6 2 1719 4 2 880 9 6 48 756 130 1142 260 675 1618 120 32 1528 505 2313 67 456 32 609 2511 3 48 87 23 70 49 23 1541 127 4534 2 131 11 3 5 26\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 74 159 9 21 38 2455 172 989 49 50 1081 1185 3028 1901 10 5 437 8 12 2275 11 2 18 32 7828 88 37 3 5185 2074 1182 6576 4910 1752 6 2038 3 6336 266 1 5578\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 12 39 30 3934 3 15 53 2560 74 3 73 10 6 2 18 993 988 1862 35 72 34 118 6 38 14 53 2 1277 353 14 492 2538 6 2 913 1214 13 1601 1 687 1277 18 119 7069 7681 62 1906 1940 537 7 1743 91 505 1054 613 91 505 2174 600 3 4 611 91 1014 83 99 9 197 31 3934\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23 118 1 67 69 2 526 4 2645 2 5123 33 1524 24 58 680 4 1707 69 42 2 901 11 40 71 248 5 469 30 368 10 926 1 6653 3474 1291 5 113 4 1 113 195 9866 380 10 2 139 15 2 968 2280 16 6637 608 3 497 48 608 1 1122 6 961 17 1391 13 92 233 11 9 18 153 735 1289 19 86 543 6 224 5 1 964 170 201 35 56 90 23 474 38 1 647 3 9 7 473 863 23 133 5 1 3158 13 4 116 687 1563 1792 18 190 26 945 608 123 20 1917 1 692 4 1047 3 107 7 80 2885 2677 1 238 6 1953 5 9732 6362 3 1 2579 9 153 729 1024 220 10 6 1 5334 4 1 120 3 62 566 5 90 146 4 730 66 151 9 18 2 5168\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 55 45 10 61 2363 722 9 4 2 21 54 128 26 5720 39 386 4 65 1 8249 3 29 608 17 59 39 608 1840 3147 3 1 206 4 1 124 333 2648 1 14 31 1335 5 930 34 125 4123 3 123 2 1551 6607 17 8404 511 2500 334 7 2 4123 55 45 33 61 205 1780 19 1 21 54 26 58 364 1 364 367 38 1 3690 1 828 151 176 36 2 4923\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 292 10 40 71 6642 375 984 9 18 6 2 382 45 23 22 283 10 16 1 74 290 1688 3140 979 1744 7 1 570 1146 10 1071 52 1365 68 1396 24 340 110 496 28 4 1 113 1545 4 1058 172\n1\t66 6 229 144 33 128 291 115 13 66 12 30 86 1244 7508 190 1030 673 3 1065 7 9274 17 42 56 52 2 729 4 5 1 264 3358 308 23 70 77 1 120 10 76 1364 125 80 1244 4680 1365 130 26 187 5 1 3989 7392 1802 2 1659 842 7 362 756 603 1005 22 93 279 3698 47 756 5301 55 19 13 2649 2 78 52 4620 541 15 5582 5213 26 1 672 4 2 156 172 7 1 462 1538 7243 2 298 416 1145 25 6938 61 25 6151 3 2 8813 5004 5 25 442 3 280 14 2 115 13 92 251 2666 5582 15 31 1485 607 1440 1347 262 25 113 2540 622 1946 4841 783 262 1403 1 1767 1946 603 4759 419 1 131 80 4 86 2631 7035 115 13 677 6 43 112 796 5123 1295 1 2943 15 902 1108 15 561 35 181 2 78 138 1484 16 1 4620 62 6179 1892 774 1 182 1022 2151 2377 5837 31 362 324 4 1 8337 383 13 3204 805 48 87 8 145 59 2\n1\t6202 1344 44 432 52 3 52 3 13 1118 151 9 21 301 84 6 23 24 34 127 56 240 584 3 2392 46 548 5 1775 84 1769 3 4067 46 3709 3 100 105 2690 3 34 4 1 120 63 152 3218 1 113 185 4 1 18 255 15 38 910 269 9 6 49 34 4 1 2392 357 5 371 3 1 2062 56 3019 65 3 297 5842 371 3 151 2509 3 1 212 1380 8 10 12 1 113 910 269 4 21 180 107 7 169 2 3166 3 1 10 89 79 96 8 56 47 1565 9 1 393 5 9 18 6 401 2525 1059 1 263 16 9 6 3435 73 20 59 22 51 34 127 82 6506 160 926 17 5 936 90 126 34 5454 7 371 341 7 2 8390 7215 66 6 1 524 6722 17 93 5 90 239 129 230 423 3 209 6779 20 39 43 6667 4746 314 14 2 5 2031 65 9 212 46 13 150 496 1379 9 18 14 42 2 84 21 5 99 7 95 15 95 1404 41\n0\t9 114 33 34 64 14 510 41 11 62 486 57 390 52 15 59 2 156 10 384 3914 136 10 6 306 11 1 2377 7 1 1166 37 114 1 3860 2377 8471 488 136 289 14 2 46 4795 10 12 237 32 458 14 1 1165 32 2450 97 298 3 940 136 8 192 20 2 568 325 4 73 1655 114 20 673 285 25 1 4087 7 5396 12 237 52 68 10 57 71 7 1 3142 3 5489 982 136 97 7 1 2152 954 986 6119 7 1 1 5236 3 1 718 181 46 3 57 1 718 340 2 52 4 3 1808 384 105 1332 5 26 3114 5996 399 307 143 24 62 486 70 7698 1205 98 8 228 24 179 13 3616 20 1 360 718 43 24 10 5 32 2 1065 21 7 5 31 483 176 29 13 5676 1 744 6 10 39 503 41 123 1 21 3131 434 1612 291 5 24 71 29 225 7 1871 30 9 3124 205 22 274 7 696 17 1 1967 21 12 2 892 197 34 1 686\n1\t112 9 3124 1956 40 2 5532 356 4 13 252 2757 541 4 21 253 6 17 10 6 254 5 932 69 41 806 5 995 69 11 3 120 35 152 24 22 48 187 132 2 21 7213 197 11 2 267 6 39 2 658 4 7832 35 10 190 70 3886 17 10 271 140 23 36 2 13 190 20 9671 5 720 727 17 8 1116 1 1384 3 7068 33 4813 65 19 1038 8 544 9 21 517 6717 8 70 10 69 2445 267 69 142 1 2282 69 3 10 6 11 69 17 45 23 946 838 51 6 5447 3864 3 129 529 6050 10 689 7 9 356 1 21 10 151 11 187 9457 69 45 317 1492 5 64 126 69 3 977 4 611 10 271 19 86 3293 13 2136 76 773 1 272 45 23 83 2076 1 4090 5 5238 4473 29 529 7 1 135 189 864 3 6 28 4 1 985 4 9 682 13 213 3454 17 1831 81 89 110 8 175 5521 13 92 974 168 22 31 1409 13 19 116 3104\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 112 716 36 1060 1881 41 1 401 1881 2112 6384 1609 27 6 39 1790 5 1236 65 19 122 53 177 20 19 1 968 4078 1240 2 7382 41 422 10 54 24 71 39 112 34 1 2392 2 103 9960 8 24 5 1 120 22 1111 1 171 22 1111 145 1790 5 1351 65 2745 5217 341 32 2668 3 39 34 888 3 62 8 139 3134 145 93 1790 5 1351 65 32 3 34 4 9 6 2037 50 1007 322 5 8 96 42 53 16 174 277 3299 41 814 258 45 33 359 19 1 767 15 34 9 2106 1794 238 3 37\n0\t4237 23 334 31 3906 16 3 352 466 2 3048 5 1 9873 42 438 75 261 88 24 9 1445 135 1081 3722 3546 14 1392 3 340 2447 7 1 21 1 7232 23 63 229 497 66 4 1 775 6819 168 57 7 1 2024 745 7987 151 2 1516 1635 7 1 644 74 394 269 14 1 5000 8395 244 229 169 11 170 12 612 1 166 349 9 12 829 3 37 11 27 63 359 9 142 25 276 6948 14 1 2652 17 27 3 205 176 167 15 55 3452 3 1773 288 169 1634 33 57 5 118 9 18 12 55 14 33 61 1673 110 15 456 36 8 63 365 95 888 13 7103 5 26 468 946 16 2938 13 1453 8 646 87 10 16 13 872 207 28 4 1 53 4019 42 491 5 79 11 78 4 6146 1097 6 128 7 1 17 9 12 89 1492 19 1919 52 68 1194 172 75 38 275 65 5 1 3 7423 7 1 199 1 598 249 2218 1427 131 404 993 3 470 30 1 84 742\n0\t1 707 1 3250 3 7 137 2569 255 142 14 3803 25 1508 1304 27 228 26 1040 1240 2 747 411 1436 4 6183 29 3 1 2631 6 32 1 3157 2272 14 45 28 190 637 1450 172 2 487 451 5 26 25 221 164 3 1508 451 5 1622 122 77 1 8600 3 122 15 624 2989 1 1509 1 585 153 291 5 438 101 179 4 14 1846 16 1 85 3 2 1257 4977 6 4521 5 125 550 48 1349 51 6 6 4289 39 48 12 965 5 1622 1 410 7 16 31 1020 7 1 362 663 4 1 1020 2090 801 98 12 3 1 1043 6 586 3 236 30 1 954 518 4198 267 11 8917 142 1 8022 740 2 342 4 1862 6 19 2870 14 2 1524 5664 122 16 2 280 14 2 3135 4048 7 1 78 138 8600 102 4029 3513 20 5 187 235 2408 17 33 2893 3691 15 561 129 15 869 3 2 4037 7 1 3063 155 3483 2 5765 29 1726 237 32 692 7281 4 916 195 139 99 8600\n1\t1763 128 3372 14 3 36 8 367 480 599 16 43 46 386 5298 1507 10 999 5 90 2 167 857 528 15 2 156 1681 1552 3 4057 4 2286 51 22 2 156 245 6 1677 5 26 1586 3 145 273 2315 3466 3 1660 3145 83 14 2 8189 55 193 6 39 1542 123 46 103 7 1 18 3 5 26 169 8 12 100 2 184 325 4 776 3 1660 1982 129 7 62 1982 289 9 1 147 2766 4 1982 3 322 10 1609 151 1982 176 2253 98 243 2 65 36 1 2356 129 2726 32 1 1660 3145 181 2 222 137 1668 671 90 122 176 52 36 3904 8798 98 42 306 33 87 176 46 78 174 6 2651 14 5 144 27 6 7 9 17 42 3516 5 134 244 40 3 835 2 757 4 1 66 123 46 103 52 98 4008 47 15 1 41 70 411 1977 154 85 27 985 2 1653 29 75 97 268 9 629 7 1 18 3 468 26 5658 1952 2 53 1982 1139 141 279 29 225 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 216 7 2 4189 3 909 5 36 9 18 49 10 310 47 715 172 1924 109 8 338 2872 6995 2 163 2 360 3 9499 12 56 1257 14 44 1845 3211 339 634 17 49 23 176 36 122 35 17 1 18 12 565 10 247 211 41 1257 41 78 4 2357 6995 721 1 18 15 44 9879 17 60 2178 1 2090 3 98 3159 4 1402 5 1 1620 4 209 6171 93 8 114 24 2 465 15 1 111 60 485 49 60 726 2 29 1 7 2 58 356 4 72 369 11 5108 139 279 283 16 6995 3 17 207 38 110 1 249 251 12 78 828\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 31 313 2015 1254 11 421 285 7712 14 61 34 1 8875 5 26 620 5 1383 1607 14 548 581 6 483 3950 3 3159 4 1154 77 86 46 1516 49 418 2 38 2 10 77 31 7697 11 1443 40 433 1 2251 9 6 9762 2335 30 111 4 2 1896 391 4 3 375 4965 3047 3107 35 209 155 5 9195 15 117 52 464 1949 38 25 9480 6 884 3620 3 722 34 4 66 352 5 1 243 5009 1 4979 10 1421 65 14 28 4 1 113 4 1 2015\n0\t2849 7443 73 791 27 3 25 7 1 21 96 27 6 850 50 3 210 68 34 4 5920 657 51 6 2 527 68 656 27 40 2 672 125 55 2708 672 7 3818 6900 136 72 22 288 29 25 3374 33 515 478 162 36 122 3 8 241 10 190 26 28 4 1 82 171 7 1 135 10 12 1011 292 8 405 5 473 10 142 8 198 99 2 18 5 27 714 9 6 31 34 85 402 55 16 116 1654 5 388 104 8271 8271 8271 102 4085 109 8 497 814 8 76 26 1551 7 11 29 225 43 4 1 293 363 61 1530 3 8 36 1 1412 4 9041 16 1 171 3 1 415 34 61 169 1805 1604 3 8 367 1604 10 123 20 90 65 16 1 4282 116 430 1706 18 6722 2555 1 1392 4342 7392 34 130 26 217 32 1 18 4552 8 96 8 230 1 111 11 80 81 230 38 813 341 39 38 34 82 4666 5031 38 9 135 207 50 212 19 9 135 793 45 23\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 28 4 1 210 124 180 117 575 8 485 77 10 1281 47 4 2 6906 5765 220 8 336 1 2797 3 8 555 8 8 590 10 142 94 2 103 364 68 31 5086 193 8 405 5 473 10 142 94 681 1452 8 555 8 5125 10 1 821 2 163 3 1714 34 3149 4 1013 1 21 1180 5 5611 554 7 1 226 2297 41 37 269 801 54 26 8 54 7 58 111 354 476 86 31 2158 5 28 4 1 700 1063 4 1 3782 4588 8 83 2564 14 97 81 134 11 10 424 11 218 6729 6 3237 17 9 933 5024 88 24 71 248 420 202 36 5 64 9 28 326 7 1 1191 4 2 206 3 3209 35 63 87 10\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1512 22 84 3 4951 109 1 7029 4 1 67 1220 19 1 82 3453 169 5 50 671 10 12 2 112 67 7 1 1692 39 36 6257 12 2 112 67 19 2 8 114 20 230 11 4005 12 84 8 531 36 2207 8474 17 9 28 12 1104 565\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 36 48 82 6495 104 198 1690 1 4 6495 198 19 3453 66 6 48 945 79 29 1 1905 5893 1 454 451 5 875 2 1706 41 1375 8 54 36 5 64 146 36 7 1 74 18 11 1 2026 421 44 10 6 78 240 23 63 202 6660 75 1 67 68 39 463 1 2906 41 1364 1 562 8264 321 43 2065\n1\t72 474 1395 1 2976 22 20 17 1674 160 140 1 7893 9676 4 1410 2958 51 6 43 547 121 7 9 1879 3323 1788 2473 35 266 218 1583 146 5 1 3670 3207 10 6 6162 3 197 95 8335 1 2328 123 297 1 166 699 27 1141 59 49 41 5 274 65 2 27 1 2100 6584 27 93 4088 19 3 11 3433 314 954 962 380 31 1418 4 146 11 40 58 1898 41 7953 136 6 5172 7 25 27 255 577 14 275 3 10 89 79 560 45 27 5484 525 5 1346 4548 1 7312 1024 6 4130 1072 60 266 1 9367 129 14 275 17 93 3446 3 627 35 2026 1877 1 182 6 28 11 303 79 9 12 1 74 1292 4 31 1235 506 35 88 20 26 104 36 376 2283 24 1 3320 11 10 63 26 381 2143 1287 3 82 782 484 1024 87 20 24 11 37 45 72 88 257 3443 4 1 74 85 72 64 2 18 5 839 10 316 14 1684 3 5255 3146 54 26 1 18 8 54\n1\t8 54 618 4091 15 1 845 9066 32 48 8 24 284 7 1 2747 10 6 20 278 11 466 5 7450 5 24 1 251 612 17 1 11 34 277 1402 2071 7 1 6981 5 1 1250 2 84 665 4 9 6 1 4 1 7923 11 1168 2857 3163 1 178 6 20 7 1 1158 1 129 35 2180 7 1 12 100 7 95 4 1 1402 3 1 7923 7 12 32 3278 3512 5 1585 8632 20 1 8284 9 212 857 6 1 1714 7 274 7050 5698 1 9741 4 1 471 50 2821 19 278 12 11 27 1012 1 4 285 25 5367 8821 3 8 241 411 109 7 2239 1 4213 2857 1807 2805 242 5 4612 1 897 205 4240 16 25 2894 3 2440 664 5 86 2728 19 25 500 14 4168 57 27 1866 411 31 6835 27 54 24 229 71 599 1 8 96 1 306 2807 4 278 6 664 5 1710 1635 52 68 2357 6 49 1074 5 1 4 1 347 69 2 3628 1502 164 2262 4 712 25 5524 5 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 339 24 71 52 39 3077 172 161 155 7 8 12 160 5 64 2 376 2283 18 29 1 1 113 326 4 50 157 12 38 5 3109 5 11 387 50 59 376 2283 839 57 71 2 156 4799 4 376 8 1808 55 107 1 6390 3723 155 13 872 2010 114 11 326 1917 16 50 364 3014 3888 184 5285 1 2 5615 220 11 2548 1344 8 191 24 219 9 18 3174 4 1287 8 173 55 921 31 2186 29 9 2115 15 137 2767 8 24 4 448 11 9 18 69 1 148 431 6377 69 123 24 86 13 3027 448 7 1 2664 4 2 376 2283 141 137 22 52 36 13 57 57 62 2548 326 7 3 7 190 4 8 57 7792 3 9 12 50 376 2283 2803\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 89 16 591 596 4 3460 28 4 1 1003 265 376 7 13 6 2 46 964 788 27 6 1669 14 31 1651 292 27 114 1030 7 375 4261 4 1 2101 27 1196 205 2101 2839 3 2360 2344 21 2520 16 13 92 607 201 22 46 109 66 6197 676 307 32 1 201 642 97 754 1041 55 6119 32 245 33 61 20 340 227 85 5 131 62 13 92 1003 2082 6 11 472 125 205 206 3 846 27 40 2 3214 4 253 2513 3 8187 104 370 142 15 25 345 1177 3 441 1 212 964 1249 4488 2419 363 3 4 397 319 12 13 2298 1 464 18 3505 7 125 394 1519 300 55 52 7 66 89 9 28 4 1 1003 1009 1400 1246 7 13 92 1735 427 4347 23 63 99 9 18 59 45 23 175 5 64 75 319 3 2447 22 41 45 23 22 311 9958 116 374 35 22 596 4 3460\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 1257 67 38 2 282 35 28 326 615 2 487 1208 2 1009 11 6 1137 44 2138 28 1393 60 1036 5 652 122 7 3 5349 25 60 98 844 2 1367 16 122 5 6935 43 2135 60 89 98 139 408 73 60 57 5 139 5 916 49 60 196 408 618 60 615 11 27 6 128 939 27 649 44 11 27 451 5 414 51 15 44 36 2 711 41 7 7239 5 70 122 5 597 60 649 122 11 45 27 726 44 3838 98 27 88 3 14 2 3838 60 666 11 27 54 24 58 3376 3 87 1034 60 553 550 1491 7 11 5 44 1197 27 6022 3 32 98 19 27 6 587 14 44\n1\t10 57 71 612 10 190 24 2006 554 5 43 627 6679 13 92 21 1071 5 26 2144 3410 20 59 86 534 8195 3 20 59 16 86 491 593 3 4602 541 69 17 80 4 34 16 86 2263 6 332 2472 227 3 227 5 90 628 20 1999 2339 17 365 9 164 15 2 2733 2821 19 25 5405 15 20 59 1 415 27 17 93 1 8002 1052 740 25 221 42 2 607 278 11 6 37 7456 3 931 19 2482 3 254 5 13 2298 1 6 603 278 204 6 31 1409 2 4 1087 1005 3 28 4 1 80 7109 286 453 7 169 43 290 136 8422 6 107 7 43 53 607 453 7 43 581 60 1501 204 60 40 48 10 270 5 1917 43 2537 3 866 2137 3 13 1268 4 1 113 124 4 86 349 341 9579 12 2 627 6861 69 57 9 2107 3 1244 21 645 2322 4227 8 54 26 2467 16 194 14 109 14 8422 3 105 91 10 12 111 105 6485 16 2 6992 124 36 9 2005\n0\t3131 122 7 2 345 5432 4305 7 5 2531 1 216 4 1 4048 4 2 346 27 1148 1 1612 2294 3 27 432 3592 15 44 25 4244 100 1843 5 1236 122 3 380 2 2062 5 1 2099 17 74 60 40 2 329 3634 16 1 3887 4 5161 7 2 5490 1404 3 1 353 1605 44 5 26 98 33 1017 1 3390 371 246 2 2273 1425 13 150 192 2 184 325 4 2395 3386 3 245 1 1445 7111 41 6 332 4652 9 1879 18 123 20 291 5 24 2 2991 3 6 5211 30 1 1300 3 4 2395 3386 3 3 152 162 629 385 1452 1 7822 1089 2582 6 311 3976 15 1 129 4 2395 3386 3776 5 25 4055 234 3 1083 1 641 7135 11 33 54 100 64 239 82 702 12 27 1893 5 24 2 112 1971 15 44 3 2410 25 425 234 15 25 41 12 2 7727 4 3 27 3155 11 25 4488 4305 54 20 26 7433 5 2 641 7135 32 1 2478 50 2400 6 13 9267 376 7 50\n1\t588 142 14 105 978 41 3976 181 5 323 1179 1 2328 4 1 129 27 1035 5 2074 3 1826 151 1 21 34 11 52 3473 57 20 71 1576 5 26 2 1816 202 203 141 278 54 229 24 71 78 52 2836 1 344 4 1 201 2989 2 1183 1200 5 256 7 46 53 453 3 292 1 18 12 20 56 7247 30 490 4684 453 88 24 1253 52 4102 5 1 7890 13 6 20 2 203 21 11 6 928 5 26 556 1067 17 6 407 6133 591 669 54 16 596 4 978 3535 137 35 726 3336 29 1 604 4 32 1 518 190 46 109 149 9 2 2763 8722 14 8 1322 2 5691 1065 3 1227 109 3620 263 14 109 14 43 593 1605 5 90 28 4 1 52 978 5113 32 1 19 401 4 9 72 22 1463 15 43 591 3 6095 1 1087 168 4 8288 66 130 359 80 7614 237 32 425 17 237 32 91 14 322 6 2 739 11 6 728 279 133 29 225 3633 50 1020 16 608\n0\t68 1 865 2206 324 4 17 791 1 81 516 1 305 179 1 902 54 26 16 1129 19 1 8743 10 666 51 22 17 144 1 898 8 54 175 5 351 50 85 288 16 4081 19 9 18 6 660 437 115 13 150 12 852 2 91 141 3 2320 19 11 10 247 2 299 91 18 1815 307 276 53 7 1 141 3 236 877 4 3536 17 1 121 6 39 1319 50 225 430 129 6 1 259 35 741 65 101 1 96 244 377 5 26 211 3 7067 17 27 39 741 65 588 142 14 2 8 96 1 1340 799 4 1 18 6 49 257 2594 1141 1 886 7 1 8190 7 2 5185 3784 2295 2594 1 415 77 1 8190 9870 3 1 287 276 36 60 1092 2018 1 1689 3 60 47 2 4 3342 3 115 13 1701 137 35 96 11 18 253 6 31 1688 2196 248 30 841 47 10 76 720 116 2867 3 468 853 95 6946 70 63 2 18 1001 115 13 83 351 116 85 41 319 19\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 240 6019 2 687 17 128 3765 119 3 2 56 4412 506 11 515 1143 5 2955 25 2100 224 183 5234 126 7 2637 13 9951 30 2190 28 349 5838 93 89 1 46 240 6298 4767 4426 93 50 878 19 11 1 21 418 142 2 103 2690 17 34 7 399 58 85 6 1130 15 2411 5447 2392 41 13 252 21 6 2 17 10 12 612 7 3512 19 388 59 7 2 324 30 1194 269 4 119 457 1 439 462 29 225 1 701 1025 66 76 5624 154 22 1435 3 1 545 128 196 1 9020 29 1 714 17 1 1101 324 6908 34 1 1131 6 128 1 28 5 176 3410 4 13 743 1321 6019 15 7466 1552 3 808 6298 6 496 1901 5 6019 596 3 1056 1914 5 845 1505 82\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 9 19 2 15 1 706 8 179 1 67 12 53 17 51 61 268 49 43 4 1 61 9812 9 472 295 32 1 21 14 114 1 1002 1054 668 3168 66 56 79 533 1 389 108 45 1 668 868 12 5236 8 88 6330 1 156 1192 98 1 21 54 26 1878 78 828\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 1086 15 238 3 5941 1 67 427 6 627 227 5 1594 1 238 5007 1 706 324 693 2 4312 222 4 352 7 1 3710 4972 17 10 12 128 3473 9 18 4031 738 50 923 4148 398 5\n0\t462 3 1009 4554 8 12 1578 16 39 38 2357 436 50 7296 61 929 39 2 222 5 7118 73 8 12 303 2 103 13 743 21 1176 770 19 2 9108 447 18 182 65 29 2 678 429 49 33 70 433 7 1 7770 3 1088 1 113 111 5 1017 1 3400 6 5 24 4470 106 1336 9 274 65 71 314 1 1820 204 6 1 1109 4 1 4470 20 1747 5 131 34 1 802 61 4762 7 2888 16 2 223 387 48 6 620 6 1 18 440 14 254 14 10 63 5 131 1 545 39 75 447 63 5721 13 34 1 926 2 1198 8 173 289 65 3 792 5234 1 413 3 1 5234 126 854 43 4 1 8082 22 2 222 1878 80 4369 2 287 246 44 1789 47 140 44 41 174 287 47 2 17 1286 1 840 6 167 1446 13 1 21 6 1789 224 30 42 221 42 105 5 26 2 203 572 3 105 3067 5 216 14 2 447 1772 1 63 1093 17 51 321 5 26 2 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1331 45 23 36 2174 494 11 153 890 1 67 3 6411 443 363 36 1 178 7 1 756 131 468 335 1 135 7852 34 8 405 12 2 4358 3348 103 441 3 10 247 939 1 2216 12 2060 119 985 61 3963 457 2 2918 4 1765 3 51 12 332 58 356 4 41 7868 41 13 6450 10 1 6 10 1 1453 42 2 9946 19 207 20 3681 10 153 9450 2 625 1367 4 1560 41 1190 1013 317 1728 30 36 137 1755 183 503 8 105 1887 11 30 1 182 1 18 2931 32 1 6899 13 135\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 282 1148 2112 282 451 2112 282 5410 1175 5 359 77 849 282 495 597 122 5239 282 7803 5 26 2 282 173 582 648 38 849 282 7803 5 112 174 259 883 27 153 946 838 5 44 73 444 4127 282 128 495 597 122 3420 262 2401 129 88 24 71 1515 17 444 7 44 5995 4 4837 919 44 6 2764 3 2836 525 29 255 142 7098 2961 6 2443 14 3708 66 6 514 16 4837 17 42 14 542 5 2 278 14 180 117 107 32 550 1 593 6 6707 3 1 927 6 39 908 13 267 6 46 832 5 87 3505 3 49 10 36 7 9 5651 4 31 10 39 8455 527 1604 6307 2731 1 389 21 7 321 4 2 163 4 3 2 9990 60 7045 95 623 5 26 214 7 9 68 7001 7692\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 1288 254 762 49 2 5090 6 30 6681 3 42 65 5 28 6388 783 5 582 2938 13 743 18 11 9411 32 82 124 3 6 169 53 15 167 53 1357 2 903 119 794 198 7 127 3 277 514 2682 2470 4387 6451 14 1 1277 3 3 1490 14 45 23 83 36 439 104 9 6 20 16 1038\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 40 10 399 1357 7266 6470 9330 1224 167 5859 9 18 6 31 176 29 750 4100 241 503 8 12 51 7 679 4 3570 2128 679 4 2891 3 679 4 105 91 33 22 34 881 1705 1 18 6 2040 39 174 487 762 1753 487 2019 1753 487 196 282 2366 17 10 6 30 1 171 3 1 1948 51 6 332 58 18 15 95 138 265 11 9 141 3 11 1680 296 10 6 2 18 8 99 125 3 125 316 3 100 70 1455 4 110 154 85 8 99 194 8 192 170 805 3 10 6 85 5 139 47 1 59 302 8 59 419 10 2 1709 6 73 23 481 1090 2 18 8 87 20 230 23 130 1090 28 1731\n0\t331 4 2515 3 13 92 3772 2669 22 1 692 5808 4 4435 757 47 1653 5266 35 22 30 943 907 14 1 21 1 950 3321 6 31 4729 1277 41 146 11 40 231 3 2742 922 3 4 448 27 876 385 5 1 1433 20 59 1 692 931 17 93 2 391 4 1128 3470 3 25 761 13 92 377 4711 11 6 599 189 7505 3 4445 6 4715 1991 14 2 2146 189 2 3 2 608 9 271 5 4243 75 209 33 1030 5 26 200 19 2 2146 1354 608 7 147 1 121 6 14 1974 14 1 1 263 1 28 7934 2674 1 2669 1169 3365 3 1 119 40 1931 7 10 23 88 2 3068 7878 13 677 181 5 26 2 100 393 4 9 426 4 2555 142 826 5 388 3160 1 518 366 4 756 3 1 305 6603 4 5111 2243 55 9 21 6 37 91 10 40 286 5 64 2 305 1042 286 17 187 10 6 51 95 680 4 146 29 225 350 1716 8731 1202 3 80 731 1453 8 179\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 1082 8198 19 154 3432 8 24 31 3486 987 186 307 602 7 9 18 3 2468 126 77 2 1053 6194 7 1 750 300 45 1181 2029 4541 34 26 383 3 643 3 72 495 24 5 117 24 257 85 1130 30 126 702 114 8 798 11 8 24 100 71 37 3837 38 2 1262 2418 4 930 7 50 389 7608 50 3429 8 173 96 4 235 180 117 107 11 12 9 565 420 243 99 2992 268 7 2 5041 68 694 140 394 269 4 9 1140 1335 16 2 135 45 8 117 780 5 889 261 35 12 602 7 9 158 646 7827 7 62 543 3 98 1620 126 207 50 102\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 56 485 890 5 64 1849 4 1 17 10 12 2 568 13 92 3832 3 6356 22 1111 17 11 6 1 59 53 1329 4 1 135 34 82 188 22 56 3182 1183 6 20 505 27 6 39 7 1 141 288 2317 1 82 171 22 93 20 46 3629 13 724 1 210 272 4 399 6 1 471 10 6 332 16 8129 1 22 4304 19 1 9743 17 1 2630 1643 949 1453 33 947 318 33 22 65 6259 9 6 39 28 665 16 1 439 441 17 10 54 186 105 223 5 348 126 513\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 12 37 573 3 439 11 8 57 3234 268 5 99 10 5 1 714 8 57 107 9 259 7 1574 1711 3729 3 8 179 27 12 211 14 898 7 194 17 9 18 12 2145 1 1121 722 171 1121 722 235 38 10 247 55 2363 695 83 351 116 85 16 4460 59 1061 188 38 9 61 1 304 6643 3662 3 6352 8965 35 145 273 713 44 1726 17 1 263 12 39 105 1319 207 144 8 1274 10 378 4 17 42 373 28 4 1 210 124 180 117\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 292 51 61 43 1474 2103 8 179 1 18 12 167 4068 1 1534 10 1 527 10 8695 308 1 238 6672 8 214 512 133 1 2313 52 68 1 3944 810 3 3784 5334 4 1 4720 13 92 129 4 1 752 12 591 74 444 7 19 1 98 1937 1 1387 3 60 98 444 155 805 98 126 702 98 444 155 702 236 58 1649 6067 16 95 4 44 51 61 240 647 43 240 1025 3 97 1155 8 54 24 5 134 1 1482 12 78 364 68 1 3350 4 86 3955 791 1 81 35 338 164 61 9470 5 36 9 461 6 58 1484 16 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1748 1570 3712 626 2254 2116 81 2291 1 4 1 7535 3 1 2838 4 1 296 231 7 9 5257 1260 4 4402 382 13 460 14 1 170 3 3360 4504 460 14 25 711 31 3424 5 3953 1 4370 13 1095 205 1161 5285 421 62 435 13 2120 4402 5068 25 77 2511 776 2 3048 5 13 4804 993 5138 4642 14 13 92 21 1196 31 1748 1570 16 113 7\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 9 21 14 2 2156 2341 8685 2218 32 3436 1924 55 1 346 76 149 9 28 254 5 786 73 10 1225 36 8 173 1435 365 75 851 489 10 6 5 90 146 105 687 3 258 7 1 2417 105 97 104 47 51 24 314 1 166 161 2143 268 2780 17 9 6 5769 1078 86 1376 5 1 103 3 35 7 1 234 2893 369 2 5329 9271 26 201 7 1 74 8 179 9 12 2 1540 2176 174 514 2067 16 116 9219 249\n0\t96 27 88 24 248 146 2 103 52 1 185 15 1 648 38 1568 8789 12 100 9253 689 10 88 24 71 240 5 131 1568 4 81 285 1842 2589 1074 5 5413 41 2241 41 27 88 24 262 52 19 1 415 34 125 1 2380 309 11 485 52 36 2 8977 178 7 2 147 2452 1028 108 52 88 24 881 77 1 622 4 294 5584 1 7695 35 57 169 1 3709 3186 9157 77 1145 28 6 2 46 46 8591 2196 16 1 6627 7 10 4160 19 554 32 2 1195 1735 1095 2 147 19 401 4 2 52 2012 31 5058 4 3905 6 3021 239 1825 4 1 699 1 82 418 29 1 401 3 255 224 15 10 6 814 73 8 367 8895 13 420 134 473 10 77 31 4799 215 645 2 264 4842 154 13 499 12 31 1128 38 28 1606 8 191 24 71 53 58 560 27 165 27 57 1 1842 3 8667 195 11 6 1 2528 914 1 13 48 63 8 504 32 2 259 35 1191 47 29 7\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 7328 462 3 46 346 1503 3687 4 869 4 9515 79 77 2424 9 682 13 499 544 47 56 109 3 1789 79 1107 8 56 338 110 189 3 4 194 1 21 544 2966 7 188 11 61 20 274 65 3 89 58 1821 50 74 179 1220 3378 6 20 428 30 275 35 789 75 5 348 2 8 1168 65 546 4 1 141 517 8 57 1155 9540 13 5676 1 85 8 3866 1 226 4 1 141 10 12 34 1495 4127 4842 927 11 89 58 2509 367 4516 3 12 761 5 1876 8 590 142 1 478 3 114 2 884 890 5 1 3158 13 2687 351 116 85 15 9 7890 13 4 7500 7085 124 3 952 3048 13 872 145 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3300 6 2 35 4632 81 19 1 136 5751 2 658 4 7070 19 2 606 1 613 241 27 6 2 1610 3300 17 1 4794 8842 262 30 2 37 123 1 262 30 578 3 33 2612 3 7 1 1776 16 1 1518 35 40 248 295 15 62 93 993 742 9 18 40 86 529 258 45 23 36 606 8876 17 86 56 20 2 53 18 16 1 80 1871 841 10 47 45 317 56 1120 3 24 459 107 1 2421 41 1286 875 295 32 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 1319 29 1 182 4 10 23 76 853 11 375 719 24 71 2632 32 116 157 11 23 173 70 1877 1 393 6 46 1 129 1273 914 65 5 9 393 6 20 5424 15 62 570 2628 29 1 7230 9283 269 4 15 1 804 11 1 2452 129 76 1288 19 1075 6 2667 295 7 1345 9283 2110 4 6829 72 61 39 98 1 2452 129 6 20 55 3364 38 1027 1352 76 5062 23 45 23 63 5062 6 14 3364 14 27 45 275 472 2584 5 2883 79 8 12 38 5 1288 3 98 367 1140 600 39 8 54 3081 43 686 4359 8 83 230 91 38 685 295 1 2636 73 8 228 26 446 5 552 43 4 23 47 51 32 2034 786 552 725 3 83 99 9 2803\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 6 1768 4652 20 59 11 59 3927 2 46 1953 668 4 10 6 25 3 923 796 7 546 4 1 265 27 876 19 21 11 90 133 3 2575 332 1466 1 59 3501 4 1 18 6 1 3634 4 2 3923 342 35 61 15 3 131 62 2015 388 1131 14 109 14 348 4260 3213 4 1 3356 418 142 169 69 5 3781 1615 883 2740 296 4309 7 5477 17 25 1953 276 19 1 833 14 109 14 1 1070 211 779 1169 1447 4 584 32 1 9408 9 18 14 2 3170 3105 8 57 909 52 4 550\n1\t40 7 1 970 42 128 279 2 176 14 9 6 2 67 38 5336 3 189 102 264 413 15 264 136 7 2 832 2462 7 1 13 206 8326 270 199 385 5 99 9 953 274 7 1 21 40 43 53 529 14 1 2661 270 2 4805 6834 996 937 1172 5 328 5 2 2741 1358 522 3 1 3881 1536 940 35 228 26 1 398 3138 4 1 4236 1 59 6417 40 58 839 7 48 27 40 71 5 13 1 6169 4805 6834 164 5 1 3721 3 5 1 189 1 1383 3 1358 421 1 296 2717 3012 2486 2 5044 2869 32 48 276 53 7 6 7826 7 1 13 6 31 353 35 153 1878 14 27 1501 7 9 141 17 7 1 2664 4 1 141 27 6 260 14 2 164 4 2 156 6029 1740 8703 372 5433 123 48 27 63 15 2 280 11 153 4535 122 95 6637 318 1 6585 3158 13 1701 2791 4 238 158 1664 31 269 4 238 11 15 2 222 4 54 24 89 2 52 3476 2803\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 537 39 653 5 582 29 9 18 1 82 366 3 14 188 544 5 309 47 10 56 50 3208 8 57 5 522 47 16 3415 37 8 57 126 2096 10 16 79 19 1 37 8 88 99 1 344 3513 109 8 39 165 248 133 10 3 1 1044 4 50 191 26 94 2826 10 12 31 313 18 55 193 8 88 202 230 1 1870 3 127 624 61 3 8 100 7 2 1519 172 54 24 5152 1 302 144 57 881 32 9 304 282 5 31 9 12 229 144 50 12 73 180 2830 11 166 1870 11 12 6947 8 105 54 20 24 7653 47 9 141 17 145 273 1096 8 159 110 46 4422 46 84 16 137 35 112 2 53 589 41\n0\t379 3 44 2150 5 469 3 1 7255 5983 42 2 46 1909 98 10 3130 5 1124 5 26 3351 379 3524 3 62 761 103 635 899 5 2888 16 916 33 760 2 429 39 629 5 26 1 429 106 1 2064 472 1 277 434 81 22 200 14 4237 395 3452 6 9577 3 90 157 898 16 1 5950 13 42 56 236 2 1909 567 3 393 3 162 629 7 9107 51 6 31 1643 30 1598 66 6 39 33 176 37 5245 8 159 1 9049 3769 28 479 236 2 1445 447 980 7 1 74 910 269 7058 39 5 131 142 174 28 38 1801 269 406 2266 11 12 2429 5 1 3 2 56 810 959 1 714 1 566 178 189 2913 3 9379 191 26 107 5 26 13 858 16 12 1233 14 1 766 3 12 167 53 14 2 231 4699 17 1442 7 2 2256 135 60 380 9 21 2 78 965 173 552 110 145 685 9 2 358 39 16 44 3 1 2637 567 3 11 5119 9 6 2 46 509 135\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2343 29 3197 179 10 54 26 2 53 312 5 334 1 3904 7949 7 1 280 4 2 1536 9141 1509 174 2652 958 3974 4837 9824 93 262 2 1536 259 39 102 172 406 7 1 496 4499 60 248 122 1328 8 497 7 42 167 806 5 64 1 4 127 2842 17 8 128 560 35 179 11 1536 559 22 3 35 88 176 29 127 6948 413 3 64 126 14 1087 4 1 546 33 2 223 85 1742 8 314 5 216 16 2 975 9110 4 1 1536 395 4 3 8 100 159 95 559 770 51 341 11 1680 503 300 8 130 24 1866 2 329 15 1 1536 13 3986 16 1 483 9 6 2 53 21 5 176 47 3410 17 16 307 2684 42 345 2511 4865 927 3 761 90 16 2 46 673 4006\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23 9877 2 131 275 35 1986 3 16 2 75 964 87 23 24 5 26 5 87 2782 60 190 26 446 5 5393 17 10 6 20 1012 7 9 3954 1370 2426 8 118 60 40 2 37 123 4232 17 8 83 64 122 15 1429 567 4 7009 3 13 7567 40 2 7486 582 648 38 261 2 442 11 8741 13 85 6 1019 19 68 697 35 40 11 232 4 130 26 19 116 20 19 50 2229 9 131 130 26 19 1254 20 2135\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 9 103 21 72 24 43 84 120 17 2 46 2513 994 10 6 152 327 5 99 73 123 2 84 329 29 5918 1 5948 3 1 9 151 1 545 995 1 2694 11 9 18 1521 6 1987 7 233 48 72 24 204 6 34 1 888 8299 3 2809 256 19 6517 7 2 1090 2302 68 11 4 2 373 20 2 1052 18 1958 45 10 451 5 17 138 68 31 855 1185 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 585 12 1450 172 161 49 27 159 9 141 27 6 195 19 2 1736 8922 3 367 11 1 18 27 12 80 1475 15 3 11 40 7 25 438 34 4 127 172 6 1 18 4 1 2247 4 1 487 3 1 27 40 1783 45 10 61 888 16 79 5 70 9 16 550 8 192 273 11 2 163 4 188 139 140 25 522 14 27 40 59 535 719 4 3 27 40 71 19 9 2468 16 535 2017 3 76 24 535 52 2017 183 25 4090 220 72 24 1297 813 27 5 9 108 19 27 76 473 172 161 3 8 54 36 5 26 446 5 6322 9 18 16 550 27 486 7 3 40 71 2 2729 16 1 576 3581 172 3 14 72 34 118 9 6 28 4 1 80 2244 63 23 352 79 6322 9 1973 23 7\n0\t1341 1648 318 1 1744 846 776 1059 1 431 4 66 419 2 147 11 89 122 2 52 3 1904 6350 1 431 12 37 986 11 596 3946 10 14 25 697 3 10 12 55 314 7 1 4816 14 25 55 11 1865 18 1982 217 2549 314 10 14 25 7 9 983 244 2 5780 8262 3777 183 1496 561 94 1496 561 497 3070 244 128 2 5780 8262 84 58 560 33 314 10 125 1 28 13 858 2 1982 1787 8 83 4001 9 131 39 73 10 213 36 1 4816 73 8 93 338 1 1982 3267 11 310 94 194 1542 1982 581 3 4989 1 1016 1490 7916 1982 703 630 4 126 61 4933 5730 5 1 17 33 61 128 46 452 1 465 15 9 131 6 20 11 42 20 610 36 1 4816 41 42 11 10 1419 95 426 4 1384 11 151 82 1982 2152 37 13 3440 340 9 131 37 97 17 1 52 8 1775 1 52 8 149 11 437 8 773 1 53 161 663 155 49 1982 3267 61 146 307 88\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1233 8 76 4043 10 544 47 46 3 501 17 98 10 39 4409 8 481 241 2978 3233 88 24 55 1616 765 1 263 94 38 715 269 77 1 141 1 59 302 8 152 1407 140 1 212 141 12 8 405 5 64 1 1298 29 1 3 5 50 4064 322 2104 8 481 55 348 23 45 51 12 628 73 1 182 39 844 23 8627 3 98 1 1365 1538 8 12 36 48 1 9 114 20 2005 2 856 6334 8 192 3134 17 10 143 8 467 10 12 2680 1 59 8 419 10 2 843 6 73 10 57 2 156 1027 23 63 99 194 4925 20 1083 23 20 2339 4686 23 228 55 36 10 41 55 112 1027 17 45 23 812 194 83 134 8 143 2979 5439\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 657 17 8 637 6040 36 8 64 13 150 159 9 7 1 518 7299 3 10 12 323 28 4 1 80 1853 509 124 180 117 929 512 5 4578 13 4375 1 861 6 1 3832 22 323 6265 1 1105 5998 6 17 1031 696 584 7900 9 28 1200 5 90 1 3329 3824 5 1 441 41 55 8463 13 8382 3 22 3391 17 9 21 999 5 90 55 168 8908 3 7533 145 34 16 3596 17 9 18 12 37 1495 8 544 1247 1 54 1743 126 34 3 256 31 182 5 50 13 1964 273 45 420 284 1 1158 1 67 54 24 89 2 222 52 1821 245 7521 105 386 5 95 52 85 19 9 5592\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3173 219 69 755 47 4 2864 7179 4 2032 377 203 2092 36 2848 1 755 3952 8 173 96 4 78 1362 204 63 8 96 4 67 2480 200 2 658 4 439 81 2575 5 2 2066 2218 28 349 94 43 374 61 7 1 1692 14 31 5 490 688 8991 3 28 4 1 439 1046 24 9833 5 1 697 2592 73 44 975 12 28 4 1 879 75 439 6 9 11 60 54 55 26 2 185 4 497 3070 1 3873 6 29 10 316 3 1181 142 32 1 46 477 35 10 51 271 95 948 3 1739 34 490 106 22 1 3 144 153 275 637 450 8 173 241 9 18 12 30 275 3 1001 23 54 96 11 30 195 1 296 81 54 26 7766 2 103 29 225 7 62 4458 17 20 37 30 9 9325\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 219 9 1279 194 219 10 316 3 1309 1882 14 5053 8 2474 354 9 2581 16 137 35 22 20 8300 2787 17 3418 200 10 289 23 11 6 2 7628 243 68 1 9865 4 1962 7463 1 267 6 20 625 9 164 6 3711 34 4816 130 5 25 952 4 2717 3 3694\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 36 23 24 58 312 48 317 1156 45 23 617 107 9 21 5142 9 18 6 1184 3654 3 2 163 52 38 1 4138 8376 1926 68 95 82 2234 4285 10 6 2557 11 9 18 40 20 71 612 19 305 73 10 6 28 18 11 1603 180 117 219 10 15 40 336 3 405 2 8312 45 23 56 175 2 53 539 3 23 36 4138 8376 3 22 2 103 1100 15 43 760 9 108 51 662 11 97 388 2551 1678 11 24 5554 4 194 17 45 23 780 5 209 577 28 23 76 20 26 1558\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 169 1 8761 1697 471 169 501 3 16 1 80 185 167 1078 10 6 2 249 18 243 68 2 3939 33 114 932 43 3047 647 3 4635 375 697 81 77 28 919 17 1286 9 6 2 53 1083 4 2 46 1697 3 534 2876 13 92 570 529 4 1 141 5449 1 3319 22 202 2829 556 32 31 5070 5486 89 30 1290 9 5486 12 89 285 1 570 269 4 1 4902 6032 10 6 1492 7 375 1678 19 1 9 4328 4 1 21 6 202 1780 19 7 11 13 2044 3350 1095 2 718 9 6 1265 245 10 123 1203 80 4 1 3381 824 5 1 3242 5467 471\n1\t91 68 1 6874 13 1601 277 3298 22 262 30 1 164 35 6461 77 62 486 6 262 30 294 27 57 146 4 2 13 252 276 1163 36 815 1 74 2542 9108 1665 117 322 4 448 20 1 74 17 1 29 11 1425 13 92 624 2951 14 103 14 888 3 987 20 995 38 1 633 410 6 620 15 31 6718 361 603 9136 12 2782 361 27 93 6 620 5472 7 2 13 3057 2 148 119 737 1 1562 2198 6 33 22 5 2436 361 41 1005 3112 11 63 26 89 5 291 36 13 92 18 6 20 565 8 323 83 118 106 10 12 300 10 12 89 16 6435 3 8 88 26 1989 8 343 11 1 687 976 410 12 20 1 4438 3080 675 1 415 22 33 396 4960 3736 4 36 613 1557 41 4 13 724 1 259 181 5 26 1 1284 20 307 7 1 18 1143 849 17 34 1 624 112 550 3 8 96 1 410 6 928 5 13 777 679 4 299 361 3 19 86 221 854\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 1 3907 4 1521 8567 794 492 4377 3966 48 25 9170 435 816 3969 4895 123 16 2 7702 170 1026 561 3969 5 28 3 5173 122 295 43 3226 9 951 69 7 2 46 111 69 5 776 794 294 1532 6036 9160 1800 794 5 1584 224 3 35 22 142 5 797 62 8384 7 3969 1304 33 76 26 3516 15 2 66 6 49 23 1064 1 4280 427 4 4142 13 36 776 5745 6581 4321 123 2 1442 329 16 206 1334 488 355 5 216 15 9 201 151 122 1 170 353 4 688 1 80 4183 177 38 5 6 1 1528 861 4 5949 6693 66 1196 2 895 16 1 518 561 216 6 323 9 1605 90 65 16 1 790 1418 4 2 2971 5 205 1 1567 3 1 182 6 7518 7910 395 7523 1238 6 31 665 4 1 4424 13 1611 5 1334 5110 816 8567 776 9160\n0\t6095 174 601 9 6 2 46 3840 3207 492 7504 337 4135 94 25 39 13 1 389 410 7 1 856 6 6750 19 1 3207 48 1947 12 10 1875 6581 337 155 65 5 44 1863 974 136 61 160 142 1603 5 8738 1 12 10 44 1829 6248 3 75 55 94 160 140 146 1005 7 367 1153 60 19 44 4365 5 2 41 12 10 3784 646 24 5 134 10 12 34 4 1 13 35 57 8865 2180 142 412 7 1 957 23 1364 1 13 1 18 6 2287 50 493 498 5 79 3 666 247 105 207 1 4 1 4514 232 4 36 667 11 2 6 2 346 4 41 2 1679 223 869 6 2 4040 13 173 947 5 70 19 5491 5798 3 64 45 2025 419 9 899 2 13 173 354 476 8 7450 5 354 476 9 6 14 3840 4 2 203 21 14 3 1 59 111 5 335 86 5502 119 6 45 23 22 457 1 2728 4 29 225 764 3 831 16 856 8851 213 13 9409 5005 47 4 4577\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 54 24 338 5 597 1 616 46 78 16 1 74 85 7 50 500 8 54 20 354 5 99 9 3515 1289 250 120 69 332 58 1273 8640 1 1091 465 583 1373 2 1011 6961 197 95 4 1061 4570 480 375 3878 5 87 1943 4737 1041 994 8 497 1 18 3380 31 17 114 20 443 1478 6041 243 68 1482 61 402 69 5232 3 534 69 8 192 273 5482 17 1 114 20 734 65 5 2 1321 1418 4 1 1055 1 67 57 732 1187 1024 10 88 24 89 2 53 386\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 119 4 12 5417 17 28 353 7 933 2175 1 389 135 5699 7635 2175 1 21 15 154 427 27 285 1 108 27 6 30 237 28 4 1 210 171 8 24 117 1586 3 130 543 1 166 3125 14 1 389 115 13 10 12 31 931 1146 31 238 1146 41 55 2 1414 1146 5699 7635 1180 5 2704 110 115 13 4098 20 351 116 85 133 9 135 83 55 1460 194 8793 1665 54 26 2 78 138 13 872 45 317 765 490 1382 5 1948 55 193 317 58 53 29 458 819 248 2 360 329 81 77 517 23 63 152\n0\t43 1881 7866 47 4 1 7344 5553 2887 12 36 2 1589 1214 174 1230 177 6 1 111 3325 12 1184 38 1 509 3 167 78 4603 14 1 18 9272 72 149 47 11 3325 615 5 26 105 1230 16 849 39 14 1 4794 615 3325 5 26 105 16 768 51 6 2 732 3 5 26 7 1 263 3260 6 1979 14 4533 30 4075 136 1 4794 6 1979 14 2 2879 3 31 1 3857 1387 6 11 1 129 255 142 14 243 1230 3 20 29 34 14 44 4168 3 5719 22 650 3977 8627 3 29 225 129 789 11 60 6 6465 51 6 174 4549 11 8 143 2197 5 3325 57 1245 1565 31 393 16 25 2045 67 69 78 36 1 846 4 9 141 3 207 144 27 310 65 15 1 5966 1865 13 92 21 676 40 2 1195 1249 3 1 1667 6 4358 17 1 1252 193 519 2054 4088 5 2761 19 810 3257 378 4 19 120 3 13 614 317 942 7 765 50 4 4970 3 82 368 4208 79 30\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2003 8 455 11 12 7 2739 7 9 141 50 1691 11 8 54 99 1 389 18 61 8023 1 59 1318 8 419 10 2 680 61 1 2313 2975 3 1 8253 4 2 13 1118 8 179 54 26 2 3861 574 4 5156 590 47 5 26 2 4620 3 7228 1211 6 1135 4233 3 14 1 4086 1255 164 35 693 5 1042 1 633 185 4 25 101 30 19 27 127 693 5 1 410 7 2 1517 1202 7008 2975 6 6 14 44 14 1 35 5488 122\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3088 1041 304 4448 8622 4084 8 495 4538 19 34 4 1 82 708 73 23 70 1 245 1 18 213 16 1 864 6 3 82 7 639 5 8 93 24 8438 1533 8 284 10 375 172 1742 8 24 5 194 220 8 39 219 1 305 4 1 682 13 150 713 5 751 1 388 16 375 1166 475 969 10 314 32 2 388 1320 11 337 47 4 4552 17 1 305 6 195 16 8 4323 10 19 20 4543 17 109 279 10 5 437 9 6 2 18 8 76 26 133 318 1 182 4 50\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 190 20 26 2 17 204 6 48 8 96 4 9 108 109 39 219 1 18 19 3 74 4 34 8 39 24 5 134 75 78 8 812 1 857 8 467 209 19 48 123 2 8330 2545 1739 103 2517 10 6 167 2637 17 8 2398 220 1 18 6 37 402 445 33 229 314 37 50 3014 2400 6 327 328 3 1 967 76 4206 1882 14 1264\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 107 154 431 4 9 3601 1294 8 179 1 74 1022 12 2 547 991 1078 1 1691 4 1068 132 2 1246 11 6 1826 8 24 3884 5 836 145 1893 1 330 1022 1419 1 7545 1 1300 3 52 8541 1 589 4 42 1 1830 291 2971 3 1 121 6 1 523 1419 1 2717 3 1411 4912 107 7 51 22 289 11 2 5344 17 87 20 230 5344 3 831 6 20 1943 8 336 2257 1761 7 145 1893 2257 157 7 1420 6 311 20 1470\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3458 4 34 420 39 36 5 134 9 18 52 68 95 4 1 1058 930 11 368 40 65 47 4 86 6 2 306 238 21 15 52 882 68 80 902 63 10 40 34 4 1 382 824 4 2 518 3991 238 1610 2270 1630 4 882 49 6107 3 1176 139 7 5 1 1358 5 70 319 33 39 131 65 3 564 126 243 68 3851 126 414 3 39 605 62 1 4 1 559 19 6602 1 559 11 70 2573 142 3 4 448 1 559 35 22 19 1473 11 70 2573 142 4 6107 6 29 25 2049 7 9 572 4643 1201 456 132 7098 9029 139 19 1 3 508 11 90 9 21 2 401 751 142 4 1 29 1 558 388 5504 45 23 24 2 16 2411 1610 1630 4 882 760 9 18 1163 3 5624 116\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 152 50 2400 6 2 1441 1 18 12 501 10 40 137 211 546 11 90 10 2005 5 64 194 83 503 6 20 1 1340 18 4 1 1561 3 86 20 55 215 73 86 2 312 11 72 24 107 183 7 82 484 17 9 28 40 86 221 6724 2 493 4 2550 553 79 11 9 12 2 21 16 8 96 11 20 610 17 35 7558 93 51 6 174 18 11 131 199 202 1 166 1469 891 784 7 194 1 442 6 224 5 4482 3012 11 28 86 2 46 211 141 64 205 45 23 175 3 8 118 11 23 76 1023 11 561 891 1196 15 25 108 8 54 338 11 1 2689 976 129 61 340 5 245 1 21 6 452\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 324 4 626 266 47 29 2 673 4404 1068 2030 1204 25 4192 1 1491 46 282 27 3410 3 1 7905 1 4026 7 1 131 22 162 36 1 3264 32 1 158 378 101 2837 11 1743 47 4 62 13 133 9 2614 8 12 6129 2275 29 39 75 2109 1180 5 90 1 212 1606 1 131 6 3096 650 15 1 1830 189 1 3 1 33 187 239 82 140 62 1112 15 2804 2133 519 9997 1 1112 1102 66 29 226 1573 65 7 1 570 156 4916 7 1422 4 10 7099 2 5 401 9982 7520 78 7 1422 4 2216 3 1933 341 34 11\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 24 5 134 11 9 249 18 12 1 216 11 56 1049 75 964 5737 1990 6006 705 72 22 37 314 2339 944 283 44 7 2 3280 3 8 56 449 11 2 249 2276 76 131 9 249 18 316 521 14 10 76 131 1 6924 596 11 3372 7 2 2331 107 14 72 24 219 44 19 6924 195 16 195 715 172 3 37 5 187 1 902 2 1600 4 44 78 860 54 26 2 5737 266 44 280 37 109 7 9 1841 44 1007 15 37 60 63 26 15 1 259 60 28 177 11 34 6924 902 76 5737 557 15 638 7 490 109 183 27 472 1 280 4 5346 19 37 10 54 26 232 4 4115 5 64 9 3990 1875 10 196 3246 702 3037 196 43 53 871 7 104 41 55 7 52 249 484 426 4 36 1867 35 40 198 7 249 502 679 4 860 1000 5 47 49 10 255 5 5737 1990 23 5868 198\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 817 878 89 79 787 476 10 666 11 22 2088 3 22 534 7208 257 813 6 9 878 39 666 11 9 1062 63 26 89 30 6 1666 176 36 4656 4430 17 145 58 37 228 734 11 8 192 20 4933 8 24 43 3 813 740 79 17 4687 1 2642 11 261 712 4046 15 132 91 4187 36 206 6 3261 16 33 22 34 2837 3 8 1844 126 16 5714 50 727 50 1562 50 4087 449 33 76 26 34 7 898 17 11 4108 1110 257 434 6035 1877 8 192 2586 4 101 3 8 192 2586 4 50 8 192 32 3 8 24 18 153 131 4 41 740 4 1170 8 3 16 34 1438 3298 3 1338 41 643 7 9 21 6 15 257 66 153 352 29 1605 5 2222 25 15 52\n0\t0 0 0 0 0 0 0 0 0 0 0 15 2 201 1307 36 9 628 8 909 237 828 1019 1 2009 4 1 18 4304 7 9924 1 113 1624 7 1 234 481 90 235 46 240 49 62 121 6 1953 5 4304 224 3 1424 3072 533 1 389 108 1 119 3469 666 11 2 1085 6 2722 5 1 3571 14 62 532 255 2912 5 2295 1 177 424 60 100 649 44 3571 235 571 2952 5 26 7614 34 1 1830 7 1 18 22 8 93 343 11 1 155 3 3194 189 1 576 3 1124 12 10 384 14 45 1 312 12 2632 463 32 1 347 1 5781 3920 7 66 1 3511 12 314 5 3423 41 32 1 7 66 33 314 1 3511 5 932 1 100 393 1151 4 1 7116 250 807 463 111 10 12 2 772 3511 7 9 18 73 10 143 216 5 932 2357 10 12 2 111 5 525 1216 7 2 18 11 40 6809 8 303 1437 144 53 104 173 26 428 16 3129 10 56 12 2 3315\n0\t5259 8 56 405 5 36 9 135 37 145 523 50 3462 5 552 1 344 4 23 32 1 2259 8 343 133 110 1 8694 172 649 1 901 4 35 621 16 1 3924 3 33 3497 5 889 154 8694 2463 2 46 684 4493 370 19 2 84 386 67 3 15 2 201 11 153 230 36 317 133 286 174 783 1772 98 144 850 144 6 10 37 6421 8 230 1 1132 179 33 61 1363 2 265 3481 73 33 2167 5 6163 4400 3 95 306 1676 15 978 961 2628 3 3847 2933 8 192 205 3364 3 2692 5 24 71 28 4 1 74 156 7 5 99 1 8694 1166 17 137 4 199 7 1 616 54 1023 11 257 29 1 453 5355 50 449 12 5 99 2 684 18 11 54 2681 1 113 684 267 37 3980 3 1 8694 172 123 20 55 209 4619 43 24 404 10 1 930 172 66 6 3061 17 1391 3040 83 351 116 319 41 116 1676 36 8 1322 1 18 76 90 23 187 65 19 112 4665\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 191 64 16 261 35 1371 1528 3 23 7 107 10 1882 308 7 2 616 3 195 19 1771 10 1834 65 109 19 305 17 19 1 184 412 9 12 146 9809 13 50 102 3571 5 64 9 3 33 336 194 50 6005 4555 29 1 60 12 1 28 35 405 5 64 10 316 7402 49 60 159 10 29 1 388 86 641 1083 4 2 6761 112 16 1109 3 7 933 2 1996 6 553 530 7 43 1175 10 1385 79 4 1 2698 7 86 1083 2 67 20 718 66 557 16 537 46 530 20 101 5 6 46 6911 23 90 116 221 438 5470 13 724 1 376 4 9 21 6 1 75 114 33 87 48 33 1322 491 39 2713\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 229 50 430 18 4 34 290 10 6 7842 7 86 10 76 1173 116 683 20 73 42 125 3680 17 73 23 76 323 230 154 1900 127 120 139 2086 23 230 16 73 4 1 1261 11 6319 16 170 624 7 3695 29 11 290\n1\t4 1 434 164 6 20 7 3 49 1 161 3225 974 6 1 1343 4 1 434 8724 3902 16 13 92 21 6 20 610 1 17 10 123 186 474 5 2031 65 86 943 120 3 136 1 250 272 4 1 21 6 198 1 2895 1 1641 589 516 10 34 123 90 16 31 240 9 6 2 53 329 105 73 82 68 1 1048 4493 1 21 153 56 24 2 5 139 32 3 72 4580 5800 19 1 5334 189 1 120 5 359 188 1470 1 203 2450 7 1 21 6 29 268 6571 17 42 100 125 1 5199 66 228 152 26 1 302 144 9 21 6 5691 101 612 7 2 3000 4 1 2064 730 22 243 53 3 245 3 1851 43 580 14 1 21 271 926 72 357 5 9157 52 77 1 4 1 1272 3 136 42 1002 1476 43 188 38 10 83 90 356 3 10 4089 1 21 224 2 4618 1604 297 224 5 31 1303 2281 3 790 8 24 5 134 11 1641 6 2 21 109 279 5565 1781\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 40 10 513 10 6 2 382 2553 4 1 795 11 3355 1 4 3949 4 6037 7768 30 1712 6 39 28 4 1 3949 5 70 2 680 5 2497 25 8727 7 4100 9 1262 286 483 2186 2553 4 1358 6390 6 1579 123 31 491 329 1177 9 3236 37 78 458 1 545 432 602 15 205 1 2991 14 109 14 154 129 7 1 1440 15 8836 4280 101 37 1202 3 4234 1579 47 1 3532 860 5794 30 1970 8836 113 1282 3120 8836 626 8836 3233 8 381 154 938 133 9 141 3 128 99 10 19 2 8132 19 9 3002 1 3782 4 9 382 1004 141 8 16 28 192 2 306 11 7 174 910 172 81 76 128 6110 5 9 18 7 6483 8191 15 82 1004 104 101 37 1005 8 9 18 6 2 1965 5 1 5416\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 2 83 351 116 85 69 3823 998 1732 116 3341 3 335 1 6610 8 336 1 1791 324 69 180 107 10 4775 4 984 17 9 21 6 154 222 14 501 59 3026 8 495 2252 1 5197 73 10 54 2600 1 135 896 10 6 2 1935 5 64 6186 316 4017 2 568 7326 2376 3042 6 53 14 3 1 607 201 6 4455 8 149 1 538 4 1 607 201 28 4 1 4 2 397 3 9 21 12 58 4727 1 861 6 4253 3 1 868 6 3090 45 23 22 288 16 3560 23 495 26 1558\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 415 22 4310 32 9192 9640 6479 7 5431 1 2377 5243 968 40 31 731 562 421 7 1 16 1 4 1 234 2 526 4 8199 624 3 2791 4 5243 6343 36 1161 3 1035 5 2645 7 1 101 13 341 4133 3 104 22 50 700 2091 8 336 9 103 2067 38 2 526 4 624 3 62 2380 16 1 206 32 218 482 218 3 218 383 9 18 19 1 326 11 9641 9097 3 5 1 234 4259 7 1 1005 3 211 1406 4 127 8199 624 6 28 4 1 80 2038 104 8 24 117 575 50 2400 6 13 9267 20\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 930 9 6 37 144 662 296 1545 428 36 2782 16 2025 35 1304 267 40 5 26 51 6 52 2485 3 2717 7 1 1721 767 4 9 251 68 7 2 4892 4 4545 9367 6 2 528 8 339 241 10 12 1 166 259 14 51 22 37 97 84 456 3 2249 7 9 251 23 88 99 239 131 4775 4 268 3 128 1351 65 19 147 188 239 290 6 892 14 1 3 256 655 8319 9 6 50 430 4 34 1 1199 3 1347 7243 6 360 14 117 14 1 595 683 4 1 1125 218 43 4 50 430 9139 275 15 2 27 56 1275 25 2749 7 6549 3 4243 75 27 165 25 442 3 4184 218 401 3 32\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1 4650 1786 12 174 4 137 53 289 11 831 83 24 2 46 223 157 409 3 11 6 167 747 45 23 1064 11 202 34 1 85 1 210 289 22 128 19 1276 1394 96 7 218 641 157 8 920 11 22 97 5390 15 9 131 3 218 480 1 5390 131 24 10 221 7678 409 1 847 6 39 7433 1115 6 53 113 22 1 120 409 34 1 1804 22 46 1904 3 211 600 3 55 3 2657 57 62 529 409 1 265 12 53 338 97 4 1 759 6047 13 2663 45 1 131 213 46 215 96 11 9 57 679 4 1187 3069 1786 2 131 11 213 46 754 17 8 338 2 163 600 9 143 24 1 4870 11 10 2149 409 48 2 1152\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3936 4 1 80 1048 2792 22 59 1 4362 42 254 5 64 75 33 4013 132 4862 1652 19 132 2 402 3550 8 590 10 142 3464 98 165 2284 5 64 45 10 88 70 95 2194 10 1322\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2608 419 31 1485 278 7 9 243 747 17 211 67 66 602 169 2 156 170 81 3 62 1052 534 4507 231 35 57 31 59 752 3 336 44 660 911 63 60 198 404 44 3 553 1159 66 12 31 4050 314 7 1 4 2 2585 606 2561 5193 3 9564 196 992 1768 602 15 44 5776 417 3 14 9564 1 52 60 615 47 38 992 3 44 148 733 15 44 4111 84 21 5 793 3 9369 258 34 1 53 121 32 34 1 607\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 102 3 2 6538 8529 3768 275 786 348 79 48 1 272 13 150 1266 8 365 1 1267 7154 42 377 5 26 38 2 526 4 19 1 605 1489 421 34 5182 3 285 1 2125 2886 2251 17 1923 32 2270 882 51 247 56 78 4 2 272 5 9 108 436 10 12 2 1105 11 392 6 56 162 78 52 68 2270 45 11 12 1 272 10 12 248 169 322 17 8 83 96 11 12 1 2115 8 96 1 1278 56 179 33 61 253 2 4211 18 737 17 14 237 14 8 12 3096 51 12 2 528 551 4 95 994 10 384 36 8 12 133 2 821 209 5 727 15 1 120 288 36 48 23 54 64 19 1 3736 4 132 13 252 18 130 26 4518 385 15 43 4 1 9 1671\n1\t1113 78 8547 3 255 47 4 62 120 3 7659 15 28 3152 66 187 111 5 2 4 892 2131 1529 3604 3 6286 1650 3 790 2 7418 108 48 151 2 8467 157 55 138 6 11 1 21 213 311 5 537 14 97 190 9698 10 5 1718 292 537 54 1314 149 52 1033 47 4 9 21 608 1 3847 1650 22 2 222 52 68 4932 3704 245 42 806 5 2900 9 3 42 806 5 335 9 803 13 3422 2 8467 157 190 20 2500 1 3 7649 3220 274 30 86 9 6 128 2 1016 141 3 1 357 4 146 2911 675 24 2012 11 479 20 39 2 17 378 2 3 964 526 4 21 3249 7 3853 33 3081 1 1940 3 49 275 198 999 5 401 62 5049 42 59 198 30 2449 48 52 6 51 5 134 38 2 8467 157 82 64 5313 42 20 169 1 113 66 2224 107 32 1 2104 29 17 9 4152 47 1 163 4 86 349 608 3 646 26 45 9 213 1 113 1139 865 4 13\n0\t3 129 1273 69 258 340 1 233 11 1 21 72 87 24 6 39 37 673 3 270 554 39 37 13 6570 48 88 1 24 815 71 242 5 8612 9102 62 817 158 12 2 1134 402 445 525 5 1 362 2905 3065 1198 124 395 3 14 132 1544 167 542 5 1 1028 11 137 7 2672 1443 54 118 32 986 13 4 1 7375 5 1 784 5 24 71 1576 14 43 16 1 3329 4 661 2251 9 54 20 59 1346 1 3 1 720 4 2503 129 77 2 17 10 93 2980 144 1 1713 83 152 87 78 7 1 158 1739 820 2701 176 3 947 16 5269 69 479 39 8948 20 1 2224 34 209 5 112 3 7 1028 4121 13 150 192 1 3757 5 95 7 50 4001 16 661 392 3 86 3329 69 17 8 96 2 21 3753 5 26 548 1239 3 59 1372 5848 3 373 69 2 21 38 1713 3753 5 26 38 13 28 4 1 80 1213 124 7 368 2994 17 20 28 8 63 55 16 5926\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 59 1 330 85 8 2165 2 185 111 7878 13 150 12 1774 5 187 9 21 1 5576 4 1 894 29 1239 55 193 10 1180 5 26 205 6978 3847 3 3 8908 3 13 499 12 36 31 94 416 293 470 30 11 1021 2442 3555 635 35 1304 1348 7848 1119 3 3279 15 6258 3585 11 59 1 80 5704 54 1064 3 43 1453 1581 1 345 6761 13 6372 258 49 10 77 2 3 4096 8364 3 114 8 798 1 13 252 213 1 210 21 180 117 1586 17 407 1 28 180 343 225 4565 5 694 2086 8 83 354 10 5 4315\n1\t5 87 814 6 30 773 35 123 34 60 63 5 359 44 32 160 5 64 1 6859 309 7 3203 10 77 31 2059 8554 189 1 1995 3 1 2916 1240 31 393 11 6 2696 4 125 1 94 1 172 4 49 1 3988 4 9870 1 6859 341 9944 54 1183 174 7 265 10 12 84 5 64 2 18 11 6583 1 299 4 10 34 3 7 132 2 8561 4257 3293 13 499 6 650 4759 1073 17 2 84 6945 267 6687 49 317 7 1 1646 16 146 52 3808 155 5 3162 1038 15 1461 3431 6591 3 988 3431 205 605 185 7 43 4 1 3387 23 63 70 1 312 16 48 232 4 623 317 7 16 341 20 5 504 5 64 2097 5433 55 45 59 16 2 156 269 7 1 644 1 67 7597 406 1685 341 12 30 1 1073 8656 891 2977 66 43 1681 129 1714 7 1 2451 16 3412 13 150 54 354 2834 19 1 8169 891 2456 298 416 9117 612 670 2 3000 3513 1 215 6 128 1 1293\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 531 878 59 19 104 11 8 2102 5 221 17 204 8 175 5 90 31 4727 1 804 4 9 141 66 936 181 5 70 433 7 1 6 11 127 102 9957 1995 24 2 425 260 5 139 142 5 5202 70 70 3 2572 655 62 5763 4 2778 55 4476 16 1 33 24 1070 1 4344 779 1 356 4 8481 5 4165 65 1 398 2341 3 48 33 24 274 7 94 399 6 34 207 6911 213 1947 5 898 15 1603 1939 704 41 20 188 47 7 1 6 56 20 1 7 233 42 169 1 272 6 11 16 2750 258 45 33 22 170 3 258 45 33 22 7 2 3887 4 6 89 822 4 3 9468 30 9 108 51 22 237 52 127 88 24 3193 11 54 24 758 224 31 1536 4 1055 4572 19 62 2177 7 2\n0\t57 2 156 1360 5015 5 836 1 7941 3763 114 1265 10 12 29 1726 2212 3 29 2317 436 50 7296 61 105 7156 8 256 1 305 517 7426 996 9 6 1927 26 94 133 126 1429 5055 1 282 38 2 3583 984 8 12 133 10 7 884 13 7846 2329 4 81 54 26 942 7 9 135 5884 81 35 3143 47 65 124 39 5 64 75 65 10 56 424 41 4509 203 8 7653 9 3 1 82 7588 6782 124 16 1 1967 2650 17 55 45 8 1310 77 1 3631 4 1 9 21 511 50 14 2 729 4 698 8 88 830 9 21 1962 813 7 23 39 564 1 37 7 4641 1 59 302 5 221 9 21 6 16 1894 45 23 175 11 2094 203 153 70 4 2295 1432 11 3354 1221 17 29 225 468 70 1 813 3 5299 23 13 92 59 302 8 63 64 16 261 9 930 6 73 33 230 479 377 1467 58 1703 6156 11 8 63 58 302 16 42 58 2798 39 2 1054 525 5 26\n0\t4 1 10 12 6295 3392 816 4748 5 8017 1 855 217 1998 4 17 977 2301 48 6 1 28 4 1 120 196 4733 32 25 21 2340 174 28 6 2 1200 2280 15 2 1892 102 7656 937 433 62 435 3 1 80 28 4 126 34 6 1417 30 1 3235 27 6970 51 22 2 342 4 52 120 9335 1323 140 1 2238 17 479 55 364 279 127 81 311 6003 19 3 19 38 46 1610 6509 1920 157 7 1 7299 7690 3 239 4971 3 7210 38 3291 1348 3457 1395 43 4 1 3637 87 4759 258 1 7659 189 1 102 559 32 17 128 162 3215 41 55 4884 1 21 152 557 113 14 2 388 5 5912 1 707 4 3 14 31 4559 217 265 3939 51 22 375 3489 217 1512 4 3 236 198 304 265 704 56 1767 41 8814 7 1 5157 1227 1874 111 1 3235 6 2 89 3 3489 5718 17 105 5410 3 1056 1495 3 8 1582 560 80 4 86 596 54 55 57 2705 5 99 45 10 1121 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 1 2196 4 242 5 8065 1 6429 15 4452 1 1132 1 2672 3 1 100 32 1 5479 3 1 5479 1536 12 20 31 1 5218 16 1 260 5 221 8777 3 3 2 1105 5416 236 162 3943 7 656 1 88 24 728 3278 3 5187 1 13 499 181 5 79 11 1 67 40 162 5 87 15 49 4452 844 1 42 20 73 27 159 8287 7 25 744 27 407 153 187 411 125 5 1 4 1 1232 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 2 1447 176 29 1615 3 1342 11 156 2602 1838 22 50 221 102 537 22 30 4 2 5305 603 435 12 2 1910 4 1 763 3 2 315 3059 287 603 1007 61 27 1136 1137 4 3 421 25 1615 3 12 757 142 32 34 4 25 231 571 16 28 975 35 472 2502 19 44 1338 5459 1315 537 285 1 84 5493 4 3858 1 231 15 2135 1875 60 7544 4 448 60 7092 9 231 16 44 221 50 752 12 4574 30 1 108 72 24 89 10 2 185 4 257 9889\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 12 133 9 49 50 379 404 5 32 1 82 974 14 5 50 1412 4 9596 50 1352 192 133 50 13 6998 17 59 30 715 172 41 814 68 1 8 320 1 1409 15 66 12 30 257 4 6835 3 75 1 212 1145 1551 177 8362 3 472 79 3 508 77 1 50 221 6892 79 7 50 221 1145 5739 7 6792 30 193 257 526 12 364 1134 7 1 1594 2787 16 1632 72 6537 16 3 318 94 2 1697 6203 257 707 337 37 237 14 5 1959 199 5 3940 1 8557 2819 19 13 252 18 758 10 34 155 16 79 3 8 76 2398 11 10 758 10 34 155 16 2 658 4 199 4 1 518 3 362 13 2718 22 7 2 696 1145 1568 1165 195 3 56 321 9 18 14 2 4236 64 8381\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 192 1790 9 753 15 2 184 1598 2636 38 9 135 87 20 284 10 116 1 250 8842 1 282 35 198 7 82 1222 581 6 2035 675 1057 8 39 2052 23 269 4 116 3223 13 252 6 28 4 137 772 104 11 12 1256 371 7 1 750 4 1 1222 1592 4 1 480 848 1 2594 1237 9 6 39 13 7740 3 1185 1554 70 2 91 4581 675 33 22 14 9736 35 24 111 105 97 7051 922 5 934 15 48 276 36 5811 1185 1 1185 1554 209 142 55 8350 13 6 39 5 256 7 116 49 23 24 162 138 5 1690 292 8 1379 133 116 522 11 54 26 52 9760 13 252 6 1274 16 627 1710 2504 2565 46 1516 633 3536 3 893 13 3382\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 175 5 64 5377 70 2 51 6 58 640 17 1 226 4132 269 4 9 18 1229 19 43 426 4 2244 1 59 1548 9 18 40 6 11 519 86 37 91 86 722 488 657 22\n0\t9 6 68 1 74 801 153 134 78 8 54 243 99 2756 10 128 4597 87 725 2 2454 3 925 235 32 127 402 445 1482 4797 8 12 77 2512 2 156 7500 5 1594 43 1132 3 487 114 8 2580 110 43 617 55 71 286 1491 32 1 1132 3 8 173 55 1307 75 91 33 34 2620 925 235 15 1886 6615 41 7 126 14 33 87 2133 65 7 82 346 124 11 33 22 417 1566 45 23 22 417 4 127 3675 3878 22 23 61 7 62 104 3 57 299 253 450 17 16 137 11 57 5 99 8101 58 699 91 3481 91 91 505 91 966 127 662 55 695 8 419 9 28 2 358 59 73 9513 6 7 10 3 11 6 38 110 300 10 153 55 2005 1 2824 38 2 755 376 5 131 10 12 1056 138 68 1 74 801 8 555 8 88 24 1274 7 1 45 23 175 2 547 58 445 158 139 1351 65 146 32 125 29 6051 4261 36 7279 41 55 5459 1 137 22 152\n1\t1492 7 8927 1 8717 6 8304 386 4 75 4427 10 54 24 71 5 24 57 2 2024 9031 71 446 5 64 1 910 269 4 1988 1131 11 61 5708 16 1 2322 4228 174 2038 1993 88 24 71 1 7720 1 414 238 1131 66 12 406 1139 2287 93 1124 7 1 305 1042 6 1 1169 586 29 1 182 4 1 21 66 6 2 6165 32 1 641 66 5562 7 1 46 570 9147 4 1 135 9 324 6 3 775 8083 260 125 1 668 2281 4 1 13 3027 611 1 700 2432 4 34 6 11 1 967 12 100 1001 72 76 100 26 446 5 64 9710 4247 4 4 4 4 1 4 4 1112 15 1 1897 800 41 7887 15 550 72 76 100 26 15 9710 1854 4 41 1 41 1 8668 4 1 3789 10 6 2 1152 660 34 11 72 6546 7 1 769 24 5 1942 745 6087 3 3727 238 21 324 4 127 406 795 7 5347 688 8 1331 55 11 6 138 68 246 58 1262 324 29 2616 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 266 2 2057 3100 532 35 2080 44 4787 585 5 18 376 8957 6440 3 5337 1 102 183 47 16 452 71 6469 14 1 651 9 1097 16 86 206 3598 9146 173 70 2 5424 7108 3 1829 7630 213 155 29 34 30 1 863 44 260 4709 3 432 2 2739 19 9 3349 1491 11 1 119 40 78 160 19 4055 3 6145 6496 6634 3 3766 182 65 15 46 103 5 87 17 1594 1 3974 3 307 6 30 44 7138 32 4577\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1416 28 4 1 113 598 124 117 1716 45 20 28 4 1 113 124 117 89 7369 1252 2653 593 3 121 7 2 897 19 62 2487 9 21 557 19 37 97 6647 37 144 6 10 301 19 1771 100 620 19 144 6 10 1503 295 49 10 6 9335 620 29 1 2377 21 2114 7 1588 5 3485\n0\t6078 1 1237 3 33 1351 43 5639 3 256 126 7 2 1 2201 4705 949 17 1 4520 6 3363 457 1 136 5184 16 1 1659 11 303 19 1 9994 1 2201 1283 498 46 161 220 60 6 4 1 3 784 5 5317 521 4365 155 140 1 4761 77 44 7027 17 19 1 1735 4 1 1 1732 44 3 1 1108 77 28 30 461 44 532 2307 16 44 3 3779 5 134 5 35 6 1204 16 2 2613 3779 5716 25 692 3 1083 44 27 1371 44 3 11 27 153 175 44 5 139 1695 62 435 6 3 1036 5 359 51 94 399 3 1603 3 642 3518 35 57 71 1 250 454 5 899 3335 13 2080 16 25 6676 2820 418 5 1346 75 60 419 10 5 4 17 3779 153 175 5 1876 5 48 27 2615 22 44 1189 3313 37 27 498 200 5 176 16 10 7 44 28 4 1 7959 4940 1191 1 155 140 1 4761 5 1275 1 19 4843 3779 6 3 844 44 7027 197 667 2357 9203 29 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1915 23 175 116 2419 4 4685 1953 5 2 3794 3 23 70 116 8652 1308 32 99 146 1939 9797 245 23 112 3416 267 14 3193 30 28 4 1 1726 87 99 9 2396 13 92 1854 6 4 1 35 56 481 70 1 2784 27 5015 174 342 6365 19 2 2312 3 27 40 2 7759 9695 62 6141 13 252 6 28 4 829 7 6926 15 3 2475 3 127 4074 1093 14 1 3716 2378 4685 5 5868 14 27 140 13 150 5391 1 8743 14 9 88 26 1050 2 193 42 20 45 819 107 127 703 307 741 65 7 1 571 27 196 1 1753 35 7 9 524 12 262 30 3232\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 180 195 107 9 28 38 394 984 37 51 191 26 146 38 10 8 13 199 1045 104 61 167 78 2 1795 33 61 463 89 2633 179 7977 41 772 3 1941 5200 1849 6 2 222 4 17 7 11 16 1 2489 13 499 93 57 2 522 357 15 1 263 69 292 3189 228 20 24 194 10 12 370 19 25 5092 309 3 1826 8323 2 732 1234 4 554 45 89 2593 13 777 1 67 4 28 4854 9667 7990 30 5779 2 434 2075 303 6043 19 172 1448 385 1 111 1 119 15 4978 2809 3 37 1011 23 560 519 144 317 133 194 17 198 1405 11 112 8806 4350 128 1834 65 322 3 1 1254 6316 826 142 1 3736 4 4390 3227 176 53 55 94 2297 982 2037 1 606 125 1 3063 7 1 237 5604 6 2 13 1601 7 399 15 34 1 113 4 86 232 3 72 130 26 9050 11 132 2 3687\n1\t765 1 82 4168 10 6 5 118 11 1 22 254 29 1093 283 19 457 154 13 6450 4036 2 103 8939 1785 5183 36 2 163 4 27 1148 25 3179 14 1 80 731 177 1218 27 1123 1 7709 3 29 1524 154 1617 285 1 1199 72 70 194 94 38 1 74 394 5907 13 6450 4036 2 103 4812 1240 1 1785 5183 1 185 38 1 7 1270 1443 6 591 7067 43 46 1896 2985 622 224 5 3 65 1 212 4 1270 1443 7 38 1194 1452 17 1 272 1373 69 127 188 114 7 233 7622 2266 20 400 1 1318 16 1 1246 421 1 3573 13 6450 27 1214 7532 7 95 111 1785 20 2 5590 20 5 50 34 27 666 6 11 2902 262 2 1114 185 7 66 5386 52 8109 11 2902 6 1 59 13 659 1 769 45 317 288 16 146 11 116 221 356 4 98 9 251 6 20 16 1038 17 45 23 22 942 7 34 4 1 68 2728 75 4891 41 9 251 2334 2 4991 4247 4 1 1267\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 219 5 18 1163 3 10 39 4104 50 438 1695 10 6 2 148 1719 4 632 3 8 83 365 144 80 4 1 81 96 42 3095 1 250 312 4 1 18 69 186 116 6636 295 3 98 23 76 24 306 9 12 1 250 1112 29 1 182 4 1 18 3 259 7609 40 620 11 7 2 2313 699 218 700 4334 76 2321 7 1 226 334 23 76 117 69 87 23 320 9 32 1 1973 73 257 306 4334 6 7 199 69 10 6 257 11 672 11 198 649 199 11 72 22 6911 11 380 199 257 11 649 199 20 5 17 59 5 11 2182 257 11 451 5 26 7 9048 11 2182 34 1 1332 1687 3 6471 9 312 7 31 6483 111 3 40 620 11 1 59 111 5 3494 306 1377 6 49 23 2324 1377 3 23 39 369 139 4 116 923 2 1016 8852\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 862 1703 1348 88 90 126 195 8 291 5 26 425 1 1003 3 1 700 668 117 89 1876 5 1 304 759 1 22 169 1101 3 8278 30 296 7251 144 173 23 87 146 36 11 61 1 113 3 16 11 8 332 131 50 5 23 15 9 22 911 5 3764 1 7842 4 9 108 34 4 2 2585 50 683 48 151 1 8 735 7 112 5 1 178 15 816 3 1 700 197 45 23 23 153 118 116 671 22 20 1089 50 417 23 191 64 10 3 7685\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2110 77 1 567 6302 8 57 9 507 11 9 12 160 5 26 2 91 141 17 8 143 118 39 75 565 98 1 353 372 1 510 3850 1648 1986 25 2333 3 50 493 3 8 1088 11 7 639 5 2711 9 141 4547 24 5 473 1 7930 2563 90 65 257 221 494 3 1839 1 2583 19 1 1771 17 11 143 4136 38 350 111 140 72 590 10 1294 944 180 1457 140 43 46 91 104 1704 205 15 3 197 1 4 1145 856 3 17 51 22 39 43 104 66 8 894 55 1 63 1 1003 185 4 1 18 11 2705 79 1 80 12 11 1 81 77 3499 479 1713 57 1504 8 497 33 61 34 77 2214 98 77 2449 1382 5 1 148 3641 1280 3156 36 3555 32 3836\n0\t16 2 2478 1020 68 461 8 198 24 214 29 225 2 302 41 102 5 64 6156 69 45 59 7 1 4187 41 1 991 4 1 4342 1 1392 1 1249 41 1 13 659 9 1723 479 34 1 166 259 8913 35 56 693 5 70 2 3258 19 1 698 29 225 14 9805 30 9 4533 351 4 388 11 27 40 58 3694 8 467 10 54 26 2 5057 1335 45 9 61 43 5811 298 16 25 74 616 7232 17 1 516 9 8633 12 29 1 85 4 9 115 13 3793 75 114 9 117 70 35 7 62 260 438 117 1059 2 841 16 2782 8335 83 369 1 1009 1203 3282 236 20 55 235 11 2363 4831 2 53 447 178 41 95 53 4 1 19 11 13 7846 570 51 12 28 330 49 9 6004 57 1362 1 4424 196 47 30 25 9853 8 488 8 114 825 28 177 32 9 51 22 268 49 146 6 37 46 91 11 10 424 2835 323 46 695 17 20 7 95 3865 42 39 1547 46 1547\n1\t486 4 1 4827 3 62 1 15 66 1 915 729 6 2970 985 65 1 1324 13 14 1 3098 522 6 1 6088 2658 4 1 158 1 891 200 66 34 1 446 5 3258 95 5059 41 60 6 1 1726 519 6294 4699 3690 6 2 4 313 7032 170 14 2 6217 612 32 1641 223 227 5 187 1994 14 44 6214 170 9429 7680 14 2 8316 35 5214 1316 8075 14 2 46 3287 532 7 16 44 7091 6309 3564 217 6409 14 6922 3 1403 14 2 9735 13 76 3082 14 2 9054 35 451 5 64 1 776 5349 14 2 4917 766 35 7829 5 5077 36 2 8543 14 2 1101 766 3 3120 14 2 9703 379 942 7 585 69 34 13 677 22 2 156 7 1 119 69 43 4 1 7126 22 515 78 105 7680 432 5622 2599 7 1 4788 17 630 4 1 4827 291 5 31 515 4319 4937 6 446 5 6613 200 29 76 69 17 9 56 59 1 3445 1033 1548 4 1 21 3 863 188 32 1496 105 7332\n0\t406 81 473 65 434 7 1 166 23 83 56 321 5 26 31 2830 203 41 2 4701 1648 5 842 47 236 2 5004 189 1 2064 3 1 4058 195 87 5917 6195 1 524 22 2 1524 613 2457 341 1539 3 2 2015 1557 35 196 2029 15 1 1575 1212 180 117 6870 288 140 1 6302 44 3688 3 60 143 87 235 422 1251 32 9 3960 3 31 404 6117 191 48 2 1130 60 190 20 24 71 2 84 2922 17 60 273 57 102 82 184 11 54 352 44 899 7 131 4552 1 1234 4 840 3 1 538 4 1 3624 363 22 162 6719 1181 1979 5 2 342 4 1213 15 2 3 43 423 1 119 1552 774 1 182 22 903 3 2674 17 30 11 85 1348 6 605 1 21 1067 8244 2799 6 1901 7 524 23 175 5 4218 4 34 116 1568 142 16 28 1925 17 5519 230 36 133 2 2814 10 152 54 90 2 1442 15 205 124 24 2 163 4 1494 3 2147 9509 3 205 124 22 167\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 36 1740 3 8 179 10 54 26 299 5 99 9 158 220 8 118 27 8278 1628 800 3 33 54 26 211 1413 8 179 8 57 107 34 104 17 339 320 9 628 3 195 8 118 2957 42 37 331 4 2515 3 5952 23 63 9014 239 178 588 341 1740 153 55 70 5 26 211 46 6281 244 105 3297 242 5 1717 1429 2187 41 131 25 9676 29 75 955 25 435 369 122 1781 1628 800 411 6 1002 8308 14 6 1 4389 38 101 31 1988 7 1 502 17 48 2 8638 11 1740 39 629 5 1978 25 435 39 14 2 580 3839 5059 270 2416 966 966 41 11 102 3297 6922 63 39 4258 224 62 5 2968 200 7 3 49 1 182 2010 123 10 209 202 14 193 1 1063 1640 33 57 4962 730 77 2 4406 3 1 59 111 47 12 5 87 2 469 1361 650 1832 15 2 156 4 53 2466\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 198 57 1245 588 5 1422 15 2 678 1501 5 26 58 4727 292 1 2447 4 2 1016 1249 3 1160 19 2 401 2039 15 6740 5799 1667 30 626 1 18 1082 19 1 4102 6460 436 1 302 6 11 1 21 181 37 1087 11 1 2585 4 1189 824 1 5520 4570 7 1 238 3 15 1 3125 4 1 807 8 214 10 832 5 694 128 140 34 1 2971 7737 3 8297 3 1258 5 1942 4387 14 2 5155 3 1 7 8656 3 29 225 4786 15 437 1 18 12 156 45 41 5 82 6741 73 10 12 631 32 1 1625 11 7949 3 7715 57 936 390 602 7 2 10 13 1509 1 18 40 381 146 4 2 8559 19 2229 2 408 1190 784 5 90 1 1324 52 5 4680 245 480 86 1758 3214 14 2 678 41 1846 158 1 119 4 9 678 8594 385 2674 2761 456 11 76 24 6025 3584 75 1 5548 120 76 963 209 5 1422 15\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 784 11 97 1396 149 1 312 4 2 2394 2181 589 3 16 53 33 22 1974 3 2288 4 3 987 20 635 1396 61 650 4 7384 7786 7384 8849 5 1 6412 48 8 83 70 6 4167 144 12 2181 1227 16 25 5056 7 17 1 1579 12 16 3595 7 25 7 2549 4706 42 2 678 921 4 3283 8 54 24 5 1023 15\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 202 9320 7 5502 133 9 108 7 233 8 88 20 55 1812 110 8 175 50 319 1877 28 52 4 4589 1035 5 209 65 15 2 147 3742 53 177 8 359 2 7970 4 7 1 39 7 3060 33 130 4 419 2423 2 3341 3 2 278 7 5459 41 1204 5202 5876 4152 9 81 35 22 301 3 400 80 4 126 130 112 9 108 45 9 21 57 71 8 54 24 556 10 52 2556 8 54 4 243 1390 5 64 2 301 439 18 11 114 20 328 5 2321 110 7 50 1520 9 12 2 862 439 18 3 10 89 2 55 52 862 747 525 5 328 3 2321 11 13 1601 1 291 5 112 10\n0\t59 1205 7845 6 1 900 551 4 95 1362 13 3562 300 51 6 461 174 2381 19 9 2819 40 367 11 1 2801 802 22 4358 3 244 1907 4624 3 3984 62 7 185 28 3 185 4069 17 62 6520 3927 2140 4648 8188 1 971 291 5 24 1837 11 55 693 2 4233 67 5 194 3 236 630 7 13 92 957 993 3 742 6 1 80 3094 4 1 8766 3 31 2557 1412 14 1 4 9 135 266 31 170 16 25 74 326 4 1578 5 3996 1 3180 4 4548 27 6 15 31 2195 3398 1277 262 30 3 49 127 6863 274 47 19 62 74 2193 72 356 2 888 6709 4 1 644 1188 5848 39 5848 1 3398 76 26 30 25 147 356 4 5288 3 300 34 76 182 3472 94 513 17 4648 9 18 2177 826 16 1 15 58 58 749 2526 58 5306 67 4 95 13 8643 271 5 1 8 179 8 57 459 107 1 210 11 368 88 815 473 689 906 8 1808 107 1 350 4 592 13 3382\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 56 405 5 36 9 108 8 332 112 3 40 2 1515 601 5 550 20 11 8 36 29 513 7045 9 108 27 130 4 369 3 25 1053 1327 5290 1 682 13 42 167 509 1923 32 2 178 15 2402 6823 7 110 51 56 213 105 97 8378 7 9 141 3 80 83 291 5 134 52 68 28 3875 790 9 18 12 4652 8 54 59 1379 133 10 45 23 165 10 15 1 1022 755 305 4 6033 2887 255 16 1126 19 1 3925 5893 4 9 2675 8 192 128 46 2337 5 841 47 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 173 241 261 179 51 12 235 215 41 240 38 9 108 145 2 325 4 1145 1724 14 78 14 1 398 2112 3 8 63 335 55 161 104 15 903 14 223 49 33 22 428 30 275 82 68 2 16 1632 50 5639 753 4 7979 2063 13 743 6030 88 24 2667 138 610 144 8 130 16 2 330 186 1067 1 1048 312 516 9 108 1 465 6 20 11 1 1278 57 2 402 11 33 143 13 5140 5 1 4533 603 5639 746 1030 19 1 13 13 5340 13 5340 6849 13 8 335 765 1 1967 3468 1604 62 18 6540 4102 40 881 140 1 8509 17 8 118 45 8 117 90 2 18 15 4908 2 978 119 3 439 1456 646 131 10 5 127 3 3006 126 48 33 367 38\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 565 10 792 15 375 1610 8286 3 98 2932 5 2 5930 4 2 11 2492 8913 5 1 1754 10 271 155 3 3194 189 3 847 4245 229 73 1 21 1350 339 4535 414 1488 646 4479 23 1 1896 7371 119 11 4089 9 6418 21 19 16 2 1798 5907 13 1268 4 50 417 214 9 46 1219 388 29 2 2700 1339 11 8068 47 4 3687 3 27 969 10 16 1 4707 1734 4 253 299 4 194 688 14 10 498 827 257 12 20 9 21 151 299 4 554 138 68 72 13 150 179 11 1984 1709 32 3836 12 1 18 7 17 597 10 5 8492 5 550 45 23 64 9 18 751 10 197 10 6 46 1219 3 279 4961 97 53\n1\t0 0 0 0 0 0 0 0 0 9 131 6 1325 1613 49 10 74 310 47 8 193 10 162 52 68 2 6061 231 267 15 169 2 156 53 10 384 5 2783 97 2752 56 109 1221 15 264 9491 4 205 5304 3 3338 245 36 8 1113 8 100 179 95 52 4 10 98 2 53 99 19 31 8715 245 50 793 12 383 47 1 82 3406 49 1 1697 469 4 1 211 294 5188 1 8665 3010 42 2435 3 56 1 120 157 7 2 46 3401 111 11 93 2610 1 4418 4 34 1 4429 4 294 2 885 353 15 1 860 5 87 2357 49 1 131 3246 94 8 56 405 5 39 187 50 1508 2 3 369 122 118 75 78 27 928 5 437 8 179 9 3554 1 121 2447 4 1 277 2383 591 11 4 919 35 12 4126 4 1 226 911 60 367 5 550 10 1385 79 11 58 729 48 586 188 8 134 5 50 9228 8 83 467 126 3 42 46 731 11 27 789 476 84 131\n1\t833 4742 15 1 4389 4 7 3328 2 1032 488 2835 567 980 4 1512 608 9394 183 2 423 1128 608 9321 5300 1486 140 1 1 2946 22 2 3599 4 4708 1667 3 3481 14 193 1181 1157 105 542 5 2 756 412 2 729 4 698 1 182 2754 12 4440 32 2 249 13 677 784 5 26 43 5034 38 1 644 1042 6177 970 1 21 14 2 8368 4227 17 205 1 2377 21 3 1 2377 21 9193 187 7828 14 1 3013 2463 436 9 6638 1 85 189 1 644 3 86 74 1228 463 744 1 2946 22 7864 1929 4 62 387 2171 2696 4 2 7021 265 3481 3 43 265 511 24 881 2291 7525 5918 157 32 1 2821 4 2 1182 105 78 8 57 2 179 608 3 786 83 539 29 9 4247 608 11 31 4392 756 228 46 109 4190 132 2 1928 4 423 727 2 1213 5175 4 59 4586 11 339 815 90 95 5306 1821 436 9 6 106 15 34 25 8468 6 963 959 31 4 21 3 3481 4 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47 4 9439 2 1671 4 7152 1326 633 3869 1543 184 3928 24 556 65 7 2 3848 3841 106 33 5357 655 95 6279 5160 35 130 6613 6210 42 20 223 183 2 526 4 417 19 2 1611 1285 22 1424 1757 5 1 31 1532 402 445 203 89 7 1 3841 4 1 270 31 240 804 3 10 224 1 5497 15 43 4 1 210 505 363 3 593 8 24 107 7 2 223 1425 13 6254 4252 289 43 2579 6090 516 1 443 608 1 168 7 1 429 22 1002 4730 3 51 22 43 2970 529 69 17 16 1 80 185 1 21 6 3685 1337 7 43 323 489 453 32 203 816 3 3 23 24 28 148 91 18 19 116 13 2361 299 190 26 32 1 644 1860 3 51 6 4057 4 633 1349 16 1 559 5 17 80 76 149 9 2 5 694 2086\n0\t15 1 233 11 292 27 190 26 4 7534 69 244 2925 25 1898 16 1 296 4027 3 76 182 25 663 372 16 2 968 35 54 1593 5 3494 32 28 7 2539 3644 1443 69 17 29 2372 3 6459 23 3717 69 2358 23 115 13 69 8 42 71 172 220 180 107 132 31 1135 2785 278 32 69 9 101 59 285 44 6113 1822 808 453 1068 1 49 378 4 2966 34 1 29 638 27 60 2805 1732 25 4520 242 5 552 1 1519 9085 44 1892 40 13 252 212 4061 12 4224 144 173 60 39 139 125 51 1594 44 766 140 1 1003 2082 4 25 1730 895 3 359 44 522 49 114 60 390 37 331 4 1537 5415 11 60 811 1 899 5 1443 130 26 30 9 568 325 115 13 8 159 1 638 718 226 2016 29 225 27 40 2 4 2278 3 102 188 25 379 88 87 15 13 1268 52 177 3259 69 23 4522 38 1506 101 30 1 103 3506 69 582 126 142 38 116 23 439 13 2902\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1209 6669 266 4070 1338 2822 3 205 912 22 1563 1792 3083 35 968 65 5 186 224 1 1968 16 1 701 4 1 1007 7 9 2213 4298 1563 1792 66 153 24 2 119 11 54 90 138 333 4 1 9586 4 246 102 1209 43 1976 17 9 6 20 28 4 1209 1293\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 39 219 9 18 16 1 330 387 3 381 10 14 78 14 1 74 290 10 6 2 46 931 3 304 141 15 53 121 3 84 231 7542 5487 3\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2049 1189 21 117 1001 2577 3239 9803 668 868 11 6 425 16 239 178 3 9627 121 6 1016 14 109 7 48 88 24 71 4345 3 2288 7 3556 7409 17 204 1 7006 927 6 3340 395 1569 6 1546 3 2038 14 13 5535 3 4195 61 30 9 461 385 15 218 723 28 4 1 102 2049 1729 1482 612 30 5253 3 1588 28 4 1 2049 1729 1482 117 5681 13 743 2627 1683\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36 50 878 6 72 22 648 38 34 85 5347 16 34 3299 3 34 9 6 59 574 4 104 11 8 128 24 7610 5 836 7 490 36 7 82 4350 104 6 43 232 4 6358 34 120 22 7 43 744 3 7537 37 42 806 5 365 6527 55 45 23 83 365 5322 1920 8 143 2786 49 8 74 219 141 73 8 12 38 1721 172 300 50 706 6 20 37 501 17 8 2178 48 8 118 650 32 9 232 4 484 3 9 6 28 52 84 7684 4 9 232 4 484 66 7 1124 85 22 17 51 6 2 28 184 7661 7 50 913 6 195 1258 5 99 490 41 95 82 4350 1540 72 83 24 37 257 537 22 6630 5 335 3 825 32 9 232 4 502 814 72 76 99 9 18 316 655 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2525 89 9 3257 301 1155 1 2115 1215 6 2 810 709 4311 5 197 101 13 252 1598 1378 440 5 26 211 3 1303 17 6 39 2 51 6 20 28 547 278 7 1 531 7434 6 2050 13 92 296 9268 603 442 3902 79 6 39 14 14 27 12 7 3984 13 7276 440 14 2 17 60 6 2 222 223 7 1 6131 16 9 574 4 1606 34 4 127 188 54 20 729 45 1 282 12 1494 41 211 41 6 1265 9311 4919 8917 77 94 9 3 37 78 1 3606 13 3440 52 548 188 68 9 224 1 925\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 230 4 9 18 12 2713 1895 278 12 46 14 27 262 2 46 3 8002 919 27 472 25 1514 5 1 46 1590 3 56 1066 1 1174 25 129 12 56 1470 8 63 64 512 765 1 263 16 9 18 3 20 101 350 14 942 7 1 185 14 3543 89 437 16 275 35 266 4176 267 2842 27 1789 142 2 686 280 15 48 384 5 26 25 221 3 8 258 336 1 178 7 66 1895 3 120 1 200 1 3317 8 15 1 4174 73 10 384 36 1862 12 9485 28 177 1895 123 5 70 295 32 10 513 15 25 388 8016 1224 3 97 82 188 27 123 5 359 122 32 517 38 1 2747 2914 25 15 25 19 384 36 31 1291 32 25 9 18 6 373 279 1 836\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 6587 6 31 386 32 11 6 676 394 269 4 5774 262 7 28 223 3167 4094 218 6422 601 4 1 7838 29 28 272 16 1 644 3501 98 15 4279 5 652 9 80 548 5 86 1303 714 1 206 12 2 5282 3 11 839 289 7 43 4 1 1839 5839 802 4 43 4 1 7063 11 151 9 28 4 1 80 4628 3407 4 1 1869 5 43 5167 8 284 28 4 1 7063 12 482 3 57 5 26 829 7 7 6180 4 1 1055 6419 4 1 290 48 2 7661 1604 9 80 1846 21 4 1 85 6 1492 19 8897 37 45 23 112 8 1379 23 3143 10 47\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 485 29 9 18 15 50 583 3253 3 8 247 1558 1 67 6 43 2841 8969 40 5 26 758 5 25 1007 30 31 9419 4188 69 7107 3 2 3840 3 8 83 175 5 995 5 798 1 1115 346 9748 1764 15 25 9 28 56 89 79 539 2 163 285 1 212 9929 13 2521 10 5609 10 6 211 3 10 6 2 15 116 537 36\n0\t823 1587 5 139 385 15 1947 87 23 36 49 2 119 1263 3206 4331 30 1 120 3 6 509 3 1419 95 232 4 98 9 6 2 18 16 5439 115 13 69 83 64 1027 8 59 419 10 2 358 73 936 8 1180 5 875 5758 285 1 212 682 13 17 45 23 338 9 18 98 23 191 24 71 2460 3 408 818 7 2 534 974 15 679 4 1032 516 1038 300 818 7 116 1007 429 41 7 2 6490 2613 1232 20 55 1 120 7 9 739 384 3 8 96 11 4987 65 1 212 13 300 23 36 9 21 73 4 42 334 7 6495 616 2994 436 101 4574 30 75 1 6495 67 40 32 5 48 10 6 1938 1232 14 18 10 213 11 10 153 1622 23 7 5 1 948 11 16 79 90 1 6543 37 9331 115 13 872 10 40 37 78 4 11 7427 230 38 110 1 1769 276 36 772 8003 3 8 83 134 11 297 89 7 1 1232 8 63 112 161 21 14 109 14 7956\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 174 84 18 8 57 1 53 5117 5 64 16 1 74 85 19 1 184 412 5 4627 4949 4617 155 7 1 518 1575 8 12 2 4633 9933 5 1 870 3 59 56 147 38 1 184 277 217 8 247 273 48 5 504 49 8 50 254 4710 319 5 64 9 7 2 1037 4 29 1 161 8 321 20 24 8 12 303 30 9 108 45 317 2 325 4 2360 2344 238 1889 2885 2677 104 3 617 107 9 141 87 37\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 101 2 325 4 978 203 484 8 159 9 7 50 388 2700 3 179 8 54 187 10 2 5764 195 11 180 107 10 8 555 10 655 58 536 1898 19 1 7724 8 70 50 18 16 3 8 230 11 8 143 70 50 180 107 43 91 978 203 104 7 50 387 898 145 2 325 4 949 17 9 12 39 31\n1\t6 11 33 39 230 37 3715 258 1 1618 3 807 20 5 134 11 154 454 6 2 41 2572 32 1852 17 4990 11 127 120 27 3 1 171 8351 230 1435 1619 3 8409 13 252 6 20 2 884 866 135 236 2 163 4 8823 3 36 1 817 158 188 83 198 4329 1279 37 7610 123 946 142 3 7 2065 3635 51 153 1030 5 26 95 1656 4 1 21 11 213 7023 2954 7 1 21 3 42 89 50 2 103 4 943 1524 1988 120 14 33 70 3295 77 1 1541 14 1 21 13 6 31 313 21 11 999 5 2 952 4 923 9080 7061 77 2 67 11 4856 4549 3 1 4 423 42 2 243 254 3922 5 359 3 42 2065 75 2360 999 5 1622 10 142 1882 7 2 1813 397 1353 24 1866 78 138 220 1 74 21 3 593 40 1866 5759 3 6566 9 21 153 4007 1 166 931 11 1 74 4361 17 2 163 7 86 9806 4887 3 1 56 1605 1 790 84 956 16 632 616\n0\t37 2337 49 8 2144 9 12 8 339 947 5 64 110 48 2 351 4 42 232 4 36 11 6904 30 116 430 1301 23 214 7 1 155 4 1 29 116 558 265 5504 101 2 254 3064 325 23 61 732 11 10 12 2 5044 17 308 23 455 10 10 726 631 144 127 3311 100 89 10 1732 2 148 9 305 6 59 1901 16 35 191 24 297 2854 40 1613 413 355 6 595 2325 240 17 386 3 10 1419 1 869 4 406 216 218 6 169 311 31 7706 916 42 3240 3 276 36 2 1465 135 17 10 12 1 240 59 45 23 449 5 1 2254 17 23 63 2198 1 4 43 4 25 6151 1512 3 218 6 5684 3644 8 173 320 9 28 29 218 6 5370 218 3346 3 1 6 39 908 4553 6 1 59 4211 28 7 1 197 927 2854 649 2 1577 901 15 25 113 916 8 57 5 99 9 28 375 1287 17 10 1225 364 68 358 1452 924 279 1 1245 4 2424 41 2512 1\n0\t4 1 1921 1830 69 12 1 2228 35 59 5235 200 15 482 2891 255 5 1056 473 25 1175 49 1 255 5 3092 40 31 11 300 27 130 357 288 16 2 6519 98 29 1 46 226 938 9836 10 3 6644 25 3887 14 2 8074 16 3129 8 143 365 144 33 114 2938 13 1601 7 399 10 12 46 4652 50 212 231 337 5 64 10 852 5 24 2 53 2655 17 1168 65 101 56 3837 38 2709 5 64 10 29 1 1913 1 716 22 1054 29 1726 1 505 591 4 4472 3 1582 8 2893 71 749 45 8 57 165 50 1191 19 28 4 137 5554 4 1 21 5 552 512 1 4967 13 150 96 1 59 53 177 5 209 32 1 18 6 11 42 1 330 1825 3911 3802 4 611 2 237 1914 21 5 9 6861 7 1 3241 4 1913 8 449 7460 1132 7 1 958 63 825 32 2279 7 75 5 20 4951 3 24 146 52 4673 3 8390 5 3051 55 45 10 6 248 7 2 1411 7008\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 28 4 1 3288 124 180 575 10 57 42 3243 2103 17 33 61 331 4 6434 42 5220 609 1710 5946 3 61 2 1935 5 1775 3 2 5527 4 157 80 4 199 63 1999 1467 3 8 63 134 15 2 7034 4 9810 11 8 12 1893 16 1312 323 1306 6327 9 6 2 267 11 6 2040 38 1549 3 1 97 1830 72 190 149 5275 7 385 1 699 3766 12 1442 14 3 34 4 1312 417 61 3965 17 3 37 78 1434 1 312 11 33 9559 11 7765 12 2 1235 506 6 2 892 6961 16 2 161 17 1 641 1387 12 11 27 405 5 26 7 112 2808 1571 4226 3 46 695 496 4869\n0\t4 611 23 63 6660 1 212 67 32 477 5 3158 13 3083 2026 421 2212 3881 3 6223 28 271 1237 34 1 2641 35 936 2108 5 70 47 2191 7 2924 4 160 140 34 3149 4 3881 2185 35 2200 1 212 177 196 8345 2191 371 15 25 1686 330 30 510 7 1 182 473 47 5 24 2 683 14 530 3033 2901 621 77 1 4209 4 44 94 101 2052 30 768 6446 6446 6446 6446 19 3 19 10 6970 115 13 659 698 236 103 302 5 2979 16 23 88 229 216 1 212 119 47 45 8 419 23 1 1048 29 2532 8 247 105 2081 142 1 1183 80 4 1 387 48 54 780 13 872 98 72 617 8593 1 8532 13 150 1023 15 2 817 11 55 193 51 22 531 43 1362 1008 55 4 2 91 108 1397 26 254 5 149 95 7 9 461 8 1331 8 419 10 358 47 4 394 16 43 327 1769 4067 17 207 592 13 777 71 43 85 220 2 21 89 79 17 9 28 407 1322\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 2 1693 29 2808 8 531 36 8131 17 9 28 8 24 5 134 12 2 91 1412 39 36 44 403 1 18 2412 200 1 11 28 93 20 28 44 53 502 12 111 828 1441 8746 12 452 60 400 79 47 3 29 1 769 11 12 7861 10 12 38 2051 35 255 5 44 4070 3298 60 2683 29 2 429 11 44 975 7265 3 44 486 29 15 31 3518 654 1282 6 1609 44 5558 5 875 2191 3 14 223 14 60 451 5 7240 60 173 5317 55 45 2051 440 5 564 1159 66 60 24 2 1021 185 7 110 49 1 5558 139 5 1 2089 51 37 33 173 139 5 6086 17 33 1405 676 10 34 1184 3 1282 5429 76 100 1288 3 44 5558 76 26 17 20 2927 33 24 5 2686 2681 37 1282 5429 63 875 5010 2056 8 449 9 45 10 112\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 1233 2493 274 7 38 2 6036 35 2 2062 15 2280 296 846 3 25 2833 1327 94 2 7169 27 4240 126 5 186 122 5 1 4659 608 17 188 70 47 4 13 499 418 109 1509 17 1108 3525 3 13 13 92 7697 733 1298 6 955 274 65 3 832 5 8245 31 4946 4 9906 3 2040 58 516 44 1204 28 164 16 1 1885 89 10 903 69 3 1 393 12 961 3 13 13 6 1 199 1807 19 1 17 27 181 2 103 1852 14 5 75 509 3 673 1 263 9905\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2199 2 846 8 149 124 9 91 253 10 77 397 2 528 5055 7 1 3374 771 38 8 12 523 138 584 68 9 7 91 505 91 2511 91 1177 3 49 1253 34 371 1 1122 6 528 3 900 8457 115 13 92 59 177 9 18 999 5 8612 6 1 6233 77 2721 62 290 35 54 1504 822 146 37 775 42 20 5687 5734 8516 3903 13 92 120 22 1289 3 509 15 58 5064 1 119 6 14 6553 14 31 5435 33 936 1180 5 201 2 156 46 1100 171 35 34 191 26 167 1770 16 216 41 1247 28 4 127 402 445 1532 104 76 473 47 5 26 1 398 9 263 130 24 71 314 5 427 2 5746 20 2 108 115 13 8420 3 226 17 20 2532 2 287 4 448 40 1 2838 5 564 413 3 415 1882 44 5524 197 2 1593 3 7 2 625 115 13 5827 9 3310 36 10 76 23 15 31\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 12 313 69 1 931 869 4 816 3 1796 453 758 2187 5 50 671 3 2421 5 50 683 69 9 21 289 199 11 51 6 128 449 7 1 1162 45 9 21 57 209 47 29 1 182 4 378 4 4044 996 54 407 24 71 29 225 2695 16 2 113 353 8947 373 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 578 1791 460 7 2 382 1214 901 4 1489 66 5842 7 15 1 3125 4 1 124 82 376 1 7357 1791 6 10 271 197 667 313 3301 43 1302 254 4116 5 25 692 3808 155 1 67 1026 1 3125 4 2 7357 7850 3 86 8952 94 101 1196 7 2 5123 30 257 950 3 2632 30 1 164 27 6 13 2718 889 2 5808 4 1653 1297 3 2471 14 72 917 1 3048 140 1297 2471 966 1 607 201 22 34 1195 15 2362 2379 47 14 2030 2503 1 15 31 93 14 2 8036 1367 2 46 362 1635 32 891 4166 14 31 1297 13 92 182 6 2 382 2 4730 7850 1112 5218 29 223 2552 7 3 200 2 6866 1337 7 43 53 161 1214 1357 8377 3 5008 10 151 16 2 1214 6610 7101\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 492 2608 40 56 100 71 2 53 7 1 1542 4713 1982 104 27 198 621 7 1 7227 4 25 84 737 27 460 14 2 6441 766 11 3019 65 2066 11 181 36 6 434 81 11 440 253 4208 15 1 13 3562 9 6 377 5 26 2 167 1985 3205 17 10 56 4624 38 154 1780 51 6 1985 1038 73 236 111 105 78 691 11 741 65 3 37 7011 1 1985 3008 49 10 34 196 37 91 18 89 7 1 74 334 11 482 4271 151 2 3282 47 4 323 91 121 3 6402 9 18 6 162 5 836 492 2608 440 253 2 953 17 741 65 1156 1 3080 52 68 1218\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 830 1 210 6310 32 2156 366 414 3 1341 249 7 28 1597 938 108 944 830 11 34 1 623 7 137 91 6310 6 5708 3 3546 15 8146 195 830 146 2297 268 8350 13 13 6648 195 139 64 1 2790 267 108 11 2419 23 39 57 76 291 36 1 1340 177 1218 6 1 625 210 18 180 117 575 51 61 2 156 772 8464 17 10 12 4068 55 45 1 4187 4 1 18 12 5 26 4153 10 12 105 1054 5 26 3883 13 92 59 302 145 20 2048 16 2721 50 85 133 9 12 275 422 8 118 969 110 27 1130 25 1686 7236 1857 1336 428 41 470 235 422 3 42 58 1197 2957\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 2 4644 8 192 133 10 19 1354 755 3 8 96 133 2756 2570 6 78 52 2072 48 653 5 1209 11 165 122 77 9 9649 464 505 46 509 119 3 464 3344 10 37 2007 42 695 42 1331 5 26 331 4 3423 17 10 52 2 1211 45 23 175 5 64 464 505 903 263 523 3 8283 640 841 9 18 689 45 8 12 1209 8 54 20 59 1006 16 50 32 50 8219 17 1473 1 7 1 7762 48 2 8302 42 20 55 1179 5 26 19 10 54 26 2 53 18 5 5939 23 8 258 112 1 185 106 1209 6 1337 9476 3 98 151 10 155 7 39 2 156 8 63 59 1854 11 9 12 428 30 1063 605 3320 4 1 7344 48 2 586\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 497 11 9 18 6 370 19 43 232 4 2 306 42 38 102 170 624 35 2 2260 164 16 8 83 64 106 1 4431 255 77 309 51 22 43 3 1102 7 1 108 3 1 102 624 309 1 2456 4 102 5 1 87 2 167 53 329 2243 43 4 10 6 39 2 4312 125 1 1 1324 20 501 3 42 20 42 39 56 56 8 467 9 177 6 15 1 42 20 56 91 45 23 36 11 426 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83 70 79 540 600 8 175 5 64 14 78 14 1 398 2678 8 3968 1705 1 2511 1024 12 8366 2 1916 1873 2310 17 38 44 2310 355 77 1 1191 4 31 3792 187 79 2 8479 1 4 46 167 1282 6268 129 12 31 2158 5 50 7396 1 120 61 20 29 34 4888 1 119 456 337 7293 8 365 86 59 249 2391 409 1 12 1282 6268 2872 6 377 5 26 2 84 1916 3 8 192 377 5 241 144 8 39 165 1 507 8 12 101 30 2 131 4 86 36 667 86 1233 5 19 116 379 600 17 15 275 4 6057 717 1233 20 610 1 166 177 600 17 8 96 23 81 70 50 2115 11 552 1 537 691 6 360 16 7774 600 8 7663 17 10 123 20 998 1793 7 2 2240 3280 38 2 1916 600 14 1 558 7010\n0\t152 2280 5 875 5758 285 1 21 3 8 24 100 57 11 465 15 1101 203 4121 13 418 47 15 2 8785 101 19 1 601 4 1 1611 15 31 9 178 12 314 7 2232 9 213 2 91 178 3 10 5093 116 1691 4 1 18 14 101 31 9188 1 398 594 4 1 18 6 37 1466 1 18 271 19 5 2 274 4 2 203 21 101 829 3 51 6 2 163 4 129 1273 285 34 127 168 17 1 120 7 1 18 22 37 1065 3 955 1171 116 796 418 5 1695 1 226 1099 269 4 1 18 662 37 91 17 128 88 24 71 78 828 1 840 7 1 18 12 1526 3 220 6795 314 80 4 1 840 168 7 2232 3956 51 12 162 147 675 1 182 4 1 18 114 597 2 327 1298 17 51 12 128 5 78 8399 3 1 2987 621 260 140 1 13 252 247 2 46 53 21 17 16 2 306 1101 203 6051 1920 9 18 6 2 191 24 220 10 6 46 8537 460\n0\t135 688 180 165 5 867 8 83 96 1643 1426 6 169 25 4120 8 118 9 76 90 79 15 80 4 1 82 1755 204 6756 20 17 8 96 2 163 4 1 4093 40 32 34 1 91 1949 11 337 183 1 21 243 68 1 697 538 4 10 7395 13 150 191 134 51 12 1677 774 14 78 3710 41 1043 14 420 71 466 5 8245 1 3710 51 12 801 89 122 478 36 1867 15 2 12 167 489 3 169 5025 17 20 7 333 16 14 1114 2 3663 4 1 21 14 420 5425 1 119 167 14 109 1078 34 1 7873 38 15 1 215 1616 21 404 11 337 778 93 14 174 2381 1 21 40 2 327 3762 176 5 194 2 147 1388 16 2 3520 803 13 92 1409 506 402 1746 1024 12 1 528 3 900 551 4 95 1303 1357 15 59 2 156 775 829 566 168 16 95 6141 13 150 24 5 26 3314 1024 8 54 243 99 9 316 68 3677 4 1163 23 1288 41 47 16 2 6621\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 284 7 1 11 12 3437 37 58 560 27 54 186 546 7 402 445 5203 36 1 6 39 1 398 238 376 5 2612 2 1758 238 460 4 1 6304 204 27 460 1 466 7 2 772 238 739 66 12 383 7 72 22 377 5 241 11 1 1972 6 6453 36 59 2 528 9799 54 751 67 6 1 28 4 82 5343 293 2495 53 259 196 2490 30 1 1655 316 5 87 2 5472 94 11 1655 451 5 70 3996 4 53 259 196 295 94 848 91 559 11 2 497 1 376 4 1 3515 1 103 282 1603 422 4 1 376 6 16 44 1069 28 376 16 1128 3470 6770 151 358 2682 59 16 1288 254 9374\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 12 3461 1527 49 8 219 1 88 359 132 449 3 2845 12 2713 37 97 81 59 474 38 48 33 175 600 3 38 34 1 188 33 83 24 409 3 33 22 132 346 188 2 147 606 409 180 107 81 7 2187 73 4 2 9 18 876 297 155 5 1 409 1 1212 4 1 641 17 37 731 188 7 151 257 3275 922 107 16 48 33 22 346 3 56 23 99 9 487 3 23 853 14 223 14 23 24 71 15 2135 9544 125 116 522 3 116 336 879 200 23 22 323 1 667 582 3 9014 1 323 40 2 147 8 118 76 64 9 3 8 175 5 1479 122 37 78 16 7520 132 623 15 79 23 8 118 23 1 3 652 78 112 3 2931 5 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 232 4 21 40 390 161 3341 30 944 1336 1947 1 212 177 6 6236 590 7 655 554 7 43 232 4 13 499 273 981 36 2 53 2 84 3322 1249 43 53 8508 3 43 423 589 38 48 88 24 5674 906 51 6 58 1284 2592 11 126 34 2193 36 51 12 7 218 184 28 4 137 104 11 124 36 9 461 23 182 65 1841 5 64 52 4 28 41 102 933 81 378 4 355 386 270 19 3622 1 9 2182 6 20 39 4127 42 1 263 153\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 219 9 18 2455 172 989 7 1404 15 50 113 633 4699 8 165 50 7920 3495 1789 47 37 8 143 230 46 3629 13 150 1168 65 5046 10 184 290 42 2 254 99 45 23 186 7 3110 11 10 1819 15 8230 5529 2128 1358 3 1 1809 254 1261 11 1819 15 536 7 2 2118 13 92 121 6 19 42 2796 3432 102 4 1 415 11 8 6468 1 80 376 3 207 2 53 1606 3619 5702 6 14 1257 3 1515 14 198 136 2257 9071 6 483 1053 3 1510 2 514 1663 1037 6 93 84 3 5552 25 13 677 22 97 119 1552 5 4062 32 3 90 10 31 240 1117 2751 1069 10 289 1 832 268 29 13 252 6 31 2107 108 20 97 124 36 9 28 24 209 65 7 1058 2008 10 130 90 23 38 97\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3903 17 650 7 1 356 11 76 10 26 125 183 8 473 8 159 9 14 2 518 366 7 38 3 179 10 54 100 714 36 42 138 68 162 2266 13 6 2 103 782 73 27 276 14 45 244 71 8985 30 2 276 14 45 444 65 34 1 304 115 13 777 2 426 4 2657 4300 324 4 8048 9 6 28 3960 11 130 100 24 71 1001 45 23 24 3 42 19 2156 2341 3 236 162 19 17 4 1 8368 7892 98 8 497 10 4152 656 17 851 352 23 45 9 6 116 59 1412 16 2815\n1\t36 82 2047 5899 5830 1 237 913 2 7010 67 15 31 1311 4 7754 205 4 66 309 47 2956 43 4 36 3 4 611 1 67 1148 5117 4135 6863 2356 3 1147 2203 5 6176 15 2 4 1997 4 1 33 1439 5 90 2 4194 1 8674 7 2 3203 9997 7 33 149 2095 561 1578 5 889 47 2028 5 19 3110 4 246 1 8310 34 26 10 15 1784 385 1 699 7 8494 270 1 6863 32 949 17 33 2303 126 155 3 522 577 1 2134 4659 5 3 25 413 7 1053 204 304 415 3 2 3 569 76 2222 47 1 4 34 13 32 357 5 8693 1 237 913 9061 3461 32 578 8438 950 7 1000 1103 3 6700 593 4 1 3348 1430 1471 1 861 32 962 4745 6395 6 20 248 95 30 1955 305 3 1 21 40 2 156 3917 3 2 27 4108 3064 1 902 1107 2709 19 16 870 3760 10 128 1373 146 4 31 3785 956 16 74 77 1 4092 286 2642 1214 234 4 2047 5899 3 578\n0\t105 223 543 59 802 106 23 80 4 1 85 70 1 507 11 1 2478 350 4 1 21 6 1156 2948 1 412 6 757 73 51 181 5 26 731 2628 160 926 17 23 481 64 450 51 6 3086 459 105 78 5034 7 1 141 37 127 956 3407 90 10 527 3 87 20 7622 5 115 13 150 36 89 104 3 9907 443 916 8 63 3258 1052 3 673 502 17 9 28 6 242 105 254 5 26 146 3 1082 7 50 1062 13 5 70 3638 2339 5 95 4 1 647 73 33 22 20 1066 47 109 2160 5 216 47 120 52 6 68 39 938 223 543 4067 29 225 15 9 274 4 13 150 560 704 43 4 1 20 37 53 121 6 664 5 1 263 3 206 41 664 5 1 1488 115 13 150 76 875 295 32 124 205 428 3 470 30 5043 23 16 273 7 1 3667 115 13 1118 31 761 21 55 16 275 35 54 26 942 7 11 185 4 2994 3 16 275 35 1019 85 7\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 18 38 253 2 108 132 104 190 26 2571 17 33 321 43 5 87 1943 10 114 20 780 737 8 192 1803 114 20 25 2894 831 114 25 3504 35 63 618 90 104 66 28 228 13 150 87 560 75 9 18 310 5 70 132 5955 5656 115 13 1 466 976 1651 1521 2 1392 6 14 14 2 8664 3 25 672 40 1 166 5290 1034 27 3908 1 466 633 651 40 31 4050 19 44 543 11 100 1 119 6 400 7 2126 15 436 28 625 1 18 740 1 18 312 191 26 52 6667 68 54 11 26 13 150 154 625 799 8 219 9 108 2 1243 15 1 1238 6 237 1914 1033 5 9 3625 1054 108 42 14 45 2 119 61 470 30 2097 13 43 82 382 6056 23 191 26 56\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 436 20 50 870 17 119 12 586 14 12 121 30 2943 2181 3 4968 3111 2470 93 384 3418 7 280 4 101 204 19 144 114 9 321 5 26 9 119 93 54 24 71 138 57 60 57 52 1451 16 2 6499 54 123 18 328 5 7952 20 1264\n1\t4662 71 2 923 430 16 172 3 98 49 8 455 10 57 146 5 87 15 246 39 107 10 1024 8 12 619 5 149 11 10 136 128 101 31 1135 264 426 4 18 68 1531 1 523 3 593 61 205 434 19 3 1 121 12 4675 139 5 6876 16 2061 1 212 1249 260 224 5 2375 35 12 59 723 7 1 1766 36 8 367 1024 9 18 6 169 264 32 1 1239 17 10 8 512 15 1 720 7 1511 3 915 729 5 1 233 11 394 172 24 2021 3 1 120 54 24 214 730 7 46 264 1650 220 1 74 21 7 9 1723 31 2231 1406 207 38 34 646 187 5 798 1 233 11 646 321 5 64 10 316 5 56 365 835 160 19 3 809 1839 7923 136 10 12 407 28 4 1 138 104 180 107 7 43 387 10 2440 36 97 3066 15 86 2526 14 10 784 11 6876 6 3759 2 957 195 3 1 21 844 23 646 26 273 5 751 50 9303 16 185 535 7\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 465 8 149 15 9 462 6 11 8 192 20 273 45 1 206 6 242 5 2230 2 718 41 108 2 3599 4 1 102 7435 39 153 216 3 11 844 1 212 177 4986 7 1 750 4 7293 9 6 52 37 14 1 206 40 1459 1 80 4 48 6 377 5 26 2267 200 257 3275 157 253 10 31 3784 3939 45 10 6 928 5 26 2 9 6 105 1065 3 7 463 1723 48 6 1 1700 41 1 859 66 1 206 6 242 5 3642 5 1 11 200 199 51 22 81 35 508 35 22 1774 5 26 11 51 22 97 1184 200 3070\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 100 159 9 18 318 8 969 1 2581 226 2463 8 12 3 6539 10 40 34 1 824 4 48 8 112 5 64 7 2 1045 441 7 2 347 41 19 1 1250 236 1055 9031 3 2 53 2876 13 3057 146 3 7067 133 2 7483 793 4 1 4 1 4929 3 13 150 96 42 2 191 2198 3 20 59 16\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1212 3 360 1376 22 1 3318 302 5 99 9 135 6 20 169 65 5 3459 15 113 124 17 10 6 128 3473 60 60 7176 44 3 1 164 11 60 9 21 6 39 125 31 594 7 2206 3 12 470 30 958 918 3712 2359 15 1 21 1047 1108 3 8075 9425 40 679 4 412 290 45 23 36 8 54\n0\t26 32 101 676 260 4 7302 5 101 237 8555 6910 11 34 9208 7 1 2152 3 1 940 1228 6 1168 3 11 1 147 2796 59 1396 22 3775 2886 184 1255 3 1 1838 11 9 8179 63 3183 34 8088 3 1055 922 15 6702 7 2 111 11 1 11 34 5842 15 1 199 3 6 2 53 1606 11 1 3978 5479 213 2 1798 3 3 11 72 130 24 57 2912 268 15 126 155 7 1 8197 3 2958 11 1 2495 4 1 199 54 3143 5 6481 2 7783 421 13 777 3936 3 1 131 59 8362 1 3214 11 10 114 30 242 5 2559 7 19 43 507 7 1 913 3 246 303 4779 249 1396 1299 86 49 10 12 1716 756 12 128 2 6174 986 3 5652 15 289 355 568 4129 37 2 4768 3475 38 589 15 2 3506 4 57 2 53 680 4 355 2 184 1754 1796 278 12 1111 66 6 28 4 1 156 1069 5011 622 3 85 40 620 1 568 7335 7 1 804 3 119 4 9 880\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 261 1887 11 578 7646 2376 6 1 35 6 6416 49 379 3352 11 60 6 3523 136 33 22 29 1 5528 398 5 1 8 219 9 18 19 2 388 11 8 57 6332 142 4 1 3252 49 8 219 9 178 8 179 8 4546 1 672 4 2376 49 1 1309 29 1 714 8 1 2581 98 1633 140 11 185 14 1 443 1789 155 3 1049 1 1876 4441 14 1 1308 49 276 65 3 649 122 11 33 22 160 5 24 2 9383 98 99 4441 41 673 224 1 178 49 1 443 289 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 679 4 1406 3 1269 494 90 9 2 46 53 108 1 1993 4 5 1 277 466 1804 380 1 67 2 163 52 1384 3 8291 591 1 733 189 1 972 3 1 170 3614 1 1188 2639 4 9 21 61 2161 5 187 1 1804 95 148 2328 41 66 6 248 1080 675 3899 2857 6 3794 7 3128 17 56 3372 7 9 21 14 1 2586 84 2964 189 1398 3 1238 19 727 3 39 1 260 1234 4 1343 3 2624 5 90 1 119 3 5836 2332 236 55 31 7910 868 3 304 2779 7754 373 425 16 31 3400 818 41 15 1 2802 9656 142 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 51 12 162 4 1548 7 1 215 141 9 28 12 55 1 233 11 8 55 214 10 5 760 12 332 2713 261 3228 5 9 21 40 5 26 298 19 37 48 12 1 67 48 12 15 1 12 1 545 377 5 70 1 67 427 7 1 74 723 269 4 1 135 2836 8 713 375 268 5 99 476 8 55 4863 2 635 32 275 5 70 43 635 367 10 12 2212 3 27 12 723 172 3176 8 149 11 815 43 1365 88 139 5 1 1673 1392 14 815 43 4 1 802 89 1 18 52 68 2 1493 135 11 228 26 5028 110 8 114 112 1 833 4923 53 177 10 12 59 2 10 12 279 110 8 1331 23 228 335 1 21 45 23 61 298 14 1 201 3 1176 54 24 5 1142 6 7010 6057 7\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 63 64 106 1 21 1350 61 160 15 476 17 33 100 56 2500 62 42 377 5 26 2 4367 5 9359 4047 5087 274 7 2 426 4 8193 661 85 17 831 10 735 386 7 86 10 153 24 11 3022 2694 11 9359 4047 22 587 1987 1 120 22 20 9525 3 1770 227 36 62 1101 1214 488 4636 127 102 6397 10 1419 1 623 4 2 1134 7 233 10 276 36 33 1576 5 90 2 686 158 17 655 1640 33 57 1155 1 1183 37 237 11 10 339 815 26 556 2556 906 33 93 1155 1 623 1183 30 2 2 212 91 8852\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 5 26 28 4 1 80 6097 7206 3 3276 117 5681 13 2120 1 519 1474 1469 35 1789 142 2 46 211 278 7 1 892 25 129 7 6 37 439 3 37 6 2 1152 220 1 804 6 2 360 3742 5 91 33 2183 47 4 126 49 33 165 5 1981 535 19 1\n0\t79 3 8 12 7782 50 522 517 1589 8 1130 319 316 19 2 2551 3 12 30 1 1203 421 1 265 12 39 7 1 540 546 4 1 2619 1 21 40 58 2481 48 33 22 1203 1049 33 61 997 7 2 4199 29 54 24 71 52 240 17 10 143 3109 1 121 247 1 210 180 117 107 1078 33 22 34 1903 3 9 6 631 62 74 302 8 12 945 12 1 119 89 58 1 477 358 413 159 34 4 1 2976 70 19 2 29 1 182 1521 59 755 282 6319 3 1 508 61 463 44 417 41 61 4237 145 20 273 73 10 12 46 955 35 1059 2 878 19 204 2506 9 6 2 306 41 60 2615 7 4237 3 5595 3 666 51 6 2 2590 3068 7 1 2265 9 18 12 12 58 798 7 9 18 38 10 101 2 306 24 100 2830 146 36 11 1454 17 192 20 667 42 497 45 261 6 942 7 2424 9 10 29 116 221 23 36 2399 1465 203 124 23 190 36\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 72 34 118 2 684 267 6 1 870 15 1 393 459 1 102 951 198 24 5 70 1413 518 7 1 957 634 8 12 242 5 842 47 75 9 76 6303 65 3 75 33 76 182 65 1413 2 2481 12 340 260 32 1 4691 17 468 100 853 10 318 1 714 42 2 641 17 10 3375 10 57 5 26 23 1203 2 163 4 1 692 9743 17 270 2 1684 3601 49 117 2623 8 338 34 1 7517 120 3 8 336 1 42 2 4 93 10 12 327 5 99 2 21 3 20 149 235 2973 7 110 814 45 23 36 2 53 161 2753 684 18 1104 98 9 6 16 1038\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 6 1537 5663 99 9 21 45 23 1674 175 5 785 3340 41 335 1 2273 4169 99 16 95 82 302 3 23 76 26 1558 10 130 26 1515 17 213 69 42 39 1 120 22 832 5 474 38 3 1 121 6 4878 1 584 740 1 21 22 93 3 8 12 852 2 7204 231 21 17 9 93 1525 58 1376 5 50 349 161 4111 10 6 1550 11 8 481 64 2 21 140 5 86 2582 17 9 28 165 1 138 4 205 4 13 3422 1 21 6 274 7 1955 268 10 40 1 176 3 230 4 2 772 3278 1827 21 89 285 1 1302 2251 51 213 55 227 7 1 111 4 304 4122 1769 3 861 5 5611 110 2 148 1152 73 14 2 21 9 6 31 5314 5\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 336 10 37 78 11 8 969 1 305 3 1 821 29 1 166 290 1 1300 189 1 171 2989 103 6 491 3 13 499 88 24 314 2 222 52 412 85 16 1 6569 1944 30 578 3 8543 12 3007 9434 6549 32 1 46 357 4 1 108 115 13 92 28 35 80 6324 79 3034 2065 1965 3 6125 3 560 12 14 1777 8 6313 122 7 3 34 422 180 107 122 1107 17 27 411 204 14 7 50 1912 8 88 20 24 122 372 2 5434 3413 132 14 1777 17 27 2788 3 8 112 110 3 8 112\n0\t2349 115 13 872 14 16 42 2 568 465 16 706 69 1 2484 40 43 53 1041 3 43 56 464 879 603 278 3 546 4 1 21 39 662 2484 29 399 155 77 1736 3 55 710 13 92 213 78 828 1 4220 83 1030 2255 1 17 260 125 10 69 43 4 1 1212 883 835 303 4 3676 7 1 7754 6850 1 4220 22 396 2 345 6981 954 1152 340 11 1 263 472 5 37 542 5 697 3 1 4220 105 291 5 39 3131 47 7 3955 115 13 3986 55 45 23 2825 47 1 7915 3 572 7329 3 473 1 7930 111 1095 3 2497 706 317 128 160 5 70 2 21 207 761 5 99 3 1876 8676 13 42 1933 3038 3559 10 228 24 71 446 2339 17 29 1756 719 69 35 63 820 10 16 11 13 4751 275 76 209 385 3 9 69 3 300 98 8 76 64 2 1719 69 17 16 944 8 39 173 187 52 68 28 376 5 146 180 59 71 446 5 820 133 38 1 74\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 59 6 9 21 2571 15 313 1411 505 17 93 240 10 12 89 29 1 182 4 1 3978 17 151 299 4 1 3978 8042 140 3 2086 1 67 6 274 285 1 362 663 4 1 3978 3 10 1389 1 516 1 3891 205 7 3283 3 9366 4 611 30 1 518 2804 3 362 1 1213 4 3978 1342 22 459 17 1 3 8042 6 128 2191 3 109 3 1578 16 43 34 9 1052 4934 2219 6 4823 7 2 211 3 548 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 12 202 5 79 11 9 21 54 26 2 17 8 12 1314 1558 246 71 2 4 616 16 1166 8 214 9 2388 16 9863 3 179 10 12 279 2 3812 1 567 156 6302 6580 5 3760 40 1 189 164 3 17 204 72 24 4271 4 537 372 7 2 136 2 3310 6 101 885 4281 977 49 1 3 2203 5 62 398 5716 1 3310 19 11 25 1992 226 366 57 31 214 59 30 140 44 136 12 101 5241 15 768 1 2931 6 4807 3 6 674 1390 4367 5 7 1579 2147 5 29 1 9507 4 5105 1 465 15 1 506 8696 6 11 94 1 567 6302 1 21 621 5307 55 652 79 1 522 4 40 4684 397 6822 2 5227 637 16 261 35 789 48 145 648 1395 8 333 1079 14 4948 17 308 33 22 473 1 506 8696 1294\n1\t2201 12 1727 247 2 1559 1 42 34 51 36 7 154 82 36 154 82 5123 36 110 66 8 343 12 2 7499 13 2136 57 1 972 2739 2201 648 38 75 1 7880 5 26 1074 5 1 5772 2739 35 24 1241 1 7880 3 89 52 5123 361 3 55 137 35 485 19 1311 11 1 958 4 7880 54 720 55 52 49 33 61 1578 5 1243 1 10 12 240 5 785 11 43 4 1 61 536 47 19 1 1170 102 269 183 1 2871 17 310 5 10 12 11 731 5 6073 98 51 12 747 3313 584 4 809 3 7181 758 47 1 113 3 1 7 10 12 8463 13 2719 5 734 94 394 172 4 283 9 158 8 1457 140 1 37 404 8 2 156 1100 2121 32 9 718 35 1168 65 15 6055 285 44 3 1943 45 20 16 137 6055 511 24 57 2 8 118 11 1705 1365 130 26 340 106 1365 6 151 79 45 261 422 32 2542 1443 54 99 9 4626 4541 825 479 20 14 14 33\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 1140 16 94 246 132 2 53 215 18 5 26 1417 65 30 436 25 210 18 7 6 3163 9 18 12 383 224 1722 30 586 121 4109 30 3 1034 11 9397 442 1306 896 43 168 190 24 71 39 2 103 91 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 18 6 2054 10 40 42 2103 1 265 168 22 1 113 4 7238 1 1077 6 2 306 2073 42 2 425 10 418 47 15 987 139 16 1 477 14 42 2 84 1433 788 3 46 186 79 15 299 2133 1 304 229 1 4639 177 5 19 9 212 1182 595 2048 959 4 1 1340 759 2233 10 46 5731 151 299 4 49 2281 5 9 8 54 1288 843 1248 145 2 3974 488 4 611 5481 306 3210 2 46 3271 393 16 9 382 1 18 3 1 6746 22 205 46 452 8 496 354 6073\n0\t946 5 760 2 158 8 504 5 230 36 8 192 133 43 574 4 89 682 13 7527 40 2 568 6 2 84 1651 3 12 514 7 9 135 1 82 81 7 10 61 1265 8 365 75 10 191 26 1816 3 5 333 2098 3 6035 14 1 1249 17 10 153 90 16 1321 1014 10 384 36 1 111 10 12 2859 27 12 242 5 187 97 4 1 168 2 52 240 3791 17 49 1 2511 640 3 121 22 51 5 905 2159 11 574 4 541 213 3 10 6 2 13 4804 19 2 1813 3994 10 57 4569 34 125 1 1888 7 1 74 178 4 34 4 137 514 7077 49 33 114 2 673 4 949 33 1478 5 5588 155 3 3194 39 2 103 4885 1 465 213 7 50 956 17 1339 7 1 2426 180 100 107 11 232 4 7 2 89 21 1448 98 51 12 1 9004 10 2397 36 33 143 87 95 66 190 26 1013 10 2397 36 1 1584 7 9 135 10 2397 36 1 2336 7 19 1\n1\t225 131 199 75 323 510 33 22 69 51 26 95 3 16 137 35 228 128 894 75 510 1 91 559 2140 33 3 7 2 323 510 5042 307 452 1397 138 1142 1286 1 1063 76 1337 7 2 3319 3225 4 2290 416 2383 39 5 90 273 11 1 4 1 91 559 6 5 13 92 161 259 35 4913 1 75 1 898 114 27 735 16 1 6421 27 191 24 71 5095 30 1 6919 38 1 3 6671 27 191 24 455 3 3079 19 1 2 212 658 4 3921 9896 186 2416 15 246 1 6269 4 355 80 4 1 810 2933 8451 142 50 1352 617 55 544 19 116 4077 5 6838 57 2 17 195 72 59 24 239 3 14 16 1671 4 127 559 100 291 5 175 5 564 9923 33 22 46 1688 38 5313 33 4294 11 33 22 372 2358 15 116 6972 3 37 778 115 13 9 1606 8 24 58 312 48 2310 27 12 19 49 27 114 110 420 812 5 96 1 263 6 9 91 73 4 2 402\n0\t2960 195 531 2203 7 3 100 139 774 17 406 926 2554 76 26 4613 15 2 153 291 5 24 71 28 4 294 627 9 101 2 2554 141 1215 432 15 1 2207 4 1 3721 3 5 186 25 17 246 107 25 5 43 4 137 23 87 24 5 4 2768 42 20 59 1 4456 4363 88 24 10 6 496 11 732 61 19 1 1969 5 62 1 204 90 23 773 8606 258 49 33 87 903 188 36 2062 19 1 7123 4 3 62 1191 49 2554 3 1215 475 70 10 6171 1 2281 4 9 21 40 3217 3 3071 2151 30 43 243 2984 35 2756 257 2594 3 6264 5 768 6880 6 5 134 11 1 84 1974 6615 196 25 282 3 3071 196 411 19 2 568 5542 9 153 582 1 2057 2872 32 4643 2 5 14 237 14 8 192 1 1800 2465 32 1 4363 100 17 1 6615 12 29 1 1009 1400 3644 2 294 5036 88 24 470 1 6615 164 15 3217 5036 3 2765 536 7 5732 3 5382 2772 14\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 370 19 1 4144 1903 3107 76 1110 3 1 7724 2892 5817 6 404 7 5 4154 1 3683 3 27 3165 29 1 2582 11 2 1753 15 2 1355 654 2978 6 1331 5 352 550 1 151 86 111 5 3522 8077 3 15 1 389 707 457 76 5817 3 2978 90 10 7 85 5 552 1 81 4 3522 428 30 8 96 27 130 24 2403 1 13 252 6 1 210 18 8 24 117 107 1 113 353 7 1 212 177 12 1 4781 4145 3 790 10 5729 2890 8392 8 192 8 5729 29 20 59 15 1 81 35 89 10 17 512 16 133 552 725 1 85 284 2 347 41 146 300 2 103 4849 11 130 26 52 13 4255 560 1 259 6 1140 16 1 3716 9 2819 40 2 163 4 3508 9 6 1 59 111 8 88 70 9 47 197 3301 52\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 508 24 3184 47 9 18 6 2 3790 4 2288 6003 16 1 3670 41 13 2718 34 118 94 283 3 7072 429 11 7190 6 28 4 1 80 2578 1678 7 1 74 1162 17 1031 3 7072 429 197 2 53 6079 4 1569 41 3022 2694 104 36 9 87 20 916 3 55 52 8541 197 2 547 263 2 18 76 20 216 3 51 6 162 5255 5487 41 179 7977 38 1 263 16 9 682 13 92 233 11 9 18 1196 2 342 4 289 75 91 1 598 21 1926 6 29 1 4457 8 179 1 7981 18 1926 12 167 91 29 1 799 17 831 1 598 1926 6 55 8350 13 252 18 6 37 91 8 511 55 1460 2424 10 32 1 13 4098 725 2 7359 3 187 9 18 2 2081\n1\t286 5 117 207 8 165 10 73 10 12 470 3 40 2 1412 2691 30 630 82 68 1557 4 50 32 19 1 7838 3 2 2661 249 2254 420 134 11 27 123 38 14 53 14 27 63 15 2 1480 11 6 3245 17 167 1 13 3 7491 1085 1807 5985 5 149 47 205 35 6 122 3 35 643 25 3 4104 65 31 1276 1426 28 3 6 16 1 261 320 25 1971 15 1 74 28 4 1 74 2479 2224 117 41 407 20 3244 25 244 165 5 205 47 1 148 7 1 3085 3 925 1 1238 36 4135 4 25 1081 113 493 3 1658 1807 3 128 301 7 1337 7 43 82 3085 3 1 254 5 751 14 1 3831 3 2118 120 3 23 24 2 1002 1446 1105 953 11 153 6423 14 298 14 10 3 4838 1 13 92 3469 427 6 38 1 113 111 5 1431 75 9 131 266 47 197 685 1 305 4081 5 79 384 52 7228 3 240 68 1 1 21 554 12 548 227 5 359 80\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 373 20 28 4 3 113 502 8 56 143 36 194 3 8 12 232 4 945 7 11 108 16 43 2650 10 384 36 10 12 2 18 11 33 256 371 56 7857 7 43 3558 10 165 37 509 11 8 57 5 884 890 110 10 143 24 95 41 95 1303 546 36 62 82 502\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1797 1 113 111 5 9988 79 7 2 21 6 5 1483 43 3487 5 4182 17 204 6 2 1045 267 1 392 4 1 5029 3 10 6 1 46 1292 4 2 346 658 4 3 439 4026 101 5225 14 374 7 3146 4099 6 83 26 6038 30 1 5534 11 73 10 181 36 2 9182 18 10 6 69 10 236 2 163 4 1503 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 4935 138 64 9 431 32 1 2353 73 45 23 357 5 99 10 95 1372 23 76 26 1852 14 5 48 6 2267 5 3223 13 11 6 1 3904 6 1544 7 31 5626 4084 6 4787 5 550 9174 433 80 4 25 4944 3 6 7 2 664 5 1 4612 2561 49 27 5 773 3904 7 1 1823 4 1 1199 7062 6 1136 5 38 1 59 1829 6 25 80 5730 493 35 128 2615 7 35 27 705 488 850 2056 27 153 24 95 27 6 7 2 1741 9015 16 1472 411 7 2 1189 234 106 27 123 24 3 6 16 3499 1943 1923 32 51 6 28 1355 842 35 2615 7 2 315 164 35 7 1 5626 864 6 93 2 6122 4 1 35 2615 27 6 32 13 191 875 306 5 297 27 2615 6 697 3933 3 20 70 30 1 35 6 7 233 1 2638 7294 6194 13 252 431 6 1169 3 3496 10 1745 2 1684 1298 32 1 692 574 4\n0\t232 4 2219 19 1 551 4 2849 11 7584 14 2 3961 40 1619 457 9386 3688 1 212 18 6 9068 331 4 1269 103 1117 4156 3 2326 36 2938 13 17 23 118 3070 42 128 2 91 108 10 270 52 68 1384 3 5970 5 90 2 53 128 321 5 187 1 410 2 302 5 359 2709 5837 146 5 796 1 545 227 5 152 474 38 34 1 1546 298 8384 380 199 4965 120 17 863 126 7 650 5410 1650 6553 32 82 484 3 153 291 5 26 712 126 5 90 95 232 4 2115 48 6 1 16 1632 4 1 1197 129 5760 11 5193 959 1 182 4 1 3124 144 6 11 55 7 9252 39 5 1197 13 677 6 28 211 178 11 40 5 87 15 2 1949 3 207 194 207 1 59 548 4457 1 344 4 1 18 6 39 6658 2326 3 1117 11 791 3097 59 16 1 3032 4 781 199 75 1831 705 17 58 729 48 50 21 3028 3908 10 270 52 68 8868 16 2 18 5 26 452\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 46 772 3 955 248 207 1 113 177 28 63 134 38 9 167 78 307 7 1 201 12 2163 16 62 276 3 20 62 121 10 12 46 1370 5 4578 13 5827 9 28 29 34 4484\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4985 48 5 13 5537 107 1 21 8 128 24 5 560 48 1 898 1 272 4 10 34 56 443 1047 7 1 29 28 8 57 5 176 295 32 1 2238 8 12 507 3628 2873 3 2873 3 23 70 1 13 5891 46 678 3263 29 97 11 130 1374 13 116 355 7 16 41 101 1390 5 99 194 41 116 2185 6 38 5 90 23 2756 1 429 41 98 995\n1\t1161 186 408 3 3038 30 2296 224 7 1 2 799 7 1 13 1701 1 4 1 2541 72 757 7 189 1 148 1 231 1873 15 1 1187 1332 5683 4 9 3 8836 5626 3933 66 7737 835 160 19 205 7 25 438 3 7 1 148 234 200 2693 13 3204 255 1 4410 272 7 1 94 1083 25 532 244 2860 60 2530 7 5 64 1157 29 13 7567 8611 3 1 113 427 4 1 63 23 785 7 8836 1561 27 3849 2 534 1863 974 3 498 19 2 7114 27 270 142 25 6296 3 271 5 1 27 440 5 17 27 45 27 61 242 5 134 146 155 5 17 339 3628 652 411 5 87 1943 20 13 4052 4920 224 3 276 47 25 2 822 11 40 533 1 431 195 181 5 637 5 122 32 1 82 601 4 1 13 42 1302 420 36 5 30 5546 1080 15 127 226 1512 3 1605 7 1749 31 931 4 31 13 47 4 9825 13 99 1 398 2351 23 149 47 48 1 822 705 42\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1219 9614 2 21 255 385 11 40 1 869 5 1 2867 2624 1 683 3 1388 1 46 6888 6 132 2 135 8 165 32 50 379 35 165 10 32 2 5849 35 6 7 1 21 4552 60 219 10 16 2 330 85 15 437 72 61 205 44 14 45 16 1 74 85 3456 13 6 2 2548 391 2776 5 2702 23 155 5 1 799 29 66 34 4 116 4772 544 605 1888 10 123 9 136 101 7619 2072 121 3 2216 14 2 206 87 20 369 23 176 295 32 1 1250 27 2 129 66 15 2 3264 6143 2102 17 3091 15 132 11 23 995 317 133 2 108 49 1 2018 285 1 609 8 159 50 379 7 2187 16 1 330 1425 13 858 2 157 8 2852 3 3 9 21 6 2 16 157 3 261 3078 62 221 923 3 10 6 2 3435 1688 1719 15 1 869 5 720\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 2124 1599 251 1647 15 46 3022 1277 1357 3 12 202 1279 65 16 30 1 85 11 218 6276 2701 2124 1599 12 103 52 68 2 756 1277 131 59 30 94 2 1173 4 1756 1166 2124 1599 40 475 881 155 5 25 300 244 71 881 16 105 223 9 1425 13 6609 151 1 74 1599 21 220 1862 89 1 1239 66 1605 1599 6 2 5151 129 308 805 20 1 327 1277 27 57 27 63 308 316 134 188 36 8855 90 50 3 56 467 110 6 2 306 2124 1599 4384 218 130 100 24 71 5681 13 47 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 526 4 81 22 4876 5 51 298 416 17 94 33 4688 33 2033 10 5 26 2 30 31 161 33 262 31 202 4790 7992 778 944 27 5135 5 70 1489 19 34 137 11 1977 122 30 34 1 3 3005 142 34 13 1222 21 15 31 6374 2472 10 65 2 4744 22 2 156 53 2137 43 243 1688 469 1025 877 4 3008 217 43 623 3 31 215 8649 13 16 1809 2504 2461 3536 893 4604 3 1358\n0\t402 445 217 10 3434 34 8 63 134 6 45 23 175 5 99 2 1194 1164 938 386 67 274 1135 740 2 5904 4381 98 6 16 1038 1 584 22 1070 5687 782 41 24 95 426 4 1560 41 2031 65 5 2357 246 367 11 10 123 24 2 156 327 168 217 43 2065 3372 140 19 882 217 840 2547 51 213 78 2267 7 2 3867 47 3754 2 522 217 2 8103 142 874 6 14 2637 14 10 13 6 345 691 11 495 5561 4315 1048 2653 91 1224 772 293 363 217 2255 855 397 7542 93 1008 28 4 1 210 3383 833 759 2233 3856 1 121 6 93 4 2 46 402 13 150 192 273 2 163 4 991 12 256 77 14 2 402 445 21 217 29 225 1 1132 713 37 8 76 187 1365 16 11 29 2532 17 11 128 153 582 79 32 517 42 2145 696 9082 124 36 3493 32 1 6346 1 4 203 1010 429 4 5113 217 3493 32 1 1 18 22 237 1914 5 37 99 28 4 137 3438\n1\t5 149 48 6 47 4 2364 68 1 81 200 768 1 21 1826 432 31 948 14 16 5107 7 2122 4 44 733 15 7 44 4003 1828 7 3 81 7 576 3 13 32 272 4 4706 1 21 6 93 107 32 44 272 4 4706 14 60 48 60 3 1 7869 5 1 948 6 243 17 1 1776 6 15 132 1546 474 3 1 1836 8083 37 1325 3 197 11 1 3813 799 6 728 1 8398 4723 286 20 59 727 17 93 44 733 15 14 1123 44 7905 543 3 672 3 6 1169 1202 14 205 1 1217 3 1410 2784 72 1942 1435 44 1514 30 1 644 182 5 149 44 334 7 1 234 52 13 6 1 30 66 1678 3 2628 22 2494 15 346 17 2846 11 100 390 9115 1 121 30 1 1681 647 3 1 240 3113 5 4735 59 14 2 9754 8 76 15 570 14 1421 15 226 7141 29 2 17 11 1285 5 1 1590 6 37 1447 11 1 1854 76 2469 7 2364 1534 68 44 911 76 26\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 118 180 71 77 10 223 183 10 726 2 2377 8 336 183 80 81 563 48 55 1306 3 39 37 23 118 145 20 38 369 79 134 4167 47 4 34 1 180 1586 2473 7 1 2743 6 30 237 28 4 1 1293 42 631 81 134 6706 295 6 1 1726 17 8 56 80 81 59 118 11 18 73 10 28 31 9 213 31 69 180 620 2879 3 2473 7 1 2743 5 81 59 117 107 6706 2408 3 33 1023 11 1 1967 102 22 1 1914 4 1 4681 420 100 179 11 235 88 1498 5 2879 318 8 475 159 2473 7 1 8 128 96 11 1 2546 6 1 138 4 1 4069 17 2473 7 1 2743 6 728 19 3459 15 5313 7 97 3178 2473 40 580 824 11 12 6515 7 463 1723 45 819 59 107 6706 2408 3 96 11 11 6 113 158 26 3023 5 24 116 990\n1\t18 16 1 80 1871 14 123 1 640 2 641 17 1930 28 16 34 5311 51 22 43 8130 2103 132 14 1 6394 8040 4393 3 278 14 6624 6 17 1070 4 127 922 22 105 3 22 237 32 227 5 2704 1 389 7509 13 150 54 134 218 6394 1 21 11 544 1 4848 7 6 1 113 4 1 215 3 11 181 5 26 1 80 986 3222 9 957 21 6 229 1 5118 4 1 8766 17 34 4 126 22 452 1031 32 1 957 4 1 2322 124 7 1 4848 89 94 747 29 225 218 7127 186 6 128 1 8 495 139 77 1733 38 48 8 96 4 1 9219 158 612 2290 172 94 62 74 628 220 180 459 2667 7 50 753 4 10 144 8 214 10 37 3 55 193 10 123 24 43 145 674 20 3420 245 154 2322 18 993 1 3794 7127 11 12 89 285 157 6 53 1033 16 1 212 1562 55 45 1 330 3 957 4186 239 1049 2 4040 7 538 94 1 28 11 2829 2420\n0\t5628 842 14 561 38 14 78 4431 14 11 6394 1706 32 7304 1 353 372 972 638 1220 8 6020 152 2 3248 7 95 1723 288 14 45 27 4318 27 88 149 2 4761 5 64 75 167 27 3 11 27 485 169 167 2835 27 88 2883 199 11 27 12 523 15 2 3 136 1181 19 11 7347 7 28 4 1 97 3860 30 1 1278 4 9 7 1 2411 802 4 638 523 25 67 27 784 5 26 1339 189 4423 3 172 2195 49 27 130 26 7 25 436 1 700 292 42 832 5 12 1 6915 189 638 3 14 27 2 957 379 7 4 448 30 1 6915 469 4 330 2866 136 33 61 29 10 10 6 2 560 33 143 2702 5 1 3 24 122 1917 3598 754 226 6029 10 339 24 89 188 78 527 3181 10 228 24 71 237 237 3606 13 677 22 1345 3949 4 346 3 1114 421 6364 533 9 4 4554 3 261 35 4011 10 1225 1 3693 4 4969 3 9282 5698 5 34 1637 4 62\n1\t290 98 27 3448 126 29 3374 5 1364 126 2780 1740 9548 11 27 63 2089 394 7 1053 3 6455 19 2 239 6 2484 31 4439 442 36 1 7 66 1 374 475 414 47 62 1153 4 2 536 13 614 819 117 2006 503 468 118 11 8 24 31 2499 8 343 36 2 6235 29 2 8849 11 25 17 8345 8728 6 1529 9846 36 2 1338 158 10 6 205 3 13 2215 6 93 2 5 3081 1 1 8728 191 26 30 1450 7 1993 1740 1834 2 534 27 40 31 13 93 40 2 7166 356 4 8546 15 132 27 4373 19 2598 3 9363 5 5410 13 614 23 61 5 9 18 1 111 374 87 62 23 76 64 11 10 6 2040 38 2251 3 333 1161 14 7 7591 59 5 825 2 5044 2869 7 1644 63 825 2 177 41 102 38 5039 32 8345 13 2595 1 182 4 1 158 8 12 49 102 7126 516 503 485 29 239 82 15 3 7870 12 2 84 1111 195 8 495 24 5 512 7 95\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 373 19 1 1307 4 50 401 394 7219 1 3079 16 1 1804 22 2856 3899 2857 3 492 3231 1996 22 205 609 14 1 7902 3 1 170 8504 17 1 148 6 1862 14 1 2195 2915 2101 9 18 6 2 84 231 18 73 10 63 26 3281 3 336 30 537 14 109 14 5706 2318 3 3 8323 5 90 154 1764 2150\n1\t0 0 0 0 0 0 6824 381 1618 821 37 8 12 3023 5 26 945 30 2453 3 1802 5220 340 1 3088 5970 4 1 215 245 1 21 590 47 5 26 46 109 248 3 2 514 6981 4 1 7508 3 4 1 13 499 407 1605 5 24 284 1 215 3864 183 956 1 135 8 830 1 1967 54 291 15 46 1164 767 791 5354 2193 197 2 2546 765 4 1 3864 5 352 5654 1 6199 13 777 491 5 64 75 1 21 424 340 11 10 12 383 7 7 1 2706 21 9032 2958 10 16 956 30 940 1607 7 5974 14 518 14 5198 2887 12 620 5 1607 7 2 2015 616 6486 1 2706 21 8531 7 1 518 6 20 311 3 10 1664 97 5692 4916 100 438 11 37 97 4 127 61 49 1 347 12 7561 7 69 33 61 128 1169 49 1 21 12 89 7 13 499 6 6483 3 5 99 1 7009 4 1 2706 121 8596 4 1 5531 2274 399 4161 5 1963 3 6174 3864 15 132 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 167 91 18 1664 162 7956 1 692 3 525 5 3624 16 2 17 1779 471 121 6 1092 845 4224 144 7157 4721 19 16 9 6 8254 6528 6064 4071 323 498 7 28 4 1 210 453 7 1058 2008 3766 2376 6 299 5 176 29 3 20 78 422 292 114 31 1614 1 293 363 61 1002 1201 3 1 429 554 12 3999 3 9612 618 33 173 3452 16 1 345 121 3 1 857 66 784 5 24 71 1256 371 29 1 226 6216 83 8360\n0\t15 9 135 6 20 2 21 38 31 4213 21 10 6 38 3899 3 59 3899 440 5 87 52 15 1 441 17 1082 463 73 76 20 1959 122 41 27 39 3155 11 51 213 227 5 1594 2 331 471 51 22 28 41 102 547 168 7 9 158 17 162 11 9 21 14 4628 41 114 20 932 2 129 11 1607 54 6020 4443 65 3410 41 2 2714 3390 15 608 27 1242 31 247 60 12 31 651 372 44 2 222 6077 3 19 1 436 8 1155 1 4943 4 9 158 17 48 151 124 36 9 216 6 1 4 307 4758 11 247 1 524 675 7 5269 2668 5 634 36 2 1238 14 2 8813 3 286 285 1 389 931 1146 8 339 352 17 96 11 12 48 12 36 5 137 19 1 4994 60 143 90 9 77 2 158 60 7399 10 77 44 221 2675 3 73 4 10 8 481 1379 9 5 261 608 32 28 5 174 608 1899 1027 115 13 5005 47 4 9143 2022 11 856 178 11 79\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2224 34 107 9 67 2 3302 1287 23 63 64 239 119 473 588 2 4890 1695 1 733 189 1 532 3 752 6 111 105 1316 3 2308 5 1369 16 3735 8525 278 6 2188 2516 4967 532 7 9908 9858 130 24 71 89 16 1 3657 7306\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75 63 132 53 171 36 1922 3 88 24 71 602 7 132 322 132 2 177 1785 8 173 70 110 10 12 1853 46 262 2266 43 4 1 156 914 1 716 22 1230 3 332 20 8 495 771 52 38 9 141 571 16 28 103 391 4 2952 2521 87 20 139 64 194 10 76 26 2 351 4 85 3 1686\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1104 41 12 1784 152 29 1 769 14 27 13 75 1 39 6276 4 15 313 3 13 872 75 4497 89 1784 291 5 25 221 13 252 6 2 360 803 13 150 24 396 179 11 3189 6 20 27 1123 911 5 932 1482 7 257 66 2182 2 1112 15 1 4908 66 59 789 5 131 199 48 72 321 5 96 3 6378 154 991 5 21 3189 3753 56 5 26 10 6 20 31 806 177 5 1405\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5446 8 159 1 18 3 50 1327 553 79 10 12 1 210 18 444 117 220 8 179 10 12 167 489 14 109 10 165 79 517 69 66 21 12 1 210 21 8 57 117 107 3 9 12 1 59 21 11 310 5 6933 13 9848 10 12 2 342 4 172 220 180 107 10 17 8 320 1 2069 4405 2503 9372 14 1383 164 487 9372 153 87 46 1 678 934 15 1 49 10 54 229 26 5 760 2 68 5 4158 43 5 90 194 17 50 497 6 11 33 214 1 14 2 1126 16 43 1983 2218 41 1 585 338 5 309 15 25 147 3 75 114 10 1319 3 49 1 4145 140 1 4 1 1618 98 1 166 802 125 3 125 69 276 46 13 5827 9 18 69 10 6 323\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 1 74 4 127 124 5 1288 1894 11 180 107 3 42 407 20 89 79 175 5 64 95 4 1 180 455 29 225 2 342 4 126 22 7967 8 83 1374 9 247 464 17 10 143 56 87 78 16 437 116 1048 5017 9563 231 7 232 4 1689 1916 217 1508 8983 1 231 2925 1 4399 217 1527 5 2524 5340 106 33 3884 5 652 408 2135 1875 2623 1 113 185 4 9 12 1 1119 3504 35 4 448 5237 2 493 125 32 416 11 100 1441 4 448 72 24 2 8355 2700 7 1 5422 3 37 19 3 37 778 9 231 6 426 4 36 1 324 4 1 479 1858 217 33 87 91 188 17 33 3195 139 58 6888 8 64 2 163 4 746 32 81 11 338 490 3 8 497 8 83 118 48 8 17 8 214 10 5 26 46 1669 217 8 511 354 10 5 4792 3181 843 47 4 5579\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 888 4759 2636 13 858 8 219 1 74 350 4 2737 14 5038 8 241 10 12 89 7 73 10 262 36 2 1590 1889 988 32 1 3818 2804 409 10 418 15 2 701 3 6806 303 16 1 410 5 1786 6 27 2737 41 1438 3 76 27 139 5 2023 15 25 6844 1785 1786 600 17 2507 140 1 21 289 86 362 6304 30 1573 77 2 1786 2755 196 3 8389 30 44 1786 574 21 66 741 7 2 903 2352 600 3 2737 14 5038 40 31 55 52 903 393 7 9 1451 6047 13 252 6 2 46 345 953 17 1 80 177 38 10 6 11 10 12 470 30 3598 9146 1 166 164 35 758 199 1 34 85 382 3544 974 589 2042 2048\n1\t2133 65 15 82 81 385 1 699 8 336 1 178 15 1 106 42 46 1262 2 177 5 1283 149 2 1610 684 222 2228 7 1 8407 4 2 684 572 15 132 304 911 29 25 41 15 1 7590 8864 3 75 1 4042 32 3 22 11 72 228 17 56 22 283 126 87 10 34 1 136 8938 3 1 871 72 63 64 75 22 101 6979 459 16 62 1217 14 10 190 466 142 77 1 13 4253 861 3 2 263 15 31 16 1574 2485 3 2 306 356 4 48 10 907 5 24 2 799 4 618 14 10 190 466 77 146 1129 809 5 134 23 173 1283 26 3638 5 7689 45 59 16 364 68 4539 5516 3 26 11 78 52 3638 68 2 1136 9 6 436 17 236 52 5 10 68 39 656 42 2 46 158 3 28 11 76 24 79 3039 155 5 10 28 178 66 6 205 978 3 609 6 49 1 102 4 126 22 648 1 7 1044 4 239 82 62 228 139 5 1 4971 4699\n0\t0 0 0 0 0 0 0 0 0 0 208 997 9 18 29 2 346 3115 1525 30 1144 4 50 9862 72 61 11 9 54 26 1 4 3 9 18 52 68 13 3969 266 2 170 164 25 1185 895 94 16 2 48 1 5277 149 47 14 1 18 6 11 12 5360 6263 5 2 562 404 3 2 562 11 27 196 15 94 2 526 122 16 2 13 252 18 6 1941 19 4961 97 6647 28 178 1008 1 526 30 66 6 229 1 113 111 8 63 1431 110 136 145 273 11 9 12 928 5 26 7 43 744 14 80 1374 42 2069 80 22 248 7 531 125 43 3 2 63 4 13 92 505 136 20 213 489 1497 9 6 28 4 816 74 2842 3 4714 3 7053 1433 61 128 2 349 41 102 125 1 1 607 1249 136 20 46 8375 128 874 3194 547 13 1 1936 7 1 233 11 10 12 2 4743 18 11 289 1 4 279 2 793 45 23 3 116 417 22 3759 2 91 18\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1559 2473 6 2 360 665 4 2 135 10 2027 1087 795 15 323 837 3 807 9026 3935 266 2 1126 1898 197 2 7 25 27 151 2 536 403 1164 4109 3 4309 5 2 147 707 49 27 196 1120 4 25 28 1925 27 762 2 1212 30 95 3220 35 6 1302 3 3420 60 40 7074 5 5090 5 37 60 40 20 6957 16 375 2491 17 1 102 186 46 109 5 239 82 3 921 2 6499 25 1126 1343 122 5 597 1159 37 157 6 17 51 6 2 306 6952 189 1 4069 55 45 33 414 7 2 30 1 13 6 28 4 1 84 171 4 1 4055 1250 25 120 22 491 3 72 63 64 25 3462 19 25 4141 253 122 806 5 3658 2159 55 45 72 241 27 6 8606 170 6 84 7 703 44 129 6 46 1316 17 237 32 3454 253 44 34 1 52 13 824 1483 9526 183 8597 3 6576\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 174 203 18 5 734 5 1 3 18 1307 9706 1 3 1352 118 48 23 114 226 10 407 213 14 53 14 137 104 11 8 24 3893 2354 17 42 138 68 80 4 1 11 310 47 94 1 74 1 135 28 4 137 124 12 1 2134 89 3773 1909 66 8 1595 6 2 138 21 68 11 628 17 42 20 667 1264 1 7995 2 170 487 6 3 30 2 342 4 25 9966 29 1 477 4 1 135 98 1 21 1047 172 406 49 137 9966 22 34 2260 1095 98 479 1459 142 1 506 6 5 26 1 170 487 195 34 2260 65 288 16 5677 17 6 10 5619 41 88 10 26 1956 40 31 1805 201 66 1680 8111 638 2899 3 33 87 48 33 63 15 1 1097 2109 17 2 6707 263 153 56 87 126 95 8097 51 22 43 782 529 4245 8858 115 13 5934 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 39 219 1 1115 5392 164 16 1 330 387 3 10 12 55 52 509 68 49 8 74 219 110 8 83 365 144 10 40 390 132 2 49 10 6 37 4320 1 567 178 276 49 1 2253 5804 5716 1 4 813 3 1225 16 44 4512 500 94 9 34 11 56 629 6 1 5392 164 200 43 1692 3 1864 246 3139 4 25 157 14 31 1 3452 6 169 501 3 25 5392 543 276 1002 3735 51 6 2 797 178 106 27 3448 2 522 7 2 3 10 318 10 4838 2 106 10 621 19 6126 3 236 20 78 5 5472 725 125 1024 80 168 22 383 7 4806 3 23 173 56 64 48 6 5855 51 213 78 2565 29 225 7 1 305 8 5399 115 13 1 1115 5392 164 6 20 11 84 29 513 646 187 10 4249 16 86 5502 3608 17 207 38 110 45 23 175 2 306 1280 3210 99 1 2483\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 438 145 2 325 4 1 870 17 24 59 937 107 9 21 16 1 74 290 75 180 4861 10 34 9 85 6 2 560 5 437 5 79 9 6 2 138 21 98 1 78 42 2 84 1214 15 313 121 3 2 84 471 1 305 6 7 315 3 482 15 1485 5785 45 23 36 4047 41 578 1791 9 21 6 20 5 26\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 2 464 803 13 499 418 322 15 1 462 4393 17 207 38 14 53 14 10 13 92 18 6 146 38 7376 1573 77 2837 3 160 19 2 848 1 121 213 37 78 3652 17 1 263 6 1445 3 1 21 213 55 782 480 1 3971 13 499 56 6 491 11 43 526 371 9 4830 4 3160 3 179 10 54 90 2 53 803 13 499 213 2 53 135 42 3 8 4254 23 20 5 351 2 938 4 116 157 19 1027 28 47 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 47 4 1992 41 39 83 118 48 6 36 7 1955 17 1 11 8 284 12 237 52 6810 3 198 181 5 24 2 60 531 314 508 5 87 44 2124 216 3 52 396 68 20 43 426 4 1839 2146 12 4758 39 49 23 96 23 24 10 34 2242 47 60 1622 1 125 116 671 3 196 44 3293 13 252 18 12 1002 904 19 1 3140 1 121 247 591 3 1 238 12 8 12 56 288 16 146 52 385 1 456 4 1403 347 66 6 78 5151 68 235 7 9 682 13 1380 106 3879 238 12 240 29 984 17 52 396 68 20 1 67 3 119 12 673 41 874 12 20 5703 1509 3 12 2160 444 1 282 23 112 5 17 7 9 441 8 39 143 474 463\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 56 381 9 108 1 121 30 1 1217 171 12 1111 292 8 114 149 1 250 635 2 103 17 27 3091 411 46 109 16 101 2 147 3694 1 623 6 46 7589 3 20 7 116 543 36 80 368 267 8856 4623 1 9913 45 23 24 2 386 838 8585 3 22 314 5 1 687 368 691 23 229 511 36 9 14 10 6 2 222 9341 8 1459 10 65 19 3 8 24 5 134 1 1854 538 6 401 229 28 4 1 138 288 180 107 37 4506 1 4081 61 797 854 33 7982 169 2 3947 17 207 229 2 53 177 14 80 4 1 7982 168 143 56 734 2357\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 1071 52 68 2 3441 17 145 685 10 2 28 73 37 97 325 1161 24 340 10 2 394 5864 7 10 355 2 1020 186 10 77 1 401 2226 5929 1067 42 20 11 84 86 20 11 565 86 2 439 1280 382 15 37 97 325 1161 42 2348 127 22 1 2514 35 229 128 539 29 3795 9791 716 3 128 134 3490 4627 578 58 729 75 161 41 761 10 8 9225 246 5 785 3490 1455 4 7336 19 9 2017 32 195 32 5385 242 5 26 695 86 1865 119 930 121 966 86 1976 5 112 2 91 141 17 23 128 3305 920 86 2 91 682 13 16 1 9857 993 294 45 23 2942 64 2 148\n1\t2537 98 959 1 182 49 1856 919 369 10 34 47 5 2 8 12 37 2415 5736 16 849 11 8 152 179 4 43 4 1 464 188 11 8 114 7 50 500 8 3 15 25 1223 3 2842 114 20 734 20 78 5 1 135 8 179 4 35 262 2823 14 2 5588 35 114 162 5 328 5 352 1 5717 25 1725 262 30 1171 36 2 5226 200 47 4 6002 15 44 221 922 197 2502 3 122 16 44 8 88 20 56 230 1140 16 127 3468 193 4997 713 5 359 44 1892 2193 60 12 205 114 20 934 15 62 922 33 56 114 162 16 1 21 3 61 400 2348 1681 280 14 1 7547 1220 1462 16 27 12 1 59 129 11 1049 5226 95 3726 8 343 25 280 130 24 71 1 2274 61 39 403 48 33 343 12 7433 3 245 8 56 338 1 393 37 1878 8 152 3 4555 2187 4 8 343 452 1 61 2 231 702 8 152 405 5 26 2 185 4 9 1499 33 61 37\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 327 5 64 19 2229 17 144 64 9 7 4055 163 4 941 3 1948 45 23 36 4459 265 41 661 941 9 88 26 116 1992 108 17 1286 28 3 350 594 6 39 105 223 290 45 23 36 5 64 1206 7 4055 412 42 138 5 64 2855 108 33 118 75 5 4635 4039 605 1206 5 223 108 206 789 75 5 1743 1206 32 161 2751 3 85 5 85 42 176 56 452 17 49 1 18 6 28 3 594 10 130 26 29 225 80 4 85 1470 51 22 97 232 4 632 20 297 6 2223 98 157 3 9 21 6 20 105\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4010 35 758 1 8 112 110 285 42 549 10 726 2 1 6504 726 544 253 2 4 25 56 211 3 81 563 35 5300 1306 9 6 49 157 12 53 3 4736 9 6 28 4 1 84 296 10 12 2318 3 198 758 408 2 53 3 9 6 106 8 32 1 8 338 1 226 156 36 408 49 537 70 972 51 22 2 163 52 23 63 87 15 1 1471 9 6 144 8 4000 88 24 881 78 406 68 10 1322 17 2799 8 419 10 31 7101 73 4 86 211 67 2131 3 73 4 2215\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74 4 399 8 143 694 224 5 99 1 4 2 4366 251 5 64 2 3346 1642 200 7 6225 9 6 75 2 1408 6366 431 13 615 2 41 146 1 456 4 11 3 451 5 186 2 2912 176 17 10 228 2410 1 13 27 3426 2 77 1 3 3 1 70 13 659 34 4 1 767 8 24 1586 34 4 1 922 22 2267 73 4 439 850 3 114 23 64 1 4265 4 28 431 781 3 8 12 3759 5 99 11 431 17 94 11 8 400 419 65 19 6366 3 590 5 249 260 1294 209 9 6 376 13 4804 48 12 15 1 7 28 2541 57 2 17 57 5 597 10 516 16 43 439 2560 1976 4275 103 1230 5 652 23 3838 7 1032 17 1976 11 12 48 8 179 318 33 303 10 19 2 3063 2 481 597 7 2 75 1230 22 127 13 3178 39 667 45 6366 6 19 83 99\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 74 159 9 7 1 18 856 49 10 310 827 3 1 3216 12 56 77 1 18 66 89 1 839 34 1 52 1434 9 6 2 84 201 4 647 97 184 1487 7 194 2 156 4 66 61 20 14 4546 98 14 33 22 1705 8 96 42 2 84 312 45 23 917 95 4 127 1041 41 24 336 126 7 82 484 5 734 10 5 116 219 5929 43 4 1 168 152 3006 79 4 1 574 4 267 14 7 1 41 55 1 232 4 1164 1073 15 43 56 1730 3312 32 127 2810 1488 1 18 114 2 84 329 29 685 23 43 436 55 46 5222 77 1 1615 4 2 6881\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 480 167 91 4900 8 39 57 5 187 9 21 2 139 608 10 4361 94 399 376 5671 1069 1639 82 14 2 968 4 1416 207 279 3698 322 14 3137 1563 3869 6 254 5 1 1128 3470 6 401 3266 276 14 885 14 3541 3 4 1 344 4 1 3834 3 5819 997 50 1128 7 13 5384 45 28 6 5 2095 9 18 30 95 82 888 10 6 31 1409 1 67 6 4250 1 238 5862 3 1 293 363 2724 4224 206 9832 3 1840 7560 24 340 199 2 201 3 103 9809 13 614 6 1 59 302 317 283 9 628 23 54 26 138 142 133 447 3 358 6259\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 40 556 2 163 4 10 12 30 1396 49 10 310 47 3 12 16 6726 3163 1 177 8 83 96 81 70 6 11 42 20 928 5 26 31 918 4 2 141 42 39 43 609 238 29 86 1293 884 7077 1911 1043 3 2 84 1077 69 10 123 610 48 10 666 19 1 896 16 261 35 1143 2588 86 2 1011 9573 10 40 2 3 1572 20 995 8 96 1397 26 254 4425 5 149 2 138 238 141 3 4681 2 138 18 29 98 316 300 207 39\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 336 9 251 49 10 12 19 374 8 143 241 11 51 12 2 1982 3601 142 283 14 1 215 131 1168 7 3 9 131 310 7 74 4 34 8 336 1 312 4 2549 1204 1982 5 3183 1004 19 25 2487 10 12 31 240 2821 5 62 6499 8 93 338 1 1993 4 1542 6307 7 1 1125 3 308 316 36 42 9 131 57 84 67 2131 84 847 98 1 885 672 216 3 4 448 609 4480 1 59 177 11 8 143 36 12 11 12 49 10 12 7 1 199 10 54 396 549 767 7 2 1194 938 4185 8 39 555 43 4 1 767 88 26 9950 50 430 431 4 95 1982 3267 255 7 9 1125 3 42 404 1 7 50 1062 14 53 45 20 138 98 4 3 790 2 327 917 1095 385 15 2997 9 131 89 50 2113 46\n1\t12 1 2276 8219 2 18 420 107 19 305 2 1679 8 636 8 57 5 139 3 841 10 689 1 1122 88 26 1991 385 1 166 456 14 292 1 102 124 22 162 9002 1933 205 124 2686 32 1813 11 22 3038 140 491 4480 3527 6 2 326 7 1 157 4 2 164 35 40 162 7 25 157 29 34 3 6 1893 5 1006 1360 1389 38 411 3 25 4820 364 36 79 6 38 2 164 35 1524 2495 411 5 26 1506 244 198 599 28 111 41 3152 6050 25 157 15 103 188 37 11 27 76 100 24 5 934 15 1 184 3449 1 1626 3 1154 4 9 21 22 627 3 8 63 348 32 133 10 11 20 78 40 1241 220 8 12 1758 1095 170 413 128 24 1 166 922 33 198 3702 1 846 6343 65 127 922 3 1626 7 1 661 1529 1784 647 3 40 126 87 301 1202 2508 14 237 14 2445 616 5655 9 190 20 26 425 32 2 1813 17 32 31 1703 628 10 6 46 4619\n0\t19 3459 15 298 416 589 35 96 11 22 160 8224 1 59 334 33 76 26 160 6 155 5 1000 29 34 8 88 96 4 136 8 12 133 9 12 75 10 152 165 1001 8 1266 43 152 179 11 9 804 12 8266 215 3 98 43 9799 15 319 3114 7 1 263 37 78 11 27 636 5 43 2559 125 15 1 2670 11 27 12 160 5 90 2 1110 19 110 171 61 1249 2840 61 3624 3249 61 1182 1684 47 4 1712 2461 2217 416 61 758 7 3 9 544 5 186 13 677 515 61 2 5587 4 188 11 8 1595 38 9 899 17 1 28 177 1 5461 79 1 12 1 4 1948 154 625 938 4 9 739 12 51 12 20 2 625 1173 7 1948 3 29 268 10 12 1795 2302 68 1 1765 20 11 10 89 23 773 43 9589 119 272 41 13 2609 10 12 2780 72 636 5 99 9378 10 12 36 2037 2 8144 7476 98 9549 5 2 23 339 70 102 52 2738 104 7 1422 4\n1\t17 8 337 155 5 1 305 3 195 44 494 981 52 598 68 296 5 503 17 60 12 4528 16 44 280 15 11 28 4727 115 13 777 2 67 4 102 327 81 35 22 355 1136 5 2846 2750 17 35 149 62 1898 7 28 2877 10 190 26 31 2422 441 17 35 666 104 22 34 377 5 309 36 10 6 58 52 3206 68 95 4 1 4772 11 22 154 594 19 1 207 144 72 99 949 5 1291 32 1 4 3229 536 16 2 386 85 3 2645 1 234 4 1 120 19 1 1250 8 179 127 171 114 2 53 329 4 194 17 3255 145 2 3680 259 35 2187 65 83 70 79 540 1024 10 40 5 26 2 3680 1146 3 9 18 57 877 4 13 150 187 10 59 73 145 2084 50 3829 16 11 286 6085 1500 2313 18 11 8 118 76 209 385 43 1393 45 23 64 10 6525 14 588 65 19 1 18 1354 41 3657 484 41 90 2 1367 5 99 110 8 96 468 36 110\n0\t8 830 11 16 239 4 126 5 149 62 12 2 46 832 3649 340 1 233 11 51 12 31 491 551 4 129 1273 3 4737 6625 292 1 119 6 31 240 628 1 18 19 1 212 6 37 775 2878 470 3 2619 11 278 14 31 353 54 2686 3 26 30 110 1 111 7 66 10 3691 15 893 3303 3 1 4481 3 4096 4 4505 8 2564 61 1 102 250 1318 144 9 21 1200 7 4101 42 8659 14 28 2381 40 4139 3 8 54 1 18 6 202 1258 5 2967 340 42 1616 4239 8 2172 458 41 29 225 449 11 2022 1 5886 51 22 43 148 7478 19 1 3005 974 8509 747 16 199 17 45 207 306 98 1 171 63 186 7 11 3 230 595 53 38 62 2447 3 85 5 132 2 850 4789 3 174 4318 16 39 308 8 88 139 64 31 296 18 66 2403 1 1547 17 1529 3832 132 14 1 28 7 9 21 106 1 250 120 1121 2633 1 913 601 15 2133 488 82 132\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 39 284 1 119 3469 3 10 6 1 210 28 8 24 117 10 123 20 87 2028 5 9 1115 108 16 31 665 4 2 53 284 1 29 382 1441 9 12 28 4 50 430 104 14 2 170 3049 50 975 3 8 339 947 318 154 4564 49 72 88 64 10 19 4798 10 6 28 4 1 113 2839 104 4 42 290 10 6 28 4 137 84 3156 11 1 212 231 63 836 1 1151 6 2843 3 1 67 427 6 240 3 1 759 22 1051 33 83 90 104 36 9 3041 53 121 3 20 125 1 5037 3813 3 4970 2376 22 29 62 1726 385 15 97 82 84 129\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 28 4 1 113 104 180 117 575 10 40 46 53 121 30 3 307 1939 373 9160 113 1663 1 861 6 2355 1 1043 6 38 14 501 3 1680 2 84 215 868 11 56 2589 7 15 1 1646 4 1 108 1 397 2217 6 93 2 3608 7 48 151 9 18 4155 5 503 10 270 2 163 5 1620 17 1 885 861 5148 3700 9 373 2 113 572 7 50 1533\n0\t7 16 1 130 24 71 2695 16 113 353 378 4 5557 3127 13 92 158 1873 15 3691 15 1 2125 525 5 925 189 2125 1481 3 873 13 12 533 1 108 25 866 32 1830 5 2 6776 28 5193 49 27 615 112 15 31 2119 3248 25 1676 3 771 89 10 832 5 64 75 27 88 132 147 13 7704 1 2207 789 144 808 3 2071 607 5371 16 62 2263 162 38 463 278 12 1381 5956 1635 19 1 412 12 386 3 197 78 4 235 101 2769 19 44 2482 2 138 278 7 9 21 12 248 30 35 114 2068 14 112 3208 60 1049 84 1900 14 1 35 214 112 15 1 5557 1223 44 543 12 15 1 60 57 16 2123 44 435 3 711 7 234 392 60 1640 11 44 1206 12 20 44 111 47 4 9 3052 11 60 12 13 1133 337 32 1 532 7 218 764 5 1 532 4 112 796 29 2808 44 278 371 15 1 28 4 12 8188 7522 14 74 1549 1049 1384 3 8759 7 44\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 7514 16 174 4138 5347 9 85 19 1 82 601 4 1 68 10 1 1246 15 1396 3 2543 36 1 1081 1815 2368 300 73 10 12 2 793 4 1443 1029 15 2515 11 216 98 3 11 24 20 3412 530 395 5001 1554 29 1 477 6 13 4751 49 10 12 612 184 2965 104 3 137 4229 5328 29 1 2543 2967 384 45 10 57 71 612 2 349 183 300 7 54 24 384 8158 2 46 240 21 46 1325 383 15 43 609 3 168 7 36 1 7 1 8325 1 4 1 3063 3630 3 1 7510 11 1 951 61 102 4136 33 61 304 17 1183 6 1056 138 68 10 54 24 71 37 78 138 15 2305 300 3233 9337 41 2 170 2899 1 927 6 152 169 211 3 4608 29 984 23 118 1 111 1 456 22 13 743 46 9712 4 1 518 7223 373 279 2 176 16 1 1667 3 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 58 2116 238 1772 42 78 5 91 5 26 28 164 2530 1918 174 15 2 2863 1653 1 82 164 28 2873 3 1 164 15 1 2974 1473 869 197 37 78 14 2 1788 32 1 4 466 224 19 550 497 66 28 6 1 53 2678 132 6 140 3 2086 20 2 53 238 2493 20 2 53 1794 20 2 53 141 1082 19 34 3444 15 42 201 4 3641 8945 160 140 1 202 14 193 33 118 479 253 2 148 20 1901 16 13 3382\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 2 573 91 8 173 241 34 1 4202 11 40 71 19 9 3161 1335 16 2 148 8 303 1 856 183 1 769 5418 30 75 91 1 593 3 6016 4 11 18 3 5 284 11 2635 51 6 1387 3 864 7 9 21 49 34 10 6 7 864 6 2 525 29 3769 1 125 1 671 4 1755 3 30 101 772 3 13 2595 225 9 21 1049 79 308 3 16 34 11 1 8064 1672 40 390 2 528 1399 3 11 101 620 204 6 52 2 6101 4 91 3164 68 235 9809 13 5827 29 34 4484 468 175 116 85 8886 8 118 8 1322\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 544 7140 98 8362 959 1 245 1 233 11 1 18 2183 125 102 5309 3437 11 29 86 1 330 185 56 165 1476 17 98 419 111 5 2 311 1526 1905 372 2358 7 1 1581 88 10 70 95 52 5262 3 195 8 785 2827 16 2 696 18 370 19 1 8 495 90 95 84 3117 5 4317 77 11 28 45 42 235 36 218\n1\t0 0 0 0 0 0 3089 1786 1 9183 4 34 3 42 20 323 2 586 141 17 2 163 4 188 88 24 71 828 10 57 2 163 4 1267 6822 262 47 30 46 964 3 42 20 31 3275 11 171 63 309 47 132 2 280 3 24 10 26 595 2959 51 61 43 546 11 61 2 103 1669 3 9530 17 8 511 134 11 1 389 18 12 2444 308 23 96 38 458 4392 147 3 253 146 47 4 194 10 167 6550 3 78 4266 5 70 171 35 63 2474 137 3955 17 1 59 184 465 8 57 15 1 18 12 11 80 4 1 171 35 114 309 1 1126 81 4 7915 61 650 822 20 46 2905 7 1084 508 35 1121 822 28 4 1 161 2809 11 128 114 1 1084 88 24 1459 2 8115 2806 49 10 310 5 480 97 22 1666 4025 171 11 485 774 482 7 2 2509 88 24 71 52 179 171 114 2 84 2340 1 263 88 24 138 2878 3 790 8 214 1 453 61 46\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5069 2 6476 3957 4 1 7990 138 60 10 6 332 491 11 9 1847 3890 16 2 331 3077 982 145 273 80 4 1 81 35 219 9 930 61 7 62 7223 3 5662 3 39 7403 7 73 33 57 162 138 5 1690 41 311 2299 86 376 32 1 161 2097 1209 880 1209 35 59 57 2 547 895 7 1 100 12 78 4 31 353 29 34 4433 25 221 3 27 12 459 237 105 161 5 309 2 1207 49 1 251 1647 7 27 276 332 1980 14 2 1122 4 172 4 4380 4966 3 1423 25 148 157 585 2 1974 353 35 40 1550 71 7 235 11 143 3970 25 2002 266 25 585 7 1\n0\t0 0 0 45 23 89 2 870 739 7 1 518 23 676 57 2 680 10 54 463 26 274 7966 41 7 2 1641 72 100 165 31 7966 1641 5539 16 701 30 4527 1855 5036 741 65 19 469 260 6291 1 3250 711 7623 17 9 6 1 225 4 922 14 8733 1655 1807 341 3250 8507 3586 35 93 6 712 1 1641 14 2 9814 2435 16 2 147 9 6 1 59 739 470 285 25 3163 16 2 259 35 40 1066 15 3159 4 7896 10 784 1 59 879 27 1459 65 95 32 61 1 1101 3449 1432 10 6 402 2039 17 11 173 1335 1 6476 1363 41 6457 8415 7 1 74 1194 1452 5 25 8710 114 90 10 1056 2637 3 27 557 7 2 892 2801 178 466 621 3072 285 2 1641 9722 59 5 38 2 633 35 276 36 2 52 6 547 14 1 466 3 69 9640 2 56 91 69 380 10 25 34 14 1 1881 3250 1 182 270 334 29 7279 430 8404 612 9 19 305 14 1028 469 2168\n0\t1 182 4 2 1 54 33 74 90 115 13 1627 56 977 42 20 11 91 4 2 158 480 1 402 970 1020 10 3990 7199 19 2494 8441 28 63 64 1 7 1 109 6979 2503 57 286 5 2210 77 2 53 1651 3 6 202 7 25 361 6 11 56 25 221 72 320 122 52 16 25 161 164 871 7 1 3 1 67 9411 2 163 4 86 1048 1626 32 1 1338 1824 1188 21 7 66 6279 626 794 1539 1123 5 1364 1 112 4 794 13 614 23 175 148 1028 104 3431 66 51 22 420 357 15 4 1 7886 2117 15 2 4 1 536 1060 226 164 19 3 86 102 7 1 661 1592 4 9244 581 51 22 1060 3 1 663 3 86 5409 14 109 14 4961 4961 508 105 2143 5 13 252 28 6 20 56 2 1028 135 5147 9 18 19 86 221 42 52 4 2 4697 14 132 10 4031 2 103 2255 43 4 1735 4803 1493 203 104 4 1 518 9408 3 362 37 646 187 10 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 2 5137 9 40 165 5 26 28 2787 45 20 131 19 249 260 1705 145 38 14 14 10 17 9 131 153 55 70 2 9235 47 4 437 48 23 96 4 5248 14 2 3138 40 332 162 5 87 15 704 41 20 468 36 9 391 4 930 880 1 22 20 211 29 513 16 1632 7 2 178 49 5248 40 25 19 25 5 1464 51 6 162 211 38 656 6 10 55 377 5 26 1 6568 11 61 620 7 1 2584 914 65 5 1 983 10 1095 61 3288 68 1 131 2105 3 207 39 5882 3037 9 123 20 55 70 1050 16 2 330 4207 10 1513 55 24 57 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 133 9 316 94 2 4 97 172 3 7739 1 6219 10 12 655 86 215 4227 8 192 619 29 75 109 10 40 1525 960 28 4 1 1318 16 86 3285 12 11 28 3157 39 179 10 12 125 930 3 2 1186 28 12 945 11 10 114 20 131 1 331 107 195 10 6 935 11 12 459 1997 4 3 4574 30 1 1541 4 7201 16 720 3 2 551 4 95 935 2419 16 1 3667 1 466 2204 22 313 3 10 6 11 33 472 37 78 16 1 644 8457 33 22 4528 3 3642 1080 1 943 3 7019 2 1011 4621 7 8 1844 508 16 1 125 4468 19 1 1465 8554 1102 29 1 357 17 24 5 134 11 32 51 19 7 9 6 28 4 1 971 80 304 288 1482 3 27 407 165 1 46 113 47 4 1 164 89 3 1574 1608 3 8 617 55 1505 1 496 7510 1905\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 345 7279 196 2069 4518 664 5 2 3549 4564 326 4061 881 46 1328 3984 890 2 3000 3 137 602 2989 587 5 203 596 16 44 498 7 217 1 226 203 4215 7 1 7992 22 16 1 7104 394 349 298 416 4704 20 1997 11 2 3544 506 6 3814 47 7 1 9239 8209 416 3 47 16 13 9 28 65 5 101 2 2737 8 563 42 2 91 135 10 40 34 1 8029 4 461 286 236 39 146 38 10 11 151 79 230 4565 5 99 10 32 85 5 85 15 4868 7 145 55 1774 5 6330 1 332 4489 393 8 87 24 5 867 8 8 497 8 36 10 73 10 40 2 299 1190 38 10 3 43 167 797 13 9088 3470 2022 1 217 6581 205 70 5329 115 13 9088 3470 2022 1 2 2270 383 4 2414 29 1 357 4 1 21 115 13 1226 3737 115 13 305 9551 8036 1625 16 9 4692 3 4669 16 50 1909 1198 2124 1206\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 322 94 223 8333 94 283 2 156 3502 19 1 2226 6267 18 529 8 57 223 5 64 9 135 1 119 12 3373 304 2726 6186 2872 1047 77 31 2138 2000 207 2 5 4359 1 9600 6 2 224 260 1119 158 55 45 42 2 222 7533 42 2 1541 4 1 7723 3 8048 1 121 6 4275 3 51 22 43 323 1577 2126 132 14 1 2304 178 15 1 434 435 3 1 287 7 1 750 4 1 2306 9959 3 1094 1 393 6 2 1021 1541 4 81 3 42 2 46 9508 2940 17 7 1 769 8 323 241 2 84 2814 28 4 50 4148 32 1 55 45 42 162 3461 1766 42 5532 3 483 229 28 4 50 34 85 7219\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 88 24 71 2 53 431 17 8 311 57 5 473 10 1294 1 598 5571 12 586 5 836 24 1 1350 117 274 2749 7 5980 2546 5 29 225 274 2749 7 8 83 96 95 598 454 24 57 132 31 1778 1251 32 2 267 6966 4 1 4453 93 15 1 358 706 109 8 83 96 95 706 487 40 4278 5355 41 2147 36 95 706 635 7 1 622 4 1 598 3961 220 2523 962 3 1228 5 296 21 51 6 52 68 755 913 7 1 9036 7190 3 5182 1468 52 68 755 8 63 3258 43 17 9 12 37 91 8 88 20 99 110 1473 485 797\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 336 9 505 1831 3140 84 857 15 148 652 10 155 41 90 10 1492 773 449 1932 56 3372 7 9 880 8 36 1 312 4 1721 10 56 151 356 7 9 2896 1162 3996 725 4 137 439 864 289 3 187 9 131 2 330 680 786 652 10 155 20 5 49 10 337 142 1 9232 8 219 7 4947 3 338 75 8 88 99 10 15 4301 7 698 4947 4573 151 10 806 5 335 289 49 23 773 126 19 2796 22 1 663 4 2174 9387 23 175 5 652 10 2366 8 192\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 12 2 325 4 1 347 117 220 957 37 4 448 8 57 219 1 141 284 1 5409 3 98 219 1 756 880 10 12 2 53 131 7 2105 3 195 14 31 1217 8 128 335 1 880 50 59 148 465 15 10 12 11 10 143 917 1 1533 1 74 85 8 159 194 8 12 37 945 11 8 590 10 1294 17 207 588 32 2 282 35 7265 2 74 1993 4 1 1533 17 94 85 8 636 5 187 10 2 328 316 3 4603 1 347 4 36 48 23 24 5 87 15 1 1599 9851 8 214 1 251 10 12 2843 757 3 146 11 307 88 9369 39 1 260 1234 267 5 359 307 6034 10 6 323 2843 3\n0\t11 359 101 36 481 1173 306 1549 1500 41 55 39 43 716 456 11 229 179 12 211 3 636 5 256 7 1 431 943 4352 13 92 131 6 4229 29 374 1186 68 3623 73 10 2027 3860 1650 3 11 80 374 4 50 717 511 474 1987 1 129 672 5808 3084 71 138 854 40 31 483 5973 672 14 123 981 36 31 161 7677 1508 981 36 43 41 562 131 672 6 105 4257 5 478 6419 7 9 131 7595 7 43 3428 2492 155 3 1630 4014 3 791 6 1831 3 6 2212 1230 3 6843 4 517 14 6 9798 1916 181 5 182 65 403 1034 1508 13 92 131 6 105 237 32 864 5 70 50 3041 300 14 2 1186 3474 8 88 64 52 4 1 623 7 9 983 17 14 8 2323 1095 10 56 3567 3176 3 20 5 478 41 17 1 131 123 24 11 8042 11 151 23 175 5 3497 8789 959 1 807 2 131 36 9 39 40 5 26 116 45 23 118 48 8 9605 45 1375 10 676\n0\t1641 37 11 27 63 552 25 6442 1 1383 196 1578 5 2963 1 334 1095 3 307 1208 5 149 2 111 3335 13 677 22 2 163 4 2637 168 106 81 22 643 30 101 41 1789 140 1641 236 93 2 1119 178 3 178 1295 1 166 7997 1604 1 80 1577 178 6 7 1 362 185 4 1 158 49 2 3860 3881 3998 2 13 92 250 3501 4 9 21 6 28 178 959 1 714 1 4128 1696 3 374 22 242 5 90 62 111 5 1 59 1291 62 3048 951 126 5 2 223 19 28 601 51 6 2 2282 3 19 1 82 22 1641 3174 4 1909 1028 1191 2500 3171 62 1773 3 2121 14 33 1369 6210 236 93 2 156 53 168 4 1 382 4 1713 19 434 3 1713 7416 28 259 5 13 3616 279 133 45 317 9845 1 1028 870 14 10 40 37 97 1028 2515 279 42 2060 31 19 48 20 5 87 49 253 2 1028 108 17 45 317 147 5 1028 2092 3 175 2 148 23 130 176\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 6 1634 1 67 3009 2 287 242 5 149 47 48 40 653 5 44 6641 1 21 3525 15 86 32 5 15 824 4 203 1256 7 16 53 1 21 40 2 46 1852 16 665 15 5025 333 4 3139 197 127 77 1 471 1 119 6 775 9462 3 1 8313 89 10 832 5 189 35 12 35 3 1 185 33 61 43 3097 7 97 581 17 1 178 106 1 250 2689 2 7286 3421 5 25 2293 98 6022 5 139 818 5213 106 27 666 60 76 149 2 7310 1 1653 60 57 758 15 1159 5 637 1 8619 12 105 254 5 8245 43 4 1 861 6 46 72 61 133 19 2 249 37 75 261 15 2 4693 274 88 216 47 48 12 2267 7 1 168 556 7 202 528 4806 6 660 437 1952 2 9069\n1\t301 6231 1645 5582 669 57 100 455 4 122 318 262 31 862 53 914 27 12 37 8037 3 8571 79 3 50 493 11 159 1 18 15 79 400 1310 7 112 15 2693 13 35 8 114 36 183 44 7 9604 3 89 79 335 44 55 1129 44 121 12 4807 8 339 55 348 11 60 12 1 1300 189 44 3 1645 5582 12 483 501 1 1084 12 169 13 7789 3 3233 8515 61 1381 7789 14 11 1040 8 1309 37 254 29 11 28 178 106 255 19 1 50 3429 8255 8515 262 2 547 5104 8 338 44 14 1 532 7 17 60 57 1 260 1234 4 3842 3 708 533 1 108 115 13 3616 10 12 211 2266 20 29 8571 1 293 363 1121 400 5025 17 49 33 4416 33 61 1 3916 32 7262 3 745 61 93 115 13 150 400 354 9 18 5 261 35 1143 1189 104 36 1 2879 4770 41 55 2207 4 1 10 721 50 796 1 389 85 3 8 76 26 2512 1 305 49 10 255 8274\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 1 210 18 8 24 117 6870 6352 88 20 634 29 7238 60 57 58 1900 10 12 34 4379 4379 4379 36 60 12 765 47 4 2 509 3864 1533 1 1831 635 3 1 635 35 1371 2135 6153 1487 1121 279 61 37 761 10 5461 79 117 1 3475 10 12 38 43 4296 177 41 1508 143 131 227 1900 38 25 752 6515 1 613 2457 3 1508 367 1 166 177 36 723 1287 10 12 39 2444 297 12 2494 111 5 1264 130 24 57 146 91 780 5 44 16 101 37 9605 8 39 1130 2 799 7 50 157 30 133 9 1540\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 2490 47 8605 19 1 9129 48 2 2 439 1054 525 29 2 1 259 33 165 16 1 466 12 400 904 3 49 599 114 2 485 36 27 12 2306 137 25 1 5953 27 3807 61 1111 193 8 230 1 353 19 126 105 1878 14 51 12 162 5703 38 25 121 29 513 1 2547 2020 296 1297 2646 40 5 26 28 4 1 80 254 3521 117 575 771 38 2 60 38 308 16 1 389 158 3 8 96 11 6 73 60 57 4470 1 447 178 12 1054 854 33 190 14 109 24 620 6297 45 23 63 4062 3230 13 4 399 3 9 6 2 184 3838 812 4 8424 19 1 1203 3 1 305 1 5640 2300 7 797 3056 3495 19 1 2678 33 61 1677 5 26 107 7 1 135\n1\t5 174 569 5 25 2823 262 30 8400 6 2 3004 35 276 3 1630 2 27 7043 47 15 2 658 4 82 3004 33 209 77 569 5 2843 10 65 4954 390 17 7257 62 53 33 22 152 599 6993 2227 16 2128 10 270 2 136 16 81 5 1236 926 3 7 2 8297 9372 3 4346 40 5 186 19 25 972 6442 236 31 240 7673 1190 5 9 141 66 151 10 240 1 4346 6 202 105 7 9 280 608 27 1304 37 496 4 25 2823 27 481 4 122 9403 1 510 244 3732 2562 27 475 255 5 25 9680 608 25 4472 3259 6 4769 383 7 1 155 217 27 411 6 4464 65 7 25 2613 8400 6 1535 14 27 95 3 55 9451 3 2492 5 170 752 5047 6127 5 122 14 55 136 244 5215 44 2894 727 34 1 136 4346 3 24 53 1300 15 239 1715 6757 151 31 240 1635 14 2 282 35 3726 9 6 2 53 2032 238 141 45 23 63 149 9869 10 6 20 1492 19 305 286\n0\t64 1 2579 4 2 8107 3266 2216 6 2 1114 465 15 1 108 94 517 8 57 71 133 16 9283 1507 8 1640 420 59 71 133 31 6708 293 363 662 17 1 206 181 5 26 650 3909 227 5 216 200 11 13 92 4903 2 2715 4051 976 11 181 5 26 2621 2 4 816 4711 3 1490 1385 79 650 4 2385 129 7 1 633 2594 123 31 1233 2340 17 123 20 992 7 2799 236 2 280 7 737 3 1 651 123 48 60 63 15 194 17 10 153 291 36 1264 51 6 2 583 353 11 1 206 173 1088 45 244 41 39 7627 115 13 14 8 1113 6 1 210 465 15 9 141 318 2 570 1112 15 1 91 259 11 54 90 2 869 10 6 1213 3 318 1 570 178 66 6 377 5 26 1005 17 311 3654 15 154 91 443 3979 3 7630 11 63 26 7 38 4465 13 743 547 99 19 1 9591 2297 4290 18 162 11 6 160 5 652 23 2366 3 162 5 751 19 86\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 20 91 17 93 20 37 84 6767 135 5816 2093 6 2 937 612 32 1641 2190 94 1573 224 31 1857 32 1 1036 5 1622 1 329 2085 27 8484 8860 2093 3 521 149 730 8418 30 4527 14 109 14 7 2 56 3309 112 8806 15 7990 4937 1327 206 863 1 1428 866 1108 3 236 29 225 28 313 3 1688 606 1430 980 1295 217 193 31 1101 2675 80 4 1 1673 784 5 24 71 248 7 2093 6 4275 20 39 10 7 31 6019 1 4183 380 2 1442 1663 1 265 6 30 3 1 861 6 30 1 84 35 1180 5 216 15 307 7 4302 4024 3 5 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 593 7045 31 1286 1683 1165 67 11 460 1 7 31 313 280 14 2 287 35 5231 31 526 7 8993 39 2546 5 1 873 7889 4 3 15 2 1081 2150 35 6 195 770 16 9764 154 222 4 589 3 890 1729 4 1 67 6 3154 2570 30 206 3609 3358 120 820 128 5088 29 239 82 16 223 1507 667 4516 8139 5097 998 2681 19 2121 781 4042 111 1534 68 33 321 2339 3640 1 166 2671 6 72 118 162 38 1 120 14 1 67 792 3 22 340 103 147 1799 14 1 67 59 5494 3 7445 802 4 2791 35 83 35 5334 140 1414 5866 17 1555 58 1649 931 2 46 2460 135\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 382 119 17 2 299 203 18 16 408 18 1433 56 840 7 1 330 185 9 18 1501 11 23 63 90 146 299 15 2 346 3550 8 449 11 1 206 76 90 174 28\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 332 3833 1260 4 1 360 2598 1533 3243 3 6695 2106 43 782 3558 3 2 601 67 38 1 1845 1841 5 2702 1 487 295 5 1383 416 5 70 122 47 4 1 111 151 9 400 6695 16 1 374 35 76 80 1458 175 5 64 10 73 4 1 347 83 351 116 2128 116 387 41 116 53\n0\t1397 100 70 295 15 403 146 36 656 125 204 6023 24 3376 217 45 1 114 146 36 11 51 54 26 2 2377 32 34 137 217 154 6854 54 5723 1 1 1641 3085 217 1 1655 16 297 33 57 217 3771 13 3371 2 377 445 4 38 1641 152 57 2 167 7117 445 292 10 153 56 176 36 10 19 2238 273 236 2 547 201 217 1 156 293 363 11 22 2403 22 53 17 790 42 274 7 1 166 1972 15 1953 1641 12 152 383 7 2 148 1296 1641 37 10 407 276 1 4552 1 121 6 9338 1641 1501 11 519 368 460 20 59 24 28 930 203 21 7 62 17 7 1 524 4 27 40 102 15 9 217 1 489 1 1110 4 1 2597 7307 5931 205 4 66 145 273 3719 36 5 995 13 6 2 2764 217 351 4 2226 1507 480 28 53 840 178 8 143 36 10 29 34 14 8 152 2923 50 124 5 24 2 67 243 68 1524 1610 795 217 9381 371 15 58 1567 1821\n1\t218 3 4366 1489 4 1 6 300 1 104 6472 3 80 4174 49 27 196 77 893 8 905 5 28 272 25 507 11 22 2 232 4 11 33 22 3094 3 130 26 1503 32 537 10 181 13 3514 42 2 1447 4626 66 261 35 40 117 107 2 141 3 179 10 928 146 52 68 12 1345 130 90 31 525 5 8790 13 872 261 942 7 9 6 2 191 14 322 78 364 2570 68 4 1 3 52 1654 68 102 82 38 218 3568 4 2759 3283 14 27 6 101 7 1 706 1874 4370 13 5851 4716 5 6 20 38 1 280 4 447 7 1913 2506 616 6 1 2059 4554 73 10 5488 4397 5 3 20 48 5 3 11 10 6 1 59 2759 632 921 11 63 1959 16 127 8426 5 26 9 6 20 2 21 38 1565 1 864 7 2433 42 38 1565 1 616 7 3933 3 75 731 3 1303 11 63 1142 254 5 3 2 222 1896 17 109 279 1 28 4 1 80 18 133 3212 180 117\n0\t285 137 2103 258 655 283 11 66 276 38 277 13 6 343 16 95 4 1 647 20 73 33 22 41 24 58 17 73 33 22 7 686 321 4 121 571 16 1740 5897 2011 35 56 123 176 5693 3 29 2 229 30 101 7 9 13 252 6 28 4 137 104 458 49 2111 15 2098 6 160 5 1232 43 483 258 49 1 5711 3448 47 25 525 29 709 4834 2989 1 427 38 2 114 8 785 11 3294 436 13 92 215 7286 864 624 70 66 907 4516 14 33 22 20 55 148 5 905 1566 322 1 82 4032 17 207 9784 1 2115 13 8241 232 4 211 6 11 1 178 11 1 388 524 6 43 426 4 288 177 1253 19 401 4 458 5 187 10 52 4 66 6 152 1 94 27 196 643 3 1391 40 162 5 87 15 235 422 13 3221 1164 934 8 1875 51 6 31 6201 2607 225 19 50 772 305 297 432 496 8 83 467 2 103 8 467 568 38 1 5524 4 1 1250\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 36 6 3485 15 1930 168 286 40 31 790 961 3875 10 6 38 2 282 404 8180 35 6 242 5 3882 44 157 223 1153 5 390 2 754 5243 2228 3 475 196 1 680 49 2649 2 3887 19 2 558 4894 51 22 37 97 3 7186 11 60 2121 66 998 44 155 286 60 6 128 3446 3 8 54 354 10 16 261 35 1143 2 327 822 18 3 451 5 70 1685 30 48 81 63 1 788 4331 22 56 501 50 3338 39 899 19 116 3 23 90 3 3086 449 11 12 29 352 5 116 693 7 2 5835 10 36 84 739\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 88 24 71 46 501 17 255 65 111 3752 978 293 363 3 8773 1014 8 88 24 485 576 11 45 1 67 247 37 45 51 12 52 4 2 1138 441 10 54 24 71 828 1 119 3835 200 31 510 1897 35 6 9329 5 9 287 35 196 1 18 4089 19 3 19 3 100 674 2980 3128 10 39 863 8908 778 1490 6107 40 2 1871 17 10 6 301 14 6 80 4 1 108 9 18 57 5796 17 10 276 36 43 56 91 89 16 249 108 8 54 925 9 108\n0\t10 8011 27 266 2 684 466 1543 25 3 25 27 3 2394 2181 130 357 2 1957 16 3 27 440 5 26 866 3 211 3 4608 3 5734 3 440 5 2369 3 5762 3 3316 7 2 383 32 25 53 161 663 15 3739 13 1701 2 136 8 179 8 12 246 2 73 1603 7 1 18 863 667 2376 6 9 167 1053 3 11 492 6 9 2652 1 259 35 266 3619 976 5161 6 2 1779 353 14 1494 14 2 4355 3 6 1 4293 4 2380 4 1 102 914 2014 2864 121 14 1 80 1277 23 117 159 1071 5 5368 738 1 394 80 453 7 1058 21 2008 1 8737 1367 6 5 64 360 3619 3 2315 301 4405 3 8188 29 225 8 449 205 460 62 155 408 341 8618 4733 62 15 9 58 560 121 4463 5 3512 94 60 159 48 368 57 7 1320 16 13 614 23 175 5 64 75 5 8612 2 56 91 21 47 4 2 56 91 263 15 2 1084 1392 2221 9 28 69 1286 875 69\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 88 24 71 2 1447 176 29 1 157 4 28 4 5131 80 2741 1235 9975 17 1547 10 153 55 209 4619 464 2858 2132 91 505 23 442 110 9 18 6 1345 38 394 269 4 119 5496 77 1 59 1362 538 6 1660 14 1 2002 17 207 20 670 227 5 552 9 2 755 47 4 1731\n0\t0 0 0 0 0 0 0 0 0 190 8 357 142 30 667 11 7100 6 2 46 964 353 3 8 1451 25 216 46 1264 8 555 27 12 7 52 104 11 25 3694 15 9 1113 1898 6715 12 2 2153 46 91 108 46 3133 13 150 54 24 5 134 11 8 5292 202 34 1 1844 19 1 345 1471 7100 6 2 46 964 2922 3855 57 31 1485 278 7 296 5984 5737 114 322 3 6 3990 1 10 282 7 3853 8 83 96 95 4 1 171 56 165 77 1 1252 3 8 365 2957 5 134 11 9 18 3852 5 1 203 870 6 31 10 114 24 1 1552 3 498 23 54 7093 17 33 39 143 466 571 5 52 8 39 214 1 393 46 73 10 39 143 291 5 90 95 356 41 56 1836 95 4 1 1389 11 8 57 38 1 13 150 555 8 88 187 9 18 2 53 5551 17 8 7 34 1 59 177 8 96 23 76 149 782 38 9 18 6 11 23 1390 16 110\n0\t86 9865 30 261 82 68 1028 21 1920 7327 41 1144 4 1 201 3 1176 1920 137 35 24 340 1 21 13 6 515 4229 29 3 1018 3990 40 31 1115 4235 457 25 14 2 407 271 47 4 25 111 5 3402 15 4 3 813 1256 38 29 154 17 1864 127 529 22 6803 33 662 591 3 521 70 243 13 3986 5 9 6 2 56 91 158 15 202 58 1362 9610 571 16 13 10 1008 1 625 700 7 1 622 4 158 14 30 1461 35 266 3147 794 109 14 375 1 4 25 15 2 6 302 818 5 99 9 803 13 10 40 9992 8249 11 4004 7 947 16 2557 2100 5 6613 6934 183 32 62 3814 334 5 6481 2 9678 66 3503 202 58 991 5 1291 4557 113 587 16 8248 516 2 1945 16 719 1000 16 275 5 1089 194 9992 93 2171 2321 516 402 41 694 7 7815 14 1144 4 1 13 2 21 9 91 54 70 7224 16 503 688 7 6593 4 1461 8 76 3081 50 1020 5\n1\t5 134 146 1 5473 55 19 1 6 345 3 832 5 5345 292 8 1116 9 21 12 89 595 362 7 1 622 4 718 158 42 3857 5 1498 10 5 8913 237 1914 251 19 1 893 3303 4 3073 3985 7487 29 1296 416 7 1444 32 723 172 183 4005 12 13 2044 2 753 7 1 147 51 61 97 188 3 5637 965 7 62 4322 3 2 718 247 28 4 2350 13 858 16 3 1 177 8 721 517 136 133 1 21 12 9454 1 898 6 62 33 61 536 7 75 6 10 11 2413 1136 5 28 4 1 413 19 990 883 1 3326 231 339 4535 5 70 3 5637 2 547 41 29 1 46 225 4158 2 41 5 209 7 3 359 31 1128 19 126 42 3 2 7055 9382 5 1 389 5950 13 3422 9 753 190 478 1332 8 54 2474 354 4005 5 261 35 4283 436 9871 275 76 209 385 3 87 2 718 38 9 718 69 2472 7 1 1086 341 4 1 3 1 212 4 1342 7 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 59 165 2 755 73 23 173 187 2 45 23 24 2 904 29 34 83 836 1764 3376 81 23 83 175 5 99 1497 10 151 81 8 5245 8 4899 10 1 59 797 546 22 1 524 3 1 233 11 86 2 306 471 86 56 56 1500 1119 11 9 259 1066 29 136 27 643 128 230 3516 49 23 4134 7 11 103 8 27 57 5281 5 154 3920 7 8 1595 1 18 10 12 20 782 10 12 3073 87 116 1537 2 2454 3 9 18 8 96 10 2591 38 5 90 11 1680 62 125 1390\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 39 656 420 36 5 134 826 295 11 8 219 4 9 183 8 39 339 820 10 3041 14 459 4246 7 174 9 21 153 735 77 1 212 5560 91 42 7455 1689 42 39 565 1 121 6 1853 1 22 3652 3 1 67 6 2518 3 2317 55 1 4081 1 259 3 132 1030 5 998 62 4333 36 1793 13 2687 55 1460 133 9 158 1 59 177 293 38 10 6 458 58 729 75 402 116 1691 2140 23 76 128 26\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 59 148 3501 7 1 18 6 1 469 4 1 259 3 1 2671 4 1 5166 120 5 592 13 659 154 82 744 9 21 6 2 46 1054 3957 4 2889 3 15 2 103 222 4 7431 1256 5179 13 858 6 1446 16 2 203 141 1 102 6563 239 186 62 2389 142 29 225 3633 1 633 466 220 60 515 40 2 138 115 13 92 212 18 1 1673 4 2 56 1230 1809 6119 404 813 7 66 757 730 3 7 7 9 158 2 1598 8140 93 629 5 26 7 1 6556 81 70 1 18 13 150 83 438 2 91 203 141 17 8 56 812 2 1065 91 203 141 66 9 373 705\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 3365 1260 4 5032 28 4 1867 8130 3783 1082 5 55 2725 5319 15 82 132 14 16 2 1153 41 235 9690 30 6954 14 10 3525 5 1088 704 10 6 2 1254 41 2 13 470 30 962 7 2 526 4 1228 416 7 2 3630 7563 1 1635 4 277 296 417 16 2 3175 4 3 207 110 571 16 1 3936 3257 38 31 1280 526 35 2783 730 15 1 1330 4571 4 1 3781 8696 26 10 1105 41 740 1 74 7729 23 118 610 106 9 6 13 1118 6 2 964 353 36 776 403 7 9 955 428 89 2546 5 25 2264 5 3988 3 2051 28 63 26 9806 11 57 27 71 2649 9 1847 195 3719 24 1279 1241 9864\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 163 4 1 465 97 81 24 15 9 18 6 11 33 291 5 96 11 1 67 130 24 71 52 548 10 6 370 19 2 306 41 421 2 21 11 4767 801 10 56 9 21 6 46 542 5 3650 6887 19 4767 3 196 1 67 1907 123 31 313 329 4 1167 1 1646 16 1 11 12 6610 23 56 70 1 1418 4 1 900 3 4 1 5 5001 1154 41 4 1 6612 11 25 413 3521 15 3 1 1140 5 3551 1 838 8182 18 325 47 51 17 11 12 75 10 3136 37 83 139 77 9 18 852 2 7391 1743 1095 86 2 306\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 124 198 24 71 2729 124 66 4462 1 32 13 7624 226 156 124 61 3245 231 12 13 252 21 6 2 547 21 17 88 26 13 92 465 1936 7 51 6 163 4 161 5500 2515 1256 7 3 97 168 209 47 105 3 13 129 6 620 46 109 17 25 129 196 4747 66 88 26 13 92 6083 3450 88 26 5503 14 22 311 223 13 2663 1 1170 309 7 1 330 350 176 105 4812 3 924 2 7869 193 1 859 6 109 758 13 30 6 5417 193 10 88 26 138 265 6 13 276 1 185 46 109 3 6 29 6702 372 25 185 650 193 29 268 27 123 176 2861 29 6702 7 822 168 27 7 7 1 178 1044 4 2152 40 2 20 2305 6804 280 3 105 286 27 7 25 185 14 1 161 717 1518 1 344 22 1976\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 381 1 21 3 54 1379 5 261 39 47 16 2 53 290 83 186 1 21 34 105 1067 73 320 42 834 3 42 1274 7481 42 53 2843 299 292 43 546 190 26 30 1995 17 537 54 100 591 1 189 5043 3 2915 5205 542 6 885 3 56 40 89 44 221 3 6 5287 55 49 60 6 4 44 2083 3178 60 63 1401 7 1 410 15 44 11 1345 6846 1 3447 669 55 214 512 4700 7 50 3104 49 60 4705 23 30 1197 15 44 14 1 1238 2083 34 7 34 8 76 139 64 10 316 7 9328 8 214 512 2926 10 37\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1023 15 1 226 2381 11 9 18 57 464 1014 657 51 12 2 163 4 840 3 43 8010 17 10 12 30 2 5210 119 3 1230 1905 106 12 9 377 5 26 829 2 2134 41 2360 12 2 78 138 18 3 8 54 354 283 11 3438 2 1813 8 57 15 1 305 6 11 45 23 4258 142 1 2294 33 1110 94 2 156 168 3 98 23 24 5 139 155 5 1 250 3 473 126 142 702 896 83 351 116 85 19 1 7982 168 73 236 58 5070 3 10 39 276 36 7380 8347\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 169 1345 40 154 625 238 18 7606 3 34 4 126 216 5 86 826 32 8008 4880 2142 9953 4632 3 140 9 21 15 132 9789 10 173 352 17 3 51 22 2863 1653 3 2488 7009 3 45 33 662 53 227 1318 5 99 9 21 98 75 38 1 113 3 45 23 83 118 35 1954 6 98 23 229 495 36 9 135\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 91 1041 464 1252 400 1698 393 69 9 21 57 10 513 94 283 124 36 490 23 560 144 1 1350 2705 29 513 9 21 40 332 162 5 867 34 1 6665 314 5 932 2 2545 24 71 314 125 3 125 316 7 817 203 703 2 900 351 4 290\n0\t1974 121 17 9 21 6 2 5318 246 2260 65 7 7517 8 63 348 23 11 9 21 6 31 2158 5 261 35 6 1100 15 1 2712 41 1 1098 145 20 55 2 4 1 1615 7 95 111 3 214 9 5 26 2 391 4 1652 5 1179 86 221 903 1615 4408 3 1587 11 261 35 4011 789 6 9 6 2 351 4 85 488 55 2428 6 20 610 240 220 1 5683 6 631 3 1 168 4 7887 22 5403 565 35 1630 9 13 92 7344 442 981 7945 41 146 4 11 1109 17 10 6 935 27 153 24 2 2481 38 1 915 27 6 523 1395 288 29 25 10 6 1985 27 1457 7 147 887 3 560 75 78 148 2771 27 57 15 1 8465 55 1669 124 36 1427 3421 738 22 138 3 52 2912 5 1 1387 68 9 765 9 6413 1079 42 58 560 27 40 428 3645 19 34 8392 2442 124 11 936 865 2682 436 27 789 275 73 9 263 6 55 2255 3459 16 2 91 4828 8581 4006\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 2 1719 4 1073 2 1719 4 2895 2 1719 4 3596 45 51 6 235 1332 5 134 38 2 1596 1272 441 10 228 26 11 1 293 363 485 2431 7 3770 5 661 1 21 40 2 641 2 345 40 5 875 7 2 2265 136 242 5 7378 2 4 611 10 629 5 26 2590 14 2593 13 1118 8 247 852 1 74 85 8 159 9 21 6 11 42 28 4 1 80 1462 112 584 180 117 11 6 197 2123 95 4 1 3416 267 11 76 24 23 7 1031 43 124 4 2119 2433 2 1596 1272 67 213 254 5 16 137 11 662 7 1596 5778 2835 10 266 19 1626 4 1 3 13 510 434 3802 45 33 57 1256 2 360 112 67 77 1 9 21 6 16 3715 480 101 4861 30 9323 42 332 738 1 113 180 117 575 42 1514 5 4635 1 113 1637 4 2767 3 2146 3283 7 639 5 1376 5 3099 9902 6 162 386 4 4083 496\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 865 4 362 1556 616 4 1572 7694 264 510 3107 3 91 559 421 239 1715 72 617 107 691 36 9 220 7431 800 2344 3 1 3704 198 981 84 19 3618 49 317 65 3 7 2 4 1 53 691 23 24 31 1685 312 3 64 1 212 372 47 183 23 36 98 23 209 5 523 110 84 1154 36 34 3804 22 9055 8566 2483 17 7 2 111 8 175 5 426 4 699 3 34 1713 22 3788 109 1333 48 413 22 36 5 2 287 39 94 71 7096 41 5389 19 3294 37 10 34 276 53 65 5 152 253 110 98 1 418 5 274 1107 24 162 78 4216 174 4934 3 2224 214 75 5 9734 184 566 316 3 1 714 981 84 153 1947 45 10 12 89 31 2445 1404 10 54 26 1051 17 9 6 368 15 1 1128 19 1 378 4 48 1 596 10 34 88 24 71 840 3391\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 143 56 118 48 5 504 49 160 47 5 99 1 158 1251 32 1 1056 2757 1048 11 2 3058 164 5269 2 1736 4770 125 1 11 3 10 57 5921 9124 7 110 8 332 336 1 21 1024 3 310 47 517 13 224 5 4482 1 21 1047 385 15 2 156 29 239 1 1830 7 1 21 22 15 5921 3 4685 770 421 239 82 8204 1 1569 6 7109 15 43 84 168 29 1 3 1 953 1656 734 1560 197 101 13 5944 1 21 6 38 148 81 7 31 1846 5717 42 364 38 3 52 38 7358 29 86 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 281 3800 901 4 1549 3 1489 12 55 52 837 5 64 19 305 172 94 86 15 2 572 3 9004 50 59 22 11 1 119 40 2 156 9419 529 3 11 43 4 1 4684 3263 22 832 29 1287 5271 55 1156 2 736 204 3 51 495 2600 1 1 4438 171 22 1440 1504 876 31 2 3 31 5 25 280 14 2 170 35 621 5360 16 1 379 4 25 1855 29 1 2430 106 244 39 9500 5 916 6 28 4 1 80 4183 415 44 121 44 7404 395 112 168 189 127 102 7019 138 68 911 75 103 1 717 1820 3291 5 239 4 1 607 120 6 1366 3 8821 1012 14 530 1 1541 4 927 3 6245 151 9 2 2038 14 2999 4949 5167 7 25 23 190 20 26 6108 5236 30 956 361 17 468 24 877 4 1434 395 5409 2 185 4 1 305 1009 4881 1745 2 1305 286 3476 23 495 175 5 773 10 45 819 381 48 310\n0\t0 0 0 0 1 21 6 2 222 42 650 2 1414 158 15 1 6013 5617 1 67 2666 140 2 251 4 136 253 2 1414 21 36 9 6 20 132 2 91 3486 9 6 28 4 137 124 106 1 551 4 927 3 1 6196 362 168 90 10 311 23 83 365 1 302 16 1 318 109 77 1 3236 3 30 98 42 105 9221 1 74 1801 269 4 21 6 146 4 2 673 391 4 2833 2245 9463 3 2245 1665 29 656 406 7 1 21 1 541 4 1 74 1801 269 418 5 151 2509 17 42 105 5935 73 30 98 1 410 6 5513 51 6 43 327 1972 1363 29 1 2377 4728 4 180 396 3307 144 52 124 662 383 939 1 6 2336 19 1 1590 4 8480 11 6883 1 2 46 6378 50 1003 465 15 1 21 6 11 1 40 89 1 21 1 111 27 405 5 64 10 197 3055 16 75 2 545 35 153 118 1 67 76 793 110 23 173 2900 1 410 49 23 348 2 471\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 937 219 9 21 16 1 74 85 117 3 10 6 93 50 74 839 4 1777 8 24 5 920 8 12 46 1475 30 9 135 14 2 325 4 315 3 482 124 5 1 3069 3250 3 5112 1018 6 791 2 3621 9 21 7 11 10 2666 53 161 5500 598 7657 8 1682 11 51 22 43 19 204 35 24 1835 618 7 50 1062 10 1421 1 2476 4 85 14 2 514 665 4 709 121 3 45 235 1583 5 1 572 30 1749 120 11 22 52 68 1 3170 2809 66 291 5 37 124 23 63 70 998 4 9 21 8 54 354 23 70 998 4 127 124 1227 662 620 19 2714 192 93 1096 5 24 57 1 1617 5 99 174 391 4 216 30 5226 7 1479 23\n1\t97 696 1154 3 584 36 9 5441 7 1267 638 6 1 164 11 57 297 27 52 41 364 433 194 12 340 2 330 680 15 2 1236 5 10 34 2366 3 7 1 182 4475 25 3553 3 1 331 4943 4 48 6 6089 3933 3 5 64 45 27 63 475 149 1 28 177 27 88 100 70 2 9808 13 6714 81 61 945 11 3808 47 1 528 948 29 1 714 8 96 42 1 410 98 789 660 2 3725 4 2 894 11 638 6 1997 4 25 3874 3 10 151 1 1412 29 1 182 34 1 52 13 872 1 265 7 1 18 6 1051 42 229 48 151 1 18 14 837 14 10 705 30 66 6 31 491 13 1601 7 399 420 187 10 535 47 843 2682 42 2 18 15 43 3895 16 137 35 36 5 96 188 3171 3 2 84 67 16 137 288 5 11 1782 6 229 144 81 4001 10 37 78 73 10 213 2 331 2573 5150 41 2 331 2573 112 471 10 3 6308 264 824 3\n0\t0 0 0 1530 37 8 192 31 215 164 325 3 8 531 83 36 598 124 6642 30 8702 37 144 850 144 114 8 256 512 140 1 80 1370 616 3212 8 192 20 2 6726 2423 325 3 8 57 43 232 4 799 4 6951 1 21 12 1 222 29 1 477 15 1 57 58 8483 5 1 21 29 34 3 1 633 1277 563 106 2574 12 37 1 222 29 1 182 15 1 102 624 5543 1 109 10 511 24 653 14 1 212 177 54 24 71 1 622 516 1 164 247 56 5802 69 3 8 497 101 274 7 1443 143 56 352 1 212 6317 9 21 12 673 3 4223 58 1190 41 4281 8 191 134 11 1 113 222 12 260 29 1 769 49 6726 2423 271 65 7 8 192 7 132 1770 321 5 64 1 215 316 944 7 639 5 50 945 6888 8 56 173 5509 75 1832 9 21 424 786 83 64 10 45 13 83 36 296 4 598 124 9900 22 2 325 4 1 215 812 6726 2423\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 37 51 662 56 11 97 84 104 2246 1058 7478 36 296 1 826 67 3 55 3339 67 358 83 1797 209 37 542 1413 17 487 8913 123 9 21 1 13 150 24 58 312 48 127 81 179 33 61 6306 22 1 7 9 234 37 728 2173 5 132 2 4 8 63 39 64 10 13 69 5560 2224 165 988 244 1257 14 2 7891 3 12 167 53 7 3189 7 1629 3 2224 165 35 213 1257 17 12 797 7 4547 1541 7 2 56 1669 3168 2 156 5684 4201 3 5905 3 4686 819 165 1 210 21 4 1 147 241 503 42 1927 26 2 254 329 5 90 235 14 91 14 9 7 1 398 3583 13 92 2471 69 1352 36 1027 95 2411 91 443 3 48 38 1 210 3263 9 601 4 7941 13 69 72 165 877 4 13 92 2471 69 1111 106 87 72 13\n1\t29 1 166 2967 14 2837 3 17 6 264 7 86 364 230 1 5482 8029 4 1 466 1 67 6 20 28 11 57 2 3144 7 116 543 1700 29 1 182 52 36 86 29 116 17 6089 39 5 348 2 67 38 1830 189 264 23 118 1 17 23 173 352 101 1366 5179 13 1149 1 120 730 22 237 52 68 62 3079 395 3320 4 364 754 171 403 1 1031 80 834 502 33 22 109 9778 3 301 6256 1 526 8357 22 2335 109 1463 3 1 129 3 22 1546 3 3473 23 76 149 725 6750 16 126 237 68 23 54 36 5 13 1149 1 847 6 3435 14 23 54 7093 3 23 76 26 16 1 1617 5 139 19 1 2488 7 1 108 23 76 735 7 112 15 1 647 258 1 709 3148 4 1 9189 3 86 1770 1035 5 86 8 310 47 1841 1 7466 258 1 59 5 26 945 1 398 326 49 8 339 149 235 5731 13 151 1 18 34 1 52 13 1149 138 68 2837 41\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 56 36 9 108 6 31 20 5 26 2169 35 123 20 175 5 139 5 2251 25 4746 6 696 7 2 111 5 7 2453 382 821 38 413 3 2251 9 158 245 6 20 274 7 2 392 17 7 2 5455 9 360 21 6 34 38 1 9013 11 1 3004 392 12 2 2082 3 137 413 35 61 5 26 16 2 2123 13 7680 6 609 14 2 2169 35 1049 14 78 2438 112 3 6711 16 25 1658 2169 14 27 114 3 16 1 11 12 242 5 564 550 6 400 797 3 9814 3 25 1383 355 62 29 154 27 6 2 2374 5155 842 15 2 7367 25 1658 1481 3 781 1 879 7 2438 1 111 47 4 9 1559 13 92 121 3 238 6 8934 3 1202 3 14 2 271 224 15 195 3 331 2853 14 28 4 1 401 277 3004 124 7 50 13 3108 2 401\n0\t1976 1333 34 53 3 4835 17 33 128 88 24 248 138 188 15 9 263 68 48 33 1322 8 467 209 926 1 1297 7 1 5504 114 1 635 176 29 1 103 3 1283 830 1 1297 3 1 389 67 38 31 1297 1343 404 66 33 798 5 1 1320 3 60 666 51 6 58 28 17 79 11 557 737 37 23 96 1976 1119 1272 17 98 60 39 16 1 1234 19 1 3 72 995 38 1 103 635 283 9 2678 11 12 37 1054 10 271 660 4224 1 393 303 23 1437 20 59 48 653 5 7 1 2430 17 93 15 1 507 4 144 1 898 114 8 39 351 50 85 133 9 6 2 899 11 8 354 20 5 1775 51 22 373 138 538 124 47 51 11 495 2158 116 1479 851 8 100 57 5 946 5 64 9 141 8 54 24 50 319 8886 16 137 11 61 728 2983 30 9 42 46 747 11 23 116 3220 5 9 952 4 21 253 5 152 134 11 10 12 2 53 108\n1\t11 1652 206 2127 40 411 9 85 14 4 5038 8066 813 7 541 3 1421 5669 14 2 52 68 7433 5527 4 1415 7223 1 119 6 152 169 696 5 813 14 72 1229 19 2 5017 231 3 4 51 6 31 29 1 21 6 383 7 315 3 4308 3 1 176 3 230 4 10 1385 79 2 163 4 1 1652 382 1060 2284 4849 236 1092 95 840 19 3 1 206 181 5 1229 19 2241 15 1626 4 3 5146 2086 1 121 6 3705 17 80 4 1 415 70 5 1030 2801 29 43 272 3 480 2 345 206 2127 152 181 5 24 31 1128 16 9 426 4 1689 14 97 4 1 1102 7 9 21 22 152 169 3391 1 119 6 3618 9246 3 80 4 1 21 6 17 1 265 6 3 1 206 93 123 2 1317 53 329 15 1 447 168 3846 14 80 22 595 1952 9 6 20 2 84 4692 17 42 1458 5 1376 5 1 1280 1787 3 196 2 78 2302 8253 68 1 138 587 3 2478 538\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 173 241 180 1130 50 85 133 9 108 8 59 219 73 8 24 132 2 5549 19 17 133 9 21 202 256 79 142 768 9 6 332 8271 8 88 24 71 133 6703 251 125 2938 13 92 466 259 7 9 12 37 2518 3 8 54 112 10 45 1 84 7107 5461 25 3404 140 2 4914 8 12 154 85 27 12 667 3 420 2382 25 13 19 1 82 1737 12 332 2856 2 306 17 60 339 55 552 9 1963 1399 4 2 135 2836 60 339 55 634 36 60 12 142 44 8153 49 60 472 11 1387 10 485 13 150 93 336 1 222 106 2311 19 768 10 1385 79 4 2 85 13 87 99 9 21 73 4 42\n1\t217 42 14 641 217 826 890 14 656 236 43 53 203 217 238 204 14 109 55 45 1 566 6 2 103 8 112 1 1380 106 1763 8623 8893 28 29 2 85 528 15 217 7549 19 331 131 41 49 1 8990 629 15 1 236 2 156 2637 529 642 2 5556 101 275 6 19 2 3722 217 275 40 62 522 1089 15 813 13 3371 2 445 4 38 6118 164 6 3685 8 63 830 1 3679 19 1 305 106 43 293 363 666 33 389 823 47 260 224 5 27 226 6104 66 33 152 114 73 23 118 307 133 54 1682 45 28 4 25 61 1156 41 7 1 540 3887 511 1 121 12 1530 8623 89 16 2 53 1341 1648 574 13 164 6 28 4 184 445 106 1 363 217 238 186 2658 1039 125 95 426 4 4673 67 41 1921 17 5 26 4769 1784 519 72 34 36 11 7 2 158 109 8 118 8 1405 53 1195 184 445 1033 15 2 1056 217 5151 68 1 692 368 373 279 2 836\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 405 5 64 10 73 4 102 3799 628 10 12 1 1015 4 298 15 4069 1 9987 185 12 262 30 783 912 63 309 1005 871 15 43 14 7 1 184 13 724 195 8 560 144 33 636 5 1743 9 6503 1 21 1026 1 166 119 14 59 737 1 171 83 1 206 6 433 7 25 3 35 789 48 1 1840 12 9290 783 6 355 1120 288 29 6042 5602 3 6042 5602 6 2227 992 48 444 403 7 9 135 8 83 55 175 5 1498 44 5 7 1 166 1174 3 4 611 33 57 5 333 1 1238 67 6259 33 1416 88 24 209 65 15 43 264 7832 436 1 1666 151 10 327 5 64 1 166 1972 106 33 383 298 17 11 373 153 734 95 538 5 1 803 13 777 2 351 4 85 45 819 107 298 1448 3823 144 20 64 2 14 16 503 420 243 1288 68 64 10 28 52 8801\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2338 9064 1 1153 9529 32 5463 1170 84 129 353 626 9911 6 155 7 9 967 4 2232 9063 1153 449 8 165 1 604 71 37 9 28 6 28 4 1 16 1 3916 114 1 46 74 2232 7 76 64 2338 14 2 8963 2901 35 1371 14 2 231 363 22 46 211 3 201 93 1680 3529 3 369 5819 789 12 28 4 1 81 159 9 7 1 112 5411 1155 1 74 5411 3938 7 247 55 1711 330 3938 12 7 36 34 1 2338 28 1421 47 14 28 4 1 138 879 20 9689 1 74 66 12 332 726 1 147 1198 4 1 2804 3 15 1856 7041 23 830 2 21 15 34 4 354 9 5 34 2338 596 3 203 596 2338 6 132 2 757 47 4 1731\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1331 45 23 36 1011 468 149 10 675 8 1331 45 23 149 2 1612 2088 2776 5 26 149 10 675 8 1331 45 23 175 5 149 2 342 4 1988 4298 30 1988 35 5143 2 1858 468 149 10 3127 13 3616 3484 3488 3 1 53 559 209 47 19 401 184 85 457 13 1118 8 8670 80 75 1 53 559 5170 59 15 63 564 4775 4 91 559 15 2863 2962 35 22 1363 29 126 29 272 5164 3 6515 1 55 70 85 5 62 1 4 2863 2962 13\n0\t9 141 8 12 1385 4 1 2848 1 8154 484 7 66 1 859 16 86 902 12 11 1 4438 7413 4 2916 6 5 26 5 2295 1 1132 4 1464 2795 24 154 260 5 26 3238 4 2449 830 1 1415 859 11 9 18 1664 16 86 1886 218 234 6 2 400 510 9 18 649 1259 1786 3 4353 564 1038 10 153 729 48 116 1912 41 116 1750 2620 10 153 729 45 23 24 2 147 7141 41 2 147 5657 10 153 729 48 23 2564 48 23 87 41 48 116 2827 16 1 958 2620 23 63 995 137 73 317 39 160 5 3235 65 115 13 872 1 177 30 20 685 105 78 18 311 748 65 974 16 2 4384 322 144 2109 229 3 459 556 1 5 1 30 253 277 41 723 4 127 502 8 1155 47 19 1 215 1464 488 94 133 86 74 5409 8 76 3037 875 295 32 1 82 14 109 14 1 1766 3 16 4192 45 23 118 374 35 152 36 9 141 87 20 369 126 1992 116\n0\t58 52 68 895 9695 7881 35 61 125 1 3376 4 1438 35 61 3732 4 101 2792 13 8677 35 118 103 38 1 729 128 230 9347 7 5665 19 3 1 5 9 6 31 5821 1 6 58 560 81 24 110 2 1058 4 7 1 686 303 4779 2736 4530 218 11 1 368 846 8906 1 4004 11 368 14 522 4 1387 101 11 12 100 55 2 1910 4 3 27 57 103 796 7 1 3329 4 368 61 9017 202 5 4209 4 1 199 13 92 38 1 101 6 195 301 30 937 3296 3978 3 199 1655 45 235 3 1 1860 4146 4 3978 3 1658 7 1 3119 17 4029 4 1228 38 9 1165 76 26 254 5 13 1268 326 300 43 56 2950 368 1898 76 90 2 18 1083 1 1387 38 75 97 296 413 3 415 7092 1 3319 3873 3 1066 5 25 4774 2090 4 1655 19 1 1214 1561 685 31 2186 3110 300 4 988 8 495 998 50 2268 977 72 24 9 3582 4304 4 986 2407 37 1100 7 1\n0\t703 12 446 5 186 1 545 5 2 85 3 2 334 7 132 2 111 11 46 156 124 117 3702 10 57 2 3 5 10 11 6 13 1627 8 341 86 5409 5890 1225 7 1 409 1 21 12 202 612 2 342 4 984 59 5 26 1789 29 1 226 6216 49 10 475 310 827 12 341 424 8 2 900 13 92 748 3 861 61 39 4275 17 1 1177 301 1155 1 8659 1 21 12 162 52 68 2 2441 4 3840 6172 3840 2511 3 7121 13 92 1922 35 12 28 4 5131 84 3 929 655 199 2 2785 4 1 2624 2485 27 314 7 27 3 144 27 114 11 646 100 2510 27 936 1180 5 390 31 4127 2234 4 13 92 523 3 121 7 6 3 1 171 190 24 107 17 1034 2485 3 11 12 7 24 8862 29 34 19 95 4 450 1 121 12 8397 3416 3 4 95 4 2570 13 76 198 26 2 148 17 5 637 2 967 6 5 2158 34 4 1 596 4 1922 9114 3\n0\t575 8 114 20 539 308 533 9 2179 3 42 2 3264 6143 9428 16 3264 6143 3267 22 198 722 20 4648 9 386 498 47 5 26 53 366 8654 862 509 2376 15 1 1993 4 3264 13 92 74 3199 2076 4 2 1065 1254 6 198 58 4722 53 366 12 509 73 10 3295 19 1 166 102 2249 2681 15 961 9 9428 19 1 82 1737 6 15 1 330 3199 2076 4 2 1065 236 105 78 3251 1 1254 29 225 40 52 68 102 2249 65 86 17 80 4 126 291 1534 68 33 22 1359 5 1 9898 4 1 3251 29 28 1746 2306 3 4168 7870 12 53 4 815 1 80 494 180 117 455 7 2 1254 765 3864 47 1767 7 1 2394 3267 153 1810 7 50 55 193 9 1254 6 59 1315 269 1896 10 811 36 910 1359 5 494 36 2938 13 3838 7476 12 20 2 299 1254 16 503 17 45 819 2925 116 1898 5 3795 2376 3 22 2161 5 11 27 470 2 156 285 25 3987 23 228 335 2420\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 1 210 177 1 4848 40 117 8 12 2 635 49 9 310 47 3 8 128 179 10 12 55 193 8 338 1 215 13 3057 9 28 178 8 320 49 1 4527 6615 259 2980 5 25 48 1389 2620 42 7226 97 596 812 19 1 251 16 642 2 633 17 11 143 1460 437 37 78 37 11 8 143 55 320 44 318 8 284 38 1 131 9389 34 7 399 42 8198 13 92 59 1976 177 12 1 833 4923 2737 33 637 3951\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 9 21 29 1 8446 5593 1644 21 3517 370 19 2 30 1724 2285 1579 9 21 1035 5 348 1 67 4 816 3 3894 6504 35 22 32 62 231 30 31 7 639 5 921 2 891 13 5482 1 21 6 93 105 1269 30 350 1623 468 1 30 6628 5616 3 1 971 817 21 12 1 313 718 433 7 1420 1621 62 111 167 6727 8 12 100 273 704 8 12 928 5 186 10 34 1067 41 1265 7907 1153 4677 10 12 34 39 2 222 1264 3496 1 5586 891 3 2456 39 143 899 437 8 12 1385 2 222 105 78 29 268 4 3 1 2048 2 21 8 214 215 3 6270 17 7 9 1723 1 759 39 1121 14 501 779 61 1 250 120 2 52 3770 54 26 1 7050 1832\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74 85 4 283 7298 7083 74 865 21 3 8 24 5 920 8 338 10 2 163 3 59 555 420 4177 577 10 172 1924 1 29 1 357 11 1 277 3436 625 3687 12 3 7 39 7 85 183 3 97 9147 11 384 5360 6596 371 61 814 42 6866 956 7 7714 17 180 107 3 5823 78 8350 13 499 54 24 71 1233 14 1 535 386 124 17 14 2 186 19 42 5583 3 211 32 1 357 5 1 7 1 1966 717 15 5342 2914 31 5542 3 7298 2914 2 3838 7 1 4576 717 7298 2914 2 15 9163 3 2744 16 58 8190 4432 7 7 9 717 4 2583 321 3 7250 25 606 1325 621 5 2126 29 1 74 205 122 3 22 94 1 282 140 1 2 100 393 1522 14 1 27 196 7388 125 2 6668 1590 17 128 6114 2 4420 5 1 443 69 31 491 330 41 13 6312 3488 50 112 4 1414 21 1211\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 99 1302 524 73 4 1 148 157 3212 9 28 12 46 542 5 79 3 2610 79 37 1325 34 1 120 22 109 1619 5411 258 1 1097 6 128 832 5 1 199 6 237 516 1 1619 4 1 1162 59 9 232 4 1784 697 1103 3 2794 151 31 1880 19 1 4 611 20 307 1148 188 1 166 111 17 8 192 11 4 1 413 7 1 457 1099 3216 5630 1 166 14 79 1731 317 5184 1 254 879 69 8 76 2681 1 334 16 9 2351 786 1811 605 3878 3 1942 50 7574\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 448 45 23 22 765 50 753 23 24 107 9 21 6 28 4 50 80 430 807 8 39 112 1 1292 4 2 4014 15 2 9655 19 25 99 104 3 120 3227 966 8 112 1 178 49 2 1966 7 2333 136 93 106 6586 2 2390 67 4 9100 19 2 5194 4674 3 1727 8524 151 3680 1333 50 430 178 4 1 135 5 250 178 6 39 1300 189 102 84 1297 171 403 2 3865 178 15 58 86 3711 42 2 1398 3872 135 39 99 127 171 3244 239 82 3 128 605 295 1 178 32 239 1715 86 900 2815 45 23 36 3 6689 1300 98 86 2 8 96 6 7 50 1307 30 638 41 58 9 2067 4 2 135\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 237 1 80 731 16 95 21 1068 6627 6 11 33 29 225 26 446 5 1622 28 125 19 3119 14 109 14 62 1 8959 1 3250 3 239 1715 17 9 21 100 2734 9 1294 154 63 26 107 588 2 4890 142 2166 1 1070 22 33 46 1476 7202 41 436 3388 5 8186 16 9 15 494 3 1618 1872 45 814 27 1 456 22 9338 17 479 2320 7 132 2 111 11 8 179 436 43 1269 272 12 101 89 38 199 34 121 34 1 8801 17 10 5958 14 16 1 1872 1 250 1921 2 222 8386 3 151 43 3605 929 38 44 435 517 444 2 17 60 196 125 110 8 56 338 1 1170 168 1815 485 39 36 31 2574 6659\n1\t21 98 6 2 1052 6180 19 1 5 1451 3220 3 34 385 1 613 3 2028 427 45 72 83 175 5 90 2 66 7 86 473 4 448 123 20 4800 1 469 220 3086 10 271 421 1 9816 4473 1838 22 377 5 6838 998 127 5 26 600 11 34 413 22 1242 11 33 22 30 62 5806 15 732 11 738 127 22 727 3 1 5995 4 4 157 6 31 260 11 12 340 5 164 30 25 66 907 58 28 17 1 28 35 419 10 63 186 10 1695 59 851 63 186 1 157 4 2 454 1695 1 469 6 1 6169 4 2 869 11 72 87 20 3702 55 45 72 87 20 3429 72 481 4800 1 469 571 14 31 634 4 3 204 1 21 289 6 1 210 888 6067 7 1 5024 4 2028 3 7 1 4 1228 45 6 4425 1923 51 6 58 82 16 9 469 3 51 63 198 26 2 2082 7 11 5995 20 4 5526 17 4 13 8829 4728 2498 755 4728 2498 1315 9380 4728 2498 2042\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 241 2 18 11 63 26 89 11 53 7 9062 3 6 2061 1903 7 1 6575 20 5 3640 82 746 675 1 868 6 46 53 3 6270 1345 10 907 786 100 69 49 10 1 304 1272 3 1 2150 76 26 1251 4665 94 4539 1166 6868 3 3024 128 176 1051 8 381 6868 7 851 4 3 97 104 30 3024 642 138\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 63 20 241 132 1097 6 355 2021 142 5 1838 14 632 429 3531 362 926 32 132 1083 456 36 6838 175 5 90 273 33 22 372 16 1 260 3 6810 3 4702 2 112 8628 289 42 306 3374 1 2352 7 66 1 2706 22 620 14 1 14 6958 3 6 14 345 2 5571 4 622 14 362 199 4047 11 8017 1 1593 189 3 296 1 1387 4 1 67 6 15 1 2809 3 9120 4 1 2706 7 1 2 6967 9644 30 1 1132 10 6 747 11 81 1163 128 96 11 33 63 1364 1700 30 253 2 21 37 728 4546 16 42 631 37 237 32 2621 3981 9 21 40 58 1255 101 2882 7 95 8720 616 41\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3629 13 1634 58 994 58 7213 58 8630 9 21 8083 2997 14 2 5210 4128 2 950 15 58 7 1 215 158 27 5484 1443 7 1 1302 2251 737 27 5484 162 17 2 13 8382 1 171 61 4835 1763 8393 12 2 514 9391 738 13 252 128 123 20 1 465 11 9 21 57 58 1384 3198 8 481 64 75 261 63 209 295 15 235 4673 32 9 158 49 2997 1220 3 424 3229 1242 5 26 2 4673 950 7 20 59 4816 17 93 7 3242 9 12 2 148 351 4 319 1078 75 97 8837 9 21 88 24 13 3793 2 156 9174 88 24 71 2 1518 4 5039 1105 3 19 3 19 3 778 27 12 39 174 9035 13 872 16 48 114 27 820 7 9 3124 162 17 174 6946 13 318 10 255 5 1 3780 856 45 23 64 10 29\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 2004 352 10 17 8 291 5 36 124 11 22 928 5 26 782 3 22 39 908 565 8 24 1454 3893 10 7 50 221 401 394 210 104 260 457 3107 4 1 99 9 21 3 24 2 539 39 83 504 5 64 95 1748 2520 16 1014 52 680 4 2308 1 21 86 7 34 9810 193 8 24 107 78 527 68 476 1069 43 2873 1 3063 1 166 81 47 11 39 1436 6 11 1698 11 86 165 5 26 1766 8 96 86 28 4 137 112 41 812 502 23 63 90 65 116 221 438 1661 86 489 17 10 2734 10 142 936 1333 144 8 112 10\n0\t162 6 303 47 7 1 368 36 1905 37 55 45 1 67 6 2316 3 28 63 3954 1 1114 1234 4 28 173 352 17 2456 671 959 1 1454 8 12 542 5 6228 29 1 4124 13 677 61 43 547 121 7 1 158 3 1 102 170 633 1284 120 57 43 53 2184 37 114 62 1007 3 82 618 1 2652 2706 5902 12 31 2685 391 4 505 11 1572 1 21 224 169 2 222 7 1422 4 27 143 55 1030 46 8308 17 243 1537 602 480 25 53 66 151 1 9683 2631 189 1 624 291 2 103 13 150 187 1 21 2 7983 14 10 12 31 2316 67 3 33 7653 47 2 327 2821 5 1782 1 915 4557 1 263 3 201 57 97 53 1202 647 685 1 410 2 680 5 463 730 41 2349 57 1 20 71 9 420 728 187 1 21 2 1450 41 9427 45 23 381 9 158 420 354 1 21 6 66 8 96 6 31 14 501 45 20 138 4 3283 9291 14 109 14 101 1474 3\n0\t3 3271 3200 13 1627 49 8 159 2247 4 1 8330 7 1 249 8 165 50 374 3 65 16 10 30 1083 126 1 67 4 1 215 3 7422 75 78 8 381 10 14 2 4163 14 50 379 3 374 65 19 1 7205 5 99 1 18 1 1691 61 7118 17 394 269 77 10 50 374 61 3 50 379 3 8 61 685 239 82 218 3 3343 257 3888 94 6491 269 50 374 61 152 2227 5 139 5 2023 361 8 497 33 61 6137 65 15 1 1587 3 8045 8 12 152 2692 38 62 341 2259 15 9 682 13 5384 2247 4 1 8330 6 52 36 2 91 431 4 1002 1164 1007 15 2 431 4 2215 68 2 382 3200 108 83 70 79 289 22 514 3 8 36 126 14 78 14 1 398 2112 17 49 8 99 1002 1164 1007 41 50 402 1691 2022 1580 438 22 198 13 2718 1459 47 43 53 1402 3 1019 1 344 4 1 3400 765 1413 2 78 138 1412 68 1 8397 91 2247 4 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 191 920 11 29 1 2353 8 12 426 4 38 133 9 108 8 179 10 12 9 2212 5145 684 21 38 2 710 287 35 762 7 1 1591 31 296 3 1036 5 1978 15 550 8 12 20 152 38 9 232 4 1252 220 10 3884 5 90 79 241 11 10 6 39 2 108 1604 8 219 1027 3 8 12 6 28 4 1 156 124 35 4000 5 771 7 2 243 4934 744 1437 38 1 233 11 7 1 799 4 257 72 22 5 2214 41 11 10 6 2 312 11 233 11 2 342 130 344 371 16 41 458 8780 63 4535 519 5 414 7 115 13 92 393 12 1529 2163 8264 87 20 118 45 33 76 889 316 7 1721 29 1721 7 257 72 6783 449 1943 1 171 1171 7 2 46 53 7215 814 458 8 1647 5 241 11 4780 512 88 414 2 39 36\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 2 732 8 152 338 9 21 138 68 1 215 8 214 11 18 5 26 169 14 2 287 3 2 203 1787 145 314 5 1 233 11 415 7 22 2 4 1 1818 17 33 39 5055 1072 200 111 105 1264 7 9 141 6 2 52 919 3 1 250 91 259 6 2 1018 262 2 6008 7 6 46 3 3650 2054 2056 58 84 1651 17 27 123 4010 29 225 27 153 357 5 1236 10 19 2240 45 23 5435 42 19 238 9\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 480 43 2715 7601 7 1 263 3 1 644 790 5765 6822 9748 4 1 8428 14 2 2764 3509 77 2052 59 30 1 1761 4 1 344 4 1 642 1 7203 22 2 528 2720 6080 630 22 1553 30 396 3833 292 1 1106 8318 7 227 19 1626 5 3569 47 2 2596 484 1 119 6 37 9462 1 9829 37 3 1 494 37 903 2607 225 7 1 706 11 95 796 7 1 7612 6 521 13 593 181 55 25 6 6457 3 27 6 20 1553 30 55 2911 748 22 37 5016 11 1 2024 156 1035 5 187 1 410 2 9679 22 237 7 13 7784 1079 735 77 2 696 9060 4 193 1 265 868 3 1 5403 400 7794 293 363 2005 293\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 59 111 9 6 2 231 589 6 45 1007 1346 297 540 15 86 13 33 5357 2 7707 16 2 349 3 98 564 10 16 2306 62 2135 94 848 86 532 3 29 74 38 605 8481 16 62 9238 33 1844 4398 3 7707 16 30 2306 136 33 186 58 8481 5 333 7433 3 41 55 825 5 1743 378 4 1882 1804 3 3851 126\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 61 7228 3 169 3473 10 12 2284 283 37 97 521 5 26 754 171 49 33 61 46 7305 1 453 3 838 5 2252 61 360 5 4578 13 7 21 10 213 2429 11 2732 1097 26 7 15 1 2759 1592 5 26 240 41 6902 4400 6 883 59 7 1 1128 4 1 67 3038 42 387 915 41 8779 13 51 22 169 2 156 2759 124 1163 11 24 20 3038 1 7988 41 3005 1590 4 1 1124 4180 1851 2 7684\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 2 56 797 108 10 39 271 5 2162 11 23 83 321 810 188 36 2987 3 3645 5 90 2 108 10 7 81 70 383 3 162 629 5 949 274 19 6602 566 19 7538 638 6 1 8910 4 3 294 4371 6 39 1 8 381 9 18 17 8 36 484 9 6 1 425 665 4 2 46 18 11 39 3738 45 23 36 990 468 112 9 158 86 86 6382 86 3977 86 13 499 93 276 14 45 10 12 89 7 8368\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 9 226 1679 94 4025 65 1 305 8 57 405 5 64 10 16 1565 1 119 8749 46 8905 37 50 2259 12 1111 5 134 1 4822 8 179 1 466 353 12 46 5307 9 232 4 185 3021 2 278 36 7 1 3431 66 9 6 202 2 528 17 8 497 249 83 198 3304 5 9 232 4 121 13 150 93 1 179 1 593 12 1852 3 2764 6416 59 5 3006 79 11 4654 1336 248 2 547 18 220 7 1 2333 4 14 16 1 67 69 322 8 12 945 51 14 51 12 58 111 10 88 889 50 7296 8 7663 17 8 179 1 3 2651 12 3652 3 1 111 27 475 165 1 21 5 134 1 13 252 12 428 30 28 4 1 250 5 3 23 63 348 27 123 112 25 2433 17 8 54 24 338 2 138 1122 32 132 2 53 2319 13 150 472 1 305 155 5 1 1320 1 166\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 240 312 2602 296 415 457 186 62 1489 30 6 2175 30 6505 2142 2069 673 593 3 31 8529 263 4433 7897 3 2257 331 4 4992 211 2184 378 4 4643 2 3184 2219 38 1 280 4 2868 415 2280 5 875 7 2 234 106 413 3303 3 949 3 5 62 6233 410 15 4 6158 42 3842 29 86 4120 5232 40 25 171 125 154 1455 427 3 294 3840 1043 4364 5 1351 65 1 6734 378 5 359 25 443 4853 19 1 9639 3 33 7595 292 171 132 14 3 6991 1996 24 43 3532 860 6 1 2638 3 14 31 651 444 31 313 33 321 2 874 68 5 4716 126 3 14 2 1122 33 209 142 14 3 3418 7 1044 4 1 2904 6566\n1\t16 3 2 6 20 160 5 5698 62 3214 105 1264 10 6 198 5887 340 11 4133 6 195 2 11 1 21 228 390 17 10 6 46 13 9 8 24 71 6484 496 29 984 38 9 6 20 1 148 14 8 214 1 21 46 806 5 836 8 381 10 14 2 6180 4 774 864 3 148 81 341 1 922 7 1 21 22 137 4 1 3 2 103 402 19 9 123 10 58 8024 7 50 4706 3 8 555 11 52 124 3691 15 1 3275 36 476 51 6 2 2771 204 15 1 7059 4 8301 3 15 710 21 7 33 1550 934 15 580 41 17 15 1 368 6 7 1654 5 490 3 7176 1 4 1 1 1428 1221 6 78 6167 7 3727 17 10 6 20 4084 4133 6 20 610 4032 17 10 6 19 1 260 55 45 10 123 2900 1636 4 6974 3 37 926 11 22 4 132 5415 7 1955 1913 8 192 273 11 23 76 463 112 41 812 9 158 15 103 974 16 2 750 13 1149\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 6 2 1485 4 18 9022 229 100 8 5368 10 15 218 6081 4 3 292 10 6 2 400 264 574 4 18 68 5 6 2 11 1123 278 9491 3 1813 363 458 5 50 22 400 8956 115 13 1701 1632 51 6 1 2053 4 3 1666 1131 69 14 7 17 1 4 1 2964 271 111 660 1 641 69 17 304 69 1380 4013 7 7 1 1734 3 1380 4 1 2964 63 59 26 1991 14 13 3221 609 1329 4 6 1 1292 4 3 75 10 6 314 675 75 88 2025 24 6547 4 2 138 111 5 90 85 820 128 608 3 98 51 6 1 13 614 23 24 95 2407 29 399 23 76 1023 15 437 5 6 2 306\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 275 35 12 1711 5 2 1091 532 3 706 435 1018 1019 681 172 7 2 6854 4 392 8 209 32 979 28 4 246 5 934 15 1 943 6117 19 28 601 4 1 231 3 1 4 19 1 1715 9 9251 481 9157 77 154 625 185 4 6758 3 191 187 1 545 2 940 8021 4 1 1261 29 1 85 3 14 113 14 28 63 6758 1296 4 1960 7 9 1 251 123 169 530 6 46 53 14 6 8 54 618 338 5 24 165 52 1799 19 1 1830 15 508 7 1433 73 2697 114 20 87 235 19 25 2487 27 57 81 200 122 11 1417 122 5 1 3674 396 197 1193 3 407 197 1193 406 19 7 25 4854 3163 48 12 160 140 3 10 54 24 71 8406 5 64 52 4 127 17 8 449 10 76 90 81 2531 1 915 1129 10 228 93 90 81 365 144 275 36 481 26 1747 5 1811 7 5475\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 336 9 108 8 96 10 57 10 513 10 89 79 539 47 1767 125 2 2596 4 1287 657 8 192 2 1753 37 145 523 9 32 2 4663 8546 8 96 42 2 1152 10 59 8683 7 4274 105 97 559 10 12 237 845 82 684 8221 39 73 145 633 8 83 335 34 7020 19 1 6412 8 2923 82 684 1545 2292 5 26 2513 3 20 14 211 14 33 928 5 1142 17 36 8 1113 9 18 57 10 399 7 50 3222 84 1252 53 514 1014 292 3831 7922 129 1385 46 78 4 32 1770 17 37 3070 10 12 4544 8 76 359 9 21 16 7052 2491 663 49 8 230 402 3 321 2 156 4267\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7163 6 815 1 700 1262 839 4 34 387 3 6 407 2 7 423 6136 7532 3 1703 7 9 1683 3427 5347 4467 7823 411 15 1 84 21 1350 4 1 3782 5694 132 14 6173 3142 1867 4182 3331 3 4576 1 293 363 22 162 364 68 3 90 95 216 30 5535 176 4481 3 29 1 85 4 42 4227 7163 12 132 2 5001 2067 11 10 3172 1 1940 4 3164 5 3444 100 8152 30 21 1 1292 4 253 20 39 2 1729 572 1738 2 17 31 238 3765 1557 2797 2 4898 15 2 442 132 14 3 31 633 613 2457 1241 3099 14 72 118 110 1 234 88 100 26 1 166 94 9696 132 2313 7404 133 7163 6 78 7048 5 288 77 1 543 4 851 3 2261 122 134 3093 22 50 80 2810 9 6 28 4 1 156 124 11 6 311 5 1288\n0\t248 55 52 775 68 8499 308 805 1 846 3437 1 3717 4 95 108 89 1 250 129 60 418 142 30 101 2 528 5 44 493 29 1 2353 3 98 615 47 49 60 432 11 444 676 2 454 144 1 6901 54 72 230 16 9 1530 987 134 72 63 70 576 656 2051 6 38 14 237 32 1805 14 23 63 70 197 246 43 426 4 8 83 118 45 42 44 41 1 7344 17 44 129 271 109 660 50 16 2176 2 8353 16 958 3492 349 22 20 2571 479 3182 237 3 295 1 80 2685 799 7 1 18 310 49 33 5 5326 930 11 12 7191 10 1049 44 11 941 29 1 4362 11 2980 144 60 789 194 17 31 389 1957 331 4 1 54 26 52 34 4 2 2585 444 301 6223 3 40 58 2481 75 5 87 44 329 3 58 28 29 225 816 129 19 57 2 329 11 89 356 5 2 3049 127 1496 1217 104 22 56 355 47 4 1737 3 9 6 30 237 1 210 28\n0\t7 34 1 1324 74 350 1527 2831 2593 13 3371 1 67 866 926 28 4 1 102 792 5 2210 686 6112 38 48 27 6 6306 3 406 1036 5 139 3 352 2 526 4 1 81 204 6 106 297 7513 418 5 77 1065 13 30 1 81 35 549 1 6164 2218 72 22 1694 5 1 129 385 15 25 102 309 2 580 302 14 5 144 9 18 6 8457 5 357 4 276 3 2492 52 36 2 957 1090 1518 556 2829 32 2 578 2164 18 528 15 1 117 4914 6551 11 818 7045 95 1190 1242 30 1 74 2831 327 7341 4687 52 6 11 10 792 5 230 52 36 2 267 243 68 2 686 108 15 43 862 2390 2131 436 1 3209 165 1120 3 143 4219 1 121 554 5 2 1231 402 49 1 1081 762 1 526 7 1 1 389 5334 6 1370 5 99 14 6 297 422 1068 592 13 4636 5 5561 19 235 17 904 647 927 3 121 6 2 351 4 85 16 137 2811 16 2 53 203 2803\n0\t3 1182 9 6 1 67 4 2 406 654 1343 3858 1 74 454 3 25 1486 140 577 1 4 1 161 6575 676 27 6 1711 1126 2956 34 1 82 5458 7 1 304 98 27 6 3542 5 26 314 14 2 27 999 5 1337 142 34 35 328 5 2062 550 618 49 27 3902 25 385 15 103 9591 1 102 4 126 921 2 8230 1608 3 27 515 40 2 177 16 103 633 7 1 769 94 2 156 52 101 4106 30 1 5438 5852 3 25 3012 3 253 2 570 184 8694 577 2 103 9591 1572 1343 3137 3 27 93 6816 25 633 3 33 549 408 5 62 7189 3 1658 93 993 14 9691 2356 14 294 14 742 14 1037 3 4785 14 8 12 852 5 64 1 5458 771 7 9 158 17 10 498 47 5 26 52 36 2 177 4245 3 1 759 30 7276 662 1 80 9682 17 10 213 2 464 135 10 12 2695 1 918 16 113 1139 7628 3 10 12 2695 1 2101 9289 16 113 788 16 8\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 74 159 9 324 4 1427 1075 49 10 74 1478 19 3252 8 152 8152 283 1 21 49 10 12 6525 3 10 52 68 1457 65 5 50 4911 8 24 195 4323 1 305 3 1439 5 99 10 154 2463 15 1 1675 4 3796 2 360 6285 8 1064 9 324 4 1427 1075 28 4 1 113 1075 104 117 1001 690 3111 1133 6 313 3 2 1016 201 1699 30 2402 9892 1133 1501 308 316 11 27 6 28 4 2049 171 4 257 290 1133 40 1 1703 860 3 121 1514 5 309 95 280 3 359 1 129 979 5 2085 75 63 275 26 2299 14 205 3 1133 123 37 1 593 6 3102 15 1 514 3239 1759 3 265 11 187 1 18 2 293 507 4 1 387 334 3 1592 23 76 311 112 9 18 3 76 334 10 738 116 4148 5 99 285 1 3200\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 1 80 7606 3 210 684 267 8 24 117 575 154 178 6 6113 1822 3 1 102 466 171 69 8169 3 1954 22 3182 8169 6 46 1230 3 2670 3 130 24 100 9094 5 2785 13 8155 3 1 506 32 2868 2247 22 1 59 1362 3016 7 9 345 525 4 2 135 1954 276 7 25 518 3 1 282 244 242 5 2023 69 8169 276 14 45 444 128 7 13 8170 7 9 21 6 404 105 51 6 162 4664 38 9 21 29 513 7224 925\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1547 10 12 9 18 32 357 5 4726 10 12 254 5 99 73 8 314 5 99 2980 10 34 154 326 19 8 336 768 98 1 398 177 8 214 60 114 2 6455 7 3 60 12 8 617 56 455 235 38 44 318 8 219 9 18 19 6994 8 339 241 60 54 55 369 146 36 9 26 107 15 44 442 34 125 110 297 38 10 12 540 17 10 128 485 36 275 1339 7 1 968 12 242 56 56 254 5 552 2 9006 105 8 449 60 2236 5 634 3 8 54 112 5 64 44 15 2 148 201 7 2 148 108\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1 1063 4 1443 4466 33 57 5 1743 9 431 7 535 2569 42 167 78 4419 9345 4 3640 757 5569 3502 32 1022 358 3 12 1991 30 86 4342 14 39 115 13 4196 1 1278 339 39 947 5 1743 146 547 35 145 3584 73 4 1 4466 1 397 2183 47 4 319 3 88 59 1042 2 3450 431 41 300 12 105 1415 29 1 85 5 26 446 5 9 9 431 93 4249 1 570 1635 4 4491 19 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 336 9 108 10 12 37 109 84 121 3 589 3 5054 9432 8 112 502 9 28 20 14 84 14 17 128 115 13 872 4753 3 367 710 109 9 6 1868 2 1091 18 20 37 330 4 34 51 12 2 640 300 116 20 1100 15 2008 850 3 44 532 262 1 185 4 44 20 44 3 1 857 12 152 20 3262 17 2201 300 2890 1155 11 13 724 1 622 7 9 18 6 1111 8 112 1267 104 3 2201 3259 6 46 8 112 34 1 1267 2688 36 11 259 11 12 242 5 8877 44 3 49 60 2183 295 3 2006 44 958 766 3 27 1049 44 1 7875 574 4 49 12 147 10 12 1050 1609 73 1 5740 941 37 4619 44 12 36 850 50 13 872 93 1 8 112 1 9858 1 5616 22 1111 22 4544 3 4 448 198 276 46\n0\t431 4 1 10 741 7585 3 23 118 236 160 5 26 174 431 398 4514 10 93 343 36 8 39 219 185 755 5 2 102 185 108 51 22 97 6811 16 48 337 540 9874 33 165 33 2183 47 4 2128 33 143 118 1 344 4 1 441 33 405 5 90 2 2824 94 283 9 18 33 34 478 46 9432 8 12 133 4327 1323 140 1 9273 34 4 2 2585 8 785 9 265 98 523 255 19 1 412 3 666 75 3455 358 172 4 25 6900 3 12 3219 30 2 1658 3 643 29 1 717 4 4172 27 271 32 2 1243 7 1 1692 5 25 469 7 75 38 781 75 27 165 939 75 38 781 75 38 781 43 52 9278 8 173 55 1346 48 653 7 9 18 73 10 4059 34 125 1 1888 8 152 214 512 667 7 194 207 1 8 175 5 8015 9 753 30 667 51 6 128 2 53 18 286 5 26 1001 5 1 1132 420 36 5 867 45 317 160 5 87 194 87 10\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 3 29 2 346 18 856 7 3092 3 1 8285 165 79 5 64 110 2 267 38 6630 81 69 1 915 729 863 679 4 81 295 32 2 211 3 135\n1\t165 15 1 4 1 1125 72 61 46 1108 9584 42 2 1152 11 1 251 1168 39 49 10 12 39 1790 5 576 53 77 1 313 534 78 52 68 116 855 249 1199 10 3738 3404 3 6126 14 237 14 238 5655 17 1 7659 4 1 120 3 4042 5 1523 199 4 1 1829 11 72 543 341 11 1 67 6 274 7 1 958 863 1 1646 2757 3 1 859 32 101 7 257 2121 20 9695 1 16 137 35 83 36 5 26 285 17 154 2592 3 5334 1373 3824 5 1 8942 72 34 90 543 257 221 688 7 1 769 1 1193 4 35 23 22 1936 87 23 694 155 3 4258 116 438 5 194 41 87 23 70 65 3 87 146 38 1947 16 137 35 24 58 1412 17 5 16 5336 41 9414 9 251 450 16 137 7824 100 57 5 543 1 6370 9 251 11 859 457 1 4 1011 238 2815 10 6 78 52 6577 3 6886 68 80 249 145 496 945 10 1168 183 10 88 56 2382 77 298\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 88 26 832 5 16 43 81 5 70 101 314 5 368 397 1 1177 6 791 311 2 1673 4 1 1039 3 1 5070 538 6 91 204 3 51 395 4 3242 2389 2171 15 62 13 1226 417 3 8 544 133 197 1311 48 5 7093 3 1 74 178 202 256 199 1294 10 384 46 3 7883 98 72 1459 65 19 1 1511 4 1 8387 3 56 544 5 335 13 499 6 46 722 480 43 373 187 10 2 680 45 23 1116 84 6625 896 9625 9626 5489 6 4 5871\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2343 2 345 1854 4 1730 613 6862 6 5148 19 1 756 7 1 133 4 9 5712 864 880 28 63 59 449 11 1 697 5057 11 951 5 1232 11 951 5 1 4 1 3874 602 5 90 2 600 98 1 4 1 1137 4 1962 98 5 26 446 5 144 1 2457 337 77 5100 3 12 757 47 4 1 1025 73 45 10 1 7 80 1678 22 160 5 26 130 33 55 70 2021 2 2 5854 4 2 9175 125 1 2066 123 20 1 697 3052 4 1 9175 1013 1 454 40 1 215 9175 7 5361 45 1 6 765 32 2 1182 10 6 53 227 16 31 17 10 123 20 3237 467 1 9175 6 128 7 5957 220 8 617 107 2 32 6100 669 190 24 1155 6100 88 26 7\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2413 3672 442 6 5 9 18 100 369 23 567 113 1430 178 3 226 2456 224 178 32 1 6 37 68 28 560 27 789 1 1468 4 18 255 46 542 5 113 66 6 1480 1 250 1820 101 11 1480 2 1263 277 460 106 14 7 9 18 2413 2995 1 21 1135 19 25 6 436 1 250 302 11 9 18 89 2413 31 1003 1563 1792 376 1417 30 1660 21 40 327 709 2816 854 48 151 9 21 216 6 1514 5 131 25 601 66 25 7 4090 5 1 687 1563 1792 238 18 12 1417 30 2 967 66 12 53 17 12 169 5963 7 3770 5 86\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 455 97 584 38 9 21 101 322 8 472 50 680 49 8 159 10 16 2 772 2154 29 226 13 150 219 194 3 8 24 59 2 156 708 38 13 6696 464 4509 464 505 6774 91 13 150 100 107 95 527 18 7 50 157 37 49 1 857 6 573 68 29 225 90 1 2026 146 52 1470 17 205 22 248 3605 13 6463 1 59 1061 177 38 9 18 1240 50 6 3429 60 276 327 7 9 682 13 6570 38 3951\n1\t1953 9 721 1 3709 6316 4 147 887 707 7 17 7817 7 1749 5025 4569 66 4831 1668 3 866 19 1 4124 13 154 250 129 7 8675 125 79 380 2 84 1663 1752 3 258 8567 22 1201 7 62 5763 871 14 2 3519 379 5 129 3 2 245 10 6 3543 3 11 187 43 4 62 2049 216 5 6177 33 301 7165 9 108 3543 152 266 2 129 11 153 4960 41 634 36 411 29 399 7087 8138 5 25 2215 193 129 40 52 412 85 68 33 205 130 26 1050 5 26 914 2842 14 33 1381 1594 3 352 239 82 533 1 803 13 93 266 2 84 185 7 9 158 258 1 462 788 125 41 8675 5505 30 1 2190 3 406 2777 30 5267 7 28 4 1 80 1127 529 4 1 158 289 3543 712 265 5 4258 47 25 1687 3 17 9 933 788 132 1883 1900 11 243 68 25 9788 10 25 8084 34 31 399 8675 125 79 6 31 6133 3279 286 97 268 211 158 3424 30 86 491 914\n0\t1 108 10 128 79 14 5 48 1 1421 3410 17 4547 597 11 16 1 859 5 13 92 447 168 8 2309 22 377 5 26 722 17 8 149 512 2227 35 40 447 36 3559 33 670 1337 1 2023 140 1 2282 73 4 7947 987 3051 10 151 50 522 8453 17 20 7 1 3490 517 56 254 5 365 3293 13 1833 7947 8787 3308 3039 44 2 8 57 58 9208 15 656 1251 32 1 233 11 60 173 2497 104 60 173 634 3 4088 19 1 233 11 444 2088 3 13 5944 8 2893 2117 47 4 1 856 45 8 1808 1390 5 64 110 1 120 22 687 3 24 332 58 258 7947 275 130 369 44 118 11 39 73 23 899 116 522 2 163 153 467 317 7121 13 3926 1 263 3 857 3084 314 463 2 163 4 216 41 2 1484 3 43 8 152 544 5 230 2692 16 1 1041 3 62 2057 1952 45 23 1548 116 2128 3 116 1537 1451 87 20 351 116 85 15 9 1526 525 29 2 2803\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2985 3 145 2 2437 2112 17 9 12 39 105 78 16 2 1455 9828 10 54 56 5576 32 2 156 362 5107 14 5 35 127 81 22 3 48 33 22 6306 229 138 16 1 199 411 9497 11 9 818 114 20 8044 25 918 3 23 63 64 9333 13 1 22 1 6066 3769 6 1 2599 1508 6 2 5251 1 6 53 5 8790 13 5891 832 5 787 1 3021 764 456 19 490 480 10 101 125 358 719 2043 1479 33 110 6080 72 83 70 5 1 1482 1878 17 1 226 21 72 1243 1 2519 12 394 268 138 3 8 83 56 36 2030 50 379 666 690 128 276 53 15 1 3 2 156 1988 7534 37 236 8 670 51 286 13 5094 38 195\n0\t1786 11 81 720 1786 243 68 134 146 385 1 456 36 1786 2 260 1786 41 116 6853 1228 16 447 1786 14 123 780 7 148 157 5506 4021 409 3 6806 170 1334 8 230 1140 16 600 20 59 22 25 1007 8321 17 14 4901 14 102 386 409 152 220 37 439 27 1071 58 3643 73 5395 11 2 164 691 224 2 4200 6 2 1358 600 5395 11 23 228 1288 45 275 4632 29 23 600 3 5395 11 8 112 4114 6 2050 2346 409 45 59 257 221 61 37 1438 600 109 14 367 1786 6507 6 2838 1786 409 850 998 19 1334 6 1283 31 3083 19 9857 157 579 6 9 129 1273 41 345 9505 1785 8 118 48 28 50 19 409 3 678 11 1334 1 487 1887 11 45 1 67 6 274 7 98 144 87 81 396 2951 2389 600 1564 2588 3 2062 9916 32 1 3787 1785 17 14 10 498 47 285 2 119 1298 6806 1 532 1 409 98 2 570 119 1298 11 303 79 507 36 31 3399 16 133\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 1621 417 217 6 2 1016 135 2 892 21 32 357 5 714 2 1386 381 110 7685 115 13 1856 6 4083 244 2 2055 5 99 122 32 357 5 714 2356 6 313 14 1 244 2 1996 276 3007 9055 3 1917 2 53 1663 17 444 37 1053 3632 6 60 153 176 161 29 399 128 1053 7940 276 1386 3 123 2 167 53 1614 508 22 93 167 3629 13 5 1621 417 217 6 2 313 83 773 9\n0\t2 11 1501 25 84 1 1145 204 12 69 5 134 1 225 69 2 222 3234 200 1 1145 5742 15 1 4468 19 1 17 936 7950 43 426 4 1796 32 11 2378 122 5 176 29 1 990 3583 1519 172 7 11 5926 387 2 568 77 7283 1204 4 2 3895 1 3901 637 69 66 63 3 2 1114 4328 4 1 18 6 274 243 7 7283 19 2 1776 16 1 66 7950 963 615 3 5 932 2 84 831 411 15 43 426 4 4922 11 151 122 2 84 4880 14 2593 13 3 3655 61 205 167 53 675 3655 2734 142 2 280 7 66 244 1 53 259 167 322 292 8 3478 214 122 2 222 3784 69 258 285 1 168 274 7 9033 1 67 93 385 2 3947 3 136 10 1525 50 838 10 143 437 340 11 9 6 56 2 1045 243 68 2 203 2493 3 11 1045 12 7 86 46 362 8 1331 1 18 693 5 26 757 2 222 4 10 12 1233 69 162 2425 17 93 162 364 68 656\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 9 18 544 47 14 146 11 384 36 2 3957 4 31 161 600 287 536 7 1 4905 685 374 2334 16 62 478 98 10 7 1 6131 2603 59 643 23 45 23 159 768 1 6131 2603 7 9 18 643 23 58 729 144 114 33 321 1 25 7139 1327 41 1 3 62 8 96 1 18 2893 71 514 197 450 10 181 36 1 1278 1407 200 3 636 11 33 965 5 256 1988 81 7 1 18 39 37 1 6131 2603 54 24 81 5 5372 42 327 5 64 2 167 2088 282 20 101 1012 14 2 16 2 6193 1976 5 17 8 511 1379 2512 2420\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 131 220 444 56 56 695 44 900 1537 1 1040 1 77 788 41 90 9 1 131 19 2229 28 4 1 156 289 8 90 272 4 2034 1 178 15 1 2547 161 315 886 7 1 947 195 11 317 542 23 87 176 498 543 15 5196 3 2530 295 1 3105 15 3429 42 34 37 211 41 37 439 42 39 2 163 4 1434 1 289 904 985 22 44 975 3 1 73 479 105 7222 8 56 173 947 318 1 398 983 146 8 617 343 16 95 131 7 2 223 5623\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 107 2 163 4 6 1 74 28 8 117 2117 47 4 1 856 778 83 55 1460 2424 110 9 6 38 14 509 2 1902 1814 14 28 63 225 23 83 24 5 946 5 99 2 1902 9299 1815\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23 1374 11 2047 32 1 808 1053 435 6 7 9 108 6 2832 8 1887 9 94 765 3 159 2 572 4 25 2832 8 3394 11 259 1609 276 36 11 259 32 11 18 8 159 7 1 98 8 284 52 3 10 367 25 435 12 31 353 11 57 2 156 346 2237 94 3698 9 6885 3 4485 15 2 1776 19 1 8 1640 10 56 6 25 435 7 1 108 42 722 73 1677 7 1 347 123 10 798 122 101 7 9 108 436 25 585 12 3238 4 25 2894 121 329 7 9 2493 17 27 321 20 1142 8 96 25 2002 114 2 84 329 7 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 324 4 626 274 7 1 346 3368 569 4 1 767 1124 2 4 1 6879 3929 922 3 1676 4 423 2421 3 1549 3 3 2295 8 12 591 1475 30 102 4916 1 74 6 1 67 4 1 170 35 440 5 65 2 1151 16 25 60 31 5081 2421 4 112 3 500 1 82 431 2334 3 161 164 2057 7 2 2430 3 25 379 242 5 352 122 1288 15 591 4183 6 1 111 1 161 342 24 5 566 62 111 421 1 4 1 2430 3 62 8289 15 1 4 1 2430 1176 1 4432 4 2579 1074 15 3210 9 18 6 436 364 17 10 6 373 2 84 391 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 18 57 37 78 5796 17 664 5 2032 3141 3 93 2 904 263 643 1 250 119 4 1 135 1 347 324 4 1 21 12 78 1824 3 109 45 10 57 71 248 260 7 1 477 15 32 1 1158 10 88 24 71 2 46 797 2073\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 617 107 78 1091 1073 17 45 9 21 6 235 5 139 6934 145 4565 5 64 1 641 17 1535 857 270 102 46 264 81 19 2 1285 32 3512 5 4302 94 31 532 4 4069 1937 11 44 2342 766 6 246 31 1971 15 1 379 4 2 3326 8 495 3673 235 9209 17 48 2439 6 2 46 211 251 4 795 15 1 425 7230 50 796 7 1644 616 40 220 8 74 159 9 135 8 354 10 5 261 83 369 1 8124 4 1 170 537 3282 23 77 517 42 2 231 4215 35 112 267 69 55 137 8161 15 1 7337\n1\t14 1 82 4121 13 252 18 1008 20 39 84 1206 17 1904 120 3 2 658 4 53 5773 1 265 6 1 1284 833 204 3 835 327 6 1 1993 4 2 6098 6132 30 60 20 59 12 2 1500 6130 17 2 46 167 287 3 28 15 3439 60 5866 93 15 4 611 3 479 198 2 299 2204 5 99 19 1 941 13 65 7 1 3787 133 217 19 5165 10 12 2 148 2382 1 74 85 8 159 9 5 64 132 2 170 9348 58 1197 68 1310 16 9 7404 292 60 57 11 386 362 8 4546 44 672 260 1695 93 7 9 18 22 1911 4647 30 6697 3 8126 17 8 24 5 920 11 8 24 286 5 47 8 173 149 1159 17 8 118 444 7 3127 13 571 16 43 4112 7 1 74 957 4 1 158 12 299 5 99 3 6997 1133 69 292 138 7 4047 69 6 8308 4095 13 252 6 311 2 4358 6945 21 3 53 28 45 23 175 5 5 335 1 84 2447 4 5124 3\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 1064 9 246 2 17 420 243 26 68 8 100 159 9 18 49 8 12 4618 8 1310 7 112 15 10 1 74 85 8 159 10 15 50 277 349 161 4111 8 63 99 10 125 3 125 3456 13 1701 1 103 121 1692 114 7 44 60 12 2 360 672 16 46 46 2959 1 265 56 1179 1 18 5578 1 121 12 336 1 23 56 886 3 1 33 61 39 1319 1 2769 1 4014 2813 46 2593 13 252 6 2 360 141 258 45 23 22 77 112 4260 50 752 40 107 1 18 38 2992 268 3 128 196 2337 29 1\n0\t116 18 47 1 1945 15 2 625 2082 7 10 145 128 242 5 842 47 45 11 12 1 210 3710 2233 41 23 24 17 8 2988 23 8 63 87 2 138 1418 4 116 672 68 1 1054 3615 35 143 55 5764 8 273 449 23 4446 122 7 1 7853 14 25 8 63 209 65 15 2 67 3 2 119 11 63 26 6105 5 116 1 469 4 116 6736 3 8 2988 23 72 76 652 23 2366 8 93 8 175 5 139 7 1 2132 11 151 81 2564 45 23 369 79 7 8 2988 72 76 90 2 18 11 81 76 1243 295 3 24 5 24 2 4784 38 194 2 686 179 8020 7509 13 3520 9 6 50 4335 7 523 16 970 5 1042 50 4208 6492 5 23 16 1 1734 4 28 4 1 113 1563 1792 2641 8 24 117 107 896 16 1 2096 20 2706 3 37 23 637 10 91 121 8 637 10 1442 505 73 23 24 3114 16 910 172 11 3520 6 1101 3662 1609 1714 116 8020 153 2420\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 190 20 3237 26 2 2654 21 30 2001 5049 42 128 279 4498 1 250 302 144 6 73 94 9696 9 158 23 70 1 507 11 819 93 2830 1 4 1 58 729 618 53 41 3133 13 150 653 5 64 9 21 7 31 706 6364 897 29 3 193 29 74 10 784 5 26 39 2 5210 4 4198 1 21 6 237 32 101 311 13 1226 272 6 11 45 23 597 1 21 507 3 8627 1 21 40 248 42 42 8328 2 793 4 1 958 11 844 23 507 8881 3 10 12 436 9 166 507 11 1 21 7653 5 3684 7 1 2543 10 13 858 4924 190 20 348 2 46 53 883 441 3 29 1 166 85 86 120 190 26 3 2775 245 10 93 6847 37 109 9 426 4 7893 2277 5 70 47 4 1 3052 66 205 1183 3 191 55 1 1554 22 14 14 1 33 5285\n0\t43 38 36 2094 8 50 671 19 2 5869 522 11 12 100 8 219 7 1011 3276 4621 14 1 2391 33 61 1356 1 12 332 7 1423 4 3 11 1 61 14 33 61 2473 8 57 5 55 6113 49 8 159 11 1 2217 16 2 5939 16 9 6968 12 19 2 14 31 15 456 32 239 15 8485 428 7 1 8 57 5 1006 1 1145 4 1713 6 11 98 8 560 45 8 88 209 65 15 2 103 146 5 357 2 1028 13 1601 7 34 1 363 61 1 3710 4925 273 1 215 121 14 3652 1 67 1 1713 55 7 2 91 111 33 34 71 9839 3 1 415 9448 17 8 214 512 2926 9 1606 10 12 2 299 836 10 590 47 5 26 2 46 46 91 158 3 8 54 20 354 9 177 1013 28 6 77 91 3609 2605 581 17 1604 316 8 12 279 2 53 2499 8 1028 124 58 729 4875 17 49 9 57 442 3638 5 194 10 71 78 828 369 79 4000 867 1028 12\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 94 133 1 398 238 376 864 249 1125 8 12 3414 5 64 1 18 260 1695 8 12 4 132 2 4755 4 147 4045 17 8 12 3202 619 3 1740 4 611 12 25 692 84 8550 17 3 2077 1525 62 221 9784 550 10 12 93 327 5 64 7188 3 4297 32 1 7 62 2691 2237 919 20 6 1 3 25 6002 29 5909 147 3508 7 1 562 6 109 2530 1 109 189 44 129 5046 3 59 101 7 10 16 1 1686 8 336 75 1 562 12 262 260 5 1 226 8689 3 98 20 2 84 141 17 31 548 28 34 1 111 3 2 84 4755 16 102 2104 19 62 74 85 47 4 1\n1\t526 4 8030 17 10 498 47 5 26 37 78 3744 12 609 14 561 4841 69 2 1946 15 2 678 5380 16 125 1 448 4 1 141 25 67 1633 255 47 3 432 1 272 4 1 471 72 93 70 1694 5 43 4 1 3033 1554 69 80 4369 93 2335 262 30 809 77 13 252 213 2 1842 141 17 10 1680 43 1127 19 1842 49 1944 30 1147 666 1352 83 474 48 261 2615 14 223 14 33 83 328 5 1426 10 19 261 4841 7870 213 69 42 69 66 424 7 233 1240 50 48 396 4859 16 1842 7 257 4277 51 22 168 4 189 943 647 3 1 570 178 4 1 18 12 3711 14 4841 155 19 1 206 482 40 1 443 1633 5497 37 11 1 570 383 6 311 4 1 2743 69 155 5 878 11 1 1734 4 1 6 5 70 81 5 176 65 7 1 86 72 176 65 77 1 4053 7 3078 146 2974 68 618 72 2497 5 6825 110 9 6 2 46 1127 3 46 5487 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 491 11 37 97 81 11 8 118 617 107 9 103 4773 1603 8 24 590 19 5 10 24 209 155 15 1 166 48 2 84 13 3440 100 78 4268 16 3360 4504 2720 25 498 7 2042 7747 3 566 1957 131 17 25 278 7 9 21 14 2 3413 6 534 3 260 19 13 422 7 1 21 380 313 453 3 1 1324 673 3 2216 3461 7221 1 1 356 4 9225 16 1 120 863 14 33 209 5 853 48 40 71 56 13 92 59 177 11 863 9 32 2 394 7 50 1158 6 11 1074 5 48 310 183 194 1 393 6 2 222 105 223 3 17 207 1 59 4594 8 88 149 7 9 1280 13 614 23 841 9 21 827 328 5 70 1 2024 757 16 1 113 956 13\n1\t0 0 0 8 1868 997 9 155 7 7730 7 86 28 1679 549 29 2 18 8003 8 12 457 1475 30 10 3 50 1687 617 78 13 38 1 3153 2574 2865 3190 7693 25 157 3 502 51 22 3679 15 81 35 1066 15 122 41 563 550 33 4928 3655 6501 7032 4731 7309 3 776 3679 22 1795 15 3502 32 1 104 41 43 1213 10 6 240 17 12 9 56 180 107 34 4 124 3 479 39 1634 2865 57 17 20 2 222 4 860 5 1720 126 689 8 511 134 27 12 1 210 206 117 17 244 224 939 87 72 56 321 2 19 2 46 1669 21 8 87 36 1 233 11 33 143 328 5 90 2865 47 5 26 43 426 4 52 68 2 156 4 137 2166 3655 167 78 1595 1 164 3 10 255 140 1767 3 6566 93 33 400 2900 25 124 7 1 1217 21 1926 7 1 7490 3 128 42 4 796 45 317 2 2865 3123 1 113 3679 22 15 1018 2187 2865 3 7355 954 223 85\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 4 1 6310 3 716 23 54 24 107 19 2 1039 7 1 74 350 4 1 3782 4588 42 2 3983 4 375 716 1171 689 43 4 126 23 88 348 116 43 4 126 1375 17 42 2 1002 3516 2398 444 455 126 34 1448 16 48 10 440 5 1718 42 20 105 565 183 23 760 194 320 11 42 31 972 541 4 1033 3 40 52 1548 14 622 68 14 267 41 2549 2011 40 2 342 4 17 244 15 1 82\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 294 9668 3146 6 169 3478 2 203 3665 10 649 1 7872 67 4 3959 1741 4937 492 35 1843 5 25 19 3146 366 5 3 564 2 526 4 13 252 12 1 74 3 197 894 1 113 7 1 3146 4654 289 84 7 2216 1 67 46 1633 3 2000 1904 9767 1846 16 2 203 9929 13 2663 52 1846 6 1 4 813 3 2565 3 286 10 1373 1 6267 3146 5 6177 70 5920 115 13 7507 1 21 2289 4 4130 1072 4829 3 2 272 7 1 518 84 2862 3163 2 306 2073\n1\t14 4924 6 6305 6084 3 17 11 6 20 4485 36 15 13 858 2 718 883 152 14 2 10 8758 167 78 235 23 76 64 7 116 389 157 23 2497 5 1 990 7 15 5097 16 172 19 769 3 947 16 2017 7 1 80 1809 5 1236 2 3289 4 1 80 3215 5807 19 4482 66 69 1572 543 10 69 6 13 2699 1 1661 307 7 1 2736 69 46 78 642 79 69 638 3 236 103 1335 16 122 20 5 26 737 17 11 924 1071 224 2 376 41 27 247 2 19 1849 4482 39 2 3 145 273 244 8107 3 227 5 3539 11 235 11 196 52 902 7 6 2 53 9404 13 35 1148 9 76 26 30 86 3 34 1755 1023 19 656 137 35 112 10 139 19 5 64 31 751 1849 4076 37 277 16 86 1262 4227 3 2 184 16 261 772 227 5 751 9 19 305 243 68 1 1849 990 17 14 557 4 632 479 20 7 5123 204 5294 13 92 990 6 184 227 16 5679\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 369 79 224 7132 5053 10 12 2 84 1292 11 12 2175 15 2 586 1471 1 67 39 143 3347 3 12 5312 29 1293 51 61 37 97 824 5 9 67 11 61 20 41 61 929 77 334 15 47 95 148 5425 824 36 1 112 67 88 24 71 19 2 222 2425 3 1 321 5 26 428 7 828 1 212 250 129 1758 65 177 965 52 38 1 2505 27 12 5381 3 364 2379 2246 307 1143 2 53 9186 259 67 3 9 1049 2988 17 15 1 9505 247 5 1142 136 10 114 24 43 7 1 570 1112 980 10 12 6707 664 5 2 551 4 9 89 16 2 509 13 499 88 24 71 37 53\n1\t0 0 0 0 0 0 0 0 0 208 83 365 116 5 9 108 10 6 2 3765 4 1 129 1242 7 1 59 185 4 1 67 11 6 1 225 222 8902 6 1 233 11 6832 129 6 128 2191 3 20 7 4193 29 9 518 13 14 1 18 72 22 1463 15 277 4 48 6 160 5884 6832 129 6 848 34 127 81 73 444 1184 4509 638 8777 1277 6 848 127 81 7 639 5 2990 6832 6774 638 6 848 127 81 16 5677 48 80 81 38 1 18 181 5 26 11 630 4 127 22 117 14 1 7537 471 2243 1 6 7 2 474 16 848 1 1 59 848 11 5193 19 13 150 96 9 6 2 609 119 3511 7 1 1343 4 2 1032 35 3457 48 6 1 2088 56 6 6477 1 1277 56 6 8777 3 1 56 451 5677 835 731 6 1 7659 189 127 3 82 120 7 1 471 36 148 727 307 6 52 2985 68 261 1304 3 864 6 52 2985 68 2 108 70 125 8381\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1416 58 2156 2341 249 9182 131 12 117 248 9 94 399 137 1278 57 5 1810 19 1 410 588 1877 322 7 9 489 33 88 29 225 1810 1 319 33 2052 19 1 263 88 24 71 2 32 43 1032 1814 15 2 156 456 1253 16 5 5 58 206 88 24 248 235 547 15 132 2 9161 2991 37 1 238 39 4508 1 5398 22 2282 6489 3 16 1 1849 748 24 165 5 26 43 4 1 210 7 1262 2008 80 22 3243 3 42 34 7 31 396 808 7114 55 5132 7796 6 314 14 2 3 42 2 91 14 1 994 95 545 35 63 90 10 5 1 182 4 9 18 76 785 2 859 32 1 76 229 1023\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 18 1 67 4 1444 12 89 7 15 2 793 5 139 65 1 1700 4 296 81 29 1 4 330 234 2251 10 289 15 1 138 111 11 1 616 63 823 4 1 1548 4 9 21 6 59 1894 3 58 7 2 21 4 2921 10 6 4118 5 2095 593 3 1488 99 11 18 45 23 22 942 5 825 75 2921 7 1 104 41 45 23 22 2 184 299 4 626 8277 35 40 2 346 280 7 1 135 45 23 175 5 64 2 21 16 1 330 234 2155 33 3097 78 138 3 8 1274 10\n0\t537 6 1 9438 2574 35 40 39 1866 31 7 1270 4505 3 6 4106 30 2 164 15 49 31 161 493 4 3564 429 8893 7 1 750 4 1 1925 27 11 3553 22 588 155 5 4076 15 1 1594 4 1 3 1 3043 4 1 742 3 25 33 1112 421 1 510 13 659 2924 4 246 2 4051 53 1249 30 1850 3 1638 7 1 100 557 3 6 2 528 5594 197 1273 4 120 41 994 1 302 190 26 2667 30 1 3634 4 206 4666 5031 7 1 4081 4 1 2388 106 27 666 11 22 1 4 1 1186 6497 11 22 20 3424 30 1402 9209 25 3080 410 54 26 81 3412 189 5715 3 172 3176 3134 17 8 149 205 15 1 1186 8 24 2 752 3 2 2375 3 8 118 97 4 62 417 3 33 22 20 11 574 4 439 5108 1 206 9209 970 1745 313 5 131 11 561 4666 5031 6 332 1328 50 2400 6 13 9267 7 1 534 608 5617 87 7 1 534 608 1 8980 4 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 89 79 1584 9 18 224 12 1 956 8 179 8 24 5 70 1 82 104 9 259 40 1716 8 12 1140 8 9 6 2 904 525 29 31 574 18 15 447 3 59 1906 171 3 9 6 31 1335 16 1 59 1362 3608 12 1 1167 3 4523 925 9 628 105 78 4202 194 20 279 1 991 4 1565 194 9 6127 5 1 3224 5 1 429 8 449 27 40 43 82 104 66 486 65 5 850 3 1 178 12 46 1495 8 365 11 9 6 48 2995 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 1748 1570 1707 386 21 63 5368 738 1 700 4 1 1818 553 301 197 1765 10 6 2 1117 2055 38 2 170 487 35 7308 2 2660 1678 122 7 2 7970 98 271 142 5 2860 1204 1 2660 5295 3 2 3406 94 2 3166 2 8364 255 2701 255 7 140 1 3406 3 2177 1633 16 1 1 5295 791 789 146 6 160 19 3 432 46 14 1 1398 255 46 774 5 1 1 5295 3130 689 1 1398 4705 1 5716 122 155 7 1 7970 3 140 1 3406 27 310 7 39 14 1 2010 20 1311 48 40 7553 196 1877 9 12 3007 829 15 148 75 165 127 1804 5 5077 7 9 2352 6 8 59 555 9 21 61 1492 195 16 81 5 8 59 159 10 3464 7 49 10 12 1868 4988 17 10 40 4915\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 277 7 1 598 1536 7 22 1172 47 5 582 31 4 2 7965 4 587 14 1 28 4 1 951 295 32 1 1464 7 1776 4 2 2101 5467 3 6 2151 30 1 466 30 1 3775 1 1793 2010 271 155 5 1 1464 16 352 3 1 82 102 139 94 849 17 22 93 195 1 580 3426 2 331 2252 47 94 1 8766 17 87 20 853 11 33 22 1323 77 2 5072 274 30 1 10 6 1024 35 3389 1 1393 8821 89 2640 158 55 193 10 6 1163 4210 9824 3 9692 87 187 46 2318 3 3765 453 15 46 109 7 1 462 280 3 46 3775 14 394 47 4 1731\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2054 8 118 8 1513 36 9 18 17 8 1405 32 3813 4247 4 2 873 5108 5 3460 761 8 1309 533 9 223 14 23 186 77 3110 11 9 6 20 1 113 18 7 1 1561 42 2 53 13 1226 430 185 6 648 5 25 1855 7 9292 15 1 3185 2 542 8689\n1\t81 77 358 137 35 70 1 1399 3 137 35 5074 81 531 1643 48 33 83 5084 9 21 40 2 709 541 3 1817 11 40 71 4836 42 2 84 3 2 84 4697 42 2 425 1992 108 2 425 18 16 275 35 451 2 53 2499 3 45 116 2821 6 105 300 9 18 213 16 1259 3 23 190 321 10 6 31 11 6408 40 721 9 21 19 1 4892 220 1 362 7299 246 100 107 1 822 4 326 19 1771 286 33 230 31 2868 324 4 218 6 2 53 3742 8 149 10 1164 11 50 102 430 684 1545 24 100 71 612 19 1771 1 82 101 2013 218 3781 700 66 1996 40 1407 19 220 1 362 1575 14 8667 1891 5699 5 6 7 670 154 388 1320 7 1 4236 51 6 58 2028 7 1 1162 300 137 35 472 1 85 5 9 76 335 5699 5 145 273 11 28 6 227 16 126 5 519 15 717 81 1621 62 356 4 41 519 10 39 271 6667 3 33 149 709 7 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 4373 23 7 3 196 23 3863 19 2202 116 671 19 1 1250 1 3392 6 609 15 1 1567 546 3 1 333 4 1688 3 240 443 3407 3 66 34 734 5 1 3800 998 10 76 24 19 1038 2232 6 215 3 264 32 95 82 18 23 24 575 6 10 2 1153 41 9 2445 76 24 23 6514 1 1552 3 498 10 270 140 1 3 10 40 31 230 15 42 534 4 8226 56 726 1 27 6 2 84 353 35 6 20 254 19 1 671 27 56 25 212 101 77 9 1174 32 1 857 5 1 111 10 6 383 151 9 2445 28 4 50 7219 8 354 10 496 3 7493 5 64 52 32 9 1688\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 56 91 108 300 1 210 180 117 575 1928 2 1420 1 197 1 1014 498 304 287 77 2 4016 823 16 1858 91 640 91 1429 2271 267 279 6515 8177 116 1773 41 186 47 1 3786\n1\t12 39 3094 3 9 6 1 59 18 8 118 4 11 40 132 3547 370 19 436 97 415 39 24 2 2478 16 3094 41 2578 1034 1 8 24 198 214 9 1820 13 92 21 792 15 2 701 3 2 3578 4734 4298 30 7565 9 6 274 7 1 774 958 3 1 522 4 1 568 1644 7480 40 71 14 1 21 23 1108 853 9 6 2 464 3 496 958 296 4277 1 1086 414 7 1612 15 2792 3 34 1 319 63 16 1390 11 209 385 15 1 29 1 166 387 1 22 7626 3652 3 7 97 4021 536 7 2841 2588 41 2138 3 24 556 2 4969 3 1 958 276 489 115 13 4196 1 1086 164 1436 3 1 489 1387 27 88 20 414 15 8 56 130 20 88 2704 1 21 16 1038 245 1 21 40 2 84 119 3 121 3 6 5 836 3496 10 1008 2574 7481 7243 7 25 570 412 278 14 1 6008 5 193 20 16 1 728 5693 41 9 6 2 84 1045 21 11 6 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 20 414 7 7535 3 258 20 5 414 51 29 1 182 4 1 5240 13 2644 1225 140 6549 407 6 2 109 89 18 32 2 84 121 2593 13 5384 1 67 6 91 1623 51 6 2 67 29 13 150 343 1140 16 1 6220 1889 35 6 14 2 129 14 25 2002 2 101 20 2037 25 221 727 27 6 303 5 99 25 2823 35 6 93 7 1 346 569 2123 25 500 1 2285 100 55 255 542 5 25 7119 17 29 225 11 27 6 2130 1 4631 1234 4 1889 1434 34 51 424 6 106 27 1026 55 14 31 161 164 1 541 4 25 13 92 182 6 20 10 6 32 1 46 13 20 2 5971 1889 13 3382\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 28 4 1 113 4 1 1125 65 51 15 6122 510 883 226 1 562 40 2 46 53 857 7 66 23 309 14 3619 7 1 1776 16 44 23 229 118 32 1 215 6122 10 6 14 782 14 1 82 6122 4670 3 1263 8113 52 13 1226 6070 3615 47 4 9143 460 370 19 3770 5 82\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1662 65 15 9 14 50 3931 430 135 1 293 363 22 1115 16 1 4314 3 1196 8 63 320 1 494 14 45 420 455 10 10 6 311 2 1111 5092 6610 1 265 6 30 35 6 616 1293 6 1 5949 6 1 1751 6350 8 24 2 973 740 16 1 398 1285 224 2079 9718 7163 451 47 4 25\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 31 240 312 881 565 1 1503 7 632 303 14 5107 30 2 1235 506 981 17 1 3225 7 6 6936 673 3 197 78 3208 51 6 58 82 111 5 1431 1 21 571 1466 1 469 5107 22 1 59 240 185 4 297 126 6 9599 380 2 4233 278 14 1 17 27 40 103 5 87 15 2 263 11 6 5496 5 1 375 607 129 171 22 1130 600 642 745 14 1 632 578 14 1 613 776 14 1 2949 3 80 4369 8574 35 6 2450 19 1 155 4 1 305 1723 286 59 40 2 342 456 3340 140 2 9634 20 4869 69\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 9 21 38 2290 172 989 19 1 518 880 8 128 8521 320 1 158 258 1 278 4 626 8 198 179 2501 12 2107 14 31 353 14 80 1396 159 122 14 9349 202 1065 914 164 7270 3 415 311 336 5 99 25 124 73 4 25 9 158 245 2012 48 31 240 353 27 88 1142 27 114 20 70 227 871 36 9 285 25 223 3163 9 6 25 113 1663 27 6 400 1202 7 2 323 1174 32 48 8 24 8563 27 12 2 46 3 806 160 259 7 148 157 3 100 5218 227 16 127 232 4 2237 27 676 54 39 87 48 3197 419 550 9 21 1501 11 27 88 24 2970 52 8356 3 832 2237 1 82 177 8 320 38 9 21 6 75 761 4642 129 1306 7916 12 2 84 1651 17 9 129 56 437 1 226 178 4 1 21 40 1544 15 79 16 34 4 127 982 9 21 6 373 279 2 5786\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 179 275 6 160 5 87 2028 5 382 600 20 174 324 274 7 1 540 41 1592 600 17 28 370 6917 19 1 347 409 109 10 373 1026 1 347 167 4441 600 3 11 6 1 59 1069 5 9 9983 13 252 6 535 223 600 1 347 6 59 200 7667 6047 13 614 3744 57 1 5 209 19 204 3 134 5278 23 63 87 95 138 8 54 134 600 8 3 8 24 100 314 2 388 443 41 71 5 95 426 41 589 416 7 50 3223 13 150 1390 53 319 5 70 9 930 125 5 1 2736 32 1 4324 600 87 20 90 1 166 2082 14 79\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 56 6 2 1152 11 124 36 9 100 113 572 73 9 28 6 311 2 9 6 30 237 1 80 5040 892 267 8 24 117 575 86 1106 3 2217 22 20 5 798 1 1115 1440 8 63 3692 9 18 16 719 19 714 99 110\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 5 357 142 30 73 8 179 1 74 4 9 21 12 2406 42 650 73 4 3360 1663 1780 3377 13 92 121 30 34 602 12 169 53 17 3360 3686 1 108 1 1190 12 425 7 34 145 20 2 1598 4504 325 17 9 40 165 5 26 28 4 25 113 871 7526 13 34 53 911 5 1431 9 682 13 150 12 765 2 817 753 3 1 454 367 11 1 516 882 213 10 6 2667 17 33 5224 83 24 5 139 77 2461 2252 5 70 62 272 13 5944 8 419 9 2 1709 73 154 178 1940 755 41 358 12 9281 8 96 1 623 7 1 74 350 41 37 6 425 16 9 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 336 9 18 3 76 99 10 702 215 1298 5 119 4 164 6033 164 6033 8 96 9 6 3247 113 108 25 671 8328 52 68 80 171 6029 436 236 449 16 8648 7 2924 4 1655\n1\t5 149 11 10 12 89 7 9795 73 1 2032 1958 193 8 100 1457 7 8372 6 152 28 4 50 1522 258 16 1 49 8 219 9 18 1 67 12 152 46 53 29 1 357 17 98 94 38 2297 10 544 5 70 46 509 3 8 76 1 847 114 5561 6116 10 12 162 8 57 117 107 183 3 12 109 167 797 5 1861 17 1 18 1582 88 4 71 2 222 1824 10 88 4 57 8113 52 648 3 67 5 10 68 39 1194 5 910 938 168 11 39 57 98 16 1 226 715 41 394 269 1 18 1459 65 3 165 53 316 17 1168 7 50 1062 8 179 10 12 483 2043 8 118 86 3492 269 125 358 719 3 11 6 128 223 16 2 1254 17 220 10 12 509 16 80 4 1 141 10 89 10 291 36 10 12 843 719 17 790 10 6 31 1976 21 8 497 3 8 76 99 10 316 19 28 4 137 5 87 8 76 64 1 147 28 3 8 449 10 6\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5268 261 35 40 20 107 1 21 286 5 20 284 9 13 3422 8 617 107 126 273 114 1917 28 391 4 10 114 20 3162 79 29 179 11 7 1205 15 1 119 1 1298 29 1 182 4 1 12 46 18 127 22 81 35 2089 82 8 367 81 20 73 33 662 947 8 96 33 58 143 348 127 81 22 33 48 22 479 39 11 310 204 5 64 48 81 1600 36 33 35 24 6957 81 16 2 223 85 300 9 18 12 10 45 23 96 1 6 1006 4 12 10 37 5 79 10 12 39 1289 47 184 16 1 64 1 217 16 2 391 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 413 4 4556 1008 4719 8536 6501 7 48 6 229 25 113 278 5 6177 27 266 4959 2 164 4 4344 3 244 2 345 7626 7986 32 1 35 451 5 390 2 2875 17 40 922 73 4 25 1 522 4 1 2860 262 30 626 6 2 3261 8764 11 6687 3567 5 1451 1 21 6 38 75 9521 40 5 1 670 20 308 17 8704 1 453 22 48 90 9 21 4155 8536 6 1111 3 1 113 353 7 18 2994 380 2 25 113 1005 216 7 982 380 174 1195 278 14 78 1186 2866 1 21 8745 19 1 2 103 105 627 2720 58 106 774 1 952 10 12 7 1 3 2 156 4 1 120 22 39 28 91 561 6 39 37 17 1 21 6 2 738 124 1938 42 7910 3 2 360 135\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 567 427 666 297 38 9 108 10 270 334 19 1 1444 4 395 1444 4 1526 3 2027 988 1862 4949 5565 224 31 1101 988 129 6 654 3 34 27 123 7 9 18 6 1743 81 3 70 4611 125 3 125 307 7 1 18 5214 849 39 36 307 5214 8 338 31 1188 3236 73 10 12 2 16 349 161 7013 925 9 18 29 34\n0\t1 178 3580 262 47 12 105 78 5 1006 4 80 4680 5058 1931 7 1 1106 132 14 1 100 2667 435 1436 878 30 1 532 89 10 55 4266 5 328 5 90 356 4 127 4720 13 252 1196 74 334 29 7 8699 66 6 2 1965 436 1 710 57 71 16 21 1762 11 349 3 61 1770 16 146 14 4412 14 9 135 8 2786 1 223 168 14 2 3511 5 359 1 545 14 3418 14 888 17 49 6105 15 1 6747 5 1999 5 1 250 129 10 337 105 237 16 79 3 721 79 29 4209 5604 32 1 67 13 252 6 2 21 16 59 1 80 4286 325 4 21 1762 3 28 35 9894 58 32 246 219 2 21 308 42 2287 8 336 104 132 14 41 16 2 69 66 61 237 52 1577 17 29 225 419 1 545 146 7 1 111 4 1043 3 5 99 9 7461 673 3 1370 5494 178 94 178 39 726 37 11 8 214 10 3240 69 3 8 56 405 5 36 9 21 29 154\n0\t1069 3453 10 40 2 84 7 3042 35 123 2 609 329 5703 3 4670 8 88 728 64 122 246 48 10 270 5 309 2 323 1201 19 2 3459 15 51 22 43 304 2946 7 1 1153 4677 7 233 45 1 21 57 636 5 3684 11 52 10 228 24 71 146 828 1 697 1292 4 4 6 84 4095 13 3422 8 365 6272 4 4038 6 2429 16 7 95 53 441 42 1 1183 4 2 53 67 11 10 3316 7 3851 23 87 656 45 23 149 725 101 3336 29 48 23 149 7033 41 39 908 3977 98 1 67 6 2123 23 3 207 48 721 2267 5 79 15 9 135 82 1755 24 1505 9 204 3 8 83 175 5 70 77 2636 17 8 76 134 1 7354 29 1 393 12 591 3936 3 20 105 798 1 9132 1741 717 4 2 129 11 6 59 377 5 24 2830 2 156 172 4 3223 13 1601 7 399 51 6 1 4 2 84 312 204 7 17 1547 9 21 1082 5 3539 10 77 235\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 1316 103 18 66 54 20 55 8235 116 181 757 32 1 166 14 2 82 598 1545 125 1 576 102 6 3521 15 615 1 2838 5 3953 3 2486 146 38 7 1 13 3 1826 2278 6 2 1313 3 6 5 352 44 4785 2323 25 7010 244 71 403 10 34 1989 37 2278 1605 122 689 33 853 11 60 6 1 425 454 5 66 33 63 205 5576 4557 27 4283 60 693 5 3081 5 946 44 115 13 6 2278 5 1588 5 934 43 4 44 2147 7 48 276 36 1 482 2465 294 9747 3807 7 366 3 2091 6927 47 36 2 115 13 6 198 7573 3 23 173 134 11 38 2 163 4 8 2799 6 46 501 3 35 8 338 7 6298 5925 6 4884 115 13 2078 9106 866 41 17 7925 2571 3 29 2 1597 1507 811 36 2 1243 15 2567\n1\t855 15 327 9394 3 53 129 4974 1 265 30 578 6 46 2211 3 1 788 2450 6 8375 6748 3 6813 8 56 338 1 647 6 229 1 80 4 126 399 17 1 4765 61 29 225 7342 1867 5628 12 205 892 3 1 185 49 27 649 1352 57 79 7 50 1522 6 1024 31 1535 1518 35 6 3 8 1331 45 235 1024 8 555 1 21 721 7 1 185 49 27 2980 75 27 433 25 1128 3 144 27 6 1728 4 73 11 111 27 3084 71 52 1619 7 1422 4 7213 1 1252 136 20 40 86 211 3 3558 3 130 359 374 3 1995 6539 1 672 121 16 79 12 48 89 1 108 294 1867 2179 3 1752 34 419 1195 2137 17 293 798 40 5 139 5 3730 9937 16 27 12 332 1016 14 3 202 34 7 399 9 6 2 53 108 8 83 70 1 5280 1582 8 5074 273 9 21 213 3454 3 10 6 20 14 53 14 2 4898 18 132 14 2391 183 387 17 10 6 53 1434\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 28 4 1 80 509 104 180 117 8 83 56 118 39 116 584 38 259 35 6 38 5 70 3 418 5 4488 275 422 3438 67 40 71 553 2 3583 1287 162 147 41 4628 38 10 29 2616 13 150 83 56 118 48 12 540 15 9 135 80 4 1 85 49 127 2329 4 70 371 5 90 2 21 11 24 459 71 89 2 1519 268 1704 42 56 2072 51 22 531 103 1269 177 7 126 11 662 56 7 95 1715 16 43 2650 9 28 39 153 998 116 3726 23 63 1351 47 43 211 3558 41 1269 1154 7 194 17 16 43 302 479 39 20 722 779 1269 7 95 8 555 8 147 75 5 1346 194 17 8 39 83 351 116 85 19 9 28\n1\t52 240 5 4815 292 1 1284 427 4 1 67 6 595 4847 7 375 412 4067 10 123 24 2 356 355 1 47 4 1 744 4049 19 137 1659 1830 66 90 3 712 137 202 7826 1025 314 3031 16 709 5957 286 10 557 37 322 258 15 7 1 1044 8070 1 21 6 1391 46 5687 372 109 19 1 733 5625 15 25 6145 3 1 2146 189 1 298 3 402 1342 169 109 3 169 7 2 857 11 480 6 595 4 2 979 1 264 120 7 1 21 22 1463 109 3 1084 6 373 2 1069 272 19 1 135 205 1 733 189 3 3 1 733 189 3 87 216 37 109 7 2 67 11 424 16 175 4 2 138 4930 6930 55 8005 603 250 6 4 448 447 15 48 498 47 5 26 169 2 534 129 3 1630 11 280 34 5 530 86 28 4 127 124 106 154 103 2252 123 946 3362 5 2 84 391 4 916 32 5 31 491 1077 10 34 2068 77 48 63 59 26 1991 14 1269\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 259 6 2 148 1 18 6 4 313 538 3 205 548 3 13 150 143 118 48 2 6882 282 12 183 8 2178 10 675\n0\t2 304 3 979 13 150 338 49 1 21 367 81 396 149 2774 16 62 436 7 9 753 145 59 283 48 8 175 5 2198 17 8 323 405 5 64 127 81 70 5 1 4141 3 10 100 13 614 819 100 455 4 95 4 1 1154 1463 7 1 21 1704 23 190 149 126 1476 17 51 22 138 16 34 4 1 1154 675 45 23 175 5 99 2 53 18 11 2492 38 1 139 64 1 164 35 247 939 45 23 175 5 284 2 53 347 38 7652 2857 284 30 45 23 175 5 64 2 21 11 2492 38 264 15 3950 6932 64 9171 157 2243 10 63 230 1495 3 2288 29 34 7 399 23 130 139 3 284 7652 7367 41 5978 30 626 9910 4071 378 4 2721 116 85 19 9 682 13 150 1797 24 2 46 254 85 685 104 2 868 32 755 5 3623 17 9 28 12 2 46 806 16 7224 13 92 1324 462 6 3040 1 81 7 9 21 83 118 1191 2563 1 210 18 180 117\n1\t33 70 9252 3 76 2356 2469 13 92 453 22 7496 737 642 1791 14 2 164 35 6 1774 5 543 34 17 54 1286 26 6958 2160 6 372 28 4 25 161 603 112 4 53 5515 40 6191 91 9056 6 2 2599 29 1239 17 2432 3 8481 6846 122 77 2 138 2990 4 438 69 3 28 35 40 2 680 5 1791 7 1 683 712 8438 221 911 421 550 54 3882 19 756 7 1591 9766 4788 17 25 216 7 124 131 25 6988 14 2 1518 3798 14 25 4622 2192 35 411 7 7357 27 424 14 6 367 19 9 56 3526 69 17 27 40 2 356 4 2466 4576 6 31 240 3599 4 3 423 9986 603 3125 6 3446 30 44 138 7854 3 6 205 2 672 4 8882 3 2 7501 1997 11 60 6 52 68 2 170 282 17 2 6787 13 4 34 6 1 2134 1138 69 14 360 7 86 111 14 1 333 4 6753 30 294 5899 407 114 2 74 1090 329 1177 9 158 3 1 545 76 1116 1\n0\t7 50 5835 10 6 375 746 1296 11 9 21 6 2 3087 41 9293 203 141 10 6 10 6 747 5 64 9 21 7207 14 2 267 14 11 151 10 20 59 2 91 525 29 2 203 21 17 14 2 267 14 530 8 114 539 1024 29 75 3625 91 1 21 5265 13 252 18 40 358 53 188 160 16 194 1 3433 3 1 4880 4 9391 831 10 54 24 71 52 240 133 31 594 3 2 350 4 1 3433 3 4880 8981 19 2 4674 98 133 9 3095 1 1055 2219 516 1 21 6 93 6985 4605 3 2317 83 1460 15 9 141 819 459 1130 85 765 9 753 83 351 4078 19 9 108 42 11 104 36 9 55 70 1001 8 12 852 1 389 201 2 1176 5 26 8138 5 1628 2 442 314 49 2 3292 531 2 1392 153 175 5 26 8138 15 2 18 73 42 37 3133 13 677 6 162 1362 7 9 141 8 1019 19 1 2551 3 230 8 12 3867 1294 9864 755 47 4 394\n1\t22 1 398 2100 3 1 3319 6 355 49 127 9381 22 5 1 8619 33 83 241 1 170 342 3 126 4 253 34 9 960 33 475 241 126 49 1 195 568 498 65 7 1 616 3 1603 1225 77 1 3180 10 98 554 19 2 15 1 170 342 3 43 508 9553 1 7180 6 2165 30 2 3790 4 1473 29 10 3 10 66 6 86 10 6 98 9495 30 2345 5 1 8664 6677 4 1 3 4 939 17 10 6 59 20 13 252 18 40 2 687 1167 16 86 2916 3 2 346 3203 1 7180 40 2 53 891 3 2456 541 833 788 29 1 477 3 1 18 6 3971 13 92 5409 1 7180 1417 7 8368 3 2 1015 310 7 17 9 6 1 113 4 1 7180 3648 13 92 201 6 466 30 1312 7841 395 84 6 1 18 11 89 122 2 376 3 266 25 5657 145 20 1100 15 95 4 1 82 13 92 7180 6 2 191 64 16 34 1045 4238 13 9409 843 460 47 4 6148\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1028 6784 115 13 13 13 2811 16 2 1272 569 7 1 750 4 7485 2 170 2892 3019 65 2 35 649 44 102 584 1295 1713 5 9195 1 13 4550 1409 351 4 387 32 1 30 2050 3161 278 7 2 1659 1174 527 1604 1 102 584 66 90 65 1 6013 4 1 599 85 22 1169 89 527 30 9742 453 3 6707 593 30 3360 2941 1968 16 1 1143 4 1464 813 9 213 2 18 7 1 356 11 1984 104 22 29 2532 3114 7 48 27 12 403 3 12 6239 7 25 9131 480 2 551 4 104 2140 7 698 509 3 202 301 3816 4 95 1362 3 80 902 76 230 2048 3 5389 30 132 8856 1 3716 6 1169 1130 675\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 18 2012 5 26 2 53 5 2 3 7503 1199 2324 741 61 3353 65 11 1121 4492 9084 29 1 182 4 1 570 4207 1 389 1125 3 258 1 141 2666 2 176 29 157 341 7 2 979 707 15 31 483 298 701 50 4137 5 1 251 1647 223 183 8 1527 5 17 308 8 2830 157 204 16 2758 8 1640 75 1087 10 1306 3 1 18 407 11 9003 8 76 407 773 147 215 767 4 1 1125 17 192 46 9050 5 8488 3 1 1278 3 201 16 685 199 28 226 3289 29 1 534 601 4 1817 3317\n0\t1 48 38 2135 3 6 95 40 95 71 7 1 40 1 5916 2023 71 89 41 22 44 2389 101 314 3 16 2843 6 1 7 1 6 1 3104 65 41 8 1266 53 13 872 5 10 34 776 5 597 216 362 5 64 45 25 1327 6 128 536 29 2613 144 153 27 39 1969 13 724 10 196 2194 7 1 226 634 292 6025 553 4346 106 1 344 4 1 526 22 160 27 999 5 149 450 112 796 3 1327 8984 1030 5 26 113 417 3 93 2108 5 149 1 7741 51 213 55 1 4631 525 5 1346 95 4 127 2422 13 2044 26 1551 1 494 6 1233 17 20 670 53 227 5 90 65 16 1 904 120 41 1054 2876 13 150 455 28 4 171 3 27 5586 6829 7155 58 5413 58 8 3394 17 94 4 8 12 5751 29 1 1352 175 8 175 8 175 13 499 511 24 556 78 5 426 127 922 47 17 19 1 4335 5272 1 206 5469 11 1 21 247 207 34 23 321 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 4 6 2 8208 1378 4 2 1540 9 9359 1214 6 311 2 1894 4 168 32 82 341 78 124 1521 3353 371 30 1083 75 27 758 7 264 2955 2208 3586 876 162 5 1 280 4 1899 9 28 1013 23 39 24 5 24 154 18 89 3 55 11 190 20 26 2 53 227 1335 5 64 9\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 159 296 7 19 86 74 1042 49 8 12 128 29 416 3 1310 7 112 15 10 8 337 155 5 64 10 316 1 398 326 3 24 433 1810 4 1 604 4 268 8 24 107 10 9557 205 7 1 616 3 19 2229 10 151 885 333 4 43 4 1 113 265 3 759 30 1 700 986 7746 4 1 1556 8421 3 1008 1 700 976 3 633 6623 7 368 2008 1 607 201 4 918 794 3445 14 8781 7821 143 27 90 52 104 3 9672 7 31 9489 22 29 1 401 4 62 4239 1 3383 3913 5870 5 1 462 1224 151 313 333 4 1 8082 3 981 4 2498 3 4 1 1512 4 3 34 1 759 22 1325 17 1 80 1201 22 3796 46 3 1760 19 1 4 1 3 1352 165 395 374 4 2498 2013 1760 7 45 23 112 5618 64 9 108 45 819 100 71 5 2498 7 116 727 64 110 17 64 10\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 793 4 2 3287 1696 11 6 160 5 1621 297 1958 1 40 2 1 111 60 196 602 77 9 293 1 3 1 306 112 11 5027 189 1 81 4 2 103 3092 42 1795 1080 5 187 199 14 1122 2 8266 822 3 211 1211 8 339 582 1094 15 2 46 211 178 4 102 161 2479 7 2 13 150 112 1827 581 3 15 104 36 9 628 50 1062 3567 2 18 11 8 93 354 15 50 671 7 9 166 2489 6 9171 2993 13 2 267 11 97 417 381 14 78 14 5450 23 76 112 2420\n0\t2607 31 1297 15 298 258 94 1 6700 906 36 183 194 9 18 12 2 568 13 4567 508 24 1 804 4 1 141 66 12 459 6667 5 905 2159 39 196 5496 19 3 19 197 95 1273 41 5620 94 2 3166 23 39 175 1 18 5 182 37 23 63 139 408 1623 8 57 71 133 9 29 2293 10 54 24 71 78 4607 5 757 50 5685 278 6 855 29 113 3 294 7701 130 20 328 403 267 702 1 267 1637 4 1 18 790 61 167 4514 8 59 320 36 1882 1 389 108 373 58 8652 1308 11 79 7 41 55 5 2 3556 4295 7 57 2 156 4 25 909 382 2103 17 1952 73 25 280 3 129 247 340 78 974 5 27 143 90 78 4 31 1880 7 9 803 13 35 151 59 31 1635 7 1 141 12 299 5 176 29 136 60 12 19 1250 3 43 4 1 759 22 1434 258 1 567 3 3383 759 4 3 4420 79 9383 3823 317 138 142 39 2834 19 9 108\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4935 63 100 24 107 463 21 3 128 118 11 1 5588 105 6 2 5318 1 1193 6 1375 4397 114 10 70 73 45 23 1337 319 29 261 3 348 126 5 90 2 158 33 76 87 8895 13 1 1193 6 850 3740 114 1312 1867 1959 10 5 26 8 96 27 965 1 319 5 566 2 3 12 3446 10 20 2591 122 2357 27 563 1 967 12 160 5 26 37 11 47 4 27 511 55 1810 42 14 115 13 92 59 111 9 967 88 20 26 31 5314 6 5 24 57 4959 3 1312 1867 1 430 345 315 5950 13 872 5283 1183 42 39 631 11 23 1066 19 9 21 7 43 747 3 1 59 111 23 63 230 138 38 116 4570 6 5 26 1 5252 14 31 970 4450 9066 8 12 16 23 5 125 77 17 4648 23 61 56 253 31 991 29 144 20 394\n0\t728 25 13 3926 6511 77 25 221 923 7443 3 33 186 125 1 108 10 100 196 155 19 13 81 22 5 49 62 5 4842 22 515 7 5512 32 132 81 291 3 2091 13 81 76 175 52 72 83 321 5 26 553 11 1842 81 22 95 52 68 296 7377 321 5 26 553 75 761 1075 265 196 30 13 659 1 113 1146 1 4 2113 1850 416 243 9758 1 206 19 25 11 181 36 1 80 1784 185 4 1 141 3 10 12 105 13 614 61 2 222 52 27 228 24 2 53 67 7 122 38 25 221 217 733 5 3 1 5512 11 122 7 25 13 872 436 27 88 6883 25 100 2117 1 9355 1097 5 2 52 686 145 20 6775 1 4 5 149 47 75 9 34 424 17 2 1911 4 4203 80 4 127 22 13 92 7447 3679 22 167 501 33 83 1264 1334 3071 6 2 53 16 1 3 27 153 139 822 19 137 1885 3071 93 40 43 53 341 728 3679 19 600 600 3\n0\t1 74 419 31 6410 11 1 21 76 26 2 509 358 541 158 3 109 8 563 74 59 10 54 26 2 91 21 1034 10 300 73 4 10 101 2 21 41 300 283 1 978 17 9 21 419 79 2 10 12 55 210 98 358 3 48 8 909 74 3213 66 6 509 98 6 37 6293 3 98 9260 6586 850 3429 48 27 6 403 7 132 2 1021 3124 48 1609 280 10 48 121 6 27 25 74 178 6 6398 17 98 25 634 196 6196 3 27 98 310 5685 35 2666 43 327 1025 17 98 1 21 726 52 509 3 15 34 1 691 2113 3596 4 5407 541 238 168 3 34 509 168 1 393 6 174 13 54 24 165 535 124 52 5 45 9 21 57 1333 1 4 59 319 162 422 37 6 174 1993 5 62 1307 4 930 1132 6 13 5685 7264 255 7 1 21 14 2 4 1684 9232 27 152 1745 43 2316 529 6689 6 6 1381 91 9260 6586 3 1 131 55 52 344 22 1976\n1\t169 1100 1566 9 18 6 5 131 48 137 81 46 396 96 3 48 922 33 3374 1 302 144 33 634 36 9 6 73 33 22 1120 47 4 62 3443 3662 33 24 5 889 81 35 87 1669 188 3 1942 137 188 14 45 33 22 1032 19 3229 33 357 2 1002 254 329 3 7 58 290 33 230 8 337 5 1093 114 4516 128 114 1882 14 138 14 1 559 200 79 49 33 61 34 125 62 48 130 8 87 195 15 50 1126 290 3 835 55 52 49 23 63 357 2813 20 73 317 17 378 73 23 24 107 9 9060 7 1 3186 814 16 949 32 28 601 42 2 3772 5872 2340 66 6 93 1002 509 6743 3 32 174 33 357 5 842 47 3242 7847 42 2 16 184 184 3 1 7060 188 22 531 248 5 70 47 4 9 33 259 1188 35 1505 11 62 1003 465 6 11 33 22 242 5 842 47 157 7 1422 4 2947 3764 136 157 6 20 56 2 5480 1689 6 152 332\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 192 770 50 111 140 1 4290 3156 2297 18 4007 1894 3 1 2779 763 5202 146 36 1 18 7 1 13 92 18 57 162 5 10 5 998 50 838 29 513 1 119 12 1 927 384 1 121 12 4878 1 120 61 13 92 113 178 6 1 2353 15 31 287 11 6 3424 5 4058 44 1524 4111 245 1 59 2771 9 178 40 5 1 344 4 1 141 6 1 466 919 35 40 1 80 1218 688 207 592 13 92 21 12 20 1535 19 95 3432 1 265 12 105 1 2036 12 46 2642 37 11 43 168 22 202 301 10 56 6 1092 3245 361 48 52 63 8 7952\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1 990 139 770 4 1 990 360 4612 7 1 4 1 990 103 808 4694 537 7 2269 4 1 990 13 3227 13 9 6 37 4878 3 23 130 118 138 3744 33 173 24 1390 23 11 5915 13 858 16 2367 109 1 177 11 63 26 367 6 11 27 6 154 222 14 53 31 14 27 6 2 2851 3 7713 209 19 1 2287 3 61 46 722 831 8 83 96 33 61 377 5 1142 15 1 2738\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 12 84 7311 8 100 284 137 17 42 20 2429 5 118 450 300 51 61 43 1208 716 8 143 842 47 17 48 1 1128 153 64 1 683 481 2287 9 6 132 31 21 3 1 171 22 34 1413 1 1167 6 696 5 11 7 1 484 17 20 14 534 3 2054 1 67 6 20 37 215 17 51 6 2 119 801 6 20 3 2 52 41 364 2065 8649 13 3371 9 141 23 88 309 31 240 3699 45 23 99 10 15 2567 83 99 1 1079 29 1 477 3 98 176 809 1 5 149 47 35 22 1 754 171 457 62\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 219 9 21 20 852 78 3 20 1311 235 78 38 110 8 336 110 2 46 501 3348 640 31 1930 5833 7 1 921 4 1 9448 6611 282 3 1 3 2 1428 11 721 188 197 101 115 13 743 1878 78 138 21 68 1 166 2024 763 66 12 509 3 13 92 59 177 11 143 169 216 12 11 1 1521 9448 2253 282 12 1070 1906 779 9349 3 237 32 2211 17 15 37 78 129 7 44 543 11 60 472 125 1 412 1875 60 12 19 110 4455 8 555 60 12 7 52 581 3 138 879 68 60 1227 705 180 107 2 222 4 379 3 2 222 4 1 3 33 205 485 36 3 180 107 34 4 763 3 11 407 6 5663 60 181 5 24 2 156 588 1095 37 646 359 50\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 74 159 9 18 19 2240 38 715 172 989 3 8 88 20 582 6754 297 38 9 18 384 5 1 2991 1 647 1 7154 14 237 14 21 6 3096 8 511 637 9 2 84 18 17 16 48 10 6 377 5 26 10 6 4083 10 196 42 1468 1 201 6 300 14 53 14 95 117 256 371 7 2 267 108 1802 3 1984 22 2406 16 9 35 617 107 194 8 76 187 23 2 1516 723 3728 889 65 7 2 346 569 7 7535 94 5381 2 3674 32 62 493 38 2 2471 618 49 62 493 6 4611 30 102 2475 35 4106 122 32 147 33 328 5 842 47 4687 160 19 3 34 898 2296 1 21 6 323 2 84 2471 267 3 6 426 4 36 2 345 324 4 59 15 723 3728 35 173 820 239 1885 3 7 7535 243 68 5202 34 7 34 45 36 5 539 8 54 2474 5975 23 5 64 9 108\n0\t2 1334 391 98 3 1712 5754 23 63 348 49 1712 6 7 528 51 6 2061 58 445 3 1 21 153 176 670 14 6898 14 476 123 2 547 329 1177 9 85 3 8 24 5 187 1365 5 2 136 9 21 6 91 39 16 48 10 12 928 5 1718 10 40 2 732 541 5 110 8 338 1 567 1079 15 1 847 3 8 55 338 1 265 4 12 2 595 6748 1 18 153 176 772 56 29 513 1498 11 5 95 4 203 703 14 16 1 1249 657 2215 6 2 222 161 16 1 4903 17 43 5990 337 77 25 129 3 1 631 7845 11 170 415 22 3592 5 413 15 319 12 5802 14 530 8 57 580 922 15 626 35 12 39 908 489 7 25 1174 1 624 24 34 165 84 3239 37 48 422 12 3021 4 126 7912 6812 6 2831 8025 2605 21 32 1 2032 3 76 3272 14 2 536 85 16 732 1637 4 157 285 11 9926 30 1 744 114 8 798 10 6 2 167 91\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 315 358 12 2 148 2259 16 437 136 1 171 114 2 167 53 2340 258 5584 51 39 213 2 5939 16 2 345 263 308 7 2426 1 18 56 57 2 232 4 8949 372 142 795 4 1 74 135 1 67 1220 7 2 573 29 1293 10 247 179 47 322 3 384 46 6905 3 3627 29 4352 13 659 1 74 2493 1 9110 57 2 232 4 1426 6378 23 57 2 156 293 3 10 57 2 232 4 230 5 110 7 1 5409 1 9110 40 2 1702 1464 13 92 18 247 464 41 10 39 3870 1 2022 551 4 2 138 4 1 74 108 2 163 4 1 166 161 623 12 6553 32 1 74 5 1 3914 3 143 56 734 95 5056 5 1 13 743 425 54 26 431 755 5 1 74 535 703 12 10 6 10 1822 4 8911 42 20\n0\t2671 4 1 843 413 8771 32 203 19 1565 1 823 5 528 1864 33 1416 45 33 61 1 574 4 413 11 54 139 19 3472 98 33 54 24 39 1 823 3 367 33 57 59 2144 10 94 62 8922 19 990 5454 1 823 5 2 139 8922 3 98 348 307 23 214 1 823 358 663 86 37 254 5 99 2 21 1311 11 1 8742 4 1 250 120 6 37 14 16 1 344 4 1 109 1397 96 29 225 28 4 126 228 131 43 5765 38 35 152 643 1 1 823 2105 1326 571 16 1 3349 951 5 3559 45 60 12 5323 98 144 128 1 45 60 12 5323 15 1 2389 926 98 144 5724 126 7888 1940 1 45 60 247 98 144 186 34 44 2389 142 1940 1 725 15 2774 5 8 323 2004 96 4 95 1087 3349 11 54 466 5 11 82 68 848 275 5 2303 62 2389 37 23 63 2222 65 116 9863 850 109 86 3245 17 59 39 3 59 3822 480 1 345 1252 1 121 6\n1\t5 2464 41 50 1916 76 13 6 28 184 258 5 137 35 22 3083 29 2779 2745 121 8491 34 7 34 42 331 4 7531 5 8950 1 21 14 28 9336 2418 4 8856 7728 55 1180 5 70 30 2 245 45 23 31 995 34 1 42 152 2 46 3794 3 6803 548 7172 11 1510 14 877 4 3 877 4 13 165 5 112 294 25 154 1009 1301 4 3 113 4 399 1 3 6279 8219 7163 14 13 4052 190 4 71 1531 7 4 2 1235 17 492 6 16 2 278 14 27 6771 19 1506 7 1370 4038 29 25 164 100 1977 3 1864 27 1416 173 1718 10 56 123 176 36 3101 1403 129 6 14 1 282 5 44 9979 13 105 191 139 5 1081 353 5414 14 1 91 2112 35 255 2 1864 712 5219 14 2 423 657 23 173 352 335 11 3947 5219 965 2 53 13 1627 995 116 138 35 3457 45 88 100 2478 116 121 6287 473 65 1 7930 3 3 45 317 288 16 244 1 28 1727 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 131 9 21 5 4728 1554 7 4510 3 2152 1800 73 86 4119 22 144 1874 47 421 6 731 3 63 652 38 1 1714 7653 30 1 144 3035 4 1 4107 3 3035 4 4510 22 3785 5 9 6 2 5971 67 4 75 12 758 5 1 838 4 1 234 140 1 4 1970 6814 3 1 4 2862 9273 10 93 380 31 731 2869 4 1126 3093 63 2963 47 2 17 23 173 2963 47 2 6793 308 1 792 5 1 3235 76 2963 10 4024 6814 30 745 19 7782 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 548 2885 2677 158 15 505 119 3 566 168 2 757 845 1 855 34 4 1 201 22 9728 120 3 7325 1563 5253 3672 267 4931 22 299 5 1775 3 25 5428 289 591 1502 8491 16 503 1 644 59 7755 4594 6 1 5524 4 1 201 361 29 984 188 70 2 103 1852 14 1 21 3 1714 189 943 3 43 4 1 120 22 20 14 1435 14 28 228 13 724 2 2885 2677 21 130 26 7766 74 3 19 1 538 4 1 1357 3 5467 373 1510 19 11 1 21 15 2 1112 11 2378 239 129 5 131 142 25 2576 421 2 1822 13 3616 5467 6 31 837 1879 2885 2677 108 20 65 5 1 538 4 2 53 3942 5035 158 17 373 279 2 176 16 596 4 1 1818 50 6070 13 1 9062 3265 408 388 1042 8 159 12 775 3 3870 331 201 217 1176 6950\n1\t11 128 62 3661 362 19 1379 236 2425 17 48 72 70 6 4712 3 9 6 30 11 39 780 393 11 228 39 90 23 1096 5 70 11 47 4 1 5416 115 13 92 2216 6 1722 2690 17 16 10 3 9 181 248 5 15 86 4917 7809 99 14 1 166 2196 6 2494 125 3 125 805 3 23 118 146 6 20 169 260 3 1 9247 963 255 77 3103 195 297 11 123 780 811 105 17 1 2281 6 1 1618 263 6 229 2 103 105 16 86 221 501 17 51 22 43 4115 4914 3 328 20 3 1117 1922 593 6 3733 3 17 70 2 4312 6293 3 31 4858 1 478 5614 1008 52 14 2 5233 68 11 4 868 207 1281 721 457 4823 94 86 401 169 3 8404 954 22 9349 3 216 142 239 6351 65 1 2742 14 1 3859 35 789 236 52 160 19 68 48 6 101 1699 778 31 1805 633 201 1008 446 1594 30 3 115 13 743 17 6898 1004 589 30 86 102 951 3 43 1213\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 6 28 4 816 2049 703 27 2291 1 1607 15 25 280 4 638 25 129 63 1999 5 199 34 7 43 67 427 6 46 1269 3 863 1 410 19 1590 533 1 212 135 8 100 56 219 4711 104 11 78 183 17 94 283 9 10 289 79 25 306 3694 50 1522 185 7 1 18 6 1 182 106 10 34 255 5 2 184 2582 3 27 149 47 1 3880 45 23 24 20 107 9 286 23 373 130 187 10 2 5764 42 28 4 137 124 11 308 819 544 133 10 23 39 165 5 64 10 318 1 182 41 10 76 359 23 517 3 23 76 2580 110 50 1062 6 23 130 39 139 751 10 3 186 2 3693 1333 48 8 114 3 10 726 28 4 50 1522 124 4 34 290 42 3829 8 2988 308 23 99 194 10 76 1382 15 23 3 23 76 36 10 4665\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 6 400 3095 43 3427 411 30 253 34 25 113 5 2635 4 125 770 4575 162 52 68 2 391 4 13 614 9 232 4 2 18 6 274 7 3119 10 76 273 90 554 2 184 4644 3 311 73 10 255 47 32 1060 82 10 151 554 2 5347 2 360 8547 16 732 2633 4047 5728 690 6848 2 687 43 232 4 1399 8127 13 150 54 867 45 9 361 36 6471 7 9 21 361 6 34 48 3978 57 71 517 38 34 137 1166 98 300 33 2005 34 1 33 2635 33 57 881 2086 17 7675 36 97 2750 180 284 3 219 148 6579 89 30 148 1485 3978 16 1632 146 93 3824 15 6599 315 361 205 347 3 18 361 6 2 148 3665 148 727 148 148 3279 148 4650 3 28 4 1 148 113 4 1 3978\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 8 88 8 54 187 1580 460 16 9 628 17 831 8 24 5 187 13 677 6 58 625 178 8 88 539 17 1 562 143 90 79 539 1497 37 45 317 43 2861 3985 139 5 116 558 2433 99 9 18 3 187 10 394 3108 36 43 81 204 459 7937 13 724 16 7 2 18 106 537 22 383 434 5 3882 53 1600 271 125 1 9 12 1 957 85 8 1130 50 85 5 64 2 5031 18 3 10 12 373 50 13 145 3238 4 101 32 1 166 913 14 4666 13 7017 786 359 122 32 253 52\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 57 100 455 4 9 28 183 10 590 65 19 2240 2229 42 46 687 4 518 7662 2578 3 20 2 103 480 1 1381 687 8124 4 2 684 8189 1 21 6 167 78 256 577 7 2 718 541 69 66 6 436 2 772 111 4 1204 2 163 4 1 8415 5 3585 3 31 1335 5 14 78 2188 1131 14 6 815 16 48 6 31 483 1879 136 20 3509 7 554 5105 406 15 237 2974 16 205 1010 3 3 2179 1 644 1782 5 86 915 729 2439 7 2 53 934 4 4833 2931 69 591 7 1 168 1295 31 3 2 1671 4 8251 4605\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 718 6 862 2472 23 7 5 1 486 4 102 2791 35 22 7 1 570 6521 4 1 576 1131 4 62 172 371 56 876 62 570 529 13 614 9 18 153 90 23 230 1 1870 3 4 127 102 1447 1046 23 83 24 2 2935\n0\t222 36 1 215 1706 3076 5659 32 186 2 176 29 1423 2853 5198 16 5540 69 843 172 989 33 89 2 18 11 276 2 898 163 7 1993 5 9 1 672 2447 87 162 1 265 6 162 4155 37 34 7 34 69 10 1419 4858 8 219 194 17 8 481 348 8 56 381 110 10 39 123 20 1708 1038 236 877 4 813 3 2504 17 11 123 20 5561 79 29 513 190 26 10 76 26 1985 16 275 35 12 100 219 52 3287 3 1148 1139 813 16 1 74 85 51 261 17 8 83 96 9 6 1 410 16 9 108 37 33 88 734 2 103 1349 3 8658 5 110 1 6031 200 61 169 3 4299 72 24 886 469 51 22 156 1494 8955 17 207 20 2160 378 4 1037 265 8 96 10 54 176 138 19 2 254 891 1889 1423 2853 4169 34 7 34 69 1 18 213 11 573 17 45 23 175 146 138 186 1 215 1423 1423 2853 3101 9710 1473 3 2488 41 3 4 448 69 1706 3076\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8518 369 79 357 142 30 667 11 8 159 9 18 14 185 4 2 8 12 56 1120 28 514 326 3 37 8 125 5 1 18 2551 5504 8 1783 1 48 1 210 18 27 57 7 2188 1306 197 27 2117 79 125 5 27 553 79 11 3719 1 2551 3211 367 10 54 26 540 5 4383 45 8 5586 5 99 1 212 108 37 99 10 8 2723 16 13 252 18 6 1634 9418 8 83 321 5 139 77 119 8344 284 1 82 5656 1 716 90 58 1821 1 121 12 1634 8 118 10 12 377 5 26 2 1073 17 1 4230 4 1 250 129 12 23 228 328 5 99 10 14 146 5 539 6052 17 42 37 91 11 10 213 55 211 7 11 699\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 63 99 2 141 176 29 4114 3 20 26 11 287 6 3007 304 217 2 964 3868 207 2 1360 2053 5 149 195 2 2569 3 3924 8 455 25 442 877 4 984 17 8 100 56 1887 550 50 2952 5 368 6 2521 122 13 2719 38 1 3515 8 219 10 7 28 4 50 8 83 354 11 5 4315 42 2 222 5 2985 217 1355 16 656 8 128 173 241 8 143 64 1 393 9385 145 20 1927 134 48 1232 2600 1 4037 108 292 667 9 6 13 2719 145 1331 5 201 50 2400 38 9 108 8 112 1 534 441 1 171 114 2 53 329 217 8 112 1 971 216 7 1 3186 236 20 2 184 410 16 9 232 4 1689 207 93 167 23 118 4875 145 39 1927 187 9 216 2 1315 1232 1603 130 64 476 98 805 755 272 1232 51 6 198 1032 16\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2003 8 74 159 1427 1717 7 1 8 57 58 312 48 1 119 1306 17 49 8 159 194 8 12 2220 29 48 10 49 8 159 10 2 330 85 7 31 2141 616 7232 8 1640 2 330 9227 23 2198 49 2 9383 60 3 44 766 492 61 17 143 131 110 14 326 33 3114 11 851 9 5 3659 3 37 33 339 110 17 49 81 34 125 5747 159 62 551 4 307 544 3499 11 114 10 13 92 272 424 1 540 859 165 5 1 3 10 590 81 421 55 193 9 12 2 1011 7599 10 128 3136 10 190 26 28 4 1 1003 5864 32 1 3052 4 3319 5893 4 95 2152 1105 13 858 16 1 2137 6742 123 2 46 53 329 15 31 2141 1778 3644 1197 3 1334 6 1381 1051 23 76 229 70 2573 295 39 30 48 23 64 675 373 28 4 1802 113 104\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 88 24 71 2 1414 4866 10 407 40 1 230 4 461 8 12 483 2029 5 64 9 46 1219 324 4 9 135 6 2 4 3 34 1587 66 6 1 2059 684 5322 181 169 4739 16 9 46 3 170 3647 65 1 2238 7 9 21 2768 7 2 111 6 202 36 2 447 17 373 237 32 101 3016 190 24 71 2 103 17 11 123 20 7149 32 1 2548 3528 9 21 2791 4 362 2433 54 332 6313 9 135\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 112 1 1779 164 1125 23 76 112 9 108 129 4 6790 6 46 696 5 25 129 4 1788 51 22 55 409 6047 13 92 1300 189 3025 3 190 20 26 14 3088 14 3025 3 17 10 213 350 565\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 179 8 12 160 5 99 2 782 9533 3 1168 65 1094 34 1 111 533 1 108 7 1 178 106 1 423 7399 5 2 3020 8 179 33 12 8009 1182 2205 24 764 268 138 402 2039 6 2 3811 9066 8 54 354 5953 15 783 5492 16 2 53 3020 108 10 40 53 293 363 14 33 130 26 5 1013 23 555 5 24 53 539 8 54 20 354 23 5 99 9 108 9 18 6 2 4644\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5928 7 127 6 2 1325 4278 2335 391 4 1093 15 171 19 401 4 62 3699 258 1984 3071 3 1 626 83 798 6166 5557 7 1 166 4039 4 9 16 4 9 6 10 2 18 73 10 153 24 7 110 9 18 6 38 1 4 1 120 4758 1984 3071 151 23 230 154 799 15 122 3 25 931 959 1 182 6 1 185 106 27 5269 2 170 164 7 2 1940 5 186 142 25 1536 2389 6 2 360 4 75 2753 3 1 104 7679 1697 1650 3 75 3519 148 413 191 230 5 64 2 170 9640 1383 136 72 22 19 9 7347 47 4 28 4 1 700 124 4 34 387 32 28 4 1 700 7896 993 1 700 18 353 4 34 387 15 1 6267 21 4319 2041 2233 59 39 845 209\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 54 23 87 15 369 79 187 23 2 23 63 463 9478 9458 10 3 10 224 1 4200 41 2 21 370 19 1 804 4 5122 5019 14 2 254 8153 4975 1277 15 2 5997 4898 35 1123 1422 36 1352 143 5651 3 6114 19 1 3397 11 9 6 695 207 2401 23 54 2497 1 11 40 52 6156 69 224 1 13 252 40 5 26 107 5 26 8 481 55 149 1 911 5 1431 75 91 9 21 705 10 153 55 1179 77 1 5560 91 69 42 7455 6683 8 152 24 10 19 1 756 14 8 787 69 3 1864 133 8 343 1 321 5 209 1732 970 3 50 13 2312 12 89 2 342 4 172 1704 75 19 990 114 33 96 11 1607 54 95 1534 2 164 2147 7 2 5997 130 24 311 2117 3 1589 1 307 3096 76 139 5 898 16 9 1950 351 4 13 150 24 5 582 523 69 8 192 38 5\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 18 11 426 4 997 79 30 2 426 4 589 11 2405 19 2 164 523 2 309 38 25 157 3212 11 22 2267 5 122 260 29 9 4457 5 26 52 27 811 11 25 379 6 4451 19 849 37 27 5820 2 2015 1128 5 19 550 25 379 40 58 312 11 9 6 5855 3411 1 171 7 9 309 22 93 246 2 156 65 62 30 200 15 239 82 3 2159 3968 72 867 81 7 1 234 4 1 212 177 7 2 856 15 34 1 171 1124 3 1 961 2266 20 13 92 206 4 1 391 56 863 188 866 385 15 1 3322 201 4 647 3 7 2 111 11 151 23 946 5837 9 6 2 299 21 2740 28 66 8 143 438 956 3 54 354 81 841 689\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 36 158 83 773 9 461 45 23 2923 1357 41 2895 41 3596 98 468 560 835 5855 307 204 6 1544 7 2 2041 135 3 48 629 6 13 677 22 156 696 703 58 894 10 76 64 1953 4227 3 26 254 5 8105 17 1 1776 76 26 279 110 45 23 175 5 2221 2 14 2 1187 98 9 6 1314 2 21 5 13 2136 173 99 10 3633 45 23 87 468 100 64 835 5855 534 707 6 828 988 1 6 52 1434 17 1341 1238 85 88 1 3216 5 409 29 225 5 96 1882 183 1363 702\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 118 294 2 1831 259 27 89 5932 1 37 75 114 27 787 3 1654 2782 42 36 1 1823 4 2 91 295 5 1185 16 1 74 9190 1886 2 7742 4 509 2809 3 8299 15 43 2270 882 1256 7 5 90 10 2 2729 8 6528 35 2893 5152 1 1757 54 16 1 2048 54 26 655 30 2 526 4 341 54 26 15 2 315 3 2 69 39 16 55 4871 1119 622 3028 39 9368 79 3 8 112 1 2112 42 36 307 602 15 9 18 39 433 1 994 571 4 5871 184\n0\t53 456 5 216 1566 8 1070 2786 41 4268 48 1 120 61 13 2361 4 1 4693 633 871 61 4275 9721 3 1464 61 169 3909 3 9347 7 62 346 6008 3955 33 1049 43 860 3 10 6 747 33 143 139 19 5 376 7 52 3 138 703 2836 8 143 96 3741 165 2 680 5 634 7 9 44 59 731 21 6404 13 92 21 784 5 24 43 3760 3 8 12 46 49 8 544 133 110 8 192 2 184 745 325 3 8 381 25 226 141 3 34 25 362 879 32 5 814 10 56 619 79 11 8 12 1092 446 5 359 5758 133 9 2396 13 499 6 3857 11 9 18 6 38 2 1557 6955 106 1 9087 3 70 602 15 239 1715 681 172 1372 57 2 645 756 251 404 4097 1 67 312 32 4 611 51 12 2 84 1820 7 11 1 251 19 3159 4 2347 1765 136 9 440 5 90 87 15 3416 3 2 156 8303 13 7479 10 3195 58 3 59 2 46 6929 324 4 1095\n1\t405 5 21 2 718 38 9570 147 887 707 48 33 165 12 1 59 21 1131 1208 1 234 4622 2658 19 5302 13 5537 1066 15 578 8442 1404 1704 8227 337 15 1 2046 5 3 2 3498 136 2716 29 1 7 524 235 240 3136 31 6591 1642 402 125 1 707 6913 3 27 3184 1 443 1095 2110 183 1 2345 77 9624 2396 13 1783 1 2046 5 917 122 77 1 1 74 177 27 159 12 102 81 19 6602 146 27 7074 5 135 27 2716 19 2819 16 1 398 375 5516 1673 4042 4 1 3 508 35 61 3617 13 92 1338 472 84 474 7 20 253 1 18 105 5517 3 17 1 1587 32 1 6 2 103 3 6100 1049 2 163 4 7880 10 1 1338 1795 1131 33 829 15 3679 37 1 88 1346 62 3462 3 1676 285 933 529 4 1 115 13 7958 2 865 21 4 696 2953 80 4 1 319 32 305 139 5 46 109 1716 4422 3 301 3816 4 1105 6 1 113 718 4 1 426 5 6177\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 400 165 1366 77 9 3 339 947 16 239 2351 1 121 758 5 157 75 931 2 1156 454 7 1 231 191 26 600 371 15 1 363 10 54 24 19 137 1 59 465 72 14 2 231 57 12 75 1108 10 12 34 29 1 714 72 339 785 674 48 12 367 3 24 58 312 48 185 7 1 212 177 144 114 6357 1969 122 3 144 114 27 139 385 15 1947 246 6860 7 2 251 16 681 719 72 343 5389 11 59 681 269 12 721 155 16 1 7230 8 24 1783 200 3 630 4 50 417 35 219 10 61 95 1 1497 46 678 17 300 72 1155 146 6585\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 2 184 1787 3 1 606 12 1 113 376 7 9 803 13 1 195 65 1358 583 376 4 1 1575 6 2518 14 3579 3708 3 5581 19 155 65 32 1681 54 26 3396 5 134 33 61 34 46 7699 42 2 797 18 14 2 1285 224 2079 4599 77 1 1575 69 15 43 1021 43 53 802 4 1 5998 3 2 46 8025 5087 438 6199 13 1601 7 399 786 83 351 116 85 133 9 1013 23 112 1575 484 8169 41 36 2758 112 161 416 3332 28 7 933 276 73 7521 105 386 5 99 1865 502\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 112 9 880 944 145 20 2 184 325 4 97 1145 1724 4205 37 45 10 95 3491 5 949 8 143 8 36 1 538 4 1 5785 8 55 36 1 112 441 55 193 14 8 192 2926 10 8 560 7 1 155 4 50 438 75 1 3106 11 185 4 1 67 63 323 2210 283 14 2993 481 1388 3795 41 322 23 2510 8 55 36 8 83 149 44 761 29 399 3 8 1227 812 2235 4502 4358 425 807 8 55 36 1 5545 55 45 10 8551 28 4 50 231 1144 3 43 3491 5 43 8 88 38 34 1 82 188 38 3 75 1 1063 22 160 5 7743 10 7 1 958 17 8 39 243 99 3 947 3 64 48 901 1 1063\n1\t31 55 52 203 36 19 1 326 4 1 5134 10 181 36 39 174 1065 326 29 216 17 9 76 521 28 1 21 1350 271 19 1 1611 15 1 27 124 1 74 7996 6 1 59 1131 4 1 74 7176 15 1 5 1 3 271 1208 1 1 330 2345 6541 1 81 365 11 9 6 20 31 1 398 1165 4 85 72 64 253 2827 5 552 14 97 81 14 1 5936 72 785 22 1 981 4 81 35 4059 224 32 1 9624 3 1424 19 1 6 1 80 799 7 1 1 9624 3 257 710 493 40 5 549 16 25 785 122 4039 36 2 136 27 1225 47 4 1 2 568 426 4 125 122 3 1 412 498 12 46 2029 5 2711 3 195 27 63 21 1 2213 3180 4 147 4889 73 9 718 40 165 37 78 1267 1131 3 73 1 21 12 5 26 146 400 264 9 718 76 229 875 7 159 1 5134 414 29 408 73 8 57 1 3390 9 151 10 55 52 1087 5 836 3829\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 937 3 24 5 134 10 12 1 210 525 29 21 253 8 24 117 57 1 6564 5 1861 48 1 898 12 160 19 15 400 1363 29 81 7 400 2690 3240 3 527 68 223 414 434\n0\t172 3579 5086 5 390 411 2 6339 13 92 18 40 2147 7 48 276 36 2 2204 4 200 6845 3 42 8435 3 8925 47 1 813 7 639 5 36 2 4 261 164 41 1764 11 27 255 7 4208 1566 9 1406 30 15 122 406 2123 25 260 271 19 16 43 85 318 1 30 195 5782 9609 242 5 149 1 23 7 233 179 11 27 459 214 194 5 6845 411 643 6 31 891 13 2718 825 29 1 182 4 1 18 11 5 332 58 1962 4064 6 152 6845 77 3152 43 172 1372 454 41 500 975 1 1355 3 1494 6 20 59 6845 3504 220 122 3 22 56 28 3 1 166 3292 17 93 1 7557 1398 93 20 11 254 5 842 3335 13 3371 6845 155 7 25 3 34 1 664 1 1 195 29 31 182 4199 3 1034 6 303 4 25 413 3 1 518 626 5478 2748 62 111 155 5 3 9 7 1 6715 4 6845 4351 359 48 33 3 59 5 730 220 58 28 54 241 126 2799\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 388 1602 6 28 4 1 1340 4816 8 24 117 575 20 59 123 27 24 7232 27 151 43 4 1 1340 19 622 3 1615 11 8 24 117 575 1602 6 1 80 215 3 80 1244 709 180 107 7 2 46 223 290 348 34 137 82 5 70 142 1 1039 3 369 9\n0\t83 175 5 99 450 3 1 879 11 87 70 219 2292 5 26 3 38 1955 41 922 41 1636 7 1 1949 883 1058 104 11 1346 41 3684 1 423 5538 662 591 15 1 170 3216 11 54 26 773 325 3381 41 1 1186 3216 11 5162 5 90 104 20 311 986 17 1134 16 13 92 3656 922 8 57 15 9 18 6 1 4 43 4 1 10 12 2 222 78 5 1844 34 4 1 1921 1 4391 1358 5301 19 48 44 114 5 768 136 20 39 2 222 78 5 504 1 410 5 82 132 14 44 685 1 170 2010 2241 41 11 60 54 152 90 2 53 4020 5 1 35 629 5 24 2 177 16 44 2707 4560 34 127 824 39 114 20 56 352 9 18 4508 10 2954 10 52 7 1 1656 4 2 1261 267 242 28 4 62 1005 98 10 114 16 2 1435 6886 865 803 13 1833 23 99 1 305 3 1876 5 1 9031 591 16 1 943 5626 23 63 56 64 34 4 9 6 3056\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 859 4 9 18 6 6 52 731 68 6 377 5 26 1 17 1 211 177 6 11 444 20 29 34 1906 444 2 163 52 1805 68 7947 1 493 35 276 36 2 13 5140 54 9 18 216 45 1 12 56 49 76 368 582 15 9 13 659 50 1520 480 1 859 11 10 451 5 9 18 6 311 13 3382\n1\t5240 1556 84 5980 14 2773 1298 1306 1 120 7 9 21 22 750 3 2478 4575 1 22 2 342 4 845 1 1170 81 7 2773 17 33 22 246 5 1593 5 875 65 939 128 112 3 5526 62 2293 58 1359 5 1 259 2215 557 1987 115 13 4567 690 35 114 2 212 163 4 53 7 25 157 3 39 57 5 26 1385 75 1878 6656 965 2 4165 65 637 14 5 1 27 128 57 16 403 43 53 7 9 161 4370 13 1791 7 25 414 453 3 829 309 40 167 78 556 125 1 185 4 17 690 3111 1133 2291 1 161 167 109 7 9 135 1 4 849 17 15 2 8434 4 5903 11 151 199 4201 16 122 5 6193 1133 5231 2 514 4270 4 81 36 6064 3 7824 205 248 84 4 13 1 607 871 8 591 381 638 3265 14 2215 3 2574 14 2 3 1343 4 1075 8942 115 13 5 970 9 6 28 4 2639 4 2 1075 4679 89 11 33 24 3 10 6 28 4 1 1293\n1\t1617 5 99 194 8 12 1435 3023 5 3 1286 321 5 542 50 671 5 925 1 13 150 12 52 68 2 103 3 7 2 53 3293 13 4375 2968 583 40 86 529 4 7150 3 940 361 8 96 207 232 4 1258 5 925 49 10 2027 8812 2 164 20 587 16 25 361 17 34 7 399 10 12 5788 13 10 6 20 2 216 4 616 1744 17 10 6 2153 46 7067 15 299 2 1462 3168 3 2 299 1440 8 118 103 4 873 616 37 8 173 56 2095 1 121 17 1078 1 233 11 1 201 12 1874 2 1587 41 1809 2118 5 126 29 28 85 41 174 3 11 2 342 4 126 24 202 58 121 4458 8 12 243 13 614 23 63 335 2 53 238 141 2 53 1794 2 53 1073 64 9 135 29 225 760 10 220 42 588 5 5229 13 2699 2 601 5233 51 6 1580 1933 7 9 135 8 143 55 64 78 4 2 83 369 81 11 284 105 78 77 188 2704 9 16 1038\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 247 39 91 69 10 12 1634 94 8 219 194 8 152 343 1 321 5 186 2 3660 5 70 1 8089 142 4 437 51 6 599 15 31 3797 342 253 827 10 6 20 722 17 10 6 9846 1 1198 90 65 12 3879 17 11 6 513 1 2987 5437 818 76 24 23 2048 69 29 225 8 1306 1 1043 6 56 13 235 422 23 88 815 87 54 26 138 68 3333 85 133 9 108 55 45 116 526 4 417 22 77 9 28 6 4340 7 86 8 339 55 652 512 5 539 29 110 23 24 71\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1582 8 173 365 144 9 18 5933 37 109 737 779 144 9296 411 179 10 12 25 2049 135 145 2 568 325 4 9710 1188 216 69 591 3 17 3478 12 1 226 53 21 27 1001 94 11 27 590 5 1 477 15 1 4 1 3 98 224 15 3409 3 1403 16 3 13 1118 63 8 7952 1 67 6 1 847 6 249 538 69 8 8171 11 42 7272 527 68 25 2032 691 69 3 3527 57 148 6805 43 1612 1138 4554 3 31 1217 3 6 39 2776 16 2972 349 161 8863 3 40 1 3427 4 7243 19 13 4375 45 23 338 1 5082 23 228 36 476 7 50 793 1024 9 12 39 174 7 1 7 538 94 32 66 9296 100 2720 244 248 43 547 249 691 1002 13 47 4 394\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 179 1 18 12 1233 17 46 945 11 33 143 1708 1 306 1854 4 25 500 8 12 37 5 64 25 532 101 31 697 11 42 2037 79 7861 39 133 1 477 4 1 18 553 79 11 1 18 12 20 9432 66 8 301 433 796 39 2 729 4 2110 32 1 477 4 1 108 145 46 6572 207 36 133 2 6482 67 19 1183 2047 3 246 5226 309 1 2482 8 83 118 48 1 846 12 517 1156 2 5044 391 4 1 18 66 145 273 25 532 262 2 568 280 7 25 500 8 76 134 1 18 12 1233 1739 1 580\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 18 11 151 23 175 5 1337 725 19 2 180 107 7 50 85 17 94 956 1 7439 1378 8 83 96 8 63 117 99 2 174 18 702 190 851 2502 1 5160 35 89 2938 13 2446 2726 574 129 8748 1171 271 288 16 1 282 35 1172 122 2 4288 136 6416 7 1 6559 7 15 44 3254 574 231 35 22 231 270 5 122 3 10 270 358 719 4 257 85 16 1 2646 5 64 244 2 138 1236 68 44 4264 288 1767 3611 1969 8539 707 3100 288 13 92 647 101 1620 125 1 522 15 1 6317 1984 13 92 2729 2296 61 2043 745 10\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 28 4 1 210 104 8 24 107 5 7120 1 113 185 12 1850 3231 2621 5 634 4700 65 3 224 1137 1 8573 36 8 405 5 87 19 1 2388 5 4479 1 344 4 3099 1 4 133 9 135 10 40 2 84 201 37 23 359 133 1000 16 10 5 70 501 8 467 15 2077 1944 25 185 114 2 84 2340 105 91 10 12 7 9 7800 3044 4954 256 44 442 19 1 1203 60 40 2 900 4 755 427 3 364 98 843 2110 7 1 212 13 614 1 201 57 95 33 54 139 47 3 751 34 1 5554 4 9 21 3 4874 126 385 15 846 1889 206 690 3 846 294\n0\t329 737 1 161 1272 569 40 2 732 1190 217 1 1114 3063 2840 187 2 53 356 4 42 109 89 17 48 61 33 517 15 11 162 162 151 356 217 42 39 2 568 7071 1378 11 94 1157 140 1 177 16 670 31 594 217 2 350 844 23 1852 217 1841 5 118 1129 480 101 2 203 21 236 58 813 41 840 292 51 22 28 41 102 1119 529 204 217 939 1 21 152 1523 4 1 3815 24 671 1015 16 1114 546 14 11 6 48 1 21 6 7340 5 26 183 2 1213 393 66 123 162 5 652 95 5 1 803 13 1 21 6 53 15 298 397 5308 53 293 1456 3239 2840 217 5785 274 7 1443 17 829 7 1270 1 121 6 514 32 2 547 13 6 2 56 1164 158 16 2 223 85 10 65 5 26 2 4115 103 203 948 953 17 10 100 2980 235 66 629 217 1 323 2757 393 39 3448 65 52 1389 68 8 56 173 64 261 253 522 779 6323 4 490 8 56\n1\t116 1062 4 1 21 76 6193 1 74 85 23 64 1 18 23 64 1 4698 3 75 1 330 85 341 8 192 20 1 59 28 5 96 10 6 39 761 3 23 39 694 51 133 1 18 6523 49 6 9 2468 160 5 3 55 9 6 20 14 1502 49 23 64 10 375 1287 1 121 7 9 21 6 20 573 17 20 84 1497 12 8 1096 114 20 1364 31 918 16 11 158 8 467 35 123 27 96 27 424 2047 8265 41 3286 27 123 755 18 3 495 87 2 21 16 364 68 3 98 307 6 11 51 22 924 95 124 15 122 7 110 17 227 2354 7 50 3253 1 210 129 4 1 135 2257 278 19 1 82 874 12 2856 8 93 11 1 206 6 46 964 5 256 2 21 4 132 2 1413 51 6 28 2869 5 26 2178 38 9 3515 51 22 105 97 14 10 424 1132 1513 328 5 734 2 1151 7 5 154 625 47 4 2 888 4933 8 187 9 21 2 3170\n0\t44 711 1 411 6 38 5 209 19 1 178 14 44 635 711 1 5253 13 268 61 52 98 227 16 1 588 155 5 990 5 652 38 1 18 160 1228 61 459 355 2 103 1455 4 4 122 3 25 510 15 2 2638 56 20 2429 220 1 215 57 71 434 3 3963 16 982 61 256 140 1 692 15 58 28 3499 11 103 6 318 10 12 202 105 518 5 582 44 7 44 2483 4 5714 1 389 423 1 18 14 91 14 10 6 6 93 237 105 1896 1507 16 2 203 739 11 88 109 24 553 42 67 6 14 103 14 5298 5907 13 5537 2 2015 1128 7646 406 2 1081 3403 975 195 2845 7 1 21 59 5 26 643 142 143 352 1 119 1497 10 59 1 2572 4 137 4 199 133 1 108 23 88 64 1 1197 393 588 202 14 521 14 1 21 1647 15 1 101 16 7697 4 1 14 109 14 1162 48 12 2 222 4 2 1197 12 403 10 15 2 103 352 32\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 159 9 21 30 2561 3 9 18 12 31 10 191 4 5674 2088 415 101 1518 3825 98 355 32 28 334 5 174 7 98 3 55 2 1500 950 37 8 83 118 75 27 114 2 1398 3 207 20 254 5 13 92 161 7 1 39 20 782 4078 7 233 10 2165 101 782 172 1924 23 57 1 1277 19 1 6826 4 1 30 15 2 46 1321 296 32 1 206 24 2 2481 3 40 89 2 21 331 4 3 12 2 267 176 3681\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 3001 75 84 9 18 12 318 8 4177 655 10 136 288 140 1 42 2 232 4 678 2053 4 2 4 492 2 1894 4 668 3 2 67 38 2 1500 950 1076 5 552 43 103 2802 1 22 53 2166 2583 17 1 113 185 4 9 18 6 1 1500 950 7 66 492 2538 498 77 2 4391 2 3 475 2 341 42 39 14 1021 14 10 988 6 3654 3 40 227 797 4586 3 84 265 5 3162 13 92 148 2067 618 6 1 1115 3481 66 151 1 18 279 16 11 185\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5159 161 667 271 5278 23 96 23 24 4386 1978 2 11 40 71 6921 7 1058 172 5 5278 23 96 23 24 4386 99 2 249 771 1461 9 18 6 28 4 137 11 6 37 573 42 4817 207 144 8 419 10 2 34 2401 17 20 1051 42 2 84 111 5 351 1507 39 14 1 3229 771 131 6 6525 14 594 4 116 157 468 100 70 34 1 1100 1626 22 1 410 19 5165 415 966 1 12 133 6352 35 1797 266 1316 120 3 372 2 1916 3 442 6 14 44 1381 4981 2626 4231 893 16 2061 154 164 15 912 33 310 7 1 413 2989 1 4827 61 1463 14 35 2149 48 33 8695 8 83 175 5 2600 41 3673 297 17 1 18 266 36 1 3229 880 204 7 42 620 16 102 719 154 2341 488 94 458 297 422 181 5 805 8 187 9 18 2 53 17 20 1051 1461 6454 6 113 556 7 346 28 594\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 6 28 4 1 2049 296 6918 4 1 45 317 288 16 2 686 158 176 8151 245 45 317 288 16 43 1357 2 163 4 3886 3 2 6045 7 8954 19 2475 1076 9 6 109 279 2034 307 1 1769 2 3947 17 207 56 48 1 21 6 34 2354 3 307 6 169 695 2862 4496 3 294 24 84 1300 3 321 5 87 174 21 1413\n0\t30 1 558 10 12 39 105 5 351 48 12 3037 2 17 5519 1 6 340 2 8417 29 28 1039 17 207 106 10 13 1 2971 8098 1611 2076 106 1007 61 4864 6 1576 5 1 7697 1291 32 44 2747 17 44 1291 5 3070 444 57 2 167 53 934 106 60 1220 258 1078 44 1117 3 1 2083 7610 3 474 4 44 2308 170 633 13 92 6387 16 2390 245 271 5 1 5642 4 1628 3505 5 1 3943 280 4 4622 5479 2700 17 19 25 1658 4572 30 1496 2 16 2 4015 69 14 2 1628 5052 1 2124 916 27 4064 4064 1 212 6736 6 8209 3 1628 411 6 303 14 2 7372 8457 58 737 20 59 490 17 1628 93 2019 1 8566 32 1 80 2422 733 1397 45 23 96 1 119 6 5172 3 83 1006 38 9278 835 1 4 1 7009 19 8566 144 153 1 106 1 342 151 1549 963 11 5100 4762 3465 5 28 4 86 488 738 82 1 22 9335 69 169 19 28 9 18 65 7 28\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 183 133 9 18 8 179 9 18 76 26 84 14 73 183 133 9 18 12 1 226 7913 3 3360 18 8 2941 5399 14 237 14 893 168 22 3096 8 12 6572 8 179 893 168 4 76 26 84 14 893 168 17 8 12 1558 571 893 1146 95 893 178 7 9 18 153 90 79 230 84 4678 118 48 8 1 84 7913 153 87 137 232 4 893 168 4 48 60 6 2262 2562 3 205 4 137 1386 624 7961 79 14 109 14 237 14 893 168 22 13 3422 86 2 1217 18 17 45 23 1923 11 893 168 9 18 6 46 452 45 687 1217 18 3220 22 3096 9 18 373 3172 1 3220 4 1217 502 441 505 2132 3239 3 82 1813 691 4 9 18 22 56 1051 1 171 4 9 18 248 56 53 505 33 34 248 2 84 1614 6 373 3172 1 1940 4 538 4 1217 502\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 39 908 565 519 55 45 33 32 1 1571 22 53 19 62 2487 33 63 652 174 3 3882 2 732 4247 11 151 126 979 3 3473 9 12 14 775 179 47 3 3091 47 14 63 1142 9 247 95 53 55 2379 19 42 2487 6 2 9217 1651 17 43 4 25 4 871 3 5203 844 146 5 26 9430 1 215 12 132 2 1872 9 6 20 31 1406 29 399 3 6 20 837 41 548 3198 9 12 89 32 2 1782 5 7 119 985 11 275 7 368 2615 76 786 48 33 64 14 2001 1754 4888 33 64 199 14 2 658 4 42 4096 11 275 76 256 9 47 14 2 865 158 3 55 525 5 1015 2 1280 382 9 1 6810 119 1 903 1765 647 3161 13 252 6 908\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 1454 107 97 834 104 7 50 193 332 630 4 126 1484 65 7 95 111 5 3 292 8 1454 511 24 8685 15 4500 10 12 31 7801 19 242 5 4099 81 65 14 847 807 1 18 277 32 234 392 102 35 22 1172 5 875 15 2 1414 3 9574 2304 287 7 1 4236 8 54 24 5 134 11 1 1084 12 3711 5857 89 2 425 773 136 638 89 2 84 1770 112 3208 5536 198 1197 79 3 9 12 58 4727 10 12 1070 749 779 3279 193 8 87 20 118 45 9 12 1 927 247 1111 17 1078 10 12 2776 5 26 2 5757 141 11 6 1952 8 54 187 1 278 3555 47 4 1 927 1721 47 4 1 1084 3555 47 4 764 3 1 1759 3077 47 4\n0\t260 140 1 141 9 54 90 1 67 230 618 33 24 301 1200 675 378 1 265 999 5 187 297 11 7 2 111 795 37 11 72 19 949 37 11 297 152 811 13 3221 665 4 1 75 9 1260 1082 6 30 1 67 427 253 10 52 7 1 18 72 64 2834 19 1 5563 35 6 19 25 111 5 64 1 3213 4 9 680 66 4925 273 143 780 7 1 1158 380 67 52 68 10 123 90 10 13 677 22 97 82 3359 106 1 2987 4 1 67 40 71 16 1 5867 618 9 228 24 71 248 73 1 347 311 153 109 77 2 141 132 6 3358 9 151 72 560 45 34 1 5567 1755 19 9 2819 61 523 15 62 347 3 18 839 7 438 243 68 523 38 39 1 135 2 21 66 6 14 223 14 10 6 16 137 35 617 284 1 347 286 8 354 39 765 656 16 137 35 5021 8 24 5 134 23 76 39 26 2721 116 85 3 229 182 65 204 523 696\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 91 18 7 1 2094 2509 17 556 16 48 10 6 928 5 26 10 6 169 452 46 211 3 109 1716 292 51 22 2 156 469 168 11 22 7 91 6724 48 15 5374 14 2 282 3 37 778\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 2888 1 67 4 161 792 15 1 469 4 44 2832 14 10 76 26 2722 1372 205 4 44 1007 24 1436 4 7 9 1770 1261 3518 40 8678 2 1892 15 2 873 164 7 912 33 118 59 32 86 2129 30 44 6206 7 1937 11 44 147 766 6 78 972 14 7 1 11 27 486 7 46 5621 3874 9784 2 9045 61 27 557 778 20 314 5 1 254 19 1 3 7 9308 125 44 1261 7 44 147 408 1304 4 599 1695 60 521 1937 11 60 40 1677 5 3192 1 2566 5 2 633 4 380 44 147 449 3 9 572 6 370 19 148 795 189 3 1 49 3949 4 2119 287 61 1136 142 5 413 7 4505 912 33 59 563 32 62 2129 9 20 46 109 587 572 6 109 428 3 6189 1 1972 6 9 21 93 1008 7 25 46 226 412 1635 14 2 4 1414 9 21 380 43 3122 4 873 1615 204 3 577 1 2 191\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 620 7 5747 14 9 862 91 18 6 37 91 11 23 390 3 24 5 99 10 5 1 769 39 5 64 45 10 88 70 95 3 10 1 857 6 37 961 10 181 428 30 2 298 416 7232 1 748 22 1526 17 138 68 1 3 1 121 6 13 92 181 5 24 71 2632 32 1 5398 4 51 143 291 5 26 2 215 312 7 1 212 682 13 150 214 9 18 5 26 37 91 11 8 1309 80 4 1 111 7878 13 130 4008 25 522 7 7661 27 515 965 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 51 213 2 212 163 160 19 7 9 67 361 39 102 413 46 264 1175 4 6592 2122 4 17 48 10 1419 7 4493 10 52 68 151 65 16 7 121 3 42 2 2446 21 38 1 4 2566 3 5916 2751 72 55 70 1151 1491 2270 361 39 174 46 148 391 4 9 42 109 279 4498\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 159 9 316 937 19 267 420 112 5 64 1922 3 7 201 14 532 3 585 7 2 158 10 54 229 26 1 117 9859 9656 142 5 4958 16 253 2 5040 211 135\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 54 187 9 131 2 764 47 4 764 45 10 12 20 16 1 8835 4019 23 81 22 37 1589 3401 10 6 37 1911 5 272 47 1 4 1 131 3 1 3758 286 22 93 37 1911 5 134 3605 930 36 43 4 127 82 289 87 127 716 37 78 138 73 29 225 33 24 1053 37 9846 716 22 84 3822 1581 35 270 1067 29 225 145 20 8 785 11 3 2978 7471 22 65 5 87 2 18 38 3298 605 2 1611 1285 1413 771 38 2 18 4 1\n0\t2080 122 16 2952 19 75 5 889 559 7 28 4 1 80 1005 1657 4 494 117 2151 19 15 25 5545 690 649 2899 48 4 7112 2923 415 7 482 3 93 11 6 1 957 113 111 5 889 559 94 3 4 611 103 2899 39 173 291 5 875 47 4 4065 690 5 2218 66 2439 7 1 1330 469 4 6392 3034 28 4 1 4424 8603 13 12 31 1963 3282 16 517 27 88 187 2 1182 2328 712 4 2 808 7114 5219 130 24 71 5484 30 257 493 690 7 639 5 138 8258 6711 16 25 7697 1 822 3 478 131 29 1 182 4 20 573 17 75 78 138 54 11 18 57 71 45 1 907 4 74 9227 15 1 4026 57 71 690 1 874 608 4963 398 5 1 27 228 59 26 7 1 18 16 1315 269 47 4 17 83 26 9 131 6 34 38 15 55 11 1953 1234 4 690 5231 1 4031 4 132 21 120 14 368 3 32 7875 2968 14 4 296 1913 5 608 23 22 50\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3767 2414 40 169 2 823 4 1093 17 10 6 1 1164 342 11 3091 122 5 9 21 56 3375 783 5373 217 2393 24 2 84 1 607 201 16 9 21 6 4410 14 2593 13 499 6 38 358 413 536 371 35 22 32 2738 1 263 15 623 32 9 5717 9 57 71 248 7 43 5710 9 6 1 28 11 876 10 34 371 7 2 46 53 13 40 248 43 82 547 1093 17 9 28 6 56 25 113 216 66 89 1 344 4 25 216 2623 10 6 254 5 830 2414 117 476\n1\t3110 4 375 6623 242 5 90 1 184 85 7 492 880 1 21 123 260 30 20 95 754 171 41 4113 5 3235 65 7 1 570 7741 9 111 257 838 6 2665 19 1 5954 3 2852 584 3 3525 14 33 8469 285 2 326 4 2093 6 93 229 20 1 113 1412 16 1 2482 791 43 759 61 757 47 7 2454 4 2 147 628 3 1 67 4 2 684 189 2 6130 3 1 12 8 24 5 134 7 34 9 12 1 5118 185 4 1 135 1 2494 89 285 1030 5 4761 1 202 1770 28 396 40 5 90 49 2316 7 1 1703 7 1 4946 4 860 2633 9111 245 9 1329 4 1 21 40 71 248 5 469 7 1 2747 3 42 2284 5 64 9 1455 161 6362 86 65 308 702 1 4 1 6623 730 1647 227 15 1 1352 63 87 17 98 10 2 103 29 943 985 136 1 6623 61 1083 62 4260 4041 62 584 103 32 148 157 2104 35 100 70 2 680 36 476 7568 4 843\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 54 830 11 45 1312 7841 563 27 54 139 19 5 390 31 6963 3 357 434 4 1 166 349 9 21 310 827 41 26 7 1 2313 1756 102 172 1372 27 54 20 24 248 110 17 27 2723 3 72 22 1 16 592 13 42 2 1464 2073 203 1 111 10 12 928 5 26 16 1 7183 3447 42 299 3 13 499 6 240 11 1 226 456 4 1 21 13 29 225 2224 165 10 1312 2056 14 223 14 1 2683 115 13 3828 100 54 24 5332 172 989 11 1 54 26 1 7180 76 521\n1\t597 1 913 14 521 14 2623 664 5 1 1213 9978 1 8174 1404 1275 62 113 9438 745 2854 19 1 524 3 27 1026 44 5 1057 3529 432 1 3080 4 97 3 1 49 10 498 47 375 81 22 4135 16 1 1686 145 198 2235 9547 49 4764 73 8 83 175 5 3693 685 295 3785 119 7035 7 218 524 4 1 1 795 186 31 8830 3 400 2231 473 183 1 67 6 55 3 8 407 83 175 5 2704 9 16 1038 97 808 917 94 458 17 198 3316 5 875 28 1825 1929 4 23 488 55 193 20 2 4933 1 6 29 225 42 93 2 46 3489 158 15 3950 6016 3 313 265 30 6986 5729 430 6019 4614 143 90 10 5 9 201 5047 460 7 58 364 68 535 82 9550 17 7 2 3540 8337 159 44 6 2 52 68 1822 16 768 1 4051 3 690 6 7434 14 198 7 25 280 4 8174 9438 3 608 608 164 45 317 2 325 4 83 947 14 223 14 8 114 5 99 9\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 192 2 2112 35 1371 259 8 12 288 890 5 283 2 4145 1076 15 1 1536 15 797 293 2170 34 4 9 7553 245 9 18 12 1 210 18 8 24 117 107 7 50 3223 13 92 67 12 17 1 1103 4 1 67 12 1634 1 178 61 1 210 8 24 117 575 144 54 23 1243 47 5 2 4133 5 6558 45 116 157 12 7 1 2628 554 12 46 775 3 1 1643 8880 4768 533 1 141 375 268 1 250 120 130 24 13 92 206 3380 5 2 112 67 7 1 750 4 1 18 285 1 80 984 9 18 12 515 20 219 94 10 12 1716 8 112 484 17 57 5 1426 512 5 1812 133 194 1479 851 8 114 20 751 490 8 4863 10 32 2 13 4098 20 751 490 87 20 760 194 39 99 5924 78 52 7420\n1\t5 2926 91 502 8 112 126 8 99 34 4 450 203 50 417 3 8 34 5273 94 2 254 1679 29 416 3 1093 760 43 1184 639 2 3 24 2 28 4 1 879 72 165 29 368 3481 12 9 628 1028 9 28 57 2 84 8743 37 8 12 852 364 68 13 92 67 6 38 2 9647 1480 11 6 2336 125 2 3720 11 40 57 1 6802 3 1 82 2790 6802 22 311 2777 960 1 6705 4 9 4305 149 1 2777 65 49 43 374 735 77 2 4037 1208 2 9 5601 65 43 13 2679 9 272 926 42 1 840 363 3 238 100 582 318 1 182 1079 13 6648 42 20 84 4554 17 9 628 15 42 494 3 2864 3067 691 12 257 430 4 1 8715 2740 10 12 28 4 1 113 8 24 117 57 1 1935 4 2034 3 23 88 348 10 12 248 19 58 2128 15 2 658 4 1184 1098 51 22 3174 4 7375 3 1 206 276 36 6205 3211 40 2 3 10 6 39 2 1305\n1\t36 10 12 32 2 471 220 1 347 6 125 11 151 1821 10 2 85 1165 32 1 5 1 7 2 3047 1270 296 4087 93 2 163 5 1179 77 1 85 8763 8 96 10 54 24 71 78 138 14 2 6466 68 10 590 47 14 2 682 13 2663 193 42 1 67 153 1899 37 78 11 10 196 7578 48 6 553 6 553 1002 530 28 2818 6 11 3018 2208 1030 463 33 130 24 1478 52 140 1 448 4 1 141 41 33 130 24 71 303 689 102 52 9502 801 88 26 7697 1110 5 5814 629 595 105 7585 3 4351 181 5 2951 1237 55 193 1 1511 4 1 67 4203 11 10 130 5682 13 92 121 6 2332 5205 14 1 8963 6 7621 3924 14 1 1798 1086 996 6 93 2332 6221 14 1 250 129 6 1111 292 444 396 55 138 68 60 12 7 9 108 51 61 97 4693 871 854 1 1003 2818 6 11 1 18 384 5 551 2 239 353 384 5 1271 7 2 264 426 4 5048\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 28 3010 47 16 42 145 1067 1455 4 283 8709 104 11 22 2 4 2 212 658 4 368 3 502 43 2387 61 9 18 6 2 1103 4 1 1277 794 3651 5 1 879 11 72 1797 12 4544 244 209 2 223 111 32 25 216 7 8 338 1 18 37 78 11 8 57 5 221 110 145 20 531 77 1 3670 882 574 4 484 936 8 152 343 16 239 129 3 2091 173 56 652 512 5 637 10 3151 8 87 20 1116 1 6021 3842 3 3680 168 11 139 874 7 874 15 80 8709 3 502 8 332 336 9 18 16 42 551 4 1 4272 2671 5 25 1725 6 20 6 3 151 79 175 5 50 671 689 51 22 732 268 49 145 133 2 18 49 8 175 5 645 1 877 4 268 180 405 5 87 11 29 2 616 100 405 5 87 37 49 133 9 108 145 56 1247 11 6816 5982\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 1140 45 350 1 234 270 29 490 17 157 6 1693 2160 8 83 321 5 99 10 11 699 8 4062 2047 184 290 8 55 219 3 8 563 11 54 26 2 7726 2418 4 17 9 177 6 20 109 2859 3 42 20 45 10 6 124 24 1318 16 2932 3 884 20 9 6717 17 42 2 1087 9 90 116 522 42 1 866 572 117 5 186 23 1677 29 513 8 128 112 3 646 198 187 122 174 4343 17 45 23 662 89 4 85 5 99 91 1154 19 2238 1899\n1\t48 1 171 61 9663 2414 6 128 892 14 7387 27 151 8218 3 761 14 148 14 10 17 406 7 85 253 8218 20 39 8308 17 93 2 148 129 35 23 4201 16 7 1 714 9311 3 2356 61 9311 57 43 46 360 121 3 892 1025 3 2356 6 39 2356 75 63 23 20 36 27 151 2 46 2318 129 15 43 2485 3 790 23 39 112 1 2678 8730 8005 3 1954 61 84 14 1 607 1440 239 57 62 221 2328 11 61 790 167 17 207 48 39 89 1 21 916 28 177 8 143 335 12 75 28 5321 43 4 1 120 5091 8 365 11 80 61 1 607 1249 17 43 4 1 201 12 3 3084 340 1 21 43 52 8658 5 110 75 5 1621 417 217 81 76 100 26 19 8254 401 394 124 2233 41 55 401 394 1545 2233 17 10 40 2 46 298 1033 952 3 43 168 190 55 1817 23 14 530 75 5 1621 417 217 81 6 373 28 4 1 138 684 1545 4 1 7101\n1\t2905 5258 4 4213 3 231 3 615 7 5679 1 641 306 67 4 31 7986 6010 35 7176 2 5 5 1978 25 2823 51 22 128 877 4 1 979 3 215 1117 5728 243 4183 802 4 1 829 30 2661 7745 2338 5 90 10 31 2854 991 3 9829 11 22 43 4 25 80 6 313 7 2 286 744 4476 1 584 27 6348 19 25 1486 5 390 2 185 4 25 727 3 7400 498 7 43 4 44 2049 216 7 2 4693 280 14 25 3073 8182 286 752 1370 1085 6 2722 7 2 4608 111 140 2 4620 473 7 1 3401 263 30 294 3 1282 17 1 344 4 1 346 201 5 2 454 1510 2137 28 4 1 80 3045 101 2315 603 848 4 2 7707 6 205 3 747 29 1 166 290 17 207 9908 2854 15 25 1514 5 4783 3 23 29 25 1293 5 137 8161 15 2854 41 118 122 59 30 25 5517 1577 9 6 31 313 334 5 16 137 35 118 25 1093 9 6 28 4 1 2049 7 25\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 649 4 2 345 6120 231 3 62 4 449 66 77 9308 14 33 2203 5 7 1776 4 292 9 918 1707 21 6 1002 109 10 6 2130 7 3895 3 40 97 78 4 1 644 594 549 85 6 70 19 1 70 142 1 70 19 1 70 142 1 70 7 1 70 47 4 1 85 66 88 24 71 138 1019 41 303 47 1 67 40 2 961 4641 258 16 137 35 24 31 4 1 1205 1004 4 7 4762 2 4211 3 3408 548 99 17\n0\t16 2 280 7 2 315 267 309 9568 19 469 3 196 1 2482 3636 94 1 184 307 809 55 2363 602 15 1 397 196 10 6 323 3985 75 9 18 1035 5 1 948 3260 1 9020 2849 3 5829 55 193 55 1 80 545 63 842 10 47 94 1 74 701 8 83 96 180 117 107 2 52 631 68 3 1 4030 130 24 39 1049 543 826 295 3 552 730 32 1 2064 22 4683 3 46 1909 3 236 93 31 1114 1234 4 2270 1349 5 245 1 397 1353 22 345 3 1826 1 18 6 100 29 28 272 1985 41 1 156 3502 72 70 5 64 4 1 697 309 90 10 1030 11 10 169 888 88 26 1 210 177 117 3193 19 5960 1 59 1061 824 7 1 21 22 1 120 4 1 206 3 1 1040 4530 912 22 205 7906 8121 3 2158 1 344 4 1 201 1144 14 78 14 72 1405 6 2 2384 391 4 203 2433 17 3255 29 225 8 419 23 2 2101 8353 5 90 10 52\n1\t1 18 76 90 52 356 94 765 1 1533 246 2260 65 7 8 88 56 1999 5 9 347 3 108 46 156 2141 633 1063 61 200 1 7 1 2032 2091 46 103 6 38 1 111 4 157 16 2 415 7 31 2868 707 7 5747 285 9 1592 41 4575 42 2 3666 391 4 2008 42 2 1152 11 10 6 14 43 426 4 1575 2245 1665 108 42 237 32 11 3 14 1 82 2381 40 1505 786 87 20 284 1 305 10 123 20 4735 48 1 18 6 38 29 513 137 11 760 1 18 370 19 9 3530 76 59 26 1558 39 320 9 18 12 89 7 37 83 504 1 368 125 11 33 291 5 127 2569 9 6 48 8 36 38 110 42 93 84 283 7 9 1538 60 6 39 885 14 3 42 84 133 44 56 505 16 45 317 542 5 50 717 23 76 113 320 44 16 44 19 3 138 9466 3 35 563 60 9 9 18 76 187 23 31 1135 147 1418 4 768 2 382 2141\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 936 1155 9 18 49 10 310 47 3 24 2144 10 14 518 14 226 1679 1359 5 2 6510 8 63 1582 134 11 8 481 320 174 5241 1005 158 66 123 37 97 188 37 530 1 523 6 5222 3 55 1 861 3 1043 22 7615 17 1 1117 4400 5 140 3102 6053 3 4 7525 4392 8289 3 7 80 1201 3635 1 121 6 93 4092 15 34 4 1 120 1496 2050 148 3 7613 7 1 80 1683 1175 11 2 21 63 7196 33 3673 62 15 3532 2 148 5228 16 2402 3 3 1 344 4 1 4894 2 191 64 16 686 21\n0\t196 2408 3 33 1430 44 43 2425 3 19 3 778 297 6 301 961 3 1 5266 22 20 782 41 5703 29 399 3 33 34 70 1459 142 28 30 28 7 34 1 692 13 252 6 28 4 137 104 7 66 34 1 238 7295 19 1 120 101 14 439 14 23 63 144 1 91 559 83 39 564 44 378 4 1000 16 44 5 645 126 15 2 7131 6175 6 660 437 3 3464 39 3464 7 2 21 36 490 123 1 3043 4 1 4007 24 5 1288 48 123 10 729 11 33 22 34 1459 142 28 30 28 49 33 22 34 1381 78 4 1 18 311 2903 4 599 200 7 1 1692 2467 3 1 8124 4 2421 19 1 1077 4 9 7439 21 6 13 92 185 11 56 89 79 549 16 50 1182 12 49 3 8453 47 5 1 9454 22 1259 2835 12 851 49 9 18 12 101 8 187 10 2 358 59 73 4 3909 861 3 4702 3 42 20 14 91 14 1 2059 16 5147 95 464 135\n0\t3162 50 537 1 2341 72 61 1204 5 139 2293 73 8 57 3485 295 34 62 83 36 5 99 3 41 218 50 723 349 161 214 28 178 722 17 553 79 1 344 4 10 12 9 6 2 723 349 2195 9237 261 125 1 717 2787 867 3555 76 175 5 564 62 756 243 68 369 9 28 309 554 3335 13 2044 134 9 18 6 91 6 36 667 1 12 2 103 6633 51 22 58 911 16 75 903 3 1169 464 9 6004 323 705 1 121 6 573 1 119 6 2212 3 1 263 6 220 9 6 377 5 26 2 1073 1 233 11 23 481 55 539 29 1 4 1 18 151 10 55 2194 8404 6 1 210 15 43 1021 1429 1778 14 237 14 8 88 17 34 1 120 22 1319 8 617 219 2 148 3745 3 3169 21 7 17 8 118 11 33 57 5 26 111 138 68 476 48 6 1 272 4 9695 2 382 709 4738 13 7479 7758 3095 925 29 34 6240 1013 23 24 43 9436 8404\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 237 52 68 1 1515 67 4 5901 164 5909 1 4 1206 2243 10 6 11 14 42 1 901 4 28 454 2793 5 112 157 805 5028 576 34 1 4 216 3 319 5 2033 2421 308 1129 1 7447 7 9 21 6 2 1447 3122 77 1 1633 2708 6419 4 661 2888 1918 297 32 1206 5 1710 51 22 168 11 76 90 23 539 47 1767 1104 2 156 106 468 175 5 70 65 3 1104 3 97 508 106 468 39 230 3629 13 252 6 2 84 3213 5 2759 873 16 137 35 228 26 457 1 1418 11 34 873 104 22 3 115 13 3382\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 59 5 925 253 9 574 4 21 7 1 3667 9 21 6 240 14 31 3763 17 649 58 2876 13 1268 228 230 16 1157 3952 10 73 10 2816 19 37 97 731 1636 17 10 123 37 197 95 1 545 255 295 15 58 147 28 255 65 15 28 136 1962 438 14 10 76 87 285 9 1445 13 1268 228 138 1017 1962 85 5088 47 2 3406 29 2 6078 13 1149\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 2021 375 268 19 133 9 220 8 2242 10 12 43 6872 2431 684 1211 322 10 6 2 684 1073 3 300 2 103 245 10 6 20 2235 1462 14 10 123 19 1626 4 1400 8012 3 23 96 23 118 610 106 188 22 17 51 6 31 1656 4 11 863 116 4584 3 20 297 498 47 169 14 23 57 5207 688 51 6 227 2485 3 1817 5 1388 1 80 45 23 889 275 35 153 36 9 141 1067 1064 75 109 23 175 5 118 450\n0\t1 4 62 5613 8 467 4789 72 159 1246 209 5 3150 7987 954 287 7 1 2736 44 1912 94 717 17 11 12 2 1219 3060 10 12 56 254 16 79 5 5238 50 4038 73 8 343 11 1 1084 4 9903 3 9269 12 39 33 54 100 201 3 5 309 1 166 871 37 144 130 72 26 929 5 99 9269 3 9903 6689 109 77 62 200 2805 242 5 4008 19 5 62 987 20 55 771 38 1 80 651 19 412 2087 9 6 44 330 21 2948 8 24 3 60 6 39 14 31 2922 37 4 44 276 11 60 59 3009 992 15 288 53 3 16 1 443 243 68 685 7 2 53 121 1663 42 39 254 5 241 11 60 590 224 34 137 82 18 871 5 376 7 9 9222 3 98 26 37 14 31 2922 162 5 787 408 38 29 513 3 5 401 34 4 458 1 21 39 3295 778 236 162 293 38 10 29 399 1961 79 23 76 6660 154 3847 177 11 6 160 5 780 7 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4935 118 1 374 818 7 1 418 3005 126 5470 13 4956 9 930 6 58 658 4 374 1110 5 2 3254 106 1 976 951 4070 711 6478 16 172 31 460 3005 126 62 59 352 6 2 13 2044 134 9 21 12 91 6 31 1 121 12 13 92 2070 485 46 7883 3 14 34 124 87 127 663 33 328 5 70 23 15 2 1298 33 87 13 677 6 28 2437 1780 5 9 433 376 4910 2278 14 1 633\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 655 2 85 51 12 2 1145 1724 2285 654 4745 35 1059 2 382 347 654 9186 66 12 38 2 164 5909 2 2075 4 5675 103 8929 19 174 7724 561 1436 7 17 368 3 97 4 2001 1790 25 3830 183 25 165 9 6 1 347 106 33 165 1 312 16 13 6 132 2 4282 4 9186 8 63 560 144 145 1 59 809 117 13 724 83 186 50 736 16 110 2176 2 5004 5 1480 106 23 63 9417 2 973 4 9186 16\n1\t2 635 1247 5 853 75 731 27 6 7 9 1561 40 2 31 510 2 2 70 1 7499 13 92 74 85 8 997 9 18 12 285 2 46 3061 8 83 118 144 8 636 5 1811 133 10 16 31 1988 681 269 183 1573 1 9669 17 49 8 997 2819 4 8 636 5 875 3 99 10 318 1 3158 13 6 2 4308 2070 7048 5 17 20 670 14 4991 41 548 5 836 27 276 36 275 6596 2 658 4 482 371 3 929 1 353 5 2951 110 51 22 168 106 10 276 36 1 353 481 899 41 11 244 202 1424 2287 292 27 213 7 1 18 11 1878 1 156 168 22 279 1027 99 14 27 1035 5 771 5 3217 605 1 5 31 55 2302 115 13 150 152 969 9 18 39 73 4 11 919 3 128 24 10 115 13 190 176 36 17 27 89 9 1 59 302 180 100 107 1 5409 41 55 7653 10 827 12 73 4 25 436 130 51 26 2 570 158 1 76 90 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 131 2012 5 26 2 351 4 1099 269 4 3666 254 1564 6225 8 143 504 78 3 8 152 2071 5067 20 59 87 8 504 9 131 5 26 9588 30 1 330 2541 8 481 241 11 76 117 525 5 333 1 3906 7774 117 702 8 54 24 7421 3333 2 366 3698 50 5776 1773 16 522 68 133 9 391 4 8 560 48 4573 2021 19 5 90 9 131 1179 77 1 735 436 2 864 131 1738 1 7 1 2592 11 8 1200 5 2783 50 1062 38 9 131 369 79 26 935 3 134 11 10 6 20 105 452\n1\t1 184 299 429 3484 11 1196 9410 31 8947 33 2612 5124 7 48 40 5 26 1 644 80 5583 13 5384 20 78 63 26 367 16 1 673 2216 4 1 43 4 1 6667 1650 66 637 16 2 163 4 7610 32 1 3930 10 191 26 367 11 43 4 1 623 621 1289 3 1 692 684 11 5441 7 95 1802 5124 21 4 9 1165 22 340 4877 9841 59 1 668 187 1 67 1 7643 10 13 2361 2273 5499 2133 65 308 7 8334 17 20 34 4 126 70 1 2794 33 1 327 607 201 1680 29 25 113 7 2 6898 709 278 14 2 3 112 794 435 5225 14 2 30 13 777 2 7172 1875 3945 217 2181 22 200 5 3006 199 75 211 33 61 7 62 2066 3 756 2569 205 4 126 22 1317 7 2202 65 15 13 6254 690 5741 151 273 11 1990 941 604 15 1802 6 829 29 2 5604 17 1269 6016 481 8797 1 233 11 60 6 47 4 44 1656 14 941 146 60 181 2050 1997 2562\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2611 6007 2934 742 50 2333 12 8 4409 297 5 99 9 18 19 8411 1099 269 7 8 12 246 1245 3997 4417 269 7 3 8 645 1 2096 7891 3 1310 1616 133 10 1 398 1513 24 48 2 351 4 2 84 201 3 31 312 11 88 24 71 31 240 67 4 2 7 1 5939 116 45 23 24 10 3 99 9 108 8 4810 23 29 225 31 594 3 2 350 4 6086 494 2444 2987 443 216 88 24 71 248 15 2 874 1525 1500 1315 3 485 828 115 13 252 18 12 2 900\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8978 207 144 104 22 37 731 5 34 4 3119 49 33 22 37 109 2427 36 9 13 8643 8 159 218 170 8 563 2 156 188 38 2201 17 7 1 182 8 165 78 52 2258 38 110 115 13 6485 6 311 84 14 3259 1018 54 497 3 60 229 76 70 2 7927 29 9 172 4681 145 16 13 1701 1813 7443 8 192 3414 5 134 11 6 2 46 1134 2675 15 360 632 488 4 611 36 10 12 909 5 1718 2 1442 2417 115 13 92 28 6 11 8 175 5 64 52 3 118 52 38 9 240 8621 17 1115 287 3 115 13 1709 47 4\n0\t4742 370 19 1 754 6173 6393 7715 441 6 38 2 3326 17 4917 287 35 5546 2 3775 164 603 74 379 1436 457 1355 8292 308 7 25 2293 60 6 8963 30 2 2 955 3370 3 1391 2 11 200 1 974 3 3029 44 5 2703 2 3284 3 5 44 8710 651 5276 243 2593 13 5384 44 1514 5 87 37 6 1 298 272 4 1 135 1 119 6 167 5 134 1 2532 3 136 1 201 6 152 2054 1 263 6 2384 3 1 18 37 4737 468 26 1578 5 549 2467 4175 2627 1 177 59 1225 38 1507 17 10 34 811 2 163 9950 734 5 9 2 323 464 3687 538 3 51 23 9753 13 677 22 124 11 22 37 91 33 22 299 5 836 10 6 306 11 1 2467 40 2 156 1 21 4089 37 78 8 339 216 65 52 68 31 2579 3 30 1 85 1 212 177 6 125 116 522 76 2456 32 45 10 1121 16 111 15 2 9 54 26 1 5939 16 187 10 2 13 2381\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 114 20 905 5 284 1 7 6364 318 8 12 42 100 105 9221 1215 6855 6 2 430 16 97 8250 1281 73 51 213 2 185 4 1 347 8 338 9960 59 546 8 381 1129 1 7795 249 6466 15 7748 3 3744 6275 12 297 8 3388 10 54 1142 8 159 10 14 2 331 2206 18 7 12 46 53 17 8 332 336 19 174 18 8 159 5878 8 12 945 7 1 2675 593 3 3251 10 12 59 2915 5 1 3 4 3853 1703 5 1 84 557 7 6364 6 162 386 4 712 1 462 94 132 6 597 10 5 1 5 70 9 28 260 23 495 26 446 5 1 347 197 1 18 15 42 2305 2664 3 9003 109 248\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 536 7 1 750 3278 1240 8 12 2337 49 8 969 50 4967 16 246 107 1 8207 3 101 2 8 909 5 64 74 4 34 2 884 4422 4039 5076 141 66 8047 7 5039 3 1 4276 189 869 3 32 2 1684 322 8 202 303 1 18 7 1 1 1428 12 2050 2690 202 34 120 61 1 1043 89 2308 1 2947 46 688 14 1312 1059 7 25 5551 7 1 182 23 83 4219 552 116 2128 552 116 387 2497 174 682 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5564 6 46 167 3 6 5329 29 4352 13 6570 194 9237 1 4707 302 16 55 1078 704 5 99 9 21 41 5075 13 8365 2847 1165 1657 22 519 548 30 4 62 46 184 5810 9 28 13 92 263 6 573 1 121 6 573 1 593 6 573 3 1 312 4 246 2 8765 4926 684 914 164 6 4415 3133 13 92 2953 29 2 447 1073 6 9812 13 150 354 8617 9 28 36 1\n0\t13 4375 51 61 1740 5897 8028 2356 3 3935 69 34 4 126 24 43 2352 4 860 17 204 33 34 61 7 48 676 1583 65 5 2 3059 739 274 19 2870 2 13 14 10 424 440 5 26 6801 15 2 1182 422 23 175 5 637 44 654 8060 9 9699 7286 864 2276 19 2870 2 106 723 413 22 1747 5 414 47 62 7334 14 1 2090 6 30 62 2046 13 5848 17 204 297 39 266 47 36 2 431 4 2011 297 260 3 3 276 36 3719 243 26 403 235 2684 2882 1939 1 188 81 87 16 13 92 5614 22 167 300 55 364 68 48 1397 504 16 2 9707 36 476 906 55 1 633 1349 6 364 68 1397 4749 893 6 1 148 376 204 488 4 611 10 196 34 1 113 4718 13 614 23 36 2 18 207 34 3 58 841 47 4 611 468 229 24 5 176 58 1231 68 29 358 41 535 7 1 13 4255 3108 20 55 16 48 376 869 9 739 63 13 9 28 433 7\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 2924 4 246 43 1303 341 4677 39 100 196 6034 51 22 7065 3341 3319 15 823 3558 3 34 3149 4 382 1025 17 479 8229 15 4559 4 1011 1603 7 1 18 276 7374 9 6 2 1152 73 97 4 1 1102 54 26 1050 4161 29 1 85 9 12 13 5 9 1 120 3 23 230 36 819 77 2 8564 4919 682 13 8568 1 861 6 46 51 22 679 4 7536 16 304 802 4 4 1 41 1618 802 4 275 101 1789 77 2 568 17 1 212 177 6 3 13 59 16 1072 3\n0\t0 0 0 0 0 8 143 504 78 32 9 158 17 850 2823 48 2 13 150 214 9 2067 7 2 1598 4 489 7398 29 7634 14 772 14 9 4447 1220 8 230 3867 1294 1 293 363 57 2 298 416 176 5 949 1 443 216 30 3 2036 3 1 121 12 2 425 665 4 1 28 63 830 1 223 3 30 1 397 1404 94 283 1 209 155 69 1 81 35 9 177 191 24 57 1067 1687 959 1 3365 397 1404 11 9 177 689 96 4 62 14 33 159 62 139 65 7 13 1783 144 1850 104 22 37 91 69 436 1 6473 321 5 176 29 53 104 3 525 5 973 43 4 1 188 11 90 126 37 452 1202 584 3 647 364 4741 3 1608 3 2 67 11 6197 5 20 39 306 4623 582 1 552 10 16 9852 186 1 7723 41 1125 16 5821 313 124 15 1683 67 2131 84 861 3 1883 1948 58 4741 58 13 614 9 21 57 2 539 1584 10 54 24 71 78 828\n1\t57 2017 5 6264 1 3 128 1 326 183 1 968 303 16 57 59 248 350 4 188 11 965 5 26 2427 3 1 2451 12 2 1870 533 1 212 2824 1 321 5 256 2 163 52 216 77 62 1439 69 1204 2385 341 6295 2 1114 604 4 82 47 5 2570 1 111 33 114 12 162 386 4 4349 1645 40 31 4217 7201 16 3 1406 17 693 5 65 2 163 5 56 3471 14 3719 3 2958 5841 1645 3 9099 22 3759 174 4 127 404 1 223 111 224 7 3 8 173 947 5 70 50 1191 19 1027 45 23 112 2633 1975 327 2 23 24 5 99 490 8 4810 23 112 110 42 46 9760 13 659 4641 5 2414 69 23 3361 22 2 4128 8 12 37 1475 30 1 116 2352 3 1 233 11 23 152 1115 1078 48 31 832 2075 10 705 3 5 2385 3 1 344 4 1 968 69 331 4249 16 3769 10 1294 5 96 11 2 2831 1504 968 88 24 4013 37 78 6 323 317 34 2856\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2905 1 1110 6 20 1 210 18 117 1001 1453 11 4556 54 24 5 139 5 2 21 11 3380 5 90 43 426 4 3703 41 8612 43 1703 17 1200 7 2 1526 41 2973 5042 245 436 58 18 8 24 117 107 40 713 16 37 103 3 6211 37 301 14 114 2905 1 115 13 252 21 6 2 7687 11 40 2061 162 5 354 110 1 121 6 14 91 14 95 18 180 117 575 1 119 6 464 3 2775 1 293 363 22 4224 7 2179 261 55 2363 3228 5 9 21 130 26 3238 4 2449 1 1110 151 817 1209 6669 3425 291 36 9725 1262 43 104 22 37 573 479 452 241 79 49 8 348 23 11 9 6 20 28 4 450 145 56 20 273 48 422 5 134 675 8 894 97 81 61 1078 283 9 18 45 33 1808 6372 17 39 7 5074\n1\t15 25 298 3734 3 4051 6360 25 706 672 30 1579 6 52 6484 52 3 1109 3260 25 1503 3 7160 7 25 13 92 1144 4 8719 22 2 1795 4830 3181 9650 30 638 6 340 2 52 1087 3 278 1074 5 25 873 541 4 245 886 123 20 3642 44 3639 2328 14 14 7 1 873 324 3 39 80 4 1 290 1 9998 9159 3 1383 22 162 5 1271 4 6062 13 150 54 24 3281 45 33 472 1 85 5 187 264 120 264 3263 5 4951 62 7498 1 3079 61 1227 4737 17 88 24 71 52 240 45 33 61 340 750 5286 1 1144 4 1 9193 54 24 93 2397 138 15 43 9244 1827 1778 11 6638 62 3734 4 13 5020 121 32 1 601 647 1 250 201 2108 5 1720 1 131 3 10 2439 7 31 790 364 2864 3 52 1087 5024 4 4953 1471 46 2915 5 1 215 873 1252 2202 34 1 4698 179 7977 1154 3 1626 38 8012 392 3 423 6360 2836 10 93 1 2387 4 1 215 873\n1\t2498 6 205 3 77 3 7 1 189 2 167 170 2949 6 3542 39 94 1204 44 975 7 2 7877 2 1360 613 2046 620 7 8622 315 3 4308 15 1 3 625 2732 2036 8805 4 1 80 4 21 8240 5319 5 5038 707 22 17 1 67 7099 52 5 3 962 68 5 1403 14 298 9992 4982 3 4879 22 14 78 2 185 4 1 5325 14 2962 3 1 21 100 169 1 1190 4 9830 15 86 120 15 5678 2514 32 11 34 291 5 24 62 221 4 5448 17 1 545 373 196 1 356 11 958 2498 6 58 3 958 1145 6 364 68 3 14 1 613 119 427 6135 72 22 556 77 1 5151 4 2852 8854 5127 1 8816 4 1 1729 1708 2196 314 204 8924 2 176 1339 189 709 1402 3 398 3157 3 6 463 5498 41 8498 19 116 4973 2 84 1117 356 6 19 2760 737 3 958 2498 6 1029 7 224 5 1 2568 1733 685 1 572 2 979 176 66 6 7 498 205 3 279 2 5786\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 497 8 24 128 227 1568 303 5 20 149 9 18 695 7655 69 17 2 46 345 1540 1 278 128 114 9672 115 13 114 23 853 11 10 1 9153 168 1240 1 2588 22 202 59 147 115 13 150 497 8 24 128 227 1568 303 5 20 149 9 18 695 7655 69 17 2 46 345 1540 1 278 128 114 9672 115 13 114 23 853 11 10 1 9153 168 1240 1 2588 22 202 59 147\n1\t56 143 321 1 199 15 1732 194 187 43 8710 1181 20 3 5 401 10 1237 292 4 1 85 1123 3842 169 322 519 10 196 105 1920 2214 66 6 514 318 60 5276 47 66 311 2175 1 389 1380 3 13 724 1 505 7 5396 12 401 4 1 3875 3088 453 30 9499 6756 1 113 180 117 1018 563 88 492 1 898 47 4 306 1151 3 304 624 8 193 27 12 2 3 4 448 2488 6164 3 4871 8425 22 13 2051 12 193 42 20 301 44 44 280 12 2984 3 5103 5 1 4066 3 35 57 1 1538 12 162 386 4 60 3 3 286 174 7 1 223 427 4 35 1200 8198 2720 51 22 2 156 35 2162 1 1675 5 9 13 8568 1 5615 31 491 1077 801 6 373 279 66 2589 1 21 36 2 239 178 40 2 4070 788 2243 1 759 544 5 9988 79 30 1 44 113 6134 421 1 2488 63 28 139 13 1601 7 8011 2 56 53 1775 2 56 627 1249 84 1252 84 135\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 241 11 392 124 130 328 5 3642 1 4431 4 2155 925 3 1451 43 1383 1092 123 1 2808 101 2 1736 392 158 8 12 852 304 7006 5830 2 7448 3168 3 3549 48 8 143 321 12 1 2670 112 1 810 392 168 3 1 3303 4 1 1077 7 2 21 66 5503 4715 34 1267 41 1105 2326 59 5 182 19 2 2834 17 6687 4096 5 257 356 4 622 38 2 1155 1617 14 2 21 17 20 14 2921\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 12 2153 46 678 3 2153 46 695 34 4 1 171 22 169 148 3 46 1 790 4 1 21 12 4638 1221 426 4 9025 3 66 59 1253 5 1 1021 4 1 212 9404 13 777 20 16 4075 8 1266 42 20 48 23 54 637 17 11 6 48 8 338 38 110 42 1031 235 8 24 117 107 183 409 409 409 15 2 1021 7108 3 4134 456 7 1 8224 1 374 22 37 3309 341 11 23 173 352 17 230 16 450 7 82 2800 127 22 237 32 2639 4 13 1601 2787 66 16 503 151 10 2 53\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5457 101 28 4 1 4 9 21 153 3237 187 79 8 87 118 169 2 222 4 48 12 74 48 1168 65 19 1 1250 8 320 283 1 215 757 4 3 101 46 10 12 722 6241 34 1 250 4 2 7183 135 23 24 5 320 9 12 383 3 612 183 34 1 1828 7 86 221 744 9 739 12 323 1929 4 86 290 16 1034 8250 1 21 12 340 5 1 250 35 1043 47 350 1 215 158 3 98 2619 7 8 134 1 80 1610 168 1218 1 2253 2112 1 81 15 1 3106 12 34 145 273 10 12 256 7 16 5620 17 10 12 37 1633 6560 10 2200 235 160 19 2546 5 10 5 5 2 3 1370 17 34 7 399 42 2 299 2079 16 7 11 145 446 5 134 11 1 210 18 180 117\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 67 3 1 131 61 501 17 10 12 56 2578 3 8 812 2578 502 6 1051 27 56 256 19 2 401 4744 1835 3 1 282 35 262 25 975 12 56 1477 3 9612 2301 8 179 60 12 8755 318 8 159 1 970 8 173 134 235 91 38 745 244 28 4 50 430 1488 8 112 2587 145 3990 765 1 1706 17 145 1096 8 159 1 18 183 765 1 1533 9 6 2 103 16 437 8 2923 3 2347 103 5 1 3525 4 12 37 1119 3 94 44 129 114 48 60 114 1 18 12 2175 16 8 88 1092 820 5 99 1 344 4 1 880 16 1 17 8 83 175 5 187 235 3134 17 42 39 20 50 574 4\n0\t1659 51 19 2 344 582 16 1 2104 1 691 19 2 1998 7985 196 25 1671 371 16 2 13 106 1 18 271 400 142 1 531 6767 124 131 1 4531 160 77 2 163 4 407 11 12 1 524 7 1 392 66 43 82 2381 17 7 9 28 1036 5 1173 77 1 1641 14 2 6854 4 1429 199 2884 3 1232 2 29 66 85 1 2660 76 26 115 13 3053 12 39 105 78 5 45 605 1 2660 12 9 806 10 130 24 71 248 2 223 85 1448 17 8 76 134 16 137 35 36 1 813 3 5299 4 1101 285 11 1641 1173 236 227 51 16 277 3648 13 6570 20 1 212 1689 4 448 1 735 47 3 72 24 174 840 8079 183 1 21 5824 17 30 11 85 1 212 21 40 433 2 163 4 13 92 84 18 2851 4 1 9849 2376 6 3893 7 1 6950 17 16 1 157 4 79 8 173 149 122 7 1 135 300 2 5442 4 1 228 24 89 9 3606 13 24 1977\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8332 4197 4 1867 876 2 732 5 25 129 4 1 3519 27 25 927 15 31 1164 356 4 253 1 2 1321 1 129 999 5 209 577 14 2 148 454 3 20 37 78 2 687 1493 18 13 92 67 427 6 162 5 787 408 2354 3 97 168 22 4320 48 151 10 216 6 1 678 1300 189 3 14 1 4934 129 6 15 402 1 129 4 1 213 1619 78 660 2 1048 1198 3994 17 4203 6811 3 151 23 560 38 25 155 2876 13 252 18 12 19 1965 856 2 163 49 8 12 2 3474 37 8 24 2 732 5661 16 110 42 279 283 3464 1441 16 137 35 335 203 502\n0\t1 567 1079 5 1 182 4235 51 6 924 52 68 394 2110 4 9 18 279 567 116 671 1987 1 9518 6 1 5642 1 121 6 4 1 125 1 401 29 79 145 101 416 3 37 10 271 778 1 274 1657 22 274 65 1623 29 3 22 955 42 39 489 19 154 1044 69 1251 32 1 265 5848 8 83 320 517 1 265 7598 32 1 13 2044 26 1551 5 1 33 5292 62 6604 19 1 4674 167 1 567 1079 1483 1 462 993 14 1 672 4 6697 1 14 1 8663 7 1193 498 47 100 100 134 235 17 90 31 2579 4271 33 190 109 24 7037 1631 7785 32 28 4 44 3 1 330 427 4 1 18 1225 146 3901 24 2144 147 2998 38 1 3557 200 69 7912 116 1 1569 56 6 11 13 499 666 678 188 38 1 4 11 1165 7 11 10 12 1080 16 1 950 5 5482 1743 81 434 7 1 1170 17 20 134 47 13 150 1390 6840 7103 16 9 18 7 2 8 230 3867\n1\t1 2743 11 27 173 6331 2978 3566 3 7959 6 132 2 84 668 73 10 1 5616 4 21 3 5960 285 2 7418 567 4393 4 899 7 5720 3 1790 14 193 5 55 1 1323 5954 730 22 3 2507 189 2 1243 3 2 147 887 707 6 2 4 632 4306 3 9956 2 1189 234 37 301 5708 32 864 11 55 1 1255 4 2790 6993 3 1950 181 1080 115 13 858 8 787 9 5551 180 39 2071 736 11 1922 6516 40 2021 2408 717 490 12 1 74 85 420 107 44 7 2 158 286 60 79 32 1 4362 44 3 2978 255 47 4 44 1068 31 8851 7 3851 2324 15 31 9755 5024 4 5278 8 61 2 55 193 205 6516 3 5557 61 1840 1334 636 20 5 8324 62 11 23 83 478 37 501 17 29 225 42 480 1 2204 205 87 109 5 1720 389 668 2139 2449 6516 4203 1 166 11 7365 228 24 758 5 1 1538 3 5557 8992 132 3 4197 11 10 153 729 11 25 1299 672 213 169\n1\t0 2 547 203 739 38 2 4 898 7 5825 11 39 629 5 26 31 161 181 36 236 679 4 4 898 2701 17 4 448 9 2726 629 5 1088 60 693 43 1032 32 44 3 37 60 39 629 5 1351 628 66 6 7980 14 2 327 3 3408 60 762 375 678 3 55 2 4777 1433 16 2 655 2659 15 1 73 60 6348 678 7664 29 366 32 60 615 47 11 60 3 31 161 2906 22 377 5 26 1 59 98 35 22 34 127 44 1845 954 7462 262 30 1469 418 200 3 615 11 188 22 20 48 33 20 30 2 223 3812 9 40 43 547 1119 168 3 1 312 4 1 161 2104 11 22 44 6589 101 82 68 48 33 1030 6 1002 8905 2 222 4 547 840 3 55 2 7742 4 2104 959 1 182 90 9 2 547 1775 3 136 180 107 9 97 268 19 249 1 6185 305 324 6 78 1824 4 5871 20 2 91 103 203 2493 300 2 53 5428 391 5 1315 47 4 5579\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 8 165 9 18 1126 32 50 2340 385 15 277 82 696 8 219 98 15 46 402 4911 195 9 18 213 91 3579 23 70 48 23 946 1987 10 6 2 901 4 1549 2241 297 23 175 7 2 108 373 20 2 368 17 16 772 5991 10 6 20 11 565 8 54 229 100 99 9 18 702 7 2 9 6 1 232 4 18 11 23 54 64 463 46 518 29 366 19 2 558 756 2276 11 6 39 1841 5 186 65 43 387 41 23 54 64 10 19 2 2714 3390 19 2 558 756 2276 11 6 242 5 186 65 43 290 480 1 91 505 1881 2131 3 5447 3459 443 916 8 143 24 1 2277 5 473 142 1 18 3 4294 36 10 100 7425 77 50 305 1 67 40 71 248 97 268 7 97 502 9 28 6 58 4638 58 1824 58 2194 115 13 3793 116 855 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4145 6333 40 5 26 1 1139 21 180 117 575 10 12 1 21 6 38 2 342 7 1776 16 43 62 1021 1668 1238 11 6602 3 2 282 35 1912 38 1496 2 3 33 22 1172 19 2 3132 5 139 5 1 741 4 1 990 5 564 1 234 31 9898 17 4105 10 153 55 729 48 1 21 6 1395 3822 10 6 9612 1 7 9 1189 234 6 4638 37 4 3 4 2391 200 9752 3 3 3 51 22 4 5869 5204 1 234 6 37 37 2211 15 2 426 4 176 5 110 1 234 276 36 2 274 4 1612 1 2837 22 2325 1528 14 322 36 2 1473 4145 8857 4 2 4 510 808 43 4 1 119 213 105 1571 36 1 250 4531 1841 62 4399 2 1420 4 9880 3 413 3 100 291 5 26 446 5 90 10 7 1 17 1 1612 43 1067 3775 1025 3 927 151 9 21 9909\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 379 3 8 39 1616 133 4860 1 60 1310 3072 285 43 546 4 1 108 8 56 555 8 57 556 2 15 1159 17 1 2557 233 6 11 1 250 1921 672 6 37 1767 3 11 10 12 1258 16 79 5 6086 49 257 2689 10 151 79 175 5 785 3 962 2369 27 93 40 58 1362 8 12 1247 3719 70 645 30 2 3417 681 269 77 1 803 13 2687 70 79 1989 8 112 2119 203 2433 17 1 6 483 2850 3 331 4 168 11 56 90 58 356 29 513 45 23 175 43 53 2119 2433 841 47 2 901 4 102 3298 41 77 1 925 1 36 1 258 45 23 2686 32 5025\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1078 1 184 442 201 3 7898 397 8 909 2 163 52 4 9 135 1 121 16 1 80 185 6 1111 292 1 67 33 24 5 216 15 6 1669 29 1293 618 1 21 128 133 73 4 1 121 3 1 460 3 43 3 65 3 588 170 3694\n1\t0 0 0 0 0 0 0 0 0 0 0 0 50 1185 3028 666 11 7705 190 26 6493 2049 2331 8 83 118 45 8 1023 15 122 5142 8 969 9 388 324 4 1 135 74 8 112 3730 4497 14 27 12 1080 2985 3 1066 46 109 7 9 6327 27 143 1654 10 17 262 2 1174 6569 8425 289 11 296 171 63 309 3189 39 14 109 14 598 171 63 1405 20 11 51 12 2 598 2606 296 2272 38 110 7 698 45 72 34 216 371 98 3189 63 2500 1 66 10 1071 5 1405 1251 32 82 3189 9 6 3691 15 1 2272 4 146 11 40 6319 220 1 477 4 290 1 733 189 3 88 24 71 138 3 620 1 4 62 5479 1413 136 7705 1371 15 34 25 3754 27 6 904 16 3 5195 2123 44 5 2 164 36 42 169 2 84 178 29 1 182 4 1 21 17 8 495 3673 1 1905 42 39 279 2034 8 96 33 2619 78 4 1 456 5 358 719 17 33 198 5761\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 23 734 65 34 1 1637 32 1 6470 59 28 35 1421 47 14 1 113 7 1 201 6 9481 2157 3 5092 1212 90 1 425 280 16 768 100 24 8 117 107 275 2074 2981 15 132 1299 860 289 1325 15 34 1 759 60 5052 14 2981 3 44 121 2576 100 5 6116 44 1206 6 37 9803 55 45 14 43 81 134 1 6328 12 1206 2576 61 5148 138 68 117 420 354 9 324 125 1 39 73 8 149 11 292 6083 1 121 30 9481 6 5 798 1 233 11 1856 5253 3 1 344 4 1 201 22 46 1502 14 109 1543 1 1675 4 7 898 61 33 517 49 33 201 13 1601 7 34 420 134 9 324 6 360 3 8 354 11 307 64 9\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2915 1260 4 2347 3 240 710 821 38 2 3398 3 5693 5901 883 7638 2761 19 3585 17 630 1 527 16 656 1240 2 426 4 4934 3 8561 1 113 111 8 88 1431 205 1 21 3 1 821 6 11 10 6 146 36 2 52 3427 1539 3644 5 722 17 93 2 4725 7106 4 1055 3 893 1 644 84 4776 6 11 10 6638 148 157 7 132 2 111 14 5 90 23 144 662 82 124 36 2782 28 4 1 1219 3359 4 2 53 347 253 31 1381 53 135\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 143 87 78 2322 5877 17 2176 1 3957 23 143 5429 6 1 147 287 29 2 298 4146 35 418 355 8406 4912 32 5161 498 47 5 26 31 4086 282 35 76 582 29 162 5 899 65 1 4242 642 2 401 60 173 820 3 5234 261 35 196 19 44 91 4867 60 65 7 440 5 1232 922 15 44 766 1141 136 253 10 176 36 60 6 9154 44 752 3 440 5 70 44 5 319 32 1 13 3 1917 3909 2137 1 607 201 6 6398 3 42 3408 109 17 11 153 1435 8186 16 2 263 11 4411 224 2 3048 3 1664 156 8352\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 52 88 261 244 2 622 2118 1587 3 5 2147 7 2 327 3 8 1309 37 254 8 303 2 25 38 1228 2860 3 248 7 375 89 1 1409 2049 7757 3484 8 24 117 575 8 96 38 10 944 172 406 49 8 64 9959 3 9959 41 3 785 146 6121 77 710 395 3872 6 457 1 1 1398 6 19 1 4355 3 1 6030 6 19 1 8 36 25 2639 4 48 1461 88 24 71 654 183 27 9867 19 8 56 449 5 64 2 163 52 32 9 360 2678 27 40 2 163 5 3964 3119 3 2 360 111 4 1083 110 1359 16 116 290\n0\t431 1819 15 2767 67 456 29 3633 479 531 20 3228 7 95 699 239 67 427 6 757 65 77 2767 66 22 98 620 7 2 1795 13 92 6 106 50 922 4004 15 9 1199 14 7 1 406 3299 4 2098 42 396 2 243 810 1167 15 254 5 241 4149 28 4 1 250 120 123 146 56 439 207 254 5 8245 1 1261 6 98 2761 14 45 10 247 810 2160 45 317 77 9 232 4 2106 98 300 468 36 9 1199 16 79 10 6 2 84 13 92 302 8 544 133 417 6 73 4 1 74 156 51 22 240 3 258 4233 67 2131 15 43 1151 7 10 11 151 23 4201 16 1 807 1 897 40 630 4 476 1 120 22 311 105 929 3 2809 22 4425 105 4506 42 2091 20 888 5 1999 5 126 3 36 2350 13 2595 225 15 2098 10 472 375 3299 183 10 2183 47 4 8239 3 1 129 61 34 689 17 7 1 7232 10 181 10 40 549 47 4 8239 183 10 55 7577\n1\t11 1264 51 6 2 1551 222 4 3536 43 447 217 1890 385 15 2 156 2126 4 840 217 2504 701 30 6508 7 1 9137 101 1 45 207 1 260 5590 245 42 30 58 907 14 1985 41 3755 49 2111 1163 14 97 54 24 23 13 3371 2 377 445 4 38 2147 5 564 40 11 8987 298 397 1548 230 4 2 368 135 1 147 887 2840 22 4358 1 861 6 53 217 14 2 212 42 483 109 1001 8 179 1 265 12 6695 217 12 237 5 1767 217 1 121 6 1233 17 480 25 401 8 143 96 4018 57 11 78 412 290 2181 12 1136 5 206 763 7616 29 1 85 2147 5 564 12 1716 47 4 1 723 124 60 1478 7 89 30 763 7616 7 102 4 949 9 217 2963 47 27 201 44 14 2 2 823 1839 12 314 16 14 60 992 7 2 3660 29 1 13 5 564 6 2 53 953 11 6 109 279 133 17 8 143 96 10 169 1457 65 5 42 53 17 20 3711\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 159 9 899 375 172 989 29 1 1284 7505 21 1672 45 8 8 338 194 10 1049 84 5589 8 497 80 81 204 22 9 21 73 1 21 114 291 371 4433 1 221 19 1 4335 2819 361 1 386 12 14 2 13 724 10 12 31 1211 8 96 97 81 328 5 284 237 105 78 77 2 1211 34 33 22 377 5 87 6 90 23 539 361 207 513 8 114 39 11 29 86 37 10 6211 19 11 3432 39 50 358 7345\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 418 15 2 753 4 1 795 7 1 874 3 98 1047 1 67 890 375 172 3 577 1 7105 5 1 2269 2063 4 1443 106 1 1955 298 2906 3 1 7001 274 47 5 8077 3 186 1489 19 137 35 1 7 1 13 2120 8 332 336 218 15 8637 4592 14 1 7001 3 169 338 218 15 816 8567 14 801 6 1 1654 5530 5 9 7800 8 12 20 14 556 15 218 13 499 6 89 7 2 696 541 14 1 817 21 3 40 2 595 696 119 5087 7 2 147 7154 7918 6 1976 14 17 153 56 820 689 3 8 497 207 50 250 4093 4 9 162 56 1421 689 236 162 56 464 737 17 162 56 1485 4032 37 1 545 6 303 15 2 243 2518\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 997 9 18 19 1045 183 7300 77 916 45 819 95 796 7 283 2503 9372 3 925 101 7 29 225 2 2596 984 9 18 6 16 1038 45 11 153 6123 116 4584 322 145 1893 468 555 11 23 61 1 28 38 5 26 7 73 9 18 6 167 565 1 505 5 905 2159 6 1853 1853 1319 1 120 22 34 301 3 1 494 6 527 68 116 687 1045 108 959 1 769 1 18 1647 5 3006 79 4 15 1291 3034 9137 571 15 2 20 2 3395 1368 1031 82 696 7020 245 9 28 247 55 12 39 908 565\n1\t13 92 330 6580 1656 424 4 611 1 2313 4 1 518 1500 50 1522 6 2899 35 6 643 740 1 111 5 26 5550 31 383 32 2 9425 44 3 2683 1544 1356 136 60 12 372 15 44 2528 7120 100 446 5 2006 1566 6 1 74 355 643 7 2 8907 136 242 5 2321 457 423 823 6678 4304 19 1 8982 8111 7081 6 643 8165 136 60 39 214 2 326 4846 16 44 29 2 2899 6 643 226 7 2 3 6085 744 98 60 6 5 26 14 1 1235 3207 6 1 28 15 2 4 5117 11 60 6 160 5 26 643 740 1 80 111 11 72 76 100 1374 7675 1 18 6 588 5 31 182 183 60 6 355 5550 2958 6845 6 1 28 220 60 12 20 2 4 1 1235 3300 638 13 92 957 3 1 226 6580 1656 6 1 1077 32 1 2528 1992 1146 1 326 6593 29 429 168 3 1391 1 848 1603 40 336 1 1077 14 237 14 8 2510 254 891 100 4982 138 740 2 1235 2803\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 31 3833 351 4 50 290 58 994 1 121 12 37 237 2255 10 130 26 314 14 31 7 121 5452 4 48 20 5 1405 10 6 1674 2 2729 3957 4 1 1188 2905 66 93 1 1735 4 1 121 86 747 11 693 5 25 6636 154 156 1166 3 128 11 81 76 946 53 319 5 694 3952 110 9 232 4 380 1563 1792 104 2 91 3774 30 10 151 3 5226 176 202 13 7254 130 186 1 3024 1584 3 87 4 25 1818 29 225 98 72 88 26 1094 15 122 378 4 29 550\n1\t63 867 288 29 10 32 264 7432 11 6 2 687 6076 135 10 76 20 59 291 687 16 81 1100 15 25 296 124 73 4 1 1349 3 1 2461 1330 1025 17 10 76 93 291 687 16 81 1100 15 25 4273 581 73 4 1 166 188 3 25 860 5 348 2 84 471 49 81 99 296 581 386 81 228 867 27 40 58 860 7 1083 2 53 67 3 59 2405 19 813 3 4470 11 6 48 43 81 2564 3527 8 96 11 27 6 2 46 964 206 35 440 5 3642 2 2812 859 7 239 15 239 135 292 20 2 53 158 6118 164 8476 226 296 4215 6 31 665 11 6076 63 87 52 68 1145 1724 6865 104 3 300 7036 130 1961 122 52 3 1857 122 52 943 124 5 27 693 656 39 99 25 4273 703 20 59 87 33 131 11 27 693 2 732 1234 4 17 33 93 131 11 27 40 1884 3694 758 122 28 1825 2912 5 368 3 6 407 28 4 25 6837 13 47 4 394\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2199 237 14 861 5655 9 21 12 167 53 16 1 3818 51 61 2 156 268 11 1 2036 12 111 105 1053 17 1 802 61 1227 7 2990 3 2716 7 1 121 12 845 855 16 2 402 445 7056 17 1 593 12 2444 375 168 61 3295 47 111 105 223 7 31 525 29 1216 3 1 363 61 1 1643 30 1 7 1 130 24 71 301 5708 32 1 570 757 3 154 525 5 652 157 5 1 12 631 15 1382 3 8 93 339 352 17 96 1 445 143 1959 126 5 1 429 37 33 721 253 2326 5 1 3 11 34 1 188 7 130 26 588 5982 54 24 71 52 548 45 10 61 2 527 108 10 247 91 227 5 26 2 18 17 247 53 227 5 26 8104 1497 70 1 3934 52\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 181 5 70 91 16 43 2560 229 39 30 1 3319 9 6 152 2 46 240 108 1 21 6 31 1045 18 66 152 5609 664 5 31 240 857 3 109 248 1192 115 13 252 18 190 20 26 16 307 1815 45 51 22 95 1045 596 765 490 8 323 354 9 18 45 23 36 53 1145 1 21 40 1184 7832 1 1167 1680 160 5 392 15 5779 66 1 389 4179 34 42 319 1 234 40 71 65 77 261 63 3953 261 422 5 2 2155 41 4990 2 1 7195 4 6 68 3720 2155 220 195 307 6 1727 137 4039 2 18 11 151 23 4630 5605 109 2878 3 53 363 16 1 13 150 2292 5 36 104 66 24 346 3 152 916\n0\t6 5 26 670 34 4 1 215 4081 3 2249 1110 618 9 85 151 79 175 5 50 671 47 4 50 73 42 2 351 4 1080 53 135 1 2629 4 1 1829 443 2932 3 802 7 95 178 7 9 18 63 256 1 545 77 1330 9 330 21 270 1 1134 215 3 4089 10 47 4 86 3 1 5180 47 7 1 1228 7192 3 20 59 1 215 312 3 86 8820 17 257 2717 14 530 9 21 1031 1 88 20 2874 16 10 57 58 119 7 1 3776 16 2 58 263 220 10 12 791 428 3 1253 5 58 838 5 443 41 802 7 1960 345 2036 3 293 363 248 16 1 3032 4 403 1943 9 21 54 20 55 1369 16 2 1465 21 7 1048 21 75 9 2418 165 140 58 28 63 9194 10 12 2 184 3 10 784 11 58 28 57 1 2838 5 256 9 3549 2082 47 4 257 9 18 40 28 53 185 9 21 6 50 8243 210 21 4 34 387 475 1 6 58 1534 1\n0\t8838 5 2223 3 138 188 378 4 101 62 28 184 129 4 2 3657 16 912 33 76 1017 1 398 1315 172 11 952 4 7 1 120 3 1 1480 3434 17 5 26 3314 1078 1 1054 1292 3 1 586 2511 236 20 78 16 1 171 5 87 17 134 62 456 3 328 20 5 77 95 14 174 9 181 36 2 249 18 3 20 2 13 872 1 1177 41 551 51 48 63 8 867 4857 40 37 78 4045 176 29 48 1 267 1354 6 403 15 8492 35 564 3 960 176 29 1 1625 2312 1161 1491 1 18 1232 10 222 1 184 176 29 95 296 131 5 64 1 257 860 14 207 106 97 4 257 460 139 5 149 547 4142 13 1365 5 1 33 56 118 75 5 2031 7881 16 2 320 218 58 69 109 83 55 328 5 825 95 120 1487 7 9 983 14 42 273 5 139 1 111 4 1 13 34 449 16 2 331 2573 4466 37 11 162 36 9 8428 32 1 16 2 53 223\n1\t745 2362 3 8964 6 8326 3 307 6 47 5 582 122 571 25 22 244 3732 4 701 17 244 3446 5 70 16 25 81 37 11 33 63 566 1 13 252 21 40 86 53 3 20 37 53 5011 10 5933 298 16 1190 3 16 3423 3 10 6 496 2072 7926 6 862 2211 8964 6 6 1266 6 8201 7372 3 8799 13 92 20 37 53 7926 6 377 5 26 5400 3 8964 3911 8964 6 1442 7 25 280 55 15 1 540 6049 17 7926 6 4933 7618 20 4 1 598 3843 4575 1 102 24 58 7926 6 595 44 121 213 65 5 8977 444 138 7 82 703 17 444 31 6483 288 1696 3 78 63 26 13 6 670 125 1 401 3 2362 8799 202 2448 1 389 21 14 2 1863 3678 35 8497 423 6360 42 2 84 185 3 25 278 6 3454 136 43 4 1 593 4 1 82 171 213 14 452 9 12 373 2 524 4 58 346 3558 59 346 1488 8799 247 2 346 13 279 283 55 15 86\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 115 13 4 433 537 9680 41 1034 314 3 5559 3 322 39 685 199 237 364 68 48 72 228 1153 13 115 13 8365 56 3753 5 26 13 1701 2 136 944 180 71 1000 16 31 1139 21 11 228 4338 79 14 78 14 691 7199 9 28 6 1 13 7564 1 185 4 3230 13 150 24 31 1883 733 15 21 1762 488 3255 45 23 83 10 191 26 650 1549 3294 688 51 22 37 97 1045 3 1762 1626 400 7 9 21 11 42 39 2 560 5 4578 13 8365 81 114 31 1115\n1\t6019 460 3 132 14 690 129 353 3 1 13 3371 34 9 860 516 194 123 23 1 21 557 19 97 264 6647 42 2 3765 701 5150 2 4730 3 1330 203 158 3 2 3604 3323 34 7 34 28 4 1 113 13 373 789 48 596 175 49 10 255 5 29 43 985 7 1 158 27 202 181 5 26 7 25 16 1632 51 6 2 1654 3957 4 1 178 7 5746 15 1 8578 106 1 506 440 5 1173 140 1 7147 11 152 7890 13 51 95 922 15 1 59 1681 3449 1239 95 168 11 662 1068 1 2064 41 1 6787 1151 189 1 102 951 905 5 17 39 183 23 735 1 506 76 2133 47 4 1677 3 468 26 260 155 7 1 8657 4 13 3926 959 1 769 1 1552 70 2 103 105 8 1266 48 1734 114 1 56 45 23 83 309 542 838 5 1 1765 23 88 728 390 433 15 1 13 724 127 1681 5119 1420 6 2 9244 3 34 200 548 21 16 6019 4238 3143 10 8274\n0\t22 577 1 412 29 1 166 290 320 1 74 376 23 455 11 376 2283 833 136 1 51 12 1416 58 321 16 144 87 8 321 43 5 284 835 19 1 412 16 7852 61 1 1278 311 288 47 16 2528 8791 300 11 93 2980 144 1 1077 12 37 1767 69 33 61 93 288 47 16 1098 896 1 6220 7813 57 2 16 1 74 156 456 4 1 69 98 433 110 13 7 1 534 6 2 5973 4 2384 505 31 3627 1252 3 5246 924 2 1367 3557 3040 236 37 78 5555 11 1 410 311 380 65 3379 38 1 120 3 7839 16 62 55 7 1 2642 1 6400 3107 291 3 78 52 1619 30 13 220 51 61 59 277 82 81 7 1 5599 8 219 9 818 7 1 8296 8 560 45 4666 5031 7412 10 11 8 173 169 187 9 1 5083 5280 73 8 57 402 1750 16 10 5 905 15 69 3 73 10 100 6686 79 227 16 79 5 70 1066 65 38 110 42 8018 292 411 2 2568\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 94 133 38 350 4 9 8 12 1578 5 187 65 3 473 10 1237 17 8 5 1 714 9 6 2 18 11 440 5 26 2 684 267 3 1 121 6 527 68 1 121 7 2804 3648 13 677 22 375 1035 29 1569 11 2197 8198 3 1 18 6 4933 2775 436 45 23 22 2 2901 9 18 76 998 43 17 16 137 11 24 107 97 484 23 76 118 75 1 21 498 47 94 1 74 394 1452 1 344 4 116 85 76 26 1019 7 1000 16 1 393 1079 5 13 2687 351 116 85 133 476\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 96 11 9 6 815 1 1340 18 8 24 117 575 626 263 6 774 3454 39 841 47 1 19 330 3394 39 760 1 2388 220 42 1 3312 11 56 151 1 456 13 2857 380 2 2864 278 36 819 100 107 32 44 2882 2684 3 1763 7778 6 2406 626 3190 6 3705 3435 3 7 2 46 346 1538 8119 6 2 9722 14 1 8 12 100 78 4 2 325 4 17 444 84 204 14 1 28 454 3355 30 2 4 1254 120 19 1 274 4 218 3958 93 361 11 23 230 5127 23 6 3343 125 7 25 463 458 41 244 1094 56 13 2682 722 722\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1008 31 36 58 1885 28 11 6673 59 1721 976 1554 7 28 127 1410 559 22 7 4842 30 2 3775 170 35 4283 3 126 1 4707 4 9 6 2 170 3 8566 3 60 44 2652 19 2 386 37 5 13 3 1 206 515 40 298 3055 16 170 976 127 170 171 2171 4311 224 5 62 5263 5 4813 38 1 3 62 5405 6 1 389 1229 4 1 108 45 317 20 942 7 1 976 921 361 875 13 30 904 3 2304 1765 9 1879 2605 391 39 6461 385 15 2 156 1941 293 363 8260 7 189 1 1 1646 6 15 223 2 3507 4 772 748 3 156 2417 127 1117 824 209 8229 15 1524 1102 4 6744 1765 1576 14 129 3 119 5064 10 380 28 1 507 10 12 829 7 277\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 202 687 245 48 151 9 21 1056 1846 16 2854 6 1 233 11 10 276 46 202 17 8 241 2854 123 9 19 1734 5 187 2 2974 356 4 66 2601 5 1 4117 4 2757 13 2298 2 163 4 687 2854 22 8351 132 5869 443 2762 223 2458 3647 1758 5151 29 2 673 1809 542 1626 4 415 7 34 1311 120 4475 142 15 120 35 22 7 1 534 3 37 13 92 453 22 84 3 1 386 6 179 14 3708 2854 844 202 297 65 5 97 1389 22 303 8399 3 9 1 13 3221 609 991 32 8 59 449 27 151 43 8875 52 385 1 456 4 25 358 33 61\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 492 4018 49 23 321 5619 180 107 80 4 1 97 3299 4 17 9 1219 1022 739 6 728 28 4 1 210 104 117 1001 277 1072 1469 3 8507 1593 140 1 210 4 861 2233 4643 456 66 191 24 71 428 30 2 1085 2097 4478 4 3 242 5 757 16 3319 3 2157 276 36 10 12 829 7 202 900 815 19 1500 9427 151 549 176 36 1 1262 15 8 173 830 133 10 197 1 2219 4 3 220 42 7975 55 15 110 674 835 965 7 368 6 43 426 4 66 1 321 16 171 5 186 19 91 104 36 9 7 639 5 946 16 62 3839 4219 15 86 5 3 4561 30 1 769 145 350 852 5 64 2 7565 5023 2691 106 27 1510 25 434 6605 8 88 24 8306 23 16 9 7 17\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 1459 9 18 19 1 1203 818 517 11 8 12 7 16 31 1406 5 1 952 4 2376 3 1 5467 4 831 8 12 7 16 2 7286 20 36 95 8 24 57 183 1815 9 12 37 1114 11 8 88 1092 149 235 4 538 7 9 108 1 1203 1991 491 293 2170 51 61 6809 1 18 12 37 11 55 1 2809 61 4289 10 123 187 1 312 11 23 63 3183 922 15 3151 53 45 23 175 5 3964 116 374 656 8 5074 359 295 32 9 461 45 23 22 288 16 231 1033 98 23 228 149 146 11 6 52 5487\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 232 4 18 11 76 875 15 23 16 2 223 290 3 205 176 46 3391 1523 23 37 78 4 44 532 6 2 1711 353 3 76 2264 2 163 7 1 588 13 92 393 4 1 18 6 46 264 32 80 502 7 2 111 23 22 303 17 45 23 56 96 38 10 7 148 23 853 11 1 59 8390 393 12 1 393 620 7 1 108 3823 10 54 24 71 3860 5 3622 115 13 92 18 6 38 2 1730 2928 35 255 577 2 282 1000 5 70 1136 7 44 1845 123 20 131 65 3 60 741 65 101 1553 30 1 1633 7140 125 1 387 27 621 7 112 16 768 10 6 20 935 45 60 40 696 1687 16 122 41 1265 99 1 18 16 528 8506 115 13 92 18 56 3852 5 8 176 890 5 283 52 104 32 550 6 167 17 114 20 1271 78 7 1 108 44 3253 44 4159 114 80 4 1\n0\t207 2616 13 150 853 42 2 374 21 3 34 17 33 88 24 89 1 21 2 103 52 1470 51 61 46 156 1308 3 10 165 509 774 1 714 80 4 1 171 384 434 7 62 871 854 8168 12 6398 14 4910 60 531 380 138 453 36 7 9436 2848 3 467 5859 2385 419 1 113 278 47 4 3622 27 12 46 53 14 1 91 259 55 193 27 143 24 2 163 5 216 1566 5699 1896 3 492 2608 22 56 39 51 3 33 83 87 235 13 7243 4938 3 60 123 31 1976 1614 60 440 5 359 1 21 240 17 444 770 15 2 904 1471 2470 9876 3 1147 1059 1 1106 3 54 10 26 95 1197 5 23 11 33 61 93 1968 16 7218 3 1 127 102 90 822 124 286 33 2197 5 56 90 1 584 240 41 3473 42 20 301 62 2818 17 3037 398 85 33 76 328 7 1 769 6 2 961 231 21 207 279 133 45 317 2 4163 307 422 6 138 142 9802 110 1020 8537\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4172 145 2 568 1531 1592 325 488 322 9 12 7582 1470 1 59 28 8 219 12 1 3766 4 461 3 8255 180 107 91 121 1704 17 9 3866 147 49 1 651 35 262 3766 12 60 3 5276 3 8 24 5 920 8 97 4961 97 268 7582 722 211 2688 1 59 454 35 55 1049 95 4040 4 860 12 1 651 372 2587 669 228 26 1024 8 87 24 2 4040 4116 15 2587 60 12 2 56 1696 284 65 19 1159 42 279 896 8 24 284 2 163 38 1 85 1165 3 8 96 11 1 120 1121 46 33 61 34 46 59 64 9 18 45 23 22 3023 5 64 2 46 731 85 4795 3 1 731 486 4 137 602 590 77 2 1094\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 51 6 58 1193 14 5 35 6 7 5362 4 1 2505 4 7 9 4356 580 2646 1932 266 31 2457 35 5 1383 7 1 5591 4 2 147 232 4 2169 32 25 17 27 6 20 37 14 5 26 7361 41 7 698 27 55 1714 25 1062 14 5 1 1548 4 415 770 7 1 244 1360 49 27 40 5 1718 286 29 82 268 27 6 2 935 1541 4 5902 3 871 27 7 82 703 25 129 6 1 9193 4 1 238 200 66 297 181 1574 7 1 1538 3 266 10 7 514 7008 102 188 352 9 3515 278 3 1 2577 293 363 1905\n1\t649 122 5 5320 25 4111 7 5 1 1 800 255 2912 5 25 1700 17 7 2019 25 869 125 1 8476 35 22 30 4 611 16 42 2 3118 1 800 191 139 385 15 1 704 27 1582 2615 7 1 41 1375 318 27 105 5935 11 27 40 411 77 9403 2 8231 13 6450 10 2 5320 41 2 3273 3 75 63 72 348 1 1820 189 1 30 4049 19 1 1330 3 7794 203 4 2 423 210 4 399 1 5320 4 1962 221 2182 2 589 11 6 29 308 1768 1105 3 10 2816 19 2 80 1618 3 7358 465 4475 95 1 4513 2631 189 1 693 4 1 2852 3819 137 4 1 4277 7 1 524 4 245 14 7 1 8297 901 4 7701 3 1 435 6 1783 5 564 25 221 3338 30 25 221 5361 48 426 4 851 54 8171 19 132 63 10 26 39 41 55 45 2958 123 1 5776 469 32 1 3112 4 34 1 4766 3 3571 35 22 101 1172 5 127 22 97 1052 1389 3172 30 2 4006\n1\t3 1403 14 25 1904 711 15 626 14 1 3445 3 211 40 2 7906 2347 185 14 1 211 103 1207 35 255 1732 1 1004 1361 578 1072 14 1 5559 1596 9655 6 313 3 1 67 2296 77 723 3955 74 51 6 29 2 1238 983 106 3 22 34 781 1585 1238 6 4864 30 5 4012 122 1707 1 462 125 25 221 1 330 4328 4 1 178 2027 2 275 6 1852 227 30 35 40 881 94 546 32 25 282 2540 5 701 25 327 711 30 6633 2645 5 149 47 35 114 7 7 2 3746 974 3 15 1 352 4 1 684 6612 22 827 1 1596 9655 6 72 149 47 35 3437 1 4056 35 76 2459 75 12 248 7 3 144 1 8319 114 20 87 275 422 15 2 53 1335 1322 9 6 2 103 5150 66 7325 206 472 169 2556 27 314 1714 4 443 5105 3 189 7234 3 4161 6016 5 3882 796 3 2 7341 97 7303 1396 3 512 1064 9 5 26 1 113 4 1 6790 292 508 22 14\n0\t4 1 296 581 1 846 1304 554 14 31 3083 94 2793 358 41 535 188 38 1 2119 5778 17 831 10 6 20 2160 1311 3 358 1487 4 82 153 90 2 454 365 2 5778 16 665 6 1 2076 4 2843 157 7 17 307 12 242 1 282 5 582 656 81 22 1850 33 165 9127 3 62 3283 5710 3 7160 3 8611 22 301 264 32 82 1 250 1820 189 5286 3 1214 1615 6 72 83 90 37 72 83 2095 81 94 62 74 1193 38 257 157 14 1 435 842 114 7 34 4 1 135 115 13 8732 893 3891 4 2 51 6 162 78 5 134 38 476 131 79 394 624 66 57 127 19 62 893 8980 68 8 76 134 11 8 192 5790 13 150 1059 9 878 73 1 1278 22 1 21 7 1 315 623 1818 786 99 3 365 1 1468 4 315 2466 2 315 623 40 5 4951 1 1387 3 40 5 1229 1 410 5 1 211 546 4 110 106 6 1 106 6 1 1468 38 1 108\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 563 8 12 160 5 64 2 402 445 141 17 8 909 78 52 32 31 2822 5582 135 1 121 30 1 102 914 413 12 2007 258 1 482 2678 1 282 130 24 1196 31 918 1074 5 137 3468 9 18 12 1029 15 48 8 497 54 26 1208 716 16 21 1926 81 3 2 156 82 716 11 8 152 2786 3 89 79 539 47 5973 66 6 197 127 529 8 54 24 340 9 21 48 653 5 1 2822 5582 35 89 34 1 2804 13 13 677 61 2 342 4 1389 8 57 94 1 18 12 2287 144 114 1 2833 259 139 5 1 82 6413 429 29 1 48 114 25 752 134 27 165 2226 81 4733 32 25 226 144 12 60 2828 44 221 691 49 60 12 1341 29 5619 8 497 8 130 24 881 5 1 94 1 141 17 8 143 175 5 70 65 29\n1\t9 28 844 146 5 1 6805 3 1037 7753 114 2 1016 329 29 5246 168 383 1208 1 606 14 22 109 248 488 94 133 1 4 2 431 29 1 182 4 1 388 10 12 53 5 64 11 43 4 1 7109 286 360 188 8 57 1887 61 3 20 39 31 6717 11 276 501 359 6549 574 4 3344 9 6 2 5799 141 1029 15 1604 16 1 534 7347 2 5291 4328 4 10 6 829 7 55 43 4 1 52 1577 1192 1 121 6 4340 180 198 71 2 325 4 2208 3 100 271 125 1 5037 10 6 46 66 557 483 109 16 9 574 4 135 45 51 6 95 28 2265 106 9 21 10 6 7 1 2526 66 181 39 2 222 105 17 128 557 19 2 952 197 5714 1 1646 41 1 859 4 1 108 48 6 1 42 146 11 239 2852 1036 16 1952 19 1 9 18 4695 31 1315 16 137 35 36 1 2516 3762 870 41 7 1 4515 4 53 3 3 38 2 715 16 137 35\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 88 1375 16 1 157 4 503 9675 842 47 41 365 1 471 14 1 119 10 105 2683 145 160 5 497 3 134 11 51 12 2 465 11 100 165 689 1 1278 88 100 3613 1 97 1733 11 1 2797 41 95 2797 40 1 85 3 1032 5 932 32 1 82 3486 66 12 5 90 2 18 38 2 1235 506 3 1 9020 5995 30 1 9104 33 1168 65 15 105 97 188 2267 7 2 865 21 85 105 91 56 73 33 57 2 1195 1249 2 206 35 789 75 5 899 188 200 3 313 5785 7 698 2 109 89 18 11 28 88 335 3 6558 15 16 2 342 4 3768\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 12 3 20 7 1 53 111 14 43 24 74 142 1 250 129 6 2 46 9709 330 69 6 160 19 15 9 1209 1629 1 640 4888 4347 487 451 447 37 7308 2 1209 7 6 169 3625 340 11 27 276 36 2 27 4695 15 679 4 3 27 1082 15 98 27 4695 15 2 56 1053 2646 3 27 1371 9 5746 35 262 254 5 5338 98 27 2739 9893 15 1 1053 6031 3 27 25 29 66 272 1954 3389 1 1393 292 27 143 321 5 73 7 1 1209 1 4110 635 1 427 2808 8 419 9 358 14 145 1774 5 2309 11 236 43 426 4 2032 145 20 355 3 93 73 236 43 2032 854\n1\t1 1541 3 9043 11 1 1484 12 160 5 26 2 8442 13 92 1484 12 1798 3 28 4 1 113 8442 6308 8 24 117 1586 17 5846 543 12 2 900 2908 2030 143 55 841 19 25 33 39 3091 19 36 162 7553 3 2501 3 114 162 285 1 1484 571 645 81 15 2 156 8442 5574 7 1 182 1588 3 1 13 19 1 131 8110 9097 7 2 547 1484 49 27 274 439 2417 19 6793 1469 7 2 547 7309 9097 2367 8520 5 1 462 7 2 1195 13 724 1 250 2592 12 2 900 5594 800 15 5 186 19 294 3 1 238 12 5862 3 58 28 4268 35 1459 16 25 13 5944 8110 9097 7 31 13 1588 3 1579 1 5440 968 4235 421 1 3169 3 638 2501 3 962 7 2 8442 13 9097 5 1 199 462 7 2 547 13 9097 2367 8520 5 1 13 92 1620 1 7 2 464 13 92 9097 1803 6983 7 2 226 2062 13 7527 3 9097 800 3 7 31 4862 13 5944 2442 69 1493\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 337 5 64 10 7 1750 4 43 53 161 5500 3256 8 1640 8 54 20 26 355 219 10 16 2 167 109 89 18 1240 1422 4 12 1923 32 10 246 2 53 21 8 57 71 133 8027 104 34 326 12 162 53 38 11 682 13 4052 643 61 5897 3 262 30 3 63 1836 11 16 63 1836 235 489 38 9 18 16 2522 13 150 1023 15 2525 367 10 12 39 28 184 223 1208 1399 16 1 34 10 384 5 5721 13 37 1140 1956 114 11 5 25 360\n0\t1 1210 13 92 1398 12 93 791 3017 5 4968 63 72 144 2 147 887 20 1135 5424 15 235 1010 40 117 4993 7504 12 55 1747 5 4813 7 25 4122 8 560 75 97 264 3079 1 206 3 1 1210 713 5 5761 47 4 183 33 39 419 7 3 367 223 14 23 83 134 23 63 359 1 100 384 5 149 95 426 4 463 15 1 41 13 92 3758 48 156 51 4416 61 3243 3 717 49 7504 3019 65 2 4515 3 1510 5 1 297 17 1 383 12 3 55 11 511 24 13 92 166 2104 35 1242 674 57 2 874 7 1 5591 4 1 569 3 1 6673 7 1 748 3 5398 61 46 685 1 545 2 78 965 32 1 91 2511 2132 3 13 677 12 43 299 5 26 57 15 5297 7022 3 1760 12 1 59 353 35 384 5 26 1997 60 12 7 2 18 370 19 2 1010 3210 3 2716 306 5 1 7933 13 1 9 1398 130 26 3 100 26 1747 5 702 3402 3402 58\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1461 6238 816 2575 5 2 1119 67 19 1 2066 3 1 1617 5 2545 25 13 150 143 149 9 933 431 11 1 1569 384 243 3 1 212 274 65 12 1609 1054 6 2040 1 7 9 628 345 816 16 58 933 13 677 6 1 2579 3984 4 3576 3798 14 7 4458 3 1 799 49 25 486 22 3154 47 4 25 688 19 1 5012 9 991 1419 1 8072 313 847 3 1860 2485 4 80 4 82\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 2856 1 2511 3387 121 34 22 4083 46 2347 3 1269 1471 538 453 30 1041 9098 6 627 3 4682 3 7906 56 215 3 1 168 22 2191 15 1684 2157 3 56 964 2426\n1\t339 216 47 1 4386 37 3 1209 35 1059 1 189 126 1 80 759 16 8655 8486 2 46 327 13 150 284 4598 667 11 9 141 8655 36 2 3 8 339 24 256 10 828 1453 42 20 1183 42 2 8655 21 3 7 8655 12 1 80 376 7 3853 16 308 6408 314 7025 3 12 100 19 1 1250 9 12 2 287 11 7025 12 6915 8279 13 4844 9921 1609 820 827 17 42 5 2 53 709 5957 1 4188 4 3 3361 24 2 53 85 15 3297 403 2798 40 28 4 25 4934 2139 15 45 23 116 19 1 13 92 957 788 27 4094 308 3 16 198 30 411 3 15 11 788 12 2695 16 113 5079 17 433 5 1248 42 1302 115 13 93 11 1180 5 2096 1 868 16 15 3 3 13 1268 177 8 36 38 9 21 6 11 10 289 709 2447 197 2215 8 36 1 1611 5830 17 12 2 709 860 1732 411 3 9 21 138 5552 68 95 6874 13 252 6 8655 29 1 401 4 25\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 4600 3591 6 254 5 694 140 17 2872 6995 6 56 1 59 651 35 88 186 9 67 3 549 15 110 444 29 308 1 607 171 3497 5 10 14 2593 13 150 4108 55 328 5 348 23 1 10 2027 120 32 1531 3282 3 1035 2 901 4 1644 13 92 21 557 109 45 23 1811 385 15 10 705 7 2 2509 301 2348 10 432 52 3 52 903 14 23 4508 669 1 5 473 142 1 305 13 3591 3503 31 1774 5 9955 146 11 213 7 1 769 10 1664 146 11 7698\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 2 580 1210 3 88 2230 2 18 15 1 166 1813 8284 14 6408 41 207 1 113 177 11 88 26 367 38 57 723 2 1902 1814 15 202 2518 453 30 8412 7786 16 1 74 85 7 31 296 4215 3 3265 7786 266 2 3332 12 1 1592 7 66 368 179 28 2118 1778 12 14 53 14 2490 14 5 723 4766 3 3997 19 1543 28 2200 30 1 3187 4 318 1 1161 22 2260 413 6416 7 234 392 9615 39 38 307 7 1 18 6 37 42 2 3148 49 3150 14 1 3849 140 8371 444 38 1 59 3245 454 7 1 18 55 193 444 674 2625 1932 3 42 93 1 74 7 44 223 9396 4 5514 871 8371 17 1 263 1373 3 1 393 6 1169 58 560 7786 590 224 1 7050 218 6753 4 723 172\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 688 1572 543 3951 10 165 2 156 5661 47 4 2522 13 92 131 6 39 37 5040 84 11 10 6 1747 5 24 2 156 8 70 2 147 4336 3 39 869 140 126 36 8 24 5 7408 8 36 1 312 4 10 1095 17 10 12 78 52 4 31 182 4 1022 431 66 54 1346 1 13 213 377 5 26 16 2 342 52 3428 59 2651 8 63 96 4 6 33 1241 1 4 1 767 41 57 5 1 13 872 11 50 2098 6 144 1 898 5582 6 13 1 131 6 19 1 4207\n0\t33 5077 36 195 23 39 173 87 11 15 2 1865 870 2493 819 165 5 1382 5 1 3508 4 1 870 41 1 596 70 34 1852 3 3336 30 4038 7 1 540 1606 7 233 1 212 3 775 119 6 146 11 40 459 71 248 16 8456 17 153 90 95 356 7 2 3020 682 13 1 3020 1759 22 1 23 24 117 575 2025 7 1 3020 18 1255 3753 5 118 11 1 3020 1759 3 22 146 1 596 286 43 4 127 9636 22 39 908 13 677 22 2 342 4 1056 53 8 152 169 338 1 6460 508 24 1505 13 45 132 2 177 63 13 150 93 169 338 1 1439 16 8435 1 51 22 37 97 203 104 11 5800 19 120 17 7 9 524 33 74 2 46 8390 3 1535 3 139 7489 1 8 1266 23 63 564 9636 15 4055 3 72 24 43 167 1127 127 2569 1513 26 105 254 5 256 102 3 102 2193 17 7 687 541 9 18 271 125 1 401 3 1583 43 82 46 3 1474\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 218 53 9355 40 4013 382 3734 1359 5 2 5092 67 3 1016 505 258 32 8326 35 1196 31 918 16 44 1103 4 278 6 37 60 6 670 246 46 103 494 533 1 389 21 341 10 6 2 223 4088 378 19 2745 3 823 7337 60 276 3 1630 1596 5 1 272 11 261 8161 15 44 216 88 728 2082 44 14 13 92 21 1373 3824 1163 73 10 4936 1 5 67 3 1 2905 1626 11 209 15 110 49 3 379 475 3882 4740 1246 94 172 4 3 33 149 2 157 331 4 17 2130 7 8630 10 6 59 49 33 1110 5 1 990 94 1076 142 2 4 395 293 363 314 5 932 126 22 128 1115 3 304 5 11 33 316 149 2 1205 2441 553 15 1 979 2821 4 2 1596 231 2166 16 151 1 21 2 2073 319 213 279 235 197 417 3 1562 2 272 11 1 21 3269 408 1080 7 42 226 394 269 15 31 2537\n0\t5180 2 18 11 270 91 104 5 2244 3 402 13 92 18 1169 50 911 481 3642 75 1370 10 12 5 836 9 6 20 28 4 137 91 104 11 23 3 116 417 63 694 200 3 90 299 2562 9 6 20 1439 1709 32 3836 6225 9 6 2 1896 1495 747 351 4 290 5180 2795 6 1 1003 351 4 2157 3 860 8 24 117 575 8 79 49 8 853 11 81 152 472 85 47 4 62 486 5 634 7 9 45 23 63 637 10 1014 17 68 805 49 23 24 345 2132 345 345 4690 121 6 1 226 177 5 13 252 18 6 36 2 9638 3094 11 23 5 1108 47 4 11 2 493 41 336 28 228 936 64 110 8 56 15 8 88 936 2410 154 973 4 9 158 37 10 76 20 1 3443 4 5033 1479 1259 3351 9684 16 685 79 147 214 1451 16 154 18 8 24 117 575 23 24 620 79 48 6 323 1853 3 144 8 130 1116 34 137 104 11 22 1674 1865 41 1466\n1\t0 0 0 0 0 31 313 18 3 84 665 4 75 782 2 18 63 26 197 56 781 1 545 2357 42 2 274 4 723 584 34 9568 200 1 4 2 7288 429 3 62 943 3067 3 3276 34 3353 371 30 2 67 38 2 7190 7134 3859 2811 16 2 1156 203 21 3384 10 418 47 15 2 67 38 2 948 846 603 250 129 432 2 103 105 5222 1417 30 2 67 38 102 161 684 35 390 2189 125 2 8776 842 7 2 98 2 67 38 2 103 583 35 6 235 688 3 3383 15 1 67 4 48 653 5 1 1156 21 48 27 123 5 1 42 2 1612 3687 11 1572 23 56 1116 1 216 4 206 3 48 27 12 446 5 8612 15 2 46 346 3550 734 5 11 1 121 2447 4 745 1490 6605 8412 4504 3 3650 3 819 165 2 18 11 63 26 381 316 3 702 39 83 1836 1 1969 45 261 32 148 4363 2307 5 1857 23 2 6603 19 2 304 429 7 1 706 7189\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2199 2 622 8153 35 6 591 942 7 9 933 1267 6203 8 12 46 945 15 1 108 4672 1 1759 3 12 169 17 1 368 1103 4 9 103 184 12 323 7441 13 92 1234 4 21 1131 4286 5 41 6318 40 5 24 71 7 21 2008 8 455 1138 265 8 563 8 57 5 6264 512 16 174 178 4 5210 4989 1 1278 57 6860 2761 77 3 61 3446 5 70 62 13 5020 1 1485 1249 62 494 1220 805 509 3 62 120 61 100 9818 1875 745 41 2781 1616 2 1146 8 54 6113 15 3315 62 340 456 61 37 904 3 5210 11 8 88 924 241 127 61 1 166 102 84 171 35 1012 6569 4 3 1 5746 164 4 13 677 22 527 17 9 28 6 20 78\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 2901 35 181 5 24 10 34 7255 5983 10 844 25 231 3 25 113 493 2227 2 163 4 13 3486 955 16 9 40 71 248 183 7 249 104 3 94 416 1923 32 43 3 494 1 7159 9 1253 162 7956 1 5683 6 961 3 1035 29 121 61 323 1370 5 836 244 53 195 17 20 7 1923 32 11 25 129 12 2147 36 2 3 198 485 37 2124 6 12 254 5 2031 65 13 3053 1923 1 18 6 4320 8 159 154 178 588 3 154 12 8 676 339 947 16 9 177 5 70 8137 13 150 24 2 4712 4 283 10 7 2 2114 7 3 10 2887 10 128 276 2256 202 910 172 3513 1 915 6 279 6592 17 42 71 248 138 1543 138 7 3330 82 502 9375 255 5 1960 23 63 1899 9 5592\n1\t32 1 5126 3 9 6 738 1 46 113 3 93 46 5 406 3697 703 195 9 123 20 467 11 1 21 6 11 696 5 1 1779 164 484 14 1 701 524 6 20 2 267 17 52 2 2094 135 195 1397 96 11 20 246 1539 41 41 2 2094 709 6008 214 7 2060 34 251 1557 385 16 299 54 26 2 17 8 143 773 126 29 34 73 9 12 132 31 4415 6886 2 1975 240 524 14 109 14 6760 313 453 30 2616 13 92 21 792 29 1 1238 131 3 6 404 1 701 1723 193 9 7177 6790 21 152 2731 103 4 1 85 29 1 1238 131 3 3311 22 20 2 185 4 1 135 1670 2 1517 1595 164 6 643 3 303 7 2 301 312 2494 7 169 2 156 82 1557 124 3798 14 1004 9703 245 75 34 9 6 2667 181 167 4233 3 1179 371 46 50 796 2880 8 273 555 82 1557 124 4 1 326 57 14 428 2392 3 4340 121 14 9 461 9 28 6 373 2\n1\t40 3159 4 7868 66 6 146 11 661 840 124 2292 5 7 28 178 1 3810 6 2537 3 40 5 64 2 170 583 4937 16 1 74 290 14 27 4838 77 1 6761 23 449 458 16 1 3 1 6761 1 3196 741 197 8 495 2600 48 4216 3914 49 1 840 123 10 2018 34 1 5867 308 805 8 495 187 235 8213 13 3027 611 101 2 18 11 819 100 455 2787 10 123 24 80 6728 42 16 203 4238 896 14 174 2381 5598 30 605 334 125 2 8585 4 39 2 156 2491 72 83 56 70 95 1138 19 1 807 3 1 1560 5716 2 103 222 285 1 46 714 17 1581 1 233 11 72 54 55 175 5 118 1138 38 1 120 6 2774 5 75 53 10 424 3 1 6013 4 1 21 6 1195 227 11 95 346 7 1560 63 26 13 777 4965 94 172 4 101 5 18 2565 5 1283 175 5 1203 50 671 29 1 2364 4 5099 218 89 79 1728 3 1517 3 16 9 10 50 331\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 8 74 159 9 21 19 9421 10 4079 726 28 4 50 430 502 145 2 184 325 4 578 7646 2376 3 626 1 18 8086 31 2186 572 4 1 1270 3 1 3261 80 4 1 6419 310 32 31 161 2250 35 1123 16 6 48 151 1 25 211 187 199 7993 7 5 1 111 1 1270 12 155 3483 8 1331 11 45 1457 1163 27 54 26 15 630 1 364 25 6419 959 2 103 487 35 255 5 216 16 122 3 1 6 136 27 40 3261 244 2260 5 1961 43 4 1 35 22 34 1 102 27 80 22 3 7646 1 6437 189 1147 3 22 1 113 7 1 141 33 24 148 578 7646 2376 3 3739 205 17 7 84 453 14 109 14 13 252 18 130 24 1866 52 618 42 19 305 3 279 1 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2054 180 198 71 2 325 4 8 336 1 1139 1125 3 55 1982 8 55 284 2 1982 709 195 3 3483 37 14 63 26 12 2 103 2337 49 8 455 38 9 1125 3 98 8 12 5733 1558 9 251 6 2798 10 153 55 905 5 1498 15 1 215 1199 42 36 28 223 3339 58 1384 3198 3 48 1 3106 12 15 1 50 80 5621 1520 6 1 113 1982 1518 4 34 85 3 33 643 550 8 555 8 88 134 25 2217 12 1 210 2482 2740 8 555 8 88 134 51 12 235 38 9 251 11 12 2363 1688 41 1470 7 386 7208 241 79 8 88 134 37 78 20 351 116 85 19 9 983 41 116 1686\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35 117 367 11 2574 2865 3190 100 4204 9 7726 2418 4 6 2 425 524 7 10 151 218 1330 176 36 93 151 6836 210 3139 176 36 50 74 180 57 23 1374 9171 65 3 11 76 100 209 542 5 1 4431 11 2327 6573 32 1 1524 1011 4 50 46 7463 245 8 63 96 4 43 7843 106 9 21 228 152 139 125 530 896 45 317 288 16 1 425 665 4 2 19 1919 176 58 9541 83 841 47 9 141 14 180 71 1 3934 324 6 195 8763 899 125 2176\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 40 84 566 1192 195 86 306 11 1 121 6 2 103 17 45 8 405 5 64 2 18 370 19 121 2576 8 54 99 2 978 18 36 296 7404 17 45 23 175 5 64 2 18 15 306 1563 1792 7 10 3 15 491 4873 197 1 333 4 3 1642 3554 1 1276 36 37 97 104 200 195 66 22 125 848 1 98 99 476 195 42 306 1 102 250 460 7 1 131 106 7 1 635 131 1 869 6320 3 174 201 1910 4 11 131 40 2 222 185 7 9 108 17 4686 1 566 168 22 227 5 90 3942 5035 25 3 1 4873 22 1822 227 16 2413 3672 5 694 3554 3\n0\t455 708 11 168 36 1 1161 372 6459 3227 61 383 5 299 29 1 3847 648 17 10 255 577 14 13 150 241 918 1148 411 14 1768 17 316 25 3312 198 181 1674 5731 1537 13 35 24 95 6112 303 29 34 11 1615 40 71 1768 600 3037 20 30 296 4510 600 6136 3 297 76 407 24 62 3443 89 65 29 1 182 4 9 682 13 198 276 53 19 412 600 17 6 369 224 30 1 13 499 198 79 65 1 540 111 49 2 40 168 11 22 274 65 7 132 31 631 744 23 22 303 507 36 246 2 53 29 1 3847 69 64 1 2942 26 482 13 150 118 275 35 214 9 18 892 11 454 40 1 5905 4 2 3 54 1593 5 3528 44 442 45 2649 2 1519 13 3053 1609 4987 65 1 8042 4 9 739 600 1233 17 20 84 600 299 17 20 65 69 9 6 20 2 715 376 18 480 34 1 5639 897 482 4593 2930 13 1226 2952 1785 45 23 99 194 70 2599\n1\t792 15 1 1355 4 2 6198 35 40 1436 7 2 2345 8174 9438 745 2854 8421 6 5293 5 1 3874 1 8174 1404 66 6 664 5 946 2 1114 3350 5 1 5212 1559 2866 521 94 2854 792 5 2 454 6 4769 4864 66 6 39 1 477 4 2 251 4 13 5851 524 4 1 8821 1510 34 1 824 2 84 6019 1 21 6 7776 3604 32 1 2353 1 868 30 6986 6 3435 1 119 6 1529 3 1 9020 2849 1373 2 948 318 1 714 1998 6019 690 308 316 1510 31 313 278 7 1 7592 1494 6 332 7 1 633 7592 1 1680 1 84 28 4 1 80 609 4 1101 4 1 4929 3 3 763 174 84 353 35 130 26 1100 5 95 2150 4 1101 1913 106 80 4 1 21 270 2416 6 152 2 84 1167 16 2 1 1190 6 1506 3 1 1667 1111 3 6986 6443 868 151 1 1216 55 52 223 67 6298 6 174 313 6019 32 3 31 1409 5971 16 95 2150 4 1 3 84 7 34\n1\t2416 3 1 344 143 291 46 8463 13 1833 1 21 475 8 12 20 301 16 8 57 107 2 547 953 11 88 24 71 78 1824 57 1 1968 7843 556 2 103 52 474 5 99 16 1 1567 9941 3 340 2 103 52 474 5 129 5064 72 24 107 4 9 574 1704 3 11 89 1 250 2631 78 52 5872 5 1 14 31 2996 72 83 175 5 694 140 1 166 161 67 702 72 175 5 64 146 4638 26 6324 3 13 677 6 162 540 15 1 8903 32 2611 7935 74 7677 60 2995 992 15 227 2278 3 447 1376 5 90 1 185 4884 492 2093 40 71 3 248 11 1448 906 1 3138 6 78 4 2 3772 5 55 474 38 25 4496 25 1360 259 1782 15 227 869 5 90 10 184 227 16 1 184 2238 3 3831 123 2 7360 2340 14 1 13 2687 504 14 97 1552 3 14 43 4 1 3573 3156 30 3 218 209 5 597 116 1691 1137 3 335 1 2062 16 1034 10 228 1142 42\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 87 20 55 175 5 637 9 177 2 21 69 10 6 2 18 11 130 20 24 1196 95 1 121 12 586 14 61 1 810 9 6 610 1 426 4 21 11 37 97 2104 96 5 31 410 17 6 7 233 16 86 3 1 5081 356 4 533 1 108 115 13 150 149 10 678 11 37 97 171 15 1 706 1587 24 132 2 254 85 403 37 6069 7 1044 4 1 2904 145 273 97 8034 118 48 8 192 648 38 69 34 137 7660 706 1256 77 2 141 7 8709 3 7 616 16 797 5011 51 22 156 1297 104 7 66 1 706 181 301 2438 69 101 12 2 1058 461 292 20 2 84 158 10 12 2 53 21 3 1 1587 114 20 291 115 13 150 230 3238 11 12 1 7 1 59 546 4 9 3160 61 3 2 595 6748 1138 6460 82 68 458 87 20 55 351 116 85 15 9 4006\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 28 4 50 3931 7219 84 265 3 43 211 8 539 154 85 29 1 7820 4851 5 26 2 2648 44 136 3 15 10 14 60 8 39 100 63 70 576 44 710 1778 100 101 2 465 14 33 328 5 1369 44 142 14 1 13 2 1410 3739 3 1 46 170 1403 3325 1299 6 132 2 9573 50 1916 159 1403 3325 29 2 856 38 1 166 85 9 18 310 689 60 367 33 339 935 1 47 189 104 1240 137 663 23 143 24 5 597 189 9 18 289 23 75 1805 3 2529 1 170 1403 12 3 2378 23 5 1116 25 362 860 14 530 3 2359 196 7 2 222 4 25 3484 1356 66 6 2 115 13 252 6 2 299 18 15 2 4502 641 4185 46\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6939 11 8 12 56 22 100 14 53 14 1 1402 11 33 4557 8 12 288 890 5 283 9 18 73 9 6 28 4 50 430 5082 55 193 8 563 10 54 229 8 12 1247 5 26 3202 5658 245 33 32 1 857 105 1878 3 1 18 324 114 20 3642 75 586 9 429 56 1306 393 12 264 854 9477 3993 7987 485 464 664 5 43 56 91 1 121 12 29 1293 436 45 2 2322 324 12 89 37 11 33 511 24 5 875 37 78 7 16 249 4316 8743 10 54 26 2 138 1772 45 23 159 9 18 8 496 5975 23 5 1584 224 1 347 3 284 110 8 894 468 26 945 3 449 23 335 10 14 78 14 8 87 154 85 8 284 2420\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 6 37 38 81 291 5 24 580 922 15 1 13 92 462 4 9 18 143 1236 50 5727 10 12 2 8027 383 38 843 269 77 1 18 6 48 89 79 582 1354 8 88 20 241 75 9413 491 9 21 1306 10 2816 19 37 97 3444 4 423 1900 11 10 114 20 308 2197 5 899 79 7 43 699 10 6 30 237 28 4 1 113 1532 124 8 24 117 575 8 114 20 793 127 120 14 463 39 8 54 354 10 5 261 35 1371 502 258 1532 703 3442 5 34\n0\t7 23 61 336 30 97 4238 18 247 2 18 29 513 10 12 218 8140 249 2218 15 91 505 91 3 91 1177 7 189 1312 4392 41 6684 199 38 27 12 548 14 31 1764 3367 76 773 550 17 1 212 18 312 12 2 184 6633 1 119 12 37 10 12 202 1084 12 2444 1 121 247 55 279 1488 1 593 191 26 14 530 45 23 173 70 2 8757 547 278 47 4 116 1041 58 729 75 91 1 263 424 23 191 20 26 11 53 7 1 74 1888 8 88 24 428 2 138 1471 8 555 8 57 100 71 5 64 9 108 4 611 8 219 10 16 16 503 16 50 136 47 15 417 35 655 283 9 378 4 4601 6996 414 2286 50 2375 35 6 20 37 338 1 18 9338 17 27 128 40 100 1783 5 64 10 702 45 23 175 4147 2122 4 1312 751 25 251 19 1771 925 9 18 36 1 45 8 61 8 118 8 511 175 5 26 2299 16 9 108 1451 925 9 8852\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 24 5 134 11 9 9251 12 1 113 4247 4 1 2810 821 205 6275 3 7748 22 46 1202 14 6944 3 180 107 82 17 630 1498 5 9 461 1 113 28 16 437 8 88 100 830 261 422 372 127 120 117 702 1 226 85 8 159 9 28 12 7 8210 49 8 12 59 29 11 387 8 12 2 3 8 57 39 284 4950 3854 8 12 301 30 9 9251 3 8 320 20 1156 95 4 1 4916 420 36 5 64 10 316 73 42 37 452\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 284 1 212 9168 7 347 3 98 159 1 108 1 18 4223 34 1 824 7 1 347 17 220 1 347 12 7667 3 1 21 12 358 719 10 343 56 7 15 105 97 363 3 91 7121 13 743 7 85 6 38 2 282 654 1539 3 191 968 371 5 149 435 3 70 142 1 1444 115 13 92 477 4 1 21 6 56 2 1 121 6 1853 1 593 6 6985 3 37 237 1 1650 662 8 56 12 5 64 1 166 454 11 1059 1 347 3 1242 1 141 89 2 84 1158 3 2 464 135 1 121 6 527 68 95 9707 1014 657 8 165 5 920 51 12 797 2170 17 1067 33 61 34 248 1722 3 20 1235 7 95 111 2623 45 23 284 1 347 23 76 26 30 1 108 8 555 88 187 10 2 5397 17 1547 8 63 59 187 10 3441 2 350 88 24 71\n0\t20 1494 29 513 11 2944 1560 32 6 400 9700 32 1 1813 272 4 1048 8869 358 6 2 1669 18 69 138 68 687 826 5 2388 17 19 2 237 2478 68 1 215 108 16 5540 1 178 4 1184 6 248 1 206 4 1048 8869 358 6 58 776 6076 3 10 3434 1 147 7746 6 58 1461 3 86 3434 1 263 6 248 30 81 35 22 58 1484 16 988 236 58 8968 16 492 2093 7 110 1 21 276 772 3 955 2619 29 1287 145 1140 17 50 74 179 94 8 303 1 856 6359 33 89 9 18 1188 3 15 215 2447 516 1 1246 4 1 74 34 5 34 1 215 18 6 36 4926 8110 1074 5 476 1 74 1048 8869 6 2 382 3 12 2 232 4 7 1 986 1913 10 12 1494 3 10 57 1 113 6832 278 7 44 3163 10 57 9 3656 776 9969 3358 831 1048 8869 358 6 2 4992 211 141 955 470 3 2 273 1570 3712 7 97 42 2 2502 11 33 89 9 4006\n0\t3087 4 2 4877 18 2489 17 239 28 6562 29 257 2919 15 2 51 6 58 41 302 16 127 3 58 67 13 3221 2381 19 9 2819 40 428 11 1 59 53 985 38 1 21 22 1 2801 1192 2627 4624 3 87 3984 2 222 4 3 46 327 10 6 854 17 1 971 291 20 5 853 11 55 693 2 53 67 5 110 236 630 4 11 3127 13 1 210 4 1 277 4313 6 1 226 628 1738 3 742 737 72 64 14 2 2535 7632 101 15 2 3398 262 30 3 16 39 2 4174 137 4 199 35 22 128 133 9 1262 3919 22 30 1 179 11 72 22 38 5 64 2 901 38 75 1 2535 1277 876 38 2 720 7 1 1782 5 613 916 17 58 132 9111 14 2224 1113 9 21 40 58 1362 7542 10 6 34 1 111 5 1 570 361 2768 6 5496 47 1534 68 10 130 226 19 1 1250 791 1 21 1350 563 33 57 2 91 177 3 405 5 90 1 225 4 2420\n0\t9198 17 775 6209 571 16 1 1002 53 3452 1456 236 56 20 78 5 110 51 22 631 16 1632 94 605 48 181 5 26 2584 3 2584 5 70 32 2253 5 1408 1 250 129 181 5 139 32 1408 5524 5 1779 7 3 308 244 1779 27 2683 167 78 1381 1779 16 48 181 5 26 2 223 1425 13 659 95 1723 1 18 40 237 527 922 68 861 6 7132 538 3 80 4 34 1 121 6 167 489 34 2246 626 294 181 5 198 26 242 16 43 232 4 1021 7565 5023 3 6 1345 1370 5 1 59 782 177 6 11 3 22 205 55 8350 13 92 59 302 144 145 685 9 18 14 298 14 8 192 6 11 308 1 18 3849 86 226 41 37 3 988 129 270 2780 1 18 3548 2 1816 2940 8949 3 1 1184 16 1 400 4112 22 595 299 5 836 1 2526 45 2674 6 93 2068 9605 925 1013 317 2 41 22 56 65 29 1 312 4 1 672 4 2253 1347 32 1 2 7885\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 46 211 21 4204 30 1 4 6736 7 1 7492 3 1 2264 3 4 873 7 1 2533 274 7 1214 10 1008 84 453 30 492 3 690 265 30 6587 2247 1796\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 219 1 324 4 9 21 3 5303 38 1099 269 77 10 11 8 12 100 355 50 85 1877 8 5 1 182 1247 11 1 494 54 1 1563 1792 54 176 1087 8834 1 293 5614 54 152 176 4155 8 12 37 1328 8 112 2895 8 192 2 528 840 8 604 43 4 1 7492 6865 2092 2956 1 4 1 21 1162 9 618 12 20 89 7 1 45 9 21 57 209 47 7 1 362 7492 1 88 26 8306 16 288 37 565 10 247 37 10 1336 165 11 1 494 6 464 15 37 97 91 456 8 12 29 1 523 243 68 29 8762 8 83 36 100 5021 8 179 10 12 125 125 7928 3 8 343 162 16 1 618 10 3372 14 2 5 9005 398 5 9 3095 1 155 4 1 1203 16 414 5357 5586 2 1298 23 54 100 64 145 128 1000 16 1 1298 11 12\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 271 34 47 5 1388 655 1636 3 380 1 80 1087 572 4 1 661 4277 28 196 1 1418 4 1 206 55 32 25 1188 104 36 3 9637 1 1636 39 9497 19 7 1 1967 18 22 5802 3 5794 7 675 1 1084 6 491 3 28 63 64 1 19 239 178 32 97 1 18 844 23 1437 19 679 4 2998 2246 14 23 357 3584 1 2789 23 182 65 29 80 101 17 1156 1 1183 7 97 2 1192 10 844 2 7055 1418 7 1 3158 13 5 99 22 217 738 2349 1 4996 22 109 428 3 23 230 819 1457 200 43 4 127 1098 51 22 128 43 168 11 90 23 96 4 52 1 759 22 7 1 1138 2084 85 3 672 7 2 46 4673 788 844 23 507 317 303 34 818 7 1 8407 4 1 661\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 382 6 2 21 1031 39 38 95 1715 2 21 11 40 1 230 4 2 2603 4801 17 40 2 1195 7 864 664 5 86 333 4 4602 5003 2840 3 436 1 113 1972 1673 7 5825 180 117 575 294 5188 1523 199 11 15 53 971 4469 1740 27 63 26 3435 3 1 389 3322 6 2 526 468 555 323 6319 37 23 88 1017 85 15 28 4 1 156 684 1545 4 1 226 910 172 11 153 291 5 26 2 3957 4 146 2684 9 6 1 298 272 4 3987 49 25 113 216 12 323 248 223\n1\t8 93 335 1 8027 230 5 9 2129 33 291 5 65 1 1854 4 154 141 685 199 154 888 2252 4 1 1198 72 22 377 5 26 1893 2562 7 294 4654 100 56 1572 199 70 2 528 176 29 492 27 198 181 36 27 6 2 185 4 1 488 8 96 11 6 48 151 122 37 51 22 97 168 106 492 6 3897 6766 14 27 6238 19 1 170 2976 5 66 1583 5 25 45 23 96 2354 43 88 26 133 23 260 195 3 23 511 55 118 110 831 16 257 2916 341 5828 16 199 203 49 33 149 244 20 288 16 3470 19 9 3146 288 16 5099 2958 492 2443 6 2 1659 1656 5 9 1324 25 7371 5995 4 9367 151 122 291 36 1 506 35 76 100 27 6 1 11 76 9195 23 16 1 344 4 116 500 23 24 20 107 9 18 1623 51 22 128 43 4 23 47 51 35 41 55 45 23 4558 43 473 142 154 5341 2133 9 77 1 161 305 3 99 7 3979 41\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 40 2 293 334 7 50 3754 14 49 8 997 10 1 74 387 8 12 6684 1217 10 46 306 5 79 3 55 31 1485 1465 8 57 29 1 290 51 22 168 66 90 23 15 2585 9080 3 137 66 55 256 2 2618 19 116 543 140 1860 15 1 120 3 62 5717 115 13 453 30 1215 6403 3 626 7789 11 5368 15 62 113 1093 2 84 473 30 2 170 7062 31 5487 67 2519 3 2 2762 668 868 151 16 2 80 837 3 2751\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 648 213 2 6174 3950 312 16 2 147 158 17 5206 498 2 641 312 77 2 3435 7204 21 11 76 4621 1 212 1499 10 999 5 4612 1 189 3680 1652 3 3549 285 3167 3 3 34 1 795 7 1 21 466 5 2 6174 3476 931 7230 1 1764 2505 6 69 307 76 26 4732 49 5206 25 8076 3 4913 16 1 74 290 5206 6 2 84 129 3 130 24 2071 111 52 5766 193 9 21 247 2 3501 4 1031 2084 2015 9 594 3 2 350 76 1416 26 31 837 28 3 28 11 23 76 8560 67 6 2 4422 3279 749 3 240 28 69 32 1 799 27 6 74 107 5 1 799 27 6 2269 15 25 215 9377 23 76 335 1068 122 3 133 122 2793 38 2566 3 1 3591 7620 4 157 385 1 699 20 28 5 26 1155 45 23 24 95 232 4 683 41 7953\n0\t6 58 2 526 4 559 200 28 326 33 22 204 2 33 22 200 1 30 730 58 364 3 357 605 6989 6793 58 947 204 33 22 155 7 51 6 58 67 29 513 1 277 250 120 22 37 2235 11 33 22 3170 30 11 8 1266 72 24 1 1316 635 35 6 1893 4 72 24 1 1383 164 35 6 9366 3 39 451 5 70 155 3 98 72 24 1 3346 35 153 917 1 3508 17 40 2 2245 1780 16 1 103 487 242 5 2373 1481 48 87 23 96 6 160 5 322 87 23 96 1 3346 2169 35 153 917 3508 6 160 5 70 1 1316 635 8998 15 25 144 87 23 96 1 635 11 3346 2169 40 2 2245 1780 16 6 160 5 70 643 3 90 122 139 144 51 6 58 67 675 1 263 6 4605 3 1 443 6 200 2 163 5 90 10 176 3 16 34 4 23 35 96 9 6 132 2 84 392 3236 139 760 2853 41 83 351 85 41 319 19 9 509 8852\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2929 1599 1410 1327 6 5323 30 395 432 3 411 30 246 447 15 43 3411 35 2995 2 3 6343 36 2 43 52 3129 8834 1036 5 1584 122 224 3 182 25 1004 480 101 383 19 21 3 9602 10 276 36 95 82 2032 4717 3 6 6209 1 168 22 1317 3 1 525 5 2559 7 19 6 3534 7823 266 2 35 6 531 47 7 2 342 4 1025 17 244 105 109 16 50 1686 9 88 24 71 78\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 10 6 1227 124 83 3425 46 109 15 296 1607 669 497 33 2923 28 1446 119 147 112 1259 6 1 330 4 2 251 4 9082 124 1873 15 6741 217 1 81 35 414 217 112 7 450 1 74 12 66 8 56 1 21 12 89 65 4 375 428 2633 470 30 2 264 206 6432 4 66 61 51 6 2 46 211 3663 470 30 6868 217 5817 36 9 28 6 93 31 470 30 375 264 971 93 36 15 147 144 33 112 1 707 33 414 1107 10 1008 2 401 4744 1 1143 4 9564 93 1008 132 7903 8945 14 578 3 2975 43 4 1 584 56 508 83 2243 8 1331 10 76 19 2852 495 2704 10 16 2025 422 30 5089 66 879 1066 16 79 217 66 879 736 6 11 1 398 3465 7 1 251 76 26 3695 41 47 4 1 3340 1281 7 123 24 2126 4 217 1736 15 706 1274 1 16 627 1587 217 893 1933\n0\t479 7475 4821 195 73 4 437 9 12 20 29 34 51 12 58 1362 4174 235 2363 211 12 620 7 1 1625 341 162 1474 12 7 1 453 61 2166 400 48 12 377 5 26 43 709 3148 12 1 493 15 2 16 834 630 4 25 645 2293 25 103 1700 8607 61 5022 8 12 1345 1000 16 126 5 139 19 5 134 146 59 5 149 47 27 12 1613 1 2654 6 1 80 7389 3928 2070 51 6 32 246 2 543 15 2 1021 8 1582 214 44 493 9721 5 14 1 5 26 78 138 288 68 768 17 98 805 2923 322 1441 1 212 804 6 11 1342 6 5026 3 45 112 6 306 10 34 1055 1 111 33 1049 490 15 2 3751 3 1 3484 1543 631 5 296 4808 3 5526 69 1 1967 7 1 3094 178 1295 1 231 8 230 14 45 1 18 12 36 903 716 77 31 7439 2871 4 3532 271 5 131 6063 63 4269 235 47 1057 5868 1034 3319 3 637 10 81 76 209 16 248 15\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 83 175 5 3551 307 30 48 40 459 71 1113 17 9 6 28 4 1 113 251 7387 10 12 2 84 1152 49 10 12 3 8 449 275 76 24 1 53 356 5 1351 10 65 3 905 1 251 702 1 53 1949 6 11 10 6 47 19 8 4847 224 5 1 1320 3 1459 65 2 973 3 192 749 5 134 11 10 6 39 14 53 14 8 2299 110 2142 5575 6 2 1529 534 3 1119 919 3 34 171 61 46 452 10 6 2 1152 11 1 3201 114 20 1811 110 9 6 2 3665 261 35 4283 1 870 3 35 40 20 107 194 191 87 1943 23 76 20 26 1558 50 752 35 12 105 170 5 793 10 49 10 12 19 756 5047 6 6 1496 46 3 76 521 26 2 3123 60 615 10 3 40 381 1 767 60 40 575 8 481 947 5 793 1 767 66 61 20 13 252 131\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 219 9 18 49 988 2215 19 55 27 339 90 9 18 3473 1 59 302 8 219 10 318 1 182 6 73 8 3964 388 397 3 8 405 5 90 273 50 1554 100 89 235 9 91 1104 17 10 472 34 50 5 694 140 10 1815 42 36 133 116 84 5305 15 2 1194 349 161 487 1104 6936 13 614 23 472 1 697 158 10 7 2756 98 219 194 10 54 26 52 2072 13 614 23 64 9 18 7 1 4388 29 155 295 32 10 14 45 10 61 2\n1\t9405 13 137 4611 4915 7 16 59 102 663 183 101 5646 1732 9916 3597 16 1 17 183 4 6023 88 5441 7 9 1723 6643 3 82 6035 165 3235 4 48 12 2267 3 1478 29 1 74 7 879 3 3 98 7 13 7254 14 97 14 1721 3583 7 1 292 20 34 29 1 166 290 415 155 62 326 94 1344 16 2 4514 3 33 3521 224 1 80 1798 2495 29 1 4 1 957 13 1 41 8832 4 9547 5 24 11 707 12 93 7 4383 4 1 1228 19 205 27 12 4126 38 1 888 4 1 5377 9238 243 68 52 1089 30 1363 1 415 224 7 1 3180 3 4 1 4 1 15 6758 612 1 6023 3 55 5002 1 1110 4 4 126 35 459 57 71 1172 5 115 13 2044 205 2697 3 1 3113 12 2 3170 4 1 17 33 61 202 34 4 137 612 32 5823 1 2251 1 415 1196 31 6483 9947 125 1 2495 4 32 31 7948 5189 29 1 4728 4 1270 7505 1427 4716 5 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3173 219 69 535 47 4 8808 1002 1054 3110 4 1 6257 2662 6 1 74 829 324 4 9 8932 1 4 1 2662 6 20 573 17 1 589 200 10 6 29 43 268 3977 955 1171 3 1902 1 67 6 46 78 1 166 14 1 80 1058 9399 28 571 11 72 22 620 75 1 1176 713 5 2321 1 697 2662 11 12 318 202 105 9221 53 16 6236 59 3 5 70 2 230 16 48 578 5850 12 7 25\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2003 8 159 1 2729 16 490 8 12 34 38 283 110 944 5062 503 17 42 71 37 223 220 180 107 10 11 8 83 2209 75 10 6880 10 5 867 1 18 8 159 3551 58 3491 5 1 6329 33 2925 79 3377 13 150 12 7895 3 862 945 30 9 108 3 45 10 247 91 1509 33 57 5 6601 10 55 1231 15 11 489 1948 20 610 265 16 2 203 141 8 497 45 23 100 159 1 2729 883 8207 8 23 190 96 9 6 43 1053 2688 16 50 2128 1 2729 12 111\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 217 8 214 9 18 5 26 46 10 544 47 501 17 1108 165 1698 217 2348 80 4 1 121 12 3652 15 1 1675 4 1 103 1753 35 56 12 9306 7 4637 1 927 12 961 217 1054 69 258 1 896 197 685 295 3128 49 28 4 1 120 40 2 60 202 784 29 74 72 179 10 12 17 98 72 1640 11 10 12 39 2 464 1471 72 112 202 34 4 1 104 217 62 3313 17 9 18 153 2264 5 1 7014 4 101 461 51 22 37 97 84 879 69 83 351 116 85 15 9 586 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6649 6 2 3940 763 1426 7 9 368 471 44 453 3 1 759 22 3 22 293 7 1 4 84 502 1 178 106 60 6 1694 5 1 410 30 421 1 3451 3 59 5 473 126 200 15 44 2313 278 4 7 1 6 28 4 1 113 3359 19 21 4 75 109 2 84 5444 63 1364 125 31 1754 42 3015 1 178 106 60 6821 4031 15 1 113 7 1 34 7240 58 46 4155 6649 6 396 16 101 2 17 60 1510 19 9 461 60 6 1299 28 52 176 29 1038 60 2149 1 918 60 3 776 2011 165 16 57 25 529 1221 237 845 80 4 25 18 9 324 4 1 4848 4031 15 1 74 28 4 8 76 198 335 5208 3 578 8106 668 1015 4 8 617 107 1 305 286 3 83 118 38 86\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 207 59 73 8 83 139 2478 15 50 13 9 6329 3 947 16 1 226 18 4 1 83 751 41 760 110 1961 79 23 495 26 1156 2 1606 1 876 58 147 51 24 71 52 183 849 244 36 41 2730 23 88 459 842 146 36 11 47 32 1 74 3515 1807 1752 1083 199 1 74 4651 1242 143 216 73 10 12 105 3090 1436 3 758 44 2366 106 24 8 107 9 183 1785 850 260 7 1 74 18 1 871 106 579 166 14 1 162 147 39 15 52 1 395 7 1 184 1112 66 72 143 64 8013 7 30 275 300 1 259 2648 1 6407 35 405 5 35 4425 1 5 13 1601 7 34 2 7750 5 90 319 2166 142 1 559 35 337 5 64 10 52 98 66 8414 1066 36 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 143 335 9 141 463 116 2927 41 23 812 1895 3543 41 1862 13 4550 313 1249 34 4 35 419 53 2263 9 18 2012 11 1895 3543 6 53 1651 480 48 1396 3051 1895 3543 6 1496 2 46 109 5531 2099 10 34 544 15 25 278 7 184 98 27 114 2 342 91 484 98 27 3437 140 15 1442 278 7 2297 74 1 6326 98 3 195 8675 125 2522 13 5 1 108 1895 3543 266 2 164 35 40 433 3577 1 4639 177 5 231 27 40 22 2 3 94 25 161 1185 6595 2183 77 849 27 181 5 473 25 157 2246 8 76 134 58 2425 73 8 87 20 175 5 2704 1 141 17 8 2474 354 9 108 28 4 1 113 104 4\n1\t1435 98 14 146 4 2 52 3098 1223 2627 27 114 3 3 343 34 1 699 3 286 10 418 5 216 19 1 545 7 1 356 4 2 952 4 1 980 106 3839 197 914 65 5 1 1985 4 2 4249 14 28 4 1 80 1201 3 3476 4 95 21 9 8354 13 5362 4 1567 6 4234 9797 19 1056 664 5 1 184 599 3 28 41 102 168 39 230 400 1164 17 127 22 1681 160 9 85 16 1 826 1666 443 9 6 202 36 2 1011 392 3236 553 15 2 84 934 4 474 16 1 413 7 1 8514 14 109 14 14 1 9 8514 3 75 188 224 1 570 1361 3 14 3541 6 29 1 401 4 25 3699 7 154 1146 154 1620 1311 9 259 37 16 138 3 16 11 27 255 38 14 542 5 14 2623 1952 1 102 546 4 4767 90 65 31 1502 622 14 589 7 1683 2434 53 16 31 410 55 45 33 83 118 4767 4077 1824 45 33 83 96 496 4 550 42 11 4155\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9349 45 135 14 12 2856 50 430 1871 3 1 59 177 11 54 90 79 139 47 4 50 111 5 64 9 805 12 1 360 178 15 1 372 8 336 1 3 1 3749 136 33 3626 16 5860 5 8989 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 6 1669 29 1293 9206 6 14 211 14 2 4830 4 44 32 3 2995 125 7 2 1200 525 29 1211 1645 6 1 59 28 5 209 47 7 9 586 1 59 1061 177 5 209 47 4 9 1378 6 1645 3 7411 3037 11 991 8924 138\n1\t12 1051 10 57 6616 10 57 304 1224 3 10 57 50 430 492 3231 944 8 128 112 9 141 16 264 3799 10 40 109 4853 1804 11 22 256 140 943 4873 3 168 11 176 313 19 2904 10 40 2211 6886 668 11 2589 1 168 15 8100 3 1 683 250 4561 11 128 151 79 7039 55 49 81 9447 110 3 10 40 50 430 1651 492 3231 115 13 19 2 1158 9 6 1 67 4 277 429 31 5605 3 7272 3896 30 1 442 4 2 2347 3 9915 69 17 128 1831 69 1398 15 2 1401 4 1793 654 7902 3 2 3605 2284 3 1056 7600 3614 1 277 22 556 5 2 6510 4399 49 62 231 271 1695 3 1 1173 47 3 1439 2 1285 577 1 6274 16 1 1285 4 62 2058 2 323 1115 37 4875 300 408 6 39 125 11 17 48 45 10 115 13 150 1379 3597 16 81 11 36 1 277 491 171 3858 1 3079 16 1 466 1764 647 3 16 261 422 11 1104 2056 307 139 99 110\n0\t7 1 111 11 6881 104 3 91 1902 198 2140 3 10 6 370 7 11 961 3 804 11 413 8234 22 2040 1330 3 1 212 18 6 38 1 1649 7 1 529 49 1 976 120 5 2210 2 330 13 614 11 981 883 55 5 1259 98 26 4968 1091 6049 136 169 501 6 2050 7807 69 14 6 44 4141 16 43 2560 1 82 453 22 58 894 31 7644 2732 4 5314 5 62 15 2050 1779 3 631 9829 101 1 639 4 1 1393 51 22 156 9714 17 87 99 16 1 2174 8044 4 2135 3 3827 11 784 32 1 6877 13 150 247 852 1357 17 8 57 3388 16 304 41 41 2537 48 8 165 12 2 591 91 1075 67 11 76 24 31 1244 410 8809 15 1 4 10 2616 13 4634 10 457 1 236 162 422 778 6910 23 22 2 325 4 961 270 19 413 3 249 502 1 59 111 23 63 1116 2 306 67 6 49 368 498 10 77 2 865 135 819 227 11 116 1676 22 728 30\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6684 2 897 4 21 1554 29 147 887 4728 7 147 13 4052 3736 4 622 3 11 22 58 1534 1227 8 54 36 5 64 78 52 4 9 880 10 6 46 2072 561 1123 3359 3 3 5 70 25 985 27 2667 11 1 454 35 152 1 4428 2062 4 776 12 20 776 1531 314 442 73 10 2397 3606 13 3440 219 626 16 97 1166 32 1 85 27 12 403 7757 267 3 34 1 111 140 19 244 2 53 353 3 2 53 7757 17 244 31 313 8 496 354 11 23 99 31 431 4 9 880 10 6 109 279 116 5623\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 2444 8 5245 33 143 55 787 2 263 33 39 1609 10 140 47 1 212 108 12 761 14 4359 52 36 1318 20 5 99 33 694 224 3 2089 9169 16 910 1452 27 71 223 9700 1 2435 12 254 10 54 4 71 542 5 1258 5 5 1584 122 15 47 3 49 6 19 11 3069 3 1123 11 6011 36 86 2 6989 7850 341 98 2932 224 2 6078 15 3077 10 54 186 4 5 757 224 2 6078 11 3 874 2962 22 1050 5 26 7943 29 3 33 55 159 1 48 1 8 143 64 2 4943 19 11 1606 93 49 27 165 383 7 1 3 721 11 12 3985 27 54 4 5 469 260 939 393 106 27 2 891 41 2 7 1 559 10 511 2963 65 3 564 550 1 7721 54 128 1473 564 2488 5351 17 1378 65 1\n0\t363 22 1550 314 675 245 19 28 2541 3723 33 333 1 285 194 202 2243 33 87 128 333 1 478 1456 1336 333 478 363 220 17 50 1193 424 144 333 19 3 70 2 136 20 333 10 19 1 104 41 55 19 147 767 4 314 194 3 10 247 1509 45 3 1 104 314 194 98 33 228 26 138 68 9 1865 5256 1 326 9 131 8 219 1 74 2541 3 10 12 37 91 8 590 10 142 94 59 681 5 70 50 438 142 4 9 345 983 8 1150 66 310 47 200 1 166 290 3 23 118 3070 1 18 12 152 138 68 3 70 2 341 55 138 68 5255 3 10 276 36 1 147 6475 11 1 120 24 213 9282 5 1 1 104 588 47 136 9 131 6 101 89 333 1 1998 129 688 704 23 336 41 1595 147 8 83 354 110 17 45 23 812 1 161 1125 98 468 112 1027 3429 8 449 1 161 1254 875 138 68 9 147 36 2 56 91 1993 5 1 4601\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 464 2399 18 206 20 6168 25 147 493 3 975 3684 2 1 493 3 975 735 7 3 70 5936 2 1671 4 2069 1171 624 22 9488 62 1034 1 3106 11 9 21 3 8 333 1 3277 46 4742 6 37 91 11 109 565 1 623 6 2050 8819 1 1674 5882 195 180 107 43 489 124 7 50 85 217 1200 5 2323 6764 7 50 1782 5 133 1879 581 286 8 128 16 261 35 2497 5 694 140 476 59 16 1 80 2956 1038 17 1 344 549 295 13 1226 3737\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6939 2 46 53 18 17 1869 5 1 6492 42 167 2186 7 5449 2629 1 1734 4 1 21 12 5 131 1 6606 4 1 3 207 248 3910 1509 15 2065 16 1 290 1034 1813 2387 3097 341 51 22 30 133 9 468 64 2 1837 4406 4 2 1837 392 3 43 167 1858 691 69 805 1858 73 42 101 248 2672 4 1 3 20 7 13 150 83 96 95 4 1 4144 8945 758 65 25 2629 49 599 16 6139 3 45 23 99 1 104 36 9 28 3 3069 7 3770 5 1 3004 703 8 83 118 45 10 12 1 81 7 101 3363 7 1 4170 9491 395 1161 2292 5 2 41 1 392 41 4875 17 42 240 5 64 9 32 1 166 2090 11 5230 172 406 54 26 253 104 36 8855 348 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 5630 9 2 394 47 4 394 311 73 10 6 1 113 1139 67 8 24 71 446 5 64 7 169 43 290 1 847 6 6265 1 8673 516 239 3 154 5325 12 3391 32 1 3500 5 1 2036 5 1 20 1446 3425 4 8 12 866 660 1 1212 19 1 2238 23 22 7 2 857 11 6 29 308 5092 3 29 1 166 473 129 1273 6 1516 286 127 529 22 610 48 6 965 5 2481 1 545 7 5 48 3 144 3 75 1 129 40 209 5 106 33 145 1475 15 1 389 1971 3 96 9 6 2 191 64 16 1 389 1499\n0\t111 105 396 3 239 383 6 1 1077 5 9 18 93 1 1960 80 238 168 22 4927 30 1767 4581 9 93 1583 5 1 2200 30 1 3833 4 1 13 4 1 213 91 73 42 370 19 2 388 3118 7 698 10 40 46 103 5 87 15 1 388 3118 10 93 123 20 1179 77 1 3631 4 91 11 42 10 123 618 1179 77 1 3631 4 91 11 42 9 18 39 908 4597 4666 5031 130 100 26 369 2882 774 174 18 4994 55 25 1761 76 4351 2 2426 5 34 1 971 47 1875 28 4 116 104 196 2 91 5551 34 23 24 5 87 6 320 11 23 143 90 4 1 3 23 76 230 78 828 8 76 100 70 137 1597 269 4 50 157 1877 5 3350 10 1095 911 56 481 1431 39 75 91 9 18 705 307 602 7 1 397 4 9 158 258 4666 130 26 3238 4 2449 292 48 8 24 367 190 90 4 1 478 722 10 56 4819 162 38 10 6 695 925 9 29 34\n0\t282 200 1 707 14 60 276 16 2 164 35 60 57 1969 447 1566 14 60 762 82 1164 647 60 3352 44 3 33 3673 1 18 181 5 26 928 14 31 1073 17 1583 31 6378 8 54 504 11 45 23 36 2127 484 23 54 26 46 2337 5 2033 1 13 2361 922 8 774 1 182 4 1 141 28 129 649 2 11 7954 125 5715 5 694 2086 896 51 6 2 46 4683 847 980 11 8 214 3860 3 4605 11 2601 14 1 644 7268 8 114 539 47 1767 723 41 681 984 3 8 338 1 393 1 3094 3 49 1 21 6043 5 1666 16 1 570 4393 8 152 338 1 111 10 485 55 828 10 1168 65 101 28 4 137 3212 106 8 343 36 8 88 24 56 338 10 45 10 71 2 103 3026 17 9 6 48 1 1132 419 2533 10 6 3 111 303 4 1 17 630 4 137 22 1318 5 354 10 19 62 2487 8 143 149 10 5 26 979 41 1688 37 78 14 929 3\n1\t35 357 142 2 232 4 265 178 7 51 408 569 59 16 28 4 1 6284 5 390 568 3 28 5 735 30 1 77 1 668 622 6028 260 32 1 357 1 102 6284 1622 7 2738 8837 39 19 62 1514 5 90 5445 704 53 41 565 829 125 1756 172 3 29 268 1370 5 99 72 64 1 2264 5 3988 5 11 3 1 735 32 178 5 14 1 6284 390 52 5312 1 22 5496 1560 3348 3 29 375 985 77 3 55 19 1039 34 4 9 6 350 211 3 350 1697 3 241 10 41 20 6 99 36 8 367 29 1 477 23 63 99 1 21 55 45 23 24 58 796 7 1 9510 19 1 82 874 6 1056 264 3 6 52 837 3 2 212 163 4607 5 99 45 23 24 2 2834 796 7 463 9510 128 2 53 21 3 52 2 7144 5 20 26 7 2 1301 68 11 14 2 895 6 2 1341 2062 19 891 3 3 2 514 665 4 1 3 4 101 41 1841 5 26\n1\t4408 69 8 24 284 4725 429 3 8 118 10 6 37 832 5 1124 1 389 347 14 10 130 1718 3 55 508 36 103 69 8 24 5 920 33 114 2 46 53 131 15 1 5612 5667 8 112 4491 3 8 88 64 1 1870 4 886 55 140 1 909 4 1 8 192 3134 8 96 60 6 1 113 886 8 192 20 273 35 88 24 89 2 138 17 8 192 1233 15 561 10 6 20 806 5 1124 127 223 1402 69 2773 1298 54 26 4607 69 9 6 2 1896 3 45 23 83 474 16 34 1 6057 1650 63 26 5801 41 1466 8 96 9 4408 6 548 227 20 5 26 1466 8 39 336 561 69 10 63 26 2072 51 6 198 2 583 69 76 1173 116 683 8 96 72 130 26 340 2 680 5 2095 16 13 150 24 5 134 8 336 1 880 300 45 8 284 1 347 805 14 8 531 1690 94 283 1 141 300 8 63 26 52 7 1 69 8 96 10 6 2 53\n0\t14 27 999 2 156 1683 529 6065 3 7877 6597 7 31 2213 856 6 1 644 113 17 650 42 34 7256 1782 255 142 14 20 5 798 1 2069 6351 868 669 721 1000 16 1 5953 164 5 131 65 15 2 13 72 4688 29 1 1411 4328 4 1 1772 4992 11 705 23 118 137 168 106 146 3276 6 17 23 173 352 17 47 4 2364 4 468 87 10 675 9555 3 38 763 27 3 2 4963 9720 19 2 732 3895 11 40 5 26 107 5 3 2364 4 34 1 27 7 9121 8 405 122 643 5 4258 122 65 52 68 5 552 9 761 5950 13 150 198 812 5 7605 3462 32 82 17 204 42 9 56 324 4 2338 1 2352 7 66 763 6065 7016 260 224 5 25 6 9908 655 101 30 2 7010 4 1256 3093 5 1857 8473 3 207 39 28 13 23 61 2 325 4 1 215 739 3 175 2 4591 47 4 283 3 8277 670 1099 172 406 883 175 2 686 21 925 2 1285 5 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 2 766 3 40 198 71 8593 30 81 7 9452 6 2 67 11 59 2 156 54 24 587 5 132 8506 1416 31 3122 77 923 3223 13 3616 8 338 1 18 16 67 3 5785 5685 3 24 34 248 2 53 1614 80 168 4 1 18 54 26 327 1614 2094 1297 5350 265 14 1138 868 285 732 546 4 1 18 380 2 53 230 4 1 13 2298 48 8 143 169 36 12 1 3585 3358 29 375 6397 8 214 1 1511 13 3616 53 216 30 9260 6586 8 54 354 10 14\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 165 5 64 9 19 1 2345 5 226 8007 3 12 1437 75 10 54 7034 65 5 205 1 2736 21 3 1 1533 8 24 5 134 8 12 9214 45 235 1 5 1 808 7258 285 1 8512 172 557 55 138 68 1 215 5 35 24 57 1246 140 1 982 14 2 8 12 93 942 5 64 11 23 83 321 5 365 2372 5 70 835 160 778 28 1193 5 438 69 12 1 1106 428 712 1 7258 14 1 968 55 183 33 475 3437 1 4351 4 1 41 12 174 968 7 1 14 2 808 7258 325 512 8 1374 2 35 7848 8 24 5 134 11 10 1253 5 1\n0\t46 3950 2558 234 66 81 83 504 69 17 244 3363 7 10 73 27 173 1999 15 80 1046 3 25 234 196 3 318 27 7 2 434 3158 13 252 6 46 264 5 835 2769 7 9 903 108 10 130 26 81 82 68 1 250 129 130 1030 4965 1021 3 36 7 16 5821 51 130 26 6445 3860 73 207 48 6 34 1395 42 20 38 13 150 1266 99 284 41 87 99 218 41 309 6300 19 3 23 190 24 2 4712 312 4 48 42 3704 83 99 1 7455 18 4 1 15 6744 4604 120 3 6932 3 439 119 218 6 1 80 2186 18 38 2 2867 25 6383 3 25 2558 69 42 5517 6445 9530 3 2153 46 13 6406 805 213 38 8344 42 20 2 5963 3979 262 5 1038 10 3130 7 116 543 3 495 369 23 139 2521 5412 735 8429 81 473 77 678 23 230 36 23 139 7 387 317 20 273 317 35 23 96 23 2140 297 4965 241 503 9 6 78 78 52 68 835 2769 7 9\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 962 27 6 2 2421 5 99 19 1 412 14 27 151 25 111 140 1650 197 2 474 7 1 1162 27 198 181 19 401 4 25 562 3 289 103 474 16 261 35 6112 550 1 2064 22 1092 423 8 24 1887 9 6 2 4 1 82 68 31 2579 1 2100 1 7413 4 101 1 302 1 18 162 1129 51 22 227 1552 3 498 5 359 188 240 385 1 111 3 3025 6 2 1313 29 476 51 6 2 163 4 1105 258 14 10 8519 5 1 2119 9 6 2 103 254 5 1 201 6 1111 3 593 6 93 2 5424\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 313 4217 21 15 745 4796 3 776 6391 2495 14 435 3 13 289 65 28 3400 5 1296 11 94 125 1801 172 4 8597 1916 40 303 2693 13 92 344 4 1 21 4495 1 435 3 585 19 2 326 1285 5 70 3462 142 48 40 15 126 2408 1 3571 63 309 13 92 67 289 1 2766 4 435 3 585 7 62 4784 4 727 48 130 24 9249 144 1916 12 7446 38 1508 14 33 5466 62 4 3223 13 2718 64 31 2231 8922 1285 3 4381 372 66 951 5 2 774 205 413 291 5 1173 47 4 62 3229 9697 13 92 182 6 2 14 72 825 144 1916 1283 8555 10 432 2 67 4 4344 3 1 423 1343 7 1 543 4 42 100 105 518 5 6193\n1\t140 2 604 4 264 1 3979 5 2083 1 21 6 101 446 5 335 9 8 2172 4 2672 296 902 76 39 20 70 110 45 23 328 5 224 1 1567 4 9 158 41 1 4934 6527 41 1 966 23 76 351 116 290 51 22 630 4 1 21 59 959 127 7435 3 508 29 1287 1 59 1426 7 1 21 6 3619 221 356 4 48 2589 1413 51 22 37 156 865 2206 124 11 209 542 5 3476 3530 4 48 632 424 5845 1 3805 4 1 869 4 7920 554 378 4 311 3212 457 21 531 270 1 806 111 47 3 16 1 1935 4 2308 835 5855 80 21 6 20 3981 80 21 153 209 542 5 3981 49 2 21 4361 14 9 28 4361 3 6 128 837 30 2 1114 2552 4 7125 42 146 4 2 50 19 1332 878 6 11 29 268 8 149 1 21 105 2512 7 5 1 943 1567 11 549 140 110 1 55 193 42 20 610 741 65 253 188 2 103 5 935 3 4736 10 105 1264\n1\t287 35 1123 413 14 28 85 924 95 1900 959 126 372 126 14 45 33 61 5204 2208 6 2 287 35 153 24 112 19 44 438 39 869 3 13 150 179 9 18 5 26 2 103 222 264 98 82 124 8 24 107 73 51 6 924 95 1138 265 9840 8 241 10 6 59 73 9 6 49 81 61 74 1694 5 414 478 3 494 189 1 81 4 1 135 1 156 268 1 265 6 455 6 285 1 477 14 72 22 620 75 60 151 44 111 65 1 1 1673 3 264 168 61 146 1 206 4 9 21 114 34 1 260 3407 3 34 1 260 253 9 21 331 4 13 252 21 12 34 371 31 6398 393 5 9 18 247 14 53 14 10 130 24 9249 17 10 143 1135 2704 110 1248 543 57 86 673 866 168 533 1 141 3 436 2 156 961 546 132 14 35 60 76 2460 15 4791 17 9 6 2 3794 18 11 63 26 219 52 98 3464 3 5822 5 43 81 3 2567\n0\t558 35 87 162 17 4008 29 1 34 326 3 90 9442 83 127 413 24 2 1441 270 34 27 63 186 3 30 1 182 4 1 21 27 1834 65 7 25 429 3 2026 142 239 28 4 1 2599 30 132 3067 907 14 125 7689 2919 101 2573 142 30 2 3 522 355 997 7 2 2698 211 11 275 54 24 2 321 16 132 2 1114 2698 5072 7 2 346 598 569 571 300 256 2 522 7 592 13 35 89 1 66 93 2777 1 3356 4 813 3851 882 7 66 58 28 12 17 10 12 248 15 2434 3 23 3114 110 3311 6 20 2959 74 4 34 1 1972 6 540 3 123 20 916 144 334 10 7 8 54 96 300 7 43 2558 707 1972 41 2 346 569 7 1 296 1270 7 1 6188 41 2730 330 10 6 20 7 50 793 117 56 2667 674 144 127 413 22 37 1911 5 882 571 300 33 165 2599 3 343 2 321 5 564 5564 3 1890 25 13 1155 1 1183 19 9 5592\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2676 1096 43 81 338 490 17 8 1595 9 135 10 57 2 46 53 312 16 2 67 2519 17 207 106 10 10 12 955 2878 955 1171 3 955 5681 13 1149 10 57 43 240 119 6397 17 33 61 39 125 105 6382 1 1063 965 5 853 48 5 359 7 3 19 127 36 4304 38 144 60 12 3 1 378 10 12 160 715 2110 406 33 348 4840 13 252 21 57 58 3423 3 8 12 1120 32 357 5 714 8 39 405 10 5 13 1149 139 3 760 41 113 3808 2827 45 23 175 1216 41 1552 11 359 23 3584 5 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29 225 1 7 1 856 61 4771 3 8 1 2133 14 1767 14 888 5 47 1 6084 3251 9 6 332 20 2 624 135 95 35 36 194 22 1 879 199 2479 63 26 273 5 875 237 295 4557 1230 441 1669 494 3 31 790 772 288 135 180 107 4961 97 104 17 9 28 6 1 147 3712 7 1 91 6683 45 23 87 780 5 64 194 1 28 177 468 176 890 5 6 1 1905 37 23 63 475 549 47 4 1 856 14 884 14 23 5435\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6412 5 80 746 180 8563 8 143 230 9 1417 95 4 1 82 891 104 5301 1 67 12 52 6801 292 8 230 80 81 405 5 64 1 2310 217 891 3 11 1 1301 721 8676 13 14 31 7618 8 563 2 156 4 1 171 69 217 619 5 149 47 7243 12 7 382 217 497 646 24 5 760 11 13 218 128 69 50 1725 35 32 143 917 1 1587 105 322 1155 43 4 1 716 801 8 17 60 4555 44 671 47 29 1 3956 1361 60 1371 1 788 37 78 6755 13 211 11 40 1 1077 16 49 8 969 1 305 7 1 6603 4388 29 16 2154 8 74 159 9 19 518 366 2240 3 24 71 2057 5 149 10 117\n0\t5493 3 2 625 5901 287 35 557 7 31 1400 8 214 1 67 46 641 3 331 4 7291 605 1 833 4 1 18 3 473 10 7 5 2 1151 1211 1 466 353 114 2 53 2340 27 373 276 36 31 5514 996 17 6 20 1202 14 2 770 897 1696 60 8955 1630 3 2492 46 78 36 2 3248 48 8 467 6 11 266 5533 60 123 10 7 34 44 104 2799 1 212 4 1 21 12 46 4878 1 1667 6 9448 20 712 109 29 34 1 1329 1 494 981 400 4503 3 1065 80 4 1 1287 1 709 1650 22 687 32 17 7 9 524 33 22 20 211 29 34 3 22 7 50 1062 9 21 6 20 279 2034 59 45 23 56 112 817 124 23 228 335 9 28 2 103 4885 1441 8 2117 47 4 1 856 73 8 343 8 12 2721 50 290 1 12 30 1 9634 8 560 48 2 206 811 36 49 27 1148 275 1323 47 4 28 4 25 581 5376 28 11 6 89 5 786\n0\t275 5 122 155 5 25 13 659 698 9 750 3062 6 489 3 49 1 178 1295 2 1326 8785 3 2 2960 2465 6834 8 590 10 1294 245 8 114 1812 1 21 3 12 232 4 1096 8 114 73 1 566 178 959 1 182 36 12 1 212 302 16 2034 136 1 67 6 31 1 238 6 46 53 3 1263 313 13 724 55 1 3177 45 1 804 12 235 5 139 6210 48 72 61 553 12 11 1 4 12 2 11 12 9473 224 3 9 2397 1111 36 2 1298 19 1660 5383 215 312 15 264 5616 4 1076 19 239 3432 88 9 26 1 4 11 12 1868 1 21 130 24 71 654 974 4 73 1333 14 237 14 1 9624 6970 4 657 51 61 1314 28 41 102 51 61 9888 3 439 42 14 193 2645 1 4145 57 100 71 1716 15 1 119 101 2 345 13 133 308 16 1 884 3620 566 1025 17 37 439 519 11 10 45 9 12 98 4835 4085 1095 245 16 11 974 178 32 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 138 68 1 687 4743 141 5 898 6 15 313 1084 3566 988 3 2 298 1292 5 1 1100 994 6 1904 14 198 3 6 591 3 125 1 401 7 1 532 4 34 5925 2237 232 4 2 8605 324 4 6643 3 33 7240 1 18 7255 362 5 86 2419 3 203 596 76 1458 20 24 97 6808 318 1 7530\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 112 9 18 3 100 70 1455 4 2034 1 265 7 10 6 1051 95 306 254 891 325 130 64 9 18 3 751 1 4169 15 36 2013 6516 3 23 173 139 1328\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 60 247 610 6365 2327 27 40 25 874 19 44 3 4015 3462 7 6933 13 252 12 227 5 2537 2 170 487 35 405 5 8245 27 1662 65 5 26 2 3837 164 35 12 3364 29 1 538 4 1 6376 101 1716 3 1 551 4 1075 13 2 148 1222 2493 8 12 46 945 11 364 68 2 3507 4 81 6246 3 51 12 58 1349 29 513 48 2 13 150 405 5 36 9 2493 17 10 12 39 105 673 3 56 143 24 2 53 1471 8 143 504 84 505 17 8 273 405 43 2286 51 39 247\n0\t87 138 98 476 14 521 14 1 18 544 8 563 75 10 54 714 273 10 12 211 29 1287 55 539 47 1767 695 17 51 213 227 1308 5 552 9 108 8 83 354 2512 476 29 1 80 8 354 2424 10 17 1333 513 1248 40 43 211 168 17 6 961 3 1082 5 24 1 7204 393 10 8279 13 3 5756 89 2 53 4894 467 624 6 28 4 50 430 502 3 5756 205 114 84 7 11 3 33 87 53 7 476 17 9 213 51 1293 1248 57 2 84 607 1440 3 1312 1867 734 5 1 6255 13 3221 18 40 645 1 616 1162 94 1 84 7388 65 3 1248 276 46 855 49 7388 65 3 22 3654 7204 3 24 5536 11 597 23 15 2 2618 19 116 3374 1248 393 12 2346 3 13 247 1 113 267 4 1 349 3 10 153 328 5 1142 8 354 10 17 83 504 10 5 26 400 2406 504 2 855 267 11 153 187 1 184 931 393 10 440 5 3702 8 187 1248 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 151 28 560 75 9 131 6 128 19 1 5638 236 71 28 342 11 40 2716 2193 3 40 2383 17 307 422 40 2415 960 835 1 272 4 7511 2782 1 131 63 26 548 29 1 4362 23 64 34 1 624 125 28 996 11 202 34 4 126 36 42 39 36 7 148 8329 1 624 357 5 186 28 174 827 3 131 62 306 883 37 72 17 11 28 164 6 303 5 1088 35 5 1351 11 27 1304 27 63 2459 3 414 3472 117 13 1118 6 306 112 75 63 23 735 16 275 49 317 929 5 1351 8101 9 131 6 4178 23 179 4667 4947 12 573 17 81 24 5 139 19 249 5 149 42 20 3735 75 88 2 282 26 15 2 164 49 27 6 160 47 15 375 2750 253 47 15 8101 630 4 127 1389 22 3 475 49 1 131 9196 23 118 51 495 26 2 749 393 7 1 3667 16 34 72 1374 297 6\n0\t183 23 57 5 64 48 12 9385 1 435 151 55 2 8827 2082 1225 32 1 2475 29 1 182 3 196 383 30 1 2048 35 34 4 2 2585 6 46 23 54 96 60 179 1 345 259 12 1438 34 140 1 18 3 60 383 122 30 6633 49 60 6629 195 16 1 103 282 35 1 1508 758 385 15 550 497 48 780 5 9207 268 1095 60 741 65 536 15 1 231 603 583 12 643 30 44 209 6171 23 34 563 11 12 160 5 3659 73 60 6 2 11 6 144 60 114 20 139 3 414 15 1 2154 1223 115 13 252 18 12 2 2158 14 237 14 8 12 6526 73 51 61 37 97 9 18 88 4 5802 3 337 224 17 10 2167 5 186 1 1881 461 1 358 460 22 16 358 4 1 3108 1 103 1753 35 8 179 12 46 53 3 2154 35 129 12 761 17 60 114 48 60 88 15 110 50 2952 6 186 2 7583 3 116 522 15 10 378 4 288 29 9 8633\n0\t95 1753 3 66 93 44 5 1 2094 35 40 2 379 7 154 220 60 1834 315 3734 7 60 6 7 2 3887 5 90 10 169 935 11 60 6 46 749 15 44 7053 3 6 7 58 111 5 95 4 44 8562 4 976 9 21 6 2 1261 267 66 9737 1 1227 78 9580 1457 1376 4 9120 86 1376 5 6 93 30 2 2281 7 66 257 2594 1123 44 6653 6988 5 2 3 552 34 1 82 8847 19 44 2345 32 2 5261 4524 5 8477 11 9 21 76 1376 5 413 14 109 14 5 62 1 206 40 8047 11 6 15 1128 13 63 26 381 30 137 35 22 20 105 3014 3 175 2 46 822 806 5 99 267 66 33 76 995 521 94 3817 10 6 37 5684 11 33 76 229 149 10 1381 837 45 219 316 7 2 5201 480 86 717 10 190 2091 86 3734 14 2 1280 18 16 43 85 5 5223 618 1 494 3 121 54 90 10 254 5 187 9 21 2 1020 4 52 68\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2056 10 705 7 698 42 1339 7 50 401 910 34 85 430 502 604 8 4630 145 531 20 28 16 9769 17 8 96 2392 216 138 7 2673 3 388 8016 1189 16 3 20 502 17 9 28 40 10 513 4708 4 3108 31 483 109 428 4852 136 9 6 20 56 16 2383 33 63 128 99 194 10 1263 58 2461 3342 5299 3 17 8 83 96 479 160 5 365 110\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 237 14 8 63 5 868 22 14 13 6696 1 570 3062 4 1 954 2094 4317 262 29 1 182 4 2 6 2494 375 268 5 187 1 537 2 226 941 183 62 178 6 8137 13 8732 2 428 16 17 32 868 16 1 3105 5984 6 189 1 182 4 1 1433 178 3 1 477 4 1 5495 1361 2167 9 265 73 4 86 733 5 1 265 16 1 1758 1075 6078 11 5193 3636 13 1 6132 16 1 9045 6 13 499 181 5 79 1 11 40 936 84 868 6\n0\t12 4988 10 28 4 1 3931 84 18 8455 10 4361 17 7 2 8053 426 4 699 1 1084 6 3977 1790 29 1 1403 3 3361 294 14 20 227 3452 7 16 458 29 225 20 136 9 21 12 101 1001 17 42 243 1474 5 64 126 5764 1 453 549 1 9792 32 1 631 5 15 46 156 3671 7 9107 1 224 129 181 14 193 60 339 149 19 2 78 364 655 86 207 664 29 225 7 185 5 43 56 91 2511 28 4 1 11 76 26 5474 655 154 545 4 9 108 42 50 1062 11 104 1295 2 4351 41 11 2725 62 3397 32 2 915 11 6 595 132 14 22 16 3977 3251 10 153 3 1 1501 2 1 119 40 28 2037 2732 4 1005 63 9 70 8827 3 364 1 1836 424 9594 7002 1 1972 802 22 2211 3 1 274 2217 6 1227 46 501 1 59 5424 11 9 247 43 1879 2426 11 3 1 233 11 51 22 37 97 4566 2121 403 3085 7 132 31 4833 4543 5174 7002\n1\t239 82 5 1 2059 7 2 3526 9637 1869 5 2 4530 236 2 4279 2698 2324 7 1 4521 1692 3 10 459 643 2767 4 1 6333 11 713 5 1236 110 1 3953 1680 11 2525 1141 1 2698 76 26 1 2059 8348 950 15 1 1003 274 4 655 245 10 1108 432 631 479 20 65 421 2 2698 17 2 3 1169 392 2661 15 169 31 4 4333 7 25 3 2143 5455 4156 65 25 94 2 212 3000 4 5963 3 7758 296 9 362 3991 2833 991 276 3 811 46 2763 3 1 2441 6 4812 17 1 466 120 22 7790 227 3 1 2000 65 959 1 15 1 506 6 3408 1 191 24 71 2 325 4 2338 9064 3 492 14 27 93 1123 2 15 3056 3638 5 10 3 2 482 3433 5 1203 25 3374 1 2064 22 1858 3 66 8 12 56 1247 16 220 1 1477 4424 567 4677 3 351 2 212 163 4 2270 5099 1 1167 3 591 1 22 9909 6 2 2833 645 11 255 1901 5 1 596 4 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1351 19 1 540 9413 13 743 526 4 5120 1708 2 633 3 3983 44 65 30 44 1 6640 1148 1 212 177 642 1 799 1 1248 47 3 1732 1 6010 88 348 11 1 184 976 6 56 1341 30 1 111 10 122 224 14 45 5 867 8451 47 4 569 183 115 13 252 67 4 1489 40 1761 3 5984 17 20 78 1939 9 12 74 158 193 44 74 121 329 12 723 172 817 7 308 655 2 612 7 14 30 294 13 2087 1 1992 4 9 753 6 3217 8 449 3217 40 2 4 2 53 70\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 34 1 124 8 24 1586 9 628 1 40 165 5 26 28 4 1 210 5142 1 2132 1714 7 3 927 89 79 1717 47 7 8000 4397 88 261 209 65 15 146 37 2142 9953 6 118 16 25 6733 484 17 9 6 2 273 108 13 9416 16 8129 38 102 2596 3877 217 558 1800 6862 2 1625 429 15 2 1208 1 6 3 6 14 5 144 34 1 2475 22 1395 740 2110 2 568 1653 1112 101 643 826 1294 1 2475 7759 295 29 1 15 2142 3 1404 295 29 450 1 2475 735 36 3 1 15 2142 3269 200 7 3 22 20 645 30 28 625 6 643 3 2142 181 5 20 5 24 11 259 6 323 2 20 220 1 1525 7962 5387 40 51 71 132 2\n1\t60 1403 19 25 3578 5 1 1040 601 4 1 4 34 9589 5087 15 2 103 352 32 16 1535 1 3489 5678 1167 3858 31 3971 5998 5 1 331 447 605 1888 5490 7135 5135 5 797 142 19 2 1702 326 30 2563 2 105 16 2305 1255 287 2607 44 34 85 80 5 1369 960 113 4 131 191 26 1 3950 980 11 40 1858 3 2652 2077 1 8666 142 239 82 608 16 579 608 136 7339 30 2 4914 260 318 1 13 3371 447 11 1501 463 9687 41 9055 3 52 396 68 20 2961 40 2 4 5 1811 1 644 1 462 5740 190 26 1 2796 1576 2996 17 31 189 6812 327 130 1483 11 16 37 97 1217 1008 22 7514 1987 121 14 25 221 1 206 289 84 1128 16 7280 36 1 383 4 482 6296 101 15 25 9 4249 122 47 14 2 84 1951 243 68 2 1674 628 14 12 1 524 15 1788 8616 35 65 5 186 25 334 29 2059 608 3910 253 122 2 1785 608 49 27 3485 65 16\n1\t257 326 3 717 6 5 2221 10 130 26 1 1668 3687 16 48 782 104 22 34 1395 94 399 4654 1417 7 8962 300 2024 130 917 7 13 297 11 4181 2533 45 23 22 1455 4 34 1 3670 203 124 11 83 118 1 1820 189 510 3 98 3146 6 2 21 11 130 26 575 10 495 369 23 1781 8 335 101 8 83 118 3740 17 8 1405 17 162 40 1728 79 7 1 571 300 28 21 1394 3855 570 2232 8872 45 23 335 5807 98 3146 6 28 11 23 130 1861 3 45 23 24 459 107 10 2 3302 984 139 3 99 10 805 155 5 155 15 2 21 36 2868 2868 2247 76 24 23 29 34 1 167 2121 7 1 108 3146 76 24 23 8664 15 5448 1544 7 116 20 1841 5 195 348 503 48 203 21 54 23 243 13 872 39 5 917 65 94 283 2614 10 151 23 1116 9 11 78 1129 9 6 2 382 30 1028 25 2614 17 10 153 186 295 32 1 5115 4 9 5592\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 57 31 240 1249 10 20 24 57 31 2 1307 201 17 1 171 11 61 7 9 21 114 2 53 1614 4925 1096 72 24 1493 2442 104 36 9 628 1 67 6 1048 1 171 22 1048 3 37 6 1 111 33 194 23 83 321 2 1519 3780 445 5 90 2 21 39 2 1541 4 1493 1307 2116 171 3 2 1048 994 8 36 1 111 33 57 1 1170 5 730 3 11 51 12 58 28 422 200 3 93 48 8 193 12 240 6 11 33 143 542 224 2 5 274 51 3 11 33 114 10 34 32 2 613 5226 3 492 114 2 84 329 29 2239 51 871 7 1 5717 9 12 2 84 21 3 8 449 5 64 52 36 10 7 1 774 3667\n0\t234 3 1 82 102 730 2 156 9356 1287 996 8 192 56 1096 11 8 159 9 18 19 378 4 2424 110 145 2 184 325 4 1 690 6796 104 3 145 167 273 11 45 27 159 9 141 3719 229 1337 65 136 1094 105 5053 8 1266 48 12 15 1 624 7815 14 1713 3 1323 200 36 9140 10 56 1553 105 11 1 265 7746 2167 1 1865 2753 131 265 16 49 1 1713 2117 65 5 62 3300 258 1 185 106 33 139 77 1 7815 14 1 974 10 12 15 1 7 1 3 1 414 287 12 7497 38 1 8209 8 339 55 348 48 1 506 1220 3 1 233 11 25 1778 43 2767 143 352 1497 850 322 48 63 8 504 32 2 18 106 33 1337 7 2 1610 566 178 16 58 53 302 7 2 106 33 791 2468 4 1276 200 1 1162 814 16 34 4 137 35 948 1145 856 7642 41 45 23 39 36 19 91 8392 104 16 98 9 6 1 18 16 23 409 409 409 41 1265\n1\t3 2369 36 1255 1977 1497 690 6 174 820 827 35 655 776 186 19 1599 30 253 122 364 8462 3 52 224 5 990 3 25 212 129 3 823 1587 2703 50 434 6817 270 1 3568 1329 4 5949 5 147 8904 15 25 1546 4 2 23 46 7 25 193 155 52 5 170 3568 98 1 5949 4 1 215 135 1 233 6 11 9 18 37 3461 32 1 215 21 801 1253 1366 7 19 2583 3 1 1736 48 114 95 4 24 5 87 15 8 1 59 888 3320 1 215 324 40 125 9 28 6 2536 1286 1 6 138 7 154 888 699 106 1 161 324 757 97 759 3 941 2296 51 12 58 321 16 126 341 16 34 3 1168 1 18 7 1 750 4 1 1 147 324 40 5755 1 215 265 868 3 40 1253 43 84 147 691 14 109 1598 101 1 7 11 72 118 414 7 242 268 17 45 23 175 5 70 116 438 142 116 6536 3 256 19 2 749 543 98 9 6 28 279 3698\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2046 3 1 234 4 4394 3007 6 311 2 91 4866 10 40 58 3754 58 1052 6207 162 46 293 38 110 657 1 1983 6316 176 1476 17 1 1122 6 11 1 212 177 6 383 7 31 761 2245 1 18 1123 265 1 166 111 7098 867 41 1 10 100 311 1634 51 22 58 1684 6207 4032 39 3 3 4560 4 2126 556 32 972 104 3 51 6 58 737 1 18 39 181 5 3097 73 10 5435 552 116 319 3 116 290 20 548 29\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 28 4 1 210 267 104 8 24 117 575 8 812 127 39 543 10 81 1 1230 623 40 71 90 146 147 16 3633 34 127 147 1545 22 39 2444 3 588 47 4 4542 2127 6 20 1578 16 2 466 280 5142 8 449 27 63 155 32 9 489 108 3 76 129 6 39 908 565 4686 6546 114 23 284 1 1471 1 119 6 323 1 210 117 4993 195 23 348 79 45 9 6 7627 3332 6 1 3750 8682 1825 1508 1403 6 2057 3 1 231 693 5 946 16 1 683 8099 37 8682 6 3759 9 568 2248 5 3081 319 16 59 37 11 8682 63 1620 1403 7 2 566 3 2162 25 1661 1333 1 141 23 348 503 54 2890 1017 5 64 11 391 4 13 39 13\n0\t5 26 9475 1443 17 674 22 93 43 6445 7023 529 14 1 250 129 101 2 2892 29 1 357 3 2 2906 2 386 85 3513 145 20 273 144 33 114 458 55 94 133 1 253 4 391 19 1 1 82 465 6 1 3710 66 6 660 1319 86 248 7 132 295 11 307 2656 49 62 8754 22 20 19 41 45 33 22 1 3079 83 55 2363 1484 1 8 83 118 45 86 2845 124 2818 41 11 4 1 1278 35 89 1 21 1247 5 77 1 1585 7 1 253 4 13 92 21 213 46 452 14 180 367 10 40 34 3149 4 1813 1636 11 39 90 9 31 1164 2871 480 43 56 53 288 203 1512 1 21 100 557 14 2 203 135 14 21 5 2845 86 78 105 1852 7 9 5 1234 5 90 261 230 261 2912 5 13 1 1412 420 187 10 2 55 29 2 6603 4388 50 2952 54 26 5 149 1 6347 324 4 1 901 404 66 76 652 205 43 3 43 2308 38 2 4473 7\n0\t2 8685 983 10 1 1422 3 4 66 869 6320 705 681 1727 2976 1112 510 30 712 62 1563 1792 8491 1 1759 22 33 176 36 146 11 6 2696 4 48 1584 3 2857 3 633 54 1 121 6 3 1 566 6328 6 37 6777 91 3 37 1054 5 1775 10 151 7647 1209 176 14 1381 14 53 14 1660 6605 66 6 31 7 2330 7 698 33 176 14 45 33 22 4700 3 1206 36 10 12 43 324 4 1 41 33 61 403 243 68 6187 51 22 43 3267 11 2761 865 1563 1792 3 286 10 6 248 7 2 20 37 978 111 11 151 10 176 13 131 41 1375 9 6 39 37 1054 3 19 1 4 3 55 193 9 324 6 274 7 4505 23 88 26 8306 77 517 11 14 23 99 43 4 1 566 1102 11 33 61 20 829 7 1 3119 17 243 7 1826 1 595 1076 3 1131 12 4863 32 1 873 5 26 1732 1 199 13 614 23 36 9 574 4 1689 98 1382 15 1 873\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 43 1386 7006 2126 17 6 56 39 31 15 58 593 41 75 87 127 81 70 140 21 35 380 126 319 5 90 9 88 24 71 37 78 2425 514 466 1651 3 8 198 36 17 209 926 1 6961 4 39 5088 2161 5 149 235 1683 6 39 37 3 10 273 153 90 16 53 703 1 206 693 5 139 295 3 414 157 16 2 53 223 136 3 20 209 155 5 1 443 318 33 56 24 146 5 3051 9 6 36 1 416 4 39 2 658 4 8037 4586 3 449 449 449 36 898 11 7352 11 63 1093 45 1 206 152 40 95 232 4 9830 41 40 2 1568 11 789 49 42 7 1 1761 4 5796 17 204 42 39 1032 4 58 8 343 1 3840 393 588 529 183 10 3 12 5751 3093 3840 29 1 412 49 1 1079 7425\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 31 862 439 108 10 12 815 1 210 18 180 117 57 1 4 1157 2086 8 481 75 10 4031 2 1020 4 715 41\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 63 134 424 74 18 9 1022 11 165 50 3726 8 1459 10 73 4 1 1041 8142 3 3 1 67 485 24 39 219 10 3 8 63 134 69 145 51 22 1985 1025 207 48 151 10 52 3735 72 1513 549 295 32 257 3933 127 188 22 2267 260 9 4457 3 51 22 35 22 242 5 720 188 3 90 188 138 3 35 70 1309 47 38 62 5 1 152 8 173 291 5 230 1 8878 7 1 207 48 151 10 828 205 3619 3 742 114 2 84 2842 3 2005 2 394 32 8892\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2590 3068 8068 554 14 1060 762 7 97 1175 9 6 9432 51 22 4181 3 1021 288 81 5 359 23 13 1 121 1514 6 345 29 1293 781 935 4432 11 9 6 1674 2 658 4 417 253 2 203 135 66 7 34 1365 33 87 5 1 113 4 62 49 23 1942 1 402 445 151 10 46 832 16 293 1456 15 1 4237 288 167 78 36 413 15 5997 6356 3377 13 6714 1637 4 1 21 22 1119 3 17 10 2440 16 712 105 97 1552 3 498 7 2 386 1032 4 85 66 39 844 23 1120 3 7 1422 4 2202 23 5758 1 21 123 10 46 530 9326 1 7826 154 715 2110 774 1 769 23 152 175 5 118 48 6 160 778 3 22 1774 5 947 1 6491 269 16 1 13 252 6 58 1272 2468 17 4353 373 87 16 31 3400 7 1044 4 1 4798\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 296 21 1350 636 5 90 2 21 33 96 6 1 120 34 955 1 171 22 20 55 873 3 1 274 6 4543 6749 3 373 153 4735 7 362 3 35 117 284 1 347 365 11 1 263 1063 143 734 95 1988 1548 5 1 18 32 1 1471 2428 33 55 1241 1 215 119 427 15 2 156 2452 7263 6 712 16 25 102 250 120 102 109 587 1596 171 35 5187 183 7 7107 1503 7263 229 159 28 1596 18 3 33 4735 873 5778 283 137 102 171 371 316 55 151 1 104 52 2348 226 178 7 564 1037 8243 6 764 268 52 873 89 68 11 4 9 108\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 323 31 489 18 3 2 351 4 358 719 4 116 500 10 6 6737 2518 3 9494 15 1349 3 679 3 679 4 3151 245 1 1349 6 20 11 7277 3 1 882 6 6196 3 1466 896 1 119 6 7472 29 1726 1 120 22 3206 3 3 1 121 6 43 4 1 210 8 24 117 575 115 13 150 24 455 11 9 18 6 377 5 26 722 17 42 1265 8 114 20 539 308 136 133 194 779 114 8 55 4750 2 8341 1 1350 4 9 21 713 5 4635 2 267 18 15 31 238 141 3 33 1200 19 205 115 13 2361 775 89 104 22 211 73 33 22 37 573 17 9 6 20 28 4 450\n1\t1 1248 5 25 7107 30 914 1 3 1 77 2 231 451 1 80 4 399 17 2178 1353 4 2566 90 806 48 1412 5 1391 90 29 1 714 115 13 677 22 1574 4 1 234 385 1 8822 642 31 3 2 4612 11 6738 5 11 6 2696 4 1 2473 1291 7 120 19 144 479 7 1 2488 3575 136 33 88 24 404 10 1 184 7136 41 1 4180 43 120 555 16 2 5039 174 84 427 38 1 1636 189 1 84 559 22 100 2246 1 3401 879 70 456 267 3 1406 151 9 28 167 806 5 836 896 2135 6 37 16 1 327 11 33 1064 3 14 115 13 92 7162 2447 4 3 90 53 19 62 136 1 537 76 4621 7 62 1 1995 76 4488 62 19 62 221 8094 51 6 43 4759 882 3 1883 8387 17 374 76 26 30 1 3008 3 76 70 28 4 62 362 4 1 1112 4 53 3819 4670 3 231 4270 3 2566 22 627 1 93 90 333 4 1138 7029 11 22 13 1149\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 24 107 9 21 59 3464 19 2534 3 10 40 20 71 9 6 678 49 23 1064 1 3160 11 6 2494 125 3 125 702 531 203 104 16 79 22 2 2732 4 17 9 28 56 1728 2522 13 4098 20 284 1 398 222 45 23 107 1 21 13 92 6267 222 6 49 1 7894 1 9240 5 106 25 379 1936 202 434 71 27 2080 35 1 898 22 23 81 2799 28 30 28 33 187 62 306 1 282 35 12 4851 5 26 6611 7 639 5 3881 3 7458 122 666 1352 192 1 1897 35 336 1895 183\n0\t24 31 4116 15 7155 37 10 6 20 832 5 216 47 1 111 9 18 76 1391 1443 63 100 365 11 1 344 4 1 234 615 10 1213 75 1342 7 1 4324 40 132 31 3 4790 115 13 13 92 466 353 2148 2 4583 35 3902 77 2 1189 234 4 101 2 3346 7 31 2868 255 577 2 231 15 102 4014 2383 2 1410 282 3 556 474 4 30 2 8591 625 5304 435 35 63 1092 1 3346 6 30 1 1410 282 41 3 1 487 6 1524 556 7 30 1 4 1 13 92 3346 2731 1 212 85 7 2 1296 4 3 900 4583 35 5 139 5 1 4133 98 216 16 3 98 7255 2 19 25 231 14 27 6 105 3840 5 90 319 13 13 8750 451 5 99 463 2 747 1200 4583 7 2 1189 234 2648 2 469 41 1314 793 2 345 231 35 22 7 1380 20 78 138 68 482 13 252 21 6 1445 13 499 59 3389 554 32 355 1 5083 1183 888 30 43 350 1876 446 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8349 523 9 5551 8 337 155 3 1 746 4 2349 9 18 12 2 933 2259 5 503 220 10 1008 102 4 50 430 2013 1760 3 690 5469 2 868 30 1 396 2276 218 2470 1 1206 12 3 1 759 1 67 2 4644 55 1 12 20 591 59 1 1667 2151 1 2305 1646 3 9003 145 1096 82 81 381 218 170 624 4 193 8 80 407 114\n0\t2 1591 143 175 5 3791 17 339 473 1695 45 10 1121 16 1 1128 3470 4 9 158 8 54 24 340 28 3384 1 233 11 1 5334 189 120 3 733 2813 61 37 237 1253 30 345 593 3 586 67 90 9 18 162 52 68 2 1879 5318 319 6 373 20 2 5 90 2 53 135 17 9 18 1082 37 2069 51 12 58 680 5 13 614 23 61 1544 47 7 1 4905 116 2113 113 493 2057 32 31 1903 82 417 2057 200 1259 7145 7 2 678 2416 48 54 23 13 549 295 32 307 3 328 116 2902 19 116 2487 24 447 15 116 417 5657 186 2 1053 6072 5 6558 116 5 1483 116 7 1 522 116 2113 113 493 3 5549 15 2 34 4 1 13 5 9535 630 4 127 3405 22 11 237 7 698 34 22 7790 3 109 5484 7 3254 1 900 551 4 864 3 7033 525 29 4243 48 81 54 87 7 1650 3448 9 21 7 1 4388 29 116 558 2551 5504 875 1695 875 237 1695\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 35 44 1773 7 1 750 4 1 21 4 6295 123 20 64 48 1 410 63 64 32 2765 13 6685 905 2636 9940 7568 11 44 6 246 31 1971 15 44 113 1327 3 33 205 328 70 3996 4 768 7568 182 4 2636 9940 13 872 48 2 2636 11 1 462 459 380 10 2408 153 1947 91 505 91 351 4 85 850 7 1 769 60 486 3472 117 13 614 23 338 9 141 468 56 112 415 7 1 3721 4\n1\t758 9 103 2067 65 49 72 61 34 6514 36 1184 2 156 2017 13 92 3832 22 360 69 51 6 1 7466 549 140 161 802 4 32 2 9544 5199 3180 15 1 3709 822 7 1 1863 22 227 5 348 23 9 6 2 7877 15 7185 16 4158 30 1 115 13 92 52 8 64 4 1 52 8 36 9 170 1368 7 9 330 21 27 6 169 53 14 1 16 4158 2928 35 6 340 2 1734 7 157 30 2 304 3248 276 2211 3 49 60 9483 60 2589 1 1538 17 8 214 44 3784 7 1 52 686 2184 8 192 20 169 273 11 60 40 10 7 44 5 26 2 84 2922 41 300 60 76 518 36 1 6442 1 265 30 6 20 11 84 3 7 233 1 18 29 1 4501 33 232 4 1 1567 3 87 20 694 109 15 1 120 242 5 2369 450 1 607 201 6 313 3 8 187 9 482 5309 1260 2 4085 960 69 1 233 11 8 112 1257 40 162 5 87 15 50 4274\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 5 134 14 101 2 325 4 1 164 35 1242 177 69 229 25 113 4121 13 3204 23 165 9 8 173 96 27 256 95 991 29 34 77 9 36 27 114 15 29 225 25 585 89 2 547 13 2136 24 5 176 29 9 32 1 11 10 143 291 36 2 108 10 485 14 45 275 422 470 10 16 28 1606 8 495 241 4654 256 95 991 77 9 29 2616 13 150 12 39 2575 5 25 161 416 7770 1077 3 10 12 8175 258 16 1 4352 13 4052 12 712 2 541 11 58 28 57 3 10 1066 37 109 16 25 703\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 24 39 219 1 212 1639 767 19 1771 1 121 533 6 313 69 58 9119 51 12 20 169 227 238 16 79 8 191 3051 58 148 1216 14 4924 39 877 4 74 897 129 5064 162 36 7 1422 4 45 23 36 2 53 67 1633 3 4715 553 98 9 6 16 1038 745 14 1 466 6 13 92 21 1012 1 157 4 2 2 164 35 130 24 71 2 5730 1910 4 1 598 2717 3085 17 35 12 37 7247 30 25 5192 2113 11 726 25 111 4 157 7 34 2508 14 2 583 27 25 435 17 25 435 12 5794 85 217 85 316 14 2 3 2 5177 1368 20 16 41 319 17 73 27 965 5 137 4639 5 122 2375 6 7247 30 25 2894 2728 69 10 40 6957 25 1700 1695 27 40 58 148 112 41 7 2693 13 1872 691 3 20 97 822 529 7 1 1639 594 1199 46 109 248\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 604 28 69 284 1 462 14 218 85 4 1 1341 41 436 9 6 2 167 53 3322 391 29 1 201 3 760 10 69 23 118 317 2284 3 206 380 126 62 4343 605 25 387 3851 1 120 8314 3 9412 1 1769 14 33 947 69 20 69 16 1 1110 4 218 184 3 1034 1489 13 1701 43 4 3119 1 3501 6 283 1490 2376 94 25 32 27 1373 2 7229 21 3 657 15 1490 7763 3147 3 742 4525 9 6 1 7 1 4704\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 292 60 6 103 587 2087 9504 12 28 4 1 80 986 460 4 1 2 167 2901 15 2 2328 3 2 1299 6026 9 12 44 74 580 158 3 10 2012 2 16 2905 13 1831 624 3009 277 3571 4 2 8321 342 35 3937 5 62 435 49 62 532 3352 27 190 521 1 7651 4748 4 25 1327 3 3776 122 5 62 4413 292 1 67 6 1 263 6 2347 3 1 3083 201 266 10 15 2 4115 8303 9963 40 2 672 3 2529 3 132 837 129 171 14 1539 3256 3 2873 47 1 1440 2 31 8547 16 596 4 5126 803 13 6505 4860 2381\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 84 3264 6143 1254 32 1 1188 172 40 3264 14 2 5444 7 31 3406 2760 29 2 558 4972 5504 94 244 248 16 1 326 1 4048 255 7 5 348 122 11 5176 26 5982 3264 6 749 5 77 27 3467 47 11 1 147 329 6 7 11 40 5 87 15 1804 36 867 2 732 9 3029 2 1112 4 189 1 7476 3 25 195 1081 8 214 9 386 5 26 2038 3 373 28 4 1 138 879 4 1 362 10 128 1373 14 211 670 172 3513 9 1139 386 63 26 107 19 4447 755 4 1 5499 2101 1894 7930 13 1226 3737\n0\t3 1 559 27 1141 662 55 25 9023 33 22 39 253 299 4 550 9 6 28 4 97 1035 30 1 506 5 3707 4 1 27 98 5333 5 328 3 564 9 82 2112 3 27 440 5 1173 77 25 429 30 411 77 1 27 6652 196 1544 3 1092 999 5 70 689 27 98 3849 140 1 5422 3 98 440 5 564 1 259 30 122 7 25 27 173 291 5 564 1 259 9 111 37 27 6828 2 376 142 1 6078 3 1 559 48 1 3106 12 2 6078 55 403 7 1 7027 7 1 74 850 2056 1 506 183 9 564 2165 142 29 2 1433 3 57 43 299 854 109 11 6 38 10 571 16 1 569 81 3889 122 15 3 1 185 15 25 711 3 11 4317 27 451 5 3103 48 12 11 55 9370 27 721 648 38 146 11 12 100 56 75 123 10 182 23 109 220 8 24 1934 8 76 348 1038 27 1225 142 1 1611 7 25 1209 3 5333 2339 109 1572 39 134 10 12\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 59 1 74 185 4 9 251 49 10 155 7 1 518 3991 3 59 937 165 2 680 5 99 34 277 546 3034 7174 3085 30 1 34 7 399 8 338 9 519 870 5451 1199 1 67 4 2 1186 164 1424 16 31 972 287 181 5 216 3 1 171 22 34 4835 657 10 123 24 43 1151 2515 4 599 7 1 4044 41 2 1591 2276 17 1 120 24 2 680 5 26 5802 37 10 153 291 5174 36 10 54 26 45 9 61 43 816 3969 2451 41 35 29 268 1523 79 4 2 1133 123 2 514 329 4 275 35 6 522 125 8384 7 112 3 1 3 4 2277 3 3448 1 251 77 3245 9596 4681 8 96 1 251 88 24 71 248 15 102 3428 17 207 65 16 9208 8 3688 236 2 5409 3 11 130 26 9997 3034\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7285 10 12 2 327 1197 94 513 86 1625 114 20 6660 2 53 21 29 399 10 12 55 2 222 258 1 185 4 2356 12 2 1061 4064 109 2878 3 695 364 148 1024 8 87 20 96 2 259 35 165 106 27 165 54 131 4432 4 132 959 297 11 25 1955 1404 1421 1987 28 123 20 390 2 401 2465 39 5 894 10 34 1283 702 1 393 4 1 158 285 1 781 4 12 105 5966 1881 3 169 4652 3 4 448 2 259 36 129 54 20 226 576 25 74 1679 7 2 147 887 4390 36 476 8 449 28 326 8 76 64 2 547 280 428 16 8005 204 60 485 2 345 651 372 2 3 30 1 744 8 87 20 64 144 60 6 1 4 1 3002 8 64 624 19 670 154 1203 4 154\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3781 2 1039 3 86 81 171 7 146 36 656 35 1 898 367 11 2114 2165 29 1 55 29 1 2114 144 6 20 1 410 9354 7 1 2322 4458 642 1 67 13 252 21 12 2 1751 3763 11 1 67 6 23 3 10 693 52 68 116 5837 10 693 116 7736 72 652 1 67 5 1259 519 23 24 5 139 5 1 13 58 28 17 11 123 20 467 10 130 20 24 71\n0\t0 0 0 0 0 0 0 1 59 81 6540 9 5937 22 1 4654 8 118 2 163 4 1 559 99 294 4654 19 6517 3 47 2 18 3 10 2 4 3535 9 6329 6 1963 2145 10 276 3 981 36 2 4717 1 1077 6 3 40 8283 1665 505 66 6 9407 73 1797 3044 6 56 2 46 53 2099 8 1582 24 58 312 48 4654 12 517 49 253 476 80 1458 318 1956 6137 122 3 6276 122 65 77 2 16 1 33 134 162 38 1 9208 7353 49 33 88 24 57 2 46 240 1284 833 6229 87 1842 230 49 42 1 7941 17 378 33 2167 5 24 3044 3 25 1722 1171 374 564 2 658 4 81 3 24 1 2069 201 6922 328 5 6088 1 9577 91 3523 2784 20 2 625 454 32 9 431 41 48 24 23 130 209 295 42 39 1319 2102 1439 1709 32 1319 2102 53 851 786 54 1956 473 10 142 183 8 512 1319 328 133 9 3 1 177 7 1 166 326 3 116 438 76\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 1 18 375 2326 22 89 7 8814 5 6508 17 28 4 1 80 631 6 1 233 1 9372 3 25 7368 22 34 7415 5 26 17 14 430 3692 4 2550 32 1 18 424 1786 23 130 24 89 126 1831 14 109 14 3247 2999 114 2 1115 2340 25 2745 5217 41 551 4 7 1 104 419 52 7 1 111 4 7422 1 67 98 1 344 4 1 201 55 49 27 621 7 112 15 5430 17 123 20 118 75 5 934 15 127 8309 3 25 2187 94 101 32 1 8514 41 25 49 27 6 340 2 3 25 5 1 9984 170 487 35 7 97 1175 1385 6168 4 2443 3 48 27 88 24 71 45 20 16 25 5808 5 26 2\n1\t7752 4 7197 1099 982 10 6 202 7 176 3 4943 3 1 233 11 10 114 20 2 625 1748 1570 32 2455 9496 6 2 7687 3 31 13 5019 6 3088 14 1 4872 31 9709 287 340 295 30 44 435 5 31 5512 1954 35 60 59 789 14 1 21 1026 2 3048 4 2579 3 1741 2629 60 271 140 136 15 1 7159 1274 21 6 167 1089 5 1 893 1636 3172 30 1 6349 3854 9 6 20 218 4058 7 9464 30 95 51 6 58 4282 1489 556 14 228 26 5207 10 629 5019 1080 266 2 423 9986 275 7 321 4 112 3 275 35 1071 110 1 80 4608 3 9167 799 255 49 5019 3 44 3504 1944 30 22 300 4665 4 583 3 23 190 24 5 841 16 2 45 23 22 20 1527 30 9 13 92 1666 5481 1421 16 1 1212 4 1 8480 3 3690 127 345 1098 51 56 6 146 5 414 3410 17 112 125 513 5535 186 1 259 63 90 31 3385 382 197 95 1257 13 9409 394 4\n0\t4 1 305 1723 8 179 11 10 2397 56 8 57 50 1916 1337 10 77 1 2418 4 104 7 1 16 910 3062 29 49 72 165 408 3 7425 7 1 4285 2290 269 77 194 72 214 5275 1573 5 239 82 160 3378 4597 987 256 7 146 646 4043 2 156 4 1 456 32 1 417 29 1 89 199 2618 2 103 4885 17 209 926 29 225 70 43 547 154 308 7 2 136 7 2 141 45 1 121 6 91 3 1 18 213 160 29 2 2050 673 1428 3 152 181 1476 8 63 10 47 3 70 2 156 1308 29 75 479 62 2933 17 8 63 59 186 37 1264 2826 168 485 36 1 171 61 246 4741 2589 4 9670 51 12 58 3312 16 62 2399 153 55 209 542 5 1 121 7 9 803 13 35 310 19 204 667 11 9 21 12 53 57 5 24 71 19 43 56 53 2310 136 33 61 133 1 108 42 1 80 1445 177 180 117 57 1 4 2034 87 20 99 41 751 9\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2619 324 4 6 2 1593 5 694 3171 55 29 2 8512 95 52 4 9 509 3 2288 203 7960 3 8 190 24 77 2 13 6170 308 316 1510 2 323 489 391 4 4929 1652 11 784 5 24 71 89 30 2 201 3 1176 47 4 4 62 2177 19 897 2 220 20 28 330 4 9 1378 89 95 356 3198 3688 9 6 28 4 1 138 4 25 124 608 42 254 5 241 11 51 22 527 3117 47 3617 13 92 119 1819 15 692 1626 4 2241 882 3 3 3448 7 2 222 4 16 53 3 286 10 128 999 5 2469 438 13 150 190 597 10 169 2 136 183 6720 1 234 4 9932 203 316 608 157 6 105 386 5 26 1019 133 36 476\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 1155 1 74 394 41 37 269 4 1 18 17 83 96 133 10 32 1 477 2893 89 95 9484 8 214 1 21 483 509 3 12 945 15 1 1014 8 320 3042 3 43 4 1 82 171 16 7 1485 871 17 33 34 945 204 664 5 2 46 904 1471 46 386 185 4 1 18 1208 1 12 38 14 1303 14 133 2756 2570 3 8 894 11 55 2 635 2893 71 30 133 1 566 4 1 1 389 18 12 2696 4 2 7198 1160 296 249 1199 187 79 7326 2376 95\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 75 8 230 38 1 4811 13 150 544 133 1 131 7 7 13 150 335 1 131 17 10 57 105 97 13 150 812 1 3233 217 5846 13 67 456 32 161 249 3434 33 55 3686 32 218 98 7 755 431 218 12 13 372 264 871 7 264 4916 6919 7062 6969 1 80 3045 403 490 258 49 60 262 992 7 755 13 92 3233 129 88 20 186 2 1399 17 98 33 57 9 103 635 634 47 5 44 3298 16 2 1399 30 126 19 4341 13 456 11 310 217 337 7 755 2351 5846 355 1 249 131 15 7623 217 100 455 32 10 316 94 656 1954 34 4 2 2585 372 1 755 431 27 6 755 431 27 6 755 562 217 23 22 47 115 13 217 5846 359 355 4109 56 1108 15 58 2751 59 7 2 249 4811 13 150 114 36 1 217 807 555 8900 88 24 2178 32 5850 217 57 2 2843 3772 1358 1217\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 165 1 305 46 772 3 145 2 900 3 1333 229 1 59 106 9 18 88 117 796 13 4550 362 2300 141 444 288 1111 3 60 196 2 169 163 4 56 1257 168 4 1159 36 2 3660 1146 2 1494 941 1146 169 2 604 4 1494 9536 966 60 123 100 131 1 3430 1817 72 118 32 44 52 1058 3648 13 92 18 554 6 167 855 41 3 78 52 288 36 101 89 16 1 249 68 28 16 1 1913 51 6 58 148 203 41 1560 2336 65 3 1 3637 22 396 13 92 80 240 185 6 229 1 182 73 8 1582 83 365 110 17 300 51 6 162 5 365 38 10 2799 17 29 225 23 83 70 1 182 23 54 26 3 10 93 255 78 68 28 54 24 13 5944 8 96 9 18 6 16\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 514 1651 846 3 206 17 300 2 5913 5 186 31 1365 16 2 67 11 229 57 126 3343 7 1 49 12 128 2793 11 42 183 571 94 688 36 8 1113 6 2 514 353 3 27 63 87 1817 49 27 693 1467 145 93 4723 31 5 4950 35 93 498 7 31 4368 1663 45 23 332 8171 19 1 6 1 28 38 1 259 109 77 25 3 52 68 1933 5 26 9 153 694 109 15 25 532 3 681 3298 3 5 70 126 142 25 155 27 151 31 15 1 975 4 2 5 8595 69 16 3334 3583 25 147 4472 1959 1 1151 5 209 5 15 2 2279 3 98 849 1826 355 122 142 1 3321 33 3235 65 371 17 385 1 111 236 43 3 3 34 188 1050 42 2 167 9283 269 3 4231 37 109 29 1 710 1009 1400 11 2 967 190 20 26 47 4 1 9119\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 812 8764 8602 468 812 9 108 3 5 90 10 2428 23 64 3042 2 40 71 242 5 26 2 8 56 173 820 8764 8 36 1740 2215 27 12 53 7 17 27 12 761 7 9 108 3 48 232 4 442 6 75 78 52 63 9 18 1 857 12 2317 145 531 20 9 4 484 17 8 339 820 9 108 45 23 175 2 53 1740 2215 141 139 64 13 1226 1916 214 9 18 16 29 96 646 6303 10 65 3 187 10 5 50 8933 16 8373 10 88 39 26 11 8 173 820 8764 3263 9594 41 11 8 173 820 3042 300 45 3042 247 7 110 8 143 539 308 7 1 108 8 539 29 235 439 45 33 57 620 355 8 228 24 3242 355 30 2561 198 151 79 2499\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 3619 6 2 304 17 7071 135 1 21 2334 2 46 240 176 29 1 5812 4 2 1827 231 536 7 685 1 545 31 2821 19 1 486 4 97 120 3 62 245 1 1273 4 127 120 6 396 16 1632 2 1284 833 7 1 67 6 170 6747 5 921 627 1830 15 2349 292 9 1103 6 3370 4369 7 1 111 11 8701 9147 1 67 15 168 32 1110 5 44 2113 2293 1 4663 551 4 15 1 644 82 120 151 10 832 16 2 545 5 78 796 7 44 1273 883 551 14 2 1 940 4 1 644 129 1273 151 10 832 5 390 4596 7 1 4742 6639 994 1 21 5093 2 84 934 4 1560 189 647 591 189 3 1 413 7 44 727 17 100 1435 9 1055 1204 1 545 1 570 156 168 22 1127 17 216 6 407 240 32 31 3427 3 1267 17 45 23 22 288 16 2 21 15 1406 41 1794 6 373 20 1 113 6626\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74 431 8 159 4 433 89 79 2564 8 179 48 6 9 43 81 35 3 70 4106 30 2 1598 17 42 20 36 458 42 237 52 68 62 6 58 1198 29 34 3 154 431 11 23 64 4 433 600 109 42 355 138 154 290 2 6071 1444 15 31 2790 3 258 1 2771 189 1 81 35 8668 15 239 82 183 33 207 1 148 13 252 251 3508 3 8 173 947 5 118 835 56 160 19 51 8 449 11 33 83 1276 1 226 358 767 7 1 251 1071 2 1709 47 4 394\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2054 180 713 3 180 17 8 128 83 70 9 259 1606 3493 32 1 2430 303 79 6162 11 18 38 1 3 1 28 38 1 2488 61 167 5 176 17 2130 7 1 67 9 18 38 3 6 39 1466 145 1096 40 31 4870 16 1414 158 17 8 4001 25 124 16 1 166 302 8 4001 1 124 4 9609 479 2213 5 1824 52 3950 11 5386 1 632 921 41 3437 147 22 34 541 3 58 7068 58 1234 4 2248 2932 3 1164 443 3407 63 8797 1 233 11 6 31 8385 638 2854 193 27 123 24 28 3320 125 27 1227 153 787 2685 1765 73 80 4 25 124 5800 19 1 1735 427 424 6 1269 1269 3164 16 5033 21\n1\t23 176 5769 1257 7 126 195 209 19 125 737 3 79 65 1 13 92 3216 7 4 9790 58 28 12 852 1 9681 2333 11 27 19 450 17 1 2439 61 39 4544 8 24 100 71 15 7371 267 1 111 8 12 7 9 7 698 1 398 85 50 3954 1977 37 78 32 1094 247 318 9219 49 8 159 1270 2223 1534 3 6185 409 11 267 12 3532 3 3 10 337 16 1 14 114 8 83 96 10 6 888 5 99 9 391 4 709 622 3 20 2499 10 6 202 2290 172 406 3 10 6 128 1 1340 1589 177 19 9713 13 8 472 116 374 8922 226 4514 3 8 256 1 19 1 5833 3 1 374 256 1 8922 155 7 1 3068 3 62 2177 7 1 1793 16 102 269 1408 374 83 87 36 11 98 33 544 62 2177 200 36 9 3 1 209 65 15 98 33 485 29 239 82 3 367 8 367 63 23 241 9 13 8844 10 316 3 26 3023 5 539 116 3404 13 47 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 290 1 18 23 63 99 45 317 288 16 2 3733 111 4 5983 43 333 7155 41 17 23 175 5 2704 116 5905 1785 87 20 947 95 1534 579 4 85 6 229 28 4 1 1003 888 3036 2521 517 1850 6 446 5 634 3 5 652 23 1434 8 87 20 773 1 4132 9 345 177 2591 79 2521 6743 28 40 5 86 2090 288 29 1 1409 9 21 1071 2 17 207 59 73 8 36 1922 105 91 16 849 27 93 460 7 8 96 145 1927 4001\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2929 44 473 7 217 4977 2371 7 1 1381 84 3 369 79 348 1259 9 6 20 1 426 4 18 11 23 149 154 6093 13 2609 44 766 7255 2278 1937 11 25 4740 5445 24 303 44 15 2 3144 6204 60 615 2 111 5 90 741 207 2401 2278 418 592 13 8413 1329 4 9 18 12 262 5 84 51 213 2 1065 799 2882 7 110 3 8 273 143 64 11 182 178 17 1441 23 3305 64 9 108 23 39 228 230 52 68 2 103 94 283 110 45 162 2684 10 228 7413 14 2 53 2869 38 1311 1962 17 4 611 236 2 163 52 5 10 68\n1\t287 3 1204 1 245 49 3 9891 549 577 2 4854 1280 1699 30 2 3902 5 2979 1 3 6771 19 5 352 552 42 2 2640 18 94 2616 13 418 47 15 3416 3 4092 3861 1073 591 30 4837 9824 35 6 169 695 205 27 3 9692 22 37 42 254 5 1088 66 28 5 176 29 2808 78 4 1 21 6 89 65 4 568 238 1102 66 22 46 7420 7 1 226 1871 1 67 432 46 1005 3 7 2 3765 13 40 1 1538 9692 6 1 8571 3 7346 14 650 664 5 25 2794 4 6 1 80 7586 919 292 28 25 2245 683 7 25 112 16 25 5542 25 255 140 1918 1 182 4 1 141 591 7 1 46 8918 570 5636 13 2 4620 3 1904 1651 1334 380 2 304 278 14 2 3373 2950 164 15 2 184 1127 2407 3 5613 197 78 1765 6847 1898 13 252 6 323 1 2059 1406 158 3144 7 15 53 505 1025 2 360 668 3168 3 43 304 1262 9000 174 28 32 11 1884 3002 496\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1932 876 44 331 4 5 9 4661 6219 66 6 174 8954 19 1 2791 6317 2836 5697 3 1932 22 323 7 121 5616 3 1 1541 6 20 311 17 1 59 7 1 21 255 32 6059 2190 7 25 692 185 14 1 9633 9798 783 278 63 59 26 1991 14 31 634 4 8860 19 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 39 219 9 21 316 3 2469 29 1 604 4 35 8950 10 14 39 147 717 2 84 158 28 11 270 86 85 5 10 863 588 542 5 160 125 1 1590 17 100 123 3 1391 6 3 5 157 68 80 124 81 35 8950 86 63 1861 8 12 2048 29 1 85 11 104 36 4 3 2720 8 338 1 61 2695 16 113 572 11 349 818 11 4 1 3 9 12 4603 301 571 16 28 7927 16 113 4852 655 194 8 96 622 50 2319\n0\t38 110 8 12 2337 5 841 10 3335 13 8 337 5 1 856 3 1 18 544 600 8 159 10 12 2 834 18 15 397 7036 2982 3 3 49 33 544 1 74 168 38 1 9072 8 4546 126 32 50 7500 29 408 4 13 92 18 3884 3 337 19 3 19 3 19 600 79 3 50 417 721 19 1 168 61 34 32 13 2718 61 46 46 945 600 14 8 96 8460 4 1 1131 6 32 9355 409 8 192 667 8460 600 73 43 4 1 168 8 143 8 24 2 507 11 8 311 143 320 2350 13 1627 475 48 9 18 56 6 600 6 2 4 264 32 1 264 4 9355 600 15 2 3585 4229 29 2802 657 1 3585 6 169 369 79 187 23 31 5821 49 33 131 1 9072 1323 295 32 1 532 600 1 6220 666 218 9072 22 20 36 423 2802 33 83 198 1876 5 62 1394 8 83 320 1 2544 911 600 17 9 6 75 10 6 2930 37 7 2 9 6 9355 16 374\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 83 96 95 18 4 1209 76 117 1620 2905 2169 17 2890 100 2510 9 18 12 53 17 20 14 53 14 1843 2 217 191 87 1112 702 27 440 358 1493 211 204 17 86 300 279 2 4 2 40 2 635 9 85 32 9098 53 10 1049 2 4 126 2824 5019 12 3879 27 123 25 754 48 86 404 1232 8 83 99 217 5019 57 43 53 10 12 1 393 36 1 3173 17 39 20 11 452 123 25 113 899 7 25 3987 36 5462 55 1024 1 570 393 7007 71 9950 1441 10 6 279 283 17 10 76 100 401 1 1766\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 31 30 205 2285 4456 3 29 31 4 1 688 9 21 289 630 4 1 1124 7 52 1134 3721 6610 1 1229 6 19 1 112 189 2652 706 3943 3650 3801 794 3 4439 6380 1212 794 15 1489 2267 5 15 62 4254 5 1 567 2063 458 292 2737 4 1 532 6 536 69 688 60 100 1 2129 906 218 2960 3697 40 3 6 276 36 42 1156 13 6685 1 2960 164 294 5110 3650 3351\n0\t486 7 3 40 8321 3 1527 2 569 1695 6 128 625 3 6 2665 19 44 3163 51 22 2 163 4 3 202 189 1 3298 3 5948 34 200 14 33 239 82 3 239 24 923 922 33 24 832 5 14 1 1433 271 19 341 8851 52 3 52 4434 390 3 52 3 52 5948 13 5 26 1 216 4 2 147 3392 10 12 1832 5 64 9 18 5 917 7 1 2544 166 6367 11 972 3923 40 71 1068 16 982 51 22 56 58 147 824 41 7832 9 18 4373 655 277 1048 5884 2685 623 59 370 19 120 253 2 3282 4 2449 4509 3 6774 9 899 40 1 1229 19 1 226 628 202 6852 1 74 272 14 1 18 271 4508 58 2807 1024 220 1 623 11 6 51 6 20 695 1 453 32 1 201 22 53 8 7663 193 10 6 433 516 34 1 3 521 7668 8 57 1750 11 51 54 26 147 1154 3 17 51 61 6809 5 51 22 138 1175 5 1017 1962 85 68 133 2938 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1339 420 284 11 9 21 6 377 5 26 2 1211 94 283 194 420 637 10 235 1 272 4 9 18 437 1 494 6 34 483 5026 3 97 4 1 748 384 5 26 3 480 34 1 1349 3 9782 893 8387 236 162 2944 38 9 1204 79 5 560 39 48 1 3106 9 177 6 1 462 804 88 24 71 1 3397 16 2 299 1623 4210 1211 1670 1181 1979 5 4543 3 3 16 86 221 45 8 175 458 646 139 751 2 2278 2376\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 646 26 6485 3 5 1 2115 9 21 6 20 53 29 513 1 21 6931 185 4 79 1595 1 505 1252 441 593 3 202 34 4 1 5826 5819 40 11 60 63 3603 14 60 12 2 298 272 4 1060 212 3555 37 60 130 24 5503 9 18 15 2 764 2749 245 1 185 4 79 214 9 21 5 26 46 695 45 23 63 995 38 75 1 397 538 424 3 45 23 149 716 722 98 23 130 26 34 1907 3 16 137 4 23 35 173 70 142 116 1333 116 6626 50 2558 583 8983 3 8 1309 2 1551 4885 55 977 59 2 535 47 4 73 14 2 141 10 56 123\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21 1762 612 521 94 1 3156 218 3 218 9415 198 3557 3331 124 1513 26 421 2349 27 12 372 30 264 7 698 27 12 9 418 106 82 5925 124 597 1237 37 1 5731 5480 2266 6 15 2 2760 4 168 927 4 3 1846 121 6295 7023 5 3331 190 24 928 17 27 384 5 36 712 14 6316 16 25\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 39 271 200 7 3 1 545 123 20 118 106 33 2620 29 74 8 88 26 1609 797 18 490 17 10 39 4089 19 3 926 3 963 23 83 118 835 160 778 1 466 633 6 2 53 651 3 262 44 280 322 3 1 3413 6 5840 17 94 2 222 23 83 56 474 48 5547 73 9 21 39 4089 778 1152 1581 9 88 24 590 47 2 163 3606 13 134 193 11 1 466 633 3 3413 76 24 2 53 895 1929 4 126 600 17 76 33 320 9 158 16 253 126 41 16 101 1 21 33 2580 33 117 1001\n0\t171 7 873 6 174 177 115 13 1580 811 36 2 4605 324 4 2 687 8227 8095 3 6 1002 548 19 11 2835 42 5 19 1 2441 73 4 1 8583 1817 4 1 7340 7 9 3060 1 119 2027 1 9931 4 2 754 1648 30 6796 608 27 12 1576 5 8065 411 7 1 5386 707 30 5213 66 1 3781 3443 22 101 1181 1979 5 877 4 810 5154 189 1 3226 17 1 80 1474 168 22 407 1 19 8342 7909 608 7 698 403 3 142 413 7 5997 4982 3 32 25 191 1416 1810 14 1 4 25 121 1 82 7 1 1249 6 52 7 25 1656 608 94 399 27 57 71 1 9885 7 1 1982 249 251 3 18 4 1 40 2 2088 19 25 5065 3 6 30 2 19 1 82 1737 6 30 31 5925 608 2190 245 741 65 355 2 3532 934 16 44 3117 395 4663 1568 6 963 77 2 8605 4 2960 3 6 738 1 3107 23 117 3688 2 274 4 9 28 32 2152 3180 19 9 46\n0\t29 225 8 419 10 2 47 4 394 7 50 1363 29 162 89 79 539 37 8 1 4129 2 898 45 10 12 45 1074 5 54 1364 2 918 16 113 18 45 33 61 13 2719 5 1 640 9 18 6 38 1 8610 506 66 6 514 17 2109 88 24 248 828 1 357 485 1233 17 207 10 8 57 5 884 890 80 4 10 73 1 106 1466 8 36 506 104 3 55 45 33 4206 33 88 128 70 43 797 145 20 2 4488 18 3083 17 241 79 27 54 24 383 411 45 114 64 476 1140 16 17 236 162 53 5 134 38 194 73 10 276 36 275 472 2 8122 3 21 177 4 5318 4666 5031 116 104 22 58 1534 19 50 1307 4 210 104 117 9 472 1 13 4956 1140 8 339 1346 1 51 12 6861 17 11 12 1 113 8 7544 195 45 23 83 438 145 160 5 77 2 4406 3 899 155 3 3194 3 9395 79 4 75 91 9 18 1728 79 16 1233 20 16 157\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 2 84 21 382 32 1 3 109 7004 51 22 46 1005 168 7 9 21 15 294 4 3 1076 1 285 4170 101 301 3355 3 15 59 28 49 1712 12 446 5 139 408 94 101 8394 15 2 586 25 922 39 544 5 905 15 25 231 3 4596 282 4699 3904 419 31 1485 607 280 14 1072 35 114 297 5 352 25 2640 1712 70 25 157 371 702 51 6 100 2 528 9947 5 392 3 1572 20 995 34 1 2950 8394 1383 7 8945 32 34 1 2283 3 257 1124 6058\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6841 4 1 534 6 39 458 2 2940 4 1816 447 203 3 267 34 77 2 402 757 315 3 15 2 2743 298 315 9 18 6 273 5 4621 95 325 4 10 270 23 3 923 15 4754 3 1052 77 576 5089 44 13 92 18 270 23 19 2 2062 15 4754 14 60 271 32 249 203 15 1 5 44 408 569 4 3319 5 2635 44 32 2 5212 84 106 60 3661 2 3092 2 616 9377 2 1119 84 1848 35 181 5 26 94 44 16 52 68 44 53 2 4 298 416 374 11 1279 112 1159 3 2 569 2870 35 22 76 87 235 5 70 44 47 4 3092 55 45 10 907 4058 44 29 1 99 4754 6331 1 2517 1 925 44 1119 84 1848 3 44 5468 29 1 35 24 58 232 911 16 1159 7 4754 6841 4 1 13 858 4754 54 134 1352 4810 4353 26 2 7 53 177 8 143 134 9927 26 2\n1\t5 86 673 4691 17 308 1 119 4492 10 1664 84 3971 1560 3 2 3507 4 3102 293 2170 1 21 202 1135 270 334 7 28 625 1972 3 59 4080 723 807 1181 1208 2 710 1641 3611 15 723 1 147 6206 6 2 4998 5 87 85 16 1 3797 3 643 25 379 3 98 236 2 1184 3 2 3073 487 5 528 1 1164 33 149 31 1980 1208 1 2282 4 62 5 2 1415 3873 7 1 35 7 315 1449 3 3018 1175 5 9210 1 723 8815 905 5 6264 62 221 7506 1439 712 1 1213 4 1 1158 59 5 853 1 6 146 23 1513 1378 1994 4 85 5 1 129 4 1 723 66 2171 2439 7 3 3240 5447 9769 17 25 1318 16 9 34 390 935 7 1 3067 2281 49 1 347 1283 498 47 5 26 43 574 4 6 2 534 158 15 4 7246 1560 3 375 2733 1733 38 423 7847 99 10 183 43 3326 296 397 1404 1036 5 1015 10 15 723 2652 1410 171 7 1 3784 871 4 5121\n0\t25 59 9098 7 9 6 25 13 92 388 11 8 159 9 21 19 6 11 1 21 6 4668 1 541 4 3 207 28 4 1 80 4282 1035 5 2373 2 21 180 117 575 51 6 162 55 1056 2696 4 1 84 203 846 7 9 4801 3 1 302 16 11 54 1030 5 26 73 4 462 7691 5 1 6427 158 69 66 6 2 163 828 1 21 123 5576 32 2 7864 1101 2434 3 1 868 6 243 452 906 245 6795 40 107 1179 5 5937 154 178 7 10 69 3 37 1 833 1108 432 3182 1 119 266 47 7 2 56 509 744 3 80 4 1 168 311 3970 1 1272 242 5 149 188 827 41 1 752 44 125 44 231 8679 9 18 12 89 16 1101 2534 3 37 42 20 2065 11 42 34 243 236 2 103 222 4 840 3 2 2232 980 15 17 9 213 1 6795 72 34 118 3 1629 1952 9 21 6 483 1669 3 20 2 53 5571 4 8094 20 279 2159 1013 317 2 6795\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 338 1 2319 804 5 9 21 66 6 48 1699 79 5 2955 10 47 17 1 465 8 1108 214 6 11 28 167 78 789 835 160 5 780 740 1 74 269 1394 1 76 209 32 516 1 4761 3 186 125 13 677 6 58 148 1298 801 6 600 17 1 570 3673 153 90 2 84 934 4 356 463 6229 63 60 26 15 3 1401 16 1 212 158 45 444 31 510 9667 32 660 1 13 1 168 1 61 4290 49 33 74 1478 3 1 701 6 93 3910 5840 17 1391 9 181 5 26 2 21 7 1776 4 2 67 41 2 52 2316 1252 1190 655 1190 3 125 1 401 782 478 2217 16 269 123 20 56 757 194 7 233 10 196 169 4320\n1\t1 566 6328 6 1582 20 34 11 1502 16 1 80 1871 34 193 5 86 1365 10 6 1195 3 1002 5222 17 1 306 2838 6 1 931 1933 516 1 1 570 1146 136 20 2 8670 4 1563 41 566 6 28 4 1 80 1127 570 2026 8 24 117 1586 3 180 107 169 2 156 1563 1792 4121 13 150 1331 1 1003 3608 4 704 41 20 28 76 70 78 47 4 1238 6912 1238 6 704 41 20 23 63 4329 15 1 807 34 4 126 22 407 43 4 1 52 3965 120 28 6 1458 5 64 7 2 21 4 95 6222 17 51 12 146 46 423 38 34 4 126 11 8 339 352 17 26 1366 5 3 56 230 16 949 591 5657 8 130 134 11 8 894 80 81 76 36 1 21 14 78 14 8 114 311 73 8 830 11 80 81 76 20 36 41 474 38 1 120 7 1 166 744 17 8 128 354 10 496 34 1 4272 10 6 323 2 1768 866 3 21 45 23 187 10 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9921 4 1 474 4398 217 62 45 23 159 1 215 21 468 1682 2 1 22 3172 15 1 474 243 68 2659 126 3513 618 8 24 58 922 15 458 5 2055 1 124 14 3613 1 8040 22 5675 3 42 299 133 126 309 3 50 1522 6 683 1 1518 6 2 7906 5703 8 88 15 1 277 537 220 8 12 100 53 29 2225 1497 1702 6 313 14 1 759 22 1316 3 4884 45 23 24 31 1089 3754 112 1 6376 41 381 1 1571 9 6 20 5 26 8090\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 181 36 2 53 3742 1312 8041 6682 3 294 7 2 3767 2414 1211 106 63 23 139 99 1 141 3 468 149 3335 13 659 4845 8041 1 4903 6 244 20 403 1 84 3416 244 587 3410 32 104 36 218 17 378 266 2 426 4 129 11 153 916 15 58 28 5 309 142 2787 6 1634 6 1 59 55 7087 211 13 2044 401 10 1237 1 119 6 167 2317 8 173 134 75 78 4 10 190 24 71 17 1 120 291 5 551 1 4631 222 4 1205 1821 33 140 147 3820 20 403 235 2401 3 162 695 20 59 6 1 212 804 301 5999 10 181 5 187 1 859 11 81 35 83 414 7 147 887 662 46 2 833 2494 533 1 682 13 659 378 4 283 490 139 760 1 215 8644\n1\t4 1 886 8815 6 2 148 430 2032 3641 651 5745 1510 2 5185 9493 3 4217 473 14 2 35 649 2 2124 1399 38 2660 4 9934 3 4829 151 44 6778 21 2289 14 1184 3 1 1752 123 2 9294 1462 4 44 8002 6214 1438 280 32 2 6761 901 4 1 115 13 3422 9 572 123 1917 1 909 1234 4 5322 3536 1890 3 2504 42 128 30 58 907 2 3705 3 8976 391 4 3670 1 18 46 3910 4936 1 97 1175 7 66 413 7679 415 3 2474 1 5534 11 415 63 3038 95 45 33 1301 371 77 2 526 37 33 63 543 62 14 28 5769 1076 593 255 140 15 2 4427 9569 4 1733 3 2038 529 4 3445 423 7847 6850 205 8921 861 3 294 9711 6587 868 22 4933 19 1 319 2332 3042 7 1 489 2070 865 4 1 40 2 222 14 2 1277 35 40 25 606 2632 30 2 4188 4 1641 49 27 3671 29 2 3498 2276 5 333 1 3 7925 6133 14 332 3785 956 16 2032 7183 18\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 332 3276 135 3 10 213 211 29 513 466 129 262 30 6 46 3182 30 3 376 2283 6 39 908 8741 13 6 1 59 53 96 38 9 108 27 130 1313 25 706 3 899 5 3853 368 63 20 149 31 353 15 25 82 68 9 18 6 2 13 6254 6 2 709 846 3 9 18 6 25 210 428 216 5 9 13 4 6 174 1069 4 9 351 4 1686 353 93 24 43 353 35 266 1 277 4766 40 58 860 48 37 1218\n1\t78 1 166 699 1 5194 178 49 6099 2486 11 25 361 1 287 27 1371 361 6 160 5 2459 25 711 745 6 1 644 2049 665 4 205 7808 3 42 2336 65 5 37 109 30 11 10 255 47 49 1181 1578 3 7808 270 199 32 51 15 25 1528 4142 13 92 82 627 4 1 21 6 4977 14 3232 8 114 20 118 8295 1196 1 9598 17 51 12 146 38 44 453 14 2083 3 2547 532 11 39 44 112 16 6099 3 1829 1076 16 122 39 181 37 1321 3 7574 3 60 2 163 4 3643 340 44 13 92 931 4134 4 1 21 340 1 67 6 1317 436 11 12 185 4 1 5320 4 242 5 932 2 21 11 811 1 102 130 26 17 8 830 42 5872 5 348 2 67 11 811 3 28 11 1745 227 1005 529 5 186 257 1676 19 2 7892 1 1412 5 1 1967 12 373 1 2547 28 16 3773 303 3874 1271 16 730 361 33 83 321 5 26 16 1005 13 13 50 2819 16\n0\t384 5 90 356 29 1 85 17 56 1 1186 1 166 63 26 367 16 6651 3 25 9510 29 1 85 395 7836 33 61 46 986 3 57 227 11 1 1210 2371 126 15 8637 4928 3655 3 745 7 9 135 1891 45 23 143 414 29 11 85 2887 12 109 183 50 23 560 144 261 338 9 426 4 94 399 3 25 1301 22 862 4112 3 62 623 6 2153 46 3861 3 4041 8 339 820 62 4931 779 114 8 1116 11 51 61 39 105 97 668 2139 7 1 135 73 4 127 1 84 607 201 12 340 2 155 3104 3 596 4 127 171 76 229 26 5013 13 92 21 2027 3 1 1301 588 5 2 3630 106 2 170 886 3 44 5532 3518 7408 308 1057 1 4612 6 7831 47 3 678 9152 8834 10 7 43 1035 19 157 3 2 3431 42 34 262 16 42 56 20 2 203 18 480 1 13 3616 42 7360 1033 29 1293 14 2 3655 3 4592 1787 8 273 343 5389 246 5 99 3 25\n0\t113 6804 14 7 5972 712 31 7195 4 494 5 2 1384 4 1468 3 17 2394 2181 6 58 1 21 6 2050 673 3 4320 17 660 458 8 311 57 58 2771 15 41 3643 16 95 4 1 807 378 8 343 59 9138 16 9 7742 4 7 2 3132 16 2 5998 4 3 1 67 36 2 8835 7 1 5149 307 2656 7 4732 3 1587 189 307 6 3 1770 5 149 593 41 2308 41 1034 3 10 39 271 19 3 19 5 1 272 106 23 39 175 5 5055 34 4 450 42 100 38 42 59 38 10 6 162 52 68 2 1872 589 556 5 31 1809 660 1 1514 5 2394 2181 2167 5 90 120 37 7 730 72 230 303 689 3 16 11 302 8 214 9 18 2050 1537 3 8 64 48 27 12 160 16 17 25 19 25 859 140 3 21 4461 10 576 1 272 4 8 496 354 9 28 45 317 507 2 103 105 749 3 321 146 5 3006 23 4 2295 3823 987 39 4294 9 21 100\n0\t28 4 1 1421 827 3 33 22 1699 30 28 4 1 80 509 2669 2233 218 2740 33 22 1699 30 275 9640 2 2 3 2 125 25 4843 15 2 2484 672 11 2805 440 5 478 1 361 31 5366 2 2066 361 22 311 13 2663 1 3573 709 347 22 10 6 254 5 78 1151 189 3 1660 480 1 60 3927 2061 58 7953 3466 6 1031 7 1 817 4906 1 8319 6 2 3170 603 80 731 427 6 33 22 5398 16 2 3627 640 1231 15 6196 265 3 3161 397 1 3145 4831 2 7212 9522 408 7 95 1 137 4 2 772 1 6 31 1400 2805 7 321 4 395 1759 22 721 6276 65 7 2 13 11 1 1132 339 52 991 77 1749 2 3765 6610 136 1 4 1 102 7769 19 305 6 2 1069 16 95 686 28 130 20 26 6038 30 1 313 19 1 7772 33 1708 52 4 1 4602 1646 4 1 709 347 68 34 1194 4 1982 3 2549 13 2719 16 1 53 1949 361 9 6 20 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6936 315 267 15 2 804 3 91 7121 13 4751 9 54 24 1066 14 2 4921 6194 41 3493 32 1 2541 17 30 1 226 5818 23 39 175 10 5 70 5 86 961 393 3 26 248 15 10\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5457 1802 153 56 24 95 731 42 128 279 4498 2393 3701 266 2913 242 5 352 1984 735 7 112 15 9362 3766 229 1 1340 178 6 49 1010 3 417 2013 3 2453 328 5 90 1984 176 36 2 27 741 65 288 36 2 710 13 103 4 1 18 6 5054 17 207 20 1 2115 42 20 1576 14 235 571 2 822 1073 169 1 2738 4 80 754 18 32 395 2 18 38 212 157 54 24 5 1229 20 59 19 25 4296 17 93 25 1105 5845 75 27 1059 2 3674 19 4 1 3555 3 310 47 421 3720 4333 2887 165 5 1 272 106 1 3877 721 2 19 13 1627 1441 9 28 6 93 993 1638 1347 1403 1539 3\n1\t26 2 439 177 11 511 139 576 2 1823 2351 1 7405 40 390 2 3283 3 4786 14 28 4 1 700 756 289 4 34 290 115 13 266 1 147 9991 1004 6763 1347 4927 30 2 4410 1440 5637 6 1016 14 1 2083 897 1347 6 3439 14 2 35 6 396 46 695 115 13 2120 1 131 40 396 71 16 1 1332 5108 4 14 3 5 31 4295 9 6 8 63 64 37 97 32 1 880 1 1103 4 627 231 5308 112 3 88 9 26 1124 7 2 756 131 38 7002 6850 82 4058 1636 22 8593 132 14 1055 3 2310 966 9 6 58 6978 1065 131 38 1360 559 3 3151 10 40 37 78 1129 97 4 1 1636 72 64 19 1 131 22 46 3015 115 13 92 523 66 40 71 167 78 84 40 37 3505 1955 1636 3 1180 5 126 740 1 4280 4322 66 151 1 212 177 52 8463 13 191 139 5 638 1430 35 40 1242 31 313 756 3369 3 5 578 16 80 1618 3 1223 115 13 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 37 8 179 420 1337 7 2 156 911 38 962 20 2 91 111 5 1017 2 342 4 719 45 23 175 5 64 122 7 25 361 42 631 27 65 16 9 280 3 27 276 167 7222 53 7 126 361 41 5067 236 31 4559 980 7 2 7909 106 27 40 5 4311 224 5 25 236 2 327 222 106 27 40 5 1430 94 773 7 1 15 59 25 1191 125 25 962 6 3321 2 103 19 1 9526 3453 17 27 40 2 4358 5567 3507 4 2 896 236 2 799 49 244 355 47 4 2023 11 45 23 9457 1 238 29 39 1 260 799 23 63 64 1 212 45 317 9470 5 87 814 3 209 926 350 4 1 81 35 2497 5 99 2 18 38 2875 413 19 2 2620 420 39 36 1479 2884 6659 16 25 3757 1617 2270 8010 63 962 3106 45 8\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 830 317 2 2010 7 1 155 4 2 2642 856 15 116 5657 75 91 54 2 18 24 5 1718 7 639 11 23 54 230 4565 5 597 1 856 3 522 408 183 10 9 18 6 11 565 3181 104 396 390 37 91 11 479 9 18 6 660 11 1039 4 10 6 2050 565 565\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 418 47 14 2631 7 9 141 741 7 3 1 18 140 3572 15 1 435 3 1 170 585 7 2 606 125 7642 1 2495 7160 3 157 2576 5 236 56 58 935 10 34 1583 65 7 1 182 14 4458 839 4 2767 6802 4 500 16 137 942 7 2308 9 18 1664 2 5567 3 4620 197 101 38 1 42 2 588 4 717 67 16 1 170 2375 25 3 7893 1109 1573 5 16 5381 52 1175 4 500\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 59 131 8 24 219 220 144 114 33 1947 10 12 1 59 131 11 2151 1 3593 4 3 89 23 230 36 23 22 2 185 4 10 7238 1 225 33 130 87 6 1042 10 19 115 13 150 5391 47 696 4205 17 162 40 209 4619 1 201 57 1115 1300 3 8 485 890 5 239 431 15 78 115 13 3828 89 2 184 2082 30 3769 11 880 45 261 40 95 6492 3260 106 8 63 6322 2 305 4 2672 9211 786 2192 2 156 456 675\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6939 59 12 9 18 138 68 34 1 570 1022 4 17 10 12 138 68 95 18 89 16 249 8 24 117 13 29 1 8 64 11 59 28 346 412 18 40 89 4360 75 1 5922 3686 8373 8 96 10 6 85 5 11 526 5 13 150 76 920 11 1 215 251 57 375 289 11 61 138 68 490 17 8 143 1960 8 39 336 101 446 5 2645 1 234 4 1 8114\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 1940 630 1 80 892 18 8 24 117 575 477 15 1 723 101 1172 142 30 62 7161 5 1383 2 1511 6 274 11 2236 34 533 9 158 3 10 123 20 369 65 16 2 13 777 1360 242 5 1431 9 4692 1 623 824 22 37 1780 19 3 2335 11 655 2 74 176 10 784 14 162 52 68 2 439 1575 1886 6468 1211 17 10 6 850 37 78 52 68 5920 1684 32 1 3443 4 137 2104 125 29 1341 65 1 1748 2601 65 2 2441 3 541 11 8 24 100 220 107 30 95 4 1 5 209 47 4 368 7 172 3186 676 1 21 6 37 331 4 1097 11 23 228 497 11 1 1063 61 2 342 4 2972 349 2449 64 9 18 45 23 112 5 634 2 2073\n1\t1214 104 61 37 986 11 1214 756 289 1417 9 12 2 1165 7 85 7 257 913 66 16 2 6180 19 257 221 9480 1593 16 1 182 1122 4 1 7686 3 29 1 14 9805 7 9 1125 2 9013 11 1838 22 195 2926 1 4 1 13 92 4798 131 12 986 16 37 97 264 8250 650 19 3110 4 1 233 11 1 518 8383 3 362 7223 57 20 286 3573 1 4 102 264 3283 66 12 1578 5 4760 15 257 1 4 7 1 2269 2063 66 285 1 2289 4 12 2 184 302 16 1 3989 7 1 3989 406 1166 57 3573 2 6917 3064 2967 756 1 201 5 726 3 1 8608 1033 4 2 16 1 1603 338 3 2 163 4 1838 400 336 9869 19 3234 3 231 1353 6 2 430 576 85 4 97 8702 3 1 756 131 12 425 16 11 2990 4 8 338 1 131 2 3600 3 80 81 8 118 36 10 14 50 389 231 336 9 131 12 28 4 1 34 85 296 3156 7 1 622 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 51 6 58 302 5 64 9 108 2 53 119 312 6 2970 46 8606 7 1 750 4 1 18 297 1714 3 32 51 19 162 151 78 1821 1 302 16 1 4571 22 20 89 6566 1 121 6 1319 1788 515 693 2 138 2254 27 12 313 7 7 1 17 204 27 6 1634 32 40 5 720 44 129 55 137 4 23 35 335 2270 447 3 882 76 26 1558 55 193 1 18 12 5298 1507 66 6 105 386 16 2 53 18 2266 105 223 16 9 22 58 7982 168 7 1 305 66 907 33 100 2705 5 2222 7 1 1156 546 5 1 4720 13 2687 1017 1 85 19 9 461\n0\t98 1 1213 795 276 5685 7264 3 102 2830 328 254 5 7643 1 21 30 101 1574 17 7 29 2532 1 120 4 277 624 130 26 89 7 639 5 652 43 240 824 17 1547 204 105 34 4 126 784 137 35 7495 5077 3 55 2703 7 169 696 7008 1 580 4037 7 1 119 6 48 89 1 2689 359 1 277 624 29 25 166 408 4851 11 33 76 100 70 5 118 38 239 39 5 87 43 2241 48 1 166 88 26 248 7 3174 4 82 3635 2091 37 78 16 58 302 6 20 146 410 76 17 84 3569 131 3 198 380 132 124 2 84 195 16 137 35 637 10 2 1073 8 637 10 2 1526 6280 356 4 623 4 132 616 160 410 6 1416 881 3 5434 5 1 4295 11 33 22 5 2 1021 3 574 4 2106 106 10 6 20 1 120 11 33 539 29 17 243 29 730 3 29 62 221 11 176 75 6232 72 24 390 11 7 639 5 539 72 24 5 2698 15 132\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2927 223 414 1 367 745 28 4 1 80 4628 3 2759 7896 29 1 226 5201 9578 21 1672 66 165 5 1 957 6208 3 270 334 7 1 9 349 1 593 6387 337 5 8 165 5 64 10 9 3400 7 29 1 616 6 434 17 128 46 21 649 7 2 1683 2352 75 8199 1342 7287 6 2 67 1685 30 2 3602 2592 653 5 1 1245 3 3693 472 49 636 5 5014 2 2358 9744 9 6 5200 7 9641 14 72 22 48 999 5 87 6 5 15 156 8252 17 2159 2 163 4 1093 2717 3 623 1 3283 7 2 1342 11 1678 415 29 2 6474 3432 1 6956 4 1 7751 432 1 21 40 2 749 769 94 34 73 968 271 5 1 234 48 8 3281 80 12 1 9198 1 312 516 9 135 8 54 26 46 942 5 64 82 124 11 61 5200 7 9641 14 530 8 497 11 27 63 26 179 14 31\n0\t22 7967 19 1 82 1737 1 4113 463 41 78 4 1 119 151 103 356 1137 4 2 3378 629 37 11 63 51 6 924 95 668 868 5 1271 2787 39 4 759 533 1 4692 3 1 18 270 31 594 5 152 70 7369 11 226 465 6 1 80 4 1 1597 938 599 85 6 314 5 4382 274 65 1 807 816 6 2 327 259 4667 1 1377 17 27 314 5 1992 35 6 195 4667 2362 1 17 444 544 2 733 1 282 35 2898 105 97 2362 6 2 56 184 2142 1143 5 309 3758 3 1312 217 5204 36 5 24 2 163 4 4470 691 11 88 24 728 71 3691 15 7 910 269 41 37 4089 19 3 926 5 1 272 106 1 3054 2563 42 167 303 79 288 16 1 884 890 11 844 199 15 350 31 594 4 2 393 3 2 4001 4 8688 35 8 1844 16 1 212 2908 1013 23 63 70 9 19 43 426 4 56 24 107 297 422 7 1 256 10 155 19 1 4892 3 359\n0\t8 338 106 12 4298 15 9 158 27 57 2 1975 441 17 1 570 3225 39 4104 9 21 5 88 24 2052 9 21 45 27 54 24 25 647 136 65 25 804 3 471 8 96 50 790 1646 4 9 21 54 24 1241 45 39 127 102 641 8837 61 1608 75 8 59 555 8 88 85 2203 155 5 1 397 4 9 21 5 131 1 5437 4 25 13 3616 16 1 74 85 341 229 9 12 2 21 11 8 191 134 1169 945 437 32 1 6905 567 5 1 2526 8 39 343 11 1200 664 5 3 4489 6063 6 146 11 8 143 798 1704 17 144 54 261 4517 9 21 517 11 10 12 31 358 1 462 612 7 2360 3 144 54 23 334 19 1 1203 1311 331 109 11 60 247 2844 9 21 29 513 8 241 11 32 1 74 938 11 2021 19 50 305 9388 9 21 12 7 136 8 76 7301 25 7347 297 422 12 109 2255 1 952 4 8 481 1379 9 21 5 13 5005 47 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 7141 3 257 493 219 9 6329 45 1333 48 2890 2942 637 194 3 72 1023 15 1 226 3292 17 72 61 439 3 969 1 1589 1689 72 179 10 56 12 38 37 72 969 592 13 2718 812 10 56 37 87 20 751 9 177 33 637 2 13 2718 54 1110 194 17 83 58 45 2025 54 175 9 439 682 13 8420 3 174 1689 1 1513 637 10 218 2247 4 33 130 4 404 10 4 13 872 9 18 6 1274 9 130 20 4 55 71 20 13 2718 96 11 54 26 2826 25 671 47 1094 29 9 439 682 13 252 6 2 18 11 54 24 71 248 30 2 13 22 100 1927 390 162 73 9 2803\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6456 1 121 9164 1 263 9164 3 1 18 790 6456 51 61 102 7 1 18 11 61 20 1619 3 1 545 57 5 87 2 222 4 216 5 842 47 48 12 13 1964 20 667 11 10 693 5 26 827 17 23 1283 149 188 2267 3 101 367 14 45 23 24 1 4631 2481 14 5 48 33 2620 13 92 1332 708 38 1 5803 1 410 6 100 620 75 60 55 789 235 38 1 259 3 75 27 6 3353 77 44 2295 1 545 40 4301 5839 5 1 6413 469 14 2593 13 3926 34 4 2 2585 51 6 2 178 15 2 658 4 559 65 3 2863 2962 3 11 6 34 23 64 183 3005 155 5 1 82 1192 58 2651 38 1 2962 3 1 2104 15 2350 13 2718 419 10 2 535 73 72 143 230 36 72 405 257 85 1877 10 12 299 5 1 18 136 133 194 37 10 29 225 419 199 2 222 4 2815\n1\t2212 17 8 332 336 1 8699 203 141 10 12 37 297 38 10 12 51 61 546 11 61 2831 3484 46 211 301 6402 3 1119 3 39 908 9167 395 74 8 96 1 389 201 114 2 84 2340 258 1 277 638 8111 7081 6094 4 912 8 3 165 7178 285 1 1673 4 9 18 69 46 327 3 13 150 192 46 1415 4 81 3039 9 18 2703 9 18 424 7 58 744 2 2703 7 698 9 21 1225 3557 200 10 152 151 2703 12 93 20 1 59 18 5 865 2 8160 506 7 110 1335 503 17 10 276 36 2703 12 93 2 105 2848 1 3 97 82 782 104 93 2450 8160 8 93 96 11 1 7575 4 1 506 6 3711 42 37 678 5 64 2 4502 543 403 34 4 127 586 2508 174 7575 395 5468 151 111 16 2 885 1 393 380 79 6830 154 85 8 64 814 55 45 23 143 36 10 1 74 387 99 316 3 187 10 174 13 359 31 1128 47 16 50 147 5272 588\n1\t3371 9 147 23 70 78 52 441 129 1273 4 116 4903 1195 3 2 4275 548 9 67 6 2 222 78 1534 68 86 17 37 14 9 324 2995 2 148 857 3 20 39 238 3 1128 136 10 1008 205 238 3 1128 10 93 1 2082 89 7 1 324 30 6852 34 371 3 160 155 5 1 2732 16 253 16 2 4275 109 69 179 69 47 640 3 43 327 115 13 2719 9 525 6 20 1 34 47 11 6 7326 779 6 10 2 345 525 5 26 1943 9 2451 6 119 3 129 3424 3 6 2 304 5024 4 1 829 19 1972 7 1270 7283 1 410 6 5080 304 1623 3 43 327 1131 5 3599 15 1 453 3 857 3127 13 400 619 79 15 9 628 14 8 24 100 71 28 5 5 25 7 698 8 24 5085 80 4 25 216 14 2 1392 318 9 8 449 9 6 52 2 147 6104 4 860 3 364 1 11 10 181 5 1142 115 13 252 324 5933 2 19 1 4146 13 92\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 12 7 16 37 223 11 10 726 2 46 7653 94 1 5150 966 10 57 297 5 26 2 84 391 4 17 1391 1082 7 154 42 2 1722 91 1073 2 1526 203 141 2 1054 2944 803 13 92 358 4447 305 1680 2 1612 15 19 966 14 109 14 31 8562 3634 15 1 2254 16 137 35 24 455 38 10 17 100 107 194 1 8717 76 291 885 318 28 152 1148 1 135 4447 755 1263 1 2619 158 955 6121 5 706 17 15 53 1117 3266 4447 358 1263 1 2024 9919 7 31 489 7 13 1118 63 8 134 38 1 697 2 874 5930 4 1 54 24 71 52 1535 3\n1\t912 72 3658 2159 20 1 761 635 41 2866 72 34 175 5 24 2 1863 5 5275 16 2 4336 26 446 5 87 1034 72 35 3457 45 42 4 611 1 1813 1637 22 9306 223 678 7432 3 1213 4586 34 7622 5 1 3535 1 333 4 223 3 154 82 59 476 3 83 55 70 79 544 19 11 6460 8 83 118 45 1 21 54 26 350 14 782 197 11 8850 86 1080 6638 1 1 3 1 389 21 7395 13 150 118 800 153 36 9 158 17 4625 19 616 6 162 5 1395 14 84 4 2 821 846 27 190 1718 25 8228 22 2007 3 25 525 29 1177 6 138 303 9 6 20 2 46 2915 347 8584 17 10 153 321 5 1718 3 10 56 185 4 1 203 4 1 21 6 11 1 545 153 24 1 347 5 735 155 236 58 2732 3531 9135 6529 1 1567 5 1 410 55 1129 45 59 16 458 9 6 28 4 1 80 4628 124 7 95 1818 3 42 165 297 422 19 401 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 320 133 9 7 1 5725 69 98 8 24 39 937 4863 2 342 4 767 32 257 1228 13 3371 2 670 1099 349 8 24 209 5 174 7230 80 4 1 7 9 251 69 43 29 1 2658 4 869 36 4 2047 69 22 223 881 17 62 74 874 6751 76 414 3 5 1736 1464 34 22 19 2096 675 115 13 150 63 320 1 2207 3634 7 1 115 13 252 6 323 2 2067 3 8 241 1 1840 4 9 251 12 30 2201 3120 16 9 216 69 109 13 127 156 767 32 1 4189 151 79 175 5 751 1 13 252 6 1 59 8 24 340 95 753 17 8 24 2144 36 2 514 5813 4 10 6 52 3281 15 2 103\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2773 3169 15 2 3 521 2486 11 25 1848 6 588 5 64 147 379 3 8048 1 465 424 33 83 791 89 126 7685 814 42 65 5 122 3 25 7760 5 2 886 15 2 1248 35 76 1023 5 8595 14 25 5950 13 252 213 2 591 979 67 3486 14 180 107 29 225 2 342 82 1414 4074 15 9 2544 994 1 113 4 127 12 4002 83 635 437 10 6 78 138 68 28 105 78 4 9 12 664 5 10 101 89 2 3000 267 726 2 222 52 3733 3 364 19 1445 195 8 192 20 421 1710 1073 17 7 43 3416 581 81 1790 1363 2962 2382 3 239 1885 966 15 103 2836 29 1 182 4 28 105 4961 207 610 48 33 1405 630 4 10 151 356 3 10 12 14 45 3771 39 549 47 4 67 13 3616 20 610 2 7 2815 236 39 20 227 5 6156 133 10 1013 23 22 31 7331 1414 325 36 5450\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 23 117 3307 48 54 780 45 2 342 4 120 32 6645 3815 61 1256 77 2 814 9 6 116 108 9 6 4428 2783 16 1 6919 11 54 26 1530 17 1 67 12 775 6209 2971 119 6971 345 494 3 1636 9 4040 21 114 20 6773 1 260 5 26 14 14 10 741 65 7463 1187 2636 3 6987 119 1560 1029 799 49 1 1863 1937 1 624 87 20 24 2 974 51 3 6 38 5 2382 126 689 3332 799 6 262 15 1 166 3 14 1 799 49 33 22 4611 29 406 1 166 1863 6 936 6 2 184 2977 438 1259 71 3 421 1 3834 14 45 2 342 4 1126 9175 1801 172 7 9121 760 174 326 7 3438\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 177 38 50 2104 6 2 360 21 38 1830 69 74 3 31 1217 585 3 25 2002 17 93 11 585 15 25 1725 25 3298 3 25 4413 776 6391 40 428 2 18 38 25 733 15 25 2832 1 18 6 722 4608 3 10 1699 79 5 50 221 733 15 205 50 435 3 50 1217 4757 745 4796 6 313 14 435 69 1 280 88 20 24 71 138 1440 8 449 11 205 561 4796 3 561 6391 22 4546 7 398 5201 18 2520 16 62 3117 69 4796 16 25 278 3 6391 16 25 1471\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5129 508 24 4753 11 9 388 6 39 31 2619 324 4 1 102 7 3 45 23 99 1 215 289 468 149 11 494 32 9 388 6208 12 2619 689 8 214 9 388 324 78 138 73 168 3 456 61 1253 5 110 8 54 134 45 23 175 5 64 1 131 7 86 215 2614 64 1 388 2639 19 33 24 52 5 1857 1 325 68 1 215 767 101 2649 19 305 1705 174 53 388 6 16 1 4482 66 57 52 168 32 8144 68 114 1 697 2449 1952 8 1090 9 14 2 394 73 10 380 23 52 5 335 68 48 1 405 5 131 7 1 85 33 419 1\n1\t42 100 65 36 7 1058 5902 18 2263 115 13 724 48 4089 224 1 21 6 11 824 1295 1 120 662 2667 5 1 3116 28 228 555 1129 1 21 12 370 19 2 821 30 3924 35 1 263 15 3 8 12 852 11 1 21 5 26 1534 68 10 1306 42 2 7930 15 2 163 4 38 1 984 38 1 38 1 4698 1687 11 61 15 137 4 1 1186 5492 2334 199 15 127 120 3 4604 3 1550 22 33 620 5 835 126 395 20 62 7779 5443 6 30 835 160 19 7 17 48 422 6 9252 1221 6 2 259 35 40 38 101 16 1 3 27 128 1371 5 3290 17 835 2648 122 9 212 1190 6 75 1 518 4198 839 1220 17 11 1930 4437 66 123 466 5 43 6 721 29 2 272 106 10 173 139 105 9541 1952 1 1380 4 1 21 14 2 212 6 3 595 1201 16 86 53 6397 3 20 16 42 402 3449 488 16 1432 23 63 348 809 516 1 154 1825 4 1 699\n1\t216 4 205 31 19 1 1109 4 392 3 1 4 10 151 43 2065 2186 6851 4 1 392 11 12 5 917 2 156 172 1372 17 6 8304 2670 7 42 13 3 3101 9659 90 65 2 514 1249 292 1 589 6 262 52 14 2 1039 6054 68 2 216 4 1913 51 22 45 595 6476 396 2320 14 45 1 353 6 242 5 2500 1 155 4 1 3447 245 51 22 43 3537 911 939 6 3141 1 4 41 1 4 86 1 21 6 2 1117 45 28 63 32 1 717 4 1 2170 1432 368 6 52 3733 2087 17 1550 14 16 1 1 957 634 6 2 2 234 15 2790 3144 1032 3 1085 4 1648 10 40 34 4 1 4 2 1045 5378 8095 17 378 1123 1 16 2 4934 13 5 209 3 61 1 4 368 1145 1724 1913 33 22 7 3 2325 3141 40 223 303 126 17 62 1154 128 5209 51 6 31 1057 28 15 52 683 3 1900 68 1 1182 6344 616 4 1938 127 124 22 1 4 20\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 56 619 437 8 57 50 6112 38 10 29 74 17 1 18 165 138 3 138 16 239 6216 115 13 499 6 300 20 16 1 238 3078 410 17 16 137 11 36 31 4683 3306 4 2 46 678 996 2150 3 6818 45 317 20 2 325 4 91 1587 41 893 1933 9 56 6 20 16 1038 115 13 92 857 6 595 254 5 917 6743 17 7 1 182 8 96 10 89 297 828 1 393 12 2231 220 23 61 202 5 96 10 54 182 115 13 858 16 1 121 8 96 10 12 452 10 76 20 26 65 16 31 918 1570 16 223 17 10 29 225 997 50 5727 3306 4 2 1641 164 6 20 198 425 17 10 6 46 2072 3306 4 1641 6640 6 84 3 483 19 1 8 96 8 76 256 3306 4 13 9416 50 2952 3 99 9 141 463 23 76 112 10 41 4001 1027\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 414 2 5145 112 2 103 6 28 4 502 185 185 185 2757 3 185 3568 762 65 15 2 46 282 15 31 761 6026 60 276 36 2051 67 153 90 78 356 14 6 1 524 15 80 3568 484 3 51 2 658 4 1164 120 20 78 265 7 9 628 17 48 51 6 8 292 630 22 4884 678 3568 3 3233 139 77 44 4133 429 29 1925 17 2 156 269 406 2 3312 487 255 7 3 42 8622 207 38 1 3593 4 1 108 1608 102 53 188 38 1 3515 9478 3568 276 84 3 9900 1 1238 2448 1 880\n0\t138 68 1 135 16 2 357 1 593 6 236 58 179 881 77 10 29 34 3 1 206 39 151 65 2 185 16 2443 37 27 63 1030 7 1 135 8 511 26 47 5 122 7 1 3667 1 466 280 6 301 4405 14 2934 1797 1 797 129 14 7 3549 4957 3 111 4 1 1653 17 7 9 244 377 5 26 2 6261 950 66 27 1035 5 2074 30 49 244 599 3 246 2098 17 27 39 153 176 1907 1 633 3108 2817 7969 5393 3 83 865 227 17 49 33 87 1070 4 1 453 22 542 5 62 1 59 3501 4 1 21 6 1542 5860 7 2 280 11 88 24 71 89 16 122 3 42 25 3 1355 1175 11 2739 1 21 4508 1 570 272 6 11 9 21 6 174 28 66 7917 1 1625 15 168 23 83 64 7 1 21 3 378 865 59 7 1 7982 168 3062 4 1 1771 4065 55 52 2259 14 292 43 4 127 168 22 3243 33 87 2222 7 731 9941 7 1 471\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 5 134 38 9 108 109 10 6 38 2 658 4 53 1554 35 24 43 91 2310 3 473 77 1554 11 2373 52 4 1 91 2310 5 1098 102 4 137 81 24 363 14 28 498 77 2 574 3 25 1327 3448 65 43 2070 11 3567 7 1 11 6 38 34 51 6 5 10 3 33 3304 10 47 16 1452 9 18 6 167 91 3 130 26 3746 295 4665 193 11 6 20 5739 43 81 36 104 3 33 63 99 10 45 33 7874 104 16 79 1024 22 1 210 104 51 22 47 939 8 39 219 9 28 47 4 6906\n1\t70 1 2115 1 5666 6 2 1589 782 682 13 9972 246 1 1219 538 4 101 2 203 21 11 153 1 5666 40 2 46 7 1384 67 11 56 863 23 3584 3 844 23 15 2 507 11 51 12 146 11 23 8090 57 783 198 71 1057 36 561 553 122 7 1 9192 12 27 56 29 11 2871 7 41 6 11 39 275 35 276 610 36 5619 45 27 40 198 71 1 14 561 93 1113 123 11 467 11 10 12 122 11 337 1184 3 643 25 379 3 4070 3 20 561 94 42 28 177 16 2 21 5 597 2324 741 11 130 24 71 207 39 1669 16 1632 1 2895 66 515 7170 78 4 1 5666 14 237 14 86 915 3683 114 476 17 10 6 1135 264 49 2 21 6 1463 7 2 111 11 56 151 23 96 794 650 34 4 104 28 52 177 11 72 63 34 1479 3328 9135 3410 3 72 130 1479 122 3410 6 16 20 2966 9 347 421 1 11 28 9116 54 24 71 1262 6158\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2197 2522 13 872 11 213 13 4492 9 88 24 71 1111 211 3087 3641 17 2836 10 12 20 5 1142 1550 7 1 2857 4 589 24 37 97 3909 171 9339 37 15 132 2 4 2 1471 8 63 59 1 817 708 69 139 2843 1 7 233 87 235 571 99 9 803 13 4114 297 9809 13 4511 7479 3378 213 160 13 614 59 154 3928 88 889 15 132 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6609 1843 14 2124 1599 7 1 7428 18 4 1 2124 1599 1199 4414 6 972 17 244 128 165 194 1599 12 553 5 24 2 3533 94 43 1245 11 653 73 4 2 9216 7634 1 1201 50 255 17 1 707 27 472 2 3533 12 2428 2 287 590 9882 94 2 1890 1643 7 2 3 418 355 1 28 30 461 1 226 18 5 64 5430 7 2 4414 6609 1540 31 7801 94 1 66 12 2 222 52 4 2 267 3 364 7332 4414 61 66 22 113 587 16 1 11 22 6977 30 5226 7 1 279 2 99 45 23 36 4414 1 2124 1599 124 41 36 238 1004\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5457 51 662 95 648 6616 184 7898 788 397 6878 41 15 350 482 1889 350 315 1773 1104 10 123 24 755 177 1104 1087 81 121 1797 7 2 678 3 6096 217 2657 114 7 62 15 1 45 23 179 96 218 41 218 1444 29 1 401 4 1 9153 1121 41 23 998 126 5 2 2302 5962 68 98 116 6 39 14 14 2202 116 374 65 2268 4428 5 99 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 37 97 1064 1 315 1398 14 1 113 8 1 3395 1796 6 62 1293 2 84 2991 885 293 1456 3 382 4592 8 112 9869\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 1 1955 6535 4 3860 47 2106 9 21 6 1 4 126 513 136 43 4 1 623 6 7026 154 6966 76 463 41 90 23 539 47 8919 80 1201 6 1 447 2205 2219 488 4 611 1 10 153 198 1093 17 4240 142 49 10 2788 8 187 9 2 9552\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 251 54 24 71 2 163 138 45 33 57 39 248 28 641 7629 89 4387 3920 4036 522 378 4 3920 4036 522 1 129 693 275 35 88 3258 1 280 4 1 3794 66 2012 27 88 87 15 1 1199 2657 1 697 4036 4843 6 56 59 8773 7 1 1174 6 20 56 11 53 14 1 91 259 3871 919 173 291 5 90 65 44 438 14 5 704 444 1 6279 1757 41 1 3248 60 56 4710 44 946 29 1 182 49 60 57 5 309 1 280 4 4036 9853 94 956 31 431 41 4069 8 1168 65 20 3379 48 653 5 4315 6078 380 199 2 163 5 812 849 17 4036 522 380 199 162 5 36 550 906 1 2881 870 7 1 5725 12 20 169 14 10 12 7 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19 1312 983 244 27 153 55 328 5 26 211 3 27 39 6 17 25 18 247 55 48 8 54 637 2 467 49 11 259 19 25 606 6 242 5 564 122 244 39 667 9 6 28 1858 3 288 826 77 1 2904 27 256 25 543 7 1 443 105 3 98 49 1 259 621 142 1 606 511 23 504 122 5 26 3 57 1 210 121 420 117 6870 36 49 1 8140 202 1312 60 39 666 60 143 478 1728 41 3128 10 12 39 8 467 8 812 5 478 467 17 11 12 20 279 4498 8 112 1312 17 25 18 12 39 105 2317\n0\t2034 29 74 23 96 86 2 589 317 4171 15 3445 120 7 10 17 14 1 18 9272 468 1682 11 1 18 6 52 2 11 56 52 1918 1 267 2489 243 68 1 589 7933 13 92 120 3 927 22 56 1 188 11 90 9 18 2 3445 3 2864 28 11 29 268 56 390 7278 1432 1 171 22 745 3 3820 2956 508 17 33 83 56 1 18 5 2 952 4 13 92 67 811 400 1 67 6 38 162 3 39 1281 2405 19 1 120 262 30 745 3 4889 17 48 610 6 1 67 55 9370 1 18 811 36 2 1445 3 28 11 40 46 103 5 7196 36 8 367 145 273 1 67 6 53 3 240 5 99 19 1039 17 14 2 18 10 56 213 3811 3 311 153 216 3335 13 92 1043 6 311 2384 3 268 3 10 432 55 1941 91 7 732 5007 115 13 12 5 504 32 206 3231 1072 35 40 515 248 237 138 104 68 9 243 6121 5 2238 13 20 279 116 1425 13\n0\t2 3105 9939 207 71 4425 2287 4672 1 748 662 105 91 17 1 2256 121 3 2174 6201 7664 801 34 478 1 87 62 113 5 2704 4102 3 116 3805 4 1 572 14 2 7835 120 22 1070 1202 41 1822 4 116 3643 14 33 1473 62 2962 29 1524 235 11 7 1 769 8 39 143 474 45 33 165 142 1 1444 41 20 3 30 1 85 1 182 8 12 52 68 13 22 4602 227 318 1 4688 3 10 6 3 34 3 292 10 12 1002 631 32 62 23 511 24 587 11 43 120 61 1091 32 62 1 212 177 39 3870 43 8284 3 1204 1 545 1852 7 1678 3 7 2349 1952 9 21 1092 2 4 3008 127 663 292 23 63 149 43 346 8547 7 242 5 216 47 106 7260 7680 705 8 25 442 7 1 1079 3 350 909 2 1248 5 1030 15 31 2706 1778 3 2172 2745 8986 850 530 162 591 84 204 5 64 977 17 39 38 1233 45 317 2306 116 9652 3 1 6882 6 1231\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 31 161 482 6842 8 63 128 1116 11 4871 8425 6 28 4 257 2049 1488 261 35 25 216 36 7 1052 1203 228 335 133 1 1115 121 2552 4 9 2099 220 8 96 9 6 25 3609 2289 10 228 2162 55 52 1470 34 4 1 121 6 169 452 45 23 173 186 2478 5003 5029 41 1 864 4 1004 157 1491 238 98 9 6 20 2 21 23 54 3589 10 6 561 692 7785 5 862 1546 8 54 112 5 64 3147 3 2047 8265 139 29 239 82 43 326 7 2 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 376 7719 3 206 361 385 15 25 102 430 3 4020 9832 3566 403 1 1043 361 652 84 1212 3 2717 5 9 67 4 3652 4658 4122 361 1 166 6176 11 492 3025 54 2290 172 406 16 25 74 84 5168 6383 4 3235 3 4 2791 87 20 1674 1 441 33 22 1 67 4 1593 421 13 92 171 652 1 7529 4 2586 81 5 62 871 3 7719 6 609 14 44 129 3525 15 44 14 522 4 1 189 267 3 204 15 44 2894 5 6181 51 15 44 1323 1382 7 44 874 36 2 6514 44 5847 262 30 2385 13 8844 45 23 63 1351 47 958 376 2421 7 1 8 17\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 191 134 11 8 192 1002 945 30 9 9200 108 8 114 20 70 1728 55 308 136 133 110 10 93 6 20 46 3604 8 12 446 5 497 1 393 350 111 140 1 4285 835 13 5851 6 2 782 4285 8 555 82 104 54 582 32 10 7900 1 223 786 187 79 43 13 20 354 9 2803\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 286 5 284 2 1332 1730 753 4 9 108 8 497 8 191 24 1155 2730 1 477 6 1 277 250 120 889 518 29 366 7 31 1286 2213 1940 3 3162 239 82 15 6915 4260 207 1 113 2482 94 1 277 139 62 3613 3178 1 21 77 277 207 49 6103 748 1107 1 7845 15 1 35 90 7959 47 4 9648 6 29 74 31 1128 567 906 1 206 1620 9 28 5 2214 55 2 1305 119 427 11 951 1677 7 1735 7479 2 45 23 2686 32 793 10 7 2023 3 23 76 24 2 53 366 6086\n0\t35 2197 5 176 5127 1 115 13 858 8 2111 1 8673 4 1 8 4079 179 1 4586 5148 19 1 1203 217 155 5355 4 2 534 9830 1 5133 5586 2 67 4 3273 217 378 48 8 2144 5127 11 8443 12 364 240 68 48 23 63 149 457 116 855 13 4 1 1008 1469 6693 14 2077 31 855 259 1578 5 90 2 442 16 411 7 9 1561 55 45 10 907 4562 571 2077 6 275 23 83 474 2354 100 308 114 8 230 95 6711 41 3643 16 9 1223 7 233 244 2724 17 20 14 78 14 2668 7022 498 7 31 4737 278 14 2 89 34 1 210 30 1 1169 1941 494 27 6 929 5 1337 7 14 2 5771 35 791 40 1961 7 1 3 103 5 58 1205 2509 3 690 14 66 6 676 2 32 17 13 2719 51 22 2 342 4 240 1102 7 9 21 395 2732 4 1 1203 17 9 21 100 1231 77 11 1162 10 5 23 15 647 91 1765 3 2422 2592 94 2422 8932 850 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 112 2365 3 24 107 167 78 34 4 1 767 17 9 28 4609 4031 14 1 210 4 1 3284 2 9115 8045 5940 2418 4 7975 6003 11 6677 205 1 85 4 1 956 410 3 4 1 121 2447 4 31 745 1 132 14 10 424 39 181 5 26 89 65 14 1 21 271 385 15 20 55 1 4631 3506 4 1 4534 5 1 2441 11 89 1 131 132 2 609 1246 5 357 1566 28 185 4 1 7612 66 8 214 483 1394 41 815 761 2930 12 745 129 101 1694 5 1 6891 29 1 2279 14 45 1 1278 8171 19 2202 74 442 2 144 339 33 24 9 427 6976 14 10 981 36 8 1113 9 6 1 3 34 306 2365 596 54 87 109 5 925 10 36 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 12 2 885 2351 8 159 2 5632 32 10 19 3 8 11 130 10 117 131 19 2534 8 54 512 5 1 274 7 639 5 836 8 7457 65 133 10 15 2 493 4 8424 35 629 5 26 3 1 102 4 199 4555 29 1 714 9 12 2 323 7574 431 4 1 5200 112 189 102 2475 2190 8 56 61 1240 218 2029 10 6 767 36 9 28 11 56 90 1302 524 28 4 1 80 5498 3 557 4 756 1449 19 8 52 3428 3 2 4 73 8 76 198 99 10 316 3 8644\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 322 8 63 308 3 16 34 256 31 182 5 1 6 1 210 18 117 10 6 3677 4 993 3 30 1970 273 51 22 679 4 91 484 17 9 28 270 1 9959 7 11 10 270 554 37 13 499 6 2 21 11 2656 5 39 75 237 40 5 139 5 1236 65 15 10 93 2656 5 39 75 1169 3816 4 3 860 1970 3520 40 9 18 6 37 91 11 23 1345 230 94 133 10 3 321 5 7 1 4406 4 1 3660 3 1311 11 162 76 90 23 230 2843 3456 13 499 12 612 59 19 388 669 173 830 3 8 2172 1 4572 11 57 5 90 1 7398 57 5 2951 3 4190 1998\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 214 1 718 6469 6382 4543 3 47 4 1377 5 26 2 1002 240 3939 1 718 4223 723 4655 38 723 240 3788 239 28 4 127 413 12 483 602 15 25 2340 781 1860 112 3 3805 16 1962 13 92 747 1871 8 191 867 54 24 5 26 1 5258 7 66 127 4490 33 61 240 16 38 681 1507 7888 1496 509 3 7055 1135 105 13 92 388 12 829 7 2 46 1688 111 1815 8 46 78 381 1 21 4 28 177 15 2 672 8324 125 2877 10 262 47 313 3 93 2068 15 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19 25 4777 2 346 1161 649 25 532 27 6 20 44 2375 3 11 27 451 5 139 408 5 25 148 13 659 43 1175 267 763 811 36 10 255 32 2 264 85 4 436 1 4198 41 407 10 1385 79 4 1085 3 742 331 6430 205 4 66 934 15 9629 3 1830 189 1007 3 537 205 124 376 13 1601 277 124 22 7984 15 120 35 5077 7 678 3 8417 3635 34 277 124 24 2 8949 205 2537 3 34 277 124 1229 19 7015 3 1391 34 277 124 8595 1 1193 69 6 3715 48 6 115 13 17 10 1664 58 806 3405 3 844 78 8417 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7285 8 219 9 226 366 3 1 28 177 11 143 90 10 301 464 6 11 10 12 826 8899 51 12 58 3826 200 1 5248 11 9 635 12 1 618 1 18 12 39 775 4993 16 1632 33 100 2667 75 33 89 1 3810 5815 31 41 29 1 182 75 1 1277 39 1168 65 29 1 429 7 85 5 552 1 635 197 1 613 55 101 404 5142 1 469 168 61 39 56 91 3 20 548 29 513 1 635 33 2167 5 309 1 12 509 3 33 56 3084 1459 2 138 4163 39 83 351 116 85 133\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 4686 74 310 19 1 1276 7 8 219 110 10 12 28 4 50 430 3434 98 1 166 767 544 355 620 125 3 125 316 37 8 165 1455 4 1000 16 147 767 3 2165 133 110 8 12 426 4 619 49 8 455 38 4686 1 18 220 10 153 291 5 26 670 14 986 14 43 4 1 82 3267 36 4973 246 162 138 5 1690 8 337 5 64 1 18 2799 160 77 1 5599 8 247 852 1264 8 12 39 852 10 5 26 2 1230 18 324 4 2 1254 36 1 18 1306 8 497 8 165 48 8 5207 10 12 2 1230 18 3 162 1129 51 61 43 53 546 204 3 1057 17 16 1 80 1871 1 18 12 2 311 16 2802\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 336 9 1540 1469 114 31 491 20 59 6 27 31 1115 1651 17 27 6 1612 15 31 1477 27 114 2 84 329 19 1 3312 4 25 2131 1069 7399 77 690 138 68 1322 2 84 278 16 25 74 580 9 18 6 331 4 892 168 11 154 583 76 1629 50 374 24 219 9 18 2143 268 220 72 4323 1 305 1 326 10 310 689 7 1993 5 1 141 1 4081 19 1 305 22 39 14 2406 102 4085 65 19 9 4941 8 496 354 10 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 9 18 15 402 1691 3 12 20 1558 86 37 91 11 10 6 152 211 7 2 46 6113 1822 3293 13 6 332 2007 8 467 27 39 481 3603 3856 27 130 187 65 944 14 121 6 674 20 25 25 6145 22 38 1 166 145 273 50 715 349 161 4184 88 87 2 138 329 68 34 4 6073 1 206 130 26 3238 5 24 256 25 442 19 146 37 936 8 83 96 31 918 6 19 1 6604 16 9 13 150 24 100 428 2 878 19 6675 17 9 18 12 37 91 8 343 4565 5 87 8895 13 614 23 70 1 680 5 64 9 158 83 45 51 12 2 5397\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 1582 175 1 226 1099 4 50 157 9142 13 92 59 454 11 6 1179 5 99 9 18 6 3552 8 721 667 5 512 9 40 5 70 138 9 40 5 70 3606 13 3204 1 1713 475 1049 65 3 33 57 43 2756 19 51 9453 13 3828 3475 36 1998 5294 13 1268 5461 2 13 2361 287 1783 48 28 4 1 405 3 1 1786 367 1394 8 175 5 13 11 12 3676 47 310 1 18 8 339 186 10 95 1534 63 8 5723 16 2 594 4 50\n1\t2167 1 540 578 2149 194 58 13 5883 113 1022 1218 400 264 3508 1920 1 333 4 17 34 299 3 2815 1 1003 465 12 11 97 4 1 61 20 148 8378 29 399 258 1 415 106 307 61 1903 5 79 571 16 35 6 2 900 9382 5 297 60 270 185 1107 9 485 5 26 2013 4336 17 94 27 89 2 528 3282 4 411 285 1 3649 600 174 164 32 1 100 40 261 8275 2 1022 36 27 1322 27 25 3 93 310 577 14 2 259 15 2 84 356 4 623 2243 43 1838 1491 34 8702 4 611 83 186 79 1547 143 24 1 1055 2576 5 365 5908 111 5 139 13 1701 596 4 9 8 496 354 1 2736 324 993 3361 1628 9045 14 1 7 698 1 598 324 6 111 1824 3 11 666 146 220 1 296 341 323 6 2 84 880 28 177 38 1 2736 324 6 11 1 1797 2292 5 5077 36 547 423 5807 7 1 1031 1 1829 5751 3 8681 2813 11 270 334 7 1 199\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 4445 9 18 12 3246 59 7 727 6 2 306 665 38 2 53 1091 3 38 2 53 1368 1 6437 189 129 3 1 3850 22 5376 1470 2 306 102 264 205 15 2845 7 51 12 2 46 1618 996 3035 7141 3 2 84 6 1485 14 8 1901 9 21 2 3600 5376 7 9 832 268 16 1 7724 7 4445 72 83 118 2 163 38 157 3 9 6 2 84 216 16 2464 2 1837 5803\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1280 3156 22 670 1258 5 35 88 497 11 2419 566 6486 3 2 1032 104 11 61 30 1396 3 1607 9002 655 62 4227 54 390 7925 36 97 8 1064 512 2 18 1031 1 2009 4 137 35 1595 30 2 7541 8 214 5 26 28 4 1 1340 104 7 1 226 13 92 119 4 1 18 6 2348 1 494 213 5687 1 168 24 103 3 1 263 181 36 10 12 428 30 2 2638 17 207 610 144 1 18 6 37 2406 23 2198 7 639 5 1116 1 1744 4 23 24 5 335 1 18 32 31 272 4 13 4196 87 8 112 73 1 18 6 91 5 1 272 11 10 432 452 9 6 1 16 2 1280 3210 3 373 2589 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 219 9 15 50 212 231 14 2 1709 349 161 7 19 257 315 3 482 2229 8 320 50 435 11 3378 6 75 10 88 24 653 69 1895 3 8 8521 320 1 178 49 1895 615 44 671 61 8 1783 50 435 144 61 44 671 3 27 553 73 60 12 1455 3 246 20 107 9 431 7 4132 1166 8 128 320 10 8521 69 1 249 155 3 3194 15 1 408 7275 168 4 8379 7782 1 15 1 570 178 4 1 102 1323 1237 1895 2844 25 4007 3 4999 10 190 20 24 71 2 2322 216 4 4554 17 10 407 303 31 1418 19 79 34 127\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 31 202 21 1068 31 14 27 271 140 6 5474 30 434 2098 3448 411 142 2 9654 488 16 2 163 4 1 387 173 348 864 32 13 14 6 323 2959 8627 3 1728 17 488 29 268 7781 4 48 27 72 917 122 242 5 426 47 48 244 283 3 149 2 111 5 13 2 648 1238 8654 3 537 11 1283 1030 7 6192 3 7027 197 95 2651 14 5 75 33 165 51 7241 3 23 24 31 1476 438 269 3 1 3660 178 6 227 5 70 95 325 588 155 16 1129\n0\t227 5 64 1 215 397 4 492 645 7251 10 12 31 491 839 3 8 1390 5 64 1 18 49 10 645 155 7 10 6 1319 202 297 74 1237 8474 954 514 1651 2 53 206 15 1 260 6 2 1140 1412 69 202 14 91 14 49 294 12 2490 5 1 443 6 198 7 1 540 334 69 33 65 1 759 3 1 33 22 489 69 1 869 4 1 309 12 127 6623 69 127 964 4113 39 405 2 680 5 131 48 33 88 87 3 49 33 165 62 680 69 23 339 186 116 671 142 4 450 17 9 201 39 196 30 6470 123 2 329 1299 17 630 4 126 6952 28 4885 7 698 176 65 1 201 19 970 69 630 4 126 56 337 19 5 87 235 1264 1530 8525 2376 1136 69 37 9 616 123 20 1708 16 28 330 1 7124 1 1 2380 4 1 1039 7251 2 900 2266 55 193 33 328 5 1 265 69 1 84 265 128 7512 65 29 268 3 1523 81 75 84 1 868\n0\t1482 8 117 152 1390 319 5 64 69 1 232 4 739 23 2497 47 4 7239 29 1 8768 616 285 2 1075 3200 49 23 24 1155 1 357 268 16 235 53 17 128 22 434 274 19 283 2 1540 3 11 6 610 75 8 310 5 64 9 13 2595 1 5604 4 1 138 185 4 277 4029 8 63 128 9014 1 5295 11 9 67 3875 1698 119 69 11 2 506 5120 2995 2 9276 421 31 2852 20 4 1 2918 69 6 3534 3 207 38 399 571 16 2 301 6943 11 266 125 1 1812 4 2 21 3816 4 2 112 471 29 225 4950 6 1386 1240 2 102 5321 9489 17 742 3071 39 65 1 7754 27 12 58 2046 5356 3 9 6 58 8 24 256 80 4 10 47 4 438 3 49 8 549 577 10 19 756 1276 6255 8 899 19 9923 76 64 1 1955 4798 2729 781 2 766 3 379 69 8 112 69 29 225 10 6 125 7 9 739 3898 269 4 50 157 11 8 76 100 70\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2257 9071 2448 1 8147 105 91 14 53 288 14 3924 1183 627 114 2 3088 1614 6351 12 425 14 2832 8 112 1 182 178 801 6 31 1993 5 1 109 49 1 6 7 3 15 25 4572 3 298 1342 2567 3074 191 131 11 60 6644 9 1705 60 6 2 1241 3248 11 6 105 78 105 17 4010 646 751 77 110 7798 2164 266 3 60 6 2856 39 14 8 54 24 5332 768 8 241 11 49 1 2736 123 2 1215 6074 86 1 1293 296 2639 4 706 6364 22 248 16 319 3 20 16 3266 64 9 4941\n0\t4 1 5590 292 1 1710 443 1093 7394 8982 3 82 1813 1637 4 9 21 22 6985 831 86 20 1 59 13 7958 43 382 1532 124 11 24 71 2052 30 62 3645 84 5642 3 640 9 831 40 31 489 1252 489 121 3 210 4 399 489 761 4720 13 777 2 1004 11 16 1 154 1532 21 11 8898 36 236 2 8826 82 2445 124 11 1436 1414 8 83 118 35 1 1338 118 29 17 11 63 26 50 59 2651 14 5 75 9 2399 231 397 117 165 145 169 14 5 144 33 1459 9 5470 13 92 59 185 4 9 21 11 1834 47 95 5660 6 86 3588 245 1 302 16 11 6 55 2 369 1781 8 449 9 753 76 552 2 156 81 11 190 26 3565 30 9 124 462 32 160 5 99 110 180 107 2 163 4 124 7 50 387 3 145 46 49 7 1 2433 17 9 12 105 1264 646 100 995 16 31 731 272 7 50 157 839 4 1913 1152 42 132 2 402 7499 13 1149\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2003 23 64 1 1203 4 1 305 317 2173 9 6 43 897 1493 978 2 21 89 16 7 13 115 13 252 6 538 1097 3 56 452 42 2 267 3 2 1269 28 29 656 10 93 6 46 1462 7 15 2 327 1780 4 1 397 1353 22 46 53 3332 276 1 171 22 1 644 593 3 748 22 1051 42 2713 35 54 24 13 372 6 1 5431 1740 6 84 14 1 1028 1542 4469 4850 6 2 6 1 5849 15 1 1494 1028 1327 3 1531 3 6617 4949 14 22 2355 105 1796 14 170 1513 26 1497 7 698 27 229 40 52 456 7 1 18 68 13 614 8 1346 1 67 10 76 478 37 439 11 156 4 23 54 99 110 468 39 24 5 186 1 736 4 1 81 204 35 338 10 3 214 10 5 26 2 2153 46 2273 4802 23 321 2 534 356 4 2106 31 4870 4 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 18 23 357 133 14 2 518 366 2240 10 6 1053 7 11 4972 17 10 40 55 2 163 10 40 2 356 4 43 238 7 3 47 4 1 3 10 40 5057 121 14 109 14 2 67 279 3714 1217 59 18 17 109 279\n1\t2184 78 36 1 129 51 22 2 604 4 82 1411 171 35 2074 696 120 854 8 83 467 5 126 737 37 76 5075 13 724 87 26 5095 11 45 23 22 36 503 3 23 4001 3 289 39 132 8029 16 1 74 957 4 9 135 10 123 70 1824 13 150 284 1339 11 9 6 370 19 2 306 471 1 644 67 2165 101 4127 3 726 232 4 2 5228 4 1 9186 7 1 570 8 83 321 34 124 5 26 9045 3 17 14 9 21 165 1824 10 93 544 5 26 52 3 52 4 2 749 8649 13 499 12 93 2 1935 5 64 31 161 2356 309 2 280 37 8 338 17 12 30 1 233 11 129 12 2 6350 3031 923 6724 4 611 14 25 121 7 11 12 4455 27 12 2 8670 204 14 1 2223 68 157 164 4 9830 1 4 10 12 327 5 64 122 7 2 280 11 8 88 152 13 5944 977 8 338 1027 8 39 555 8 57 209 7 1801 269 5935 3 1155 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 156 104 24 57 1 1880 19 296 1615 1 111 2868 3346 7199 1479 851 10 12 17 6 202 7 2 897 30 554 14 28 4 137 2092 11 49 317 8396 5068 29 23 39 173 186 116 671 401 277 22 1764 429 3 1323 5669 17 207 9784 1 2115 8 320 2868 3346 645 1 3050 3 51 61 101 3296 19 154 413 61 9640 3346 9656 15 62 9199 3 45 23 8786 118 75 5 23 61 1050 2 1055 1454 8 96 42 2 84 108 9747 56 619 79 19 1 8384 4 2 244 152 1202 854 1 1077 6 4544 105 91 4 9603 3988 2175 2030 5383 895 1232 11 259 12 39 9306 1 131 204 6 1133 5205 14 1 8764 3 8 3195 165 162 421 28 2758 17 180 198 48 8 230 5 26 1 700 869 427 4 34 426 4 36 50 3 133 122 5055 7400 200 6 1 4639 177 646 64 5 50 2897 4252 1189 36 8 1113 3391\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 246 381 2014 7504 817 216 234 3 2156 366 50 1691 4 2 4929 2164 3087 61 1002 7156 10 726 908 94 1 74 938 11 9 12 31 3919 7 75 5 26 14 3 2346 14 2623 8 142 94 764 1452 8 219 10 1 82 326 2 330 85 5 64 704 8 57 71 7361 1 74 290 8 6043 10 142 94 764 1452 8 149 10 254 5 241 75 55 2 5715 6339 487 88 149 9 695 1 494 6 31 8580 7504 6 1370 5 99 794 6 3 1 9396 4 120 642 2253 151 3291 55 2194 1251 32 1 2715 1474 462 3 1 9351 274 2217 9 6 28 4 1 210 124 8 24 117 575 8 1454 354 23 925 9 36 1 193 375 417 4 2550 381 10 8013 33 61 29 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 764 47 4 764 460 6 58 9 718 1745 1 902 15 979 1131 38 1 9373 7783 7 9 84 21 6 195 1 5951 2258 45 23 175 5 2783 2 3909 1062 38 41 9295 13 92 4523 1 979 1131 76 1959 23 5 839 2 306 5926 4457 468 230 36 317 7 1 750 4 1 5717 115 13 92 21 76 352 23 3494 979 3122 7 1 9152 4 9373 3 76 352 23 785 2 601 23 76 1550 785 19 2229 42 146 23 1513 6789\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 173 241 8 1130 50 85 15 9 108 8 339 55 637 10 2 108 10 12 37 91 15 162 5 354 110 115 13 150 36 402 445 104 3 1021 2092 17 9 28 57 79 1120 5 2295 955 89 3 91 121 2175 10 32 101 23 24 5 560 48 127 81 61 517 49 33 1019 319 5 2230 9 108 8 560 48 8 12 517 133 10 5 1 714 8 354 9 18 5 58 461 75 114 33 1042 2782 12 51 31 410 35 1143 9 232 4 1973 51 191 26 73 23 63 149 9 29 202 95 388 5504 17 13 5 26 13 614 23 36 91 104 98 9 6 16 1038\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 28 4 1 80 509 1545 8 24 117 575 33 24 2 111 4 3948 1 267 33 63 16 1 6005 902 66 16 907 349 161 7 1 716 22 34 961 3 37 1054 8 173 241 110 1 453 22 46 7203 3 125 1171 17 8 83 1844 1 171 220 137 232 4 28 5321 120 22 229 610 48 1 1783 16 3 46 1054 131 15 91 716 33 713 5 1124 14 109 10 6 364 3755 68 1 82 509 1545 36 1 594 40 8343 1507 4453 2134 1276 5156 3 4627\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 30 237 1 210 180 107 7 50 982 45 275 1664 9 5 23 16 1126 348 126 3911 9 18 151 23 2 8827 454 16 1311 23 219 110 1 119 213 55 1 210 185 4 9 1 505 443 1093 4702 3 9004 51 6 332 162 5 36 38 9 108 2525 1390 5 24 9 21 89 6 3437 1705 8 449 1 206 100 196 1 16 174 108 7 86 7370 9 18 12 89 1108 5 328 5 9567 19 1 697 8610 9020 1708 17 180 107 18 4 1 2584 11 485 36 918 1074 5 476\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 375 172 4 288 16 124 5 760 16 50 2517 180 1619 2 16 1 56 5174 3117 11 22 56 1370 5 694 140 2022 261 125 1 717 4 8 4409 1 2871 19 9 28 3 1 374 1019 350 1 18 2227 79 2386 114 60 134 11 3 6359 114 27 87 3 50 671 165 32 3343 126 154 938 41 37 14 120 114 2 56 91 329 4 7570 1524 1610 119 3 1 398 85 275 1036 11 246 332 58 3689 15 2 3409 6 311 5 2 158 786 549 126 140 15 2 1065 12 522 3 7261 845 476\n1\t0 50 59 1681 15 1 21 8 1662 65 1311 14 5 9439 6 1 233 11 1 360 5653 6 5 1 226 2290 41 37 269 7 1 3912 1361 3 1 3912 2105 6 1 225 240 4328 4 9 1447 13 7793 3 2611 3076 22 1529 201 14 1 170 17 42 2402 35 380 1 3 80 4233 1663 710 6 2 4621 3211 55 196 7 2 38 14 1 1172 5 7793 49 25 8930 469 271 664 5 31 40 43 4 1 456 3 1510 126 15 13 9 7402 19 9501 16 1 74 85 7 2290 41 37 1166 8 96 42 2 9550 665 4 48 2 360 349 12 16 703 1 7025 4824 595 3 20 29 399 6 313 3 1 111 10 77 16 1 1102 6 248 15 84 2407 3 13 92 567 178 6 1 426 11 56 4373 2 545 77 1 1189 1637 4 1 4730 771 15 2066 3076 136 25 2345 6 7996 1918 4482 6191 951 5 2 1201 684 323 2 3102 21 32 477 5 769 174 5228 16 492 3025 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 206 3598 3231 40 1242 7 6118 272 2 1719 11 6548 3 1506 3917 1 1754 115 13 3231 5 1006 1 1193 4 48 629 5 1 1455 4877 4 3 49 23 5724 1 4 3 115 13 92 1122 951 79 5 134 11 50 1062 4 122 88 20 815 70 95 13 1268 3 2 350 13 162 7 9 18 151 95 2509 1 1800 7194 22 1289 47 7586 3 1 3728 22 331 19\n1\t6 3 3 3038 30 31 483 3 7 34 4 62 2058 605 2968 1345 63 1314 24 2 3202 1880 19 1962 3 5 1 192 1826 1 3 7 9 21 6 676 28 4 26 3314 70 26 3314 70 26 3314 70 3 80 26 3314 3 735 7 9 6 113 278 117 14 31 5667 1954 3 61 1529 3965 7 132 453 30 127 277 61 1080 3271 16 1 2157 4 1 120 7 9 1540 1392 4402 16 3 80 754 16 4668 1 4855 4 1 9856 66 1196 1 1748 1570 16 113 572 7 4495 97 7166 3 7 1 2196 4 1 5 9 2814 8 192 1101 296 7 6 20 488 16 11 3683 1070 6 1 846 779 1 8 497 220 36 2306 257 33 190 14 109 333 257 1615 5 90 2 3088 21 7290 10 6 2763 5 118 11 2 21 63 26 3102 3 24 31 862 749 16 137 4 23 35 143 36 9 141 8 39 24 28 177 5 134 47 4 9 18 6 400 749 139 400 3 400 681 64\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 1220 37 3980 1 210 18 8 24 107 7 50 389 727 3 8 24 107 43 56 91 502 8 159 9 18 29 50 558 388 5289 3 1 1203 485 36 10 88 26 2 547 203 108 103 114 8 118 11 1 1203 54 26 1 113 185 4 1 108 106 5 1 1673 4 1 18 12 3 1466 29 28 1746 51 6 2 178 4 58 28 8539 39 2 606 2037 5 2 7401 19 2 1408 6422 1393 162 7553 33 39 5461 7 1 212 18 6 1495 15 4127 1698 494 3 676 58 119 5 1271 2562 45 23 760 9 141 99 10 15 43 417 3 10 228 90 2 53 1211 3823 49 23 64 9 141 7985\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7588 1 7941 3763 6 197 2 894 9143 460 19 74 4706 86 2 3532 1087 1119 3 1577 176 77 1 534 601 4 423 6360 9 18 196 260 5 1 1746 23 190 26 517 48 1 272 6 5 5624 4 39 1809 882 3 5941 9 18 40 43 2565 52 41 364 39 2 415 51 22 56 59 535 11 88 26 1050 5941 646 348 23 28 177 193 7588 1 7941 3763 151 176 36 7304 45 23 179 12 2 1184 1798 1577 2629 739 98 23 3195 107 1 350 4 10 318 819 107 7588 1 7941 13 1020 840 13 1 7941 3763 9143\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 30 237 1 210 18 8 24 117 5399 180 107 43 167 489 104 7 50 85 17 9 879 270 1 1453 5865 8 467 1 1 212 1589 10 6 37 91 11 8 241 2 736 5 1431 1 111 23 76 230 94 133 9 40 286 5 26 786 39 87 725 2 8501 45 23 117 70 1 4254 5 99 9 3 99 4465 269 4 11 761 5481 4898 98 11 4465 268 3 23 54 128 59 70 2 346 4 1 203 23 54 26 7 1320 1987 7 8 497 23 56 63 637 10 2 203 141 17 59 45 317 1774 5 26 1728 6232 30 1 210 121 7 1 1255 3 1169 1445 2876 13 5280 3094\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 240 312 3 857 66 143 169 4142 13 1833 23 64 1 158 300 23 76 230 14 15 1 393 14 8 1322 8 143 56 118 35 5 4201 16 7 1 141 485 1120 14 1 9051 1 344 4 1 120 291 37 6128 3 13 614 1 1757 57 71 52 4 2 327 1753 72 228 152 24 381 283 1 119 8469 3 1 758 5 8097 1 465 12 11 60 12 14 14 1 82 3834 1573 32 1316 282 5 8 173 365 1 1700 859 4 9 158 3 14 2 1557 67 3 953 10 153 916\n1\t1 1847 2 164 1136 5 2 900 669 96 8 338 44 129 55 364 68 1 4560 966 7 698 10 6 2578 227 11 10 384 202 36 31 7786 18 274 7 6713 14 7786 89 97 104 11 8388 5 934 15 1741 9133 3 1 4 500 6 10 95 560 11 94 253 9 21 713 5 564 814 114 8 36 1947 3911 10 12 20 2 299 2751 688 10 12 2 46 6577 18 11 373 721 50 838 3 14 2 4818 8 56 405 5 64 48 653 5 127 1098 10 12 426 4 36 133 2 1591 83 175 5 64 34 1 17 23 173 352 17 4 34 1 8 96 11 1 972 164 35 8388 5 176 47 16 307 3 35 143 56 291 5 1179 7 3211 12 105 3 2547 5 26 536 7 2 1847 12 436 928 5 4735 2085 8 13 614 819 107 2 2806 4 124 3 24 2 298 16 678 632 581 187 9 28 2 836 245 87 20 90 9 116 74 839 133 25 273 5 2545 295 97\n0\t5 1021 6437 189 31 161 1086 1018 276 36 690 2647 7 3 44 1381 3803 8386 4111 1 624 791 61 7 58 5 70 155 32 11 3956 3086 101 11 33 3485 52 2389 68 1 201 4 1444 16 11 277 594 13 5676 1 85 1 7125 70 5 1 564 1025 72 58 1534 4219 72 555 11 275 54 564 199 39 5 182 257 2572 409 475 65 15 2 169 1985 393 11 2149 5 26 7 2 78 138 135 42 202 14 193 1 2526 1 28 53 312 7 1 158 12 428 74 3 98 1 1063 713 5 90 2 18 914 65 5 592 13 6 1391 2 509 21 15 91 505 3365 3387 3 2 119 15 52 1931 68 2 7 2 4717 21 145 20 273 106 11 310 23 76 70 31 312 4 75 91 9 18 6 285 1 567 1079 7973 16 43 302 11 6 100 1 412 271 315 16 38 102 269 136 1 120 771 38 162 279 83 351 116 290 468 39 230 3 175 116 85 3 319 1877\n1\t2600 48 1392 1018 470 1 215 412 324 4 7 684 4938 32 2 1106 30 8829 217 1 821 30 626 1 644 861 801 1385 79 4 5993 4 1 271 16 43 333 4 822 217 30 217 1 644 1043 6 30 217 1 124 632 2132 66 271 16 2 632 30 45 8 24 95 38 9 158 10 6 1 265 271 16 31 125 1 230 5 10 11 196 161 884 1626 22 2494 125 217 125 47 42 4 36 43 4 638 125 333 4 732 668 7 4 43 172 4262 147 5755 3687 12 89 65 4 1 113 2732 371 32 943 1827 10 5 48 6 169 815 1 4639 324 4 48 10 1868 485 36 183 1 10 14 1 1908 100 114 235 1 1400 757 10 5 10 12 475 612 7 1 7 2 757 4301 927 7 1091 15 706 4220 2887 12 928 5 26 2 1281 1117 20 1263 11 3153 2801 9526 178 30 217 43 4 893 1933 54 6773 10 2 7159 279 2 176 45 23 24 95 796 7 362 1827\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 286 805 270 23 19 2 2062 5 1 1305 4867 3 2 1884 28 10 424 1345 3 13 361 460 3 7959 3 1897 1255 3 1 212 163 361 22 7 3056 1229 675 7 687 7469 62 5029 15 154 3709 67 2 1269 7 7395 13 743 2280 7096 30 1 1840 94 355 44 1 3 44 3357 1 4998 3 25 7600 1725 1 3 1 613 34 7851 19 2760 3 3330 7 13 123 2 329 4 65 1 7626 19 1 589 1 1206 3 1 536 3789 8318 2 14 123 3 6 1535 14 1 1620 17 60 88 24 71 65 2 103 7 2202 15 1 329 720 3 1 1433 13 2665 85 3 264 158 109 279 1 1686\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 179 75 1 5922 3686 1075 12 2 167 53 247 2680 779 12 10 1111 17 10 12 837 5 343 14 45 1290 4173 165 2 103 761 29 89 1 5922 291 36 2 293 6835 3292 49 34 27 965 5 26 12 510 3 17 286 27 590 47 232 4 114 96 1 4448 49 20 1208 1 12 2211 3 51 12 2 156 546 106 8 17 80 4 1 85 8 179 10 12 39 18 3084 71 78 138 45 33 57 1241 1 3 33 57 2403 43 52 539 1025 73 80 4 1 623 247 338 75 1 5922 3686 1075 1441 17 42 20 235 5 70 2337 38\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 67 6 2 1618 3 360 901 4 1 226 4 1 109 553 3 7977 72 64 1 2558 4 2 234 195 8102 3 825 38 1 81 35 1457 3617 13 150 381 1 441 647 121 3 1192 2 156 168 3126 32 1911 1043 3 1 5447 4235 519 6478 105 8109 1286 2 360 13 92 250 129 6 262 1529 30 3167 35 8 192 3414 5 134 114 2 885 329 197 125 403 110 1 168 15 44 3 2822 22 1515 3 13 150 354 9 21 16 2025 288 5 99 146 364 368 3 52 4602 5 1 234 33 22\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 1 210 4 408 818 104 11 8 24 117 6870 99 185 755 3 4069 17 83 369 261 134 11 9 6 138 68 1 74 8 1266 1581 23 83 90 2 141 98 90 2 967 15 1 166 120 3 1041 3 98 90 174 967 15 264 120 3 8 1266 10 54 24 71 1233 45 9 2 141 17 33 114 90 10 2 408 818 108 6 105 161 944 37 317 1331 5 582 253 9 18 151 79 751 185 755 3\n1\t1 2137 9 21 1008 43 4 1 113 3322 121 8 24 117 1586 3 1 4903 1702 6 44 4159 3 43 228 149 426 4 2 2146 189 3262 3 3256 7 8 63 751 11 17 444 128 7087 73 444 1031 235 180 117 107 6896 13 252 21 6 3625 2211 829 30 1994 3 185 4 48 6 37 979 38 9 21 6 75 10 153 117 131 48 1397 4749 42 198 3 480 42 1 21 100 3352 52 68 10 693 1467 29 1507 42 483 5 2 420 867 66 6 28 4 1 3966 4 9 135 42 1029 15 1516 529 66 22 311 43 4 1 113 317 1458 5 64 34 3002 3 34 127 529 734 65 7 1 182 5 31 3215 21 2751 1 231 529 22 6801 4387 6 3435 3 48 9 21 40 5 134 38 1 856 1336 71 107 7 124 220 41 436 688 241 10 41 1375 9 21 6 78 8 100 563 106 9 21 12 3 944 246 107 194 10 128 40 2767 9 6 2 8307 862 6620 4006\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83 504 78 32 9 135 7 97 1175 9 21 4831 2 21 11 9796 326 2371 7 7 7 9 21 12 2 3677 137 1 1276 5436 94 44 30 2820 383 1 60 114 2 237 138 2611 472 1377 4 2 3 2108 5 2391 10 197 78 352 32 1 1377 8 118 2 103 38 333 5 26 2 3677 5450 36 8 20 504 78 32 9 12 248 19 2 772 3550 1 1278 61 5 772 5 333 2 2345 15 1 442 4 2 19 110 6 28 442 11 375 104 24 1 59 523 19 9 2345 12 1 442 4 1 1404 11 89 1\n1\t7398 4 205 5522 3 13 8365 924 29 225 390 13 796 14 5 1 2654 13 1 518 13 150 1808 107 463 572 3 32 62 2741 13 852 43 148 1665 6153 213 51 6 13 2989 1 128 8853 976 1349 13 7 1 2125 17 8 247 852 1 13 13 1149 193 10 5162 5 1 4812 600 8 179 10 13 4395 985 530 205 124 57 79 1094 47 13 872 1 2024 2219 89 10 935 51 12 877 13 7 1 135 258 1 1521 13 1 74 132 178 6 46 3735 1 466 342 13 211 3 4217 7 62 74 5636 13 92 2200 1 80 13 3 3 1 226 6 1 182 4 31 2048 13 3053 6 8409 13 92 4081 1483 31 3213 5 1 158 13 15 1 215 296 3 25 13 32 3912 7 1 2125 3 2 13 5676 1 206 19 43 4718 13 252 6 1 21 11 511 369 818 3 1699 5 13 796 15 58 1055 1362 13 8071 128 13 15 31 796 7 1 4 622 76 149 9 2 13\n1\t58 1534 99 104 19 5082 618 145 273 23 63 128 149 2 156 386 1414 124 7 347 4239 49 2207 4 1 3557 310 827 81 49 1 957 28 1196 31 918 69 218 347 12 49 8 219 5 564 2 218 347 12 195 2 658 4 81 22 286 805 73 2943 2300 247 36 1 1533 145 20 667 2943 2300 6 160 5 1364 95 5371 69 45 235 4353 26 28 4 137 41 374 1412 145 667 187 21 2 8479 42 158 20 14 2 141 8 214 2943 2300 169 837 69 1738 3916 32 1660 8014 3 1895 5019 395 3 607 871 1738 4035 19 1 3 2817 7969 5393 34 9 6 1 74 85 180 107 3074 4252 7 2 18 488 4041 8 335 44 216 52 68 80 4 2897 3 4 44 129 2683 5424 533 1 21 3 109 15 2 18 7 1 1343 4 9348 1 2881 6 327 195 3 3456 13 150 187 10 764 460 73 8 1517 381 1 141 54 112 5 64 10 805 3 76 229 751 10 655 305\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 452 42 20 1 113 4 1 84 4781 2885 2677 2092 17 86 167 452 74 177 1239 1 67 6 152 452 1 212 312 4 6033 2910 574 934 15 1500 2208 6 167 3876 50 465 6 105 97 10 165 46 1693 49 33 6043 1 293 363 61 1 1076 168 61 46 884 3620 3 9 18 2060 34 1182 1 121 6 5670 14 198 909 32 132 298 151 31 313 1223 114 162 16 79 7 9 108 8 179 60 54 24 2 2223 185 17 60 114 28 566 178 3 2 212 163 4 1 91 2112 1 212 1536 3 1 212 813 177 6 46 1 265 6 93 2332 5 79 9 67 2005 29 225 2 6466 3 20 39 28 108 105 78 67 5 7 358 3768 300 45 51 12 2 347 41 3393 8 54 26 446 5 359 65 15 34 1 120 3 1 8506 9 18 67 9741 16 2286 8 4199 125 9 95 1393\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 296 6 5221 37 552 116 319 3 85 30 2424 11 5092 2073 1874 4 51 12 31 431 4 106 3 6668 19 35 63 149 1 80 7 2 108 33 54 24 336 9 18 297 32 43 4 1 759 3 43 4 1 5784 61 1328 51 61 3487 132 14 5 256 65 2 8190 1 1132 3388 5 43 9483 32 199 17 676 89 79 13 92 120 7 9 18 22 862 4210 3 9574 16 202 14 1831 14 1 81 35 61 7 62 3 49 33 1059 1 7222 108 46 103 4 48 1 120 367 61 2959 4635 1 91 523 3 91 121 9 18 39 400 5372 51 61 102 2011 188 65 14 1 958 583 488 480 48 174 2381 1113 4627 12 169 452 781 11 7184 8805 11 54 209 5 331 7 25 7697 1635 7\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74 1237 9 56 6 50 430 21 1218 8 83 321 5 187 261 2 3530 73 154 123 656 8 192 1345 2189 15 9 2060 5174 1054 363 955 1575 2853 203 3665 1 206 669 57 3388 16 2 645 29 1 1009 1400 37 11 27 88 87 3066 3 24 2 574 4 934 16 2085 8 555 11 3084 337 224 36 5920 1 1 9 689 3 95 6266 596 47 1057 230 1126 5 3 63 26 214 29\n1\t0 0 0 0 0 0 0 0 0 0 0 0 8 192 2284 4 48 7850 12 712 7 1 141 3 93 1 7281 4 1 7721 11 27 12 1331 5 26 45 9 6 4742 370 19 8 192 3584 11 10 6 2 8 192 93 2284 4 1 7850 2330 27 93 89 2 878 7 1 570 6989 18 38 1 7850 11 1 164 369 122 333 11 5 25 2832 1505 11 27 179 10 12 1 113 6989 7850 117 1001 8 54 36 5 118 66 7850 11 6 4330 8 118 11 9 933 7850 12 89 200 4170 41 8 39 339 70 2 542 227 176 29 10 133 1 18 5 3658 592 13 858 16 561 25 6326 383 12 3 27 57 8579 1141 3 2972 94 25 595 32 101 4518 7 27 1019 1 344 4 25 895 6684 7 1 1 2576 11 33 54 321 7 1 25 895 6 128 1505 5 257 1338 3 3298 11 1591 7 1 8 214 47 25 442 32 50 493 35 6 2 1081 95 1799 54 26 1051\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 338 9 18 2 1150 9 852 146 20 105 91 5 1017 31 590 47 2 591 3476 2751 43 168 61 892 3 1180 5 26 37 7 2 18 20 1576 5 26 39 2 439 3416 267 17 15 43 1468 3 1700 999 19 205 951 22 34 53 17 258 1 259 35 1059 3 1160 1 100 107 95 4 127 171 1704 17 33 61 1904 3 89 79 474 38 48 629 5 126 7 1 182 66 6 667 2 263 6 1269 3 1295 3 40 2 2763 230 5 110 8 96 23 4108 26 945 5 99 476\n1\t41 1375 29 2042 1507 9 21 2022 6 2 135 2153 46 156 124 61 1534 68 11 155 977 17 11 6 373 20 48 748 9 1164 103 21 1251 32 1 1453 835 264 6 11 34 1 171 1543 1 1675 4 28 22 9 641 103 5732 267 88 24 485 78 36 4261 993 1 1143 4 3745 3 3169 41 2825 17 378 9 1736 397 1123 3264 8 2564 6678 11 485 39 36 4685 3 3745 3 3169 61 286 5 26 2144 3 8 2309 12 37 436 207 144 33 314 712 1 3264 1527 3 3 5218 3007 2 3106 4 2 163 52 68 800 2344 172 115 13 92 21 418 15 561 142 16 2 53 290 27 271 5 2 1957 136 25 379 1521 29 2613 688 831 16 561 27 6 997 19 443 30 2 558 21 3496 27 153 118 10 17 3232 6 93 2844 19 15 2 4 611 236 2 163 52 5 9 5732 267 68 490 17 1 119 6 3 46 548 16 1995 3 374 13 17 93 46 491 3 4809\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 28 4 1 46 156 104 47 51 66 22 46 2944 197 101 480 51 101 59 2 46 994 236 20 78 414 478 41 1670 1 171 87 6396 62 4458 144 33 5673 13 777 2 13 777 13 150 63 400 365 144 1348 422 117 713 5 87 146 36 476 51 459 6 146 36 476 476 13 1 1840 153 24 1 3376 5 2 305 2939 180 93 100 107 10 101 2925 28 190 561 3 639 2 973 19\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 2167 9 18 30 1 1203 66 12 2 91 10 247 211 29 34 3 1 250 120 61 1 282 12 304 17 1 67 3 1 121 61 1634 10 57 332 162 5 87 15 464 18 15 2 11 57 162 5 87 15 5511 3 58 148 3766 2376 12 304 3 1 18 76 229 64 2 39 60 6 7 1 944 101 1136 15 3466 3 399 17 45 23 617 107 10 83 351 116 290 2 91 18 15 84 148 3 3982 304 861 12 7 6009\n0\t32 273 2295 9 151 28 560 75 88 24 5823 14 223 14 27 2723 1 4 184 3 7273 14 33 730 7098 7273 3 184 13 93 153 1851 78 4281 1 3 961 119 1552 22 728 2242 47 223 183 33 22 2722 926 12 261 56 5418 49 12 9468 5714 95 148 1965 4939 3 204 316 72 24 286 174 106 29 1 769 1 91 559 22 3889 1 53 559 5 1 72 321 5 24 2 19 9 641 2414 119 427 16 38 910 982 1604 8 778 300 1 393 54 26 1 17 3911 1 301 903 393 106 72 24 1 522 4 1404 174 377 510 2112 473 200 3 26 1 53 259 11 5 652 224 2142 12 3534 3 4 611 1 1949 4 1 4 2142 6 52 68 49 41 12 758 77 2142 262 30 1542 6 2 4435 4 1 166 129 5860 262 7 9765 17 11 2589 1080 204 7 66 130 26 404 41 13 659 1 172 5 9 21 76 1458 26 5 26 620 59 19 116 558 957 1090 7306\n0\t52 36 2 822 1 59 85 1 18 40 95 2157 41 623 6 49 1403 2395 6 19 13 92 178 11 6 400 1130 6 49 205 4 112 7444 3 62 5763 7161 22 65 7 1 166 1863 974 1413 51 6 229 2 1086 6104 4 623 1339 7 11 8424 17 630 4 10 12 13 659 1 769 28 4 1 102 46 1904 624 6 160 5 70 10 6 1 6268 919 35 196 19 44 136 10 6 20 19 4908 11 6 44 3 10 6 20 591 211 69 55 14 2 2324 714 60 1808 248 235 7 9 21 5 90 79 867 7 50 430 8 12 852 6756 6 2 138 736 7 1 2664 4 1 16 6268 5 335 2 749 2526 854 1 233 11 132 2 327 129 6 2040 8839 47 29 1 1324 182 56 1 1380 4 1 16 4035 3 13 150 721 1000 16 146 5 3659 16 1 2347 927 37 8805 4 104 4 1 3 10 100 2 53 278 30 1403 2395 7 2 1056 264 280 6 400 1130\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 57 58 312 48 9 18 12 318 8 284 38 10 7 1 7397 8 1227 1023 15 1 746 7 1 1420 8132 3 636 5 70 2 4967 16 9 135 1 21 460 6352 2872 4024 50 430 756 131 3 361 35 8 2172 72 76 26 283 52 4 7 1 46 774 3667 1 21 6 722 1008 84 505 3 304 8 83 118 45 1 21 40 17 8 449 10 123 69 41 76 69 5982 9 6 7095 5 26 2 148 2445 4773 10 55 40 265 30 50 430 1301 1 4055 1 59 2259 12 11 6352 2872 247 51 29 1 55 197 44 9 12 1191 224 1 113 21 8 159 29 1 3517\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 834 341 1 360 2104 29 4 9887 1857 2 4358 67 2746 15 1 113 4 1182 4974 8 920 11 300 1 4 1 3264 61 2 103 52 7445 68 7 3 33 59 57 723 4944 1240 17 6316 61 1016 3 847 12 17 369 9 26 2 10 12 20 1 1182 35 89 10 132 2 1246 2521 10 12 1 164 516 1 35 1253 1 327 103 6971 66 8 1155 7 43 4856 61 4 448 1 29 1 182 6582 359 133 29 1 769 42 279 66 61 496 1474 3 1766 1 427 1135 19 12 1576 16 1 52 3930\n1\t244 2 1080 514 353 69 25 129 12 1135 6256 3 8 143 96 29 2616 13 9848 8 173 134 1 166 16 638 145 31 325 3 8 57 5 176 1882 5 1 1992 4 9 141 14 420 179 10 12 89 2 156 172 3513 8 36 17 214 25 129 2 103 737 571 106 244 403 11 185 12 4234 384 7 919 53 966 1286 8 721 517 66 6 2 13 12 2 9573 144 617 8 1887 44 26 288 65 5 64 48 82 871 444 248 3 283 137 8 192 1056 3096 38 9 158 3 1711 954 7651 240 193 5 64 2 2964 4 120 69 7 444 2 1774 3527 204 60 1 882 3 440 46 254 20 5 534 601 318 42 8912 7 44 13 150 381 9 21 202 1251 32 129 20 7148 341 436 101 7955 595 30 10 12 3090 8 12 93 3414 15 1 393 69 1096 11 1 1438 2641 114 20 6252 286 33 57 5 2686 2808 10 12 5222 13 614 23 36 23 190 109 36 9 141 3\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 152 169 381 9 880 55 14 2 8 12 942 7 34 2225 3 11 2403 2839 10 12 198 160 5 26 832 5 90 2 251 370 19 7171 6967 3 29 1 166 85 70 32 1 2075 6367 5 2096 1673 38 9 3755 9230 28 431 8 591 320 200 2 2839 909 5 1364 2 184 2075 11 485 2 222 142 2 12 214 19 1 3135 3 307 179 10 57 71 17 162 1049 65 7 1 813 34 105 518 33 5303 1 2839 71 17 57 57 86 36 599 2 606 15 58 3570 3 1 1095 1 2839 3437 224 15 1697\n0\t37 38 1 233 33 22 11 62 453 22 2235 5172 3 169 13 252 21 6 955 2878 955 3 955 10 6 7631 3 1213 69 17 20 7 2 53 699 123 2 84 329 15 48 27 6 17 6 1 59 28 7 9 21 5 87 37 69 27 56 40 2 91 67 3 263 5 216 1566 42 20 55 1464 227 5 26 3883 13 150 24 286 5 64 1209 634 7 2 4233 7215 3 55 1 36 1543 25 8092 11 72 22 19 2 163 7 5593 243 68 19 2 142 13 1 206 64 11 1 276 36 2 5774 6130 7 31 1928 1 566 189 1 1668 4 8698 3 8364 4 16 551 4 2 138 6 515 1 1122 4 91 1041 15 58 15 301 7758 293 2170 12 51 55 2 206 19 274 41 7 1 1043 974 16 9 2662 21 1491 1 53 115 13 32 1 3036 4 508 1104 83 55 351 116 85 15 9 628 468 2580 10 36 8 1322 8 24 162 52 5 134 38 9 351 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 180 1887 15 2 163 4 970 4168 732 1755 291 5 5426 11 154 21 33 64 24 1244 2392 11 7 51 221 8 192 20 28 4 137 1098 45 8 99 31 238 158 8 175 5 64 9719 3 45 8 99 2 1073 8 175 5 24 2187 4 2931 7 50 3888 23 70 1 3742 2091 133 2 203 158 8 4176 175 5 26 1 9276 6 2 46 782 158 7 205 42 109 3370 1025 3 42 1119 180 71 2 203 21 325 16 97 1166 3 145 648 38 1 6000 132 14 243 68 971 4 43 4 1 1886 203 2092 11 22 47 127 2569 45 23 175 5 26 99 9 135 111 68 1 215 873 801 8 93 96 6 2 84 5476\n1\t103 7 6125 11 27 2 514 427 189 3380 3 3380 14 27 2495 25 140 421 138 77 1 7176 2523 2 2462 32 800 4 19 1105 189 84 5980 3 1 344 4 29 74 2 6277 521 621 7 112 15 1 706 2201 3 1 2728 4 1 8747 3 218 170 6 2 1325 3 46 1367 11 10 40 71 7 43 16 9 14 45 2 18 38 5240 1556 706 130 936 24 620 1 4 4660 3 44 231 536 7 7 2 9681 83 96 1943 8 191 625 47 1 1884 773 5138 6485 603 1212 1385 79 4 1 170 2879 6 515 1 1538 3 60 40 332 58 1245 7 1 21 480 627 453 32 1803 1290 9658 9659 3 773 9348 52 1 265 6 6740 3 5710 2 185 4 1 212 18 197 101 7 95 111 1 233 11 52 457 86 102 84 1 74 3 29 95 82 85 6 2 729 228 36 5 90 52 2796 5483 56 1127 415 90 126 230 23 63 216 47 144 51 228 26 2 409 7 2420\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 159 9 18 7 49 10 12 74 612 29 1 2691 856 19 1270 195 1 754 10 12 1 226 349 4 1 1305 4929 3 9 18 56 645 2613 42 165 1 3157 1 893 9479 1 3132 16 5766 3 1 2631 189 1068 1962 231 5 137 4 3078 879 221 111 140 3223 13 499 12 2 884 6560 496 837 108 5876 12 29 42 5038 707 7 34 42 304 2891 754 3886 9291 3596 3 55 2 749 1905 2 46 837 85 125 513 115 13 92 4150 32 9 21 19 50 7027 8 176 29 10 3 8 139 155 7 2 85 4 50 2543 3 50 268 15 50 9228 2 84 85 7 50\n1\t52 9558 68 33 61 13 92 67 3009 1 7686 3 4 4657 31 7465 287 8275 29 74 30 44 435 3 98 30 44 5512 6818 1 21 375 172 3 2405 1281 19 1830 15 1 415 200 768 42 553 32 2 7132 633 2821 17 23 1401 11 42 2 13 92 67 6 31 240 628 15 1569 29 268 292 1 1284 1921 3525 22 43 190 20 1116 1 720 7 1511 959 1 644 182 17 8 143 438 55 193 696 1933 7 2 3556 21 54 1458 24 79 3343 50 9453 13 92 21 2071 277 918 9496 16 5122 5019 607 3 5483 607 8 96 11 5019 3 61 407 6662 3 1954 4671 12 13 858 459 5598 5535 143 4190 2 113 206 7927 16 25 132 31 220 593 204 6 145 20 258 1184 38 868 17 42 20 2255 855 30 95 13 659 1 769 1 67 6 2 3476 628 30 2 1313 770 32 3531 187 10 2 328 3 468 229 26 14 14 8 192 38 75 10 88 26 37 775 1979 19 918\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 22 1 426 4 454 288 16 2 1087 21 41 28 15 2 627 3 1202 640 98 9 21 6 20 16 1038 812 110 245 16 137 35 36 4502 1056 8303 4964 98 468 24 2 327 85 133 9 4040 803 13 557 16 1 3 27 2 46 327 7986 35 100 1640 27 965 5 31 6723 618 254 27 440 5 2883 126 4 1 4 25 307 7 1 231 6 6324 5 24 6692 33 19 122 3 2055 122 36 28 4 1 24 2827 19 355 122 5 62 2626 9513 207 56 38 34 1 119 51 705 17 1 21 196 298 4249 16 2 299 263 3 547 1014 2 56 327 103 32 1 518\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 147 31 4762 9572 811 1415 3 844 2 562 136 1707 1 1950 783 27 6 4106 30 3 25 413 5653 3 643 30 3 25 823 6 7096 7 1 285 1 1 231 164 1010 4321 6010 4 1 2125 1228 3839 3085 615 11 1 434 164 57 6968 2200 30 7376 3 27 693 5 149 35 57 95 574 4 4208 15 1 164 740 719 5 925 31 1 707 7637 1 9178 2046 816 4232 5947 5 352 1010 4414 5 149 1 3729 11 22 7997 15 1 6968 3 2350 13 7 1 2 641 441 17 10 6 128 1535 3 15 2 84 6350 1 2316 119 40 20 390 2431 94 982 783 5052 2 8231 7 25 9935 3 1 443 216 136 27 440 5 1291 15 1580 6 128 46 5956 50 2400 6 13 9267 7 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1068 2 3280 119 6 37 806 11 246 44 129 6737 205 740 3 197 1 2664 1 344 4 1 201 6 1 232 4 11 88 56 1 607 120 2435 1 131 7 2 3280 864 66 1745 2 5 4746 2768 660 940 40 58 3656 16 1691 5 26 370 926 253 44 364 2 129 68 2 5 26 7 154 431 45 20 1361 1514 5 64 297 32 31 1137 2821 44 5 2234 1637 4 1055 8742 11 22 1546 227 5 531 139 154 85 60 2656 42 36 2 715 330 60 2 3600 1 3330 188 2 2618 41 720 7 7162 5290 63 17 100 4054 15 28 312 223 227 16 23 5 70 4771 3 921 1691 11 76 26 9 190 26 1 80 215 3 5690 249 2218 1218\n0\t236 31 202 1286 7631 178 1394 375 1025 7 233 9815 106 374 22 242 5 1743 1974 7 31 3699 5 1364 8985 1764 3 37 1 1053 383 613 6862 169 3321 19 62 37 11 1 2250 40 5 187 65 1 13 3057 93 2 525 29 1749 2 6943 189 28 4 1 3 1 4707 633 13 92 5543 2475 22 377 5 26 1097 5173 421 1 2041 35 196 19 1 111 5 25 3544 7289 17 20 30 25 221 968 17 30 1 1394 4910 3 43 508 8872 127 3729 34 175 146 17 72 83 70 5 825 38 48 10 424 318 1 46 182 4 1 21 9431 11 12 2 439 2082 1208 4 1 790 2876 13 2136 481 2031 1216 7 2 1004 589 197 146 5 41 41 70 295 7178 101 1694 46 362 7 1 2876 13 5 11 43 248 16 3031 9687 1456 34 781 1 3 1 1998 91 1058 3 95 21 6931 63 8533 365 144 9 1238 196 2 755 1020 32 9 325 4 34 188 1262 15 3728 3 3 2360\n1\t1492 5 137 11 3143 194 72 22 128 8182 30 1 3275 5113 4 9 500 3 129 6 2 400 1784 3 202 1798 1103 4 2 287 11 214 3429 17 73 4 7521 3837 2019 11 112 16 122 60 308 5125 60 153 8269 851 10 6 39 11 60 4364 5 1942 5 414 15 1 312 11 27 6 31 34 2083 3 13 659 44 547 5 1 4 4590 3 44 129 2080 1389 11 22 7 1 438 4 154 628 1842 41 5075 13 851 6 1549 144 123 27 1959 132 464 188 5 9 21 153 1836 458 7274 1943 3 8 241 1 226 394 269 4 1 158 193 1089 5 844 199 15 2 958 16 257 250 129 3 876 1 312 4 331 13 150 83 241 16 2 330 11 9 21 713 5 26 1842 41 57 7 95 111 713 3 274 47 5 26 656 51 7 1936 1 302 144 10 1066 55 1129 42 3715 42 3 73 4 458 10 6 30 237 1 113 4 2 148 1850 157 8 24 107 19 4006\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 2 323 489 6733 108 10 6 3 396 1 640 1 1048 77 131 6 202 7 698 1 21 6 1674 31 1335 5 4269 1 392 991 3 3501 43 986 265 6655 4 642 1 4629 1810 5686 2215 3 2338 239 526 196 38 1 1446 277 1507 1 1675 101 1 4629 35 16 43 302 102 8191 2536 5433 153 70 5 941 318 1 226 342 4 269 4 1 158 3 60 40 103 5 87 17 44 691 2 4 13 92 80 240 799 7 1 158 7 50 4706 5562 7 1 5686 1 1301 784 5 26 372 7 2 2379 7 2304 1240 1 1052 1270 29 1 387 1 1301 12 7 2588 49 2030 6 107 398 5 3 1599 190 93 26 7 1 226 529 4 1 158 1796 224 1 5 1 443 3 123 31 25 671 3 25 522 1 111 113 114 7 97 703 16 661 7125 258 5774 3760 9 4367 5 6 747 7940 43 104 139 113\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 74 178 7 40 2 1248 77 2 3374 16 9 141 207 2 9602 42 3365 19 37 97 3444 10 7579 294 5188 6 1 232 435 35 1 583 32 4299 3 4675 5 122 16 9688 25 7529 7 1 3690 4 761 453 3 7657 3 48 1 783 403 7 9 470 30 2884 3 4112 7 86 1035 5 473 19 1 49 42 248 15 1 1 18 6 89 37 955 42 169 2 1213 2751 17 100 438 34 656 1 4 1 212 177 6 492 1 80 3 7586 635 353 117 5 645 1 412 608 241 503 23 76 175 5 122 260 7 1 9201\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3046 430 2413 3672 18 76 198 26 1417 30 9 21 32 7 194 3672 266 2 2360 2344 35 2 2741 1004 2207 3 25 3 6 98 5293 5 2909 1 1559 1327 37 11 60 63 473 14 1 67 271 926 1 2041 3426 25 5 17 3672 270 3291 77 25 221 3 136 2202 1327 4910 29 36 8999 40 97 4 1 4873 3 2864 1563 6328 11 3672 40 390 754 3410 7 2 1112 4453 29 2 8050 7 25 280 14 1392 3672 7 685 2 4051 3 211 278 11 1 2286 136 822 19 1 790 3416 623 4 29 683 8999 6 39 458 2 613 441 2 3022 11 54 26 125 1 172 5 13\n0\t9 34 1 265 270 334 14 1087 1663 7585 38 31 594 1356 1 120 2190 318 9 1746 57 198 3340 5 239 1885 1283 357 1299 5 239 1715 5 1231 7744 2789 2 103 1231 1356 47 4 7485 33 152 87 38 1194 269 4 3140 98 291 5 3131 11 312 3 899 19 5 82 2789 132 14 2 604 11 792 7 2 5774 1957 15 2 3 102 6718 1283 1573 77 2 1435 391 15 2 3144 6085 3983 19 401 4 34 9 7 75 1 265 6 6 1 935 6747 5 152 787 265 7 1 541 11 6 1521 101 136 1 74 342 4 1657 87 426 4 1 3787 5473 1 344 4 1 21 6 39 2404 131 1948 98 236 1 1011 8726 4 4 2 526 403 2 91 2538 231 6772 3 1602 2770 32 103 742 5 578 3566 5 49 27 544 560 8 339 352 1094 47 8919 9 12 674 28 4 137 124 11 90 79 1116 75 103 85 8 24 19 990 3 11 8 1130 102 719 4 10 133 9 135\n1\t137 29 1 1748 2520 291 5 4001 122 37 1878 27 40 100 57 2 7927 41 9191 322 95 11 16 2455 5371 2 3551 132 14 1513 26 556 13 2699 15 1 5835 218 6 1 113 7830 113 4278 52 837 3299 21 220 218 2232 183 205 104 291 46 9839 1221 15 62 496 9970 748 3 1 804 4 275 4097 8373 205 90 62 5548 171 291 36 1 2669 3075 7 2 2302 3116 68 1 205 4007 2 627 1700 3 205 22 323 13 3053 424 318 23 853 11 783 6 2 3 1 5922 6 2 423 7463 17 2 423 101 11 6 37 862 37 9220 7 25 37 37 11 100 196 7 1 111 4 1 108 27 63 26 3654 27 63 26 2 747 27 63 26 27 486 7 2 1561 106 81 7408 27 3758 27 3886 27 3 1391 27 3389 1 8373 8 336 9 21 5 3 481 947 16 10 5 209 47 19 1771 9 6 28 4 137 124 23 76 56 335 3623 910 172 32 1705 14 5092 14 33\n0\t508 48 3136 1 82 624 1088 5 139 186 2 176 15 44 3 102 4 126 70 643 30 1 3207 98 1 102 4307 624 22 997 30 1 506 3 22 2954 7 558 4193 1 2643 5936 6 2202 99 125 1 624 3 480 62 11 1 2643 6 1 506 27 7791 126 205 3 1630 14 4563 3 1603 422 7 9 18 35 39 173 256 102 3 102 371 78 364 43 2256 1557 216 29 656 1 113 185 12 1 1890 178 189 1 506 3 28 4 1 624 106 27 1036 5 1890 44 7 44 4193 3611 3 10 181 11 1 282 152 451 5 26 5323 30 9 164 3 1 5132 7796 178 8 920 12 53 17 183 62 8754 889 27 40 82 188 7 1960 9 18 1523 79 4 1 1879 953 15 7623 5088 7 194 1 166 39 2 264 129 2482 42 20 2 18 279 2424 20 55 16 31 1575 1879 18 3 1 393 12 1 210 393 8 24 117 107 7 2 18 3 10 303 79 1841 50 319\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 56 53 21 3 28 11 180 381 133 375 1287 492 1477 14 6666 492 4018 40 2071 232 4 2 3214 16 605 95 280 7 95 18 58 729 48 1 538 41 551 4 166 17 27 123 2 53 473 7 372 32 1 357 42 37 109 4993 35 54 24 179 11 8281 35 1059 132 1119 691 14 1 1161 32 3 1248 88 787 146 9 987 543 10 69 492 1469 1531 75 22 23 160 5 139 540 15 2 201 9 53 470 30 3598 13 1964 56 5 139 19 73 45 261 61 5 187 295 235 38 9 21 10 54 26 2 6576 39 99 10 3 6313 110\n1\t35 486 7 1 161 3 81 5 3763 55 2830 3479 1046 2792 7837 41 173 2464 44 32 9 8 56 1 244 5191 3 7794 17 7 2 678 111 9331 1490 1752 59 844 199 5107 3 3 42 1674 65 5 1 545 5 497 9 9525 3 5157 8 9 213 46 1571 3 145 273 97 81 495 1116 1 551 4 8387 17 8 5062 1752 3 8 96 42 138 9 111 68 160 125 1 401 2948 933 21 544 47 84 14 322 17 14 521 14 1 2849 12 935 10 590 77 2 46 1669 203 1 631 6 1 5006 236 43 4969 160 19 7 9 21 3 1 14 109 14 1 478 1456 22 46 6699 1 9717 1167 4 1 2841 1588 8575 285 366 6 3910 51 93 6 43 1124 7 9 158 15 3776 5 2461 203 670 681 172 94 1 797 1091 21 6235 6 1442 1033 49 317 7 31 1646 3 1490 1752 373 6 2 206 646 359 31 1128 778 90 273 23 83 24 5 186 1 8575 260 94 133 9\n1\t17 10 89 79 2284 74 85 8 455 10 13 6463 69 1 4265 16 1 80 1871 1589 3876 10 12 93 1869 5 43 1396 94 1 13 6463 69 10 791 114 37 955 11 834 1113 194 987 13 3986 15 34 11 1113 75 6 1 13 13 1964 2 6590 16 1139 1189 11 2027 9542 265 3 293 363 1441 17 271 34 689 42 2 5 34 1 1983 802 7 3 1 3 37 78 37 11 42 202 31 363 880 1 120 300 662 11 1201 5753 16 1 2949 3 1 2 103 2764 17 9 213 2 18 23 99 16 1 6199 13 2 11 8551 437 1 794 1356 10 472 1356 2102 41 8 118 564 5 64 3334 4821 4 9127 4 9 18 1074 5 1 6152 4 3 40 71 107 14 2774 4 1 469 4 2094 4974 8 83 96 207 3040 75 87 23 3110 16 1 1973 48 38 1581 1 67 3 1 6 4690 20 1 8 83 118 48 4350 18 76 26 2102 17 8 83 96 479 47 4 1 572\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3555 269 4 396 7525 22 227 5 1564 261 7861 8 114 1780 2 1128 29 1 4691 3 406 43 9079 421 82 10 12 39 20 50 4259 4 42 38 269 105 2043\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 211 1290 4173 2451 11 40 122 14 2 1949 2892 35 196 1 869 4 851 3 4173 6 155 7 1100 2435 204 3 276 5 26 246 2 53 387 3 2051 14 25 256 655 1327 6 93 1515 3 1 67 6 5 1 1809 17 1 201 2989 2395 3386 14 6 84 3 151 1 21 279 3737\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 28 4 137 104 207 832 5 753 197 685 295 1 994 6880 5 134 51 22 1021 188 3 2231 1552 160 926 660 1 2319 5026 4711 200 15 2767 6199 13 92 538 201 9587 9 18 845 1 3 34 1 201 22 109 4462 5 62 4711 14 1 8074 35 40 10 34 69 3 98 2019 10 399 14 1 1805 17 1056 5284 5847 14 1 4439 147 282 19 1 178 3 2999 14 1 1 67 2027 824 4 3596 1216 3 1045 3 6 1227 31 548 13 150 130 734 11 1 1667 6 93 6760 313 3 1 4 943 1117 6 304 308 23 853 835 160 3377 13 614 23 335 7503 104 15 1552 3 3423 3 22 3023 5 1942 2 1056 885 3845 2097 541 98 9 6 2 115 13\n1\t0 0 0 0 0 0 0 0 0 0 0 520 226 2955 6 1 1837 368 382 1 833 4 3034 7946 7489 6 1124 7 82 124 17 100 37 626 280 14 1 5279 7946 3 1297 506 6 25 2049 9433 13 659 1 116 1916 4409 23 3 116 417 142 29 1 531 1738 2 1214 41 1211 17 10 12 540 98 3 195 5 369 2 99 36 1 3 1 226 369 1 374 947 2 156 172 183 126 5 124 15 8386 893 3 1883 4046 13 4196 114 1916 2197 5 127 73 33 2450 368 460 36 2501 3 294 17 1 178 7 1 226 2955 6 14 6402 14 4346 7 1 13 92 4 1 482 185 4 1 4 9 141 12 406 30 82 104 642 1 482 993 1539 8404 14 1305 1037 1 539 204 6 11 8404 314 5 309 13 2 1114 7 2377 2312 7 7 1 2495 1804 47 4 1 2312 77 106 33 22 519 30 4694 457 2 199 260 11 1 4374 4721 1 634 66 1 3 544 1 7946\n0\t169 14 184 14 43 2639 4 17 1227 696 7 80 3635 115 13 252 324 4 1 215 21 12 2619 3 30 1 2741 3 39 36 1 324 4 7431 800 4 1 1 196 52 68 39 1 1328 1 296 168 22 20 670 14 3936 3 761 14 137 1253 5 1 84 17 83 56 734 78 5 1 67 463 73 51 6 103 917 65 19 450 115 13 92 21 418 142 51 22 2 156 168 279 4 129 3612 3 51 22 227 4421 5 932 43 1560 1137 4 1 250 994 308 245 1 21 792 5 77 2 1002 6452 803 13 92 121 6 53 55 1 296 22 4010 1 1177 6 167 53 16 9 1165 3 2489 3 1 293 363 22 20 91 29 34 16 62 85 5889 43 4 1 748 3 22 152 46 452 115 13 92 1003 465 737 4 611 6 11 51 6 103 5 162 215 38 9 135 245 3548 2 78 52 979 2328 7 25 406 124 69 80 4 66 22 279 133 45 23 22 2\n0\t1 102 124 22 51 6 162 5 26 107 7 9 2426 154 1329 4 10 40 71 248 2 129 47 4 1377 15 3944 2813 6897 2 3 5000 7 31 469 178 6160 1798 447 168 6160 3 37 778 8 192 30 1 233 11 37 97 214 1 21 5 26 966 9 496 7758 21 181 5 24 71 89 16 1 4707 1734 4 253 902 230 3 674 6211 15 245 8 2496 132 2 2671 5 2 551 4 2751 64 227 104 3 23 56 6546 8834 24 107 10 513 3 136 10 6 306 11 8 159 1 2614 8 894 11 1 5620 168 54 720 50 790 1062 4 218 5701 13 1 21 6 20 197 51 6 43 46 53 443 216 3 1 2036 6 2332 278 93 1605 552 10 32 101 2 351 4 290 9 6 1 74 4 124 11 180 1586 3 45 8 61 5 64 52 8 504 8 54 24 1 166 1062 4 122 11 8 24 4 31 240 206 17 20 670 1 1744 508 90 122 47 5 1142 6070\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2634 6 28 53 177 7 9 3515 1140 5 26 37 6485 17 42 1 3880 105 91 60 143 87 2 10 54 29 225 24 89 9 1378 72 64 174 17 444 1677 774 3 996 6 161 41 3070 1 164 276 36 7994 6 1 692 3641 23 54 4749 1 67 57 5589 42 36 33 57 53 1154 17 143 118 75 5 450 1 861 6 39 908 1319 1 1177 6 4737 3 1 182 1122 6 2 2518 953 15 1054 1552 3 7831 65 1488 6 84 14 1 7 2 4543 111 17 20 55 60 3389 32 101 1652 3 20 211 39 908 161\n0\t344 32 3127 13 677 22 2 342 6498 56 52 68 2 8189 17 646 59 787 38 4 922 11 8 24 15 9 108 28 6 1 111 4928 6 1432 27 123 2 547 227 329 7 25 221 7630 426 4 111 1 344 4 1 201 6 311 688 5 24 122 3814 7 1 155 4 2 41 246 122 6235 77 1 633 7027 5 87 162 6 39 4553 896 144 24 122 1620 2633 564 154 27 6 10 5 90 122 176 322 275 35 6 9931 153 56 321 5 26 89 5 176 52 13 92 330 465 8 24 6 1 312 4 144 511 95 633 457 1 717 4 910 5633 133 4928 139 140 127 5 70 25 8 12 1385 4 1 3921 7 8 128 118 48 23 114 226 7 239 1723 51 54 1030 5 26 31 4607 111 4 5184 116 8133 68 2 1524 1258 1439 11 7295 111 5 78 19 3874 47 4 116 7130 31 5626 462 16 9 18 6 1 524 4 1 1156 8 497 11 7087 2980 1 321 16\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1915 23 175 3670 1357 1053 6031 3 2 793 4 98 9 6 1 131 16 13 92 1292 4 534 2986 213 235 147 1240 698 236 125 704 578 5850 3686 1 312 32 2 17 8 1017 1 389 594 133 10 154 32 357 5 13 6 4966 3 417 22 39 14 115 13 92 566 168 22 355 1824 17 1 4996 189 215 9398 3 2825 321 5 26 2 103 222 138 395 981 929 3 10 981 36 275 536 7 1 1059 13 659 50 1520 534 2986 6 2 84 2737 1935 1029 15 297 31 238 325 88 1006 3410 17 45 317 288 16 254 1794 139 99 218 1585 41\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 28 4 50 430 104 4 34 85 3 113 21 4 638 123 2 84 329 7 1177 9 141 27 151 10 211 3 1583 231 2331 6 313 14 3 380 2 84 1663 6586 6 31 651 8 9 21 60 6 2 103 364 761 17 128 7 43 1192 6689 6 2 7 121 3 286 380 2 1016 1663 6 1442 14 1 532 3 380 2 1485 1663 6586 6 609 14 1 9 21 40 1073 1357 231 589 3 1151 2 331 19\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 346 2370 6 15 2 3983 4 1355 1 558 4292 3405 77 1 136 1 613 1557 4364 5 241 1 3257 38 3804 3776 5 1 1 558 1207 1 2100 792 5 2172 1 1387 38 1 1869 5 1 305 13 4550 1706 13 1 644 330 728 1 644 6707 794 9052 2969 9178 8194 2093 794 7559 3 167 4600 794 5063 1 78 52 837 607 201 1680 8713 794 794 3518 3 5596 690 9850 1966 794 561 1631 3 561 1966 6 51 174 18 393 15 2 1341 3937 5 1 115 13 42 2 115 13 1 1706 4332 1403 5110 8713 8194\n0\t0 0 0 0 0 0 0 2003 261 255 77 2 21 4 9 574 4 21 42 20 197 667 11 31 4 11 84 6272 4 255 7 5769 13 266 102 1 287 35 4850 9954 40 4603 220 1 477 4 387 17 35 93 6 361 31 2986 1172 5 13 1226 2671 49 8 159 9 12 2 9984 4 106 24 8 107 9 10 498 827 8 24 107 10 1704 17 7 2 18 89 78 406 68 9 461 1992 15 31 2 5684 2418 4 8633 89 7 7 19 1 1212 4 28 35 57 58 1874 2131 93 3807 2 4794 3 89 157 898 16 492 78 527 7 154 5105 15 2804 1353 17 52 68 1458 31 6921 324 4 9 13 3514 20 5 9 6 20 2 1201 21 3 1421 14 2 4 1799 73 10 12 1 226 85 3 1070 46 53 171 17 1442 54 26 371 372 65 1 3 1151 11 33 61 587 1987 94 11 23 190 321 2 1302 20 73 51 22 95 168 737 17 5 70 3996 4 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6114 69 987 70 11 826 260 1705 51 22 2 156 178 7478 1208 9 2418 4 930 17 630 63 5611 1 994 7260 276 36 3360 4504 7 3 1630 7 2 696 5042 8 1797 812 7260 73 27 6 2 2603 7 940 17 244 1233 7 9 108 51 61 102 119 456 7 9 28 38 2 635 35 3448 6126 140 4 866 8811 3 1 82 38 2 287 15 2 987 543 9 18 40 58 9413 312 4 48 10 405 5 134 41 106 10 405 5 3192 1 120 67 456 19 43 3444 17 22 7 58 907 1822 4 101 2403 7 2 1471 1 212 177 6 904 3 1445 3 98 51 6 31 2579 1233 1361 17 83 1460 1013 23 112 2706 3263 37 78 11 23 63 99 3 10 6 9901 30 307 6484 36 1 2029 7976 296 9136 11 40 43 323 1865 104 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 80 82 708 38 19 1 970 8 3 50 231 214 133 9 21 19 305 29 408 2 528 351 4 85 3 13 659 2179 9 12 2 21 370 19 2 263 603 846 12 101 105 1269 30 4506 243 68 242 5 348 2 1618 67 7 31 1244 3 935 7215 10 12 4983 11 1506 2966 650 4712 3 254 5 4329 15 239 82 4 264 32 2 2596 41 37 29 1 410 89 16 84 3 935 3817 1453 10 123 1265 48 123 90 16 84 956 6 900 2392 3 69 3 69 66 24 2 2353 2 3 31 3158 13 252 232 4 1262 4408 69 7048 5 1 3350 839 7 2 1596 5528 69 6 2288 3 7 1 13 977 16 1 249 3 305 4 1 368 3 598 21 4 1 7836 3 3787 603 7303 1392 3 171 563 1 1548 4 935 67 3 121 11 928 9540 13 252 6 28 305 11 9 231 76 20 26 1157 140 8644\n0\t2036 3 1043 63 117 2500 2 272 4 2771 5 2 904 3 396 3627 1567 11 76 20 26 556 1067 30 2 3930 6 7438 14 2 496 2457 16 1 8598 4 3522 136 44 510 4070 40 390 31 6580 842 740 44 234 2496 73 4 2944 453 655 17 49 2662 3446 5 44 8686 4774 792 2 147 329 14 2 29 1 2015 2473 1957 106 1 4 1 429 6 2 102 3877 2857 7194 5 1 9481 524 6 8019 3021 664 5 44 4570 15 3480 7 1993 5 2 3522 5768 613 4972 9051 22 5293 5 4154 1 6721 136 5 1851 2792 16 603 7876 278 7 44 147 6 227 5942 30 44 14 5 24 1242 8148 4 923 3477 16 768 2387 7 2947 3 2987 132 14 2 101 5 2 5229 4 1 11 6 237 5708 32 1 1167 4 1 135 593 6 3 20 7092 30 1043 3 478 1 1505 15 2 5175 774 1 1324 182 4 2546 1131 11 6 17 5 1 28 1195 121 473 784 738 9 4123 14 2 3877\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 555 7870 7602 7543 54 209 155 19 3252 10 12 1 700 131 33 130 90 767 189 1 82 767 17 4 448 11 54 26 7578 17 8 555 10 54 209 155 3 90 52 4916 786 209 1 131 12 332 2406 23 339 539 197 283 31 2351 51 6 2 56 211 185 7 154 431 3 1069 1 131 12 37 78 138 49 9010 3 2413 61 160 47 15 239 1715 137 61 1 113 4916 7870 7602 131 6 1 10 76 26 3 198 76 26 1 113 131 1218 10 12 56 747 49 1 131 33 130 90 147\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 80 815 1 210 18 8 24 117 64 7 50 389 8329 1 119 6 903 3 1 212 9186 3697 930 6 39 37 2317 1 389 18 6 3206 3 6465 987 543 194 42 39 2 8098 9 6 39 2 1445 586 391 11 130 24 100 89 10 5 6247 1 716 22 20 211 3 1 121 6 3402 8 6864 4 5 23 552 116 319 68 64 9 4533 391 4 2145 8 57 5 5682 1157 140 103 164 16 31 594 3 2 350 5364 50 671 54 8 192 5713 11 146 36 9 54 55 26 179 35 5051 9 1 171 24 58 860 48 37 2233 75 87 127 81 70 77 33 22 253 319 142 9\n1\t11 1104 109 23 70 1 137 30 1099 120 3 31 855 4 1639 239 3 23 24 5 56 3304 116 2407 5 1942 1 2527 680 11 9 3349 88 3109 3 8 96 11 236 2 16 137 35 241 11 157 6 36 476 17 98 9 6 1 1449 234 4 8033 13 2718 920 11 10 6 299 5 99 1 111 1 3392 371 127 7523 795 77 2 67 66 1 486 4 127 710 45 23 24 2 342 4 719 3 22 288 16 2 8940 2176 1 334 5 87 110 41 45 317 32 8099 3 662 160 2882 1441 9 76 4783 23 136 116 22 115 13 76 20 139 224 14 31 1570 3712 17 10 130 2210 2 1280 3421 188 24 13 1149 6 15 1 63 59 26 2786 17 10 191 26 1457 45 23 485 29 1 2252 7 97 4 116 221 157 3212 116 74 1549 1565 1 425 116 226 23 54 149 2 251 4 1524 1610 795 914 65 5 592 13 6570 1 8 3001 5 652 385 31 5 1346 5 8892\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 197 894 1 113 4 1 3783 4 294 5043 7399 77 2 382 135 453 30 745 1 425 148 442 5253 2717 1796 3 1628 2604 3 598 371 15 1 344 4 1 647 22 37 425 3 1 454 1968 16 1084 126 130 24 71 340 31 9191 55 1 346 3558 132 14 580 22 3193 5 7419 10 666 2 163 16 1 869 4 1 2137 3 1 2838 4 1 120 7 1 821 458 480 1 4 28 481 352 17 230 2912 5 3 68 5 783 3 1 7462 2961 4 2125 7396 8 24 284 1 347 29 225 2 2596 984 3 219 1 18 202 14 97 984 3 1811 5 26 30 5679 45 8 57 28 347 5 186 19 2 3063 5797 2 425 2881 54 26 1 1412 845 34 2349\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7089 392 104 4891 106 508 87 1375 3 11 63 26 7766 32 2 2806 4 1 28 106 23 63 230 1 3532 1676 395 4431 4 101 457 9678 1 2956 8948 1 7686 81 543 1208 126 49 7 22 198 104 8 149 104 36 3 2 4428 935 22 17 102 3359 4 104 11 23 356 2 2771 5 1 120 7 1 803 13 252 21 3316 19 11 952 14 530 10 2656 4 218 4066 3 11 4556 6 403 1 260 1606 127 1481 114 1 260 1689 33 57 4556 3 10 6 4546 7 2 111 5788 15 1214 3394 17 10 424 5 1 46 769 2 306 67 4 3385 108 370 19 1 306\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7816 8 9339 5 274 1923 1 233 11 7 4194 14 148 1 18 12 676 4304 5 79 32 1 8 11 4299 8 83 241 7 3804 17 8 128 338 6495 37 8 88 414 15 2938 13 2298 55 15 11 3946 1 18 6 39 20 46 452 42 89 3 4278 17 10 153 56 1708 23 29 513 51 22 375 2103 3 8 39 485 29 126 3 179 8 143 504 197 152 4700 7 1 13 4804 1 5836 153 90 1821 45 1 1426 516 9 6 2262 4 403 1 188 10 181 5 1718 98 144 1 898 123 10 321 5 333 2 3496 1 182 12 9034 33 515 256 10 51 14 185 4 1 1 18 4102 30 6458 42 34 1689 17 16 11 5 216 10 56 693 5 26 29 1 3587 17 33 173 256 10 29 1 357 73 98 33 187 1 119 6927 10 7 29 1 182 39 89 10 1382 47 36 2\n1\t65 8 159 9 18 37 97 268 11 50 1508 57 5 751 174 1919 973 73 1 161 973 57 6977 3335 13 1226 231 2071 2 1919 973 4 9 18 49 72 4323 2 147 1919 5416 29 1239 50 1916 247 273 11 9 12 31 3271 18 16 2 394 349 161 17 73 72 57 39 969 2 147 1919 2090 60 369 79 99 592 13 4567 8 1113 9 18 6 154 103 1161 1 18 1263 2 1442 4893 184 304 5329 2891 184 91 2837 3 716 468 59 70 49 23 70 814 2 342 4 663 989 8 9046 1 388 3 219 1 18 316 94 2 223 290 29 1239 8 12 7895 98 544 517 38 75 78 8 336 9 18 49 8 12 3474 3 3884 2034 2056 1 839 247 14 84 14 8 1 121 6 167 573 1 857 6 167 573 1 716 1121 211 8244 17 1 415 61 128 657 180 2260 960 55 193 1 18 839 40 1241 16 503 8 128 96 42 279 1450 2682 16 1 53 161 268 23 118\n1\t202 34 4 124 61 1134 7 1 226 156 1166 571 16 3 2472 47 1 3789 12 20 1111 8 920 458 17 11 12 100 2818 3 1 67 384 53 5 437 38 1 1967 21 8 63 20 134 3128 8 24 20 107 10 5142 28 177 193 8 118 16 1432 45 54 24 1783 79 16 137 277 581 8 54 24 367 1661 5 34 4 450 8 54 24 367 1661 5 1 8125 73 1 67 12 84 3 73 23 54 70 5 309 15 2077 5689 3 1984 8 54 24 367 1661 5 5177 9232 73 51 54 26 2 163 4 238 7 194 73 1 67 12 53 3 73 23 165 5 634 15 294 3 7 9 28 8 54 24 2371 73 8 54 24 1866 2 184 8 54 24 71 446 5 2062 43 797 3 884 2588 3 73 8 54 24 71 446 5 4420 8358 9212 947 5 64 44 7 11 9477 9 28 12 2 53 1412 4 561 2423 3 10 407 12 279 2 176 29 7 1 13 47 4 394\n0\t3635 115 13 260 51 23 24 2 4 2392 32 218 218 103 3 2 156 82 3556 104 7 1 3875 630 4 10 6 46 548 3 16 1 80 1871 468 6113 116 111 32 178 5 178 318 42 8137 13 20 55 4968 3482 3 638 352 3291 1264 479 39 7 10 5 1351 65 2 3 83 291 46 4187 19 685 10 62 115 13 2679 1 276 4 194 229 3451 27 61 155 19 1 15 3632 341 35 63 1844 3 322 35 2 5883 5576 41 9324 3940 41 1034 10 6 444 7 5 13 872 1 2629 468 64 81 70 62 9028 65 1208 9012 65 7 7932 285 2 1330 47 4 62 6446 966 3 8 179 4 1 12 1 80 4412 18 420 13 2687 8360 42 20 279 116 290 8 173 241 8 553 23 14 78 14 8 1322 45 23 87 99 194 39 64 45 23 63 1810 1 3 657 3482 196 14 45 23 143 64 11 588 224 250 1170 1417 30 2 13 4255 2682 69 127 5967 76 187 23\n0\t2 1073 98 23 76 1682 80 4 1 623 621 1289 3 6 39 13 614 10 6 2 1151 23 76 560 144 2 259 54 875 15 132 2 13 614 23 176 29 10 14 31 238 23 173 56 1622 16 1 8092 13 858 23 63 64 9 18 39 1082 5 1917 235 2363 2072 14 1505 1 2837 22 631 8492 3 9 21 12 174 525 29 2 574 108 9 618 40 1 210 288 2837 4 11 1818 485 167 501 37 114 1 3106 55 1 8492 32 1 485 138 68 1 120 7 9 21 22 1 950 6 2 2792 25 1327 6 198 33 24 2 493 35 40 2 5588 1383 7141 3 174 493 35 6 2 29 28 272 7 1 18 1 950 3 1 1383 259 566 15 18 6 39 1169 2317 8 36 1 178 49 33 22 7 1 1957 801 6 515 20 2 6486 17 52 1458 2 3 1 950 649 1 5310 11 630 4 126 22 187 79 2 8552 8 192 2992 3 8 176 1186 68 95 4 450\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1868 159 9 21 172 989 285 2848 94 534 49 1 2240 1009 12 2336 36 2 10 3565 437 55 193 51 6 2 1445 1329 5 1 21 10 6 109 453 4 217 22 46 24 2 53 1300 371 217 151 2 7502 176 18 36 9 229 511 26 89 7 127 4210 3013 225 20 7 1 220 10 181 5 188 36 7703 4470 9 18 1501 11 15 2 964 201 217 93 964 1177 2 53 18 6 2 53 18 58 729 1 79 5 149 47 3042 3030 2436 217 7 1 774 958 76 841 122 47 15 217 7 70 47 116\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3326 3751 621 16 2 345 2646 78 5 1 4 25 8591 435 13 3 80 4 399 5262 67 38 2 1112 4 1 49 2934 876 408 2 4 2 16 25 1007 5 6 1 1055 15 1 9681 2333 136 294 266 44 2002 17 58 28 7 1 21 6 52 761 68 411 15 25 1103 14 7924 13 172 406 30\n1\t153 369 142 32 51 778 8 128 449 5 64 9 28 316 15 706 41 4273 2 8324 54 152 26 113 16 2 21 36 9 36 193 8 497 2 538 2673 8324 6 2 222 105 78 5 1006 8279 13 3371 34 4 11 1113 8 63 59 19 174 3102 135 42 1219 5 149 2 21 11 3 37 97 5616 3 5 932 146 11 6 37 979 3 128 3375 1 21 6 5734 276 3 981 84 3 6 1029 5 1 15 10 6 7925 722 55 45 23 173 1236 34 1 1733 19 1 74 3817 17 26 273 5 29 225 70 9 15 547 14 1 706 6981 11 6 5869 47 51 6 301 4533 3 123 1 21 58 2028 29 2616 13 5 2 46 3656 410 3 145 20 619 1 710 165 62 1042 136 1 344 4 3572 341 1 344 4 1 1214 6 128 1000 16 2 2076 4 9 135 17 16 137 11 36 1116 2570 3 623 3 1688 10 6 2 21 11 481 26 55 193 10 88 39 14 109\n1\t337 826 47 3 969 110 9 18 123 20 169 1 166 3508 14 1 1239 3 10 6 20 169 37 2642 17 10 6 542 227 3 8 343 11 10 2336 2068 19 1 13 12 46 53 14 5036 25 278 12 9728 3 286 254 227 16 1 545 5 241 11 27 228 152 26 446 5 2711 7 1 234 7 66 27 2058 28 4 50 1522 546 12 39 94 27 762 3 6511 77 1 6192 4 1 5 841 5 64 45 60 6 52 68 60 25 708 22 1325 3 286 9366 66 2964 109 15 1 344 4 1 178 14 10 13 92 82 201 1144 61 93 109 2163 3 33 2068 5 2230 31 548 3 215 135 10 6 20 311 2 7179 4 1 74 18 3 10 40 2260 7 2 696 111 5 1 111 9679 366 2795 1662 47 4 9679 2016 51 22 264 824 66 90 10 2 1684 18 15 2 696 13 614 23 36 1706 104 8 54 354 9 461 45 23 2923 116 124 364 1909 98 2497 146 1939\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 40 297 11 151 2 91 18 279 133 69 4865 2858 103 5 58 2896 3140 91 4678 228 55 134 505 1445 67 2131 802 11 139 19 237 105 42 425 16 20 5 798 1 3185 19 2 383 69 2076 116 2 383 69 1236 2 91 4961 97 13 92 59 302 8 143 1090 10 2302 68 1315 6 73 236 20 227 2270 1349 3 73 480 86 2896 42 59 31 594 223 69 4299 2 18 36 9 130 24 71 29 225 269\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 134 9 21 6 311 2 4 3 2 4 622 6 11 6 20 48 9 21 3191 13 1118 9 21 6 6 2 878 19 1 4 1 1908 2243 9 88 26 16 95 1127 1 1175 11 9 3303 6301 81 3 2752 3 1 111 37 97 81 2497 5 311 1959 3 396 9914 7 1 3303 197 517 16 2449 1 233 11 10 6 1 3403 1908 66 6 7 1 540 6 311 73 4 1 1109 4 1 306 67 1 21 6 370 5 6101 9 14 2921 421 181 5 773 1 1387 38 48 1 3403 1908 40 248 29 86 622 6 396 20 84 3 6 146 11 124 36 9 3501 3 11 693 5 26 1661 72 130 878 19 1 3030 30 82 17 11 6 20 16 1 4 9 803 13 499 6 31 491 21 66 758 79 5 2187 3 109 279 133 69 72 87 20 2221 1 2747 72 22 3597 5 3640\n0\t5 66 54 652 5 1 170 3 411 3395 4433 1 744 1 1761 204 6 58 364 2422 68 25 101 2 4 1010 7 585 4 6495 30 9 387 27 198 181 5 24 8362 43 2327 40 5 216 47 7 639 5 26 446 5 1179 77 239 1 7941 4931 25 1191 371 29 154 473 3 1227 10 5 998 65 6676 3312 977 6 1080 2835 62 4960 31 161 3745 217 3169 3484 52 68 5 47 1 72 1229 19 277 748 4 628 1 3058 585 4 2 1086 342 35 451 162 52 16 1075 68 62 1404 14 2 1189 106 1 487 615 25 1007 4823 7 2 282 32 2 345 231 35 5 221 2 7488 4 44 221 395 28 74 44 5 2303 628 98 1 103 1962 1912 608 5 58 3 2 4188 4 2190 19 308 316 30 96 4 162 17 4065 3 963 735 47 2956 2449 51 6 373 2407 29 216 737 17 10 6 15 103 41 2650 136 1 790 4605 1782 863 1033 28 1 21 14 2 2737 109 29\n0\t310 577 14 46 5973 3425 11 316 143 90 78 356 571 7 2 2855 1772 9 2045 391 4 1963 2012 11 9 259 40 58 35 89 122 2 1392 55 2 2855 206 29 115 13 5 1 21 1705 48 418 142 14 2 684 498 77 2 102 2753 770 16 2 4390 1555 31 2138 10 696 5 58 3465 106 1 358 216 16 2 4390 3 1555 31 195 479 62 221 109 236 43 5393 41 11 440 5 352 28 4 1 7 25 3132 16 112 5283 5569 48 653 7 1 769 180 58 3742 8 6043 142 48 903 8856 8 173 241 33 55 612 110 3 75 4412 5 7 62 221 16 66 410 114 33 90 10 69 1 345 1297 29 226 41 1 3997 7 463 1175 10 153 3821 1070 526 40 95 2481 48 151 2 53 18 3 229 1071 132 9418 9357 13 4395 2 386 753 73 236 162 5 787 38 17 1 692 4830 4 3095 2855 130 720 86 442 5 3 657 9 753 6 78 138 68 1 18 2330\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 20 818 7 1 74 2997 141 2 21 11 742 3370 8 192 93 20 818 7 742 2997 66 876 199 5 1 742 757 4 1 166 141 1547 10 6 128 31 1409 13 234 6 28 106 6272 4 4038 6 3021 7 627 17 2997 358 188 105 4506 10 153 729 35 470 2997 358 73 1 263 8787 1 2717 4 2 74 7 2 356 51 6 58 119 73 1 120 24 1580 6067 5 634 1 111 33 1690 1031 1 215 15 41 197 25 2838 883 551 6 2970 7 1 225 1202 5042 51 6 105 78 5 37 8 76 20 8360 8 9 4285 436 1 3416 7 1 324 6 52 3271 5 1 7237 263 9 18 6 370 778 565\n1\t118 27 6 355 8449 115 13 2609 6297 62 8374 19 2 251 4 3 810 33 1023 11 73 33 190 100 64 28 174 805 33 130 90 1 80 4 110 4649 2 5813 4 808 142 2 3680 37 11 27 3 25 886 112 190 5 2 558 2312 7 1 750 4 1 366 5 4004 19 1 288 65 29 1 2968 3 1 460 3 133 1 3958 209 960 115 13 25 2902 7 1 1151 10 6 258 49 14 1 46 5501 4 2 2670 2378 9 360 170 886 5 9720 32 25 27 411 15 2 1108 29 1 2276 49 27 44 5 7292 29 1 166 1780 7 350 2 2463 49 1 85 23 39 118 9 304 3 1846 282 76 26 602 15 3152 436 55 1136 3 16 1034 2650 60 229 495 983 136 35 741 65 770 29 3080 41 1623 244 1 558 76 139 155 5 1770 5 64 44 805 59 5 3235 65 13 5020 48 16 79 12 2 46 4641 6 2 304 108 8 496 354 205 10 3 1 5409\n1\t5175 4 2174 392 11 136 30 8283 2726 1093 6 80 9281 1 4235 22 2474 2696 4 1091 2461 1 632 206 12 1 84 962 5850 3 25 748 4 1 7045 4 22 738 25 113 916 1133 6 46 8566 14 1 1 4 1 7220 1556 6 31 1381 4183 1 121 7 1 7220 1556 67 6 20 9 12 2 525 5 2964 1 4 9 85 15 1 4 906 1 2726 1093 2048 224 6 5403 91 3 88 24 71 248 78 1824 55 15 9408 9 6 591 220 1 168 4 1 1598 22 46 6699 9 6 30 5653 2313 4510 11 1 40 1 4528 4 4296 6230 71 6471 37 530 570 1193 6 52 3824 195 68 2233 7 31 1592 4 5733 1 178 6 7092 30 1 9542 265 4 3361 1777 603 226 442 8 13 5384 1 1919 2639 4 9 21 22 332 2680 15 686 1813 4955 80 2639 24 2619 47 2 243 240 5175 4 4975 4572 3 5779 11 270 199 32 8974 5 8 449 2 53 305 5027 4 1 389 135\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5899 7939 1 6866 6274 7 2 1016 7469 3 2367 1791 3 2393 187 837 453 14 33 198 291 5 1405 115 13 724 209 19 368 69 2 1083 1 81 4 8422 2977 5 730 2 2 3 5 1 1800 3846 98 7323 10 47 19 1 3180 16 1377 4 1 115 13 55 2363 7406 11 653 19 1 2134 601 4 1 4659 285 1 2660 561 5899 3 1404 1030 5 24 5225 8422 707 16 1 2134 2672 16 1 296 1305 13 902 26 3023 16 2 6951 574 4 837 15 9 3936 640 4077 5 6846 116 522 7\n0\t858 1 8267 119 5985 615 411 19 1 549 32 25 221 1098 25 59 6 1 74 6769 3 444 6277 5 348 261 38 62 16 28 174 801 6 144 5985 1200 1 7 1 74 17 6 5985 56 41 6 27 311 242 5 751 85 318 27 63 564 1 45 27 6 75 63 27 352 4012 1 8267 525 136 599 32 1 1085 115 13 92 628 4143 5081 465 15 9 21 6 11 236 58 16 1 302 516 1 213 11 48 1 1324 377 5 26 9370 28 54 96 17 1 410 6 100 369 7 19 144 1 175 5 564 1 275 995 5 256 11 7 1 263 115 13 872 835 15 638 147 8549 181 11 60 12 256 7 1 21 3806 14 2 391 4 48 12 44 1734 114 60 87 235 82 68 176 327 7 3348 8666 3 2 13 677 22 37 97 922 15 1 1048 804 4 1 9600 14 5 26 3534 1 238 6 105 728 30 1 2386 273 5 26 30 137 2557 227 5 99 1 2803\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1064 512 5 26 2 222 4 2 49 10 255 5 297 3 292 1 1262 839 6 52 4462 5 8286 68 298 1794 8 63 26 46 1544 65 38 581 4095 13 2078 34 632 581 245 22 138 68 800 8 169 815 54 187 2344 102 3108 1839 9 644 13 1226 497 6 11 81 165 37 2337 38 9 73 10 12 202 9811 7 541 5 48 23 63 64 7 2 3103 16 1 364 2 21 11 276 36 2 309 6 13 252 158 245 12 13 677 12 924 95 67 37 10 19 298 2331 1 59 589 7 9 21 12 704 1 1398 54 3131 142 1 9544 41 1265 814 1052 3 4673 1765 3911 84 13 2044 26 43 4 1 1769 12 1476 4483 707 3 1 3978 128 7\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 2094 2855 3425 14 237 14 1 376 5529 3 112 8806 4 8084 48 56 2705 79 38 9 18 12 1 2271 5534 4 4413 2 35 2 583 15 275 94 24 447 15 1 164 3431 1 231 2 6 20 2 4413 1070 6 60 2 53 9362 16 2 4413 8 24 107 1297 104 3 756 289 11 89 394 5 1194 172 989 11 3691 15 9 2272 52 1 212 1292 4 1 18 6 903 3 332 8 853 11 80 2855 104 662 928 5 26 17 33 83 4294 5 26 1497 9 18 451 199 5 385 15 1 647 17 9 173 248 15 132 2 3976 2971 8 54 24 909 138 32 3\n1\t1 9233 4246 7 2 178 106 1 3165 30 1481 3 792 5 1193 1 1342 7 66 60 615 992 488 140 65 421 2 212 2090 4 3 2504 6305 876 2 1697 182 20 59 5 992 17 34 137 200 4341 13 14 2 391 4 9 6 237 32 1 3880 9 6 2 21 2553 1 5570 4 2504 1 363 4 1 1109 4 3 1 6967 4 1 423 13 150 1991 10 7 1 462 4 9 391 14 3 7 1 182 191 198 26 3 30 3788 55 3067 182 6 30 413 16 413 395 415 473 295 3 59 1 176 19 197 13 858 5 1 78 8593 9 6 2 2553 4 1 363 4 882 3 1 5113 4 2 234 3424 1341 30 1842 5 24 295 32 1 882 54 24 1953 1 644 54 24 1 21 3 1747 10 5 26 740 1 10 6 7 1993 10 6 2 1087 3306 4 7338 13 7287 2335 1171 30 3 3748 6908 2 360 868 30 3 128 5872 94 34 127 172 6 2 382 4 1827 1913\n0\t1 18 12 1153 13 9 6 20 31 1135 904 3465 77 1 1199 1 121 6 167 17 42 152 167 53 16 2 203 108 3147 8425 6200 1 344 4 1 1249 9266 360 121 2576 362 19 7 25 3987 3 1 18 6 20 311 2 7179 4 463 4 1 74 102 608 2 465 11 1 2848 1 8154 104 78 52 68 1 5463 1170 703 1 120 22 100 1619 227 5 1959 16 1 406 5591 4 78 7868 66 6 144 80 4 1 3112 209 577 52 14 1688 1175 5 564 142 275 7 2 203 21 68 1 1697 2807 4 1 157 4 28 4 1 120 11 2224 209 5 118 3 4201 16 62 5228 125 4548 17 98 805 20 2 163 4 203 104 186 1 85 5 56 2210 62 120 5 1 272 106 23 1337 65 116 1191 7 5423 49 33 22 4864 41 22 19 1 1590 4 116 3104 14 33 549 16 62 2058 17 42 731 5 1367 11 1 156 203 124 11 152 87 11 22 202 1 113 879\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 192 2 29 50 298 2727 7 50 1955 234 9100 897 2 635 7 50 897 57 9 388 3 5822 72 836 37 72 1322 8 192 7651 11 72 337 5 1 101 11 50 435 557 16 55 193 8 96 9 18 6 1 1003 391 4 930 8 24 117 1 259 35 1242 10 40 43 686 74 4 34 114 27 24 5 131 355 3 75 4000 27 333 34 137 8297 1 59 53 177 38 9 18 6 10 66 6 53 7 50 897 72 24 8132 9 18 114 162 5 720 50 1960 8 96 27 3 492 2772 130 26 770 371 3 90 174 108 492 2772 398 18 88 26 404 1427 211 177 653 19 41 1427 211 177 653 19 1 111 5 1 482\n0\t7643 1 1 161 164 5 136 3525 15 1 5 5724 1 27 2486 11 25 5730 379 40 590 25 5 1 13 14 20 59 5403 3365 203 2493 17 1 1132 93 5800 19 2809 4 413 3 3129 816 35 470 3 492 24 3455 65 132 2 263 11 23 481 133 1740 70 25 39 3 960 5469 156 3 8352 1 1132 190 24 4625 2797 17 33 24 1034 356 4 203 3 623 10 3 5337 647 132 14 1 98 7813 369 126 142 1 28 1681 129 289 65 223 227 5 1288 3 24 2 522 8985 7 25 13 92 2984 2813 4 1 120 190 8235 7708 854 4495 415 14 3 413 14 49 408 32 2 27 615 25 9703 2225 606 29 25 2168 25 77 3 27 65 2 5408 5 70 1 4351 9780 5 9 2866 55 1 393 1419 95 5923 9399 293 363 6081 5881 4 3 3624 2342 2215 87 2 3088 329 65 353 626 294 5 176 33 1221 7 253 122 13 7704 6266 1638 800 596 76 26 446 5 3954 9\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6273 918 6 2 46 386 21 7 2 170 287 271 77 2 196 2 3 2 342 4 7063 2379 15 62 34 1 22 36 28 2112 245 6 169 3 2296 77 2 788 38 48 271 19 29 7 1 51 6 28 2065 799 94 174 318 1 182 66 6 322 1 1046 1 2416 297 276 169 3 36 1 668 391 1 177 863 2000 318 1 7268 15 86 3 6 31 1315 938\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 64 146 9809 13 252 21 12 496 1274 30 2013 17 94 133 10 8 173 842 47 2957 1 21 6 373 215 3 3026 10 55 40 240 494 29 984 43 797 2103 3 2 1119 6378 17 10 39 213 2072 10 93 153 90 2 212 163 4 2509 7 119 17 258 7 129 8 83 118 261 11 36 127 120 13 252 6 2 832 18 5 186 19 361 8 1379 23 83 1942 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 28 1630 14 2 2314 285 1 5377 3376 3510 4180 4 611 11 153 467 5902 395 3750 6 2 360 839 5 10 1225 77 1 166 6104 14 801 12 1824 17 128 3 6 676 1446 3425 48 8 467 16 9 18 101 3509 6 641 5 2025 35 2601 85 295 32 2 1408 329 30 2505 2 658 4 62 111 5 2585 9947 151 9616 42 1 166 507 23 190 70 94 133 476 2 327 525 29 1084 1 2738 447 16 2 1559 17 8 909 138 2508\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3308 35 6 39 19 1 4 792 5 24 678 1912 66 357 44 7 148 1295 2 487 654 1183 35 60 762 7 44 13 5891 1846 1189 15 43 323 5287 2184 480 1 233 11 9 6 38 2 1410 282 3 40 2 7159 5280 9 6 20 16 2778 896 45 23 812 7334 875 237 1695 17 45 317 562 16 146 264 9 2589 1 13 4956 470 30 6351 2981 15 2 39 304 265 868 3 2 156 4358 782 1 59 177 11 9 32 101 2 56 84 18 6 20 2 46 53 651 4662 58 1197 11 9 40 71 44 59 4215 3 10 6959 1 108 245 1603 422 6 39 6389 13 6 46 53 14 2 598 1778 46 6 93 46 53 14 532 3 1147 2146 6 205 4140 3 3098 14 13 743 645 49 612 7 42 220 8917 1695 207 105 56 46 452\n1\t64 73 145 2 568 325 4 1217 4974 8 169 396 149 11 49 2 21 153 200 2 754 353 41 651 17 243 2 67 41 2434 10 2378 1 21 5 26 2111 14 2 391 4 632 243 68 2 4755 4 1 171 1514 5 25 13 252 21 6 407 52 38 541 68 471 136 8 214 1 67 240 954 953 11 9411 67 3 1190 32 124 132 14 6508 3 97 2673 10 12 2 222 254 5 917 29 984 3 143 230 36 10 34 310 371 14 109 14 10 88 3702 10 373 57 2 1795 356 4 710 847 3 873 2673 588 1413 704 1333 2 53 177 41 20 6 65 5 1 3930 2325 9 21 6 2 2055 16 1 3253 3 7 11 356 2 216 4 13 614 23 36 1217 4500 41 54 36 5 64 2 21 11 6 264 32 80 124 47 29 1 4457 8 54 354 110 34 8 63 134 6 11 8 381 1 839 4 1 21 17 114 209 295 1056 945 73 10 88 24 71 138\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 1139 3859 7474 18 6 167 67 6 46 51 6 103 4 1 120 22 340 103 5 162 5 18 6 2715 548 29 56 153 139 95 106 3 6 3245 17 59 39 3 6 1677 774 1 4 1 1139 249 131 32 1 20 2 18 11 4398 3640 225 7 50 59 38 269 223 642 8 497 207 2 53 7 1 249 120 22 20 279 6750 16 1 405 3859 7474 5 552 1 56 39 50 79 3859 226 524 6 2 1832 8542\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 23 139 29 31 1089 1276 616 457 1 4536 1702 366 23 531 83 474 48 1 18 8233 544 56 53 15 43 53 991 32 1 171 3 2 308 316 84 2395 3386 1240 2 18 51 6 531 2 53 357 5 1236 2 222 509 286 67 6050 750 4 1 18 11 6 52 38 120 3 364 38 238 3 1 957 185 6 146 56 53 37 11 23 63 320 1 49 23 64 1099 8696 613 6862 15 4333 11 63 2 1743 29 2 259 516 2 4391 2197 5 645 122 55 308 136 27 1141 34 2266 6774 3 98 1 259 270 47 2 5213 564 1 344 6774 3539 11 1 4536 1702 2743 1029 15 460 6 111 105 53 5 26 6913 30 2 18 36 4460\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 2806 5 26 28 4 1 700 4655 5 117 209 47 4 1712 2402 3767 2385 14 109 14 2 1829 4 90 9 21 2 2134 2073 1 21 6 56 113 1991 14 217 5505 762 218 99 14 3 5290 62 263 5 1 184 1161 4 3853 404 1 59 296 21 5 117 209 47 4 9917 9 21 3296 1 5593 21 1672 7 3712 4 1 2445 21 1570 3572 12 29 1 21 8079 7 2125 267 1672 52 1799 1492 29\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195 9 131 276 36 80 4 1 82 289 4 42 574 32 1 17 1 59 177 6 38 9 28 6 11 42 4638 33 333 2 163 4 267 3 238 7 9 28 3 300 2 103 222 4 589 854 8 1454 179 10 12 2 53 983 8 173 365 144 54 33 110 1 53 177 6 11 1 325 3381 4 9 131 6 128 2191 117 220 65 5 13 1226 1750 6 11 1 652 155 1 131 41 55 87 2 141 66 8 118 6 1927 26 1258 5 1690 17 4686 10 153 1977 5 153 13 3514 8 54 354 45 23 1808 107 10 5 149 1 305 4 34 3492 3428 73 1 120 22 1111 1 67 456 22 501 1 267 6 53 3 109 1 212 131 6 39 1051\n1\t1 3213 4 2 77 1 119 16 58 82 302 68 5 335 2 222 4 3 1 111 7 66 2 2081 2806 4 264 2329 4 1838 22 620 5 26 30 2575 5 1 4337 4 1 13 217 7032 170 87 46 109 14 1 4612 69 217 3733 3 773 170 2083 3 304 1958 45 1 263 863 44 19 2 2 222 105 33 22 299 5 1775 55 49 62 2813 6 20 198 1 80 1202 41 13 380 174 53 278 14 2 7619 1272 846 35 773 7305 1 2038 9429 7680 44 4746 7 2 346 280 14 6657 7142 1 494 14 2 2066 6 360 14 2 4612 13 76 3082 7243 14 2 3074 14 2 975 776 14 1 2250 4 1 1736 1539 4599 14 2 1736 3 2367 14 2 29 1 570 4612 562 69 34 13 92 21 270 3320 4 1 16 4090 4612 66 57 7097 577 1 913 220 86 1273 7 1 10 9894 1 545 5 24 2 1048 2258 4 1 4 1 562 3 151 58 525 5 1346 235 5 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 617 107 1 74 102 69 59 9 28 66 6 404 7524 7 6990 8 83 96 646 26 5 176 126 47 8315 13 252 6 31 489 135 464 505 91 1765 772 5997 297 38 10 6 37 1 80 3098 120 1288 56 1108 3 597 23 15 1 761 4449 258 28 404 35 6 31 1115 6025 36 11 54 2711 715 269 7 1 27 3890 16 3436 17 8 12 3414 49 27 475 165 25 522 165 142 69 8 12 246 5190 27 12 160 5 1 5438 12 3160 105 69 34 5799 3 8251 3 1 1207 485 3 1171 36 60 12 47 4 2 8 12 1000 16 44 5 186 44 6938 1237 6846 44 1773 3 473 77 2 17 60 6629 2502 458 14 10 2893 1 21 65 58 3158 13 2402 7363 314 5 90 350 547 124\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1326 823 6 28 4 137 188 11 90 23 241 7 6857 1 82 102 415 2166 1 28 35 266 1 24 84 3274 14 530 98 144 6 1 2302 2442 11 8 63 187 5 2 21 15 132 538 3 4 1349 59 535 47 4 3822 5 70 5 1698 6972 72 24 5 694 140 2 18 11 6 1286 2346 3 509 7 438 11 8 219 1 331 2614 20 1 296 28 66 229 2932 47 2 163 4 1 7 687 80 4 1 120 22 4257 7866 395 1536 1 1 1829 1 2670 11 22 20 722 311 570 99 490 17 359 116 5196 19 1 317 1927 321 110\n1\t202 3 10 6 2 1152 5 96 11 27 56 339 25 1516 799 4 1005 6637 533 1 344 4 25 128 895 1961 503 45 116 22 20 2 4640 1787 23 76 26 1475 15 25 278 675 294 6242 6 25 692 4368 8550 3 2993 5696 3 5582 205 90 2846 9 6 311 2 84 4 1488 5 8 191 14 5 45 3 49 2285 578 1 482 76 26 1001 16 137 11 381 9 158 6 2 7050 8923 901 4 31 296 1276 1426 1593 16 5336 94 101 383 224 125 1 873 285 42 52 4 1 3705 4725 3 11 6 17 10 40 34 1 4 2 323 9165 7006 1262 2751 51 12 1 8691 2 156 172 989 11 1 1338 228 26 3948 194 17 11 963 310 5 2798 101 31 6213 10 79 5 96 48 228 24 71 57 33 1866 1 1504 822 19 243 68 62 226 342 4 2831 3776 5 42 1258 5 830 2 18 4 132 3314 6606 101 89 7 127 984 3 11 6 167 1 22 34 1 16 476\n0\t2 206 809 1774 5 4839 16 5067 45 162 422 33 1030 5 26 2793 75 5 634 7 9 18 3 385 15 43 4 1 607 1249 289 4432 4 3694 7 25 423 921 6 262 30 8110 361 754 16 25 2143 7683 4 1856 7 1 1 502 244 547 1509 258 1078 27 213 314 5 1874 13 777 390 754 2956 6655 4 7152 1410 1161 16 1 3054 178 189 9987 3 8028 35 196 44 142 2 342 4 268 7 1 1751 4270 4 1081 3 42 935 11 1 5264 1019 111 105 78 85 19 11 178 1104 1441 1 250 1362 865 6 11 1 1710 3020 363 22 243 501 3 1 2217 4 1 5953 213 91 29 1 1983 6 565 39 908 565 8 467 2301 45 23 173 2500 43 952 4 2694 69 144 39 1337 2 103 1988 319 77 1 1923 32 1 464 1252 9 18 123 24 42 2103 97 4 66 22 4992 695 42 53 16 2 539 45 23 83 24 235 138 5 1690 17 39 83 1017 95 319 19 110\n1\t14 5292 434 19 2 2418 4 6126 66 25 7721 823 195 666 53 216 83 118 4 95 52 1005 799 779 28 106 72 825 48 5320 907 98 49 1 6 4 1 9683 13 92 182 6 237 32 101 6 1 1083 4 35 6 3 48 27 907 195 5 1 413 7 8524 16 912 27 1774 789 25 683 3 2080 1 5438 5 186 474 4 25 3 9 151 169 3414 15 1 5438 101 1784 1678 1 7 25 5 26 3691 15 29 436 29 2 52 3271 5438 666 29 1 334 106 195 34 22 11 72 24 34 248 227 16 28 223 326 3 1231 708 19 75 3414 51 3117 61 7 666 27 54 243 204 11 32 1 5438 68 70 2 6 2 46 272 3 98 27 255 5 204 6 2 164 35 40 58 152 3734 37 8 192 160 5 122 2 3 25 442 3968 26 428 19 1 4 257 6373 6 284 14 193 10 12 39 9690 30 411 35 1421 30 1 15 1 5438 3 1 344 4 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5753 28 4 1 80 731 3 837 4536 124 180 107 7 1 226 764 6 6886 263 3 1535 593 32 2 46 6719 16 1 4536 46 855 5049 2 158 515 4204 30 1334 11 88 26 2 1719 45 10 5503 43 4225 3 1650 3 7 1 714 4973 9 6 2 18 66 1071 257 838 3 3852 5 11 1219 3631 4 4536 104 66 130 26 219 1137 42 2 1152 11 7 143 216 7 1993 15 82 1429 3 184 4261 36\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 40 2 46 641 17 936 46 91 994 1 389 18 6 38 2 282 355 3154 140 2 5 174 7684 98 172 406 10 196 3296 316 30 2 1897 136 2 526 4 417 2989 1 466 353 35 6 246 1245 355 125 25 4729 1327 35 6 28 4 1 82 385 15 44 147 174 207 260 479 3 51 6 43 1349 4 448 16 58 933 831 3761 1026 1 195 1217 282 155 2086 93 906 630 4 9 6 117 106 610 61 106 114 1 3761 209 75 114 60 2711 14 2 583 7 2 334 331 4 510 35 1 898 4853 44 3 89 44 2 574 1 121 6 464 8 96 17 42 254 5 348 73 1 523 6 37 91 300 51 12 39 162 33 88 87 15 110 8 187 10 2 277 73 1 12 167 53 3 1 363 61 167 299 55 193 33 61 46 8 54 20 354 194 10 247 169 91 227 5 26 695\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 360 2099 1 206 4 6298 7848 490 3858 1 545 15 223 270 4 4141 3 127 22 2 1935 5 1861 6 20 31 1139 1900 15 1 7643 4 31 41 4 2 13 7784 68 1 3805 4 133 31 2830 353 7 44 51 6 162 7 9 18 11 151 79 175 5 354 110 6498 45 23 335 3 1213 6298 228 216 16 1038 82 68 127 8 88 20 149 95 1362 1548 7 13 7 34 9 678 1097 51 6 2 4 3880 81 35 5789 29 1 46 4066 14 678 1046 3 22 8035 77 3421 81 30 1 13 2078 279 2 1285 5 2 18 856 5 9 157 115 13 3382\n1\t4228 9 6 2 382 1000 5 26 13 8 154 1453 17 8 154 178 114 297 7 1 3124 436 1265 180 59 107 10 8327 3 1 74 85 8 159 10 8 12 2 604 4 1287 245 15 34 1 3563 372 1 3 15 37 78 21 101 41 2288 72 321 697 36 476 1 1058 2215 6617 21 3 472 696 3878 14 114 146 36 1970 331 9 21 88 149 31 410 78 3844 68 463 4 45 23 22 765 9 753 2 156 172 32 195 3 1 312 4 9 21 981 64 45 10 40 117 71 612 19 3324 23 76 20 26 7374 9242 43 417 10 2 6632 309 1 491 1077 8919 8 24 2 507 458 27 6 7 1 1984 2865 6 749 15 9 21 3 811 14 193 25 979 2419 40 71 3 595 30 1 253 4 9 135 229 93 1094 458 39 36 27 198 384 5 70 1 91 2296 7 727 1 21 89 7 3362 5 122 94 25 469 6 1525 65 7 3 4920 7 1 913 4 86\n0\t136 129 6 829 7 801 229 3 6 229 28 4 1 1318 60 9 5476 11 56 6959 1 21 45 72 22 5 751 1 804 11 6 377 5 26 1 138 288 4 1 3468 14 97 24 367 204 3 19 82 878 6 20 9448 17 7 698 169 3391 8 617 284 28 753 106 275 367 7947 12 138 246 367 11 1024 8 241 11 1147 129 54 52 68 1458 875 15 20 97 413 83 36 56 1244 415 341 97 415 83 36 56 1244 3 2836 1147 229 54 24 2716 15 3 480 1 2024 525 5 90 10 153 916 44 1574 1212 255 140 8127 13 150 96 2 163 4 976 596 35 22 2189 15 44 36 9 21 73 33 36 5 96 4 730 7 1 1147 4685 919 3 152 15 6 2 163 52 2985 68 1 129 60 266 204 157 6 198 78 52 1618 68 368 63 37 186 2 1302 3660 9 6 1 280 11 6 113 587 3410 3 207 2 4897 14 9 56 213 11 53 4 2 4006\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 32 3 2091 50 706 523 6 243 3652 1140 16 13 252 6 28 4 137 103 587 104 11 266 59 308 19 249 3 68 181 5 77 1779 5638 8 12 140 50 161 1919 388 1894 3 310 577 9 2953 8 485 10 65 3 10 57 31 970 868 4 52 68 207 167 13 150 191 920 11 42 2 46 109 256 371 18 3 207 144 145 9 6 1 59 21 89 30 9 75 209 27 143 90 679 4 124 94 9 243 53 275 15 37 78 1187 130 26 929 5 90 174 141 6845 6845 115 13 3514 8 56 54 36 5 64 11 27 2734 25 634 371 3 151 174 53 18 36 9 628\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 50 74 878 19 970 3 1 302 145 523 10 6 11 1181 648 38 28 4 1 113 124 7387 76 90 23 539 3 1717 29 1 166 387 23 76 735 7 112 1623 317 20 2 325 15 1299 3 815 23 76 1942 1 4 116 221 3052 3 39 230 53 94 133 48 8 36 2 163 38 9 21 6 11 171 7 1 871 932 4708 3 1201 120 3 22 39 14 240 3 731 14 1 1284 1223 1 21 6 993 1018 6 17 23 76 320 154 625 543 200 122 7 1 135 23 76 149 725 62 2131 11 24 390 5812 1487 16 37 97 1098 2 21 5 414 1566 3373 286 9844 23 76 175 5 99 10 316 3 702\n1\t5282 35 151 2 7249 1743 16 2 762 1 1355 44 1126 1343 3 6468 16 157 35 40 3126 2 46 839 3636 1448 44 157 6 20 37 641 14 10 8858 140 2215 196 7 2 2244 76 26 446 5 1364 25 13 1 494 7 9 18 6 46 1574 3 1 67 6135 2068 292 10 2683 2 222 19 1 4760 3 10 54 24 71 327 45 1 1921 54 24 71 1066 47 2 103 1129 144 87 127 81 87 1 188 33 5633 48 62 9 6 48 380 2 18 1384 3 146 5 96 38 7 50 3972 1 67 100 4838 31 931 55 193 1 120 139 140 227 5 4800 656 37 23 83 70 5 118 1 120 19 11 2812 3432 1 171 1917 53 216 3 309 7 2 46 1574 3 744 17 8 96 10 54 24 4462 1 18 138 45 57 71 262 30 2 1186 2922 14 9 1921 153 169 216 16 2 3248 6016 6 4358 3 51 22 43 84 802 4 1 1109 19 1 7143 8 187 1 18 2\n0\t0 0 0 0 0 0 0 8362 3159 4 3988 372 1 360 919 1 124 57 2 1021 3 1698 2528 259 6 1 700 7 2888 3 2731 239 18 3 19 510 244 2 3106 4 2 327 259 3 1 124 22 1303 3 152 107 154 5352 10 6 73 4 9 8 159 9 570 4186 4 1 1 1125 14 8 4983 10 54 26 46 487 12 8 6231 10 498 47 11 1 124 22 483 893 7 1109 3 33 93 5912 1 1890 4 35 2005 23 2198 6 2 7632 32 1 1165 3 27 9335 270 510 415 77 3 126 30 126 15 25 4 75 27 89 25 1910 37 627 6 146 23 24 5 64 5 6020 17 10 407 6 20 16 1 13 3616 8 39 173 354 261 1148 127 1330 3 703 245 32 288 29 1 82 4900 8 63 64 11 33 22 128 46 11 6 167 3681 480 43 547 121 3 491 566 1025 1 124 39 22 36 1568 420 812 5 830 75 1 124 228 24 8486 5 882 959\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 436 1 80 6898 3 4368 4 34 1297 124 69 123 20 735 77 95 4 1 2920 15 2855 21 3 6772 4 1214 21 6 5 1 3 202 7 994 120 22 2132 292 519 30 2001 5049 3 6699 1 29 1 85 4 61 6000 4 3 75 1 494 6847 1 4 1 1 121 8234 1 3 1 4682 189 22 2 4621 5 292 1 7733 190 26 433 19 2759 902 41 137 20 15 1 3 4 5327 13 15 2 5498 1106 6 2 304 668 3168 8444 30 1 2689 9266 5362 4 4459 1297 941 14 6 1 524 15 80 684 1 2594 191 6252 17 60 123 20 186 44 597 4 1 410 197 1 545 507 40 71 1433 5 2 323 1201 616 2751 6 1416 1 4 48 1297 616 40 1160 3 6 2422 5 26\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 114 9 18 129 119 9 12 311 2 18 38 2 6454 880 10 289 1 11 43 81 76 139 5 70 62 19 2229 6352 114 2 84 329 14 9 739 247 37 78 89 5 26 2 141 4990 10 12 1576 5 157 7 2 1625 2312 669 414 7 2 1625 2312 3 6 162 36 1 28 7 9 3750 106 307 6500 15 307 2684 34 1 624 70 3523 30 264 3675 3 34 1 559 1564 3142 4 611 17 207 1 572 307 1148 49 23 798 43 81 104 376 2748 8 99 104 3031 16 1 1033 20 5 272 47 11 1 282 6 1727 2 264 7 2 264 178 1 222 38 88 10 24 71 5183 17 10 12 211 14\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115 13 823 5644 13 677 22 38 7 423 13 28 3583 76 26 219 30 8460 4 2630 19 9 13 663 22 13 18 16 34 1350 4 423 13 3 13 1149\n0\t30 63 564 95 3351 1 4872 435 4 2 3187 3 1 3526 13 128 40 58 1292 4 1 4 1 2345 12 2 3 10 12 650 1157 19 1 2435 36 2 35 636 5 186 2 1 74 957 4 1 12 1 7681 350 4 1 2345 12 3 1 2857 1049 58 8076 41 80 4 1 81 130 24 2117 295 7 822 4 75 97 81 5823 11 2345 11 165 7 94 10 433 86 80 4 9 249 2345 247 55 13 499 1385 79 4 1 178 7 1426 106 1 2018 1 1793 3 98 385 36 42 89 4 13 92 131 12 37 91 10 12 1258 5 836 55 50 1725 35 6 52 7781 68 4780 12 5581 19 1813 48 57 79 5418 12 75 9 88 117 70 1001 22 1 1278 4 127 188 37 314 5 2515 11 33 173 55 3082 8101 1956 284 9 263 3 657 8 175 5 1017 2 1519 4821 253 9 3015 8 555 8 12 1 6413 398 8 24 462 5 2 360 4612 7 147 887 11 420 2373\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 223 6 2 109 3995 158 2 53 3 2 4755 16 43 53 2263 245 1 67 6 132 2 4 6506 3 8332 120 11 10 432 2 426 4 783 4 34 2392 3 1313 4 6809 896 1214 1607 76 1458 149 1 4 1 243 4248 1615 2 103 78 5 70 62 4209 200 7 3768 1901 16 137 15 31 796 7\n1\t0 0 0 2574 123 7 2 103 52 68 28 594 48 1885 52 4056 3 7928 124 2197 5 1405 561 289 199 2 613 67 428 30 7611 4745 3190 11 3166 6 20 28 4 1 113 4 1 2489 10 863 1 545 602 7 34 207 160 3377 13 252 6 674 2 1493 574 108 7 698 1 113 177 160 16 218 6 1 1617 5 186 2 29 1 111 147 887 485 7 137 982 1 8578 935 861 30 962 463 40 71 721 11 111 140 1 1166 41 40 71 13 677 22 84 3547 4 147 887 7 1 567 406 72 22 556 5 4844 5 1 3062 3 406 19 1 21 4411 5 1 3 1 1653 3069 1611 2265 15 86 97 7321 7 1 13 7527 2765 3 2393 89 2 84 1557 4894 7522 3894 6 425 14 1 6736 3083 32 1 7617 4 1574 2008 783 35 337 5 2223 188 7 25 3987 6 107 7 2 3772 1874 6404 13 499 12 84 299 5 99 2 2977 14 10 1220 73 10 153 3097 95\n0\t68 15 31 423 2331 1 1106 32 1 821 4 1 166 442 30 7316 1 754 3692 255 5 8 24 100 587 2 821 11 12 53 227 5 26 53 7 2924 4 86 101 2744 5 1 1105 11 6 258 8972 16 73 86 1105 3547 22 37 6667 3 45 51 117 12 2 85 49 482 976 7683 4 3857 4 2118 4560 61 8266 42 223 13 1701 2 52 5394 5551 786 176 65 95 4 1 97 1730 746 1492 202 34 1090 9 18 775 3 8205 1 2513 3 6810 10 6 370 3377 13 2699 1 82 1737 1 2399 1755 291 52 728 14 23 284 140 1 746 7 9 3 696 468 3270 209 577 1104 10 79 5 284 949 17 10 123 20 1197 437 2835 180 7633 97 81 35 291 5 3055 95 347 41 18 1873 15 41 893 1636 14 1768 4422 179 331 4 3537 45 23 22 132 2 3292 30 34 8252 760 3 26 1527 30 110 19 1 82 1737 45 23 274 116 3220 23 63 8067 1369 19 9 5592\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 765 2 753 32 174 667 11 42 2 464 3699 8 88 20 820 3 87 13 3562 9 562 6 1111 32 1 1949 3502 1543 102 148 331 4 1569 356 3 5 1 441 8 149 10 46 4817 8 59 4522 38 1 6251 357 49 33 6252 318 33 3 43 7071 1650 19 1 49 2914 1 204 3 13 458 42 2 84 3699 15 2 84 441 53 313 647 84 8 354 1027 10 63 26 2 222 2195 17 128 29 2532 19 1 17 1 324 3968 26 1 4272\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 336 9 158 29 74 1 6700 3463 384 1164 15 1 8027 1131 17 8 1108 165 77 110 51 191 24 71 3949 4 719 4 1131 383 3 8 56 4429 1 216 248 7 3005 10 1781 45 317 728 2220 30 2310 41 882 10 228 20 26 1 21 16 23 17 51 22 43 84 120 737 341 43 148 3685 8 338 10 2 163 1221 33 191 24 314 2 147 41 300 10 12 39 11 1 1131 485 37 534 3086 17 8 247 3336 30 1 692 107 7 388 5 21 1793 5461 79 650 73 51 22 4543 5097 1492 195 3 8 64 58 1335 7 20 16 28 45 23 9671 5 412 7 1 1140 207 50 221 103 8 373 354 9 21 45 819 117 71 602 15 1 265 1146 10 40 43 1697 529 17 80 4 10 6 3654 8 228 26 3732 4 1094 29 508 6564 17 42 2 382 5754\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 2 325 4 9162 484 17 8 24 5 5854 9 18 5 26 2288 673 5 2210 2 6791 119 370 19 2 2911 4493 1 839 424 3968 72 867 55 94 91 104 8 230 11 8 825 3393 41 381 43 17 51 51 12 162 5 1 804 12 20 17 1 18 418 3 741 939 1 121 12 1530 193 1 120 61 1169 1466 16 1 2689 5 6423 29 132 31 60 6 8 531 335 104 11 22 17 551 4 2441 130 20 26 1852 15 1580 6694\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 522 4 2 1205 147 887 1562 1215 794 1282 557 15 44 1186 975 9503 794 29 3470 94 1631 6 30 7 1 2512 3 4194 4 415 14 1631 3 44 7632 1845 2385 2772 794 3147 191 2464 1 170 13 7 40 2 3214 11 6 832 5 1594 69 10 213 5096 109 2427 3 10 153 131 235 46 979 7 246 2 170 3540 6068 30 447 5753 10 63 26 5211 14 2 21 66 3691 15 1 3356 7 2 2974 68 2206 5 24 71 764 1 147 887 707 1972 168 22 1 250 94 34 127 982 1 4 1 6023 516 6 8375 73 162 422 181 446 5 90 1 5097 115 13 7 5160 690 5110 1215 2385 9503\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 8 56 467 656 8 997 10 226 366 19 3 8 12 20 852 10 5 26 37 452 9 6 195 28 4 50 7219 8 191 734 11 10 40 2 506 4169\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5865 8 9 18 6 20 16 1 687 21 1013 23 175 5 65 19 116 687 1262 36 3 8 339 348 106 8 12 7 9 108 28 330 479 7 1 8351 398 938 62 1521 7 1 2032 2037 2 661 3 1727 48 485 36 5 79 14 1575 541 8 4630 8 339 946 223 227 838 5 10 220 1 121 12 39 2444 8 96 10 59 165 838 73 10 40 2 5411 66 8 114 20 836 45 317 2 3641 3 30 3641 8 467 91 141 98 9 21 6 16 1038 42 3 34 541 76 359 23 1094 16 14 223 14 23 63 875 45 116 9761 22 52 16 3 1024 39 1899 9 5592\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 1 8910 4 1 2669 22 301 4015 3 1 2641 22 22 360 14 109 14 1 147 353 35 266 1 280 4 1485 2137 2038 7124 211 3 3 2 425 393 90 9 21 332 145 20 37 273 34 1933 6 3271 16 1186 537 17 16 31 972 2996 51 22 877 4 892 1 6260 87 20 87 9 18 50 5992 3 8 61 169 9178 17 61 37 6324 72 57 556 2 680 19 9 18 11 8 63 59 449 5 8577 261 19 1 38 9 18 5 187 10 2\n1\t2 67 4 31 2495 259 15 2 3185 465 35 6644 2 329 14 2 923 4 2 103 282 7 4445 285 1 3938 4 16 29 74 244 20 5 17 98 33 15 239 1885 27 1036 5 582 3185 4560 98 28 326 60 196 3 13 872 7075 495 582 29 235 5 70 1 13 6570 676 1 67 4 164 19 1473 17 504 43 184 1552 29 225 2 156 268 642 1 393 66 6 304 3 76 229 90 23 13 6570 93 73 4 1 84 265 2011 15 3529 13 724 1 6472 185 4 1 4285 1 177 424 297 204 6 13 2409 69 1014 3286 2647 6 29 25 1726 4526 3 1490 6107 53 14 3541 84 7252 3 491 170 3 207 20 1 182 4 1 13 3204 209 1 861 66 6 7418 3 385 15 1016 2858 130 24 1196 31 918 16 13 92 67 9905 20 39 2 1489 108 1 67 6 5605 1 67 151 23 3 6 1011 3391 13 252 6 28 4 137 104 23 321 5 64 7 116 29 225\n0\t840 5 1271 2787 779 22 51 95 148 13 3440 179 38 9 28 32 202 154 45 10 12 377 5 26 2 3604 203 18 801 54 1346 144 188 1527 37 1 1526 447 168 3 772 2837 54 110 45 10 12 377 5 26 2 2438 813 217 5299 203 18 801 54 1346 1 7011 1 813 3 3 1 6 28 4 1 5536 5 2 18 180 117 575 42 1 232 4 18 458 193 10 153 24 2 6220 140 1 158 6 30 73 34 4 1 5210 494 39 247 13 252 12 2 254 588 47 4 194 8 560 45 180 39 1407 140 2 1850 203 135 300 1 1352 118 898 4 1 567 247 928 11 744 17 51 22 43 4912 883 145 20 273 16 34 1 7 1 158 2 427 36 255 142 2 103 3 37 123 80 4 1 3 258 94 43 447 168 3075 28 13 614 10 2 1850 1404 55 40 2 222 4 2 98 9 21 7 2761 16 1 7885 31 101 173 26 9 91 2 13 3382\n0\t14 2 93 608 308 316 1863 8925 65 5 1086 3 1227 253 411 176 36 1 3399 27 424 7 9 1174 488 7 1 9270 403 84 5698 5 1 2079 4 5032 1 113 598 267 1125 1940 13 4196 12 9 9219 18 7 1 147 887 12 2 2057 2977 7 97 3635 10 12 202 1345 814 49 89 7 11 12 1 707 23 9343 2642 6363 3 20 1 334 11 1 342 475 2167 16 62 147 157 371 7 1 184 4487 794 10 12 977 3 30 188 57 1866 12 2366 147 887 12 10 12 1 184 1578 16 23 5 6912 45 23 57 1 13 3986 4191 1 342 7 9 330 588 149 11 740 730 3 475 2612 1 3088 5 1811 1 296 1153 4 727 3 1 5995 4 9 18 6 323 709 17 20 16 1318 11 1 1278 436 14 78 14 8 36 1312 1867 3 6682 8767 7 1073 9 18 6 2 7687 4 1 78 138 28 89 15 1 84 783 45 819 107 1 98 373 83 1460 15 9 461\n1\t170 287 1487 7417 4841 35 432 2 73 4 44 6103 15 44 60 5231 15 102 1658 6333 217 4456 3 1 2766 1 263 6 452 46 3 1087 15 1 1511 4 1 135 1 59 465 8 57 15 9 18 6 11 10 19 1 264 188 11 33 1690 378 4 1 129 4 13 2663 15 458 380 2 1663 60 289 1 260 1234 4 4519 3 7 9 1663 4526 1026 65 25 278 7 15 174 1663 4456 56 153 87 235 571 1271 2294 154 308 7 2 136 3 7571 29 380 2 53 607 1663 12 6102 292 60 114 1197 79 19 28 933 1361 4114 40 84 1300 15 7 44 168 15 4341 13 92 113 177 38 1 18 1024 6 1 3344 1347 7931 8100 541 56 876 1 18 5 500 1 861 6 43 4 1 1726 180 117 575 10 270 2 1998 18 3 1275 19 34 1 7942 22 1 22 3 10 40 2 426 4 1504 5 110 1 238 168 22 13 45 23 338 5038 707 217 164 19 6602 468 36\n0\t4 17 204 10 6 20 211 29 2616 13 9835 14 174 2381 40 3184 827 1 1077 1680 265 11 6 46 573 55 16 137 35 36 5247 7244 1 4081 176 3418 1206 5 110 1 868 2607 1 769 51 6 58 265 29 1 2903 4 2 1301 4 1299 43 46 91 788 11 6 301 7523 5 1 682 13 2687 1 985 89 7 9 5835 9 2381 1143 91 104 3798 14 1 6066 1653 5931 3 7053 1433 14 78 14 1 3156 3798 14 3146 3 2848 1 688 10 181 11 1 713 105 254 5 1179 77 28 4 137 197 3811 77 1497 3 55 14 104 3137 9 6 2 345 13 2699 2 1061 5233 1 21 123 2735 43 1002 53 2637 701 1192 688 49 1 5166 120 87 20 186 1 1261 2301 127 168 1621 62 5415 1108 14 1 4117 33 1851 8893 77 13 4 1 2094 7021 3641 130 186 4365 5 925 9 108 3 596 4 1 3156 132 14 3146 3 2848 1 8154 130 87 297 7 62 869 5 925 8381\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 59 82 753 4 9 18 14 4 9 1992 56 1 460 3 1 18 2330 8 531 36 5 284 1 4450 708 5 187 79 31 312 4 48 5 504 32 2 18 8 83 118 78 1395 42 2557 49 51 662 97 708 16 2 732 73 49 51 6 59 28 753 3 10 1 18 3 1249 23 83 70 31 312 4 48 5 4749 8 284 1 753 183 133 9 462 3 8 83 118 106 34 1 16 9 18 3 1 460 310 4557 2093 3 61 205 46 964 3 1805 81 35 531 55 49 1 1097 12 20 1 8 214 1 18 3 1 453 299 3 3473 10 213 28 4 1 84 3931 17 2 2273 3 211 52 68 23 63 449 16 7 80 5772 502 45 23 22 2 325 4 127 3108 23 76 20 26 1558\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 646 359 9 28 169 3752 8 241 11 9 6 31 3215 108 8 64 82 1755 35 24 4753 5 1 1380 11 42 955 2878 775 2859 40 2 464 1077 488 2428 11 42 20 148 7 86 1103 4 500 1530 37 10 190 20 26 169 1202 16 86 212 17 9 18 2995 2 859 4 449 66 43 508 384 5 24 8090 449 11 10 213 105 518 5 552 81 32 1 464 188 11 139 19 7 37 97 2058 882 6 3715 3294 6 10 2401 9 18 2995 31 731 1055 859 66 1 190 4001 17 66 6687 6 5 26 243 68 8 24 219 9 18 15 84 3805 29 225 3077 984 239 85 15 3757 3805 3 239 85 15 1 507 11 300 1 234 88 26 89 138 3 6 20 660 2084 8748 20 318 1709 47 4 394 32 79 16 9 461 42 46 670 425 7 50 3972\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3321 8 143 99 47 4 6626 8 12 52 41 364 929 5 99 9 21 2873 50 13 1215 2019 86 4102 826 295 30 242 5 2883 1 545 11 10 6 5261 2 148 66 4 448 10 4819 1 1122 4 9 6 11 1 67 432 5144 3597 30 1 1234 4 1569 3431 66 51 6 41 548 238 1025 3 521 432 105 7332 1 21 2091 432 483 509 3 13 1082 106 82 238 124 1281 73 124 132 14 578 2124 1599 3 943 508 22 3844 68 727 286 100 5 26 33 22 3 2091 2072 440 5 26 148 3 13 252 6 2 46 1832 21 32 9040 15 2 46 2991 505 3 1 59 302 8 187 10 378 4 7224 6 16 43 4 1 1813 916\n0\t10 19 2 37 180 56 58 312 75 223 10 748 65 31 240 6374 8 83 96 180 107 2 1222 18 15 31 1928 32 174 1849 14 1 1448 245 796 521 498 77 5418 4038 14 23 3539 1 6 2 568 287 7 2 8603 657 6 13 2687 96 8 998 11 421 110 7 1 234 4 903 63 396 26 2 53 245 1 4282 4230 4 86 804 6 34 1 18 56 40 160 16 110 6 211 14 4299 17 10 6 93 2 4 1 4066 9990 171 19 1200 1035 29 5261 1744 456 4 1011 5502 494 22 4177 125 15 3 1 593 1082 5 3350 65 55 28 41 102 547 30 1 85 1 1324 1616 23 63 1092 64 1 215 1292 140 1 4 900 7960 1 968 19 592 13 5 9 1 233 11 1 39 1141 81 30 949 14 3651 5 403 95 14 132 3 23 24 2 1598 4 53 1154 101 303 5 468 539 29 17 29 194 20 15 110 45 207 116 177 98 139 1929 3 841 10 689\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4985 4888 1 18 42 3482 1897 762 2077 2861 6547 1189 38 160 5 6058 5 131 1 234 48 1 19 6 56 1395 1 263 981 36 10 12 428 30 3644 5 1 102 250 171 1 389 4692 33 314 1 540 232 4 443 3 1 540 574 4 11 8 118 235 38 137 10 39 143 176 36 148 4655 180 3 210 4 34 1850 4657 472 2 84 312 3 89 10 10 1385 79 4 1 85 8 713 5 2725 2 572 4 50 1238 3 1168 65 15 2 56 91 1382 842 288 177 11 485 52 36 2 1598 420 243 99 1 3482 1897 68 694 140 11 8644\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 2 1386 901 4 13 19 2 3058 366 7 4859 30 2 287 19 1 540 601 4 2 4612 27 4859 30 197 2 5590 59 1 7 1 1793 1417 30 2 1717 16 352 3029 122 5 3218 3 98 59 105 103 3 105 13 92 21 6784 25 3117 29 1565 47 52 38 1 3248 19 2 4 558 27 615 44 27 1657 52 3 52 4 44 157 1413 25 1714 14 25 4116 27 40 5 90 188 1907 7 2 829 927 15 1 27 2495 5 543 65 5 1 4593 11 205 13 223 2 3022 1077 5 1 1386 21 1762 15 2 1386 5986 2 53 2445\n0\t11 103 222 7 189 6621 516 5005 1 115 13 659 9 2289 991 16 1788 2810 164 3 6599 33 22 929 5 2874 5 1 2968 49 53 161 5342 1225 47 4 13 858 109 14 101 1 865 29 39 8343 1507 9 1406 6 93 1 7603 3 10 1609 3434 1 847 6 2 103 3 211 737 426 4 2696 4 1 847 38 1 103 164 7 1 13 193 1 516 10 424 180 100 152 71 6174 77 5342 217 8013 2 222 105 2843 3 2094 16 275 4 50 1 59 28 180 56 381 6 1 540 341 11 12 52 32 49 8 12 1186 3 364 1997 2787 3968 72 867 1 4 8 12 3424 5 3143 47 9 362 991 664 5 1 7 6152 14 2 1122 4 1 6174 1134 1058 21 13 858 3685 1502 14 1 74 102 5889 188 9 28 1419 1 931 5105 42 61 5 11 101 1113 42 1002 53 299 14 2 74 328 3 407 274 1 1446 16 2974 188 5 5223 102 3108 17 2 53 102 2682 6621\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5663 9 40 5 26 28 4 1 210 104 8 24 117 575 1 494 6 1 203 363 22 3534 1 59 177 11 721 79 133 12 1 3 400 2107 492\n1\t25 2473 7 1 2743 6 274 2 222 2 185 32 127 4069 15 2 2245 238 3485 74 1099 1507 7406 25 249 251 3 25 470 767 4 7 204 72 22 1694 5 2 282 35 1345 621 32 1 59 5 26 214 30 2 170 487 770 7 2 103 7189 3203 3565 30 44 3 2 2771 189 44 3 1 1355 1642 707 4 6 274 19 3244 44 149 47 106 60 310 7178 1864 7506 1 1536 3 2 1671 4 1276 14 1 18 1 119 196 3 78 52 1476 5089 29 25 1293 115 13 92 478 1584 6 46 2696 4 6706 2408 883 7583 14 2473 7 1 2743 12 1160 3 78 36 86 1392 988 418 15 2 46 822 3168 11 196 52 1618 3 1325 3811 14 1 119 271 115 13 743 1367 5 1 706 15 2 53 4247 32 1 102 466 3108 292 3308 40 2 46 4901 1778 801 1 651 128 57 29 11 272 7 44 3 2 2177 65 16 1183 14 253 65 16 2 286 115 13 2687 773 9 28\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 18 11 1035 5 26 237 68 86 1350 22 2262 4 1 18 1552 3 498 140 119 29 2 1770 525 5 1 410 1 9518 15 168 33 179 54 352 10 13 5700 6 602 7 9 525 3 39 2460 2530 140 1 108 1 166 7879 16 1 82 1 119 6 169 810 3 7 6 20 132 2 6721 17 959 1 769 1 3439 70 46 7297 3 7441 13 2298 1 18 123 2108 5 9450 43 796 7 1 7 34 279 2 3840 99 19 2 56 509 1344 17 83 45 23 773 9 2396 13 743 243 1054\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 497 9 54 26 2 84 18 16 2 306 7 6639 1850 17 16 261 15 31 1089 438 35 2615 7 1126 6546 6523 1 4 1908 217 1296 3 53 1145 1724 10 6 2 464 13 677 22 43 109 587 171 35 61 463 955 7 321 4 216 41 57 2 321 5 1555 62 923 7160 15 1 344 4 199 13 150 12 2983 30 9 18 7 1 166 111 8 12 2983 30 11 18 3380 5 3964 1358 6835 30 2545 1 166 111 9 18 440 5 3964 15 1 4595 4 898 3 6353 16 1286 53 81 35 83 1555 62 4 257 4370 13 499 57 79 15 2931 3 29 1 166 85 1728 79 5 853 75 97 81 152 241 11 257 1342 130 5 1 53 161 663 4 1 5240\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 850 51 22 37 97 82 124 8 175 5 64 47 8 165 1544 15 50 7486 16 1 3175 3 9 6 48 27 405 69 13 150 314 5 99 9 131 49 8 12 7 12 1609 1816 3 595 1 131 57 2 53 683 1 120 61 58 28 117 165 643 41 55 1977 10 12 36 2 1254 209 5 500 757 5 9 28 153 916 14 508 24 1113 51 311 213 2 67 3 1 453 22 761 69 373 20 2915 5 1 215 212 177 6 2 36 2 1341 249 6966 3 10 7954 125 2226 9 12 28 4 1 156 268 180 71 2692 133 2 135 48 61 33 8450 14 113 8 63 9623 7597 71 16 1 2754 966 34 8 63 134 424 369 9 28 1288 2 1911 2295 10 151 1 215 8884 4 291 36 1719 13 150 96 1 59 1015 303 5 87 32 249 6 53\n0\t1789 142 1 5563 41 61 33 152 5 862 91 3312 4 2131 5 62 8054 2628 1623 23 22 160 5 328 3 1743 275 140 2 14 33 515 1 177 5 87 6 1743 2829 29 1 9 21 191 1173 43 2096 16 210 428 3 2320 13 92 443 216 12 93 56 91 69 23 63 924 64 835 160 19 7 1 566 168 664 5 9549 443 3407 3 13 150 54 24 5630 571 11 8 87 36 3 6008 5723 3 8 12 2983 30 2 342 4 5884 2828 4 2 4520 37 1 7343 5792 47 4 1 3059 6704 3305 4509 2 1358 2306 2 1764 954 30 295 29 1 15 2 5143 6774 4231 43 1128 8099 19 2 259 15 25 13 150 192 152 2 184 325 4 17 9 28 6 56 20 279 8254 290 180 107 38 1450 41 1315 4 25 124 3 24 209 5 1 2582 11 1 59 879 279 133 341 33 22 22 1 1170 4886 1125 3 1 848 180 93 455 1 3 3492 22 452 8 354 6927 5 137\n1\t603 1007 4158 2 654 6845 2 287 35 255 32 2 345 17 629 5 26 1 166 717 14 550 734 5 11 43 1563 1792 22 198 94 16 2 282 35 6 94 849 25 16 1 3 23 1227 63 497 1 212 471 114 8 798 42 2 684 9 18 40 43 53 566 1025 84 1117 623 3 2 163 4 1359 5 1 53 1300 189 2611 6845 3 11 652 2 163 4 2157 5 1 471 1 684 824 93 216 73 4 11 2560 488 8 191 867 420 175 2 1327 52 36 2611 6845 68 11 282 32 3773 7902 7640 29 60 40 43 17 42 52 19 1 4709 4502 699 120 22 459 650 1904 6582 28 228 134 10 57 364 4 2 3069 5 7362 68 3773 7902 11 1066 16 11 18 5 86 3 1 18 6 169 1269 3 240 80 4 1 699 1 67 232 4 1024 38 4 1 111 7634 10 426 4 19 1446 106 162 56 240 17 774 1 769 10 3019 65 2 222 702 1952 2 1816 1257 108\n0\t10 243 3 8 179 38 355 43 11 228 26 17 10 39 143 139 2882 4 95 796 189 137 1965 2184 23 88 134 11 73 1 377 948 6 56 20 78 4 628 1 8881 67 6 39 311 1289 3 1 120 22 2 658 11 23 83 56 474 48 629 5 450 1 5312 67 130 24 2665 52 19 1 1343 68 11 4 127 2518 120 35 24 28 3784 526 6499 10 39 86 6604 30 1496 2235 5940 3 605 105 223 5 70 160 11 49 10 255 5 1 2281 42 39 908 8718 1 644 2762 393 6 2 298 1746 8315 13 92 21 276 4275 292 10 88 24 248 197 1 1911 1473 1043 3 1 265 868 12 2 222 8843 7 372 65 1 9627 1 453 2 514 2519 17 2611 6 627 7 1 466 6404 13 777 162 147 3 10 2448 6207 17 45 23 63 176 576 11 10 1510 43 1858 5372 8 214 1 6592 4 10 243 480 1 1164 1535 2 1446 991 34 2873 8 7663 17 128 42 1381\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 87 20 26 9 6 1070 2 2895 779 56 2 135 8 6917 5268 421 133 9 938 1 59 302 10 2 376 12 1 1761 4 1469 13 4216 23 947 7 1 449 11 51 190 26 2 4 2 2 3506 4 4064 2 119 5 8398 69 17 13 92 120 186 498 4 1428 7 62 2628 3 286 83 24 1 85 5 2210 69 1359 5 1 3 3478 3238 1063 69 183 3776 5 31 3 9755 19 1 1886 891 1 59 177 11 88 24 89 10 527 54 26 3301 1 7660 7498 13 3661 15 33 423 41 22 1693 3 1135 13 2026 5 359 411 845 1 4760 1864 101 9320 30 2 6353 4 2 1440 4997 2501 339 26 45 27 1019 1 1702 15 9739 1 13 4634 1060 99 663 99 326 85 17 8 1038 2686 1 1031 23 190 26 1699 5 241 7 1 158 9 21 6 58\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 4533 967 5 2 84 238 108 772 7830 3 210 4 399 509 238 1 59 547 177 38 1 18 6 1 226 566 59 1507 17 10 811 36 10 271 19 55 6266 1209 6669 130 925 9 4941\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2018 199 7 1 191 328 5 875 13 18 32 28 4 113 3249 3211 4094 816 2 223 18 749 2421 2421 16 279 4171 3 2 2911 391 4 10 270 199 77 1 4 1315 250 120 11 414 140 2 3 2016 1 462 666 2 163 38 1 111 72 1017 85 15 72 14 33 87 77 2848 1433 106 33 13 777 541 6 46 1016 333 4 1948 10 519 270 1 5 1 1512 3 98 23 230 86 5475 1 1433 178 6 2 3765 1117 839 1232 4 1 111 11 42 3812 10 863 23 56 15 10 136 42 274 7 2 346 334 15 2 163 4 81 246 2 184 254 5 13 23 16 253 9 4161 18 7 459 43 172 345 268 4 23 89 50\n1\t661 3141 1674 4676 2 1779 3433 5 1 4 1 1 4013 6415 140 4676 8063 1 2988 4 1212 3 9315 3 1 2531 4972 6 6129 5 2974 907 4 1 4213 7762 30 7 1 2614 66 8 600 2 609 170 6 7322 3542 19 44 1110 32 1093 3 37 10 621 5 2622 1557 5 44 1955 815 2648 1 1659 5 1 3540 6 3504 603 6 7 6370 3 1 4286 2949 1207 35 14 25 221 13 92 707 4 2498 6 2696 4 7931 3 43 4 1 3141 276 14 193 10 228 24 71 4863 32 816 4711 7 5854 1220 93 274 7 1 349 245 480 9 40 1242 31 1303 234 16 25 120 5 382 3 1 1122 6 31 4 3061 2036 3 534 2768 8 130 2171 432 832 19 1 5520 3888 1 494 6 2 103 6744 29 984 3 1 441 193 9682 153 1857 235 215 16 1 2526 66 8 179 12 2 5227 1298 19 1 692 17 6 1576 5 216 113 14 2 1117 3 11 10 3316 7 9 3055 481 26\n0\t0 0 0 0 0 1 59 888 111 5 335 9 739 6 5 7231 116 522 421 1 1959 43 7051 4 1 369 2 658 4 116 1568 1288 3 308 23 22 3073 436 98 23 335 9 803 13 92 59 2084 2278 12 1 67 189 3 12 313 7 1 280 4 1 4244 3 37 12 1 2784 436 45 33 54 24 1242 1 212 18 19 62 7 4660 3 75 33 963 735 7 112 54 24 89 10 2 78 52 837 803 13 92 59 302 8 419 10 2 535 1020 6 73 4 3 25 1514 14 31 353 49 10 255 5 6385 13 3 9260 6586 61 1130 1069 1 178 29 4 1 12 39 105 78 5 101 31 1644 7 1 2192 8361 1561 9260 6586 54 24 165 411 383 78 183 27 55 3866 1 2743 4612 5 25 306 112 3662 17 98 316 1 272 4 1 18 12 5 8914 6792 3 1337 31 19 1 543 4 1 6899 13 4634 10 29 116 221 29 225 8 118 8 24 71 16 157\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9784 1 698 11 7 34 42 9 18 40 660 34 50 6287 9 1719 4 616 622 3306 1 4 1865 7 42 776 3 5414 131 2 15 34 51 6 5 110 14 692 2 287 44 306 1 182 310 14 2065 14 14 1 848 4 6836 1133 30 25 972 13 92 168 7 22 39 14 8 320 10 32 50 362 85 69 5 26 1784 50 627 2380 16 1652 104 151 9 28 2 191 24 7 50 100 1616 13 150 354 9 18 5 34 1 81 7 112 15 1 80 1477 711 201 32 28 6078 13\n1\t6 2 46 964 206 35 789 75 5 932 2 1167 3 932 84 104 370 19 120 73 36 4442 1981 6 2 129 2221 3 2 514 28 29 656 2291 1 7914 3 7662 15 6702 14 109 14 34 1 807 60 6 2 46 964 206 35 8 449 76 26 200 16 97 172 5 13 7479 218 2741 4442 6 373 279 2 5786 42 2 46 240 67 11 289 75 237 4505 14 109 14 1 1561 40 209 7 1422 4 1 21 93 1745 2 514 278 30 8792 35 1345 8653 1 280 4 4442 1981 19 1 3268 3 401 10 142 15 2 964 206 35 12 446 5 1708 1 176 3 230 4 2 817 1592 3 23 24 2 53 18 19 116 8794 2836 9 21 6 229 160 5 6219 220 20 97 1739 81 35 1662 65 7 9 1592 76 131 796 7 1 21 17 8 96 42 279 3698 3335 13 570 1020 16 218 2741 4442 6 2 42 31 240 129 2221 38 28 4 1 80 754 65 624 3 447 7 296\n1\t2 3526 1190 4245 3 638 123 109 7 8049 25 644 1167 7 1 2790 3444 4 1 3317 1 21 6 109 1171 896 15 34 3096 2472 157 3 5 62 120 15 1 700 4 988 460 14 1 5177 164 29 1 683 4 1 158 3 292 25 278 6 2 103 457 244 198 1195 3 1202 14 1 1518 4 1 5754 8168 460 6291 122 14 1 5464 30 25 1093 3 316 6 1202 7 44 1174 60 190 20 26 1 700 17 29 225 60 63 3218 1 111 11 1 21 42 119 6 1 250 376 4 1 983 245 3 23 76 58 894 26 2275 19 2767 9614 14 5 75 1 21 1506 999 5 3 1 3930 29 268 42 202 36 72 22 7 1 4901 4 1 238 3 101 30 1 5177 413 7 1 135 174 177 207 84 38 9 21 6 1 111 11 10 289 1 410 75 5 1622 142 732 66 6 4991 45 317 942 7 253 2290 3051 34 7 399 429 4 2205 6 2 323 74 1090 4591 6480\n1\t223 290 1 2009 4 746 11 8 57 8563 367 11 1 2985 119 89 10 105 254 5 5345 3 1864 43 546 87 597 23 8627 1 393 5842 65 37 97 2324 741 11 23 230 36 6362 725 73 819 1155 37 1264 42 20 36 41 7 1 356 11 10 213 11 211 1240 698 42 167 3 10 6 2 163 52 5605 7 1 111 11 23 64 546 4 168 32 264 7 28 4 1 113 168 4 1 158 1856 2731 681 269 7 2 7643 246 31 5541 15 1 111 7 66 10 6 696 5 1 102 124 8 39 5598 6 11 10 6 331 4 1201 647 5328 35 380 2 885 278 14 1 4903 3 1796 35 2731 80 4 1 21 7 17 380 2 84 278 630 1 5067 45 819 165 387 3 24 85 7888 5 96 38 1 158 3 55 99 10 805 23 56 357 5 64 34 1 6379 3 4912 11 22 3808 47 140 1 135 8 96 42 4807 3 11 259 7609 6 2 206 19 401 4 25\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2343 232 4 2 718 38 2 6532 1082 5 1483 2 625 1584 30 1 2342 1031 41 3330 82 124 38 265 350 1 299 7 1 856 883 19 1 6 1 84 759 2449 737 34 1 6367 22 3736 256 19 30 3509 647 3 127 2197 5 1708 2690 3358 52 6299 1 3736 22 955 6271 5350 13 92 3679 22 14 78 41 52 15 82 7063 3 3467 243 68 15 9731 2085 59 1550 123 1 21 865 9731 765 25 221 216 36 966 1 18 56 143 1708 78 38 1 157 441 4032 41 38 25 1273 140 1 982 2 568 2259 16 2 184 9731\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 36 38 6 373 2 131 11 8 339 947 5 64 239 1393 5819 6 132 31 313 651 3 8 1662 65 133 44 1060 5819 444 2 46 211 454 3 181 5 26 224 5 4076 6 132 2 454 3 40 31 7676 8 381 75 60 198 384 5 473 188 200 3 9473 2563 37 60 5235 992 65 29 1287 17 207 48 89 1 131 37 6389 13 150 258 336 1 131 49 1 129 310 4508 1788 6 46 1053 3 722 14 109 14 8402 1 212 201 12 1111 239 129 57 62 221 2328 3 6434 3 3024 61 34 46 1470 8 258 336 444 1 60 1553 90 1 131 1988 211 3 23 100 118 48 444 1927 87 41 134 790 1 131 6 56 327 17 1 302 8 143 187 10 2 394 12 73 236 58 52 147 767 3 73 1 767 3084 71 1534 3 52\n0\t61 1 4365 11 5226 3 25 417 87 5 582 9 33 390 417 4 2 33 1564 2 3417 19 2 388 3699 16 851 3 5 527 4690 33 90 19 1 188 11 97 6224 57 459 713 3 8983 17 20 3 7675 33 22 19 2 388 13 50 9241 50 3504 55 79 165 56 945 94 133 9 141 7675 10 12 1 210 111 5 1812 2 56 53 5256 8 191 920 11 8 314 5 335 10 12 28 4 50 430 3267 19 17 94 9 930 4 141 145 20 169 273 45 145 160 5 99 14 8 314 5 99 10 19 1 13 7784 177 15 11 5058 604 4 8 63 8577 23 11 20 2 641 1170 54 8 96 11 1 212 707 88 15 458 1608 3 3402 45 34 4 116 958 104 32 53 3267 22 160 5 26 36 458 83 87 52 484 23 187 2 91 4907 5 3267 11 314 5 26 3629 13 8 96 9 12 1 210 111 5 182 9 983 2 53 131 7399 77 9 930 4 2803\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2929 2 1002 6083 7087 2801 3660 1146 1181 142 5 1 9893 16 9 1897 203 21 38 277 5 2 3254 1052 7 1 1692 5 70 295 32 62 486 16 2 3175 47 3 4487 33 889 102 559 35 291 3430 1509 37 33 3827 3 348 1272 3313 318 518 7 1 18 43 4 126 70 1459 6739 13 252 6 2 1002 673 141 15 1366 47 1025 1 91 121 173 1720 1 4 168 106 162 629 17 3670 3 1 18 14 2 212 6 2 2 8141 29 656 162 29 34 629 318 1 226 350 594 3 49 10 114 8 12 5 5 56 13 9088 9089 5744 289 196 5329 3 2051 6006 289 44 260 115 13 1226 3737\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 191 64 30 34 69 45 23 24 5 7605 116 6589 635 5 64 9 461 728 28 4 1 113 612 7 2 10 472 1 1 104 5 2 212 147 3432 87 20 2082 1 102 14 101 1 166 18 69 292 7 8783 1 104 119 6 39 139 3 3589\n0\t183 1 567 1079 3 3864 66 649 23 4 1 1761 4 31 707 11 5027 7 9025 4 1 438 5 1537 608 9 9514 1245 15 106 86 6705 22 16 2 720 7 62 33 63 64 257 1561 3 1682 4 34 6224 9 2779 3 1 5133 2667 11 33 636 5 4208 122 140 1749 31 1244 5 889 1 8845 13 1118 11 6121 2339 6 2 6196 391 4 847 11 2 715 349 161 635 88 24 193 1365 271 5 1 582 1729 2434 3 256 10 140 2 3 3640 318 116 671 357 5 98 899 19 5 1 398 1361 45 3128 1 1623 9 3277 56 112 62 4054 3 1506 372 29 65 11 2548 3 246 2 2857 326 372 15 10 183 7423 10 5 1 1162 10 196 58 138 14 322 49 1 164 15 1 7 286 174 509 3 2460 13 5814 4 448 11 1 549 85 6 9580 68 835 66 6 269 883 421 1 5894 136 6917 7026 86 1065 6791 441 1077 3 6196 1482 76 1364 125 58 4238 83 351 5623\n1\t29 1239 10 784 11 1 21 6 160 5 26 3098 41 1346 75 12 4425 5 2612 1 245 94 2 3166 10 432 46 1649 11 6 39 2 4412 127 767 22 3007 109 248 3 373 998 116 796 3 93 90 1 21 291 364 36 2 391 4 2921 17 2 8720 13 1601 7 399 1 21 123 2 84 329 1078 1 21 650 460 1488 51 22 97 1683 168 3 1 46 3100 178 959 1 182 11 173 352 17 652 23 542 5 9925 10 12 93 240 75 200 1 166 272 7 1 21 51 61 43 168 11 333 7 2 111 23 228 20 1682 29 2808 1952 42 2 5971 16 622 2791 3 261 35 451 5 64 2 53 803 13 6 20 928 14 2 686 4093 4 1 158 17 2697 12 5573 5 14 7870 3618 9 6 2 3487 5 1 6543 11 2697 57 308 89 319 1472 65 9 6 7 233 20 3719 71 2 3479 454 3 3455 109 7 1 1091 1536 7 2 586 3292 657 17 100 2 3618\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 1893 11 8 24 5 4091 15 1 8 214 3722 5383 2045 2 9054 222 292 27 12 242 146 4638 4623 20 39 1 2264 3 735 4 1 1235 3300 8 83 96 10 1066 105 2593 13 3057 56 2 222 105 78 160 19 69 3586 3 6519 5783 3 98 1 558 4527 1 67 6 501 17 29 1 182 1333 34 23 24 69 358 41 535 4260 15 132 2 6620 506 88 1803 1072 20 24 256 52 77 11 601 4 1 3124 13 677 22 43 53 985 1815 34 168 15 1 4 506 638 176 46 327 1 121 6 167 53 13 5944 8 343 11 1 264 584 54 4 1066 109 19 62 221 41 422 197 1 10 39 247 627 227 7 1 3158 13 1149\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3089 71 2 325 4 16 97 349 220 2727 9 21 6 1 113 1189 18 7 982 8 5130 96 6 1 260 2489 193 163 4 238 3 5865 114 8 1505 9 6 31 1189 3402 359 7 438 11 87 20 333 368 2441 5 1090 9 135 3 16 1 259 35 2701 8 83 1844 1259 7675 23 128 170 3 321 5 118 52 38\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 84 18 5 64 15 116 5657 50 493 3 8 205 112 941 3 2183 77 9 18 29 1 388 5504 72 57 5 70 110 15 58 882 3 132 2 6315 67 86 2 84 18 5 6558 5 3 39 335 116 2016 8 54 354 9 18 5 95 231 41 39 2 658 4 624 288 16 2 1257 108\n1\t8363 60 380 132 2 6706 278 11 6 37 1846 16 104 4 11 387 37 797 5 99 2 287 35 6 1012 14 2 627 287 16 2 13 92 59 465 8 57 15 1 21 61 1 5058 4261 29 1 714 127 61 2313 7 2105 1325 5870 3 1529 7712 17 33 39 143 291 5 1179 7 1 471 1 59 5004 33 24 5 1 250 67 6 11 5697 57 5 256 19 535 6260 7 535 663 5 70 2 4090 3 207 48 27 1322 8 57 2 254 85 3499 11 9 12 48 1 624 57 71 285 1 389 18 3 11 127 748 88 1179 7 2 18 3447 7 9 111 1 19 2 12 78 52 3271 5 1 2876 13 92 4261 29 1 182 384 5 2739 9 3620 67 5 2 3 11 12 20 2 53 1606 8 12 1455 94 283 1 74 668 980 3 98 8 1640 51 61 174 102 588 960 127 1102 165 2 163 2 32 1 410 14 2593 13 1601 7 34 2 84 21 15 2 8649 13\n0\t95 314 7 9 1698 1630 4 6894 47 39 32 355 645 7 1 155 4 1 4209 757 123 58 28 320 51 22 7549 34 533 257 168 178 6 463 31 1164 5522 7915 41 7 1503 7 39 196 527 3 2194 8 214 512 47 2082 94 6633 236 39 105 1264 734 11 5 1 233 11 48 88 24 3 130 24 71 2 84 18 498 77 43 18 29 1 1479 5439 10 130 24 71 721 14 2 1119 259 81 7 1 1530 15 2 4477 3179 1256 3 31 300 33 701 81 3 2373 1 5143 3034 1 5143 2 163 138 8 96 68 1 7537 471 11 88 24 3 130 24 378 10 726 2 536 29 1 182 4 1 161 9704 3 307 789 38 10 17 1259 3 1013 23 284 1 1158 39 495 117 365 6549 48 31 489 177 5 87 5 2 18 15 132 5589 45 23 36 3670 1429 813 3 2565 468 112 476 17 45 23 24 350 2 1568 7 116 522 98 23 76 301 812 110 875 3980 237\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 131 89 79 230 3628 7840 3 400 32 598 1342 14 2 7835 10 12 132 14 9 3 1668 745 11 11 51 58 897 7 3771 198 134 188 8855 77 116 3 23 190 149 41 8855 77 116 155 4515 7402 69 48 38 199 770 897 374 35 100 100 57 2 3 2 66 12 162 52 68 2 755 7192 4 19 1 3135 4 2 1228 3085 69 4789 3 19 401 4 458 10 12 4289 2578 5 64 137 2212 750 7232 374 1378 38 15 2126 4 161 3928 246 87 79 2 3 6359 83 139 3 116 41 87 2 9256 19 3 23 90 79\n1\t27 190 24 71 94 44 2128 45 20 34 5485 17 16 43 4 1 37 190 615 992 5 205 4 44 2598 3 475 123 1110 408 2266 406 844 19 2 3942 2345 16 13 92 644 2838 6 11 10 2148 15 17 3098 1387 1 1109 4 2759 1217 7015 106 190 597 1 5166 5304 507 52 818 68 45 33 57 6025 5 474 16 450 9 6 20 5255 17 1 4 1 1103 4 893 321 7 1 190 109 1142 1 4806 4 1 644 8387 32 2 1106 30 1421 7 2964 5 1 111 7 66 10 6 6819 2887 181 5 26 3 1 790 1646 6 7910 69 10 88 37 728 24 71 286 174 391 274 7 2 3 7052 6990 1 393 6 436 14 72 83 118 106 190 6 160 41 16 75 223 69 436 444 4970 15 2 444 407 58 2587 424 245 2722 14 2 514 353 603 1730 157 76 1416 24 1241 4665 36 2975 4082 7 3327 30 776 271 116 1282 1854 16 13 6463 657 9043 8446 14 1 147 578\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 6 37 4503 11 23 24 96 5 725 144 19 990 114 31 65 3 588 353 36 638 1023 5 26 7 110 10 40 5 26 28 4 1 5118 2392 8 24 117 107 3 197 95 1569 29 399 10 19 1 4 10 385 5 2 2384 2582 66 784 5 59 780 73 1 206 165 1120 3 39 405 5 6303 65 1108 7 639 5 70 408 16 25 875\n1\t0 0 0 0 0 0 0 28 4 1 113 104 117 89 3 46 2915 5 6780 347 66 6915 1 821 1818 2762 2376 668 868 3 1442 121 30 1133 4071 3 626 4469 14 2097 3 1 9118 144 4071 143 139 19 5 26 2 184 376 94 9 18 6 2 948 5 2522 13 92 315 3 482 861 3 1043 7 9 18 22 401 1 4 1 2064 6 4140 3 220 10 844 1 697 2064 5 116 6805 55 52 782 68 45 33 57 620 1 160 1294 1 18 12 829 7 1 697 429 66 57 71 2925 5 174 454 94 1 1 18 40 2 46 718 1 168 29 1 697 408 82 168 61 829 29 1 3498 3 7321 1 3729 152 337 1467 2943 2810 6 55 7 1 108 76 40 2 84 473 14 1 7 1 386 3912 178 66 6 20 59 829 7 1 697 9065 17 40 375 4 1 148 701 2239 730 14 1 7773 16 1 108 115 13 252 6 2 1195 141 782 154 85 23 64 110\n1\t234 754 380 1216 3 864 5 1 1199 10 380 1 443 2 979 1514 5 899 3 917 1 120 3 151 333 4 127 501 9956 84 8698 3 53 3 1043 151 9 837 5 4578 13 6264 5 64 138 1380 7 9 967 11 7 1 2808 93 26 3023 5 64 43 1129 8 143 96 11 1504 177 485 34 105 452 179 10 12 8385 3 143 100 1 9960 1 363 36 1 4237 22 56 452 1 363 276 53 854 103 711 276 39 56 9508 17 23 1942 110 34 125 420 134 363 22 32 1233 5 3629 13 92 265 6 93 169 452 5799 3 6807 43 4 10 22 56 10 2589 56 6807 14 1 74 28 51 22 243 103 265 7 1 238 168 3 10 557 46 2593 13 1601 371 9 151 2 53 4384 45 1397 107 23 63 64 9 28 197 101 1558 10 40 97 4 1 166 3016 14 1 74 1199 245 8 54 354 283 1 74 251 183 283 476 127 102 151 65 2 251 23 83 2942 6789\n0\t1665 3 941 13 92 1329 4 12 2 53 4637 17 7 33 5 90 10 291 1466 7 1 74 28 51 61 240 119 9047 17 204 10 6 105 5 26 2363 1470 1 18 6 4888 39 2 251 4 3489 11 4012 199 32 39 75 2213 10 56 705 10 557 19 1 8783 11 2223 6 828 10 784 11 4848 40 1108 77 1 293 363 11 82 132 14 1 6578 13 92 121 1446 6 345 16 1 80 2482 1 113 129 4 448 271 5 9295 1 59 28 5 26 1056 1470 9739 7859 6 1 6887 17 7 34 1 293 1456 51 6 103 974 5 90 78 4 31 1748 1570 4871 8425 6 3743 5 2 15 345 3251 6496 2536 185 14 1 238 2646 88 24 71 248 78 138 30 95 82 3868 115 13 743 3652 141 4651 6 2 3315 137 35 143 36 1 74 28 22 2422 5 5 110 9 1962 16 6266 596 5863 55 7 1 1324 221 4 293 1380 1 4651 5301 9 6 128 243 4878 50 970 6070\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7748 76 198 26 2299 14 1 282 603 543 578 5697 1049 2 77 7 1 166 5201 1 1228 60 76 20 26 2299 16 9 1021 103 67 38 2 2 282 35 615 11 44 576 76 198 26 15 4341 13 659 43 3178 9 276 2 222 16 202 14 45 23 22 288 29 3647 4 147 4889 17 83 26 292 3351 1667 6 128 7 1 184 1025 236 679 4 9956 5 1 7 1 5 450 17 7 5123 15 1 8100 691 11 10 181 11 307 12 403 29 9 525 5 652 1 3540 77 1 870 14 2 153 1093 779 6 7748 1 651 5 1720 1 4471\n0\t7 315 762 1 4221 3087 579 794 45 127 61 1 293 7368 17 55 1869 5 9 609 10 143 216 530 10 12 29 1 85 51 12 43 47 4 1 4021 94 2 3000 4 97 4221 6372 37 1 1574 1343 5 10 105 14 618 7368 4509 247 1 6472 7 490 41 2 627 49 10 255 5 90 2 709 1045 880 10 12 496 3976 106 16 5540 154 1494 1261 191 473 77 1906 3094 461 10 381 11 91 1600 4895 12 3 650 5875 14 2 25 1300 15 14 109 14 95 377 893 5837 12 34 273 1 131 165 2 211 176 17 790 10 12 2346 916 42 935 11 51 12 162 52 240 68 86 250 3742 738 82 557 14 2 3 2 36 183 41 406 9 191 26 2 402 272 480 1 10 1180 5 26 2 810 16 80 4 1 290 2091 45 11 12 51 37 33 89 28 4 1 1314 579 3 10 54 26 28 4 1 268 5 26 16 1 4 2 131 94 7475 767 4 10 59\n0\t145 56 619 29 1 952 4 184 442 860 35 54 117 1023 5 1030 7 132 2 391 4 3563 14 476 8 830 51 61 2 156 7194 577 368 14 2 1122 4 9 48 56 196 23 6 11 10 88 24 71 452 1 971 376 1376 3 1 915 729 12 9248 5 6952 796 3 4967 17 9 6 2 1 2767 67 456 34 139 32 91 5 810 30 1 1482 769 3 23 182 65 507 36 2 3872 7 2 288 16 2 391 4 5502 11 498 47 5 26 48 3722 6 446 5 3882 6 1489 421 95 35 190 24 1620 122 65 49 27 12 2 635 41 849 14 1 18 123 169 2 604 19 3 229 2973 1101 14 15 95 3722 1072 21 51 6 43 56 179 7977 3 2548 27 123 24 1 4846 4 116 3 23 77 25 2419 45 59 16 2 156 1201 1192 17 1 1193 23 5682 1 82 358 719 4 522 8920 3 6489 133 14 23 560 3 947 16 1 393 11 40 5 26 51 8449\n1\t2 570 4704 131 19 13 1867 6 1807 3 3 1 102 24 39 14 78 1300 14 3701 3 8 112 39 1 166 14 27 198 424 3 286 93 46 13 14 1 161 996 6 39 14 211 14 13 175 43 180 165 3 13 75 38 2 908 13 8 83 165 8 165 3 13 13 479 7 1 7 1 13 300 9490 13 75 38 13 49 8 114 6384 1 563 48 8 12 13 165 5 64 10 7 1 18 5 365 9176 13 1601 7 399 2 3654 4502 129 267 15 2 683 3 43 4 1 80 1201 5324 4 34 290 115 13 3828 39 83 90 126 36 9 7 2 85 49 34 1 1545 22 4605 3 2212 9 155 959 1 4952 3064 4 48 267 56 647 1831 3 211 1765 3 1751 13 1268 4 1 113 2640 1545 4 34 387 260 65 51 15 9916 3 3 218 254 13 2136 190 24 2 254 85 1565 9 16 760 41 19 2534 17 1961 503 10 76 26 279 116 13 13 3885 294\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2343 2 144 12 9 18 490 3 82 104 4 86 130 26 6684 19 75 20 5 90 2 108 537 190 36 194 17 261 125 394 190 41 76 5 90 3291 527 12 1 233 11 132 84 860 36 5122 5019 3 61 1135 1130 7 2 21 4 95\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 497 180 107 527 581 17 11 190 26 145 37 6764 30 75 1446 127 91 203 104 2620 1 506 1198 177 6 56 56 573 676 86 2 259 7 43 232 4 1504 823 51 6 78 527 121 14 237 14 1493 18 3137 17 83 96 16 2 330 9 12 235 898 3911 10 152 114 24 2 119 15 17 12 128 167 2317 676 86 39 2 91 402 445 203 108 17 29 225 86 20 14 91 14 11 18 3354 9 28 39 4597 1 813 276 56 1429 7 9 108 1333 28 3731 8 24 38 34 1 203 4 1 147 402 2442 2565 276 2317 2 53 3067 469 178 15 56 1429 813 6 37 2317 29 225 51 12 2 327 3660 178\n0\t1 750 3436 37 11 85 63 1797 917 86 5871 1 465 6 11 811 301 29 6702 7 1 234 4 1 5694 3 37 90 122 70 155 7 1 3436 6 243 378 4 490 1 18 271 19 375 82 584 197 7 1068 1 250 994 14 2 1 18 432 519 519 2 222 4 2 9983 13 724 1 18 93 2440 32 1 278 4 670 34 1 1488 3 735 77 1 5072 11 618 33 88 925 7 1 74 3515 479 160 125 1 401 3 390 3182 977 144 114 1 4783 2549 7 1 633 250 27 89 2 2082 73 60 181 3 6 332 1 82 171 662 6 3 1850 13 1149 4 611 1 18 1263 2 156 53 529 15 2249 17 10 396 621 77 3 732 1102 3 3637 22 10 93 784 6118 73 270 155 824 11 1 1246 4 1 74 108 9113 2 170 282 270 16 2 542 4633 4 44 231 3 2080 122 5 186 185 7 44 13 743 3 1832 1441 835 1 796 4 9 18 1286 13 3382\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5130 117 117 117 1064 133 9 1140 1335 16 2 135 1 111 10 6 2859 1171 966 39 153 90 1821 42 34 37 91 10 6 832 5 836 4057 4 3502 22 2494 660 51 181 5 26 58 454 7 1 389 21 3 1 3052 4 1 424 322 10 39 153 6567 3 144 123 11 259 390 34 4 2 9 21 6 660 8146\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 7 62 221 70 77 101 4 1882 655 2 85 6 1 67 4 949 1 120 33 3 62 1593 5 274 188 1907 15 2 1317 1502 1077 3 360 672 121 30 43 4 1 113 7 1 5877 9 8236 18 2018 1 13 92 847 9270 136 696 5 11 4 1 757 47 2434 6 78 3 237 52 45 8 143 118 11 1 847 12 9 2434 8 54 5245 11 6 12 2094 9642 3 45 23 63 99 9 21 7 41 786 23 495 56 773 235 45 23 8706 17 45 23 1690 23 76 70 78 52 47 4 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 46 16 34 4 1 4198 176 5 1 108 1 623 6 169 17 10 1662 19 79 78 52 68 8 5207 1 201 6 3 33 1030 5 26 246 2 360 290 6336 6511 140 1 21 43 169 211 188 457 25 3 42 34 46 646 751 1 18 14 521 14 10 255 47 19 1771 1 119 6 11 6336 14 31 612 32 1641 7815 14 2 1182 3 319 32 31 296 1404 15 31 1400 7 7593 4910 1752 6 25 5161 16 2 3166 3 133 44 70 4733 32 97 264 4109 6 185 4 1 1434 2215 6 25 692 8550 3 7559 40 299 14 1 3 3526 3419 599 1 1588 6494 1 393 6 211 3 2068\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 191 26 11 28 259 7 1443 11 143 36 9 108 8 497 9 39 247 50 541 41 3393 8 39 83 64 835 37 1447 38 194 9 12 2571 369 818 28 4 1 700 7 616 2008 115 13 777 38 2 259 11 310 32 4516 3 271 19 5 390 2 1358 167 641 111 5 1431 31 389 141 3 207 610 50 507 38 1 389 108 6412 5 48 2 163 4 81 2564 39 73 2 18 6 38 6655 153 5144 90 10 2 84 141 83 995 53\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 1111 438 23 69 17 59 7 1 111 10 649 2 46 91 471 7569 6 37 1722 3 100 2486 828 44 766 6 862 3 1070 117 2486 828 6 9 6435 7569 7848 11 44 752 6 3238 4 44 217 286 481 365 11 60 39 693 5 1511 10 34 8 83 96 1943 7569 6 2 53 1696 3 2 46 53 4413 685 65 6102 37 44 752 63 26 2920 15 2 658 4 6 9846 115 13 8824 4 48 72 64 228 24 71 1408 16 1 268 69 81 246 2 4868 41 4069 2926 2 2228 1206 69 17 10 6 89 47 5 26 43 426 4 1700 1352 173 24 257 583 536 9 4479 437 115 13 252 67 649 79 28 7629 11 1 770 897 481 117 449 5 5 1 8904 4 1 3843 3 11 6 311 2 3790 4\n1\t10 181 23 22 1 82 120 2140 133 450 1 847 93 123 109 2239 1 5616 4 1 642 1 569 801 6 620 1882 834 1714 9 32 1 215 2603 901 7 2 1317 53 744 1269 119 498 14 1 9880 253 1 2389 3 1 1659 185 8 87 20 36 834 124 46 78 45 33 22 20 11 696 5 1 215 441 17 15 9 8 192 20 2235 8 230 33 89 2429 1714 5 90 9 2 53 834 135 396 8 87 20 96 834 1241 1 347 7 2 53 111 7 43 4 62 115 13 2136 118 1 67 6372 3262 6 2 282 770 16 44 586 3 60 271 5 2 2871 15 1 352 4 44 2603 3 2019 2 4914 13 252 6 2 21 46 78 5 26 219 15 82 1098 7319 231 6 20 53 2160 5 335 490 8 354 23 99 10 15 417 341 7319 1562 45 23 3704 8872 115 13 150 354 9 5 81 35 36 834 29 225 2 103 3947 81 35 36 2603 3493 3 16 81 35 36\n0\t1547 10 12 910 172 47 4 7120 14 30 2 7548 178 774 1 115 13 3204 51 12 1 6912 4 1 4615 11 151 16 2 808 7692 4382 7 1 115 13 10 399 463 7 41 7 1 2045 1909 30 1 7619 6877 1 6640 4 1 950 276 19 140 25 6938 4 103 14 45 27 105 12 1120 7 25 7371 280 9752 2 551 4 78 2774 4 119 41 8254 129 115 13 2595 225 1 950 2 5244 16 25 115 13 724 4 611 55 45 1 265 1082 5 257 72 24 1 3775 478 7 1 14 45 5 199 11 174 534 6 38 5 115 13 872 774 1 769 275 179 4 2 39 49 72 179 10 12 34 400 17 875 8639 16 23 190 149 174 45 23 22 133 2339 52 41 9960 2624 116 115 13 1 2952 4 1 4128 3 24 2 156 385 1 4353 90 116 956 4 9585 4 1 52 115 13 3204 468 26 1578 16 146 36 2 18 5 6702 116 111 155 77 864 49 9 6\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 39 219 9 4489 177 19 2229 3396 5 134 10 6 28 4 137 104 11 23 99 39 5 64 75 78 527 10 63 5338 4041 8 83 118 75 78 2478 1 1940 63 3192 115 13 92 120 22 4478 4 28 1054 94 3152 3 1 631 525 29 1749 174 6897 1949 6 2685 5 134 1 46 13 150 24 107 43 7 50 387 17 51 6 58 302 5 1307 95 4 126 220 9 6 13 9694 79 256 10 5 23 9 744 8 219 1 8112 2488 141 73 10 12 37 91 10 12 695 20 55 11\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57 2 4966 6972 3 207 34 9 18 12 1395 1011 2605 1772 8 544 372 2 562 15 2758 9689 1 604 4 268 33 1 2188 1948 3 4 448 1 265 6 301 7523 5 1 1192 524 7 1323 77 2 974 3 667 12 8683 15 1430 265 32 2 4576 420 36 5 118 144 9 21 1407 19 1 4892 16 2455 172 183 101 4303 48 8 2178 32 9 3515 11 5377 6319 7 145 648 7 1 215 1928 18 29 225 910 4 1 74 1099 269 6 8073 605 142 3 1472 19 44 5784 3653 16 3 93 1680 4131 914 5 2 8274\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1951 1282 6 2 3283 603 817 124 3808 5132 43 1 1703 4 1 7223 3 1 6118 15 218 2741 4442 60 985 44 1128 29 8383 4505 31 1592 7 1 1700 4 988 136 9696 1 4 2 893 8980 11 54 1122 7 1 1126 112 4 1 398 9926 3 44 22 674 20 942 7 1 1446 9974 4 2 447 9 6 2 21 38 1 2790 6963 4 31 1592 3 75 44 1011 5405 2722 205 1 3 3462 4 2 1615 30 1 1212 4 2 2801 4579 45 1 1733 4 157 61 34 1 21 12 3096 2354 98 144 182 10 183 44 80 1697 1165 12 38 5 6 52 942 7 5131 6419 959 893 4586 98 3 1705 371 15 2 466 278 30 8792 3 1 7776 3971 861 4 60 9 4825 2648 65 2 4761 5 1 576 136 253 1 410 62 221 7220 1556 6419 959 2654 14 1443 457 2 147 9 6 2 21 965 52 68\n0\t1282 2257 3 5744 9534 22 152 169 547 407 46 167 14 530 8 76 920 49 8 12 394 41 814 8 56 338 949 3 7 940 8 232 4 36 126 3 8 24 381 43 4 62 104 36 5 2498 3 147 887 6216 155 19 205 624 83 87 11 91 2 2340 7 233 33 22 46 1069 62 9536 22 5 1288 3410 3 1 1769 4 7146 6 332 1 1077 3195 350 91 6062 13 2298 106 1 21 6 758 224 6 7 1 119 3 1 1471 1 263 6 19 1 80 185 3847 3 40 4912 4 1 640 36 80 4 1 1282 2257 3 5744 484 6 46 2674 3 261 1100 15 95 82 4 1 9534 1093 76 149 43 243 8385 824 5 110 80 4 1 120 22 4435 9246 3 23 83 825 46 78 38 949 3 519 1 1428 6 2836 1 3999 1769 6 30 243 443 1093 11 485 4847 13 1601 7 399 123 24 86 53 6397 3 407 4809 245 16 50 6724 10 6 8025 3 961 1410 8537 5582\n0\t577 14 1164 3 5731 8220 19 401 4 458 42 254 5 230 95 3643 3410 41 6429 15 2 1946 35 40 2944 1912 1295 447 15 28 4 62 8524 1727 136 33 205 4004 19 2 2418 4 243 68 101 1474 10 311 4 42 254 5 118 48 12 160 140 1037 522 49 27 1059 9 263 41 144 27 179 596 4 1 215 21 54 8582 2 67 37 301 2130 7 1 7545 2485 3 6091 11 590 1 74 18 77 2 2073 8 63 59 2309 11 1 1439 12 5 5436 2 21 38 2 164 35 12 5 2323 65 3 3497 5 1217 157 3 436 603 2079 12 4 101 3 1 113 288 282 7 1 416 17 35 30 8183 6 929 5 1942 11 2 157 1457 7 1 576 6 58 157 29 29 225 88 24 71 1 3397 4 2 21 66 12 240 3 14 10 6 102 624 1583 65 1130 3 1445 269 667 162 3 55 5067 282 12 1968 16 1037 3987 2176 1247 11 102 624 495 26 1968 16 7538 110\n0\t1161 36 624 7 3 3 624 36 6040 2366 488 3688 34 23 24 5 87 6 1717 2 103 5 90 10 3943 227 16 116 18 5 70 394 460 19 13 858 16 1 538 4 1 2675 1 6 345 227 5 3 1 2036 424 5753 55 527 68 458 17 23 924 24 85 5 1682 73 1 263 6 37 565 51 22 2205 262 15 4859 16 2617 6 7 315 3 482 45 23 63 842 47 1 356 7 3 6582 211 50 1658 410 1910 35 531 36 104 36 9 152 3 1309 49 98 1 475 1168 65 7 2 3 801 6 1340 4 34 73 1 633 466 6 37 345 29 2379 128 23 118 1 1039 1191 61 142 13 92 113 802 22 1 362 879 19 1 688 94 458 42 34 1 36 31 6 6 924 1 5 134 1 2532 3 420 56 261 32 507 36 3771 24 5 64 9 1054 525 29 19 62 1 18 790 6 91 227 5 26 722 3 207 38 1 113 177 8 63 134 16 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 2 46 7198 89 3020 1772 1 388 6 534 3 775 1 5070 6 6425 3 775 4440 3 1 263 6 7606 3563 15 1 692 120 36 1 1360 1557 35 4632 9636 15 25 4055 4 448 15 4055 1 121 6 14 1974 14 1 807 1 5614 22 4 1809 6053 4 3020 8163 3 1 59 177 11 6 620 6 679 4 9108 378 4 7206 16 9 7960 841 47 2 56 84 1058 3020 15 2077\n0\t0 0 0 0 0 0 0 0 0 0 0 0 50 417 3 8 337 77 9 18 20 1311 48 5 7093 17 1247 16 1 1293 49 72 310 827 72 61 59 1056 52 6534 19 48 1 119 4 1 18 152 1306 193 20 1 210 18 180 117 1586 8 373 87 20 354 3333 116 319 5 64 10 7 6247 300 24 2 493 760 10 16 23 4662 20 55 279 1 2551 45 23 56 175 5 64 592 13 1833 2 18 6 37 4326 11 23 24 58 312 835 160 19 318 1 226 681 1507 236 56 20 78 11 63 26 367 7 86 1 121 12 5417 52 68 1397 504 5 70 32 9 141 3 43 4 1 802 61 501 17 10 12 34 224 30 2 1054 119 3 345 8256 13 252 18 12 152 37 91 11 14 521 14 10 165 827 8 337 3 4323 2 4967 5 64 2 53 18 39 5 50 1960 8 354 11 34 4 23 39 1899 1 74 1825 3 139 64 2 53 18 3438\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 26 28 4 1 210 6677 4 18 21 117 19 1 1 967 5 1 29 225 548 215 21 218 2247 4 91 1252 527 505 4560 4560 5388 6046 57 5 26 1247 11 54 209 2464 44 3 186 44 155 5 1 1444 39 5 1291 32 9 391 4\n1\t226 764 1507 2 3 2171 11 3352 122 14 1 5905 4 1 17 98 4693 168 106 27 2296 224 2537 5158 15 41 1 606 178 15 4269 25 2447 5 1 3411 6 404 2 4583 30 25 3 2626 173 946 95 29 399 3 6 404 2 1248 30 25 221 2002 3 27 7917 1 1037 4 1 185 7 34 1 1175 11 244 20 169 14 3965 14 25 972 2823 17 35 451 5 1351 2 16 11 3 14 5598 6 34 1 111 3171 253 25 473 7 184 5295 176 36 6761 309 395 570 168 15 122 22 25 543 7 2 203 11 40 2336 65 34 140 1 330 13 4804 1738 607 498 32 2 3 8467 492 8965 14 482 3 5756 1579 6505 3 3071 253 2544 9 6 2 21 15 2 3439 163 4 3689 3 17 20 2 15 2 67 11 155 19 1733 20 16 119 7069 17 5 90 935 154 1825 4 2 4003 45 42 20 14 14 41 3201 41 1 41 2042 2048 413 10 255 14 542 14 235 248\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 57 5 5682 298 416 9676 3 231 2631 16 202 34 4 1 880 8 56 87 20 474 38 624 38 62 180 1019 50 85 7 898 1873 15 132 1636 3 8 474 162 38 3047 160 140 2639 4 1 5113 8 8 175 1145 207 1 59 302 145 675 51 61 2 156 2110 4 1145 1724 518 7 1 880 72 475 64 2 10 12 53 17 15 28 4287 86 808 54 8055 1732 31 4293 4 3208 72 34 118 11 198 155 3 685 1 2863 2 8022 4 1 1162 1 808 123 20 117 582 866 155 3 13 150 56 449 1 1063 5349 9 3303 183 1 330\n0\t76 26 2 2259 220 1 900 604 4 269 4 5511 1131 3525 5 2500 13 92 67 6 2 5527 4 157 38 35 22 1000 20 16 1 425 17 16 95 3938 29 513 6 31 4213 1500 35 6 15 2 15 25 1327 39 14 27 6 38 5 149 2260 65 15 1 287 27 277 161 5511 417 473 65 3 2883 122 5 645 1 4133 288 16 1198 9203 29 1 7343 1 1245 424 51 22 58 9203 318 1 46 182 4 1 158 37 80 4 1 67 554 19 2 8208 9396 4 4133 13 92 121 6 650 8093 2077 40 2 156 3865 2103 17 650 25 121 12 9099 12 547 14 1 1358 1873 1305 996 30 237 1 80 240 3 8332 129 4 1 229 1 1340 278 12 590 7 30 745 14 5421 35 590 25 823 77 2 2364 3766 12 1494 14 3708 17 44 129 143 56 24 227 5143 16 44 5 131 78 121 13 677 6 56 20 78 204 19 66 5 9066 8 1274 10 2 42 2 148 4133\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 454 35 1059 1 753 15 1 3 40 58 5654 4 48 41 7470 705 27 73 33 83 291 4668 15 48 1 206 1868 37 3070 1 5415 4 2 2024 883 4748 6 20 731 7 3014 9 6 587 14 1 3 130 26 13 2 3864 41 18 63 26 140 2 604 4 97 4 66 4091 15 28 3152 14 109 14 301 2900 1 9 6 1 80 312 4 3014 13 4 490 2525 1059 11 2282 4 3864 1130 2 163 4 85 3 991 19 4096 7 3933 261 35 8497 3179 54 1279 9 559 1062 669 1379 23 130 14 10 6 301 142 7499 13 3053 101 45 23 22 29 34 942 7 41 9 18 6 2 10 127 15 986 158 253 126 78 52 3 837 68 311 765 41 517 38\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 185 3 185 1654 7484 1 971 89 2 718 19 2 7783 421 3138 8995 7 6639 30 2 2118 1085 3085 3 1435 5211 30 1 3326 1 1105 1 1908 954 3398 1094 3 1 199 10 12 174 5242 7 1 622 4 199 2118 66 1970 2307 41 296 7 698 9 2118 9039 12 20 59 2 7783 421 3138 17 93 421 1 2009 66 550 115 13 3053 9 6 2 609 718 6 8579 30 1 1330 4042 16 3 421 10 19 14 9380 112 1387 49 10 126 7 86 33 812 10 49 10 1501 126 13 252 18 6 2 191 64 16 34 137 35 175 5 365 1 234 72 414 1107\n1\t5 414 1566 7096 122 16 2 364 1805 164 11 60 114 20 112 73 2822 57 5559 3 768 29 9 1746 2822 12 1774 5 70 2 329 3 3 352 3081 62 583 183 27 214 47 57 10 3 7412 5 2459 275 1939 115 13 5676 4343 762 2 5804 404 3 33 65 2 6499 1310 7 112 15 2822 16 1 74 85 94 34 1 447 60 57 15 413 7 1 3186 3167 3 3525 16 7805 3 57 2 5 475 29 1 769 42 2722 6 3523 15 583 3 2822 1783 44 5 2459 550 72 2309 794 15 76 55 70 2 329 3 26 1 16 25 147 214 112 3 1499 51 6 115 13 3371 1 462 4 6298 4617 1420 8 1922 12 7422 5 129 4 60 12 2 3 98 60 726 1 4413 1 532 3 6 1 166 1441 48 87 8 710 124 22 650 1491 46 3 331 4 3 262 62 120 109 3 1525 1 21 371 14 43 185 4 1 263 726 2 103 433 3 115 13 2078 2 91 4471\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23 228 26 6159 5 760 9 21 73 745 6146 784 7 110 11 54 26 2 6633 9 6 28 4 1 80 1445 124 117 1001 8 721 1000 16 146 211 5 3659 17 162 211 784 7 9 108 55 1 21 1926 4546 9 12 2 46 904 21 3 143 55 328 5 5912 110 86 2 560 11 10 12 117 256 19 9713 13 150 560 48 426 4 4090 2200 6146 5 26 7 9 135 8 93 560 144 1 81 1968 16 9 21 61 1747 5 139 19 5 90 82 91 703 1416 9 21 6 2 351 4 1 319 314 5 932 194 3 2 351 4 8254 85 133 110 1416 51 22 298 416 1554 35 54 26 446 5 2 21 66 14 2 994\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 324 4 1089 116 671 6 52 3287 3 52 7092 30 1106 6 2 163 3 52 9253 47 68 1766 1 2294 1951 130 70 1365 16 517 4 1 67 1239 17 236 58 894 11 40 5236 19 10 361 45 39 1682 11 23 24 58 312 48 1 466 114 7 1089 116 3253 17 23 118 202 297 38 1 466 7 8112 207 48 8 467 30 52\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 9 18 61 52 38 129 3 364 38 1 8573 9 228 24 71 2507 7967 3 4348 3430 4 6866 3 205 24 2 5358 1946 538 5 126 207 2176 1247 6106 149 2 138 18 5 26 1107\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 1 18 180 107 52 268 68 95 82 669 241 8 159 10 19 855 308 154 349 220 10 12 3 154 85 8 64 194 10 6 1381 885 3 198 3352 146 147 5 437 1 201 12 80 229 2 2053 4 1 46 113 51 117 12 7 4729 5785 9 18 6 31 1409 191 16 95 1537 18 9853 7 1 166 3 9 6 2 4 104 307 130 24 7 25 2015 388 5650\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 6 229 115 13 4196 87 8 787 3559 1 250 129 40 2 5327 435 3 2 1850 4413 27 486 25 74 910 172 7 2 1850 7 1 182 4 1 21 27 1524 6 2 5327 73 4 25 11 27 40 721 25 3 25 940 27 40 2 1721 349 161 3338 35 2898 1 166 3 2091 6 229 2 292 1 532 6 2 1 250 129 1826 6089 2339 10 5 26 2 5327 3 25 583 432 2 58 28 4 1 82 976 250 647 66 22 181 5 7415 2 3049 51 22 52 7 1 234 4 9 18 29 1 182 4 194 10 2091\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7598 12 2 1825 2255 3739 3668 82 27 460 14 2 1086 164 35 31 2896 15 25 3668 2506 11 27 63 157 36 2 3479 164 16 2 25 2220 3 6940 417 1942 9 1846 285 25 7 1 27 762 2 658 4 1164 3479 1046 28 4 126 4705 25 4488 33 4466 65 2 2566 14 60 5488 122 1 97 4156 60 2178 1864 536 19 1 7304 63 561 3668 2711 19 25 221 197 1 4 101 9681 76 27 1364 9 35 22 25 306 149 47 49 23 99 157 7598 5 149 13 252 21 40 71 273 42 20 2 382 36 25 1188 124 17 42 128 3473 8 338 1 111 3739 3668 4240 4367 5 1539 4685 7 9 135 45 23 24 219 1188 1414 124 98 468 70 1 623 14 2593 13 16 3739 3668\n1\t119 1 6057 524 3 86 1380 19 25 4636 25 30 3 25 3839 3 37 926 22 34 256 19 998 16 31 389 2351 9 190 26 75 8916 1059 1 347 669 617 284 10 16 17 2 53 1106 130 359 1 264 119 866 890 6340 13 8568 280 7 1 67 6 37 11 27 6 202 25 5924 4 1 147 6546 11 1 570 4 1 441 6 93 1256 1695 10 629 142 4124 13 5020 34 4 490 10 6 128 2 46 53 2426 97 4 1 453 22 7621 2852 168 22 1325 86 356 4 2432 6 46 8 54 128 26 10 14 2 1016 1260 4 2 84 1158 57 10 20 71 16 1 8446 2426 7 698 8 229 511 26 1435 1997 4 86 45 8 1808 107 75 3779 4371 114 10 828 8 24 71 3014 4 1215 6074 17 8 24 5 920 11 27 56 789 75 5 5963 13 252 6 31 1502 3 3800 589 3 109 279 1756 719 4 290 86 3125 6 5 26 2111 1281 14 2 5 1 8446 2939\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 2 109 179 47 1249 9 18 12 2 84 1411 9531 1 119 6 6886 3 1 201 12 154 222 14 53 14 1 746 5822 954 3 12 496 2072 101 2 568 294 3470 325 2758 9 18 12 58 3315\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8196 6 323 2 28 4 2 5250 42 31 491 441 781 102 4663 6533 16 3035 421 1 2028 5416 33 521 149 730 2845 77 2 2090 33 118 162 5722 13 3 1932 22 102 113 2098 47 4 298 2727 33 1283 720 62 3533 2827 32 5 3 22 1279 7732 30 2 170 996 1788 27 15 126 3 4203 11 1 277 4 126 139 5 2360 2344 16 1 13 1833 1 102 4688 29 1 33 22 1279 7090 16 275 142 3 7 31 62 157 6 1241 4665 7 1 1541 4 1 5034 4 77 62 147 727 33 825 38 2 496 5531 654 7028 1504 13 4550 296 35 789 1 2028 27 2026 16 1 282 5 26 7844 17 33 521 149 827 49 33 597 41 139 6 34 65 5 2350 13 614 317 288 16 2 84 18 875 15 23 16 172 69 8196 6 373 1 111 5 3192\n0\t9 21 3 139 99 146 9809 13 724 45 23 8171 19 115 13 2451 16 873 1886 1738 4326 9518 11 4089 47 16 31 1234 4 85 318 317 1578 5 13 7 9 21 151 1821 42 31 2174 251 4 81 943 8309 32 2421 5 9788 32 5526 5 16 58 53 2560 72 63 515 64 146 862 6 17 72 39 83 187 2 930 144 7675 236 58 13 5676 1 85 9 21 6 2780 23 76 26 1415 3 1455 4 127 2212 9639 468 26 29 246 1019 34 9 85 133 126 176 8516 26 3 95 82 1445 4050 33 5055 19 62 13 3053 43 9799 54 117 139 37 237 14 5 6110 5 9 391 4 7389 1652 14 101 1 4 95 4 86 130 2162 5 23 660 1 3725 4 2 894 48 1 1625 3 3330 708 19 9 2819 76 20 348 115 13 7704 1 3670 76 36 9 158 1 2009 4 126 1410 624 15 2 16 235 54 24 2 2857 6093 13 317 28 4 127 3670 875 1 898 295 32 9\n0\t14 101 2 1269 353 1240 50 2014 7504 19 1 82 874 196 25 1308 30 101 3182 8 314 5 36 122 46 78 7 25 9153 3 5560 8 1136 31 663 69 17 100 71 4147 4 6661 2208 3 218 1398 7 1 40 39 1616 79 1294 115 13 252 21 12 586 69 1 2249 61 6695 16 537 20 59 7 1217 1933 17 7 1 233 11 43 4 126 61 37 2431 33 6940 261 16 2297 1 119 12 86 2 1152 56 73 1 537 61 46 9728 14 12 33 229 88 24 1459 2 138 1518 68 5297 7022 69 17 27 88 24 1789 10 142 45 10 1121 16 7504 9448 1103 4 1 13 150 467 69 114 7504 55 29 2 12 28 1 82 171 384 5 24 28 69 17 1 1398 39 384 5 26 9176 13 2699 1 82 874 8 54 36 5 798 11 1 748 3 5398 61 17 831 33 2004 552 9 803 13 4849 69 1 164 12 2 5130 2704 25 3214 30 25 216 7 2 132 2 8370 13\n1\t31 2558 6430 4 2475 11 22 3881 69 7 9 524 1 4645 6011 3 5065 2 526 4 109 4853 7632 1242 5 2843 65 1 8193 707 4 32 86 402 272 4 6721 5413 966 770 1 4 1 3 319 1501 105 78 4 31 1617 3 944 1194 172 94 86 6 1968 16 3273 1358 1438 81 966 1 466 1238 6 35 151 2 148 3 25 2185 797 55 52 6931 68 692 3 6785 27 63 26 2 3401 2892 4705 3235 4 2 3 8173 25 3179 4 3 6967 5 25 1855 395 198 514 2395 4723 7625 3 8618 5342 93 2 5040 514 129 3 33 4882 7 9 1 2912 196 5 1 1387 1 52 3917 3 91 9381 780 3 1 67 1225 8768 1918 2 251 4 2231 13 1419 1 4197 5 1720 1 4903 258 7 1 1404 4 132 7903 1488 17 797 3 359 1 2863 4 2 18 3343 5 1 46 714 1453 10 6 20 2 84 141 17 10 6 28 11 151 16 31 1590 4 1 3104 238 739 15 2 4979\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 121 12 4131 14 109 14 1 4852 10 12 775 256 371 3 89 23 202 175 5 539 29 1 375 1722 1171 47 701 1192 1 393 12 55 2194 307 721 17 936 1 393 89 10 176 36 297 12 1080 33 114 20 187 227 622 38 1 4116 1 1946 5600 966 1 18 965 52 85 5 436 2210 2 138 4185 1 59 302 8 187 9 8542 6 11 8 232 4 230 91 16 1 170 1488 33 965 138 33 88 24 56 89 9 31 1233 158 17 1 1106 3 121 1200 6060\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 2 464 351 4 290 292 10 6 59 31 594 3 2 350 223 10 811 1339 542 5 5841 8 24 100 107 2 18 899 37 1633 3 37 197 2 5508 9 6 93 2 9200 21 11 270 334 2 163 4 1 85 285 50 493 3 8 1309 31 2896 1234 4 268 49 72 61 229 377 5 26 13 92 59 177 72 175 5 118 6 144 132 2 464 18 12 612 7 37 97 10 481 26 11 298 7 115 13 92 5921 5780 130 1382 5 73 292 60 6 304 60 433 44 1778 37 97 268 7 9 141 350 4 1 85 60 6 598 3 350 1 85 60 6\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 16 28 12 1096 5 64 1290 4173 7 2 21 106 101 125 1 401 247 1 25 129 6 36 34 4 2533 1841 52 69 138 188 5 780 5 199 3 852 851 5 13 3386 89 2 84 6857 15 2 356 4 623 3 2 2438 356 4 112 16 239 4 199 286 1578 5 186 2 103 3533 49 1 1617 2334 7395 13 150 179 2051 129 12 2 103 105 7613 3 2308 959 676 9957 249 17 207 1 111 10 12 13 150 96 1 6260 2175 375 5261 46 211 168 73 307 35 159 126 563 48 12 588 183 10 13 150 24 284 2 604 4 1 746 3 10 181 43 81 22 288 2 103 105 9 6 2 1702 267 3 6 20 928 5 3183 1 922 4 1 234 292 51 22 2 156 3545 72 88 34 186 5 13 743 211 135\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5121 1665 124 735 77 102 137 15 2 8572 4 119 11 6 28 2029 3 137 197 7941 3763 621 77 1 1967 6683 115 13 499 6 4 448 1 203 324 4 5121 31 202 301 119 364 947 16 1 319 3812 383 19 388 7 10 2903 4 277 2831 873 1161 28 1002 9709 873 2784 1 2552 32 1 6744 44 2297 984 6362 44 2 1 810 44 5 31 1400 4355 3 44 1 1401 3608 954 6072 4 3 3 475 1 319 3812 954 109 3370 115 13 6570 194 58 640 58 39 3482 1897 6078 802 3 8762 1 282 276 1120 3 15 1 1675 4 6829 28 9894 1 2294 285 1 1400 4355 178 8 12 1120 4553 5088 29 1 2238 1000 16 1 319 3812 39 36 5121\n0\t6 11 4 275 15 13 6 80 754 16 44 276 217 48 60 57 5 134 38 1 707 4 94 9 108 130 998 2 9276 421 768 60 31 697 13 419 2 549 16 25 319 7 1 4435 121 3358 5615 12 9 25 74 280 94 298 416 13 3986 72 24 9 1021 3564 40 2 5549 19 17 6 15 25 27 173 186 5433 5 7217 217 495 186 25 1855 5 9924 814 27 7043 15 217 217 4011 126 70 10 3377 13 9883 94 28 4 2103 3564 217 5433 70 10 926 2 178 11 72 22 5 7 154 9278 2958 39 5 2873 10 34 827 3564 217 70 10 926 15 3564 7 1 5433 1174 195 8 118 75 358 559 70 10 19 794 45 11 12 117 235 8 965 5 13 2609 34 458 34 207 303 6 1 1697 393 16 28 129 217 1 3547 4 1 4307 2824 10 196 79 260 7 1 7694 4 50 1608 11 12 1 8 39 13 7414 36 155 1 85 9 18 472 47 4 50 727\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 18 6 46 8 83 474 48 81 134 38 9 141 9 6 2 46 53 108 1 453 30 5968 280 40 1 2057 435 6 1111 73 27 451 5 3964 25 585 75 5 3258 157 7 524 146 629 5 122 3 5685 12 84 7 25 280 14 1 4014 1 607 280 4 35 262 1 280 4 12 12 53 7 44 346 280 60 57 7 1 108 14 1 9655 3 14 1 1800 24 2 46 53 2771 3 1 267 61 2406 1 593 6 46 452\n1\t30 2306 34 1 3 11 1 5139 151 86 2559 142 13 962 7823 3927 2 1529 3 1517 8251 49 10 255 5 8072 4523 1567 5490 3 258 5473 4233 121 32 25 5360 5368 2399 2712 856 952 1440 1 453 22 6760 6 111 105 2518 3 1974 5 757 10 14 2 1195 4747 466 136 1 8764 709 4931 4 4252 3 4 4038 361 23 662 1094 15 127 102 37 78 14 29 949 591 49 1 2033 2 7078 522 65 3 224 7 1 8437 2889 8459 138 1891 2 3646 2 4774 1950 951 5 2 9467 178 66 77 2 5185 439 49 2 170 886 1 2342 7 2 3578 606 1430 6 8613 5733 14 42 37 5612 3 11 28 811 52 68 1728 49 1 1198 7518 5792 65 5 1 8335 638 7384 582 1729 847 4898 6 1 4602 2 732 3532 2328 3 790 412 1761 66 151 34 1 423 120 291 36 1348 7 9274 3 14 16 1 2582 106 1 2643 270 19 257 15 2 1 736 16 9 3765 7887 6 34 1 699\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 322 10 373 6 1031 235 422 470 30 58 3018 3488 58 2504 58 4973 10 6 2 304 1772 42 2 103 673 17 436 11 12 73 42 1 67 4 31 161 1559 50 113 497 16 86 1 120 22 3275 81 3 9113 33 22 2959 1 453 22 53 3 1 570 178 12 862 307 35 40 2 63 1999 5 110 3 7429 83 55 24 5 134 2357 16 2 799 33 22 155 7 1 161 663 3 34 1 1076 6 7668\n1\t9049 1212 6 2 60 2995 1 4073 4 2659 5945 4911 1123 3167 5 24 28 570 183 44 86 6772 77 1 13 92 82 1793 1 82 113 493 3 3519 39 36 95 1793 5204 3 24 2 6519 854 136 1123 3167 16 1549 1123 2587 16 4470 17 207 207 1 4 1758 1095 7 66 55 2 493 76 473 19 2 53 493 45 1 1617 5 899 65 1 2135 4380 2334 2330 29 2 1 1793 5204 1 82 1793 5204 94 7 1 1710 1212 6 2 3167 196 5 637 1 802 73 292 237 32 101 9448 6 3 40 31 2587 440 5 566 155 30 712 44 5374 14 4914 32 44 749 708 19 1289 17 1 1304 444 138 68 138 68 2 1793 985 47 11 44 5374 22 2 4 115 13 624 63 26 1798 5 239 6874 13 7 1 570 2859 7080 4203 11 3167 40 2 1221 3 9 738 1793 40 1 1187 5 473 7 1 45 10 20 459 7199 624 63 26 1798 5 239 82 7 2 111 11 58 487 88\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7816 8 320 133 1 74 628 3 487 114 10 94 133 194 8 39 1309 10 142 3 553 2758 7426 2010 39 174 402 445 646 100 64 2 185 358 5 9 977 38 755 4582 172 1372 51 310 185 3468 10 3154 55 1129 688 8 39 1309 10 142 316 3 1113 58 111 145 117 1927 64 2 185 535 5 9 977 38 4582 2 349 1372 185 535 310 689 8 12 439 227 5 760 10 3 2010 8 39 94 133 110 3429 8 100 152 1640 75 78 104 63 4206 127 2569 39 552 725 3 83 760 1 212 1199 1961 503 42 279 154\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 150 455 38 433 32 2 11 57 631 5197 4 1062 19 3560 27 336 110 109 8 219 31 431 41 358 7 1 362 3299 3 12 7895 37 8 7403 10 689 94 2 156 172 8 4177 655 1120 15 1 1955 1045 9596 5858 12 8 5658 63 23 134 322 1589 8 165 3154 1107 1 1428 3 9505 22 46 501 43 4 1 3984 22 37 37 15 1 647 17 125 34 452 50 430 120 22 742 2668 217 1725 3 9798 783 3 492 373 22 7706 46 4014 3 2257 755 1825 845 949 9213 12 111 52 9244 68 561 111 3 19 1 952 4 1645 45 20 2425 105 91 33 205 6920 1 259 2147 7 315 648 5 6 2 2438 14 2 212 1111 46 288 16 5521 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 962 7 346 6 906 378 4 1204 25 129 14 2 1681 3 7 11 7067 10 40 71 107 1179 5 25 280 3 110 39 14 5562 7 1 215 376 2748 1199 8 497 8 76 100 365 296 5946 66 3270 271 1 5 70 1 859 2086 8 2400 15 50 8 58 1534 99 1 983 66 6 2 4897 73 1 344 4 1 201 61 452 10 6 2502 11 6077 280 896 6301 578 1663 17 1 2009 7019 1 111 1342 6 8 6528 8 83 2203 1 166 1403\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 12 1976 30 2105 17 1 21 343 46 3 7810 10 93 57 1 210 1905 33 61 229 160 16 2 1197 2526 17 34 10 114 12 597 79 1 1193 4 48 1 212 272 4 1 67 1306 34 82 1886 104 22 138 68 9 461\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 174 4486 4477 18 11 440 5 1844 1 199 1655 3 1 5170 2495 2166 1 16 154 2662 220 1 84 261 35 40 117 3455 85 7 1 199 1383 63 64 75 9980 9 21 705 3239 3 8558 22 34 1328 341 4 611 34 8765 6862 22 463 3881 3728 41 900 4282 2921 15 58 525 29 80 4 1 1463 24 71 125 1 576 156 982 1123 154 3 2868 2247 32 1 22 1463 14 395 1387 424 58 28 789 16 273 144 43 22 1415 3 508 22 7117 14 9 6 20 7956 392 6 20 299 3 8 118 3 15 43 167 686 854 341 1 1655 40 1 8481 5 186 474 4 34 4 104 36 9 76 20 3183 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2676 1096 8 1150 9 18 16 28 86 89 79 175 5 284 347 3 70 1 331 471 115 13 1 18 6 2211 1 1165 6 2769 109 3 5040 5213 1 113 4 50 3 6221 3 5205 87 53 13 9 6 1 210 121 329 180 117 107 32 3924 721 1437 45 146 12 540 15 25 9201 341 8 812 1 1722 706 111 27 666 123 162 1202 571 176 170 3 80 4 1 82 453 22 1530 17 37 156 188 4008 371 7 1 129 3 1 733 1273 11 8 12 3519 3 2048 109 183 1 714 115 13 1964 46 2284 195 704 9 18 6 687 4 916 8 190 24 5 3131 174 342 4 4821 5 760 356 4\n0\t1 5419 119 1552 1851 2 84 934 4 2466 16 1632 886 40 2 1598 8557 1503 7 44 155 10 196 527 341 55 17 646 4479 4840 13 92 121 6 1227 3534 80 4 1 9182 871 22 426 4 4709 17 20 46 2959 19 1 82 1737 4444 6 167 489 1 1995 83 186 62 871 1067 29 399 17 9 6 2496 2 53 1606 45 3771 713 5 26 6256 1 21 2893 71 55 2194 66 6 832 5 13 6406 23 70 576 1 790 4 1 141 51 22 152 2 156 529 4 1 178 106 886 585 1225 295 15 1 7820 6 1317 3654 193 42 31 761 49 33 70 997 30 1 9104 1 8319 919 136 46 6 2 1796 4 11 17 100 169 140 1 13 9 18 152 2200 79 1710 8000 4973 51 61 2 156 1362 546 11 89 10 202 3245 197 477 5 7766 19 86 53 546 5239 1 18 54 26 38 2 906 1 344 4 1 18 924 1071 2 3441 9113 8 187 10 2 13 6570 101 167 420\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 337 5 64 9 21 3 180 165 5 134 11 10 6 28 4 1 138 124 180 107 9 2463 1 5660 6 89 65 4 264 3313 34 605 334 1 46 166 326 7 2 346 3203 1 584 209 371 46 2068 7 1 769 5753 2 222 4 1 111 104 22 1001 80 4 1 171 3193 46 322 66 80 407 6 965 7 1087 4772 4 9 8 258 381 1 121 30 1 466 2922 3 8 1887 11 970 40 165 1 540 1799 38 44 3892 14 23 228 24 1887 7 50 753 6 20 17\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 20 56 2 2305 753 220 8 114 20 64 80 4 1 135 8 2165 133 110 1 21 6 46 5517 15 1858 1358 3 1170 17 11 6 20 144 8 2165 8646 13 8170 12 1 8 219 39 227 5 26 1694 5 375 647 34 4 912 61 20 1470 307 12 2 9115 8231 15 58 2316 685 79 162 5 176 890 1467 8 214 512 20 1 225 222 2284 38 48 33 54 87 398 41 48 228 780 5 2350 13 614 51 57 71 55 28 454 4 4584 3 8 83 467 53 41 327 3292 8 467 31 240 3292 8 88 24 2716 15 110 99 4 5 64 48 8 9605 7 11 21 1 2142 129 6 2 528 17 27 6 1470 1712 3366 436 114 2 53 329 7 17 25 129 39 114 20 4783 8892\n1\t3 6953 5 34 188 2 15 2 4774 356 4 5946 396 1295 7155 6718 3 409 409 409 409 409 409 409 115 13 5020 101 2 267 29 3754 1 3415 4 396 7435 1864 100 3825 5 26 41 7416 142 82 3242 3531 51 22 375 203 2326 132 14 1 4 2 2 2204 4 1414 31 7331 8484 9377 3 2 2585 4 55 52 4183 22 529 49 1 251 270 19 2 52 1511 3 4424 120 132 14 3 22 620 7 2 52 7613 7114 1 21 1260 6 1 113 4 490 17 43 596 190 1088 33 5507 13 92 1381 2107 957 251 93 270 2 264 378 4 239 431 2405 19 31 2852 129 15 239 857 914 5 28 2582 1295 2 3928 4830 3 2 2114 1404 292 97 596 190 20 335 1 3580 4 1 21 41 1 957 251 14 78 14 1 74 4069 479 407 4432 5 75 5583 1 3415 4 63 1718 3 75 5 3684 147 13 659 2179 1 3415 4 6 373 279 2 3791 14 36 1 3224 4432 468 100\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74 4 34 16 9 18 8 39 24 28 9 6 28 4 1 113 104 11 2610 503 32 42 67 5 42 2137 37 1529 262 30 3 8 12 46 1475 15 9 226 628 73 27 56 758 1384 5 1 919 14 10 12 2 46 254 1174 1604 1 102 4 126 6979 2 11 619 503 32 1 477 318 1 769 781 7 1 744 2 2566 1029 15 1549 11 3548 285 1 389 1344 9867 7 1 108 1 67 270 43 85 5 14 1 3213 4 1 120 6 1896 17 475 72 22 15 2 360 901 38 112 3 7989 45 23 24 1 4343 64 194 73 42 2 18 11 76 875 7 116 438 16 97 290 311 491 69\n1\t6841 4386 3 2 379 35 1275 65 15 2 163 73 60 1371 849 34 1 136 2202 5842 5 44 3403 218 1908 19 60 649 28 287 2 1 414 15 6 1 14 237 14 8836 6841 4386 25 5464 985 47 11 1347 6 3592 5 7282 415 16 912 162 6 117 1509 3 2080 122 45 10 981 2056 10 981 36 25 13 1964 4 1101 3 657 145 1415 4 101 620 7 2 1332 822 3 307 6314 34 22 286 23 173 352 5046 9 983 66 6 2 1829 8423 4 257 5778 42 3184 827 213 3960 3 1316 4808 69 42 1 1 1 3 3 98 1 20 5 1 4 911 36 966 1 59 177 38 1347 6 11 27 153 24 2 1616 146 4 7 1 344 4 50 231 3653 50 1007 100 57 28 13 92 7 9 131 22 14 2 4879 2041 19 35 6 609 14 25 1725 3 14 1 4872 17 307 6 2332 45 23 63 186 1 882 3 1 5322 9 6 2 84 983 31 3306 4 147 9991 3250\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 609 108 1 61 39 2713 105 91 10 1168 183 10 3626 172 16 2 5409 17\n0\t287 3 4470 27 40 34 2329 4 893 38 535 268 2 326 15 264 287 3 20 39 59 15 13 499 93 153 24 2 91 1117 2434 193 10 34 811 2 222 17 5519 42 34 138 288 68 80 82 35 45 1 6473 57 71 340 138 1097 5 216 2159 1 18 54 57 2149 2 138 13 92 67 56 196 29 1287 51 22 56 43 1445 11 22 396 52 1941 68 33 61 515 377 5 1142 145 648 38 16 5540 1 212 188 70 527 308 33 18 418 7300 1918 1 1905 93 1 212 111 1 67 6 101 8680 3005 155 3 3194 189 1 795 11 653 3 1 250 1921 15 25 5464 811 2 222 772 3 13 724 14 237 14 91 104 22 8181 9 39 213 28 4 450 42 20 56 95 138 41 527 68 95 82 1610 9707 2493 15 696 13 181 1021 3 169 491 11 33 1180 5 201 3 1984 3190 7 132 2 641 346 397 14 9 28 705 497 33 61 56 1770 16 216 3 13\n0\t263 38 2 4 73 27 159 103 1617 5 3304 25 1854 7 132 31 14 2 8772 3561 7 5 891 153 37 78 3304 25 1854 14 27 10 16 1 9 3956 21 15 31 761 119 123 14 78 5 25 709 3214 14 10 123 1 23 118 2 21 38 2 3561 6 7 4513 49 2 178 29 1 6 262 37 23 481 785 1 3758 59 1 9790 1 1084 4 1183 14 8319 35 2656 1 706 17 6 7 864 2 32 7698 854 6 31 697 3 27 153 24 5 1429 31 25 1778 6 1 580 15 5 9355 6 1 11 1 120 90 37 1469 891 153 5777 301 32 1 2364 16 52 68 2 156 292 1469 2731 350 1 18 14 482 259 1607 64 122 2496 14 1 709 4549 4 133 25 4308 3471 8590 623 3 7650 891 3455 14 1 644 3419 1840 3 28 4 86 723 1 948 6 75 132 2 6415 4 860 88 47 132 31 5913 4 2 1211 38 1 59 1362 865 4 5 9355 6 1016 21\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 2695 16 113 572 17 433 47 5 17 776 1620 47 9987 16 113 2099 8 83 64 144 12 2695 16 113 607 1651 8 39 83 96 60 114 2 46 53 1614 2625 1932 3 776 3 62 277 374 22 1204 4445 3 588 77 1 2269 2063 7 1 74 178 4 1 108 33 22 160 30 1591 5 6035 2168 1932 3 61 7 1 2790 5 582 1 6117 37 33 22 46 1455 3 321 6161 17 49 33 4688 2293 62 6 2 3850 536 51 3 20 78 463 63 87 38 110 10 498 47 1 3850 59 3457 38 319 3 6 1774 5 90 2 934 15 62 6 52 5 1 119 17 23 63 149 11 47 16 4175\n0\t200 1 85 1283 784 702 69 850 4258 7685 69 3 1036 5 26 2 16 2 658 4 510 1648 35 90 122 2 2853 392 27 271 94 34 1 91 559 3 33 209 94 122 3 94 34 1 1076 27 741 65 15 25 2079 7669 1 74 682 13 207 1 23 63 93 149 10 19 1 155 4 1 305 8891 1 697 18 495 348 23 235 1939 15 58 4211 168 4 1357 58 53 2669 41 120 7 940 32 50 7205 2253 7660 315 1608 8 187 23 8176 7 2559 45 11 282 9 11 6 377 5 26 4789 8667 20 28 427 4 1201 927 3 1580 456 5 1203 2 2159 1253 5 11 1 1205 439 188 11 2704 1 7 940 11 23 228 531 322 11 981 167 78 36 2 351 4 387 3294 596 76 841 9 827 41 24 236 58 5720 656 17 45 23 338 1 104 16 58 82 302 68 11 33 61 6577 3 548 69 64 126 316 3 87 725 58 30 242 5 176 16 9921 106 51 22\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 51 22 43 188 8 76 100 144 255 7 8318 4 49 674 1333 20 227 6 31 5821 8 76 100 365 9 158 3 11 6 3711 45 23 1782 9 21 852 31 697 141 23 228 14 109 26 8988 6797 852 2 292 11 190 109 26 888 45 23 9 644 186 5290 16 1 80 7150 1103 4 2 2710 220 2338 3 3145 2460 5187 2495 5 932 2 764 2749 6797 2417 32 808 823 2756 3 2777 15 245 10 123 932 43 4 1 80 892 529 4 95 21 1218 2301 9 6 58 1 166 63 26 5 154 82 919 1940 1 103 282 35 1630 37 1438 444 229 16 43 686 1004 444 185 2562 98 805 45 2276 6 3715 51 6 58 680 60 88 24 5503 122 9 2043 256 8305 45 23 617 107 9 141 23 481 1064 725 2 686 1 211 505 9198 3 4063 151 9 2 191 64 845 95 21 5 1992 1623 317 94 1011 2931 11\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 3893 14 2 4626 42 1375 42 829 426 4 36 2 718 17 11 8 2172 12 39 73 98 33 70 295 15 2 6041 443 3 9932 9 40 39 71 612 7 1 2736 19 305 14 31 6300 4808 541 42 20 11 6062 13 10 1026 200 2 526 4 2976 19 4028 1173 14 33 139 5 4445 16 772 3 15 1 3132 101 5 70 51 5358 493 475 1337 6 2 342 4 93 19 1 166 426 4 3132 3 23 24 2 901 4 2599 2976 242 5 70 43 13 1 4423 1020 9 40 46 103 3536 3 2060 1580 447 1025 1281 8 497 1 1020 6 16 4 66 51 6 13 614 23 36 3243 8742 197 1 5946 98 9 190 26 116 1689 45 23 24 95 1568 303 98 8 54 229 925\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1530 1 18 6 53 17 8 187 10 2 755 73 1 312 4 2 1182 4474 1496 31 4474 6 1011 2603 4815 9 232 4 930 39 1583 5 137 9561 11 2 1182 4474 6 610 36 31 74 4 399 9049 4 3920 3 4775 4 3 734 65 5 1182 31 4474 6 78 52 7456 55 193 42 111 1024 42 1050 28 4 1 5710 7 1 77 116 3 730 5 1 98 720 116 221 1346 5 79 75 146 36 11 88 26 32 2 300 1 40 43 1380 19 1 11 498 116 77 127 8 88 64 458 17 4989 1 846 143 96 4 656\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 20 695 10 39 270 1 5711 2809 3 450 34 1 250 120 90 364 68 2 3002 33 34 414 15 62 4192 479 34 9574 3 33 24 58 2902 15 3129 1 716 22 586 3 132 14 102 4 1 355 1620 65 30 2 315 8793 73 28 4 126 57 2 288 4980 19 2887 12 25 6081 3 1 82 259 57 19 2 294 2624 65 75 722 244 2 5711 37 27 153 118 38 23 190 24 5 26 2 5407 5 149 95 4 9 691 695 775 248 22 37 1370 5 1775 17 515 483 772 5 6555 8 230 1140 16 1760 3 6645 8 497 127 22 1 59 7536 1492 16 111 576 62\n0\t17 1 607 201 6 31 3 3784 1378 4 3 3869 9002 35 339 751 2 2481 16 2297 45 23 63 842 47 1 119 317 2 164 68 9615 28 196 1 507 72 6613 32 178 5 178 39 5 899 1 21 385 5 398 184 3875 30 1 182 4 1 18 317 152 5364 3719 2963 25 3 90 1 5412 4 735 19 1 81 35 89 9 13 427 69 42 31 2158 5 257 2717 11 33 89 2 967 5 9 21 7 1 74 1888 1 215 553 1 260 441 1 1389 11 130 24 9249 3 303 818 1 879 23 61 928 5 9076 51 22 58 1683 1318 5 917 127 120 11 12 7 1 74 69 1 2906 35 433 25 9285 1 103 282 35 721 1 6618 1 1946 35 44 537 69 55 411 12 52 240 30 411 7 1 74 21 68 34 1 82 120 7 1 967 256 1413 8 230 1140 16 2025 35 1148 9 21 3 20 1 74 73 4541 229 100 175 5 99 1 215 3 207 2 148\n0\t2 330 2442 3103 1 67 1478 5 24 71 428 30 28 4 1 4424 330 20 56 34 11 39 37 641 3 6872 11 2 454 1304 33 191 26 1156 146 37 33 96 10 6 42 1375 42 610 14 641 14 23 96 10 705 8 2786 1 207 75 8 118 11 10 80 4 1 21 39 57 81 1157 200 62 242 5 176 1 6220 12 3182 1 61 3534 8 112 402 445 502 8 93 36 816 783 3 492 20 7 9 63 348 33 1121 355 41 1121 355 1390 1878 73 1070 62 4418 779 62 2447 61 7 110 8 112 1347 27 12 59 7433 7 9 108 7 698 1347 278 6 1 59 302 8 419 10 535 460 378 4 1347 12 59 7 10 16 2 212 102 269 8 54 1379 5 884 890 1 305 5 1 102 938 1347 6168 45 8 57 881 5 1 5599 3 1390 52 68 2 3780 5 64 9 6004 8 54 24 71 3 50 319 1877 3037 1 81 35 89 9 76 87 138 398 5623\n1\t89 9 21 59 2 349 183 7 1 27 6 28 4 1 34 85 10 6 240 5 176 29 1 7737 189 1 102 581 258 7 647 1 59 250 1820 101 11 28 6 370 7 5618 1 82 7 13 2361 24 367 11 3024 121 12 364 68 436 35 12 1868 1576 16 1 280 88 24 248 1824 618 6 169 1202 7 1 280 3 40 1300 15 918 386 280 7 9 21 419 10 39 48 10 275 35 153 176 36 2013 6050 1 280 14 1 213 31 806 286 114 10 15 14 78 897 14 95 82 13 92 788 3 941 22 34 7419 55 1 9843 29 1 182 4 1 21 151 10 2 138 21 15 10 68 283 11 51 56 247 78 412 85 5 90 132 2 2083 733 6256 314 9 980 5 90 10 291 14 45 1397 1019 723 719 15 450 13 150 54 24 5 1090 9 21 65 15 220 10 6 46 696 7 67 3 4923 54 1092 70 1 7777 73 4 9513 4640 7910 9433 13 13\n0\t272 4 3972 176 8 192 300 540 38 146 3 4925 20 667 9 6 2 301 91 18 73 55 45 145 7 4138 8376 16 4423 172 8 128 83 118 235 41 58 729 75 97 8 284 41 75 78 8 1594 126 3 1876 5 62 80 4 23 34 47 939 59 81 35 61 56 542 5 126 3 1 3729 118 1 1387 516 34 2938 13 872 16 1 182 8 39 2942 134 16 34 4 8026 3 596 3 1562 9 102 413 61 3 76 26 1 700 4 34 387 58 729 75 33 1457 62 486 17 786 7 1 958 328 5 26 1824 825 3 112 239 1885 96 53 55 16 1 879 11 83 36 1259 73 29 1 20 38 75 97 319 41 3988 2890 88 70 3 75 884 2890 88 70 5 1 5199 86 38 116 1537 5 1 3 8439 116 116 823 3 45 2890 2108 5 87 458 23 76 26 536 2 157 55 94 3778 3 112 5 8026 2555 1313 3460 3 1 508 35 90 2 720 7 9\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3458 1237 145 2 568 325 4 2804 484 3 4 2051 14 530 37 8 77 2 558 314 1320 3 214 2 1919 8312 8 284 1 155 3 10 2397 53 3 16 10 12 2 53 37 8 472 10 408 3 7425 10 7 1 48 2 1316 1540 29 50 717 944 8 1999 52 5 104 36 38 226 366 41 6676 6602 17 128 8 320 48 10 12 36 5 26 3 7 112 15 31 972 2112 966 72 34 24 137 103 49 1181 3 45 10 153 216 827 1181 3 72 96 11 4547 100 70 125 110 17 4 448 72 1405 97 1287 42 11 426 4 1316 538 11 8 56 165 32 9 108 1 507 4 8 320 49 146 36 11 653 5 6 34 140 110 1 120 22 240 3 8 354 10 5 261 35 1143 2804 484 1886 124 7 4909 41 5 261 35 39 451 5 139 155 3 320 2 85 7 62\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 12 852 2 718 11 2665 19 1 1926 7 2672 378 8 219 2 164 35 1 233 11 25 84 7547 433 25 6390 5 1 5686 1499 3 9 337 19 3 778 45 561 231 57 125 1 8884 8 894 11 561 54 24 95 922 15 1 469 2200 30 8 1662 65 774 1 2265 106 561 231 1647 10 1255 8 909 52 68 1229 19 25 1499 8 2178 46 103 38 1 622 4 7 1 3 1 5 1 30 4 1 3330 2326 5 1 18 22 47 4 334 69 37 48 45 2142 4035 262 561 84 123 1 545 3494 95 2308 4 1 280 4 7 1 2672 30 1 781 4 161 21 3502 4 2 3124 8\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 1 4030 4 9 21 57 89 95 525 29 7570 864 5 1 640 10 54 24 71 39 28 52 351 4 387 2128 3 1688 4471 6204 30 2966 34 4 864 5 1 33 24 1242 2 1411 35 88 1369 65 2 21 7 66 31 1928 1823 2731 1 389 21 121 36 783 528 15 1 87 20 8950 9 21 14 3786\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1517 381 2461 821 49 10 310 827 3 12 2275 49 8 159 1 1625 16 9 158 3 55 52 37 49 8 214 11 57 470 10 2085 1 158 245 12 2 580 1 2946 22 1677 774 1 1086 3 3022 4 1 215 3 1 67 6 775 8242 181 5 24 2163 5 1229 19 1 52 1637 4 1 2461 2797 3 27 153 87 2 46 53 329 29 194 6062 13 92 80 837 185 4 1 215 2461 821 12 1 733 189 3 33 61 205 47 4 62 260 85 3 2416 929 371 30 80 4 399 33 61 211 3 20 37 675 40 58 2328 7353 3 6 2 35 39 451 5 70 55 193 1 21 6 153 24 5 13 2718 24 34 107 124 72 17 511 354 5 4075 16 43 302 41 1715 8 511 354 5 4792 571 300 14 2 3199 20 5 116 860 3 2 1313 17 515 20 2 1313 4 154 1117\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 179 1018 1180 5 1291 32 1 3830 4 185 6861 12 160 5 26 7 185 358 497 1265 8 39 96 33 130 4 643 44 142 36 7 2848 1 8154 185 358 4678 118 48 8 13 252 18 36 2703 7235 3 2868 2247 358 1417 104 740 2 682 13 252 12 1011 7994 1 212 18 740 2 18 6960 13 875\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 1664 162 5 4315 10 153 4891 19 95 3432 1 121 6 2680 1065 33 515 30 1 2206 4 1 182 447 178 61 242 5 26 1985 17 39 1168 65 101 167 78 2 2234 4 48 1 21 12 7514 1987 528 8 173 241 48 2 1941 18 9 1306 115 13 872 145 46 273 8422 1168 65 7 9 21 1232 60 193 9 54 26 44 1173 295 2 108 1 465 6 58 1217 6 160 5 1382 15 9 21 14 1 21 266 47 36 2 3509 431 4 1 41 146 4229 29 4224\n1\t659 5 9 1541 255 2657 954 678 6484 638 35 649 1 112 3538 1207 69 7 25 9316 4 7632 4 97 172 2379 69 11 1 886 7 1193 190 26 8 1266 998 1 1044 618 4914 6 195 105 5 3539 41 4219 36 2 7151 7 1044 4 2 2014 27 16 1 184 618 20 183 1565 11 228 24 2 1085 41 102 13 2719 255 2 1658 5464 3 2 1219 665 1240 9 4215 4 275 35 213 1341 41 422 2 701 11 60 40 152 219 1 1616 21 60 191 176 155 15 6236 49 44 310 142 15 1 6702 4 69 5224 2022 199 29 137 663 22 223 9700 3713 60 153 96 1966 6 169 14 2244 14 307 422 69 41 422 60 153 96 1 263 6 53 227 41 44 1114 227 5 87 95 2305 7121 13 2609 375 4 1 1584 7197 845 10 255 5 2 2281 11 15 2 11 136 14 14 1 344 4 1 141 380 199 227 16 1048 8869 535 69 496 2422 9 190 26 29 9 272 7 5623\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 57 298 1750 16 9 158 220 10 40 7565 5023 3 783 17 137 1750 310 7996 5 990 7 1 74 910 269 41 1943 12 2348 20 55 121 41 1212 883 1516 2801 88 552 9 135 43 4 1 1032 363 61 169 501 17 508 61 7883 1 119 12 8718 55 1045 596 130 1899 9 461 2442 6901\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 332 1 113 231 21 180 107 7 169 2 3166 155 5 1 74 5206 6 2 18 38 157 140 2 42 2 56 1462 18 3 4031 298 738 231 581 65 5 834\n0\t6415 4 7536 16 1269 1055 9031 17 2836 62 6399 22 1674 30 2485 41 42 254 5 118 45 257 7023 3995 1953 120 41 45 27 12 311 599 25 13 92 119 190 26 48 80 6197 5 3 15 137 35 3442 9 135 10 123 1067 3684 9145 199 750 897 1040 74 1 5970 4 1089 7015 3 1710 469 3 951 3 187 1551 5 53 453 1618 120 125 290 62 53 276 352 1346 205 1 1300 11 1525 127 102 371 140 3 14 109 14 1 1300 11 1553 43 43 902 6330 9 644 1370 1 3113 5 1 119 77 3 1124 126 7 3139 1253 5970 197 95 4225 1005 3 7 375 4021 303 1 980 3 1826 1 4 2 340 2592 13 8 354 1 3124 5 16 5270 3 1813 4437 332 16 806 160 902 7 686 321 4 31 6183 6703 41 7 1 1646 16 2 15 2 103 1128 3470 1256 1356 17 138 428 5987 1 1880 4 6183 19 1830 4 11 1592 3 1 1301 262 926 3869 7 4505 31 362 3 55\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 202 1903 2067 12 370 19 2 710 4205 3 8 467 11 14 2 115 13 6 101 30 2 3326 35 2080 44 435 16 44 874 7 7411 17 6 459 1136 5 2047 35 40 39 6834 30 2345 3 1279 77 31 38 1 226 85 636 60 12 7 112 15 275 2 1 21 266 47 1 67 4 7 32 44 3 75 11 839 6183 122 15 44 13 499 6 1080 8214 6 29 25 80 3733 3 4226 6 29 25 80 8543 6 29 25 80 3 3308 1072 6 39 8294 1 21 6 1529 470 30 3337 1018 93 1 212 397 811 36 2 8445 4 1629 51 22 360 132 14 2828 2990 3 1 4908 3 4340 333 4 2 9634 10 6 2 5038 11 10 1336 71 612 19 6 1 232 4 21 11 63 796 7 382 135\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 2218 6 2 163 4 299 3 1 462 788 6 37 6748 8 173 70 10 47 4 50 3268 8 149 14 8 70 972 8 192 1366 5 1 35 70 188 2427 3 127 723 22 313 7 62 43 4 48 33 87 6 5006 17 609 1078 11 195 663 15 257 8538 234 4932 100 26 446 5 87 10 7 148 500 8 198 825 146 32 1 3434 17 45 23 36 5150 1794 1073 3 2 103 216 468 112 9 880 10 1523 79 4 79 7 28 111 3 5433 7 174 1 111 33 216 3 15 239 1715 33 8470 65 2 163 17 33 70 1 329 2427 3 207 48\n1\t119 1552 395 498 47 2 609 1004 3 2 3507 4 6571 529 2243 33 515 2469 16 80 1 774 1 477 4 1 158 36 2 2228 3 2 3309 3979 15 1793 1674 39 3272 14 3 2759 4978 17 42 128 299 5 99 55 195 3 197 1 907 5 4492 450 218 1341 6 93 240 32 2 1167 272 4 4706 14 1 795 186 334 200 1 85 61 1790 5 70 314 14 2774 1097 3 1 129 4 3256 6 31 631 3487 959 754 1004 4 11 4180 3396 5 1296 11 4346 2154 1373 1 1409 80 3785 1656 4 5228 7 9 158 14 109 14 32 670 154 82 203 18 9 2622 164 117 2371 1107 36 58 82 353 88 117 2154 4495 1 8963 2689 35 4723 1231 3 1231 77 1741 6951 7 132 31 8053 699 23 2502 1862 286 29 1 166 85 23 1401 122 23 1594 25 9525 1630 4 3 286 6737 23 853 25 4854 191 182 7 2295 4346 2154 311 12 2 1744 353 488 7 50 5621 1520 1 4 1 203\n1\t402 2039 1 326 85 1168 999 5 90 1 80 4 86 445 15 43 1317 53 293 363 4142 13 92 67 2027 2 231 35 22 38 5 899 77 62 408 7 31 4658 185 4 1 3063 7 59 5 149 10 33 4630 17 62 5843 752 40 9500 5 64 1355 1504 678 966 3 59 5878 1 822 32 2 376 6201 40 2200 483 1846 5 131 65 7 1 3063 1826 1 1562 1699 30 1290 1932 3 3741 615 730 15 678 1928 2495 35 24 256 126 7 2 13 7 824 4 2 1032 3 542 3661 4 1 957 6222 1 326 85 480 86 631 2387 3 6425 505 1373 240 664 5 1 1016 293 363 216 4 638 1 3063 1167 6 46 3271 16 9 644 542 3 136 1 18 481 56 26 1074 15 463 41 581 1 326 85 1168 6 78 138 68 97 82 3661 8 187 1365 5 206 294 603 953 6646 4 1 89 16 31 240 5 16 29 225 19 11 8 187 1 326 85 1168 2 1450 47 4 1731\n1\t4688 6085 3 101 2 1551 1141 1 7187 136 1 82 4152 2 77 1 457 84 931 1 723 1088 5 1 2592 3 70 47 4 1 6556 17 33 149 1 2644 3944 2244 5 14 33 1486 3 1 3693 5 62 486 49 1 5166 1843 5 186 802 29 126 15 25 7850 32 43 6085 272 7 1 6866 9784 1 13 6 46 1127 14 2 5336 4801 17 55 52 1127 341 14 2 2221 4 8348 6419 101 3327 1251 3 303 7 193 34 1 453 22 28 191 186 933 1367 4 3117 7 2 280 11 97 171 2893 590 1781 1 21 6 46 696 5 1 21 3311 69 205 124 934 15 5287 893 882 7 4658 3 7 205 1 7697 1330 1489 30 1 1757 123 20 1122 7 95 356 4 1 5998 4 1 7189 7 6 304 5 176 6052 17 10 93 1583 5 1 1560 30 1 723 7 2 1167 106 33 22 29 1 8828 4 1 3 1 15 1348 5 5800 19 82 68 2449 9 323 6 3604 3164 29 86\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 204 6 28 18 11 6 1975 211 29 154 625 799 11 10 75 63 10 20 26 340 11 9 18 460 1 4030 4 1270 2312 3 6 470 30 638 49 8 74 159 9 141 8 1279 3539 11 3 9379 61 56 2385 3 17 62 860 7 121 3 523 310 47 14 169 5956 8 12 3202 619 5 825 11 33 61 56 2385 3 406 778 1 623 6 519 519 519 3435 519 7109 519 1767 3 519 439 17 1952 9 6 28 898 4 2 18 11 6 197 4724 457 109 2740 86 400\n1\t0 0 0 0 246 20 107 1 817 102 7 1 3607 4 2936 484 8 12 2 103 6277 5 99 1 2936 13 10 12 2 46 3765 839 3 8 143 24 1 465 4 20 2308 48 12 2267 664 5 20 283 1 74 102 703 239 185 4 1 67 12 806 5 365 3 8 1310 7 112 15 1 2936 183 10 57 3866 1 8 83 96 8 24 117 219 132 31 1716 3 3800 158 258 31 238 135 220 8 531 4832 295 32 238 3 953 574 484 9 12 132 84 1949 5 437 6 28 4 1 80 581 10 6828 116 838 32 1 74 330 2268 1 226 938 183 1 1079 13 5568 12 311 885 14 25 280 14 1856 180 455 2 163 38 25 84 453 7 1 2936 3 944 9 3088 353 40 28 52 5 734 5 25 5929 8 176 890 5 283 52 4 25 104 7 1 13 92 4873 61 2970 15 541 69 239 28 12 248 2335 3 8 12 39 2220 30 1 4 9 108 109 1613\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 46 78 381 218 3891 76 20 26 10 419 503 308 805 2 1061 507 38 1 869 4 81 5 1088 16 730 75 33 555 5 26 13 499 6 2557 11 7 1 2290 4 3326 8063 24 89 34 4 1 5445 16 1 4 1 345 16 45 20 245 49 62 7783 94 1 1655 1 9550 3 1 3 1 3 1 3 34 2886 58 28 472 1 47 516 2 1339 3 383 450 33 617 55 881 5 1 580 22 536 7 2844 778 3 1 11 33 57 12 1 2021 30 2 1114 2009 4 1 1098 10 6 20 59 622 11 63 187 23 28 898 4 2 45 23 369 10 3 7 10 6\n0\t7 1 166 14 127 581 17 8 63 3304 50 6272 4 4038 5 4429 86 302 16 436 5 4800 50 1157 140 592 13 92 1252 7 3 4 2105 1008 43 1317 91 4480 657 10 40 43 547 17 95 3749 189 1018 6 1130 6722 3 7635 181 36 10 12 7037 826 47 4 2 9591 2351 42 116 687 341 3251 9 1765 438 1259 6 30 84 265 29 1 540 529 69 519 10 811 36 451 5 77 2 265 3481 106 1 1900 4 1 178 6 20 140 505 17 6244 140 1 955 2163 265 3 21 13 38 194 6 2 42 273 14 898 165 2 201 5 564 16 17 1 453 22 30 7635 35 311 153 916 7 21 14 7 80 4554 45 28 177 6 1237 1 212 177 811 1294 971 191 90 1360 638 3231 1155 1 1183 675 43 4 1 168 309 109 7 3 4 3846 17 14 2 5012 33 83 291 5 1179 36 9759 1657 32 264 929 77 28 3627 2129 3 42 20 591 31 1303 9759 5 905\n0\t1826 5604 554 32 82 1189 691 29 225 32 1 10 123 20 1857 95 2651 4 1 1189 1656 779 114 10 117 525 5 2031 2 5306 234 200 110 1 310 32 1677 3 181 243 4658 3 300 1 1373 7 2024 522 17 32 48 8 63 64 27 114 20 256 78 991 77 5018 10 19 1 4124 13 8212 114 27 256 25 991 7 10 181 11 27 1019 2 163 4 991 7 2000 1 1646 3 10 15 1 1948 1 265 396 2336 65 1560 66 963 473 77 2 59 7 1 406 185 4 1 18 1 2545 3 1560 13 659 1 769 8 343 1530 8 118 48 23 22 242 5 134 204 17 6 11 1 272 23 22 242 5 90 30 3333 102 719 2000 65 34 127 10 6 243 7826 15 35 1 120 22 3 48 232 4 157 33 3702 3 72 22 340 46 103 38 35 1 120 2620 34 72 24 6 9 11 39 472 1832 17 8 497 1 206 114 20 24 78 1097 5 216 15 3 10\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 192 1722 3134 8 118 11 128 6 404 28 4 1 700 971 7 8946 3512 3 11 80 4 25 124 22 1050 17 49 8 64 2087 7 8 560 48 307 6 65 3 295 38 9 1540 1 121 6 311 464 69 6 34 1 6039 36 31 1 189 3 22 3976 1 212 21 276 14 45 10 12 89 740 102 663 7 31 229 10 12 610 11 111 3 97 81 291 5 186 9 16 17 16 79 9 18 6 311 91 217 1498 9 5 6298 3 348 79 316 11 6 2 53\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 21 11 151 23 134 358 5884 8 63 87 78 138 68 3 4509 9 6 37 91 8 191 597 2 753 3 2979 13 14 45 10 12 383 15 50 3324 8 24 105 241 50 493 35 553 79 5 99 9 40 2 421 437 8 24 1887 11 51 22 43 1061 16 9 408 191 24 71 303 30 1176 1144 41 81 15 146 5 87 15 9 135 28 4 1 210 535 104 8 24 117 575 3037 1 1063 3 206 597 1 4552 20 55 964 227 5 87\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4681 136 145 446 5 1116 56 53 484 8 93 24 2 678 1514 5 595 335 55 1 80 4 2145 23 1374 137 268 49 23 39 175 5 694 51 3 99 43 586 238 18 5 564 290 9 6 1 59 18 11 8 63 320 152 142 7 1 3 8 24 332 58 4748 4 160 155 5 1812 110 1 119 12 37 2971 3 2674 8 12 3039 47 48 1 398 178 54 26 728 341 145 531 20 46 53 29 1 171 61 2680 180 107 138 121 7 750 416 55 1 178 2932 61 573 1 3347 12 34 5790 13 252 18 6 36 2 2234 11 3001 1 695\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3054 1706 21 38 2 342 19 3200 35 22 3997 19 1 9057 4 48 33 96 6 31 2213 429 17 6 56 101 314 14 2 2204 4 3054 14 1 3804 652 7 1 2579 1757 1 342 139 38 62 1255 318 1 102 6655 209 7996 6340 13 6312 288 21 15 102 46 1494 415 14 1 3804 51 6 162 660 1 1128 3470 11 33 1851 5 354 9 1280 135 1661 86 2 1494 1706 471 58 10 6 20 2363 240 660 1 3129 5 26 1784 51 6 2 302 11 180 71 283 4 9 21 7 203 1402 3 10 276 1111 17 82 68 13 1701 137 35 175 5 64 1494 3804 5863\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 398 85 23 22 29 2 1433 3 275 218 82 326 8 455 1 4050 123 261 118 48 10 348 126 5 694 140 845 1 59 111 88 815 24 5823 9 18 12 30 907 4 9 5270 3511 314 30 91 51 22 43 709 168 3 23 76 24 2 156 4267 618 1 21 123 20 820 65 5 1 80 1681 5480 144 123 5454 874 7 1044 4 44 378 4 144 37 60 63 87 1 7307 4722 4 5871 16 79 1 113 185 4 9 18 12 11 8 159 10 19 2 2240 1354 378 4 3333 723 4821 29 1 388\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 96 9 18 6 332 3391 3 145 20 5648 59 5 1 3999 7754 42 38 102 5192 706 35 1088 5 760 31 1101 2473 5 186 2 1173 32 62 20 37 749 408 2058 7 1 182 723 415 900 760 1 334 2193 34 15 264 4421 3 264 1318 16 101 939 7 9 9660 304 334 33 34 149 1 3778 479 7061 16 3 11 3778 255 32 3 52 37 68 8 93 149 10 360 73 4 1 1830 11 22 1619 47 3 1 121 6 2 2421 5 99 7 2330 8 258 112 1 120 4 3 886\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 40 84 505 84 1667 3 2 46 627 67 427 11 56 151 23 96 38 35 23 2140 75 23 6825 6115 75 23 1179 1356 704 23 1942 5 309 2 280 41 1173 51 459 22 313 708 1873 15 127 8 175 5 878 19 1 1167 4 1 135 4888 42 102 81 19 2 51 6 4 334 3 387 15 358 3 1 2066 121 14 1 97 971 24 590 4536 77 158 97 971 24 829 2759 584 14 45 33 61 2 4536 17 58 1392 7 50 1520 40 6211 14 14 7 8988 1 3 1426 4 1 84 4536 205 7 67 427 3 7154 2 3665\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 91 505 91 2516 8602 8261 2653 586 13 150 12 288 890 5 9 21 29 2 1058 21 1672 3 12 37 94 283 110 10 1263 442 4045 17 33 87 20 4 448 1 3397 16 9 6 1 6425 3 3509 67 11 6 13 2687 1460\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 57 5796 17 48 151 10 56 91 6 8168 1014 180 100 107 44 183 7 235 422 3 300 51 22 43 596 47 51 11 36 44 7 146 2684 17 44 278 7 9 18 6 3133 13 3312 6 49 60 2320 44 456 10 1478 11 60 12 242 5 90 273 60 57 1 456 260 3 12 311 765 142 1 1307 7 44 3268 814 44 672 40 46 103 8 173 241 275 11 91 29 121 12 340 2 466 280 7 2 108 60 40 5 118 1956 7 1 13 2719 8 812 5 26 9 467 38 1159 17 1 878 40 5 26 223 3 44 278 6 48 4054 47 52 68 235 9809 13 2298 8 338 106 1 67 12 160 37 8 3884 5 99 110 1 74 185 4 1 263 40 1 4 2 53 108 17 1 182 12 1832 14 530 300 45 44 121 57 71 1824 8 54 24 338 2420\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 28 4 1 3931 84 6 29 25 46 3 3 1 8040 11 27 303 5 22 93 2406 2568 6 30 1 1671 77 133 34 62 103 1 567 383 4 126 34 7 1248 101 2983 30 943 188 4986 30 1 1671 32 8922 6 2 304 13 1635 1727 25 568 3339 6407 49 1783 5 30 1 972 6 14 6 25 4645 106 87 23 70 11 691 361 8 83 186 474 4 58 1 2568 1658 667 533 1 158 34 1 304 2364 8508 3 1083 1 8040 5770 38 734 65 5 90 9 28 4 1 113 468 117\n0\t2 3199 20 5 176 16 95 1129 98 988 1862 276 16 741 65 7 2 4193 6 29 30 1 3318 4 8619 3 98 6 369 139 15 2 3199 20 5 176 16 95 1129 9 6 28 682 13 2595 28 272 988 1862 6 179 5 26 434 29 34 1 82 120 560 45 244 434 41 1375 475 11 27 705 17 98 27 289 65 3211 12 9901 30 2 345 3 58 28 5738 1 233 11 27 12 1156 29 2918 16 375 2569 55 25 4709 2897 6008 153 3224 122 1877 60 4361 245 1857 5 352 122 149 37 988 1862 276 16 741 65 7 2 4193 6 29 30 1 3318 4 8619 3 98 369 139 15 2 3199 20 5 176 16 95 5521 13 2 1213 15 678 3709 43 1494 2 1743 47 1295 2 635 2147 36 3 2 4 2 1430 178 1295 2 259 2147 36 2 3 95 178 197 988 1483 988 1862 5215 2 15 2 13 499 130 26 4139 11 9 6 32 206 4 7908 35 784 14 1 13 1149\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 118 11 9 21 12 20 2 1009 1400 17 7 822 4 1058 368 6816 6432 4 66 24 71 7132 119 9960 8045 9183 4 34 407 7 9 1140 2664 1071 2 330 3222 1 1 7 43 4 1 1267 17 10 4495 2 296 9971 274 421 1 3276 296 9015 4 423 3 43 4 86 1697 341 722 3 13 872 1822 4 47 6 1 7670 626 201 14 1 914 603 7201 6 323 2905 14 27 748 47 7 1 477 4 25 4 59 5 26 945 29 48 498 47 5 390 25 306 6835 7 1 1175 4 1 2516 234 4 29 1 4 1 3856 49 8 159 1 6260 1738 1 8 909 2 2 2 12 3202 13 7858 5420 1 518 1147 3259 3 55 259 6883 4708 4586 3 3689 14 171 7 1 5998 4 3 8554 77 9 901 4 423 9906 1549 1562 3 4046 7 2 1342 66 6 1521 881 3 286 936 6 128 15\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6939 78 5 134 660 1 552 11 9 6 31 665 4 3231 1829 838 5 9688 2 53 33 83 90 104 9 91 46 6299 258 15 1 1143 4 2367 1791 3 2765 7 1 105 565 115 13 3382\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 34 8 63 134 424 45 23 83 735 7 112 15 184 3 103 5637 94 133 9 141 98 317 20 55 94 133 10 16 1 74 387 8 12 9584 10 6 2 8053 839 11 6 832 5 14 145 273 82 596 76 1467 94 133 194 23 76 1717 5 96 11 127 102 360 2479 22 58 1534 15 2533 29 225 72 24 4005 5 320 6073 8 96 72 34 223 5 7012 1 8051 127 102 2479 61 1566 292 8 24 198 8278 2413 60 123 20 875 7 116 683 1 111 184 3 103 5637 1405 48 2 1219 2055 5 24 118 132 8 59 555 8\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 496 5942 29 4227 17 220 243 9898 5415 7 1 622 4 4231 2 382 333 4 28 4 50 1522 703 144 1336 1 1077 71\n1\t4 1 1892 1 3185 6136 3 1 319 6417 34 22 46 109 8534 197 95 41 13 677 22 43 985 7 1 21 11 22 20 3237 806 5 9868 3 5454 5 239 1885 17 1 184 572 6 6687 20 239 28 4 1 386 584 6 1303 41 17 14 367 8604 1 184 572 123 20 2197 5 1917 1 507 4 6285 3 1 3930 8 780 5 96 7 2 6088 48 6 2267 7 1 486 4 34 127 81 19 1 322 9 6 48 6 5855 104 36 9 22 53 5 5357 116 3950 5475 10 54 26 3516 5 2309 9 21 88 9144 5 1 157 7 97 17 10 591 6638 14 10 424 3 167 1589 2593 13 1268 878 38 1 101 1 325 4 616 8 7806 180 100 107 95 4 127 171 19 95 82 141 17 8 214 1 121 7 9 865 260 398 1945 5 425 9181 300 20 2 5347 17 2 46 53 328 30 1 389 8901 646 26 2202 31 1128 19 1 958 6816 4 1 206 3 1 13 1889\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 28 4 1 113 834 104 180 117 575 84 16 1 389 231 5 836 1 1154 190 26 2 103 17 42 2 6945 267 3 1 121 6 1051 112 1 103 2010 3 1748 1570 3712 185 190 24 71 46 2179 17 46 4884 496 4869\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 2360 2344 829 8318 7 52 3842 68 279 4 1060 170 217 1 9 28 6 52 4 2 5 1 215 68 2 2 1528 5495 32 5804 5 958 1101 1665 35 54 406 139 30 1 442 24 447 15 31 1061 294 266 4439 3 43 547 9108 168 2873 9 28 689 1901 16 596 4 1 215 4 66 8 192 4941\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 470 30 2 306 6963 5 97 203 21 596 94 27 470 1 3 2741 9563 245 83 504 5 149 95 132 7 1 21 7207 204 14 10 1501 5 26 862 5963 7 3770 3 266 52 36 2 1685 7046 16 2 170 6899 13 2 3530 190 4079 256 142 80 596 4 1 212 1685 3409 217 870 17 183 23 473 116 5468 65 29 490 10 40 5 26 1113 9 18 6 39 37 78 13 777 650 262 16 1308 3 1008 102 568 3 496 1904 2641 7 1 921 4 638 3 745 776 1 1338 35 205 291 5 26 246 2 2871 15 62 4720 13 1522 742 2854 498 65 14 1 250 1518 7 1 391 3 42 93 84 5 64 871 16 184 690 3 492 13 5 490 1 2479 22 1528 5 3 6740 533 1 124 954 3 78 7 1 13 1118 63 8 867 69 9 311 6 2 56 299 3 186 19 1 870 3 8 354 10\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1856 5253 6 2 360 1651 17 42 903 5 201 122 14 2 684 7592 1 233 11 27 5866 37 322 37 3 3448 411 77 1 185 37 301 936 39 89 122 291 34 1 52 8220 7 25 52 529 1543 1 282 7 1 1591 8660 7 1 570 604 15 8 339 186 50 671 142 122 27 12 37 23 359 852 122 5 3131 1 634 3 357 9481 2011 12 1 148 3974 1 59 278 11 12 138 68 1 108 30 1 744 45 23 64 2 397 4 1 1039 5510 1 18 3 9 141 468 64 277 2639 11 24 52 4501 166 759 5293 5 264 120 3 7 264 68 95 82 668 180 117 575\n0\t3159 4 200 2693 13 659 189 1 51 6 4 2 263 2903 4 1 2515 3 1 263 15 578 5850 954 223 111 32 1 1303 89 1 817 181 5 24 340 1 7391 129 14 103 5 134 7 7779 1674 255 47 15 7237 14 193 27 40 6915 25 221 4262 4 59 7779 5 25 5850 12 517 4 1 316 15 37 103 9227 602 16 1 466 7 9 356 7391 181 55 364 4 2 423 68 1 1 344 4 1 201 87 103 138 15 53 171 36 1539 3 742 403 62 7113 113 15 1 6786 494 33 22 1970 10 65 286 316 15 174 4 25 1736 1536 1518 6 2715 837 17 20 2363 209 11 1180 5 2711 6718 1965 2629 5 564 286 52 4 137 808 6 100 9 644 627 6 2 216 4 1189 15 1 6081 4 225 11 12 928 5 26 2 31 7872 382 10 590 47 5 6 59 2 382 4 1 80 1314 14 16 7242 94 34 137 30 1 1 166 93 89 6866 13 47 4 1731\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 74 159 4564 38 681 172 1924 8 336 10 37 78 11 50 766 619 79 15 2 973 1 1068 8373 42 38 102 415 35 1088 5 760 2 2473 7 4302 16 1 4403 4 1204 62 486 516 450 33 22 46 747 415 29 1 4 1 158 3 23 173 352 17 4201 126 19 14 33 1439 9 15 102 82 415 33 9242 385 5 1555 1 9 6 436 1 80 230 53 18 8 24 117 575 1011 3 3373 15 58 606 8876 58 3 58 10 12 89 15 474 3 7 46 53 6280 23 481 352 17 2618 34 140 10 361 571 49 317 2826 749\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 152 159 9 18 7 1 856 155 7 42 215 4228 10 12 1370 5 99 745 6146 9527 411 37 8606 1 67 12 862 1054 3 832 5 9675 3 1 393 12 2348 10 12 39 747 5 64 75 1 5769 57 8 495 134 11 145 2 568 745 6146 1787 17 8 114 1517 335 1 7502 251 3 8 343 11 27 419 2 627 278 7 101 939 17 9 21 130 100 24 71 1001 32 48 180 8563 27 8418 3948 9 21 421 1 2952 4 1 81 200 550 4275 17 11 128 153 1335 1 1210 152 7423 1 135\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 12 14 2 1559 203 4172 23 228 867 2076 79 960 9 177 6 2 2908 10 1008 2 28 85 170 651 35 40 2 2552 4 36 755 5 2824 7481 15 2 91 598 6049 3 2 67 15 58 5991 41 13 499 213 55 240 28 76 59 539 29 86 772 363 3 223 16 2 781 4 13 92 67 2027 2 282 15 6608 35 3902 7 44 5613 48 23 70 213 53 2895 632 429 41 55 2 547 4155 8 214 512 94 1 102 594 272 114 50 102 719 13 92 593 6 4737 3 8 4318 10 88 55 26 181 36 1 1278 61 19 13 2663 7 1 1153 234 188 22 7441 13 743 386 58 19 9 5592\n1\t42 2722 51 6 2 119 5 564 1 13 6 929 5 139 19 1 17 29 1 166 85 244 128 242 5 87 1 260 177 30 1 2093 123 2 514 329 7 9 1174 8 83 198 474 1 81 27 266 17 244 31 313 2099 4496 6 1381 14 53 2607 225 7 6722 14 1 1658 1855 35 224 2093 318 2173 27 40 71 1083 1 3880 49 27 123 1 102 4 126 216 371 7 1 3177 5 2033 3 98 45 33 5402 1 994 1 22 1476 1221 30 1 699 896 8 24 100 69 3 100 6546 831 69 64 2 74 886 35 276 14 53 14 2611 13 252 6 311 2 6700 238 739 11 22 51 1931 7 1947 4 229 2 604 4 949 3 2 302 23 64 37 97 3014 6588 245 10 6 675 10 39 213 1244 227 16 1 204 19 9 50 39 139 385 16 1 2062 3 335 34 1 238 3 657 10 196 2 103 29 1 182 17 1286 10 196 298 4249 16 6 48 104 22 34\n1\t4 121 63 29 85 26 93 2 103 112 9 131 37 1728 1 898 47 4 79 49 10 74 3246 7 448 10 54 8 12 715 172 8 937 4323 1 305 4 1 74 535 831 8 785 6 195 8 93 455 662 160 5 1042 95 52 664 5 1 74 7398 91 1 249 131 143 24 1 166 230 14 1 233 8 179 10 57 2 52 3775 193 1 4306 6 696 5 2232 19 5463 1170 11 21 3 1 249 131 61 89 1 166 40 52 4 2 686 1511 3527 1 61 355 52 3 52 3 2 91 36 2338 14 1 5628 2547 8 96 11 12 1 4 9 249 143 24 2338 6894 65 154 269 8975 2 1399 183 3 94 27 1141 233 9 40 52 4 2 1153 230 5 30 1 2245 1229 4 1 20 273 45 86 19 1 185 4 1 289 4030 41 39 5 1 9729 4 101 383 19 3324 8 112 9 556 20 14 2 5428 391 5 1 104 63 26 46 138 68 235 19 249 1938\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 8 165 9 18 1126 32 50 2340 385 15 277 82 696 8 219 98 15 46 402 4911 195 9 18 213 91 3579 23 70 48 23 946 1987 10 6 2 901 4 1549 2241 297 23 175 7 2 108 373 20 2 368 17 16 772 5991 10 6 20 11 565 8 54 229 100 99 9 18 702 7 2 9 6 1 232 4 18 11 23 54 64 463 46 518 29 366 19 2 558 756 2276 11 6 39 1841 5 186 65 43 387 41 23 54 64 10 19 2 2714 3390 19 2 558 756 2276 11 6 242 5 186 65 43 290 480 1 91 505 1881 2131 3 5447 3459 443 916 8 143 24 1 2277 5 473 142 1 18 3 4294 36 10 100 7425 77 50 305 1 67 40 71 248 97 268 7 97 502 9 28 6 58 4638 58 1824 58 2194 115 13 3793 116 855 108\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 8 544 133 9 18 8 159 1 3751 32 3 2242 75 327 11 244 128 253 2 536 121 7 502 195 2 1021 18 8 63 340 11 42 2 53 6079 4 1021 36 16 665 638 2854 484 4070 433 966 3 23 426 4 24 5 26 7 1 1646 16 461 9 28 618 89 79 320 1 1184 38 51 38 4477 11 90 332 58 1821 8 467 209 19 81 35 15 1443 5 90 31 4 510 8 12 619 33 143 798 1 6118 990 7 9 18 15 2697 1642 3 1098 300 45 23 57 36 4417 4 2594 15 9 18 10 54 90 43 426 4 2509 17 1067 8 83 2310 36 8 83 9 108 10 130 26 3 1837 39 37 53 8688 228 70 174 121 1614 10 247 25 121 1024 11 12 9338 17 1 263 39 143 90 95 1821\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 2 53 18 300 8 36 10 73 10 12 829 204 7 1 171 114 2 53 278 3 20 59 114 1 624 26 17 33 61 53 7 1076 37 10 12 1 259 6 1257 105 37 42 2 53 1484 45 23 175 5 1 259 41 1 5859\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 2 84 1540 55 193 51 12 59 38 1194 81 642 512 51 10 12 4407 50 493 3 8 1309 2 3284 50 1916 55 381 110 51 12 102 750 3412 415 51 3 2 3818 910 349 161 51 3 33 384 5 335 110 8 112 1 185 106 3 2993 22 36 205 5046 2943 3 691 86 1257 3 49 60 196 44 3 2993 6 939 4789 9 12 2 84 18 55 179 81 10 139 64 10 8 2398 468 335 9869 8 56 381 10 3 37 114 50 4699 115 13 8677 61 37 1360 19 9 18 3 33 1808 55 107 110 8 2398 398 85 33 76 187 1 18 3 1624 2 3614 33 34 114 2 84 329 7 50 3222 17 45 23 24 170 374 86 128 8 76 229 186 50 1450 349 161 8159 5 99 10 854\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 96 42 85 294 7391 899 19 15 25 157 3 328 5 256 3004 516 550 9 251 6 355 161 3 7391 6 58 1534 2 17 2 1302 3207 117 85 27 498 65 19 1 412 275 5580 3004 12 20 2 299 334 5 26 3 3478 8 192 1455 4 368 253 10 291 36 10 1306 9 6 20 1 210 4 1 124 3646 11 4556 271 5 294 1504 7 95 524 294 7391 2844 200 2 2297 2863 1653 605 19 48 181 5 26 350 4 1 1536 1069 2 53 97 6 31 2158 5 836 48 6 527 6 978 4510 29 1 850 4789 8 455 33 22 253 174\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 219 9 18 15 43 8 405 5 64 45 5884 776 88 309 1596 3 4509 2149 44 8947 8 310 295 32 1 21 517 246 107 7 59 28 21 106 27 12 169 8 909 1 166 574 4 278 675 8 12 3472 2012 1328 292 43 228 9058 122 14 101 105 3 641 7 1 368 312 4 8 179 27 12 39 260 7 1 1174 45 3719 71 340 1 680 5 309 2 466 1538 228 24 262 122 7 78 1 166 13 150 12 591 1475 30 1 443 216 3 1 333 4 3216 1025 258 285 1 4 1 8196 106 12 308 2 1 2461 3 3591 1190 4 1 6375 8114 3 1 89 9 31 1859 169 1031 508 4 1 166 85 106 10 12 34 3 8 219 9 21 32 477 5 182 8 173 134 1 166 16 1 4\n0\t185 6949 2887 191 24 71 2 155 98 5 21 102 3613 104 195 42 5 1 3 358 217 535 16 906 94 475 283 1 742 757 8 128 173 1435 354 110 8102 12 1 84 2997 720 1146 1 389 2498 14 12 1 360 4 185 8 7 7 698 33 34 17 1059 1 19 7 1 293 363 1121 84 7 463 185 8 41 600 17 33 61 650 2724 1941 608 132 14 8475 1424 32 1 3229 1849 8 76 4043 43 147 168 1066 3 43 33 472 47 61 132 14 95 178 7 1 1952 45 23 1662 65 19 14 8 2723 3 336 10 14 2 583 608 20 14 8 87 14 31 8871 23 130 332 64 14 42 202 2 4262 147 2113 839 15 4775 4 147 1192 906 1 210 720 255 881 12 93 1 1021 4420 32 3546 15 1 2544 166 393 14 9 6 20 59 2 8385 10 153 90 356 19 144 3904 54 139 155 5 11 45 137 795 100 152 3136 3 76 27 1811 5 155 9190 16 154\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 55 1 80 325 88 815 36 1 141 669 28 4 8372 1 4396 39 662 340 95 1097 5 216 1566 10 6 56 2 1152 105 73 9 6 1 59 865 2206 18 1 4396 114 15 3 9 28 991 30 126 6 2050 8819 49 10 88 24 57 84 5589 489 668 2139 83 352 95 1497 1 386 33 114 15 1 166 462 40 52 4267\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 763 6 2 46 299 238 25 84 8377 18 404 9745 5335 3 1 2577 249 3522 89 174 84 763 18 89 7 3 8326 22 102 84 171 3 24 84 18 6 46 299 3 211 3 10 40 1016 763 6 2 46 299 238 267 11 8 400 354 45 23 2942 24 2 84 8 24 5 16 34 1 860 27 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 56 179 33 114 31 2340 51 12 162 540 15 10 29 399 8 83 118 75 1 74 88 24 367 10 12 2007 10 1527 79 5 2187 669 497 10 1527 38 307 5 17 8 328 20 5 1717 7 2 18 73 42 2685 17 9 28 165 437 10 12 4817 8 449 33 1042 10 19 305 73 8 76 373 751 2 8 230 36 10 50 2845 3 419 79 2 449 11 8 173 10 89 79 175 5 5 26 2 138 3292 33 337 140 37 78 3 72 232 4 186 11 16 4672 8 6528 1074 5 458 8 230 36 257 221 7686 22 2798 322 20 4516 17 33 924 1484 48 33 57 5 139 2086 8 336 110 35 262\n1\t242 5 1364 2 223 1366 47 4363 1723 9684 66 307 1958 4184 294 69 262 30 6 20 279 1 13 57 71 2 1800 2892 3 98 2 2892 183 27 1059 1790 15 1 4 2988 524 7 8916 485 4441 29 1 561 367 10 12 1427 7 2773 1298 3 8916 54 5040 1594 11 3972 27 276 29 1 14 9057 16 1004 7 11 1 1800 1092 440 5 27 5134 1 3 4363 14 109 14 105 1127 3 5965 7 4725 2168 7 103 27 5134 1 3211 57 645 10 93 7 638 7 257 7999 493 27 276 29 3 7 1 948 4 27 791 12 160 5 139 5 2 701 8916 12 237 52 3014 4 6057 68 80 4 25 642 13 724 1 821 93 276 29 82 922 1920 3 1842 1 6787 7190 7134 1557 1055 7 1 5678 27 93 1123 1 821 5 943 7969 2955 1 4342 3859 8480 4 7190 3 55 1 2741 3748 80 4 127 985 61 721 7 9 514 6466 2939 45 10 6 620 316 19 2 2240 8660 1236 2420\n0\t46 7654 1 120 11 22 25 2 288 287 3 254 315 164 35 196 2 3284 22 72 377 5 26 1094 29 2782 48 38 1 566 775 5870 4873 3 48 1 898 12 15 1 810 42 1169 13 92 1307 271 778 1 111 1037 7753 266 10 34 37 2301 36 27 12 553 33 61 403 10 28 111 17 10 12 89 3152 1 111 3142 1404 24 62 8410 34 125 1 1888 1949 30 9327 1 443 55 1047 5 3142 375 268 49 2588 22 7 2859 1 111 1 1983 276 36 146 47 4 2 1182 562 388 5632 608 42 1 233 72 22 553 5 241 11 2 5230 349 161 282 63 5795 7 1 421 1 2464 2 125 1 70 155 5 1 3 552 1 326 34 1 85 2648 44 10 6 1409 9330 3 1 1350 118 10 608 8 83 55 118 45 2 394 349 161 54 592 13 659 9864 6 8819 775 4503 3 55 1 12 556 47 3 3546 30 2 1642 606 608 297 11 88 139 1989 114 139 1328\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 12 2 323 7389 135 1 453 22 957 9749 3 1 494 6 37 6476 11 29 268 10 384 5 24 39 6276 125 3 6920 50 302 16 2424 9 12 149 2 18 15 8 965 2 1117 4882 16 50 37 8 2242 144 20 333 2 487 12 8 1328 94 2811 50 558 388 5289 8 310 655 490 106 10 12 3594 8 3394 2386 1 3 636 5 187 10 2 5764 322 8 12 46 5192 15 50 9056 51 12 300 28 178 8 88 3 3411 8 12 2060 1424 3072 73 4 1 1860 4 1 1772 472 9 155 3 1459 65 1984 236 2 18 8 63 333 14 31 5821 98 805 235 54 26 1074 5 1 6003 11 6\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 58 312 75 5 1431 9 141 3 93 54 112 5 1851 508 1 166 1617 8 57 69 283 10 15 58 2546 2258 4 48 5 4749 8 381 10 7925 17 63 93 134 8 1092 2786 48 12 160 926 45 7 233 51 12 235 5 365 7 1 74 1888 596 4 638 2854 41 258 259 124 130 591 335 490 3 95 596 4 1 709 347 76 229 26 9784 730 15 2421 3 560 2887 310 14 542 14 95 21 180 107 5 1 1511 3 1646 2362 2182 37 13 1268 4040 1367 39 5 2979 261 728 5888 69 9 141 45 54 26 16 5183 596 4 976 3536 9 6 1021 1305 2688\n0\t2007 1 263 6 673 3 105 97 168 367 162 3 286 61 5496 827 8 2309 5 2222 47 48 54 24 1286 390 2 1194 938 386 803 13 150 83 438 1 1292 516 9 21 69 102 971 5466 75 2 641 1261 88 26 14 2 267 41 2 3 515 1 21 5333 5 131 199 458 30 372 47 205 1 465 6 1070 4 127 22 95 53 29 513 1 267 213 211 3 1 2432 213 46 10 181 36 2181 310 65 15 2 53 312 17 98 2183 47 4 41 387 5 152 528 1 803 13 92 940 952 4 121 6 4369 91 93 69 76 6 1 59 28 35 876 235 5 1 3 42 676 2 2394 2181 2941 53 171 36 39 209 142 14 4127 3 1 210 4 1 658 6 7252 14 801 6 2 4897 73 44 129 6 7 670 154 13 2044 26 1551 5 1 1041 1 263 33 22 770 15 6 2130 45 20 373 2 223 111 32 1 2181 72 118 3 112 32 3156 36 5003 41 4444\n0\t96 27 1 3107 19 257 2641 3 7 2 1261 106 51 6 58 6025 422 200 17 5 12 27 56 1822 116 1537 1451 3410 115 13 677 22 169 2 156 82 2184 80 4 126 209 1918 1 182 4 1 108 827 8 995 3740 815 25 165 17 3155 1 8287 4 25 1175 3 1843 5 4882 7 1076 1 2495 4 4548 34 4 2 16 58 2650 25 9425 63 1283 1473 47 2767 3080 3078 4 9879 1 63 93 1743 140 1195 891 49 3396 5 134 25 151 386 216 4 1 4 91 559 35 24 2151 13 92 2281 6 93 243 4307 2495 712 1 1643 27 98 6 446 5 1743 32 2 295 712 86 1743 140 891 60 418 44 3433 6 3867 4 5089 2 5191 6394 3268 60 200 2467 3 498 77 2 1238 3 6511 142 15 174 5885 2456 13 227 14 237 14 127 9932 402 445 3409 3 104 9 28 6 3408 3 95 28 35 40 107 4 1 433 6646 63 348 23 75 6658 3 8208 127 104 63 323\n1\t24 2777 1 441 2 701 948 740 2 5510 17 8 405 5 734 2 156 5620 3 22 2831 1074 5 55 80 4 1 1681 3 1070 28 56 181 5 24 1 2305 672 16 48 479 1299 101 2 4853 1814 9459 2 222 19 43 4 25 298 3 402 1 84 2359 7346 3 783 309 109 142 239 1885 15 31 313 356 4 3718 11 863 1 2871 3343 189 668 8191 657 8126 2871 3 2536 22 3834 17 987 20 995 1 4253 5774 2851 3632 7 1 3042 151 28 4 44 362 6484 2 222 36 4999 3042 54 139 19 5 390 1 3419 1840 4 1 5114 8106 249 1199 98 236 3101 14 1 9041 1780 44 93 7 638 794 3518 3 1 2471 1 265 6 46 7570 1 1446 16 7 102 264 15 1092 7891 624 7 1 1138 19 28 482 3059 12 1529 1 15 5686 3 2 4 304 205 315 3 4308 6628 10 960 3 8 241 9 6 28 4 1 59 362 4157 5 865 132 2 1 1759 597 162 5 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 165 5 26 1 7060 18 180 117 575 72 219 10 7 706 9 18 89 332 58 1821 8 54 117 99 9 18 50 3643 5 137 35 24 117 1390 5 64 110\n1\t37 27 63 925 2709 2 155 3 2228 2367 6066 16 2 7702 1081 2083 590 4048 9213 196 1 526 155 371 16 31 2496 3 5185 6565 2290 172 406 5661 4704 3940 4 257 658 328 17 5 2 11 308 4518 169 155 7 1 1393 1740 3 4942 170 5440 385 16 1 7906 17 128 1391 3 837 13 6254 1579 289 9156 1451 3 16 205 25 120 7 933 3 5973 9336 2032 891 7 5396 9 9 103 15 31 1169 2316 356 4 1817 3 1 428 263 30 2097 3 4387 1420 8613 15 2570 2485 3 529 4 19 1 1611 4392 2 732 3 3270 11 380 1 572 554 31 5744 9294 7436 861 11 1 18 198 276 169 2325 136 1 1080 6748 3 265 123 1 3979 15 6090 3 4675 93 5 1 1442 453 11 8521 6066 1 1898 3 17 128 3826 683 4 2 576 86 2796 891 6335 1770 5 86 6637 7 28 570 16 184 85 5168 34 7 399 9 3 1462 2067 5933 496 14 28 4 1 306 4918 32 1 9831\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 277 269 77 9 177 8 544 59 285 1 1349 7821 6 10 11 91 104 198 1483 132 53 288 7 764 269 8 12 2427 3 5364 8 88 70 50 319 155 32 1 2551 5504 1 81 35 787 127 104 130 26 30 1 209 19 1063 69 1 91 559 198 70 77 1 606 15 1 3310 30 1 53 6413 2527 207 1 111 86 71 248 220 1 663 4 1 896 5 734 2158 5 1 29 1 182 12 37 11 10 88 24 209 32 95 238 18 428 7 1 576 2992 982 2781 4640 12 4275 17 27 130 7317 19 148 3648 13 252 18 6 39 2 351 4 85 69 549 549\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35 40 2830 1 4 5506 76 15 9 2445 644 2 1728 103 487 35 2615 2 1028 6 3814 7 25 6 4452 954 8053 2047 311 1 4 102 1007 5 31 7779 41 88 1 2070 26 3392 2934 205 6811 3 863 1 410 44 1412 4 712 28 1167 69 2 7212 429 69 1583 5 1 507 4 7239 3 13 3 745 2077 22 496 1321 14 1 9750 17 2083 5809 618 10 6 1 1119 1681 647 3232 31 3 1334 1966 2 3526 148 4363 1807 11 7 1 1960 6524 6 2 1685 3306 4 2113 14 2 293 232 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 222 4 8036 8 173 842 47 75 5 9081 7 1 5998 4 9 1835 28 4 1 1512 13 1427 2714 3390 19 1 1444 4 1420 5404 113 7 5242 9 5404 6 1 915 4 2 668 2714 7 1 2312 15 13 743 222 4 8036 8 173 842 47 75 5 9081 7 1 5998 4 9 1835 28 4 1 1512 13 1427 2714 3390 19 1 1444 4 1420 5404 113 7 5242 9 5404 6 1 915 4 2 668 2714 7 1 2312 15\n0\t28 5 1 82 41 1498 126 3034 1 166 13 9 18 322 8 497 10 247 11 573 361 17 10 247 11 53 1497 205 4 1 6386 205 46 2262 171 1622 43 4 1 80 1974 453 8 24 107 15 43 4 1 80 2304 494 7 21 622 2266 11 63 26 19 27 8214 35 6 93 4614 142 6 562 15 9 158 246 93 428 1 7589 1 3 101 738 82 188 1 272 3 1626 4 1 821 22 433 202 1135 7 86 5073 5 21 16 1 957 51 6 5145 45 1560 15 95 799 4 1 158 41 1 265 153 4136 1 2050 3 6367 56 352 15 9 224 4 1 135 28 9473 6 1 2653 15 97 243 53 41 84 4067 17 906 9 123 20 352 1 21 105 5915 13 92 6294 4183 911 4 1628 821 22 5148 7 1 226 529 4 1 135 10 6 105 91 11 33 291 5 26 37 32 1 21 11 12 39 8 83 118 48 4850 228 24 107 7 9 803 13 16 116 5623\n0\t0 0 0 0 281 21 12 20 670 14 78 4 2 14 8 909 10 5 1142 51 22 2 156 2110 4 5115 7 9 595 3921 5121 4477 80 4 1 121 6 17 1002 687 16 691 15 3523 2 5282 3 2 2726 2928 43 678 7 1 1692 3 521 735 1757 5 127 166 1642 22 52 81 5777 69 17 6 10 1 4026 41 257 221 526 4 521 1509 2 2892 3 2 19 1 129 4 1 22 1366 77 9 3 390 1 3080 4 1 7194 35 22 14 5703 14 33 22 9419 3 98 1 299 56 13 92 141 151 38 14 78 356 14 1 855 4477 17 130 26 16 605 554 37 2556 1 443 216 6 1233 16 2 1879 158 1 2216 6 167 501 1 263 6 810 3 3 51 22 2987 1636 66 22 299 5 176 47 1987 48 22 1 156 2110 4 5115 8 4105 8 173 134 78 23 197 523 2 6880 5 134 11 1 182 4 1 21 424 29 2532 279 5 45 23 173 186 1\n1\t4740 5698 5 25 4192 220 1 8174 1404 54 1 19 72 54 3081 1 2429 319 27 693 5 1203 25 27 5237 7028 5 220 27 6 46 109 587 7 1 8768 106 1 6 7137 3 88 26 245 7028 3 5237 1 3777 4002 6505 5 2303 1 5289 17 188 139 540 49 62 532 255 5 216 14 1 8968 16 1 3 4002 876 2 1503 3 1141 4002 17 60 6 93 3812 94 1 469 4 62 435 1539 1036 5 4154 1 9216 15 1697 13 1 2710 789 317 5098 6 2 267 4 2 53 471 1 5056 3 1 1820 22 7 1 5220 15 2 1567 1420 1 6339 3598 9146 40 174 84 216 3 10 6 1502 1 4 9 2254 3845 8799 5564 6 1477 7 1 280 4 2 5017 164 15 733 15 25 435 11 811 1 234 1424 1251 650 73 4 25 3 6457 6442 6 128 1612 3 6241 781 2 2313 4579 1 1330 2582 289 11 1 234 6 1314 31 510 1888 50 2400 6 13 9267 5617 1 2710 789 317\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 1539 7046 6 547 17 9 6 2 167 7572 1663 6166 5557 1421 689 236 2 4389 15 3 2862 4496 11 5 2210 3 10 6959 1 21 2 4618 145 128 242 5 842 47 144 1645 175 5 720 25 3774 154 18 15 40 71 167\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 320 283 9 21 172 989 926 8 2564 8 54 46 78 36 5 793 10 316 69 123 261 118 75 8 63 6322 2 14 8 4995 10 12 31 258 1127 141 7 933 1 178 11 1421 47 6 4 1 5458 1727 3498 1251 32 11 8 56 173 2209 105 78 38 1 67 69 66 6 144 8 175 5 793 10 6259 8 24 1 4125 17 192 2161 5 149 2 9158 66 6 1846 7 50 839 69 436 51 6 58 305 41 1919 4 9 21 19 1 54 1116 95 352 261 63 187 79 19 476 1359 46 78 7 5379 16 116 113\n0\t5 564 2462 6 1 233 11 25 74 1725 35 57 1436 223 183 783 5 1 2747 12 93 1172 155 5 582 2823 3 195 783 615 411 770 15 4341 13 150 24 102 148 922 15 9 108 28 6 11 1 7195 4 1749 7 9 18 6 264 32 1 6665 314 7 1 74 108 48 151 10 761 6 458 7 2 243 345 665 4 3978 33 634 36 10 12 198 1 13 92 82 177 11 79 6 11 1 112 8806 189 3 3256 74 6 340 46 103 412 290 9 2705 79 591 73 10 12 78 52 240 68 1 697 119 4 1 108 10 343 36 10 12 39 146 11 12 1256 7 5 2222 1032 7 1 108 129 7 933 181 46 15 1 233 11 60 6 15 44 766 59 5 149 244 253 44 463 46 2513 41 46 775 13 92 59 302 8 63 96 4 16 133 9 18 6 45 317 942 7 133 1 389 251 1721 3823 55 45 317 2 325 4 1 215 875 295 32 9 4384\n1\t225 16 79 6 2072 8 112 1563 1792 104 11 22 2 81 1642 200 68 1276 3 2 3639 330 94 1880 863 1 1428 3 238 3772 17 11 6 48 9 18 6 38 3086 2401 2 4755 4 3942 5035 403 48 27 123 1726 3 11 6 2577 4 25 66 5 134 1 225 22 401 14 15 80 4 1 884 238 1563 1792 104 2413 3672 3 7581 4986 11 22 39 195 781 730 204 7 1 2063 16 1 74 387 127 104 22 402 19 119 3 298 19 491 1710 17 8 191 867 55 15 1 1114 1931 303 7 1 119 1920 75 87 72 64 122 3516 7 25 2138 49 39 28 178 183 27 57 910 413 11 22 58 52 68 1194 2919 32 122 15 2076 4 35 789 1 178 39 2932 5 122 7 1 109 6272 4 4473 8 600 1 18 5 79 2683 1470 10 6 59 318 1 226 910 269 11 1 21 181 5 230 36 10 88 24 71 2 103 17 128 34 200 2 84 298 3620 238 108\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 144 114 1 4 1282 3 24 5 26 37 8321 415 15 9742 3 144 46 103 3487 5 1 215 131 3 1 752 120 61 810 3 144 173 51 117 26 3571 35 36 62 4291 19 10 151 356 11 1282 54 597 3 54 1110 5 17 144 339 41 5723 2536 26 3678 10 39 181 2 6418 111 5 320 132 360 807 10 12 53 5 64 1282 3 371 4 611 17 10 88 24 71 1824 78 828 322 51 40 71 2 1282 8567 2772 131 2 2097 1209 131 3037 1282 76 87 138 398 85 45 60 44 161 1282 7081 9057 702\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 39 159 9 18 1 82 326 49 8 1150 194 3 8 179 9 12 160 5 26 39 174 18 15 2 282 242 5 2162 2 1746 17 4507 5187 3696 73 60 405 1467 8 179 9 18 12 452 8 419 10 2 207 75 53 10 705 1069 2 18 15 3233 6 198 452 55 6 444 71 7 59\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 28 491 23 24 5 853 11 1596 6 2985 3 51 22 198 584 516 4260 8 512 114 20 365 297 17 1311 1596 669 9545 126 7 6 46 23 39 24 5 186 48 10 380 1 18 3 335 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 79 3 50 975 333 5 760 9 154 85 72 165 104 3 257 1007 54 70 37 1341 29 37 2266 33 369 199 3 8 112 173 149 261 11 486 774 79 11 789 48 8 192 648 1096 5 64 11 145 20 1 59 28 11 336 9 555 8 88 149 9 19 305 8 54 112 5 99 9 195 39 8 336 10 37 78 14 2 103 145 1194 8 320 37 78 38 106 8 165 1 103 6143 788 32 3 34 50 417 118 1 788 17 20 1 8 96 1 103 282 165 51 30 224 1 19 44 103 177\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 6 837 3 115 13 677 6 58 111 19 990 11 1 353 372 88 26 245 1 250 177 6 11 27 123 634 46 10 191 26 2 1365 5 25 11 27 2173 126 5 201 550 8 169 521 3946 122 14 101 2 2670 170 913 13 2120 25 12 1 113 1835 80 4 1 508 61 93 46 7342 7 4909 1 189 1 12 1574 3 3 1066 46 2593 13 499 6 59 38 4132 269 1896 37 1 119 6 20 52 1659 6 1 541 4 1 212 1606 10 6 46 6700 3 3 1 22 258 32 1 233 11 34 1 9394 22 483 1 6 5 2118 7708 17 128 999 5 26 7864\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 1537 964 24 470 728 1 210 2294 21 4 1 7220 4588 551 4 9080 10 7153 1 166 1261 125 3 125 702 10 289 58 129 5064 10 123 20 55 131 95 1330 2633 893 8387 3 10 123 20 734 235 147 5 1 5447 1818 37 1054 10 130 26 620 29 21 7000 14 31 665 4 2386 20 5 7 2 74 682 13 106 1 898 6 1 51 22 168 66 24 71 383 202 51 22 168 66 24 102 41 52 1313 802 3 10 6 169 489 5 64 1 238 4700 32 28 1313 383 5 174 197 2 2560 1 443 202 100 14 45 1 964 12 1893 4 781 25 551 4 1117 8491 1 171 372 1 250 871 634 36 3 1 607 201 6 924 2959 51 22 52 1931 68 119 7 1 263 1623 117 51 12 13 743 56 141 3 2 5216 964\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47 154 5108 3 819 455 38 3 468 64 2109 34 2371 7 9 903 1335 16 2 135 475 3247 24 1241 3 3037 10 76 26 2 223 136 183 72 64 95 4 25 1008 7 13 92 861 12 3161 669 96 33 314 2 8122 16 43 4 1 6459 1 119 12 3 46 23 56 143 365 144 261 114 2357 10 12 36 8 57 7 50 3253 3 2 886 12 1157 19 50 4141 10 12 11 13 92 59 302 8 143 187 9 18 2 1332 1020 12 73 1 4146 495 369 437\n0\t7 2 342 3302 13 123 1 14 1 633 466 7 9 3236 14 60 54 7 723 82 124 2738 2657 7 1 85 7 3610 60 1478 14 2127 8201 654 317 100 169 2173 48 601 6106 209 7 19 7 9 67 1024 220 60 418 47 4851 5 26 275 444 1375 3 5136 65 19 1 53 259 601 202 30 13 4 1 161 3745 3 3169 124 228 26 14 619 14 8 12 5 64 578 204 14 1 2643 4 8 54 24 338 2 103 52 267 3148 428 77 25 1538 17 27 262 10 167 826 94 513 8 57 5 49 10 12 34 2780 144 27 3 161 7457 65 7 1 2550 15 49 51 12 58 302 16 11 5 1142 39 2 111 5 542 10 47 8 7663 15 38 14 78 179 14 337 77 1 344 4 1 2129 8 812 5 26 11 17 45 819 107 227 2657 4300 7020 819 165 5 118 11 9 12 20 28 4 25 13 69 8 560 45 207 1 166 334 11 1662 65 5 26 5038\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 2 293 5379 3115 4 9 1938 8 24 5 369 23 1374 145 20 2 568 325 4 463 5393 41 1312 37 8 56 57 58 1691 160 77 476 8 1168 65 2926 10 169 2 13 7 148 157 6 1 67 4 2 15 535 3571 35 271 5 1017 2 3175 15 25 1499 136 29 2 27 762 1 287 4 25 6248 59 5 149 47 11 60 629 5 26 25 7119 13 252 18 6 167 109 1 3975 2653 3 121 22 34 258 1312 50 465 15 10 12 650 11 51 384 5 26 2 551 4 129 3612 650 15 1223 72 100 56 70 2 542 176 29 1 733 189 3 647 3 8 343 11 10 88 24 1553 2 222 7 781 48 2558 2631 38 101 7 112 15 1327 12 3704 82 68 9 1024 2362 7 148 157 6 373 2 9349 1316 373 2 327 1173 32 34 1 203 3 238 104 2224 71 355 9 2463\n1\t6 5170 7 9 1540 266 1 1862 1 147 887 1862 35 12 377 5 26 632 157 41 4507 4599 3 5429 22 29 62 80 304 3 20 5 26 1826 6785 11 1212 3 87 139 98 51 6 1 84 178 189 3 2356 3 106 33 309 142 1 234 9 21 6 205 1546 3 16 34 1 7484 10 63 26 2 46 2446 135 488 23 24 1 1617 5 64 375 171 7 62 570 41 774 570 2237 5846 742 1531 10 6 20 2 21 16 3622 688 45 23 36 2 21 11 40 2 163 4 736 309 3 863 866 197 6297 65 297 7 9 6 1 21 16 1038 2402 6823 19 9 135 244 1289 1328 9 6 2 4275 514 2814 300 39 20 28 16 8 1064 10 14 2 394 73 4 75 109 10 6 248 3 75 211 1 263 63 1718 136 20 56 101 2 826 267 232 4 135 8 36 10 37 109 11 8 969 10 19 305 73 10 39 153 70 620 46 78 19 2240 2229 944 42 34\n1\t4805 246 1136 7282 29 25 265 7515 2486 27 76 2 5117 45 27 5546 275 115 13 6 2 1015 4 4768 1050 30 97 5 26 28 4 1 113 124 15 1 1015 1263 80 4 1 1131 32 11 135 1 147 1025 383 190 1483 1 857 4 3 3147 9685 9757 385 15 62 8662 4 2 3960 15 2 156 147 168 22 1732 1 182 4 1 21 14 1839 16 5897 1504 12 45 23 23 76 773 1 115 13 54 24 89 16 2 53 21 15 39 1 119 427 4 9685 1 445 7364 15 16 4964 4204 1 3113 5 333 972 13 3422 301 147 124 61 128 101 89 30 1 80 4 62 6816 30 61 89 65 4 972 124 15 2 156 147 168 8260 1107 136 28 4 127 6 3245 3 72 70 5 64 80 4 805 3 1 147 168 22 211 227 5 70 1 545 140 1 135 9 21 6 28 4 1 226 1545 5 865 147 1131 4 3 10 12 612 1721 2584 94 25 9979 13 47 4 5579\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 626 2334 1131 32 1137 3 1208 1 4070 7 147 3820 19 5302 9044 13 105 3 286 1127 3 6270 6 2 148 9573 261 20 1527 30 9 756 131 6 5 13 460 13 3382\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 28 18 8 320 16 42 1103 4 2916 7 1 518 14 8 192 610 8900 3575 8 3017 5 9 108 10 1819 15 1 1830 217 4 9631 1 1077 6 84 15 5487 891 68 2 30 7562 3 747 2139 36 9434 1 30 6581 1 265 4 50 518 646 198 320 9 628 55 45 10 247\n1\t10 6 11 46 2164 11 76 1426 2647 155 77 25 161 427 4 216 49 6 3542 3 1525 16 2 1519 3 27 6 670 5550 15 202 95 82 2188 238 950 1 3578 54 26 1 166 6196 2224 107 2 1519 268 1448 17 919 193 244 848 16 2 2650 123 20 591 335 403 48 27 2788 1604 27 196 352 32 2 46 2833 4530 2892 47 5 8205 6298 395 1 7799 1671 1968 16 13 19 1473 6 3965 5 43 4295 73 4 1 443 1093 670 5175 2858 3 943 21 11 22 3459 16 1 448 4 86 206 1347 1133 17 66 22 20 3237 979 5 122 2773 333 4 5175 7 41 1334 7 25 382 4929 3 2847 1604 1133 196 2 46 53 278 32 7356 14 109 14 35 255 577 14 237 52 68 2 687 4163 1599 2294 6354 868 6 8444 30 1077 4 3 55 4968 382 324 4 292 1 21 790 6 169 5517 10 6 58 527 68 80 238 124 4 1 226 764 1166 3 790 10 6 78 138 68\n1\t3 218 2597 7307 1 119 6 2 251 4 1100 1626 11 726 2741 3 664 5 127 102 581 36 2733 231 4434 7 1 5782 3729 3 2 46 2794 4 1604 8 83 1064 127 5 26 1332 14 218 6 2 301 3 6363 953 11 674 100 1576 5 26 1 700 203 382 4 1 9926 292 1 4 1 119 6 167 935 169 6382 206 1035 5 4778 1 948 30 2202 1 510 1124 7 1 429 36 1 462 1 1084 4331 3 121 453 22 323 48 7643 9 845 1 952 4 8093 8218 220 25 280 14 1 2235 9547 4937 7 8225 7833 125 1 6 323 1 4528 1412 16 1 280 4 25 3 202 3321 1635 22 610 48 1 129 93 1638 35 963 498 32 1 6085 77 1 1586 380 295 2 3439 278 14 27 276 3 1630 36 31 4602 164 3 25 1035 5 70 542 5 2051 7 1 5422 22 1975 218 6 2 673 3 961 17 5519 362 1575 21 11 76 407 1376 5 596 4 2032 2605 3 1227 1021\n0\t23 228 504 116 5849 5 634 61 33 1283 1256 77 993 7 2 135 4888 60 153 24 2 13 3371 9 580 29 1 2658 4 1 141 1181 303 5 1 4 1 471 16 2937 94 773 170 6 3542 30 1 1950 444 3 3746 7 2 60 2296 1 1945 224 49 303 3420 4672 444 2147 59 7 2 3 17 7 2 696 4820 15 2 3413 664 5 1110 95 4174 54 23 522 16 1 186 1 85 5 139 140 25 186 47 43 2389 3 70 8 54 497 11 9 3 82 168 22 242 5 1379 43 426 4 1795 1676 773 129 6 17 170 63 20 3642 9 574 4 13 677 22 2 156 529 7 1 158 132 14 1 386 613 3679 15 1 576 17 790 9 6 31 42 105 91 773 170 12 3546 136 1673 1 2204 4 709 347 541 124 11 228 24 9286 44 9729 15 43 623 3 2097 73 44 136 2621 5 309 697 81 6 4614 133 773 170 328 5 3603 29 225 7 9 6 2 747\n1\t27 89 2 5 121 94 172 295 32 1 412 5 87 9 13 2897 2327 14 58 28 220 3231 4679 155 7 57 1613 245 1 2833 6 1012 14 2 24 100 71 107 183 41 4836 27 5375 313 2952 32 1 1827 6862 27 40 2490 688 2173 4 25 221 27 123 20 592 13 7022 6 1 28 353 603 717 6 3271 5 1 129 27 962 25 1103 6 27 6 202 7 6125 4 1 972 413 35 1555 5362 15 2693 13 92 28 1367 12 1579 6836 14 7 2 3 2844 8688 27 6461 38 14 45 27 57 7 32 174 108 15 58 8759 7 1 1 129 6 3743 5 2 156 1039 115 13 92 263 3352 43 1267 2998 4861 41 7 1188 21 72 825 11 1290 1220 7 1 454 4 2327 1076 25 221 1 2833 1481 3193 775 7 185 73 33 61 5170 15 303 125 32 1 2283 2 3157 6884 1143 2 1 212 1480 4 9488 1 1081 2294 2462 14 2 12 233 5802 7 2974 1384 7 1 6273 21 218\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 219 1126 319 226 366 217 10 12 1 6326 269 4 50 500 15 132 31 1930 1249 8 56 179 11 8 12 7 16 2 2055 69 258 220 145 2 5557 3123 6231 48 2 351 4 3694 42 202 2685 5 99 29 268 1920 1 8674 217 51 61 37 97 1155 7536 16 2318 7821 143 33 131 1645 129 160 155 5 10 440 5 26 2 3416 1073 17 8 39 247 2512 77 110 1899 9 461 59 16 6266 5557 13 1964 685 10 358 47 4 394 73 8 128 96 1 527 18 117 89 12\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1292 16 784 5 26 2 478 628 11 6 1923 32 1 668 8546 10 1035 5 4635 2602 265 15 2 67 6396 1 3833 8148 3 1190 11 315 81 61 929 5 5682 29 1 85 1 21 12 4994 1 4 239 4 1 102 824 22 105 7755 3 1 21 100 132 189 3 57 10 311 71 2 589 127 8148 10 190 24 71 2 53 158 618 1 168 4 416 537 101 383 224 30 1481 83 610 694 109 398 5 1 5773 115 13 32 1 345 804 1 121 213 1 113 4032 5019 380 2 1669 278 14 123 1 4 1 1440 790 2 13\n1\t0 0 0 0 0 0 1531 6403 2335 2291 48 72 24 223 3114 7701 4374 12 3704 10 6 2 140 278 72 22 1699 5 241 6095 1 11 7701 4374 12 2 913 688 140 25 7887 15 1 2854 3250 3 258 285 1 3544 23 63 64 11 5127 1 6 2 609 164 35 40 2 46 53 5362 4 48 6 160 19 200 122 3 75 5 2728 1 81 200 550 115 13 659 9 18 1531 6403 289 11 27 40 2 46 53 5654 4 75 5 1124 2466 10 6 31 1329 4 122 11 40 71 433 125 1 982 49 27 6 1083 584 3 716 27 40 1 3718 224 3090 51 6 2 980 7 1 3912 11 57 79 1094 169 5053 27 289 9 4846 316 7 1 886 4999 7 13 92 393 30 294 3142 6 332 609 15 1531 6403 160 5 1 401 4 2 3069 3 7 1 5604 2 3439 4199 8813 4 1 2886 2251 27 271 890 77 2008 1 18 6 1724 17 1 3122 77 4374 6 373 279 283 702\n1\t15 69 41 436 73 4 69 1 1697 4 423 45 10 1121 3091 47 15 132 5081 8759 30 86 2682 1 313 263 30 1760 3 1016 593 30 630 82 68 3598 9146 153 1977 6062 13 92 250 204 6 4 2 231 5972 15 1 102 6082 65 1338 7683 32 3845 8799 5564 3 5817 6916 5 2452 62 221 5289 31 525 11 271 13 92 67 6 553 15 801 22 4139 19 2238 132 102 663 183 1 37 58 28 130 26 43 81 24 367 33 143 36 9 3511 17 8 179 10 1066 3301 5 1 4 1 212 1078 11 1 102 1338 7 1193 22 924 372 15 331 69 189 126 23 339 90 2 547 874 5 552 116 500 1337 7 127 978 1988 28 4 1 1338 6 2 1358 1136 5 8131 93 35 6 246 31 1971 15 1 82 2823 9116 7 43 385 15 1 233 11 367 1358 9716 711 5214 25 435 954 278 32 2913 35 40 791 2200 122 686 576 7016 3 819 165 2 2432 19 116 8794 9723 15\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 6 105 42 2 1002 1879 21 669 66 7531 10 17 1 551 4 2 547 201 3 2 9253 47 119 6959 10 105 1264 9337 6 169 1202 7 25 280 14 2 585 4 2 231 809 2811 16 411 2720 25 231 2 103 105 17 1 344 4 1 201 6 29 154 799 11 40 1187 6 2175 30 6021 3 51 22 105 97 801 6 31 631 2076 4 33 965 8 511 354 9 21 5 261 35 213 463 2 9337 1787 41 35 40 332 5 1405\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 474 16 1 141 1 347 12 828 123 261 118 106 10 12 7568 9 12 50 74 1978 5 116 214 1 1836 5 50 9119 37 195 8 176 36 2 17 8 96 646 128 9081 50 6588 3 657 598 6 1386 144 33 472 10 32 86 1270 1193 1 334 12 3785 5 1 9630 4 1 347 3 86 720 12 185 4 50 2259 15 1 108 1608 8 39 284 106 8 321 5 787 29 225 764 2933 2176 50 82 250 2272 15 1 135 2611 12 105 3 20 29 34 48 8 32 1 1533 8 1374 1 347 12 1 347 3 1 4866 109 20 37 452 8 214 1 129 7 1 347 78 52 93 1 347 202 7794 1512 4 1 136 1 7 1 21 12 78 52 2325 10 1 230 4 1 67 3 384 29 5643 15 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 327 18 15 2 84 1077 66 140 1 891 5325 4 1 2032 3 8197 3764 2 10 3764 157 7 2 346 2370 774 4 1 2851 35 1059 1 347 11 1685 1 10 3764 157 4 170 81 3 62 922 7422 5 1 1162 10 1523 4 15 2 222 4 1101 9963\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 539 47 5973 519 747 67 4 358 770 8321 559 361 5373 2 7600 2843 7181 3 3701 2 361 35 1088 5 414 371 5 757 224 19 115 13 5016 3 1 263 6 46 361 11 424 236 198 52 68 28 601 5 202 154 3875 591 211 178 2027 358 598 3298 3 35 291 6940 30 297 261 3908 17 49 5373 47 25 5993 4 374 488 657 27 40 1 624 385 15 122 183 3701 63 131 65 15 1 5586 13 5891\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 2 84 2897 294 1490 3766 7028 3559 2 1252 23 7952 195 317 39 101 1416 132 2 4051 658 4 76 132 4 1262 560 11 2 263 76 26 1397 96 814 17 3911 5131 6 28 1155 1617 94 2877 42 36 307 602 8038 65 183 239 3 193 3093 118 3070 180 71 770 167 254 3 9 6 8323 5 26 2 645 15 34 127 184 3294 145 39 1927 4711 385 3 369 1956 422 1720 1 37 78 5796 286 37 1370 5 694 2086 51 213 2 625 1329 4 9 177 11 153 55 2253 2465 6\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 373 28 4 113 156 171 22 446 5 309 1 14 3942 5035 5435 1 238 6 3 16 4117 14 2 4818 10 190 186 1838 2 103 2 103 6272 4 4038 271 2 223 111 7 2 3942 5035 135 8 230 11 10 6 31 313 3213 5 216 3 176 890 5 1231 6579 2166 8377 4 253 10 77 1 199 2 327 4060 4 3 1710 2631 76 5624 80 238 739\n1\t3115 29 1 8064 21 1672 3 12 7 6125 125 1 1409 869 9 21 7199 10 6 31 5990 4 1 1872 363 19 257 2950 1481 35 2612 1 1383 15 1750 11 33 76 2909 3 3272 257 913 15 4556 14 109 14 26 556 474 4 30 257 1655 16 110 1 21 1733 1 1872 1714 11 270 334 7 1464 14 1 1481 22 590 77 16 62 3 256 77 1 392 3 1 94 363 308 33 1110 2613 10 93 2148 1 1380 11 848 40 19 1 423 10 4240 4367 5 1 1481 3 100 117 1 1481 1031 82 581 378 2 2090 11 6 20 3023 5 3 123 20 186 474 4 34 1 1710 3 1872 693 4 1 4463 13 252 21 6 8307 4422 931 3 179 10 1421 14 2 637 5 4209 5 1594 257 6318 20 59 30 2512 3 160 5 17 30 152 2575 5 949 3 3244 5 1594 2 720 7 1 111 62 3839 3 109 101 6 556 474 4 94 1 848 13 92 113 21 4 1 1672 37 3980\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2253 6 28 4 1 1340 1563 632 104 8 57 1 1617 5 1861 7581 4986 2148 2 1596 4399 487 11 255 5 1978 2 707 4699 39 36 4 4 1 7581 5655 1245 2091 27 40 5 5800 19 25 1563 632 2576 5 3183 1 129 2486 1563 1792 30 3 25 1660 27 55 25 5468 15 25 610 1 111 1660 1072 123 3 93 6816 25 27 93 1123 7 2 1361 10 12 36 133 2 2253 1660 236 2 84 774 1 182 4 1 18 66 2903 4 2118 7581 40 5 3196 239 28 30 461 426 4 36 218 562 4 106 239 4886 8108 2 264 1563 632 32 28 13 252 6 28 4 1 124 8 56 381 133 3 93 1 46 74 7581 4986 104 180 575 313 566 168 3 2 163 4 4267 2 1219 382 7581 4986 21 8 496 354 16 34 23 1563 632 596 47 939\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 18 6 2856 10 289 1 1559 216 16 1 3 2 1574 2308 4 1 4 5972 197 101 31 8 373 1439 5 176 16 1 1533 9 6 2 1219 13 3382\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 2 84 347 3 1 6811 16 2 323 84 21 61 373 939 17 1 1084 5445 301 1 108 3969 6 2 84 353 5 26 1432 17 1419 1 6108 8029 965 16 1 466 1174 2356 6395 54 24 71 50 13 1356 16 1128 3470 8250 6 17 805 60 114 20 2074 1 1384 41 37 321 5 1622 9 6739 13 252 18 6 2 84 665 4 75 154 55 137 362 19 7 1 18 397 63 90 41 1173 2\n0\t554 65 14 2 1087 2221 4 7670 3 29 1 166 85 1524 2 7470 4 1 6058 2251 1 465 15 1 2694 6 11 1 120 22 37 3206 3 69 6412 5 1 4 1132 80 2916 22 20 1358 14 2 7470 4 1 6058 2155 2 21 38 2543 882 4433 2 964 4459 6532 69 1342 40 7247 9 3401 37 14 5 924 2698 517 1395 51 22 4432 4 1813 1514 17 43 1755 24 476 36 9135 3 27 123 131 11 1 2277 5 1965 9329 15 377 686 4187 190 26 1 210 1262 5177 3979 4 1058 135 81 338 3 73 33 338 1 3 1 2504 17 80 4 34 33 338 507 1914 16 5046 188 11 80 37 105 78 9135 3 20 227 954 686 3 1700 204 9 14 28 4 1 80 7237 124 7 982 669 192 20 421 882 7 135 5 87 10 1067 6 2 254 3979 193 69 81 7 7059 2822 7 781 75 377 4187 12 1155 30 2270 882 6 78 4607 5 3882 3 6 364 2973 68 1 4 97\n0\t1079 134 10 213 1943 134 368 143 19 174 394 269 4 930 11 301 1 9741 3 683 4 1 108 5564 165 10 260 49 27 1113 3796 58 1534 2 42 31 9083 753 4 1 108 571 5 503 10 247 55 4010 8 12 37 5888 38 1 4 38 1 3113 5 1 21 11 8 152 5209 77 2048 2187 4243 9 19 1 2062 408 32 1 108 8 83 396 7039 8 88 474 364 38 80 484 17 8 192 128 2048 38 9 2396 13 1226 1389 16 1 4342 22 4167 114 1 215 18 182 49 1 412 337 3 61 23 929 30 1 18 5 19 31 393 5 1 3064 4 1 1973 41 114 23 11 393 19 180 284 317 3711 8 449 116 215 263 1168 1 18 1 74 1425 13 150 118 76 100 64 9 5551 3 180 71 2161 5 149 2 4208 16 122 5 1006 5450 688 3402 192 8 1 59 28 35 811 9 111 38 3421 68 28 53 177 310 32 79 283 9 3515 8 4429 433 7 6981\n0\t0 0 0 0 0 0 0 0 0 0 0 0 31 4602 1360 2112 17 9 18 32 1797 3909 25 1880 29 154 1 263 6 38 14 7790 14 5465 29 2 764 39 1810 1 268 1115 606 28 1054 1335 94 174 16 25 3 1330 1 161 1881 38 10 2267 7 1 7879 204 7 98 236 1 259 372 1 35 784 5 24 7 32 2 8480 1073 9695 1 5703 1646 7 1 7762 1 7445 748 83 352 4032 3 1070 123 206 631 551 4 230 16 1 3531 98 734 2 570 606 1430 1156 205 2407 3 3 1 2439 22 167 5307 7 233 1 18 59 3019 65 7 1 168 106 2475 2033 1 1503 2208 4 3498 2276 105 91 11 895 100 56 8 5273 11 12 664 2496 5 101 14 184 2 1360 259 14 19 3 355 7 28 3526 94 2877 25 2352 3 4 1900 3006 79 29 268 4 1072 29 25 1293 3086 9 1480 228 24 1066 14 2 2066 3290 17 14 2 18 15 2 2911 1762 2953 42 2\n1\t0 0 0 0 208 96 11 9 21 6 22 97 1318 144 17 127 22 43 4 126 53 121 30 816 3 8567 4509 609 2863 1653 178 11 12 2 391 4 5115 6774 8 179 11 1 393 12 2 53 1298 73 8 100 909 11 29 1 182 34 1365 5 1334 109 14 2 127 535 985 1 21 921 4 1 21 6 53 14 530 8 192 2 21 1465 29 1185 3 72 9545 9 21 7 84 2252 3 10 12 28 4 1 113 124 8 24 107 7 97 982 420 39 36 5 134 2 184 1479 23 5 34 4 1 81 602 7 253 9 135 8 54 36 5 134 1 113 178 7 1 21 6 1 2863 1653 178 106 294 7468 196 564 10 6 39 1011 5115 7 1363 1 178 7 5494 318 294 7468 666 1786 145 1096 42 10 6 2 163 138 36 11 8 96 73 1 545 2182 51 221 478 3 11 478 6 400 264 16 154 545 39 13 23 16 765 9 878 428 30 7734 5816 3412\n1\t309 49 9052 7775 3 9 397 7 1756 172 94 2214 27 57 4139 598 2285 6732 87 1 1260 3 10 12 2 1195 13 2 7669 32 221 5220 1123 1097 32 1 1039 5 932 2 3511 5 1 102 1630 4 1 309 3075 362 3 28 518 7 77 2 3 80 3476 7835 106 19 1039 1 7 1511 6 15 31 204 10 557 39 14 109 15 2 1110 5 800 1539 7634 1 164 1990 256 19 1 6 4 1 795 66 1699 5 25 1955 3 52 1097 32 69 1 3213 4 1 4 294 395 706 13 92 2009 4 1 1587 6 1195 3 1 453 32 1920 4214 41 1599 763 5 4633 395 21 3573 1922 22 74 10 190 5748 59 1100 15 742 97 18 5 64 122 372 2 3 595 810 17 1 278 69 4614 401 4803 69 6 55 45 5032 13 92 6379 4 1 567 1079 3 1 2024 1412 5 333 1 1117 4 315 3 482 1673 34 3272 6014 3 1 67 530 139 7 852 538 1033 3 23 495 26\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 74 177 23 889 49 23 2221 6 7210 1786 6 2 1429 2 321 5 333 5 1 25 5347 2405 19 1 4 1 13 3027 1 1267 2592 3 76 64 202 1383 3079 102 2641 22 20 4876 16 1 9183 4 6 2040 6 1 2101 3717 954 100 138 19 44 234 5453 5 44 4650 6 44 1 477 4 1 2 1757 4 9 60 123 20 853 1304 60 130 26 1 6412 4210 789 38 1 11 6 5714 25 14 2 1040 6 58 1534 185 4 38 5 26 13 297 11 255 189 853 48 33 24 7 1205 3 33 90 6 31 634 4 16 130 132 2 31 7 2 2391 106 3329 3 4842 4635 5 415 14 117 951 44 5 43 232 4 1105 4 1 226 802 289 44 2575 5 1 1949 19 1 13 1 2231 3 300 2 66 1 423 101 25 5241 2328 76 64 11 86 663 22\n1\t25 1327 35 6 2 249 2892 912 27 5359 6 1424 7 16 1 915 4 44 398 131 69 174 1200 996 1081 603 1255 3 231 157 457 1 6479 27 418 5 787 2 309 11 1 864 3 76 652 10 5 1 7167 7 856 7 21 178 11 1523 5139 14 109 14 147 42 20 11 8 54 4000 2172 1645 288 125 1 4 27 407 693 20 458 17 1 7945 206 412 6 609 77 1 406 21 341 1 74 470 30 14 7 1 296 21 171 309 148 6224 3 357 15 126 7 31 66 100 1419 29 225 20 1703 13 4938 25 171 15 1 692 4045 126 3 2378 126 1 3035 4 536 140 1 1650 243 98 121 450 25 541 6 78 52 1126 204 68 7 25 249 1125 3 1 1456 292 4863 32 296 203 104 216 167 109 34 2287 1 393 384 5 79 2 103 3 8729 17 1 4 1 506 35 6 2762 1 21 3 1 212 1261 7 2 76 93 917 1 545 49 7739 406 9 135\n1\t79 9 6 7349 80 425 21 69 14 1684 3 3824 350 2 1556 406 14 10 12 1 326 10 12 13 858 2 2314 19 8088 4 3 1 2729 321 16 10 88 26 52 3 4 48 82 21 63 10 26 367 11 1 950 1345 2898 1 13 51 22 7737 15 6926 7 66 7873 15 1 3682 76 1345 473 2873 3 6912 1038 17 5535 295 32 1 609 1284 5 19 43 3257 38 13 659 1 164 7 1 482 5297 266 31 170 1648 35 255 65 15 2 11 100 196 2124 3 100 2898 689 1283 4572 3 5137 29 1 5182 706 6452 106 27 6 770 22 2269 14 100 183 7 4 62 13 3027 611 101 42 2 1073 17 10 24 5674 1 1618 4 11 26 7444 266 47 14 28 30 28 34 7843 853 11 6 2 3 11 3 351 22 48 359 1 13 6044 657 9 6 2 267 69 5087 2 3184 28 69 3 1 1105 22 7935 2137 3 43 53 7288 13 42 1 8669 2314 11 69 7418 3\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 172 989 49 8 74 219 8 320 1094 3 1565 10 892 7885 172 406 8 128 539 47 1767 49 8 99 194 17 94 97 8441 180 209 5 64 1 1212 7 1 4965 2733 733 189 1 3 44 752 13 3 752 536 371 7 62 974 3278 3630 734 2 212 147 1468 5 1 3277 15 3 14 9 3518 3 8159 4 2413 1747 1132 2913 3 638 77 62 3630 5 21 126 536 157 326 5 1393 1 1122 6 2 3654 2211 747 3 866 3110 4 306 112 3 13 92 733 189 184 3 103 5637 6 2 7144 5 1 4 1629 3 62 486 31 665 4 9705 3 9 18 40 52 5 354 10 68 8 63 256 224 77 6029 10 6 2 1219 839 11 23 191 64 16 13 3382\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 36 2 91 2804 249 131 165 2324 3 713 5 390 2 9108 1665 108 850 50 851 12 10 565 1 2392 4 239 129 57 103 1 119 554 247 235 5 1271 2562 146 38 2 8 6528 7 1 182 27 4632 42 20 56 17 936 236 2 562 4758 3 1 250 129 6500 200 2 3284 1 59 302 50 417 1150 9 18 12 73 7688 1209 12 7 194 3 33 1168 65 1841 5 884 890 5 1 168 15 122 7 194 66 61 1092 3245 29 656 1479 851 8 143 1017 95 319 19 194 17 8 175 11 594 4 50 157 1877\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 6 28 4 1 210 104 180 117 107 69 3 8 467 1218 50 379 3 8 61 205 1120 47 4 257 3443 740 394 1452 20 5 798 101 1495 10 6 1135 4178 415 83 371 69 779 87 33 1338 3 3298 83 414 371 109 77 62 9408 3 549 200 8657 1206 371 3 2316 7 7 1284 9298 413 83 149 47 62 379 3 975 1 366 183 1 2279 3 98 100 5466 10 15 367 2866 332 13 6732 6 815 1 210 651 7 124 1938 60 9483 49 60 130 26 2826 3 7583 1 59 18 60 40 117 71 53 7 6 5309 69 3 11 6 73 60 247 7121 13 150 481 5509 227 75 91 9 18\n0\t733 189 435 3 2375 3845 3 262 30 294 2379 3 4785 1 4 205 413 11 6 2844 62 3338 60 7 698 196 3523 8327 1 74 101 3 1 330 387 60 6 1172 295 5 2 2163 30 1 413 32 2 3677 1533 205 413 246 447 15 2 287 35 40 58 395 350 287 7 1 1 11 5027 189 262 30 5819 15 2 6782 654 435 3 585 7520 415 189 450 415 2926 101 4464 1 435 3105 15 1 5180 4 25 434 13 630 4 127 168 22 620 59 9497 13 92 9497 4 415 6 132 11 51 481 26 95 560 11 1 21 12 29 49 10 12 74 29 48 6 52 3215 6 11 1 1624 7 1 21 65 5 4376 194 781 286 316 11 51 6 58 8117 5 1 4 415 3 11 415 76 3282 730 77 101 9286 30 13 3609 541 6 10 6 2 5228 4 541 125 2 2553 4 21 14 632 4927 30 1 4 1205 8588 13 440 5 1 4 17 59 3316 7 781 1 4 423\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9600 8 12 1247 54 26 2 53 21 3 487 8 12 84 67 74 4 34 32 2 821 3 8 179 9 12 31 215 67 17 8 497 10 247 3 10 12 2 46 1831 471 492 2093 7 9 21 6 46 53 3 4496 6 618 10 6 46 254 5 122 142 25 280 14 783 7 4539 17 963 23 87 3 27 6 46 264 7 1 9600 68 27 6 7 174 454 242 5 142 62 249 280 17 247 11 53 7 1 21 3 57 2 155 3104 7 1 389 8 159 1 21 8 57 1829 1912 38 1 9600 3 339 9600 6 2 53 21 3 8 54 354 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 40 43 4 1 210 121 11 8 24 117 6870 43 168 22 215 132 14 1 8653 588 140 1 8509 9 6066 5072 4705 127 91 4797 1 344 4 1 18 14 23 3192 8 173 241 11 9 18 6 20 55 7 1 1735 2226 104 4 34 290 8 93 173 241 11 51 22 1 398 930 18 11 8 175 5 99 6 88 56 26 78 527 68 13 1149\n0\t2457 6195 1 8 63 348 11 27 114 1 672 16 1 14 109 30 1 1289 1511 4 25 6026 45 8 88 785 2 4435 1009 7495 9927 229 478 36 9 2678 850 3 1 114 62 113 6762 1418 66 6 19 3459 15 62 885 121 790 114 9 20 1364 31 918 16 113 1 20 87 95 426 4 5246 8 343 36 8 12 133 31 1165 391 395 1165 6 52 36 1 593 6 618 30 1 210 263 8 96 5 117 2278 2 108 8 617 455 132 1386 2131 36 1 1859 28 736 477 5 1 18 220 2488 66 12 174 3323 9 59 557 4 448 7 15 1 7650 34 535 41 37 759 4 1027 34 7 399 48 1 898 114 23 504 32 2 18 6469 4 1 536 8 1150 9 18 15 331 4748 5 539 29 86 154 1146 3 487 10 2320 3 8 54 373 354 9 5 261 35 451 5 70 371 15 2 658 4 559 3 539 29 2 402 445 203 18 16 1 2016 2 1201 839 16\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 418 15 535 81 2659 239 82 7 1 9637 4010 479 648 38 62 4322 4304 34 1 387 15 58 2560 128 85 5 387 33 55 90 23 2499 1470 74 1099 269 23 152 335 1027 17 390 2 223 977 49 146 3659 34 23 63 64 22 1326 161 1462 239 20 4010 30 1 744 9 185 130 26 1 401 4 1 141 17 42 297 571 5920 18 40 58 1495 3 115 13 92 177 6 11 19 8079 9 18 12 1 80 986 1869 5 4 611 183 81 219 1027 8 55 9 228 26 1476 292 42 2 1736 688 3429\n0\t519 4226 17 198 1744 8401 4962 122 14 7 1 3854 43 4 1 82 120 22 248 37 33 87 20 3494 1 1384 4 129 11 1242 16 2350 13 9 5451 6 46 1 6800 1224 1 2288 3585 2887 2397 36 2 5811 298 416 622 21 3 1 389 1902 1814 230 4 1 5451 89 10 202 3865 29 1287 896 105 396 3 9564 22 3 89 65 5 176 36 33 22 7 243 68 13 35 4011 9 197 1 5576 4 765 1 821 74 76 229 20 694 140 10 399 73 10 76 209 142 52 14 2 518 2032 1889 362 1575 512 105 1902 1794 243 68 1 756 324 4 48 6 407 2 661 296 13 4 972 104 3 1 36 22 519 775 2427 17 9 6 229 28 524 106 2 1688 3 1685 206 88 90 2 46 8375 3 5257 2426 8 83 117 64 11 2267 220 2 1015 54 24 5 26 39 14 223 41 1534 5 87 10 2401 3 340 1 386 838 8585 4 80 4 1 1955 296 956 10 511\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 786 1367 11 8 617 107 1 21 220 8 2144 10 7 3 50 569 6 4693 3 153 1720 110 245 8 56 175 5 134 146 38 110 145 152 403 2531 16 4728 19 1 462 129 742 3 54 36 5 272 47 11 1 454 33 370 1 250 129 19 12 7 864 301 4589 1154 4 81 3 1703 4672 1 148 1010 400 5 5939 7 2891 3 54 100 24 235 14 4264 14 5484 7 1 135 8 96 42 1941 5 64 943 21 1396 35 787 16 8720 35 134 9 21 40 43 1267 1 59 697 233 8 63 64 6 1 2566 189 1010 3 6096 786 83 351 116 85 19 2 21 15 132 2 5 1 203 11 148 415 2830 29 1 1191 4 9 1207 35 40 195 71 30 1 21 5607\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 400 619 30 43 4 1 708 19 9 3 97 4 1 5656 8 96 1347 1133 89 2 53 18 675 657 10 6 496 6411 3 125 1 5199 17 10 6 46 2072 145 1096 29 225 6823 3 6022 15 79 3662 115 13 252 18 190 20 26 16 4792 17 45 23 36 534 2106 797 238 3 3140 23 130 64 110 115 13 3440 2941 107 7931 164 19 6602 3 4334 4 1 1296 69 34 53 484 17 8 36 9 28 1129 42 36 2 15 84 1077 1117 5616 3 7 2 85 49 34 104 291 5 26 10 6 327 5 64 11 275 213 1893 4 781 3536 2637 2504 3 24 4683 13 499 153 1977 11 6 3 55 289 7 9 628\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1341 4390 190 24 2 163 4 1184 81 770 16 515 275 51 57 43 1205 356 49 1 9 351 4 1043 6 9745 1 119 6 862 1779 3 1 59 302 10 196 2 102 47 4 764 6 11 270 142 43 4 44 2389 3 72 70 2 327 7796 100 179 8 54 230 1140 16 3101 253 1 3113 5 26 7 9 1689 17 8 8 56 230 91 16 3044 3 816 5927 171 35 100 130 24 620 65 7 9 391 225 561 57 1 5 7450 5 24 25 442 256 2882 19 1 27 255 47 22 152 5554 4 9 177 15 477 980 128 19 23 63 628 4558 10 10 6 229 279 1 59 177 38 9 18 207 279 2 1367 5 1 2104 29 6 58 111 5 2600 9 18 16 1350 4014 10 30\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 83 118 1 3108 41 661 1596 1410 265 69 17 8 87 118 2 1517 548 18 49 8 64 2396 13 2677 6 1011 368 7 86 1353 69 42 262 16 3886 16 1549 3 6 2 84 3599 4 2885 2677 3 13 276 36 33 57 2 163 4 299 253 9 69 1 397 1353 22 313 69 3 661 3695 276 68 3522 5768 3127 13 92 119 4 1 2841 8969 35 3567 65 7 2 2885 2677 416 59 5 26 4446 47 3 98 2033 14 2 6459 309 341 112 3 52 6 84 69 9 6 8266 1816 3 7925 9760 13 3371 84 238 3 53 494 9 6 28 311 5 335 69 16 34 3436 69 3 16 257 319 12 28 4 1 113 231 104 1181 107 7 2 223 1425 13 7017 2900 1 1332 746 3 187 2 680 69 72 61 56 1096 72 114 69 2 53 2225 267 108\n1\t7 5 2843 25 429 285 62 1173 960 115 13 92 607 201 12 7449 3855 262 30 1133 5205 419 2 74 1090 278 11 89 23 812 122 3 4351 122 14 27 5559 14 12 37 4602 11 1114 624 577 1 2125 5 4165 65 1289 5 2951 1 2389 60 7 1 135 50 1003 139 5 3894 3 8259 3632 14 3518 3 33 384 36 5100 3518 3 1848 1339 7 2597 3 618 346 62 1538 33 89 1 21 37 78 2223 3 102 1201 168 61 1 7473 3 1 3385 178 106 8565 3 25 3518 820 1137 94 28 4 1 120 2295 1 927 189 126 6 13 614 23 63 99 9 16 48 10 424 2 306 296 112 471 98 8 354 11 23 186 10 16 48 10 21 183 42 85 11 419 199 77 2 234 1031 257 221 17 148 227 16 257 3805 3 2815 45 9 234 981 696 5 98 23 76 335 10 37 78 1129 1 265 618 7026 6 273 5 2702 23 155 7 85 45 23 22 125 1099 172 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 28 4 1 1340 104 11 8 24 107 9 2463 1 81 11 89 10 191 26 37 862 3 10 6 2 304 1606 51 61 2 163 4 538 9 18 4104 1848 1334 47 4 1 1793 2887 12 89 30 166 1046 8\n0\t227 1514 5 3624 16 1 1820 189 450 3 6 275 912 10 54 26 2 1935 5 2198 55 45 10 1049 44 133 2756 13 8 5391 9 397 10 89 2 3579 412 86 567 3 39 125 94 86 856 549 7 1967 790 3860 12 66 420 894 88 1203 201 3 1863 3 2135 16 2 1679 19 13 92 67 6 167 3 55 1 333 4 1 531 240 4 6 14 1065 14 1 344 4 1 13 777 146 36 375 4542 2126 34 2193 630 105 84 29 399 3 1 790 4408 55 8350 13 1 16 9 397 57 5 26 5291 69 55 45 34 1066 16 364 68 62 692 69 37 1 28 177 66 89 10 2 1092 12 1 538 4 1 1673 3 1740 1124 9732 595 204 600 1074 15 25 692 4142 13 4 1 277 5670 400 8356 120 27 1012 7 3 6897 3 23 118 27 1640 9 216 12 2255 223 183 1 902 57 1 1617 5 476 28 376 16 849 55 737 3 28 73 397 12 138 867 1 687\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7430 2 18 404 32 3836 75 88 23 139 39 1337 7 43 125 1 401 2809 16 1 647 333 1 2370 81 14 1 250 16 1 3975 3 1337 7 3159 4 119 6 105 573 9 21 153 2735 95 4 9 3 154 1399 4624 1 1 120 34 176 9002 1251 32 1 1091 28 41 102 716 1093 1 344 13 92 462 89 79 539 3 8 12 3023 5 539 55 52 38 1 135 50 7296 61 5 298\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 72 63 2 1786 9454 22 23 1786 3490 1157 7 50 6494 1786 1352 894 656 1786 6359 54 23 894 3559 1786 5278 23 61 7 116 1400 260 195 4932 26 246 9 3749 13 1373 1170 7818 3 59 25 951 1 21 2 103 105 237 77 9258 3749 6 5 1 272 15 59 4 2164 574 7657 86 34 38 1 13 92 507 11 51 6 146 160 19 29 174 952 5 1 234 72 414 7 6 48 1 3607 37 530 2 178 274 7 15 2 4585 123 9 5 84 5957 51 6 58 2659 4 5029 69 23 22 7 10 41 39 2 13 614 1 6041 153 9988 23 105 1878 335 9 21 3 449 33 936 359 1 4848\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 88 24 71 37 78 1824 258 1078 1 3694 1103 4 7623 12 20 501 258 7 668 2263 27 153 109 3 25 1039 8558 22 49 27 130 24 71 7623 1 1103 4 1 415 14 2 658 4 2660 40 368 428 34 125 110 1 2208 11 26 515 4425 194 17 10 59 89 1 120 52 8366 1 4 1 18 61 1103 4 103 3 1 2691 4 103 742 2085 6 1128 14 3708 55 7 2 6024 1174 42 105 91 11 1 2447 4 3 6991 1996 61 8188 1 212 7623 6578 12 1447 7 148 500 105 91 9 21 12 2 1130\n0\t0 0 0 0 0 0 0 0 0 0 8641 227 376 869 7 1 429 4 5595 5 932 174 286 1 570 2754 6 167 1 21 3 86 3545 22 46 3 8 96 436 80 54 1023 15 450 501 1330 9386 501 4063 573 906 1181 32 522 5 15 3 14 78 6788 6 314 14 180 1991 450 115 13 72 22 303 133 46 3943 81 197 95 2387 142 15 1858 35 24 58 1362 10 15 34 1 1216 4 2 955 4613 13 266 1 2 164 4 97 6221 6742 14 25 5927 4770 3 5205 14 44 975 7 49 1 443 2683 15 127 8639 1 18 5162 5 3 6 169 3473 906 1 429 4 5595 15 311 111 105 97 3 120 2133 65 3 47 4 1 572 36 1363 72 83 70 5 118 949 5259 72 83 70 5 474 16 450 1 1122 6 115 13 614 1 206 3 3209 4024 57 463 1 21 41 2 156 647 9 21 228 24 1066 14 10 10 12 2 327 9011 15 327 3 2 13 2078\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4442 1981 12 2 6963 4 1 8386 49 60 5484 1 893 3035 11 12 128 2 3000 2408 17 298 7 1 1750 3 1912 4 97 2916 3 170 5706 8792 123 2 1016 329 4 2239 1 35 12 2 346 569 282 15 121 3 2 84 4579 44 121 895 337 7485 17 44 823 758 44 5 1 6123 4 3988 7 31 6080 7 315 3 482 15 1666 49 60 196 47 4 1 234 4 2605 7 147 3820 9 4743 21 40 53 397 1353 3 2 46 1202 607 1440 1 465 424 42 2537 243 5307 42 832 5 921 31 5 1 919 220 4442 6 1012 14 275 169 2513 3 2670 340 1 1255 60 12 1107 1 1655 22 340 2 163 4 412 387 66 224 1 21 959 1 714 17 42 373 279 133 16 1 622 4 1 387 3 5 64 1 8339 1655 11 12 2 8805 4 1 7530\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 114 3328 64 7 1895 821 3 46 61 51 2 156 1657 303 47 19 3 48 38 2013 742 2574 9535 3 4526 48 114 33 64 7 9 46 5940 13 872 144 114 35 419 2 586 1835 1942 132 2 13 92 7417 8783 451 5 26 19 1 166 14 1 793 41 1 9362 3 4624 1 1183 30 2 46 2081 2 580 30 3328\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 51 6 59 28 302 144 8 159 9 18 3 11 12 73 8 24 2 3144 5549 19 742 83 118 11 78 38 51 61 43 185 11 61 211 36 1 3 4354 3087 3 1 3 1 3138 438 23 9 6 519 8 134 10 12 29 268 722 17 10 88 24 71 828 229 45 33 1019 52 85 7 1 623 3 364 85 355 415 1 18 54 57 71 43 6310 39 90 23 175 5 3 508 6310 90 23 539 3 4614 227 4630 1547 9 18 6 45 23 24 2 1341 5549 19 742 279 3676 42 279 3698 10 47 3 283 8156\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 39 284 1 708 4 3 230 8 24 5 2248 7 675 8 365 27 153 36 1 158 17 25 1318 22 20 50 507 3260 9 21 6 11 10 6 20 1893 5 2203 1 5151 4 2259 3 239 4 127 102 1046 14 24 877 4 1318 5 26 3837 3 9750 286 149 3 5861 7 239 1 1715 59 84 121 88 90 9 216 197 1496 31 931 3680 3 8 56 726 942 7 127 81 73 4 62 5081 3099 340 5 126 30 132 627 2263 8 24 154 302 5 4001 1215 6403 16 44 3004 1592 17 923 1687 8429 60 6 3088 7 9 1174 626 7789 6 1016 14 2 164 603 2717 3 5814 792 5 2197 122 7 2 234 9742 5 25 9 6 1 74 8 24 107 7789 712 243 68 5 2373 2 129 3 8 56 36 110 9 21 12 2 184 1197 49 8 74 2111 10 3 8 176 890 5 283 10 702\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 215 251 4 3783 6 2 382 4 1 1818 42 1011 1406 6056 15 43 3895 3 3 180 198 3307 144 368 1336 829 10 73 42 39 1 232 4 177 33 3144 9719 950 196 1 1753 4026 1983 53 3819 510 7 1 5078 3227 966 378 341 2698 7 438 145 2 3 2673 72 70 9 4131 18 11 9834 1 5299 47 4 1 441 7 14 1 1967 3867 142 1 1402 3 1 212 177 224 5 3432 5 64 1 8910 4 1 2457 3 330 1039 1012 14 2 346 487 6 6418 8 39 173 365 144 1 1350 114 9 73 33 515 57 1 3376 5 1 67 3 88 24 89 237 52 319 30 1083 10 151 58 1821\n0\t12 146 4 2 950 7 1 2269 6215 413 7 25 3887 70 2649 21 871 11 3097 4580 5 9567 19 656 8 24 58 312 48 2470 12 1390 5 90 9 158 17 8 54 24 5 26 1390 2 184 4 319 5 1023 5 90 2 2377 3282 4 512 7 2 1729 2129 1 21 6 515 32 1 14 22 80 1563 1792 59 378 4 2 148 1563 4554 33 31 2271 147 1563 4554 7700 1991 30 28 4907 14 1427 2146 189 2885 2677 3 1173 2 4 9887 6 2490 5 2464 43 886 32 31 286 154 974 40 2 11 6 610 48 2470 693 5 2382 1 4020 4 611 27 2026 25 111 5 1 466 5104 3 4 448 33 24 2 15 31 393 11 76 1197 59 137 35 24 100 107 2 1792 135 51 22 2816 66 5661 2514 76 2102 591 1 4 2470 3 97 4 1 976 6145 3702 17 1 59 302 5 99 9 21 6 45 23 24 2 9276 421 3247 35 195 3451 27 57 100 274 2749 19 1 21\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74 4 399 49 81 785 33 1279 96 4 657 12 2 53 141 17 1 465 6 11 307 259 7609 5 33 83 504 122 5 3684 147 9 18 6 264 68 42 78 5151 3 6 46 1 302 8 419 2 1020 4 394 6 73 180 57 5 99 535 268 5 365 3577 37 9 18 6376 15 116 3268 42 46 4763 13 252 18 6 264 68 10 12 248 1 861 6 2211 3 23 63 3082 259 923 1388 4 7 592 13 1118 1196 79 125 12 1 5970 4 1 2689 3 75 72 22 303 15 52 1389 68\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 31 7631 2069 402 445 391 4 13 150 83 55 24 1 5 134 75 1495 9530 3 39 908 678 9 991 6 48 118 8 274 7 2 1443 43 559 889 19 2 4133 3 7489 3 5555 69 10 12 34 37 7631 8 339 90 522 41 6323 4 95 4 592 13 75 9 165 1459 65 30 2377 400 10 56 6 9185 13 872 20 7 2 86 37 91 42 53 1280 3293 13 499 6 39 1853 1853 1853 9185 13 45 23 128 83 241 79 98 99 10 15 154 4748 4 2083 10 98 209 155 204 3 348 79 48 23 4630 55 19 7072 339 449 5 365 2938 13 5827 41 55 138\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 1150 9 43 172 1742 1 388 1320 57 59 1919 29 1 290 826 5 388 12 4101 42 4678 1374 106 1 1009 3736 333 1 166 3 1666 4 1134 143 118 48 5 504 82 68 48 12 74 177 8 179 136 133 12 2386 1 540 15 1 51 12 58 494 911 37 8 2165 19 1034 8 57 5 946 2912 23 236 58 3189 641 9226 1 67 6 641 1509 487 762 282 48 3538 79 14 2318 3 7574 1220 1 81 7 1 18 143 291 36 7866 428 77 1 243 32 62 148 34 1 3166 23 905 5 356 48 1 1951 6 64 11 51 22 58 1035 29 772 62 9 339 24 1977 1 51 12 146 1784 38 110 8 179 45 3771 24 2 2223 445 98 10 54 24 71 1824 66 145 273 33 1050 33 337 1929 3 89 110 490 8 12 48 1532 3164 6 34 736 6 1256 200 14 45 42 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 112 1 6797 638 6 132 2 84 353 3 37 6 35 422 1371 76 5 27 6 37 4709 213 8 1595 1 2126 106 27 165 5279 30 1 2710 3 106 27 165 553 5 8855 5 14 2981 37 256 110 438 1259 27 12 169 211 49 27 1113 87 199 2 76 5917 4258 1803 12 37 247 2057 5 552 1 2349 8 343 56 1140 16 7594 49 27 310 47 4 1 9537 16 1 4339 85 73 27 12 37 8 12 36 7426 50 851 45 8 12 2981 420 26 37 1728 16 3 49 60 122 8 12 36 244 1191 17 8 179 11 12 56 3 1 8 179 27 12 1927 134 5 2981 8 112 17 27 6629 850\n0\t0 0 0 0 0 0 0 0 0 0 0 8393 6 46 17 831 1177 6 20 25 8 57 298 1691 38 1 21 183 8 1150 10 3 300 11 6 144 8 5085 10 37 1264 8 4429 525 29 253 2 21 11 270 334 650 7 28 346 4893 17 42 20 1 525 11 8 214 1 21 2764 1495 3 5496 689 1 121 12 162 9909 2142 40 248 78 1824 258 220 27 6 7 80 4 25 82 703 12 17 9 12 28 4 25 74 124 669 114 70 2 2382 47 4 75 170 3 9 2703 376 1 59 177 11 1475 79 38 9 21 12 1 28 383 4 1 606 6895 32 1 2658 427 4 1 1611 12 1080 5979 3 1 443 1527 19 385 1 427 3 576 1 245 11 383 12 46 3 50 497 6 8393 165 1 312 32 11 1188 21 4 25 801 6 46 53 438 45 23 175 5 64 2 3088 21 11 270 334 7 28 346 4893 99 8962 300 8393 130 24 219 10 183 1673\n1\t0 0 0 808 1128 6 2 53 103 953 5 99 19 2 2156 2016 1883 505 84 1518 3 2231 13 2361 228 20 175 5 64 9 18 73 10 271 16 2 46 386 3 4 1 18 6 19 2 2345 3 39 83 3915 33 1622 10 142 46 109 15 1 1831 3 2347 13 743 7159 18 181 5 26 147 9057 16 206 3855 17 1416 227 27 40 1179 14 78 882 14 27 815 63 77 9 13 252 104 6472 272 6 86 1440 9 21 965 53 171 5 1917 1 927 3 45 33 143 24 137 171 1 21 54 24 71 433 3 1466 72 57 2817 32 467 624 3 2279 2770 32 1982 792 3 663 3513 142 9 201 6 1579 5582 32 13 92 2216 7 9 21 12 1051 39 49 116 517 86 160 5 70 509 33 1337 2 1298 29 1038 5271 9 213 2 223 18 3 153 230 36 10 1497 78 138 98 1 82 3677 18 3677 13 8170 6 50 3677 1439 13 150 20 105 223 3 20 105 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8194 2093 308 52 380 2 6898 278 7 2768 9 387 27 1 280 4 2 1557 35 173 334 112 183 5288 3 8095 3 1 304 1990 237 32 101 14 28 2381 1059 2 821 38 44 362 6 14 837 14 117 14 25 202 2 8303 1073 202 2 1779 141 202 2 1125 8 7663 11 143 169 90 10 5 2 4384 10 153 169 2500 382 17 10 40 34 1 4534 16 2 299 269 15 31 17 1252 514 129 1041 3 593 11 863 10 34 866 884 227 37 11 23 670 83 1682 11 2011 213 610 2365 49 10 255 5 8 555 51 61 52 124 36 476\n1\t30 161 7409 5845 7298 2608 3 1602 13 9 1091 1810 338 80 1 74 3663 2665 19 1 1966 717 664 5 1 11 9 811 38 11 1980 290 11 5 1 330 3663 66 270 334 285 1 6637 4 7146 2887 130 24 2403 1 1232 4 1 735 4 1 4576 11 6 5 867 41 1 166 1689 4 611 1 957 3663 270 334 285 661 268 17 9 1304 11 55 2226 172 989 130 7259 14 13 92 11 1047 2608 3 25 5 2203 3 5682 1 678 3 892 9152 285 277 264 6 1 1776 16 1549 2 46 2985 915 5 365 16 35 2923 1 1776 16 319 3 1537 3208 154 85 11 6 620 7 1 8531 10 6 198 2 1935 5 99 2 722 2347 1414 21 1958 16 2 686 1091 31 331 4 2249 3 3 1117 3 1813 31 1409 1414 11 6 425 5 1959 28 5 5682 1 943 3 13 872 944 45 468 1959 503 8 191 186 50 597 73 9 1091 1810 191 15 31 161 35 153 176 44 13 2969\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 39 219 9 16 1 74 85 7 2 223 85 69 8 57 1837 205 75 3950 1 1512 4416 3 75 2347 1 18 705 8 57 20 1837 618 1 567 168 66 22 1543 1 178 29 1 1957 7 738 1 80 684 117 13 942 7 3329 41 622 76 112 1 1324 2326 69 261 942 7 1151 76 26 1527 30 3 261 35 1371 1117 4586 76 335 1 2553 4 1 13 1226 430 18 1373 164 7955 89 774 1 166 85 69 17 9 28 6 4455 115 13 3382\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 728 28 4 1 80 837 2445 124 11 180 219 7 1 576 3002 253 10 254 5 241 11 2146 6 1 7344 2289 135 8 1732 970 5 149 52 124 30 9 2146 40 11 979 175 5 64 48 422 9 846 228 24 5 3051 127 2491 86 1219 5 64 2 18 11 6 3 16 48 18 253 130 26 1 113 4 34 21 824 5 932 2 5687 1703 3 4608 4815 2425 8473\n0\t27 6816 2 156 1658 8815 3 2296 47 4 1 1641 7 2 33 1732 2 5058 11 6 2 3384 9 3144 5436 6 7984 30 59 277 1046 6295 73 1 445 4 1 21 114 20 5 97 1488 1441 5 757 2 223 67 2179 1 277 182 65 7 2 562 4 1398 3 3872 15 1 13 92 7245 7 9 18 6 2284 7 11 27 6 3182 6 1227 20 2 3277 28 54 333 5 1431 2 9334 69 2244 300 17 20 17 27 705 1 277 81 1 1598 2468 22 1067 3784 14 132 731 871 69 9 2468 6 2060 1 5524 4 2 1078 11 1 21 6 274 2297 172 7 1 5050 10 6 595 11 132 2 568 5436 88 100 438 1 233 11 10 6 314 16 132 2 2831 5410 480 1 4486 5524 4 1 1 1176 34 24 827 2568 7185 3 1 974 2903 4 48 784 5 26 2 3928 4674 3 17 51 22 2 163 4 13 92 21 6 1002 109 1171 3 10 557 14 31 1045 3323 17 162 1051\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3224 5 2 91 1272 67 3 5100 9649 9 203 901 615 2 4805 1136 30 1 2079 4 25 817 379 3 2467 214 533 62 2213 3630 3 5204 6 1 766 56 242 5 1564 25 459 9547 4770 41 6 10 1 2793 8182 40 556 474 4 1 9057 220 1 469 4 1 215 6841 4 1 9 402 445 203 739 40 2 67 427 11 863 23 602 34 1 111 1 293 363 22 167 91 55 29 5544 8 5245 29 268 1 2467 981 78 36 10 130 26 7 2 7431 108 93 7 1 201 14 4537 6 129 353 9177 30 1 8248 1 644 2254 23 63 1236 9 14 185 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 192 2 184 325 2 901 2114 3 180 107 126 34 3 9 6 28 4 1 42 722 8571 3 2 2073 8 354 9 16 34 5311 42 84 16 103 374 73 42 322 3262 3 84 16 1995 3 1886 73 42 211 3 20 125 1 5037 8 219 10 49 8 12 103 3 8 128 99 10 1705 10 40 84 456 11 50 231 3 8 3692 34 1 290 1 121 6 84 3 10 100 196 3176 45 23 36 2603 3493 3 23 76 112 476 180 219 97 2 3262 18 7 50 85 3 9 6 1 113 4 126 513 8 496 354 9 18 3 34 1 901 2114 3434 33 34 1376 5 34 3436 3 22 34 979 3 46 2072\n0\t2675 66 6 5 134 59 2 13 2136 118 48 9 981 1956 284 5167 19 6493 3 220 58 215 3462 61 1 3576 5 10 3 10 15 2 749 8649 13 677 22 1036 5 65 25 4486 189 277 3298 3 183 403 814 2080 126 75 78 33 112 550 102 4 1 3298 1337 730 29 25 2919 3 3566 5468 122 5 70 29 25 1686 1 957 6 1 53 282 3 4364 5 139 19 17 7 1 3290 1373 2191 5 2580 25 3113 5 187 1 102 25 3 1 1784 2784 27 5136 65 1184 3 1326 285 2 19 1 1472 7 25 1773 3 374 63 87 11 5 1038 50 3474 16 94 34 1 991 8 19 5459 849 123 27 131 95 796 7 1496 2 1207 41 2 7 1 769 1603 7 1 309 13 659 1 141 1 53 975 6 3 17 49 60 440 5 142 6102 1956 3130 7 3 3389 1159 37 1 393 424 52 41 9960 7614 207 1 1820 189 368 3 2 2438 1013 23 6825 368 14 2 2432 9248\n1\t24 1 80 299 49 253 708 3 101 6411 136 8 24 219 1 251 3 149 34 1 2274 216 371 530 1 22 20 198 1 113 8858 51 22 2 156 36 1 2755 590 17 80 4 1 22 6269 7 101 446 5 3258 48 6 8 335 133 1 3 1 22 1 2135 29 1 182 198 276 491 3 519 10 79 7 1 436 11 6 34 261 63 5 175 5 56 2089 48 6 1 59 177 8 54 56 720 38 1 251 6 5 1006 2104 19 1 131 5 65 2 4618 519 1 1646 432 2 222 105 3 11 213 198 299 5 99 49 23 22 852 52 8 338 1 324 15 962 73 10 12 37 2864 36 1 1571 17 8 63 348 10 12 2 167 4056 8 555 27 57 2716 15 9 324 3 71 1 4016 69 189 1037 3 7596 11 54 24 79 16 31 6708 14 223 14 23 83 504 1 215 873 324 3 63 1942 9 251 19 86 221 23 190 149 10 5 26 31 837 6708\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 18 57 2 1257 8 323 3114 8 12 7 16 28 4 1 113 684 1545 180 107 7 2 51 12 146 933 38 1 111 1 18 12 274 1095 1087 286 595 3 17 98 1 67 427 544 1496 52 3 52 8366 5 134 11 1 393 12 2390 3 961 54 202 26 31 1 80 687 684 393 106 297 271 84 16 154 1223 2 178 106 1 250 129 11 27 40 89 2 2082 3 5008 1 4 25 59 5 6001 25 112 16 44 7 1044 4 2 3098 3216 4 209 778 7 1 769 1 23 70 1 2129 2 351 4 2 5261 240 2803\n0\t11 2 1908 642 3 34 1 111 65 5 1 22 3021 5 6009 76 5 13 3422 8 192 20 2 1850 3 24 43 6112 38 704 41 20 2374 5155 12 7 233 2 1267 1 1387 6 458 7 1 223 5408 4 2789 10 190 20 3821 48 3291 6 11 2 859 12 1694 5 8648 3 6455 200 1 234 11 8486 5 4162 5893 4 1 3 4945 406 3030 7 86 442 3 51 61 4961 14 6547 12 2 4 6711 3 1549 3 2 1700 3 3920 11 1451 16 257 1658 8845 13 2120 8 7301 1 233 11 1 21 12 89 3 11 2 3356 12 48 6 5873 965 6 20 174 525 5 333 4842 14 2 2857 4 5455 17 5 64 10 14 2 1205 7845 11 63 652 1 3781 81 1413 136 51 6 974 16 9208 3 4784 19 1842 7 1 911 4 4444 22 113 107 7 1 935 1276 4 3 7999 8184 1 851 35 247 51 6 1901 59 16 137 603 312 4 2 53 85 6 5 1652 1 4842 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 54 24 5 26 28 4 1 5867 45 20 1 5867 18 180 117 670 575 669 339 99 10 34 1 111 3031 3 311 42 2270 882 39 16 1 3032 4 10 3 1 903 67 427 59 1583 5 1 3 6223 7054 3 59 4739 16 137 15 2 112 16 8462 94 5234 375 3302 3012 415 3 2383 7273 6 475 997 94 848 375 52 613 6862 11 475 70 2 8353 14 5 25 244 5 469 30 6718 4355 3 3963 6779 27 25 111 47 3 2392 1489 421 137 11 256 122 295 3 1 3396 5 867 52 3067 2064\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1023 15 1 817 48 2 3315 1150 10 517 10 12 160 5 26 2 53 18 220 3 4782 106 7 110 8 12 619 30 62 1835 909 52 220 479 53 7540 13 10 12 2 673 477 17 10 165 2194 8 55 1309 29 43 91 49 6 377 5 26 2 948 108 23 63 55 497 35 6 1 506 115 13 1701 148 48 115 13 5 134 17 83 55 1460 468 351 85 3 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1203 19 1 305 3 4447 6 9413 8175 23 54 96 33 89 2 18 38 1316 6131 32 2733 2853 315 66 6 128 2 56 84 3486 17 9 1324 171 22 210 98 278 7 5267 24 138 538 3 138 1488 8 12 1927 751 1 305 17 5271 8 1150 10 1239 1 119 3 263 22 93 2680 162 181 5 139 5 371 37 1 18 56 100 151 1821 1 345 1035 5 23 712 3450 168 22 527 98 879 314 7 1575 3280 289 3 7 1 182 4353 597 23 1841 5 7231 116 522 421 1 2282 4 116 2168\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 292 12 101 14 101 4639 5 48 1 265 1926 6 36 10 6 496 1 206 40 1 410 77 3499 1 1579 5931 6478 142 1 543 4 1 990 3 1 189 1 7496 3 40 71 1 1387 4 1 729 6 20 56 5794 7 9 803 13 3053 367 9 21 6 3 6 31 240 99 14 72 70 2 176 29 102 6655 4 46 964 7063 1749 62 3981 28 4 1 113 188 9 21 40 160 16 10 6 2 979 2821 189 1 2445 265 178 3 1 3844 4242 5636 13 650 16 1 265 3 1 102 885\n0\t22 133 2 3640 4 31 161 1461 6454 2351 1 19 1 131 2140 29 6914 509 3 650 2 4755 16 1 7036 35 22 1230 227 5 946 8488 16 1 3 48 6 1 934 38 350 4 1 536 7 7 1022 11 6 39 908 439 3 40 162 5 87 15 1255 7 115 13 150 24 332 58 1451 16 95 4 1 9 4336 33 34 291 36 5385 5 437 7 1188 3299 29 225 43 4 1 57 2 222 4 195 10 181 36 1 54 564 62 221 532 5 359 126 19 1 880 10 93 181 36 2862 3144 6636 432 2223 3 2223 16 154 1022 11 1369 30 3 5 26 3314 8 173 64 144 261 15 2 1205 356 54 175 5 216 16 550 25 7 1 650 153 90 95 356 29 34 3 519 10 181 27 39 36 5 1652 81 16 48 42 13 1 786 16 6009 70 1 131 142 1 1276 14 521 14 2623 42 39 105 2685 5 836 1 12 308 2 84 17 195 42 39 2 184 2253\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1037 3 3351 22 2366 59 9 85 31 510 3751 32 1 958 40 1172 155 31 510 1037 3 3351 5 2410 949 1826 5714 3 1 3397 16 423 1342 7 1 3667 9 85 1037 3 3351 24 5 2203 140 1 3 552 3099 13 3371 78 4 1 166 1569 3 43 360 147 120 36 1 3591 2276 3 3345 1037 3 3351 9980 1486 308 316 3 6 279 133 16 86 1077 13 115 13 743 80 967 115 13 19\n0\t15 239 2834 1042 33 70 527 3 8350 13 252 28 418 15 3520 355 1459 65 30 1 3877 73 27 643 2 156 81 1537 244 7736 1383 37 6 2052 32 4193 5 2464 2 2632 9992 2345 11 76 26 314 30 1 1881 706 11 368 6 37 2189 15 642 127 6371 13 5 134 1 21 40 464 927 11 6 202 198 2320 15 2 4 5502 3 551 4 121 3694 1 67 213 240 3 51 22 4313 4 10 66 90 332 58 356 3 87 20 734 235 5 1 441 120 4 18 14 2 212 132 14 1 5334 189 1 102 250 6563 7 1 201 66 6 51 3031 16 5 70 902 3 286 213 55 39 1693 14 10 151 58 356 14 5 144 10 653 49 10 143 321 8676 13 659 386 2 464 263 15 91 3140 2320 30 8283 1041 509 3 29 268 955 5870 238 1025 3 546 11 59 3272 5 3882 1 3 90 1 18 55 8350 13 269 4 116 157 3 187 9 55 45 23 22 80 3123\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 165 142 5 31 240 3587 224 1 1611 245 1 67 196 4326 15 2 345 4 1980 315 1449 1 976 466 12 46 53 600 55 193 27 196 1 210 182 4 1 1382 7 1 7268 7 9 6 762\n0\t63 261 830 1 389 201 1157 200 14 1 206 3 1063 139 125 1 13 6254 3908 257 1518 1123 25 4539 5 257 7660 1119 70 490 27 6 160 5 1622 1 5299 47 25 13 1 389 201 13 4255 111 63 11 3659 1348 5051 11 3305 26 2 13 150 336 1 185 106 1 9526 6657 4152 1 6051 5 469 15 1 201 6175 60 615 19 1 3135 4 1 8 247 273 1 9563 2514 2705 5 5393 1264 300 11 2980 144 1 12 4304 19 1 3135 7 1 534 29 39 1 260 85 5 564 1 181 3857 11 94 1 9436 259 57 1563 1792 3083 1665 3 2 342 47 5680 574 27 621 37 728 5 1 5497 4 2 9526 282 398 9634 115 13 1118 1 3106 6 11 742 259 403 7 2782 114 27 1473 25 1807 41 115 13 261 1346 1 393 5 79 786 73 8 143 70 10 8 173 169 842 144 1 327 950 282 405 5 564 1 211 886 35 12 253 44 43 100 438 8 83 175 5\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 514 991 16 31 2141 880 66 6 229 20 2065 283 14 51 181 5 26 595 4 2 7 538 7981 2331 4000 8 1498 9 131 5 1 5115 4 112 50 3911 17 10 6 2696 4 362 1085 157 4 2533 1 201 6 1111 557 44 1449 7 1 74 102 767 8 24 1586 1 598 201 6 627 93 258 1 3 807 17 190 26 1 2084 822 1491 11 10 693 45 9 131 6 5 70 174 4207 8 247 2 325 4 25 278 7 1 1477 85 5451 251 2 156 172 155 17 27 12 84 14 5219 7 198 86 93 53 5 64 8259 702 1572 449 1 131 863 15 239 2351\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 723 1665 460 140 1 2706 1692 981 36 2 21 5 836 72 24 4110 7717 2501 3 7913 34 371 7 28 135 22 23 116 109 1 7079 3107 35 7817 32 4 61 407 62 8754 14 33 19 1 4 62 13 4375 51 12 43 3569 5794 69 237 105 103 1078 1 201 69 688 10 12 521 3867 1089 5 8205 5194 16 127 51 12 373 43 238 11 229 40 20 71 107 1704 3 52 68 28 454 433 62 522 7 1 13 5384 206 1850 114 20 131 78 2988 3 8 192 20 1458 5 99 25 406\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 173 241 10 11 12 1 210 18 8 24 117 107 7 50 500 8 1309 2 342 4 1287 1394 229 73 4 75 439 10 12 2930 45 275 1390 79 5 64 11 18 316 8 1 119 12 37 586 600 10 89 58 356 600 3 1 121 12 37 91 11 8 339 55 348 45 33 61 11 18 12 464 6070 6901\n1\t69 15 44 102 2260 3571 9672 3 14 44 3571 694 29 44 2536 2 933 1702 49 60 12 2 16 44 113 493 69 2 1892 205 2536 5702 14 1 7670 3 5514 711 2640 2339 507 11 12 311 9685 2 164 4 44 897 378 4 1 487 60 57 336 69 3071 44 585 35 57 390 2 3 2536 22 371 7 2 251 4 3 11 24 71 721 1085 318 944 2297 172 1372 14 2536 6 1 972 5106 2536 29 1 182 3 1 4434 22 22 58 132 188 14 3036 69 157 39 271 1 21 6 2 7358 1646 391 3 1 263 30 3 6 1086 7 1190 3 1546 157 657 51 22 9941 7 1 67 11 88 24 314 52 17 7 639 5 4778 1 4 6236 4 2 2057 2800 132 22 1 21 6 30 1 1761 4 20 59 9659 306 306 6221 3619 5205 4545 3 3042 17 93 15 31 3322 201 4 1516 17 46 1195 2263 1 1167 6 1612 30 3 1 668 868 6 30 1 2095 9 21 19 116\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 28 4 1 210 104 180 117 575 586 211 29 399 3 109 39 7441 13 150 63 59 2309 34 127 394 47 4 394 34 85 18 708 22 152 1 171 730 7 13 48 1 19 9 18 6 145 273 86 3893 19 9 1981 10 407 343 36 31 115 13 614 116 288 16 2 1360 5 694 140 9 489 682 13 13 2687 351 116 85 14 8 114 19 9 28\n1\t174 1557 3 44 2 467 654 35 123 20 70 385 15 1461 1072 46 530 123 20 70 385 15 25 147 2185 78 1497 11 34 1714 14 1 18 271 4508 1 18 6 1883 14 62 6 2 259 11 56 451 5 564 16 1 111 27 1979 122 7 1 3186 51 6 43 1005 168 1873 15 1 469 4 379 11 83 56 291 5 26 15 1 1511 4 1 18 73 1 344 4 1 18 6 238 4677 1238 3758 8835 3758 3 716 38 3311 8669 91 559 7 2 732 6556 8 118 11 11 181 36 46 402 2106 17 43 4 10 6 152 46 695 8 143 64 9 18 16 1 3758 8 159 10 16 102 3799 1 74 302 6 73 8 192 2 184 578 5700 325 3 1 330 6 16 1 238 5007 578 5700 6 3288 68 27 12 7 3 1 238 1102 29 22 138 854 10 54 24 71 327 5 64 52 120 32 5 17 42 128 2 299 108 45 23 22 2 578 5700 1787 468 112 9 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 3573 992 14 28 4 1 3781 84 9 2325 304 21 6 370 19 2 67 30 3 2291 109 11 7344 534 294 380 48 8 1064 5 26 25 2049 278 669 192 531 20 2 325 4 3 5138 6 609 14 530 109 279 4498\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 57 1 1935 4 956 9 304 21 226 1925 15 1 360 1993 4 2 1193 3 1836 15 1 206 1068 1 3817 8 2172 11 1 74 40 100 433 2 5304 41 275 46 542 5 126 7 2295 8 24 57 97 132 3 9 18 5355 5 437 28 4 1 580 1626 6 75 72 83 934 15 15 257 336 879 318 42 105 105 41 434 183 11 4216 771 5 116 336 4449 1876 5 3 2096 62 3313 348 81 23 112 949 8 336 1 859 11 51 22 58 8 112 1 2024 1103 4 1 733 4 1 102 28 4 1721 42 935 5 79 27 2786 75 1618 137 1830 2620 25 622 14 2 7745 93 255 140 1767 3 2 304 1540 1 1084 6 21 20 5 26\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 159 9 631 8079 19 2 388 1320 3 183 8 165 50 74 8 2242 420 10 15 9 103 2067 3 42 91 3164 29 42 13 92 927 6 8935 2406 3 10 1263 2 2691 15 2862 2047 6969 6 7 10 3 78 36 1490 6107 384 5 175 5 376 7 154 91 18 7 25 406 982 9 18 6 561 913 13 499 1008 456 2102 65 3 369 79 13 872 667 2 163 4 115 13 872 1 9360 10 6 1360 2048 13 26 30 2 566 178 14 3217 123 2 577 2 3 123 2 327 2885 2677 2382 49 60 255 65 32 1 238 3 5351 3 2 13 1118 18 325 88 1006 16 1608 3 49 561 129 7255 2436 3 3 255 155 5 9195 3217 14 2 1272 60 2080 122 144 27 643 411 243 98 934 15 25 27 3908 413 83 2089 13 45 3217 12 2 1831 60 404 16 31 260 98 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5129 8073 6 407 1805 14 1 2088 4903 9 739 6 39 31 1335 5 369 44 4311 224 5 44 2 156 268 3644 1349 7 49 9 21 12 20 13 92 259 35 5820 44 5 216 7 2 4831 8565 4 217 80 4 1 82 287 22 3 1 3582 287 6 7 2 1119 3293 13 743 358 47 4 1731 1631 40 2 17 23 173 2095 95 121 860 73 1 389 21 6 43 4 127 531 89 406 68 9 628 22 240 7 43 744 17 9 6 56 2 3551 6765 974 16 51 22 43 2745 5217 3 240 17 236 56 162\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 131 544 47 15 84 948 4916 8 96 307 6 7 1 74 1194 41 5230 4916 94 458 1 131 544 372 386 767 15 4601 3 13 150 96 4261 57 5 720 910 269 767 77 386 4916 43 4 1 672 171 726 94 1194 41 5230 3428 1403 1018 262 726 8 96 1 672 4 1714 94 74 2042 3428 73 1 74 672 651 35 262 12 13 872 1 3201 5002 1 1210 5 90 52 4074 15 4601 3 73 1 4129 61 7156 37 33 57 5 90 52 8 555 33 61 5153 36 1194 4916 128 10 6 2 53 880\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 1 1795 746 9 165 8 247 852 105 1878 3 12 3202 5658 42 2 46 548 346 1004 21 15 240 647 313 523 207 197 101 3 2 53 7341 10 276 53 1221 7 2 699 791 81 463 36 9 18 41 39 812 194 3 145 28 35 338 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 195 42 128 14 3 8976 14 8 8560 255 32 2 85 49 624 61 3 676 9192 42 254 5 186 7 11 10 6 32 1 5879 3065 3 1 233 42 1492 19 305 49 53 124 22 1265 257 1152 106 1 770 897 22 1012 14 216 4832 41 1245 6 23 173 352 507 5661 16 2 19 2 328 5 998 116 3954 49 23 64 7 2 1668 41 146 696 36 4970 314 5 2951 16 2 3956 7 3199 9 21 289 1 4762 6290 4 2 30 2 808 1839 66 180 71 6534 6 20 2 17 2 13 39 83 1460 99 146 547 378 36 41 2 2874 65 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 572 12 4310 32 296 104 6673 7 1 73 4 1349 30 66 2200 34 2329 4 922 738 1 2479 7 1 6188 17 20 37 78 16 1 976 9 67 3009 2 170 287 654 3831 35 196 1136 5 31 972 164 3 6 3091 125 1 19 1 2279 366 3 1 766 100 1 1892 3 38 34 2329 4 46 5780 188 36 25 6296 3 848 3831 844 44 4703 429 3 486 15 44 435 3 440 5 1346 44 5717 19 2 1053 1702 326 3831 270 2 2062 19 44 2839 3 1036 5 139 16 2 5795 1326 7 2 2889 7 1 9273 44 2839 1225 142 3 60 1225 94 122 3 6 30 2 170 164 35 615 44 2389 3 1843 126 5 127 102 81 390 46 3 51 6 2 1151 11 418 5 51 22 97 52 240 922 11 14 23 793 9 21 5 86 46 714 335 2 84 382 21 66 12 2 21 7 3589\n0\t1577 447 1545 1218 123 261 853 9 18 6 253 822 4 583 8 1331 42 1233 1232 42 2 1410 72 57 28 15 2 164 2 1410 282 51 54 26 3134 17 246 10 248 5 2 487 153 1335 110 42 128 7054 8 853 3566 12 4 717 3211 12 152 4423 49 9 12 17 27 276 8 39 149 10 1577 11 43 81 149 9 13 1923 1 121 3354 6 173 3566 6 728 28 4 1 210 583 171 180 117 3 1 1829 1349 196 509 3 213 55 2363 13 150 159 9 6003 29 2 2114 155 7 8 12 7475 3 15 50 2972 349 161 4184 1018 88 728 1369 16 27 405 5 64 143 17 8 636 48 1 72 165 7 3 8 152 969 9303 16 277 1410 1161 35 61 515 50 4184 179 6 12 509 3 1 277 82 374 303 2507 369 79 90 9 1410 1161 303 2 18 15 3159 4 633 11 130 187 23 31 312 4 75 91 9 705 145 619 9 12 117 4303 2 755 34 1 699\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 494 12 167 1 119 20 56 34 11 1685 660 1 631 1298 10 20 2325 6265 152 2325 761 29 1287 80 373 28 4 137 124 23 149 4607 5 1812 45 23 359 28 5196 19 1 884 890 45 23 88 99 10 16 24 332 58 82 1089 29 1 799 3 23 56 4062 283 1 103 109 300 420 354 10 5 1259 17 20 261 422 8 88 96 4 29 1 4457\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 4177 655 9 18 19 2240 3 12 400 9584 1 67 4 2 526 4 35 2062 1 184 9203 11 22 9638 9203 11 54 90 95 454 549 295 7 4431 6 2 28 11 999 5 26 2577 3 90 23 365 144 81 1017 62 486 3889 51 6 162 293 38 1 158 82 68 10 876 371 43 46 240 81 35 22 22 7 112 15 48 33 87 3 1572 126 9226 273 51 22 168 4 126 17 48 151 9 18 37 293 6 1 1098 204 22 2 658 4 559 35 22 37 7876 38 48 33 87 11 10 125 5 1 81 2034 350 111 77 9 18 468 175 5 139 142 3 825 5 14 530 156 4655 24 117 1180 5 1 2380 11 127 81 24 3 86 1 124 1514 5 90 199 230 10 11 151 9 2 84 135 64 110\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 338 401 10 1525 50 3208 961 640 547 129 1273 3 67 3875 10 6 167 696 5 298 7 11 1 569 81 1030 904 3 1728 5 820 65 5 2 6350 9 18 40 43 538 171 35 56 114 20 70 2 680 5 1555 34 4 62 8094 93 43 4 1 171 114 20 4190 1365 16 62 2237 12 2 53 288 164 7 25 1186 2569 294 8682 2501 22 1485 7 62 2237 8970 114 1 113 11 27 88 15 345 3531 10 6 254 5 830 122 14 2 262 30 4348 12 2 1223 60 384 11 102 413 190 24 71 1076 125 768 2958 75 63 81 2203 197 258 3129\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 222 4 2 9759 16 2 163 4 1 9687 2854 33 2292 5 328 5 787 9 142 14 43 232 4 601 1480 4 36 9 6 2854 2834 3498 189 25 148 1657 4 21 3981 109 10 190 26 2 17 86 28 4 137 1930 11 23 1236 4 2 4 3 22 2692 5 920 23 13 224 660 9 6 3981 48 63 23 87 15 1637 4 661 157 17 539 29 110 45 23 472 10 1067 23 54 139 23 5833 77 194 9014 194 1600 194 230 86 86 3 98 2783 10 7 95 5652 23 1333 404 4554 3 632 213 6465 17 10 6\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 179 10 12 28 4 1 113 3066 8 24 107 7 2 4222 519 8 343 14 193 8 54 39 175 275 5 6252 848 142 4 1 761 120 12 3711 10 12 132 2 109 248 18 11 23 61 749 49 37 3 37 6920 50 59 465 12 7 43 168 10 485 36 275 15 2 408 443 12 1673 10 3 10 12 7627 7175 4850 6 4709 29 225 7 50 1062 3 27 12 313 7 1 280 14 3328 609 108\n0\t12 2 1211 1 466 651 2897 765 6 2 1825 2255 1 121 7 80 2399 1665 703 51 6 28 41 102 547 2137 642 1 559 35 262 3 17 42 36 1 206 57 58 2481 19 75 5 216 41 333 25 1 59 177 527 68 1 121 12 1 1765 66 19 9034 1 846 8 2309 6 93 1 5051 239 129 36 33 22 16 2 709 347 13 92 790 397 1548 6 167 501 17 5 26 3314 15 2 21 9 91 42 806 5 6330 110 1 397 2217 6 167 501 292 1 276 36 95 2116 9637 1 1759 3 3624 22 2054 3 8 365 1 397 12 770 15 2 402 3550 42 39 49 1 120 41 33 328 3 4269 1 119 1 21 77 2 4 6960 13 858 180 1113 9 21 6 851 1319 42 36 1 219 2 163 4 1045 124 3 3554 34 1 546 27 338 77 2 3 310 65 15 476 50 59 449 6 11 27 314 82 3242 319 19 490 73 45 27 314 25 3011 244 2 900\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 24 5 920 260 142 1 5199 145 20 2 184 325 4 124 127 2569 80 4 949 22 3680 2145 17 9 628 36 3339 441 1 817 21 32 6 2 163 4 1434 1 102 466 120 61 436 2 222 105 1074 5 1 102 951 7 17 1286 9 21 6 17 1 344 4 1 21 52 68 89 65 16 110 1 847 485 1111 1 2106 193 12 5040 258 338 427 5278 8 1808 5586 532 19 44 11 8 511 564 1259 8 54 564 3 1 171 403 1 571 1 102 6386 61 34 403 31 1139 4866 48 2 3 36 307 2684 8 336 1 8 449 1 388 40 1 147\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 56 112 38 9 3540 386 124 12 1 4 833 361 258 7 15 9 21 40 43 327 361 1846 1972 3 1 1187 16 2 678 1262 17 1082 5 4891 15 1765 453 3 46 756 13 777 308 316 1515 756 3 46 2116 1913 1 1154 22 37 9253 47 11 33 202 230 3813 36 2 756 17 1 7641 6 53 37 72 173 4522 105 5915 13 150 56 54 112 5 64 9 206 90 2 331 2206 847 3 328 3 216 15 2 1840 35 153 5426 37 78 509\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 315 3942 5035 266 2 590 35 40 5 566 421 82 91 640 91 1519 3780 17 1 1076 168 61 3942 5035 6 1 700 376\n0\t1638 13 4970 6 1 2535 3564 603 5 1680 685 1 319 2052 16 31 2412 5 946 1 2430 2591 16 31 8998 103 315 5649 25 1576 6 603 1186 3504 6 1633 5018 444 7 112 15 1 670 3564 6 7 112 15 35 6 30 1 604 755 19 1 645 7742 2645 5 352 6481 1 4 13 252 424 30 1 3220 4 1 362 2 184 2426 1 748 22 7898 7 11 293 368 111 11 1012 15 34 1 1 8589 662 350 91 3 1 3564 759 22 202 1258 5 13 724 9 6 93 2 4 1 1 1003 604 1008 16 34 19 7167 31 1267 3 2 2759 391 4 61 127 7683 4 7942 2882 774 3933 1 54 26 7274 16 15 37 31 13 1153 4 791 77 1 15 1092 2 469 195 30 388 16 2 3170 42 2 1165 391 15 1515 759 3 38 1 2100 4 5131 84 6721 13 252 12 48 368 12 1472 47 102 172 183 3566 9684 2870 4 191 24 1 4418 4 43 35 3807 62 2023 5 1\n0\t2102 3 60 153 291 5 26 2 91 651 16 2 17 44 278 400 1419 2380 4 95 5250 3042 14 9604 6 55 2428 101 20 59 14 1065 14 17 93 111 105 161 3 20 55 588 577 14 2 2053 4 3 1 1472 126 371 151 1258 5 96 33 230 235 16 239 1885 369 818 101 1 250 2274 4 1 700 112 67 117 4993 1628 7 25 412 9935 266 36 45 27 12 9007 66 6 2 568 2082 11 270 295 1 5970 11 3189 58 129 101 2 950 41 2 1518 17 34 3965 423 9 6 37 11 72 83 241 1 4280 2502 94 25 14 16 5618 8 721 517 4 32 59 4657 999 5 87 1 129 4 1 5804 43 13 2595 1507 9 397 6 2161 5 90 199 15 1 647 73 1 120 83 15 239 82 3 100 107 5 241 62 221 2237 1 113 412 324 6 128 6170 688 5 26 5739 9 2982 28 213 670 14 91 14 36 690 2614 41 1 1004 421 3099 11 6 6919 3324\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 94 34 127 172 8 128 1064 9 251 1 2049 665 4 234 392 2795 718 21 6799 1 3679 15 1 97 9354 32 34 4179 274 9 1251 32 95 82 5603 10 54 26 84 5 64 2 2759 3945 186 19 9 3356 3 328 5 5273 1799 32 8945 183 33 22 34 9700 15 661 3141 5 5471 161 1131 3 679 4 1799 11 40 71 220 49 1 234 29 392 12 7712 31 6921 324 4 9 251 54 26 1 622 1354 40 89 43 514 289 1873 15 97 1637 4 4170 17 31 251 132 14 1 234 29 392 40 20 71 3505 3380 220 1 1766 45 23 22 942 7 9 1592 83 773 9 1199 10 6 3021 3817\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 143 56 36 9 18 11 78 29 513 10 247 56 211 3 7 43 4021 10 12 39 2724 2317 2452 6 373 28 8511 964 2852 3 136 25 121 12 514 7 490 10 39 384 36 2 148 351 16 122 5 376 1107 8 467 51 61 43 546 11 61 1976 3 595 2318 7 2 1257 232 4 111 17 207 38 110 1 59 177 11 152 997 50 838 285 9 212 8448 4 125 1 401 716 12 11 51 61 43 46 53 288 6563 1124 3 145 20 28 5 99 2 18 4580 73 4 11 17 7 9 524 10 12 1 59 106 55 1 4631 524 4 6709 88 26 34 7 34 10 12 2 342 2255 31 855 13 13 37 1096 8 143 105 78 319 19 2938 13 369 79 13 45 23 24 2 9189 356 4 623 98 144 1265\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 320 49 8 74 159 9 2179 8 12 56 1094 37 6550 11 36 15 2 163 4 82 124 11 8 24 1586 58 478 310 8274 6262 6 56 84 29 1814 7 9 628 8 192 619 11 27 114 20 1064 2 895 14 2 1730 9459 73 27 12 56 4817 115 13 614 23 9 12 829 774 1 182 4 895 14 2 23 88 56 348 27 57 73 27 57 433 4073 3 12 25 672 12 25 543 12 355 15 193 27 128 88 1622 10 1237 27 485 36 27 12 6840 29 1 717 4 9 12 73 27 12 2572 97 1681 183 25 184 28 11 1168 25 3163 26 27 128 1180 5 1622 10 142 7 25 226 115 13 614 23 83 438 1 233 11 6262 12 56 355 46 2861 29 9 1746 9 6 152 28 4 62 1340 8 118 11 8 143 438 1 233 11 6262 12 56 73 8 128 179 11 27 12 4407 115 13\n0\t2628 4 9 9098 3 25 9072 2738 5644 1 1706 3043 5644 22 1 9098 844 4912 38 1 948 4 5043 7 3861 3 9894 2278 341 20 1 82 3369 6333 32 1 3940 5 149 450 245 27 88 24 2722 1 948 5 2278 7 86 9865 19 326 6449 378 4 1472 1 3542 583 29 3693 16 31 5620 3768 3 7 1 769 27 311 649 2278 1 948 7 86 9865 8127 13 9608 1 1706 3043 1082 5 3882 1 4 4 73 27 6089 5 32 238 16 102 663 94 1 9931 4 1 3049 1 59 302 340 16 25 3113 5 238 6 11 27 451 5 25 13 92 562 54 24 71 78 138 57 10 71 3031 2665 19 1 5326 1 9931 3 3804 130 24 71 3546 15 2 2075 421 1 5 1 948 4 5043 220 5443 6 1012 52 68 308 14 9548 9 2631 54 24 57 97 7536 16 129 13 1601 7 399 1 562 12 2 1832 4186 7 1 1125 480 31 5236 3 1 1110 4 1542 14 1 672 4 5443\n1\t2765 5 10 34 310 1877 144 9 1336 57 2 388 41 305 1042 42 11 9 4 18 253 40 100 71 612 136 82 3160 40 5674 7 233 9 6 1 28 294 4654 21 11 1336 71 4303 7 233 8 617 107 10 19 1 249 463 220 1 326 8 219 110 3247 2999 12 1 425 1412 16 1 280 4 9 6 373 2 280 27 12 1711 5 3103 294 9668 1173 32 203 758 9 2067 11 420 112 1 249 5 309 702 10 6 109 1171 3 109 3193 14 237 14 1 1299 6970 47 80 4 700 2018 15 8 96 9 93 12 1 21 11 6979 1 15 2999 3 4654 66 89 126 139 19 5 90 2 604 4 84 104 32 147 3820 1 1689 184 1245 7 103 8993 3 1291 32 7397 275 40 165 5 1042 9 183 275 123 2 1015 41 62 221 324 4 25 727 66 8 230 54 20 59 1 800 17 93 2704 1 1449 11 9 28 7199 45 9 153 70 612 98 72 22 1927 26 7\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 812 9 108 10 6 2 4489 108 2077 129 6 301 44 278 6 1974 29 1293 1 857 6 301 2674 3 301 8 54 100 354 9 21 5 4315 10 6 28 4 1 210 104 8 24 117 57 1 6564 5 1861\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 190 24 2 6269 73 10 12 89 16 2534 17 10 6 28 4 1 113 104 180 575 1 21 3 86 171 1196 375 10 6 8761 3 10 76 23 1 67 4 2 1430 16 2 506 7 6325 30 81 35 22 1774 5 3693 62 5834 5 328 5 552 486 4 958 2100 54 26 2 1683 67 45 10 61 1724 361 17 42 8019 2 306 471 8 496 354 110\n1\t2 6593 4 1 382 471 1 1260 6 2324 29 1726 17 1581 45 317 133 2 5510 23 3195 51 16 1 2876 13 92 265 6 1 3064 4 9 141 3 31 5081 2009 4 10 6 4410 3 46 80 41 34 4 1 201 12 602 7 1 1039 324 4 1 5510 3 10 289 7 62 8 1064 9 2 1 453 22 34 7 2 52 541 4 121 687 4 78 972 581 3 33 22 46 2072 1 1675 6 1 635 372 603 329 384 5 26 5 176 1257 3 875 47 4 1 148 3293 13 3 1 22 1 148 460 4 9 108 2773 4321 93 123 2 885 329 9688 31 412 1761 14 1 5703 1037 55 1238 1275 19 2 53 9433 13 252 18 213 16 3622 81 35 812 4157 76 9322 194 14 76 137 35 186 4157 105 2556 125 1267 1733 41 4257 121 16 91 121 76 2704 8254 39 694 155 3 335 1 78 138 45 23 320 458 14 2 5510 42 2 1189 4742 6639 200 1 1158 20 2 8591\n0\t9389 37 49 8 1150 1 2388 8 12 3565 5 64 75 9 1260 960 906 1 18 143 55 209 542 5 1749 1 41 5641 1 120 11 37 6529 114 7 25 1533 1 206 181 5 96 11 307 133 1 18 40 284 1 1158 73 27 151 58 525 5 7019 144 1 120 634 3 230 1 111 33 1405 294 8453 1 250 1651 6 1 389 111 3171 3 924 123 95 121 318 1 714 72 100 56 149 47 48 27 123 16 2 41 144 25 112 1971 6 41 48 1 1105 6 3 144 1 250 129 8426 9 347 481 26 248 2028 7 18 921 197 2305 3585 3 2651 4 1 1105 2090 1 647 3 1 233 11 137 22 1156 6 1 700 4 9 135 1739 458 294 1977 12 2 464 1084 9391 288 38 1194 172 972 68 1 349 161 27 12 377 5 26 19 2 52 1061 5233 245 1 344 4 1 201 12 109 42 39 105 91 33 61 256 7 132 2 2069 2744 21 15 1 540 466 2099\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 112 1 97 4 1 2809 2239 14 22 46 17 132 81 87 3097 34 105 1 1103 4 2516 1655 3557 34 105 306 14 322 17 1 3098 120 1523 28 4 1 97 53 188 38 1 1270 14 530 43 188 100 8722 3 72 64 1 5892 161 154 51 6 2 4195 4027 7 154 2516 569 35 40 59 5 90 2 1969 637 5 90 188 3659 3 1 482 22 34 105 1923 32 1 3018 8817 297 422 88 46 109 780 7 1 661 8 936 96 191 24 71 7\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 24 107 43 167 91 484 3 9 6 260 65 939 58 119 5 1271 2787 42 36 28 4 137 91 767 19 2 8 39 405 5 11 103 282 3822 109 1572 39 867 444 148 5596 34 1 111 140 1 108 1 2837 599 200 1727 43 12 695 8 93 159 2 222 4 7 939 3 8 284 11 9 12 248 6934 3 41 2 2853 9423 37 42 58 560 11 10 143 90 78 1821 10 291 5 26 2 2451 16 51 1301 3 162 1129 1 5614 22 46 501 1 176 4 1 141 1 3 55 1 121 93 452 17 1 67 3 1 1083 4 194 39 662\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1541 4 1073 3596 238 3 3535 2 9 6 28 4 1 1318 81 5955 38 2360 2344 1913 45 317 288 16 146 400 1571 176 58 9541 1033 29 42\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 94 819 107 9 346 1904 3 3865 158 23 76 16 273 230 828 7158 5 3941 5 24 340 3241 5 9 346 2313 18 4174 11 1869 5 503 76 26 4546 14 2 18 4 349 6273 16 1 1 171 3 34 1917 2 1462 1663 8 54 1498 1 507 11 9 360 67 380 23 5 1 879 11 5043 24 340 437 37 45 819 36 1 2313 158 8 54 134 11 23 130 93 36 1 74 18 32 3941 8973\n0\t18 16 79 61 1 400 47 121 4 1 5282 129 29 1 3587 15 1 210 117 7 1 622 4 4690 1 164 39 200 288 36 2 5418 5295 7 2 91 9621 2268 3542 3 929 5 176 29 2 391 4 30 43 1 4026 22 80 3910 20 107 14 2 383 69 874 1525 443 15 2 69 426 4 3848 1 74 85 688 314 125 3 125 316 10 433 86 869 45 10 6 2 272 4 793 2859 10 907 1 4026 198 1243 47 4 7185 9890 16 43 13 92 21 12 274 7 9 928 1 2294 1101 274 256 43 598 604 19 2 342 4 706 2588 3 256 2 5479 783 19 257 8784 4107 3 11 12 38 110 58 82 525 5 90 10 176 36 1 2736 29 2616 13 49 1 3249 143 1682 11 120 33 61 51 132 2 61 58 1534 1323 19 17 61 195 19 1 37 62 2919 721 19 253 1767 82 68 458 174 900 351 4 1597 269 4 50 500 8 449 33 2162 137 24 58 7200\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 191 6001 5 20 246 284 1 215 3747 578 67 292 8 24 284 97 4 25 82 3018 180 93 107 80 4 1 817 2982 1075 1272 584 3 9 628 7 50 1520 8758 80 4 949 59 1 13 150 173 56 2818 2 793 32 2 3069 69 1 593 3 6 3454 14 6 1 505 2036 488 4 611 1 67 3 4480 8 1517 381 9 3 63 59 449 16 52 4 9 538 32 1 166 206 3 397 4894 8 365 11 1 2982 1439 5 90 43 52 1491 3237 370 19 3747 578 37 207 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 1272 1591 6 2 2055 5 137 35 1116 1 687 7657 10 234 392 102 77 1 119 17 20 14 78 14 8 3003 3114 10 3 1 120 22 2 979 3599 35 309 62 871 1002 530 372 1 280 4 5112 6 48 1 67 65 16 1 546 66 88 4 71 1012 14 509 41 13 92 67 4 1 2590 2276 6 152 3848 55 16 1124 326 5544 10 6 979 3 1 111 1 120 5707 15 239 6 885 5 65 1 948 66 6 1 1272 9775 6 676 2 5 34 1 82 1144 136 1 344 70 385 1002 530 27 6 198 7302 4 838 3 63 26 2484 14 101 17 11 6 30 137 35 87 20 1116 7657 25 1569 6 1438 3 5407 66 151 10 1316 5 4578 13 614 10 12 20 16 68 9 21 54 4 71 9580 7 1357 3805 3 1 1122 54 26 20 14 1535 7 50\n1\t16 1 454 35 270 474 4 1 285 137 681 3 35 12 288 5 390 2 4342 214 10 3090 688 1 4048 38 1 8289 7 9 334 285 1 5261 3 553 122 11 43 7 1 576 337 1184 3 2035 25 1499 55 183 33 165 1057 25 585 35 40 43 426 4 493 35 122 1 958 563 1 334 247 53 3 143 175 5 3192 308 33 730 7 1 188 544 260 17 740 2 783 1647 121 4965 3 29 9 1746 72 118 146 6 160 5 3659 17 83 118 49 3 782 188 780 132 14 1 1635 4 102 4070 624 648 5 3 275 35 3219 122 33 22 20 818 7 9 1888 406 926 783 544 5 64 82 81 3 1279 343 53 15 949 36 45 33 61 25 738 126 1 754 4319 649 11 27 191 564 25 231 73 33 22 7 1 9 783 337 16 1 8133 3 97 4 1 80 782 188 180 117 107 780 675 1 393 6 2577 3 1 902 76 875 942 3 2220 318 1 226\n0\t4 1838 3746 7 62 33 22 845 1 1800 7 9 4236 16 137 4 23 35 24 107 1 18 218 23 118 11 18 12 2 6961 16 4842 19 1 510 879 35 22 29 1 401 4 239 4 1 35 1 879 33 24 3363 3 3303 16 62 221 6212 3 137 3367 35 22 1525 7 2 469 2460 3 1633 101 4 62 157 1426 4735 137 97 81 35 5507 5 3 35 24 433 34 1514 5 9698 48 6 56 160 19 200 2350 13 659 364 2886 984 1 53 54 24 549 132 2837 14 137 2920 15 1 1957 47 4 569 15 3 17 7 2001 234 106 81 24 433 34 1412 7 62 4331 4 756 11 6 1463 5 949 72 24 58 111 5 3996 5275 4 1 1957 115 13 92 756 4129 2090 3 1 9443 19 9603 130 93 24 2 1020 404 16 9092 37 11 81 3 3096 1007 88 728 412 132 9525 3427 3 1798 931 8192 132 14 1463 30 1 1957 154 326 34 125 257 4087 32 730 3 62\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1206 12 229 1 59 3245 177 38 9 21 361 3 55 11 12 1832 1074 5 43 82 703 50 13 2044 503 9 6 1 210 232 4 21 361 28 11 8650 42 2 216 4 632 73 10 40 34 1 4 657 42 1325 17 1391 1419 1 1384 3 1560 4 1 941 200 66 1 21 1521 2330 6 2 42 9055 10 40 1794 42 361 6244 48 9 21 6 1265\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2343 2 509 2814 5 3350 10 34 1095 86 12 676 39 3826 65 25 136 60 713 5 32 1 15 44 4757 63 275 134 1 1292 247 105 573 17 10 12 775 6209 1 2134 3 43 4 1 2370 168 61 2068 3812 245 790 1 861 310 65 3752 1 67 88 24 71 1111 17 1 18 39 384 5 2739 778 51 6 59 37 78 4230 2 454 63 369 818 277 1909 719 4 592 13 92 113 185 4 1 212 18 12 1 788 3 11 12 59 681 269 2043 82 68 458 9 18 12 2 391 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 40 1305 1037 7946 1037 3 940 34 1413 2142 4035 266 1305 1037 3 1922 1777 266 1215 3 1539 266 1 91 259 35 8068 4333 5 1 4694 3 23 63 924 3082 550 9 12 1 74 85 7604 3941 9263 3 2142 4035 1066 371 3 1 398 18 1 89 12 676 1 166 17 274 7 2 264 290 9 18 418 47 15 8267 3 10 93 1819 15 31 1297 2251 1215 6 7 112 15 1305 1037 3 7946 1037 40 1866 1136 3 195 451 5 875 2613 9 18 93 1819 15 226 820 3 6 237 32 9432 2142 4035 6 53 14 692 3 8 531 83 36 1922 1777 17 8 338 44 675\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 619 11 261 602 15 1 397 4 9 251 54 152 920 1 263 6 37 2346 10 191 24 71 428 30 275 35 1200 1 9930 16 1 2134 267 5479 341 207 667 70 47 116 45 23 17 236 162 7406 2 1399 7 191 24 71 1289 3437 5 411 15 9 5663 1 344 4 1 201 22 37 2130 7 95 232 4 121 41 1411 1514 145 2275 10 3890 576 1 74 431 69 576 1 34 8 63 134 5 137 35 22 6940 30 10 6 11 33 191 26 46 728 6539 3 42 631 11 1 397 6240 191 24 71 34 4 3579 2351 3 39 7 524 261 1304 145 5581 14 2 35 6 8161 15 706 5946 8 191 734 11 8 192 1314 7566\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 86 254 5 90 2177 41 4 9 135 1013 317 109 3 7 1 1646 5 83 793 2327 10 3 7 2 80 699 10 407 6 20 16 2778\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 58 445 124 63 26 1317 53 1104 9 618 6 20 28 4 2350 13 174 3360 1 121 6 571 16 1752 35 289 43 1 443 693 686 3 58 52 1 443 3 10 39 153 916 1 293 363 22 236 2 465 49 1 1380 63 26 7 148 290 45 317 160 5 2555 142 31 786 83 369 199 64 1 5886 148 5127 1 5099 1 1769 6 2518 3 509 14 561 82 3 1 265 6 2 2146 189 772 1665 3 56 91 6354 3424 2853 4426 1 1769 13 8 798 1 551 4 95 148 640 41 129 3688 1 13 6 9 259 1104 786 180 107 43 4 25 82 801 8 76 20 3 33 22 39 14 565 2 76 2323 3 825 32 25 817 3117 1104 20 9 2678 42 28 177 5 26 31 2399 17 261 63 26 2 13 20 55 2 4616 21 1104 4 611 19 4616 54 26 364 1370 68 9 13 1 210 117 1383 7 2 4006\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 822 4 1 1058 3 169 53 1982 1 2950 3 1 195 6 1 85 5 2698 2 4790 2963 5 11 2082 7 1 157 4 101 2 568 325 220 1 74 8559 30 1542 4713 910 172 1742 8 24 71 446 5 1942 264 7 1 919 534 41 9 28 6 39 20 4233 2521 105 97 1456 345 3 37 156 9606 48 6 84 38 1982 6 1 4 25 2576 3 1637 4 25 2328 2521 9051 966 1 1982 289 122 59 7 25 6653 2569 3 30 1 744 75 209 1 6 2262 4 132 49 4700 7 1 1276 5893 4 25 1785 3 176 29 1 2 4060 4 7 1170 4886 358 3 2 2984 996 48 1982 325 88 1942 132 2 1785 20 79 2799 1982 6 78 138 197 7948 7 1044 4 25\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 9 18 30 39 73 8 12 160 140 2 106 8 57 2 147 214 16 1037 3 405 5 64 34 4 25 1058 104 3 1479 851 8 9 18 40 1544 15 79 117 220 3 2469 28 4 50 1 67 2480 200 102 624 35 19 2 1005 1486 7 2 2118 913 106 4541 825 1 306 1468 4 13 3 61 39 242 5 1017 2 3533 371 183 160 5 1185 17 62 1285 1168 65 2 78 52 2985 471 1 1593 33 139 140 14 33 22 4611 7 3 726 6023 6 46 866 3 1 121 6 3982 1 1512 1 1077 6 885 3 37 260 16 1 18 3 1 859 373 8 152 173 55 149 1 260 911 5 1431 75 9 18 151 79 230 154 85 8 99 110 8 118 43 81 617 3281 14 78 14 79 30 1 1020 1 18 40 17 8 9 628 23 24 5 8 2988 10 76 1382 15 5439\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 928 5 26 2 267 17 1281 91 6724 3 162 2363 4065 2 2618 7 1 135 1 18 6 38 2 342 242 16 2 3338 3 137 81 7 148 157 35 22 7 11 1261 76 29 1 6851 11 22 16 5540 168 29 2 22 20 7 1 225 211 3 22 169 3478 1 976 466 35 266 2 5490 7135 3 7 25 254 3341 255 577 14 2 345 1335 16 2 32 2370 1098 1 633 466 6 242 5 176 910 172 1186 68 60 705 205 951 209 577 14 3 301 9823 51 22 943 903 3 400 2270 168 7 1 158 16 665 15 2 445 66 6 3816 4 95 2466 1 59 302 8 187 9 8542 378 4 7224 6 28 1183 16 4970 35 6 2 2 897 845 235 422 7 1 3 28 1183 16 43 350 1948\n0\t0 0 1 6 39 28 4 97 1058 1669 1028 104 5 26 94 116 8403 359 116 3188 3 987 39 134 11 53 161 472 28 16 1 968 19 9 461 497 48 1 2392 9370 1713 605 2287 9 85 1024 16 1 3032 4 5056 9 21 270 334 7 5797 3 5 26 1784 145 20 273 180 117 107 2 1028 739 370 7 7143 2 249 8660 8246 30 1 6 1521 2202 65 37 11 95 4307 8063 495 96 11 236 95 465 7 1 1561 11 424 137 11 100 176 41 139 2799 8 76 134 193 11 2 156 4 1 6568 4337 30 9 2276 61 229 1 80 1474 185 4 9 135 51 6 152 595 4 2 67 5 9 17 145 20 15 11 73 94 2 136 468 463 20 474 41 24 2910 29 95 9749 9 40 877 4 464 121 5 1337 19 401 142 34 1 10 34 691 11 196 47 183 1 2904 1961 503 23 63 149 877 4 82 188 5 87 15 116 85 68 99 476 535 47 4 5579\n1\t46 254 18 5 5345 791 2 164 270 2 329 14 2 41 7 31 6346 37 27 63 26 774 25 1725 3 300 5 2464 768 17 444 674 19 1 15 2 4050 78 4 1 85 3 5448 3 5034 428 19 44 543 1 344 4 1 290 1 8771 5 44 272 4 793 6743 3 72 64 4712 1512 4 44 29 1 601 4 2 8953 2 9383 41 29 2 9320 3049 444 8963 30 2730 49 1 272 4 793 5 44 41 82 1341 8639 1 1951 1123 3 132 2789 781 199 48 1341 81 64 3 98 75 33 3 1 334 6 15 1341 8639 3 7 28 524 1206 366 3 1393 29 28 272 1 164 440 5 186 25 379 17 1 366 1137 1 1945 44 3 60 1225 155 5 44 4723 1 164 77 2 2232 7 66 244 8043 7 174 525 5 2303 44 2408 3 27 1141 1 1207 3 97 3 34 1 136 1 1341 5350 539 3 49 27 5601 27 6 3 1 8509 43 1447 802 4 727 6292 7 1\n0\t3 1244 164 35 4 448 57 25 534 58 894 38 656 17 144 7 442 2074 122 7 9 34 4 25 1061 1637 24 71 757 47 4 1 1204 162 17 2 46 3306 4 2 164 35 57 1 1003 2728 19 661 7532 1218 657 27 3554 3512 77 1 8972 4339 234 2251 657 27 12 3 1661 27 12 29 268 258 29 1 182 4 1 2251 34 3040 17 144 1 898 114 33 908 4004 5 1 5 2979 13 150 332 83 96 9 18 12 2 1 306 3477 4 2697 3 1 12 1 233 33 61 446 5 2264 5 869 29 529 4 4969 5039 1 233 9 510 12 37 6798 286 37 30 202 154 1091 2191 1491 5 798 3 2 163 4 82 151 10 2 3199 5 661 20 1 233 2697 12 132 2 45 10 54 24 71 36 1 1350 90 199 241 69 8 54 24 71 2173 11 1 1091 81 61 2 164 36 1 28 7 9 18 54 24 100 1866 2882 774 1433 3043 69 20 5 798 115 13\n1\t0 0 0 0 0 0 0 0 281 18 6 31 1477 5163 539 9722 34 1 692 4534 4 2 267 69 6261 2641 600 607 120 600 7959 16 600 1858 2669 600 600 1077 5569 6328 3 2 103 6079 4 238 409 115 13 9265 3 205 22 7 1839 871 4 3 409 1 2594 4 5968 1 1277 6 3 6 2738 1 1277 409 22 3170 5398 14 692 409 1 24 58 409 2995 25 634 7 890 3211 262 2 696 1862 7 409 3372 7 2 1516 280 409 27 123 2 19 25 754 634 7 6047 13 6 14 692 69 14 2 600 7632 3 14 2 409 27 541 4 8709 1874 15 892 2439 409 5968 9265 600 241 10 41 20 600 7 3770 15 122 409 17 128 6 514 409 123 2 2691 14 992 7 1 788 409 60 5866 36 3235 409 115 13 265 6 1477 409 841 47 600 3 1 462 1584 6047 13 4098 20 139 288 16 95 2947 220 10 6 2 267 3 1 1106 6 4 301 409 39 335 725\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 83 320 49 8 74 455 38 9 141 17 8 1150 10 38 1721 172 1742 3 10 128 1373 28 4 50 430 8221 8 76 4043 23 229 76 9322 9 18 45 23 118 162 38 4581 1948 17 45 23 22 2 4581 1787 55 2 7703 628 23 76 112 1 1208 716 3 28 4 1 113 456 7 1 18 6 38 1 1820 189 2 3 2 8 128 333 9 427 1163 3 70 679 4 1308 15 110 28 4 1 113 453 255 32 3147 9040 35 262 5711 7 4 1 10 6 2557 11 9 18 76 1458 100 70 2 305 4228\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 74 159 9 18 49 8 12 38 394 172 3176 50 1916 969 10 29 257 558 73 10 12 19 9863 16 19 60 179 11 10 54 26 2 327 1075 18 16 79 3 50 1338 5 836 9 141 245 1728 1 898 47 4 437 23 190 26 2227 6115 75 88 2 18 38 2327 2545 1 119 4 1 18 2480 200 6797 5994 28 25 5 990 7 31 525 5 564 2327 3 2704 8373 207 2401 6797 3426 2 3761 65 32 898 5 564 2327 5290 2327 533 1075 4999 7 31 525 5 5072 122 19 990 49 1 3958 7512 19 1075 1344 16 45 2327 153 90 10 155 5 25 408 7 5477 27 498 5 83 70 79 1989 1 18 6 211 3 1002 2571 245 1 1854 4 3553 3 1206 7 1 8774 4 898 801 5193 29 1 477 4 1 3750 6 39 2724 8220\n0\t2 184 325 4 1 562 11 8 339 50 12 11 45 1 18 57 2 119 11 37 78 14 1 10 54 26 4010 115 13 137 61 1597 269 801 384 36 4 50 157 11 646 100 70 1877 45 8 57 11 4343 8 54 24 1019 126 50 3438 9 213 55 7 1 5560 91 42 6683 23 54 96 55 1850 57 2 222 52 356 68 9 944 145 20 7446 38 44 245 45 1 1734 4 1472 9 2646 7 2 993 280 6 5 24 2 447 1146 69 66 8 400 365 3 1594 145 2 69 180 107 52 4 44 823 19 4107 13 677 6 58 119 5 1271 2562 495 351 116 85 10 5 1038 1 4102 4 1 67 2255 7886 114 20 24 447 15 1631 1 121 6 17 2 156 845 2768 30 1 744 101 28 4 1 210 104 180 1586 8 54 354 125 9 2396 13 8 354 1 388 3118 10 40 237 138 441 121 3 78 52 14 16 1 141 2176 2 2636 69 10 947 16 1 4717\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 336 1 1766 10 12 609 3 198 76 1142 3713 1024 8 152 485 890 5 283 1 145 531 2 103 222 421 73 236 237 105 97 4 949 17 936 9 3565 437 8 12 56 2926 10 5 905 1566 4018 3435 14 3708 3 9160 1800 5 998 6 221 398 5 550 10 12 169 1269 75 10 12 3 10 12 48 3671 9 32 101 56 53 6 1 226 1756 1452 10 271 301 295 32 1 1571 37 237 7 233 11 6 5 26 1269 3 39 196 3182 1 182 7 1 215 12 37 78 1560 12 2336 65 3 10 12 3625 2782 10 3567 20 7 1560 17 7 6002 14 10 384 33 636 5 90 129 2 10 12 45 33 61 242 237 5 254 5 26 3026 3 3789 2456 6950 9 21 6 279 1 99 311 16 1 2137 17 137 226 1756 269 56 87 2739 10 1781 48 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 63 59 241 11 191 24 71 102 1098 1 28 35 1059 1 609 1427 1839 6285 3 1 211 3 132 313 8228 14 3 3 15 25 379 5063 3466 3 98 1 28 35 1059 2633 470 132 747 6003 14 232 4 2 3 476 1 201 17 1 263 6 37 1455 3 3847 11 55 1 3117 4 1 198 360 4977 22 1 263 5 42 7 1 323 2973 980 7 66 129 129 5 90 273 244 20 31 1906 4393 17 1547 28 66 88 728 309 7 2 21 1938 716 22 195 400 17 716 22 128 231\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1018 27 12 93 2 12 28 4 1 206 4 34 1 1162 9 18 3686 1 215 462 4 23 17 348 1 509 67 4 2 1807 421 1 506 395 9419 3466 2 34 6 345 3 1184 7 9 829 77 1 4512 7029 4 1 67 6 91 3 1184 29 1 166 290 12 20 446 3 29 1 166 290 77 1 67 653 43 232 4 1184 7033 188 1920 1 4784 77 1 429 3 1 1635 4 7049 6155 657 56 7049 6 1012 36 31 2271 640 91 121 3 2 1635 30 28 4 1 80 9794 7 1 67 4 1101 5165 4 1661 6 84 3 2007 17 145 273 27 12 7 10 59 16 319 31 16 372 15 6175 358 4 394 773\n1\t5 216 1566 10 6 1227 1050 11 4 34 1 124 33 89 14 607 171 371 3798 14 1721 4 2 232 3 1181 20 690 3 114 62 113 1594 15 1802 1 299 429 4393 66 1680 1 788 3843 6 4092 14 6 31 1188 980 106 1 277 87 2 941 2948 5124 2178 32 17 3102 7033 2947 6 314 30 7 168 15 4426 75 60 999 5 7744 122 77 685 44 52 319 68 44 720 1071 5 26 69 59 2913 629 5 1682 3 276 29 14 193 244 463 439 41 44 927 15 886 585 1 598 1301 122 5 830 11 27 76 2459 1159 17 667 5 14 60 3269 142 15 690 5 70 1136 6 360 4095 13 92 21 1521 1200 29 1 1009 1400 73 4 1 551 4 4110 4300 7 194 3 1 7335 4 1990 7440 6 20 403 2 1884 329 7 1 1538 17 1 4594 6 56 69 27 143 90 1 129 46 1470 17 1 21 63 820 197 458 340 1 82 4113 3 62 647 1224 3 3102 356 4\n0\t39 3605 1941 395 74 564 19 1 873 282 12 892 3 3351 469 12 39 10 39 34 125 1 334 15 1580 1560 3 3423 400 866 295 32 1 215 67 3 98 160 155 5 10 7 1 3177 66 30 11 272 39 811 19 5 1378 10 65 55 1129 58 61 340 7353 8 467 8 563 48 12 2267 59 14 420 284 1 67 17 16 81 35 1808 42 55 52 1693 14 29 268 55 8 143 118 106 10 12 160 3 48 10 12 242 5 10 12 160 19 31 2896 1 212 1425 13 8 56 405 5 36 9 21 14 145 2 568 325 4 216 3 336 1 67 14 10 40 9898 1187 16 2 8975 141 898 8 55 381 43 4 104 14 299 17 9 21 39 4 3 8726 32 357 5 8 143 474 38 261 41 3128 1 212 177 12 4847 3 5733 757 224 32 1 697 1573 10 77 146 422 5080 10 12 2637 3 2376 262 2 1016 17 297 422 12 34 125 1 2416 52 68 4652\n0\t4523 1749 120 72 228 474 2354 41 2000 1216 69 1 206 5 905 2037 23 1184 15 1537 1423 4610 1 466 120 22 37 3 22 37 955 1171 69 1 410 153 474 48 629 5 949 1770 171 87 1770 9 5 90 3291 2428 1 4 2 206 242 5 946 25 5 576 22 463 1169 1881 41 9823 1 1077 6 1 59 177 11 7037 79 3 721 79 7 1 616 17 55 11 1200 5 1594 1 1005 1567 82 2 1165 4 85 5 1 13 1701 43 302 1 18 165 3944 3965 3 5 26 169 1784 3182 8 128 219 1 212 1589 13 150 497 8 338 1 525 29 3022 2694 7 1 21 17 55 11 12 2945 49 33 61 396 15 1021 3 519 1445 1192 23 83 321 2 568 445 5 90 323 866 158 37 78 40 71 367 38 75 103 319 33 57 5 90 9 158 350 2 1519 6 20 2 103 222 4 58 519 8 560 48 1 62 7194 61 13 19 9 3960 1013 317 41 3670 50 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 76 187 10 2 535 39 73 10 1049 622 11 72 321 5 118 2354 5 4012 10 32 2267 702 8 1023 15 1 708 32 1 7749 32 1 18 12 167 1634 34 9309 58 148 994 1267 3 1813 176 65 1 1813 19 763 41 95 897 3 23 76 64 48 8 9605 8 195 86 315 622 4403 7 1 3119 3 4925 160 5 26 404 2 3261 39 16 667 490 17 1 622 4 9 2468 6 20 11 1051 33 114 43 1093 4106 2 11 590 47 5 26 2 11 33 3134 17 315 81 114 2 163 52 7 4170 98 9 810 18 380 126 1365 1987 9 18 151 126 176 36 369 1 442 3039 8 63 3258 2420\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 12 59 49 8 159 11 8 2299 283 39 304 7641 3 286 100 5 101 51 6 43 1442 861 3 1 466 282 6 169 3711 10 2291 52 68 1 6236 4 1 290 10 40 2 148 683 5 110 10 6 1 7457 4 2113 11 6 5898 3 7191 2 641 67 6 198 1535 49 248 530 9 40 2 184 958 3 8 16 628 192 288 47 16 25 398 5603 1 917 65 6 198 1 80 1606 42 36 1 330 6746 6587 16 80 1098 115 13 150 39 449 25 398 21 6 20 146 1054 36 2 4615 135 5 513 335 116 1913\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 462 4 9 21 670 256 79 142 133 110 20 101 2 2269 1787 1 3170 798 4 12 2 222 142 618 8 256 50 516 79 3 145 1096 8 7937 13 150 247 852 78 4 2 158 17 8 12 3202 5658 1 21 385 15 79 100 288 29 50 99 3 8 381 154 330 4 1 135 45 23 338 3278 6 3278 98 468 112 9 135 1233 37 1 857 6 162 5255 3 1 382 22 4223 740 1 21 17 42 34 248 46 3 15 2 4039 4 1684 5638 1 21 1047 46 884 3 863 1 6539 1 211 529 22 2 53 9235 3 20 43 345 525 29 5946 3 113 4 34 42 2 53 598 1211\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 37 48 8 404 2 573 91 8061 345 505 345 3387 464 8 39 582 1094 29 43 1025 73 1 67 6 351 116 85 133 9 8061 322 8 191 3082 10 40 28 41 102 53 1154 17 8158 955\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 191 867 8 12 619 15 1 538 4 1 108 10 12 237 138 68 8 5207 3349 3 121 6 169 452 1 206 89 2 53 329 14 530 292 43 168 176 2 222 10 6 2 547 18 9181 1 312 12 373 609 3 1 1387 114 20 3673 554 2268 1 46 714 1 1741 2430 1190 12 340 169 452 1 119 12 5424 3 109 5425 43 81 190 149 10 2 222 509 193 220 1 67 427 6 46 2665 3 33 186 62 85 16 129 3 67 5064 1700 4 1 441 10 6 2 547 18 16 86 870 3 10 6 452\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 121 12 2355 14 28 54 7093 3 1 861 169 1528 55 49 372 2829 77 43 5172 688 1 344 4 1 21 12 3 254 5 1775 16 79 2799 8 713 5 36 194 17 57 5 140 1 226 4465 269 41 1943 8 230 8 1130 2 342 4 53 3768 57 10 20 71 16 7309 8 511 24 3890 3334 1452\n1\t0 0 0 0 0 0 0 180 107 9 18 16 29 225 843 268 195 3 8 128 83 70 1120 133 592 13 92 2946 22 37 53 3 371 15 1 265 66 6 400 1477 3 425 3811 9 18 6 5 2522 13 92 22 169 91 17 1 212 2946 15 1 315 3 482 507 38 10 3 1 400 61 39 2 1744 425 2053 16 132 2 108 1 212 507 38 1 507 6 1 119 6 37 3629 13 5372 1 18 57 103 6975 36 8640 519 8 179 1 18 12 2 222 105 17 8 83 467 1 546 30 458 8 400 336 13 4804 8 165 6913 46 396 30 1 400 1618 441 36 49 27 6 7 1 2790 177 4 106 34 62 6 3 40 9 3749 15 1 259 224 17 11 190 93 39 26 79 3 1 182 88 24 71 5148 936 52 33 130 24 89 1 2 222 1534 3 17 98 316 197 34 127 2387 1 18 54 24 71 37 53 8 54 24 100 2165 133 10 316 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 1442 49 2 211 18 153 90 2618 1038 48 2 9 21 6 46 509 3 37 2043 42 311 1 67 6 197 4825 3 58 6141 13 2136 230 138 49 42\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 967 6 2 900 7179 4 1 74 135 2 301 1445 108 10 676 39 472 154 625 4 1 74 21 3 33 10 7 7723 571 15 2 633 9 290 10 55 741 1 166 111 14 1 74 4941 1 265 6 105 3297 3 3 73 86 167 78 2 973 4 7723 4780 42 483 2775 42 20 2 586 141 42 20 1722 1716 51 6 78 527 104 47 1057 9 39 57 332 58 272 7 101 1001 1 7723 1015 32 6012 6 78 2428 55 52 1445 68 490 37 8 497 10 40 656 45 23 275 3184 2 1653 5 116 522 3 23 57 5 2497 5 99 9 967 41 1 6012 8 497 420 2497 476\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 742 6 28 4 50 430 1488 27 531 380 1195 2137 132 14 7 1 826 441 3 1 4005 27 93 123 1002 109 737 17 1 344 4 1 21 2440 32 2 402 2039 345 2511 3 8773 1 2441 380 10 2 5841 742 196 2 6148\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 109 9 39 300 1 210 18 117 29 225 1 210 18 8 24 117 575 33 24 713 47 127 583 4 6797 1 5155 1609 104 38 268 3 630 4 126 6 53 3 9 39 300 1 210 4 450 33 96 11 42 160 5 26 138 18 14 52 33 333 11 1429 5099 9 18 153 24 95 312 7 194 171 3 1673 6 39 1634 2004 55 90 47 11 394 427 4 9 108 56 162 5 348 38 17 11 42 39 2444 75 33 63 90 104 36 11 7 62 260 438 39 173 365 656 9 2004 26 2 368 141 6 1947 39 83 139 99 9 333 116 319 52\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 1360 27 271 94 2 1358 1944 30 1531 1797 2 84 1518 69 64 17 204 27 6 674 3 73 4 11 27 1419 25 692 27 271 5 1 1678 4 2498 3 2080 16 43 4152 65 43 1046 196 1 271 5 52 7714 2080 16 52 4152 65 52 1046 966 1 212 18 6 4134 94 4134 94 10 181 11 1 81 35 89 10 57 58 82 8854 68 5 932 1 710 5610 4 35 12 2297 737 123 3471 43 53 4873 29 1 1251 32 6 2 5517 7102 2513 3 5684 1277 108\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8349 283 9 141 8 2893 367 11 8 336 297 8119 9038 40 1613 195 42 578 1692 6 25 919 25 1014 275 7007 553 122 11 6 20 15 779 779 16 6730 1 59 1362 865 6 1531 35 213 2 627 227 353 5 1720 9 2908 45 23 335 1 4087 468 335 1 7754 207 1 113 8 63 187 592 13 1964 2 686 325 4 205 1532 3 3445 581 17 9 6 311\n0\t172 1742 369 818 7 6012 54 26 1475 30 62 6 660 503 17 10 114 109 7 65 1 803 13 1181 20 169 248 5142 94 307 40 3154 543 1334 15 914 2922 53 259 15 7660 315 259 15 7660 482 1753 3 1 1053 342 7 2 683 6315 4 42 85 16 53 259 3 950 5 70 10 10 247 29 34 7277 1 4249 61 39 51 5 4735 50 1963 2421 29 283 1 1079 8322 657 1 570 383 4 1 21 6 2 5511 1285 5 3642 1 859 11 2 222 4 976 40 3 2 680 16 95 9736 11 152 381 1 18 5 2 156 1287 207 110 9 6 1 74 85 180 117 5189 2 18 5551 17 8 343 37 2474 11 1956 191 1271 47 421 9 4 5785 45 23 36 8276 1276 91 3675 3311 7 41 706 1046 98 3402 786 83 64 9 108 10 76 116 1062 4 34 4 1 845 37 237 11 468 100 175 5 209 77 4208 15 95 4 126 117 702 139 64 2269 3438 11 12 452\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 105 12 3565 30 1 298 1020 16 9 158 3 12 46 1558 8 57 39 107 2 342 4 53 2118 124 3 12 288 890 5 253 10 277 7 2 17 10 12 20 5 1142 8 337 15 2 2294 1874 493 35 343 1 166 699 51 6 20 78 4 2 640 45 8 83 3237 321 11 7 2 141 17 10 693 5 936 3162 41 652 79 1107 1 113 8 88 134 54 26 11 10 5 26 31 158 5087 15 31 483 346 1432 51 22 2103 17 2 156 529 728 70 47 30 673 269 4 2798 8 87 20 365 1 298 1020 16 9 135 8 187 10 2 13 1149\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3089 284 2 156 1402 38 9881 3 3 9 6 373 52 2186 68 1 2614 7 11 86 1759 3 697 7939 556 4 1 591 109 248 6 1 469 4 4027 3 1 1708 4 25 379 9 651 276 276 610 36 1 7939 556 11 326 4 125 44 2057 6818 245 9 18 6 128 3727 3 257 875 167 5 1 769 55 94 101 383 331 4 1931 1240 727 9881 12 955 4518 7 31 2561 1 349 183 62 754 3 114 20 176 36 2 29 1 85 4 44 1 263 6 9115 3 1 121 6 3652 591 1 7672 46 4652 1382 15 5696 3 190 20 26 218 306 17 42 2 84 4006\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 362 324 4 1 901 1060 1465 4 12 89 7 3512 7 993 776 1018 12 93 7 1060 2 156 172 7 9 21 27 266 2 280 1502 16 2 349 161 21 5 64 126 7 1 166 94 2659 2 1355 161 164 35 151 2 15 122 16 2660 69 1 2660 27 693 5 6331 2 244 2941 2052 32 13 29 2 884 1428 395 21 1225 39 125 31 3 1002 109 428 3 1060 1465 4 40 4 1 2247 14 109 14 4849 3 1803 1790 14 10 123 15 2 15 2 1355 842 4 1187 4670 3 5641 77 53 3 510 4251 4 1 166 3792\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4925 1133 8 112 1 21 2733 3 8 112 133 5737 1990 6006 19 1 14 8 96 60 6 4835 8 192 2 148 325 4 6924 1 1410 1897 1221 37 9 1553 50 99 10 5900 8 112 1 111 11 5921 2827 47 44 1007 701 46 14 60 151 273 11 275 422 2734 1 3 19 1 37 60 4108 187 295 44 954 46 109 7412 47 155 8 497 10 34 19 5921 14 60 165 997 14 44 161 1845 255 385 3 1275 2 1503 443 457 25 8 187 9 21 2 3555 47 4 3 256 10 7 50 401 394 124 5929 3 226 17 20 225 45 261 9 21 7 1 786 348 79 14 8 107 10 19 249 3 143 2096 110\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 373 31 3271 16 1 1571 571 11 19 1 303 6 195 1433 19 1 36 1 1571 9 18 421 2 9632 1655 66 86 15 7528 5 923 10 6 2 3199 4 75 257 1105 9702 22 7 31 1592 4 31 3 9632 2601 14 2 6961 16 3 5420 106 1 199 15 1 4 1 2542 3554 200 911 36 3 4779 14 109 14 1358 5 1 80 4 9030 8063 15 1 1774 4 1 940 11 859 6 37 8 192 5418 11 9 21 88 26 89 69 29 225 20 197 2472 1 9632 1655 3034 1 224 19 1 1350 36 33 114 5 1 1214 3 3330 508 35 5 1271 689 1126 41 6 1 19 1856 3341 14 27 2335 2148 218 3 11 4987 65 1 2244 5213 859 4 9 803 13 3382\n1\t83 169 365 1 212 21 69 48 123 24 5 87 15 194 16 69 8 128 24 31 790 1061 1418 4 592 13 150 112 1 4112 493 1012 30 6351 16 5821 3429 75 97 268 24 8 9867 16 246 439 417 36 11 378 4 58 417 29 7238 8 112 1 18 856 178 69 1 1340 7955 799 7 1 622 4 158 420 3051 3 2010 87 8 112 69 444 37 7 9 141 42 202 4178 3 60 380 2 84 1835 14 13 6 2 53 1651 8 83 1023 15 1 2579 6399 89 38 25 278 675 25 129 6 377 5 26 7572 3 37 25 7572 278 4780 16 628 214 122 1080 3098 69 193 27 114 1621 79 2 222 49 27 544 2147 7 2739 16 58 674 13 4375 1 1324 3 7533 17 10 2291 1 3016 4 2138 536 69 146 180 248 1135 105 78 4 69 37 8 4062 110 42 211 75 34 23 321 6 2 1205 3487 1746 3 1283 2 18 36 9 432 1768 373 279 4025 65 16 720 19\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 214 1 21 169 600 1 111 1 250 129 12 433 17 29 1 166 78 52 935 38 732 188 7 157 68 81 35 122 1394 25 16 665 2930 6047 13 4052 12 4872 3 23 336 5 99 122 101 4872 579 10 57 9 601 66 12 4140 17 72 61 34 749 5 64 122 209 47 4 1 6353 316 6047 13 499 12 36 2 562 129 41 140 2 41 5 4334 3 72 112 5 99 122 457 6989 1643 41 1473 17 98 29 1 182 72 22 749 5 64 122 2711 1104 115 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 738 50 430 2118 581 43 4 1 508 22 3 50 157 14 2 5885 1 5390 15 137 104 14 15 37 97 84 2118 581 6 11 10 270 2 5410 5527 4 157 3 8570 10 77 2 3537 7574 115 13 659 6713 2 164 35 6 1120 15 25 5410 157 3 1 4 25 1136 727 1148 2 304 873 287 5088 47 1 3406 4 2 941 7 1 4653 11 10 270 25 1591 5 27 6 30 768 17 6 10 59 30 44 5984 30 44 41 2 2771 11 33 76 205 2033 11 33 115 13 72 941 40 1201 360 120 35 24 5 934 15 1370 7620 30 126 140 1 234 4 2828 2094 3 2514 4 873 4212 33 3693 34 16 5526 3 149 11 2421 6 20 105 237 1695 10 6 28 4 137 104 11 6 37 2548 3 4673 488 7 2105 1 5410 30 781 1 306 1449 3 6871 11 157 63 1142\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 9 18 1 349 276 78 36 1 9 6 1474 29 1239 17 521 1 545 75 46 264 11 4975 234 6 480 1 75 97 188 11 72 186 16 5080 88 390 13 396 8314 7 2 8332 744 15 58 41 41 8184 8 241 9 6 20 91 1014 94 399 35 4899 1 1055 1714 7 1 4929 3 2847 190 109 2309 11 30 31 6705 5077 36 3230 13 150 143 36 80 4 1 238 1025 1251 1 469 4 1 105 772 55 16 1 1 119 213 105 17 1 84 168 3 1154 69 36 1 469 4 1 111 3 434 3274 22 3691 2159 1 69 1 4 9 803 13 47 4 5579\n0\t720 140 2040 72 191 359 19 4636 243 68 187 65 13 3204 23 24 124 36 3 66 311 5975 23 5 4443 10 34 1781 2963 10 34 960 297 6 2 37 23 228 14 109 139 47 2962 127 124 22 47 4 9750 243 68 95 426 4 1205 8588 13 3204 23 24 1 243 68 6683 3 22 1 6000 4 9 1818 124 36 218 3 131 423 5807 599 32 5029 33 87 20 36 3 9205 41 6958 16 2449 205 971 22 7 11 40 25 9205 2945 3 40 25 9205 4676 58 356 4 5526 41 13 3204 23 24 1 2638 6683 124 36 218 486 4 16 3 1427 2055 3249 14 2 1426 4 720 3 7 127 7 66 307 6 1933 5 26 2 5705 5 1 8273 10 6 1 6250 3 3035 4 76 4 1 35 863 1 2090 7 6462 30 311 1137 4 1 23 932 116 4168 2628 3 3014 6551 6548 1 3734 14 4924 21 40 3 3249 3850 8632 1864 9135 40 2822 1 1076 3850 5404 1 569 7 813 3\n1\t4 611 95 85 561 2181 1036 5 256 411 7 1044 4 1 4908 27 76 70 52 68 25 1555 4 28 7934 3 1055 7 69 66 6 4275 73 156 87 10 3606 13 5891 327 1594 216 32 4387 3 4545 7 698 561 1745 2 156 7350 77 144 97 4 199 179 122 1 113 1412 5 6163 4430 14 1 147 14 15 80 4 7384 581 1 376 6 1 1252 20 1 1488 292 8690 1510 3913 204 3 6 2 327 2964 5 1 6898 2181 3 48 151 9 28 6 1 494 1104 258 1 6433 189 2181 3 45 23 22 20 2 568 2394 1 353 1787 1401 1265 27 123 8117 25 412 85 3 27 6 169 8430 571 7 102 41 277 1516 168 11 202 291 47 4 1888 174 4270 6 2 668 1138 3 6 58 1675 1104 258 1 13 6 2 327 2146 189 3 1 113 4 1 1338 124 41 1 4837 2961 8221 1661 10 6 31 1217 1073 17 10 6 152 46 1257 1104 258 16 2 1235 506 3 648 1272\n0\t0 1 21 6 279 133 59 45 23 582 10 94 350 31 6708 10 418 4 15 211 6437 7 2 1940 3 151 28 504 2 501 211 67 6 5 5223 322 8 63 348 23 10 76 20 5223 10 76 7 269 77 2 18 11 6548 116 7610 14 109 14 116 1687 4 1152 16 1 171 5 31 23 76 229 20 26 3414 5 115 13 659 31 3634 8 455 11 1 206 405 5 2783 7 9 21 1 507 4 2 2807 4 2849 458 1869 5 849 1 2009 4 1 81 7 9 234 2751 8 12 2275 5 785 656 192 8 536 7 1 166 234 27 486 1233 2 163 4 81 87 1243 200 7 1 166 2389 14 2550 3 1876 5 1 166 265 3 399 17 11 153 90 79 230 36 8 192 2123 50 48 123 2564 11 72 22 20 52 68 1 2389 72 2951 3 1 104 72 192 8 41 6 13 4956 50 1 53 357 4 1 18 3389 10 32 355 2 6449 2 547 843 6 50 7230\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 37 91 42 53 361 7 31 4992 211 699 8 339 582 133 194 8 12 1094 37 42 36 2 2234 4 2 684 3205 571 42 20 2 115 13 776 266 5138 31 379 35 621 254 16 2917 2 3 1355 35 72 963 825 12 7 1 59 177 6 2737 2787 1024 6 91 438 1259 244 58 527 68 1 82 1488 23 70 1 356 11 1 171 24 312 479 7 2 56 489 4692 479 372 10 297 38 1 21 6 1 505 1 1252 1 112 1025 1 8072 1 119 6971 1 1412 4 1948 1 7242 168 22 39 37 3936 361 74 1 7761 7 1 6181 98 570 911 5 5138 361 8 12 15 9790 115 13 2917 114 2 163 4 4073 3 7 7182 3 72 70 5 64 877 4 25 1326 207 229 1 3501 4 1 135\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 180 100 71 2 325 4 8317 1705 60 12 323 491 7 9 108 1 1900 60 191 24 881 140 1363 94 153 5132 517 1395 9 12 2 46 254 18 5 1775 1 915 729 6 7132 4524 3 23 230 37 8217 39 1157 3 133 2 287 101 5559 16 48 181 36 31 8 152 343 11 1 212 177 595 49 44 417 4463 5 1 429 3 8 143 149 1 2582 29 34 1 206 384 46 7166 7 712 5597 7 25 802 3 336 712 4761 8 241 27 130 24 1390 52 838 5 1 1428 7 1 330 350 4 9 5754 145 273 9 151 2 3106 4 2 1127 391 4 8531 9 18 16 503 292 10 57 39 1310 3752\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 148 67 334 7 7094 7 4 2 701 3 102 35 3437 77 2 2527 429 19 2 7052 366 5 2303 3 564 307 33 742 3668 470 1 4290 3 1577 347 38 1 1318 11 5461 127 374 5 1 1004 33 1574 1711 3729 1 1004 168 22 46 1798 3 2762 73 4 1 551 4 9680 3 1318 16 48 72 1528 315 217 482 861 32 313 913 69 1611 265 868 32 7763 491 453 7 102 5548 871 32 626 4469 3 1133 4071 3 74 85 7 2 18 2 747 878 38 5137 8494 29 1 226 529 183 62 7763 3801 3 3668 794 206 3 14 846 16 2744 22 1748 1570 3913 470 3 28 4 1 113 124 4 9 3000\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 3713 837 5718 31 8201 119 1295 1895 3 2781 3 3139 5 1 215 249 1199 80 4 1 3450 168 61 7037 2829 32 2781 347 50 157 7 3 8 830 25 347 12 1 3576 16 253 9 108 36 1 1158 10 303 596 4 1 215 251 16 5521 13 1149 45 23 1155 9 10 6 373 279 1 991 5 7605 2 2581 32 2 493 35 190 24 4440 110 145 253 2 973 16 50 374 260\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 144 87 33 24 5 90 104 11 33 191 118 32 1 8 1266 176 29 1928 32 45 1 18 38 5 90 6 20 138 68 235 89 4 172 1704 144 90 1947 8 57 922 15 1 119 3 35 1 250 129 1306 207 20 53 1497\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 246 107 80 4 581 8 63 134 11 9 6 25 113 21 5 7120 3 1 80 42 2 1980 3695 1165 391 331 4 1563 106 1 1972 4 31 2790 331 4 3 266 14 184 2 185 14 95 4 1 807 1 238 6 4807 1 67 6 4730 3 2571 3 1 274 2217 6 4884 2836 4058 40 20 71 89 1492 19 305 3 1919 6 5 70 116 926 55 45 23 774 1 330 1003 7 2672 1443 1920 8 45 23 63 149 194 83 1369 10 960\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 179 9 18 12 46 109 256 1413 1 61 93 1051 8 338 75 33 34 62 5948 3 3866 62 8 54 354 9 18 5 4315 10 12 373 279 1 85 3 319 5 99 110 40 43 709 168 11 89 79 2499 82 168 89 79 5882 3 508 89 79 10 6 2 18 95 717 63 3589 32 1 799 6 1 1184 41 318 27 1 1176 65 16 1 885 457 1 94 8 219 1 141 8 284 1 1533 10 12 53 14 322 17 1 18 1275 138 1482 7 116 1960 10 6 39 36 1 1533 17 139 1929 3 99 9 8852\n0\t166 2000 361 14 23 87 7 1 2281 4 9 4 611 1 148 460 4 1 18 22 377 5 26 1 33 3272 14 1 4 9 141 3769 34 1 439 2249 19 1 126 7 1 599 125 62 1191 15 126 15 4560 4560 4560 3906 8 24 5 4043 1 3311 61 1002 53 171 361 78 138 68 1 13 6 301 1130 7 9 18 14 2 710 1 102 423 361 32 1 1188 158 17 15 264 171 361 22 301 1466 49 33 24 2 9359 5194 29 31 1101 1 18 2932 155 3 3194 189 1 102 3 62 3311 29 2293 133 1 5194 178 32 3 1 8 179 5 2758 7426 3402 83 139 8 1 2630 5 87 2 2314 19 1 3 1 5194 178 361 14 1645 114 7 185 361 403 1 5028 1 15 25 5673 13 872 83 70 79 544 19 1 761 15 1994 13 92 1759 61 2695 16 31 9598 3 1 1759 7 1 18 452 17 33 22 1 59 53 177 7 1 108 1 344 4 10 6 5875\n0\t246 2 1854 11 97 179 88 20 26 728 758 1781 115 13 724 94 27 337 77 2 1296 4 25 596 34 125 1 1561 258 7 1270 4660 61 1578 5 64 18 4 95 232 15 62 7 2286 814 1 616 1926 636 5 209 15 115 13 92 18 1350 179 11 1 596 76 186 1034 33 131 15 7 110 17 9 674 114 20 216 47 7 9 108 14 3708 1 4202 32 1 2152 3 1 7296 32 1 596 61 111 660 115 13 1854 12 400 1 596 337 1 1324 1894 114 20 889 1 909 3432 3214 4 84 81 337 1781 115 13 92 59 1061 1329 38 9 18 12 1 759 30 6 587 5 24 4478 53 265 16 43 210 104 36 3974 9204 966 322 8 100 179 11 9 18 54 2612 11 13 230 46 78 5693 20 73 1 18 12 573 26 73 4 1 1854 160 1781 10 472 122 681 331 172 5 10 1435 155 15 102 104 3 3 187 596 155 48 33 56 176 16 7 2 135\n1\t45 9 6 2 41 14 33 5273 608 1 315 2517 1 686 1270 3 1 482 3 467 624 608 17 8328 169 3321 3 1 170 1041 43 4 912 8 4546 32 598 249 132 14 61 7 1 692 2552 4 5811 298 1055 1275 52 6091 77 1 280 68 1 60 531 40 5 13 743 1173 7 1 1285 951 5 2 5059 16 43 136 508 2469 72 2564 36 1 1946 1012 30 1147 2765 4 11 72 76 26 6137 2 2869 38 1842 17 42 78 52 38 2845 7 81 14 109 14 3429 66 6 144 1 2982 1049 10 7 2539 29 85 3 2982 1443 1049 10 7 1 2125 125 13 35 12 93 37 53 7 4 40 2 1659 280 7 561 6709 11 88 24 71 262 16 17 6 1462 14 33 2500 47 5 239 82 7 31 2231 111 8 159 62 1883 178 8043 30 13 2120 10 6 2 222 8339 7 375 268 3039 9 1611 1285 1427 9 2446 21 12 1 113 4 5892 76 959 68 180 107 7 80 249\n0\t71 8096 28 1675 6 1 821 6469 218 3 1 758 5 1 412 14 218 2960 3697 31 3 243 1065 141 480 101 829 19 148 3063 152 6329 6 1 540 5590 1 1567 153 899 17 5333 29 2 1428 7 31 8830 251 4 16 2937 29 225 681 120 22 340 4538 567 168 3 98 39 55 52 7071 16 1 7166 18 1787 22 1 120 35 90 31 1418 4 3149 1920 1 35 3801 15 17 22 30 2274 35 22 20 1 8138 1227 209 142 527 68 1 28 1675 6 2141 651 35 380 2 53 3110 4 1 3542 282 35 170 1313 7696 80 4 1 201 22 15 3833 800 578 494 66 40 5 26 455 5 26 17 1 111 5 309 9 3160 6 2 66 123 20 291 5 24 5562 5 2 625 28 4 1 644 4 300 206 11 3742 1441 42 747 5 64 1 1386 929 5 4622 456 15 1 1143 4 742 9093 3 3650 3801 9093 7696 1803 3801 1510 25 456 15 52 8759 68 1803 17 11 6 58\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 112 5 187 2 2302 1020 17 1 131 1108 337 32 5 4553 33 1527 1 131 5 2848 5309 29 98 587 14 1 100 130 24 71 19 7 1 74 1888 8 12 2 7 298 416 3 336 1 362 10 12 74 65 421 613 287 19 4573 57 568 922 15 2848 91 1022 16 126 790 318 3 7 4 130 24 71 2 7169 7718 5 70 47 4 25 4090 5 182 1 880 105 91 1 523 247 65 5 742 7 1 215 249 502 1604 89 25 3011 14 171 63 1405 2413 14 3101 3 14 209 5 1960 11 274 15 1 3 181 3 1980 2087 286 11 12 185 4 1 6992 33 61 46 2029 5 24 2414 32 1 249\n1\t58 28 2995 142 41 6002 52 68 9824 37 42 39 28 539 94 3152 591 49 1 3746 6524 784 5 24 31 438 4 86 2487 1891 1 21 784 5 24 58 1411 378 1 1308 22 47 37 6984 11 33 83 6123 29 95 933 2115 207 2 148 18 5228 16 95 8080 13 155 4417 172 1372 72 63 64 75 1 263 1154 176 1929 243 68 15 62 1 190 20 26 2 687 296 1562 17 11 8946 32 6741 5 12 3 48 52 329 16 1 588 68 14 31 15 1565 1175 5 2373 52 52 68 3128 245 236 1 1324 6422 850 1432 1 507 29 984 286 1 4473 11 2 138 958 6 19 1 45 1 39 1382 5 62 1153 2995 126 2086 2835 157 12 160 5 5471 16 2 163 4 81 285 1 588 37 8 504 1 21 1768 15 1607 4 1 1393 42 11 728 385 15 1 1860 1033 6822 11 151 9 18 2 1659 267 3703 4 1 8946 9179 13 3986 45 23 617 107 194 1236 10 398 85\n0\t33 256 43 2445 5247 265 7 1 5157 180 165 5 920 1024 145 232 4 5 124 11 175 5 787 2 1872 1618 19 116 10 811 36 9 6 242 5 131 199 11 27 93 40 71 6775 7367 7 2727 23 22 37 1479 23 16 2472 34 127 1837 155 77 257 23 56 48 2 1976 37 195 8 1640 9 21 6 370 19 43 1610 1158 17 13 10 6 1466 2 163 4 648 1069 1 5264 40 1241 1 3500 32 178 5 1146 23 118 1302 3 2624 2368 300 6 205 2 865 3 2 2476 21 16 1666 2528 1098 41 300 33 39 179 11 1 589 511 26 227 5 348 199 11 27 811 37 33 1668 37 11 72 56 70 592 13 1964 20 55 1927 878 19 1 1881 33 24 89 7 1 3 34 1 447 691 160 778 9 212 21 6 31 1532 17 8 87 354 110 8 1309 52 68 2 156 1287 193 10 6 56 761 5 26 2 21 1465 3 5 64 75 930 36 9 196 140 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 51 6 2 18 5 26 404 425 98 9 6 110 37 91 10 247 1576 5 26 11 699 17 1016 139 149 10 8449 1034 23 87 20 773 8841\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2343 31 7631 1378 4 2 108 146 38 2 1277 35 5387 32 411 94 27 196 383 3 863 126 7 2 4914 7 25 6192 341 32 1 5524 4 1 244 71 383 38 6840 268 30 3 2 401 1085 7494 30 681 41 1721 6223 1481 35 16 43 302 1564 10 77 704 33 61 1172 51 7023 41 39 165 56 56 433 6 100 89 6566 3 468 100 785 174 1106 865 1 736 1497 2142 9953 440 47 1 3739 280 32 3 136 9953 6 2 353 1 1106 1 212 18 5 962 1752 123 174 473 14 2 1736 1 166 129 27 262 7 2 156 172 6884 94 372 7385 16 80 4 1 2847 10 12 426 4 327 5 64 122 25 2552 372 4483 1547 5176 229 198 26 2299 113 14 1 259 35 4414 6609 7 66 111 23\n0\t132 3385 823 3 28 979 356 4 36 2 1858 618 78 52 9431 669 173 352 194 60 12 1 59 147 3 3245 177 7 204 4895 14 1 91 259 12 78 2529 14 109 14 1535 52 68 1 53 3675 5852 6 204 5 1 362 795 9784 1 4381 6582 1 1625 54 26 30 25 672 406 3 27 563 183 34 11 9 6 2 212 4589 691 37 7454 116 1689 186 116 3 53 2902 14 31 353 7 82 104 1 1043 419 1 18 2 686 2328 385 15 1330 1190 248 30 4739 5666 2653 37 1 250 4 10 395 1357 1 22 204 3 1002 193 95 16 1052 38 395 2329 4 14 1 250 1005 4 1 212 177 6 20 11 627 37 83 947 16 110 1530 42 34 7 34 174 1015 197 235 293 3653 2051 529 37 8 96 8 713 5 26 8133 14 78 14 8 88 2091 8 1513 182 50 753 667 11 41 261 204 114 138 68 9 9533 10 54 26 31 2158 73 235 6 138 68 9 8852\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4114 3 2770 22 205 313 1041 35 63 407 2264 5 95 121 3953 256 5 2350 13 9848 1 9087 1664 59 28 5 205 171 3 410 20 5 735 3072 285 2 1495 46 961 3 2876 13 1 9087 440 46 254 5 26 722 17 1 267 6 483 775 470 3 2685 5 1 4 528 13 2609 2 957 4 1 21 128 162 11 190 1708 55 1 80 1774 2996 36 1 2024 417 3 6 55 9497 6052 20 5 798 152 13 1964 167 273 1603 35 338 10 10 41 57 5 1429 10 36 114 49 27 1049 44 31 161 21 60 339 474 364 1395 1 9087 6 1677 774 3631 10 621 1339 189 217 36 3 1 1 206 789 48 244 322 45 25 4825 12 5 3551 1 545 5 2214 27 40 248 2 46 53 13 1 9087 12 2 528 351 4 85 16 4114 3 786 83 369 10 26 2 351 4 116 13 9409 5397 47 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 94 5018 48 6 160 19 200 199 1104 7 1 1949 4034 7 257 9466 4034 1 212 147 234 4034 8 2299 9 131 3 75 2189 8 12 133 10 154 1679 1240 50 13 150 544 288 16 9 251 4034 535 663 989 4034 24 2902 2268 9 799 4034 3 8 12 2220 49 8 284 38 10 3 38 6100 13 8 241 33 2165 1 131 73 42 648 38 146 111 1929 4 257 2308 4 1 147 234 1104 10 12 242 5 1917 2 1503 859 38 146 5287 13 92 81 35 2165 10 22 1 166 35 22 7314 1 234 195 4034 8 320 7 28 4 1 767 10 12 648 38 1 28 3780 3 1 15 1 28 1128 1104\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 437 106 87 8 1 1508 213 2882 774 161 227 5 26 1 4663 9798 27 8249 19 443 7 1 74 715 269 4 1 135 1 7 9 21 6 1713 22 439 3 156 3 237 9107 7200 22 1169 7631 3 2 1567 123 20 6567 81 5 62 7 3424 29 535 1 234 181 5 26 2844 19 14 1408 286 127 22 377 5 26 1 182 2569 5374 1030 16 1 3032 4 1797 132 31 1782 54 1851 43 6709 17 1 344 4 1 21 152 89 79 7 5374 41 1 958 4 7989 236 2 1238 16 58 302 3 9246 8364 813 11 498 1 1 940 3 25 4 1 6 1 59 1362 5606 14 16 1 9469 8 6783 449 5 785 11 33 57 248 1 547 177 3 643\n0\t1722 63 33 1582 504 11 4547 5682 9 97 2515 3 128 26 13 3027 611 10 6 128 2 368 5 90 1 1653 1 580 919 119 3 1 2732 4 34 2631 3 5836 7 703 129 693 2 196 2 173 87 11 73 27 40 2 1275 25 1653 224 2808 850 50 851 48 22 72 160 5 27 40 2 27 9203 10 2701 121 52 68 148 423 5807 117 1405 27 9965 10 7 5100 543 16 1597 1507 6228 9606 1 4 95 2582 76 26 1 478 4 613 115 13 777 2 148 3953 5 90 132 2 6786 2441 216 2 21 40 5 26 46 1269 3 109 6209 9 28 6 10 40 58 157 3 58 3 10 76 4206 127 32 1038 10 76 90 23 230 527 38 536 7 1 85 3 1032 11 23 1405 1581 35 693 37 657 646 134 4360 8 96 9 190 109 26 1 210 21 8 24 117 575 261 35 12 602 7 1 253 4 9 1669 1898 848 1652 130 26 2692 16 1 2109 248 5 199 513\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21 89 19 2 445 4 38 46 631 748 345 121 3 31 489 857 3646 4026 35 333 5143 32 2 8355 2700 14 16 62 1 21 1263 43 813 1491 227 5 3 2 129 15 31 9766 28 4 25 8794 23 284 11 13 1268 2084 2278 12 2 788 3193 29 1 7543 11 16 30 2 3938 1301 11 8 96 12 404 3490 2 4855 3078 82 68 458 9 6 20 279 116 387 20 55 19 2 5560 91 42 7455 3432 99 45 23 22 77 978 1928 581 17 261 422 130 6566 115 13 9409 755 47 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 32 7428 77 3173 197 15 3925 41 34 1 111 5 1 3641 1 5177 29 1 477 6 728 1 113 3 185 4 1 108 11 6 279 4498 1 178 15 7 1 5193 37 6382 23 190 773 110 373 20 279 34 1 2666 30 626 7 25 9501 9693 5 9 51 6 58 148 9291 3 34 4 1 120 7 9 377 1342 473 47 5 26 69 258 1 1698 919 8 560 45 244 165 2 329 16 79 7\n1\t0 0 0 0 0 0 0 0 0 49 1 8149 231 6 7862 774 8125 8149 1148 44 1248 101 3295 47 4 62 30 2 3 98 792 31 8448 11 58 28 130 24 5 2751 16 10 181 36 1 67 6 20 3114 30 1 1228 41 1 3 1 212 177 498 77 2 153 352 3291 463 73 60 495 309 5 1 7773 41 444 59 6102 3 444 2 1360 8153 5 37 4 448 307 1304 444 2737 73 236 2 391 4 2774 11 1336 209 5 7114 1334 6 313 14 492 2 35 40 6112 38 25 2845 3 436 38 25 2866 42 53 883 5 64 11 81 22 39 14 3 439 14 33 22 7 1 2063 1221 73 1 2141 1228 153 241 1 67 3 1 2152 59 596 1 8834 6 214 2737 3 1172 5 1641 16 2 157 4 254 17 172 1372 2 1156 391 4 2774 289 65 3 444 17 20 318 94 1 4003 157 6 676 2 441 46 109 2427 2 222 223 17 109 279 4498 1315 47 4 1731\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 1286 6392 6385 13 150 12 1 5252 1757 29 2 3115 7402 663 94 1 18 600 37 51 6 43 7 1311 11 13 92 6 142 3650 1 1839 213 25 17 25 635 7 174 91 9621 311 213 10 54 26 174 1004 45 9 61 5 26 9535 226 412 9261 4507 2608 76 229 2711 246 556 9 69 676 73 37 156 76 24 107 44 7 490 1 46 210 2451 444 2163 7 1 226 156 13 818 7 1 856 7402 8 310 2191 1875 6395 12 340 1 7 66 5 1917 1 644 4707 277 5321 1223 27 56 6 738 257 46 113 7540 13 659 55 2356 216 173 5611 9 2129\n1\t1482 10 1553 5 42 1546 1074 5 1 1858 97 4 137 3578 104 7109 3 3681 10 1 1514 5 90 79 2248 55 94 2494 75 97 104 22 1057 1581 11 63 1811 5 26 4140 55 94 28 40 107 126 20 46 13 6 84 7 48 12 229 1 6887 280 4 25 4130 1072 7 44 1729 572 9935 726 2 2703 2201 94 121 7 14 109 14 2 156 3578 1222 5830 3 60 6 31 1576 1757 279 6750 8279 13 1889 206 294 4654 789 48 557 7 9 141 253 313 333 4 7227 3 534 1682 75 80 4 1 18 6 274 94 15 9 3236 27 3 25 1081 7865 3069 1242 2 4848 11 40 1756 97 3 31 7104 13 777 46 69 35 88 117 995 1010 4510 7 66 27 3764 492 7504 5 1 2643 2 7434 2228 7 375 4 9668 1188 13 777 4807 3 279 3078 689 9 6 50 430 294 4654 18 4 34 1425 13 777 20 400 69 51 22 263 8432 94 34 69 17 790 10 151 2 1195 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 2 1998 1856 1072 141 51 61 43 546 4 1 18 11 61 695 1 4 1 899 6 5 414 157 19 1 1590 8 6528 127 22 1 2514 4 104 11 8 96 2972 349 161 624 99 29 10 12 31 34 260 108 10 6 232 4 28 4 137 104 23 24 19 7 1 155 2435 3 176 65 154 195 3 98 5 49 146 4705 3726 8 96 11 2897 3 3482 22 2 53 2053 3 54 36 5 64 126 7 2 18 15 2 53 67 3 994 86 39 232 4 2 487 762 282 108 9 6 11 425 18 33 54 131 19 267 8 192 1096 11 8 143 64 9 18 7 1 5599 8 54 24 71 17 8 497 207 144 8 143 64 10 7 1 3447\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 272 4 1 6200 4559 4 9 376 6 1711 67 181 5 26 5 90 2059 1246 34 1 52 1702 6 46 1535 14 31 170 287 740 992 17 100 1321 14 1 1039 651 4 1758 3988 35 205 3 32 9 55 7 1 6083 168 4 121 72 100 64 44 1720 47 1 94 2572 140 1870 7 8529 7280 72 22 340 58 356 4 44 13 92 7331 1761 4 1 1870 181 5 26 928 14 2 4810 4 8527 286 1 3029 4 9 1870 893 100 209 371 7 2 5306 7835 2 21 15 2 641 119 130 26 446 5 65 86 2324 5824 9307 6 128 20 1578 5 139 183 31 1754\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 6 169 311 28 4 1 210 124 117 89 3 6 2 19 20 59 1 598 21 1926 17 1 29 216 1938 20 59 114 1 21 70 2542 8898 10 93 1008 2 53 201 4 598 1041 37 48 337 8 83 118 3 311 8 83 474 227 5 4783 15 1 9208 73 1 21 12 37 464 10 1071 58 179 29 513 26 5095 3 875 1 898 295 32 9 5663 17 791 8 321 5 787 764 456 4 3864 7 9 753 37 8 228 14 109 2252 1 994 2 4 2 164 6 7354 30 25 510 493 3 47 4 25 2894 1404 3 1826 951 5 31 3196 15 1 1736 4527 3 9932 3263 3 2212 46 439 119 8 130 24 1783 16 50 319 155 17 12 436 128 7 1965 32 1 2751 45 23 175 2 53 1004 21 99 1 692 5359 41 1 48 38 1333 1 6123 4 1 2759 598 1004\n0\t3188 279 4 304 5779 22 13 92 176 3 1 6999 276 65 5 322 51 6 11 298 1182 974 15 48 176 36 32 2 3 1 3624 19 1 8249 79 960 20 3624 7 1 4877 2509 17 48 276 36 125 62 5794 9 6 377 5 1594 1 312 11 1 3274 24 361 193 75 1 4474 54 8612 9 6 31 3919 303 16 1 1465 13 657 1 8 54 36 5 348 23 11 9 6 20 1 1409 210 804 16 2 203 739 8 118 2787 17 8 2 1182 4474 11 6 3034 2 756 883 1182 412 3 432 2 8008 2 8479 3269 2 1420 4366 22 28 1689 17 1496 9 6 37 810 1 8263 39 213 1 739 88 24 314 28 4 137 489 1153 1102 106 1 434 209 6779 41 24 2 1398 2248 47 4 1 41 3393 73 1 213 403 110 115 13 1268 626 40 1 166 1335 16 372 7 9 11 2207 2773 419 16 43 4 25 1372 4981 27 965 1 1686 58 82 3770 189 1 102 130 26\n1\t1110 5 2539 3 26 2 435 5 25 4757 27 615 11 25 5367 1007 24 556 4 25 585 3 11 27 40 46 103 680 4 355 4 122 15 679 4 319 16 2 1800 7 255 6186 603 435 6 7 3724 3 101 1525 30 31 2602 7965 16 4 1 8022 435 57 1172 768 3120 5135 47 5 186 44 155 5 3724 5 149 44 13 677 6 2 53 201 4 607 120 11 139 385 15 3 3120 3 4 448 51 22 43 6251 35 175 1 8022 13 92 18 1834 116 838 318 1 714 3042 308 316 266 2 2652 164 35 255 5 1 2464 4 1 7 3042 6 2 84 1005 353 35 63 728 2074 9906 2807 3 1 1414 53 996 4519 3 7 800 3443 25 129 152 9483 2 156 1287 8 54 56 36 5 64 3042 7 2 67 805 28 7 66 27 153 24 5 25 8163 3 26 169 37 300 2 103 1206 54 4136 17 9 6 2 53 18 16 1 389 231 3 279 1 85 5 99 110\n1\t400 2940 6182 2968 2148 3787 2901 1347 6349 9958 25 435 19 2 1285 5 273 1509 1347 196 3 3567 3 1875 236 2 331 2 591 240 1329 7 9 18 6 11 27 173 717 14 223 14 27 40 1 3020 3 11 27 40 5 2 8727 69 55 45 10 270 2290 5775 13 724 3823 1 1324 39 908 211 308 10 196 6034 1984 129 6 31 3211 1304 11 307 130 24 9094 5 988 3730 6 2 4730 3 98 236 1129 28 4 1 80 201 1144 6 4071 69 113 2299 14 19 3 69 14 2 3417 4244 35 196 2 184 4802 17 229 1 1340 178 6 1 2708 4 1 98 4722 15 3142 56 8760 122 7685 1441 42 2 148 9573 1078 11 1628 9037 69 35 266 2 5464 69 39 1196 31 918 19 2714 366 3 25 8 560 704 41 20 27 7115 15 102 4 126 7 9 18 32 25 585 2047 93 40 2 346 169 695 93 993 3120 13 206 3147 9731 6 229 113 587 16 1 506 1248 739 3796\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 1515 684 1211 1 119 6 2 103 105 713 5 10 277 268 3 8 6880 5 134 42 279 4498 1 18 6 722 119 6 400 3206 17 10 3375 1603 7 1 18 6 37 327 3 297 276 37 2182 2 4502 684 230 140 1 389 135 115 13 92 121 6 5743 3190 3 22 7 401 921 3 2926 154 330 4 110 2934 3 1282 6427 22 39 1233 17 4835 45 317 2 6590 16 501 1316 3680 124 1920 1236 9 461 93 5743 276 84 7 25 13 462 788 6271 30 2030 3 174 84 788 6271 30 3 745\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 24 5 272 827 183 23 284 9 5551 11 7 58 744 6 9 2 3703 421 8199 81 1104 45 23 56 175 5 284 146 77 194 68 3037 23 2198 11 145 421 8747 7 940 1104 17 45 317 288 5 26 5888 1104 8 173 352 13 2078 7 9641 14 9 18 6 4310 51 4426 970 8036 16 9 5352 66 6 2 4897 73 1 18 6 1051 54 10 20 26 16 9 18 54 24 1196 29 1 1644 21 1672 7 13 37 2887 12 1 41 330 334 45 23 2368 73 10 6 2 18 38 42 20 55 11 9 6 2 528 415 10 6 38 1 1655 242 5 359 1 81 1781 31 37 935 11 1 1655 343 1 321 5 1 108 17 30 10 162 6 2633 63 33 90 9 18 115 13 3221 2381 57 2 84 3469 7479 38 2 11 4987 10 65 167\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 6 28 4 1 113 4023 117 1001 86 15 447 3 882 90 9 2 21 16 5706 1579 763 308 805 1501 144 58 82 206 63 1484 25 333 4 1 443 5 348 2 471 27 4938 97 168 197 3140 3 27 649 78 4 25 441 3806 140 1 333 4 25 6932 3 609 6460 829 7 1 21 191 26 107 7 14 763 7616 1123 1 389 4 1 21 5 348 25 471 19 3481 5 6 1092 1 166 108 1195 453 32 86 1249 1016 2132 488 5753 1 2049 21 868 117 2878 90 5 2 191\n0\t10 8650 7058 169 11 1 410 40 58 838 8585 3 153 1460 5 70 199 942 7 1 120 41 1 471 1 21 6 4847 3 4624 1 7659 4 1 723 120 4 1 1766 23 152 1662 5 474 38 137 81 7 8342 324 73 51 12 2 732 2694 5 62 3052 480 1 1137 1 737 23 83 474 49 41 35 48 3291 6 75 33 13 1118 422 6 62 5 7952 1 21 6 20 3681 10 40 28 41 102 168 3 10 440 5 90 65 16 1 344 15 840 3 1767 293 2170 14 2 67 42 56 105 6905 5 26 1417 3 1 5948 189 1 120 22 105 5 552 110 1 623 6 93 3743 5 2 156 4834 341 28 56 53 94 458 48 31 393 11 6 903 3 237 6084 5 1 5221 4 1 215 135 688 480 10 101 2 167 91 21 2720 20 169 14 91 14 43 82 10 130 26 2299 16 28 7629 10 4446 1 2380 4 5155 32 42 604 28 1780 7 1 1009 6494 109 248\n1\t1 1234 4 4948 258 15 2 599 85 4 1709 1452 180 455 43 6808 11 9 6 41 440 5 1654 812 959 996 16 62 421 8 83 96 207 10 1674 1123 1 6048 5 131 3119 11 14 8780 72 662 591 7781 41 959 261 264 32 420 134 10 123 2 84 329 4 656 1 119 6 10 266 14 2 1267 48 1699 5 28 4 1 250 5948 7 1 9904 1826 10 1834 3502 32 3047 1949 8173 3 1 3704 1 672 121 6 46 501 45 51 6 20 2 163 4 110 1 847 6 4358 3 1 333 4 7915 7 2924 4 1 531 1087 4401 2434 151 10 52 1089 5 87 1 4664 3 82 2757 9 40 375 2126 4 627 882 3 1577 6932 14 109 14 2 103 8010 1 4447 1834 2 9031 20 7 706 17 3 279 2 51 6 93 2 3 253 2787 370 19 205 3558 37 8 54 5268 133 10 94 283 1 398 628 14 530 8 354 9 5 261 35 4283 1 4651 2633 1145 1724 7 6109\n0\t39 51 3 207 10 72 24 5 1942 110 1 67 6 2 103 6905 3 100 1435 4936 28 625 236 1 4798 438 9048 1 1568 2105 1290 101 9620 30 1 613 217 25 3 943 82 103 2126 3 1657 204 3 51 642 2 1213 5760 3260 1010 4469 11 213 2667 29 513 397 2547 9 21 276 4543 3 229 12 1 121 213 84 17 180 107 2428 3 48 6 638 403 7 2782 7 233 9 280 6 696 5 280 7 55 224 5 25 1921 3112 7 205 703 1 1568 554 29 74 4920 7 2 7494 3 418 5 2323 1875 10 6935 275 3 30 1 182 10 6 167 239 1039 6 39 89 4 10 153 176 591 53 3 213 782 41 5840 39 236 58 813 41 840 7 10 1251 32 2 3 468 773 10 1 1349 6 2666 30 1010 4020 14 8528 183 60 196 1 1568 57 2 732 1033 1548 16 79 17 8 54 96 80 81 54 4001 110 300 279 2 99 45 23 63 64 10 19 4798 16 7844\n0\t1 251 5 1 4063 177 196 56 161 56 1911 3 86 39 908 8741 13 659 286 174 903 119 2519 1 184 1855 4 2 558 4436 6 1012 14 31 6656 36 129 35 6 421 3 5093 3 6 38 7072 19 25 1 4572 8554 3 186 125 1 4436 7 2 4282 2921 859 5 1 13 8 96 9 251 57 84 5589 1 1063 88 24 728 2954 1 7 608 14 1 462 4203 3 620 1 4 2135 3 3498 3 770 2972 594 663 29 392 4 448 1 2807 4 4629 4766 3 7225 1076 54 24 93 1253 2331 1 1261 12 93 425 16 523 7 293 3678 460 14 1383 41 2834 140 62 569 285 2505 41 5 3572 41 1 1 6811 16 53 67 456 3 2392 22 17 1453 1 1063 4 6160 3 578 301 4603 95 3824 41 240 1670 33 400 1155 1 272 3 77 2 1213 3 7826 4116 15 4063 3 10 54 26 7361 5 1 171 5 1 389 251 17 1 2392 3 1650 7 66 33 61 2954 22 900\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 163 4 1626 41 546 4 1 67 6 1 166 14 7 98 82 546 343 36 43 82 141 8 83 118 2768 17 51 22 31 1100 507 125 1 212 108 10 12 232 4 327 5 1775 17 10 54 24 71 45 1 67 54 24 71 52 1766 1 833 103 1753 91 8202 32 6 39 2 4618 1 567 168 22 56 53 10 6 678 11 81 36 5 566 7 1 7 1 104 50 1003 465 12 5 320 66 546 12 32 3 45 33 106 32 1 710 41 296 2939 45 23 24 20 107 98 9 6 2 53 108 45 23 338 9 141 98 8 63 354 13 7528\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 50 1520 9 6 31 332 684 834 3665 45 23 1006 503 1 4 8126 1420 12 323 468 24 5 64 1 18 45 23 175 5 118 2957 19 1 82 1737 480 1 233 11 60 114 2 163 4 3262 4 12 2 46 304 7677 5 503 1 1769 12 2211 1 201 12 109 3 1 523 12 183 8 6303 9 1095 420 36 5 134 11 307 602 7 9 21 114 46 530 944 7 4641 8 496 354 9 332 684 834 1719 5 34 4 23 35 617 107 110 317 7 16 2 53 387 37 139 5 1 388 5289 760 10 41 751 194 2382 155 15 2 2540 3 99 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115 13 3562 1 28 427 3469 666 10 513 6 1 215 3 51 22 824 4 3 33 22 138 69 78 13 659 1 6 2 3058 5525 1889 1730 506 35 863 2 5746 7 2423 3 6 4097 2588 16 25 4109 1543 37 78 1216 7 127 55 1 182 6 610 1 1 5348 5135 469 7 7529 3 6 355 383 15 31 2213 1653 7 25 5361 1 234 40 1241 27 3155 3 51 6 58 334 16 1 5348 7 592 13 6 20 848 37 97 81 36 1 1272 5885 17 8 497 338 46 78 41 55 30 37 27 1253 490 854 3 369 79 1 282 76 390 2 1730 36 1272 1238 1920 9564 7 13 1627 48 12 517 94 106 6 1 6801 1 215 179 7 9 13 150 64 1 272 7 253 13 743 8537 1020 30\n0\t1126 2056 23 70 110 1 119 6 961 3 20 7 95 111 1766 1 2216 6 565 1 121 6 573 17 207 20 56 283 14 1 102 951 22 1081 479 314 5 1 120 22 775 428 9310 1 21 55 999 5 8470 65 1 1589 111 5 5561 3544 1192 55 137 83 28 625 1900 16 41 421 95 4 1 807 1 21 39 40 58 148 1362 3016 55 1 927 6 565 1 177 424 42 37 331 4 2515 11 42 3534 3 207 1 28 177 11 9 845 2 1020 4 4992 709 3148 4 1 97 2515 3 8 143 946 46 78 838 5 1 158 17 39 38 154 85 8 485 29 1 2238 51 12 146 5 539 3706 28 570 8 1050 712 1 427 173 14 2 28 427 17 8 497 307 789 458 37 8 16 1 1955 628 283 14 42 52 34 7 399 2 1517 91 158 17 20 1 210 45 819 165 162 422 5 87 3 45 42 19 2229 53 16 2 156 3886 45 23 63 694 140 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 528 1378 4 2 18 12 470 30 1037 1 164 3897 1968 16 1 323 3153 1198 3192 14 8 12 1 182 4 1 1302 8 310 5 1 1698 2582 11 9 21 12 7 233 55 527 68 11 4198 1 67 608 132 14 10 6 608 6 38 277 5366 35 9242 2 526 4 81 5 62 2527 3630 5 309 2 251 4 8078 8466 2525 999 5 226 1 1428 3 2711 5 1 182 76 1364 42 2 46 641 119 17 128 936 999 5 90 7612 19 188 3109 120 22 301 1837 1395 162 151 105 78 1821 3 98 10 5824 8 467 48 1 898 12 11 393 34 38 8 497 23 22 303 5 2725 116 221 397 1353 3 121 22 197 1193 4 2 18 6923 7 1387 5572 213 55 11 452 60 6 37 3625 464 444 1547 1 166 177 481 26 367 38 9 14 2 5012 42 39 2 6603 5422\n1\t1898 6 3639 7 6869 28 6 30 1 1398 487 136 1 82 350 6 13 3204 1 344 4 1 21 6 1056 433 5 503 8 504 33 139 2366 3 62 234 9905 436 1633 1424 300 44 4946 4 1898 6 1 1836 516 490 16 1 344 4 1 21 1263 943 6521 4 66 1 3781 1107 74 236 2 1598 3 398 10 65 77 2 4725 8325 3 98 297 5 463 48 6 851 41 14 23 76 98 8 241 33 149 1 8686 1898 7 1 921 4 31 8364 94 458 1 212 234 400 143 70 458 17 10 3426 224 50 239 1425 13 5020 42 1524 1610 1025 145 273 236 2 2812 859 516 10 45 23 99 10 227 3 87 43 4681 8 112 691 36 490 3 54 112 5 1017 85 403 11 39 5 365 110 17 5 43 81 42 229 20 62 4259 4 10 255 142 14 496 6670 37 45 23 36 116 826 890 9 6 20 2 21 16 1038 45 23 24 31 1089 438 245 8 496 354 9 2803\n1\t954 1195 1103 30 196 1620 65 30 5266 94 2 1305 366 7 2360 690 762 3 621 7 112 15 1 1316 3 1010 7560 954 514 3 1515 278 30 1 1386 690 25 3839 3 271 155 5 916 49 1082 5 785 32 690 16 2 6083 1234 4 387 60 5 9308 3 432 2 136 123 1314 1917 2 3476 1234 4 1 909 1349 3 9108 2241 9 21 6 235 17 116 3484 7 378 42 2 1317 1462 3 1697 112 67 189 102 109 1366 3 496 2529 120 14 7560 6 258 3 1 572 418 47 3 17 1 1511 77 2 52 3591 3 3061 1646 38 102 4 1 111 2086 7464 77 7583 94 60 8650 11 690 40 2841 44 6 4725 3 1 5096 747 3 9167 1197 1905 4672 1 1567 6 407 17 100 105 810 41 8335 1 447 168 22 169 3 55 1975 2741 1101 1665 376 40 2 327 607 185 14 3992 3 5161 3552 6898 861 1664 97 1612 802 4 1 4439 868 2018 1 279 2 176 16 137 3078 146 3026\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 83 118 48 33 61 467 2025 55 2363 3228 5 9 107 37 91 107 37 56 91 98 236 8 76 134 28 1059 1 263 40 5 256 48 88 815 1 80 5419 494 125 1 6 162 53 38 9 32 2 1813 41 95 82 1747 10 5 26 89 3 98 612 130 24 71 4733 22 2 156 1002 109 587 1487 7 9 8 5 333 1 736 52 36 2 1894 4 1610 168 11 24 58 4276 5 174 3 90 364 68 5397 2197 5 64 144 261 15 95 7529 54 1030 7 165 10 56 8 128 165 3867 45 8 57 1866 9 18 16 54 128 24 71 3867 6 31\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 997 9 18 19 5614 226 1925 3 14 8 12 1157 51 133 194 10 5562 5 79 11 10 88 169 815 26 1 210 18 1218 91 505 91 2653 91 5473 400 1698 566 4677 439 807 34 127 89 10 65 5 26 1 80 5403 91 18 180 117 575 10 12 37 573 8 12 30 42 1860 551 4 235 11 8 57 5 359 3 33 89 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 28 4 277 1575 104 11 8 63 96 4 11 61 1547 4861 29 1 85 3 906 128 28 4 1 508 12 470 30 2359 2 18 2069 6330 664 5 4955 174 54 26 6524 66 3723 79 14 595 1111 17 20 670 14 91 14 1 746 180 575 3618 429 6 109 279 116 85 3 8 96 11 10 6 28 4 137 46 2446 124 11 76 39 1382 7 116 1568 16 237 1534 68 23 228 4630 8 1266 394 172 94 180 107 10 3 8 128 187 10 43 3527 146 11 8 228 24 107 1639 2017 989 40 881 77 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 56 338 9 18 73 8 24 2 766 39 36 1 259 7 9 108 9 18 6 38 35 762 1147 7 1 750 4 3907 49 2372 1022 213 1107 60 621 7 112 17 49 4028 255 5485 60 196 1 1965 4 44 157 49 60 6 2954 28 1825 2478 19 44 11 1147 40 256 44 3377 13 777 2 211 18 15 34 4 1 2372 4116 11 1147 7199 27 173 185 32 48 27 1371 1 6914 207 48 151 10 37 211 3 144 37 97 415 63 1999 5 7 148 500 93 1 81 27 4920 15 29 1 2372 2205 22 39 14 2189 14 27 3191 13 777 2 211 18 3 23 495 4466 47 45 23 760 9 461\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 210 18 19 4076 8 83 55 118 106 5 905 17 8 449 8 63 552 174 454 32 730 15 9 108 49 10 255 5 121 3 4702 9 18 6 696 5 2 91 4717 197 1 4470 1 171 22 43 4 1 210 180 117 1586 3 339 24 71 527 55 45 33 61 242 5 90 2 528 4 9 108 1 18 191 24 57 2 2096 2828 402 445 66 145 273 12 1130 202 4580 19 1 1324 8891 9 18 40 195 390 2 599 1399 15 417 4 2550 3 40 390 1 1446 16 4485 82 1847 502 8 54 36 5 272 4 11 58 82 18 55 792 5 8 230 1454 1968 16 8290 2 493 3 79 99 9 18 3 192 619 60 128 9123 79 2 493 94 1 8 256 199 2086 83 64 9 1540\n1\t0 0 0 0 520 873 124 24 100 56 248 2 212 163 16 503 17 4 1 3507 11 180 1586 80 24 71 29 225 2325 240 3 29 225 650 2072 2863 6 58 13 92 857 6 38 2 7524 4 11 186 125 423 270 1377 4 62 498 126 77 3 3029 126 5 566 239 82 15 1 4707 1734 4 2306 239 82 69 791 14 2 16 1 3805 4 367 1 21 1281 2480 200 2 4832 259 3 6657 35 735 16 239 1885 17 603 6 757 386 30 205 101 7997 15 1 3 22 929 5 566 239 1715 10 432 2 2476 4 2606 1 1377 125 62 1710 13 2863 76 26 1074 5 794 80 124 3 16 53 2560 51 22 373 43 193 1 124 22 373 3026 236 877 4 1816 529 7 3 1 5614 22 373 1 69 2 4060 4 11 22 205 4538 3 8498 19 116 1600 16 127 2514 4 581 2863 190 41 190 20 26 116 1606 45 23 335 124 15 2 7117 6079 4 6865 69 9 1962 16\n0\t2 161 164 35 791 6 2057 4 3 2 161 2863 15 2 2302 6026 94 43 395 40 48 784 5 26 447 15 1 147 15 1 1665 5545 2 658 4 2870 2205 3984 19 1 184 3 1 212 218 59 111 5 6 20 5 5760 6 377 5 26 1 4457 571 11 137 4 199 35 159 1 1571 23 1374 137 35 54 175 5 64 9 7 1 74 334 24 459 71 51 3 248 656 2 6553 393 16 2 18 89 32 226 13 92 147 18 12 470 30 2 259 809 248 3 428 30 559 35 87 1493 502 1 215 12 470 30 2 259 809 71 2202 411 3297 15 37 23 64 1 538 1820 939 51 12 771 4 2 148 5938 17 8 449 33 83 2410 9 382 34 125 702 8 45 8 24 2339 646 1978 154 6993 4125 2819 318 8 149 1 28 207 549 30 2 4319 1655 1 2084 2278 6 11 8 12 446 5 9777 9 19 37 29 225 1 59 2157 8 133 9 2662 12 16 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 420 100 455 4 490 98 214 47 42 1 164 15 1 2483 66 420 455 4 17 20 575 1761 5461 79 5 751 194 3 42 20 452 10 451 5 26 2 426 4 2146 189 4849 3 17 10 39 213 11 722 1013 23 149 1 442 940 695 10 255 577 14 2 1289 2847 953 318 1 226 764 1507 49 10 5 500 51 22 4961 97 1289 168 7 1 189 1 3138 3 25 66 83 916 42 202 14 45 1 2319 757 12 105 1896 3 1 74 350 12 2619 224 5 70 5 1 212 3720 3310 857 3 1 2436 66 8 96 22 928 5 26 262 16 3886 17 805 662 11 695 1 1972 1673 6 313 17 1 1210 691 276 36 772 2229 8 88 20 241 1 164 1968 16 1659 3 114 476 59 5689 3448 295 25 9621 183 1472 19 25 3 4700 47 4 2 10 151 100 134 100 316 176 36 4551\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 59 219 9 21 32 477 5 182 73 8 5586 2 493 8 7550 10 1419 55 4833 1033 1548 11 97 91 124 3702 10 190 26 1 210 21 8 24 117 575 145 619 2 256 62 442 19 110\n0\t83 2510 10 12 37 2212 8 143 1460 5 256 78 991 77 592 13 499 1008 2 56 1230 67 331 4 903 529 3 3309 37 97 4 1 795 39 343 400 1610 3 13 150 2309 51 12 1210 41 146 73 1 1003 465 8 24 15 1 18 6 1 233 11 1 67 181 36 42 242 5 26 37 1751 3 286 297 629 37 884 3 271 30 37 6727 8 230 36 180 39 71 645 15 2 1519 119 985 3 238 1102 7 28 184 1 21 6 36 2 4134 7 1 3374 10 153 186 78 85 29 34 5 8065 120 41 2331 830 1 4 1 3607 7 1597 23 88 24 80 4 1 1859 1112 4677 17 51 54 26 332 58 3 1397 924 474 38 1 5683 4 137 11 12 1 524 15 4145 1597 269 4 79 20 685 2 4419 1000 16 10 5 26 8137 13 1983 15 43 1976 3387 17 586 505 8072 3 1230 67 89 9 46 254 5 335 19 95 8 229 54 24 336 10 49 8 12\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 117 560 106 1 1154 16 1151 3783 3 82 3618 155 612 209 1869 5 33 22 370 19 148 1046 536 47 1 2766 33 787 38 3 9 18 6 538 231 3560 5453 4 2504 3 9673 2389 29 1 4120 1 1587 6 6 93 20 2 6417 3 1 716 22 211 29 34 6647 9 6 2 176 29 197 1 2864 4931 4 492 8 496 354 9 21 16 374 7 1 394 5 1194\n1\t6 2 360 147 1004 1125 2472 371 277 161 4 598 756 578 3 14 5343 9087 758 155 5 352 935 65 161 457 1 4 5819 1 277 9384 161 2475 90 2 609 5065 161 6665 7 2 613 1426 66 40 1527 2 223 111 19 220 98 69 519 15 6731 29 82 268 5 1 203 4 62 8765 1 277 22 1012 3 513 51 22 4253 709 1025 3 43 46 866 879 14 239 4 1 277 40 5 209 5 1422 15 1758 161 3 1 8820 4 62 13 2595 1 182 4 1 74 251 8264 22 5586 2 1231 251 398 239 4 1 120 57 9818 578 481 209 5 1422 15 25 5367 2295 8701 6 2793 5 1942 25 280 14 3 55 7331 6 1553 30 25 147 417 5 566 1 3553 4 25 576 69 3 359 605 1 136 5819 40 5 543 1 2631 189 246 2 157 3 2 3163 1 67 456 24 71 1476 45 243 2761 19 1 3966 4 17 10 6 1 4 723 4 2049 171 66 40 89 1 251\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 57 5 26 28 4 1 210 104 180 117 107 3 145 172 161 3 2 2358 3123 8 337 852 5 64 2 2358 108 38 394 269 77 194 8 1647 5 560 610 75 132 2 91 18 8234 1 88 24 1866 77 2 3447 38 350 111 3171 8 5 50 766 11 10 12 489 3 27 2667 5 79 1 2998 516 1 108 292 8 12 2 103 5888 341 63 64 75 43 88 26 46 5888 45 33 61 20 29 101 5 7 2 18 5599 10 247 11 184 2 10 1220 245 2 184 934 5 26 4241 5 132 3 3206 2813 488 845 399 1 538 4 1 1014 10 6 31 3271 18 16 2 1908 7046 17 5 26 620 7 2 1908 3 20 7 2 3447 87 8 139 5 7002 87 8 175 5 139 5 1908 49 8 5014 2 1973 3911 54 8 354 9 1973 332\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 6364 1946 11 3165 5 2 3203 1057 27 76 1310 7 112 5 1 80 304 282 7 3203 33 76 357 2 1151 66 76 182 7 1 1697 469 4 29 1 43 172 1372 40 1136 5 1 164 7 569 3 486 2 2446 749 414 3355 30 1686 28 1344 1 4 76 90 44 2380 5 2264 65 3 634 197 517 1 1 119 6 169 2271 3 630 4 1 171 266 2 547 2482 7 4637 277 4 1 21 22 893 2768 128 101 109 7287 22 169 14 72 175 5 64 52 1273 4 1 471 10 6 39 2 91 158 15 679 4 2241 58 5541 3 439 120 8164\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 20 1 376 675 27 40 38 277 910 330 3916 3 48 6 2013 3894 403 34 125 9 1973 58 3486 1 206 12 229 25 9 6 2 18 11 151 58 356 3198 1 3365 3392 65 4325 860 15 25 4131 8 165 1 305 16 2 9199 37 173 17 42 10 151 23 230 47 3 7 20 2 53 699 9 12 1 2032 3 276 36 1 206 12 19 2 91 7072 1285 3 405 307 5 839 48 42 36 5 26 1208 25 3268 10 40 2 595 240 3 3755 9198 17 36 2 10 1108 266 10 40 11 231 19 5 592 13 150 24 58 312 75 1 82 2381 165 34 33 114 47 4 9 1973 300 33 1066 7 10 155 29 95 9749 26 3023 5 1621 9861 4 116 157 468 100 70 1877 657 42 11\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 18 472 2 147 5105 5 727 66 6 327 5 64 3 10 289 75 423 27 1306 25 733 15 6 146 11 7057 12 3033 30 3 1505 10 375 268 14 25 3285 14 2 435 7 25 13 1226 184 6 11 8 179 7057 12 1317 7 1 108 10 88 24 71 138 1171 30 1 454 35 262 43 4 7849 384 105 3 10 384 14 45 27 12 7023 1012 7 2 1332 822 7 43 546 4 1 682 13 92 18 6 20 56 17 2665 59 19 1 733 4 1 435 3 4757 1 344 6 47 3 59 314 5 131 1 85 2990 3 1 940 1167 4 1 682 13 5944 327 18 45 23 359 7 438 11 10 6 20 2 528 2129\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8408 30 4 44 9851 204 1510 2 2451 16 992 7 1 210 60 3108 3 152 1 1224 642 2 112 4923 1 21 2474 4831 2 298 416 41 1185 1480 30 2 2901 2173 11 44 221 5241 1371 3 5172 22 14 1447 5 199 14 5 768 17 129 6 14 14 1 4293 4 44 684 4116 6 3 1 212 21 6 31 2685 2760 4 14 2 6593 4 1 436 45 60 1808 201 992 10 228 24 60 39 173 3603 704 372 992 41 1265 2764 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 1068 22 43 4 1 80 922 15 9 3515 5884 2515 2301 489 22 13 8732 1 1567 3130 200 7 387 66 54 26 514 45 248 322 17 42 5075 13 1054 120 11 83 2210 37 78 14 463 2469 1169 41 720 16 58 53 13 184 586 1014 125 1 401 32 670 154 13 92 1068 22 43 4 1 113 985 32 1 3515 5884 1 466 6 1589 53 13 858 8 64 194 51 22 59 102 2329 4 81 35 54 26 77 9 3515 9478 81 35 63 694 140 1597 269 4 7960 311 73 1 466 6 13 81 35 396 96 5 3846 1352 36 368 8633 15 2515 3 17 45 59 8 88 99 10 7 236 2 163 4 53 4144 616 47 1057 37 144 351 116 85 15\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 337 5 1 18 856 9 3390 852 5 26 30 1 21 6287 29 225 2 103 4885 42 162 162 1052 361 3 20 2882 14 53 14 95 604 4 148 2181 6579 361 17 42 93 301 837 14 2 5341 1211 236 146 232 4 641 3 1316 38 110 12 1 736 8 455 32 81 7 1 410 14 33 61 1323 47 94 1 880 10 153 230 36 2181 274 47 5 932 2 1719 737 10 811 36 27 405 5 90 2 103 267 3 24 299 403 110 1074 5 39 38 297 368 6 7384 691 40 2 9363 5 6434 55 1 2688 127 663 42 39 2763 5 139 5 2 18 89 30 31 697 423\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2634 6 132 3160 19 1 2240 18 5068 11 8 645 2 2067 15 9 461 32 477 5 182 10 57 79 3 1071 401 13 4 102 4766 6348 3545 32 5 564 81 35 27 6 553 22 13 1833 1 567 1079 1049 1 206 14 28 4 1 201 11 63 396 26 2 3199 4 2 91 4692 4415 10 6 1 8990 204 14 1 589 6 5163 32 477 5 3158 13 872 51 6 20 28 799 7 1 18 49 28 6 20 1435 14 51 22 58 2411 41 3396 3 1 263 6 74 4575 115 13 1601 1 171 187 5788 1321 453 258 1 466 583 353 35 6 115 13 252 21 6 29 225 14 53 14 1 1143 4 4 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 46 695 5968 3 22 332 2406 121 6 452 267 6 1051 33 22 65 5 62 692 1606 10 54 26 53 5 64 2 967 5 9 13 4634 110 53 18\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 991 6 370 19 1 306 67 4 1290 2 298 416 1145 35 6 1685 30 25 2274 5 328 47 16 1 3 25 1153 4 372 7 1 2884 58 3421 5 2225 581 266 7390 15 227 8759 5 90 1 185 216 3 1 1278 87 2 4233 329 4 1 795 11 1699 5 7390 1516 14 2 3148 16 1 6849 2710 1 74 350 4 1 158 1873 15 25 5440 658 4 298 416 2372 2274 5889 4 912 176 111 105 161 5 26 7 298 6 364 1535 3 229 2 222 105 2043 790 1 21 123 2686 32 43 2216 1636 3 2 156 1988 6506 11 72 229 88 24 248 245 10 6 128 2 1002 1295 18 15 31 7110 833 11 1501 308 316 11 2372 6 1 2377 16 2 2560 3737\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2148 1 326 5 326 8622 864 4 5336 19 2 7401 7 1 161 6575 1485 121 30 205 5548 1488 9 153 55 230 36 2 230 36 317 939 1764 130 168 22 515 20 39 22 3015\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75 40 9 391 4 930 2716 19 249 9 42 1634 10 151 79 175 5 1743 42 37 1429 11 10 6 152 527 68 2 7836 1045 108 420 243 24 2 68 99 9 7442 8 320 133 10 49 10 74 310 689 8 3394 4686 9 88 26 1476 98 8 214 47 75 3605 439 10 56 1306 10 12 37 91 11 8 152 472 47 50 6407 3 1544 50 874 5 1 13 7017 1046 582 133 9 3 34 82 864 4205 479 1 1652 11 6 1 3 538 11 3503 43 179 5\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 727 1 793 32 737 6 31 332 1528 18 38 6183 14 109 14 38 2 1040 112 6499 43 1512 22 1314 56 254 5 258 49 28 6 1040 41 5195 38 3 229 16 95 3401 454 133 110 42 20 806 5 90 2 18 38 132 2 464 9133 3 86 5570 38 20 59 628 17 102 3242 2058 9 18 5488 75 5 474 16 239 82 7 132 254 984 17 10 100 196 105 10 128 289 157 29 95 387 9395 23 11 1137 4 1 856 41 4 116 5331 157 271 926 1034 1 8727 4 43 81 190 1142 1 120 22 862 136 72 99 62 7 802 11 100 139 660 2 46 8591 100 235 105 2015 41 537 130 407 20 99 9 141 17 704 33 24 5 934 15 132 1650 41 1375 130 87 194 3 76 20 2580 1 2187 33\n1\t2 2590 136 3997 29 1 27 762 2 3709 201 4 120 11 1483 1 3 1 6078 3 1 304 1272 6819 5038 1586 262 30 1 1386 5846 13 2044 1126 44 32 1 4 1 510 6078 27 191 44 823 3 2203 5 1 9257 5 5423 31 55 52 1127 13 53 188 173 26 367 38 9 135 1 2216 6 3454 15 2 84 2053 4 3596 1357 1189 3 2106 3 1 3620 3177 130 597 23 15 103 680 5 1 1300 189 1 1529 1697 5846 7560 3 3024 2622 895 1168 78 105 56 2378 1 545 5 230 16 205 4 450 1314 1 121 19 1 212 6 37 3 331 4 727 8 54 134 9 6 28 4 1 80 299 956 3212 180 117 5125 78 4 1 1365 271 5 7 25 1103 4 1 1355 25 2864 4746 4 2 898 8001 19 510 951 5 43 84 529 4 623 3 2094 5671 2331 2 360 3168 7448 861 15 1128 6894 7671 3 238 1657 9053 4 2873 47 9 360 135 149 2 973 2882 23 5435 3829\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 1023 15 34 1 8 337 140 2 1009 4 133 9 135 10 57 2 3022 3 306 7 154 3293 13 92 1193 145 38 5 3081 3898 2 1955 3260 1 2794 4 8 57 2 46 832 85 15 1 477 7489 4 3 3 1 2057 7707 15 86 5631 3 813 14 86 157 295 12 13 252 6 1 717 4 6829 1804 61 1977 7 1 397 4 9 12 89 7 1 518 2032 183 1 4 1182 12 10 888 5 1429 127 1764 41 61 127 1804 16\n0\t67 32 1 4 2 296 231 608 17 621 1289 664 5 31 2794 3 1 4 205 201 3 13 92 21 2440 32 1 166 465 8 396 3196 15 1 986 661 9756 4 132 2020 4623 1 233 11 1 5595 7019 730 5 26 510 16 58 148 302 82 68 11 479 909 6187 10 153 1917 78 7 1 4181 4972 608 2 1598 1643 6 1674 810 608 7098 1 4237 2 3656 129 3 1232 122 41 44 5 634 7 2 400 744 132 14 3150 690 9379 3 2574 2913 25 752 2 7970 4 115 13 2595 28 1746 31 161 6226 498 65 29 1 429 5 2979 2913 4 1 3477 45 33 2469 51 608 8834 244 404 655 5 1 245 622 6 3597 5 3640 554 3 2432 6 1 59 5683 4 1 4730 1261 1242 608 914 5 2 1330 286 4992 211 2281 7 66 2913 3 5279 30 1 5595 4 62 873 4783 7 31 6653 5 1 29 1 182 4 1 1344 9 8428 31 608 29 39 269 688 7 58 744 3785 3817\n0\t130 24 165 43 8 920 11 300 10 6 540 5 2095 1290 4173 19 25 817 581 17 48 123 27 56 504 49 27 151 132 14 1060 6780 600 600 512 3 600 3 600 1060 3 1 124 98 7 1660 221 2800 132 2 1669 13 6910 2051 280 12 8 467 444 71 200 7 1 1228 1128 16 38 764 172 944 3 7 9 21 60 196 38 723 456 5 3051 5790 13 28 736 69 13 2 7703 4 5328 296 2326 69 2367 2393 69 6 2 2481 5 1 644 5328 6992 1427 2901 666 58 5 2310 3 1661 5 31 6835 69 207 2 175 5 64 2 6871 26 1 851 649 2 1423 4610 7641 11 181 5 24 881 224 2 2055 7 1 3119 17 228 543 7 11 31 16 8 128 139 5 2860 3 11 3703 4203 79 3 34 4 50 6510 22 300 10 39 907 72 24 13 659 9 21 51 22 227 211 4173 529 5 90 23 9235 3 4012 1660 32 101 2 900 17 23 22 5 357 116 1691\n0\t1335 16 2 108 10 6 2 528 1345 2 7827 7 1 543 4 148 3156 4 1 362 3157 4 203 36 2597 7307 5931 66 33 55 57 1 5 1498 554 5 19 1 155 4 1 1203 3981 1 1840 35 262 130 139 3 3272 65 27 228 20 55 26 53 29 11 1 2036 12 91 91 91 3 2 184 140 47 1 21 23 339 55 64 1 5886 2121 9105 8 83 55 320 1 344 4 1 201 1144 66 6 747 1581 91 33 100 87 235 5 5561 23 5 90 126 4884 207 34 1 85 8 76 351 19 9 753 786 875 14 237 295 14 23 63 32 9 2418 4 3563 55 45 23 70 10 16 2992 7345 83 87 10 751 5729 391 4 29 225 10 54 359 23 13 614 23 175 53 538 402 445 1816 237 138 68 98 841 47 2 2356 10 270 860 5 90 10 7 203 3 1 635 40 9176 13 150 419 9 755 376 39 16 1 1203 1 59 177 279 5046 9 37 404 13\n1\t11 196 10 1907 2848 1 8154 1 251 57 58 2771 5 1 502 1 145 20 37 5183 10 190 24 71 4742 3228 5 1 502 10 811 36 33 39 1337 2 754 462 19 2 131 37 596 76 99 592 13 499 289 2338 101 4518 30 1 5463 1170 1 3173 431 8 3 1 1234 4 1007 61 4652 15 34 1 374 27 7 1 3173 535 484 1397 504 51 5 26 52 5809 17 850 2593 13 6 676 1 6220 16 1 880 27 4011 1 2628 4 81 7 1 148 234 519 355 602 39 36 82 9082 289 36 3493 32 1 236 2 3018 41 1197 393 1298 13 92 121 1419 17 241 10 41 1 882 519 8758 11 4 1 108 9 131 3890 2 342 4 3299 3 12 89 200 1 85 4 1 7428 108 8 455 10 12 9588 664 5 5809 8 219 2 163 4 3747 1274 691 14 2 3474 37 86 2 1152 1007 57 5 2704 10 16 3622 843 52 104 310 94 1 251 600 37 10 247 2 900\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 482 135 53 1202 807 115 13 3793 9185 13 150 24 1130 174 425 3400 133 2 21 11 82 1274 14 3 51 6 43 53 121 204 3 1 155 2435 1167 16 1 119 6 53 7241 130 24 71 248 15 17 10 6 46 673 5 2323 3 100 10 6 400 19 447 197 78 1151 15 78 965 8010 52 88 24 71 248 15 1 250 807 45 23 22 288 16 146 5 99 15 23 231 9 7 20 1 18 3 45 20 23 76 24 1245 1157 140 110 193 9 21 6 223 86 59 38 755\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 2 91 525 5 90 215 596 230 1 28 177 81 24 1837 6 1 233 11 1 302 1 215 1196 132 12 3806 87 5 1 233 11 10 12 377 5 90 23 230 13 252 18 151 79 175 5 139 5 1 8 192 20 2 1332 574 4 2112 17 164 1 121 7 9 739 58 9066 1 119 12 2 91 6180 4 1 157 4 3 8 192 1140 5 24 57 102 719 4 50 85 3 50 319 1130 19 9 1772 8 128 112 1 215 3 76 87 50 113 20 5 369 9 18 2704 50 1062 38 110\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1915 23 36 4130 32 23 76 112 25 121 14 2 259 35 100 196 31 55 1173 7 157 3 5136 65 7873 200 15 3 29 1 166 85 679 4 2660 7429 7860 40 877 4 3877 671 133 122 3 5136 65 355 645 30 2 7 1 3 638 249 1125 1036 5 1580 7 19 345 7429 3 333 122 14 2 37 404 5295 5833 5 6381 1 51 6 679 4 3886 1794 1302 813 4571 3 313 21 2840 3 877 4 4056 2588 101 1172 5 1 3563 4130 7133 3 638 61 1485 171 7 9 21 3 10 12 84 1033 140 47 1 389\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 151 4428 3346 77 2 1134 18 6 1 111 7 66 988 4027 432 5 140 2 251 4 11 4338 126 5679 51 56 662 97 7350 4 449 7 9 21 16 463 919 17 1 254 7620 11 126 205 187 1 21 86 221 574 4 11 127 413 63 29 225 149 3099 740 239 6874 13 252 21 1008 3650 2049 278 3 229 14 530 1 344 4 1 201 6 89 65 4 193 10 6 9778 47 30 2 514 251 4 129 1041 642 1 19 1 3417 29 1 357 4 1 135 896 16 137 2127 776 289 65 4764 285 1 1433 5636 13 614 23 617 107 9 141 10 6 841 10 689\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 332 812 9 48 232 4 81 694 3 99 9 1233 50 1508 3 9482 112 10 17 8 90 273 145 109 47 4 1 974 183 10 255 778 86 37 2578 3 5801 17 1 210 177 38 10 6 1 121 8 2004 820 34 1557 132 14 9 73 1 9087 22 37 1974 3 48 653 5 1557 15 148 8 467 35 451 5 118 48 653 5 3047 120 72 118 162 38 11 1436 125 910 172 8 555 1 2982 54 256 52 267 19 195 15 1 4 1616 51 6 52 974 16 930 36 476\n1\t5390 5 1599 13 92 2009 4 1 759 22 452 218 717 4 20 3 218 304 22 1 46 1293 6 327 4095 13 6 84 7 9 21 308 702 5857 6 84 14 773 2154 3 1 535 635 171 22 34 514 9398 14 4387 14 1645 954 487 7 717 4 20 3 2657 14 1 5843 711 13 150 36 1 315 42 167 3876 10 276 2 222 36 1 315 1398 32 1 249 251 1 1410 8 149 1257 1875 28 4 1 1324 120 6 7399 77 2 482 22 56 4709 3 5675 8 39 112 6073 55 3288 6 1875 3028 6 7399 77 2 482 7476 3822 49 244 7399 7 423 805 27 25 5468 36 2 42 56 3654 2746 15 25 3865 842 3 11 13 3616 9 6 31 1976 141 17 86 393 6 169 565 1 74 269 4 1 18 22 162 6719 17 98 10 2 3284 1 2526 245 6 5128 207 50 580 4093 38 194 7 84 185 73 1 1139 177 6 2 103 105 78 16 79 3 93 664 5 1 392\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 170 81 139 5 1 3841 288 16 2 33 22 34 8389 3 2035 30 2 1184 3004 6 2 167 548 2833 1222 11 1523 79 2 163 218 1580 21 6 8100 3 51 22 43 53 469 168 36 7003 41 7 1 51 6 20 78 596 4 76 26 45 23 22 2 325 4 1222 104 187 9 2 203 2092 22 169 24 107 59 3 5009 9 130 26 174 302 5 64 9 837 47 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 3312 4 43 46 2318 8681 456 30 4656 4430 6 818 279 1 2154 4 27 266 2 232 4 3413 4070 7339 29 58 14 31 1883 25 129 6 46 893 17 55 1824 46 695 734 1 296 398 5881 5 274 65 1 6467 4708 7671 3 623 1851 84 2815 449 1932 6 109 201 14 1 4 2 17 1 1229 4 1 21 6 19 1 102 2 147 3 207 1 185 11 557 46 530 24 2 84 7058 2655 3 176 16 1 1678 106 1 67 271 2 103\n0\t25 3561 860 204 17 128 1523 4 25 817 502 27 1067 321 5 921 2 147 1854 5 25 596 11 54 5561 126 316 3 702 7 189 114 2 84 329 7 8840 3 195 27 4463 316 7 25 892 1109 140 9 108 17 27 40 1435 1619 411 7 1 121 3 226 17 20 1 225 38 60 276 56 1053 15 4099 4 66 43 4522 14 60 726 105 17 8 512 83 96 814 378 60 726 1661 10 6 2 53 3608 16 2 633 5 6381 1 580 81 883 867 9784 126 10 6 327 11 585 784 7 1 477 217 226 14 170 8 449 195 27 105 76 8512 890 7 3080 4 253 121 14 25 13 35 36 9 33 22 463 3073 41 128 175 5 139 155 5 6420 41 134 175 5 26 9644 7 31 4085 224 5 206 35 1 1480 2649 30 7968 703 7 958 27 130 3763 3 2221 1 263 5951 4 715 172 183 160 77 9366 13 8 83 36 5 1090 53 460 5 9 574 4 3563 502\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 763 12 2 35 1059 2 821 38 2 996 2 345 996 197 95 1700 27 59 405 5 1246 7 2 1342 106 34 1 1046 1 3012 1 1 1 415 22 1 59 800 6 1686 1 4128 1539 6 160 2302 3 2302 7 1 1342 4146 1359 5 25 27 6 7 112 15 34 1 415 35 88 352 122 7 25 238 5 7362 1 1342 29 1 182 4 1 2797 27 1136 411 15 1 1003 3229 3618 2626 7 1 700 1908 4 2498 2521 6298 6 939 27 40 2 5117 3 2425 27 76 390 2 1910 4 3 406 2 1 415 22 47 4 25 4706 17 27 6 198 2202 7 1388 15 1 167 3 1 3129 1 572 218 2015 9100 4 6 2 67 4 10 6 4690 17 20 2 67 7 1 3742 144 57 33 256 7 86 462\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2964 5 82 708 2941 428 8 24 5 134 11 1 59 53 177 38 9 21 6 1 233 11 28 259 7 10 485 2 222 36 1856 66 1385 79 4 50 9631 8 24 58 312 75 10 1196 95 3 292 145 273 2 84 934 4 991 337 77 253 10 10 12 34 14 1 570 5683 6 28 66 5276 4 362 3991 2118 1902 1 119 12 1 861 12 3 1 121 12 19 3459 15 31 1663 10 12 831 223 3 1 61 862 116 113 493 9312 15 116 4 1639 172 94 59 358 2584 4 101 2415 65 23 54 20 34 2469 1 113 4 2567 10 12 34 9258 207 7238 850 2056 3 1 1021 3991 3064 2445 12 438\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 684 589 32 206 1867 6 14 1698 14 33 286 51 22 529 4 1935 664 650 5 1 4197 4 460 1215 6403 3 626 763 6065 6094 444 2 5771 35 173 899 926 244 3 2 63 229 497 1 6161 1260 4 3813 821 7838 954 138 6 37 10 19 3 1 644 1043 6 2 5594 17 42 128 2 9258 51 22 58 5 686 1636 1958 1 5105 6 39 2 16 1 112 3 58 148 193 1 120 22 7023 2 222 3 1 951 22 224 5 31 240 1 3177 6 1011 76 149 10 832 5 127 102 120 2005 2 749 393 3 1 572 511 56 26 3476 95 82 699 7568 32 4577\n0\t215 12 20 2 91 3292 17 60 12 2 3837 454 60 26 1286 94 2455 172 4 44 157 5 2 6212 161 287 3 2 3 60 338 5 3 60 433 44 9 28 12 202 105 53 5 26 3040 9 12 100 52 1649 68 7 1 2281 4 1 18 106 1 7344 57 515 71 133 1272 28 105 97 4352 13 33 1241 1 622 4 1 429 3 42 105 1264 51 12 58 395 752 4 4545 603 2247 1114 7 1 215 51 12 58 3 51 12 58 51 12 93 58 4 1 215 3 4545 6643 1436 7 400 264 3635 127 1241 1 67 111 105 1264 8 83 118 704 1 1278 4 9 18 130 26 1096 4970 2538 58 1534 2530 9 990 41 704 33 1140 1623 8026 70 50 1 60 88 22 20 146 5 26 13 659 4641 369 79 39 597 23 15 43 911 32 1 215 2917 4 1 736 16 3378 130 26 5 1 9743 3 1 2435 15 50 430 18 4 34 85 1373 1943 58 5123 32 9 5592\n1\t0 0 0 0 0 0 281 190 39 26 1 80 5661 1486 155 7 85 217 140 85 5 49 1962 2113 418 2 1486 5 155 217 3194 217 217 217 224 217 34 487 217 55 1 510 105 140 217 2086 1 1967 326 4 5914 374 2156 2341 4265 217 1 2918 2391 4 1 433 205 1 147 217 161 22 48 9 46 131 1 5 14 109 14 1 217 3167 5914 658 2806 594 5914 658 594 217 55 1 776 3146 4155 300 55 82 188 7 189 217 660 1 4027 39 863 19 866 19 217 19 217 55 660 1691 217 14 109 14 2231 14 72 70 6921 7 5577 4 72 118 11 783 881 217 37 195 10 10 55 52 8813 16 199 5 56 70 195 7 9597 4 205 49 783 1305 3678 460 14 411 19 3 1 2918 2837 14 109 14 49 19 2 1967 431 123 105 3 5 2209 34 4 1 82 5661 4 34 1 217 7279 120 14 109 642 1 3 3167 5914 658 2806 594 1 5914 658 7481 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 2 2 5065 3 2 84 431 4 8097 32 5 3904 40 89 2 731 8694 32 2 3033 2901 35 12 1893 4 2 8246 5 2 2997 2190 36 1504 748 1923 25 1676 5 25 156 336 4449 1578 5 552 1 212 7724 9 6 20 39 2 3765 67 38 3 9 6 93 38 6916 835 52 731 7 727 2 2869 16 8 87 20 175 1 251 5 769 17 8 449 1 767 76 3806 1382 5 48 2028 289 197 95 9965 3 256 2 53 182 204 4 2 360 477 4 13 659 9 2541 245 72 130 24 107 52 2964 189 9174 3 1 4894 3555 460 130 187 10 227\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 9 12 28 4 1 210 104 8 24 117 6870 10 12 37 91 1024 11 10 12 2406 50 493 3 8 1150 10 73 10 485 37 565 978 161 203 2092 22 198 53 16 43 4267 1 119 43 4 1 3079 61 1 538 12 17 8 273 57 2 7759 133 1027\n1\t2193 17 15 1 1085 4748 4 1 1368 8528 4411 5 5 652 44 1845 3 4883 2683 818 7 44 2168 27 8150 3 44 1565 277 21 15 1487 4 27 1036 5 99 1 3 2033 11 8528 57 1136 1 277 559 3 34 4 126 1436 7 1697 406 4883 2615 8528 6 2 1897 3 1193 704 8401 41 122 76 26 44 5000 2638 6818 115 13 92 7822 218 3697 6 174 2313 865 4 776 6076 7 25 4273 1 67 6 5211 30 31 313 1106 11 1123 3403 5 2031 1 1560 2920 5 1831 2313 278 4 7 1 280 4 2 4756 5514 3 1528 5785 1 5836 6 1089 5 4247 36 7 97 1827 104 11 3684 1 1205 356 3 2717 4 1 4680 51 22 1669 971 11 333 1044 1349 4 413 5 5912 62 245 776 6076 1123 1 1349 4 4883 14 185 4 1 119 3 100 41 3078 47 226 17 20 1 1 1212 4 1 1494 1080 2589 5 44 280 4 2 287 11 2 1040 7713 50 2400 6 13 9267 5745 7428\n0\t3576 5 216 19 1 6 10 888 11 62 112 475 615 86 334 7 1 6 10 1458 11 62 1151 270 31 9820 13 499 6 46 2065 5 149 47 11 1 1300 189 1 102 250 647 3193 30 3 7260 123 20 916 1 733 1419 1 3532 3 4602 7854 193 2 129 1074 5 3001 5 4520 15 1 2380 3 2838 4 44 308 609 129 93 10 6 254 5 24 2845 7 2 129 66 101 1244 17 3 1123 169 832 3 2985 2 129 4 2 5181 426 54 373 2465 7680 1824 193 27 276 1528 7 2 1165 27 181 46 433 242 5 149 1 8002 234 4 2 161 189 2 1503 112 3 2277 5 26 306 5 2085 115 13 2692 133 1 102 19 1 412 6 20 1907 62 733 228 24 71 1305 17 10 6 52 1458 48 2 3 2 8698 22 197 2 237 32 148 9906 1687 39 1991 20 343 9553 10 6 46 747 11 132 2 1187 4 31 240 263 3 53 171 12 590 77 2 4005 855 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1214 8 785 23 34 609 74 109 145 20 273 48 21 23 34 219 17 10 191 24 71 2 264 28 5 1 28 8 7031 84 4047 41 1314 53 124 4 95 870 24 120 23 63 241 7 3 9 21 57 1 121 12 345 5 134 1 225 3 8 339 474 364 38 95 4 1 647 253 1 212 21 5370 1 67 12 105 184 16 1 1350 3 436 33 130 328 62 874 29 253 826 5 249 402 445 3160 36 23 64 19 137 41 19 13 45 23 22 288 16 2 53 158 2 84 1214 41 55 39 31 837 594 3 2 5818 786 176\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 181 5219 124 22 232 4 645 41 773 15 80 7645 9 21 76 26 58 1675 5 11 4600 3591 1630 14 2 967 5 32 1 1229 9 85 6 19 4729 379 1944 5 7842 30 1 198 3224 2872 35 6 101 30 4103 38 347 38 34 4 25 7 1 4 34 4 490 4600 741 65 19 31 15 1644 1 21 123 70 2 222 224 7 1 330 6869 45 819 71 2 325 4 5219 6876 7 1 2747 9 6 28 20 5 26 8090 16 1 6876 74 35 40 59 455 4 25 21 253 23 228 175 5 841 47 25 1188 124 183 605 19 9 28 2166 45 23 617 107 8 8278 1 443 29 268 1385 79 4 732 362 164 1796\n1\t3 57 84 1300 14 578 3 7505 33 57 277 3 12 1 17 1410 585 35 89 65 16 25 551 4 15 1703 3694 9643 12 31 9838 2437 282 35 12 1506 8787 15 492 12 2 774 583 35 12 19 1055 1636 3 12 7095 5 390 2 13 659 1 1278 89 2 568 2082 30 6375 294 1345 848 142 25 1223 9 56 1241 1 3 20 16 1 53 8 228 1 289 1647 5 1229 52 19 3 25 2813 66 315 902 14 109 14 251 376 9307 35 303 94 1 398 4207 378 4 2 131 11 2665 19 1659 7465 1636 11 6319 7 1342 29 1 387 902 165 289 11 61 15 3889 3 2253 13 6406 9307 1 538 4 1 131 3126 55 1129 292 10 12 128 7573 10 12 58 1534 1 84 131 11 10 308 5265 13 3422 9307 310 155 16 1 9795 4336 10 726 631 11 1 131 12 19 86 226 34 2324 741 61 3353 65 285 11 1022 3 1 131 5895 8917 142 1 13 2409 277 6991 226 277\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 191 134 9 18 6 323 491 3 8752 6 37 1515 3 1856 20 37 91 10 6 37 1316 133 735 7 112 3 10 2296 50 683 3 286 50 683 29 1 166 85 133 3544 735 7 112 15 618 10 6 55 133 75 78 27 3457 16 8 191 920 193 8 114 232 4 175 122 5 735 16 7 1 714 10 6 39 37 1257 133 44 735 16 122 8 114 20 175 44 5 70 44 683 2415 37 8606 17 1 1003 2432 8 24 117 107 5562 7 9 108 133 122 1288 89 79 1717 16 2 212 1393 8 39 88 20 241 110 618 100 2 52 2083 733 40 71 620 7 2 18 98 8211 3 33 56 63 90 10 140 2357 8 192 685 9 18 2 1709 73 8 143 175 3544 5 1288 17 10 12 128 28 4 1 80 491 104 8 24 117 575\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 135 10 1196 1 690 1707 125 37 11 190 348 23 146 4 1 3593 4 9 135 8 192 288 19 1 3480 75 5 639 9 18 220 50 1081 6059 1 4 9 21 40 71 5212 16 2 156 172 195 37 8 58 1534 24 1 1617 5 4190 1799 32 550 8 54 112 5 24 25 59 50 64 9 158 14 109 14 5 1369 9 360 67 19 5 25 50 6005 752 12 1756 172 161 29 1 85 10 12 3246 19 756 3 8 220 24 71 288 890 5 283 10 702 28 4 50 417 367 10 12 44 430 108 8 495 9 18 16\n1\t222 49 60 5708 44 115 13 2 1519 82 188 39 32 1 111 8698 3019 65 319 15 25 5 1 111 49 60 2092 874 295 32 44 5 1 111 196 1 3188 3 720 32 1 613 2046 577 1 3877 6413 7796 361 3 55 1 111 1 2046 1986 25 36 244 71 403 10 7 11 111 7 11 974 16 97 982 19 1270 7838 6 5394 1047 15 453 3 1016 2946 4 1 1344 132 14 1 1 914 5 1 47 19 1 5339 1 361 3 1 3385 334 1899 25 360 9357 13 19 1270 7838 6 93 28 4 1 156 104 55 193 1 120 662 3454 23 87 474 38 126 361 436 73 33 24 71 595 30 62 7 1175 11 22 254 5 1899 14 2 3 3470 14 2 287 35 40 2 3284 49 127 81 5077 2 103 52 955 68 1397 7093 42 7 426 4 821 1175 11 90 10 291 317 288 7 29 81 1397 100 1286 830 361 3 286 23 118 11 33 22 888 73 1 171 90 126 37\n1\t503 3 1 393 6 1069 34 1 120 22 169 42 167 772 288 17 1227 46 109 1716 3 136 10 123 20 24 1 1234 4 1076 23 54 504 32 2 2413 3672 2493 10 123 227 5 359 23 4171 1069 28 4 50 430 529 7 9 21 6 49 2413 3 22 372 200 15 2 7850 3 10 271 9 6 31 845 855 2413 3672 2493 664 5 1 885 3 84 2106 618 82 98 11 42 162 1111 128 42 109 279 1 1 593 6 452 2413 3672 123 2 53 329 204 15 1195 443 1093 885 3407 3 2202 1 21 29 2 884 1428 16 1 80 2482 1 121 6 46 2413 3672 6 491 14 3541 3 6 491 737 27 6 483 8308 3654 14 692 123 43 1184 57 885 1300 15 4446 11 3 262 9 360 919 27 12 8 39 4318 33 54 582 3710 3672 6 211 14 113 2540 8 56 338 849 27 6 93 2 46 53 1563 344 4 1 201 87 1233 8 6528 790 109 279 1 7568 47 4 715\n1\t891 140 25 3406 15 2 859 3353 5 194 667 3093 76 26 115 13 4052 2307 1 1557 6955 1437 106 22 1 559 27 1783 16 6884 4 611 42 1 35 339 73 57 209 77 1 6139 9400 126 3 3353 126 960 43 1 799 345 561 7043 65 1 1969 3 3908 1352 230 2 654 784 47 4 2 1085 7 1 974 3 122 72 398 149 47 11 25 22 235 17 656 195 127 24 5 934 15 1 11 22 588 30 1 429 16 561 13 2361 4 1 8508 36 3 22 355 2 222 2195 17 43 4 126 76 1308 45 8 64 126 2226 1287 8 198 539 29 242 5 26 2 14 27 123 204 15 561 7 2 382 3484 15 2 1896 443 1 634 27 1275 19 49 244 6 198 722 854 12 37 53 11 8 143 438 27 12 605 1 84 8779 13 61 198 84 7 1 1430 1025 7 66 2837 41 41 205 22 3889 126 200 2 2168 207 1 226 1721 269 7 675 29 984 132 14 9\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 338 9 21 2 3284 42 2642 42 20 2 116 1568 238 108 2 163 4 1 120 6316 3 5829 22 1609 1204 1 545 5 209 5 62 221 42 327 5 64 2 18 106 1 206 2378 1 545 5 90 65 62 221 13 659 1 769 30 112 41 41 2 2277 5 69 27 123 48 27 811 6 851 117 5062 199 16 48 2224 69 42 20 2 1193 6716 413 63 1836 69 37 27 123 48 27 811 27 40 5 1690 48 244 53 6052 48 244 71 4853 5 13 2647 6 2 84 353 69 8 1582 173 96 4 28 91 18 244 248 69 3 244 165 2 84 607 1440 8 54 1517 354 9 18 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 1 232 4 18 66 289 1 4 710 616 49 10 255 5 253 2024 2277 5 6 37 7755 11 23 76 20 26 6038 2 23 24 20 107 2 1235 506 18 220 13 7846 976 2475 883 28 3 2 23 76 119 52 2985 68 6 20 2029 15 1 1 1230 763 2 342 4 172 168 15 25 3523 379 22 377 5 26 2 16 1 1286 1762 1190 4 1 344 4 1 738 1 210 117 2 112 178 189 126 3 2 2637 5 70 2 9635 2042 3 1826 5 6381 1 568 5704 1330 3 2271 30 2 1414 35 88 90 2 327 2729 16 1 56 1 5494 4 1\n0\t2108 5 4813 77 98 2 3115 29 2 558 21 7617 69 475 8 88 64 9 158 571 195 8 12 14 161 14 50 1007 61 49 33 5 64 13 92 59 302 9 21 12 20 5 1 4 85 12 73 4 1 524 30 86 2125 4228 3367 4 81 5 9 517 33 61 160 5 64 2 447 33 165 679 4 4 3679 7 2518 8050 1105 447 168 15 6929 7540 13 5326 5926 9 177 1220 9458 194 4874 194 98 691 1 7 2 466 13 128 5 149 1548 7 86 509 5001 1105 45 10 1121 16 1 10 54 24 71 98 13 1 1352 192 462 12 2494 16 172 14 2 16 4717 124 669 192 69 16 1040 581 8 192 315 69 16 581 3 154 764 172 41 37 1 177 7512 32 1 2927 5 26 2111 30 2 147 3157 4 35 175 5 64 11 447 11 1 21 13 925 36 1 45 23 191 64 10 69 760 1 388 3 884 890 5 1 3558 39 5 70 10 125 8340 13 3382\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 381 110 7 5396 145 20 2 325 4 1545 3 17 8 87 36 145 93 5 9258 3 1 4898 8 284 16 17 49 145 507 41 56 8 99 249 217 104 5 9210 7163 79 5 87 1943 11 151 10 2 1246 7 50 8 143 55 1243 295 5 87 146 422 136 10 12 704 41 20 10 12 1274 14 8104 41 20 153 56 729 5 437 3 1453 145 20 2 779 192 8 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 2 222 7802 207 38 592 13 92 3463 22 2843 3 5222 571 16 1 233 11 43 4 1 22 17 207 1 344 4 1 3463 22 68 3 97 82 8466 1 981 22 297 32 1 1874 5 1 22 2273 3 13 92 443 5105 6 2 222 7071 29 984 17 42 1 166 16 154 8838 3699 36 3 2344 13 150 165 9 562 14 2 1075 1124 7 3 220 977 8 24 1866 460 125 394 1287\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 79 37 78 11 8 99 10 29 225 308 2 2463 29 268 8 149 10 29 268 8 149 10 3 8 198 149 1 120 423 3 3015 10 6 2 18 11 289 23 1 3022 864 4 157 7 1790 15 1 5462 1776 3647 16 1 8248 37 542 5 1 2116 486 101 3091 19 30 1 807 10 6 93 2 18 11 289 23 75 1 4 2 3421 63 720 116 157 3 23 5 90 2 9484 1751 7128 1523 23 11 154 238 23 704 1576 41 1375 40 1127 8 214 9 18 5 26 696 7 97 1175 5 626 21 386 205 57 2 4 1080 201 171 217 1624 3 205 104 1747 23 5 4723 64 75 1 1 120 15 28 174 3 4732 239 1885 16 138 41 2194 1751 7128 114 2 138 329 4 3858 2 6527 7 1 543 4 68 158 292 8 214 126 205 1930 7 62 221 699 9 21 6 2 3714 191\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 5245 8 88 99 9 18 154 3175 4 50 157 3 100 70 1415 4 1027 154 1329 4 423 1900 6 2151 37 9660 30 1 505 1 1252 1 2132 3 1 940 507 4 9 108 42 71 2 223 85 220 8 159 2 18 11 152 89 79 32 9670 4951 32 3 230 239 1576 507 11 255 140 7 9 80 313 72 321 52 104 36 2014 22 23\n1\t8 303 1 8531 242 20 5 369 261 1861 814 49 8 159 10 316 195 7 8 563 48 5 504 217 1 61 1578 217 14 62 3021 799 5224 9 85 8 12 29 13 1118 8 1808 2299 32 50 7670 41 436 1808 1887 73 4 194 12 1 1813 5115 4 9 108 1 333 4 3139 66 348 37 78 67 197 5 3251 1 443 216 66 384 5 334 1 5277 371 15 1 120 7 1 1361 96 4 1 567 49 988 6 7923 1 1170 5 1 1 443 9410 516 1 287 217 583 1157 19 2 7 1 1 1170 1361 115 13 92 67 2105 217 1 120 69 747 217 4769 3015 10 6 46 1462 5 26 1366 37 4441 77 2 423 589 132 14 9 15 81 80 4 199 54 1458 98 805 988 217 88 26 95 4 2533 191 24 71 49 8 159 110 8 2209 11 655 1204 1 2114 8 12 5 149 1 1404 4 2567 34 127 172 1372 145 1096 145 20 818 9 6 28 898 4 2 84 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 31 1485 1125 86 48 1668 76 100 1718 19 1 2392 22 3715 1 927 6 3715 1 1830 22 3015 15 155 14 2 141 65 34 1 2324 9196 10 12 53 5 24 34 1 1671 155 2193 55 2 156 11 2021 295 131 65 134 1 857 12 884 6560 931 3 331 4 1 1343 1 251 57 1679 7 3 1679 689 600 157 19 1 3201 589 29 86 715 4085 65 3 34 656 1359 8488 16 685 199 1 475 72 143\n1\t1 847 6 248 15 2 1343 68 7 1 1139 1199 1660 3145 276 78 36 27 40 1704 17 195 27 784 595 364 1 2097 8478 2549 40 71 3546 30 1 364 52 7670 1542 6307 13 14 3708 1 672 4 1982 138 68 80 414 238 7540 13 114 2 78 52 547 329 68 8 12 13 858 7 1 414 238 1982 581 1 18 486 41 2180 370 19 1 538 4 1 50 3931 9996 1 6 675 25 2217 6 68 10 40 1478 1704 52 5 1 8507 1103 4 1 68 1 1954 1103 4 638 6 1 425 1412 16 1 6026 1 6 475 1012 14 2 39 14 27 80 784 7 1 672 2182 2 809 78 52 1201 68 1 5684 324 7 217 3 2958 1982 40 2 7464 948 5 1472 1 155 7 2948 6 48 1421 3410 94 1 3891 5 1 948 6 2 7906 13 92 868 1583 5 1 1355 4 1 108 10 981 36 2 1541 189 1 868 32 3 1 868 32 34 7 399 42 52 548 68 116 855\n0\t0 0 0 520 4598 666 9 6 2 3 11 7860 6 191 24 1852 9 18 15 146 1939 7860 6 3 3 5670 14 3708 608 23 63 830 25 3312 4 1 427 3260 1 4 22 37 1423 33 24 5 26 3091 30 2764 1974 3 2431 1431 9 18 52 1 857 2105 31 15 7860 14 2 8262 6059 35 432 3318 4 613 17 63 924 5608 1 4 514 6 548 1509 17 10 40 1 166 232 4 6118 1267 368 2794 11 132 1165 14 3 407 1 801 5276 16 2 9244 1024 7 25 7860 440 5 734 43 1384 5 25 919 10 6 34 16 8 192 31 2093 9524 1787 17 9 6 3 10 6 28 4 7603 296 9131 2130 97 4 1 2816 11 54 6825 25 9524 6 39 355 25 2919 5472 737 3 89 2 604 4 124 125 1 398 764 172 318 27 3538 2660 15 3 645 25 199 15 132 14 11 2617 19 1 3 4 17 7 6 924 25 113 216 608 2 2831 1879 1971 15 978 748 3\n0\t2814 8 24 20 107 1 1143 4 9 220 1 362 49 518 366 1049 18 4 1 1679 383 10 276 36 2 91 1902 9299 3 11 6 2709 10 2 43 4 1 171 187 10 62 113 3812 492 7080 123 1976 15 48 27 6 340 5 1690 66 6 5 634 36 2 447 9716 47 4 7130 8 173 134 11 10 6 2273 5 4578 13 14 1 4920 7 2 4355 16 2060 1 389 158 15 46 103 8954 7 443 8 173 2818 44 16 275 6341 345 17 60 6 400 1698 7 44 1174 44 103 282 672 557 421 44 675 3 8 1064 512 2 3123 60 6 407 3 17 444 1137 44 2552 15 2938 13 776 6 154 427 60 1510 6 15 277 5011 275 191 24 470 44 5 2703 29 34 4484 144 54 492 7080 175 5 24 447 15 132 2 13 8568 14 1 4502 379 255 142 2054 3 229 1 80 1202 4 1 17 11 6 20 667 5915 13 252 40 5 26 1 210 21 8 24 107 7 982\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4985 646 26 10 6 20 610 2 17 23 2004 70 2 154 4514 7 698 23 88 64 6474 4 6965 197 50 7 9 108 245 14 80 104 3137 9 28 12 2 628 109 2970 3 109 1613 14 3708 5162 5 25 17 34 508 22 5376 37 38 159 44 94 2 223 387 17 60 1336 433 95 4 44 7 698 60 40 3193 78 138 11 49 8 226 159 768 174 28 4 1 2855 460 11 291 5 2323 52 304 14 33 13 1601 7 399 2 327\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 462 3 7753 5119 9 6 2 167 53 161 5500 2555 8297 203 3323 7 1 769 10 190 182 65 59 101 1 2516 3762 4184 4 218 3255 207 2 167 1589 548 42 93 165 2 4 2 119 2 46 7822 1700 4979 9 6 1 232 4 18 11 172 32 195 81 76 1236 518 29 366 19 1048 2240 3 2545 1 47 4 730 133 110 105 91 206 1037 7753 57 5 139 4158 411 5 2 2710 4 2 53\n0\t1 1263 1799 66 8634 72 406 57 118 111 4 1154 66 1343 54 551 1 869 5 2783 55 45 27 88 1680 147 717 3160 2102 3378 67 190 20 26 2627 17 42 48 8 3 76 187 3330 537 395 397 6 8 29 1 1418 11 5458 22 2020 5 2672 4505 66 6 426 4 2627 7 11 1 1205 4 5732 966 12 2020 5 2672 1443 69 17 34 2839 7524 19 1 57 881 223 183 1 74 2630 3 1 4 801 204 36 1 7946 61 32 5458 1694 30 13 1627 1 243 3336 2522 13 858 396 14 1343 7276 6484 14 692 14 193 244 165 2 91 7003 69 3 42 20 11 27 4094 41 55 75 27 42 48 27 1567 66 7622 55 9960 45 5887 68 3340 3 66 478 14 193 33 34 24 610 1 166 4317 2243 8 12 2709 542 5837 3 12 446 5 11 33 229 45 59 7276 3 1 88 24 4258 65 16 2 938 41 4069 1 18 228 24 71 1747 5 186 86 306 1669 3 243 68\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 885 718 4 9 362 3782 1556 4 2001 6058 12 99 9 3 348 79 45 7604 3941 9263 143 186 5167 183 253 25 1 764 3111 1 406 1242 31 312 11 229 136 1673 1 1884 7029 7 9 135 596 4 76 149 9 21 5 26 2 15 9167 3493 4 30 1 2391 200 949 100 40 1 423 9316 5 5682 71 37 1 233 11 9 12 89 49 10 12 289 20 59 1 76 4 1 17 4 1 1132 2449\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 190 20 26 1 46 210 18 745 6146 117 114 669 96 11 3745 271 5 218 6854 4 17 10 6 1416 1 80 258 3452 14 5584 276 36 27 40 39 14 2677 27 276 924 138 3 2731 80 4 1 21 1543 1 1675 4 137 3713 1577 168 106 27 196 15 19 1 4 457 1 4073 4 34 11 1 607 2274 93 176 1455 3 549 2563 3 6765 1761 6 2973 55 197 25 1829 2326 5 3075 2437 9 54 26 28 4 1 226 268 2 580 1729 572 54 2074 37 1104 4077 16 11 3683 376 2 14 1 21 181 1317 4543 15 1667 3 748 69 55 1 3568 604 29 1 182 276 59 1 1528 3552 3 1 9246 4917 259 35 70 25 8666 5472 734 95 4 157 5 9 747 9781 34 7 399 9 21 1745 31 3664 4 2 84 2214 3 31 55 4 25\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 8 139 5 64 104 8 54 875 65 3 99 10 41 45 8 114 20 36 194 8 54 139 17 9 12 1011 4419 8 152 165 65 3 2117 12 775 263 3 256 2193 8 1595 110 896 33 130 20 24 556 6205 1237 27 12 78 828 9 12 20 14 53 14 8 57 5627 1078 11 8 56 338 690 4 1 3721 6449 3 1 3463 1121 14 53 14 1 74 628 16 2937 1 3 49 117 27 7 2 8 449 11 1 206 4 9 270 3 398 104 27 27 693 5 8 56 54 36 5 187 2 329 109 2427 14 60 89 1 18 4211 8 2117 8 187 9 18 2 358 47 4 394\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 12 109 248 7 34 1 121 6 1016 385 15 1 514 5070 1077 66 8 4323 73 10 12 37 6270 10 6 50 34 85 430 18 1929 4 9 18 6 311 1 6837 13\n0\t2 531 2911 18 11 40 58 393 5 1271 2562 449 8 497 69 41 1 5228 4 449 125 4458 14 33 3051 906 9 6 2 1238 260 32 1 477 3 8 563 194 17 36 2 5 1 8 721 517 3393 3128 240 54 3109 10 8143 34 4 1 171 187 2 547 278 69 340 1 1252 8 83 118 75 33 34 721 826 9639 10 40 146 5 87 15 3107 35 22 1633 605 125 1 423 8840 28 823 29 2 290 236 31 510 3928 35 15 1 4334 30 685 126 1 1635 4 27 196 835 588 5 550 1 81 730 83 56 118 106 33 310 7178 33 96 33 228 24 2 2062 19 2 8663 11 6892 19 4482 33 118 38 1 1144 4 738 126 69 1 2879 40 1180 5 7415 15 2 423 101 35 789 11 444 1 2201 3 1371 44 16 44 191 8 139 3402 8 1259 87 20 351 358 719 4 116 157 133 54 26 4 1 5867 225 837 111 23 63 1017 102 54 26 138 68 476\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 131 40 2 84 42 46 2 379 2180 3 27 2004 186 474 4 25 537 818 37 27 2307 19 25 711 7 1800 25 113 493 3 97 508 209 406 19 7 1 880 132 14 3794 286 627 1238 600 3 2822 35 23 63 149 47 16 725 669 83 175 5 2600 10 16 3 4 395 6008 4 17 1 374 22 360 854 9 6 1282 2257 3 5744 74 472 3 93 23 190 118 5850 32 289 36 3 207 37 8900 266 1 112 446 750 583 35 811 303 689 56 9 6 2 46 53 8147\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 89 79 2655 10 90 2 3 80 4 34 10 40 648 1804 7 9869 9 18 130 26 107 30 34 2329 4 10 6 28 4 50 430 484 3 8 39 112 10 37 78 11 8 39 57 5 878 19 10 6 37 683 343 3 2 360 857 11 151 65 2 84 3 7574 430 129 6 9 6 73 8 96 11 27 6 1 80 240 3 6930 8 314 5 24 2 2101 39 36 8 773 122 37 27 12 50 113 493 3 8 563 11 49 27 8983 27 54 26 7 2 2416 17 8 773 122 15 34 4 50 9 18 6 1 113 8 112 10 3 307 112 116 58 729 48 33 1690 126\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8367 1214 32 206 742 35 181 1517 7 1 870 136 2202 34 1 692 2515 362 2839 2075 2 3346 2 5852 2 635 492 3 55 2 633 954 1317 562 308 1 22 47 4 1 111 1543 1 961 125 704 41 20 2 287 130 186 9 432 2 1002 6712 193 28 66 2296 58 147 2435 2887 378 4831 146 32 2142 45 391 40 8348 3 2 514 1249 286 1 4 1 119 70 7297 243 6727 6621 32 3615\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 193 10 40 28 4 1 1446 2154 9 21 6 50 430 4 4346 916 40 11 538 11 6 1156 7 37 97 203 21 49 23 99 194 23 230 16 849 23 230 25 1 421 849 3 23 7158 122 19 49 27 271 16 55 193 27 23 2 103 15 25 215 14 1 21 271 926 25 129 432 244 3030 25 3273 17 195 27 191 564 5 1203 11 960 3 316 5 1203 11 28 960 3 116 3954 15 25 1898 14 10 271 224 86 36 133 2 2810 711 473 77 2 55 45 1 1489 67 6 4 2195 1 119 7069 730 22 1123 25 4156 5 564 7 52 3 52 5583 3635 2 1152 9 28 213 1492 16 408\n0\t12 20 314 2882 774 86 331 5589 10 12 2 84 3486 17 286 174 1130 53 312 271 6210 10 88 24 1168 535 264 1678 17 10 39 721 160 19 5 2 650 961 368 1905 3 48 247 961 12 248 37 955 11 10 143 3821 1 393 12 20 279 133 29 513 5430 12 47 4 44 1656 3 130 875 295 32 127 2514 4 502 1 18 485 4847 4330 1 18 39 247 56 279 3 57 8 1390 16 10 8 54 24 71 46 300 8 12 52 945 73 8 909 2 56 53 18 3 165 2 91 461 1 18 125 34 12 20 573 17 8 511 110 8 419 10 358 47 4 394 8 338 1 312 37 78 3 8 114 36 28 129 8 6020 1 1500 1831 3 10 93 57 43 46 772 1175 5 1203 119 9665 10 12 36 242 5 1203 2 15 772 10 12 20 1441 45 23 64 194 947 16 1 856 41 3481 1013 23 36 167 78 154 18 23 2198 98 8 497 468 36 9 461\n0\t265 5 62 124 3 3673 146 38 1 120 7 450 7 2924 4 86 221 868 954 2053 4 7768 4959 142 3 6351 6430 4 102 100 3316 7 403 3230 13 659 4641 1 312 4 2 5200 112 67 189 31 3 2 1410 282 6 2 53 628 17 86 3225 7 6430 4 102 6 1634 7 97 3178 10 6 2 1152 11 2 67 608 66 80 21 971 16 7779 1318 54 2923 5 925 608 114 20 24 4190 52 1244 11 2 263 66 171 54 24 12 20 11 1041 35 61 3030 5 62 185 41 57 1 860 5 90 62 120 3715 88 20 26 3 11 1 206 8227 1018 114 37 78 138 15 124 36 3 114 20 24 5 76 5 256 25 2749 224 3 867 72 87 95 8272 72 191 1 112 67 3 1 1 59 4055 6 11 28 326 31 1244 21 38 31 3 2 2901 282 1424 7 112 190 28 326 26 1001 45 132 2 21 117 9 10 76 26 1416 6952 9208 3 1389 16 97 172 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 8 1281 1887 1 3906 3 1129 42 28 2754 94 2877 42 169 631 75 9 18 165 86 2899 6 3534 95 2097 1513 117 70 216 73 27 266 1 166 1054 1223 1 6 39 2 5998 16 9 46 223 8 173 241 9 18 12 55 1050 16 2322 4228 1 1534 23 99 9 18 1 52 317 2692 16 307 4758 1 59 1681 2084 2278 6 3147 5433 3 1072 35 196 202 58 412 85 14 145 2692 8 219 1 212 1606 8 54 354 8617 9 5592\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 1140 17 8 143 36 9 4976 46 1264 8 63 96 4 2 1519 1175 10 88 24 71 828 1 81 35 89 10 515 83 24 78 5553 1 3679 662 46 240 3 58 148 3122 6 1 1131 213 7720 7 2 46 744 1497 42 105 91 73 9 6 2 18 11 56 1071 293 9610 28 177 646 134 6 11 196 52 304 1 972 60 34 9 59 196 2\n1\t46 103 994 1670 33 187 126 2 243 5410 1261 3 39 369 126 26 124 132 14 352 3 3297 3274 22 738 1 1340 14 23 64 1 1161 770 41 8006 2168 204 7 2124 1093 80 4 1 21 6 7048 5 127 82 102 3 6607 22 3 1017 80 4 1 21 242 5 2843 2 1184 283 6607 735 140 1 1 1161 253 1 429 2 900 1378 3 1 2896 4 3328 34 216 371 5 90 2 46 803 13 2298 7 31 1164 51 6 93 2 56 1021 4389 11 792 3 741 1 108 10 181 11 1 3028 6 323 2 1341 1648 3 27 6 770 19 2 2441 5 90 188 518 7 1 158 23 64 122 90 2 77 2 3 55 2 77 31 340 11 27 98 844 1 1161 818 7 1 5331 6 10 95 1197 48 629 136 9 4389 12 10 1066 109 2160 48 1066 4415 109 12 1 750 187 1 1161 162 1303 5 87 3 468 26 2275 29 1 892 9056 28 4 1 138 124 3 10 202 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 130 24 2071 1 1748 1570 16 9 1835 3856 86 2 1004 11 27 114 1265 491 75 27 2 1086 4533 1223 115 13 6973 114 6773 2 1748 1570 16 44 1663 7 698 34 4 1 121 7 9 21 6 13 92 119 792 15 2 7218 98 31 6591 98 863 866 19 31 931 2062 11 76 998 116 796 2880 23 76 26 13 2298 9 6 59 2 4282 1902 8118 23 228 637 10 1 2059 73 1 121 37 1517 125 1 3531 8821 4278 109 4454 17 3806 740 86 1902 1818 8 511 55 637 10 2 3842 3798 14 41 4 136 20 9019 1 84 1033 1548 4 9 158 23 63 59 830 48 9 964 201 3 206 228 24 4013 15 52 8311 915\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1150 10 73 1 330 3663 79 14 2 103 4163 8 56 362 28 544 133 3 1 4509 79 452 9 85 2701 8 128 381 1 292 8 339 348 704 10 12 16 5661 1318 41 45 10 12 152 2 53 3752 1 82 102 4313 61 528 3786 8 173 241 2 1840 1339 5 90 9 8856 34 180 4368 30 133 9 12 5 2704 28 52 2113 8708 358 76 195 2612 738 50 1307 4 2113 8537\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 61 127 81 2 1541 4 710 1491 86 167 331 19 16 2 4215 217 15 2 222 4 3069 265 217 1430 168 1256 1356 86 981 1184 217 86 55 52 37 5 836 10 385 7 2 3240 2753 16 169 2 98 2 123 2 287 7 1165 4099 5 549 142 94 194 60 271 77 1 1692 106 60 6 274 655 30 31 3638 5 2 164 7 2 8 256 10 36 11 14 86 631 1 6 7 4383 217 196 111 105 78 412 387 16 1 80 4 194 1441 7 2 10 498 47 60 338 2 222 4 217 1333 38 194 1 344 6 39 2 21 89 5 1965 217 1826 355 3475 2354 95 7881 6 53 7881 8 351 4 85 1581 17 1 40 5 26 107 5 26 86 254 5 830 11 261 179 10 12 2 53 312 14 33 829 2420\n1\t8918 211 112 471 1 3 1 22 3226 7 31 1101 4305 7 147 4889 33 22 93 29 4 1 1600 62 537 22 201 7 1 466 871 4 2 1908 397 4 9604 3 4191 33 735 7 1629 19 1 8860 3 5034 11 9 14 1 1007 15 239 82 3 62 2517 6 262 47 16 199 421 1 5998 4 1 9078 2293 3 62 9078 13 9972 1 723 2864 1007 3 1 1515 170 1 120 1483 2 5731 2547 2 2 886 35 9203 2 3 4859 19 4162 2952 60 5375 32 2 5652 404 1 2 15 8035 36 1 155 3104 4 2 4391 3 102 51 6 20 2 2364 4722 41 2 4134 427 11 153 7 9 884 3620 682 13 2663 1 231 1487 4 1 102 2752 22 185 4 1 1434 88 26 14 3 88 467 115 13 614 23 22 3401 38 1101 6664 23 190 20 36 9 108 45 2625 1259 23 190 20 36 194 73 34 4 1 415 7 9 18 90 2625 176 36 7062 1 344 4 199 130 112 8381\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 2 91 108 220 1 1575 61 2780 8 497 1 7738 61 7 395 1358 4 1412 285 1 73 51 6 58 82 302 5 1346 9 144 114 33 55 1460 253 2782 2 4798 1973 48 61 33 125 49 9 28 310 65 19 1 312 114 33 55 96 16 2 330 11 9 18 54 1236 19 436 33 179 10 88 90 10 14 2 4547 100 2510 17 8 118 28 1606 9 18 12 1 580 302 144 8 100 969 1 7723 9904 33 130 24 7388 142 2 342 4 4821 378 4 1472 47 9 13 6 676 2 855 296 231 1015 4 1 74 135 378 4 2 5247 3474 72 70 1 3848 282 809 2 900 5 307 200 768 45 1 231 57 4684 98 630 4 1 6400 795 11 24 7 1 576 124 54 24 100 127 1007 321 5 256 62 2749 224 3 87 43 148 115 13 2078 113 5 925 29 34\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9401 26 1784 15 338 9 108 42 2 84 1028 739 11 6 3485 15 1357 215 6207 53 505 17 6 93 3485 15 91 1028 2170 185 6469 6 93 452 8 54 354 9 18 5 203 596 13 47 4 13 4 203 104 36 9 130 841 47 5930 6779 1433 2460 295 7150 3 82 331 2968 1482 6635 16 82 841 47 1 82 708 8 24 1172 7 30 19 50 442 845 9 878\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 24 107 4961 97 4261 4 1 195 436 8 2111 9 18 32 1 272 4 793 4 2 2322 1392 17 8 12 1558 145 273 81 7 1 3656 1255 4 9843 6328 149 9 397 1502 17 32 2 3031 2322 2821 8 214 297 32 2217 5 6328 5 26 6707 3 4 2 630 4 1 3 1502 1759 485 36 48 33 61 377 5 26 5158 1 143 176 36 1 7376 143 176 36 7376 17 243 36 1 121 12 4250 436 224 105 78 16 1 2238 3 1 6328 39 143 87 235 16 437 9 151 1 389 131 46 2607 14 45 10 61 1576 5 20 274 554 1251 32 95 82 2426 17 4995 805 9 6 32 1 1703 2821 4 2 2322 1392 20 2 6130 41 2 17 2 826 976 2322\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 152 169 4809 8 1266 42 565 42 56 565 17 3527 1 215 12 573 9 6 565 2401 207 227 397 1353 22 5491 577 1 1 121 6 8529 3 1 2314 173 90 86 438 65 66 601 4 1 42 7051 2947 270 2 155 3104 5 2177 730 47 4 4474 268 14 1 5387 770 421 1 1713 41 1375 1713 246 1 869 4 4510 41 1265 840 6 1 4989 17 1 6 37 42 3182 1 494 981 36 42 71 6121 30 1 166 9397 11 3 1 4146 4 1 1028 6 9782 15 630 4 1 4 8342 703 42 34 142 15 2 4131 6460 1409 5663\n1\t15 1 17 6006 7074 5 369 139 4 1 998 3 1 25 37 94 34 11 12 654 1 800 4 1 9 1484 12 1417 30 5714 7279 7 2 386 13 92 1616 25 223 15 4841 66 57 544 7 49 1 57 9097 29 3 3884 49 2045 1198 1 1598 57 2945 29 1 3 98 316 29 15 2 9947 125 675 98 590 19 122 94 2 345 13 10 12 85 16 1721 164 5440 238 14 1 4966 3 3 9097 1 3 3 15 13 252 876 199 5 1 250 2592 15 30 1290 3 1803 1472 1 462 19 1 427 421 9174 3 10 12 34 19 2870 1 9174 9174 310 47 17 472 7130 9174 310 155 193 14 27 12 446 5 925 2 3131 3 98 823 183 122 47 4 1 98 3219 3 14 12 689 57 1196 2 514 1310 32 1 1 2641 34 310 47 5 122 19 25 9734 190 24 1 2953 17 57 2012 27 88 26 1 59 1193 1220 35 88 1620 122 7 1 2412 3 70 11 462 142\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 2 18 36 8 490 8 12 852 332 162 548 571 16 2 4 8 165 12 55 13 4999 2 635 5173 25 1007 403 10 136 6853 6 7 2 2327 27 1225 65 1 3 2932 2085 1 67 792 172 406 3 1599 6 116 1408 3275 16 1 233 244 2189 15 94 25 1855 151 299 4 122 27 271 6833 65 36 2327 3 418 848 3499 3 25 31 4305 4705 65 5 122 3 39 14 479 38 5 849 27 3269 25 1209 142 2 1 20 1 113 393 180 107 17 10 12 13 499 12 2 673 6560 509 18 11 56 57 58 1362 538 571 49 1599 337 19 1 1908 51 12 924 95 840 3 55 1 168 61 6124 13 47 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 28 4 1 80 509 104 8 24 117 1586 86 2444 1490 1072 6 53 17 27 6 924 7 194 1 59 1 53 185 6 1 567 5636 13 2687 26 6038 30 1 3588 4 1 9153 6 323 2 91 141 8 2165 133 10 542 5 1 182 10 12 37 573 59 16 1288 254 3641 596 11 24 1 1568 5 820 9\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 332 1 46 74 21 11 1728 79 5 2295 8 653 1236 10 49 50 972 12 133 110 10 12 19 2 315 3 482 249 3 20 56 2 53 572 17 10 165 79 9666 3636 7735 50 2104 969 2 1666 274 488 14 2902 54 24 194 1 1519 3780 18 12 781 10 28 13 150 57 1837 80 4 1 640 17 10 114 20 186 223 5 1236 8 165 37 1728 8 57 2 254 85 3105 11 8 467 273 10 12 39 2 18 17 10 602 2 2070 11 20 59 310 32 5477 17 23 88 20 785 194 41 64 308 10 165 998 4 23 10 12 105 9221 55 944 94 34 9 85 10 128 3426 2 65 50 2 306 3210 3 55 138 2 382 11 8 24 107 2545 1 8666 142 2 147 13 414 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 20 39 2 108 10 6 2 1267 4747 441 3 3122 77 1 3283 1138 4 2 580 2592 7 2008 20 59 123 3286 2647 87 2 1442 329 4 2 3446 4128 1312 17 27 1510 2 859 5 1 1228 38 1 5113 4 1270 1 67 4 31 3 25 250 2862 4905 6 2 9167 461 688 1 2059 1246 4 25 157 63 139 660 1 3030 7 1270 9033 999 5 5707 5 86 410 1 1329 4 1 1524 1577 994 10 6 73 4 84 124 36 9 628 11 1 1228 63 390 9461 19 464 795 7 2994 84 35 7653 5 182 949 3 75 72 63 100 1959 126 5 780 7 1 3667 73 4 9 6 31 491 21 11 130 26 107 30\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 3398 4585 35 1 27 4411 5 9 346 569 106 42 367 11 2 1897 6 1 13 7624 606 3 27 270 7 2 346 9654 3 762 2 2211 1355 2784 1283 60 498 77 2 3761 3 27 1141 1159 3 1 569 6 1437 35 2035 9 8 497 12 1 1897 17 8 192 20 1135 5183 6 195 101 8418 30 44 8634 41 3393 3 27 40 5 24 9285 41 3393 5 1620 592 13 150 56 812 1850 703 33 22 531 1029 15 1054 1041 439 857 3 4301 2170 20 5 798 11 9 213 39 2 1850 2 2118 28 14 530 1 6258 353 16 89 1 18 52 3865 68 73 10 6 37 298 3 23 495 773 78 30 1156 47 19 9 135\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 59 6709 12 1 346 185 30 3147 10 384 11 1 18 12 242 105 254 5 26 38 17 8 143 55 36 11 18 3 10 128 1310 386 4 137 5544 1 353 35 266 776 12 1111 17 3482 6 1544 7 1 4230 4 44 3549 4957 1223 578 12 1111 17 435 384 36 27 12 242 105 254 5 26 1 6730 7351 129 32 1 2377 3533\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 2 84 834 6 1 67 4 31 4213 298 416 2372 12 308 19 25 111 5 1 184 14 2 3126 2 895 393 140 251 4 2 328 47 15 2 580 3415 968 3 55 151 1 6 2 84 231 6 153 10 19 105 299 3 76 335 9 18 14 109 14 6 370 655 2 306 145 273 1 1132 472 43 9702 7 1083 1 6 14 1 462 317 288 16 2 21 1 212 231 63 58\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 1819 15 28 4 1 80 738 1 4213 1938 14 28 35 40 7633 2 604 4 2752 35 22 4475 1 1187 4 41 35 22 7 1 8 54 1379 11 154 3839 474 354 9 18 5 95 231 4475 1 4 9 1 18 6 2776 4176 5 1271 5 1 231 4 1 4937 3 4838 77 1 46 683 4 1 1084 6 313 3 1 1005 1103 6 1485 15 2 46 7229 119 3875\n1\t36 154 82 324 180 1586 295 32 1435 1 8496 1850 1626 7 6 20 7 10 6 13 3945 1215 7 1826 685 44 2 3283 111 5 8563 3 7240 44 791 500 10 6 3 2 1850 3429 35 7625 3652 4248 1215 4 44 3757 44 321 5 414 65 5 44 3 44 4 2 1659 1892 11 213 89 1435 935 3127 13 659 95 1723 4950 1059 31 2355 7456 1086 2797 3 9 1260 4 194 4 34 1 879 180 1586 3 1 821 113 4 95 1260 180 1586 3 11 666 2 13 7784 11 83 1435 4556 1 1158 182 65 101 2 5 99 7 97 8224 45 23 83 474 38 48 4950 40 5 134 38 583 41 1 4 2 1615 2336 19 276 3 2128 116 1260 4 78 4 1 347 76 26 146 81 884 890 140 5 70 5 1 6365 168 189 1215 3 13 252 2614 36 2797 3155 11 297 1059 361 38 3212 29 3 44 733 5 6676 294 361 22 185 4 48 151 733 5 6944 14 7510 3 3385 14 10\n0\t224 30 20 253 235 4 1 1659 4531 7 1 135 3286 2647 6 224 15 1 2389 3 771 4 2 18 4465 69 681 172 1188 3211 55 40 11 7848 122 17 25 177 160 926 15 25 4472 44 15 43 2724 3243 3 6695 3 25 4759 4668 1 4855 4 1 9856 7674 15 1240 202 2 5093 1092 2 266 25 129 15 2 706 1778 55 14 1181 340 5 241 1 1671 6 93 30 246 5 309 8460 4 1 21 15 2 3433 125 25 3374 8900 3564 1510 174 4 44 2488 498 14 2 109 3228 4740 45 23 6546 5 103 5957 790 42 2 148 4 2 158 15 2 822 17 631 1298 29 1 769 7 233 1 462 380 10 295 32 1 4691 2636 4238 210 178 3431 6 4609 15 31 1315 349 161 292 494 15 1 166 583 269 1188 1225 10 542 7 1 5314 285 1 21 2326 22 89 30 120 5 382 6767 124 36 3 326 69 17 236 58 7 52 36 218 1053 55 11 12 53 16 2 156\n1\t914 1 157 4 318 3125 4838 47 16 28 4 2350 13 35 40 117 107 9 18 76 26 446 5 995 86 393 3 1 226 9147 4 9 4773 49 1 443 1047 19 3 295 32 561 2501 2 482 7946 3059 255 77 2364 6095 2 32 1 2747 49 34 1 5146 22 1124 702 561 2501 40 165 25 17 7 1 182 1 7946 165 550 115 13 32 1 401 453 4 1603 4525 1 1244 263 3 1 84 1765 10 130 93 26 5598 11 1 226 2955 6 3913 8 24 107 2 1214 11 109 383 32 1 879 470 30 2047 66 22 93 34 3913 11 34 1 2840 22 4763 2163 3 11 55 1 1077 2589 1 572 46 2593 13 872 206 3668 6 56 2 1016 1313 40 89 169 2 342 4 56 84 104 3 12 1134 7 670 154 8711 2489 17 55 7 31 14 895 14 9 628 1 226 2955 128 3372 14 28 4 25 1726 45 20 25 6837 13 54 2005 2 2302 5280 1074 5 1 2062 1 298 913\n1\t5 64 2 5464 35 39 629 5 26 2 1081 1910 4 9 66 2439 7 1 53 1207 3244 1 170 164 5 853 25 9 6 229 1 113 4 1 277 649 1 901 4 2 35 1035 5 9 287 35 12 2 185 4 9 3 1572 2324 43 232 4 3761 11 40 1457 7 9 1696 17 28 3966 45 27 114 10 41 45 60 10 73 10 88 20 2711 7 44 95 9950 34 277 4 127 3493 22 167 1119 3 3604 73 317 100 56 273 48 5 7093 3 1 804 3 1 3832 22 37 1031 137 4 4877 203 124 11 10 1583 5 1 9 40 2 426 4 1879 176 3 230 5 10 17 10 93 999 5 65 2 167 1119 1190 4245 78 5 86 8203 8 219 9 15 50 2333 2458 1089 2 53 4328 4 1 85 3 49 1 148 4181 341 310 10 645 167 5053 8 214 9 5 26 2 46 240 3 1577 21 3 338 10 2 3284 2 53 103 9 628 420 187 10 1315 47 4 5579\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 51 181 5 26 59 102 2514 4 746 4 9 21 19 1 137 35 812 10 3 4351 3101 442 3 137 112 10 3 637 10 216 4 145 9470 5 26 7 1 929 5 1023 15 80 4 1 4 9 21 3549 3005 4 1 441 955 125 121 17 9 8 128 112 9 135 1 6768 248 31 3664 7684 5 1 3 1 570 1112 178 29 1 182 4 1 21 6 4083 1 168 49 1 1430 22 3489 3 109 3370 3 1 668 6358 1547 1 91 985 21 17 45 23 63 652 725 5 2900 126 10 6 2 84 803 13 894 646 26 30 31 2048 3250 4 81 35 812 9 21 94 523 9 5551 322 132 6\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 455 10 367 5 414 154 799 14 45 42 116 704 42 116 226 326 41 1375 8 6864 23 20 5 351 95 185 4 10 133 4460 1745 43 327 529 4 1128 3470 2948 4648 2683 3 638 289 144 27 130 1382 5 1 346 412 41 1238 2135 2 6978 3206 119 15 2384 494 907 51 6 58 7 1 4 13 3382\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8474 35 459 340 199 124 14 1427 5442 3 308 52 1197 199 253 2 304 5 1 6360 2835 1 4486 3 1240 11 6439 6176 4 4857 1605 5 1 1528 1212 4 1 7029 1459 65 30 1 1729 572 2904 45 1 18 6 56 370 19 2 306 441 308 52 432 11 4 2140 7 4845 413 11 486 660 62 387 15 2 1267 2821 11 59 1 85 76 187 126 2560 1 861 6 132 14 1 201 466 30 4656 603 278 6 664 5 1313 8794 2 1197 6 1 1635 4 4444 7 1 280 4 18 11 191 784 7 2 1307 4 137 35 56 1371 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1033 32 357 5 1 714 360 453 30 6275 217 43 1552 3 97 238 1192 1 18 12 89 16 6116 211 456 7 1 5220 53 1948 6275 14 1 1360 2643 3 14 8 191 354 9 21 5 154\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 170 296 287 5106 44 2706 7839 3 142 2 1897 35 6 47 5 7012 768 981 1930 17 94 31 240 4691 8 165 433 3 1019 80 4 1 85 1437 106 10 12 6034 1 18 181 5 26 7 102 8837 361 22 72 133 1 4 1 287 7323 44 8851 465 41 22 72 133 2 826 142 203 739 38 31 510 1897 11 1843 32 1 1 206 173 291 5 1 102 153 291 5 3 7 1 182 23 70 7293 9 88 26 37 78 138 248 3 1 67 384 5 2739 959 1 714 9 12 80 509 3 4652\n0\t851 6 60 41 60 666 297 7 1 166 1511 3 6 2680 37 586 7 233 458 30 2934 6 3711 115 13 677 6 20 78 4 2 471 244 8166 444 8705 33 205 24 5 5320 2 163 16 1629 25 435 6 6 404 30 25 74 3892 7 524 23 143 1682 1 1820 7 1 102 4 126 11 33 7 1 442 4 1629 115 13 92 918 9496 16 9 18 7812 10 57 5 24 71 2 91 2463 294 6 514 14 2002 17 2 607 29 225 143 9734 115 13 150 128 96 7734 130 24 262 17 98 805 45 10 61 65 5 503 7734 54 24 71 7 2 163 52 502 444 407 2 138 651 68 115 13 150 143 55 1717 49 60 165 7840 100 5 79 5 55 230 5882 115 13 499 12 327 5 64 5112 1072 2376 288 36 27 12 38 3 1 868 6 452 17 9 28 6 37 161 30 195 10 40 2 2 4890 1896 3 1 5038 4 11 6 86 20 11 2195 17 10 811 110\n1\t52 3 13 150 12 2 7 1 72 314 5 99 124 29 1 558 298 7000 7 8 320 1 84 507 4 5511 34 326 318 50 3059 1472 19 2 3 4074 3 160 5 99 1 2045 21 29 2016 6299 1 6220 12 1 1951 2443 765 2 263 142 4 6743 2 1301 41 1301 54 734 1948 8 12 100 571 16 1 3 283 472 79 155 7 1425 13 499 93 2 507 11 536 157 19 1 20 38 1 319 3 1 1 1055 3 4242 20 2202 65 15 1 5028 725 3628 3 3073 16 2 799 4 2421 3 69 190 26 1 1836 5 1 6370 2386 6 1 1734 4 29 225 16 137 36 5881 6409 3 1 2102 33 291 5 24 214 146 11 156 4 199 22 5227 227 41 1784 15 5275 227 5 5 414 157 4580 19 257 221 300 1342 54 735 1251 45 72 34 114 610 48 72 405 7 727 17 10 6 360 5 64 81 35 152 22 536 47 62 13 499 12 9 859 11 56 1475 8892\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 132 2 10 40 11 286 400 7 116 543 2742 11 4373 79 5 2 108 10 40 2 53 859 282 1036 60 693 2 148 286 60 153 301 1621 34 356 4 1434 8 354 9 18 16 261 35 693 43 2106 17 6 93 2 3662\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 402 445 991 32 2597 207 29 225 829 322 17 11 6 103 91 505 4077 130 8 867 91 2 167 67 427 207 162 5255 91 293 1456 573 573 565 181 36 2 658 4 170 2104 22 1472 371 2 2590 429 16 66 6 248 154 3002 17 9 349 188 22 3026 40 2 223 4559 3054 833 11 6 20 59 761 17 373 7917 47 1 2213 4 66 51 22 2 3284 373 29 34 4484\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 39 159 9 29 1 5593 21 6438 3 8 449 10 196 2081 1042 73 8 175 5 64 10 6259 10 6 2 158 3 3779 3 638 22 52 68 65 5 1 95 4784 4 1 119 228 13 8994 37 646 39 134 11 1 857 6 5687 1 121 6 5670 3 1 363 22 2713 3 854 28 4 1 113 124 8 24 107 7 3 46 2763 7 9 1702 4 13 10 57 1 410 1094 1 212 290 64 10 45 23 5435 669 591 338 1 3470\n1\t0 0 0 0 370 19 3767 309 4 1 166 1 1164 342 649 1 67 4 113 417 4214 918 182 65 7520 5371 3144 7053 94 4214 440 5 564 13 4052 57 2 184 5041 15 25 379 125 25 7331 8006 3 1021 3 3426 44 2 2436 2307 918 3 1572 122 118 48 498 65 29 285 25 8132 562 15 62 417 1 43 601 42 4786 4214 76 875 15 13 92 344 4 1 21 19 75 127 102 22 132 301 264 109 14 288 29 45 918 63 820 323 1021 3 979 3 3 45 4214 63 820 918 101 132 2 3 25 3808 155 2742 5 3577 56 2 21 38 102 528 536 371 3 1 3 4 1 4846 11 6 84 121 31 1244 3 46 211 263 3 1 84 3 6042 14 1 598 3298 35 918 5237 125 16 2 1839 13 252 28 6 8323 5 90 23 539 154 427 6 9360 3 783 3 2393 22 885 15 2 84 89 77 2 1134 3 1381 211 249 251 15 783 14 918 3 1347 14\n1\t18 8 24 107 7 2 223 290 1 171 419 360 7683 4 1 120 7 1 108 1 67 12 7700 1 67 418 47 15 2 170 287 32 1 598 3 44 435 4309 30 5 60 40 390 2 1910 4 1 1908 3 27 40 1265 27 1304 60 6 903 16 253 1 1285 3 6 60 122 5 284 38 2453 5584 1 9 6 106 1 67 4 1 2453 1752 8493 1 18 7700 2148 25 157 3 43 4 1 622 4 1 1908 29 1 166 290 10 12 2461 29 984 17 12 1 931 4050 12 46 6256 66 2200 50 1676 5 689 1673 12 4544 1 111 7 66 1 67 12 1463 12 94 1 18 12 2780 72 39 1407 51 2161 5 8 12 16 81 35 118 46 103 4 2453 5584 1 7695 8 54 5975 23 5 64 476 45 162 422 17 5 3494 43 2308 4 25 500 16 137 35 22 1144 4 1 6181 8 54 5975 23 5 64 110 10 76 116 4 9 80 1115 1368 9 6 2 191 1861\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 753 190 2735 43 13 92 1015 4 1 382 606 1430 18 881 7 4417 2110 792 530 152 10 6 109 1171 3 1 119 1047 169 530 17 55 2 184 368 445 153 720 1 233 11 1 215 119 12 52 2959 16 137 35 83 1374 1 215 119 57 1 8336 770 14 8174 35 54 2172 450 17 55 15 2 720 5 670 154 1329 4 1571 1 1015 6 2 46 53 141 318 72 70 5 1 570 1430 1146 1 185 4 1 324 11 89 10 1051 1 28 7 9 324 6 2563 59 394 1507 3 10 7 2 1198 293 1380 11 270 34 47 4 1 106 1 215 1430 12 46 6256 1 376 12 2 4061 4244 35 114 34 25 221 1 1015 621 1289 7 1 226 1194 1452 50 45 23 175 5 99 2 382 606 1430 158 514 1 215 7 1 6603 4388 29 116 558 2551 3 875 935 4 1 147 6503\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 56 36 1222 9 28 6 323 121 6 263 6 1 1190 6 119 6 14 1645 81 7 2 346 296 6 1 366 876 213 55 2637 1 21 3195 1927 26 225 33 130 90 10 9 772 391 4 1652 29 34 23 175 5 64 43 53 1222 2092 841 47 183 41 39 83 351 116 3666 85 15 9 4533 391 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 143 118 45 8 54 539 41 1717 283 476 59 6263 596 4 8089 88 24 2 1600 16 476 9 6 377 5 26 2 203 18 17 236 59 8089 7 476 1 80 797 178 6 1 606 7599 15 148 293 363 32 1 113 4 3853 925 9 18 29 34 4484 64 9 59 16 8497 4 75 91 63 26 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 2 4644 8 467 2 211 4644 2368 73 1 59 1362 177 38 10 12 1 53 539 8 165 29 1 1860 4 5419 119 3 586 1014 13 9 18 51 22 37 97 8399 16 144 87 127 415 390 1713 3 144 22 51 723 315 415 35 22 3 48 6 62 220 49 123 1639 81 90 65 2 4 3 6 315 1128 5 4792 55 2 358 349 13 872 144 12 9 18 89 29 2368 2368 2368 58 207 48 8 13 2699 1 5426 1354 33 152 9 878 94 1 5133 4 1 3515 72 16 9 18 7 29 225 33 57 1 5 87 9\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 342 1 18 856 39 14 8 12 6720 5 99 476 20 2 53 17 35 264 16 264 8639 94 513 322 33 61 101 5250 40 612 216 11 6 6245 548 4 519 205 5363 157 5 9 6 39 1065 11 19 1 9358 167 6727 285 50 1345 350 4 1 410 57 2117 47 30 1 182 4 1 135 45 59 8 57 71 37\n1\t21 14 2 3338 3 8 24 71 7 1 1039 397 2 156 268 37 10 76 198 2469 50 1522 3 8 894 2025 88 117 1 67 4 2773 1298 19 2238 95 138 68 9 28 7937 13 1226 3931 1522 40 5 26 2773 4321 14 1037 20 59 114 27 2545 1 157 47 4 50 49 8 219 10 14 2 1639 349 2195 17 195 14 2 287 8 63 52 15 919 1 1940 35 1605 2773 70 1 157 27 13 14 1 12 4807 3 8 83 96 2025 88 117 849 14 1 3 113 493 4 1 265 6 4807 258 6878 145 93 169 33 143 187 1037 2 668 10 511 4 1066 15 122 101 132 2 3775 5943 13 150 96 4679 4321 114 31 313 329 4 2526 2202 10 2 9236 1274 18 30 44 17 685 227 295 5 131 1 882 4 1037 959 768 115 13 252 18 6 205 4226 3 4051 14 2 668 14 109 14 101 2 866 589 11 1026 2 170 487 14 27 440 5 149 106 27 3852 7 500\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 1 59 822 11 3372 7 9 3 1 822 6727 45 20 1159 68 48 82 302 5 99 476 681 1185 374 22 4721 65 5 6264 31 161 16 86 664 1992 4 922 22 5144 49 2 1021 3479 164 6 3 1 526 22 386 2 156 1098 977 2 506 6 19 1 8 1582 405 5 134 8 12 160 5 335 9 461 10 57 2 1551 274 1095 41 300 11 12 39 7 110 1 21 6 105 2690 3 202 14 1414 14 2 9889 80 4 1 121 6 2255 6831 3 1 529 22 37 161 5257 7746 1490 170 4 132 124 14 3 8683 490 7 2 6196 7669 427 11 12 138 89 16 2 249 108 1604 10 181 2302 68 1 18 7767 814 82 68 170 3 9 28 1 1735 4 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 728 1 210 18 8 24 117 107 7 50 500 593 2521 6809 6925 4224 1106 2521 11 76 26 2 53 3742 51 6 2 163 4 2270 34 4 1526 3266 116 5130 117 64 9 18 579\n1\t24 71 2 4 188 5 209 57 1 6206 4 756 20 1241 1 3283 5325 37 51 6 148 6091 7 1 3236 3 2 53 934 4 864 17 20 37 78 14 5 597 2 91 6280 1 81 7 1 21 22 34 46 1831 3 17 7132 4 1 1730 3843 750 20 1 1086 3843 13 2274 4837 2961 3 8707 7899 266 561 3 3232 5 136 8194 2093 6 514 14 62 2755 2540 35 396 40 5 652 65 4524 132 14 75 1 148 234 3375 51 424 1221 2 360 356 4 48 16 175 4 2 138 3277 28 228 637 1 1151 4 66 12 7 86 7 1 7319 1166 14 28 1148 1 1692 3 11 2300 81 5 1 913 7 1 74 1888 127 81 22 80 373 5295 47 4 1793 7 1 98 128 2496 3368 7 2 156 386 172 188 54 8722 14 1 1341 3937 5 54 26 7 331 5714 2681 1 4159 37 97 57 16 7 1 346 66 521 54 26 3228 30 15 3 62 235 28 54 3196 7 1 3317\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 811 36 2 21 5603 14 193 1 1132 1459 47 2 2146 3062 4 1342 15 58 839 3 165 5 916 120 22 232 4 3 2670 1815 480 9 3161 8949 1 18 6 9281 42 36 2 4 157 15 4305 374 242 5 853 41 62 1784 893 7854 101 3172 30 2 4 448 32 11 3157 51 6 1152 2920 15 9 1745 16 43 961 17 109 248 229 80 837 12 1 111 1 250 129 1662 2 103 222 7 25 684 733 5018 2 2974 1384 5 893 7854 2 53 99 17 162\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2477 373 2589 1 85 1165 14 1 217 61 372 9936 2205 533 80 4 2672 3724 217 1 344 4 1 1162 42 20 1 113 4 581 17 407 20 1 210 4 1 445 124 14 1991 2941 32 1 392 115 13 12 152 46 53 7 28 4 25 74 865 703 8 56 381 1 278 4 1599 14 144 27 100 165 95 2223 871 6 660 437 27 262 1 425 280 3 2052 1 13 858 1113 9 21 12 185 4 2 445 8717 32 6469 392 3077 104 16 3077 66 2403 82 11 40 43 547 460 242 5 946 1 13 252 263 20 37 1 1043 217 861 45 23 63 34 4 11 3 175 5 64 1 958 635 217 2 84 6008 11 1547 100 25 306 5796 373 1351 10 7685 3823 236 82 124 5 4578 13\n0\t11 40 58 2481 35 42 242 5 1376 5 409 8 24 396 1354 843 16 104 29 400 6695 268 1394 1 2391 11 85 3001 29 1639 192 16 665 2930 17 33 1049 9 29 358 192 3 16 308 2109 165 10 1780 19 409 1078 1 67 2027 3329 600 9843 1206 1394 8 812 10 2930 3 5401 236 58 111 9 63 26 8069 4739 16 2 231 410 17 220 1 250 2689 6 31 2455 349 161 583 3 1008 3869 3 9843 6623 1394 83 1844 79 45 8 291 2189 15 1 915 69 51 12 58 321 5 6110 5 126 2930 236 20 78 204 16 31 1244 1217 410 463 409 115 13 3027 448 45 1072 3801 57 71 553 29 1 263 1273 1039 30 1 1278 11 27 130 787 2 67 1738 2 3 31 2986 3 57 7074 667 11 27 405 5 787 38 82 1626 3 584 98 8 76 17 533 1 18 23 87 70 1 507 11 308 1 21 12 9701 10 12 160 5 26 5 1 2544 166 410 35 381 1740\n0\t1433 3 5333 5 90 47 15 44 3 2459 768 27 40 2 177 16 808 2177 23 64 14 25 2810 1081 379 12 93 628 60 93 1436 457 3874 11 191 24 20 71 1 956 4552 94 2 163 4 168 2064 357 5 186 334 1295 3 6522 29 9 272 10 6 806 227 5 842 47 35 6 1968 16 1 2064 3 48 1 6 98 23 24 2 6658 393 106 297 65 20 37 9 18 39 114 20 216 16 503 10 303 79 15 5 97 1389 3 1 226 957 4 1 21 39 114 20 24 1 4 1 74 102 4 1 135 4243 469 54 24 1553 1 21 14 54 24 43 426 4 393 106 114 2264 32 1 5080 1 462 6 20 400 7756 14 60 114 426 4 597 1 39 20 457 44 221 5475 1 840 6 46 822 16 1 80 185 14 51 6 2 178 15 1 3 2 178 29 1 182 15 169 2 222 4 813 854 8 39 179 16 1 80 185 9 18 12 2 4312 4320\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1915 23 96 6 3654 23 495 26 945 30 1 20 59 123 9 1219 865 97 4 52 1201 4033 2 3 1352 112 6866 738 17 33 22 15 211 1521 1 2264 5 6 20 16 34 17 25 623 6 8025 3 3950 227 11 55 76 29 225 26 6266 596 76 112 10 20 59 16 86 8387 17 93 16 86 2831 362 176 77 195 670 277 3000 3163 4739 16 34 76 58 894 112 1 211\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 8 159 9 18 172 989 8 1279 405 5 473 10 1294 14 8 1407 51 16 1 398 394 269 41 814 8 1640 11 1 353 372 3686 1 880 25 2745 5217 3 1411 151 79 6846 50 522 14 5 144 27 1336 71 7 52 8221 27 40 9 177 160 16 122 17 1878 78 52 162 295 32 1 18 56 2220 79 30 75 542 10 12 5 1 215 17 98 805 10 12 37 78 1129 8 56 96 11 45 9 18 12 612 1239 3 8 159 1 1312 1867 18 420 96 1 4339 12 2 772 8 118 10 981 36 2 5227 17 42 3040 8 152 36 1312 1867 2 84 17 25 278 6 4339 5 1 353 7 1 5588 854 8 555 8 88 70 2 973 4 10 16 50 5650 8 4254 23 5 64 10 45 23 63 149 2420\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 5808 4 7728 5 3471 1 2689 30 6 220 7728 6 11 426 4 1360 3 454 35 57 1188 8083 1 9872 5 1 120 4 6866 3 17 5 1498 1288 254 251 15 6 2 13 92 8821 3995 567 178 4080 1 410 5 1 1216 3 5660 66 6 160 5 126 7 1 1909 3 3196 15 1 1 6767 3 1 298 5805 4 254 2559 7 2465 4021 32 28 2345 5 1 82 6 146 20 829 6896 13 92 8669 1302 4 1 4537 3 1 3 738 1 2495 151 28 15 1 2495 4 1477 1406 3 4879 701 3738 1 589 140 5 1 3158 13 104 22 20 89 154 349 3 81 83 70 2 9183 16 671 5 99 154 195 3 3483 1251 32 1 9681 66 3008 285 732 1025 1 18 63 26 5942 14 28 11 6 20 160 5 6982 86 5498 1376 55 133 10 94 37 97 982\n0\t43 327 1512 17 10 481 1 233 11 1 18 6 7 233 1466 23 64 2 893 2 163 4 3 2 893 136 2306 2 3 300 2 103 222 1129 10 190 478 55 240 5 275 17 241 79 5 99 10 16 358 719 213 299 29 513 193 23 539 375 268 17 42 56 20 227 3 10 190 26 52 47 4 9308 3 68 47 4 1434 5 1 6103 206 440 5 256 156 18 77 1 108 33 22 56 3709 3502 4 2271 759 300 32 1 4978 17 42 254 5 134 610 3 33 22 242 5 26 211 37 254 11 42 56 5882 375 268 23 24 2 507 11 1 119 88 77 3393 11 2 1127 178 6 101 1242 17 29 1 182 10 39 936 3 207 110 9784 1 3502 51 22 924 95 3637 369 818 1948 1 206 6 242 5 26 215 3 1703 29 34 1454 8 481 354 1 108 8 241 11 632 6 146 11 1513 26 1466 285 1 51 12 34 200 1 616 66 39 50 386 5835\n1\t66 2027 2873 1 2399 848 849 3 98 2834 142 14 25 221 4142 13 5020 34 4 86 1269 1552 3 621 224 19 28 4438 3 207 1 807 1 21 1082 5 1851 2 625 1904 919 3 42 46 254 5 474 38 1 67 49 317 20 6750 16 95 4 1 9 6 20 1553 30 1 1014 492 4018 1275 7 2 53 3 548 278 14 23 54 7093 17 1348 422 123 730 1490 8873 6 2304 7 25 1538 136 9998 936 999 5 90 1 59 815 1904 129 15 2 3478 2850 1663 42 2029 98 11 1 67 6 3 10 6 39 38 53 227 5 552 1 135 1 119 1008 877 4 1552 3 43 216 138 68 2750 17 236 198 227 160 19 5 8477 11 1 21 2683 1470 206 3598 9146 1071 43 1365 105 14 1 541 4 1 21 6 174 568 1 1284 1972 6 240 7 86 221 2401 3 1 861 2589 1 21 530 1952 8 24 5 920 11 8 114 335 9 4692 17 10 88 24 71 1878 78 828\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 332 8 481 75 9 18 89 10 5 2426 162 421 1 201 4 1 141 4 611 9 6 34 1 2818 4 1 523 4894 23 186 1 161 855 119 69 987 941 257 111 47 4 101 345 3 69 41 1825 7 9 3060 17 9 28 1419 95 8572 4 2 306 119 69 41 29 225 28 11 261 54 474 1395 15 2134 1874 171 7 48 6 377 5 26 31 296 1167 69 9 21 621 46 5307 19 2 1061 5233 1 1177 12 167 53 3 861 12 167 547 14 530 276 36 1 397 445 12 46 5567 14 530 50 59 6 11 9 968 597 1 523 818 3 139 149 697 7814 5 352 126 652 911 2191 19 135 1122 69 75 60 899 6 75 60 4597\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 53 141 17 20 2 306 2876 13 5489 12 2 2 701 3 12 100 214 20 147 9991 1296 39 143 139 16 10 2 957 85 14 910 172 57 9700 5489 165 31 1857 7 2 4004 2476 3 139 27 143 186 110 9 21 130 100 24 71 1716 17 319 2 163 4 81 24 1017 62 486 7 1641 3 4609 52 7942 68 144 2497 2 1429 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 292 29 28 272 8 179 9 12 160 5 473 77 1 8 24 5 134 11 1 532 123 31 313 329 4 4243 1 893 8426 4 31 972 13 1964 37 1096 9 6 2 598 21 73 368 100 54 24 248 194 3 55 45 33 5600 33 54 24 2175 10 30 20 605 1 85 5 2210 1 4720 13 92 67 6 2722 1633 3 1 121 6 5670 1 120 22 3 1 494 6 8 713 97 268 5 6660 48 12 160 5 3659 3 8 12 198 1989 37 8 12 46 3565 30 1 2876 13 150 496 354 9 108 3 8 191 646 2681 176 29 50 1916 7 2 264\n1\t1 510 11 6 492 1 1396 336 194 1 234 336 194 10 12 3 40 881 224 14 28 4 1 700 104 7 1262 9821 13 1194 172 94 2 701 472 2416 723 417 5889 22 246 10 19 15 62 19 3146 2016 94 7506 32 2 2430 1 366 1704 492 7504 1843 5 25 408 569 5 127 1098 27 2064 535 4 126 3 27 123 20 27 2530 27 13 7704 28 4 1 417 94 101 2052 30 1207 3 115 13 677 6 28 302 144 3146 557 37 530 72 83 118 106 492 424 72 83 118 144 27 3 27 2533 479 1 59 1318 144 72 22 13 7527 4654 1059 1 141 3 27 4160 5875 1560 533 1 441 3 4181 5 132 2 11 519 72 481 836 3 1 2281 6 323 13 858 2895 9 6 10 6 5287 3 109 6189 10 6 93 492 6 2 20 2 2 1426 11 481 26 13 92 3066 2665 105 78 200 492 3 25 9 18 2405 19 1 1401 4 1 436 207 144 9 177 6 2\n0\t3 22 421 4304 5 1 81 17 1 2276 6 101 549 30 1085 3085 883 43 82 1655 3 33 22 2761 13 252 18 380 554 2 3813 19 1 155 19 1 667 6838 998 8439 1 19 2 2302 952 68 95 5617 1 277 1 124 30 690 6991 1 2732 4 11 3692 40 433 34 4102 15 2522 13 9694 79 39 134 11 9 18 6 565 8 83 467 91 36 8 12 852 52 669 515 1220 17 8 467 91 7 11 8 88 20 149 95 1362 3016 7 1 158 3198 1 121 7 34 546 22 463 125 248 41 105 114 2025 320 62 456 41 22 33 765 142 4 7669 8 173 55 96 4 48 1 113 185 4 1 18 12 41 1 113 51 56 12 20 461 45 8 57 5 187 2 7777 5 7689 8 54 134 1 1383 12 229 1 80 240 129 17 11 6 56 20 667 5915 13 150 54 24 5 354 5 1369 19 9 141 480 1 288 167 53 4662 48 1868 2300 79 5 1 5352\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 12 200 1450 49 8 159 9 18 2808 10 247 37 293 2 156 172 406 8 159 10 316 3 11 85 10 89 13 150 96 1 113 546 4 1 21 7595 823 1587 3 1 363 13 614 23 2942 99 9 18 947 16 2 368 89 9 21 12 89 32 3188 3662 115 13 3440 2 973 4 3 388 324 14 8 83 96 10 57 71 117 620 7 13 4634 16\n1\t181 5 550 436 33 22 55 2048 29 122 16 848 25 6442 31 1848 262 30 6 3364 15 55 193 1 972 7119 469 2378 122 5 645 19 1 5757 5657 1007 83 291 5 365 75 5 934 15 62 4757 33 56 83 55 328 5 771 5 550 38 1 59 454 27 63 5707 15 6 25 7547 35 6 262 7 687 3689 30 94 2 3166 5226 55 1047 7 15 1 161 13 181 5 70 5226 5 1089 65 318 27 270 2 1213 1611 1285 5 5 7813 176 65 25 308 27 762 1159 27 792 5 8398 32 25 94 5 44 16 2828 65 44 1892 30 1790 34 4 1 4003 7921 15 1 6994 32 204 926 1 21 432 2 1911 2221 7 3 13 92 121 6 3621 7 80 626 3 5205 542 90 1 425 4399 5809 6 501 17 300 242 105 254 5 1354 776 278 7 1 861 6 854 45 23 36 5799 1482 38 1205 9 28 190 26 16 1038 43 55 190 26 5 652 43 1315 4 394 13 92\n1\t4203 11 88 24 71 2 53 164 457 264 9978 17 11 27 1747 411 5 26 1699 30 8854 3 27 88 24 71 2 53 3 5730 9655 5 25 2823 17 2167 5 3717 14 2 91 6928 292 27 6 8963 30 27 63 64 58 111 5 90 16 1 510 27 40 7076 13 2 1529 4 6493 6 1016 7 1 250 1174 36 27 40 103 85 16 1 161 1292 4 5139 14 3 25 6 31 146 113 620 7 25 4790 15 25 8783 6 20 17 31 7736 15 510 3 13 499 12 2 16 4497 5 90 2 3 1 21 114 20 87 109 29 1 1009 6494 10 1220 245 6355 30 97 578 101 591 50 221 1062 6 458 1034 1 4740 1843 190 24 9249 8167 1390 142 7 1703 30 19 1 331 27 12 446 5 652 47 1 331 1468 3 331 931 869 4 6493 80 1618 3103 49 8 7207 25 8 367 10 12 1 700 117 21 4 2 3189 1211 25 190 39 26 1 700 117 21 4 2 3189 6158\n0\t5074 23 241 27 6 1 585 4 851 41 23 5074 1 1412 6 65 5 4840 13 6254 40 56 248 297 27 88 5 652 155 2374 5 2 3170 5926 1055 585 4 102 8780 378 4 1 585 4 851 1 5326 1343 3 35 3296 2617 316 16 2533 1 184 2 234 209 32 378 4 283 1 1212 4 1 21 4495 2 2472 43 5 1 353 35 266 2374 7 1 2380 3290 35 3472 126 7 25 13 92 2769 2906 35 1225 1 106 1 2380 309 6 3193 7 40 2 893 4276 15 28 4 1 633 2274 4 1 2380 309 378 4 781 25 112 16 851 140 52 396 68 20 1 2024 4 1 1908 6 674 13 92 206 40 713 5 90 2 4814 189 157 3 1 2380 309 5886 500 9 6 31 7113 17 5449 1 15 1 4 1 2380 309 5886 7 82 3274 75 1 206 1304 38 13 1226 1062 6 20 6911 6009 1062 424 17 8 511 175 5 820 7 1 6296 4 1 206 3 171 49 2379 183\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 6166 5557 12 1 1053 353 94 25 453 7 654 2277 3 19 1 1403 3325 57 286 5 411 19 1 4055 1250 17 1103 14 1 6288 1553 3325 15 25 13 499 6 2 84 412 324 4 2 84 309 3 1 4331 4 951 3 1594 2274 22 9306 830 2 18 106 5557 9 12 25 28 3 59 1299 280 14 27 1012 2743 7 1993 1 633 6386 1922 6516 3 44 1039 280 14 223 2572 1327 256 7 293 798 271 5 1 84 2068 3 15 34 664 1451 5 1994 58 1962 324 4 1 3068 55 255 542 5 35 54 139 19 5 3988 14 249 1840 4 132 289 14 1 1954 2470 131 3 1 2097 1209 131 123 1 6 313 14 1 3061 9456 3 3234 648 6618 3 55 1664 25 14 13 499 6 28 4 1 299 4157 5 2198 53 1073 3 23 70 3325 3 26 2 886 3 116\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 17 255 105 9221 72 459 24 227 4 9 3 72 175 146 13 971 130 24 58 922 283 660 62 387 20 144 81 64 59 14 2 13 2718 22 39 1711 20 3 1348 380 2 4078 38 161 1287 80 81 5130 320 41 5130 175 5 4995 3 1 147 3157 4 18 5130 365 2 4885 9 130 26 1 74 326 4 9578 18 20 1 570 788 69 300 1186 971 130 90 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 59 302 8 83 187 9 18 68 535 460 6 73 10 213 169 19 3459 15 2 18 36 1 1191 4 9 1324 700 1004 6 1 233 11 10 6 509 217 1 804 4 9 18 981 5261 1 212 9198 17 1 593 33 337 15 10 12 301 10 12 52 2 18 38 2531 3 68 1 171 61 8705 3 14 12 1 112 1971 189 1 102 66 12 235 17 8905 8 100 12 446 5 348 48 1 4137 12 189 126 14 1 1300 12 779 114 8 56 365 144 1 250 259 636 5 7489 307 27 29 225 195 8 118 11 8 130 198 187 275 2 1551 2261 183 8 757 142 62 2531 422 33 139 2354 848 15 3309 874\n1\t2463 93 1008 1 171 3 35 54 139 19 5 2074 31 5192 342 5213 256 10 7 7583 6 2 3746 974 3 59 8 24 1 669 39 112 11 8 1331 12 3297 1 4403 33 383 4460 1441 9 21 5469 1 3489 593 11 596 54 7093 14 109 14 2 640 43 248 701 274 3 304 1972 1 67 9 85 3009 31 8174 9438 3 2 4585 204 288 36 8317 35 390 7 2 251 4 2064 1068 2 2345 3187 3 1 4 1519 30 2 304 8 56 179 8 57 9 572 2242 47 2507 3171 17 8 12 434 1328 292 1 119 123 90 425 356 7 9 8 190 24 5 99 1 21 316 5 1435 1116 34 86 4856 4 1 3236 16 503 61 1593 15 1 506 29 1 769 2 591 3604 429 3 2 566 2 679 4 53 238 7 9 1540 1 514 2104 29 58 1152 22 5 26 16 128 174 2388 15 327 3 240 84 6335 42 590 47 5 1718 7 86 3132 5 652 127 433 1101 7478 155 32\n1\t1197 1905 330 3 80 4608 69 3058 3845 8478 395 198 1485 745 3 25 1381 493 4300 395 4253 205 390 15 1 8776 8458 4 2 2211 17 8008 957 3 80 4290 5 1 69 7539 3 294 954 3705 1442 1490 1072 7 2 1219 9489 5820 2536 395 514 5388 5 186 474 4 25 1524 1257 3 8025 752 1215 954 5096 3848 3 278 30 1 5675 9 782 431 6 340 2 8311 1577 30 1 4340 121 32 5927 583 651 35 5203 2 323 6363 356 4 510 8248 39 7257 2 1316 3 1438 2638 3 80 1474 218 69 203 18 376 776 5 1 30 3650 2 1355 11 3029 122 5 77 2 1706 1875 27 2898 110 9 8626 151 16 53 810 299 3 1231 9061 32 1 1761 4 1 8412 4504 14 206 745 770 32 2 8294 8078 3 2347 263 30 4139 203 626 8883 2 1428 533 3 123 31 7491 329 4 1749 2 6740 3664 4858 4675 22 93 7 639 16 1796 8934 861 3 1 868 30 492 496 1901 5 596 4 9679\n1\t29 25 733 15 3262 801 6 2557 9557 1869 5 1 253 4 4626 1 2523 12 1868 928 5 309 2 2223 3 2 156 5620 168 5 352 3569 47 3262 992 228 24 71 8406 6153 12 2 788 11 1049 44 4 1573 77 31 1536 4 5 2843 65 1 429 14 109 14 19 44 2192 2871 5 131 44 8547 29 62 66 12 757 73 6096 411 179 10 89 44 176 1604 3262 992 6 2 1904 227 8842 55 45 60 6 30 44 9880 2098 3 236 2 5 1 21 11 6 1496 4266 5 149 127 2569 4 611 45 9 61 101 89 944 3262 54 229 256 65 52 4 2 1593 421 44 231 285 1 4099 7416 178 3 54 229 1126 992 7 1 2281 30 4025 1 8055 992 41 253 31 286 1303 2248 224 32 44 17 9 6 9784 1 7499 13 872 16 34 137 35 134 3262 748 2 91 665 16 170 3834 322 1064 9 69 29 225 3262 143 139 200 355 2599 3 1031 43 661 326 4678 118 35 8\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1469 472 474 20 5 311 187 199 2 574 4 1307 4 2035 27 77 1 1872 5642 15 1321 9056 436 650 664 5 1638 313 278 372 142 421 2862 4496 15 53 6429 30 5679 10 12 1 372 4 127 102 546 608 845 34 608 66 89 1 21 146 52 68 39 2 6906 3110 4 1 622 4 1 8355 4 607 1041 258 2825 2969 3091 47 62 546 56 530 53 5246 1 1667 12 53 854 3396 5 867 1 233 11 1 21 12 383 7 12 3597 5 2230 2 342 4 688 4041 340 1 1384 4 1 3 72 63 301 995 127 103 13 1701 3464 2 89 16 249 21 32 4799 40 209 65 258 45 23 36 5 3 995 43 4 1 6906 168 608 2768 8 5 22 100\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 6726 1867 32 158 17 305 16 1315 4564 7555 69 9 6 2 1515 3 135 19 1 82 1737 1 305 8 4323 40 71 5 1179 116 30 1 29 51 6 58 1335 16 20 3858 1 21 7 8927 571 11 368 4918 34 124 36 1 1652 11 10 6 37 314 5 48 2 13 1118 2 1152 7940 245 51 6 174 324 47 1815 64 204 16 1733 13 453 30 1 102 250 171 395 800 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2301 51 6 332 162 53 38 9 930 8079 29 513 6997 9040 2 6524 5726 35 1457 15 25 2150 4837 2961 16 5715 1166 6 29 25 80 1974 3 509 7 1 225 1174 29 27 12 674 237 105 161 16 127 684 2842 292 10 153 729 37 78 204 73 2999 276 37 78 972 68 44 172 3 60 6 37 1906 664 5 44 3 4380 1072 266 25 692 280 17 10 213 227 5 552 9 3095 1479 851 33 83 90 4047 95 2425 479 39 7026 3261 161 104 11 2962 3 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 55 193 1 119 12 46 109 1 67 427 12 7779 1 233 11 1970 672 12 2484 15 43 28 6341 140 47 80 4 1 18 12 14 23 61 8881 35 12 648 409 51 61 97 546 106 27 54 357 5 771 7 25 1052 672 3 98 1 398 43 28 6341 672 12 403 1 648 16 550 8 83 118 1 302 618 45 27 57 6111 15 25 672 285 397 4 1 18 8 96 33 88 24 383 1 795 11 114 20 2735 25 221 672 49 27 57 8 24 1274 9 18 535 47 4 394 370 19 1 538 4 1 135 49 28 4240 16 2 18 704 41 20 86 29 1 856 41 19 305 9 18 12 20 279 1 2154 11 12 8 24 71 2 223 85 4 1970 3520 3 34 25 104 11 27 40 248 125 1 576 1992 8 96 9 6 28 4 1 210 879 72 24 107 286\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 36 1523 79 4 1 113 4 137 1575 104 470 30 294 297 270 334 7 2 8753 234 106 307 6 9838 51 22 43 5948 11 2171 186 295 32 1 650 749 3 4486 5453 4 119 22 30 274 5 2133 162 540 15 490 8858 10 36 6 31 1409 2055 32 477 5 714 50 379 3 8 214 5275 400 1196 125 30 1 55 14 72 61 253 299 4 194 3 29 1 769 14 2685 14 9 6 5 4043 72 341 72 159 490 30 1 744 7 257 536 5331 20 7 2 99 9 18 3 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7811 13 2642 50 6 2 678 1541 4 3 1 21 1225 2690 46 2690 17 270 2 5 348 2 67 38 701 3 1856 100 117 12 37 1494 3 1127 395 164 380 2 306 3 2817 4788 6 34 17 13 92 893 7868 1 1 4 1 1 3450 1025 1 4 1 919 34 432 2 1494 5251 8 354 9 28 1232 6 1 52 1494 1065 18 11 8 117 575 841 1 112 253 1146 8158\n1\t1 632 4 121 3021 132 528 4 72 54 521 24 2 4 3413 7195 171 6710 1 17 8 83 56 96 9 7116 4438 5244 6 121 41 1 4 121 3579 8 96 3525 3898 2 6370 2 1768 3963 38 236 2 8 8949 7 25 733 15 25 27 666 11 27 100 54 24 41 88 24 390 2 53 353 197 44 3 29 174 272 27 2063 11 25 1809 15 25 871 1647 49 27 1136 768 145 20 273 48 5 90 4 9 17 10 181 731 5 503 258 73 42 25 4116 15 44 3 4 44 11 1391 9965 122 125 1 5037 436 1 6 11 2047 256 411 7 3477 7 1 74 334 30 6720 77 2 686 6499 1892 2 4 1 7 1 2094 42 1846 11 1 976 3 633 4531 22 8321 29 1 477 4 1 135 42 20 301 267 282 5 2867 738 17 10 6 1846 3 229 258 7 822 4 1 233 11 33 87 20 182 65 62 684 7 2 744 1 21 88 26 11 6 174 921 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1915 23 175 2 299 7172 15 4057 4 1546 2106 98 23 76 335 9 7890 13 150 83 365 144 261 511 335 9 461 186 10 16 48 10 4347 2 2451 16 2884 6659 5 1378 15 116 522 3 90 23 2499 10 3195 17 10 6 109 1613 6 332 304 3 1834 44 221 7 9 28 69 138 68 95 431 4 69 3 289 2 9827 16 1546 2466 105 91 60 1336 57 97 7536 5 19 3230 13 2589 25 280 4 1080 3 962 123 2 1195 329 14 2 13 7 2 30 6659 7 1 750 4 1 1430 16 218 19 9 3 819 165 2 18 11 721 50 838 3 721 79 6754 8 969 9 28 14 521 14 10 12 13\n1\t0 0 12 229 89 7 639 5 4755 3197 3694 1 21 6 2 299 1285 19 31 7105 19 86 111 5 2524 5645 29 1 85 7 66 1 913 12 602 7 9 12 687 3425 16 1 66 419 1 18 160 1228 822 4073 1033 14 2 285 137 832 268 1 913 12 13 92 304 3025 6 107 29 44 113 7 43 668 2139 106 60 674 289 199 60 12 2 6130 5 26 1566 808 6 93 107 7 2 826 185 15 20 105 78 14 27 1 304 1631 3025 19 1 2468 11 6 2472 126 5 5645 1 40 53 7536 7 1 21 5 131 27 12 2 211 1368 93 5071 4005 6 107 14 2 299 282 35 6 20 6038 30 13 677 22 53 668 2139 1738 5112 3 25 7 66 28 738 2750 1 491 2640 8166 35 40 2 156 15 561 3 1631 2 170 1403 3325 784 93 14 1 466 2851 4 1 9423 9039 30 1 13 252 6 2 5661 1285 11 130 26 30 596 4 9 2489 66 3197 400\n1\t827 9 6 2 167 53 131 3644 346 1359 5 964 723 633 417 15 8356 6316 70 371 3 1555 1 8132 4 62 1 594 223 2218 1026 239 4 126 140 62 396 6082 65 5 149 112 3 10 123 10 197 101 509 41 6832 6 1 28 6441 94 5302 35 196 2 103 8939 3 761 15 44 417 1018 2292 5 26 2 103 3 52 1688 7 62 42 84 5 64 346 155 19 14 60 12 84 7 1 1 2646 63 3218 129 2 6 436 1 80 7247 17 128 46 3098 4 1 2891 14 60 15 44 232 17 766 4 7 25 3424 2277 5 24 2 583 15 1159 5893 4 44 1 570 102 1144 4 1 201 22 1 8180 31 795 809 2 1305 583 35 6500 15 261 3 4075 6974 20 3 2 1207 809 1971 15 2 4937 3 25 585 24 1172 44 895 3 112 157 47 4 7130 11 101 1113 145 3863 195 3 449 11 1 2982 2236 9 251 47 73 42 501 42 264 3 42 165 2 84\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 493 57 1 312 4 133 1 1139 94 283 1 745 2538 1110 4 1 6928 37 8 475 969 10 142 517 260 32 1 357 10 12 160 5 2740 10 56 247 14 91 14 8 179 10 54 1142 1 847 12 53 16 86 387 33 314 2 979 7195 4 414 238 15 847 5 932 43 240 1456 3 1 259 35 114 1 672 16 2397 595 36 13 2078 1 700 1260 4 2 1158 17 1961 503 180 107 2 163 2194 10 169 2 163 4 2789 220 205 3 1 102 22 77 28 102 594 108 279 2 1775 374 228 2102 17 1604 58 15 1 745 2538 9904\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 28 4 1 1340 104 180 117 575 8 1150 10 14 2 6182 852 5 70 2 47 4 1 74 156 1025 3 369 79 39 134 180 100 1309 37 254 7 50 500 1 74 178 106 5354 2133 47 4 1 1276 3 357 2 568 3 903 1473 566 6 28 4 1 80 862 211 439 238 18 529 4 50 500 9 6 20 2 4898 141 17 52 2 18 11 151 299 341 153 467 5 29 4 1 238 1818 8 143 64 1 74 4069 17 5147 30 1 5970 4 1 640 8 83 96 236 5 78 8 8090 45 23 2942 64 2 18 11 271 84 15 2 1721 4007 41 95 68 8 8171 23 760 9 18 3 694 155 3 99 2 2226 172 4 7 616 70 1256 7 1 1652 3 70 19 30\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 128 149 10 832 5 9868 11 2 18 14 91 14 9 88 26 89 7 3853 1 121 3 67 6 311 1526 217 1 593 6 1319 8 83 64 95 2947 516 9 1652 571 190 26 11 1 206 57 162 53 5 1405 8 472 79 764 269 5 853 11 8 57 1130 50 3666 4465 10 1029 79 15 11 8 12 160 5 351 43 52 85 4 50 157 19 9 2145 8 2398 1 18 12 89 7 364 68 2 1393 8 83 118 48 3631 10 621 6873 3402 925 9 18 29 34 39 87 3128 55 7231 116 522 421 5412 17 83 139 16 9 108\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74 21 8 57 5 1243 47 778 3 10 12 1 201 3 1176 1491 11 8 12 4525 8 5 8 89 10 140 1 74 5086 37 8 145 39 5 17 11 12 50 13 4567 82 708 737 75 114 9 70 140 95 232 4 31 4 1 46 210 7 1765 1 8910 4 1974 505 489 6172 34 4823 371 197 2 6199 13 1084 12 7654 202 60 8108 1 210 1736 1778 7 18 9821 13 858 8 303 1 1 206 3 1278 61 3185 7 2 1940 1137 1 1913 33 515 339 694 140 10 316 6062 13 1149\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 21 56 6548 116 4 2849 3 1 1342 72 414 1107 10 6 109 89 3 46 1 6224 7 1 21 22 1784 3 5089 38 1 234 11 5027 1137 4 1 8546 8 241 10 187 84 3122 77 2 35 1 46 1154 11 1 545 40 4 4277 10 6 1985 29 268 3 52 1127 73 4 110 43 546 61 832 5 1775 14 80 864 424 17 10 6 20 125 1613 86 53 1 74 85 23 99 194 17 10 432 55 138 1 330 41 957 85 73 23 24 57 1 680 5 6303 116 438 200 1 46 6509 33 5466 3\n1\t311 289 75 33 22 30 48 1046 3 457 48 3 98 75 33 22 30 29 1 182 4 1 7762 10 3 1 5829 4 307 602 7 1 9270 642 4436 296 3 2958 1 29 1 182 4 1 13 150 343 2 103 30 1381 30 1 17 93 30 1 111 1 4572 7 3695 24 3946 62 1261 14 1408 3 3459 16 1 448 1958 45 33 24 43 5 1 1733 4 75 33 22 1 1131 4 1 1170 8006 65 1 142 1 3180 29 1 769 89 2 933 17 11 12 39 50 8 63 64 75 275 422 228 284 9 718 2 103 13 7958 82 4655 19 9 7347 8 83 96 23 24 5 24 95 3656 1105 1062 5 26 4732 30 476 9 6 1391 2 67 38 423 5807 3 257 4276 5 1 72 2230 3 45 23 24 117 969 2 2754 89 7 1 237 9 130 187 23 146 5 96 5722 13 3 496 4869 321 5 64 52 4655 36 476 4675 5 34 4 137 602 7 1 253 4 9 135\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1214 15 1115 861 11 6 109 1929 4 42 1 397 6 46 53 3 23 63 348 11 10 12 248 15 4650 3 77 1 296 1585 6 46 5060 3 18 6 46 457 1274 73 80 81 87 20 36 5 64 1 864 11 97 285 9 933 85 3 334 61 46 78 36 80 5641 4179 238 1102 88 24 71 52 1087 193 17 18 56 3736 80 4 1 16 31 410 35 451 59 1011 574 4047 16 9 18 6 52 16 137 35 24 2 356 4 622 3\n0\t10 32 1 1137 42 791 2 1200 1823 16 2 1054 2881 880 1 148 465 6 11 23 36 80 4 1 647 642 1 250 129 4036 4843 35 384 350 3072 16 1 389 4866 25 1855 35 57 2 56 1021 3312 4 25 456 3 482 1773 14 109 14 1 2 11 485 36 10 57 71 8 173 55 320 44 9854 2 1974 287 15 2 1289 111 4 1874 11 6 39 20 1494 41 3 1 1299 6008 8 173 320 25 1921 247 91 7 346 1 80 240 454 7 1 212 397 12 4387 35 3154 14 2 91 259 17 128 2012 25 121 1 3624 4109 9 2654 314 5 8797 411 61 39 3534 8 24 332 58 312 48 27 12 403 41 48 27 12 242 5 2303 32 1 3896 11 2200 122 5 4099 14 2 1270 296 296 6109 779 87 8 4219 1 119 311 247 240 227 5 998 116 838 16 55 764 269 29 2 387 369 818 1 594 3 2 350 41 37 10 271 778 39 637 9 28 69 681\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 37 112 9 1540 1 847 6 84 2022 2 1 1983 276 37 4544 8 112 1 265 7 1 108 37 84 33 721 1 873 13 858 16 1 6925 86 1051 10 40 2 84 507 4 9371 6 2 46 1257 3 1127 6 56 84 7 9 141 3 8 36 25 2566 15 1 59 177 8 143 36 12 7289 27 39 1283 5792 1095 1605 217 2 222 3 33 88 24 89 25 185 7 1 18 2 103 13 724 1952 1477 1540 173 947 5 221 1 4324 324 19\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1274 3747 16 627 1933 3 43 8010 2134 408 388 13 4 2 315 3341 6 28 4 1 80 215 1545 8 24 117 676 2 4581 324 4 1 21 9 6 5750 2 1152 20 97 81 24 455 4 9 2067 4 2 23 2108 5 149 9 21 2882 83 5 751 10 55 45 23 83 36 4581 22 20 105 97 267 124 11 8 187 2 425 3829 59 879 8 63 96 4 29 1 799 22 9 234 1869 5 1801 349 161 5358 3 3889 21 6 2 892 5108 4 1 4581 18 6 38 2 287 654 9672 35 6 253 2 718 38 1 3047 4581 526 15 22 676 1 5108 4 2 4581 526 253 97 3755 4581 759 38 848 3 101 2 4 2 315 3341 6 31 313 1411 21 3 8 354 10 55 45 23 22 20 2 325 4 1 4581 2 1152 9 21 6 20 7 1 401 13 115 13\n0\t142 95 232 4 2 823 13 743 591 892 1367 7 9 18 6 1 129 4 2 2833 7820 35 6 1991 30 5668 14 200 37 223 444 36 28 4 1 231 292 60 6343 7 48 1 206 179 54 867 1352 39 1310 142 1 3862 32 8755 6 37 2547 5 60 228 93 2951 2 2076 7936 9344 145 1 398 273 1509 9758 8755 14 8755 6 253 44 111 155 32 3 44 15 28 4 137 1056 11 606 256 398 5 116 4479 14 2 91 4644 8 243 2172 68 7 148 157 137 188 22 14 4118 14 2 701 4880 14 33 22 16 2708 2 115 13 659 174 4393 2898 2 7472 4099 5 2 457 648 5 1 757 5 44 7 174 7472 4099 457 6422 648 5 1 6442 98 757 5 44 1727 1 74 7 1 74 457 69 17 42 377 5 26 3513 23 70 1 2129 1181 648 56 91 13 858 16 83 504 1878 292 123 221 2 327 342 4 115 13 1701 137 288 16 2 1652 9427 16 2025 2684\n0\t106 33 83 9 18 6 36 2 5510 16 137 35 173 41 3218 9 18 6 14 78 299 14 242 5 3964 1 5 1564 2 707 13 7527 40 39 165 47 4 1641 3 244 4298 155 5 1 161 7 6416 85 16 31 1004 4 4 5871 294 2177 155 1732 1 161 1170 3 6 30 374 3311 161 2479 3 25 14 33 941 3 2369 34 385 1 3293 13 150 54 354 9 45 8 12 41 45 7 1387 275 12 4966 7010 30 2 1207 16 463 111 9 6 2 775 4454 1171 3 55 1160 669 100 179 420 1407 9127 2314 4 8590 157 15 1 5372 8 96 1 1362 185 4 1 441 140 1 4540 1671 566 1102 3 1 941 6878 25 417 474 38 62 6589 3 175 5 552 1 8590 32 101 3327 224 3 960 115 13 3973 88 24 1196 31 918 16 11 7 3770 5 9 850 109 45 23 149 725 1841 5 539 725 810 3 26 273 5 3827 2808 115 13 872 3402 99 3644 3108 138 2902 398\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 74 159 9 21 14 2 170 487 3 937 4323 10 19 9074 13 1791 876 84 1384 5 1 280 4 9443 2 3 4286 3877 25 157 7 1 6 15 25 231 727 66 6 20 34 25 379 4394 313 1103 30 486 7 1401 4 1 2244 1109 4 25 2340 3 33 55 3613 16 2 113 493 3 1658 1807 1334 6 643 7 2 2375 7 1 285 234 392 6949 140 10 399 1 231 2995 19 15 3 13 92 238 1102 22 169 1303 3 1 541 4 1 21 557 3 1 265 30 2825 666 10 3 13 252 913 7099 2 84 4 5 1 413 3 415 4 1 3877 488 657 5 3231 4456 14 530 45 561 574 4 57 71 72 228 24 71 1 7 4945 421 537 3 97 4 1 8747 2224 57 5 256 65 15 220 25\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 2 10 1647 15 43 98 726 3 294 1778 12 6985 280 6319 59 5 70 2 77 1 158 3 3366 114 25 389 3157 4 171 361 5564 361 24 1619 2 1446 278 11 239 63 1917 364 7 62 703 9 12 461\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 96 7611 284 1 5167 324 4 1 821 3 98 274 38 253 9 135 2054 4 448 10 495 24 1 4134 4 1 1766 3783 22 84 73 4 25 4 1 1567 9198 25 1514 5 1825 7 3 47 4 584 27 9 21 123 20 55 1 28 1153 980 4 37 9589 5 1 1190 4 1 1158 6 3 151 58 356 3198 896 3 9 6 436 2 3556 1746 2668 7808 276 2 163 36 1147 3967 7 9 669 118 42 20 56 2 17 2 425 665 4 1 4 1286 514\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 179 9 12 2 323 489 214 512 152 5751 29 50 249 2 342 1287 28 41 205 4 1 1040 976 951 12 51 12 332 58 1300 189 126 3 742 485 36 3719 243 26 6365 2 5885 1 18 3736 62 223 3 4872 239 3 17 20 5641 1 1318 7 95 9278 127 1318 54 90 16 43 240 647 20 1 566 41 1 3624 178 7 2023 55 45 23 338 1 13 1867 3 1895 5019 5868 14 62 647 17 10 153 90 1 21 279 552 116 1686\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1915 116 2 325 4 6591 574 104 9 6 2 191 274 7 1 3 8775 2030 40 20 59 84 171 17 84 2933 224 224 2282 3 3707 224 3093 1513 4008 79 19 2 5833 41 36 355 86 373 2 3087 4 1 161 578 5697 104 3 2326 126 2 3284 236 2 84 178 49 1323 224 469 5041 3 40 2 2906 274 65 16 25 9210 1876 4441 5 1 1429 86 167 695 174 84 178 6 49 266 1 99 25 2671 5 2030 94 27 1 2 163 367 197 253 2 354 9 18 5 34 35 112 5 539 41 22 161 18\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 338 1 135 43 4 1 238 168 61 46 1476 4730 3 109 1613 8 258 338 1 567 178 66 57 2 8731 3862 7 110 2 46 4730 238 178 11 384 109 7076 13 2361 4 1 168 61 829 7 240 1175 132 14 85 4824 1846 7671 41 240 93 1 21 6 211 6 375 3955 8 93 338 75 1 510 259 12 1012 854 420 187 1 21 31 1315 47 4 1731\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 53 1949 2808 6 1 80 2325 1115 1139 21 7 1955 408 856 4228 1 8673 3 363 22 3 8 354 11 23 187 9 18 2 176 30 4 1 2946 13 872 195 16 1 91 8 56 467 10 49 8 134 11 1 847 6 1 59 177 9 18 40 160 16 110 23 190 320 11 165 955 30 3 226 1 74 454 35 11 10 12 73 834 6 52 3 57 138 6075 63 787 79 2 723 1981 223 6469 6359 3 263 143 13 1701 34 1 1115 147 847 3141 19 2760 7 1 67 6 202 4320 51 6 2 2869 737 3 5 10 153 39 9144 5 1139 502 23 63 24 1 80 1117 363 117 5 2278 1 671 4 2 17 45 116 67 6 509 488 52 6728 72 83 474 38 116 647 42 91 8405 641 14 656 1 847 6 128 8 39 173 947 5 64 48 1956 15 52 2407 123 15 2420\n1\t628 17 5828 1 1132 143 472 1 540 473 3 378 2665 5 90 9 21 29 268 483 2406 51 22 2 156 716 11 1995 63 335 19 62 2487 1 868 6 169 452 51 22 102 147 4501 66 22 6748 3 102 147 647 9241 30 6798 2975 3 1848 66 22 3473 1 2566 189 5249 3 8800 22 1 931 168 22 109 7 1 3865 67 3 153 230 47 4 2416 66 10 88 24 728 248 2166 7 13 724 6 51 146 11 9 572 32 355 394 5928 32 7852 657 51 705 292 33 5828 153 1880 105 1878 17 646 798 3441 97 4 1 168 32 1 74 21 22 314 7 9 461 4681 10 12 1021 5 64 1 161 168 15 1 147 13 5369 285 1 43 4 1 716 432 13 6867 9 6 67 3 292 1 1132 328 5 25 901 15 10 151 1 1106 230 2 103 4847 29 4352 13 724 3255 137 1733 153 1880 9 1286 1474 108 10 6 1 59 56 4752 834 5409 66 130 26 7 154 18\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3089 284 80 4 1 708 19 9 108 8 24 107 9 1 212 97 268 15 231 1144 4 34 72 34 381 3 10 39 89 199 19 48 72 459 563 32 765 3 6775 1 5169 38 1 3 182 1287 58 28 165 1728 41 36 8 24 284 19 43 1 18 6 39 370 19 8297 8 24 107 2 163 4 182 85 104 3 37 19 3 30 237 9 28 6 28 4 1 113 7 5918 5169 10 190 20 24 2 163 4 84 293 363 36 8009 104 17 8 241 10 6 2 53 9485 9 18 3 86 251 63 26 107 1126 29 9 5272 3 2095 16 4175 5\n1\t1317 7615 8949 60 151 1 5073 5 46 530 1 223 362 178 29 1 1551 12 258 4608 14 6268 314 44 5096 671 5 3642 44 1758 356 4 6353 3 4 101 3363 7 2 157 60 58 1534 8 894 42 117 71 248 3606 13 92 21 4160 5 2 1016 2859 1127 3 9 6 56 43 4 1 113 691 4 1 362 663 4 135 3 1 1697 857 59 1 2974 2432 11 9 6 1 570 993 280 16 6268 60 247 39 2 84 1212 35 485 885 7 2 60 56 12 2 580 121 860 35 676 3554 10 34 1695 72 22 34 1 16 3230 13 252 18 6 364 109 587 68 44 1091 124 15 17 8 96 42 2 138 461 8 96 9 1176 6 39 138 29 4400 68 3 136 763 190 551 1 1052 1700 5970 4 1 581 42 78 4607 5 917 3 6 790 2 52 2665 391 4 916 3 10 153 1977 11 1299 546 22 248 30 6062 13 2519 9 6 2 382 6268 3668 21 109 279 288 1987\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 214 1 857 7 9 18 5 26 46 1470 113 4 34 10 303 47 1 692 447 3 882 355 9046 7 97 502 1 18 12 109 248 7 86 3139 5 663 881 30 7 11 2265 4 1 1 121 12 93 4455\n1\t3 5438 809 411 15 1736 1 1536 602 22 721 14 3318 738 126 9114 35 629 5 26 6 98 30 1 1536 16 2 2464 13 190 20 24 1 1710 1761 4 867 275 36 35 54 24 71 174 3271 466 16 2 21 4 9 7270 17 244 2 7759 14 2 9347 3751 809 1911 15 1 6 2 84 633 60 20 59 276 862 1494 17 151 16 2 514 238 3 1 198 3224 962 1752 794 2 1736 22 7 1 382 238 18 1 607 201 6 169 331 4 1100 3 7434 129 7763 4374 2917 1954 3 13 3 8044 1 1252 370 19 2 67 30 3 2661 1493 206 1802 42 1 232 4 263 106 23 39 118 1 1063 24 62 7 62 33 118 62 1097 6 2271 3 5174 3 39 24 299 2966 4102 47 1 2661 238 206 1312 863 10 866 3 1510 2 6701 1234 4 9719 3 940 13 6 53 299 16 1 238 325 35 153 438 9549 142 62 1568 195 3 98 3 39 2926 2 5567 4 882 3 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 3831 7922 3 776 7 2 18 38 2 434 1327 2762 1 147 5657 42 32 1770 3 1 259 35 3807 7 45 23 22 852 2 2101 9289 2695 18 98 23 321 5 75 23 176 29 502 245 45 23 22 1774 5 5238 864 16 1597 269 3 175 5 99 2 211 18 98 819 209 5 1 260 1888 1 120 22 34 695 33 216 371 46 530 1 148 1484 65 6 776 3 2889 244 14 211 14 27 12 19 417 3 60 12 211 3 53 288 34 29 1 166 290 8 337 15 50 1725 60 381 10 3 37 114\n1\t6 866 295 32 1 304 1615 66 72 24 3 22 253 368 1015 541 930 104 36 358 3 115 13 92 67 6 304 3 8519 78 5 1 1297 2090 4 8678 1892 66 8 105 54 36 5 26 2 185 2562 257 2090 66 5488 199 5 917 126 3 4 448 62 3462 6 37 2335 620 7 9 4 448 51 213 95 1426 7 6734 116 157 2185 3 10 130 26 2 1516 2659 189 1 342 3 86 65 5 126 5 1088 14 10 6 2335 620 7 9 108 115 13 155 5 1 6 2 67 4 1486 189 1 304 1165 4 3 7411 1 106 1 259 762 1 282 365 239 82 328 5 45 33 88 112 239 82 16 1756 6497 794 257 2090 3 1 943 66 5441 285 13 6 609 7 1 6 3 22 1477 9431 1 759 22 3711 579 8 258 36 1 250 3 87 13 5944 2 191 64 16 261 35 128 2615 7 1 1297 1615 3 4270 3 8 407 87 13 64 9 39 24 5 134 28 13\n0\t19 1250 51 6 152 2 178 106 2 170 282 1323 385 6 4464 3 643 30 1028 35 22 34 1673 10 3 15 375 977 51 6 2 4 44 543 14 1 1132 85 7 1667 44 4464 543 101 224 5 2 3 5 176 702 9 2427 4 611 30 2 783 14 1 516 10 513 27 1143 5 1564 200 7 2 372 161 5112 8 497 11 6 377 5 26 13 659 1 769 4 611 55 1 2643 6 3 1 1207 1664 5 5349 25 8794 20 935 144 1 2643 6 20 47 15 1 82 848 537 15 3 62 2121 1237 6927 7 3253 5673 13 150 56 48 81 64 7 2 131 36 9 5 187 10 95 232 4 1020 29 513 42 20 3903 1 1552 22 6985 3 790 42 232 4 7054 42 20 55 109 227 248 5 10 19 2 41 335 19 2 952 23 228 99 2 91 3337 135 42 39 9418 89 16 81 35 70 142 19 9 574 4 1445 2565 3 89 30 81 16 2 13 11 12 55\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 742 636 5 3 37 492 472 25 334 372 1 280 14 3351 35 762 65 15 2 170 710 282 654 3256 9 342 59 563 239 82 16 102 663 3 33 636 5 70 1136 30 2 2028 4 1 3778 3 10 6 4044 49 33 1622 65 5 1 408 3 149 47 27 6 20 408 3 76 20 1110 318 1 398 1393 14 1 342 22 1208 1 429 23 64 43 28 7643 65 1 4980 4 62 606 3 270 31 185 32 1 308 23 64 9 2592 2267 23 853 9 342 6 7 16 2 184 1197 3 1 67 5807 5 3673 2 46 1355 2592 66 3256 3 37 345 3351 418 47 15 877 4 1245 3 58 7411 53 5150 17 8 1155 742 3589\n0\t8 2172 9 6 2627 17 23 511 118 9 32 1 21 2330 1 119 6 1693 29 984 3 236 56 58 6410 11 9 6 2 4384 45 23 284 1 119 19 3 1498 126 5 48 6 19 1 8743 468 64 11 145 20 818 7 50 13 7254 1 644 63 26 8306 45 72 365 1 397 898 10 337 2086 136 5869 200 16 1166 10 12 59 612 7 664 5 922 602 7 1565 2 3 367 7 25 11 1 1392 12 31 6223 3 11 27 1595 770 15 550 137 56 662 822 3 8 24 58 312 48 57 5 134 19 25 221 13 2140 41 406 468 209 577 2 324 4 4 1 10 784 7 2 2806 4 3 1009 3239 37 23 228 2311 10 3 20 55 2510 48 56 693 5 780 6 31 296 6185 2614 15 2 547 478 3 388 3 1 112 168 1256 155 1107 14 237 14 8 1374 9 123 20 6567 369 199 4556 776 8820 3 70 25 124 5 2 8115 410 7 2 952 4 538 27\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 2 5971 18 16 513 130 64 9 718 32 1 4 1 14 130 307 7 4100 1 817 2381 400 1155 1 272 6 5 3673 1 1387 38 6684 257 1481 5 564 81 35 22 20 17 35 39 414 7 257 3 48 10 123 5 1 72 191 1594 257 6318 30 2472 126 408 183 174 454 6 643 41 9 93 3352 11 1 1655 123 20 352 86 137 35 22 8998 15 5509 41 15 433 2975 6991\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 24 5 6001 260 142 11 8 24 100 71 2 325 4 2835 32 79 27 196 6829 8 219 9 59 73 50 379 405 5 64 194 3 214 610 48 8 2 439 67 197 95 148 7657 42 331 4 4153 3243 716 3 2 400 903 119 9568 200 2 2827 5 2031 2 5090 7 11 39 143 1708 50 838 29 2616 13 659 1993 5 1 21 2371 2 904 1249 642 1 1143 4 3779 9318 3 1 400 125 1 3069 294 669 143 55 118 27 12 128 200 318 8 159 25 442 7 1 1079 16 13 252 323 6 2 13\n0\t40 2 84 3132 5 4012 43 1085 32 101 612 77 1 5638 10 181 11 1 34 1311 184 1855 6 1 226 454 19 990 11 789 11 127 55 6567 1 22 7137 237 295 32 95 536 3 33 22 496 30 97 6802 4 2483 7370 115 13 92 34 1311 184 1855 451 1 1085 5 2469 7 62 1085 814 27 151 2 1439 5 2702 7 2 8348 238 968 5 5724 1 32 34 4 1 3 1085 5994 81 5 1 1972 4 1085 151 126 58 1534 2 5994 81 5 34 4 1 151 10 888 16 1 5 26 728 612 77 1 5638 75 38 3851 3105 3311 115 13 92 28 2273 865 4 6 1 3 7436 14 1 8348 238 968 1144 3131 142 15 3620 961 2316 1817 151 4752 1 119 312 4 44 161 1841 44 37 1264 60 6 31 4293 4 1549 31 4293 4 2277 361 2 46 1202 13 4 190 175 5 841 47 31 1485 3641 60 6 7 32 2 342 172 155 404 5194 5194 3937 6 496 4869 6 1265\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5159 1976 158 15 2 514 914 6769 17 2 464 914 1368 35 266 1 3357 6 2 323 91 2099 19 1 82 1737 6 1 1324 2084 444 1 113 353 4 1 13 1 74 30 1 1658 35 3442 655 1 18 1869 5 25 40 59 428 28 753 361 3 497 16 48 6 515 2 136 1 18 6 2068 2859 42 30 58 907 1546 41 84 41 1034 82 1 2381 13 4 6 2 1551 141 17 42 2 184 10 1664 65 34 2352 4 893 1650 17 100 271 140 15 110 36 133 2 3059 739 19 17 15 34 1 2619 3335 13 92 158 14 2 5012 6 2 222 3 1 2526 3 78 4 1 957 3603 6 56 2 184 2908 236 2 1298 2526 4 611 220 154 18 4151 615 10 2429 5 24 2 1298 8649 13 743 843 47 4 9825 13 3382\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 39 1616 133 8 24 198 556 50 3341 142 5 2137 14 27 6 2 84 1651 17 9 18 6 56 2578 3 7533 8 497 11 10 54 24 71 55 527 45 10 247 16 9 6 373 2 21 11 23 76 100 365 45 23 22 20 32 3 55 45 23 2140 8 54 5268 23 20 5 760 9 18 7 639 5 24 2 327 85 15 116 4472 7141 231 41 10 6 56 2578 3 862 2690 3 1 119 123 20 90 2 163 4 356 229 1 206 405 5 131 1 4 1 423 727 17 48 27 123 6 3551 3 5561 1 410 15 168 11 1965 23 2 103 4885 10 380 23 146 5 96 2354 17 20 7 2 53 699 1952 8 373 143 36 9 2803\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 2 84 3752 8 96 154 672 6 248 30 1856 4678 63 59 39 1092 348 45 819 455 25 1408 672 1024 37 83 3915 38 126 6484 1 4272 33 86 38 1194 269 13 1 6 1076 1 392 421 3 27 762 43 1021 1098 7 698 307 27 789 291 167 7861 115 13 72 24 5 70 23 5 2 2949 145 20 1927 90 10 771 36 458 145 273 468 26 2 3 23 118 110 183 8 8 39 28 926 39 628 8620 8530 19 1 1323 295 195 13 3057 1927 26 18 167 5982 1 1992 16 11 6 7 17 86 229 1927 70 4425\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 46 240 3560 15 1 1817 4 1 161 502 2554 2121 1 700 197 45 1 799 3503 194 3 72 34 335 15 122 25 80 16 79 6 2 164 197 293 2208 4475 1 922 3 3826 126 39 15 423 2576 3211 12 2 84 3 57 2 84\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5457 2575 5 31 5070 1158 1133 6 1 8 12 37 2337 5 785 25 672 3 11 758 155 50 2259 11 12 33 100 291 5 359 1 53 289 19 1276 223 227 5 1708 31 410 11 63 4329 15 1 289 471 48 2 4897 3 1152 19 3201 16 20 685 9 131 2 331 3299 3614 9 12 31 313 131 5 99 15 2 84 1440 1 3201 419 7 2 330 680 1897 6 93 2 84 131 600 17 33 472 142 3 11 93 12 146 400 264 5 1775 20 1 166 161 144 173 1 70 10\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 21 11 63 90 23 175 5 64 10 702 8 338 1 111 10 8 114 20 64 1 182 17 49 7751 12 20 2573 295 1 74 387 28 5359 27 76 26 155 3456 13 92 67 6 3800 3 88 24 71 52 17 8 365 1 67 965 5 1708 1 545 3 1 238 12 2429 16 3230 13 5 241 492 3190 88 26 37 791 14 25 1186 711 3 532 14 2573 1695 688 8 63 1116 1 178 309 339 56 186 257 838 51 73 10 57 2 2974 67 5 13 2361 24 38 3969 14 2 8 241 11 213 45 25 129 57 71 95 27 54 20 24 4268 45 25 585 1789 2 41 5075 13 460 16 9 461 292 10 12 612 7 8 39 159 10 16 1 74 85 5446 19 1771\n0\t446 5 348 81 16 1 398 277 172 11 10 12 1 210 18 8 63 96 2562 1479 23 16 685 79 31 1836 5 11 4058 1193 2386 6 1 210 18 23 24 1961 284 1 1158 381 1 859 3 12 2337 5 64 1 141 17 977 33 1979 1 410 36 72 22 51 6 58 67 3 1 67 11 6 51 6 9532 30 105 78 1449 3 10 6 105 91 33 24 5 3528 47 1 3555 3 173 311 126 77 2 67 11 6 548 5 5345 33 143 1017 95 85 19 129 1273 3 10 12 806 5 20 474 45 95 129 6920 10 12 2685 5 26 28 4 1 156 81 35 1544 200 318 1 182 4 9 862 509 108 1 347 6 167 509 105 17 8 381 1 7737 11 88 26 107 7 3275 157 136 23 284 1 1533 1 21 123 20 1857 1 166 1617 3 8 54 1379 20 283 10 45 23 175 5 1811 5 998 1 911 4 1 347 542 5 116 2935 83 64 9 108 1961 8892\n1\t7 2068 34 4 2938 13 3204 51 6 3 1 943 4 642 2 163 4 4 1 127 22 34 2769 169 3 39 5 734 2 103 1 18 999 5 3642 1 869 4 3 2157 7 2 111 11 151 10 5 1 441 4623 10 1123 1449 2694 5 734 31 1988 7684 5 1 21 17 123 10 7 132 2 111 14 5 90 10 3 13 10 6 1029 15 1447 3 3557 1317 16 1 3856 1 1769 3 1 22 93 301 3 46 1 1077 6 1111 46 7184 3 8 93 179 11 1 697 121 453 61 1317 452 6 2 84 7184 2769 14 2 170 164 9814 25 7186 3 1758 3944 2599 19 25 221 5529 3 1 151 16 3 240 2553 4 1 3697 3 25 364 68 1062 4 1 3729 35 4488 730 25 1055 13 858 5 1 640 5 64 144 10 6 37 501 8 56 1379 23 4062 65 31 161 347 19 873 622 3 64 75 9 498 31 202 2549 4980 6033 103 294 67 77 2 2637 901 4 882 3\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 1 349 1 234 4 834 249 3267 12 407 29 42 289 36 9443 5932 2464 3 4398 12 459 3 195 834 89 174 84 1254 3 11 1254 758 1 3241 4 1 834 8833 11 1254 6 404 42 38 161 3721 347 129 1 2698 14 27 196 2 329 7 1 2345 4552 7 1 251 27 762 1081 1276 8395 3 53 1255 886 3 44 752 9 251 6 46 211 3 40 3159 4 84 11 23 190 20 365 14 2 635 17 365 406 19 7 500 9 6 28 4763 428 251 3 42 84 5 734 5 116 305 5650 4192 751 9 16 116 374 243 3851 126 99 34 4 137 586 45 23 338 98 841 47 3 3601 8381\n1\t84 4064 220 10 6 425 298 416 1097 3 5 26 1 668 7 1 4370 13 150 12 2 265 1465 3 627 2122 4 1 397 3 86 4501 14 109 14 2 8823 16 1 2097 1209 18 324 66 57 1 3568 2326 3 10 65 16 2 8120 4929 6899 13 3986 49 1 324 993 1856 5253 645 50 2240 249 2238 8 12 7086 15 48 8 7031 5253 498 7 31 4340 278 14 2 278 7 627 2964 5 25 4746 32 2 732 249 1199 1 4 1 201 22 548 3 1321 7 62 871 9337 6 436 1 59 28 35 123 20 176 44 1871 1521 2 2670 3 1438 13 724 113 4 399 1 668 2139 1100 32 1 1039 131 22 34 7 9 18 3 3193 14 1039 668 759 130 26 16 1 4946 4 2 13 3986 45 23 118 1 668 341 156 87 98 841 47 9 10 123 1 1039 131 2028 7 2 111 66 63 229 20 26 66 6 53 227 16 437 48 6 138 68 2 7344 216 3 15 4306 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7089 1949 3 62 1383 328 5 348 1 1387 38 2 4 7375 480 1 7314 1 1 4 1 21 83 365 11 1 690 6796 1028 124 59 1066 73 27 721 25 3329 8814 7 1 1138 4 80 4 25 124 4 1 5098 9 2314 6 38 14 1546 14 2 5 1 543 41 2 7721 5 1 522 6 52 16 9 835 41 1546 38 283 2 1383 259 5 469 3 235 38 1 943 6568 11 22 15 1 3124 1 121 6 6760 2680 1 120 1517 3 1 119 734 9 34 65 3 23 24 1 5867 80 6223 1028 21 9557 5919 42 5191 13 1226 3737\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1602 6 1744 15 25 5163 2466 8 88 1876 34 1393 25 979 1782 5 157 6 169 25 2308 4 5924 3798 14 1 6 1602 2291 1 683 4 48 72 4630 8 83 118 49 8 1309 37 254 29 8254 1960\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2003 8 159 9 8 12 945 5 64 9016 2921 7 238 308 702 55 193 3 86 3329 6 250 302 4 10 6 20 1505 7 9 66 6 89 30 603 442 649 199 11 27 6 9016 3 25 18 11 27 6 237 32 101 10 6 28 7 1 274 4 1936 4425 30 307 422 6 2737 59 61 260 3 55 193 80 4 1 392 3728 713 7 22 55 193 22 28 35 24 3030 421 600 3 3219 34 1532 4546 30 1 4 12 20 73 114 20 175 5 1042 1 9808 62 40 256 19 9632 37 3 61 929 5 390 1532 7 639 5 2909 62 23 22 942 7 31 8133 718 38 4 3 233 1699 718 9 6 20 10 409 23 130 99 4 2 89 30 5924 1354 3\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 5 867 8 336 2115 180 107 1 1571 3 9 6 2 167 53 1015 4 110 55 193 10 143 917 1 215 857 6704 144 8 419 10 1315 47 4 10 12 128 167 53 3 9 6 229 2 138 13 858 16 1 4391 109 1 878 29 1 182 38 1 160 77 1 6 167 9419 341 45 23 3791 1 12 29 17 55 193 8 143 64 28 19 1 7 28 4 1 477 168 106 33 131 1 1 215 857 57 2 37 42 2623 16 137 4 23 35 134 511 1959 194 1 1797 4 1163 63 139 3 45 23 176 29 11 1689 160 19 2 15 10 42 36 5028 2 2282 140 1 3235 29 5894 3496 7 2 3235 9704 2476 45 23 256 31 1276 19 1 10 54 229 26 52\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5072 6 2 1532 135 49 8 1407 224 5 99 1 141 8 310 7 15 402 6287 17 303 15 2 1 67 6 3 1 846 2734 23 7 1231 3 1231 66 239 1146 4476 23 5 1999 5 1 1087 120 11 154 28 63 3658 1566 1 18 1747 79 5 4951 19 50 157 3 48 8 1064 112 5 1142 1 18 5148 48 112 56 424 238 20 7953 8 12 93 1475 15 1 538 4 1 861 3 1 1077 4 1 108 1 389 4408 50 4911 8 187 1 18 102 184 4085 65 3 354 10 5 307 4 34 3436 3 34\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 1 80 47 4 427 3 6137 18 8 24 117 107 7 50 500 34 4 1 1799 12 59 5211 19 1 1062 4 681 3901 136 4 1 4107 496 9058 1 1145 6980 26 5941 5039 6315 6 2 3319 2152 3 162 1129 80 4 1 1799 7 1 18 12 463 41 10 12 540 34 1413 9 18 40 71 125 3 125 316 3 40 71 620 2774 421 11 2162 86 1936 61 162 17 13 31 5 96 11 33 131 9 7 416 1501 11 1 2152 40 199 77 3499 9\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1173 32 25 549 7 1 362 1970 5535 470 5122 5019 7 31 1260 4 3256 218 1666 38 38 1 1770 3052 4 31 7465 287 7 1 133 5019 309 42 1115 11 9 6 1 166 287 35 2371 7 104 36 9 6 1 426 4 18 11 88 728 26 69 1453 90 11 130 26 69 185 4 1 7 315 8497 3 5377 236 28 178 11 190 26 1 80 2313 1043 329 207 117 71 19 412 118 10 49 23 64 5908 8 173 241 11 9 143 1364 2 625 10 190 26 330 113 18 516 8013 55 3353 15 5908 93 993 1954 5483 9850 3 4871\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 7001 38 3012 2891 3 1 447 189 450 7912 29 1 2353 1 7001 5354 2080 1 5277 246 447 15 9 2784 830 246 447 15 9 38 984 136 1482 4 350 1326 1372 367 1161 624 45 23 2900 883 884 140 1 1 4074 662 91 7 62 221 1907 8 214 2 156 4 126 243 695 50 923 430 6 28 106 1 164 440 5 2883 2 282 5 24 447 15 122 136 25 3838 4920 19 1 9924 9 6 628 322 1213 2803\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 236 71 2 4 1058 5511 104 11 8 291 5 549 577 197 5379 8 997 9 3369 19 4569 2240 9 1679 3 48 2 2273 1197 10 9095 1 1229 6 19 1 4 184 3938 5511 32 1 4198 5881 5 257 1955 32 6849 5 5 4299 8 88 99 2 18 39 38 6409 69 28 4 9 84 69 37 1 344 6 39 236 4057 4 53 5511 1795 7 15 3679 4 576 3 1124 5511 3108 7 3 7008 4 34 1 5511 104 180 107 9 649 1 67 1 1726 3 8 96 42 50 7552\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 2236 1 3602 589 3690 2643 17 9 4186 266 36 2 1054 3217 270 125 1 466 280 32 988 1862 17 244 78 105 4759 16 1 27 255 142 36 31 913 2851 15 2 4332 378 4 2 53 607 171 36 742 2917 3 626 182 65 15 46 103 5 1405 8 54 187 1 21 3806 19 86 53 17 1 1106 6 2 3 3840 3319 4 3484 3 1 397 6 1417 7 30 3 7 9795 30 1 756 21 1427 148 296\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 25 74 117 2289 9 21 40 43 6286 3 4290 2184 7 1 113 203 21 2753 1 7694 4 116 3954 154 799 285 9 135 1 393 6 4455 1 1350 4 1897 515 219 9 21 42 393 247 31 182 17 2 477 4 1 714 2 84 18 3 59 2 391 4 84 14 237 14 2545 3608 2 425 868 10 151 23 96 3 1728 47 4 116 1960\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 12 852 1 18 370 19 1 347 428 30 294 7 1 518 10 12 370 19 1 8391 17 553 32 1 2821 4 1 115 13 23 190 96 4 1158 2 18 370 19 1 8391 1859 130 20 26 6469 49 10 153 134 235 52 38 1 1198 660 1 156 1526 168 7 66 1 4781 1198 6 620 14 162 52 68 2 115 13 2699 401 4 490 1 1063 130 93 26 16 65 1 215 67 37 955 3 5 1 3884 1758 6507 4 3319 249 1607 533 1 13 368 5 70 9 37 1328 115 13 5891 1832 3 2 528 351 4 290\n1\t75 78 8 1168 65 5046 9 108 10 12 323 2 18 11 165 138 3 138 14 10 36 34 104 10 5162 5 905 426 4 673 17 308 23 70 77 1 67 3 42 120 317 7 16 2 148 2055 15 9 682 13 92 18 40 2 56 84 67 11 2027 193 1 18 153 357 4 36 656 10 792 14 9 687 15 2 1388 4 5 110 17 19 1270 7838 39 213 56 2 18 30 1 2139 37 10 418 5 186 86 221 8837 167 521 778 10 11 1 18 1373 2 2065 17 845 34 93 56 2763 28 5 4578 13 150 93 56 338 1 120 740 9 108 630 4 126 22 56 53 559 3 33 34 4 62 2387 3 56 10 93 258 1008 2 84 278 32 9643 35 55 2071 2 109 2149 918 7927 1987 10 40 56 165 5 26 28 4 1 700 633 871 8 24 117 4164 13 2663 480 86 595 631 402 445 9 6 311 28 1111 1571 293 103 18 11 1071 5 26 107 30 13\n0\t1 644 2582 42 7048 5 1010 1472 1 1198 27 1553 932 47 4 42 221 13 213 340 78 5 87 15 44 1223 1544 7 31 5192 1892 15 2127 3 246 31 1971 15 25 711 16 43 2560 49 234 792 5 47 4 1377 60 3130 17 10 56 153 90 44 95 364 6212 41 68 95 82 129 7 1 158 17 229 1 28 15 1 80 1205 356 29 13 872 475 72 209 5 262 30 1 198 53 3845 8799 6 1 59 302 8 1274 9 21 2 535 378 4 2 3441 25 278 4 1 4740 3419 809 4 25 1320 271 6 25 7464 32 6088 1313 4 2 3965 5408 5 5284 6 1202 3 129 741 65 101 1 644 3318 5104 17 42 254 5 4201 421 122 340 1 22 31 2537 103 711 3 2 435 809 345 362 1699 5 25 6184 7697 3 4833 701 4 25 13 9 21 6 56 59 279 133 16 84 278 3 42 231 1591 6895 6360 39 83 504 51 5 26 95 120 279 3410 73 51 56\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 2 46 548 21 66 1026 1 2196 4 2 7517 397 4 292 10 40 2 163 5 134 38 5529 3 8854 395 1626 4 7 257 661 1561 1 21 557 113 49 10 6 20 605 554 105 2556 6798 171 132 14 294 9878 3 638 87 327 4109 7 1 250 2842 17 1 3501 16 79 12 1 892 178 106 1 4 3586 6 229 2 52 548 21 16 137 602 7 8531 17 261 35 4283 3189 130 335 9 4006\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 3077 1922 21 8 24 219 6 93 815 1 1 1930 119 3798 14 10 9506 181 3003 5 26 105 7472 5 9751 55 86 269 17 10 936 5 70 5940 14 10 271 2 6392 633 1706 14 5586 30 1 6 1525 7 1208 2 2527 3 8428 59 5 19 1 813 4 1774 2100 1018 22 791 1144 4 2 2436 14 45 8881 106 34 4 9 54 466 849 1 1391 40 1 423 1518 608 152 1 8784 435 608 2722 14 2 32 1 1 1428 3 1190 395 2951 3 1764 6356 5 2321 62 1008 32 1 2140 4 611 687 4 205 1 1 1167 29 1 3 1 2434 14 22 1 4 19 4681 1 80 837 177 38 1 212 2325 1805 17 1971 12 133 1100 129 353 6351 1018 1478 7 1721 8326 65 140 10 32 85 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2054 6 2 167 4633 17 6 7 639 49 317 1873 15 2 1951 4 578 13 6 323 28 4 1 80 3976 125 1 401 238 124 180 117 1586 197 1 1858 1590 4 1 82 746 24 4753 19 2 6272 4 4038 3260 1 644 4747 750 3412 17 75 38 253 2 21 7 1 11 6 274 7 34 1 4081 22 7 233 1 59 129 35 276 2363 6 53 8688 2359 14 1 78 850 657 72 93 24 3748 36 1184 14 2 5285 51 22 3159 4 8286 3 3274 1642 5111 7 9 1474 5 1 4 296\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47 1 1340 3087 4 2288 632 429 124 117 5681 13 252 739 34 1 7291 3 98 6936 91 1488 1722 1423 1537 731 6625 168 11 22 377 5 1965 17 735 5307 5826 1445 119 5011 34 4823 65 7 2 232 4 4 16 1 410 3 4712 13 499 7129 610 48 10 12 2776 1467 2 892 2314 4 137 3240 104 89 30 4014 1410 5 131 5 62 1007 49 33 1006 126 48 2109 71 403 16 1 226 102 94 2386 6 2071 86 12 5 24 71 553 11 1 21 12 7 233 2 7 185 4 25 221 27 1521 4104 65 29 1 5 9 326 27 4364 5 5466 1 13 3514 64 10 3 2655 9 76 26 2 382 4 623 16 97 172 5\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 37 94 8 159 6298 9 9645 2 2179 6061 103 141 8 1064 9 28 2 148 9 6 332 2038 3 28 4 1 80 1515 1482 8 159 9 2463 10 6 1 52 491 220 10 6 31 362 3 1275 43 84 1482 4 1 8775 5 1152 664 5 86 4628 333 4 478 7 1913 42 311 1029 15 265 3 31 5675 1646 207 56 488 1735 2519 10 89 79 515 10 511 26 37 832 5 8989 1 4967 1 976 466 12 288 3410 17 1 1428 6 37 3 1 18 6 37 548 11 8 143 55 96 4 10 8704 1 267 6 97 268 892 3 8 96 10 6 55 1914 5 1 4629 815 1 1003 1411 1426 4 1 290 9 6 243\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 1011 1916 198 367 45 23 173 134 235 17 55 1916 54 134 8 57 5 87 50 185 5 2979 508 4 9 682 13 150 63 4810 9 6 1 21 11 3937 3451 54 39 139 1695 8 54 449 11 5881 4733 25 2 9998 16 685 122 1 1471 94 9 1147 3967 6 229 16 275 5 5290 128 146 38 8 24 198 71 2 325 4 3855 1479 1034 23 998 5326 11 27 3807 2 3433 140 1 21 37 300 81 495 3658 1 21 15 2693 13 499 418 4 15 2 3087 4 1 861 4 1 1982 124 3 98 39 2019 2 5306 119 3 350 547 13 92 716 22 31 594 183 1 3 55 98 33 735 5307 45 23 175 5 64 31 1535 3087 4 1 709 347 234 64 13 83 1243 295 32\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 89 542 5 2 53 350 2596 4 127 203 7 1 3 490 32 914 203 626 6 28 4 62 113 51 22 723 3313 34 17 102 361 16 1 3 16 361 730 14 496 1535 77 13 659 1490 1072 266 31 603 1386 752 432 4 25 3 37 60 2 7488 15 66 60 44 16 25 6 2 304 842 4 510 3 1510 28 4 1 700 583 453 7 2 203 21 220 1867 7 218 9 4186 6 470 15 84 6788 3 1 570 6 2 799 4 13 4 6 38 2 203 35 6 30 28 4 25 221 1 1119 9 431 6 4183 16 86 5969 3 8622 8226 190 41 190 20 26 3715 37 206 745 40 2 84 85 372 15 257 4911 1 1516 802 4 8226 7 2 41 107 14 2 7 2 22 323 13 92 215 4150 4554 1738 2 842 2 2648 745 7078 4843 12 2 1086 16 19\n1\t50 430 919 3 241 10 41 1375 17 8 96 27 40 1 80 1187 16 43 7213 1432 1 131 153 2658 200 1 215 4561 17 11 12 39 2 1455 161 2441 2799 83 70 79 273 51 22 1063 47 51 35 54 26 446 5 652 2 163 52 796 5 948 2094 801 40 71 2130 14 17 7 1 467 85 9 131 6 2 299 32 1 6923 3 4601 22 128 722 17 58 1534 59 709 9531 479 128 17 475 24 1 1617 5 333 48 181 5 26 7396 479 1 166 161 14 2233 17 195 152 291 5 26 355 19 15 62 486 15 1 352 4 1848 13 150 314 5 149 80 215 716 5 26 1011 5502 3 4992 892 29 1726 17 9 131 152 2 9316 16 148 2466 896 8 100 56 36 14 1441 37 1 147 353 153 9988 79 14 78 14 27 123 82 1098 669 128 96 1740 1585 12 1 1726 13 3616 136 20 2 84 1254 7 1 4943 4 34 4 1254 2994 128 31 4776 738 82 4601\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 180 937 219 9 141 7 2 3840 2714 9645 15 43 493 4 2550 3 72 24 2 163 4 7311 9 18 6 2 1719 4 3786 328 5 99 10 15 9 10 1808 71 5627 4 611 17 1 278 2666 30 1 171 341 6 332 1 1 904 263 3 1 445 57 1242 31 491 1541 4 8222 2508 12 39 5343 32 106 27 12 2 1813 7 1 518 7021 3 1196 277 2660 102 234 3 3555 234 4259 1022 1067 38 1 1348 789 144 27 40 4721 9 108 34 1 82 8837 22\n0\t4957 190 26 510 3 1036 5 1173 689 101 2 4103 1807 3 399 789 11 113 111 5 90 411 5777 6 5 139 5 2 1114 2977 760 2 3678 5331 9335 90 4647 19 756 136 1076 6721 3 712 5 946 16 13 615 47 106 6 3 3426 102 4 62 2049 5 8989 550 127 7837 22 815 1 700 267 968 65 220 1867 3 41 12 10 5365 3 10 153 729 73 7 1 769 16 2 3106 4 2 1298 2526 1 53 559 16 1337 7 2 635 35 2486 5 26 2443 2 3058 1916 35 693 2 7120 3 265 11 865 759 11 54 55 26 30 2066 834 3 23 70 1 2281 5 1 1973 2 2358 262 30 2 3 1 5711 5649 58 28 181 5 474 38 132 29 2 298 416 2358 13 6030 100 1572 7685 42 1590 4 116 3104 2815 43 228 55 637 9 1 6300 4 9610 94 8487 9 8 2261 2 67 38 2 7135 35 433 78 4 25 1568 49 2 2853 8682 25 6030 6 2 2853 8682 738\n1\t1299 1 1909 10 12 76 751 50 360 8 459 563 34 4 1 759 183 8 159 1 2 5092 668 23 373 339 1015 1421 19 86 20 2186 5 1 347 3 8 83 96 10 54 24 1066 37 109 45 10 57 83 96 1539 8916 54 26 27 1059 2773 5 8017 1 5401 7 216 6673 3 38 48 1 345 57 5 5090 5 7 639 5 1 21 2148 9 46 174 84 302 5 99 9 21 6 1 161 574 706 9330 25 223 1779 12 47 4 1 7415 97 172 191 24 9620 298 3 402 5 149 2 36 27 6 610 75 31 706 9330 54 24 485 7 7477 27 40 6 229 25 57 229 314 122 16 1238 1076 41 16 1 5556 7477 9330 57 2 2096 1234 4 1141 7 2 5556 2 304 1238 95 1682 27 1037 94 27 40 643 515 40 25 3220 25 20 1 522 1037 179 27 6 2 84 668 5 99 45 23 36 45 23 83 36 4157 187 10 2 328 95 146 16 307 7 9 135\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 132 2 2038 1540 46 683 28 173 352 1424 7 112 15 1 129 4 244 5675 14 2 583 3 3567 77 2 3401 1 212 18 2480 200 550 27 486 7 2 360 234 608 536 34 157 608 2277 3 51 6 31 711 35 440 5 2303 25 6637 17 56 1373 7 1 3725 34 25 500 1 435 6 46 1101 3 37 6 1 4413 8 405 1 435 5 209 3 7292 15 1 532 7 1 226 178 608 3 24 126 1717 3 2499 8 93 555 11 51 12 29 225 146 1362 38 1 6442 25 2328 181 5 24 71 2380 3 608 207 1 1659 5 500 3 288 140 1 443 608 4049 19 346 1733 3 1 7358 1733 4 500\n1\t0 0 0 0 0 0 0 0 0 281 18 6 3 8 336 1027 1 3 25 400 89 1 18 1816 3 39 908 4553 1 18 6 2 1219 3599 4 2 53 2606 510 566 3 1 3966 3 299 11 6 1758 960 223 270 1 545 140 1 3229 6368 4 1 170 6582 654 73 27 6 1 585 4 2 3326 3 66 1483 5687 4538 1175 5 1291 6775 1543 1 352 4 1 389 642 1 7 243 341 1175 5 3494 1 7805 4 2 558 1753 7 4678 76 64 48 8 3 1 1307 271 778 936 33 149 730 7 1 8407 4 2 566 5 552 1 2 4 5044 3 1 486 4 375 5294 13 92 18 40 86 686 2184 17 33 87 20 17 243 1 4 1 1161 22 20 433 7 9 17 6 152 7438 421 4548 48 8 56 336 38 9 18 6 75 10 5824 20 1 687 7887 801 7 554 12 17 322 468 1861 369 79 39 134 10 323 2291 1 1343 4 1 682 13 5296 3 84 2803\n0\t459 89 2 21 11 76 198 26 138 68 1147 217 1777 30 29 225 6869 51 22 59 102 188 527 68 2295 2629 3 133 1147 217 145 2 5726 3 8 76 229 26 1 454 23 76 117 889 45 23 117 2006 503 3 8 83 96 180 117 71 52 5888 30 31 389 21 68 8 12 30 1 74 681 2110 4 9 21 3420 45 9 18 12 2 8 76 1454 149 2 111 5 720 1 754 7709 3796 1976 5 90 5 3796 1976 5 90 3036 1013 11 2082 12 1147 217 23 118 75 81 198 134 188 2102 5892 188 209 47 4 8 96 11 1147 217 1777 12 4176 6915 37 11 51 88 26 146 19 9 990 11 162 53 54 117 209 47 2562 5 637 9 18 1 210 18 180 117 107 54 26 685 10 111 105 78 8203 42 14 45 9 21 61 2776 39 37 11 10 88 7259 7 2 3631 4 42 46 2487 51 22 53 484 51 22 91 484 3 98 236 1147 217 9 6 1147 3\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3907 3 9739 7859 1110 14 1 102 32 2524 35 70 1172 19 174 1285 4 2 3657 14 275 32 1 958 811 610 1 2738 1 111 10 12 1463 7 1 74 682 13 92 59 1820 6 11 62 1285 6 189 2617 3 898 3 741 65 101 5679 49 33 889 1 3591 33 70 1 680 4 31 5 309 122 16 2 680 5 1110 3 582 102 510 6048 32 9695 48 958 33 61 377 5 3702 1739 372 871 33 33 93 309 341 2 342 4 1988 7 1 43 382 2205 669 55 24 50 215 973 4 7 1 13 92 302 8 338 9 18 138 68 1 215 6 73 10 1819 15 2386 10 228 26 378 4 2386 197 7315 1 141 8 173 187 23 4078 1799 38 9 669 497 468 39 24 5 99 126 205 3 1088 16 1315 47 4 394\n0\t0 0 0 0 0 0 0 0 0 0 208 39 159 9 18 481 241 1 746 19 9 1 879 11 187 10 125 191 26 322 8 192 2 325 4 1 74 17 8 118 930 49 8 64 110 19 154 3994 9 21 6 1634 78 4 1 85 23 83 118 106 23 22 7 9 141 55 740 28 1146 10 3130 36 1184 16 58 2560 58 2947 5216 7 1262 2537 6 4725 16 3032 3 1035 5 26 2 1872 953 49 10 6 39 7578 2966 7 116 18 6 2 772 111 5 3642 8 2183 47 4 7610 15 10 2 223 85 183 1 226 3603 17 8 12 246 105 78 299 15 50 417 403 3934 5 473 10 1294 220 1204 40 57 358 1134 484 45 55 19 116 88 6 2 514 2922 17 60 883 44 273 173 149 2 2451 16 768 3 561 45 23 22 246 1245 2709 116 646 2702 23 2 156 4821 45 23 2988 5 20 1030 7 2 18 36 9 6259 1394 896 1 4363 4 130 5723 16\n0\t0 0 0 208 1662 65 3 8 118 1 67 9 18 6 242 5 9623 292 8 58 1534 241 1 471 646 187 1 18 4675 16 101 14 53 14 1 855 3657 18 4 1 4514 2715 1476 1669 505 2 222 2690 1 263 6 2674 1 265 6 3 10 6 2 222 3 34 1 81 303 516 24 165 5 26 1 2843 1218 20 2 625 4351 736 32 95 4 450 17 8 1309 47 1767 49 1 353 372 1 164 35 1225 1 2269 14 39 36 6 51 43 1850 3920 4 4556 11 11 220 5248 2506 7075 1221 6 404 30 3429 11 34 6680 191 1203 65 25 6507 30 11 736 1 166 111 27 8 56 57 2 832 85 605 1 18 1067 29 34 94 656 94 1 1 18 1647 5 230 36 6810 8 12 288 16 146 2740 8 12 288 16 146 11 228 90 79 2564 17 8 143 149 10 675 45 317 288 16 3670 3560 582 204 69 42 53 16 848 2 7052 8833 17 45 317 288 16 176\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 30 237 1 210 1260 4 1215 6855 8 24 575 10 6 704 41 20 1 846 4 1 1106 117 284 1 347 30 690 8392 1133 6 903 3 6261 14 6944 361 49 20 39 908 161 121 887 40 1 80 2431 7042 8 24 117 107 7 2 7477 108 1 120 924 1271 5 239 1885 37 1 1086 6433 381 7 1 347 11 6 1 3397 16 62 1052 3427 3 1549 6 9700 1 393 6 13 760 1 3744 6275 324 3438 10 6 37 306 5 1 1158 42 36 246 1 821 284 5 1038 6275 6 1016 14 7481 3111 1133 6 3534\n1\t251 669 83 96 33 117 56 997 849 27 198 1204 974 5 24 122 1030 316 7 2 398 73 8414 1 251 93 12 5 8632 3 2 3850 4334 511 139 125 46 105 573 73 114 132 2 360 1321 329 4 2239 1 1244 3850 35 57 9 4116 5 186 1489 19 6990 10 12 2 306 4621 5 64 9 232 4 298 538 278 7 2 2543 1125 17 8214 12 2 53 3 1 61 37 33 61 46 1202 5 79 29 1 85 3 14 2 635 8 88 39 830 5 26 185 4 127 35 29 1 85 61 38 723 172 972 68 437 10 12 2 46 1303 251 5 503 2379 47 7 50 2079 4 137 268 14 2 293 131 15 218 14 530 8 449 33 76 2 53 538 305 4 1 1125 11 54 26 2856 55 1 91 5554 200 22 128 837 5 836 1 406 251 61 20 14 501 224 3 39 20 14 78 299 14 1 74 3037 33 93 149 1 82 251 15 2969 5 26 256 19 1771 32\n1\t5214 122 3 1377 4 3 188 139 5790 13 858 23 63 64 9 97 82 19 1 251 15 101 2 820 7 16 12 654 11 16 2 154 625 4 1 754 767 22 675 50 430 6 49 3426 142 5 70 352 183 1 1713 2089 9892 93 42 2 2314 4 137 3787 2093 9524 124 106 297 6 2437 3 534 4434 22 81 6584 1 120 2951 46 2437 3787 2389 6 198 7 2 3832 3 2588 258 22 34 3787 7 2437 55 49 1 263 432 236 198 146 5 176 3706 1 263 6 51 22 59 37 97 716 23 63 6555 1 22 232 4 810 17 1 201 2734 10 1294 307 204 6 313 3 260 19 55 14 31 1028 123 2 53 1614 6 1 239 427 16 34 86 100 160 13 252 213 16 1603 3431 1 2314 190 26 433 19 80 81 3 1 840 6 167 1 840 6 248 37 3 15 749 265 372 125 10 42 254 5 186 10 2556 814 16 43 1046 9 76 56 916 8 187 10 31\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1625 16 9 18 143 87 1 18 8097 3 136 1 18 143 118 48 10 56 405 5 70 1 74 350 4 1 18 101 2 5341 1151 267 3 1 330 24 2 52 5709 684 1794 1 790 1880 12 78 138 68 8 179 10 54 1142 9 18 12 52 4 2 1992 141 17 1 1625 89 10 77 52 4 2 1216 953 66 10 100 56 590 47 5 1142 101 28 4 50 4 448 145 17 9 18 2012 5 26 2 5341 45 595 3445 18 11 2149 828 277 47 4 723 2682\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 1477 19 37 97 3 630 4 126 22 1 952 11 10 12 1576 5 26 1477 3377 13 3793 320 4167 49 317 133 4 1 434 3 82 1058 1028 26 33 53 41 9 6 1 2441 11 33 22 9 6 48 151 1028 104 37 6389 13 872 48 151 10 138 68 84 6 1 67 516 1 108 2 641 4125 1776 76 1851 23 15 297 23 321 5 8545 13 1601 7 399 10 153 236 100 2 272 106 23 96 5 725 70 19 15 10 1047 1911 3 9 6 1 103 1101 604 4 1028 13 1627 1853 42 45 116 6045 2731 31 1234 4 85 7 116 760 194 751 194 112 592 13 858 2 84 8036 45 317 133 10 19 2388 468 1682 11 51 6 478 363 285 1 2238 7257 1 668 8667 207 73 11 265 12 7037 826 32 1 66 6 229 1 59 770 3687 4 11 265 11 128 5027 66 6 223 227 5\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 381 1 67 30 2105 17 1 188 11 8 2178 38 217 90 9 18 2 191 1861 1 6053 19 1 2345 217 1 3068 217 75 33 61 314 61 301 147 5 437 8\n1\t85 15 122 6684 122 1 1175 4 27 153 198 209 142 14 4548 80 4 1 85 244 2 5803 307 7099 122 2 184 8501 73 27 396 748 65 2 3 3389 126 32 110 37 154 85 23 96 275 76 475 186 122 2563 28 4 25 417 255 47 4 1677 5 592 13 659 28 4 50 430 3428 4195 3 61 47 7 1 1692 7 2 3254 3 43 559 15 2962 636 5 2452 450 4195 314 10 14 31 1335 5 3964 2 2869 38 13 92 12 5 1743 450 4195 553 11 3351 57 350 2 45 27 57 58 27 54 24 383 126 30 1705 45 27 57 2 148 27 100 54 24 390 2 37 27 544 3039 122 10 12 167 695 27 12 1 3 4 448 27 2716 394 4365 1929 4 29 34 1287 3 4 448 27 12 7 528 1377 29 34 1287 33 152 57 23 13 5891 46 313 880 10 12 28 4 50 430 203 289 4 34 290 4921 6194 366 9529 6430 4 1401 296 3762 13 6570 53 6692\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 79 3 2 493 1150 9 18 73 10 2397 56 452 17 72 61 1328 74 4 1 121 12 1 5867 1 363 61 56 91 14 322 10 384 36 2 21 2 1185 635 1001 1 119 12 167 501 17 9927 71 1613 1 177 11 2175 1 104 1 80 61 1 1488 1 250 259 12 1 210 353 2 1152 145 55 3039 122 31 59 53 177 38 9 18 12 10 12 37 91 10 12 45 23 175 2 53 539 64 82 68 237 295 32 9 461 8 531 112 1493 1307 104 3 4924 17 9 8 87 20 118 75 10 12 2021 5 55 26 256 19 28 6 1 210 180 180 107 43 91 3449\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 119 11 3 4 5197 7 5719 2 8077 15 28 601 3 1 82 2 4 2 1 203 12 303 47 3 3546 15 31 790 1065 1380 169 815 928 5 26 688 378 9805 31 2861 6079 4 7160 66 239 82 5 2214 480 1 462 2330 101 2 325 4 6000 4 203 220 1 2353 9 903 119 1298 15 42 6851 1251 36 2 161 4355 94 101 1407 8 793 9 431 14 101 1256 371 32 1 70 3137 100 56 605 142 2882 82 68 5 64 10 140 16 48 86 279 3 49 10 475 310 5 218\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 382 368 9974 6 1 113 356 4 1 1818 8536 3 7789 205 187 7574 453 7 1 102 951 2842 3 1 607 201 6 6760 2355 15 453 30 4959 3 492 115 13 92 59 8 228 1351 6 11 280 12 2411 217 7807 1491 44 278 66 12 4275 42 39 11 1 21 384 5 734 102 2411 168 5 44 13 32 458 1 3 238 4 1 3602 67 22 6286 3 1 4 1 250 120 3 75 48 33 839 62 5807 22 30 1 4231 480 1 1324 1809 1 2216 2683 2880 1 868 6 93 13 9 2 961 368 3124 23 814 2014 7969 130 2 3974 17 307 422 130 335\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 747 49 23 63 64 48 2 18 12 2621 5 1690 3 10 6 169 631 11 10 1310 237 237 386 4 1 8659 21 1554 130 186 9 14 2 2869 3 2 54 26 9592 40 31 3742 27 451 900 7130 37 27 25 1262 1719 34 30 2085 9594 25 1292 6 237 660 25 3550 531 27 5051 31 9336 263 331 4 154 5440 427 27 63 209 65 1566 9594 27 6 52 942 7 1 1751 4 1 67 243 68 19 1 3022 4 770 15 171 19 2852 1192 9594 27 741 65 15 2 18 11 6 7 42 525 5 932 19 2 2568 3550 9594 27 741 65 15 2 251 4 3661 8264 481 87 2028 30 3039 126 11 230 36 33 61 428 30 2 2042 349 3176 3 531 27 741 65 15 955 1171 168 11 2197 5 4558 1 3930 49 23 176 29 32 9 2821 23 63 1279 348 42 39 1 692 9596\n0\t2607 1 4 44 895 372 19 266 2 29 4572 22 2 5904 4381 1137 3 2311 31 41 130 8 867 2 28 4 1 4572 152 196 3219 30 1 28 938 244 4025 126 142 25 2389 28 30 628 1 398 938 244 2777 7 450 1 398 178 289 2 7 1 13 614 23 179 11 12 167 23 130 64 8707 7899 372 2 3597 6122 35 196 47 4 1 3034 8 88 202 572 44 517 7 3148 11 60 12 355 47 4 1 13 92 570 168 8017 626 3 2 957 259 1157 19 1 3135 4 2 1863 974 15 62 7123 5 239 1885 6297 140 3 2777 7 13 6570 676 1 108 236 56 58 1376 41 2725 5 1 135 10 12 1576 5 26 2 756 2592 29 1 290 944 42 2029 45 10 196 7096 7 2 19 116 558 756 13 614 23 175 5 1236 29 44 1726 98 99 31 431 4 6692 45 23 175 5 64 8707 7899 403 235 5 256 9648 19 1 4674 3 946 1 98 99 9 682 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 320 11 880 8 128 320 11 2382 3404 299 788 1340 3478 10 7007 71 3594 1054 41 2346 41 2724 3094 1098 5300 339 552 9 131 3 1070 88 2215 41 1 16 11 310 3513 1 4313 61 892 3 1661 5300 88 90 43 53 672 11 61 138 68 17 9 131 337 5 898 73 4 1 1054 1865 4033 81 93 10 1619 14 595 4 2 2806 131 15 1054 3678 460 642 1 1069 12 7 42 2796 183 33 544 4025 1 1906 14 5038 8040 14 1 114 8 1505 1 4033 61 3094 3 17 128 1 833 788\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 332 336 9 2814 8 12 5 99 10 29 74 73 8 179 10 54 26 105 7191 8 320 75 254 10 12 49 294 12 3812 245 133 1 4 472 79 155 5 2 85 49 27 12 128 2191 3 51 12 449 3 8 96 11 1 846 114 31 491 329 5449 48 24 6969 12 5675 14 776 3 2006 1 3953 522 778 8 12 1475 15 25 1778 3 7188 3071 6 93 46 964 3 12 169 1202 14 50 430 546 61 1 178 7 1 2312 3 1 178 69 66 12 37 1 21 303 79 15 205 5903 3 205 4 66 8 230 22 340 1\n0\t1 1863 6 2 4115 334 16 1 119 5 618 961 1 190 1142 14 16 1 505 42 1669 29 1293 4537 266 1 466 17 56 1 344 4 1 201 153 131 142 78 3694 266 1 5104 3 6 229 1 80 2830 5444 737 17 55 27 213 11 5956 245 8 114 36 1 129 27 66 12 2 327 720 32 1 687 574 506 72 64 2 3284 14 237 14 1 393 5655 1 226 3334 269 4 1 21 57 79 1120 5 50 182 3 10 12 46 13 3616 9856 12 2 3315 297 12 46 3 2674 66 6 595 1078 9 57 1 1187 5 26 2 547 1222 108 51 61 2 156 4115 2103 17 1 18 3870 95 1216 41 4523 3 57 103 119 3612 779 1202 807 420 5268 7903 203 596 5 552 62 319 3 947 2268 42 47 19 3481 41 760 1 215 1670 73 51 22 332 58 3917 675 43 190 149 2 103 1033 7 194 17 10 12 237 105 961 16 50 8 909 1824 3 303 1 856 46 1558\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 336 9 18 34 4 50 500 42 132 31 1244 67 896 15 877 4 4459 1 2468 11 337 1156 4029 1188 12 404 1 322 7 4459 9 12 1 164 35 1 2 2622 4494 4478 4 102 41 52 82 7 2393 6 674 1 411 3 25 9667 115 13 150 36 104 106 1 1063 24 674 8138 62 1607 15 2 4 1031 80 661 66 1017 19 293 1456 17 38 19 2 13\n1\t1 683 4 48 151 2 287 2 3248 3 48 151 2 1559 80 1770 1750 115 13 3027 611 1 233 1 976 466 8570 32 2 5 8348 164 7 1 1032 4 28 21 981 36 2 976 6636 7233 17 25 5495 6 9727 2959 10 213 2971 14 10 54 26 7 2 21 5 976 378 10 7700 6821 2429 32 1 124 979 13 4804 169 1515 6 1 111 1 3728 22 1012 14 1080 7546 1251 32 62 1950 44 1671 40 2 3234 3 66 6 2118 5 296 5778 3 136 33 22 25 33 22 100 56 25 7 6731 33 3964 122 5 26 13 150 56 29 1514 5 3628 1030 10 57 79 1437 704 44 12 17 630 4 1 5993 4 44 8 1049 95 3506 4 110 300 10 6 39 3452 17 10 12 2713 115 13 150 63 59 449 11 33 3707 44 125 1 522 316 521 37 60 63 473 47 174 84 135 480 50 2270 29 1631 1 859 6 9 6 2 1914 21 7 154 111 3 229 1 280 4 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 18 57 2 163 4 5796 906 10 310 1251 73 4 2 67 2519 3 940 551 4 28 4 1 46 631 2387 12 11 2077 35 262 31 6380 996 143 118 75 5 25 221 6380 9 190 291 2 346 4594 17 10 985 5 1 7148 551 4 991 7 2709 838 5 8506 1 538 4 121 12 6760 109 2255 7699 115 13 2084 2278 12 1 1298 7 1 119 29 1 46 3 2 710 788 669 83 2209 1 1952 10 12 2 167 91 18 106 2077 5689 12\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 924 2 18 29 399 17 243 2 148 983 829 16 1 80 185 4668 3 993 43 4 1 700 1039 460 4 1 1393 7 1 6 31 332 491 397 604 11 191 26 26 273 5 2951 116 3660\n1\t0 0 0 0 0 1 234 4 1 4145 6333 6 2 5411 8182 1162 2126 4 6292 3 678 1289 200 7 1 1190 136 1 2435 959 80 4 1 120 22 1424 6 1677 5 26 575 10 6 2 234 2696 4 441 49 1 162 310 5 2089 1 234 8213 13 1509 1 1518 204 6 1 234 14 530 9 85 10 6 2 568 4145 15 3888 1 2641 22 2 184 286 31 761 3 5965 6008 1 601 4 1 4738 3 2 678 4118 33 22 5187 30 1 80 103 282 7 1 234 2190 5 50 114 20 1288 2 586 1370 3 3037 362 9979 13 92 847 6 1051 1 3079 3 1 981 22 401 105 91 1 67 6 14 641 14 28 63 815 33 139 5 582 1 234 33 2500 122 202 33 5423 550 1 714 58 148 129 1273 41 67 20 55 1 879 8 54 504 32 2 18 15 132 2 6199 13 7479 42 2 1257 177 5 1775 374 54 229 335 194 17 207 38 110 58 1384 5 9 234\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 2 1721 4403 161 1248 29 408 3 85 5 85 60 2026 2460 56 565 28 2341 60 12 246 2 933 832 85 355 5 2460 49 1 833 788 310 19 4798 60 2165 2826 202 3 16 1 344 4 1 131 12 6694 8 1407 44 7 44 3104 3 219 44 2382 44 8657 44 3 152 539 29 9 880 1 721 44 2983 3 749 1 389 290 8 93 165 2 388 4 126 37 11 29 268 49 50 103 28 6 8 24 146 5 6088 768 4672 518 29 366 45 60 15 5 1 22 20 44 4259 4 17 33 273 87 209 7 49 8 321 2 103 85 5 87 1 1003 1197 38 1 6 11 50 583 153 55 36 133 4798 8295 243 26 7 1 3135 372 15 2 3339 41 15 257 346 3339 68 99 4798 1891 1 24 400 2151 44 3726 8 83 118 45 60 76 1811 5 36 126 7 1 958 17 16 195 444\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 904 640 2422 606 3 8217 807 29 74 8 179 9 18 12 89 285 1 220 1 572 4437 14 109 14 1 857 3 589 384 556 32 31 161 2351 49 8 5391 3 214 11 10 12 56 89 14 518 14 8 12 9 6 30 237 28 4 1 210 3 225 104 8 24 117 4164 13 614 23 284 490 26 45 23 64 10 23 351 85 49 23 88 24 248 146 52 7277 36 133 2756\n0\t38 62 632 14 45 10 40 58 2944 33 190 20 34 26 16 17 33 22 1314 447 4572 372 47 7334 3 4194 2015 106 52 68 1206 6 32 1 21 28 54 70 1 1418 11 33 1281 1376 5 1 415 35 139 5 1 1040 3 98 182 65 1 16 2015 55 1 802 7 1 1957 59 131 415 7 1044 4 1 1039 3 1 59 372 5 1 415 7 1 1754 9 39 213 1 864 4 127 10 54 26 167 254 5 90 2 536 403 2015 5866 16 826 415 3 37 48 87 33 56 230 38 62 1040 3 72 825 46 4618 378 72 70 2 1040 35 1583 162 5 1 2221 4 826 2 4048 35 649 199 38 1 1759 16 1 2739 1630 17 1664 58 3122 77 1 486 3 13 92 1482 4 4445 707 22 1 5175 781 6 13 252 6 2 400 4812 21 66 130 26 4 796 59 5 137 35 175 5 64 2 156 1482 4 167 1161 7407 1 344 4 1 18 6 31 2158 5 1040\n0\t68 2498 7 2 1863 974 408 3324 648 4 408 220 49 40 10 71 1551 562 5 1042 126 14 124 69 8 467 5 867 124 314 5 171 3 3 3 37 19 69 20 95 52 69 39 5273 116 417 3 1154 371 16 1 7898 1 397 15 31 2039 3 70 275 5 735 224 1 15 2 395 69 98 5055 10 19 1 16 43 345 5 186 408 7 3058 17 2176 1 69 8 884 140 80 4 490 3 8260 10 5 28 3453 1578 16 1 318 1 398 1925 136 133 2 7718 326 203 5 186 408 3 359 32 2 264 195 9 21 89 176 36 1 37 8 8410 3591 3175 155 926 5 1236 65 19 43 4 1 529 3893 19 1 360 970 11 902 4826 61 2406 273 1509 308 8 57 165 125 1 1 7016 3 1 2895 4 3591 3175 12 1963 19 8 88 9369 3 2724 70 224 5 1 211 2688 3 236 2 163 4 110 841 1 98 841 1 1772 4299 10 228 55 26 279 110 7994\n0\t0 0 0 0 0 0 0 0 0 296 429 6 1 296 4808 18 7 1 1199 5372 10 56 40 162 5 87 15 1 215 277 296 4808 104 571 43 4 1 120 22 377 5 26 3017 5 1 120 7 1 215 3607 3 6059 6 7 10 11 259 70 138 13 677 6 46 103 5 9664 9 18 778 51 662 95 211 4019 1 121 6 1370 5 1775 258 1 282 15 1 1778 66 981 52 36 2 4 2 598 287 4851 5 26 2 30 712 1 736 9 18 151 79 230 36 132 31 144 143 8 9144 5 2 1185 106 1348 271 5 897 2266 1603 196 53 624 5040 186 62 2389 142 7 1603 40 447 197 1 4 8040 3 3 23 63 34 125 2 4663 231 5993 197 44 1581 9 251 40 554 5 1 3220 4 300 16 1 398 628 4541 475 1173 224 3 4158 3044 3924 14 1 7592 145 273 33 63 39 5454 10 7 5 1 251 30 253 25 129 3925 1848 308 5708 41 146 36\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 850 180 71 1491 1 260 236 2 223 5 99 9 21 3 475 57 1 680 5 87 1943 3 7595 13 1701 95 2969 205 1656 4 6721 6130 7 1 2642 1 681 9774 6 229 1 16 86 9005 7 1117 297 6 1325 3 23 56 70 1 507 4 101 1208 9 85 605 32 1 6000 4 2757 616 36 2268 1762 124 4 1 15 5716 4 2969 951 1 178 14 1 1576 18 5518 4 25 111 4 1873 15 46 7202 7443 197 101 2018 1 4 1 545 15 1 4187 5 5939 43 4 1 9816 72 5357 7 257 4370 13 858 14 10 8 87 241 81 36 2969 88 352 1342 7 97 1175 7 2 1 326 124 3 1132 11 1720 9 426 4 869 22 58 1534 14 2 9677 16 436 10 88 26 1 357 4 2 147 218 717 4 931 1377 125 257 9 6 48 27 1664 5 199 1506 140 25 216 125 3 8137 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 96 180 107 34 4 1 104 195 3 1227 479 34 46 3652 571 16 1 17 9 28 6 37 91 42 13 13 777 28 4 137 104 106 1 129 123 1 439 188 11 58 28 54 117 1405 244 2 2755 16 144 49 25 537 139 1156 123 27 20 637 1 9104 850 1661 42 73 34 1 613 812 37 479 39 2900 122 3 369 122 26 13 1833 244 4611 16 701 33 39 369 122 139 27 54 26 3746 65 7 2 3611 2 115 13 4196 54 23 2739 116 374 2507 577 1 913 49 23 88 728 2909 126 29 13 92 613 83 1460 5 328 3 149 31 3959 1741 33 83 1460 5 3634 25 13 858 16 1 903 13 659 3977 46 3206 3 2 528 351 4 1425 13 608 28 4 1 210 124 117 1001\n1\t1 4 1 251 6 370 19 1 120 3 795 4 1 18 7 66 1 3511 6 2144 285 31 4062 7 13 92 767 22 822 3 806 5 3 46 97 4 1 5583 584 88 728 24 71 89 77 84 1045 104 4 62 2487 48 629 398 12 198 13 92 120 19 66 1 131 22 93 3 2335 62 1511 6 5709 17 1 927 6 15 1115 2485 3 2466 33 22 311 299 5 4578 13 1339 200 1022 9063 1 251 544 5 77 2 7511 857 370 19 1076 2 625 395 98 1 1 2392 390 52 1618 954 163 52 3 1 120 61 128 14 84 14 117 17 1 131 12 264 7 13 1268 177 11 191 26 1505 6 5 99 1 767 11 1 3 4916 33 22 311 3434 33 1 1688 3 5692 2318 1744 11 3091 1 251 140 394 13 614 23 22 2 1045 1787 99 2 156 767 4 1 74 843 3299 3 468 1458 26 9584 45 23 36 67 456 189 102 23 24 394 3299 4 289 5 176 890\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28 4 1 80 2107 104 180 107 7 2 223 387 1037 217 9980 1486 6 1 330 892 1406 4 1037 6518 6309 3 3351 4860 51 22 102 1175 5 176 29 9 4356 1239 23 64 1230 1765 237 640 4605 3742 23 64 2335 5385 35 286 316 149 730 7 2 1261 105 184 16 62 1337 2 1660 8014 41 2 5226 77 9 119 3 10 432 2 184 2965 108 1037 3 3351 139 77 1 67 15 1 166 952 4 59 42 1037 3 9 6 2 5 3922 926 17 49 23 99 1 18 20 14 2 8303 1073 17 14 31 1406 1738 102 559 35 24 58 1255 101 7 31 8095 10 432 37 78 1129\n0\t2 834 18 15 834 1881 4 15 1224 6553 1131 2506 147 8 12 55 1790 5 96 11 578 7646 2376 3585 6 355 2 222 1466 8 36 578 7646 7763 17 25 216 16 834 3 2395 3386 403 154 3265 1338 1567 418 5 2951 8 56 96 11 834 969 43 2982 1109 1667 11 12 37 2427 33 343 10 54 2373 554 45 33 8410 43 265 3 6798 19 592 13 872 48 6 4350 4116 15 781 3889 3 848 1248 51 61 2 132 1025 528 15 19 1 4 355 62 3867 689 8 96 834 693 5 3082 11 1804 24 2 1086 3 240 157 1137 4 157 3 469 3525 11 1376 5 1 2916 11 165 3295 5 9 21 30 62 5809 8 12 93 4 75 834 2165 109 386 4 11 164 57 235 5 87 15 1 6193 22 33 37 1893 4 1 2568 7787 4 11 33 96 42 128 2 3755 115 13 150 354 9802 9 28 3 2424 1 1668 1849 7500 19 1109 124 291 5 26 113 248 30 1 598 29 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 5364 5 187 295 737 8 54 39 134 9 3685 2355 1171 3 7910 103 76 8461 1 545 15 31 313 594 3 2 10 76 4064 815 9527 2171 3 202 407 29 1 32 85 5 387 14 10 8611 1 17 20 6544 393 197 1496 3847 41 961 7 95 699 80 373 13 743 817 878 380 1315 47 4 394 16 1 21 3 394 47 4 394 16 205 4497 3 1485 453 69 8 1023\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 54 112 5 24 11 102 719 4 50 157 1877 10 384 5 26 375 3502 32 1764 1849 251 11 12 77 2 4742 7209 1471 83 3137 45 23 191 64 194 947 16 1 388 1104\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 180 107 28 105 97 1004 2493 41 300 8 83 186 1 260 13 252 12 1 80 1881 119 39 908 439 18 8 24 107 7 2 223 1425 13 858 16 1 2132 10 276 36 10 472 364 85 5 131 9 68 10 114 5 256 10 6340 13 659 233 10 276 36 5 89 10 826 5 388 183 10 12 13 777 2 91 2555 142 4 1 382 21 993 745 1397 26 37 78 138 142 2424 11\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 112 9 135 10 6 109 428 3 1171 3 40 53 5785 1 67 1357 2106 3 15 84 748 3 304 1972 5574 64 194 751 194 131 10 5 116 13 92 121 6 53 3 2770 258 123 2 514 329 2239 1 5803 8 381 34 1 120 3 214 126 5 26 240 3 109 1619 15 4682 13 150 4268 48 653 5 127 81 488 136 1 5683 12 167 961 395 53 559 1 950 196 1 1805 282 3 1 5326 583 3389 153 64 11 10 128 89 79 749 49 297 1066 47 109 7 1 714 1479 851 9 644 7529 12 100 2175 15 2 1865 4384 4558 43 65 19 1 3 99 9 1816 749 3 548 135\n0\t430 4609 12 11 28 15 1 4 1 7837 32 1110 4 1 8 495 3673 75 1 18 9196 17 39 6264 5 7 4621 49 8 348 23 2 6 1256 77 1 1324 13 872 4 611 236 2 360 2760 4 533 1 212 108 64 2 259 101 3295 516 2 2839 125 2 7626 3 1 398 383 289 122 101 3295 125 9813 3644 64 11 1477 19 1 522 9660 720 4251 740 1 166 178 6095 383 40 10 19 1 303 601 4 25 4843 1 82 19 1 322 94 399 6 2 42 458 41 9 18 12 383 7 31 5626 4053 106 188 36 311 83 13 858 78 14 8 381 9 3 14 78 14 8 192 288 890 5 1 82 535 7 9 1125 8 87 24 227 4 303 7 79 5 20 369 9 18 8 192 1024 5 187 10 1 9287 1234 4 4301 6397 39 37 8 88 26 446 5 2 342 4 52 985 16 1 815 6084 3066 5 5345 228 26 2 3913 1816 4981 217 3526 10 93 6 31 2803\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1209 40 89 43 313 703 8 323 192 2 13 2298 8 173 352 17 230 11 1 6361 1590 4 816 5860 347 70 1 6 433 7 6981 5 1 184 1250 5239 816 5860 3 9009 1209 22 1115 3 4 3694 1391 193 9 28 39 143 916 115 13 499 247 11 1 120 1121 109 1619 41 1 119 3 1933 143 209 5010 42 39 11 257 22 78 52 1127 49 765 2 347 36 476 1181 556 295 5 2 264 85 3 334 3 72 519 96 1 210 2633 1 113 3 10 1583 5 1 790 4 1 347 14 10 6135 1869 5 1 104 618 63 597 28 15 364 4 1 2407 3 1900 32 1 790 2751 9 6 48 8 241 653 3127 13 150 1379 765 1\n1\t6 2213 220 25 379 6 752 3 6 1302 5 550 27 498 5 912 27 1148 32 1 8196 9544 406 60 60 57 3388 27 54 64 768 17 60 40 2 3357 49 60 432 10 432 2429 16 5 209 7 32 1 3 1017 85 29 27 378 2080 638 5 274 122 7 1 4 1 55 94 101 30 638 27 6 4864 2 392 17 9 123 20 3183 1 9119 255 5 3 1 4625 6 16 1 29 6294 638 1678 25 1191 19 1 4 1 937 758 5 3 7 2 66 40 2200 1 469 4 508 35 2311 310 7 4208 15 194 25 851 5 162 1 3 615 11 4044 40 209 5 25 9001 9 21 6 198 1476 8880 7 86 2514 4 168 3 3628 3391 1 206 3 2285 90 333 4 1 3 22 3478 52 1134 7 1 120 68 7 202 95 21 1137 1 774 5286 1 6 2 222 4607 220 1070 779 1842 1626 22 89 1284 7 132 409 16 86 5639 514 453 3 1244 1765 9 1005 991 4398 2494\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1668 6030 6 152 1505 7 1 21 17 20 7 95 111 11 151 95 888 1821 29 28 374 22 5066 3952 1 2812 115 13 3828 905 5 5466 48 4541 149 224 51 3 28 4 126 954 666 60 4541 149 2 1668 13 4375 1333 110 400 5 1 441 1 59 747 2771 5 1 2953 3 58 312 144 60 54 1331 8295 149 2 1668 6030 7 2 13 1964 2692 16 246 2299 10 17 1956 57 5 320 8\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195 8 24 100 117 107 2 91 18 7 34 50 172 17 48 6 15 759 7 1 18 48 1468 123 10 3702 5858 43 5434 289 65 3 33 8 63 70 2 32 476 6 1445 1 1350 4 10 22 1445 86 2 184 6063 5408 176 39 757 224 19 759 3 33 76 70 2 53 1020 8 11 9 18 54 24 71 514 45 33 256 47 2 859 23 191 64 34 1 767 5 365 4687 160 19 3 10 6 20 2 135 10 6 39 31 847 10 130 26 19 9713 13 646 187 10 2 755 73 8 39 165 715 4821 8 88 20 187 10 2 350 73 236 58\n1\t71 6121 32 43 1587 11 12 400 8161 5 1 2176 2 95 18 11 418 15 2 315 412 3 3864 765 4668 1 6 160 5 26 1434 9 907 11 1 804 6 37 5353 11 33 24 5 1346 10 5 4840 13 659 9 1723 4668 1 907 458 378 4 1076 7591 24 559 7362 77 1598 6048 3 5686 10 47 5 322 207 100 1722 17 42 229 146 56 6820 51 22 53 559 4623 3 91 559 3 51 22 184 13 1 363 445 12 167 37 72 83 70 5 64 2 163 4 1 184 51 22 877 4 772 288 9254 1025 3 98 2 184 1032 566 774 1 714 1 1032 566 6 258 4358 14 10 2601 6244 58 1734 82 68 1 2963 1 4 1 363 13 3371 367 319 195 1 7242 566 77 341 145 20 253 9 102 559 4101 239 82 15 8 63 198 70 2 539 7 2 1940 30 1 570 1146 528 15 2 226 427 8323 5 597 95 410 8920 62 13 4567 8 6465 207 144 8 969 1\n1\t60 2995 142 109 1 2670 7201 3 1758 11 6301 1282 14 60 959 1 1387 516 1 1235 8 44 5642 4 40 43 7 10 854 1 4 1 67 427 6 11 60 271 19 5 2 895 7 1800 10 88 26 56 240 16 31 972 5 29 2 85 4 5059 406 7 1 500 39 2 13 289 86 206 7 2 53 7114 3813 93 40 1 523 8203 8 83 118 4 95 82 21 216 40 1613 8 63 59 560 48 653 94 132 2 2911 13 4567 80 9 28 40 2 2496 1903 607 1249 292 1037 1461 6 924 656 125 1 576 3000 27 181 5 24 71 446 5 9332 31 1502 604 4 412 8 2209 283 122 937 7 2 89 16 249 4408 15 2 1383 6317 1037 262 596 4 1 382 199 249 267 131 1 190 93 24 31 796 7 73 1 914 2228 6 5341 2299 15 7805 30 97 73 4 44 6083 4570 15 1 4811 13 88 728 20 24 17 10 123 4010 8 96 10 6 31 548 67 279\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 2178 32 218 13 743 547 2 1053 282 35 63 634 3 339 582 9 18 32 13 495 187 23 116 319 9142 13 2663 49 27 4263 1 263 3 666 128 13 2805 693 121 13 2 13 5214 79 105 3 79 30 253 79 946 5 64 9 682 13 1833 253 2 141 23 83 321 31 1905 39 597 297 31 3509 227 37 11 1 410 621 3072 183 1 1905 13 1610 63 5939 469 39 30 4401 2 2146 19 2 37 90 13 7820 63 2369 23 155 5 3223 13 128 693 121 13 6595 76 812 23 3 90 299 4 23 45 23 652 408 9 682 13 76 20 26\n1\t67 1413 115 13 92 74 4328 4 1 21 1745 2 3289 4 157 1208 2 1473 75 2 9570 411 77 2 1176 4 11 185 818 6 169 501 3 57 1 718 71 1747 5 549 86 1576 611 10 229 54 24 71 1 1338 1030 5 2074 1 2196 4 1496 2 5825 115 13 3204 4 611 34 898 2296 1 5555 1068 1 5134 6 8521 1586 14 943 120 11 72 24 1866 5 118 22 8912 77 5287 4149 283 20 59 1 17 93 1 4042 6 2 46 866 572 4 1809 423 7953 115 13 92 7 66 22 2144 5 26 433 3 6 423 589 29 86 157 3 469 4008 7 1 1031 97 484 1 545 20 59 153 118 35 76 414 3 6252 17 1975 3457 38 450 115 13 92 59 1332 177 8 24 5 134 38 9 6 11 1 626 7789 8 61 3 143 5379 1 67 29 513 33 61 229 1253 39 5 6381 52 756 13 7479 1 113 718 180 117 575 7683 4 3532 423 1900 3 2331 47 4 5579\n1\t1535 1025 9 440 5 5626 189 402 1659 3848 1190 217 813 217 5941 51 22 43 885 293 3624 363 14 3708 236 802 4 106 60 40 57 34 4 1 3059 4518 142 44 823 217 1 1854 4 44 522 15 44 3495 781 73 60 40 58 8754 303 6 167 3860 217 3624 363 11 1385 79 4 696 168 7 217 42 98 236 1 250 448 29 1 182 106 6668 1345 275 528 15 6053 4 3059 1089 217 122 10 142 1 217 1472 10 77 2 46 51 22 93 943 823 3955 236 43 1349 204 14 109 15 29 225 2 342 4 167 2479 355 13 260 5 1288 6 2355 1 293 363 22 609 217 14 80 6000 4 203 767 10 153 176 36 2 772 4743 131 66 676 45 1 1387 26 553 10 705 1 121 12 514 17 236 58 184 7 9 2396 13 5 1288 6 174 837 217 595 2733 6000 4 203 431 11 80 203 596 130 373 841 47 45 20 39 16 1 1442 109 279 2 16 137 15 1\n1\t21 271 77 43 4 1 113 6310 8 24 117 107 7369 51 61 723 491 879 47 4 34 1 53 3449 137 723 8 76 357 648 1395 28 1008 14 2 29 2 1863 35 615 112 7 31 161 7677 1 398 28 1008 14 2 265 5518 35 6 403 1255 15 2 287 262 30 8416 174 28 1008 9910 3 6487 14 102 81 160 5 129 101 1 113 28 1008 9535 3 14 2 161 9229 8 76 652 5 116 838 11 151 31 1502 3609 2289 3387 3 523 2 6966 38 2 3 5817 8938 3 4910 22 313 14 2 164 3 2 147 3820 8 112 23 6 373 14 501 45 20 138 68 1 6012 2498 1 6310 22 3 1 21 289 75 2445 124 130 56 1142 1 158 245 123 20 24 14 97 754 971 14 2498 66 6 144 10 12 885 5 414 65 5 86 45 23 175 5 2655 64 43 84 1005 1456 64 31 491 1234 4 84 2137 3 39 908 26 2983 98 373 139 64 147 3820 8 112 1038\n0\t242 5 4376 110 850 2056 1 2646 11 12 32 8251 12 7 110 83 256 224 8 1266 72 34 90 17 2010 23 89 2 13 28 177 11 40 100 71 248 7 2 6488 55 31 34 633 1249 33 152 4986 2 287 32 1 11 228 26 2 1214 2808 55 193 44 5631 130 24 71 2415 3 60 5823 1 1604 819 165 5 187 1 206 43 991 16 242 2 1214 2808 896 180 100 107 2 287 32 2 2839 7 95 6488 292 11 143 780 7 9 141 8 39 179 8 54 187 1 206 174 312 16 1671 4 66 130 26 89 260 94 1984 4770 4 1 1198 300 11 12 48 1 1350 4 9 21 61 160 1987 258 15 31 34 2602 287 201 3 31 13 45 1 1350 4 1671 4 175 5 90 2 967 5 9 5594 23 88 24 132 2102 9344 83 23 26 38 50 3 5 1 1737 9383 771 5 1 23 88 93 24 2 3751 574 11 666 188 2102 7870 12 400 996 23 118 188 36\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2676 2 18 6051 3 9 739 12 37 573 8 343 2692 16 20 59 1 17 93 1 206 3 1 345 4 2 1840 35 152 256 25 319 65 16 9 13 2679 1 2953 1397 504 43 84 595 4 2 857 3 29 225 43 593 41 6625 1670 23 70 48 276 36 2 1056 52 1330 3 893 277 4396 2351 29 225 8 539 29 1 277 136 133 9 4419 8 590 174 249 19 3 544 133 2604 318 146 240 13 5 867 8 721 133 13 9 6004 8 853 11 8 88 2230 2 21 15 277 358 3188 7 2324 720 3 2 2415 9 21 6 50 3576 5 70 77 21 6799 99 9 18 45 23 17 26 6 2 163 4 162 7 204 17 2 212 163 4 648 3 46 103 2286 9 151 176 36 2 6221 6742 803 13 1964 273 3512 143 10 664 5 447 41 3151 82 4179 321 5 186\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7642 130 87 9 108 10 6 1 210 1171 18 8 24 117 575 74 4 399 23 149 47 11 1 40 58 2471 3110 3 58 622 220 1204 1 1536 7 3 4240 25 760 7 51 6 58 111 7 898 11 2 454 36 11 54 117 26 1747 5 26 11 542 5 2 3138 20 5 798 2 298 1614 896 1 522 4 2792 16 1 54 20 26 37 931 11 27 54 357 3185 77 2 45 1 3138 12 3812 9 18 6456 8 481 2783 1 11 9 18 1306 154 625 353 12 1634 55 1 2646 29 1 1625 9298 8 930 19 9 3095 48 2 351 4 290\n0\t7752 4 290 8 365 1 206 228 24 71 242 5 17 7 639 16 9 5 26 1535 5424 85 3347 965 5 26 10 1674 181 13 3885 119 1552 61 2143 17 5040 2775 8 1070 57 2 894 7 50 438 4 1 2849 4 1 779 4 1 233 11 43 232 4 1054 1273 54 4760 29 1 3158 13 3885 9 190 291 36 17 120 7 9 21 2197 5 95 232 4 1205 1821 74 4 399 54 26 34 125 2 1741 3839 2658 11 34 4937 3 3112 144 54 1 522 5464 93 26 2262 4 4231 144 247 2 119 272 89 4 127 1502 41 4 25 3213 5 25 1164 1412 4 835 1 835 377 5 90 199 474 38 261 7 2782 3 39 14 6728 35 7 62 260 438 54 139 140 1 3213 5 1 2416 64 297 11 12 37 540 15 194 3 98 8015 11 10 12 128 2 514 334 5 7894 2 9 21 143 55 1451 86 120 227 5 187 62 2717 1 5576 4 1 13 7479 64 1 164 3438\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 51 22 37 97 911 8 175 5 333 5 1431 9 141 17 173 56 87 11 63 9 18 6 2 18 5 99 45 23 39 175 5 2655 1717 3 98 145 7332 83 99 9 18 45 317 728 5888 30 2241 3536 297 422 2920 15 6360 101 2 1696 3 11 228 20 55 26 2 8 63 99 9 18 125 3 125 702 2872 3 2385 1966 22 332 3711 385 15 34 62 82 8 96 6 1 6387 145 1094 195 39 517 38 43 4 1 439 188 33 87 7 1 108 99 1 207 34 145 160 5 3051 42 426 4 254 16 79 5 597 9 878 73 145 28 4 137 1046 36 35 40 2 4351 736 7 202 154 427 11 47 4 62 2333 49 33 37 145 2202 10 113 108 3106\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4529 3 1 1098 370 19 2 1280 13 5467 6 2 388 2254 58 2425 58 5067 187 122 1194 1519 3188 3 27 76 90 23 2 1194 1519 3780 2133 3324 204 27 11 102 269 15 81 11 173 56 634 6 28 177 69 17 102 48 12 27 517 2562 1739 35 22 1 35 3457 38 2 347 11 12 109 2299 1 692 1588 67 4 1 605 25 3614 115 13 1118 88 56 2739 9 21 55 1231 850 8 1374 957 1090 759 11 478 36 33 61 89 65 19 1 638 1 21 462 125 3 125 2 156 268 3 11 6 1 1 1077 6746 6 9318 13 677 6 28 53 177 1815 53 4 1165 1152 33 339 96 4 235 5 256 7 1044 4 110\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 218 6 2 2726 16 9 4340 1145 1724 135 72 176 16 3 25 2626 22 7145 19 2 3 22 19 1 7428 1849 1 376 8060 6 2 9003 1 3345 6 2 510 924 8611 11 4 2837 4 1 3189 2180 49 843 6114 960 218 6 2 1211 6 2 6158 72 560 45 8648 191 2686 1 3125 4 1 7 43 958 290 2587 6173 6 783 1760 6 1760 2371 15 578 7 1 249 1125\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 191 26 7 427 16 1 80 509 18 7 982 20 55 2394 8419 63 552 9 18 32 7538 5 1 13 92 701 7 9 18 22 377 5 26 1 272 4 796 7 9 18 17 6 1375 162 6 4 95 3208 1 201 22 20 5 91 17 1 263 22 39 908 489 600 8 39 1407 7 1963 285 9 141 517 75 19 990 63 261 149 9 18 548 115 13 92 1278 4 9 18 61 46 33 89 2 509 18 17 10 109 15 1 1487 4 53 171 3 1624 19 62 1440 81 76 139 5 1 2965 3 229 64 9 18 3 2564 2394 8419 1133 2470 3 9599 9 191 26 53 3 760 9 22 33 7 16 2 586 13 614 23 36 355 3867 142 139 3 760 9 141 43 81 152 114 381 9 18 17 8 36 5 99 2 18 15 1468\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 7021 249 983 6921 15 1684 633 3 9493 7337 218 8884 4 2021 79 10 12 20 2494 1875 8 12 7 1044 4 1 756 7 463 147 887 41 4077 8 229 54 24 5399 1604 32 1339 1920 1 3502 9958 9 644 6921 8446 8 563 10 12 38 2 6382 8364 69 488 1 6 128 53 5 3192 115 13 962 1133 3 2030 794 3217 3 2917 22 1 147 4 1 8364 304 2899 5465 794 7917 44 9673 386 109 69 688 55 44 7502 173 1620 142 1 5123 32 2 331 4 5329 1 105 439 119 2027 2 2781 4640 794 5215 5 473 8598 77 2 13 1 8884 4 3460 5110 962 9040 2030 2899 2781\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 804 4 9 18 12 547 1509 17 15 5447 3459 505 10 12 39 2518 3 13 1 21 123 20 216 73 4 1 1109 4 1 2214 10 12 37 292 10 12 2 701 10 247 36 1 259 274 47 5 87 110 93 140 43 3139 51 6 2 1085 11 6 2722 11 426 4 151 1 795 36 2028 5 2 51 6 58 1900 7 9 135 1 74 910 269 41 37 6 39 9 287 3039 44 3504 3 2261 44 4979 10 12 1065 3 7441 13 3371 43 3 138 121 10 88 24 71 167 452\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 804 6 4736 9 104 418 47 288 36 116 855 1054 2646 739 38 102 1805 170 81 2659 239 82 7 31 98 188 186 2 3116 13 150 16 628 56 4001 1 232 4 438 112 67 3257 11 1 855 18 3447 3 10 6 50 5621 1062 11 3855 370 19 25 817 124 123 13 9 42 20 2065 5 149 11 5735 270 25 85 5 2336 65 2 1316 59 5 24 31 1477 2770 6895 11 212 115 13 92 4943 4 25 129 2538 1 70 1947 4153 7 9 21 6 27 271 32 101 1169 1515 5 101 2 2733 66 6 2 1069 7 50 1533 14 27 5333 5 6051 47 25 1757 2817 35 8 214 167 761 30 1 23 173 352 17 6249 15 1 13 252 6 3855 7 2538 140 8087 34 8187 2646 13 8 4840 13 13 5996 3826 1 47 4 2817 7 1 6591 16 1\n0\t1 2294 1392 5 2883 1 2302 5101 7 25 913 5 9 5913 525 4 2 135 1 747 1296 4 1 21 1926 7 11 913 6 2 2754 4 242 5 90 2 21 47 4 132 1779 3531 80 4 1 1482 11 22 89 7 7584 735 457 102 137 38 1 2294 2886 2155 11 112 5 1124 576 622 14 1 1063 1 82 574 4 124 131 1 545 15 2 163 4 2270 447 73 1 83 24 235 796 5 3051 115 13 858 1 21 1986 72 70 5 99 14 27 1035 5 757 10 142 3 334 10 7 28 4 1 29 2 6632 406 926 5430 76 131 34 60 40 71 340 16 1 410 5 1 67 4 4137 5 2 1136 287 11 181 5 26 3472 6 2785 32 1 13 59 796 7 133 1 21 5979 19 31 5838 138 89 572 30 561 17 4648 10 40 162 5 87 15 1 1378 72 22 5 99 7 9 14 237 14 1 708 7 6675 34 1 1332 5928 209 32 2294 7125 66 2656 588 32\n1\t310 5 4302 5 889 395 2592 554 101 620 7 6083 17 10 52 5328 6127 5 1 7 66 33 1555 529 4 8230 5760 488 2380 69 193 239 789 11 2 1110 5 62 1408 3052 6 66 951 5 1 644 8830 9770 1905 9 6 2061 2 1543 34 82 120 69 552 16 1 4 1 2138 4646 7 66 1 67 270 334 7 86 9865 69 66 1483 9912 3 3357 1317 262 30 294 1030 59 29 1 477 3 3383 1604 1 1167 153 206 2022 1 9 6 1 21 4 25 11 180 219 3 221 535 52 19 3 7745 763 37 11 1 1122 69 193 2040 7572 69 6 237 32 1 443 6 1747 5 1 943 8625 4 1 1114 9654 1 7612 41 14 1 1261 17 198 13 92 4 611 7295 1135 19 1 453 4 1 102 460 16 10 5 26 3 33 205 1917 6179 1300 6 169 42 1476 245 11 136 2117 295 15 1 7 62 408 42 866 286 395 158 595 123 291 5 25 893 15 35 1227 1475 1644\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 380 2 1883 3 6286 278 14 1010 1628 2 3326 3 1134 6645 3815 3810 809 2189 15 7419 49 27 1937 11 25 1386 2088 6752 379 40 71 4451 19 122 3 1 357 122 38 6723 4386 457 1 5989 3 271 200 1 206 1579 770 32 2 6740 2642 2347 3 5434 263 30 6427 2884 3 1539 1 3 7257 1 2843 4760 4 6701 1086 1443 15 8294 8335 1231 65 1 19 15 2 2733 356 4 5290 315 2466 5937 3372 14 1010 27 6984 5203 2 323 4698 207 260 5127 6088 3 9806 1 607 201 22 8613 4968 5564 14 379 7646 14 1807 6352 14 4020 9721 3339 14 4020 14 1400 4048 14 4502 2901 4354 14 1557 1347 14 1381 2185 1557 492 14 4381 3 1183 14 19 1 90 1312 1 3624 22 154 222 14 3860 3 14 33 3753 5 1142 1 6898 861 30 5469 679 4 84 1184 443 3407 3 2 156 1628 6706 868 93 2018 1 31 9573\n0\t474 38 127 102 120 9752 34 1 884 3 691 6297 45 51 6 95 189 3 10 5027 19 132 2 8620 4146 11 23 24 5 1006 144 42 55 13 1627 98 1 21 811 1 321 5 188 65 72 149 47 1 302 16 1 1429 11 22 9329 5 275 422 3 2 259 2492 19 2 3611 1969 7 2 478 3905 1 478 3905 8 63 241 17 75 123 27 70 25 1969 457 1 1793 3 77 1 7 1 74 334 197 10 1496 27 7597 56 1108 608 1839 1 2583 4 1 644 5761 66 907 146 7 1 5229 4 4 2 8689 2056 5183 1 644 67 432 205 105 2985 3 39 908 183 5 2 56 1230 2281 7 66 52 691 6114 960 3496 236 2 56 178 5 87 15 2 2282 331 4 147 3 1 644 267 1225 37 11 10 40 5 5090 5 1 1864 81 22 19 2 986 296 771 880 49 114 72 226 539 29 49 72 4416 867 1756 172 8 310 295 507 747 3 5693 29 132 2 644\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28 2787 45 20 1 210 21 5 209 47 4 5980 7 1 115 13 252 901 4 2 750 3412 35 102 1410 35 16 122 3 25 379 40 162 5 5611 592 13 659 498 3 8902 9 21 1 8774 14 10 1082 8198 7 86 1035 5 26 722 3427 3 115 13 7254 1 210 177 38 9 21 6 1 111 1 627 201 4 690 3233 4919 3 22 301 30 132 2 1054 1471 42 58 1197 11 9 12 1 518 59 216 5 90 10 1732 1 1250 528 3 1963 3160 19 154 3432\n1\t684 589 7 66 72 191 934 15 2432 14 109 14 1 1212 3 2421 7 500 258 2868 1040 413 36 2758 321 5 26 1527 1137 257 5791 6194 3 26 6534 4 1 148 157 3 469 1593 5 26 446 5 112 15 13 2120 217 2665 19 2 2204 4 1040 2791 7 1 9444 4 7945 1383 6 19 2 526 4 2098 205 826 3 35 1555 2 7368 7 1 683 4 1227 17 20 198 5137 13 1986 15 2 1005 4659 841 272 178 7 66 608 32 217 74 762 2652 170 6380 1151 521 608 17 7 11 1105 7536 54 24 5 26 1108 41 433 13 2679 51 72 917 31 7202 738 1 1144 3 2791 4 1 3 1 1380 4 46 6024 1499 45 23 917 9 644 494 227 98 23 76 24 58 302 5 26 945 15 1 8649 13 92 1077 16 6 8921 3 1 2946 22 205 304 3 8622 608 4623 148 157 7 1 750 13 92 706 4220 22 46 806 5 917 3 23 1108 6558 3 1116 234 616 29 86\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 895 1647 15 25 1836 5 2 6387 7532 151 199 4548 9 1244 3 1303 18 11 7 11 356 10 7153 2 833 1205 5 710 1342 6 3715 2849 6 2 3035 6 204 1 312 6 1979 205 250 120 149 3846 3 239 1885 59 49 2828 9 5924 190 109 998 306 7 29 95 9749 42 169\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 315 6 2 3913 3995 135 8 12 1094 202 32 357 5 4726 45 23 24 1 8252 8 496 354 956 9 18 10 424 30 3980 1 1340 18 8 24 57 1 1935 5 2751 4558 116\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 249 251 3 1 989 3 100 12 4147 4 1 131 46 317 2 325 4 9 45 145 7315 10 16 9 6 152 48 8 4 81 338 8 13 92 416 374 120 384 5 5218 34 1 3 61 327 5 239 82 4723 8 165 1455 4 7446 2742 959 307 3 25 975 1 442 12 12 31 975 4 1777 35 12 519 88 26 144 1777 165 3336 15 48 44 44 493 3 44 8985 1764 1894 417 1171 36 2916 378 4 48 33 61 36 7 1 1777 1 143 474 46 5915 13 92 700 1254 12 661\n0\t6 39 9185 13 4 1 1245 6 1 8903 129 418 142 1 866 101 595 3 60 39 153 87 11 322 55 29 44 3575 193 60 407 1 353 201 14 1 585 791 179 9 12 2 1211 80 4 1 82 171 93 384 5 24 179 9 12 2 2940 141 41 29 225 1171 36 194 243 68 311 101 1 59 28 11 8 179 114 56 109 12 1 2626 13 3221 184 185 6 1 10 418 142 46 37 1633 23 228 26 6159 5 473 10 1294 17 98 10 196 1683 16 2 136 49 23 70 5 1 5776 2436 3 1 17 3636 10 34 432 2 2908 43 4 9 12 19 8810 17 78 4 10 12 39 9530 3 775 13 92 148 6417 6 42 311 20 2 2273 18 5 836 42 2690 2764 630 4 1 120 22 4 4586 3 43 104 23 64 120 70 7 490 42 1 545 11 2788 10 123 24 2 156 1119 2103 80 4369 1 1119 3850 3 1 6302 17 1 344 4 1 18 6 650 39\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 1319 6 2 464 3868 37 1974 60 151 2 2839 176 36 10 88 87 2 138 1614 17 98 320 11 473 7 723 1381 14 174 21 11 2148 2539 14 331 4 1009 3 2370 8 467 11 2860 75 97 7000 1251 32 300 176 36 3559 1 613 2276 485 36 1 274 32 1394 2 598 251 274 7 1 21 39 339 90 86 438 65 48 10 405 5 2 267 41 2 686 5990 4 1 7 5377 45 10 57 1544 5 1 1081 98 1 447 168 3 1 496 439 4 1 2279 228 39 24 8 134 17 137 168 39 143 216 15 1 2432 7 1 330 6869 8 93 149 10 5353 11 2257 54 117 1271 5 6352 316 94 44 464 2 570 48 6 2 547 651 36 403 7 9 2418 4 20 5 798 3308 130 1382 5 6075\n1\t29 48 6058 191 26 2102 2 913 590 7 2 2 1 1504 6194 204 6 404 218 3 814 16 9 4305 1035 5 359 47 1 4 392 160 19 7 1 1 201 6 46 4275 15 5749 403 2 327 329 3 1990 1147 3 508 122 65 7 3358 123 2 84 473 14 1 2761 1 4 6 37 148 11 10 6959 136 1 1759 3 82 397 1353 22 14 16 1 1252 10 213 198 17 10 407 40 43 3439 494 3 1192 16 1632 2 170 487 1664 5 131 4262 31 4334 7 6597 16 319 3 4262 8924 1 2559 688 73 27 40 58 1 487 3945 25 2451 2799 977 896 1 593 6 20 2 900 1246 17 153 46 6281 1453 45 23 24 6024 23 229 495 36 9 21 28 4885 688 45 23 24 31 1089 438 3 175 5 64 2 5923 793 4 1 19 9 6 169 2 53 880 5787 87 90 31 991 5 793 194 14 23 76 26 607 137 1132 35 2497 5 90 104 237 295 32 137 161 1210\n0\t13 252 18 3154 32 1 46 477 178 15 1 210 121 180 117 107 7 95 531 33 70 681 269 77 10 183 23 853 3378 18 228 17 1453 23 118 260 142 1 9 18 2492 38 4456 2181 100 713 5 1346 10 1024 5 81 35 617 157 37 8 83 118 45 95 4 48 12 367 6 13 252 18 6 38 2 846 65 15 25 4184 479 205 4 4456 9849 41 22 3688 81 187 2 48 62 1322 9 259 5817 8320 6 152 5817 35 6 377 5 26 32 1 67 218 429 4 11 12 428 30 4456 2181 711 289 65 519 5 328 5 1890 93 101 29 28 272 7 1 141 30 277 264 81 19 1 166 1170 479 36 260 516 44 7755 29 44 3 60 153 55 1 120 11 22 101 2035 4245 131 65 29 1 182 5 328 5 552 1 17 33 29 1 769 2536 4632 5817 136 244 242 5 564 44 113 4699 4 611 183 60 4632 122 60 40 5 2703 47 9 18 130 26 107\n1\t78 12 89 13 1226 250 3731 6 15 1 393 255 1 1003 1899 9 45 23 83 175 5 825 5908 2 156 269 183 10 51 384 58 111 16 1 1387 5 26 1 111 10 165 2144 12 7 2 17 50 1193 4347 75 114 1 613 70 2173 5 139 385 15 1947 1 18 143 131 199 458 3 10 384 2 222 105 8505 6735 1 2651 4 75 33 61 5 87 592 13 150 96 1 111 33 2970 11 12 248 16 1005 14 1 4 1 2651 9352 31 4 1216 5 1 6585 178 66 1286 511 24 71 51 8264 54 459 24 587 48 1 178 12 2354 3 48 12 160 19 15 3360 7 13 9 6 2 167 53 4692 8 187 10 10 89 79 4630 195 145 942 5 149 47 1 2998 4 1 148 13 1268 52 7629 1 18 12 248 7 43 4 1 746 204 291 5 26 10 14 2 52 1058 682 13 6 8 1808 107 44 1448 60 63 634 2 5145 105 2 1069 7 44 427 4 1093\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 7430 1 3144 6075 9 6 355 19 3 1788 3190 3 11 50 585 12 199 5 64 110 189 305 3 1 9328 180 107 167 78 297 30 195 32 1 1485 5 1 56 91 711 17 9 12 728 1 210 18 180 117 1586 374 41 58 2802 10 12 2 9139 10 9 439 177 160 5 232 4 1530 42 4229 29 883 10 138 26 69 42 4096 5 1 2717 4 261 125 17 180 100 107 146 37 2674 3 98 308 317 475 6137 65 17 11 1 18 6 2780 51 6 9 1213 177 29 1 182 11 23 96 6 1 7354 16 2 6182 17 51 213 28 69 42 5709 193 42 254 5 348 48 479 242 5 1 2056 45 819 100 107 2 479 2 184 1286 58 1623 23 176 29 1 412 197 10 784 5 26 1 166 55 50 585 12 1120 30 1 714 205 50 379 3 8 485 29 239 82 3 367 29 1 714 91 7 154\n0\t81 5 43 8572 4 9080 75 4319 191 27 26 5 4294 5526 2956 62 3 1741 125 25 10 6 20 2 524 4 1 231 3814 62 306 1687 3 4851 5 26 749 136 200 2300 69 277 4 1 723 1144 90 10 935 33 9322 550 6 27 37 11 27 481 64 11 25 319 6 20 2512 122 1 1190 27 12 77 3499 12 2 1387 7 1 74 14 15 34 104 9 28 3966 75 7814 88 815 70 37 7 62 221 1912 4 3825 7 2 1079 980 11 33 76 6330 95 8572 4 41 13 6254 2014 35 12 1968 16 976 69 582 260 939 13 3 9302 936 2108 5 6785 62 2956 9 2908 8416 6 3 3 4794 3 7 34 1 260 7714 3005 2300 77 103 4 16 80 4 1 141 98 403 31 3 1424 7 112 15 122 73 1 263 649 44 8676 13 872 8 511 139 37 237 14 5 134 11 7100 6 2 91 1651 17 294 138 176 125 25 236 2 212 147 952 4 2805 3078 860 7\n0\t0 0 0 0 0 0 0 0 0 0 281 12 20 1 210 18 180 117 1586 17 207 38 14 78 14 63 26 367 38 110 10 418 142 15 43 53 1 2430 6 6740 3 1 1646 6 274 5 3 322 39 11 674 83 1179 58 991 6 89 5 1 2771 189 1 1213 3 286 20 591 3 1 2430 2109 556 2287 8 1266 209 926 7385 43 1301 219 2 222 105 78 13 1226 923 430 12 1 522 35 276 243 2 163 36 2 5901 2805 2621 136 6737 288 36 3719 56 36 2923 5 224 19 31 25 2133 2 63 4 772 4868 7058 3 99 1 3118 4105 180 107 237 29 3185 13 92 82 2837 22 55 52 3 55 364 3681 29 2532 19 1 2388 1 4033 187 43 2651 4 62 1761 7 1 791 39 5354 2133 65 7 7714 309 43 3 1232 81 5 26 434 2 4885 2 156 53 293 1456 3 121 11 6 20 1135 464 340 2 551 4 547 2511 236 39 162 675 42 2 18\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8667 6 169 2 501 17 687 108 10 289 264 1637 4 1297 2279 966 1 18 6 52 68 501 17 20 483 3629 13 92 184 1069 272 4 1 18 6 2132 265 3 3 121 2166 1 226 1 18 418 15 2 1205 3608 4 1297 2 282 101 5085 30 44 67 6 1 18 6 2 222 17 10 6 501 53 227 5 90 1 18 2 13 272 6 1205 67 4 2855 108 790 8 54 134 10 6 102 268 191 99 141 45 23 175 5 64 687 1297 231 1353 3\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19 1270 1170 470 30 18 8276 1263 2 1528 567 11 2 1839 8575 9556 3470 15 1899 8232 6010 4696 7 7851 4 3325 444 5395 11 60 2995 5044 8232 6 5395 4 110 205 22 5395 4 101 30 102 9632 1826 1 748 7 1729 2 3116 4 3470 6 219 3 1 3 2091 1 5780 6 30 9632 1 34 22 1391 33 173 582 1 4 1655 4434 41 1 6455 4\n1\t4 101 25 3510 3 2419 69 1401 3 13 3204 51 6 1 4 25 7 69 37 4 1 111 257 1342 5162 5 9116 1732 1 3160 4 1342 49 2109 3455 62 4 1 22 7 257 1561 7 25 10 63 59 26 2194 2999 1108 3019 65 1 4 8481 5 25 379 3 583 69 2805 7 321 4 2 55 28 15 132 2 298 4 25 9979 13 3204 51 6 1 1383 105 69 1 2631 189 1908 3 1 32 147 413 22 52 2186 3 95 28 4 126 88 9085 6168 77 1 2435 69 17 42 20 38 1 23 24 42 75 23 333 450 31 6168 340 1 3035 5 3919 25 3 121 197 1 1380 4 3 4156 5 757 2 140 1 5772 7368 69 1172 7 197 1203 41 10 6 2 8423 11 1383 869 481 90 65 16 2 3285 7 13 677 22 97 82 1546 49 2 21 6 383 3 4503 37 10 844 877 4 482 1032 16 116 221 5 186 99 2169 15 31 1089 438 3 64 48 10 5488 1038\n0\t110 9 18 6 4229 29 374 3 59 537 88 335 110 45 23 83 438 116 635 283 104 38 374 1076 9 6 2 53 18 5 369 126 1861 45 23 83 438 4476 116 537 5 64 528 1847 11 40 162 5 87 15 148 1563 148 121 41 864 1165 98 23 24 214 2 18 16 116 8 134 374 73 8 96 55 1 624 76 36 3951 8 2209 34 1 624 246 2 5549 19 13 47 4 394 460 73 8 96 23 63 90 2 18 16 374 3 128 90 10 837 16 18 1200 184 85 29 10 6 660 978 3 162 215 41 979 3 8 54 20 1959 2 583 4 2550 5 99 3951 2885 2677 1 249 251 6 19 305 3 236 3159 4 84 6014 1338 124 47 20 131 116 537 188 11 76 56 3162 126 3 20 90 126 1230 385 1 744 436 55 3964 126 43 1047 3 20 39 75 5 2382 2 164 189 1 4944 14 114 19 535 58 2382 2 164 189 1 4944 4034 1333 37 3704\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 12 39 2 464 108 58 28 130 351 62 290 139 64 146 1939 9 18 424 197 2 4724 28 4 1 210 104 8 24 117 107 7 50 500 45 23 175 5 64 2 53 141 83 64 89 3788\n1\t407 662 33 22 20 17 33 22 5222 3 207 48 81 130 359 7 438 49 33 793 9 135 1 448 1587 11 6 314 7 1 158 591 1 736 6 314 3910 3 6 20 1 882 6 46 1985 5 99 55 2087 17 316 10 6 2429 5 1 119 5 8017 1 234 4 2 145 56 1096 5 64 11 4428 3346 6 20 2431 3 6 128 39 14 14 10 12 7 45 20 1129 8 173 354 9 382 227 3 8 87 449 11 10 2236 5 149 31 410 73 10 56 6 2 46 293 3 3385 839 11 76 20 521 26 13 115 13 6242 3 5564 22 205 8923 3 491 5 836 33 24 100 262 871 36 9 183 41 220 3 33 22 301 264 32 8499 468 995 35 6 372 126 740 115 13 868 115 13 29 34 2431 41 2940 36 97 124 4 11 3000 209 142 14 1163 115 13 3 884 1043 13 115 13 3287 1607 59 115 13 567 168 22 109 2427 17 33 88 26 39 2 103\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 241 10 41 18 6 527 68 604 121 6 1 67 6 46 213 2 163 4 53 5 134 38 9 1 566 168 22 52 1065 68 604 8 54 24 179 11 6 2 46 673 1597 1544 10 10 54 70 23 56 175 5 64 9 130 328 5 149 2 772 2551 4 6 254 5 229 16 53 604 18 40 162 5 87 15 1 74 6 1 166 7 442 80 8 63 187 113 4 1 3199 6\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29 74 23 96 174 834 141 10 228 26 501 17 42 2 374 108 17 49 23 99 194 23 173 352 17 335 110 34 3436 76 112 9 108 8 74 159 9 18 49 8 12 394 3 195 1315 172 406 8 128 112 1027 1954 4671 6 1016 3 88 20 309 1 185 95 828 1490 4642 6 892 3 6 425 16 1 2482 1347 6 37 1202 14 3739 23 173 7313 17 5 335 9 1540 8 187 10 2\n1\t72 100 118 45 86 366 41 326 6 7826 49 311 77 1 2121 14 1 7227 3599 577 62 10 6 202 2 1269 333 4 1526 3 6 470 13 1701 261 35 40 107 23 76 24 209 5 1 2582 10 6 28 4 1 2049 470 117 16 1 641 17 496 1703 541 30 13 6 1381 19 1422 15 11 572 3 7 97 10 15 4684 3463 3 2 5151 1511 5 4951 1 9627 28 178 7 933 49 784 47 4 4806 6 1325 13 92 1567 2480 200 2 3 1105 1655 35 863 19 154 1 599 4 2498 6 224 5 1 1355 66 72 83 64 670 227 5 70 31 3593 4 86 306 9756 6 7314 1 1567 200 2 1455 1035 5 2464 1 1355 1696 3 98 72 64 1455 3 509 1277 525 2 2464 1864 7323 15 82 7035 51 22 97 188 540 15 1 20 5 798 1 1455 1277 3484 6 195 2195 17 51 6 877 4 6948 3 6433 189 120 5 359 10 2191 260 2268 2 1529 383 1985 226 342 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 236 37 78 540 3 586 38 9 18 8 192 20 273 106 5 3587 2054 1 102 4396 35 1059 9 2453 1504 3 7163 74 33 339 90 65 62 2654 3443 16 2 3774 50 497 33 3639 1 207 144 1 250 462 6 1568 11 511 6252 17 1 182 412 666 522 11 511 5317 1070 28 789 235 38 1 2949 94 34 6922 186 5 7454 58 848 2 287 16 2 522 54 26 1050 3496 2 103 177 404 813 3 54 3528 469 16 7 1 1069 35 863 2 216 48 2949 416 114 1037 9592 7178 161 41 1341 1648 1 1198 57 58 3892 11 3264 1 898 47 4 437 3496 1 609 1207 1037 153 118 75 5 359 2 4937 34 3 34 2 2662 4 2 141 42 862 439 3 571 19 8 187 10 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1952 8 1023 5788 15 5835 7 2 2509 8 230 11 8 130 20 55 26 5581 220 10 6 37 78 2 18 3 8 192 20 2 669 12 2 1 4594 6 11 7062 6 955 3 123 20 634 50 497 6 11 1638 6 2 411 3 1019 105 103 3759 85 19 44 1223\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 6 56 1634 464 14 7 10 6 2 351 4 269 4 116 500 293 363 22 37 1634 1 121 247 13 4395 38 2 8140 11 1643 2 793 14 33 22 1673 2 718 38 813 5511 6 49 33 200 17 10 498 464 540 49 2 2749 8140 51 1 83 176 3015 1 8140 6 55 2428 3 10 196 55 52 1526 49 33 22 599 295 921 1 17 1 8140 196 1544 3 358 6563 3984 110 1 3112 22 1429 3 1 22 39 5 2222 7 1425 13 743 8045 464 21 1333 20 279\n1\t0 0 0 1104 29 4822 2054 1 2498 72 70 6 5618 707 1251 32 1 8049 4189 1131 4 1 148 8232 17 10 6 2498 7 1343 68 66 4516 7485 6 828 2054 1760 6 58 5124 17 98 35 6 3 6 58 17 1628 6 822 172 1929 4 1 6200 4499 3 1504 35 4503 82 7662 668 7 1 4044 954 2284 4 523 8228 1738 759 30 82 3 39 5 3922 188 1 2139 22 237 1914 5 1 1777 3566 2139 37 1628 143 24 5 230 105 1 67 199 95 52 68 1 1336 165 720 4 2 1484 3 6 2 4623 286 27 6 446 5 2545 65 2 1080 53 2465 29 2 156 719 1682 49 5237 122 5 5194 29 44 7 1 112 6 204 5 875 980 1 2791 22 3713 30 82 2791 3 1 4612 7 1 1138 6 400 1126 4 205 9613 3 69 9 424 94 399 2 668 37 10 1421 41 621 30 1 868 3 7 9 524 10 1421 723 14 230 53 4157 139 42 373 7 1 401 1731\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 485 2911 17 10 12 152 167 565 1 804 12 17 1 119 554 12 1634 1 171 713 62 113 15 1953 4948 17 33 88 20 2264 845 1 467 4 9 7427 1185 135 1856 12 308 316 7925 2850 69 55 52 37 68 7 1 344 4 1 201 61 169 168 11 130 24 71 299 590 47 5 26 217 862 440 5 26 2 1611 4808 17 1082 19 34 6647 2 900 351 4 4325 290\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 57 102 1318 16 133 9 49 10 3246 19 5116 756 74 4 399 8 405 5 64 8131 69 3 204 8 247 1558 60 485 9612 330 4 399 140 765 38 1 21 8 57 1866 1 1418 11 10 2450 2271 623 20 1031 11 66 63 26 214 7 763 703 19 9 245 8 12 1547 1558 8 214 1 716 961 32 2 156 2347 6399 19 1 3356 4 3 1 120 301 896 1 238 168 61 248 7 2 3713 6283 3 4737 7469 15 58 356 4 589 29 513 8 721 133 318 1 769 17 8 165 1120 46 1108 3 39 1407 1057 1000 16 1 168 15\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 92 293 363 90 1 249 324 4 176 13 4255 28 7 1 201 63 13 4 36 1 5 1 1735 4 1 762 1 1254 7105 160 6718\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 186 23 649 4 2 164 35 2019 25 379 5 174 3 615 31 2422 9098 7 2 2528 6177 1031 80 684 4964 9 103 2445 6 650 9293 267 1738 4300 3 15 103 4468 19 4697 2 426 4 1611 1285 739 15 97 299 3 43 4608 529 863 4422 2683 8266 3 6 2 4211 99 16 2445\n1\t0 0 0 0 0 0 281 6 2 167 1233 8061 1661 43 546 22 1054 3 4415 3 1 18 153 56 4800 1 1114 376 201 245 1 353 11 56 1475 79 204 12 6651 6651 1491 5 26 1852 15 1 2851 7 1 178 106 27 74 762 919 8 179 11 2 164 35 63 39 176 29 359 5088 3 20 134 2 4930 3 128 176 4234 6 373 2 53 2099 7 698 27 40 2012 411 1822 316 7 6291 16 2 330 290 9 259 130 70 52 2842 244 13 614 819 284 95 4 1 82 746 204 19 6675 23 459 118 1 640 3 8 87 1023 11 3465 77 12 2 103 105 7802 3 1 103 112 5105 27 5916 15 12 301 17 27 6 2 1002 53 353 794 107 7 6 797 5 1775 6666 3 48 63 8 3051 8 83 118 45 145 25 1003 325 7 1 1561 17 8 118 8 63 373 5789 16 1 13 4550 240 1775 1078 42 292 2 222 1685 30 368 36 218 84 3 19 1 2644\n1\t0 0 0 0 0 8 74 219 1 1323 5669 104 49 8 12 38 1315 172 161 3 8 179 205 988 1862 4949 3 3217 114 2 84 2340 33 191 24 3086 73 220 133 1 484 8 24 713 5 825 14 78 38 1 148 2643 14 8 5435 34 535 546 4 1 18 419 79 6830 3 12 2 306 4128 8 59 555 27 61 2191 1163 3 11 51 61 52 81 36 550 8 54 112 5 1479 122 16 355 3996 4 34 1 1004 3 101 37 8 192 46 1140 11 25 231 57 5 139 140 132 203 3 8000 50 683 271 47 5 450 37 32 2 1099 349 161 325 4 2643 3 4 1 1323 5669 104 3 1 171 11 1012 849 786 87 20 26 1332 38 127 104 3 1041 33 61 59 242 5 369 199 118 48 2 360 164 1 148 12 3 48 2 84 231 27 5125 3 5 34 1 170 81 35 190 24 20 455 78 38 8 1379 23 99 1 1323 5669 104 3 825 52 38 550\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3932 1 838 4 3795 1932 3 8 159 7294 886 97 172 1742 49 8 12 20 286 2 5774 51 6 31 160 318 182 4 5431 7 4262 147 8359 654 5043 8359 20 5 26 15 14 2 293 1033 3555 32 5774 484 642 7294 754 180 107 2013 69 3 5393 7918 69 7 202 34 62 21 3 8 63 1 5393 7918 12 2484 7 1 108 11 12 43 220 7 80 4 25 82 4647 27 12 643 7 2604 1 184 2824 229 2484 5393 7 8 88 3082 25 2434 220 27 57 459 32 1 314 341 29 1 477 4 25 895 69 5845 7 368 2369 980 69 3 963 165 297 11 12 888 32 48 72 637 7 710 6298 4349 1 980 32 29 225 14 620 7 1 20 5618\n1\t1 21 255 32 9275 7828 5 10 12 612 7 37 42 71 13 150 12 2610 30 1 4655 4392 4 28 1559 112 16 174 125 2 910 43 1164 349 3856 2 112 6471 7 1175 11 59 306 112 63 1142 51 22 97 168 4 1115 6429 3 7016 385 15 168 4 2421 3 51 22 168 4 157 14 2 3 157 14 2 1 21 554 12 2 216 4 1549 3 8 241 10 5 26 2 13 2595 1 46 225 28 76 70 47 4 9 21 31 2308 4 1 8972 1880 4 14 8 787 490 8 192 517 75 78 1188 9 21 181 5 79 5 24 71 4994 1 7 3 1055 3 1615 11 24 556 334 220 9 21 12 274 5728 1194 172 22 2713 245 4989 7 1 524 4 1 4922 4 6183 2105 72 22 20 248 5142 3106 8 497 72 662 248 19 34 13 3514 42 39 2 167 7222 53 3939 420 5975 261 11 811 11 33 83 169 365 1040 727 1040 7443 41 1 4 6183 5 99 9 135\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 508 24 9 18 6 7943 7 86 1103 4 1 157 3 8 16 28 12 46 3336 3 30 86 5495 4 44 1890 77 2 1697 112 30 1 11 44 7187 12 1968 16 44 30 86 528 16 44 1093 30 1 111 10 590 44 77 2 447 19 3 926 23 70 1 3742 896 8 149 10 1577 11 81 35 662 1100 15 76 64 9 21 3 1243 295 15 11 232 4 1418 4 768\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 95 454 15 1002 53 2258 4 1091 616 76 1416 348 11 2143 124 38 2 170 282 246 6536 15 44 532 14 109 14 44 487 493 24 71 89 7 1 132 2 21 6 620 5 81 54 1416 2666 45 10 40 146 3 5498 16 2001 5872 7645 9 6 93 306 16 1091 21 5518 14 44 644 5548 2689 40 71 30 1603 200 44 642 44 532 3 6 5227 227 5 543 95 8494 14 60 40 713 44 874 29 34 2329 4 1950 6368 642 12 1868 383 19 5 26 2573 7888 5 6491 1813 123 20 257 49 72 825 11 54 36 5 390 2 7632 14 60 811 11 60 6 5 1 312 4 1496 2 549 4 1 6452 275 61 5 1296 2 1061 1329 4 190 109 26 4570 15 81 14 2 1122 4 2 6 15 11 72 825 11 22 423 105 15 62 979 3\n1\t3 43 4 127 2205 152 1196 1412 2660 33 22 20 59 299 17 23 63 152 825 2 177 41 102 136 13 150 472 102 4 50 1825 537 15 79 5 139 64 10 3 33 336 1027 1 394 161 57 544 372 44 74 2943 2300 562 2 326 183 8 472 44 5 64 1 141 3 60 12 246 37 78 299 372 1 562 8 179 60 54 335 1 18 14 530 3 8 12 20 59 336 9 18 17 339 947 5 70 408 5 1812 44 74 562 3 357 174 2396 13 1226 82 1825 752 6 59 1450 3 60 93 336 1 18 17 60 6 128 2 103 5 170 105 309 1 2205 1891 17 60 4283 133 44 975 309 29 268 39 5 64 835 160 3377 13 92 2205 22 370 16 537 394 3 34 1 2205 531 70 167 7464 746 3 22 14 1406 8466 16 52 1799 19 1 2205 39 841 47 2943 2300 8466 37 1454 8 179 1 18 12 167 53 3 8 76 751 10 49 10 255 47 19\n0\t244 295 3 28 4 1 7225 3966 45 436 9 6 1 3719 455 37 78 5722 13 92 4549 6 11 9 2040 907 1 3028 726 2 341 80 1458 6458 5 118 11 1 12 774 3 27 12 1172 30 851 49 27 12 1172 30 25 1658 5169 3028 3 114 20 24 95 2258 2948 12 4246 41 55 9497 13 858 8 365 194 5760 2506 11 1 85 4 1 182 6 59 16 851 5 118 3 29 1 182 4 1 21 72 64 1 3028 242 341 5 2702 2 5169 77 1 3667 74 98 966 14 1 178 689 674 244 242 5 1 2544 1992 4 1 182 268 69 66 27 1513 26 446 5 1 389 804 4 1 18 554 47 73 30 101 37 19 62 1842 7160 3 75 732 188 22 16 851 5 118 9032 10 907 51 339 117 26 2 85 2863 7 1 74 334 73 98 8648 88 149 47 146 11 59 851 130 1 389 1324 804 3 151 1 212 177 676 4533 14 10 42 221 4102 7 1 714\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1915 23 284 50 753 4 23 118 11 8 63 1116 1 1879 11 127 104 63 479 479 128 167 299 7 2 5560 573 42 7455 232 4 699 814 128 15 4593 16 5046 341 1 6803 6800 8 1407 224 5 99 4615 2 215 18 38 2 1198 81 19 31 7143 15 1 16 1749 3641 2070 1008 3 2 201 11 1680 962 3 3076 75 88 10 815 139 322 5 50 4064 10 152 4624 1 30 1878 17 227 5 90 79 20 354 110 2368 322 74 4 399 86 9487 1 270 2 5 2 658 4 5266 35 56 390 1 1324 4438 6350 193 1 123 65 1 823 27 883 10 41 1034 23 637 1 59 3165 39 183 275 6 160 5 26 655 3 844 2829 8145 1 344 4 1 18 6 257 2641 421 1 4424 458 5 503 6 39 20 14 1683 14 133 2 1323 2089 115 13 7017 284 1 331 753 19 50\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 2 1719 2 67 4 2 170 287 285 1 392 600 3 10 56 780 600 20 610 14 1 18 600 17 10 6 2 84 67 600 8 12 5561 30 9 21 121 3 1 67 106 84 8 36 9 21 73 10 6 2 306 67 42 79 2 507 11 8 12 51 3 8 230 1140 16 1 11 6 372 73 35 451 5 182 204 157 11 699 8 354 11 1603 24 5 64 9 21 600 293 1 170 879 3 30 1 825 146 32 9 135 9 21 23 63 1498 1 18 2169 32 8364 41 95 148 67 11 653 7 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 36 5 134 11 180 107 9 21 1882 195 3 8 112 1027 1 121 6 84 3 55 193 10 6 2 696 119 5 116 8 96 11 1 119 100 196 509 16 81 35 36 11 232 4 1606 10 40 43 84 4119 7 10 3 289 199 11 72 63 87 235 45 72 5764 31 1115 135 8 192 273 11 9 6 28 8 76 26 133 16 2 223 85 5 5223 55 193 7554 787 1 347 10 6 169 2 1087 640 300 20 38 1 1424 7 112 1871 17 1 185 38 101 264 3 2280 17 588 47 113 7 1 182 6 46 306 5 148 500 1 59 1681 4093 6 144 6 1 250 282 7 127 124 198 87 23 56 96 11 4689 54 24 2006 1 425 259 4 44 1912 45 60 12 1906 41 8 894\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 338 1835 17 207 38 1 59 1061 177 8 63 3051 297 12 6077 5 1 272 4 80 4 1 171 5355 36 23 54 504 116 7486 5 1271 45 27 61 4851 5 26 2 6388 41 31 6350 1 384 3161 5 437 8 88 139 751 2 772 3 47 138 567 1948 3 835 15 1 212 613 2629 10 12 400 3 57 162 5 87 15 1 697 795 4 1 471 5582 1253 2 163 4 2789 7 698 11 27 791 179 54 26 56 3879 17 57 162 5 87 15 1 471 207 2 184 2259 73 28 4 1 188 11 151 584 37 53 6 25 361 33 22 9746 15 58 8506 9 18 6 39 1 9730 8 2165 133 94 1 178 106 6 9783 1 259 32 1 41 8 1130 2424 490 17 29 225 8 63 70 43 32 523 9 753 3 3037 2084 508 32 253 1 166 6633\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 50 897 2224 39 1616 1 1158 3 9 18 6 162 36 1 1533 1579 100 8728 7 1 1533 27 143 118 1 3774 25 1916 12 4451 19 25 435 7 2 2276 20 7 1 1692 106 261 88 1861 1 164 1 532 6 4451 15 153 24 315 5810 27 40 115 13 2719 16 1 3206 546 4 1 3515 2 349 161 173 4134 25 8377 140 2 3406 7 28 115 13 872 16 1 505 1 635 35 262 1579 12 2 586 2099 115 13 2298 8 87 241 11 1 1769 12 193 8 496 894 1 206 55 284 1 13 252 18 6 53 45 23 24 20 284 1 347 30 2142 17 45 23 5021 98 905 2 3731 3674 5 1 2254\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 2 138 68 855 18 8 3394 16 10 101 19 8411 8 57 909 146 385 1 456 4 978 3842 3 91 293 363 107 7 132 3156 14 1075 3937 41 74 5673 13 92 201 12 109 258 338 3044 14 1 254 42 53 5 64 122 1 166 1097 27 57 37 78 5117 15 7 1301 4 1 1278 3 57 248 62 73 34 1 168 3 802 485 36 33 114 19 11 326 155 7 13 3986 45 23 70 2 680 5 64 9 158 3 8 192 273 23 76 220 5614 297 2297 358 719 3 335 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 580 12 56 20 46 53 29 513 480 101 211 204 3 1057 1 67 12 903 3 1 121 12 4878 580 672 3 61 258 3182 1 312 12 903 3 1 188 11 1 1161 57 5 87 7 11 21 61 55 52 2348 8 54 20 354 9 21 5 4315\n0\t5633 2734 1 2968 2912 5 990 5 932 684 4523 546 1 808 65 2 167 3540 4099 19 1 5563 3405 3034 3 90 34 4 126 209 58 2425 48 1660 114 88 152 182 1 1561 17 7 1 141 11 153 3659 73 9 6 1562 103 4316 3 153 90 95 356 29 20 2 3506 4 4 148 2106 4 4 43 2124 623 29 2798 39 4173 372 3977 66 6 1790 5 176 1526 19 750 3412 2099 204 6 60 266 129 4 1327 3 2683 301 5684 7 9 108 1348 7 1 260 438 54 241 11 9 102 24 95 1300 29 34 189 450 49 2278 666 16 1660 10 981 20 59 1054 3 7372 17 301 127 102 22 20 928 5 26 1413 8 54 187 277 3108 17 8 894 18 1071 2 461 91 1252 1054 551 4 148 2106 3 95 14 109 14 120 3 7615 3 2842 900 551 4 3 10 34 151 18 924 279 17 1530 51 61 156 211 2103 3 3386 6 198 327 5 64 7 95 18 814 1572 597 277\n0\t567 3 2582 7148 483 3 1 750 5 31 6936 673 11 151 10 230 1 265 6 29 984 10 3505 1 1646 3 981 3811 16 2 1729 2129 29 82 2103 10 1523 79 4 3280 3 6466 1948 3 128 82 2126 3006 79 4 2 6919 1077 11 39 153 5507 7 1 135 8 63 187 1 21 985 16 1 178 4 7271 19 2870 1 17 207 110 1 82 168 1295 1 94 1 22 237 32 1 21 93 2440 32 1 292 86 859 213 169 14 7 116 3374 7 399 8 214 1 18 39 14 1832 14 1 1199 9 6 20 1 21 5 6680 200 110 8 449 11 9 21 123 20 70 95 838 29 1 3050 398 2463 10 54 26 52 2411 91 7881 16 16 31 665 4 2 6889 5605 251 370 19 5760 11 2334 2 1087 3 1850 234 793 197 1 8864 1018 94 34 130 26 912 2 1850 6 242 5 284 1 5155 3607 30 578 42 2 84 284 3 6 2 78 138 1412 16 41 35 1116 3266\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 88 20 365 144 3924 343 10 2429 5 2 80 6049 3340 140 32 1 155 4 25 7 233 10 243 4014 1 21 16 503 3 6913 32 48 12 229 2 514 278 30 122 6202 58 82 353 41 651 384 5 24 132 2 1778 3 1864 8 24 198 1274 3924 14 2 514 1651 8 54 20 897 9 21 14 101 28 4 25 1293 1 21 618 40 50 14 24 43 4 1 82 708 89 9 158 66 8 24 214 46 9671 5 195 284 1 1533\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 72 130 24 71 5596 5 2033 11 15 59 102 269 5 3647 47 72 61 1 59 879 939 59 681 508 5187 183 1 18 13 677 6 162 29 34 5 5611 9 108 1 121 6 489 2166 7951 1 263 6 1 363 2224 107 2 1519 1287 1 21 593 1 210 11 2224 575 8208 3 6025 1309 642 1 13 2718 303 94 2992 1452 10 54 24 71 45 50 379 1808 881 16 2 13 4098 20 351 116 319 19 9 135 45 236 162 422 5 99 29 116 616 98 751 43 4616 3 3 87 43 81 2034 468 24 2 78 52 837 13 1149\n1\t903 3 297 6 37 327 3 761 167 93 9 18 6 237 105 2043 42 269 3 207 111 105 78 16 132 2 810 471 51 22 93 43 509 2139 30 9989 3 25 128 9 6 279 13 1833 1760 6 1206 41 3325 41 8478 22 1299 9 432 630 4 1 759 22 591 1201 17 3325 57 132 2 304 672 23 495 4219 42 383 7 1086 7025 15 34 1 3197 5125 1 121 6 6 514 2243 283 122 14 2 2479 164 6 5028 3676 3 3325 6 39 84 2243 283 122 14 2 4832 259 12 5028 10 8478 6 340 162 5 87 17 444 862 304 5 176 3706 43 802 4 44 1345 472 50 4039 51 22 877 4 4856 6278 3325 3 184 1206 3 1299 3325 1299 102 759 3 1 754 1139 980 7 66 1760 5866 15 1139 816 123 2 211 2691 854 93 236 103 2503 35 2448 154 178 244 5179 13 1627 42 105 223 3 1 119 39 153 998 65 17 42 128 279 9 12 2 568 645 7 86 1393\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 243 2231 119 427 1 51 6 6968 7 1 707 4 147 59 742 4696 63 582 1027 6151 770 3012 1668 882 19 2 34 3127 13 6 169 1535 14 1 9170 47 16 2 184 3168 1580 14 595 4405 17 407 3245 14 25 8 381 2315 14 1 797 179 60 3 4696 61 2 1202 13 4052 411 198 1523 79 595 4 1 543 3 7 1 1883 2446 11 6 928 14 2 9664 45 2357 420 100 55 455 4 9 141 3 657 23 24 5 4429 1663 8 93 381 776 384 5 309 9 280 97 984 33 90 31 2422 17 1535 13 92 6968 554 6 2 23 3305 118 42 20 610 248 1 111 10 54 24 71 7 148 29 1 225 8 214 10 3091 1 119 385 13 9 689 42 452 7568 8609 3615\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 190 24 107 527 124 68 490 17 8 45 8 5021 8 83 8560 41 815 126 689 35 8 12 5 8 190 320 949 5485 5848 15 71 30 4026 14 2 3338 41 82 45 814 8 54 3472 6597 137 2122 16 1 879 8 24 4 133 9 803 13 150 130 187 1 21 43 10 114 2230 31 931 8 152 544 5 390 2048 29 168 11 82 124 3 249 11 9 7687 12 126 30 8 192 6907 11 8 190 26 2161 5 99 124 36 4849 316 197 9 21 577 50 3443 5727\n1\t4292 110 2770 19 1 82 874 6 3321 1119 7830 37 55 45 1 1625 143 3673 194 25 2059 5073 32 1515 3421 5 213 37 436 10 54 24 71 52 5 64 2 327 259 4746 36 7594 77 510 7371 4973 94 25 306 2849 6 262 1 280 37 1397 56 175 122 5 6252 41 29 225 70 25 3404 13 2687 6330 9 5606 51 22 877 4 529 3 683 11 76 359 116 671 19 1 412 378 4 116 99 36 23 54 29 1058 45 20 16 1 1259 87 10 16 34 1 268 468 64 116 4472 41 7141 41 275 15 4616 2248 3 19 5 1038 3855 475 196 10 1907 1923 32 25 6151 7 3423 808 1128 6 20 197 86 623 14 29 1 1044 5 359 1 1863 7 9990 10 12 2 3148 11 808 1128 247 2 3315 378 468 70 1 1935 4 283 1917 174 862 964 1835 2770 176 30 1 3 5735 5436 2 382 2094 3323 2 3677 11 12 3 54 24 71 1 477 4 9756 57 10 6834 260 94\n1\t0 0 0 0 0 0 0 0 20 97 104 61 89 38 1 1329 4 17 9 6 28 4 126 3 42 1589 452 39 2 299 21 5 4578 13 4511 4 1 18 270 334 29 1 2875 29 1543 372 1 5342 266 2 1904 17 8765 3318 2993 31 8687 603 5669 3493 24 1866 37 5025 1348 56 2615 550 350 1 299 6 774 1 182 4 1 18 49 795 357 6785 11 80 4 25 52 3493 22 152 13 285 1 250 119 3835 200 7053 2 558 5771 59 5 182 65 246 2 733 15 1 9532 2375 553 27 54 100 1243 197 30 3318 2734 43 9049 3 2 2875 3677 1605 7 1 9532 8180 271 19 5 2612 1 2875 5 390 2 3677 8635 1642 155 29 3 4475 2 212 147 274 4 13 743 46 141 5087 20 197 43 2390 368 494 576 1 1813 3 1649 6747 5 5577 7 1286 9 18 196 53 16 1813 3 380 2 1219 176 77 1 1 2559 1146 31 6597 189 3 958 112 796 6 31 1409\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 174 2848 1 8154 55 1738 43 4 86 2 526 4 170 1995 70 371 16 2 346 298 416 4704 3 357 355 2 1420 1856 88 10 26 11 5711 33 314 5 7 13 6 299 16 596 4 1 2489 3 1263 1 692 16 124 45 86 1 393 6 2 222 52 3950 68 116 1446 13 1274 16 5322 9566 3536 3 43 1358 6694\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6824 1 1617 5 99 43 4 1 1673 7 1 2265 8 339 947 5 64 42 570 13 9 21 29 1 226 617 1309 47 1767 29 2 267 7 2 223 3900 10 6 84 1 1338 114 2 514 329 5246 1 389 201 5052 62 113 1411 58 673 41 2570 690 8331 6 28 4 50 430 171 3 244 84 14 1 9532 3516 7 9 1772 8 12 80 30 962 4745 5767 14 3 492 14 33 359 23 7 8 241 33 24 1 1340 871 7 1 389 2803\n1\t5780 262 30 8326 35 196 997 242 5 2303 2 606 3 1172 5 9121 136 7 1641 27 762 2 35 649 122 4 2059 608 66 5 23 3 79 608 6 2 70 1086 1911 10 498 47 11 51 6 2 111 140 32 2 6071 2000 77 1 2700 608 66 88 981 608 109 1337 7 34 2329 4 5532 120 3 9381 385 1 111 3 23 24 165 1 4534 16 2 28 1305 608 736 4859 32 28 402 157 4583 5 1 398 3 521 2 968 4 126 22 7720 5 328 3 2559 7 19 466 30 1200 7151 262 30 1334 608 1416 2 376 7 1 3 6277 9465 4745 35 6 929 5 652 25 1248 385 15 122 14 25 379 12 3746 65 16 13 19 1 1101 21 8 934 19 6055 66 93 1685 2 696 21 5 608 9 8831 5015 4 1 1967 991 3 292 86 428 3 470 30 1 1338 10 373 40 7851 4 1 1338 38 110 1160 30 1970 3 690 35 40 2 346 286 892 185 14 2 9532 3516\n1\t38 146 27 136 816 6 1728 5 2214 1461 6 133 297 3 173 352 17 539 1 212 290 7 698 1461 1108 615 2 111 5 2629 122 52 3 1129 15 1 352 4 2 482 3 2 27 2182 2 184 13 486 1 6267 839 4 25 212 500 292 1461 4181 816 197 2 53 2650 1 111 1 67 6 89 741 65 101 695 3496 308 805 51 6 58 882 204 73 9 6 28 4 816 217 6005 245 8 83 70 11 1399 4 1709 486 670 3154 77 1 13 1833 816 475 615 47 11 10 12 34 2 5408 3 11 1461 89 2 3282 47 4 849 1461 6 15 1 874 7 1 3211 1071 5 26 1891 816 289 31 1115 7610 183 27 276 29 1461 16 38 2 6216 1 211 177 6 11 1461 5237 816 5 539 15 122 3 270 38 350 2 938 5 853 11 816 6 288 29 122 15 2 46 686 3374 1461 440 5 26 722 17 816 153 13 3616 9 6 2 4638 8332 3 1884 816 217 1461\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 657 1 2516 376 1008 2 167 5684 462 4317 6271 30 11 1423 274 2385 10 167 78 1 1511 16 9 3 243 1065 7628 7776 4405 15 690 9785 3 14 31 342 7 1776 4 2 1114 734 7 1599 4082 1543 2 678 6049 58 3889 31 3159 4 2188 1131 4 3 775 4478 3 1065 1667 30 3 23 182 65 15 2 1517 7172 140 1 4\n1\t114 2 53 13 92 330 350 4 1 21 6 1 80 240 3 1697 461 10 2405 19 2572 4 2862 782 1103 4 1 3549 3 2046 3 7863 289 1 3 203 11 255 15 812 3 882 3 2251 8 4190 2155 258 1 330 5818 14 2 627 21 3 16 11 818 1071 8203 10 6 93 9 330 350 7 66 860 255 827 1749 2 129 66 271 77 21 622 14 28 4 1 80 627 3 1697 117 10 6 93 84 5 64 5429 603 1635 3 121 541 198 3006 79 4 35 60 71 2191 3 54 24 89 2 696 1535 7785 5 13 92 1697 1880 4 1 330 350 3 1 1770 1560 66 6 519 3546 30 3 53 1949 466 5 2 604 4 570 168 66 131 146 37 37 866 3 7006 7 86 2432 11 10 645 79 36 2 3310 3 303 79 7 9925 3 49 8 1640 308 52 10 247 55 5742 10 34 152 7553 8 214 512 7 55 52 9925 1 1854 4 1012 30 76 26 7 50 438 4665\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 112 9 135 1 1762 4586 2746 15 58 3257 129 2014 5879 557 5 932 2 1646 3 230 5691 214 7 402 445 1557 124 4 1 362 10 190 20 26 1060 17 9 21 151 42 221 1195 7785 5 1 1818 6 396 16 5712 6446 17 25 22 111 845 62 976 7 1422 4 3 7396 345 161 2014 14 3910 262 30 6 9361 30 1 1212 4 1 1355 5464 912 27 762 49 6195 1 469 4 31 1536 49 1 9199 475 5716 25 543 6 2 2129 53 5 64 11 7662 114 20 1426 1 21 1350 5 1 754 226 3875 2 402 445 2073\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 52 68 2233 712 2 3604 288 353 36 6107 5 309 7 9 391 4 3563 89 10 176 36 27 57 162 138 5 87 68 309 2 509 280 36 9 4941 3 1 233 11 1 18 12 377 5 26 38 43 1897 3 23 56 83 64 11 318 202 1 182 4 1 18 17 5936 23 24 5 694 3 99 9 509 21 136 10 41 440 5 70 5 1 1468 4 1 272 3 23 24 5 139 140 9 212 6826 4 509 171 3 1624 517 1 212 85 4 75 23 2021 142 174 18 3 636 19 9 28 3 75 23 24 39 116 319 39 151 1 212 272 4 85 4118 1157 939 420 243 99 3267 16 5814 597 9 28\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 240 647 679 4 7809 14 542 5 315 3 482 197 101 315 3 8 12 590 142 30 75 1 1521 3098 2542 919 2 7539 774 6611 12 446 5 473 5 1004 5 2704 3234 65 81 7 44 111 3 475 9914 7 2 3 274 65 275 5 26 142 14 2 5 44 221 145 2 103 256 142 30 1 6535 16 1286 538 104 5 2074 3728 7 2 3098 111 197 1 2109 248 5 508 82 68 5 2074 62 7319 14 7 9 21 72 100 118 809 319 10 56 6 33 2159 41 48 629 5 1 1438 379 35 1 3098 1123 5 274 65 1 4 1 3526 1940 2250 5 186 1 735 16 1 1156 105 573 1 21 88 24 71 1051\n1\t1174 8 997 9 18 316 19 249 37 8 485 29 10 2 222 944 8 63 134 15 732 11 9 18 213 11 293 17 23 39 112 10 73 4 28 1368 115 13 86 2442 65 7 50 1062 15 491 278 4 6337 1455 6036 35 40 58 2567 521 6337 762 1954 7 4445 2977 164 809 165 91 25 585 1436 7 7599 25 329 213 160 11 109 3 244 20 273 11 27 63 359 25 379 13 150 198 338 104 36 1004 18 15 184 1388 4 2466 650 11 623 255 32 4430 14 27 649 716 38 15 184 41 28 4 50 430 456 7 9 3515 1352 176 36 2 8785 19 2 2714 94 1 303 4430 666 10 15 25 1817 136 244 3185 25 14 8 93 36 5881 296 7 1 280 4 4583 11 6 46 6778 89 73 51 22 877 4 81 36 1954 13 1627 8 354 23 5 99 169 815 1 113 280 4 4430 1218 5176 90 23 2618 3 4429 122 29 1 166 290 84 4430 7 20 1381 84 2803\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 373 20 28 4 8971 138 2092 30 95 3304 4 1 5553 1 119 6 167 573 2 6198 6 2035 3 25 2307 655 25 752 5 149 47 35 114 110 17 1 1003 465 8 24 15 9 1311 35 643 122 740 394 269 4 133 1 3750 12 1437 144 261 130 55 1 435 255 142 14 101 2 56 184 5588 5 307 27 310 577 2989 1 752 35 27 2080 5 352 66 89 10 169 254 16 261 5 474 35 643 550 17 58 28 56 4011 2 6795 739 16 2 53 2991 5 87 37 54 26 36 133 2 1665 16 1115 263 523 3 1014 3705 25 104 328 5 8186 16 9 30 3301 6021 168 4 840 17 55 11 6 2130 7 9 108 45 317 288 16 2 53 6795 2493 841 47 1\n1\t454 6 4864 33 149 47 33 22 3746 7 1 2727 33 905 288 16 2 111 3335 13 5140 51 22 2 604 4 7033 188 7 9 108 74 4 399 8 83 118 261 35 40 2 715 349 330 4 399 94 1 74 635 6246 2 282 196 813 34 125 768 33 34 549 295 7 2 286 60 1225 5 1 3 615 2 493 40 39 71 4864 3 60 1036 5 186 2 52 6728 144 6 51 2 7 2 416 1 153 291 5 56 60 2180 2 586 469 9 6 31 2804 108 10 6 2 203 35 3457 45 10 40 43 7033 3955 8 16 28 5074 9 18 40 56 84 1 51 6 2 5986 246 937 107 7868 8 63 1498 1 3468 1 59 111 33 22 696 6 11 51 6 2 66 232 4 303 79 260 94 1 255 2 1111 45 20 1 113 7 1 682 13 2609 1 226 1 506 276 29 1 412 3 93 123 146 6477 3 10 12 1 425 111 5 182 1 108 10 40 79 160\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 5 134 11 1 795 4 8361 143 645 79 318 8 159 9 3939 10 472 79 2 349 5 209 5 15 1 8 12 1 28 35 12 2708 1 2276 19 1 2066 3 1354 19 249 45 51 12 95 771 38 1 8 12 1415 4 2261 38 110 49 9 12 3246 19 249 2 349 3 2 326 1372 8 12 50 671 689 10 12 1 74 85 8 57 4555 220 1 8 496 354 9 3939 8 192 133 10 195 19 2534 715 172 1372 3 8 192 128 2826 125 1 1 233 11 9 1263 28 4 1 59 388 802 4 1 74 2345 4101 1 9624 6 2713 10 12 31 7599 3 176 106 10 165 450 127 102 1338 90 79 175 5 24 71 51 5 4136\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1720 19 12 612 7 8368 3 42 1496 935 11 1 251 40 3866 2 1574 182 15 1 113 8967 36 600 65 1 3 2467 101 32 1 3818 5 518 4929 115 13 659 554 6 30 58 907 91 42 39 11 2224 107 10 34 183 15 2 1779 119 1394 2 658 4 242 5 1173 77 2 2430 5 2303 2 8044 4 66 33 1439 5 2373 5 957 234 4179 2930 3355 30 2249 4 2 1056 1474 193 1109 409 8 96 207 106 1 465 1936 69 1 2249 662 34 11 1474 15 1 1109 1790 5 131 86 717 409 114 72 321 174 18 11 1123 2 164 2147 65 14 2 287 7 639 5 1564 1 119 1785 436 1 210 4093 8 63 90 6 11 8 159 1720 19 9 3390 600 364 11 5715 719 989 3 8 24 2 465 7 242 5 320 2 46 211 427 409 207 2 686 465 16 2 267\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 792 2 189 4456 2181 8320 3 2 11 1 164 63 20 1017 31 389 366 7 2 1119 322 4 448 27 5402 17 76 27 209 47 254 5 134 15 34 127 678 81 11 662 377 5 26 51 5066 2701 642 1 2315 9 6 2 1002 1164 21 7 11 1 4408 6 205 7 710 3 5400 3 8771 155 3 3194 2 156 1287 436 9 6 248 73 2126 4 927 61 42 93 243 534 3 101 11 28 153 64 78 660 2 346 6430 4 822 11 3 132 1069 236 2 230 4 9225 3 9683 7964 167 78 29 34 1287 9 324 6095 6 93 3 8 3307 48 228 26 7 2 21 32 318 8 159 1 5329 1146 8 497 11 228 26 110 790 9 6 167 53 3 7 315 3 2315 8616 373 151 1 18 854 1315 47 4 1731\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 36 104 38 6108 3881 647 17 9 12 105 1264 1 121 247 1111 17 11 247 1 148 4287 1 2272 12 1 7538 507 8 165 7 1 7694 4 50 3954 38 910 269 77 1 135 127 120 61 33 57 202 58 8157 3 48 103 33 114 24 12 4787 5 1 8454 33 5148 5 239 82 7 1 4 9371 5987 1 5151 4251 4 2 274 4 120 63 26 8761 17 23 24 5 187 137 120 697 4421 41 33 22 39 4435 127 120 61 4435 3 1 572 33 419 12 39\n1\t42 261 536 204 7 1 2736 76 229 1740 35 262 1403 14 2 1998 7 4399 3075 4 257 401 1274 1902 7 66 27 266 5421 136 80 203 596 76 1 1494 7 2 1219 5088 1174 2622 2605 1840 2097 114 1 19 7489 298 217 152 784 7 1 21 14 2 4717 18 771 38 23 63 93 64 2 4150 16 1 9633 5115 11 12 1657 66 27 93 1160 516 122 7 25 13 298 6 2 1222 21 11 8 338 2 3600 114 23 64 3559 8 143 134 10 12 84 8 152 367 8 338 10 19 2 923 952 217 145 273 1 961 119 217 551 4 67 76 229 256 97 142 37 8 173 354 10 17 8 63 134 8 338 194 90 4 11 48 23 90 273 23 23 99 1 6185 324 45 23 117 1088 23 175 5 841 10 689 45 116 20 2 325 4 1 1222 739 870 98 7489 298 495 720 116 438 17 45 116 288 16 2 641 217 1535 1222 98 23 88 87 2 163 527 68 476\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 165 5 26 28 4 1 80 1618 3976 489 3 1045 203 124 11 8 24 117 310 10 6 38 53 421 510 3 2 4801 15 1 6423 4 5 3162 15 3526 3 2318 73 4 11 1 882 213 591 3067 3 10 153 90 23 17 1 2270 3 1349 123 549 1 453 30 3 6 1 210 8 24 1586 45 11 12 20 227 10 6 93 470 30 31 4 206 404 9 18 39 24 10 399 10 6 91 5 1 2 191 64 16 154 3641 31 2926 3 1219\n0\t30 1705 474 6 2 91 141 66 63 59 26 381 30 91 1600 35 63 6748 7849 3 90 43 65 16 730 3 11 111 328 5 694 140 110 16 1632 1 2234 1548 4 1 9703 5628 3433 3 1 570 7887 7 1 2312 395 1430 29 1 182 4 2848 1 13 2298 369 79 8015 30 685 31 30 2 156 824 66 187 2 103 8203 690 6983 6 20 28 4 450 34 27 40 5 87 6 5682 2 586 30 2 1658 353 3 176 49 33 369 122 139 224 7 7 639 5 5440 25 184 442 19 2 27 88 24 262 25 1326 1653 185 805 5 182 65 14 17 15 2 1534 412 290 1 3177 190 26 28 4 450 8 57 100 107 2 101 758 224 30 77 25 5299 7 639 5 5549 122 421 2 10 6 53 16 2 13 28 53 323 272 38 474 1104 2178 25 2869 3 4787 411 1135 5 25 668 3163 10 151 79 560 75 97 4 1 2075 27 40 5 183 588 5 25 13 3382\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 712 1131 32 1849 4 4765 9 383 19 388 3653 16 1 2632 3009 2 658 4 81 383 77 1032 35 2391 19 2 4898 1849 11 947 16 194 6 56 4076 86 2 681 938 8185 5496 5 1597 1452 1056 138 68 8654 7 1 91 18 613 2 5661 408 18 230 7364 15 53 2632 1456 9 18 6 128 31 1258 5 70 2086 145 303 5 1 1193 22 72 1496 37 11 1181 195 161 104 20 59 16 119 17 93 16 674 402 445 1278 22 355 37 1770 33 56 76 187 199 235 5 186 257 319\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 408 635 3707 142 15 227 91 129 2809 5 24 1 846 3 98 3812 23 88 64 4282 4061 164 7 202 154 1361 1608 3 1 121 3354 854 292 8 191 134 11 1 7479 8 24 5 186 2 580 184 9190 89 79 539 50 3404\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 12 167 9034 51 12 2 156 211 3955 86 271 260 7 5 1 4388 4 104 7 50 2079 106 8 2564 18 57 2 156 211 3558 17 1952 167 903 119 883 551 13 150 179 10 384 36 1147 12 242 2 103 105 254 5 26 2 211 2678 3 8 143 365 75 27 12 2 1537 89 3 128 132 31 8 36 1147 27 151 43 4419 17 3255 8 63 5062 550 8 1266 8 338 9991 1753 8 143 96 12 34 25 8 36 122 9181 8 497 244 1609 36 1 635 23 230 1140 16 27 39 173 291 5 70 10 8879 13 1226 2952 54 26 5 925 9 1772 10 143 56 2210 7 5 2 119 3 3766 9302 3 2367 7481 1121 314 14 109 14 33 88 24 5674 33 2149 828 1952 9 18 6 20 408 5239 42 20 2 1075 441 86 20 1075 3533 41 95 4 1 82 2681\n1\t7 25 3268 27 93 149 43 188 11 22 1136 5 9174 6 3597 5 2 15 25 757 142 94 25 2561 19 1 3 6 4787 5 17 27 615 28 275 422 809 4787 5 27 93 615 11 2 1741 4937 6 93 32 1 587 234 4 3 1 1207 6 31 32 1 7294 13 252 431 1523 79 260 155 5 2 431 404 106 792 5 24 38 2 1741 1 1207 713 5 2883 44 11 34 11 60 563 12 2 4 44 2407 3 11 60 1220 7 698 7861 44 1007 61 128 33 128 1457 7 44 417 143 2986 12 100 44 1845 3 60 143 24 2 975 404 3553 3 3804 93 143 6567 205 767 22 2 222 747 73 6922 662 39 1083 1 120 11 42 34 2 4 44 2407 17 10 649 199 48 10 56 4347 5742 3 10 876 199 155 5 4084 42 4358 1024 5 24 2 356 4 864 154 308 7 2 3166 17 72 99 127 289 5 1291 32 4084 42 316 327 73 1 120 24 5 3038 147\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 8091 6 2 21 66 270 1 545 77 1 19 4 2 595 3445 1499 496 1325 2859 109 428 3 4278 125 23 36 2 1702 14 86 8208 157 77 1 120 132 11 29 644 182 468 230 36 31 161 493 4 1 5950 13 743 1529 3995 21 32 1 206 4 773 6 2 595 4248 103 66 76 1376 80 5 3287\n0\t490 8 57 9094 5 1 215 2404 5486 4 194 3 8 56 336 1027 17 49 8 159 490 8 12 2102 48 1 9 18 6 1156 2 163 4 1 759 32 1 668 16 2826 47 35 636 5 87 34 4 13 150 56 192 2 46 568 325 4 2013 8936 17 9 18 6 229 1 210 4 2 668 11 27 117 1 18 485 52 36 2 368 274 68 1 304 4 3 35 1 3106 636 5 757 34 4 759 47 4 1 115 13 150 192 1774 5 2398 11 49 33 159 9 141 3 61 229 8337 7 1 234 636 5 87 9 5 257 109 33 57 2 260 5 134 11 45 33 2723 33 61 229 1341 29 1 233 11 368 590 62 84 668 77 9 243 5164 682 13 3 121 2547 561 8936 23 2021 1 15 1642 7671 17 23 22 7 2 18 11 6 1156 2 163 4 1 13 1627 7 2179 45 23 175 2 53 18 370 19 2 668 30 3 1628 3460 9 28 213 1027 115 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 728 28 4 1 210 715 104 180 117 575 42 20 782 41 95 4 1 82 188 5822 7 1 119 9 18 6 673 3 8 12 1120 16 202 34 1452 136 1 121 6 1669 29 1726 1 1003 465 6 1 1252 66 6 775 2878 673 3 8908 15 58 148 3344 2171 31 3664 1646 6 274 59 5 26 2415 30 43 4118 427 41 8932 145 20 619 11 1 389 201 12 1415 3 2966 65 189 4067 33 114 94 34 24 5 328 3 2 464 1471 14 2 568 325 4 53 203 484 145 198 9368 11 146 9 91 196 1001 552 725 269 468 100 70 1877\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6019 3760 3143 47 9 1219 135 10 6 109 2878 3 331 4 34 3149 4 1 692 402 11 127 703 8 83 175 5 187 235 2408 37 8 4108 55 134 235 38 1 994 1 212 18 2182 2 46 1213 4523 3 23 83 118 48 5 504 41 35 5 1 59 334 180 107 5 70 9 21 7 706 6 32 1827 1652 2433 16\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 83 175 5 139 105 237 77 7280 73 8 173 56 4800 2721 78 85 19 6540 9 158 17 8 57 5 187 31 5626 1062 5 3037 352 81 925 1 108 1 847 6 3 1 67 189 5 483 1 623 12 301 433 19 1 2996 3 1661 69 1272 7 1 3760 9 6 20 31 238 1045 41 235 36 11 69 86 31 525 29 3416 1073 3 1 623 39 114 20 216 94 101 10 12 2 900 5 99 9 141 3 586 111 16 79 5 2382 142 1 21 258 1078 75 2337 8 12 3 75 1089 8 12 16 235 69 8 247 852 2 1272 7 1 5409 17 8 12 852 146 2571 3 10 311 143 3882 476 760 1486 3438\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 97 1175 2124 216 6 2 961 386 19 1 4760 15 1 1161 160 5 409 497 48 629 398 1785 260 3416 29 86 80 9942 6047 13 724 28 41 102 188 11 291 409 6607 16 665 6 46 9583 600 6169 600 8681 600 3 20 59 5 4123 176 29 1 111 27 1 9655 15 1786 4686 23 1786 3 270 2 5407 46 728 15 25 101 1786 8 24 162 5 134 1786 409 7 386 6607 266 2 8500 7 2 46 9583 111 3 8 78 2923 5 64 122 5 309 1 6169 106 198 29 25 13 216 93 1419 1 4 1 82 4074 36 600 223 600 3 66 907 49 72 4218 5 1 1341 1648 2 1056 1119 1190 11 15 1 344 4 1 18 115 13 5537 367 11 9 6 128 2 53 386 1281 224 5 4123 409 93 99 47 16 2 178 1738 2 5295 409 97 32 865 5295 3 9 6 174\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 206 2574 31 161 874 29 1117 1073 3505 951 9 5219 1611 131 66 2 3 3349 3 313 6172 2 1114 604 4 7434 292 1 21 12 1868 14 2 2451 16 8936 6422 783 460 14 988 2 170 35 8068 25 1255 3 5 3727 106 27 1035 5 2 412 280 16 1 282 27 35 712 1 389 1210 14 25 4881 123 37 204 14 198 1578 16 31 6 1979 30 2 6392 616 376 5 238 2787 4191 2 668 1073 1738 2404 3745 3 3169 1851 375 837 642 62 4566 6966 1295 2 2568 3 72 99 514 498 30 132 14 2999 3 2393 2043 19 28 191 874 1 5 35 674 2448 1 572 14 31 931 18 3974 2 280 66 27 2496 3 5 1 206 16 25 1269 3383 4367 5 8712\n1\t118 11 679 4 268 1 1340 188 22 20 367 17 107 7 31 4050 41 2 5786 3 1 344 34 216 371 37 109 3 22 674 246 2 84 85 11 10 6 254 20 5 390 1366 7 30 62 2157 3 6 674 1 5118 5004 737 17 60 59 4373 838 5 992 73 60 6 3355 30 4617 6 2 7 1 1538 253 23 96 4 1 8700 1589 23 117 114 51 22 93 679 4 1100 2121 11 468 3082 7 346 4973 34 46 2842 642 6496 8119 3 206 492 5564 863 1 1428 3 1 119 866 1918 1 184 4726 798 191 93 26 89 4 626 5220 4715 7209 5 1039 2 1902 1814 740 2 1902 8118 1 494 6 125 15 84 2131 2320 2335 30 1 171 26 1774 5 2398 11 2 163 4 9 691 12 13 45 23 175 5 64 2 658 4 403 48 33 87 113 3 246 2 84 85 403 194 70 116 1191 19 9 461 45 20 16 235 2684 10 76 256 23 7 2 53 1646 3 90 23\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 1067 28 4 1 210 104 8 24 117 575 8 112 873 484 3 8 96 174 21 30 1 166 1392 6718 4145 6 2 3665 8 56 405 5 36 9 18 69 6 2 1442 353 3 1 857 12 7925 17 8 339 149 235 548 38 592 13 92 18 270 2681 16 162 5 3109 3 1 363 1 206 314 69 36 1 1829 3 1 333 4 673 1729 69 1674 1253 5 50 1758 29 1 233 11 1 119 12 37 673 3 1 171 61 2 163 4 1 6103 12 2 1122 4 11 61 301 2411 69 36 31 594 1019 19 160 200 3 75 27 153 2357 9 1253 162 5 1 994 2 1658 873 21 6931 3 8 61 205 3698 1 85 72 339 241 9 21 12 14 464 14 10 1306 3 1 3177 12 1319 8 179 1 206 54 29 225 525 5 8461 1 545 16 5 694 140 490 17 1547 8 12\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74 1005 21 6 58 42 2 1325 89 21 197 95 2387 38 1 157 4 31 7465 3248 10 93 1501 11 20 34 104 11 24 1 7465 14 1 2658 4 1 67 24 5 26 30 31 7465 13 1118 8 112 38 9 18 6 1514 5 90 10 46 1087 480 1 233 11 10 12 370 19 2 1533 6850 1954 4671 12 313 14 561 3 9594 244 39 411 533 80 4 25 502 17 7 490 27 301 47 3 6 275 422 16 3633 688 1 278 763 4 1 212 21 255 32 5122 60 6 313 14 23 76 100 995 127 120 308 819 107 9 682 13 5140 8 455 11 1 668 324 4 10 6 160 5 26 2 21 14 322 3 34 8 63 134 4347 8 449 42 38 14 53 14 9 28 424 73 9 28 6 2 21 11 1513 26 8090\n1\t4 3 206 4 69 1242 2 1546 3322 216 15 2 1 67 605 334 7 2 7 1 663 914 65 5 2 2279 11 6 15 13 540 3 15 1055 3 231 1124 169 2 1902 9299 17 1 538 4 1 2511 2132 3 121 3081 111 845 11 3994 77 1 1 1276 4 5400 710 341 2 156 231 32 2 1556 183 86 2759 13 1830 189 7126 3 189 417 3 15 1 1993 4 2 832 8806 34 209 577 2852 5499 22 77 2 13 872 1891 15 1 34 1 4468 19 3322 3 2137 1 460 4 128 5868 3171 4394 1303 147 288 5731 36 44 2707 17 2 46 264 5702 2844 80 4 1 3790 69 318 6742 289 65 7 1 570 529 488 4 611 2448 1 880 3 4071 22 109 279 1 2154 4 4095 13 858 15 32 2683 15 23 29 2 86 67 3 647 3 1 1676 10 29 102 5516 1 21 1225 2 222 1896 17 1 111 10 2683 15 23 6 3224 738 1 97 104 11 139 1302 223 183 116\n1\t369 79 70 1 91 47 4 1 111 1239 578 6 332 464 242 5 634 25 4 48 12 160 19 15 1 9570 2505 3 795 4 1 1393 56 10 6 7 8622 4090 5 1 82 1473 197 121 35 22 1574 7 62 13 3053 367 10 6 31 491 21 11 6 1258 5 99 197 2187 7 50 3888 8 192 31 706 259 32 1588 17 8 112 147 887 3 24 5474 97 97 268 183 3 94 5302 10 6 2 330 408 5 79 3 8 173 352 17 230 29 1 2807 4 157 17 93 1 5566 4 185 4 132 31 491 304 3317 9 6 1 148 7 15 1 1473 15 297 200 450 8 192 37 1096 1 1131 5027 5 131 81 75 10 12 19 1 1393 10 6 2 1152 11 33 143 333 95 1131 4 81 4700 32 1 6292 73 417 35 61 51 348 79 9 6 132 2 580 185 4 62 10 130 26 2403 5 131 958 6497 39 75 464 10 56 5265 13 63 139 5 898 30 1 699\n0\t88 93 1351 2 4317 32 13 150 247 34 11 3098 14 1 1284 842 40 5 139 155 3 3194 189 44 707 408 3 913 5 875 1929 4 1 29 28 272 44 7820 2506 1 6 5132 17 273 999 5 5292 47 2 514 8 311 143 365 1159 31 706 35 9836 3 44 1081 2150 3 14 27 3 1 3891 359 1105 8 96 8 12 377 5 6249 15 44 52 68 62 1105 36 2 129 47 4 218 3255 1 59 302 60 143 139 155 408 12 44 9382 94 31 1971 3 583 15 1 2523 4 41 115 13 7 2 5001 1165 236 43 4 720 160 19 7 5558 189 413 3 2891 17 8 159 630 675 8 308 337 5 2 8915 11 15 2 6083 217 1 226 6370 32 31 410 1910 237 972 68 1 344 4 199 3106 60 57 5232 5810 12 6359 22 37 60 12 29 3 143 5 5 10 1067 361 17 42 1 59 177 4 3895 8 320 32 1 212 8715 5552 11 22 93 3591 3 13 428\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 573 91 108 145 31 697 1961 79 49 8 134 11 9 644 4 7882 6 39 656 9 6 258 306 285 11 9525 103 178 49 1 22 15 1575 1 393 6 2674 3 1 18 6 2 3551 32 357 5 4726 2444\n1\t1169 3 98 256 155 371 702 13 1268 4 1 80 1303 865 124 29 1 2524 5340 1644 21 1672 6 2 3939 8 83 118 45 69 82 68 3779 1 69 51 40 117 71 235 36 3308 10 3 1389 297 38 2285 4 1 5257 3 8699 38 4556 4571 7 13 1118 6 169 1115 3 48 151 1 21 37 4340 6 11 9 4 6 89 15 331 13 1701 1 2319 4328 4 1 158 2334 44 67 38 1 377 4556 848 4 2 493 4 7 1 67 4 1 1533 60 981 301 6256 13 3204 44 67 6 556 8429 30 1202 3 1321 1046 132 14 5377 3376 7 51 3 7 106 1457 16 2 13 255 155 3 1 605 2 1134 2476 7 1 7762 51 255 174 3663 4 8972 69 20 5 26 204 73 11 54 1 1965 3 98 255 155 3 2121 1 1491 399 17 1 3785 879 7 1 729 4 1 13 872 1 634 15 2873 94 2873 7 9 6387 1197 94 1197 69 3 51 6 58 7 1 356 4\n1\t7 1729 14 6574 492 6 19 1 549 15 25 170 2375 8418 30 4090 506 218 13 150 76 58 1231 1733 7 639 5 925 95 1187 245 8 2474 5975 902 5 1 97 11 1124 730 7 1 3515 922 189 4766 3 7161 4895 217 6501 294 7468 217 585 189 1 234 29 408 3 1 234 29 189 53 3 4670 189 137 35 4294 5 26 413 4 851 3 137 35 56 2140 189 319 3 189 1 569 4 3 14 4359 3 385 1 744 1 1117 5115 4 7745 5949 6693 3801 358 5371 16 113 4044 142 802 140 9151 2166 19 8120 9301 32 47 4 1 6735 95 9004 20 59 40 3801 340 199 436 1 113 1262 2754 4 25 3987 17 776 1664 28 4 25 113 453 7526 13 1104 8 190 26 355 3176 17 180 107 2 163 1104 3 9 6 1684 3 1 1611 5 2334 2 7055 3 2083 3362 5 1 2041 2489 5 124 4 1 5 534 3467 8248 7 1 5 2669 3 5 296 21 7 6109 139 64 8381\n0\t149 10 1447 11 1 129 123 162 11 3503 122 5 24 11 1778 69 2091 51 12 58 302 16 1 353 5 328 5 87 2396 13 5094 38 1 8427 42 167 1048 69 8940 81 15 2962 191 2955 126 1781 145 1790 5 560 144 1 4765 7 127 104 198 291 5 549 77 1 2090 4 511 33 875 1137 5 2955 850 322 29 225 33 24 1 53 356 5 1030 46 46 103 7 1 18 66 1521 2480 200 2350 13 7784 188 69 987 134 23 22 7 2 2000 3 23 118 11 51 22 164 2306 599 200 7 110 54 23 1088 5 186 85 47 5 24 31 5541 38 35 6 138 69 1536 41 3 98 1088 5 24 31 4520 4613 7473 5 4839 1947 75 38 1 3921 312 11 33 24 5 1584 224 1 69 3639 65 77 6655 4 3468 143 33 117 99 95 203 104 883 29 225 31 431 4 4601 7 2179 9 6 28 4 1 8827 104 47 939 773 10 1013 23 175 5 116 111 140 2 2803\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 323 10 57 2 464 2991 12 775 4278 3 12 36 31 2399 1015 4 510 434 17 20 670 14 3629 13 499 472 34 50 5 90 10 140 9 628 42 2 53 329 8 143 24 5 1978 1 4200 422 8 894 8 54 24 209 8886 9 28 151 5879 429 4 203 176 36 2 184 412 368 115 13 92 59 1548 5 9 18 12 1 100 393 8044 4 304 3129 20 2 91 28 738 6073 115 13 614 23 175 5 15 116 417 94 2 366 19 1 4868 98 9 1962 16 23 1104 422 925 10 36 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36 6237 7908 9 967 270 2 167 1021 312 3 153 139 5 84 5 2 67 47 4 110 676 3256 32 604 843 6 3523 3 44 1248 6 2590 30 2338 66 380 122 31 5 9195 44 2567 9 40 1 225 3112 47 4 1 212 251 3 1 22 169 3652 37 1070 1 203 596 41 267 596 22 7614 115 13 1149 180 20 8113 5 134 38 476 42 240 5 64 1 120 4 3256 3 2362 3776 32 17 20 279 133 2 18 2287 3 815 59 1 593 3389 10 32 101 1 210 7 1 1199\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 2183 577 9 18 19 1 249 3 88 20 473 10 1294 745 6146 266 31 9583 1658 35 621 16 31 483 2624 3 1257 6682 8767 1018 1 111 11 129 1834 992 32 1 477 4 1 18 5 1 182 6 55 1938 9 18 419 79 2 264 5105 77 423 5558 3 93 8 214 10 46 695 745 6146 280 12 2 832 17 8 96 27 2734 10 142 530\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 39 165 155 32 2 3115 2 342 4 719 1742 3 8 12 46 749 15 1 18 49 8 303 110 42 46 3 1 4639 180 209 5 2826 7 2 18 7 169 43 290 11 6 2 1365 5 1895 35 1510 2 2313 278 19 97 3 35 229 1071 31 918 16 194 61 10 20 588 47 37 362 7 1 2463 1862 380 25 692 1016 278 372 1 826 164 5 13 677 6 43 2106 17 80 4 10 6 56 59 211 7 3770 5 1 2103 14 1895 1819 15 25 2807 3 1862 3525 5 352 550 1895 266 102 3444 46 8667 49 27 6 3073 27 6 211 3 8308 17 49 27 424 322 364 244 1127 3 13 150 354 10 16 261 35 1143 1883 1741 4772 38 832 2566 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59 7 1 7768 876 199 9 3445 8605 4 9359 1214 3 2885 2677 739 200 2 1 4 9 4981 189 6014 1338 3 31 1101 1404 1483 2318 9152 3 43 46 5963 1988 2940 529 22 101 3455 30 1072 1209 4112 3413 65 30 6337 1 164 35 7007 248 111 52 4248 1827 870 4261 68 27 1765 892 1138 265 3 301 1941 478 363 9958 943 103 795 2166 154 2248 89 30 8991 13 2120 9 103 391 4 238 621 3425 3 7192 77 1 3960 42 84 5 64 1209 3 8991 19 1 166 2238 3 23 173 8269 1 4197 4 9 83 504 105 1878 3 468 70 877 47 4 592 13 252 6 50 3880 48 6\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8404 3323 906 42 3685 53 3 8 419 10 17 42 37 1169 9525 11 10 54 26 5 637 10 237 52 1577 68 2 687 1222 4006\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 59 111 5 1431 9 18 38 5258 11 130 26 2241 5475 9311 44 111 140 44 280 14 1414 18 376 6393 4371 36 60 1304 444 7 1 259 35 266 962 6997 5 1 272 106 23 175 5 2500 77 1 412 3 5055 550 1602 6 167 501 571 11 244 372 1645 3 6 2354 1608 105 1423 16 1 254 5 241 9 6425 6895 12 470 30 745 17 98 805 27 1336 89 2 3245 18 1356 3070 1099 6743 236 39 58 588\n1\t273 1 5458 70 62 6126 1294 10 181 11 51 22 9042 7 11 2265 4 2 4494 11 12 4990 8 497 23 88 867 15 1 41 29 2532 28 7 51 22 34 2329 4 2326 295 7 11 3055 17 154 85 1 170 4770 196 44 2284 103 1191 19 28 1 435 10 32 44 1441 1 170 271 5 2460 136 1 231 6 1000 16 2 5 131 65 5 1 2279 954 231 8 3 14 60 1912 60 1912 4 2 4494 7 1 1692 11 40 86 111 15 768 1 363 7 9 597 2 103 5 26 3 95 525 29 1491 11 8 118 78 38 9127 6 232 4 8083 6985 258 49 732 2450 1030 38 14 1087 14 2 2023 2192 41 2 2372 9 40 2 243 678 3 286 1298 2526 15 20 56 95 5107 41 78 2031 65 5 194 17 10 12 232 4 3811 3 373 20 48 8 5207 8 83 1374 9 6 232 4 2 1360 28 5 70 140 17 10 40 86 529 3 6 373 7627 1450 47 4 5579\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 152 57 5 582 110 83 70 79 1989 112 91 1198 502 17 9 28 12 111 105 1495 5893 4 1 3604 265 11 100 951 23 7369 1 651 57 105 97 3495 3 11 799 49 60 151 4208 15 28 4 1 12 111 105 631 2 9 21 400 1 1203 19 1 305 66 276 167 1470 32 1 1203 28 9894 2 1598 17 23 70 127 1257 20 14 14 909 6718 1527 19 5 99 174 21 404 1 506 7376 17 207 174 5835 1052 1965 12 56 4419 2 184 1152 1078 1 233 11 10 276 167 298 3550\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 243 810 103 14 2 1165 13 1 59 302 8 405 5 64 10 7 1 74 334 12 73 8 12 2284 38 48 1 84 1531 6403 12 56 36 29 25 8 247 945 69 27 8924 2 323 2624 3 4051 9433 13 659 1993 8 63 1582 134 11 8 12 100 56 1120 29 95 1039 285 1 158 37 2 627 47 4 9143\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 24 20 286 107 261 9 21 3 8 96 8 190 26 1 13 499 12 1319 8 152 143 99 1 182 4 110 10 12 36 133 2 509 1902 41 2 56 53 28 5889 22 1 171 61 345 3 857 12 565 1 454 35 1274 10 3829 40 58 312 48 27 6 19 1395 1 263 12 1319 358 81 12 7 31 2048 3749 371 1295 3 23 504 1 53 259 5 134 43 177 56 53 3 1620 1 930 47 4 122 17 3911 27 666 5278 23 87 11 1104 8 76 1977 45 267 6 116 1689 99 1695 786 87 20 99 9 21 73 1104 42 115 13 345 505 91 91 8256 13 2687 4 448 9 6 7 50\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 46 91 108 8 1309 308 41 8327 3 1 857 51 6 300 28 211 6182 10 6 439 3 10 6 1466 140 1 212 386 141 8 12 1424 3072 3 1437 49 10 12 160 5 3158 13 4255 28 1630 7546 3 307 1630 439 3 2348 2452 121 36 31 1764 213 146 8 54 946 5 1861 10 485 722 17 1 1735 7479 83 351 317 3666 85 19 132 2 903 3 439 682 13 150 12 1437 49 10 12 160 5 769 55 193 10 6 2 386 108 7 1 477 72 179 10 54 70 17 10 196 2194 2212 34 1 111 5 1 714 8 2117 47 4 1 5599 3 8 54 320 11 18 14 483 91 13 92 846 3 4 9 21 6 2 249 4342 17 9 6 162 36 1 3332 18\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 165 5 26 28 4 1 113 1105 8 24 107 5 7120 15 31 313 278 16 3 34 1 607 7540 13 640 46 3 2 46 53 2231 1298 29 1 714 1 238 168 61 109 829 217 46 3883 13 1601 7 34 8 187 9 21 2 184 4085 960 42 483 3014 4 199 1383 7 1 3 14 4924 10 190 4190 91 746 32 81 35 83 1555 1 166 1105 4706 41 137 35 22 311 105 4210 4563 5 1116 1 534 3 7657 2835 29 7714 1 267 12 37 542 5 1 1387 11 10 12 189 211 3\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 7403 77 9 30 2561 19 1 1532 21 1354 3 12 145 2 1730 353 3 8 12 30 1 2263 33 343 400 332 197 8 88 20 348 45 10 12 4503 41 75 10 12 383 3 3626 318 1 46 182 5 64 1079 3 98 1019 2 350 31 594 19 1 970 5 149 9 135 87 20 773 110 8 64 11 1 93 114 2 46 514 21 404 3275 81 66 8 381 2 3284 1 1152 4 1 21 1255 6 11 5203 9 313 87 20 70 1 8898 3 6075 11 33 2005 3 414 457 1 9 21 1071 5 26 298 3 8 4254 81 5 176 10 65 3 99 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21 38 2 53 288 17 8187 342 35 1088 5 414 62 1153 3 186 81 19 1 2204 202 4079 90 1 540 1412 4 3 70 1795 65 15 43 81 3078 5 9776 1 7111 11 72 64 1424 5 1 7105 3135 285 1 567 1079 84 288 1654 5 388 18 88 24 71 37 78 138 45 10 247 37 942 7 4176 288 452 453 22 3 1 119 6 152 20 573 41 54 24 71 57 1 206 3 1278 20 1 119 77 253 273 72 64 679 4 81 7 4982 883 7 48 145 3584 1 302 16 1 2 156 5132 1 21 100 95 1560 779 7512 845 1 952 4 2 5684 249 108 45 23 70 7 5 283 9 23 495 116 671 47 220 1 1128 3470 6 2273 17 72 56 321 5 582 1278 32 253 124 11 22 7531 5 24 2 1390\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 34 4321 596 191 64 476 1 644 804 40 2280 1151 2161 5 209 65 15 95 147 7832 444 93 355 125 2 245 60 762 9 259 29 2 5528 3 27 1605 44 47 4 44 341 33 139 77 2 4406 974 3 33 87 110 8071 196 2 47 9239 83 117 348 79 127 8074 124 22 4533 4 9108 320 2517 3516 1372 60 5 44 75 84 10 1220 17 60 143 70 25 3774 480 490 1 259 615 44 3 33 1811 62 8466 17 963 60 4 25 3 451 5 118 1129 49 60 4361 34 898 2296 3 646 597 10 29 656 9 6 728 1 113 4 127 9108 124 180 575 841 9 827 3 8670 29 1 9005 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 57 53 4957 3 2 53 67 5 216 1566 1 206 3 3209 4 9 18 1200 8198 3 1242 2 2764 509 11 89 79 230 36 8 12 155 7 561 2442 1055 8497 897 361 111 155 7 13 1118 2 76 1956 786 186 9 67 3 90 2 148 18 47 4 10 69 1 67 1071 592 13 8413 85 2 178 57 5796 34 72 61 303 15 61 2 156 7291 2746 15 315 3 482 1131 11 33 229 165 32 1 622 1354 5 131 1 2286 13 1932 12 1 59 2437 822 7 9 1065 1 82 121 12 862 1065 69 10 1179 7 15 1 18 109 3 262 1 2046 274 2 147 402 1446 16 427 13 2298 45 23 22 1774 5 1942 34 1 2143 2387 7 9 18 3 662 3096 15 101 41 9619 17 175 5 825 38 1 10 6 279 2 836\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 1 67 4 2 170 287 3 98 7096 30 44 5981 1136 2150 94 60 196 60 992 421 849 3 25 389 1562 140 315 1449 60 153 87 992 17 40 275 422 87 16 768 53 397 1353 16 2 203 1772 17 1 2518 263 100 3423 1 206 8611 1 1097 1135 3 1 570 634 2019 545 3643 16 1 2100 30 2966 2947 5 1 29 28 1746 2 129 40 2 2796 1617 5 311 1743 1 2927 3 378 60 196 65 3 1225 295 197 4025 65 1 91 523 8371 317 7 1027 115 13 2361 840 1456 642 2 56 9078 5180 3 28 259 2057 32 246 3174 4 414 5209 47 4 25 59 1901 16 870 35 311 24 5 64 154 203 21 1160 7 7 1 226 1194 982\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2070 7 1443 130 24 71 612 19 2 264 41 29 225 71 340 1 680 5 24 86 331 549 4 4916 906 9 12 20 1 3060 340 11 296 1607 24 1 838 4 2 49 10 255 5 1 623 11 123 20 7211 4 41 40 2 15 6094 478 3 289 36 9 76 26 156 3 237 9107 28 4 1 250 922 12 11 618 609 10 1220 10 12 89 16 2 410 35 563 48 5 504 17 12 2111 30 31 410 3 2870 7185 11 114 20 24 2 2481 29 5 48 33 61 2034 66 6 3279 17 20 8 54 24 338 5 24 107 29 225 277 52 3299 4 9 131 55 45 10 12 1160 16 1654 305 4228 1 1097 3 1 7659 189 1 3107 61 1086 15 5447 2664 3 51 61 82 6437 39 1000 5 26 57 457 1 17 1359 5 1105 132 6437 186 334 59 7 50 1960\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 119 57 43 1698 245 1 1300 189 3739 3668 3 3024 2536 4232 12 2332 1 3122 11 60 255 2339 22 39 1745 2 4934 3258 30 66 261 88 1351 1095 3 3223 13 3053 12 28 4 375 529 11 61 1529\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 389 18 6 3139 32 1 74 18 14 109 7098 1131 32 174 1889 112 21 10 6 5539 15 43 52 1955 4024 1 362 3991 1131 11 6 1495 775 1171 3 7198 3812 20 59 6 1 21 202 301 7907 33 3640 1 166 3139 533 1 135 37 23 64 1 6553 1131 125 3 125 805 14 45 23 1808 107 10 14 45 1 1121 91 2160 180 100 107 2 18 37 275 12 1 226 3780 47 4 127 703 900 3 771 38 144 87 8 24 5 787 394 456 38 9 45 8 63 3642 11 42 1847 7 358 2131 11 130 26 2160\n0\t88 24 17 742 8474 12 300 39 20 1360 227 19 768 27 151 44 176 66 4 448 60 17 7 1 540 426 4 3293 13 724 28 177 16 1432 60 784 2880 17 3 7 1 10 39 153 258 14 60 59 117 181 5 1243 3841 7686 15 2164 4005 3 333 16 6365 13 3440 1457 15 3841 81 7 1 7460 2672 7082 3 33 311 83 176 9 167 3 875 37 1316 136 1076 16 66 876 79 5 174 1 21 1082 5 1 1165 7 66 10 6 1 8 256 1 1844 204 2496 19 2 263 11 6 7166 19 29 1 9507 4 1005 119 985 3 137 346 1733 11 63 1165 140 13 5492 1059 1 5220 3 25 2045 1 2101 3296 277 663 1742 37 8 87 449 51 6 31 13 4375 180 284 1 708 508 24 17 145 20 2 163 4 5796 17 3 55 300 45 10 57 57 2 1842 158 10 54 24 71 17 73 10 1 21 1373 595 845 220 10 6 3134 16 34 458 8 83 751 110\n0\t49 253 2 203 135 1216 6 6585 5 9688 1 796 4 1 1754 1140 8639 17 2 482 21 9 12 1 4181 61 4543 3 954 53 665 4 2545 66 40 71 248 5 3847 944 6 1 1398 4700 47 4 1 1417 521 51 94 17 2 195 2231 1635 30 1 1518 4 1 4215 9 21 339 3505 1622 11 1237 37 75 88 8 504 10 5 95 4 1 82 7988 4 203 135 51 693 5 26 2 1904 950 41 9 21 153 24 461 1 454 8 80 15 12 1 522 25 6088 17 952 4298 1782 5 1 1291 4 2 506 12 48 52 124 4 9 130 3702 1205 356 1782 5 795 11 1623 317 599 32 31 9188 23 473 3 7 1 2738 3344 20 1864 288 155 117 277 1 9020 59 5 1285 125 154 3 4293 7 116 45 23 493 23 83 139 288 16 126 3420 3 45 23 2172 4896 309 23 348 7689 20 4154 4175 127 2515 22 1455 3 109 7 1 203 870 7 5396 3 7 9 21 7\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 1008 1147 4685 14 2 1120 2471 7 2539 35 5269 2 9460 639 4770 32 5921 9124 7 1 9460 3 196 52 68 27 16 7973 4064 60 213 48 60 784 5 1142 1 67 6 1002 3 4685 105 78 5 1 272 106 27 432 595 9124 6 243 53 7 9 1538 253 44 129 38 1 59 177 7 9 21 11 6 1470 3737 8392\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 687 21 1510 2 7539 3620 3122 77 48 151 2 6627 164 452 5802 14 2 1872 2221 30 2 4139 9786 10 1633 2734 44 77 25 234 15 1 692 1858 1 201 1680 2 604 4 1 2274 214 6 375 4 124 783 7262 2127 2181 962 4745 3 33 87 62 692 53 1614 8 336 8168 7 9 158 3 24 396 3307 144 60 143 390 2 52 4139 2228 68 60 40 436 145 20 288 7 1 260 13 92 18 5333 29 2 673 4404 15 1289 3140 286 10 8883 2 952 4 1560 533 66 951 5 1 1905 1397 504 2 148 369 224 29 1 2526 17 8 214 10 7910 3 8136 8 112 9 1540\n0\t590 77 75 123 11 734 95 8431 5 1947 8 590 19 366 3280 801 40 390 2 1998 111 16 79 5 6558 94 3 214 9 778 4 611 1 3280 54 26 1441 101 9223 17 283 137 767 125 316 54 24 71 52 2072 8 713 5 187 2 3614 8 56 1322 49 10 9543 8 322 300 10 76 26 695 3 98 10 721 6034 10 12 2 223 350 13 872 8 63 202 64 45 51 12 2 8810 45 1 3679 61 620 7 62 3 57 985 5 450 17 1453 10 12 39 757 3 371 56 10 12 36 2 586 2384 324 4 1254 8 247 2 325 4 3280 218 136 11 12 926 10 12 28 4 1 8 54 1593 2086 17 45 10 310 224 5 79 6916 2 212 1022 4 11 41 277 52 767 4 39 134 420 186 1 1078 42 71 2 342 719 220 10 3 8 209 19 204 5 64 8 192 1 74 5 497 207 2 53 2076 11 1348 219 194 3 11 10 495 226 78 9950 1254\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 1 67 7 50 231 5655 50 9228 262 1 5701 16 1 9510 94 3325 5187 1 9423 50 1508 15 122 16 719 19 714 977 29 2 272 7 387 50 1508 553 3325 11 27 12 152 5 53 5 26 3353 65 15 132 2 346 526 3 11 27 130 6414 142 19 25 2487 30 11 85 3325 57 227 1079 25 5 87 39 5920 100 50 9228 3 1 9469 14 33 867 6 9821 13 150 24 43 1482 3 6821 5 11 6731 3 37 123 4728 7 13 150 24 107 39 38 154 3325 18 52 268 68 8 555 5 867 3 25 104 100 70 161 409 409 409 1479 23 1403\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 128 173 241 9 108 33 165 37 78 1698 188 7 194 11 42 254 5 241 261 405 5 90 592 13 92 67 6 2 6182 17 7 1 356 4 101 722 17 52 36 58 67 29 513 75 63 23 1541 2 3416 267 15 2 1591 2 1641 141 569 3 2 23 13 1 5287 1177 1 80 9964 177 22 1 1488 8 219 9 21 3 9 56 6166 1453 10 173 1142 269 6 9 1645 4172 300 5557 6 3040 269 9 173 26 2862 269 1453 20 9 18 6 105 91 16 34 4 450 2607 1 1453 1453 1453 9 173 332 20 26 1867 20 16 394 2110 4 132 2 98 10 12 125 3 8 224 15 50 37 97 501 531 1321 171 7 132 2 2212 6872 489 108 8 1550 405 5 118 37 78 75 33 310 5 634 7 9 461 33 339 165 37 78 13 7704 39 31 1698 810 3921 682 13 715 69\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 2 278 205 3 1712 3366 15 2918 4 112 1392 5141 13 858 147 887 7637 294 7 707 13 743 953 1333 1 74 21 117 383 1208 1 2478 5003 3580 207 2435 1580 16 1 13 3053 1 82 5825 2840 1851 1 4708 3832 14 31 3586 1026 2 6826 4 3 11 190 155 5 1 164 27 2601 3 13 1954 1867 1347 3 638 734 52 5115 5 9 3800 901 4 13 872 1 869 516 5475\n0\t0 0 0 0 0 219 608 843 47 4 394 931 1075 9222 11 153 56 70 3656 227 5 1346 75 1 148 67 653 7 9 5815 4 2 164 35 6 256 7 4193 242 5 70 2 329 16 25 231 5 90 1075 780 16 450 1 277 374 7 1 231 98 549 295 32 408 19 2 2748 5 2647 5 1 98 3138 4 1 2269 8915 9 2748 1745 43 601 584 36 62 1061 3661 15 2 3 2 66 151 1 67 232 4 36 2 834 19 1 18 3 153 169 1179 675 29 1 2526 51 213 95 1733 340 14 5 75 1 3138 1553 1 231 3 9 6 174 5 1 141 7 50 3222 1 18 123 963 652 17 10 270 105 223 5 70 5 476 1 18 213 377 5 24 71 31 215 249 5 17 10 40 1 631 11 90 10 176 9 111 608 37 145 20 273 62 1799 6 9432 34 7 399 9 6 2 641 88 24 71 52 15 2 749 67 17 262 3 197 2 163 4\n1\t38 914 5 5381 461 44 2261 1 5541 7 1 2700 3 42 17 113 6 1 980 4 2820 3 2975 14 1848 3 3518 5653 3 5959 3 1515 3 232 878 5 5653 38 1 1380 4 1 19 550 10 6 1 799 4 1 389 803 13 499 6 542 5 2 6243 135 94 283 10 125 2 2596 268 7 14 97 172 8 63 59 149 102 985 11 87 20 291 14 4664 14 33 130 1142 49 6 29 25 4020 5738 75 60 6 4940 7 112 15 17 40 71 1893 5 348 550 1188 60 12 1056 959 35 256 44 7 44 334 6727 286 162 181 248 15 9 1187 29 1 166 387 1 233 11 5 44 1848 3 3229 1255 6 758 7 7 1 1756 269 4 1 21 69 17 39 14 1108 12 51 377 5 26 43 119 456 11 61 1739 28 38 3 4346 770 29 2 3479 1559 14 10 6 2 346 17 8 96 10 6 39 370 19 2 2277 5 64 52 4 9 21 73 10 6 37 46\n1\t2902 65 7 1 2085 11 2027 652 43 2490 15 122 3 4097 43 4 1 82 2356 3 1147 195 230 42 85 5 935 47 136 1 22 501 1204 5 16 411 14 2 80 2643 421 3 25 13 3828 176 16 2 155 111 47 59 5 149 730 30 413 73 1147 89 1 2082 4 567 25 184 9201 1147 6 643 3 2356 6 5733 8394 17 11 153 552 2095 32 25 39 1 393 7761 29 366 19 1 8422 1170 167 78 270 474 4 656 74 2356 1141 102 4 113 3 626 98 14 255 47 5 2979 2356 11 6 242 5 9720 200 516 849 4632 44 7 1 155 3 60 2180 260 51 7 98 2356 1141 14 244 3814 457 2 1974 1489 40 13 252 6 174 1214 207 260 65 51 15 1 1326 3 1 164 32 144 1 2905 305 1123 2 3687 378 4 1 8927 3687 9501 6 660 437 468 3235 65 1156 350 1 4427 861 30 962 37 45 23 36 6886 7662 98 9 1962 31 115 13 47 4 394\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 795 4 5302 2455 8699 87 20 321 1988 423 796 7 1 3590 4 1068 1 2505 4 1 9570 41 1 6230 4 1 102 710 7 50 793 10 54 24 71 138 5 597 9 689 8 96 1 971 713 105 6550 436 33 343 11 1 795 4 1 326 965 2 67 14 2 1 878 4 28 4 2 69 3378 6 13 10 6 1683 956 16 1 2553 4 1 6479 1 61 7 34 1 260 1678 29 1 260 984 58 82 1131 32 1 326 6308 48 33\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 5285 3 444 160 5 1555 5 257 2081 1089 671 43 103 447 3313 189 1045 3 322 9 616 397 6 20 46 46 91 505 6402 265 3 2 67 427 197 95 67 3 95 3875 688 1 447 168 22 167 109 2427 163 4 3054 1025 3 14 304 14 7 1 4439 429 4 1857 5 199 2 46 53 570 3 46 1053 4311 880 16 596 5863\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 336 9 1540 10 12 34 8 88 87 20 5 1173 224 77 2187 136 133 194 17 10 6 56 46 8 12 3538 30 1 278 4 1796 17 258 1 860 4 816 2239 4070 711 35 6 3073 673 664 5 2 1697 3 464 2113 8932 17 919 193 789 58 1537 2502 3 6 37 331 4 449 3 500 9 6 2 84 141 83 773 9869\n1\t44 1 3 1 8544 2250 763 4414 14 6 5 652 3778 3 1275 43 667 1 1068 2521 3199 600 1727 4 2962 41 82 4333 7 569 6 841 34 29 1 1400 4414 615 25 2 558 7 4383 4 1 8544 9206 2315 738 17 1 569 1893 1 3532 6665 3091 47 30 4414 409 29 1 182 1 784 3 1035 5 701 15 25 221 13 252 6 2 9156 1303 67 4 2 35 57 59 28 52 848 5 3192 10 792 14 2 1214 17 1026 5 1197 199 15 534 120 3 1195 994 1 901 6 202 3591 600 2 255 5 2 569 39 7 85 5 90 273 86 17 406 1 795 70 527 409 1 4856 22 1 4058 29 8544 3 1 29 1 1905 7437 3 84 280 16 626 8277 14 2986 3 3837 244 1 212 880 4708 3 6778 668 868 30 2822 2672 3971 861 7 315 3 482 30 1072 1 1729 572 6 7776 1640 30 742 4071 600 277 7 35 89 53 1214 14 5 2 3 4916 3245 2439 16 9 8236\n1\t0 0 0 0 0 0 0 0 0 229 2413 9519 113 21 7 1 3 1 28 11 256 122 19 1 1 4146 4 9 613 589 6 4225 32 1 567 3 3383 1025 285 66 2 2370 3 8050 8768 22 51 2140 5197 189 1 215 1596 3 2484 706 15 97 4 1 716 4636 5 90 62 111 77 1 1 1967 6 93 30 460 35 478 162 36 62 1596 7 698 1 59 177 1 3710 40 6 1 3544 1 387 7686 7 2360 2344 61 7 5400 136 1 215 40 9 178 7 13 9519 1076 541 3 1 1563 1792 6328 1569 106 5887 37 1607 83 773 1264 42 1375 94 399 1 494 11 151 2 3672 2493 17 1 238 3 1 1370 1 67 6 806 5 3672 266 31 2360 2344 1557 2 6531 3 5293 5 2909 2 376 2928 1 238 6 1016 32 477 5 769 3 236 20 78 85 5 7 9107 4353 100 70 23 6523 17 48 31 2571 3 109 135 9 6 28 4 1 113 1563 1792 124 47 939\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 63 8 134 38 9 3124 42 2 2256 391 4 2145 145 619 11 10 165 1274 14 298 14 10 1322 835 540 15 9 3124 2176 2 138 835 20 540 15 9 803 13 92 67 554 6 39 930 3 2176 167 78 48 42 1609 635 15 58 417 196 1459 926 196 4864 3 255 155 14 2 7348 16 5677 4 11 6 3485 77 269 4 4533 135 45 23 617 107 9 18 83 351 116 85 133 110 896 1 330 28 213 78 1824 37 83 1460 133 11 1274 9 18 2 277 73 8 338 1 20 73 51 12 235 53 38 1 108 8 96 23 70 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 9 18 12 256 371 7 364 68 2 349 228 1346 86 269 69 642 182 6302 37 7197 269 4 697 5476 17 48 10 481 1346 6 86 551 4 623 11 1 817 21 13 92 2249 22 1911 3 519 20 55 695 1 59 306 211 546 22 1 1911 9101 19 1 6459 578 1103 4 2825 1209 129 7 1 3 2126 3 1657 533 1 135 46 2346 12 1 186 142 4 9140 66 36 1 74 782 18 3 1 4651 3601 142 1146 676 1 178 197 78 623 77 592 13 2543 228 20 26 446 5 1999 5 1 3087 2249 4 1 382 3018 203 124 4 1 2032 132 14 1 3 300 4 1 13 782 18 535 76 186 43 85 5 256 2193 253 1 9101 52 13 1268 177 1024 1 21 1008 52 68 1 226 28 4 2911 170 651 3308 8 76 920 384 4415 1053 7 1 39 16 44 1084 3 121 8 187 9 18 2 47 4\n1\t21 8 563 38 9 763 17 180 100 337 5 110 8 636 5 139 3 98 8 997 1209 5841 115 13 92 21 6 6265 10 153 2200 1 1880 19 79 36 15 1 2833 73 10 12 17 42 128 13 252 21 6 2 2314 38 2868 2504 38 9931 3 1004 19 1 3180 7 10 6 2 3243 3306 4 1 3317 4 2 15 2 1528 66 12 93 2 2314 4 17 15 2 52 686 1511 7797 3 8 96 814 43 1609 2771 15 1209 5841 426 2787 6709 67 3 11 75 78 6 105 164 19 6602 11 12 7776 4234 12 896 20 2 17 2 3243 3306 77 1 3180 4 41 10 6 36 1 2950 461 2 21 11 3 2018 23 7 1 5299 46 5053 9 6 36 1 692 10 40 43 119 1552 3 9047 17 11 151 10 55 52 2959 2 21 11 3 151 23 241 11 236 58 2792 19 1 3180 3041 1528 1765 1502 593 3 6483 2263 1209 843 6 2 21 11 23 495 995 5982 844 23 7782 3\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 9 18 226 366 94 1000 3436 3 3436 16 10 5 26 612 204 7 4857 59 7 1953 10 12 279 1 947 3 98 8 192 2 46 6213 8864 4 5483 4871 3 12 2337 5 64 11 9 821 12 101 590 77 2 135 8 152 1168 65 5046 1 18 138 68 1 3854 8 338 11 1 129 4 12 2 222 364 3 11 51 384 5 26 52 4 2 112 67 189 3 66 89 1 168 29 1 182 4 157 11 78 52 6270 1 2807 384 12 20 95 52 1904 19 21 68 7 1 1158 17 5429 12 2 1744 7 9 1174 60 12 140 3 2086 8528 12 609 3 40 97 52 84 188 1929 8 192 5183 44 168 15 5575 61 8 88 139 19 3 926 790 2 1709 5005 47 4 1731 885 3 173 947 16 10 5 209 47 19 2388 2 191 221 16 50\n0\t4442 2 595 282 603 59 3491 5 1 2201 4 6 534 1773 3 1 6151 1169 1082 5 652 235 5 1 280 660 2 5 26 3597 3 9 6 791 2 53 177 16 44 21 895 183 3 220 9 7439 17 20 16 1 7439 2105 66 2903 4176 4 2 604 4 189 489 168 1631 735 32 2278 6582 5 236 152 229 52 3579 38 157 7 1 567 3 3383 1079 68 1 344 4 1 682 13 4098 20 26 9 6 20 2 1822 5428 21 5 218 2741 4442 9 6 20 2 1822 21 29 513 9 6 2 9136 391 11 19 1 4 28 4 1 700 4 34 387 3 123 10 197 7232 197 2434 3 197 95 148 356 4 2308 1 129 4 4442 1981 3198 58 306 4442 1981 325 76 149 10 5 26 235 17 2 8 4810 3230 13 5827 29 34 4484 45 320 11 85 6 2128 854 190 20 26 279 1878 17 145 42 279 227 11 468 26 1140 23 1130 85 15 9 461 207 194 145 2427 819 71\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 87 10 8 321 29 1 46 225 1501 1 272 11 261 63 90 2 108 860 6 20 2 1 2104 35 9 7439 2418 4 655 1 1561 551 95 8572 4 4045 1600 41 7396 1 3080 410 191 7211 4 1 937 3 35 309 15 62 221 261 422 54 26 237 105 234 2547 5 70 55 2 47 4 9 135 10 2903 4 2 251 4 6310 7 66 1 123 20 55 5 1 8128 10 741 29 1 8718 1 716 553 22 1 2514 4 716 11 416 537 348 41 3803 106 33 83 118 1 1468 4 34 4 1 1422 33 23 1374 36 1 28 38 606 3 5 9144 95 7195 4 4093 54 26 8045 220 1 692 3220 4 505 2511 593 3 132 24 100 55 71 455 4 30 1 1688 516 9 2908 20 5 26 17 261 35 381 9 21 130 1067 4951 655 62 1734 19 9 13 3382\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7778 3 5260 2934 22 738 11 897 4 171 66 8 192 198 942 7 480 5656 8 24 198 214 1631 2934 5 26 2 1515 3 651 7 670 34 44 2842 3 1763 7778 6 202 198 279 8646 13 150 134 3 7 1114 185 73 4 9 682 13 2409 1237 5260 2934 123 20 309 2 9728 919 60 266 2 35 792 19 116 9358 3636 94 1 567 1079 3 153 187 65 318 375 663 3513 11 1113 1763 129 6 55 52 761 3 364 814 55 45 23 1797 36 127 102 1041 8 354 116 187 9 18 2\n1\t5 645 2377 3252 86 2557 11 1 131 6 20 2954 2956 84 106 10 323 1 171 114 2 1016 329 3 3299 28 3952 1721 61 1 131 29 86 6123 2115 292 1022 1756 12 20 14 84 49 1074 5 1 817 10 12 128 695 1022 1315 12 1 148 465 4446 1107 197 2278 41 1 131 311 1310 6584 20 105 867 1 82 171 1121 84 45 95 4 358 250 120 57 303 132 14 1954 7639 5584 7865 3 3524 1394 1862 3 5112 8162 22 84 303 1 131 10 54 24 1 166 3 1 8124 4 6730 1394 5346 143 352 463 73 27 12 20 109 2071 30 1 289 4238 8 241 45 1 131 1168 2 349 989 10 54 24 407 881 224 7 622 14 28 4 1 3280 1022 1315 12 2 103 1065 17 1 3177 12 2332 8 192 160 5 773 1 983 8 39 449 8 4165 65 28 326 5 149 47 1 131 6 155 14 11 1575 131 15 1 166 201 73 8 192 160 5 773 1 898 47 4 110\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 34 1 4661 81 35 24 248 297 32 4522 38 1 1765 1 2039 1 9 3 1 451 5 785 1947 45 23 1155 1 272 4 9 141 207 116 1 344 4 199 35 1768 112 9 18 87 20 474 48 23 4630 8 192 2 259 35 40 107 3949 4 104 7 50 727 3 9 28 1421 7 86 221 7 50 1533 10 12 20 377 5 26 2 4626 41 2 301 8532 3110 4 48 653 11 2016 10 6 1 80 491 112 67 117 8 118 11 10 6 1 3398 3991 3 1 40 307 7 2 17 209 778 275 19 9 708 2870 11 10 89 105 78 75 1054 6 3559 10 89 4 319 7 154 913 19 1 7275 3 6 1 401 21 7 1 7724 8 76 601 15 1 2009 9 85 2246 2054 85 5 155 457 116 8125 8 192 1613\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2199 275 35 12 29 1 1115 2946 4 8 12 9547 5 64 9 21 66 12 4803 14 101 385 1 166 2131 17 828 10 93 2450 31 651 8 322 8 12 945 19 205 8 969 1 305 4 9 21 3 11 12 2 6633 10 12 20 3606 13 150 853 127 1563 1792 124 22 1011 1189 17 9 67 6 5496 37 237 576 235 2363 1202 10 39 89 79 6846 50 522 7 1832 2 2528 287 3174 4 3134 207 160 2 103 4506 896 1 580 976 129 12 37 761 15 25 3140 439 176 19 25 543 3 439 2655 11 27 2175 1 158 4095 13 5020 1 360 3500 3 491 238 1025 9 67 69 5 79 69 39 143 24 31 1376 5 90 10 2 18 279 9 21 6 58 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 497 9 271 5 2162 11 988 1862 4949 76 87 235 16 2 1 1292 4 1 21 247 46 53 5 357 1566 9 18 40 37 97 91 188 38 10 8 83 118 106 5 3587 1 121 6 2444 1 861 6 29 1293 1 1077 12 167 565 1 868 6 1634 236 2 302 144 9 18 1168 65 19 948 1145 856 8 5630 183 8 1059 9 3 8 481 241 11 1709 81 152 179 9 6004 6 2332 33 191 24 338 1 102 570 2028 54 26 45 33 3746 9 7056 7 1 21 1137 3 100 369 261 64 10 6259 2 755 47 4 394 1020 6 237 138 68 9\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 2 85 49 368 6 253 319 30 781 257 6721 5413 3 2155 385 255 9 21 66 1523 199 1 1292 4 1 45 23 22 507 4464 2563 9 18 76 1126 116 438 3 274 23 72 34 118 75 1360 157 63 1718 7587 72 321 5 26 1385 11 3 4344 76 70 199 2086 207 48 9 21 114 16 79 3 8 449 10 76 16\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 277 1736 65 1 4 480 1 233 33 22 224 5 62 226 7 639 5 1594 62 7898 1 277 333 1 4 2 3 333 1 5167 29 1 1247 5 6597 1 9980 16 2 3779 2 199 3165 29 15 25 379 3 1 277 1088 5 90 15 1 1247 16 4740 28 4 1 277 1810 2827 5 139 9209 15 5379 959 136 1832 1 35 1371 8834 3874 309 62 874 421 1 277 86 631 11 2969 12 242 5 3642 2 859 1543 1 4 296 415 3 1 4 1 243 68 348 2 441 3 1 21 56 63 3551 661 7708 36 503 728 30 403 656 55 1 505 66 6 84 7 406 36 7250 3 1 2279 6 39 549 4 1 6452 675 1 21 88 24 314 19 943 6647 5280 4349\n1\t4093 582 23 32 2512 3 133 9 2073 9 18 12 383 7 2 2478 445 421 1 76 4 37 27 57 5 90 665 2539 6 1012 14 19 2 76 4 1 3259 3 44 1916 22 605 2 3533 5 3512 30 2062 6834 62 105 9 229 88 20 26 1553 17 1 2473 33 16 1 141 12 49 444 553 11 444 2201 60 271 5 1 4453 974 106 1 1144 4 1 3544 9425 5 1159 106 22 1 598 8063 47 601 32 1 2473 16 62 147 144 60 781 44 1537 65 5 1 5 44 5258 1 410 155 98 1997 4 127 8 560 75 1 1396 1 178 60 762 2523 2913 17 2337 38 110 1 2659 7 1 2306 601 4 1 116 785 265 32 754 161 296 2886 392 759 36 1786 50 161 600 3 7957 315 3070 2886 392 759 7 1 6 101 1012 14 6 372 44 6 41 48 12 7 9 734 5 1 4992 2201 471 9 6 1 59 302 23 130 7378 10 41 64 10 2455 3512 3 2539 22\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 12 2926 9 18 80 4 1 387 17 8 721 355 1 507 11 8 12 133 2 2598 108 8 1582 96 11 1956 1059 2 9635 263 3 977 136 8272 636 5 734 7 43 3342 1349 3 7337 10 12 2 184 369 1781 236 11 241 1 537 1449 11 5027 7 104 36 395 41 7 1 11 1 510 6131 1 1007 182 65 3499 62 752 38 44 1514 5 64 1 1272 3 9 3689 5 5423 1 6131 49 8 969 9 141 8 179 10 54 26 2 4645 5 1 2384 4806 936 2108 5 90 2 138 21 15 4 1 2128 17 33 5074 33 89 2 527 21 3 76 229 1621 1 166 4 319 433 19 4806\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 56 191 99 2 53 18 6574 73 10 181 154 82 3465 41 37 6 146 11 8 618 50 622 8 191 20 348 2 4002 3 297 38 10 3354 184 1504 8 100 179 11 8 54 64 2 21 14 14 9 28 1322 1712 3366 213 121 7 9 4356 244 51 22 4961 97 168 4 25 919 35 6 2 2075 606 39 5088 29 1 2904 244 1080 1319 6 39 14 565 127 102 22 377 5 26 7 2 112 3 51 6 311 58 1300 3198 8218 470 9 3124 236 58 8434 4 1 1744 516 675 6 9 1 166 164 8 16 7 671 2081 8 63 924 241 110 552 725 2 586 18 2751 6334 83 295 32 4002\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 63 8 134 38 2 901 132 14 2782 9 2548 901 40 1417 79 32 50 362 2624 2122 7 50 120 186 23 5 5 37 97 1678 253 23 175 52 4 239 1361 16 665 7 1 2967 51 61 37 97 264 4 8 336 1 4439 6623 11 4927 1 8603 13 92 67 427 12 405 37 955 16 5 1088 5 359 1 537 3 16 44 5 93 875 15 149 1 82 350 4 1 3528 37 11 1 413 364 88 1364 1 13 150 192 128 2 583 9 18 6197 5 50 2558 583 36 58 1715 9 18 6 50 3714 430 4 34 1287 8 449 11 34 537 76 26 446 5 99 9 382 3 26 7097 9495 77 174 290\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 3857 220 9 18 40 71 47 16 8334 8 96 11 275 422 39 7207 10 2 342 663 13 8 219 9 18 311 73 10 40 1788 16 1 13 92 18 12 2348 1 120 5461 79 33 61 37 1881 3 9 18 57 43 4 1 210 494 8 24 117 9840 10 57 111 105 97 119 1552 4095 13 677 6 28 178 7 1 18 279 283 245 1 3754 1302 106 1788 1141 1 4112 282 7 1 6498 152 33 61 34 17 25 121 7 11 178 12 2332 1 176 19 25 4141 10 1385 50 4 296 3413 954 53 5352 1 178 6 279 283 17 20 279 283 1 344 4 1 18 3410 87 725 2 2454 3 83 99 2420\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 84 665 4 2 243 641 21 1762 67 11 6 2970 4415 5 313 593 30 9052 7775 14 109 14 43 1386 121 2263 5668 4082 460 14 2 1557 35 34 105 396 1123 25 378 4 25 521 94 1 21 4082 6 101 16 9 3 6 5095 11 45 9 2236 5176 26 142 1 2 222 1372 136 6195 2 1004 244 3219 30 2 2172 3 4082 6 929 5 566 5 2909 2085 9 85 27 123 20 333 6021 1426 17 1 6 5550 4082 3 8650 33 495 241 122 37 27 440 5 1203 65 1 378 31 1438 164 6 1391 16 1 13 3057 2 163 52 5 1 21 68 2 119 1295 2 7462 1518 3 2 112 796 16 4082 34 7 399 9 6 28 4 1 138 3359 4 1 84 3022 3140 1016 2036 3 2 641 286 46 1535 471 9 6 1 111 1762 12 928 5 1142\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 284 1 821 4 1147 2 172 989 3 226 366 8 2311 310 5 64 9 13 3422 42 71 172 220 8 284 1 67 1 74 387 1 5197 189 1 821 3 1 18 22 46 731 8817 66 89 1 212 177 7790 22 39 428 47 41 1241 5 3133 13 614 1 119 981 240 5 139 3 70 1 3854 86 1878 1878 78 3606 13 843 47 4 394 220 10 12 254 5 582 133 73 4 1 84 1048 119 30 1147\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6408 4 70 116 1215 213 34 11 1846 41 1 6063 3 9693 708 190 26 51 5 48 6 56 2 167 91 18 668 1214 383 19 2 3 36 2 414 249 880 8 83 149 1 333 4 1 1138 6819 7 943 168 15 41 41 11 14 10 276 52 5 79 36 2 18 11 12 1160 19 2 249 34 15 4301 748 9039 30 1 5 147 2121 3431 1 171 209 142 3408 322 1815 3 9 541 12 78 138 1640 49 6408 383 7 4 9 18 4203 1 396 2494 2386 61 33\n0\t2518 3 2743 2046 3898 2 304 282 15 58 7676 42 311 39 174 524 4 541 125 13 92 121 6 1317 855 3 207 20 56 62 2818 220 33 57 46 103 5 216 1566 1 250 302 8 219 9 18 6 73 4 8358 245 1 6075 6 169 7756 3 60 6 59 7 1 21 16 38 1099 1452 44 278 6 1317 2518 14 530 9160 1800 380 31 1976 278 193 23 54 504 2 163 52 32 550 6512 5456 12 39 6831 162 293 29 513 278 12 1 59 28 8 56 60 380 2 167 53 278 14 1 1355 287 3 60 12 1 59 240 129 7 1 389 803 13 92 18 6 20 2 528 1815 51 61 43 3 1303 1192 51 39 1121 227 4 450 1 21 39 153 24 11 5833 5 56 90 10 4884 10 12 152 169 2518 3 10 247 46 2316 29 513 42 105 91 1 21 247 46 53 220 10 57 132 2 2911 6374 7 1 769 2743 2046 6 1317 2255 855 3 20 56 279 2034 1020\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 199 905 30 667 11 9 644 706 462 218 869 4 6 31 1409 6 73 7 2360 22 58 697 802 4 3 1 312 4 8049 869 4 2 6 1070 4739 779 7 1 2664 4 9 72 61 5 2095 9 21 30 86 4144 1587 6 160 5 1030 14 2 3703 38 931 4 86 170 4531 603 3443 22 20 29 40 93 470 2 496 1117 9712 38 4331 89 30 81 7 62 81 7 1193 22 2 342 4 170 624 35 22 1506 7 1 2196 4 9266 62 3 45 253 2 21 47 4 63 26 4826 14 2 21 98 2360 40 5 26 14 2 21 5518 603 124 1271 38 4 423 3 28 1143 10 41 6 1 59 1551 2582 11 26 32 9 933 4006\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 28 4 1 80 3 1325 89 847 124 180 117 575 15 304 265 533 1 141 1 981 3 265 63 90 23 230 36 317 7 1 1540 9 18 6 20 39 84 16 2517 17 1995 854 10 5488 23 132 14 100 995 35 23 2140 23 63 87 1034 23 1382 116 438 2339 3 5 2950 3 9 18 63 90 23 1717 29 268 1221 66 6 198 2 327 1388 7 502 9 18 6 722 3279 4709 3 863 23 19 1 1590 4 116 43 104 56 187 23 2 8929 507 94 23 64 949 3 1 18 6 373 28 4 6073 15 50 2400 4 460 16 4500 1224 3 2 360 312 16 2 141 10 419 79 2 212 163 4\n1\t74 2602 296 1052 2918 7 1 10 6784 25 3234 1593 32 101 2 345 7986 5 355 77 416 3 55 9541 10 6 2 53 441 17 10 181 36 10 40 71 248 97 268 1448 2 3292 421 34 4 1 495 187 65 318 33 8612 62 11 33 274 16 43 3680 302 97 172 1924 10 88 3659 17 2 163 4 1 3525 1 9521 2121 7 1 18 22 6269 642 1 4 1 416 15 25 570 245 34 4 11 6 89 65 16 1 178 49 626 7789 475 3849 1 108 7789 266 3318 2714 35 6 1 1946 29 1 416 9521 6 14 521 14 7789 209 7 27 9 4 1809 11 23 173 812 1013 23 24 1115 183 1 18 9196 7789 380 142 2767 8607 11 54 24 23 1094 29 75 797 27 6 17 23 22 105 5418 29 1 111 27 6794 126 689 7 1 182 23 191 894 43 4 1 1637 4 1 158 17 920 194 45 10 12 34 1 4845 10 54 24 23 10 116 3104 30 1 74 2290\n1\t12 313 14 44 20 78 5 134 38 849 1739 9 6 2 280 89 16 550 14 1 12 313 258 7 44 570 1361 193 60 153 24 78 5 867 44 2745 5217 3 823 1587 12 452 1 82 53 278 12 1 103 4163 27 12 3 6 273 5 652 2187 5 1 5520 3888 1 18 12 229 2052 2805 30 62 2263 6586 12 34 2401 17 27 143 24 78 5 1405 6689 12 1130 7 25 91 574 1174 115 13 1268 177 11 758 1 410 5 1 856 12 1 788 3 1206 6 425 16 1 3243 5695 4 1 4923 3 487 6 1341 245 1 788 5 26 7 174 18 59 73 10 310 29 1 210 799 1218 81 190 24 209 5 1 18 16 17 33 495 105 78 38 10 9447 12 4492 6560 17 384 5 2739 14 1 1216 1646 12 1204 533 1 108 12 509 3 162 5 5955 1395 6 105 509 4 2 788 5 70 1 1646 4 1 108 480 1 345 2858 1 453 818 90 10 2 191 1861\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 324 6 1458 1492 29 116 558 3780 1320 19 1771 1 3687 6 20 1111 779 6 1 5473 17 45 23 24 3 1597 41 37 269 5 468 70 116 279 801 6 20 667 31 489 3308 6 483 14 1034 44 7976 190 24 71 155 7 1 1344 33 22 20 4225 7 9 135 2 84 604 4 514 129 171 1030 7 9 21 55 17 1 1097 621 5096 386 4 62 8094 1604 10 6 240 5 64 75 132 4368 4113 90 1 80 4 1 904 4480 1 668 2139 6153 22 56 59 22 169 2444 674 1 1210 114 20 230 4565 5 2559 7 19 1 1086 4 1 215 1453 16 48 42 1 305 63 26 57 16 42 279 11 78 39 5 134 819 107 2420\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6289 6 1 113 131 1218 34 1 171 22 332 425 16 51 2237 8 112 1 2771 189 1 807 45 23 24 20 107 9 131 8 46 496 354 110 292 9 2218 6 1074 5 376 2748 2 163 4 1 85 10 152 173 26 73 10 6 301 3026 8 192 2 376 2748 325 17 8 54 373 1090 9 131 109 845 95 4 1 376 831 8 414 7 147 3 72 87 20 70 6289 19 257 249 37 45 8 175 5 64 10 8 24 5 751 1 7500 3 1022 394 6 20 47 204 286 37 8 63 20 64 10 16 169 43 85 801 6 496 618 9 2218 6 46 46 53 3 6 2 191 2198 17 26 5095 10 6 496 37 7 8 112 6289 341 5819\n1\t46 8 4108 2600 10 73 10 693 1 1197 1656 5 468 64 48 8 467 49 23 64 1 21 273 23 70 1 6185 51 6 93 2 604 4 82 8078 168 11 22 364 1985 68 1 28 180 5598 17 22 1386 2 164 196 6957 30 174 28 40 2 1172 140 25 2 3068 6 7 13 92 121 7 1 2638 164 213 235 5 787 408 2354 17 42 1195 2880 1834 1 838 3 276 1 185 14 1 3582 7713 10 6 11 1 6914 1024 14 1 5925 29 1 7302 4 1 4815 44 278 6 48 6832 1966 54 3555 172 406 15 1048 17 1 215 114 10 1293 776 9969 593 6 1195 533 14 27 4938 257 838 140 2143 985 4 4706 34 4 66 352 5 932 1 948 4 1 471 6076 40 881 19 5 90 43 17 27 515 40 860 3 42 2 1152 11 27 153 256 10 5 138 4 34 1 6076 124 180 1586 9 6 1 113 3 292 10 228 26 832 5 209 1961 503 42 279 1 4471\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 192 32 1 279 2265 3 1457 7 16 2 156 982 9 18 12 111 142 14 237 14 253 10 176 36 8 159 6274 7 1 1138 4 28 2597 153 24 8 497 11 629 49 2 18 11 6 377 5 26 7 2597 6 829 7 1 3263 22 93 56 565 33 130 24 1866 171 32 2597 5 309 1 3955 51 2 163 4 5033 171 32 2597 47 7 3853 1 18 6 56 747 1024 73 10 6 2 306 471 8 11 1 506 6 214 3 1 28 53 177 6 11 4 44 2214 72 195 24 1 9940 5 352 149 1156 537 1108 94 33 22\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 143 118 9599 12 37 254 65 16 4821 11 3719 9382 411 15 132 1985 7 9 646 11 319 11 8 12 160 5 2702 5 45 244 11 8 24 100 107 132 2 1526 3 3094 21 16 2 223 1390 16 2782 33 22 463 3769 43 6723 41 2 161 54 26 3238 4 1 640 3 420 243 70 68 694 140 52 68 1 594 8 3126 1603 602 130 26 3746 65 16 2 349 7 1 4779 4 2 957 234 9121 925 29 34 4484 420 187 10 7310 394 45\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 6 38 2 873 287 35 40 31 4116 15 19 13 92 119 6 332 8 2197 5 64 95 41 1 119 498 31 1980 632 921 77 2 7 4637 1 168 11 22 829 7 2360 2344 22 407 2239 91 546 4 2360 132 14 1 9724 7 1 750 4 1 2977 345 536 8148 3 4271 533 1 212 158 8 359 517 11 218 6 4096 1 873 1615 3 1 2360 2344 13 5851 6 2 286 509 135 1067 875 295 32 2420\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 181 37 91 11 8 202 1310 7 2 1 74 85 8 159 12 36 2 91 8 419 10 2 330 174 3 475 165 6263 5 9 5 42 673 1574 7 2 822 3 258 1 668 6 89 4 43 2032 891 3 1409 5898 5350 759 30 5036 130 1682 1 788 38 3 886 7 1 7 1 750 3 774 1 182 4 1 22 43 168 7 1 477 1959 199 5 1116 1 1574 7976 4 3120 11 18 57 71 89 30 43 971 36 2969 41 54 24 6276 19 1 38 11 18 14 45 10 61 2 1454 96 9 21 6 28 1519 268 1914 5 95 4 1262 20 16 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3932 2 3287 996 5 920 11 27 6424 2 4443 125 9 21 6 2 3287 5 2 3287 803 13 614 28 321 920 52 98 436 28 88 134 458 63 100 26 1 5102 94 956 132 16 10 40 1527 199 5 1 398 13 3382\n1\t2 2473 7 4302 16 1 4403 4 10 6 1 3013 3530 17 10 76 20 6264 23 16 1 233 11 69 31 2059 7455 18 6 7842 4 86 1818 1386 3 4952 3 232 3 10 6 36 2 1796 4 3958 19 116 543 285 49 23 175 5 542 116 671 3 2618 3 582 9 799 4 5526 3 10 4665 9 6 1 18 11 152 4732 50 500 8 219 10 285 1 832 268 49 8 12 8257 5192 3 46 49 8 57 5 934 15 1 747 3 1697 795 3 5 209 5 1422 15 43 1387 38 5450 10 1553 79 5 50 3 449 11 235 88 26 1241 3 235 6 2623 8 57 5586 5 512 98 11 58 729 4875 8 54 1622 512 47 4 6353 3 3 8 54 1116 154 938 4 157 69 15 86 2421 3 86 5586 512 11 8 54 139 5 4302 3 406 11 349 8 114 3 8 12 20 13 3 6 28 4 1 113 104 117 89 3 50 6879 1629 9 103 21 6 2 4036 4 4066\n1\t152 12 1 80 7436 21 5 9 13 92 1559 198 165 2 356 16 120 15 2 5527 4 623 5 949 17 8 96 11 27 7 9 18 1583 2 7684 5 235 244 89 6884 25 216 40 69 7 46 315 482 911 69 71 3946 30 1 3861 17 20 11 3014 2996 3 2224 198 3281 25 356 4 623 3 25 1514 5 1541 10 15 423 922 3 2 6474 111 4 3851 1 410 118 48 27 693 5 13 659 245 16 1 74 387 27 3917 15 31 6085 7073 3 2 1451 16 1 20 59 1 7498 17 93 1 1408 81 23 2292 5 274 7 69 7 1060 69 10 1819 15 1 2272 4 551 4 1549 17 7 2 542 3 29 268 1798 111 11 863 23 288 3 863 23 3 19 401 4 458 27 411 999 5 309 2 2 306 35 451 1 260 177 17 40 58 2481 75 5 70 1057 3 81 2091 13 1149 420 24 5 134 42 28 4 1 113 104 180 107 9 349 3 145 3461 25\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 205 546 8704 381 1 67 3 381 283 31 972 3042 14 1 5803 27 12 46 1202 14 1 3076 1628 3 407 1 278 4 742 8 87 920 11 8 54 24 7421 283 275 422 14 1 7 6186 130 1382 15 661 3 20 1165 60 143 24 1 176 4 1 287 4 1 1 344 4 1 201 61 1442 3 1417 1 46 530 8 192 1096 5 64 11 1 171 4 9 3157 22 20 1893 5 328 19 264 120 3 22 20 1893 5 26 107 14 355 717 6 17 987 20 2321 32 110 2 164 29 63 26 78 341 600 3042 323 6 98 2 1504 9315 58 729 75 16 129 456 5 139 385 15 2 84\n1\t128 2 46 53 18 69 2642 3 862 38 1 59 177 11 63 26 367 6 1 918 7927 3366 2071 69 82 68 11 10 6 1550 8593 3 143 90 78 4 2 49 10 310 3335 13 6 2864 17 5 53 1380 14 244 674 246 4057 4 1434 5696 6 84 14 2097 3935 3 516 1 443 999 5 1708 1 1190 4 2 21 1762 709 347 138 68 95 82 158 8 24 117 575 39 605 2 176 29 28 178 32 1 21 6 1 4702 3 4635 5 932 2 84 13 677 22 43 56 211 3916 642 28 30 5564 14 3 8 83 96 51 22 95 2387 29 34 7 1422 4 121 69 55 1 6 237 138 68 13 3616 2 56 514 18 11 40 390 9633 125 1 172 220 86 1042 3 6 862 2107 15 59 855 19 6157 1 746 22 46 1061 47 3 94 283 1 21 308 316 42 20 254 5 64 144 69 9 6 2 425 665 4 4392 1 3593 4 2 709 1158 32 541 5 13 4869\n0\t42 36 1956 57 2 4 6604 15 119 1154 32 82 104 428 19 949 66 61 3 1034 119 456 3 120 310 65 7 1 934 61 98 8260 77 1 1471 115 13 22 37 11 23 63 309 2 562 4 35 741 65 14 2 1198 94 364 68 764 269 77 1 141 3 229 70 154 625 28 1 639 11 33 76 70 97 4 1 120 22 37 11 23 4201 16 1 2070 5 4258 126 960 43 4 1 250 120 2 1740 35 15 2 35 9301 2 259 15 2 3 1327 35 123 3526 5866 29 2 9637 1608 3 2 4143 184 4494 7 321 4 4519 13 1 744 81 3809 2 3600 167 624 549 200 15 5472 5740 90 47 19 4439 8286 7045 4 2 3 3131 6210 115 13 16 1 80 1871 17 28 177 2705 1 30 120 49 82 81 61 5550 94 28 1330 33 90 4019 8 88 202 785 13 3616 1530 45 23 24 1597 269 5 3 23 175 5 539 29 2 3823 23 190 175 5 1899 9 5592\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1209 48 422 63 8 7952 1037 51 72 3192 195 72 118 9 18 6 160 5 26 56 13 150 159 1 74 681 269 4 9 18 19 1311 10 54 26 565 17 20 55 8 179 10 54 26 9 565 1 119 6 1853 1209 6669 6 355 161 17 1031 25 104 22 14 2593 13 9 108 83 64 110 1218 8 511 55 26 1390 5 64 9 803 13 460 69 29 86 683 1936 2 4092 4591 13 1149 322 300 1375 17 1 54 273 36 199 5 96 814 511 13 7527\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 29 7729 1767 1672 3 12 11 10 1196 1 2101 7729 9191 8 247 1 59 628 1078 1 410 57 1795 4042 5 1 5754 8 179 51 61 97 82 138 2092 47 1057 17 98 8 2178 11 1 61 2761 740 1 2265 4 21 3179 3 82 9687 2145 136 1 861 3 1043 22 19 3459 15 97 82 4074 47 1057 1 4400 6 162 52 68 116 855 1465 5754 181 14 193 1465 124 321 5 1483 28 4 127 2241 3 7697 2436 361 1788 3 2257 2475 47 3 1680 34 3402 26 52 13 7551 3 10 228 26 50 1520 17 1 259 32 981 2 103 7810 123 261 422 177\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 323 91 3 728 1 210 431 8 24 117 13 3828 713 5 90 65 16 10 30 685 10 118 72 22 403 11 54 24 71 211 45 10 1121 16 1 233 11 1060 57 459 248 110 3 10 128 511 90 65 16 10 45 33 57 209 65 15 1 312 7 1 74 8779 13 92 3139 472 334 14 185 4 1 692 1921 1 3139 1121 55 4 697 795 11 39 4 867 1424 125 4077 8 83 1424 2287 45 8 405 5 99 2 420 139 19 8897 3 20 351 350 31 594 4 50 3223 13 40 1391 2910 77 1 5072 11 80 24 2339 3 10 503 33 1180 5 139 715 3 2 6538 3299 197 31 431 36 476 115 13 150 12 1247 11 511 24 5 26 11 232 4 13 872 39 14 2 2834 3394 144 1 898 12\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 313 2553 4 28 4 1 52 1637 4 11 4180 8 336 1 3811 16 2 67 3228 5 2 2461 13 150 179 816 3969 12 56 84 7 490 27 310 577 46 109 14 275 35 40 71 30 25 216 801 27 143 1435 2497 16 17 128 451 5 24 2 1408 157 16 25 1499 27 123 1 113 27 63 5 64 11 3109 83 175 5 2600 1 23 24 5 64 9 18 45 23 22 2 454 35 451 52 32 2 18 68 1 692 1743 6040 65 9420 2887 6 1330\n1\t0 0 0 0 0 0 0 0 0 0 0 208 56 143 504 78 32 9 141 17 10 247 152 10 12 169 452 9 18 4223 2 342 4 1 1340 2126 4 523 8 24 117 107 32 2 1729 2129 195 192 20 667 9 6 28 4 1 1340 104 4 34 387 17 8 1309 167 254 29 43 3955 218 613 8502 50 2894 469 2 5983 33 367 27 1310 224 31 9137 1732 43 195 9 18 6 20 16 86 650 439 623 36 41 37 45 23 1595 127 104 8 54 229 354 23 5 6566 790 10 12 31 837 141 38 2 526 4 4284 35 182 65 1496 148 2641 7 1 714 42 2 6200 4499 267 11 97 81 229 617 107 1891 73 36 79 183 956 10 909 10 5 26 1963 3095 94 956 9 158 8 475 365 144 9 18 12 446 5 132 2 201 66 1680 1147 962 4745 7028 3 55 11 635 32 53 42 73 948 164 6 331 4 313 1411 523 1165 1450 47 4 1731 2 46 184\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 687 158 17 98 316 20 4938 3 309 28 4 1 914 2237 9 6 56 2 84 21 38 1408 81 536 1408 486 242 5 90 1 113 4 110 1 843 4438 171 61 13 12 6699 23 241 11 27 56 6 13 266 2 5804 11 56 6 31 1651 17 10 498 47 11 60 6 1 113 5804 5 186 474 4 1 161 8845 13 40 922 3 137 35 1348 2615 7 741 65 101 7614 17 162 53 255 33 24 5 566 5 1364 62 157 3 1629\n0\t162 5 87 15 1 148 9918 115 13 92 263 6 489 361 3 361 3 86 4 1 2998 6 2973 55 7 2 870 11 34 105 396 151 86 536 30 243 68 2008 385 15 43 1002 547 274 5853 1710 7976 22 1 4438 4 9 141 3 42 631 32 1 477 11 1 1132 61 1997 4 9 33 351 58 85 7 943 1102 66 24 237 52 5 87 15 68 15 119 41 129 5064 906 1 1376 4 283 2 167 170 282 7 2 1296 4 893 3 123 1375 9751 9 108 1 121 6 3 1 868 6 34 105 5103 480 31 240 41 3468 1 861 6 1530 3 51 22 43 167 7671 17 51 22 93 43 167 903 1102 712 363 52 3271 16 2 7490 18 68 2 2417 2331 7 95 6203 1 263 844 1 443 34 105 396 19 6972 3 34 105 5691 19 44 13 1601 8680 2 8457 42 20 1244 41 227 5 26 2 686 158 3 42 105 673 3 2288 5 216 14 9108 37 1 710 63 94\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74 8 54 36 5 134 75 84 476 10 6 3 519 3 5 134 1 225 145 2455 172 161 3 9 6 50 430 141 8 63 373 820 2 509 158 17 9 6 235 17 1466 10 6 36 2 1285 140 7989 86 8622 2694 289 140 9 3665 10 6 2 683 901 4 102 224 3 3 35 2031 2 7999 9371 988 4027 2 2670 255 5 147 887 5 90 10 1086 30 548 3129 521 27 762 35 6 2 345 164 1092 101 446 5 946 432 17 521 205 413 173 149 988 2 329 66 2439 7 4097 14 33 328 3 2711 19 1 3180 4 147 887 72 853 75 1360 10 705 33 173 70 988 2 282 318 33 889 2 886 29 2 6632 988 151 43 319 3 521 988 270 19 2 1153 1 570 681 269 22 683 2828 286 43 4 1 700 529 7 1 135 32 4428 3346 72 70 2 8622 3 519 1577 2868 793 19 500\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 997 79 30 4802 50 493 553 79 11 9 18 12 2 2010 12 27 6231 9 18 40 2 84 231 15 58 447 168 36 502 4452 123 31 313 329 7 6142 1 607 201 6 1111 14 2593 13 231 2 84 1591 9 21 40 10 513 1 1077 6 501 292 1 868 6 1463 169 1 7662 265 3738 1 18 125 1 1590 4 13 92 305 6 373 279 86 7 1548 6 84 69 180 107 10 169 2 156 268\n0\t4 3865 4648 55 90 13 92 18 792 15 8 338 218 258 1 19 827 944 207 3531 688 82 68 458 8 63 59 96 4 102 82 268 8 5884 49 6 7 1 750 4 1 366 30 2 8634 98 432 3 418 648 38 1892 15 550 3411 244 7936 5890 12 39 2 11 12 1609 695 4509 1 1 226 2234 106 1 9398 129 8935 4152 65 2 282 136 44 147 17 55 1 22 58 1484 16 1 1308 4 1 74 782 682 13 92 344 4 1 18 6 1011 1029 15 772 716 32 1 74 18 66 61 1546 41 9782 22 3 16 1632 7 782 18 4780 375 22 89 5 11 1 129 1796 6 9 12 2406 688 7 782 18 1 212 178 15 1796 457 1 2023 12 3 862 9 6 1 9060 4 1 212 135 1965 623 153 186 2 18 46 4506 9 12 2 6535 7 5198 3 115 13 858 78 14 10 79 5 1090 2 8740 18 37 7884 8 24 5 187 9 28 2 358 47 4 5579\n1\t263 922 61 1829 3 1 201 12 20 749 38 1 18 128 42 20 105 565 42 2 163 36 1 2 7448 265 3168 304 6467 877 4 447 3 1349 3332 57 5 26 2619 16 31 2 2068 4326 119 3 53 236 58 10 811 36 2 4 1 2808 81 22 101 643 204 15 2 669 36 81 61 101 643 30 31 2488 1351 7 1 2808 7 28 1257 799 1966 3019 65 31 2488 1351 3 276 29 10 444 93 372 438 2205 15 2 164 3 228 26 355 122 7 1 5390 22 105 13 252 6 93 46 3747 877 4 4683 447 7495 976 1349 276 2 163 138 2801 68 492 633 1349 128 276 3 43 1909 1 121 6 53 577 1 1966 6 39 885 9874 276 4661 17 6 4950 3 638 22 53 7 607 13 213 29 34 91 17 811 36 2 1015 4 1 2808 128 8 354 110 81 39 3219 9 73 1966 6 20 109 338 3 33 179 10 12 439 5 87 2 967 5 2972 172 94 10 12\n1\t1314 60 705 51 22 268 49 60 6 202 3 205 415 131 1 1212 11 308 12 3617 13 677 6 2 1829 4 893 13 2306 22 5213 26 2488 7009 6455 19 2 5194 1433 16 4777 4 560 9648 3455 19 514 3695 15 3928 13 6 7826 7 62 14 5637 666 1352 83 24 95 13 1830 15 413 22 13 811 36 95 4 44 1035 29 60 666 5278 23 173 70 2 164 5 5 1259 23 228 14 109 26 5 66 186 2 1238 95 13 499 6 631 11 153 64 44 280 7 551 4 976 362 7 1 21 60 2063 1310 17 5637 13 10 6 832 5 785 610 48 6 101 5672 205 415 771 29 1 166 85 3 1506 239 6874 13 677 6 2 678 733 15 1804 533 1 4692 5637 1 7 1 15 560 9648 3 1398 1 4532 341 51 22 97 4 8372 22 13 2595 28 272 5637 218 4 6 17 33 291 5 26 2161 5 186 8481 16 13 252 6 2 832 21 5 99 17 109 279 1\n0\t5 64 9 461 5056 396 213 28 4 1222 3 42 146 11 9 21 6 1067 2130 1107 51 56 213 78 11 63 367 38 37 646 90 9 1 21 12 28 4 1 124 2403 19 1 388 1858 9446 3 11 12 50 59 302 16 283 110 1 119 1026 2 658 4 374 11 875 516 7 2 29 1075 290 14 479 7 2 275 1036 5 357 4025 126 142 3 9 951 5 28 4 1 5153 117 107 7 2 1222 108 1 233 11 9 18 12 19 1 388 1858 1307 6 1213 3822 480 2 156 2637 1025 9 21 6 924 160 5 3881 41 4792 3 68 9 1 16 143 182 65 17 98 805 236 4310 124 11 22 78 364 2637 68 9 28 395 1897 35 310 32 1 16 1441 1 2582 4 1 18 6 1 113 177 38 194 14 292 1 410 56 339 474 364 35 1 6 30 9 10 6 243 109 1613 19 1 5012 9 6 2 5801 3 7541 1222 11 55 1222 596 76 87 109 5 6789\n0\t214 11 648 38 75 2253 3 257 28 12 5 26 237 52 837 68 2709 838 5 9 108 72 114 2108 5 90 10 34 1 111 5 1 182 136 2467 73 9 21 76 90 23 87 3230 13 872 145 128 1852 30 1 1610 673 1729 6653 1047 4 1 28 1610 635 3 75 791 1603 47 7 1 913 6 301 3985 3 3 805 144 114 9 1238 1643 1 144 114 1 635 1 61 242 5 564 694 7 2 4355 1000 16 126 5 564 5619 11 12 185 4 1 102 4 8255 113 1439 1218 8 481 241 9 18 165 2 2322 4228 8 88 1092 3954 1 2388 369 818 24 5 694 7 2 856 20 866 16 31 594 3 2 6869 10 247 3903 41 722 41 3879 41 2357 42 39 2 351 4 1597 269 11 23 88 26 712 83 1374 6736 2 6078 41 2730 42 52 68 9 391 4 3095 1 505 293 1456 3 263 22 2 4644 83 117 1351 9 5470 13 6608 196 28 1858 7716 1146 47 4 394\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8360 2 103 88 139 2 223 744 17 34 72 70 6 1011 591 32 1 119 6 28 4 137 606 1 2451 77 174 3 297 1714 593 805 318 72 22 1674 8920 257 2177 1437 45 51 61 117 2 994 8131 9337 6 152 501 17 42 254 372 577 32 2 372 886 433 7 1 7119 1 236 31 2099 3 51 6 1 4633 35 39 1936 3 2023 3 276 41 1010 9225 809 1029 15 679 4 3 58 770 145 28 4 137 35 39 40 5 64 2 18 5 1 714 1\n1\t1 613 2457 35 951 1 4734 3 100 1082 5 29 1034 629 5 26 7 783 395 783 5373 608 41 12 783 5373 1 783 14 1 206 35 191 1 5612 278 14 109 14 1 5555 516 1 1 3101 14 2 9041 6841 15 9844 534 3741 35 40 2 1528 774 1 769 14 1 7820 7 112 15 1 976 4959 1 5116 3974 14 11 46 976 4903 1 382 16 20 308 17 8636 4643 9454 87 33 209 32 3 106 87 33 3 82 1 4427 35 32 199 105 6574 14 2 603 112 16 6 1 531 903 7594 4779 35 204 29 225 6 1 2658 4 2 599 13 1833 1 119 7972 70 47 4 874 51 6 198 31 240 5444 41 299 3 668 604 5 8056 1 3930 1 644 80 6583 980 6 1 1699 30 17 1923 32 86 3755 2994 42 56 28 4 1 3556 668 34 4 1 759 204 22 5612 14 45 33 88 152 24 1179 77 2 1446 2114 5477 14 3651 5 1 1262 1189 7354 4 1 8712 9611\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 215 3804 6 28 4 50 7219 8 12 2284 5 64 75 2 967 54 216 1078 33 314 630 4 1 215 807 8 12 169 619 29 75 9 262 689 14 2 3066 22 100 14 53 14 1 1571 15 2 156 193 9 28 12 20 2 84 141 1 846 114 109 7 2202 1 250 1626 217 1706 32 1 74 28 7 3650 12 2 17 27 2012 5 26 2 8757 547 8 894 261 88 401 578 278 7 1 74 628 1013 23 652 7 13 1601 7 399 9 12 2 547 99 217 8 54 99 10 3456 13 150 12 303 15 102 48 653 5 783 217 75 114 5036 209 5 26 2 497 4547 39 24 5 597 11 5 5553\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 1 1340 391 4 8 24 117 1940 6809 8 1309 512 1415 1 74 277 268 8 219 110 8 354 10 5 4075 15 1 3199 11 45 33 173 3258 1 5 875 237 1695 29 25 113 49 1083 584 32 2 374 272 4 3972\n1\t2186 3 1859 2553 4 234 392 358 32 1 7889 4 7 5 1 182 4 1 392 7 13 3 5 1 1746 9 718 2334 3547 32 205 4251 4 1 2631 685 2 46 423 543 5 1 2251 29 1 166 85 3 1 5415 4 5154 22 20 78 216 40 71 256 77 1 685 2 5394 572 4 1 392 3 7 591 1 7118 402 3 1573 985 7 1 101 2 598 1160 718 9 185 251 1229 6 1281 19 17 6325 3 5131 7785 22 20 125 9 6 17 28 132 3320 4 2 251 4 132 13 3221 1822 798 6 1 3168 1 265 3 1 212 230 4 1 718 6 28 4 1593 3 36 2 21 9 251 844 1 545 7 58 894 4 1 3521 30 1 3 1 5045 285 1 2155 86 2031 5 2 2281 29 1 182 4 154 2541 66 2601 5 1 4 1 330 234 2251 94 133 34 1 545 6 303 15 31 8562 2258 38 1 392 3 8890 29 39 75 78 72 5 1 1144 4 1 817\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 4030 4 1530 11 6686 50 13 4956 1 4030 4 93 89 12 350 14 53 14 13 872 195 295 6 350 14 53 14 13 3053 907 295 213 452 1 847 3 34 11 293 363 61 483 53 17 1 18 13 92 67 4 9 18 12 59 928 16 2802 42 1067 20 888 16 1995 5 152 112 9 7890 13 724 51 61 97 716 928 16 5706 8 2398 374 365 1 13 5020 11 8 36 9 7890 13 150 192 301 1558 8537\n1\t1314 2 661 632 916 10 12 34 1 52 3811 11 1 251 6 7 1 4 632 7 4728 115 13 22 1242 16 1 25 304 4 7525 4183 333 4 7671 34 22 1 216 4 2 2438 8859 712 1 412 14 25 115 13 2595 226 1 410 88 365 14 86 1567 10 726 631 11 9 216 6 20 38 67 3579 17 243 31 4 1512 4 25 9230 1 1167 4 43 4 1 52 6368 4 1 7223 1745 59 2 1005 16 1 115 13 6 20 3597 30 4877 1567 5049 3 63 9457 29 95 272 5 31 2592 15 1 410 337 15 1 3347 4 25 1884 6805 14 25 568 1512 19 1 3144 1525 28 7 3726 136 1 410 190 24 71 59 602 7 129 7015 10 1640 1 833 204 6 423 1 2024 6317 115 13 499 12 93 1640 11 58 3687 95 4693 41 4 3556 538 68 9 215 28 7 63 87 2028 5 9 933 1 410 12 2091 34 1 52 4 956 7 86 1571 3999 3 3437 77 29 1\n0\t1 3306 4 31 2852 7 11 572 6 848 81 3 6 47 5 564 550 669 76 20 55 798 1 330 431 16 9 1679 1295 3728 3 62 73 10 12 55 52 509 68 9 13 252 804 6 240 3 37 1 67 130 26 53 17 94 283 194 8 12 3519 73 51 61 105 97 9941 7 1 67 14 109 14 11 12 620 11 114 162 5 352 1 471 94 1 226 1146 8 12 303 15 52 1389 68 13 150 713 16 535 2584 5 70 77 9 5451 251 17 10 12 39 105 664 5 345 45 9 12 2 141 8 54 24 1901 11 81 130 947 16 1 18 5 209 47 19 2240 41 6522 8 54 20 55 354 11 10 26 1150 7 116 388 5504 245 340 11 9 6 19 2 2240 9669 8 54 134 45 23 24 20 107 10 6372 98 328 10 16 28 4514 45 23 87 20 36 10 11 8007 98 23 76 20 36 1 576 251 779 1 958 4449 220 33 34 1555 1 166 509\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 56 381 1 4704 2 8 54 24 1274 10 2 394 45 33 57 57 3 9186 51 247 55 2 798 4 106 33 22 1163 41 144 33 143 9914 7 1 33 61 46 986 120 3 8 96 10 12 2 2082 20 5 187 31 2651 38 62 551 4 13 3514 8 12 1096 11 2183 1 251 6259 8 57 71 288 16 767 16 172 3 48 2 2421 5 26 446 5 2581 1 212 251 669 190 24 1155 2 156 6624\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 81 118 776 6076 14 1 206 4 97 53 341 1045 104 7 3853 17 223 183 11 27 12 47 5103 4023 7 25 2020 9001 1 67 6 2 1048 5925 4493 162 147 41 6076 1304 27 63 90 10 138 30 3301 7 2 251 4 1153 4677 66 378 4 257 250 129 3 25 4820 22 39 314 14 2 111 5 1564 890 1 961 994 1 1106 12 9349 1 494 3244 5 1 363 4 1 2518 471 48 56 89 1 18 29 29 225 53 12 43 1442 1014 12 491 14 1 3 1 61 46 53 14 530 896 763 861 1583 29 225 43 157 5 1 158 3244 5 90 6076 176 29 225 2262 14 2 13 13 6463 5005 4582 1889 5005 5005 5005\n1\t1449 1515 864 5 10 11 271 576 1 2904 669 560 45 33 99 9 19 2279 91 8091 130 26 1 398 582 16 261 35 40 20 107 5313 42 488 2884 7351 7 331 5628 1503 3 5148 30 1 383 5808 3 331 3312 6 4 1 232 4 1011 534 18 1449 23 83 64 46 6281 7351 40 198 57 2 3775 538 5 122 16 79 15 11 568 2333 3814 516 25 671 4304 7 947 5 554 14 463 1817 41 14 205 2604 3 7351 24 1 2896 1473 516 1 671 5 1622 142 62 360 1883 7051 7 797 7008 7 233 1 212 21 40 2 797 2157 3 4138 42 56 2 885 158 256 371 30 6805 3 1300 30 34 7843 4758 8 56 481 830 75 9 165 3 10 276 167 4056 5 503 30 132 2 17 8 1479 851 124 36 9 9720 140 1 2090 154 308 7 7 2 84 744 15 34 4 86 2437 7671 4138 623 3 1300 10 1523 79 4 28 4 50 430 124 4 34 207 2 9664 7 50\n1\t9036 814 4 611 8 57 3878 11 10 76 26 1244 3 46 53 1913 8 100 455 4 9 21 1448 32 1 938 8 159 9625 8 367 5 512 2521 2176 255 1 324 4 50 303 8 12 2401 17 8 12 93 1328 540 73 1 102 104 22 46 50 303 2749 12 2 294 3142 9002 18 3 9 28 6 2 4685 9002 18 1491 73 9 6 722 17 4685 29 11 84 356 4 3842 11 876 2187 5 116 8 12 260 73 7 8684 2652 2668 7808 473 2 103 222 1906 30 372 31 9532 454 3 27 114 10 15 2 84 356 4 4084 737 46 304 114 610 1 166 1689 17 15 46 8084 1 67 6 109 428 3 42 46 16 503 773 380 28 4 1 700 3540 185 4 1 15 5138 4642 7 2828 1 3 176 29 44 60 57 1 80 304 671 4 616 220 6268 2395 3 444 93 2 306 4045 14 107 19 97 82 502 64 9 628 23 495 2580 1027 3 2 46 514 329 30 4497 7290\n0\t9 321 23 5 118 38 450 2054 1 102 148 1063 118 34 38 51 2639 4 3846 37 33 842 37 123 1 1754 33 83 55 96 38 129 3612 571 16 242 5 5454 51 67 155 5 13 92 119 6 102 559 414 7 2 106 28 4 126 7321 2 7217 3 51 22 38 2290 82 81 536 1057 854 1 344 4 1 67 6 2971 3 2317 24 23 107 430 2483 1 330 67 15 988 6 38 2 756 846 35 173 149 2 53 67 5 90 2 249 18 2354 37 27 2182 461 195 8968 1 756 846 16 2 77 5 761 171 350 25 3575 3 186 295 1 267 3 23 24 9 682 13 92 171 5764 6 7 1 18 16 300 394 269 3 128 380 1 113 278 7 1 108 60 6 128 9055 17 10 54 352 45 60 54 152 376 7 2 18 378 4 1506 253 14 16 307 2684 8 83 96 10 12 1 171 2818 73 33 24 91 13 99 1 2377 141 17 875 295 32 9 2803\n1\t816 2 1246 29 4690 17 355 2257 6 1184 38 59 27 88 1622 25 522 47 4 1 3 64 110 4414 2604 2448 1 21 35 63 2303 9 21 295 32 218 35 63 70 307 202 2357 25 1400 6 7137 7 1 5945 776 6 93 892 14 2 265 1946 35 432 31 9098 4 49 27 4283 2 3956 4 1 13 743 298 416 7172 11 7698 34 3508 4 8 336 110 42 36 275 39 3908 9029 90 157 299 16 1 21 56 6 5555 1 6859 15 34 42 45 33 22 586 1041 33 24 31 1617 5 3494 147 1607 15 9 13 92 393 167 78 4987 65 1 21 14 2 3 44 9966 186 125 1 298 416 3 28 3144 1433 8493 5 26 3314 8 143 175 1 1433 5 20 4877 7 95 111 7353 9 21 39 987 2324 2 4927 30 2 84 891 1077 1738 43 4 1 6859 113 4501 9 21 2378 2 545 5 1942 2 85 7 157 49 392 143 3 81 39 57 2 53 290 8 497 61 1\n1\t2284 3887 7 1 296 368 1146 198 2 273 2398 7 914 164 871 35 128 1834 2 3045 1761 1938 17 4151 27 181 5 24 9867 52 77 127 426 4 1654 5 1042 871 3 14 132 300 181 5 26 52 9867 7 25 6755 13 4052 40 5 2725 19 43 729 204 14 3398 524 7135 7646 28 132 7135 5293 5 2 156 3302 447 7 28 2265 4 1 3119 35 385 15 25 147 191 186 5 25 2045 1723 77 1 4 2 170 287 136 242 5 5062 411 16 2 524 27 1200 19 3436 13 252 6 2 732 77 1 5151 601 4 19 1097 373 20 16 1 41 137 288 16 822 3817 3 14 132 42 2 167 4234 1683 158 3 20 30 42 1654 5 305 3550 1 59 177 56 3769 10 155 6 1 2235 314 884 3005 443 1102 314 7 1 52 1005 529 11 176 2 222 2390 94 2 4222 17 42 128 43 4 1 1097 180 107 8142 1356 7619 355 5151 3 52 125 1 1590 14 10 271 778 7568\n1\t136 72 87 70 4912 4 48 11 228 176 36 5224 9 12 248 5 1 272 106 1181 32 656 127 415 771 3 771 3 7495 650 38 1 2747 3 10 153 90 2 212 163 4 2509 571 5 450 33 414 7 1409 4532 403 62 1255 11 160 5 1 6192 516 50 3 28 7027 784 5 26 62 2658 4 45 8 542 50 671 3 1876 5 184 672 10 1523 79 46 78 4 50 221 518 35 12 32 11 2265 4 1 913 3 57 11 5048 28 178 40 103 5637 1472 19 9149 9294 23 63 64 34 1 4532 8920 34 1 85 37 1 334 191 24 71 1 1009 6127 5 127 102 415 14 3 420 24 5 134 7 9 524 10 6 39 2 16 47 4 62 17 9 21 6 20 197 86 529 106 23 323 230 146 16 450 9 6 3757 546 5840 3279 3 17 8 339 582 133 308 8 7577 9 6 20 50 574 4 739 17 8 214 10 5 26 595 9331 10 495 26 16 1603 1024\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 3578 102 3299 4 9 215 251 12 364 68 1 1967 3299 6565 8486 5 86 277 1022 386 157 300 45 1 8629 12 1789 94 1 74 1022 10 2893 8362 2 1280 13 32 458 1 74 1022 12 323 5296 1269 15 1016 523 10 12 1 74 313 57 1 260 4534 69 857 3 37 1069 2 267 38 2 2892 12 215 5 3 44 1658 19 1 366 94 1925 326 94 326 16 1 13 743 163 4 188 83 90 356 5 437 36 75 9 983 3 174 4 2550 69 3860 100 45 59 1 74 3299 4 1 1326 4845 3 61 612 19 2388 786 261 47\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 8 12 2 3474 8 400 336 205 1037 217 3351 502 1 82 1925 9980 1486 12 19 3 220 10 12 29 225 715 172 220 8 226 159 194 8 636 5 4317 1107 3 8 336 10 34 125 6259 9 21 6 128 211 94 34 137 982 6 1824 17 9 28 6126 39 1 4272 1432 43 4 1 22 2 222 5174 17 3255 9 389 21 6 978 7 2 797 699 1069 10 1008 1 4 469 117 7 2 1540 400 36 3772 9980 18 111\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 219 9 18 154 680 8 155 7 1 5662 49 10 310 47 19 8411 10 12 50 3213 5 66 40 4574 79 341 1037 117 4836 8 12 128 46 2535 3 1 18 89 2 184 1418 19 437 10 12 84 5 64 2 18 38 82 170 624 1758 1095 242 5 1088 912 33 405 5 1718 3 253 43 91 4331 14 109 14 53 3449 8 12 30 5984 1 84 6343 33 963 165 5 3 1 3251 14 275 101 3172 30 2 625 532 14 322 8 88 56 3658 15 127 624 3 62 2058 42 722 127 120 291 202 52 148 5 79 68\n1\t937 219 316 3 179 8 228 14 109 209 3 787 65 2 8 74 159 9 260 94 8 159 1 251 3177 4 8489 1394 101 2 184 325 487 4 1 131 303 79 1732 235 8 88 4 1 289 4053 8 143 118 48 5 8 114 209 47 15 2 2618 193 8 191 13 92 67 418 142 19 1849 4 3 72 22 1694 15 2 2806 4 240 495 187 105 78 295 17 51 6 2 1005 2592 11 1 448 4 1 67 17 8 1379 23 99 2938 13 6 28 898 4 31 353 27 1789 142 2 170 2453 4 1 7 8489 214 25 121 1780 19 3 8 88 241 11 27 6 1 435 4 962 32 13 4804 1994 2589 25 280 293 1367 10 12 53 5 64 6349 1137 4 83 694 224 3 99 15 1 7296 4 10 101 36 8489 73 1 67 427 6 167 826 890 3 261 63 99 246 5 24 64 13 252 131 6 2 109 428 589 16 137 35 36 51 589 15 2 222 4 2 1045\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3458 188 1239 1 633 466 6 105 1612 5 26 8090 195 651 8520 9365 1 28 35 262 7 1 141 6 172 161 3 109 42 198 53 5 753 127 4427 268 49 283 4261 36 2938 13 92 18 6 28 4 1 80 4235 89 7 1 632 274 3 82 8527 22 34 52 1 18 57 2 900 315 2318 7 110 10 811 36 2 203 18 17 1391 42 20 17 59 6141 13 150 57 1 839 4 1 330 263 4 1427 1596 3 8 179 11 263 12 2 547 618 49 8 159 1 141 8 12 945 7 283 1 18 264 32 1 1252 36 7 2 4693 4146 3 1295 52 709 2237 245 10 590 47 5 26 138 3370 7 1422 4 101 9760 13 614 23 24 107 1 2207 4 1 23 76 1682 1 5390 7 9 18 5 1 2281 6 36 2 4761 4 9658 9052 1076 15 1 2412 42 373 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2755 6 1366 77 2 2483 562 4 1398 3 3872 49 27 432 602 15 2 5925 7 9 1260 4 2 3854 9304 2182 2 3762 1190 17 1 263 6 5128 9640 2 2516 4497 6 1321 14 1 3 6 14 1 4293 4 25 5743 6 1904 14 2 2015 40 2 346 1538 66 123 20 1959 122 5 87 78 15 25 1021 1223 3 2873 47 1 1502 1440 94 31 240 1 21 224 3 123 20 56 1917 19 86 2319 17 9304 6 198 279 2 5786\n0\t29 1 182 2 53 665 4 1 21 20 152 781 2357 220 1 21 6 38 2 891 1301 236 169 2 891 1077 15 43 323 2680 586 891 759 314 19 110 8 192 1140 891 596 17 5 50 6594 9 930 6 39 4271 42 20 3903 236 58 148 1190 217 1 551 4 813 217 840 6 39 49 1 344 4 1 21 6 37 3133 13 3371 2 377 445 4 38 1 6 109 89 15 5057 397 5308 10 276 772 5 26 273 17 20 14 772 14 97 402 445 203 124 5786 383 7 2 334 404 7 2647 1 121 6 28 4 1 124 6472 985 14 42 1227 167 53 34 8 467 6025 6 160 5 1364 31 918 17 10 3195 350 3133 13 92 6 2 3484 2703 541 1886 1222 11 40 28 4 1 5118 1298 5536 117 217 2 1950 551 4 3342 2565 2504 1349 217 434 8 467 45 2 1222 1336 165 95 447 41 840 98 835 1 137 22 1 59 188 11 1 855 1222 6 279 133 3410 3294\n1\t493 30 1 442 4 172 406 33 24 2260 243 3 24 214 1175 5 4635 205 62 2447 77 28 4894 285 174 33 3196 2 147 493 3 25 9984 975 35 390 185 4 62 1301 4 2567 183 223 2662 316 3723 3 1 526 621 6584 473 5 6251 3 62 5029 22 34 590 9473 1781 3 2635 43 136 869 3 1246 186 2349 2432 2506 128 2349 22 2722 3 486 22 2681 115 13 872 23 76 100 64 2 52 304 13 252 18 6 2 3800 901 4 4 7015 3 2 968 11 20 55 469 63 359 1251 16 105 2043 2968 583 5961 1794 3 238 15 1 425 201 3 860 5 932 1 80 866 18 4 1 387 3 84 16 80 7645 10 1 3275 3 1275 52 4468 19 1 731 1353 72 63 34 1999 5 132 14 3 3499 7 4175 162 88 815 8 1454 24 100 107 235 169 36 194 3 8 83 2172 8 117 76 3456 13 499 6197 5 1 8115 4606 7 97 1175 3 6 2 191 64 16 513\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 520 389 938 4408 6 248 7 2 46 3 111 11 55 537 63 728 5084 10 97 4 1 3690 11 61 160 200 7 137 663 136 447 6 20 5598 1 185 38 705 9 6 896 1 74 368 397 5 117 333 1 736 7 1 13 499 6 1257 75 1 1139 129 6 620 5329 7 1 3660 7 2 3031 1139 129 111 15 58 1008 14 12 1 111 4 1 1393 97 4 1 6697 3267 1049 44 197 5089 95 1008 1497 2825 12 2 222 4 2 4288 3 114 9 15 97 4 1 6697 3267 66 3021 956 5 149 2350 13 677 6 58 798 29 1 477 41 182 4 1 21 14 5 35 1 633 6220 705 7 698 51 22 58 1079 5216 82 68 137 6557 3 13 252 462 6 670 1258 5 17 16 137 35 22 10 63 26 214 47 51 7 1 9 6 28 4 137 11 76 390 3944 254 5 149 14 972 386 915 1008 6982 77\n0\t358 3 3395 9798 5897 895 337 5523 884 94 266 1 4 1 124 462 3 54 1110 16 1 4384 9177 895 57 71 7 55 1534 220 601 266 1 1010 42 229 1551 5 134 11 80 4 1 201 61 29 1 272 7 62 5834 106 33 54 26 3023 5 216 19 202 235 39 5 946 1 11 4403 69 571 300 170 7825 14 42 243 1083 193 11 292 27 1066 2546 5 9 141 9 583 353 143 216 316 94 1 5409 1916 300 1 21 12 94 399 27 247 11 91 7 9 135 16 2 583 1651 244 167 53 69 58 138 41 527 68 95 4 25 52 2830 13 858 1505 8604 1 363 22 5 134 1 2532 1 593 6 3652 1 523 631 3 1 121 162 5 787 408 1395 51 22 877 4 527 124 47 51 1024 3 16 261 457 1 717 4 38 9 21 76 58 894 26 169 4809 80 1995 76 229 175 5 87 2 634 4 62 221 136 10 6 19 1024 3 8 511 1844 126 28\n1\t62 1052 408 774 1 13 3 1 413 6 2 4812 17 6577 391 4 1055 612 7 993 2 466 353 35 3455 7 234 392 1 1700 4 1 67 181 5 26 11 1838 22 39 14 2262 4 1496 14 2025 1939 5 1564 9 272 408 7 2 3705 7234 2997 7215 7859 55 1 2854 3250 4135 1 413 4 101 29 28 7499 13 2663 7 1 1 1145 4698 9 21 12 1721 2765 4 140 54 20 24 55 1 3843 369 818 1 2658 4 1 9355 69 2768 7 95 524 123 20 6567 69 359 7 438 11 9 21 6 370 19 2 2101 717 709 13 92 21 6 2 103 292 1 22 1476 2 222 5840 3 2068 51 22 375 168 66 1017 105 78 85 781 199 62 1164 7847 1 263 6 1244 3 30 2001 5049 1 6 345 5 5739 17 16 86 387 9 644 293 363 3 61 169 452 1 861 6 93 1227 46 501 3 1 121 6 78 138 68 28 228 4749 8 12 591 1475 15 2356 8169 3 2393\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 2 1529 1269 3 548 18 11 8 3968 100 7131 4 133 4961 97 1287 1 1084 12 2313 7 65 1 170 15 1 972 807 51 22 137 4 199 47 204 35 56 87 1116 53 171 3 31 1244 67 9420 14 16 60 6 304 3 2 4846 5 95 232 4 397 7 66 60 2682 8 198 90 2 272 5 64 7 34 44 2263 60 6 2 1016 651 3 2 1935 5 99 14 239 5495 4 44 129 255 5 500 8 63 59 26 9050 49 8 64 132 31 1485 572 16 80 4 1 1729 1482 89 52 937 551 53 647 53 3645 3 53 1014 1 18 1228 693 20 35 551 3 3694 75 360 5 64 161 4148 36 3024 3 8 54 36 5 64 9 18 1364 1 2520 10 7767 1479 23 316 16 2 3439 366 4 2815 8 1 4342 1392 7392 3 34 137 35 114 132 2 514 1614\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2634 6 332 162 5 5611 9 108 33 472 2 3526 441 4405 194 194 110 10 40 91 494 955 3193 7 2 8208 3 4981 2876 13 858 955 14 10 1082 14 4554 10 1082 55 527 14 35 88 24 71 1 3080 2967 16 476 48 717 48 796 13 130 90 2 18 38 75 3 144 33 89 9 108 11 8 54 946 5 8790 13 3440 107 3949 4 91 484 3 9 4031 15 35 1310 32 3 1104 50 4331 14 1 277 80 91 104 180 117 575 1603 2920 15 10 130 26 929 5 90 3749 15 16 34 13 150 3953 1038 99 9 18 3 3471 31 9787 3919 69 75 88 23 186 9 3 90 10 8 173 96 4 28\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 1383 370 243 4742 19 1201 6373 14 109 14 25 821 14 1033 38 1 598 1536 7 4660 7 1 4837 2961 1510 52 6114 15 25 68 27 114 7 34 4 25 104 256 1413 274 7 9 19 1 6759 4 277 598 3 62 2020 1793 35 15 2 1280 4 4854 4694 404 1 9091 9891 2961 4 218 226 9091 2359 7346 4 218 3 9091 3190 4 218 5388 22 2 4188 4 3 7112 603 172 4 22 38 5 390 622 73 2827 5 2459 3 2645 1 6007 4552 4191 9891 3 8778 65 5 49 62 639 126 155 77 238 15 9691 5356 4 218 4365 9891 3 1358 37 11 27 481 126 3 40 5 6163 550 350 4 1 299 204 6 133 1 242 5 239 82 197 2449 206 690 5741 1 1343 4 1406 7 1751 541 3 4943 14 257 2641 15 31 1536 4 2453 4745 9597 2071 31 918 7927 16 25 1485 315 217 482\n0\t5 836 1797 145 7876 38 661 45 33 22 1979 530 531 42 240 5 64 1 7737 189 1 576 3 1124 740 2 1100 471 831 9 18 12 364 4 2 661 3 52 4 2 2133 1615 1 1260 4 1 120 384 4605 3 531 2012 5 26 2069 3182 10 229 143 352 11 1 171 1121 46 53 1497 80 453 61 3605 125 1 5199 66 8 2309 12 463 664 5 91 593 41 31 991 5 90 65 16 2 91 1471 8 114 20 539 308 140 47 1 4 1 135 34 4 1 716 61 2326 5 20 37 1955 795 11 22 273 5 1621 62 14 85 271 6210 1581 1 59 3501 4 1 21 12 1 567 980 7 66 1 482 7476 6 19 25 111 5 889 17 55 98 1 868 12 2 345 6772 4 1954 916 896 420 24 5 134 11 1 4 1 562 77 2 5955 12 1319 10 12 15 47 2 894 1 402 272 4 1 803 13 1118 2 4644 83 64 9 108 94 86 2582 8 12 1975\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 442 6 395 846 3 130 26 3746 295 7 1750 1847 36 9 6 100 89 702 9 28 6 7 2 1112 15 43 4 1 80 489 104 4 34 290 519 104 22 91 7 2 111 11 479 152 426 4 452 20 9 461 9 12 37 91 8 165 2556 2 3582 394 349 161 88 24 209 65 15 2 138 1471 48 2 9616 34 1 171 61 301 4737 5 216 29 399 1 1983 12 1092 1 1102 4 168 61 301 3985 3 1977 1 103 222 4 67 51 1220 42 36 27 39 1352 175 9 5 780 3 9 5 3659 17 8 83 474 75 72 165 1057 39 1743 10 3 256 10 1107 145 160 155 5 50 1625 5 1351 50 45 261 2307 16 503 145 20 1152 19 23 1034 116 442 705 1152 19\n0\t7689 66 3029 44 975 3 2 4750 968 4 358 3877 7194 5 4154 1 2295 1 558 4 184 2977 4324 6 93 193 80 4 25 216 255 30 1 111 4 1 6904 66 27 2506 22 14 1087 1 148 8 2510 13 6 1 59 28 7 1 21 11 40 95 232 4 1079 516 550 244 7 1 21 16 38 1194 1507 3 350 4 11 6 122 1 250 282 16 1524 58 1649 2560 8 495 55 1346 1 2526 73 169 3478 8 173 90 10 47 5450 17 183 1 570 1146 1181 1979 5 2 535 41 843 938 5175 4 297 7 1 135 4105 33 88 24 2183 11 98 1 570 178 3 10 54 24 71 1 166 1380 15 1 2146 593 3 2616 13 1601 7 399 875 295 32 9 135 8 165 10 73 8 112 91 104 3 8 112 492 8 56 88 24 314 11 5298 43 269 19 146 422 3 24 71 52 2102 372 11 562 15 2 6407 106 23 29 116 874 11 16 5298 269 54 26 78 52\n1\t399 2 112 471 3 10 198 384 678 5 79 11 2 112 67 130 182 15 2 910 938 566 5636 13 3562 7 1 4559 324 9 6 58 1534 1943 1 161 324 792 142 15 2 568 980 66 6 1 147 393 980 7 1 4559 2939 1 567 980 6 2458 200 25 429 3 4851 5 26 2505 3 1875 25 435 6 13 7784 24 93 71 41 7 1 4559 757 3 1 67 151 2 163 52 356 49 23 99 110 1 2216 6 93 138 3 790 10 39 557 828 10 811 52 36 2 112 67 3 153 597 23 2227 1389 38 144 10 741 37 3 14 1 1998 324 13 150 1379 307 35 6 2 2433 41 39 908 2413 3672 5 70 2 998 4 1 4559 324 3 99 1 18 1 111 10 12 1868 29 225 207 75 8 96 10 12 144 422 54 33 90 10 3 43 4 1 49 8 12 248 133 194 8 343 36 8 57 219 2 301 147 2413 3672 18 292 80 4 1 1102 61 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 28 4 50 34 85 430 484 3856 8 173 96 4 174 18 11 5961 37 97 327 18 3016 36 9 28 2788 9 739 40 10 8011 1357 8095 1145 5742 53 2606 91 3 55 43 1151 9726 55 31 1438 19 1 189 1 3 300 113 4 399 23 83 24 5 26 7 5 8451 6549 3 335 1 18 36 23 87 15 43 4 82 104 669 83 118 38 1259 17 8 99 104 5 186 2 1173 32 9 6 39 2 837 18 11 307 76 2102 37 87 725 2 2454 3 139 751 110 1 59 1367 6 1 296 8 214 5 26 39 908 3182 17 34 6 20 8257 1 215 873 324 6 19 1 274 3 10 35 3457 45 23 173 365 3340 45 23 63 284 29 2 952 98 99 1 215 873 5486 15 706 23 495 2580 2420\n0\t18 16 86 2390 4501 3 120 17 11 12 1 3 2 163 4 81 338 9 426 4 2508 4157 114 46 109 7 1 503 8 338 1 3 15 1 84 30 1 6098 12 47 3 9 147 691 69 66 8 63 820 69 12 110 123 11 90 9 2 2256 1973 3911 10 39 151 28 8 143 474 16 46 13 5020 1 53 1249 53 206 3 298 6287 9 21 29 1 1009 6139 3 15 437 8 130 24 338 10 2425 101 2 512 3 207 2 327 185 4 9 471 8 192 20 1 3398 574 3 2 327 569 3 327 81 253 79 230 53 981 489 6992 98 144 339 8 4329 15 9 3124 185 4 10 93 12 1 7407 8 83 474 16 1 691 11 3546 6098 1206 19 1250 17 69 58 69 1 177 56 590 79 142 48 11 51 12 58 58 39 2 288 1138 5 90 10 176 11 111 3 10 590 79 202 32 1 3587 868 28 272 16 2001 2694 106 33 8855 19 80 4 1 5623\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3287 1244 3 496 5911 3842 829 7 3695 7 1528 278 14 1 7 2 112 8806 6 311 1528 45 23 24 1 5 64 9 2313 21 186 10\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 360 158 1029 15 84 7615 278 3 1244 3251 48 56 1 158 245 6 11 4 5903 2880 1 67 6 30 1 1401 4 2123 879 329 7 2 234 106 11 57 6565 80 4 34 10 12 274 7 2 234 11 58 1534 246 71 3867 1251 30 1 477 4 234 392 6949 7 698 1 21 6 1092 2 267 29 34 45 23 1498 1 4 686 168 5 1 709 1192 286 211 10 5 5483 3061 4 2367 1791 3 99 25 4050 14 27 11 44 708 61 2 1884 3599 7352 3 42 722 3 747 34 29 3633 2 1884 4776 3 28 4 1 764 700 412 1545 117\n0\t6007 5 1 5305 1 1945 5 87 3 1745 15 196 689 17 162 4216 115 13 3 379 1621 1 635 7 1 1828 8618 1621 62 1848 196 25 7003 757 7 1 1 914 886 40 1 766 33 205 7 1 543 4 34 4 490 1 489 1387 5 7 1 74 6 69 69 31 49 1 914 886 12 5715 172 13 659 2924 4 34 127 1348 1180 5 70 2 67 19 1 1250 58 4612 189 4604 58 32 4759 5 489 2895 39 223 673 168 11 139 1581 5 474 38 69 3 33 57 1678 5 139 15 11 1329 69 1 1438 635 7 1 4383 4 5305 35 228 26 3746 65 73 444 2 17 1453 44 210 2818 6 444 165 84 5810 53 115 13 659 2179 58 994 39 2 103 1610 7 2 534 15 1 4044 1356 3 1 478 1584 199 1107 23 321 52 68 2 156 3 1490 6107 5 90 2 682 13 92 397 1353 61 452 327 4448 53 1 29 2532 563 48 27 12 13 150 969 110 345 437\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 43 282 440 5 5789 7 1 184 4 30 1678 15 44 6442 60 196 5 1 401 30 4304 3 60 130 24 71 1 18 4304 3 4451 5 9734 93 1 312 4 2 1709 161 6 9034 10 270 97 97 172 5 70 452 139 155 5 1\n1\t119 6 3373 2831 3847 17 10 123 42 329 109 227 1167 1 1324 448 826 890 77 2 1909 7887 189 1 102 914 807 51 6 2 4389 4049 19 75 1 11 7997 1 282 310 77 5 62 2058 3 1661 10 105 5271 289 52 3151 145 7614 121 6 48 23 54 504 32 2 58 445 6865 135 42 20 610 1370 16 1 6594 17 42 20 610 53 6062 13 92 1324 250 4137 1739 1 882 3 840 1920 8 617 1505 11 227 22 1 8966 248 30 809 216 7 1749 3107 3 1759 16 205 104 3 6 109 1 14 33 22 404 7 176 7776 197 1 4 1983 6475 22 2 3999 4 3569 3 2050 1477 7 62 9261 446 5 8570 943 546 4 1 823 77 797 132 14 4701 3 37 19 3 37 778 193 23 63 728 3082 1 4 1 158 22 13 6 1 6175 3697 1795 65 15 34 248 7 402 445 3 1988 42 31 7925 548 21 11 661 293 363 3 1501 11 1 6865 870 6 128 2191 3\n0\t1285 5 54 24 8839 47 1 445 16 5183 1572 543 10 9 212 21 12 2 763 4 3619 7 1 3498 8660 3619 19 1 601 4 1 3619 457 1 3619 7 1 1828 3619 7 1 3619 29 2727 3619 204 3 3619 939 10 202 726 3 54 24 45 60 57 20 71 1 113 353 7 1 1440 5346 3 2356 24 5 90 2 536 17 83 787 2 102 1981 263 3 473 10 77 31 1772 183 523 174 1106 38 4237 99 31 431 41 102 4 1272 41 146 3 70 2 103 5157 34 4 1 201 571 1 845 1505 3 2 342 4 508 61 4596 7 62 74 3 226 135 896 51 6 31 1635 30 2356 14 27 6 7 34 25 703 39 36 4906 28 177 1 21 57 160 16 10 6 11 1 9946 384 5 24 2 19 7451 322 15 34 195 7366 8 128 354 1 21 16 1 203 6931 39 5 64 9 170 651 7 1 85 4 44 895 669 11 1469 40 3573 411 14 2 1518 279 2034\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 332 609 880 1 330 1022 1647 106 1 74 15 78 5251 1216 7 6914 45 20 34 767 3 948 8164 28 11 89 79 96 3 96 702 42 323 491 75 1 846 63 209 47 15 34 1 9833 3 5004 34 1 120 371 3 4635 34 127 824 5 90 1 486 4 1 120 7 1 131 37 100 2197 5 3 8 192 288 890 5 1 147 4207 3037 52 4434 76 26 3673 3 29 1 166 387 52 948 5 26 53 5808 4 201 105 16 9 983 1179 1 120 5578 56 173 947 5 475 2033 1 3037 34 1 4202 495 2600 1 1905\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 4 104 123 2 454 139 5 64 127 663 11 597 126 1437 48 653 5 62 3077 5 764 105 9 18 213 36 656 10 6 2 67 38 148 81 11 22 519 2 2053 4 205 1904 3 13 13 2078 227 129 1273 217 43 119 456 303 7 1 13 13 902 5 96 38 1 4331 33 24 89 16 53 41 91 7 62 221 9697 13 4956 1171 1133 7175 3150 3 13 43 53 2466\n1\t194 17 10 6 169 548 1543 43 258 211 13 8564 4919 3 1010 525 5 1 2849 4 31 35 40 71 9695 43 4 1 80 6530 2752 4 2539 30 2015 5330 11 6546 7 28 111 41 3152 2410 62 2058 33 963 149 47 11 27 6 1539 31 94 1 156 1697 5570 16 2100 11 88 20 946 960 257 2641 191 398 352 886 3831 35 191 946 2 3350 11 6 660 44 907 41 422 44 7104 1892 76 80 373 26 404 1294 1 178 7 66 4919 3 429 22 292 1 21 40 31 2040 749 2526 1 1511 6 747 3 13 453 30 3924 9826 3 2574 794 3 626 3169 14 1 2741 1518 6432 1607 229 3082 122 1163 14 7 1599 3466 14 886 3831 1585 14 886 3 9342 14 395 168 1295 44 3 4919 22 2 8 187 10 2 47 50 59 3731 6 11 51 247 227 3859 669 555 33 54 24 1253 7 1 178 29 1 182 4 1 386 67 106 27 380 1 3530 4 1 102 28 4 66 6308\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 84 66 72 637 51 6 128 78 72 87 20 118 38 11 66 12 2667 30 1 362 7 154 2937 51 6 78 3646 1 4 1311 105 1264 51 22 137 35 2979 199 4 20 5664 16 48 33 2979 6 1 7 9 18 404 1786 1 226 3938 1786 31 2020 6 2035 16 58 1649 2560 49 137 1968 22 33 2469 1414 364 33 1 639 4 2508 638 4713 6010 266 1 7370 6844 5293 5 4376 1 292 2590 30 1512 32 25 221 2113 3 5095 30 661 4432 340 5 122 30 31 3098 654 1469 1072 6160 4713 5333 5 4376 1 14 1800 3 2091 20 915 5 1446 8097 1 18 6 15 534 1512 4 182 234 3 4 2 958 1444 3 315 589 3 1052 22 48 380 9 21 42 4140 3 2091 6 20 16 1 7 233 1 2762 63 226 16 172 7 1 5190 4 1438 18 53 1414 2331 4577\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 360 709 1651 6 2 147 887 446 5 70 1208 2 4 647 205 976 3 5 131 1 1213 4 31 7498 526 242 5 5880 7 31 1928 5778 27 6 1375 245 27 153 3791 96 41 5077 41 9572 6655 35 414 7 41 154 178 7 66 27 15 25 3557 14 193 3719 7 32 2 1185 397 4 601 8999 136 1 82 559 61 403 2 207 59 28 465 15 9 1772 3722 4104 9 28 184 290 907 6587 3 82 265 16 7910 815 1006 8578 35 1 9862 115 13 3382\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 1023 15 80 4 1 82 4797 2 351 4 3 5044 1425 13 58 1399 6 279 1 3618 6 12 428 778 1 59 3501 32 50 6 14 9 1523 4 161 268 15 10 6 254 5 1431 1 453 4 1 1041 220 80 4 126 83 55 291 5 24 2 53 85 285 397 3 39 7454 62 443 6 1530 119 6 6985 8 96 23 54 26 3238 55 45 23 5466 9 15 679 4 13 32 9 8 34 1 387 3307 38 75 2 263 36 9 88 55 26 1050 16 397 3 3626 16 1 3158 13 1226 1709 349 161 585 12 17 98 27 6 3414 30 37 103 29 9 717 13 3514 2 755 272 1020 204 670 6 755 272 105\n1\t887 68 5204 1123 44 1817 5 70 2 329 7 2 206 1504 289 65 1 8442 15 443 3407 11 899 318 5405 6738 5 2410 1 29 28 1746 5204 2296 65 2 1892 189 28 2471 8635 2993 5741 5393 4 218 1228 3 25 2587 5489 8168 4 94 5741 57 202 4733 44 16 15 44 6763 4 7 1 5204 6 483 3 999 5 8398 32 239 138 142 68 1448 1 2870 4 5820 8421 8001 4 5 186 125 14 3138 4 1 1 74 177 11 123 6 946 142 5204 378 4 3851 44 44 8795 8967 38 1 2302 5101 29 1 8335 6688 5204 142 5 62 2471 7 2498 106 5204 153 932 95 318 3165 3 33 390 5204 2026 6131 3 6066 16 297 11 60 40 1866 3 5214 5 1337 10 34 2408 17 60 297 29 1 182 16 44 13 5204 5136 65 155 7 1 166 569 11 60 544 47 1356 17 3 60 22 749 1705 14 28 4 1 681 113 502 176 16 294 3145 2147 65 7 2 2465 3 5454 7 28\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5016 3 4278 17 1 523 6 46 51 22 168 4 132 11 51 6 58 2421 7 1 2034 1 233 11 1 170 2150 40 2 4070 2823 16 2937 6 37 2971 11 8 47 8919 3 1 181 4095 13 150 83 1374 1815 45 23 24 2 156 6938 4 3 230 36 9651 15 146 167 5 176 29 15 2 156 1411 1025 9 6 2 167 53 108 58 580 991 19 1 185 4 1 545 17 1101 158 258 1101 1073 6 531 1878 78 138 68\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 57 58 465 15 1 158 66 8 179 12 167 452 42 1 697 1004 178 388 11 4756 437 8 560 45 56 179 11 1 940 956 410 54 175 5 64 81 11 61 4769 4464 5 469 3 813 34 125 1 1888 1140 9 12 31 862 91 13 155 5 1 4356 1 201 12 2355 258 9793 14 1 518 294 294 4919 12 2 7673 1 415 7 25 157 14 25 1725 2257 14 25 27 6 5360 1052 77 25 2771 5 1602 2 11 7817 7 1 3153 610 75 78 12 4919 602 7 1 72 190 100 118 1 389 1387 5 1 6 128 2191 3 2 1126 1 21 123 2 167 53 329\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 24 5 134 11 519 22 34 11 39 36 3924 32 2982 40 3184 47 1491 38 257 990 1024 17 27 6 260 13 872 49 10 255 5 8955 9 18 6 132 31 3625 1528 1212 23 76 332 112 48 116 671 22 38 5 8790 13 872 98 236 1 2328 4 1 18 14 322 1476 15 2 5498 6220 672 3 6220 584 11 76 1388 116 1898 14 23 99 137 3913 829 13 92 18 229 495 4338 116 9695 127 17 10 76 407 320 23 75 3666 257 990 72 414 19 323 3191 13 252 18 1071 42 394 460 14 10 6 28 4 1 156 990 4655 8 323\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75 87 23 2303 2 178 32 1 3083 4 3083 178 7 6903 3 609 161 164 3 15 425 3718 14 690 3945 123 3127 13 150 118 162 4 17 9 1373 2 1522 158 1 102 951 22 3654 1 263 722 1 593 3 2216 46 4835 742 6 46 211 14 826 164 69 242 5 70 29 3945 140 1 3406 966 55 1 346 546 22 6389 13 677 22 37 97 211 1025 7873 65 1 3945 5665 25 3405 14 45 13 743 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 6 2 169 548 203 9082 21 1 456 4 3493 32 1 428 30 626 4 42 53 299 16 203 596 3 40 31 313 1440 1 18 130 93 26 3021 956 16 1207 35 596 220 3650 395 957 40 31 1474 280 14 2 8681 3 4112 203\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35 117 310 65 15 67 6 28 1415 3792 8 1150 10 16 257 1433 3 34 1721 4 199 165 47 1232 1181 34 7 31 121 897 2193 3 72 118 2 342 4 1 171 32 4575 1739 1603 2467 1 212 9436 1925 8 57 9436 8 721 517 850 50 3429 45 8 70 65 5 139 5 1 6192 5 145 160 5 26 7 1 750 4 41 2730 8 339 55 139 5 1 6192 73 72 219 9 3067 203 108 8 93 179 144 22 34 1 624 5329 7 9 18 17 72 83 95 4 1 1161 23 130 90 2 203 21 106 1 506 6 2 282 3 142 8 54 99 11 125 3 2287 637 10 254 41 2245 41 146 439 36 656 145 59 685 9 18 2 1709 73 23 79 47\n0\t4716 3 2909 1 16 1272 1238 5 333 25 2962 378 4 1 6 93 31 2158 5 1 6508 3 1 5160 3 106 1 3106 114 27 70 2 9945 10 191 26 28 4 137 66 8787 1 5348 55 5521 13 3926 1272 1238 1049 58 774 1 182 4 1 141 27 4632 2 7 1 155 140 2 3406 3 98 2 164 30 1363 122 7 1 543 140 2 20 59 6 9 2 111 5 564 31 42 52 36 2 1414 2 526 11 8269 17 5214 13 3204 27 440 5 564 25 6763 49 27 615 47 25 1855 6 2 23 118 48 2 306 5348 123 49 27 2486 25 1313 6 91 41 27 1141 2443 5 2162 11 27 54 243 1288 98 2478 411 5 1 952 4 25 13 9300 38 1 129 12 2 1598 5 1 148 3920 11 34 5348 13 3986 72 24 84 2653 53 3 8773 121 2 119 3 4493 801 831 6 1 80 731 1329 4 3676 600 253 10 31 790 158 3 31 2158 5 297 2 1834 13 1149\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 850 50 6857 1 312 11 9 18 6 2 953 6 31 1409 1399 5 437 1739 1 272 11 10 181 5 26 428 30 2 715 349 3176 1 640 1 121 3 55 1 5398 3 1673 4 9 18 61 34 660 13 150 192 20 531 9 3014 38 95 141 1232 154 454 40 3358 17 9 141 245 12 229 1 210 18 8 24 107 7 8 63 1582 241 11 9 18 6 3 8 96 10 130 875 36 490 16 104 36 127 22 253 1 953 870 2 13 150 5268 261 11 6 2 325 4 953 484 41 55 311 104 5 875 237 295 32 9 461\n0\t8 214 10 2 46 509 4499 108 1 120 22 955 9462 3 8 1019 679 4 269 5 365 62 871 7 1 471 1 119 6 377 5 26 211 671 35 735 7 112 16 1 415 33 22 17 8 24 20 1309 385 1 212 471 1 7 2 568 707 36 147 3820 22 2348 1147 14 31 1805 3 46 8566 996 15 1 415 1424 16 122 14 45 44 61 2 3360 7768 41 690 6 169 2348 7 1 769 1 2974 407 22 1 1761 4 1 8074 3 4 1 349 3741 2035 30 44 766 167 94 1 1042 4 9 141 3 603 157 12 1049 7 4366 3 4 2 1 3741 1 491 1212 4 1 1494 1 958 3232 6836 1 198 4092 55 101 172 2195 7365 3 1 788 32 292 8 87 20 36 849 40 71 1 80 986 8723 2851 220 1 182 4 1 4198 3 6 404 30 25 596 14 218 8 76 359 9 18 7 50 1894 59 73 4 127 3741 50 2400 6 13 9267 8580 1308 3 679 4\n1\t12 483 402 43 168 10 276 36 33 4440 15 2 408 388 618 10 123 24 2 53 119 2519 3 86 806 5 5345 1315 172 94 1363 44 3803 5512 1825 435 5819 6 612 32 1 15 1 352 4 44 1207 35 60 6 4940 246 31 1971 1566 1 1207 741 65 2424 44 2 429 3 2512 44 2 5030 17 740 1 74 910 269 4 1 18 5819 1141 122 3 122 7 44 98 60 44 5849 742 748 671 19 122 3 3671 29 162 318 60 40 550 60 1630 1438 17 94 174 5849 8285 615 47 11 5819 643 11 1207 3 3380 5 564 7081 379 9367 3332 6 94 5819 3 122 70 10 19 7 1 1053 98 60 3671 121 37 1438 3 1141 8285 3 406 19 1035 5 564 742 912 60 1521 1371 3 3457 1987 3 468 24 5 760 1 18 5 149 47 45 5819 2180 41 1265 790 53 141 1523 79 2 163 4 50 157 23 118 1 212 1424 16 1 5849 3 5720 29 162 318 23 24 122 2482\n0\t4939 10 311 4624 86 1183 19 154 888 1 927 6 301 1 2987 6 37 42 7191 2668 39 1874 4 25 433 1549 3 15 25 570 736 1 6623 3587 1 4 835 44 442 8 83 55 320 44 1921 3892 369 818 1 442 4 1 5684 49 44 766 395 74 649 44 11 44 493 6 1 91 2678 1 606 3 1 5008 114 34 1 260 2508 881 2588 7996 77 239 1715 160 224 1 81 670 101 17 58 28 705 1608 207 571 16 1 28 259 35 40 71 375 984 6 515 385 1 15 6407 3 31 8988 606 791 143 1682 122 939 115 13 777 1496 52 3 52 1884 5 79 11 104 36 9 63 26 1001 51 6 37 78 5989 7 1 21 1926 5 90 2128 1397 96 11 275 7 368 54 96 4 253 53 124 279 4498 195 236 2 821 3742 115 13 1226 83 64 9 135 83 760 1 1771 83 99 10 19 8411 51 22 679 4 82 188 23 88 26 403 11 76 597 23 507 52\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 316 56 758 155 43 84 2113 2122 409 145 944 24 20 107 10 220 8 12 8 57 202 1837 38 9 141 17 49 8 219 10 316 5878 43 168 1345 758 2 4443 5 50 11 103 3345 16 10 12 39 36 50 9822 10 12 31 332 491 839 16 437 8 76 198 9 18 16 11 2560 8 449 43 4 23 8034 63 1999 5 50 4458 20 16 9 933 141 17 95 18 23 24 20 107 7 2 223 4222 46 13 16\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 323 28 4 1 80 4513 124 180 117 1407 2086 180 100 152 556 1 85 5 787 28 4 127 17 343 4565 5 94 9485 9 5 3164 3 230 595 5 26 2721 50 85 19 132 2 391 4 5 26 51 61 37 97 546 11 79 15 62 528 3 551 4 356 7900 49 54 1 613 1426 117 1743 81 15 49 54 117 140 47 132 81 16 551 4 2 144 12 1 259 35 122 19 25 379 5066 200 1137 7 25 6833 1864 2844 2 1653 14 60 6276 200 19 1 896 1 8313 69 14 2224 202 209 5 504 7 132 124 69 12 489 7900 1 111 1 2088 259 69 8 83 320 25 442 3 83 187 2 9116 3086 69 301 590 421 25 1327 3 2183 142 5 597 3 8 1168 65 1841 126 34 5 889 1 397 12 2069 5312 3 1 861 162 5 787 408 1395\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74 4 399 14 2 223 85 1465 4 1 6257 2662 3 1910 4 375 6257 8 230 6469 5 878 19 1 135 8 83 56 474 75 97 2520 3 1 21 17 5 79 10 6 128 31 332 489 135 5850 57 1 7324 5 90 2 21 4 1 2662 17 831 2167 5 473 10 77 2 684 1 233 11 37 97 81 200 1 234 1310 16 10 59 4205 5 50 2867 1 747 1296 4 1600 3 1205 356 11 18 1396 3 1607 24 127 2569 2525 367 11 34 104 130 24 2 950 3 2594 1424 7 7 233 80 148 795 22 235 17 684 3 1 6257 2662 407 12 20 461 8 230 11 10 965 2 138 263 3 206 15 2 1782 3 14 103 1703 14 2623 8 202 3554 65 7 1 226 980 106 1 2791 889 738 1 82 433 8847 3 1176 35 1173 47 7 6 9 31 1244 3124 1006 4175\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 2067 4 2 18 20 39 16 81 35 36 299 3 3445 17 35 112 1 622 3 4 1045 3 382 368 502 239 1928 4 1 8238 1176 6 1 4 2 382 1045 129 41 1910 4 368 3 42 1011 1935 133 126 4 239 82 3 1 6448 4 184\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1926 6 1255 69 73 5445 24 5 26 89 3 307 602 40 2 2015 727 854 207 1 46 215 4 9 525 29 253 31 21 38 135 3 2835 58 138 3905 4 1 68 283 3 3363 7 9 1 3122 2903 4 648 2177 142 36 8 90 2 1210 18 11 4240 2 163 41 130 8 90 31 2445 8626 3 875 306 5 50 1703 7454 1 733 6 20 59 42 2015 14 530 42 2 243 1618 1261 5 213 10 424 50 189 1 7389 3637 28 196 7350 4 7590 1863 3 296 18 5406 3644 2076 4 21 1761 19 1 22 253 1 2226 269 4 1 21 230 36 5311 6624 6 3784 7 44 221 1761 7 1\n1\t3290 3 42 20 254 5 64 2957 1932 6 1883 5 1 272 4 3681 60 151 58 991 5 95 3643 32 1 2996 3 60 2378 992 5 176 1906 3 80 44 1635 49 2530 7 19 44 518 7 1 21 5 149 44 434 41 670 434 4 31 9565 4922 2720 20 78 474 6 556 5 2321 1 233 11 42 31 6 4 611 10 1605 11 9 18 47 39 183 1 397 3920 337 77 45 10 57 71 89 2 349 1372 23 63 2398 188 54 24 71 2 222 13 4375 78 4 1 2797 3 97 4 86 80 240 3558 22 303 19 1 3005 974 3 1 67 56 123 390 38 3 6691 3 20 78 1939 8 214 11 5 26 1 225 240 3 80 3240 185 4 2797 17 10 6 1 185 11 380 1 821 86 462 3 181 5 26 1 185 11 8034 22 128 1366 5 944 37 10 3723 79 14 2 2547 3113 19 1 185 4 1 21 1350 11 33 2167 5 7284 1 821 1 111 33 7937 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2676 34 16 2 203 18 17 9 12 39 2 2418 4 1238 75 261 63 637 9 18 797 41 547 6 660 437 45 23 36 4847 1043 5 1203 1 293 1456 91 121 3 2 91 263 98 139 16 1027 51 12 58 1216 5216 3 1 840 3608 12 1941 73 10 12 37 7810 646 186 41 5953 9591 125 9 2418 95 1393 50 2185 419 65 94 38 910 1507 60 789 2 7056 49 60 1148 461 8 19 1 82 874 1407 140 1 212 18 39 5 947 3 64 45 10 165 95 828 58 132 8 617 25 82 18 3 8 894 45 646 1460\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 496 7758 21 76 26 548 16 1 97 35 24 20 107 43 4 1 52 4248 2673 703 8 381 80 4 194 258 94 1 243 1289 567 269 7 1 7617 2243 1 980 6 46 548 3 1680 43 4 1 138 2126 4 578 14 1 3 4598 14 1 800 187 1502 2263\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 79 357 47 30 667 11 8 314 5 56 36 6697 591 32 17 30 1 85 60 165 200 5 9 60 57 93 165 3 3478 1 212 21 12 31 15 2093 9692 1018 191 24 71 1002 1 67 12 573 1 9394 501 3 1 21 237 105 2043 10 57 43 4 1 161 7 10 36 1599 3 5 328 3 796 17 15 58 5168 1 265 868 12 3 8 24 5 134 20 28 4317 12 1201 7 95 8 12 132 2 325 4 773 8 198 555 8 57 100 107 9\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3458 4 399 48 6 53 7 1 18 1785 43 167 651 1785 1 4439 1138 1785 1 233 11 1 171 83 539 136 121 669 54 24 45 8 57 71 7 62 1785 8 83 2510 1 857 6 641 2521 2 3403 2906 35 123 5404 440 5 149 47 35 8654 643 25 103 2823 2 976 7018 30 174 2906 49 27 12 145 1893 51 6 162 204 5 825 41 5 369 96 2 103 38 1235 9975 632 41 2884 6659 6 20 46 53 675 9 6 1 210 431 4 1 210 1022 4 395 15 171 3 1698 395 1848 6 1 7632 2190 1 282 35 486 29 174 429 88 24 2 1248 15 1 4560\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 226 669 4 1 104 1 1161 89 15 5219 9 6 93 1 226 323 211 21 33 1716 183 160 5 3782 1556 8005 66 37 62 8094 292 51 22 904 529 69 1 1255 15 1 16 2937 6 2 3947 1104 9336 2266 279 39 5 64 2367 69 17 19 1 212 9 739 6 2 53 3469 4 48 1 1161 758 5 1 1250 742 1478 7 82 7020 3 27 6 7906 5215 204 14 1 8724 1788 1 178 106 1 1161 24 5 2089 62 221 501 501 3 10 229 9761 452 2089 6 28 4 50 430 529 7 1 4123 217 6607 76 198 26 2273 7 1 486 4 62 3367 4 4787\n1\t7773 27 6 7388 47 3 7 2 6071 3 9 951 5 1 754 7991 980 3 1 2582 4 1 803 13 777 2 1722 1693 18 794 8 24 57 4753 11 123 20 467 42 20 279 283 69 2325 10 6 2928 1 566 189 492 3 1 613 7 1 3912 106 27 8831 1 77 1 41 1 1269 333 4 1667 5 1708 32 2 8125 19 1 13 92 121 6 167 501 7 933 11 514 5886 113 21 5205 12 2 914 2404 27 1550 89 104 183 1 886 32 3 25 7462 6 93 3351 763 123 46 2068 15 69 2 1557 35 6 56 288 16 25 221 5 25 221 13 858 16 60 498 7 2 278 11 12 1031 80 4 48 60 57 248 183 3 3493 4 3 1 4794 22 3 6 2 1201 9070 9302 6 2 46 1846 129 16 1 353 69 2 1904 17 2670 164 35 2486 1 254 111 20 5 241 48 27 4940 451 5 8245 42 20 1388 4 4670 41 29 17 10 6 2 53 21 16 34\n0\t0 0 0 0 208 1150 9 19 305 5446 3 114 20 853 10 12 2 574 4 141 37 8 9339 5 99 38 31 594 4 10 183 4101 1 582 13 2663 15 2 129 2221 4561 8 39 88 20 70 77 9 21 29 513 436 10 12 50 1646 7 1841 5 99 146 2684 41 300 8 57 82 6287 17 1167 11 5119 8 713 50 113 5 899 19 5 1812 4171 17 419 960 1 171 262 62 871 322 17 1 5039 2053 114 20 209 371 5 359 50 3208 38 1 59 240 177 12 1 1653 101 2632 3 27 5 751 174 628 3 4962 10 315 5 1030 14 613 8 96 9 18 130 24 71 8337 3686 1 168 61 109 248 17 1472 126 371 8 308 316 343 9400 16 235 5 359 79 13 8535 8 143 1812 133 10 420 134 51 6 43 6156 5 2424 9 21 1104 5 503 10 12 2 351 4 53 956 991 3 290 646 597 10 65 5 23 5 328 194 17 42 20 28 420 2474\n1\t71 30 2 3649 62 2 147 4953 101 2336 16 2336 16 1796 32 1 215 4953 9553 49 103 487 1712 2 325 4 3661 2 94 1112 2296 47 7 1 27 5186 7951 1823 1 102 390 53 2098 1712 6 1979 14 31 1910 4 1 4894 140 1 983 1630 14 2 435 842 5 1712 148 435 6 198 3 181 5 26 556 15 1823 8416 17 963 33 191 1712 521 2486 11 392 6 20 6761 309 3 191 2497 5 90 1 2059 5320 5 528 25 13 1701 59 1639 3428 4953 6 2 109 248 880 1 7905 4982 22 483 109 3 1 847 190 176 2431 17 56 289 1900 7 1 807 45 23 338 98 841 9 28 827 41 45 23 22 147 5 1 4953 1561 9 6 2 53 131 5 357 1566 45 23 176 5 2 131 16 589 3 129 3612 9 6 1 28 16 1259 10 2405 52 19 11 98 7905 2465 8 54 1090 10 52 4 2 589 68 13 2465 4953 392 7 1 115 13 23 24 5 1621 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 31 48 123 11 1331 5 9 119 88 20 26 527 14 2 2010 809 1893 4 4690 432 46 2950 29 1 46 182 4 1 21 73 27 337 77 2 9889 1 59 1734 4 9 351 4 6517 12 5 5975 296 374 5 8563 49 2 3 52 1535 111 4 403 9 88 24 71 2 251 4 55 1 2447 4 1 1490 4642 794 1 37 961 7870 244 2 1 1981 88 552 9 1445 21 32 1 1065 994 55 1 3079 4 5122 3042 4598 41 1 368 851 4 1403 14 1 1254 120 83 552 10 1218 8 63 59 1431 10 14 2 9899 5610 5 1 55 9795 8661 4 1 1793 73 1 2518 847 151 1 21 2428 20 1 1065\n1\t16 101 37 38 476 94 2 525 5 8940 60 5186 174 7893 3 60 55 2 4 77 1 5412 4 1 13 6 2 2724 8053 2814 202 1258 5 241 11 206 1180 5 90 10 1030 37 1087 3 37 5832 8 3953 23 5 209 65 15 2 462 11 3835 19 1 3356 4 52 7863 68 2788 375 1102 22 169 1985 6095 1 4 14 1 443 7 19 1798 2629 3 286 34 9 3532 1131 213 39 314 5 5624 438 1038 145 2474 2173 11 479 185 4 1 3703 6 242 5 3099 395 3403 1908 7 5054 2012 554 5 26 2 3 2075 3 236 58 333 7 9019 10 95 9541 124 36 1 24 1 4344 5 1193 3 257 3666 3 8 323 4429 126 16 110 6 31 1485 3 2605 21 73 4 86 17 42 55 758 5 31 2302 952 30 1 2653 1 4427 1759 217 1769 3 2 3999 668 868 30 6 46 1321 14 1 4086 3 17 42 35 2448 1 131 14 975 444 2 3 35 1143 5 7 1 1089\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2082 4 50 3223 13 150 1459 9 18 65 29 3080 16 73 8 9344 42 3543 8 63 70 43 772 8 12 1989 301 1328 140 1 21 34 277 4 50 417 61 3072 3 8 12 128 210 640 210 1252 210 18 8 24 117 575 8 405 5 645 50 522 65 421 2 2282 16 31 5086 98 420 3 23 118 2368 73 10 343 1589 452 655 8087 50 522 7 8 1544 11 1589 18 7 1 3 219 10 11 343 138 68 235 422 180 117 1613 10 472 296 1536 4 3 564 1037 39 5 70 125 11 2145 8 812 23 3543 16 152 160 140 15 9 3 9695 2 212 326 4 50\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 436 28 4 1 156 35 114 20 284 1 347 7 298 2860 8 179 8 54 734 50 6588 283 1 18 197 1311 1 67 7 58 111 32 1 135 1 120 24 37 97 307 63 1999 5 126 7 62 221 699 1 5115 4 1 1260 6 11 307 6 1747 5 1480 62 221 1732 1 486 4 1 647 243 68 101 31 3222 23 63 112 126 41 4001 949 3 128 230 1 931 1880 4 1 108 360 453 30 5429 3 8528 56 652 1 120 5 500 420 496 354 110\n1\t28 7 912 97 3037 76 149 3576 3 1 9013 11 51 22 6253 8668 1492 7 727 29 225 5 137 35 54 3143 126 3335 13 858 1061 14 9 21 424 245 10 741 19 146 4 31 7822 193 4491 515 40 44 2919 19 1 9743 236 58 6410 4 106 444 6 9 2 386 3277 5349 16 1159 41 6 60 7095 5 390 1 633 4 94 399 341 7 822 4 1 233 11 1 2694 6 28 4 1 4 9 7800 1730 3696 213 610 2 8596 11 7459 554 2339 779 1986 42 4209 5 3129 3 7 2202 15 1 915 729 4 1 158 3 1 1782 4 1 31 4 1 2439 4 54 24 71 13 92 607 201 1680 2093 7316 5744 3 2470 193 10 1510 2 46 148 572 4 157 5 66 97 76 26 446 5 51 22 732 1637 4 11 3304 4102 2 3947 3260 43 4 48 629 7 1 11 5119 42 2 1061 21 11 16 1 80 185 6 2 3476 2751 8 1090 9 28 115 13 1149 115 13 1149\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5457 133 9 18 8 165 7054 8 24 71 65 15 3 154 85 12 2 148 49 50 379 310 5 60 12 288 29 1 3 57 2 148 53 2499 17 9 296 324 130 26 3 100 26 620 702 10 6 464 32 477 5 42 714 75 63 33 2108 5 90 10 565 109 8 497 275 1 6981 6845 6845 17 33 22 100 542 5 190 9 18 100 71 107 316 3 100 1172 47 19 2 4874 1 18 3 552 1 2802 45 23 175 5 176 29 98 176 29 1 215 18 3 24 2 53 2499 72 112 1140 23 76 100 820 65 5 26 850 49 284 1 2 1197 3 1 545 4 1 1216 3 3805 4 1 109 8 497 1 206 1421 16 23 22 288 29 9 18 29 116 221 10 6 56 2 351 4\n1\t0 0 0 0 0 0 0 0 0 9 21 373 196 2 4085 65 32 437 42 2347 716 3 55 42 2579 2984 3 3547 19 5286 1827 81 57 79 7 533 80 4 1 135 42 119 6 1269 3 4933 215 3 76 24 23 3584 533 1 389 135 1 28 454 8 12 80 1475 15 7 9 21 12 42 908 3 641 5 64 11 60 40 556 2 8694 4 2845 1137 4 1 870 444 314 1467 44 1778 6 313 3 44 121 278 12 1317 8934 3 10 6 1 113 278 8 24 117 107 32 3 8 24 107 80 4 44 703 44 919 6 1991 14 1060 7554 4 5286 3 9 6 107 7 43 4 44 8558 3 1 5079 7886 175 5 2963 1104 1104 23 93 230 1140 16 1159 14 44 278 56 1259 6 2 46 1618 3 1852 1223 1990 5749 57 79 1094 533 1 212 21 15 44 519 3416 5946 17 93 44 2745 5217 3 37 778 294 2347 494 76 229 90 23 9235 2880 8 2474 354 9 135\n0\t5 694 140 110 3 98 10 3538 1647 5 96 1352 560 45 1 1210 24 89 9 572 14 2 2476 5 64 45 33 63 90 1 210 888 18 117 1716 3 128 1622 2 1114 8 339 96 4 95 82 302 144 9 21 54 26 1001 16 104 5 26 89 127 2491 1 263 271 5 2 3144 3115 2196 3 46 46 156 3645 152 90 10 5 1 397 173 9868 75 9 28 165 576 1 74 30 1 769 3 439 8 12 1094 69 39 20 29 48 1 6473 405 79 5 539 6052 17 378 29 75 903 3 439 1 18 1306 1479 851 8 143 24 5 946 319 5 64 11 54 24 56 3336 1608 3 88 8 39 11 4 1 102 4071 4629 8 24 198 7421 2917 73 8 96 27 6 2 1824 52 45 27 451 5 1825 55 1231 77 3725 98 9 6 610 1 111 5 87 894 11 27 76 70 97 52 329 1664 94 9 1865 351 4 358 3 4995 10 59 165 2 5567 7224 73 8 339\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 1288 16 12 39 174 865 11 89 31 1635 19 2240 3906 285 1 362 1 59 177 3045 38 9 865 12 1 226 18 2376 1478 1107 82 68 11 236 58 302 5 99 9 1706 739 1013 23 36 2646 2092 14 2 203 135 2 1455 1706 16 112 3 1 155 3180 4 7397 288 16 110 76 27 4891 41 76 39 4466 47 316 36 27 40 16 1 226 13 252 18 191 24 71 184 73 2 342 4 3066 521 479 37 91 33 90 9 28 176 36 2 2073 8 118 9 6 2 18 38 3804 17 1 21 1350 88 24 314 5 13 2078 1901 30 79 73 8 143 36 592 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 1823 4 6366 40 28 177 11 40 71 2130 220 1 215 376 2 6079 4 5222 3965 1 120 4 1 398 3157 165 33 61 37 3943 14 5 26 4178 8 93 36 1 11 2630 22 3837 1918 1 86 211 283 126 14 2288 10 151 79 176 890 5 283 49 1 2630 390 1 2075 189 1 4069 193 8 83 96 10 54 216 7 1 85 2990 4 1 880 1 59 11 4059 47 29 79 61 1 757 142 1 393 29 358 230 4 1 769 66 6 1205 738 97 4 1 2748 3434 1 330 12 1 7750 4062 16 4129 30 2 342 4 1494 1192 10 12 47 4 2416 2 53 1145 1724 131 130 26 446 5 820 19 86 221 197 242 5 1 410 15 43 17 86 20 50 329 5 90 1 131 37 850 2593 13 64 75 1 398 431\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 59 53 185 38 9 21 6 1 304 7754 9 18 12 223 3 1466 1 130 24 5343 32 1 1 85 25 585 776 32 1 27 75 97 268 63 25 1161 186 1 442 7 9915 7 9 21 101 32 2 10 153 8 4318 776 12 7097 224 1 2644 197 2 3068 29 1 46 477 5 4479 199 1 3977 6212 67 4 776 37 432 2 1946 3 776 432 2 35 451 5 2464 17 42 46 72 64 1 101 3010 65 5 30 776 73 4 25 2020 296 2784 11 12 1 59 185 11 57 43 796 3 300 88 24 71 1619 77 2 148 48 72 59 64 6 2 569 106 1 102 4766 24 162 5 87 17 3441 1430 2 1054 1327 3 934 15 44 231 3 90 65 1230 584 29 1 4530 2700 136 8920 25 522 3 186 2 163 4 3 5454 2 163 4 420 243 99 2 131 38 8922 11 11 21 76 26\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 57 5 16 970 39 5 2192 2 878 19 39 75 489 9 18 4532 3 2 2871 4 3983 24 2 138 857 68 476 20 1 210 121 180 117 1586 17 49 23 47 202 1 389 201 4 1 18 740 715 1507 10 844 2 222 5 26 9430 51 247 2 625 799 7 1 141 15 1 1675 4 49 33 61 133 1 18 19 1 2229 34 2701 10 181 36 10 3084 71 2 53 441 3343 1 1079 3 667 11 12 7 10 12 2 222 4 2 2807 14 8 143 3082 44 260 295 3 44 178 12 459 125 183 8 3084 367 2056 51 60 145 37 1096 8 159 9 7 2 1863 3 143 946 16 10 14 420 26 148 45 8 57 2 5 64 476 8 1797 36 41 63 29 225 149 2 1362 3608 7 2 141 17 9 28 6 31 4727 42 37 91 11 42 20 55 11 1474 39 908 565\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 91 119 2720 53 16 2 53 8100 566 1025 29 80 2 715 47 4 1731 17 146 40 198 2705 79 38 9 4356 75 209 100 7 1 249 2614 60 5625 375 5241 529 15 2356 55 2 4420 7 2 286 7 1 1998 2614 80 4 44 168 22 757 3 60 100 2656 29 513 9 8551 79 73 10 20 59 270 47 2 633 2720 5 1 158 10 93 151 1 570 383 291 8220 9 21 54 24 71 138 57 33 721 44 168 1356 73 7 137 168 29 225 60 40 2 28 11 1034\n1\t0 0 0 0 0 0 0 0 0 0 0 1915 261 6 942 7 2 973 4 9 21 786 284 1 1735 4 9 74 30 6100 19 1 4743 1565 294 1075 6 2 967 5 1 817 5201 2 569 197 9581 15 745 4796 25 280 14 2986 9733 266 2 8321 5804 603 125 1 233 11 1 2430 60 8883 190 26 929 5 4258 224 73 4 2 6 4764 7037 49 60 5015 2 4530 572 556 30 6160 1 572 289 31 634 4 3193 30 711 7028 9465 35 7322 303 569 2992 172 989 3 1336 71 107 4836 7028 54 36 5 5895 9720 155 77 569 197 2651 41 17 9 1501 1258 49 4530 2 8461 5 3658 587 59 5 1 1228 14 3 236 3393 2153 46 2284 38 11 10 93 289 2 2327 6573 2465 1524 5869 7 197 31 11 6 4 448 1 35 5792 65 195 3 316 533 1 67 7 2 2806 4 5 3183 4386 5454 65 2324 119 55 1555 2 668 15 964 752 13 7 246 2 787 5 79 6278\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 74 350 4 1 21 6 1530 1 330 350 28 4 1 80 3240 3212 169 815 1 80 4499 18 4 34 290 12 9400 16 9 6 28 4 137 124 11 81 230 3021 5 112 73 1 250 129 6\n1\t1806 50 2867 9 1373 28 4 1 46 113 6851 4 2997 19 2534 14 109 14 28 4 1 80 2915 5 2 933 4816 9179 13 252 251 1390 4367 5 205 1 2997 124 4 1 3 1 2997 4816 251 4 4 4 1 567 868 3 4235 61 370 19 1 294 2011 868 32 1 581 6921 16 2 2156 2341 238 1199 28 4 1 250 5 1 4816 4 4 12 2 425 1412 5 26 602 7 9 1139 1199 1952 1 251 57 2 52 3287 230 136 7511 5 26 46 13 12 1463 14 6256 4234 3 25 12 9174 7 25 1 3229 1849 120 3 5114 61 1012 530 28 4 50 430 4647 12 30 560 1696 3 1 67 200 44 408 1444 4 205 44 2217 3 11 4 44 532 61 7 2202 15 1 7050 560 287 709 347 251 4 1 4314 3 10 384 36 31 1381 1139 251 88 24 71 1619 16 44 45 2970 1 13 92 28 177 11 6 254 5 241 6 11 9 40 20 71 612 19 10 1071 5\n1\t627 507 11 1 113 6 286 5 17 55 45 1 251 2683 14 548 14 1 74 681 767 2140 8 76 26 3527 1 330 3 957 767 61 84 5 99 16 62 6906 3 534 356 4 2106 9 8059 3465 6 373 1 28 47 4 1 74 681 11 1510 1 80 2438 3535 1 431 792 49 31 3797 164 2064 25 379 47 4 1903 172 1372 962 3 3074 6757 899 7 1 429 15 62 103 752 9342 521 94 866 1356 245 1 231 24 5 149 47 11 51 6 146 1722 540 15 1 1828 66 6 1524 1 330 431 470 30 6173 6 2 163 138 68 25 1669 817 3 1 1002 1903 171 1917 53 2263 1 21 6 93 6577 7 1422 4 1456 861 3 6460 218 429 11 5 6 2 1195 431 11 1510 1 824 11 50 1658 130 36 5 64 7 2 386 203 4815 1 21 1510 2 1119 4523 2438 2545 529 3 1244 6971 3 6 3604 3 496 548 32 1 477 5 1 714 1952 9 6 496 5 5879\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 159 9 18 2 156 2017 989 7 1 569 66 1478 14 7 1 141 66 6 1 59 302 8 337 5 64 110 174 558 35 12 51 39 5 79 31 4 2 3640 781 73 1 74 57 2925 47 3 81 61 590 1695 25 878 7 25 890 6 2 53 13 13 317 2 3767 170 325 41 414 1623 1 1967 23 118 1 148 1899 9 108 42 650 31 6636 1285 16 1 9325 10 40 58 640 1 265 6 1674 1530 3 105 78 4 1 5695 22 253 10 1258 5 917 48 103 4 119 51 190 5721 13 150 83 321 5 256 7 2 2636 3199 73 51 22 58 3917 5 187 8213 13 7414 187 9 2 17 207 39 16 1 8547 1548 4 283 1 89 77 2 108 10 247 279 1 8 88 760 2 388 443 3 1564 200 3 90 2 138 18 13 614 23 175 5 64 2 18 15 58 640 139 760\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7309 8530 380 2 609 278 7 9 135 1 226 1194 269 883 22 84 3 8530 6 31 1409 2421 5 836 1 166 481 618 26 367 16 1 344 4 1 135 42 20 489 3 145 273 10 12 89 15 53 17 1 59 148 302 1623 8 61 5 26 5 64 10 6 16 1 344 23 22 138 142 39 765 1 161\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 1674 176 29 1 1203 4 9 141 42 3876 5074 1 18 554 256 79 5 6086 10 12 673 6560 57 4301 882 3 2 345 333 4 4281 1 121 12 1735 1097 3 1 640 136 10 2893 71 797 16 2 264 141 12 775 620 675 33 55 564 1 59 9728 129 7 1 212 2814 8 187 10 2 358 47 4 394 73 1 59 177 11 12 53 12 1 119 1298 29 1 714 82 68 458 23 228 175 5 552 725 32 9 18 3786\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 784 55 1 206 153 36 9 16 79 8 96 244 101 2 222 3061 19 13 42 20 3454 17 51 22 43 3971 1 67 6 53 227 5 359 23 942 13 777 383 7 48 784 5 26 169 2 167 2370 66 1583 5 1 1190 14 2593 13 614 23 36 203 124 383 7 9036 187 10 2 13 150 24 39 107 2 1625 16 9 971 2045 21 1060 7941 66 276 169 13 677 662 227 706 203 124 16 503 37 95 11 209 385 2005 257 5837 3 9 28 213 14 91 14 23 190 96\n1\t5 24 470 9 1260 4 645 2404 309 15 17 25 221 1383 3 10 337 5 2 80 2422 690 1 40 2 273 1388 19 1 97 1102 4 1276 3 27 10 15 52 3099 68 1 870 1227 591 7 1432 1 341 1135 4308 552 16 28 658 4 22 3 52 8608 68 7 148 727 3 1 38 408 3 1916 3 1 379 3 635 196 167 17 42 2921 3 6803 1221 16 1 976 1249 375 4 912 143 16 1867 808 1240 14 31 4082 745 7559 1763 2142 1072 3231 3 1862 93 16 2 46 362 3289 4 5208 35 153 131 65 2268 31 594 3 2 350 77 1 572 17 40 43 53 103 1102 14 4844 105 91 86 3376 22 7 2 3 1 59 3687 261 789 4 6 94 1556 1996 612 10 5213 5291 1 3376 5 1 9455 3 45 236 2 53 3687 47 1057 10 229 1936 1339 7 1 4 1 42 3 2390 7 17 10 93 2291 1 4 1383 2505 3 1 4 392 3 10 1071 5 26 52 4768\n1\t1 2579 747 4174 51 22 877 4 1308 5 26 5125 5206 621 7 15 2 526 4 4231 29 2 2294 1 363 204 22 56 313 14 723 9079 87 2 1080 5870 941 3 5206 55 196 5 24 2 4697 66 6 49 27 621 7 15 2 5780 3777 1944 30 14 11 190 26 1 59 3731 8 3702 14 521 14 23 70 4771 15 28 4820 1 21 98 1047 5206 19 5 13 92 178 106 5206 6 4587 5 2303 319 32 5779 6 722 17 2 103 1577 854 145 2275 61 5080 1 680 5 1483 132 2 178 7 2 374 135 3 4036 9216 6 46 2462 244 997 7 1 3603 3 142 5 1 3896 16 1764 106 244 4915 117 13 92 67 475 255 331 6430 29 1 106 5 352 4 448 33 87 149 17 1 570 5760 6 2 178 4 132 1985 8 12 303 16 375 1452 5206 190 100 70 1 6752 7797 17 8 241 86 31 1381 609 135 1 166 4267 1 166 6243 2170 3 1 166 2065 13 743 1681\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 586 351 4 85 69 91 505 640 5246 9 6 1 80 509 18 7387 51 22 91 104 11 22 299 2606 3 51 22 91 104 11 22 2444 9 28 2589 77 1 1735 427 69 83 351 116 290\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 943 1349 168 11 82 1755 5573 5 22 775 248 3 2 823 1839 12 515 45 1631 12 6277 5 87 1 168 992 436 60 130 24 590 224 1 280 13 1 18 12 20 95 527 68 82 687 2134 502 14 82 1755 24 3184 47 2134 104 22 1227 775 428 3 551 1033 6822 66 6 48 80 104 22 1247 5 5338 436 2134 18 1278 22 242 5 62 104 17 33 24 1837 2 46 731 177 69 104 30 5501 22 2 2729\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 489 3 31 2158 5 1 3930 439 1252 91 6172 2174 13 659 1 692 4270 4 3727 1 1655 4 1 199 6 620 14 198 4548 1 7 3727 80 4 912 22 14 1230 14 2 1009 4 112 605 1 5252 6059 3 122 14 1 3043 4 2 4486 1 1387 6 11 29 1 85 27 12 1050 2 129 35 12 2 8720 5244 38 1 3978 16 1105 13 8420 2056 3 1 199 758 125 34 137 510 36 197 912 72 54 24 58 1032 9103 27 152 336 101 296 3 726 2 84 5 1 13 872 286 1 4549 6 11 1 7855 7 3727 31 163 35 414 2 1189 128 241 11 1 1655 130 549 297 3 187 199 34 48 72 3 1891 9 6 1 166 1655 11 33 6129 2074 14 2 510 7 124 36 476\n1\t70 1107 176 29 1 456 4 81 242 5 70 77 1 1053 69 468 64 154 5006 13 12 1 8910 4 415 35 24 5 70 224 5 1 29 1287 45 23 61 2220 30 44 609 505 517 3378 213 176 29 2001 35 414 19 1 4 22 8278 16 592 13 92 6606 5148 7 1 161 2112 906 6 93 2 185 4 500 23 83 24 5 194 17 42 20 105 78 264 68 95 3151 654 25 1734 69 7 11 4820 420 24 1 319 68 27 1783 16 110 207 28 4 1 168 11 151 9 18 2 28 66 8 87 20 836 8 70 16 13 7527 407 191 24 71 1100 15 9 5 1654 9 304 8751 143 787 32 261 35 57 95 185 4 355 10 5 1 412 191 24 1640 33 61 253 2994 3 130 26 2586 16 1 9810 4 110 436 7 63 72 542 257 671 5 4524 4604 136 82 90 58 7 5918 10 5 1 6154 20 288 153 467 10 213 51 69 187 79 1 1387 154 290 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3046 379 3 8 205 1023 11 9 6 28 4 1 210 104 117 1001 407 7 1 401 764 4 137 180 219 34 1 111 2086 29 225 12 13 150 114 56 335 218 434 3 43 4 25 82 703 8 143 474 78 16 8513 73 1 478 12 37 91 19 2639 180 107 3 8 396 339 348 48 81 61 41 13 724 9 1378 12 2 900 2082 7 154 111 2623 1 730 384 2776 30 2 3644 5 13 2663 1 89 199 3 1121 2363\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 2663 193 8 54 112 5 1382 65 16 9 158 8 169 311 1 18 181 5 24 74 91 4432 209 49 1 388 40 4669 16 82 124 29 1 357 1 508 114 93 105 97 1445 647 2796 3359 1 635 1018 6 2 4750 2859 211 3003 17 521 23 175 122 1 287 35 1123 6653 5 566 142 1 7880 20 1927 1093 41 243 3 1 1713 4378 1 898 22 33 403 1057 51 58 5004 5 126 7 1 82 93 51 6 2 4969 551 4 599 5722 13 92 59 53 2126 22 1 8975 357 488 4 611 13 2636 588 13 2044 79 9 21 181 36 2 8172 189 2795 3 14 1988 120 39 597 29 1 182 37 63 1811 15 250 843 7 13 5944 2153 46 4652 535 1889\n0\t1 60 6 14 2 487 68 60 6 14 2 2784 3 14 45 11 6 20 91 1509 60 196 602 15 205 44 603 113 799 6 1 383 4 25 1326 7681 3 25 35 123 44 692 2 222 4 1 345 287 198 5 49 1 206 7791 44 3 60 123 20 118 48 60 6 55 271 37 237 14 5 2459 1 8 495 55 1460 5 798 1 9856 5636 13 3204 51 6 1 1948 3555 400 5684 4501 34 6271 30 6649 3034 6258 14 2 176 1208 44 3 239 28 14 3 2850 14 19 2 13 150 495 134 11 6649 123 20 131 2 4 2988 14 2 206 9874 43 4 1 2946 22 1386 3 60 40 2 53 1128 16 1 465 15 9 18 6 11 60 495 70 47 4 44 221 699 8 114 20 241 44 16 28 330 7 1 462 60 130 100 24 1253 1 4501 3 19 401 4 11 1 212 1378 271 19 16 102 719 3 3334 1452 8 12 1415 4 1 212 1140 1378 94 5907 13 1853\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 217 12 28 4 50 430 147 4772 4 735 115 13 6312 201 34 2701 17 56 381 1 216 4 8155 1133 395 3 449 1932 5771 4 4585 643 7 13 32 1 505 1 523 12 1684 3 1 121 4455 1 131 12 93 383 7 1 148 2977 20 1 3265 7901 41 43 82 3301 2 6614 41 115 13 150 497 81 22 52 942 7 1 2045 3 82 864 3095 105 91 10 143\n1\t11 2 331 4 1599 9851 397 1353 3226 3727 3 1 857 6 1126 4 1 4046 1842 41 897 68 3590 3 37 97 1114 4146 13 3053 6 20 5 134 11 6 197 86 119 3 494 24 97 961 8817 3 1 538 190 26 105 16 43 7645 17 45 23 175 31 1335 5 369 116 683 9 21 190 109 1851 592 13 858 2 2010 8 320 2575 7 560 5 30 1 5799 6587 1018 7 2 429 20 237 32 106 8 33 89 6821 15 1487 36 4668 1776 4 1 433 3 1059 5695 2102 6 1 113 111 5 8 54 2222 50 522 15 1402 19 1449 3 5150 32 3744 5 5613 2793 5 90 126 3015 4151 81 228 771 4 41 1061 9290 1995 11 320 75 5 1153 15 1 1426 4 2543 17 15 1 2419 3 4 87 23 128 335 11 13 2136 22 20 5 947 16 19 1771 64 10 19 1 1003 616 412 23 63 8105 3 4569 478 45 23 63 70 110 1 171 176 36 33 57 2 300 23 76\n1\t2091 8 76 26 1516 7 667 10 3009 2 3290 28 164 35 6 2 754 948 174 164 35 6 2 2911 4342 1 379 35 6 78 1186 3 68 1 280 130 24 9249 3 28 1091 5427 385 16 1 6480 206 3598 58 3421 5 158 6 169 53 16 1 80 185 7 1749 1 1560 1 21 693 5 778 1 927 6 8266 3 492 4018 7 871 36 1490 8873 6 3 152 3567 19 23 1 52 23 64 122 3218 9662 279 1421 47 14 1 211 75 38 112 75 9146 44 7 137 148 8666 3 57 44 2951 815 1 8066 2701 17 60 6 1722 4405 7 9 280 69 2 280 66 130 24 71 340 5 31 972 651 3 28 407 364 17 144 15 31 631 525 5 86 976 902 49 162 76 720 10 6 722 5296 3 1 948 40 43 7755 2387 66 87 7149 3 8 12 20 5788 7366 15 1 2526 17 133 4018 3 8873 457 593 15 12 227 5 50 796 3 359 10 1 389 2206 4 1 135\n0\t13 252 18 6 38 6309 2 35 198 181 5 26 4861 30 25 231 3 35 198 181 5 26 386 19 34 9 1714 49 2 2471 1225 125 6092 3 4859 122 2 5164 841 14 6309 1123 1 841 5 1519 32 1 2471 1 319 3852 5 1 2471 35 419 122 1 6309 98 7308 2 3630 3 666 11 244 770 14 1 4020 4 2 1355 3 3326 654 561 94 25 94 458 27 39 271 1184 15 1 13 2699 9 981 36 2 84 3742 245 19 2238 10 6 28 4 1 104 180 117 575 16 28 1689 42 105 4178 8 118 43 546 4 1 18 61 928 5 26 9803 17 8 2725 1 427 29 2 487 160 47 15 2 1696 3 101 256 7 4383 4 2 7088 346 896 9 12 2 2513 18 15 904 505 2 961 119 427 3 120 35 22 364 68 4884 1 120 61 463 5174 125 1 5199 4127 41 17 12 2 211 5943 13 614 317 288 16 2 53 18 5 99 15 116 1562 1899 9 5592\n0\t236 2 327 203 21 1190 15 43 109 6819 748 217 1 1446 368 1214 569 6 5484 204 15 2 1284 1170 15 1974 6292 463 601 4 110 8 511 134 42 782 73 10 236 20 78 1560 463 217 1 21 4089 7 1678 480 101 59 39 125 5298 1164 269 7 995 38 95 2565 51 2 156 1909 31 94 1 233 383 4 102 81 15 62 217 275 6 15 2 2853 217 207 592 13 7414 24 5332 1 445 12 167 346 737 42 3408 109 89 217 6 3909 45 162 1939 1365 106 664 1 1165 1759 217 748 22 167 53 8556 1 121 6 6398 17 160 5 1364 95 13 569 6 2 678 158 145 20 56 273 35 42 928 5 1376 5 217 10 407 143 1376 5 437 261 288 16 2 1214 76 26 3336 15 1 1230 203 824 136 261 288 16 2 203 21 76 26 1120 30 1 1214 7035 42 146 2 222 264 17 11 153 467 42 95 501 279 2 99 45 116 1770 17 83 2 5 64 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 7056 3549 3 8494 29 1 1191 4 323 2 673 3 1370 9979 13 1 305 7 1 4388 29 17 1 179 11 863 7 50 522 424 4397 63 8 70 50 319 13 92 80 177 38 1 18 6 11 1 3068 39 123 20 13 948 267 8003 23 118 11 131 19 1 7516 1354 7 66 43 259 3 25 3087 1 80 7975 203 2092 1145 3601 142 2 267 2218 3 865 9 1772 197 2 53 2318 3087 4 9 1591 8 1401 11 902 190 152 905 1068 3543 15 2488 3019 3 13 3382\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 124 8595 14 5687 3 286 25 541 3 3 3006 902 4 124 89 7 1 234 392 755 1592 4 1 2990 333 4 1 7445 2904 10 190 26 109 5 421 2542 104 15 9 541 17 10 6 20 7956 436 36 11 82 27 4373 52 32 1 576 68 7 288 890 14 31 4602 54 41 13 1003 4636 6 11 27 481 25 927 3 55 119 3580 6 6283 3 5480 17 197 1 4 174 1005 106 9 7335 6 80 1649 6 7 25 2106 66 6 3 37 1 1399 6 434 183 42 1 1122 6 45 42 20 722 10 40 1006 2 7757 3561 5 4800 62 634 45 1 410 153 436 1 206 88 825 146 32 19 13 8568 36 2394 7717 40 25 171 125 1 172 5 216 36 33 1271 1 456 15 2 7895 1276 36 13 252 158 480 86 2217 3 4702 6\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6824 1066 7 3 396 50 9652 285 1 1702 663 7 1 2312 774 707 8 54 64 1 7637 209 3 3192 10 12 84 101 446 5 139 660 1 5680 4 707 3801 3 64 48 10 485 36 7 1 3 140 47 1 389 9445 1712 294 419 31 1485 278 140 47 1 389 3236 3 258 49 27 419 2 4510 29 31 2602 296 1908 16 2 103 487 35 12 294 7637 1763 12 2 4787 9655 5 1 7637 3 122 7 297 27 3380 5 418 5 735 7 112 15 1763 3 380 2 84 607 1174 6294 17 20 2532 1954 262 2 3250 1855 35 57 43 46 832 4331 5 90 959 1 182 4 1 84 21 15 84 121 3 885 1667 7\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 8 894 12 4138 55 29 1 387 1 212 833 1136 5 2 701 948 101 2 631 525 5 4558 2 170 410 4 1 1592 197 7 1 225 323 781 95 2308 4 1 7223 1 2431 1329 5119 2440 32 97 4386 642 505 810 3 6476 1765 3139 11 139 19 223 55 94 1 272 40 71 408 7 1 74 4417 2 3285 5 932 95 306 1216 55 193 1 697 119 424 19 2 84 2451 5 87 39 458 3 31 393 11 6 37 4481 3 961 1491 5 798 2696 4 2 163 4 91 756 11 1 2281 6 152 31 45 10 12 2 138 141 72 228 26 446 5 5238 4038 19 2 156 188 106 10 54 352 17 1 22 37 7755 33 59 3272 5 3501 1 902 228 1286 8 159 19 756 3 10 6 373 518 366 249 3425 928 5 2222 3 1369 1 85 5 564 243 68 235 2025 3753 5 3143 689 29 46 1726 2 277 47 4 1731\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7604 3941 9263 56 563 75 5 932 2 3210 3 94 1450 4029 25 1214 255 577 14 1 148 2571 7 58 111 13 858 2 148 325 4 9603 646 348 23 1 453 4 2142 4035 14 1305 1037 3 1922 14 1215 22 237 52 13 2718 83 24 95 8569 7 368 3041 6 39 28 4 4775 4 3156 32 1 3000 11 24 107 7644 2729 157 3000 94 4988 34 125 702 1132 36 2001 22 36 374 372 7 2 630 4 2001 104 76 26 7653 47 7 1450 2017 369 818 5894 982\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36 1 5309 9 21 266 15 4400 7988 7 639 5 90 199 230 11 236 640 119 3 52 7995 10 1986 15 48 784 5 26 1 2990 3511 4 2 2528 164 1083 1 67 4 25 727 98 77 2 3450 66 270 199 260 65 5 1 2528 1559 8351 106 72 2033 11 38 350 4 1 67 6 286 5 5223 2887 191 26 9644 11 1 330 350 153 169 414 65 5 1 2988 4 1 36 1 5309 10 440 5 14 97 5350 14 888 77 1 28 916 2 2 304 2 1642 885 6283 2918 2 2 4015 1104 8 83 118 144 10 34 5609 17 10 2788 297 6 39 37 3391 1 748 22 3391 5431 6 3391 868 6 258 3391 14 3708 10 981 17 936 27 999 5 2883 199 11 244 101 7 2 699\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 71 2 223 85 220 8 226 159 2 18 9 1 121 6 46 6831 1 67 6 2069 1495 3 145 29 2 2807 16 911 14 5 1 9981 10 12 301 3 9 6 14 78 2 267 14 4414 2 3523 115 13 1268 4 1 74 168 395 28 15 1 756 131 69 106 1 898 22 165 10 260 69 1 201 12 4 987 543 10 69 1837 1488 45 33 61 1247 16 2 895 98 8 96 10 228 100 780 15 9 19 62 1 263 57 1 5796 17 1070 4 1 171 779 1 206 31 353 3 674 130 1382 5 101 31 1789 10 1294 1802 12 1 59 28 35 384 138 68 95 4 1 13 1964 3134 17 45 23 117 1064 133 9 69 8 496 354 23 473 5 146 364 73 20 59 42 2 900 2807 4 387 17 93 2 904 665 4 48 91 616 276 3704\n1\t70 142 1 1591 1413 1 102 1768 4162 3 3427 4490 68 1017 2 212 366 371 1323 1 1325 2151 3180 4 3 3462 3 4723 1424 19 8206 13 92 21 40 428 34 125 4360 155 977 3141 12 1 147 15 34 42 1750 3 1912 12 1000 39 200 1 3 170 1995 36 1 879 2769 7 1 21 61 1029 15 112 4 157 3 2380 16 1 3667 1 120 4 4649 3 15 34 62 2387 3 6049 45 30 2082 41 19 8810 12 350 3 10 32 28 5 1 1885 2828 1 1921 61 2 4761 4 1 290 133 1 2670 342 157 15 132 1468 3 121 34 3847 3 684 286 5 24 1 410 735 16 126 14 322 6 48 56 89 9 18 216 16 437 1 233 11 1 206 153 369 23 118 45 62 733 2236 94 1 21 41 20 151 10 34 55 52 279 13 1601 7 399 6 2 9025 140 1 2868 7029 4 2 109 553 4459 684 3 2 21 8 76 373 1110 5 16 1231 3122 7587 7 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 137 288 16 2 967 16 1 514 1270 2602 9251 4 1 9 213 110 779 6 10 2 1267 2331 4990 10 6 2 5801 103 1189 66 40 162 5 87 15 1 1267 17 1674 1123 25 442 5 187 2 732 5 3921 67 38 31 2602 4284 35 6 2 2053 4 3 4850 13 2699 1 82 1737 51 22 2 156 2103 14 49 2296 1 2146 5 66 27 6 3 3738 43 686 23 1374 36 2374 54 24 248 45 27 1808 71 132 2 13 8 159 59 1 2614 17 8 173 830 11 1882 14 78 4 9 930 54 24 71 3606 13 872 48 232 4 2 442 6\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6116 180 107 43 862 3276 104 7 50 85 17 9 270 1 13 8 173 2783 7 911 75 91 9 21 152 705 1739 1 119 11 213 56 1057 1 930 505 1 5185 2384 7531 16 23 118 4875 8 88 139 19 34 1393 154 103 177 7 9 21 6 463 2212 8045 930 41 8 2783 5 261 35 451 5 99 9 4285 13 1964 3238 5 867 8 24 9 19 50 42 1503 295 260 29 1 851 1589 1735 4 1 568 8 339 55 187 9 1335 16 2 21 1695 207 75 91 10 705\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 149 1628 753 46 2186 3646 1 8 57 1 1617 5 760 1 305 32 2965 15 2 2219 32 1729 572 578 1 98 3231 2961 4 1 18 2308 1 32 5926 1933 16 1005 4050 3 6479 16 665 1 18 1049 2453 1752 19 480 84 7 7370 4 2453 1752 27 12 6217 2799 98 2453 12 5550 5054 2453 1752 12 100 6217 4 2357 170 12 7 7562 49 2453 1752 12 4611 16 9 933 2453 1752 3 25 711 106 205 643 183 1 3912 472 1888\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 653 5 64 9 18 1882 41 52 3 214 10 109 9859 4170 57 1168 3 1 2654 12 38 5 9 18 5787 26 6804 14 28 4 1 113 104 5664 1838 488 6671 81 32 1 128 5 26 6979 4 4179 5 543 1 398 588 1 18 1 228 4 1 3119 140 1 136 554 5 1 98 1124 2155 66 57 39 327 3 211 6 1 111 4 6396 1 5909 4 1 296 30 3 167 1 4 147 3 1 4 5003 32 2 2599 558 1297 4034 191 64 10 2607 225 3464 16 5765 4 2753 4 2921 140\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 718 151 23 2203 34 200 1 10 1263 1219 3 1528 3066 32 1 10 289 23 75 3 75 8002 257 1849 63 1142 1 9072 958 6 29 1 477 3 29 1 182 4 110 94 399 86 4725 958 6 4441 9329 15 1 5570 4 5039 9 718 6 618 2 4812 1782 4 132 2 686 10 63 6687 26 728 107 30 170 537 220 10 1281 1373 3901 228 109 26 945 14 10 6 20 2 1015 4 1712 718 17 2 2 1193 190 98 213 10 279 257 3781 73 9 718 1501 11 7 9579 132 2 1212 128 5027 480 1 264 30 536 7 3 6741 72 2292 5 995 11 72 22 185 3 4 9 6360 34 188 1050 9 718 1523 199 11 72 221 2 1205 3369 404\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 37 1096 8 653 5 64 9 388 29 1 5504 8 12 288 16 43 749 104 3 9 28 590 47 5 26 2 306 4773 8 336 11 1 141 2 112 67 4 247 38 43 304 4990 42 2 67 4 43 304 35 314 314 5 26 42 2 501 109 2878 3 1529 1171 67 15 3088 4170 1301 265 1256 7 14 530 42 93 165 2 2038 1197 7 10 16 4122 2473 10 303 79 6039 3 1578 5 99 10 805 66 8 114 2 342 52 268 183 8 590 10 1107 8 496 354 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 9 21 12 2 1073 8 54 24 340 10 2 1731 850 106 87 8 256 10 9 111 361 180 107 679 4 464 203 581 17 9 28 151 358 176 36 2084 2015 42 14 45 2 526 4 1665 1132 636 5 90 2 203 158 1241 62 438 7 3 636 5 87 2 1073 98 337 155 5 2895 3 98 636 11 33 130 24 39 1544 15 4717 29 297 38 9 21 6 311 1 668 868 1743 1 259 35 6915 1 1 1252 1 3387 1 2653 1 1014 51 311 22 58 911 5 1431 476 850 5865 1661 51 7595 5326\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 80 4 1 710 124 180 107 69 3 381 69 61 52 771 68 1357 17 207 6545 8 214 126 1476 3 15 1930 1488 8 114 29 28 272 560 45 12 7 154 710 21 117 9859 10 384 11 13 252 18 40 1 166 240 2946 3 57 2 53 17 98 10 726 7495 771 3 52 6 514 16 2 589 17 20 16 2 701 5251 94 8 202 1310 3072 133 2938 13 1 21 12 52 36 2 309 15 202 34 1 168 262 47 7 28 5149 9113 45 23 112 23 130 36 8 175 2 103 52 7231 16 2 701 471\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3179 4 3677 6 31 2316 129 2221 4 31 2342 5 1173 1126 4 6103 3 3 2 2861 4937 7 1 226 6521 4 9017 5 2 35 8426 5 90 112 5 2 164 183 13 8992 3 8051 14 31 4937 35 6 2061 655 81 200 44 5 186 474 4 4341 13 140 2712 3085 5 186 185 7 3379 16 1159 1817 15 1749 2 1683 112 67 7 66 102 81 328 5 352 239 82 149 1 1611 5 183 85 1225 689\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 53 1267 589 66 6 46 5060 3 93 46 548 5 81 35 36 53 121 3 14 3 1494 14 10 6 519 3023 5 77 1 1343 3 423 1514 5 1462 14 109 16 1 20 16 81 35 87 20 36 5\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1396 143 36 9 135 10 7 1 2063 3 14 2 1122 2071 59 2 1953 781 7 66 12 2 84 4897 73 10 3898 598 243 68 296 1569 3 130 24 71 620 7 5980 13 9124 276 1528 3 6 2 400 1321 1147 4685 6 1 5564 129 32 1060 3 40 29 225 843 168 66 3006 1 545 4 11 7490 382 101 2 400 264 13 10 1714 2 604 4 268 32 267 5 315 267 5 953 5 1406 69 17 42 8375 866 3 2 4039 4 1684 1276 1074 5 1 855 13 8844 10 15 31 1089\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 192 2 1185 1465 6775 3 321 352 3 708 32 261 35 40 95 3547 29 34 38 1 833 4 7126 7 158 7 1 4413 704 23 24 881 140 146 696 41 39 175 5 878 3 352 79 2531 52 38 9 158 95 878 54 78 3461 1 708 76 26 314 4580 16 3 76 26 2403 7 50 428 37 45 23 24 95 3547 29 399 4925 273 8 63 256 126 5 333 3 23 88 352 79 70 31 8 192 93 6775 2 3 37 45 23 24 107 127 124 14 322 8 54 1116 10 45 23 88 597 708 19 204 19 11 1479 1038\n1\t1 2797 7 95 52 68 1 80 5026 744 220 145 59 2507 3171 17 1 215 54 24 5 90 2 3439 8694 5 4960 1 21 11 1026 29 9 2115 8 497 145 523 9 73 8 230 11 45 317 160 5 7284 2 2797 7284 194 17 83 90 10 146 422 11 42 1265 145 20 273 45 492 40 248 235 5788 1571 17 32 48 8 63 64 37 237 1 188 27 40 248 22 34 370 19 275 6341 916 72 54 20 24 1 719 45 5071 57 20 428 3232 3 72 54 20 24 7 86 5078 45 3150 57 20 57 37 78 1245 403 48 229 130 20 24 71 3380 7 1 74 1888 17 42 105 78 5 134 11 10 54 26 138 45 1631 57 303 109 227 5239 73 1 158 6 2 3 304 216 4 86 8548 13 50 1795 356 4 3 2059 2582 458 7 9 1723 1 821 481 26 1 21 3 7583 3 50 7697 5 205 1063 16 403 48 33 2723 37 11 72 24 205 557 14 33 2620\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 20 14 53 14 34 4630 1 171 22 3 1 67 6 46 8 1451 1189 17 2207 4 1 3557 6 6 39 1408 114 33 1483 9 10 151 297 2194 1 59 53 177 6 1 861 3 1 1614\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 20 2895 14 1 74 185 9 6 822 3 2318 2815 36 7 37 97 1 238 418 260 295 15 58 17 236 37 8 83 3 148 11 705 45 8 365 137 22 169 1219 1163 2956 1 1410 624 7 2125 4 6991 66 876 5 50 438 1 233 11 1 250 651 204 6 5572 13 252 481 26 179 197 1 74 141 37 8 1498 9 5 110 316 51 6 105 346 5784 3 211 5810 42 20 254 5 348 48 3000 9 21 6 89 1107 316 51 6 56 678 647 9 85 55 52 3449 258 1 4 1 7885 42 36 43 1741 1702 7885 81 22 80 4 1 171 191 26 29 225 17 8 96 479 377 5 26 5230 41 2730 43 314 30 1 510 22 169 152 9 18 83 24 78 7 1205 15 1 74 1871 3 9 6 527 68 10 7 154\n1\t0 0 5005 6421 292 97 134 10 6 1 210 4 1 1125 8 83 96 11 10 6 9 28 6638 1 1556 1886 8042 876 425 7536 5 90 23 539 3 3006 23 4 1 53 2901 268 49 23 54 24 338 5 24 166 299 14 1 120 13 6463 8 1023 15 1 233 11 10 6 2 2901 18 17 267 104 4151 662 377 5 26 16 7059 22 650 1 334 16 2916 5 4008 1069 132 2 18 285 2 41 146 36 11 6 46 53 16 246 2 46 53 1425 13 6463 97 878 38 1 1234 4 1349 7 9 108 70 11 4951 1 3462 4 1886 559 36 137 32 1 1973 48 54 23 36 5 11 6 20 29 34 48 54 26 7 137 3443 13 6463 5 8 96 11 45 23 22 2 23 191 332 64 1 141 3 55 45 23 22 2 148 2260 65 164 41 2 1696 23 130 64 10 45 23 128 24 2 1886 438 41 23 396 96 38 75 10 12 101 2 188 36 656 1359 16\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3756 4 1 80 304 104 117 89 7 4729 6 46 1100 5 81 7 4729 73 3157 94 392 314 5 414 7 1 166 7 1 1585 2004 830 75 1105 1261 7 257 913 4338 119 6 7 1 367 58 5 1 3 3 73 4 11 257 432 1089 16 1214 2 913 61 81 143 57 78 319 12 59 4528 3 2566 12 2566 189 16 170 81 31 2 282 12 37 627 11 94 1801 172 4 62 32 6 128 70 371 94 34 9 172 19 7548 3 33 357 5 320 4 62 62 337 5 1 3 390 1134\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 690 6 2 211 164 55 197 1 1 74 767 8 159 4 9 105 396 89 716 29 1 9507 4 25 14 8 24 219 9 2425 51 40 71 52 217 52 58 28 19 1 201 6 56 3516 32 25 2485 6755 13 499 181 5 79 14 9 1022 40 11 690 6 355 52 4771 15 1 231 3280 1508 1174 29 74 27 17 27 6 355 52 217 52 77 2 9 151 205 122 217 1 289 33 57 1253 2 342 4 120 16 690 5 309 142 9 349 854 25 5367 1508 6 355 52 217 52 602 7 1 6199 13 7624 1916 6 128 1057 17 20 14 1284 14 576 8 96 10 6 5 134 15 356 4 709 217 551 4 53 690 40 2 53 680 4 101 204 19 4573 223 94 690 6848\n0\t3 37 778 169 4524 1733 1417 854 15 103 56 5 1690 10 965 2 78 4684 263 68 1 929 28 11 12 9690 960 105 97 32 194 3 51 12 20 78 7 1 111 4 1384 16 1 120 3 1261 33 61 1107 10 12 38 1000 16 398 3196 3 10 2300 10 47 223 2160 3244 47 6 10 57 31 6018 115 13 92 2051 5857 5430 3 22 15 62 120 3 2725 31 4602 1300 5 90 65 16 1 7 86 409 4117 14 1 9161 4244 4 1 12 4789 2730 44 1921 148 6067 16 1 624 3 44 1296 4 438 6 2061 8 497 101 4319 12 53 2160 195 229 1 80 177 8 310 577 7 1 865 12 11 5191 4169 464 1224 5 978 3 31 3383 6460 10 100 343 6077 41 165 7 1 744 17 10 114 1382 47 36 2 5881 3 2934 328 5 70 1 80 47 4 62 4040 17 55 15 10 6405 1343 10 741 65 101 146 169 300 10 12 837 5 17 133 10 39 247 1 3060\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 5 1023 15 80 4 1 82 12 10 2 2 5 79 10 2 103 5 78 959 1 267 4867 8 88 24 71 2 84 18 197 1 267 3 10 12 2069 4130 863 599 77 1 3 4687 25 3774 7 147 3820 75 97 268 87 23 549 77 275 23 118 7 39 75 88 626 4062 65 5 2321 1 805 2 267 41 17 10 12 128 548 258 16 2 2714 8 381 1835 60 407 2 304 651 3 181 5 186 44 5436 2556 60 6 2 1186 651 11 6 160 5 26\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1233 69 23 175 5 2476 1956 19 75 4771 33 22 15 62 3 1 2685 3 1714 69 98 70 62 7319 2671 32 133 9 4976 38 374 253 9574 3824 203 2092 7 1 7212 8197 52 68 95 18 8 40 117 1586 1 21 1819 15 5405 3 6636 7 2 111 11 6 301 7546 100 2764 3 7 1 232 4 8583 5814 4 2543 11 6 30 1 1217 234 106 95 7 2543 6 5 235 32 5 7718 181 5 26 5184 16 2 2812 2308 4 25 3 14 1 4 8591 5757 1162 48 27 615 7 411 3 508 213 198 167 69 17 289 75 28 63 5471 3 15 3669 48 123 720 467 197 8 112 9 108\n0\t2 164 15 2 7343 4922 14 1 644 86 747 5 64 9 164 17 27 229 89 53 333 4 1 319 33 1390 550 6 364 6402 68 1 1210 14 8 52 396 343 2502 125 1401 41 55 1867 6 19 2870 14 1 644 1341 8859 3 27 6 46 1474 7 9 2482 8 16 28 335 283 7 39 38 16 43 302 1 164 437 1 59 82 185 4 1 21 11 2983 79 6 1 644 2271 186 19 1 632 1162 204 72 22 620 510 632 1396 35 7 62 1514 5 1173 9 6 601 30 601 15 1 644 976 35 6 31 35 65 5859 936 257 8784 216 6 7207 601 30 601 15 1 93 1474 6 1 644 3318 1858 35 29 28 272 2506 11 27 1 8784 65 632 73 36 11 83 5 66 257 2594 15 31 11 1 4907 39 153 70 47 2160 2958 236 2 222 4 2 4389 38 1 1018 6 31 632 4907 30 1 914 3 903 5 790 9 21 6 2 243 1669 572 15 2 156 1474\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1104 91 29 101 7023 13 252 103 2067 383 826 1732 1 3934 184 1250 136 42 631 1 18 213 242 5 26 556 1067 11 62 1 18 6 128 908 565 4299 10 151 7 1032 176 184 13 659 2756 50 606\n0\t0 0 4828 8581 460 14 2 1081 35 178 5 149 47 35 643 25 12 109 179 4 7 1 9288 618 385 1 111 27 2486 75 25 711 381 447 3 11 2 1235 506 6 5 4828 8581 6 46 53 7 9 141 7 233 19 1 3397 4 25 278 737 28 54 995 2264 5 3988 602 238 2237 11 367 1 1097 380 8581 162 5 216 2159 7 698 8581 6 301 303 47 5 2570 7 2 5801 953 66 6 205 961 3 8941 9826 6 93 501 7 233 1 21 557 113 49 10 3835 200 1 1300 4 8581 3 1314 57 1 21 556 1 85 5 3684 62 733 1 21 2893 71 1002 7967 618 1 18 6 1 238 6 1 119 20 340 227 4887 78 509 200 4734 4 25 7119 3 1 21 6 2637 3 2348 308 805 8581 6 152 56 53 794 6 9933 17 1 21 39 32 28 980 5 1 6893 66 151 9 18 591 4652 45 235 422 1024 10 289 75 2107 8581 424 14 31 13 47 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 261 35 123 20 149 9 18 722 123 20 365 641 1211 9 18 6 20 2 1618 1073 10 6 331 4 28 3 2364 8508 3 76 90 261 35 451 5 2655 1 1928 35 6 403 2 5492 1418 76 4750 23 7685\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 51 6 2 163 4 771 4 2629 127 2569 207 34 9 18 705 42 38 2 53 454 35 151 2 91 73 4 25 27 432 7613 5 102 4319 3129 32 98 19 86 2 6011 19 550 8 83 118 29 48 272 23 87 146 38 110 51 6 2 379 3 583 47 51 27 40 84 1687 4 4593 3 17 51 130 24 71 43 268 49 27 88 24 6189 1 18 181 5 26 4644 8 1331 7 1 4165 4 1 72 57 2 222 4 2 19 1 1143 4 127 3468 4973 144 54 275 90 2 21 36 2782 48 6197 123 10 24 571 16 1 2582 6 400 17 11 88 24 71 15 31 631 119 5986 1608 530 174 594 3 2 350 4 50 500\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6552 36 9 18 29 80 23 191 26 7 112 9726 2 9900 706 623 66 6 38 3 2347 157 1650 3 20 39 599 2249 26 1002 46 5605 73 419 31 1617 5 539 3 1717 125 154 625 938 4 9 141 3 59 45 23 889 6733 3 23 63 3082 3 335 5 1435 335 1 18 23 191 112 415 36 35 6 37 1316 3 191 4429 2 103 81 15 84 3 1884 13 614 23 889 34 127 468 26 1458 5 1090 9 18 774 394 13 150 100 1309 14 78 14 32 133 9 3665 3 8 55 1180 5 1717 136 1094 7 43 529 669 198 70 1875 53 188 780 5 9311\n0\t0 0 0 0 0 0 0 0 9 131 6 2007 1 716 22 34 464 3 39 355 527 3 2194 8 192 28 4 137 81 35 12 100 2 184 325 4 4406 3498 17 29 225 8 338 10 29 74 318 10 165 77 2 200 1022 4069 34 1 716 57 71 262 47 3 1 120 57 162 5 450 109 29 225 4406 3498 12 53 29 1239 103 19 1 6 3705 489 2518 267 11 57 162 160 16 10 32 431 3441 35 22 1 81 35 22 133 9 131 1441 8 192 101 1784 6 10 161 81 41 300 39 81 35 152 414 19 1 300 1 716 22 16 126 3 33 216 9252 8 83 118 2 625 454 35 1143 9 131 3 173 820 10 2758 1 716 22 400 961 3 1 120 22 55 364 1619 68 7 4406 3037 10 495 226 78 1534 73 34 1 1246 9 131 40 57 181 5 79 5 26 370 1135 19 1 804 4 9 131 101 5327 66 6 264 3 24 1699 5 2 84 880\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 490 8 2564 6 28 4 1 113 1482 117 1001 42 37 1011 3 3391 10 56 2610 437 145 1096 638 2854 2012 11 2 21 153 3237 321 2 2985 119 41 6411 9000 111 5 420 36 5 64 87 5920\n1\t406 172 30 9933 6 1136 142 5 31 5512 766 1 766 6 30 1 975 3 37 60 6 1108 5708 32 3223 13 92 67 6 396 9167 14 863 65 449 11 60 190 28 326 26 15 44 975 3 15 44 2778 533 44 157 60 762 31 4 647 642 2 1360 14 8653 379 5 44 1825 2375 3 2 1767 3 8544 9459 35 5488 44 2 177 41 102 38 8206 13 593 6 34 125 9 3236 66 1664 609 861 3 43 4410 2263 8 4000 23 5 99 9 21 3 20 26 1 21 1 1666 5481 999 5 1708 1 3593 4 48 6 2 2985 471 136 10 5162 5 1 3054 1637 14 109 14 1 2602 441 205 4 66 61 37 4708 7 1 1158 1 18 1373 306 5 86 8195 4476 1 672 4 3256 6349 5 5868 7878 13 150 339 905 5 5 1 11 3355 9 135 6880 10 5 867 245 9 6 28 4 1 156 124 11 8 63 99 316 3 805 3 66 40 303 31 1183 19 2522 13 1149\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 40 5 26 1 113 1260 8 24 107 42 50 1522 3 8 96 10 2683 46 542 5 1 56 151 9 2 191 64 193 6 1 1084 4 1 102 466 360 3744 6275 6 1 113 6944 8 24 107 19 412 7184 3 7748 6 1 425 2053 4 3 14 1 145 273 80 81 170 3 908 1215 6855 6 2 1946 29 2 416 16 624 7 1 35 44 14 2 7 1 6 2649 1 2192 4 29 1 184 3630 3801 5 1 170 4788 4 1 1355 3 5531 2250 1803 14 1 2017 139 19 27 621 7 112 15 1215 3 1275 77 1380 2 156 1650 5 328 3 64 45 1215 6 14 7 112 15 122 14 27 6 15 51 6 2 1085 128 1000 5 26 2144 29 3801 3 49 10 6 42 363 22 6 2 866 3 109 1171 589 15 327 2840 3 1612 1759 1069 14 8 367 1188 313 121 258 32 3\n1\t30 526 4 4827 6 9738 15 62 221 7444 3 4421 66 1605 5 90 1 243 8161 488 5 80 1046 1524 915 4 4740 3408 2316 140 1 2316 453 4 1 1440 7 233 9 1524 4682 170 968 4 6 7 1654 2964 5 1 243 3 7288 8765 4 14 5484 30 1072 5953 6010 5043 3 578 7680 8 2172 11 132 31 9907 111 4 770 14 7438 30 968 54 20 24 390 2 864 57 10 20 71 16 7670 745 25 4465 3579 2188 7 1 1404 32 25 435 3 1747 2 52 661 111 4 1255 390 2 4084 5 2 732 3116 669 192 1699 5 7319 4598 3586 1026 1 7 1 2094 2352 4 599 1 1404 618 25 16 6622 243 1148 122 1 19 80 1 250 796 7 1 1125 8 6020 32 1 684 4137 189 2093 3 1 797 2088 1091 3233 1944 30 66 57 902 6129 1437 45 1 1261 189 127 102 9406 54 2210 660 1 542 11 33 13 890 5 140 9 2953 3 3037 1 330 1022 4 495 26 105 237\n1\t3 98 255 140 15 2 84 934 4 13 743 259 177 6 2 18 819 373 107 1704 3 1 1132 674 563 11 49 33 274 224 5 90 110 72 617 56 107 95 147 684 1545 220 1 4633 1246 4 9 28 41 11 28 6 1135 655 1 3225 4 1 382 67 4 487 762 2784 2 259 177 123 8582 11 15 2 222 4 2 396 605 1 168 77 1 2271 7 639 5 187 1 410 2 680 5 1 1127 1676 3 1980 119 7069 29 13 1701 1 10 93 55 999 5 299 29 1 243 2094 4 447 3 6974 11 921 1 2658 4 154 684 1073 37 55 1 47 51 228 70 2 2382 47 4 592 13 872 3675 8 96 72 63 34 1023 11 72 555 257 417 22 14 797 14 1856 5383 417 7 9 108 145 20 160 5 2600 10 16 1259 17 49 23 328 5 1346 5 116 1327 144 1 3 1 5784 1320 22 738 1 7 2433 8 1379 23 39 134 3796 2 259 3 597 10 29\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 851 4573 1459 9 65 378 4 1 113 3530 2022 137 7 1 6 56 762 434 36 79 7 1 113 111 13 1964 20 273 704 31 839 15 469 3 8727 362 7 157 151 79 2 325 4 1579 7355 17 8 407 335 25 8 93 335 648 3 82 7111 3662 136 2 222 8 407 96 9 4283 86 221 11 153 6282 8134 41 5489 5 26 2 1529 3950 204 72 63 149 1 3 4 2113 3 7996 77 239 3 152 253 356 3 253 199 175 5 414 157 5 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 240 1541 4 708 11 10 54 26 254 5 734 235 1467 245 646 5764 9 12 2 46 53 238 21 15 43 84 274 468 1367 8 1 1818 8 143 38 1 551 4 3 8 143 1 1014 335 45 16 48 10 6 1046 2 109 845 855 238 135 8 88 139 19 17 180 89 50 9066\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4771 111 4 3343 47 6485 4168 396 15 5 1431 188 11 27 6 52 38 68 80 6 169 51 6 28 82 129 7 1 21 11 1506 440 5 2985 7443 712 52 1587 68 9 259 130 100 24 71 340 2 757 5 3 23 118 317 7 16 2 13 92 111 1 4 184 3938 5511 22 1012 6 46 4 2 1 233 11 58 28 789 75 127 559 89 2 78 364 472 474 4 1636 36 2949 4219 1 333 4 161 21 3502 533 12 6529\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3046 417 531 63 256 65 15 2 163 4 104 17 9 28 12 105 345 16 199 5 55 99 10 5 1 714 10 12 39 37 509 3 20 55 1 624 11 2371 7 9 18 88 359 79 2034 297 12 39 3 13 92 121 12 29 268 52 268 565 1 80 761 129 7 1 212 18 11 23 39 405 5 1288 54 24 5 26 1 250 120 113 4699 1 52 8 159 122 1 52 8 405 5 7168 50 1250 4678 118 48 2253 1906 635 145 648 13 92 119 40 71 248 37 97 268 183 8 96 33 130 26 30 82 18 1530 10 6 2 53 312 17 1333 34 9 18 13 5944 9 18 63 59 26 219 45 30 116 8550 5 552 95 3303 32 116 2567 4077 45 23 24 332 162 138 5\n1\t1563 30 2 4 7229 6862 69 4 912 51 22 277 19 2870 69 3 1 9532 2046 2258 4 122 5 8877 1 77 4476 122 5 1124 1286 7725 2334 388 4 1 59 4208 117 89 189 1 3 1 6705 4 69 2 1486 556 3492 172 1188 30 1 6366 554 457 5816 6112 38 1 4 1 388 664 5 86 1809 7280 17 1 864 4 1 795 2769 6 8579 30 2443 35 498 47 5 24 71 5 30 2 637 32 1 5712 6715 4 2 2531 66 51 4423 172 738 1 6715 6 2 1528 1212 367 5 24 71 1711 39 183 1 5318 6 3592 5 1 282 3 2378 44 5 122 5 31 4658 27 6 3 2151 30 1 2 2075 4 15 5058 9316 3 1 869 5 3462 77 7286 4084 94 1 344 4 1 14 630 4 126 56 6319 571 1 431 741 49 1 2486 11 6 7 233 101 5 1 6366 2829 32 7 4 5269 31 7319 5 1 3 72 560 48 76 780 26 3884 7 2 753 4 218 185\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2343 422 6 303 5 13 3440 284 34 1 746 204 3 80 22 260 778 409 245 28 454 55 337 37 237 14 5 637 9 18 510 3 11 6797 10 883 146 385 137 4172 48 2 409 8 1266 676 89 9 135 1089 116 671 13 9 12 1 46 5083 2442 4 3257 11 40 209 385 7 5775 13 92 80 5287 177 38 3920 6 75 78 319 33 1019 5 90 110 45 9 18 63 26 1716 51 22 58 3 5787 72 24 58 1412 17 5 70 1578 16 3 2019 1 13 1701 137 4 23 35 22 77 1 8297 3313 1 147 18 76 106 3920 100\n1\t82 120 6982 7 5 1 66 6 2 4195 6 2 84 5444 35 88 24 9006 25 3495 7 5 9 280 57 10 71 9253 47 16 550 55 6617 12 1317 2262 7 25 280 4 1358 1873 115 13 92 2818 4 9 18 123 20 4004 15 9 1249 17 15 1 4480 105 97 2600 1 3 9 1029 15 37 78 1391 844 23 1 67 3 120 190 24 71 364 68 17 7 48 18 4 9 22 33 20 82 104 132 14 3346 993 2385 1018 12 1783 5 186 9 280 3 1066 15 696 915 729 3 10 5 132 2 3116 11 23 343 2 15 1 250 129 30 1 182 4 1 18 480 48 27 57 1613 1209 88 24 340 578 5582 3 25 1176 2 156 57 275 2705 5 328 3 149 1 4845 9 54 24 71 31 1930 471 14 10 424 23 76 149 1 9958 718 52 1240 1 358 4447 78 52 23 76 853 32 1 305 11 4919 12 20 2 91 2112 17 20 2 46 53 28 22 80 1098\n1\t73 10 12 46 125 1 401 16 1 67 1933 3 1 233 11 5204 54 87 235 5 6322 84 6415 3 5475 435 57 929 25 752 77 29 1 717 4 2972 3 60 1662 65 7 2 8603 6452 4 2 569 15 46 345 81 3 44 435 2183 2 66 758 77 25 408 34 2329 4 976 120 35 57 62 1128 19 14 1 67 5204 762 65 15 164 94 164 3 963 615 2 259 35 40 297 3 6 2 8074 2471 3138 10 6 84 5 64 2 46 170 294 8232 35 12 59 2992 49 9 572 12 1160 3 2367 114 20 55 70 5 74 3381 15 20 55 16 2 46 170 690 460 385 15 2315 3574 3 205 419 1485 2263 9 6 2 84 21 32 66 12 1160 30 6505 3 12 3746 65 7 2 2818 16 97 172 3 39 937 6 101 620 19 1 4055 1250 9 21 6 243 4759 1074 5 48 72 793 19 1 368 8052 2087 17 7 10 12 46 6812 5 99 9 574 4 135 335\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 287 197 95 60 39 1912 44 157 295 3 144 60 123 20 230 9 88 26 31 240 11 54 321 2 53 441 2 327 1167 3 53 10 153 24 95 4 9 18 6 400 1466 51 22 59 3 58 59 2281 6 17 292 8 192 2 568 325 4 8 339 820 9 108 55 27 173 90 9 18 1 18 6 20 14 91 14 3 45 317 31 7648 325 41 36 10 2690 23 228 300 36 110 42 20 722 42 20 1476 42 20 50 83 99 2420\n1\t2 4 3265 7901 1367 1 2602 559 1795 77 1 178 15 482 3 2119 23 54 100 64 7942 77 2 1055 178 7 82 124 4 1 1165 1013 33 61 19 2 1591 41 7 2 184 2168 204 1 315 559 22 1157 29 1 1940 3 1299 15 1 2349 8 93 70 2 4591 49 1 1383 6623 87 2 4408 4 236 93 1 4 1 3755 2377 4 1 147 12 1 147 3138 3 1750 61 37 298 11 3719 1622 1 3961 47 4 1 1397 100 64 146 37 770 897 588 47 4 4 5871 3265 7901 5211 1 30 1 115 13 103 773 5420 12 100 138 68 60 6 372 1 1596 60 924 55 4011 44 2919 14 60 66 12 28 4 44 115 13 92 691 6 1434 1 2 604 6 360 7 11 1 624 720 77 62 4982 19 1 3417 140 268 7192 15 34 86 3647 778 1 624 5904 125 1 443 1851 1 232 4 802 11 54 20 26 107 16 6491 982 7 2 156 2017 1 397 3920 54 132 6812\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5921 9124 6 2 360 651 3 204 444 1051 8 56 338 1147 4685 7 1 1779 808 427 3 27 6 46 53 204 854 9 6 20 84 616 17 8 12 80 6539 340 80 124 127 663 9 6 298 3442 7940\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 54 24 381 9 18 1056 52 57 20 71 16 1856 1829 19 97 362 1755 4 1 1756 5348 3732 4 1891 14 52 3 52 1396 2111 11 21 33 159 10 14 101 1613 1856 6 515 20 3 25 7630 6 610 3230 13 4511 4 1 171 7 9 1493 382 61 243 53 1041 7310 3 1 45 23 99 9 141 23 54 24 1887 6228 202 154 2519 11 6 318 27 6 4966 3 6297 1 4487 47 25 115 13 92 293 363 61 3459 16 1 448 7 2 1493 18 132 14 9 461 7 51 213 78 11 1421 47 7 50 438 14 53 41 91 16 9 108\n1\t7 28 7242 178 106 44 1299 2447 22 475 256 5 1 13 2136 173 56 771 1652 38 1 1249 66 951 142 15 3619 5702 3 153 369 65 32 9481 3042 6221 6742 3 5205 542 2222 47 1 82 580 3 1681 871 7 1 803 13 150 173 56 134 235 1332 38 9 21 29 399 193 4545 1593 5 24 25 129 8398 32 1963 6 7 1 182 2 900 372 1 3794 2599 4 1 1086 35 1275 65 2 1044 4 84 17 6 4940 1728 4345 4 100 5 235 229 153 1857 78 7 1 111 4 129 4887 69 27 57 25 5269 3 1544 5 2350 13 659 1 769 116 886 493 76 80 407 3 136 468 1458 20 230 670 14 1 3400 76 373 20 26 2 351 16 1 85 1019 133 8715 1236 10 7 41 4558 10 14 2 2551 5 4622 142 16 985 16 49 23 175 5 26 4927 5 2 956 4 1288 254 843 41 1 7104 7391 1772 4353 26 116 103 1085 11 9 956 143 56 2591 23 78 29\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 57 219 375 663 21 1363 4 9 18 11 182 1122 12 39 102 168 7 1 108 1 1972 12 2889 7 1 315 652 1 1 3227 409 37 9 2543 485 890 5 283 1 18 3 12 20 1558 1 558 7946 12 101 37 1 1363 168 61 16 3015 1804 61 1977 285 8 96 1 393 12 7170 30 783 5492 7 1 2 84 878 32 1 9 130 26 7 1 166 897 14 298 16 148 1214 589 41 314 14 2 1055 3703 36 3721 41 5285 197 2 1232 12 16 4978 9631\n0\t79 3 22 2 325 4 1 518 335 124 11 525 5 348 1 1387 14 78 14 33 63 258 45 479 370 19 31 697 3602 441 3 41 23 39 36 53 581 1611 484 41 3047 3488 23 76 323 9 21 3 5268 508 5 87 8 515 1595 9 18 3 4318 10 57 100 71 89 7 1 74 2416 17 220 10 12 89 8 54 24 7421 10 5 24 590 47 9961 68 48 10 2723 300 43 326 1 148 2998 4 1 67 76 209 140 3 26 89 77 2 56 84 9974 19 34 4 39 48 653 5 25 823 94 25 1343 303 110 688 318 11 85 255 34 72 14 31 2996 3 41 596 4 1 518 5444 70 6 9 747 351 4 21 3 31 464 3431 5 1 668 8820 11 12 587 5 24 303 10 130 93 26 4139 11 33 114 152 333 1224 3 2 156 508 14 109 7 1 2493 17 20 1317 1024 23 100 70 5 785 227 4 10 5 56 335 10 55 7 1 4631 4885\n1\t55 30 3328 1 169 815 1 6267 18 7526 13 92 18 1026 2 846 3 25 231 35 1023 5 99 125 2 1863 136 10 6 8209 16 1 51 61 4 1 334 101 2590 3 1 226 6122 337 1184 3 2035 25 1499 17 783 6 2173 10 76 26 1233 3 27 63 333 1 2446 5 3038 25 7344 94 2017 4 3 5494 245 783 432 2 3 406 6 10 3254 6608 41 6 51 146 7 1 1863 11 6 2037 122 13 1268 4 1 546 38 1 18 6 1 507 4 11 9135 1 1863 6 46 3 1 7185 22 9638 286 198 10 6 93 6088 49 585 6 2914 25 6092 140 1 783 278 6 93 28 4 25 46 1726 1 898 47 4 79 3 253 79 273 5 70 47 308 7 50 430 178 6 49 27 6 648 5 2 1272 32 1208 2 13 92 5666 6 8066 16 203 104 7 50 1520 3826 1 47 4 930 36 1 2412 3 1 3482 1897 5603 10 190 26 2 17 6 373 2 7101\n0\t1 120 3 471 236 39 58 2771 3 7055 7641 740 9 7472 3531 94 2 3166 10 39 440 105 254 5 2883 23 11 10 621 77 6810 5991 3 6894 7 97 691 32 660 1 10 39 165 243 133 275 99 2 8929 249 412 94 4222 1 2863 12 1 376 19 1 880 322 10 114 24 52 1880 68 1 2263 492 2608 6 52 68 2262 1651 17 7452 25 6478 142 1 8022 3 204 27 1745 2 8107 278 14 1 2189 294 27 56 1071 78 1824 1815 307 422 6 167 3 9086 20 73 4 1 2137 17 4 1 551 4 1384 7 62 807 9 247 91 5 905 2159 17 10 123 139 3590 30 1424 295 13 150 511 474 5 64 10 316 3 8 511 354 5 4792 1013 23 165 2 796 16 1 915 729 3 335 1 1058 4 368 1160 42 39 2 1589 1152 11 9 739 339 256 10 371 14 10 57 2988 7 86 312 3 2 52 68 547 201 19 5361 8 143 812 194 17 48 2 3315\n1\t2741 2030 2503 35 1141 1312 3 270 1 7850 3 16 2085 49 2503 762 65 15 4273 27 2378 122 5 186 155 3759 5 701 122 3513 7 1 569 4 1141 2503 14 4273 2827 4 2648 65 1 2471 139 91 3 27 3902 77 1 3815 15 7 7 28 4 1 113 570 1743 2233 1 102 889 7 1 570 13 1149 8 241 11 9 18 12 1 59 28 4 1 11 12 383 7 10 6 1325 258 1 168 7 1 1089 3 7 4909 1 570 1791 372 421 7270 266 1 950 15 2 1330 1489 31 1900 11 27 54 1720 77 958 124 15 13 1149 14 7 80 2905 9 28 5469 2 201 4 7903 8945 3 4090 2274 4 1 1393 7 1993 5 137 1505 8604 784 14 1 1312 578 294 3 3795 14 943 1796 14 1 2643 1347 4829 3 578 113 14 9570 1481 3 9657 3318 3 294 392 7 943 871 7 1 707 13 1149 2 382 1214 7 154 356 4 1 5590 10 12 1968 16 8438 895 14 31 238\n0\t9 375 172 989 257 558 4573 12 587 16 781 797 2092 16 86 518 366 3175 739 9585 4 1 98 28 326 10 29 19 2 2156 366 715 172 51 10 9095 72 57 125 1194 2104 125 3 1 739 114 20 13 2127 6451 14 1 217 80 91 259 220 7 13 962 6119 2 2806 4 188 25 522 11 59 4960 423 1773 883 235 16 11 13 6097 5419 5725 11 151 9130 16 1 478 36 13 1933 11 95 3000 12 138 68 1 13 1701 137 128 119 2 658 4 750 897 3818 952 35 1088 5 4206 65 5 62 1855 30 122 19 2 2146 2075 11 3610 217 33 34 2951 7041 288 52 1490 1170 68 235 1939 385 1 111 33 582 29 2 70 4487 395 2364 626 4321 4487 2 6 31 1854 23 495 521 357 2 525 8192 3 39 634 36 2 658 4 7212 750 897 783 292 8 24 31 313 973 11 8 6332 142 249 8 555 9 28 54 26 612 19 388 37 1 212 234 88 335 86 350\n0\t170 201 3 1 1805 1203 4 1 1919 89 79 751 3 99 9 2493 852 5 64 2 53 1886 108 48 2 7994 1 331 4 2515 5220 1 3637 3 1 453 22 1853 46 573 2007 4131 608 2 528 351 4 290 51 6 58 2895 315 2106 59 31 332 509 441 15 119 5011 1 21 792 15 1721 647 1314 277 371 36 2 526 4 2098 17 1314 46 1858 6224 11 181 5 26 372 2 903 6232 562 404 3 15 239 28 4 126 523 1661 41 58 16 732 11 6 4360 58 817 1273 4 1 647 1 545 123 20 118 35 33 2140 62 7200 3 6499 977 51 6 31 5 28 349 1372 3 1 166 526 6 371 7 2 147 172 4999 7788 4096 239 82 7 2 46 699 17 1 119 3 1 1552 22 37 3976 2674 1669 3 1698 11 87 20 2005 95 5620 427 7 50 5835 28 2952 87 20 351 116 85 41 319 19 9 23 76 407 50 2400 6 28 13 9267 608 5617 608 372 15 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 1 232 4 572 294 54 26 253 2087 45 10 1121 16 7 3 207 39 5 134 11 3719 26 1221 45 3141 1808 89 188 1494 3 220 40 165 1 166 6805 3 356 4 148 3008 11 1397 149 7 2 2493 59 3370 457 1 4 1 5652 3111 4628 847 4461 4635 15 2 84 263 3 313 5 2230 2 18 11 6197 19 679 4 6647 10 130 26 3340 4 7 1 166 4039 15 3\n1\t4 34 5 624 6 91 16 891 2456 571 5 8270 43 788 523 38 2415 4418 3 34 4 3230 13 724 255 32 2 8591 2094 873 3 153 504 5 26 1136 5 4354 34 11 2043 20 59 458 60 6 3 451 5 1110 5 9764 42 747 7 11 9 6 475 275 4354 1304 27 63 112 3 26 15 3 34 458 571 1 28 85 27 1304 244 214 275 5 230 11 111 2354 1 282 213 852 5 875 11 2043 42 20 11 60 153 36 42 39 11 444 314 5 2 212 111 4 500 60 3908 1352 173 348 122 1 111 8 230 7 5400 3 4354 173 348 79 1 111 27 811 7 42 2 243 747 112 67 15 2 506 2804 13 150 1459 65 2083 19 9292 85 73 10 1385 79 4 28 4 50 430 2804 581 9292 488 16 137 4 23 35 381 2083 19 9292 387 841 47 9292 2133 954 147 887 2851 271 5 2888 3 5231 2 873 296 1203 571 42 2 18 15 2 749 8649 13 3382\n1\t154 13 92 18 3736 25 362 6420 3952 1 172 7 1224 1 1305 1246 3 2966 10 34 295 5 3442 1 86 34 3353 371 109 3 1 631 7 999 5 875 295 32 1 312 11 103 742 2144 1 912 3296 16 2693 13 1226 250 6 11 25 3283 2813 6 3 23 70 58 230 16 75 25 410 2830 122 29 11 290 43 4 25 9073 66 27 128 7797 123 20 209 577 331 27 384 1074 5 48 8 320 4 122 29 1 1425 13 92 113 168 22 742 355 30 8126 3 523 2 788 38 10 3 1 4311 5 4074 136 5 90 1 272 38 20 246 2 547 334 5 13 614 33 57 1866 77 1 14 742 333 5 6110 5 411 7 98 236 2 471 1961 79 8 39 159 122 3471 2 342 4 2017 989 3 27 128 15 1 167 482 8863 685 1 28 591 53 6130 7 1 2996 25 670 3 128 160 627 8 354 9 18 3 95 3956 41 4798 1635 23 63 8105 103 742 6 198\n1\t2710 789 317 5098 255 32 31 2706 1 21 266 47 36 2 4536 6158 10 34 418 15 2 9999 9216 3 2236 5 47 4 1377 14 102 1338 525 5 1291 1 1378 2109 1866 730 13 92 201 6 15 3845 8799 5564 217 5817 8938 372 1 4424 3045 1594 1680 2913 14 62 435 3 14 1 379 4 28 711 3 2150 4 1 1715 660 127 1 121 6 13 92 67 6 1683 3 6 553 15 2 732 3116 4 1 1567 3580 863 188 240 30 3858 264 985 4 793 3 5025 85 11 101 1113 1 644 6 595 220 10 432 1649 362 19 11 9 67 6 2 140 3 2086 34 7 399 2 167 1502 2289 16 3209 1760 13 593 6 109 2970 17 145 52 1475 30 1 233 11 244 128 1177 29 125 172 3176 8 12 364 1475 30 1 868 30 5489 17 10 213 2 580 13 659 1 769 1 21 1501 5 26 1683 956 3 136 1 67 217 4408 190 24 5026 5390 5 82 124 9 28 1373 2 979\n0\t209 5 149 827 3529 40 5538 603 1007 93 2180 32 1010 275 35 1334 40 587 16 169 43 85 14 25 6 5 1504 9220 77 62 145 3584 5 62 3444 4 9640 31 1778 11 7 3 493 3 19 1 5316 7 1 4978 35 440 5 771 188 125 15 122 3260 48 6 5855 488 35 190 26 770 421 44 1081 766 15 3 5 8024 122 3 13 2 678 103 203 2493 1029 15 43 167 489 440 5 652 2 1697 1656 3 4117 5 25 129 603 6533 72 1811 5 99 14 25 823 1633 432 351 15 1473 396 32 25 236 9 1114 4037 7 25 4520 11 47 36 2 3 2 3144 4874 1780 19 25 874 66 7 5524 125 290 113 178 6 229 49 206 294 35 2148 2 8681 242 5 1334 5 4008 65 73 1 2066 2218 244 3039 40 2397 142 16 1 1925 432 2 1757 4 1 739 100 169 557 73 42 37 5692 6425 15 31 903 3177 106 1334 1664 5 1126 3529 4 44 1473 30 605 10 32\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 16 62 1560 3 1042 541 4 1254 106 1 129 6 7 464 59 5 26 9901 30 1 950 29 1 226 8689 9 933 7688 6 1 59 28 8 63 320 106 469 152 270 2 5361 17 55 7 2214 51 6 128 2 749 8649 13 92 1829 7 754 3065 3267 6 11 198 198 196 5 25 7 387 1248 198 1 8005 103 198 44 3 43 3267 22 56 534 3 13 2136 24 5 187 126 8203 14 78 14 8 112 5499 3 3 8 83 96 261 12 1472 47 2 138 1254 2754 29 11 85 68 7915 4500 265 395 84 2858 33 61 5424 3 2 5639 665 4 1 113 11 1 632 921 57 5\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 74 85 8 310 655 8 59 455 110 8 9094 5 1 389 1411 278 3 100 24 8 1309 37 78 7 50 500 1514 5 2756 892 1482 7 257 3443 3 87 84 6772 6 49 8 475 165 5 64 122 3471 9 3603 8 57 5 24 110 1602 8721 278 19 289 25 15 10 101 1 147 25 1630 7 7795 6 39 14 211 1163 14 10 12 3483 50 1007 336 10 14 2916 3 8 112 10 14 530 32 11 272 926 8 57 5 793 8721 82 104 132 14 588 5 1443 3 51 76 26 58 82 3561 36\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 20 273 45 10 6 1492 69 17 45 261 809 6916 48 6 377 5 26 256 19 3 7 388 69 6 765 9 69 786 600 786 751 1027 1623 8 247 70 1 18 77 13 26 2667 69 191\n1\t183 16 44 346 280 341 48 2 351 4 31 7 218 84 10 56 143 131 4875 45 860 60 57 82 68 44 4439 7404 17 7 5892 9355 60 289 11 60 63 56 44 1212 12 3 60 57 58 84 1759 1497 81 134 11 60 143 131 95 148 1676 7 9 135 36 4359 44 129 6 2 4832 3 1696 15 2558 60 6 2446 285 546 4 1 21 15 59 44 671 3 823 5 3642 44 8084 8129 137 168 285 1 735 4 1 707 3 49 61 101 3812 45 23 81 22 667 11 60 153 634 109 7 9 158 23 22 20 13 289 11 27 63 634 14 530 25 129 6 20 2 9728 28 5 437 27 100 1148 44 16 48 60 424 318 1 46 182 4 1 471 2 1316 2083 3 4286 379 3 2707 15 44 221 293 7404 1 700 28 4 399 1 1212 32 36 2 13 614 23 70 2 680 5 64 9 158 99 110 23 76 64 28 4 1 113 124 11 1 2101 717 4 368\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 30 237 28 4 1 210 104 8 24 117 107 7 50 500 8 419 65 5 99 10 94 31 594 3 11 594 2 3284 1 121 6 586 3 51 6 202 58 994 50 497 6 11 275 310 65 15 2 678 3590 4 31 1764 3 544 5 90 2 67 200 4 110 43 1154 32 104 36 6122 510 3 4026 153 1122 7 2 18 36 450 45 9 160 5 26 2 401 4144 141 420 243 495 1460 5 64 55 2 4144 18 13 5676 1 744 9 104 6 2 53 302 5 241 11 20 3237 2 298 1020 907 1 18 6 8 96 154 4144 35 40 3480 16 4947 1274 9 18 125 1 55 193 40 58 2481 48 10 6 1395\n1\t70 4460 7 1 769 1 18 6 2 84 28 3 46 179 7977 3 9758 23 69 1 545 15 1389 11 23 24 5 1836 16 4175 1826 10 6 2 216 4 632 11 6 5872 5 23 8 87 1023 15 1 2381 7 458 1 691 12 2 222 105 1264 245 340 1 845 4247 4 4842 14 620 7 1 141 8 96 1 206 12 242 5 3922 1 634 27 228 20 26 404 31 608 1 353 788 12 84 14 6666 244 37 9738 3 39 425 11 244 39 2713 244 50 430 4144 353 58 8 118 1 651 165 1 1570 16 113 651 16 9 108 245 8 114 20 149 95 7 44 1014 10 181 11 5 70 2520 23 39 24 5 634 56 6069 7 2826 3 4741 168 3 34 7 34 2 84 108 45 23 83 36 10 608 786 99 10 316 3 64 45 23 70 1027 45 10 844 23 41 3418 41 2227 1389 98 2564 45 11 12 20 48 1 206 12 152 7514 29 140 9 18 7 1 74\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 66 1035 5 1 3241 4 1 9632 4 792 169 15 2 77 31 6591 618 1 3842 1295 578 1791 3 379 2765 39 196 7 1 111 57 2 7030 4 372 6643 457 3 44 9358 4688 204 260 19 206 9 1260 4 1862 1158 17 480 1 860 4525 1 572 1082 5 90 78 4 31 113 278 6 590 7 30 6815 6409 14 8438 618 80 4 1 494 6 3936 3 1 2216 3029 1 18 5 291 1882 14 223 14 10 705 7138 32 3615\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 102 310 408 32 416 884 14 8 88 5 1236 3 691 19 4798 11 12 1 80 299 85 7 50 157 6 5 99 3 691 19 4798 1758 65 128 112 10 1163 8 192 172 3176 9\n0\t137 1968 16 1 18 1307 14 62 2732 1097 16 1 996 17 78 4 10 6 37 696 5 1 2874 104 11 10 481 26 3170 245 1 164 213 55 670 14 53 14 1 210 4 1 2874 13 9972 101 1722 1 164 40 375 82 922 11 56 1977 1 3805 4 1 108 2 184 2272 8 24 6 15 7 1 7592 244 132 2 3404 458 20 59 87 8 20 474 38 25 8 152 4201 16 110 607 201 1144 1282 3 8214 2181 22 202 14 565 479 37 2518 3 1065 33 924 3821 7 698 236 46 103 5 70 2337 38 136 133 1 1368 1 1077 608 20 46 4884 1 608 8 54 1431 78 4 10 14 1 119 608 2775 1 238 608 51 213 1952 9 6 28 5 13 8 219 1 164 3034 2 973 4 1 948 1145 856 7642 2351 211 136 20 31 46 6299 1 1 18 608 1 138 1 3934 1 559 645 202 34 4 62 4249 15 1 1368 646 187 10 2 46 7876 19 50 3934 1020\n0\t333 4 884 13 150 36 124 17 9 6 2348 51 6 2 302 11 8 83 139 16 9 426 4 124 3 11 33 2292 20 26 46 501 1 119 605 2 155 3104 5 1 215 14 33 22 404 61 1868 124 41 124 106 51 12 58 1462 17 14 1 1217 1926 1647 5 2323 1 21 1350 463 713 5 26 1269 41 713 5 7679 146 422 7 639 5 256 7 1 1269 879 61 46 156 66 59 303 35 61 4 1953 3694 1 1545 396 310 142 113 15 1 623 8988 1 74 2442 3994 17 1434 146 11 88 1550 26 367 38 95 82 870 2146 2147 14 2 13 92 276 53 3 40 2 342 4 327 1657 17 86 248 7 30 101 1070 1214 779 447 803 13 150 321 20 99 9 3456 13 3027 796 5 229 58 628 1 7187 3 506 7 1 21 12 262 30 4002 2 1910 4 1 231 35 12 4611 16 5234 2 416 1946 20 223 94 1673 13 127 426 4 188 76 2704 43 4902 2058\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 8 165 125 110 5 503 10 384 11 55 1 2285 4 1 347 8 343 37 1140 16 1 129 3 60 12 1506 1074 15 35 12 4670 8 39 343 1 3770 12 2 222 3061 3 56 1024 1 18 12 565 8 511 56 64 10 1013 317 1578 16 2 184 369 1781\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4925 133 10 195 19 7502 249 3 8 191 134 9 6 2 2145 6978 58 505 363 105 4865 8 1266 35 89 9 13 252 12 2 439 525 4 1 3065 5 90 43 52 319 19 1 1246 4 1 135 4010 1 21 12 84 7 49 10 310 689 17 1 13 2361 268 23 63 64 75 3921 1 456 22 7 1 4510 4 1 807 8 1266 114 33 152 946 275 5 787 458 12 11 4633 29 1 9 6 58 13 92 21 12 1 1 251\n1\t108 33 22 2401 17 52 68 11 9 21 6 2 637 5 932 4 48 72 24 1 489 1387 41 49 23 459 24 3946 1 4 536 1 957 234 14 1 59 888 28 4 1 80 731 188 4 1209 6 1 1089 5 3537 125 257 1955 6 11 48 72 34 6 11 34 11 72 175 5 8 192 3 8 1640 75 4014 6 1 2833 1342 49 1 5815 310 5 7114 8 128 481 365 902 9485 2 3319 4562 8 670 49 8 159 43 4 1 9000 10 12 20 41 39 2 2568 2370 774 4445 707 49 12 3091 47 15 1 4 2152 3 1 4 2 696 1261 7 9 21 2220 79 1 82 584 61 53 2239 82 1650 4 3 2504 17 8 1064 763 1 113 2396 13 92 18 6 2812 68 43 3 137 22 5210 1074 15 1 2628 4 1 1098 15 2 156 33 22 34 425 3359 4 423 5663 39 36 7 148 157 9810 6 1496 52 1 1675 68 1 3717 7 257 4236 8335 9810 6 59 9794\n1\t28 4 137 104 11 89 79 230 2474 16 1 321 4 253 104 29 513 1227 8 192 2 325 4 104 370 19 1822 306 4260 3 9 28 6 4407 1739 278 66 40 8362 2 163 4 7929 3 1 1324 700 6 1 67 10 6 370 778 1 6286 901 4 2 342 35 2686 1055 3 6057 8288 94 246 5058 931 1870 29 1 2231 3 1798 469 4 62 583 6 56 31 11 1 601 4 1658 8780 3 1 4 2 46 3 4277 10 6 240 5 64 75 81 35 1064 730 14 232 3 1244 81 395 931 7773 2479 7 1 18 16 22 7 864 162 52 68 6212 35 16 62 7160 3 4258 62 5905 5 95 3 55 7 1 822 4 34 2998 46 674 421 62 1 82 543 4 1 2654 1342 11 1 18 6 1 5 1 1870 4 1658 423 5807 5 867 9 6 46 5396 55 193 9 3656 901 6135 7 11 271 14 237 14 1496 2 306 191 64 45 23 22 1774 5 186 146 686 3 436\n0\t0 48 2 885 2 18 38 1 6598 10 130 24 10 513 6158 4281 3 1360 199 112 3 9925 48 2224 6 2 21 15 630 4 1 440 5 294 3145 41 814 17 27 1082 6060 27 1630 37 8705 11 29 95 340 799 27 130 27 440 5 309 1 1360 2112 378 4 101 2 1360 144 54 129 735 7 112 15 5619 1232 33 61 2966 7 2 1232 27 876 44 1 22 2153 46 109 1613 105 78 1815 1 3174 41 37 125 176 36 31 243 68 31 608 14 10 152 1306 1509 1 482 1828 1 3 940 1400 291 34 5 26 28 3 1 166 534 3 4994 1682 1 166 2458 1052 224 1 14 45 2 421 3720 144 6 202 154 178 1208 534 3 30 1 744 940 255 577 14 2 346 387 5396 35 1961 7 25 221 3943 312 1 27 12 46 78 1 9730 37 23 4635 34 137 2852 3 1 1122 6 2 21 15 11 4160 1918 58 9906 58 1216 3 58 5926 3279 10 544 47 37 2911\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 339 2698 5 694 140 27 389 108 87 2752 36 9 56 3097 51 24 71 97 708 6396 9 231 14 7048 5 6678 3 4924 3 8 96 11 11 6 2 84 3530 4 75 33 13 1698 5193 14 72 889 2 129 5573 5 7 298 416 14 2190 4 611 40 2260 77 2 1612 3928 2266 59 5 87 53 7 1 16 1 3 60 1312 19 1 74 6177 207 49 8 5460 13 614 23 63 301 5238 116 4038 16 102 5516 98 436 468 335 9 8868 351 4 5623\n1\t3444 4 239 37 42 169 2 11 1 18 12 89 29 513 2768 8 876 79 5 1 466 7540 13 8824 40 71 89 4 1 233 11 1 18 460 102 4 1003 8812 3 14 109 14 704 10 6 5 3442 126 16 62 121 41 10 41 311 38 450 7 50 1520 6 1 113 29 372 2 826 3 1087 1223 245 95 551 4 121 1514 19 185 6 650 8160 30 1 233 11 1 129 27 266 6 5 101 8 247 273 45 129 12 377 5 26 14 3 8121 14 27 310 17 10 153 56 7149 32 1 18 463 3293 13 677 22 375 168 66 186 243 5172 9047 66 89 10 832 16 126 5 4338 79 78 2537 2243 9 153 291 5 582 2 163 4 8 214 42 113 5 39 335 1 18 16 48 10 6 3 20 186 10 105 42 425 16 355 47 3 133 15 2 526 4 2567 10 123 24 86 6975 17 790 10 12 46 837 3 420 496 354 10 5 261 35 153 438 2 156\n1\t9 28 3 29 28 272 55 544 2 509 1459 65 1 5686 94 2 574 15 25 5 6122 13 92 1 7 2 4533 9744 8 812 1 15 2 59 279 2575 105 16 38 6 267 13 92 226 1484 4 1 366 12 250 2592 604 4349 234 3 294 65 5 186 19 3 1 7924 4 800 51 12 58 111 1 1484 88 401 1 5440 968 9090 1484 32 1188 19 17 10 2983 630 1 5067 1 1484 54 24 71 52 1201 57 10 71 340 31 1988 681 5 764 269 17 75 97 268 24 8 367 11 38 6308 9 349 10 12 800 35 12 29 1 182 4 1 1484 94 2 184 13 1627 6012 6 125 16 1 7 7528 5 42 10 544 1 349 19 2 464 1367 15 147 5201 3891 17 1168 19 2 298 28 15 9 8442 1484 76 223 26 2299 14 28 4 1 700 8442 6308 4 34 290 50 3341 6 142 5 34 3077 35 17 62 3274 19 1 427 5 187 1 596 28 898 4 2 9744\n0\t13 614 23 176 29 1 2048 808 1849 14 1 6608 1153 4 2 394 349 161 709 347 8864 32 468 24 1 3258 19 9 34 1 824 22 1 2171 52 396 5185 1 5704 487 2742 1918 2241 15 1 2046 637 19 11 628 253 671 29 1 15 1773 37 808 42 2 560 10 153 274 142 1 1473 1 903 4 9937 14 2 1849 37 1928 11 297 286 28 1928 1198 40 2 3872 4141 3 1 7180 1928 40 31 1128 11 36 2 5757 1 709 31 8913 35 981 36 27 100 1616 1 2442 7 4844 3 40 2 4319 19 25 1796 3 4 611 1 3170 233 11 1928 4256 4548 45 127 81 57 2006 33 54 24 122 7 102 2110 13 2687 70 79 1328 8 1274 9 18 8023 1604 42 100 509 3653 49 1 1648 440 5 1346 297 69 59 5 90 10 34 478 52 3 52 3 23 24 5 4043 7 116 103 635 10 151 23 2248 2 156 1287 115 13 98 83 920 110 8 497 23 61 100 5579\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 107 459 885 3313 17 1 4 9 28 22 37 1698 11 10 255 46 542 5 101 2348 2 1086 3 170 259 2 683 1 326 94 25 8597 3 27 6 936 9485 25 221 8099 3 1 119 4 25 5 564 550 55 45 51 6 2 2949 2651 5 132 2 48 398 629 6 2 4060 4 927 738 1104 134 1104 1104 300 3 148 157 106 1 4286 532 76 87 297 5 552 1 157 4 44 4757 51 6 58 4 1216 41 39 2 2053 4 2 91 3 4812 119 15 2 251 4 11 63 100 780 7 3223 13 252 6 20 5 134 11 1 21 6 301 2130 538 69 152 74 85 206 5141 123 2 547 329 7 1177 2 53 968 4 171 11 1680 29 25 74 580 280 94 246 556 142 1 3088 2899 3 6770 34 54 24 2149 2 138 471\n1\t22 7 9 1515 267 38 2 170 1753 603 121 6 1 771 4 242 5 90 10 19 1 184 1250 193 444 2 1246 7 1073 48 60 451 5 87 6 90 37 60 1047 65 5 298 1792 521 60 432 7522 3 6 105 53 16 1 1143 4 44 493 13 6714 460 4 1 1414 1592 24 3916 7 642 4371 992 197 1 6262 1773 3 145 273 49 81 159 1 21 7 33 4546 307 35 1478 7 1 4538 9652 2836 42 20 1 1723 55 16 21 7 28 185 4 1 158 245 60 123 889 1645 7 3152 2285 6 3184 47 5 1159 3 411 40 2 2691 29 1 182 4 1 135 82 460 35 2133 65 7 9375 22 294 2093 962 6518 8682 3 97 13 12 5675 3 2 6778 42 2 1152 962 9376 5460 1 104 69 27 12 1257 3 31 5058 376 155 7 1 6093 13 9375 6 2 641 67 553 7 2 2347 699 42 93 2 176 155 29 31 1303 1592 7 4589 622 3 1263 453 30 102 360\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 306 2073 1325 829 3 6189 3352 31 2265 4 2498 66 6 2191 3 1029 15 267 3 6158 292 1 2265 4 8359 3 1 1863 554 128 10 6 20 14 1040 1240 1 215 356 4 1 3 14 10 308 191 24 5674 1 21 151 28 16 1 2747 66 40 71 8257 15 2 3\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1666 5481 6 38 1 3525 4 157 3 1 112 11 1605 137 81 2474 4732 30 1 3525 4 500 154 129 57 31 1656 4 1 1666 5481 7 450 1 18 2816 19 1549 8257 7963 3 704 10 26 246 1457 140 898 3 2123 44 3504 3 588 77 44 157 5 131 44 112 805 2913 20 101 164 25 540 1918 30 44 435 3 5 122 7 1 769 3 44 53 3 573 3 55 33 57 62 3 140 1 21 17 12 3038 7 1 182 3 207 1 2076 4 2 53 108 53 329 5 34 1 201 3 8901\n1\t136 40 2 1302 14 2523 4 1 951 188 47 14 31 2116 996 1831 3 3398 17 128 5395 4 39 610 48 1 2620 1 21 34 2589 371 322 10 6 618 2 1388 29 984 10 792 7140 43 802 22 2 103 1366 47 3 1 1859 566 168 29 268 139 19 1534 68 3806 14 16 1 1076 10 6 829 243 68 16 697 10 40 1703 1880 17 190 7961 1998 238 3760 396 30 3 884 866 15 2483 1426 140 62 22 1 639 4 1 1344 10 6 5 99 17 7 1 182 8 88 24 248 15 2 103 52 51 6 43 2557 1983 14 322 10 595 557 7 1 2664 17 6 128 790 193 8 214 9 5 26 2 167 84 158 86 20 28 16 1998 238 596 41 3078 174 243 2 2812 3 52 7070 86 393 7 933 76 20 139 224 109 15 596 4 1 52 5103 4779 4 132 9596 17 14 16 512 10 56 645 1 1780 3 16 137 52 9470 10 228 87 37 854 109 1901 29 95\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 67 4 2 518 1198 11 784 49 31 296 5678 6736 792 1 7067 193 20 56 501 1198 21 40 679 4 81 242 5 70 1 1198 3 149 47 4687 160 19 17 20 7 2 301 1295 699 187 10 985 16 685 199 2 1598 1198 11 33 674 2336 5 4146 16 43 168 17 186 43 295 7 11 10 276 36 2 3772 5215 31 1474 2605 21 1333 810 7 1 260 2990 4 1960 5363 28 3731 6 11 1 3687 314 19 1 4754 1042 6 37 345 11 10 276 36 2 109 6977 388 2581 973 11 12 576 86 2796 910 172\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 118 145 7 1 13 5031 6 38 14 964 14 2 20 55 2 39 2 244 2696 4 38 2 3302 82 35 47 28 4118 94 2877 115 13 252 1973 6 2 860 6 59 914 28 5 241 244 165 82 188 1920 25 1200 19 25 1960 5052 14 45 60 40 463 1837 44 121 71 5733 645 19 1 522 3 89 5 995 44 121 41 40 28 4 1 210 971 7 1 622 4 135 145 19 1 957 9391 2758 292 1 82 102 22 198 2623 115 13 5031 40 100 248 2 625 177 32 66 180 55 1 4631 4041 145 7366 11 27 89 9 8 12 3096 15 15 16 4967 944 145 9347 11 40 4516 3 8 467 4516 5 3915 5722 13 252 5933 2 1020 16 9 4326 13 92\n1\t0 0 0 0 0 9 21 12 31 240 186 30 368 19 1 821 30 4 1 166 442 30 5267 6518 136 43 1163 228 96 10 6 15 4046 6664 16 1 85 1 46 312 4 1596 4531 12 7 3 4 2330 8 214 11 1 482 171 372 1596 12 20 14 91 14 8 5627 11 10 247 1 2119 5610 4 155 98 51 61 20 56 95 2119 171 7 1443 1491 55 690 12 3 114 2 53 329 15 44 2482 10 247 1 700 278 8 24 117 107 17 16 121 10 12 6807 1 178 12 46 109 383 3 4223 1321 293 13 150 560 11 1 3718 4 1 1042 285 1 84 5493 426 4 498 9 21 77 31 258 1 1105 1 3 75 126 291 5 26 303 516 30 34 4 592 13 92 21 57 43 7737 5 1 294 3142 2434 17 8 96 1 5286 2728 4732 10 14 530 45 9 57 71 31 1214 1562 1 54 24 1196 29 1 769 1 7986 16 25 3 618 204 27 2486 25 98\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 8 997 9 177 669 173 55 637 10 2 3750 19 8411 8 12 7 1185 3 8 12 15 2 298 416 493 603 61 47 4 7130 8 2242 47 362 19 11 9 12 439 263 954 658 4 161 559 43 170 559 5 131 126 75 5 868 15 91 121 1543 28 3 1526 4019 1 633 1349 204 721 50 493 749 16 2 55 27 12 1120 94 1099 269 1107 12 2 298 416 9 12 155 183 1349 12 37 806 5 70 5 30 1 3480 3 6522 72 721 133 1247 16 146 240 41 211 17 11 100 3136 1 1340 177 38 9 12 1 215 3906 7774 7 66 1 1210 9644 9 21 12 7994 3075 4150 57 2 3047 753 11 1113 3378 6 1 113 18 180 107 9 59 2961 7 1 466 1049 95 860 3 40 152 881 19 5 2 895 7 1 4552 3 509 1899 2420\n0\t5823 1 567 5815 24 209 4 3669 6 2 770 29 2 3 1 102 8863 3 205 22 8 1374 17 3255 8928 13 92 6417 14 15 37 97 2294 104 5 6 11 15 28 1675 1 120 22 39 37 62 3 494 22 396 311 13 8241 2425 10 77 43 3276 7439 26 3023 16 679 4 1870 3 679 4 5099 1 2381 35 404 10 2 6 169 19 45 10 57 71 89 1801 172 1742 1 4150 2893 64 5200 1764 115 13 92 567 980 6 20 670 227 5 90 1 4421 3 1830 4 1 120 2959 5 1093 9 130 24 57 2767 3139 5 3569 47 1 807 14 10 424 10 181 2 1213 3 2578 2146 189 975 3 45 11 981 36 146 819 165 5 2198 30 34 8252 3589 8 96 8 139 15 146 11 153 90 79 230 8 321 5 186 2 3660 5 8177 142 1 840 3 13 858 16 1 42 1 1002 264 68 1 193 8 12 619 30 1 878 11 367 11 55 791 965 4220 5 365 2420\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 28 4 257 4003 4148 361 1 171 22 84 361 1 632 593 6 4340 361 1 265 6 6358 42 20 377 5 26 8906 564 2 361 42 2 299 7509 13 759 22 7 6 41 6 39 2401 2386 63 23 6 2762 361 55 5499 36 818 3 36 6549 734 5 1 13 5 112 1 2864 453 4 1712 5205 1645 578 2097 1209 607 1 1307 6 237 105 2043 488 1661 361 55 6055 3 4232 5696 22 4544 428 15 2 2618 2 938 6229 97 268 24 72 485 29 239 82 3 1113 2 938 361 145 246 2 179 361 42 13 2298 28 4 80 1083 188 38 7 9 21 6 11 307 602 181 5 26 246 2 53 85 361 3 11 845 34 1583 5 1 3805 16 1 3930 814 45 23 617 6372 144 20 187 2 680 361 1942 10 16 48 10 6 361 2 2714 709 4311 758 5 157 361 3 7 2 360\n1\t3775 95 117 20 66 60 12 770 16 19 5203 22 19 44 3 521 6 65 5 25 5631 7 4335 434 3 3 1424 7 112 15 975 6202 9650 30 3766 14 27 1 8774 4 1 341 25 221 13 8240 7 82 2800 17 136 8 381 1 21 2 163 52 68 5038 707 5213 66 10 4398 2 2834 1117 1 119 3 5836 22 2764 1 833 4 101 3172 17 100 3 1 4 776 22 93 1065 600 2 163 4 1 1005 7809 1 1048 1154 22 1100 1045 870 3 236 2 356 11 1 2946 3 1190 22 1 5410 13 2298 1 21 14 2 212 6 3 1080 55 45 43 4 1 9245 1 120 70 77 2171 230 36 7531 16 3927 4 1813 17 42 1 4 157 7 2498 9275 1 2419 4 2712 3 5591 4 174 707 32 1 2435 65 11 151 9 21 146 5 8 190 26 605 10 105 2301 3 45 207 1 524 8 63 29 225 134 11 42 3913 1716 483 548 341 167 3 15 31 36 58 1715\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 360 135 1 5163 270 375 5 1435 1 668 4261 4 8712 9611 76 100 26 8 96 9 18 728 34 4 25 82 1990 3 578 5697 22 1115 1413 43 4 1 623 54 202 4269 1 4 2001 502 256 2651 4 75 33 114 10 1923 3 335 10 16 1 11 10 705\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 240 1292 246 146 5 87 15 2 248 375 268 30 790 1 18 6 105 223 3 4089 2 4885 1 1043 88 24 71 8 192 1140 5 785 38 1 465 15 1 6950 300 1 18 12 4847 5 1 2036 12 105 534 7 8224 17 1 210 1813 465 6 1 1 952 12 53 227 5 785 1 3140 17 97 4 1 24 2 478 5 949 66 6 46 463 33 61 20 5844 7 1 41 1 478 6628 88 24 71 828 93 105 78 1138 4271 165 2086 1 130 24 1866 275 5 87 478 363 16 1 1563 1792 1192 1 4 4101 371 12 20 1 478 4 31 1859 258 7 1 5455 168 1 1043 965 5 26 13 4804 1 121 12 2 222 5307 8 192 3134 17 49 8 64 11 1 166 454 5051 3 460 7 2 141 7 50 839 10 6 2 808 13 724 10 12 2 53 991 37 8 419 10 2 5841\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 167 109 587 28 37 8 495 70 105 1052 77 110 1 1048 67 6 38 102 2976 35 149 47 38 2 7462 1928 7180 4 11 3165 5 990 3034 423 4208 15 9 2871 3945 140 3569 36 10 93 423 3274 253 10 2323 1348 2615 1 2976 7841 3 25 3 49 33 475 87 10 181 11 1 7180 173 26 42 56 109 248 16 42 717 3 1031 2 163 4 82 4978 2092 1 1428 6 167 7857 1 67 6 46 979 253 10 3 2 191 64 16 95 325 4 161 1045 3 1198 502 45 23 63 4062 1 840 4 2804 203 26 273 5 841 47 1 1015 32 14 530\n0\t538 4 703 180 455 11 9 933 1480 12 1160 30 508 3 11 4713 12 758 7 14 1392 7 66 524 25 130 26 17 8 96 27 40 1747 95 888 2419 27 228 24 57 1188 7 25 895 5 1 2774 6 51 7 1 703 7 27 339 1088 48 232 4 18 27 12 9022 704 10 12 2 267 41 2 148 203 141 3 1 4606 4 598 129 171 6605 5301 89 23 93 96 10 12 232 4 2 1198 21 22 100 3903 14 203 596 1 18 339 4891 19 463 203 41 267 73 10 12 37 3 58 541 57 71 1619 5 4664 1 102 1413 4 1 6 78 1 166 744 3 1 1122 255 142 52 36 41 3 68 36 244 93 2910 77 1 4 37 97 82 971 4 242 5 5624 1 389 888 1754 736 5 45 317 47 51 361 1351 146 3 87 10 9949 41 333 43 541 5 10 34 371 794 7 41 41 23 228 14 109 73 81 36 79 11 22 596 4 116 104 76 582\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2325 1476 17 621 1289 7 1 5056 9 3240 7 4568 2898 1779 94 1 567 9160 1800 40 1 4197 4 17 7 25 7370 9 21 1263 43 4 1 210 494 8 24 117 107 19 1 184 1250 7 233 1 263 6 37 345 11 10 863 605 23 47 4 1 158 3 57 79 517 38 1093 50 966 51 22 97 529 11 2703 5456 6 14 1974 14 33 5338 9 88 4 71 2052 30 21 1762 494 41 125 1 401 7885 50 59 3731 19 1 4568 6 11 315 217 482 21 54 4 1553 73 10 276 36 5365 315 3 39 2 184 1065 1881 2908 8 54 243 1173 50 68 694 140 9 2476 702\n0\t1 330 441 218 6 2 1638 800 471 42 38 723 2916 11 1017 1 326 19 2 1974 7 1 750 4 31 4658 521 1 374 22 2467 16 62 486 14 2 7180 123 239 4 126 7 16 58 1649 2560 245 378 4 101 1 374 22 15 91 927 3 199 32 56 3379 38 48 629 4791 51 6 93 43 4833 623 7 9 1 957 3 570 67 6 218 66 6 152 2 16 2824 1 215 441 30 8126 12 829 7 14 2 21 1762 1216 135 98 10 12 2744 16 2 754 4921 6194 431 1738 218 557 1 113 47 4 127 277 17 42 20 197 86 922 1497 8475 266 2 4451 35 741 65 599 125 2 41 37 60 245 72 83 118 704 5 6249 15 44 41 768 14 7 97 855 584 4 9 7270 1 120 3097 1674 5 348 1 584 15 62 1552 3 1 6303 200 67 15 1 181 2 222 47 4 1888 816 784 14 1 7 9 1 53 177 6 51 617 71 95 52 7138 4 843\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2907 254 5 9058 9 141 73 8 4001 1 67 2105 3 58 1234 4 53 121 54 24 2052 110 96 15 2 467 1 121 6 17 2051 6 111 125 1 401 20 227 5 90 9 2 327 1464 4215 14 3708 588 7 1339 189 3 2 8121 1 344 4 1 201 24 62 7 463 32 1 5509 4 62 546 41 1 5509 4 1 212 2 148 156 719 4 135 2731 80 4 1 18 105 254 5 26 8 555 8 88 348 23 75 10 1168 17 8 2117 827\n1\t2604 7 1060 27 89 9 21 285 2 3983 4 871 11 2403 3 1060 1153 183 77 53 3 42 93 254 20 5 36 278 14 1 1164 164 827 35 74 2898 873 4 1152 183 65 15 5 90 1 6736 2 13 92 607 201 6 642 3 14 4300 2 684 796 14 5657 3 65 16 1195 4480 1 1224 66 2071 2 21 265 12 4478 30 2470 1077 759 22 642 70 79 3 897 13 92 1246 4 152 1699 5 2 249 251 19 136 52 1502 14 2 1055 2219 2290 172 1742 3044 21 128 40 86 709 4939 10 6 1492 19 305 14 185 4 1 6408 8927 1894 3 6 2 4312 5070 22 2666 7 706 706 3 710 17 4220 22 7 706 5863 51 22 58 20 55 1 2322 19 1 1069 3453 4569 5805 6 169 501 15 103 94 1 567 1079 3 298 538 9004 136 2 156 4081 54 24 71 8406 69 258 11 12 2 1009 1400 1246 69 236 103 5 4522 38 1 21 4408 7395 13 6685 47 4 843\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 180 3626 2 223 85 5 64 4849 2629 3 94 8 219 194 8 12 56 945 30 110 42 20 1 21 8 909 10 5 1142 1 1625 801 8 159 19 2 146 1021 6 78 138 68 1 389 158 66 6 5096 9086 51 22 202 58 820 47 168 7 10 3 1 176 3 230 6 240 17 10 153 55 209 542 5 82 104 47 1057 32 41 1 120 22 1065 3 236 202 162 1005 160 926 55 193 72 64 8192 5673 13 92 250 465 15 4849 2629 12 1 233 11 10 12 2 52 68 235 1939 10 12 202 36 133 2 1533 8 39 405 1 21 5 24 529 4 5494 41 1646 41 3393 378 72 5 1 250 120 38 1065 9357 13 743 1155\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 2 21 4 9898 1376 5 2 2831 526 3431 66 8 192 20 2 8 337 5 2 4265 4 9 18 20 1311 48 5 504 69 8 1391 214 10 4652 1 622 4 2 5017 2724 3100 231 6 20 50 4259 4 31 1859 6578 36 9 130 56 1851 86 902 15 146 52 7 1 714 7379 1482 132 14 9 22 38 1 423 5538 69 9 572 201 202 58 147 822 19 95 4 86 52 4673\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 1 346 7787 107 204 9 21 70 7332 8 118 42 224 5 4902 923 1062 29 1 182 4 1 1344 17 261 15 52 68 2 342 4 1568 63 1416 64 11 9 6 900 5663 37 91 10 123 20 2005 5 26 185 4 9 8 63 59 2309 137 667 75 84 9 6 22 417 15 1956 602 7 1 21 3 22 242 5 187 62 895 2 345 7 154 744 83 5177 81 30 667 857 6 2 904 7179 4 1 817 263 6 1035 5 2321 1 551 4 5056 30 712 2 282 378 83 8797 1 6473 551 4 51 6 1547 2 528 551 4 95 332 58 1362 1963 1963 180 9 2204 4 28 1183 311 16 246 57 1 5 70 275 5 9 391 4 2145 33 191 24 256 52 991 77 11 68 33 114 77 152 253 1 135 7661\n0\t264 2329 4 161 5350 584 41 1034 5 1236 19 9 6805 3 6360 5 348 23 1 1589 1387 561 14 1 3 1 206 89 10 105 5875 5 99 7 1 74 1888 1 18 6 37 8 173 820 490 37 75 38 194 98 5909 1 1187 1212 7 10 9431 42 660 116 438 3 3713 20 16 1 3032 4 1 1324 524 41 3128 42 16 1 3032 4 1 2419 4 25 216 6 37 7794 5 1 2483 1262 1 1535 356 4 3 1 1115 89 297 176 29 1 3833 505 1 2653 1 4289 345 3239 4034 850 50 851 180 165 1 10 63 116 14 133 9 18 6 28 306 1870 36 605 1 7073 6131 142 30 2 2528 51 22 2384 5190 66 88 26 52 68 476 37 75 5 1811 11 39 5 753 10 1002 1785 2740 23 5074 14 9 46 18 153 2055 23 1551 29 513 51 6 56 1201 178 7 204 106 43 1161 22 77 1 1128 4 1 443 8913 145 242 5 4329 43 188 36 11 15 182 14\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 382 251 11 130 26 29 225 2494 41 612 19 27 6 6345 94 1 469 4 25 19 2 1486 5 149 25 148 943 4 1776 7 1 5924 11 25 7161 2849 12 2632 3 314 30 2 423 7 8 320 251 741 19 1 3 2 6668 401 1430 5864 7 1 469 4 7161 9 251 12 34 829 19 1972 7 943 2873 3572 3 1478 6898 3 862 109 89 15 43 767 7923 77 1 4 21 1762 3 1004 250 12 396 30 1 4 157 11 1740 337 140 285 25 172 4 5 149 25 532 3 7161 897 634 17 2107 3 7668\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2585 1880 6 1 113 4 1 681 2124 1599 502 33 83 209 95 3 68 9 14 1599 140 2 251 4 1330 15 1 91 559 355 62 39 66 6 39 1 111 8 36 110 84 67 105 3 470 30 4414 2085 313 2815\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 323 28 32 1 4 3727 1 232 33 87 20 90 3041 10 6 31 6801 299 18 11 863 23 3584 48 6 160 5 780 4791 115 13 1601 1 171 22 1080 201 3 33 22 34 84 607 1488 9 6 1 74 18 8 159 15 8214 7 10 3 8 24 71 2 325 4 25 117 4836 40 198 71 2 430 607 353 4 2550 3 1583 2 732 538 5 154 18 27 6 1107 136 27 262 2 264 232 4 129 737 27 128 1253 146 5 1 18 11 174 353 201 7 9 129 54 20 24\n1\t9514 29 1 166 85 66 14 23 365 46 299 3 93 979 5 9 1 3463 22 84 3 33 63 549 46 109 19 2 5652 869 2217 6 93 797 3 650 1 562 2480 200 1 4363 3 1 3630 17 51 22 97 82 2840 1000 5 26 2144 14 23 1359 5 1 860 4 1 562 40 31 857 3 119 46 1219 16 2 74 454 3 8 367 183 2 84 3 46 3848 1190 1 672 121 6 93 53 17 20 2332 17 1 562 40 102 250 74 4 34 10 6 169 37 49 116 2462 666 16 665 139 5 11 974 34 1 5680 7 1 429 76 26 3746 1251 32 137 11 466 5 1 974 4 116 2462 9 190 552 85 17 10 116 4 1 233 34 1 4333 22 190 20 1376 5 80 2274 35 22 314 5 298 14 237 14 6111 6 3096 1 562 6 46 109 80 4 10 6 4 5652 6111 17 519 10 196 52 832 17 20 790 6 2 84 3118 373 28 4 1 113 47 939\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 257 4 1 114 53 25 74 85 827 1333 16 5183 1 265 6 1 113 23 190 117 785 30 95 7546 17 23 459 118 458 1013 23 24 58 1600 41 24 2 1568 11 6 105 346 5 365 2 345 263 11 153 3569 47 78 4 2 441 17 29 225 10 40 86 2184 1 3999 3956 691 6 279 283 110 27 2149 31 918 16 9 55 193 27 12 29 268 31 6636 3424 15 25 2646 198 7 2 18 11 89 3760 186 10 41 597 110 2523 123 321 5 875 935 4 121 7 1 958 1815 27 270 411 111 5 7332 27 6 2 1744 17 335 1 50 5481\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 37 1853 10 6 254 5 149 1 260 911 5 1431 9176 13 2595 74 1 67 6 37 423 63 787 2 138 1 171 22 509 3 436 33 61 4565 5 309 7 9 978 803 13 92 443 4 1 2377 3841 22 1 59 53 7 9 212 108 8 130 230 73 8 1390 16 9 2256 9929 13 1348 151 2 967 41 90 2 696 21 15 132 2 527 857\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115 13 5 1 349 6 3 1 2274 22 910 6339 1185 374 38 5 2645 2727 13 1 12 20 6915 1891 17 51 10 6 19 1 1 3142 606 12 20 6915 1891 17 51 10 6 372 1948 1 1478 5 26 2 2726 32 1 3818 1 606 29 113 6 32 1 3818 13 6339 1185 5346 57 107 49 9 4743 18 12 13 92 119 6 37 961 11 902 24 877 4 4479 85 5 96 4 34 1 5437 3825 655 62\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 405 37 78 5 335 9 108 10 1527 46 1633 3 12 39 1466 45 10 57 71 19 2534 10 54 24 3890 1194 5 910 1507 48 653 5 1 7771 2 84 201 3 5282 61 770 19 2 45 9 6 4742 370 19 1 157 4 1 1392 144 143 27 70 275 5 64 11 1 523 554 12 98 27 470 10 29 2 1428 66 190 24 71 1 2732 4 2 156 81 142 285 1 108 1 265 17 16 2 264 158 20 9 1902 1814 6578 51 61 268 49 1 494 12 20 7779 49 12 8 12 20 5239 73 8 455 2 156 38 35 367 48 5 144 173 368 90 138 9 28 57 1 4 2 84 441 17 12 39 775\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 28 4 1 80 1884 1045 104 4 1 20 59 2 18 17 31 1115 958 9830 9 18 2 147 1446 4 502 3\n0\t464 660 32 1 3942 8318 5 1 5 1 6800 478 363 32 4690 86 1258 5 186 235 2301 3 286 1 21 9894 23 2339 236 58 5 1 13 4567 670 34 7431 124 236 2 1445 3596 3 9 6 58 193 146 63 26 367 38 1 233 11 9 28 6 258 1445 220 3 51 6 1345 58 302 29 34 1463 16 1 3596 10 39 629 3 51 486 90 3116 16 110 1923 32 9 1 82 464 1329 4 9 21 6 1765 205 1 873 3 706 6 2680 3 815 1 3576 16 13 92 305 1 4386 253 297 176 3 39 908 9448 1 166 12 16 1 9004 8 74 159 1 873 5229 358 324 3 1 5197 22 366 3 1344 15 1 215 8921 3500 3 1 3168 1 566 168 22 152 13 659 50 1520 1 251 6 2 15 1 1675 4 7431 8210 51 6 103 5 3442 737 3 7431 2606 800 6 524 7 272 4 9 8457 10 153 55 209 542 5 6662 1 3214 3 596 10 13 47 4 394\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 2 2555 1214 3 8 24 219 10 97 268 3 10 19 154 45 116 94 1 306 2998 38 132 9042 14 3 1215 98 176 14 294 3142 5822 9 6 1 1585 49 1 1387 432 2247 3687 1 67 1047 15 2 8975 4404 3 51 6 43 84 494 189 2142 4035 3 1922 1777 102 46 3245 460 35 352 5 90 9 3056 2956 23 228 39 1780 14 31 1297 93 51 6 2 46 170 2047 6969 253 25 2289 14 27 152 1136 28 4 3571 7 148 86 129 35 4035 4 1 5931 4 553 7 3984 2366 1 3177 6 109 248 3 49 1 1079 2456 10 1 296 1585 15 296 786 186 85 47 5 99 9 382\n1\t0 0 0 0 0 0 0 0 145 20 273 8 365 106 34 127 81 22 648 38 737 436 42 39 11 43 81 36 5 38 13 92 18 12 407 505 43 190 24 57 6612 15 1 171 34 105 1774 5 139 1678 420 56 243 20 3137 5301 17 51 61 43 188 11 52 68 89 65 16 1 13 2409 3 8 336 1 4 1 4885 1797 49 23 597 1 2590 429 1 597 23 5239 685 23 85 5 70 2098 3 149 1 7660 1355 1797 49 317 3814 457 1 3736 33 63 59 70 23 140 11 103 567 23 2086 1797 29 1 182 1 4237 936 24 390 364 1119 73 819 214 47 479 39 41 2109 71 41 13 1 397 12 136 1 18 12 924 1 3018 2126 136 1516 61 483 109 7076 13 20 1 113 426 4 18 16 137 35 96 2338 3 1856 22 1 2059 426 4 203 421 2109 165 62 17 84 16 137 7824 9500 5 186 1 7988 16 5080 3 35 83 24 1245 15 1 85\n0\t3261 1342 66 62 1453 33 22 3549 30 6360 3 1 2891 704 5895 2572 36 41 7893 3 1360 36 44 3504 3 2711 59 73 1 413 22 105 439 5 2410 450 2 138 21 54 20 24 2665 4580 19 1 4 415 14 10 5193 738 1 4990 10 54 24 620 11 10 6 3303 66 40 1699 5 11 315 415 22 929 5 3471 1 46 166 14 62 976 128 2094 633 3 11 2602 296 5732 882 5193 2496 73 4 8088 415 2161 5 1594 730 3 62 537 13 872 37 236 2 1503 29 216 675 518 7 1 21 28 129 649 174 11 220 27 143 1451 25 1725 60 7457 65 355 5733 4464 3 30 1 6 11 7942 321 5 1110 5 62 2602 7839 5 62 221 7529 3 11 10 6 62 2818 11 5549 450 1451 28 174 7 116 345 7787 2712 3 23 495 549 4 1 482 5778 115 13 69 2 3285 5 447 3 6695 668 6878 3330 980 5646 15 1117 709 5877 265 3 5692 7928 34 7622 5 218 1666\n1\t72 1457 7 2491 420 134 9 1324 2 222 36 2 6158 17 220 72 8706 987 134 42 52 36 2 682 13 92 119 6 3373 17 1 67 6 1 18 6 1244 7 1 111 1830 3 1636 22 78 4 1 67 6 620 243 68 8680 66 8 149 151 10 52 1546 3 866 69 3 66 93 557 109 16 2 67 370 19 2 709 347 883 2461 29 268 8 343 8 12 152 51 7 1 185 4 9 67 69 51 12 132 2 1087 286 538 7 1 541 4 86 13 150 83 396 2923 104 5 1 1402 33 61 370 17 7 9 524 8 1405 2720 8 114 335 1 347 180 969 1 2388 66 6 84 73 10 40 43 360 7982 168 3 7228 13 93 472 50 103 809 2 103 1186 68 1 487 7 1 141 5 64 10 94 8 159 10 16 1 74 387 73 27 40 1636 29 408 3 8 405 5 333 9 14 2 111 4 1790 2 4784 19 1636 15 550 27 336 10 69 3 1\n0\t1 2274 13 150 214 1 67 5 26 761 3 1466 8 12 852 5 309 2 67 4 2 4453 1248 35 12 3542 30 3 8 12 852 5 70 5 64 3 566 8456 300 55 24 5443 41 2278 473 77 461 17 3911 1670 1 67 2665 19 1 2419 4 48 2 7661 204 33 57 1 824 16 2 84 8095 3 378 72 165 2938 13 1701 503 1 59 240 546 4 1 562 61 152 29 1 46 714 72 87 70 2 156 238 541 29 1 714 17 10 247 279 2572 140 1 389 562 5 70 5 2350 13 150 173 56 354 9 3118 8 57 1866 10 155 49 10 310 827 172 1742 3 8 1595 1 562 37 78 11 8 10 16 982 8 59 937 10 142 5 64 48 420 71 6515 3 944 145 46 1140 11 8 1322 50 430 120 61 8 449 51 76 26 2 2638 562 39 5 5611 1 1199 3 8 449 33 70 10 260 398 290 10 54 26 2 464 1152 5 182 1 251 15 9\n1\t608 193 2 5938 1 1081 7 1373 1 1914 11 1113 1251 32 43 709 1 7466 5090 5 772 2887 12 174 3 2579 1567 653 5 1 1156 4830 66 1521 590 65 29 43 613 2276 6908 2 7078 9 1664 52 68 227 1751 5991 3 790 1464 1548 10 65 7 2 2806 4 14 31 4 376 35 57 556 3320 4 25 5 820 19 86 221 102 206 4570 204 1501 58 3170 8638 608 220 1 1567 824 32 102 203 4235 6094 993 27 57 2941 4623 1 3 7192 1 170 951 22 262 30 1282 2770 794 3 3042 794 44 613 1557 1845 608 1509 27 54 411 186 1 466 7 2 696 6054 4 5113 66 8 24 7410 39 7 85 5 3272 14 31 5 9 31 240 204 6 1 4 2 821 66 6 6585 7 2472 38 1240 2 961 17 243 2304 1 4 25 2399 1004 40 29 225 14 78 5 87 15 10 7 1 223 133 1 376 7 2 1538 1 21 8428 2 53 934 4 299 608 591 29 2 1452\n0\t32 5 1531 3 26 14 797 14 2 1398 2880 15 1 263 27 6 27 151 2 3943 17 10 93 621 13 213 46 1202 1497 44 176 4 5244 6 198 1 5102 78 36 3 1 1300 213 1057 292 7 62 46 1710 168 33 1429 10 109 13 308 316 758 25 1021 356 4 101 31 1807 17 27 105 3126 32 1 5361 8 152 149 122 5 26 1 80 240 129 4 1 17 378 4 1273 33 39 90 122 31 1335 16 2 9638 1366 47 566 5636 13 1601 7 399 9 18 6 660 1832 45 23 57 53 6287 3 19 86 3011 14 2 18 801 6 20 75 42 377 5 26 42 128 2444 8 83 64 1 4651 14 9844 17 8 29 225 64 10 14 31 837 7516 7172 11 40 43 240 6207 53 1357 2 156 211 2131 3 227 6379 3 5 1 1082 19 34 127 3 8 56 449 1 76 187 199 2 138 839 7 1 3925 4672 8 83 24 2 163 4 449 303 16 11 94 9 4006\n0\t1 91 559 73 27 339 26 2705 5 8055 10 960 3 37 3377 13 872 23 54 96 11 45 3117 61 37 9589 5 2084 1 4324 32 1 2968 3012 11 27 228 1006 16 2 156 1481 15 2 156 3 2 7494 41 102 5 155 122 1095 378 4 39 770 15 1 558 613 34 1 290 9 12 377 5 26 2 1383 17 33 634 36 42 174 431 4 115 13 777 34 243 254 5 8 1116 11 1 4030 61 5733 1953 7 1 4943 4 62 67 30 445 3 85 8 1116 11 6 152 2 3408 1360 1958 193 27 2019 350 4 25 17 8 39 173 352 5751 8055 1 49 1 6513 311 1243 77 25 41 328 5 2963 65 1 2468 3 51 22 58 2792 29 1 6562 2819 7 55 2 115 13 9008 42 4010 4 1 277 8961 7769 180 57 2 138 640 3 57 52 1190 3 2 138 950 68 17 42 31 1233 115 13 33 143 333 33 314 1796 1513 1 462 24 71 1796 1653 413 32 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2634 22 104 11 22 1853 3 51 22 104 11 22 37 489 33 22 8069 3 7278 896 679 4 882 3 91 691 1491 39 978 23 118 48 8 734 5 1 1541 14 530 48 6 1 1122 4 91 104 15 132 9493 3740 4 115 13 988 1862 4949 12 1 376 4 11 141 3 11 12 30 6868 3 1 19 1145 856 195 9 387 15 2014 605 334 19 1 4 112 2266 15 1 166 11 4188 165 5 90 299 4 330 988 1862 4949 141 4 611 78 4 1 6812 691 11 8 1505 12 5708 16 756 4227 17 1604 8 175 5 99 11 431 341 14 73 48 123 988 1862 1 3740 630 82 68 1145 856 115 13 45 23 24 2 184 679 841 11 1320 16 1 6185 11 653 5 174\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2199 8 2500 1 4 6491 8 149 512 7782 50 522 52 3 52 29 1 447 1358 4204 2976 4 1938 10 12 84 5 26 1385 11 10 12 39 14 1184 16 79 155 7 50 326 14 10 6 16 2976 1938 9 21 3269 11 272 408 5 1 45 23 22 2 518 2032 325 468 112 1 135 32 5 31 2986 3956 9 18 6126 579 115 13 4634 16 2 170 3524 144 33 143 24 52 759 32 1 646 100 118 1785 115 13 150 114 24 2 465 15 6730 129 2 5230 349 161 2784 136 27 12 295 60 3 44 417 24 2 1433 11 7005 2168 1 2475 209 3 297 17 58 798 4 34 1 3185 3 75 127 374 165 62 1191 19 9 9357 13 3852 260 51 15 125 1 884 984 217 8627 3 374 14 28 4 1 34 85 1886 9676 13 150 134 751 10 3 99 10 15 116 374 3 771 38 10\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 50 4911 8 179 3 24 455 11 10 12 160 5 26 37 8 247 852 1264 245 8 12 3202 5658 29 74 8 143 186 109 5 1 466 282 3 143 56 474 45 60 1457 41 6920 94 2 136 60 373 1662 19 79 3 726 2 1904 1223 42 20 39 43 1222 21 106 81 1288 16 58 2560 51 6 2 1138 67 11 59 270 2 156 2110 4 1 158 17 2980 2 3284 8 54 354 9 21 5 3622 45 317 20 273 39 99 10 1441 42 59 31 594 3 2 350 4 116 500 317 160 5 414 16 5298 172 2799\n1\t1 18 117 196 111 105 8071 49 1 418 5 2 3947 1 118 49 5 1622 1695 2 684 799 15 4700 19 1 2857 3 599 125 5 1147 5 44 112 16 122 498 77 1147 6783 3305 348 79 38 1 6 10 2367 1501 11 15 1 260 1097 27 63 3258 411 109 19 1 184 2238 3 2300 5874 1373 2 1829 2732 4 684 267 6434 6608 5290 6 39 501 1195 1033 11 270 2 595 1684 176 29 1 684 267 1818 42 2 18 11 559 3 63 205 1999 1467 591 1 559 35 6290 2225 29 43 272 285 1 349 3 1 2479 35 191 934 15 13 2719 45 1 808 7258 596 88 786 4258 65 38 1 4 1 8 54 1116 110 50 24 100 1196 1 6459 37 8 50 6533 2974 68 13 92 596 4 2367 2300 684 1073 1 808 41 2225 7 940 130 1064 685 6608 5290 2 5786 8 511 139 47 4 50 111 5 3937 3 64 10 29 1 74 1492 387 17 4353 90 2 84 13 9409 5934 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 186 28 176 29 1 1203 4 9 141 3 23 118 260 295 11 23 22 20 38 5 99 2 7649 135 9 6 5502 7 154 17 10 123 24 86 2184 480 1 176 4 1963 1652 11 1 18 1 67 6 152 240 29 43 6397 292 10 6 6803 1789 385 1281 30 1 3660 168 3 447 168 15 2143 1 121 6 489 3 1 206 114 103 52 68 272 3 66 6 144 1 8562 1234 4 1349 12 965 5 359 1 13 659 1 9913 2 5360 3028 1937 2 11 63 473 122 77 2 797 3 3489 3527 7 1 3395 2 3073 7247 3028 1937 2 11 63 90 122 4476 122 5 2881 19 341 16 43 25 8030 509 83 504 95 232 4 1741 32 490 3 6264 725 16 3 8511 6077 2931 66 196 148 761 148\n1\t2642 4141 1 15 623 3 61 826 32 1 7667 4 1 1533 292 6275 6935 2 103 4448 8 339 694 140 31 1260 993 962 1977 41 1 1449 204 6 11 415 112 6275 3 70 997 65 7 1 13 150 54 112 5 118 835 390 4 60 6 434 19 14 7539 667 15 17 2 5786 1 7 44 671 380 902 2 3289 4 1 2838 3 6706 1109 11 1553 1215 2711 1 60 7 9631 4093 4 44 278 14 6 2 9655 7 2 2305 706 5812 54 24 39 132 2 17 60 2656 49 3038 15 7953 1031 97 82 412 60 784 908 227 5 26 1215 286 167 227 5 1959 1 410 5 751 4137 5 4341 13 927 6 2 1114 185 4 144 1 347 1 263 863 78 4 10 6275 3 7748 1708 1 189 1215 3 6944 15 2485 3 2446 292 1215 784 14 908 3 1316 14 8112 60 4364 5 26 30 1 2642 1 102 951 309 142 239 82 8204 115 13 252 6 1 80 425 1260 4 1 113 1151 821\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 84 2 1117 3953 5 34 137 35 256 62 1128 516 1 103 8262 6 31 491 3110 4 48 23 63 1743 7 39 5230 2569 53 160 8 63 20 947 5 64 48 116 398 865 76 1142 646 26 15 23 34 1 699\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 292 8 143 36 3328 217 9156 14 2 158 8 114 4429 1 1014 1215 6403 3 626 763 6065 22 84 7 9 108 8 617 198 71 2 325 4 216 17 204 60 6 7358 3 627 29 1 166 290 763 6065 40 1 1514 5 90 154 280 27 2148 77 121 27 380 2 84 278 7 9 21 3 51 6 2 84 178 106 27 40 5 186 25 435 5 2 408 16 3797 81 73 27 173 474 16 122 4078 11 76 1173 116 2935 8 511 56 354 9 21 14 2 84 1262 3560 17 8 76 134 23 495 64 78 2625 121 7369\n0\t0 0 0 208 4043 246 209 4 717 7 1 3575 8 192 2 6590 16 127 232 4 502 8 63 335 43 4 1 4 1 7139 870 237 52 68 80 1098 245 9 18 6 311 489 7 154 3293 13 8413 4481 8020 4 1 7139 8726 6 1463 14 2475 564 2 170 223 1773 49 27 6559 2 9 18 6 37 586 11 10 6 20 55 211 5 99 14 2 19 1 4 1 7139 10 6 36 2 303 4779 324 4 571 197 1730 1488 1 59 302 8 419 10 102 460 12 73 51 22 43 4 796 19 1 3975 6187 8 339 149 2 5808 16 1332 13 4255 1041 202 58 640 1092 55 2 165 194 31 9 248 29 4201 47 239 5210 178 39 5 2222 65 1425 13 659 2 1213 1298 4 157 4554 1 376 4 1 18 5187 2 7 148 157 3 9400 2 2471 7 28 4 25 12 643 3 27 12 1172 5 4193 106 27 12 643 7 2 5596 39 2564 27 165 5 597 9 516 14 2\n1\t15 1 37 33 1291 5 5 149 47 48 33 114 5 3183 1 4287 906 3479 81 1173 77 1 1559 1828 3 27 1035 5 186 1 806 111 47 30 1363 2085 245 27 1082 375 984 14 27 4632 411 7 1 7 1 6551 7 1 7 1 7 1 2467 2069 318 27 475 5580 9 178 190 24 71 3288 57 2 696 178 20 653 7 102 2584 13 9608 2 1910 4 1 1937 11 664 5 1 3479 6417 1 5856 1353 24 1826 1 2471 40 19 25 1828 253 122 6730 1279 498 19 849 2648 1 1653 5 1 1559 3268 49 1 164 475 7911 1 508 16 2 156 4821 5 352 122 827 6730 2734 1 13 659 1 1161 149 47 11 1 8063 4 1 569 1172 1 3479 5 1270 6926 3 11 1 2834 4 3479 32 569 5 569 629 34 125 1 4236 1 1161 2 3417 11 951 1 3479 47 4 1270 2312 3 270 126 34 1 111 5 2327 13 92 1028 18 7737 3 1 84 6730 456 90 9 28 373\n1\t4 5490 3 145 685 34 1 1365 5 7 25 2132 25 372 3 25 263 17 8 285 1 586 570 178 3 57 5 26 30 7 1 1400 4 1 5271 16 503 50 157 19 50 221 143 473 47 14 6565 14 9 6582 17 8 24 198 721 2 84 1451 16 31 2342 35 63 3471 132 3 37 400 411 7 1 864 27 6 242 5 311 8534 1 164 6 2 1744 4 1 74 639 3 2 1365 5 1 423 9 21 6 1 3350 4 4961 97 4 84 121 3 84 8903 14 43 453 61 248 7 706 395 168 15 6042 5602 3 8194 2093 738 9944 3 508 7 710 1543 80 82 3 6227 114 25 221 3710 7 706 3 8 45 23 780 5 26 5 4218 1 5070 32 710 5 706 3 285 1 3271 168 136 133 1 2313 5805 19 6408 1771 9 21 6 185 4 2654 2000 66 93 3 906 128 1336 89 10 5 2 547 305 5805 7 5229 3441 3396 5 867 1 277 124 54 90 2 2313\n0\t5 2 658 4 5 26 1 147 466 2851 4 2 1301 11 6 910 172 576 86 37 33 34 4 127 489 8589 669 179 296 57 86 1555 4 35 87 3833 4 39 38 154 382 341 891 788 3 98 33 757 5 1 1301 1144 35 22 1067 6514 1 7678 4 239 4 127 23 88 64 138 341 52 891 4113 29 39 38 95 366 1957 7 95 707 7 1 4370 13 499 40 34 1 692 824 4 154 82 864 880 1054 864 1054 1054 1054 4 2137 3 1 1054 4 28 29 1 182 4 239 880 63 127 289 70 95 52 42 674 2 7881 4061 19 1 185 4 1 2 226 4 449 29 62 433 183 33 22 475 3963 77 492 45 27 57 95 9458 4 7529 49 6779 40 5 26 3343 125 7 25 20 11 61 117 2 84 9423 17 8 57 58 312 33 61 9 4224 45 22 29 34 4 48 891 3 2456 40 9 131 54 26 1 570 3905 11 891 3 2456 6 308 3 16 399\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 190 24 20 71 65 16 1748 2520 3 7696 42 167 5174 17 42 39 37 78 7311 162 151 79 2618 36 1037 3 3 3654 1037 3 3351 22 2 84 111 5 13 3422 8 112 313 8095 9980 1486 6 3288 5 437 469 6 892 3 1037 3 3351 22 55 52 81 187 79 9629 38 2083 9 141 17 59 56 2288 76 134 42 20 55 2 222 2072 45 23 36 490 468 229 93 26 2 325 4 1561 3751 7011 50 4391 3 1230 3 920 194 193 33 90 23 3 473 116 1009 2287 37 99 126 39 16 3738 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 19 249 518 226 2016 2056 8 63 785 48 134 38 9 461 10 6 1458 5 26 14 28 4 137 687 249 1902 1199 7 34 1 67 427 123 24 2 514 1298 5 194 3 23 228 7777 7936 207 20 48 8 688 14 2 158 109 10 6 20 806 5 1780 2 1362 6172 505 443 1093 7077 4893 1252 1453 236 162 5 1274 1608 11 1361 114 72 321 1947 9 6 2 21 11 23 63 99 10 3 98 995 11 23 55 5399 3 48 12 1 462\n1\t4 1 647 72 64 38 5 1917 2 4510 5 2 2269 16 101 5474 30 94 1673 1 2741 1756 349 178 11 43 134 1699 5 1 182 4 44 1892 15 988 33 24 2 1386 7 66 6461 15 4739 200 1 4159 4 436 1 700 447 4 661 1287 115 13 8926 35 1304 6 2 27 6 3446 5 11 27 76 1594 1 6368 4 1 429 6368 136 4643 1 2059 4880 7 1 442 4 734 2 1317 8002 3 7613 454 436 20 1080 201 14 2142 35 5214 3 2615 40 390 44 5847 55 193 59 451 5 131 11 60 7848 1 293 3179 4 115 13 724 236 1129 115 13 3793 36 239 4 3119 127 120 24 62 9816 66 33 3673 28 30 28 7 2762 10 6 127 7379 11 6883 3099 5 3467 72 481 352 17 64 202 7 1 1938 2958 72 64 1 1985 4431 4 9830 3 1 3703 4 1 18 432 6566 10 6 2 1127 3 1201 13 6 28 4 50 401 681 104 4 34 290 10 6 1169 2713\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 39 159 9 18 19 13 3440 433 50 1508 49 8 12 170 3 9 18 1416 114 1388 13 150 63 230 1 433 11 1 103 282 13 92 507 4 1841 5 64 44 435 13 5 771 5 13 29 225 340 1 680 5 134 13 872 145 37 2610 15 1 3674 11 12 1059 155 5 13 11 44 435 284 44 3 1172 10 155 5 275 5 44 3 751 44 2 1124 73 51 213 2 2700 7 13 499 39 1572 79 230 11 87\n0\t6 1 61 1 54 24 5733 7247 1 3 1114 1 559 1379 685 1 1238 5 352 122 10 689 9 495 916 1 1238 76 70 2 163 4 17 58 10 12 4246 7 94 2934 1544 2 3339 606 65 25 186 679 4 17 58 5030 166 524 15 1 13 1 1277 285 1 49 2296 224 16 2 156 1507 5667 2423 440 2805 5 357 65 1 5030 23 64 2 613 516 122 35 213 288 29 25 606 29 513 688 260 49 5667 2423 418 1 65 805 1 613 2457 25 522 5 1 2401 1148 1 4391 3 1279 792 5 1430 94 550 10 6 2317 814 260 49 27 455 1 4691 3 159 1 4391 27 563 11 12 1 606 27 12 288 1987 75 123 27 118 42 1 260 27 59 1148 1 155 4 592 13 3616 1 18 6 1466 51 6 58 2286 51 22 46 156 1 18 6 2317 8 24 100 107 1 215 17 8 1439 8676 13 150 187 9 18 755 376 47 4 1731 70 1 884 3 6903 3438\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 610 2 147 67 2519 17 9 684 267 151 1 1292 916 2 170 3 2 3131 434 1612 2659 30 680 3 560 45 33 22 928 16 239 1715 292 205 22 5586 5 227 33 128 230 11 62 1898 6640 6 47 51 8449 2 103 5262 7 43 7714 17 1420 1629 101 2 684 8 192 202 5 26 50 430 178 6 106 5749 6 19 1 2435 3 4537 418 1 3177 6 202 105 4502 17 80 9 6 20 28 4 2812 2842 17 35 7 1 898 88 20 26 30 3045 1594 6 2666 30 3924 3 6352 294 266 1 210 280 180 117 107 122 1107 19 1 82 874 6059 6 3445 3 695 99 9 15 116 1898\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2181 40 433 25 1514 5 787 494 41 120 11 22 674 32 239 1715 9 6 1 524 15 3 106 34 1 120 1271 15 7384 5103 3 24 922 3 985 4 793 11 22 20 5 261 1137 4 2 723 4646 4 106 2181 2058 33 93 1555 1 166 2284 5538 4 101 446 5 4535 3780 5003 11 1030 5 24 71 2776 30 1730 5893 4 62 4740 1261 41 48 33 87 16 2 13 92 59 129 35 5027 1137 4 9 1065 6 76 14 1 7466 2394 2181 292 27 123 20 311 209 142 14 1674 403 2 2394 2181 1418 1920 3730 4497 7 1 9418 1419 1 1817 41 4197 11 1 148 2394 57 49 27 12 372 1 185 411 7 25 113 3648 13 92 182 1122 6 174 7 2 3983 4 1537 32 2 1951 35 40 71 7 19 25 1081 3214 16\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 485 36 10 12 160 5 26 56 695 8 12 46 2337 5 64 10 17 12 46 1558 10 12 46 8366 1 119 12 93 167 5128 8 12 852 10 5 26 56 211 17 1 716 1121 55 11 452 8 12 93 56 945 15 1 1905 8 54 20 354 9 18 5 4315\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 220 2975 40 71 28 4 50 280 3 44 278 7 9 14 2 287 35 1605 1 164 60 1371 70 7 15 25 601 6 8 54 100 24 3114 44 129 7 1 1191 4 2 3556 2922 17 2734 10 142 15 3 380 25 113 278 7 1 976 7592\n0\t8 214 512 4485 48 8 12 288 29 194 3 7739 75 10 262 47 15 1802 2315 2574 7481 7243 3 2349 195 8 12 283 127 754 171 372 62 754 871 3546 30 742 7798 3 1072 3231 13 1833 10 12 34 2780 8 214 10 247 14 91 14 8 57 909 17 42 58 1484 16 1 1766 1 102 250 5635 7 66 9 4743 21 247 14 53 61 1 189 1 102 951 12 1156 3 101 59 1597 1507 33 4847 1 67 15 924 85 5 2210 1 640 120 3 1300 189 137 7672 3 61 5022 3 311 58 1484 16 3 3574 14 3 13 8212 9 1525 86 221 12 7 1 82 647 132 14 3 12 1442 14 3 626 14 522 4 1 8174 6692 10 93 12 595 240 5 64 1 85 2990 37 1 7077 4560 61 34 362 7602 378 4 3818 3823 1 857 12 46 9839 39 13 2298 28 956 12 227 3 8 76 3472 139 155 5 1 215 324 16 1 344 4 50 8441 4 9 382 67 3 4006\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 1 4070 72 24 2 2276 11 289 2 6618 91 4316 140 12 2 21 15 6496 6634 404 38 2 56 761 287 35 741 65 355 2035 49 5266 1173 77 44 2168 255 155 5 9195 44 6818 60 451 122 5 3143 1489 19 44 9975 5259 3 60 495 369 122 344 318 27 123 1943 60 122 3 1 7125 7290 9 18 6 323 28 4 1 210 104 180 117 575 3255 8 36 91 484 193 5363 18 6 8 12 56 7782 50 522 533 1 212 158 1437 35 179 9 54 26 2 53 312 16 2 108 6 39 37 3182 1 119 6 1 121 6 1 322 23 70 50 1441 45 23 2942 64 2 56 91 18 69 56 56 91 141 841 9 28 689 23 495 26 1558\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 43 4465 172 1742 2285 7561 2 347 2206 3634 15 1 709 347 2342 8781 587 14 1 5806 4 9 18 4705 65 15 1163 14 27 9321 1 136 72 1876 5 1 1436 7 3 64 43 161 5993 3 1131 4 1 164 2085 43 546 4 1 3634 61 20 7561 7 1 347 29 1 4 3 72 195 118 127 3691 15 25 32 25 1725 94 27 57 31 1971 15 28 4 25 1018 172 406 54 390 25 330 31 240 177 1 18 123 20 7743 109 6 1 7 1 1402 32 1 362 3 1402 7 1 7 1 6559 4 1 5 1002 1402 39 2 156 172 406 395 1668 19 1 5012 8 209 47 4 9 18 1311 2 156 52 188 38 3 283 122 14 2 222 52 9583 68 49 8 209 7 5 1 3447\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1740 8578 1797 876 1 3216 5 9670 17 7 9 18 27 3 34 1 344 4 126 481 652 95 2618 19 50 41 436 39 461 33 637 10 1073 8 134 42 2 351 4 50 290\n0\t0 0 0 8 112 25 4647 19 11 131 6 198 279 133 17 226 1925 8 343 1 131 965 5 723 625 170 559 2 147 887 707 2138 11 80 4 199 54 1288 1987 1 5305 191 24 71 31 5 24 132 1032 7 1 74 1888 37 8 343 1 321 16 2694 130 24 71 758 689 3086 1 119 38 723 113 417 355 9 2138 12 20 2959 8 54 24 71 6324 45 33 57 5 899 7 15 28 4 62 1007 66 54 24 2666 84 623 3 5017 38 1 3989 274 960 51 114 20 291 5 26 78 623 7 110 8 192 59 133 10 73 10 621 183 50 442 6 7646 19 2 1707 2016 8 96 33 130 139 2366 9 1125 3 357 2287 72 321 52 231 602 1199 75 38 3 25 417 899 7 15 25 5532 1007 7 1 94 2 1473 3945 62 334 1781 33 88 24 309 1 435 3 8528 309 1 532 3 5017 1 1307 4 6811 15 1956 36 1504 22 2174 3 1 3201 6 6297 110\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 30 237 1 113 392 718 117 1001 32 1 46 477 4 1 74 431 49 3361 4871 4782 1991 1 3276 795 7 1060 326 1 1481 5 1 570 663 4 1 392 49 1 1478 125 6713 8 100 1155 2 330 4 9 382 251 3 8 320 10 109 55 193 10 12 111 155 7 239 3 154 1329 4 9 2432 12 2777 7 9278 9 212 251 130 26 956 16 14 97 4 1 3781 537 14 888 37 11 1 2432 4 234 392 102 6 20 2494 3 11 7250 3 22 20 1852 15 41 1842\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 815 28 4 1 210 1598 506 1764 104 8 24 117 575 10 1026 1 687 804 4 2 8907 3763 881 540 3 2 1598 8140 15 2 8380 7 10 1 1198 276 111 5 78 36 2 246 184 49 10 130 39 176 36 31 297 38 9 18 6 8385 3 10 1506 938 94 6216 144 22 51 198 102 3582 8764 6333 47 94 534 35 3496 236 198 2 259 3 282 35 1555 2 4153 631 112 796 136 33 22 7 157 5215 4149 5 78 40 459 71 367 30 79 3 8 230 14 45 145 2721 50 85 523\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 1 1894 4 7291 9012 371 19 2 826 2519 15 58 119 41 95 547 111 4 121 180 107 7 2 223 290 168 32 376 7591 8675 4 6602 2207 4 1 3557 3 1599 10 337 16 31 34 47 392 19 1 545 7396 12 9 18 10 247 2 18 29 13 2663 45 10 153 139 37 402 5 152 26 211 3 3882 1280 3734 14 2 1073 1 18 123 1857 43 4267 1 3979 6 5 256 1 7170 168 7 1 2664 4 62 215 703 63 26 211 648 1 288 6762 892 45 23 1498 10 5 2 3 1 510 63 1851 2 163 4 299 9549 155 3 3194 189 3 41 1034 25 442 5265 13 7479 95 1935 32 9 18 6 301 19 1 1296 4 3 2407 4 1 7125 20 19 1 1152 19 1259\n1\t2 133 174 793 3 4270 4 8 214 39 1136 8053 3 1 312 4 9685 2 3421 140 1 7999 4 1007 6 258 7 9 661 3669 286 9 6 1 524 7 9 8709 135 553 15 2106 3 1684 9528 72 825 4 3 35 24 59 2006 308 3 22 195 19 62 2094 681 326 14 1113 10 6 832 5 241 7 9 3611 1969 717 11 132 31 14 31 8678 1892 128 186 1888 72 64 1 11 9 170 342 811 14 33 209 371 19 62 74 1925 3 75 33 328 5 2 55 193 33 87 20 118 28 2877 72 64 264 3547 4 1892 3 14 1463 30 1 82 5740 93 19 32 2 342 4 5315 172 1136 5 508 128 8881 4 253 236 5079 2347 3140 4608 2103 3 3770 4 147 1175 3 133 1 18 15 4220 373 2019 43 4 1 4 1 441 286 10 6 128 2 4621 5 836 5080 43 4 1 119 6 2 103 4481 3 1 3417 5815 2 222 1366 47 3 618 1 790 18 12 279 2034\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46 240 3 866 718 38 1 234 4622 2658 2432 19 5302 250 833 4 10 6 1 4 296 35 713 5 2464 14 97 81 14 33 21 6 1768 931 3 243 81 107 19 412 24 433 62\n1\t0 0 0 0 0 0 281 397 4 2773 6 5171 7 781 6802 4 510 7 1 423 6888 48 151 1 67 1884 6 2 2335 2437 6085 919 35 9 4806 14 27 951 31 1438 487 140 1 8067 77 1 1191 4 25 221 193 2773 2530 140 1 6753 4 1 3725 4 2214 27 5195 58 4548 2 8682 3 4827 22 51 5 5861 550 7 1 769 27 6 2052 32 1 4 7989 29 1 1735 6 1 80 4015 4 1 3284 4 25 1175 20 3464 17 8327 286 73 27 6 5 946 1 6 527 68 1037 73 27 5093 103 35 390 7 1 750 6 25 4159 6 17 14 530 1 113 6 2130 7 60 7791 1037 1330 1109 47 4 44 1052 321 16 1629 286 1031 29 1 2591 4 44 221 727 60 123 4 44 30 2084 2773 32 188 22 20 14 33 7 50 1520 9 538 6 48 151 632 4211 69 8 54 187 9 21 2 17 86 4743 1077 3 61 1952 2 514 3 2 1517 3271 67 16 34\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 2120 1 1267 7882 228 26 341 15 1 3319 1376 4 1 7943 132 188 22 52 728 8 338 1 632 4 110 193 20 56 31 632 429 135 10 123 1851 2 103 2537 5911 168 32 85 5 290 115 13 150 24 102 3441 42 105 3752 3 2824 1 672 23 785 32 85 5 85 6 20 13 13 3829 7530\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 5245 49 8 74 159 9 4555 50 671 8274 2 376 6 1711 6 1 18 11 1572 23 118 48 112 6 56 36 480 1 294 4402 3 9307 3374 23 93 839 48 42 36 5 1621 2 112 36 11 30 1 182 4 1 108 6649 3 24 132 84 1300 371 3 1 265 6 49 6649 4094 15 28 52 176 29 4441 944 42 39 1011 9 18 89 1 788 28 4 50 2201 6 132 2 299 4923 93 8 112 1 2753 4 1 7602 3653 1739 2 2 376 6 1711 6 50 604 28 430 108 9 18 6 2 1935 5 99 3 6 2 29 1 714\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 465 583 6 28 4 1 210 104 8 24 107 7 1 226 9 6 2 91 18 38 2 4279 487 6345 30 102 4192 17 27 196 77 1245 3513 11 5811 63 1564 5030 27 63 2545 81 15 2 27 63 256 2 974 19 10 6 2 91 18 14 78 14 4076 2 967 6 31 55 527 760 7453 549 13 47 4 3615 8 187 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 83 118 48 5483 12 517 5 1959 9 18 5 24 1 166 442 14 44 1533 180 198 71 2 184 325 4 1 4770 3 12 37 2337 5 825 51 12 2 18 7 1 3375 8 192 1997 11 1 6981 4 347 5 18 213 425 17 9 18 12 1 210 1218 1 1487 4 1 415 22 3013 3 43 4 1 155 67 6 3013 17 11 6 38 110 8 230 36 8 433 2 53 4328 4 50 85 242 5 90 10 140 9 108 9 56 130 24 71 2 6466 5 348 1 67 1 111 10 12 13 92 171 16 3 61 55 193 8 12 9178 29 74 38 8 59 555 3771 57 2 138 263 5 216 15 73 9 56 57 162 5 87 15 1 347 29 513\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 6525 19 5165 966 202 154 594 41 154 37 49 72 337 5 1 257 1691 61 46 7156 17 850 2010 75 747 9 18 8233 10 6 2 18 7 368 541 38 2 18 7 2 108 7851 289 37 935 72 662 1578 5 2230 368 8 192 20 2 18 17 8 96 2 53 18 418 15 2 53 1471 3 1 263 6 2 9649 36 50 915 427 3908 10 6 4516 3 98 23 88 39 7571 5 1 756 14 322 197 56 283 2357 11 12 1 507 2224 165 49 72 159 7851 6 2 91\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 312 516 9 21 12 2 53 461 105 91 10 247 428 530 1084 3598 14 1 3877 1807 12 2 53 3486 3 27 114 31 1485 1614 816 19 1 82 1737 59 789 28 1900 7 80 4 25 484 129 88 24 71 2 84 628 3 55 1049 43 6811 3464 17 1 846 56 369 199 224 30 253 44 280 650 2 8217 9 12 301 8261 15 1 2474 1532 129 60 12 377 5 1142 8 83 474 16 121 2799 1 18 130 24 1168 38 3334 269 68 10 1322 1 206 1 9939 2570 183 1 1698 570 2286 8 76 359 9 7 50 1894 59 14 31 665 4 2263\n0\t1 250 129 4 1 108 27 6 1 6008 4 1 1280 1 353 35 2148 3114 11 2467 5973 1094 3 246 2 8777 2618 136 47 116 671 54 26 31 313 111 5 2545 1098 93 57 1 761 7030 4 5751 7208 27 100 152 39 7 2 298 6026 27 54 93 134 3921 16 665 49 1 1280 3043 2064 28 4 25 15 2 8285 655 283 490 47 58 23 87 1947 8 88 24 757 44 37 7 174 178 649 2 1757 11 60 54 24 5 44 221 16 8099 73 260 944 10 12 25 85 5 1923 32 1 91 505 1 393 114 20 90 356 73 136 1 67 4160 65 48 103 8239 10 40 959 1 66 6 355 2 5 1 522 3 1 344 4 25 9334 4714 101 4864 27 289 65 316 102 52 268 5 564 1 4307 1 18 1664 58 2651 4 490 59 1083 1 545 11 3959 32 1 1741 7731 1735 427 6 87 20 351 116 85 133 9 108 8 555 8 88 70 155 1 529 8 433 133\n0\t1167 65 174 9653 13 3926 51 22 2061 58 9200 7035 657 51 6 2 7 1 477 3 72 22 1979 5 1 981 4 3005 1 8066 4 102 9192 142 142 3 51 6 1 80 6363 3 1517 2411 1890 178 4 66 424 805 8 365 11 51 6 2 112 4 1 410 830 10 399 16 62 22 237 527 68 48 72 63 17 209 926 45 317 20 160 5 187 199 2 98 29 225 369 199 64 1 156 824 23 87 2497 5 781 199 2 7 1 3896 6819 15 2 1504 822 6 39 20 13 2699 401 4 2 904 1252 8 179 1 1177 12 650 5307 51 61 2 342 4 327 4067 17 1286 58 4523 41 1216 12 1 166 206 114 155 7 3 8 179 10 12 2335 27 12 14 4737 30 9 21 14 8 5265 13 92 18 196 2 843 47 4 394 32 79 3806 16 745 8307 458 8 214 103 7 9 18 279 1670 50 8691 6 5 99 218 4351 4 3 64 2 323 84 5879 203 4006\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 36 745 80 4 1 290 8 57 100 107 122 2074 31 318 9 108 27 2734 10 142 167 322 292 23 64 2126 4 3859 7 1 10 153 70 240 318 6682 8767 13 150 100 909 1 7670 8767 5 1917 132 2 1195 1663 44 3718 12 84 3 44 5217 61 1 111 60 4632 6146 129 224 3 122 6 304 5 836 9896 36 180 5691 107 32 2 18 4 11 8080 13 92 226 4465 269 4 1 18 123 735 5307 10 6 279 1 369 224 39 5 64 1 74 8767 6 2801 16 2 156 4427 2110 362 778 335 3951\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 119 427 4 58 28 6500 6 20 2 91 3486 3 1 915 729 6 4 169 2 222 4 3208 688 533 133 9 158 72 61 667 1132 139 5 1 1245 4 1565 53 6467 1 2036 6 501 3452 3 1773 22 6 1 478 37 533 1 21 1 478 12 3 78 4 1 927 12 13 677 6 43 53 121 7 9 158 3 8 96 1290 6 56 2 53 2099 9 441 15 43 4 1 166 1041 54 24 71 279 403 14 2 803 13 150 39 173 227 69 45 23 24 2 1953 2039 52 5 53 9004 478 6 14 78 2 185 4 2 21 14 1 3 42 279 403 1907 3084 4710 2\n1\t15 2 3583 3780 1 59 111 27 63 70 10 6 140 2 2398 15 1658 809 256 19 5 90 2 1305 329 4 2 2462 10 2378 16 1 961 1552 7 1 441 7 1 2585 4 1 7976 4 1 919 4 1 4 81 32 1 3180 3 6623 3 1 262 30 1922 6516 35 621 16 10 424 7 86 1048 9198 38 9 212 234 4 559 3 3 75 5 3922 28 41 1 515 197 355 1136 41 105 13 876 2 163 4 2157 5 1 6054 55 49 2202 128 15 1 443 19 1 7347 3 25 460 22 4492 1107 4299 55 5557 557 8821 16 2 668 14 27 271 660 101 311 1 7195 353 3 289 25 16 1299 3 3266 1 67 3 120 963 3235 224 5 48 1397 449 76 3659 3 207 4835 34 72 1006 3 48 72 6 1033 7 53 4 5296 1295 3140 3 2 156 759 3 5866 11 652 1 429 224 5363 4148 61 1 604 15 1 29 1 6486 2902 26 2 6769 3 1 102 2139 224 7\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 4937 3902 32 2 1741 6890 848 28 4 25 3 98 2 4728 3028 94 27 151 25 111 5 1 558 9628 398 1 518 3 2 147 526 4 1554 24 5 934 15 2 147 4 1 494 6 37 3847 10 6 254 5 241 11 8 12 446 5 6660 456 7 9 6 28 4 137 772 104 11 12 1256 371 7 1 750 4 1 1222 1592 4 1 480 848 1 2594 1237 9 6 39 8856 586 505 586 1252 586 1456 586 586 6 39 5 256 7 116 49 23 24 162 138 5 1690 292 8 1379 133 116 522 11 54 26 52 2072 1899 10 3 760 7955 13 3747 16 627 2461 2504 1516 1349 3 893\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 119 153 1857 95 147 10 55 418 1 166 14 6164 9615 9 85 51 22 58 82 16 1 6164 571 16 246 31 1988 66 6 20 46 1 120 22 93 20 37 109 14 7 1 74 2541 33 39 726 14 7 2 1902 8118 115 13 614 1956 151 10 5 1 1408 1 454 54 26 1783 43 36 7454 23 241 7 86 20 56 1688 41 215 3 258 7 50 1062 10 153 1179 77 1 948 4 1 6164 15 10 56 51 6 162 78 422 5 134 38 2420\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 114 2025 4891 7 355 7 9 13 777 2 900 1378 5 2 4712 2664 378 4 2 640 2 2288 4586 14 9204 178 3 10 7954 102 13 19 137 35 1130 319 675\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 58 9 6 2 4590 471 6 1 3033 6159 155 5 1 28 52 85 30 63 64 1 182 6 3 811 1768 16 1 2591 4 1 1 1 4694 3 1 2391 2330 19 1 82 874 6080 848 41 4694 5 15 2 136 280 4 1 4872 3076 6 5670 42 2501 35 2448 1 983 14 1 47 16 1 884 4027 3 1 236 20 2 163 4 737 17 1 67 1047 385 8109 3 72 22 1979 5 2 514 129 278 30 1 833 4 9 67 6 39 14 4608 2087 14 7 1 733 5 1 2391 3 835 19 194 3 1078 49 9 12 1716 1 191 24 71 62 285 1 168 7 1 733 15 1 3 78 4 1 3251 292 9 6 323 2 84 1214 2129\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5159 313 8 1454 320 9 1758 65 7 5825 7 1 362 8197 9 18 6 16 261 11 247 200 285 11 85 289 1 28 177 1 2602 296 1040 343 12 4580 3 1 112 3 23 64 6 3015 1 81 22 148 3 1547 156 22 128 2191 14 9 6 101 4993 1 7880 22 128 1525 17 20 5 1 4295 11 33 61 7 1 1 11 85 6 881 4665 9 6 2 53 108 49 61 56 2586 5 26 5 9 6 174 1592 881 17 3461 34\n1\t3 309 62 546 1325 69 7 698 23 70 1 507 33 191 24 71 2926 730 105 49 1363 1 135 51 6 1 119 409 1290 1 206 3 6 46 27 270 25 85 5 369 1 119 8469 3 24 1 2852 120 8065 2449 52 396 68 1375 51 6 58 148 1357 3 286 23 335 127 843 46 264 81 69 35 525 5 2452 2 2471 292 62 1855 123 20 291 5 473 65 69 38 239 82 3 36 239 1715 1 18 6 2 885 2234 4 1 687 2471 9216 119 69 400 1258 15 34 86 1552 3 286 1169 1321 7 86 112 16 3857 8506 1 462 4 1 21 6 28 4 1 113 8 24 117 209 73 10 1 119 7 2 46 3857 699 5787 186 50 99 9 158 17 45 23 83 41 2618 285 1 74 394 1507 995 10 69 42 20 116 574 4 135 1 59 1332 177 38 9 18 6 11 51 181 5 26 58 111 5 70 998 4 1 1106 69 45 23 780 5 118 87 348 8892\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 67 6 46 3 1 1813 601 4 1 18 6 169 55 1 1177 4 110 1 250 465 6 15 1 11 590 11 18 77 202 174 558 3 1998 1881 15 2 84 551 4 1880 3 55 2974 551 4 9784 1 346 280 4 1 2002 1944 30 34 82 171 61 831 20 7 62 1293 1 280 4 1 2528 1753 262 30 12 1684 17 197 95 4117 14 1 914 1174 2091 1 842 60 1171 57 390 4759 3 402 51 61 529 3 767 11 485 52 36 2 98 2 148 108 17 94 34 42 2 53 272 5 905 32 3 5 90 184 7 1 3667\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1233 106 87 8 9 18 1241 50 8329 1 119 12 578 40 47 248 2085 3003 94 2 74 956 8 12 945 11 8 1808 107 10 19 1 4055 1250 618 9 12 183 5987 1 7398 97 850 50 851 2219 4 1 21 12 202 14 6243 14 25 1014 27 553 4 1926 4434 314 7 1 21 11 23 59 70 15 7509 13 150 12 37 1475 30 1 82 1488 1 178 106 1 2792 3998 6 648 5 1 282 7 1 1385 79 4 43 4 50 430 1668 502 8 192 407 15 49 27 25 2259 15 58 9653 13 150 192 128 2573 295 15 239 956 4 1 1563 1792 2576 4525 6105 59 30 1 2076 1 1972 4 1 4189 29 1 3 815 1 259 372 2 34 7 34 2 5092 382 3 1 113 21 5 209 47 4 3572 7 106 50 5371 29\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5257 206 1275 589 19 21 11 15 1 113 4 1902 298 589 6 214 7 1 1371 3 7 147 1055 4994 850 657 83 995 63 652 38 4418 3 4562 1 34 376 201 2315 1209 578 3 2943\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 175 5 118 1 1085 5 253 2 1222 21 274 29 2 2658 39 1 21 47 15 1386 2479 7 1500 3348 9536 3 24 126 3 1 3135 36 33 22 29 2 9862 207 48 1 1350 4 9 4489 1222 21 114 3 11 103 9586 721 79 133 2268 1 3837 714 9 6 1 210 1222 21 8 24 117 1586 17 154 85 8 12 1578 5 4218 1 9669 3771 734 174 178 15 1 624 3 420 875 14 2 1222 158 506 1082 7 154 3631 8 63 96 2562 14 2 4755 16 304 624 770 827 10 6 2 5168 627 8253 5 1013 1 179 4 350 1 21 101 2 184 131 6197 5 1038\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8739 9 12 1 210 4704 18 8 24 117 575 2948 6 667 2 8 192 3238 4 8646 13 1118 653 7 1 263 8 987 24 102 735 7 112 15 1 26 13 2663 16 9 12 1 80 5353 119 220 3044 1790 5404\n1\t28 35 165 10 8879 13 252 6 1 59 21 4 11 1263 1 331 723 719 4 962 6493 1719 3 380 2 979 230 5 1 212 2876 13 2078 97 971 88 1622 9 142 197 509 62 410 17 8167 333 4 21 541 3 4061 1084 2378 81 5 64 1 5415 4 1 168 11 22 531 757 3335 13 4 9 1483 14 389 1734 7 1 21 12 5 311 134 50 14 2080 122 5 2881 19 9 93 2403 1740 8578 14 1 3830 2549 2011 14 783 5373 14 3 7565 5023 14 1 13 278 4 1 634 843 178 843 801 316 6 531 757 6 162 386 4 8392 1262 8670 14 1 443 1633 2734 155 14 1 4117 10 6 2 178 11 1345 89 79 175 5 2248 47 4 50 4355 3 357 13 6 1 59 21 5518 11 2786 1 5415 4 154 178 7 9 21 3 563 75 5 3642 11 5415 5 1 940 6899 13 252 6 2 191 64 16 307 35 53 67 609 1115 3344 34 4 127 185 4 962 700\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1459 9 21 65 370 19 1 119 3469 3 5324 19 1 155 4 1 7772 145 20 184 77 2118 581 3 143 118 48 5 4749 8 83 56 474 16 4220 1497 17 8 332 336 1027 10 40 2 3373 3794 538 11 844 23 507 53 38 500 8 214 512 1094 47 1767 420 354 9 572 5 4792 55 137 35 2118 124 15 9 28 151 10 279 1 4471\n1\t2510 8 96 10 40 71 1547 4861 14 2 323 6443 13 1035 5 1369 554 142 14 2 8100 3205 17 605 1 538 4 121 851 42 1 2991 1 4 1 6400 9537 3 1 1248 178 77 3110 51 6 162 23 63 56 87 17 2499 3 539 23 6725 124 22 89 5 3162 3119 3 1 3116 5 66 33 87 9 63 26 31 6410 4 2 644 9 21 6 1 7 3560 8 1309 32 477 5 714 29 28 272 8 165 386 4 4039 3 670 10 56 6 11 211 29 43 5011 49 1 1248 12 47 4 1 7 2 30 2 5462 15 2 3345 1823 35 1180 5 4778 2 1829 9811 5 1 606 3 2 1080 1289 3677 908 11 928 1 5833 143 2555 1 606 9544 5 8 12 1094 17 49 1 1248 1790 8120 200 7 1 9232 670 645 2 4612 3 202 165 65 7 2 2187 61 599 224 50 13 499 93 5562 5 79 11 1 315 1277 12 1 259 35 262 2374 7 2 3324 27 181 5 70\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 21 38 3 253 10 421 34 106 24 72 455 11 1448 17 49 1 22 1 1 1668 3 23 118 9 6 20 116 4877 5 2876 13 743 382 278 30 1602 14 1347 28 4 1 1161 3 3937 14 1518 289 697 179 337 77 1 8903 115 13 2663 5881 29 74 31 1164 1412 16 1 280 4 2046 491 498 47 1780 3377 13 4634 9 21 45 317 1415 4 144 339 4519 26 2 1500\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 289 199 308 805 75 1744 1 873 971 22 3 5091 9 18 88 26 107 14 2 426 4 2 69 18 109\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 31 313 8147 8 57 2 199 622 1946 7 298 416 11 12 78 36 476 51 22 97 7 622 11 22 20 169 306 3 1803 985 126 47 46 322 7 2 111 11 6 13 6 6684 2 897 4 21 1554 17 622 1554 3 55 1 940 1228 76 1116 1 2347 111 11 27 43 46 109 587 7 1 622 4 1 234 3 5 5561 126 655 11 5905 4 25 8030 333 4 414 171 4231 6 93 46 2072 115 13 150 496 354 9 251 5 261 942 7 246 1 622 33 2178 14 2 583 590 9473\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 113 4 1 113 7983 6 138 68 7235 17 39 4888 8 134 9 73 185 843 153 546 4582 1920 535 62 6 58 3487 5 5112 1072 246 13 3514 8 338 1 1736 119 427 4 1 441 3 258 222 185 14 1923 32 11 193 3 2 156 1076 1025 1 18 6 162 4155 1 1953 445 6 93 46 9964 2166 7 1 6591 13 3926 185 843 123 20 56 24 2 1700 41 134 235 36 185 535 2723 51 22 2 342 4 52 138 587 171 7 185 7983 17 162 36 1 477 4 1 251 341 55 127 120 24 46 346 13 10 181 113 4 1 113 6 1 983 3 5 26 27 481 1720 2 682 13 19\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 332 3786 8 338 3146 3 32 98 19 71 7 2 9 6 38 1 72 70 10 22 23 83 24 5 90 2 21 11 1 898 47 4 79 5 2522 13 92 2216 6 111 142 675 10 811 36 294 143 24 78 5 216 15 675 5 25 1365 10 276 36 27 114 20 787 9 8856 51 22 3330 268 106 1 443 39 4920 3 16 1 171 5 176 1230 41 134 146 6465 8 112 1 223 105 91 4654 153 118 75 5 110 27 693 5 65 15 3 1099 172 1924 786 582 253 2 3282 4 725 3 509 79 5\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7568 13 1226 1508 57 6332 9 18 16 79 49 8 12 4349 30 717 9063 8 57 219 10 125 1287 8 39 219 10 3 219 110 3 8 128 87 10 40 2 3591 2991 2 532 6 643 30 2 46 931 451 5 390 2 36 550 94 172 4 1 6 89 77 2 56 56 510 288 1606 27 3 1 5953 2203 5 25 161 17 27 481 564 1 58 729 75 78 27 3451 1467 27 741 65 848 1 17 6 58 1534 107 14 2 30 25 1081 2098 3 173 1110 5 25 817 111 4 3223 13 92 632 6 2211 1 759 2054 3 1 672 121 6 138 68 43 188 13 1601 7 399 23 39 5 64 9 141 10 6 2 84 3665 5372 42 46 254 5 149 13 1149\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 28 4 1 84 104 4 1 2804 7 50 1894 11 8 96 38 34 1 290 115 13 92 599 164 6 28 4 113 3 80 264 124 55 5 9 326 3 49 8 74 159 1 599 164 8 12 37 2337 5 64 2 18 36 476 8 39 6313 34 4 1 2026 3 9 6 323 2 293 108 10 93 40 4649 1 2622 3028 1 304 3748 3247 742 3 2470 3190 35 181 5 198 36 469 7 25 104 73 27 40 71 643 7 132 124 14 2905 1 433 1561 1277 3802 3802 3 738 2349 34 5226 596 130 112 9 21 32 1 477 5 1 182 73 86 238 376 3 86 28 86 28 4 113 5\n1\t875 200 73 1 131 1647 38 25 919 3 25 542 6430 4 2567 6 459 1 294 9747 4 257 290 320 49 294 12 7 112 15 4491 32 3077 6 1509 96 4 15 1 201 4 171 61 100 587 5 199 66 6 2 53 177 73 2 5883 201 1910 63 2600 110 8 773 35 262 1327 8 773 3529 2549 1760 14 1 215 1 88 20 1484 44 3 8 192 1140 38 656 8 338 1 1084 4 5112 8162 14 1 1130 17 2810 435 842 5 1970 8 336 133 4252 1739 9140 8 336 8259 372 60 56 1049 44 121 860 183 7300 5 9 131 40 71 2 4621 15 97 8352 8 449 9 131 7954 1534 55 193 358 4 62 201 1144 22 1204 17 8 449 33 83 875 105 237 295 105 2043 8 555 1 3989 9881 3 5421 35 93 1242 50 82 430 983 957 891 32 1 6 52 1134 19 1996 68 33 61 19 8488 66 62 880 1 22 20 3 8 449 33 932 52 289 36 9 7 1 3667\n1\t27 181 5 26 1 59 28 25 664 5 1 7006 13 2663 193 1 21 6 402 2039 51 22 2 163 4 2302 445 3 206 4 1667 5421 149 43 84 802 7 304 6467 3 1242 43 240 131 36 3798 14 1 41 1 1297 9590 1512 32 1 51 22 93 240 52 2094 132 14 9649 9590 6 138 383 3 2619 68 97 184 445 4121 13 7784 1813 1637 22 53 16 1 3550 1 1635 29 1 182 1066 16 79 3 12 8201 1 2036 12 531 61 2 156 268 11 534 168 1121 14 935 14 33 88 24 9249 17 10 384 5 26 52 4 2 465 15 1 21 2188 2887 88 24 71 4569 41 8 179 1 453 61 53 3 237 52 1087 1623 23 1548 9127 68 1 2009 4 703 292 8 143 56 1682 1 3168 10 191 24 71 2054 41 8 54 24 1887 10 15 2 1332 13 3616 9590 6 2 46 53 21 11 1071 5 26 219 197 14 223 14 23 83 438 246 5 96 38 1 104 23\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 175 5 734 5 1 3442 16 1 397 4 9 158 258 1 5785 142 4 4664 3 3059 2182 7776 304 1 21 12 2695 16 341 2 625 918 69 1 74 340 16 5826 278 6 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 226 2381 12 46 8 2446 36 1 74 141 17 173 134 8 335 9 28 46 1264 1 477 6 17 10 271 5523 167 6727 8 39 83 64 3650 14 2 1706 3 1 1706 2879 6 1070 1494 779 3681 2 163 4 1 168 39 87 20 90 1821 8 467 95 1408 454 54 2172 146 6 65 49 2 678 287 1283 3825 47 4 1677 5 7458 1259 369 818 31 2830 144 6 446 5 5707 15 162 12 117 1346 7 9 141 23 511 438 45 10 12 2571 17 11 12 105 78 5 9 40 5 26 28 4 210 1706 18 8 24\n0\t5 934 15 77 1 37 8 3968 20 139 77 8344 17 23 70 1 42 1589 3 146 1397 36 5 13 1118 45 317 340 2 680 16 11 424 23 2108 5 3505 2955 2563 3 1708 28 5010 48 76 23 5633 16 9 8514 42 2 387 41 37 33 5425 3 9 6 106 1 18 792 5 2210 77 2 15 573 1765 3 55 527 1014 55 45 42 402 51 662 97 1362 26 10 2838 4 2991 41 95 352 32 1 201 7 253 62 120 39 2 4312 1470 42 1 1446 4435 3425 32 2 8112 908 1252 7364 15 43 772 2545 13 8241 53 193 6 1 78 991 40 71 256 77 253 43 4 1 691 66 8 73 2600 39 1 156 824 4 48 151 9 18 82 68 458 51 22 1 692 772 293 1456 813 3 2637 529 66 6 162 819 100 107 6896 13 4634 9 59 14 2 226 1074 5 1 82 1198 18 7 569 69 9 28 6 364 1816 3 270 554 105 2556 224 30 31 2132 819 71\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 112 3619 3 2257 9071 276 3007 7706 7 44 1174 1 18 6 3965 59 73 10 181 1 102 3732 291 5 26 7 43 770 36 7 1 9813 3 457 8591 202 1 121 3 3 491 3500 4 48 6 6 17 3619 2448 1 389 141 3 6 6191 3537 7 44 2793 1 254 2869 4 157 554 5 1 46 769 7 31 634 4 491 4 3 301 2231 7 1 148 1162 1 2387 22 938 3 8 354 1 158 66 181 3963 1547 2681 5 1219 249 8 16 28 175 1 21 16 50 2 1894 4 59 1274 703 99 194 23 76 26 46\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 130 20 24 71 3893 14 2 73 7 50 1062 10 123 20 4960 95 4 1 82 117 1001 9 130 24 71 3893 14 2 18 993 745 4796 3 20 372 1 4 73 10 123 20 87 2028 29 34 5 257 84\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 46 46 46 4878 8 24 107 138 502 115 13 677 12 2 222 4 1560 17 20 78 5 90 23 2248 47 4 116 10 792 1633 15 1 2000 4 7809 66 6 20 2 5168 29 225 45 23 1006 437 193 29 43 985 41 529 8 191 134 10 12 2 222 211 49 81 165 383 3 75 33 337 6124 13 3828 130 57 89 10 146 36 782 141 98 10 228 26 2 138 108 73 8 219 59 1657 4 1 18 30 9802 168 3 10 165 5 509 140 47 1 108 8 191 134 11 8 343 133 9 18 37 8 273 63 134 10 6 20 279 592 13 2687 351 85 19 55 517 5 87 146 15 9 18 1739 1204 10 106 10 459 705 1339 46\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 1 210 37 404 203 21 180 117 575 51 6 162 2363 3276 38 110 10 153 2005 5 26 7 2 870 37 4835 74 4 34 8 83 64 75 37 97 81 63 96 9 391 4 930 132 2 84 108 45 8 1059 146 14 509 3 1169 903 14 9 8 54 26 1309 29 3 105 2692 5 915 508 5 1 4230 4 110 1 121 6 464 3 1 466 651 6 6936 1 67 86 71 314 1704 3 1 1335 11 86 2 772 18 6 58 284 1 19 1 155 4 1 1723 10 3352 1 212 471 8 87 20 354 11 23 99 9 18 1013 23 24 5298 269 5 351 19 146 11 76 597 23 11 23 219 110 8 230 56 91 16 137 3 1 4549 4 62 3774 34 2047\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 12 332 4224 2 6418 1106 3 551 4 95 67 39 303 79 133 277 5640 125 29 268 8 343 36 8 12 133 31 431 4 3 8 339 55 694 140 1 212 108 3 6 20 1502 29 513 12 20 565 1 59 4211 185 4 1 21 6 1 3087 19 3 25 4116 4 10 12 167 2406 1 759 3 86 324 61 56 452 23 63 198 1810 19 3 2 34 7 399 10 181 153 24 2 53 263 32 1 5 155 122 65 9 5623\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5326 9 12 851 1319 8 1407 7 1 856 16 16 31 594 3 764 269 3 8 179 8 12 160 5 47 50 671 78 7 1 4512 6857 9 18 1071 58 52 1365 68 235 248 30 2 750 416 21 786 552 116 2128 9 18 63 1857 23 2798 1013 23 335 3 3105 7 18 6247 23 1374 652 116 1327 3 90 188 1470 23 76 26 1 59 879 51 2799 9 880 115 13 26 13 150 354 20 133 2938 13 13 5094 22 13 1964 167 3629 13 9 13 150 13 252 878 12 268 52 299 68 4851 5 99 9 108 9 6 5882\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 219 9 18 49 988 2215 19 55 27 339 90 9 18 3473 1 59 302 8 219 10 318 1 182 6 73 8 3964 388 397 3 8 405 5 90 273 50 1554 100 89 235 9 91 1104 17 10 472 34 50 5 694 140 10 1815 42 36 133 116 84 5305 15 2 1194 349 161 487 1104 6936 13 614 23 472 1 697 158 10 7 2756 98 219 194 10 54 26 52 2072 13 614 23 64 9 18 7 1 4388 29 155 295 32 10 14 45 10 61 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 14 573 14 42 8138 5 101 248 237 52 37 1832 16 437 132 31 3950 9198 66 6 100 56 7 5 30 9126 15 25 593 3 55 364 37 7 1 1 4480 10 271 37 3775 3 2864 7 2 434 686 7508 1496 903 3 3851 1 212 948 1889 1567 101 728 5 182 19 146 301 73 4 458 1 2216 271 19 5 26 243 3 3360 5 64 122 7 2 914 9489 181 5 1593 15 31 1835 480 47 2 3445 4117 5 25 1223 55 193 42 7198 2427 236 2 3909 1813 2742 5 110 618 10 153 291 5 139 2882 47 4 1 2116 15 86 312 3 451 5 7 1858 801 43 87 3 7726 293 363 3438 9126 123 2760 43 4586 7241 37 959 1 1967 3 1 6016 6 3 1 868 6 1 453 22 222 34 125 1 2700 15 1 4647 4 962 2535 3650 8756 3 93 4027 3 294 24 8620 17 1474 258 162 9714 17 42 7342\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3759 767 61 2 222 2764 17 49 33 3866 1 3063 10 12 169 299 5 836 1 302 144 8 637 10 1 80 1087 864 131 6 3822 78 5 50 1310 47 4 1 2075 2831 49 25 1191 61 8 909 1 692 5509 3 98 2 6871 17 378 27 152 5460 1 1 80 9547 799 4 1 131 7597 71 49 2825 12 1544 47 7 1 3063 15 202 58 1793 41 1 393 12 84 3 8 12 46 749 5 64 29 225 28 4 1 968 90 110 1952 20 14 84 14 1 223 111 17 373 31 240 1775 14 28 196 2 77 1 80 5872 2075 7 1 1162\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 322 42 34 71 367 38 9 18 3 8 812 10 49 523 746 106 307 422 459 367 835 5 26 5672 17 1 177 424 8 24 107 4 104 3 8 192 770 19 523 746 19 34 1 104 11 180 575 814 8 24 5 787 9540 13 92 121 6 2317 42 323 439 75 1 1949 44 5903 959 1 2345 1 6 327 193 3 1 1730 4020 35 255 5 186 474 4 1 3049 1 277 250 4571 7 1 18 22 39 37 904 11 23 560 75 439 63 1 1350 4 9 18 1142 83 33 853 11 55 63 128 26 3681 72 83 64 75 1 6 5550 1 3810 3 25 4020 89 79 230 33 2005 5 6252 23 39 83 6249 15 450 3 1848 1347 7 1 9870 2180 7 2 111 11 88 24 71 1066 828 72 39 785 122 2703 3 72 64\n1\t2121 132 14 745 3650 1147 7451 76 2943 638 626 5219 2781 2535 3 1994 90 4647 125 1 448 4 1 983 136 1487 14 3045 14 988 1312 3 1970 1209 24 1998 871 14 250 120 7 1 1199 51 22 84 120 15 1127 3 1 3008 3 1560 100 369 65 7 95 4 1 943 6506 533 1 4811 13 824 3 389 767 1029 15 609 8431 1 1005 4117 4 1 1125 66 6 37 11 16 28 302 41 1509 1 1079 4 670 95 431 303 79 595 1 7405 6 1 80 1127 3 251 8 24 107 1952 3 86 22 37 11 8 54 24 5 637 10 50 1522 131 7 2924 4 6432 4 66 8 4091 13 23 112 41 812 1 2526 41 48 23 90 4 10 6 1 4784 10 40 1242 6 31 4776 7 2330 1 6580 1109 4 1 389 251 151 10 31 3785 185 4 756 2008 51 22 2767 824 16 261 5 112 3 8670 29 7 9 983 37 45 317 517 4 133 146 422 1670 87 725 2 7359 3\n1\t44 297 418 47 4275 17 98 10 498 5 28 184 3118 2 562 11 2027 43 1936 3 13 677 12 43 125 121 7 10 3 14 109 14 61 20 28 4 51 61 43 168 33 3084 248 138 3 1 868 3084 71 2 103 138 14 530 43 4 1 868 12 152 452 1 833 33 314 16 1 477 3 1 182 1 12 2 53 788 9391 207 50 3222 1 566 178 7 1 182 3084 71 2 103 1534 3 2 103 52 5517 17 48 63 23 5633 28 52 878 19 27 266 2 6700 5177 8845 13 150 118 9 6 2 5551 17 8 321 5 90 2 959 28 4 1 6 20 2 1869 5 9 6885 60 40 71 121 220 5 503 3 3037 5 2750 60 6 109 587 14 1645 1101 112 796 7 205 1 502 17 53 13 3422 8 96 42 28 4 1 1219 124 180 107 3 42 56 53 801 6 144 8 419 10 394 460 8 76 187 1 2442 4 48 8 179 49 8 74 159 592 13\n0\t8241 56 6 1 804 6 20 91 29 513 9 18 88 24 71 37 78 2425 258 15 34 1 1058 1229 19 43 4 1 9980 1175 7 66 124 22 528 15 5952 5324 32 1 21 1 6176 4 1 4107 361 137 34 9507 1390 16 35 202 198 787 327 5656 17 378 4 5987 48 130 24 71 2 4 3758 10 34 4 38 277 269 5 9 6176 3 1047 19 7 5995 4 1 644 1054 13 92 166 15 3766 129 361 1 1537 5979 18 3384 123 2 53 329 15 48 444 17 444 340 2060 2798 42 34 3563 11 276 46 6929 7 3770 15 43 4 1 188 2224 455 38 460 125 1 5775 13 659 1 769 10 6 254 5 365 48 89 2897 294 5749 3 1740 8578 2076 9 5000 66 36 2 4 218 112 7 698 14 1 161 1399 5655 33 130 24 1837 1 263 3 829 1 10 54 229 90 2 138 471 814 139 1929 3 348 3119 48 87 23 24 19 127 460 11 165 126 5 1030 7\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 386 12 2695 16 31 1748 1570 3 8 555 10 57 676 2 829 189 43 46 964 642 170 3 988 7763 1 265 6 368 169 396 5774 8234 4500 241 10 41 17 9 6 2 1219 176 19 21 29 31 9 40 71 1253 5 1 21 1307 3 1943 9501 1225 9 14 8172 3 1225 10 154 5577 7587 16 9030 663 4 32 29 1 162 17 3 1 37 1 1092 80 3 496\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 28 6 1360 5 99 361 14 31 1188 2381 11 6 491 1078 1 464 124 11 310 47 260 94 4170 361 591 1 4 10 6 935 458 14 4 1 750 4 1 2155 72 563 610 48 12 2267 5 1 1 980 11 289 2 6 202 14 45 370 655 31 697 395 6117 338 5 2096 62 14 1 3850 6 3711 27 1 448 4 2 3850 3163 11 6 591 1083 49 15 1 4042 4 82 29 74 1094 29 98 3 475 11 245 199 5 241 7 1 4 28 170 3850 2457 5 31 11 114 3659 14 2928 1 375 1035 421 80 4369 1 119 66 5562 14 9 21 12 588 689 2 627 158 3910 712 7907 7700 1 3 508 11 54 5441 308 1 392\n1\t675 2913 5895 1103 4 2 435 3 29 1 182 4 25 6 2 1719 5 99 5817 1797 2 167 2010 6 425 14 1 2537 9532 1186 711 35 40 30 237 105 223 19 25 7976 3 1 245 6 1 251 4 168 189 5564 3 19 272 14 25 2866 9146 1225 126 140 1 9792 4 1676 11 7 2 178 11 6 1 113 4 86 232 220 962 826 260 77 2 113 607 651 918 7 115 13 92 2710 4 95 84 21 6 7 1 8344 32 2913 6098 4 25 11 495 542 664 5 2 5 1 176 5756 2934 142 44 491 473 7 1248 380 44 5817 8938 29 25 2988 5 25 103 282 34 277 4 126 789 27 495 5 1 4 2 231 19 1 5 1 927 6858 16 5 3692 10 5363 430 427 101 1 5185 5215 7454 23 438 45 8 637 23 5 1 313 5489 6460 1 2710 789 317 5098 6 1 21 4 1 2463 45 146 8428 5 113 194 98 72 118 2 156 82 1819 7597 71 15 161\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3233 6427 3 1 518 22 1 423 460 4 9 18 38 2 170 164 288 16 3405 38 25 7119 2295 561 561 3 561 34 473 7 74 1090 453 7 62 5763 1631 9337 40 1 1056 364 68 3649 4 242 5 8658 65 2 4743 18 172 30 1 7 31 1286 135 1 148 3974 245 6 1 2 3142 4863 32 256 183 2 443 3 340 2 597 1 545 3 2648 1 1590 4 1 3104 15 13 92 238 168 22 9165 2243 43 4 1 927 6 2 222 253 16 2 514 9 6 75 34 130 26 5681 13 5 1236 9 28 19 1 518 18 42 109 279 1 1155\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 366 8 636 5 99 1 5530 41 3968 8 134 1 37 404 5530 5 111 69 2264 5 869 66 337 826 5 560 301 8 467 301 4 85 133 10 3 8 96 10 54 26 2 1011 4 85 523 38 8 83 365 75 763 7616 4786 19 3948 9 4 2 16 59 28 233 11 8 8353 50 3341 3460 35 266 1 170 1385 79 75 763 6065 165 77 1 6296 4 5557 5 2074 1 170 1862 7 6531 2795 1 1820 763 6065 12 491 3 55 165 31 918 16 10 3460 109 27 40 5299 16 242 5 26 2 170 105 91 16 122 8 83 96 27 76 26 372 7 21 4078 3 30 1 111 94 8 219 9 141 8 1407 224 3 219 1 215 111 5 70 1 91 1600 47 4 50\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 632 429 7193 2 2288 11 20 59 114 20 2005 113 572 4 9353 19 86 221 10 12 30 1 5123 32 1 3587 334 7 1 1557 441 654 3 889 1 3395 23 442 194 45 10 310 47 7 42 138 68 9 1 3383 9843 6 16 1 3427 47 4 334 3 7 1 540 108 156 171 7 62 85 61 364 2262 2607 41 364 4051 68 1760 3 50 210 4 669 159 3 738 1 715 210 113 572 918\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 247 2 325 4 1 817 4186 3 9 991 40 34 1 4 1 1239 2 810 2991 464 125 121 30 5205 35 65 154 178 14 193 444 372 16 44 221 3 862 3 3509 466 1488 308 52 1 3311 22 1 59 11 291 7537 3 1333 2 174 1130 991 675 3737\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9969 18 12 1963 3 528 3095 244 2 3094 6946 4 2 206 3 130 26 30 25 221 27 284 358 4 1 1158 165 7895 3 636 5 90 1 212 177 65 32 13 54 24 100 5211 11 1652 45 3719 71 2191 5 64 110 10 676 2448 1 3892 3329 4 1 347 801 6 2 53 4328 4 3 3448 7 43 37 1 855 3399 296 153 70 13 252 2673 213 3454 17 42 29 225 650 14 113 8 63 9194\n1\t234 11 88 5292 4 199 7 1 20 5 3621 5050 274 29 1 473 4 1 7220 5694 1 330 9756 77 1636 1205 15 423 5529 9048 8614 5673 13 92 333 4 6048 41 6293 14 41 6 1205 738 1145 4260 1 330 9756 6 58 5 9 9198 618 378 4 2 641 164 2606 2863 9 67 2980 1 1593 11 1 5779 256 65 2159 1 1593 16 7636 7 2 234 8502 30 9768 106 1 4651 124 131 199 1 423 9528 127 386 348 205 4251 4 1 2876 13 92 330 9756 185 755 5569 3802 1836 97 1389 758 65 30 1 215 4651 158 132 14 75 1 392 3437 827 75 1 2743 12 48 1699 5 1 333 4 2630 14 3 10 93 4080 199 5 1 2863 707 404 66 190 24 8483 5 1 7104 4651 803 13 150 495 187 295 105 78 4 1 441 14 8 87 20 175 5 2704 1 839 16 2821 7125 245 8 76 354 10 5 2025 942 7 1 234 4 1 4651 41 311 2025 942 7 873 847 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7047 261 63 134 9 6 91 6 660 437 8 336 9 131 183 8 55 159 110 16 535 8250 3441 1 67 3565 503 2824 2899 3 4349 578 786 2900 1 91 708 3 786 99 1 212 74 1022 183 23 1088 11 42 91 73 8 118 11 45 23 99 1 74 1022 23 76 112 10 3 139 47 3 751 1022 755 14 109 14 1022 358 19 305 3 98 2612 1 7774 5 70 1022 535 13 150 812 1996 3 145 273 2 163 4 23 596 812 126 854 33 24 2 177 16 53 83 23 34\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 322 8 1517 381 9 108 10 12 211 3 747 3 657 1 259 12 1476 1087 120 3 2392 14 109 14 304 7754 8 96 50 9482 54 36 110 8 128 96 33 130 24 71 1747 5 637 10 1 747 1957\n1\t0 0 0 0 0 0 0 0 0 0 0 6 2 430 816 217 1461 1254 425 16 8 118 10 24 78 17 40 1 14 7 41 14 1461 114 5 816 15 1 3406 2528 3 1 15 2 2458 19 10 5 90 10 36 2 17 128 36 5 256 10 19 50 1307 4 3146 7 9 2179 816 12 2575 5 1 2 2218 19 1 3 101 6214 30 1 203 67 101 8242 2507 77 1 441 1 2379 19 769 683 77 6830 19 905 2267 5 816 409 409 409 3 1461 40 71 1 212 177 3 1094 5 2443 179 27 816 5195 30 2693 13 150 112 1 2526 10 12 2 103 695 3 23 1374 9 386 6 1 74 4 723 3267 7 66 816 5134 102 1 508 101 1 2 3872 7 1 429 3 3 93 9 386 6 1 74 4 3267 106 816 1 508 22 1 1 6342 1 1519 3780 6342 1 3872 1 3872 255 5 2446 5072 7764 1195 3872 2597 3 1 1398 845 3 1 3872 2255 470 30 3795\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 9 141 988 2 988 13 872 101 1 344 4 1 263 6 1381 20 8409 13 6 2 211 2112 66 3389 9 21 32 7538 1 1409 155 4 1 17 1 82 871 61 167 565 1 435 12 2 5965 4998 35 319 52 68 1046 66 247 55 378 4 1 164 101 31 5104 27 384 52 36 31 5 90 319 29 34 4484 98 236 1 7660 391 11 6 5293 5 14 2 1327 41 83 55 12 11 13 35 5933 9 18 845 2 715 41 1639 6 2 1390 1910 4 43 426 4 21 1210 242 5 65 1 3214 4 9 158 41 29 225 28 4 137 3367 4 2152 35 173 7470 4678 1374 1 81 35 230 91 45 33 187 235 2 1183 2255 13 1695 3 1152 19 267 106 8 159 9 135 33 531 1351 828\n1\t51 22 2 604 4 1244 2816 15 2231 4 2466 1236 1 3232 809 377 5 359 31 1128 19 1 1888 60 20 59 2448 1 1146 17 7222 774 1 212 108 3 106 114 137 2445 1278 209 65 15 1 4821 5 21 7 7915 2 2547 220 1 7180 54 20 131 65 109 7 657 1 1122 6 200 1 14 1 604 4 17 571 16 375 4 1 1 201 5052 530 98 1221 1 738 3 2475 255 577 14 6778 3 2072 167 7222 53 16 2 342 4 971 52 29 408 7 2 68 19 2 478 5960 3688 33 405 5 2074 2976 7 2 1061 822 29 2 85 49 1 412 12 1029 15 98 805 1 161 7841 924 7 1 717 17 999 1 2742 2799 1 18 12 2 645 29 1 387 1553 5485 58 4724 30 1 6748 462 4317 11 165 2 163 4 2066 3103 3 571 16 1 2557 570 1456 1 18 6 128 2 163 4 1816 7183 41 58 3411 145 7563 1 1110 195 11 1 9072 6 1573 3968 72 867\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 131 12 332 1634 16 28 690 213 722 3 25 374 22 103 27 93 4918 25 532 15 58 8184 14 2 8 192 496 5888 30 9 131 3 1 111 1 120 22 13 1 5017 231 71 248 5 2295 16 3464 8 175 5 64 146 1766 48 151 9 131 211 49 82 289 24 248 10 3367 4 8 179 4573 54 209 5 86 9680 3 1622 9 391 4 1847 142 1 9232 17 2836 1181 160 5 24 5 3954 9 318 33 1 13 659 50 1520 33 459\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 76 26 2 264 232 4 5835 180 107 9 18 1882 19 249 3 54 36 5 24 2 973 73 10 2492 38 707 3 1 4133 7 1 3907 85 66 6 50 430 85 5 26 939 10 12 1 74 18 420 107 30 5744 7175 3 60 12 84 3 180 381 154 82 177 180 107 44 1107 2671 89 31 1418 19 79 1221 14 114 1 1392 2359 35 40 470 3 428 375 104 38 9 18 2656 5 79 3 180 107 162 15 66 5 1498 110 1 119 2656 364 5 79 68 1 322 8 553 23 10 54 26 2 264 232 4 5835\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 89 79 46 8 405 2805 5 1 3 6085 6473 285 1 448 4 110 2153 46 1370 5 694 2086 3 2288 7 1 210 699 1 103 53 1799 19 1568 3 7652 3179 6 433 7 2 2918 4 147 2839 1 210 61 1 3 2453 561 199 11 80 81 466 486 4 3 674 11 7075 19 1 82 1737 6 536 19 2 2302 55 1 1154 3 6419 11 8 676 1023 15 22 1463 7 132 2 1423 8939 2352 11 8 343 1 2277 5 450 8 96 207 48 89 79 37 9750 1 233 11 2109 556 48 22 1314 3537 1637 4 3573 4296 179 3 126 15 62 147 717 78 4 10 6 370 200 1 4 9491 4 7652 3179 5 1 1162 1 15 22 3161 3 1881 13 150 54 6110 81 378 5 1037 313 4 1427 1516 622 4 670 236 877 4 3537 560 38 157 3 1 4053 7 1 3573\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 1 226 681 41 764 269 4 9 21 155 7 41 9219 28 366 49 8 12 183 160 5 7217 3 56 338 48 8 7031 220 98 180 71 19 1 249 8396 140 29 17 143 149 2 973 318 937 49 8 214 47 43 3480 7321 2925 110 977 101 2 8 128 143 639 110 2958 8 214 2 305 973 7 2 707 136 5543 4077 2 156 2584 1924 98 10 59 472 79 38 2 4403 94 3776 408 183 1157 224 3 133 592 13 3986 48 87 8 96 38 1 3124 42 452 20 14 53 14 8 2299 3 3388 3410 17 128 109 279 1 10 2591 437 94 283 1 212 21 16 1 74 85 8 1090 10 14 2 15 1187 5 390 31 646 24 5 26 364 977 3 24 2 138 478 2090 5 925 5 1236 43 3251\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 40 5 26 1 80 4769 2346 180 117 107 7 50 500 1147 783 6384 3 1490 6107 14 2 5782 3479 164 173 90 79 165 5 26 540 15 9 2129 9 6 1 59 18 180 117 343 36 1323 47 2562 8 314 1126 3 128 343 36 8 405 50 319 1877 8 63 134 11 1 59 18 180 117 107 527 68 9 28 12 429 4 1 3789 5863 2194 108 8 1309 46 1056 29 1 1146 3 207 110 3333 358 719 7 146 4803 14 2 267 130 70 23 52 68 28 2655 3294 8 83 1374 8 497 1 1132 179 11 12 2 211 4930 41 2730 3 1 82 599 1399 56 6 3826 2 434\n0\t0 0 0 0 0 208 96 86 167 3516 5 134 11 9 6 1 210 21 117 1716 49 8 159 1 1625 19 249 8 563 260 32 330 755 11 9 54 26 2 391 4 3615 3 10 54 26 113 5 925 194 17 8 936 165 3295 77 283 9 30 43 2098 8 2117 77 1 616 15 402 1691 17 8 12 1247 51 54 26 2 342 4 772 1308 5 359 79 5758 285 9 135 1 2654 7 9 21 652 2 6113 5 1 4141 33 22 650 8857 4 81 605 2018 5 1 543 3 1 1248 288 1021 3 121 36 2 7152 3 1 687 2075 716 72 64 37 396 7 8009 1847 8221 1 21 6 631 3 1 67 6 20 59 1258 5 241 17 93 961 3 4320 1 120 22 483 761 3 2761 8 100 175 5 24 5 64 9 3615 21 805 420 243 186 2 7721 5 1 2749 68 26 5794 5 9 391 4 117 702 45 261 8 64 666 33 338 10 8 76 3628 4134 126 7 1\n0\t2 8557 6 2406 19 1 82 1737 1 1865 2726 6292 3 869 6736 2140 14 3708 7 9 21 3 209 14 58 4802 1069 31 1164 873 1198 18 1881 6 2403 11 76 3478 9988 80 410 7998 3 11 6 1 3 103 487 35 1371 1 1198 3 2615 7 2056 1907 322 39 36 7 7431 3819 1 1198 3 375 82 581 819 165 9 761 6235 19 1 193 1031 406 4 6 20 2 53 259 3 10 498 47 7 1 182 1 635 6 39 31 3977 4340 345 293 363 11 88 26 248 138 30 1 855 1756 91 505 5210 296 3502 3 2171 4489 672 3710 90 9 2 7439 135 136 80 76 1416 812 9 21 341 11 439 51 6 2 346 3 46 7162 7787 11 112 127 124 3 1498 126 5 7786 3 83 241 6 2 464 13 664 5 25 1442 1039 9027 12 2450 7 375 52 124 7 1 4929 14 109 14 43 1058 630 4 127 720 1 1284 233 11 27 6 2 1642 41 11 1 104 22 1581 56\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 12 37 4407 8 192 2 3 8 3 50 417 34 112 1 1125 37 10 39 271 5 131 11 127 104 2725 838 5 34 717 8 354 10 5 3622 50 430 427 7 9 18 6 49 49 27 6 648 38 25 1248 4111 27 6 132 2 84 1651 14 109 14 33 2204 65 37 322 3 24 132 2 84 8 56 449 11 33 63 216 316 1413 33 22 132 1805 1046 3 22 46 53 1488 8 24 475 214 104 11 22 53 5 836 7452 10 40 71 254 16 79 5 149 104 11 22 501 3 131 53 3 1850 7542 17 29 1 166 387 127 104 662\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 24 198 57 1 7210 11 154 625 423 101 40 264 8 214 9 18 5 26 1477 3 8 96 154 1185 1465 47 51 228 1023 15 437 9 6 20 2 15 2 86 38 148 559 3 43 4 1 11 33 3374 8 214 1 18 1 546 11 33 262 1 9366 716 19 239 311 8534 45 23 22 7 1 166 14 127 1046 23 76 149 9 18 2713 8 83 96 11 9 6 160 1364 95 2101 41 41 11 1 81 7 9 18 76 390 958 368 3108 17 86 2 232 4 738 170 81 35 88 1999 5 62 2751 16 79 1 259 11 1421 47 1 80 6 1 5 122 2 17 196 4 1 1 93 309 2 184 185 7 1 141 258 49 33 22 45 8 359 8 228 1851 2 2636 3 8 83 175 5 87 458 39 139 3 70 1 18 3 23 76 20 8 187 10 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 31 11 681 172 989 165 1136 5 62 1892 40 71 318 576 1236 65 15 126 3 244 2649 5 87 2 1614 329 6 2 3312 32 3512 5 66 130 139 13 659 3512 889 2 282 32 11 40 71 2925 5 2 48 27 1148 3 1088 5 352 47 4 44 664 5 1 233 11 435 285 1 392 5 195 271 15 5 5 90 65 15 1 576 7829 5 352 44 149 44 2002 58 729 48 10 475 155 7 1 212 1261 181 5 26 52 2985 68 117 179 13 252 18 153 291 5 1179 7 1 2116 897 4 3923 104 664 5 1 233 11 42 71 3 151 10 34 6831 1 363 151 1 18 2 103 105 78 1815 64 10 3 16 13 1149\n0\t1138 785 3 83 70 97 1192 1 21 6 311 15 13 659 4909 8 1595 1 111 33 400 43 4 1 168 7 49 33 643 142 9481 29 1 357 3 57 1407 11 27 563 60 12 2 34 4508 48 12 1 272 4 3559 33 643 142 604 358 7 1 74 628 3 195 33 652 122 155 15 58 2651 3198 9 6 377 5 26 2 8 83 96 95 4 1 120 55 998 2 1653 7 1 135 10 39 271 19 2 1231 3 1231 295 32 1 7499 13 92 147 120 22 46 1 212 299 4 50 1399 196 161 46 6727 2253 6 39 2 1054 1335 16 7657 7 900 236 38 102 41 277 53 4019 1 344 22 463 9078 41 32 13 614 9 61 1 74 18 4 1 251 98 420 229 26 4607 19 110 17 1 251 544 19 2 1367 4 2570 2485 3 98 224 5 2 952 4 3860 47 7657 37 8 867 59 99 9 21 45 23 617 107 86 73 1 2881 35 79 6 28 2059 3315\n1\t1990 196 29 1 3 9910 876 2 277 5321 3306 5 9 1244 35 76 187 1990 1 1551 3912 11 76 407 149 44 742 4696 14 1 6 2 148 14 2 1084 1412 468 117 4696 2148 1 904 958 4 3871 7 2 709 9571 207 14 542 14 9 21 255 5 709 9531 2 709 278 11 811 36 31 6772 4 1461 3337 237 52 68 31 958 4 13 383 7 315 3 4308 1 7745 6 8781 35 1066 15 3 35 114 157 3 469 4 5438 7 42 1080 5 1 3427 1190 16 9 135 16 5565 802 4 223 270 6 1659 5 1 4 1 158 236 58 356 4 2 1130 3510 2882 7 25 13 499 93 4249 1 593 4 80 80 8363 25 1229 6 19 1 2631 189 4490 3 1 7 66 33 1093 75 1 9015 7413 3 75 1 2852 1630 14 3579 25 127 1626 70 62 80 1654 2794 7 25 21 3 14 198 27 863 188 6018 3 615 58 315 3 482 9 6 28 4 25 46 113 3 80 1535\n0\t6 8555 1 2526 7 323 3160 21 4912 29 2 967 69 14 93 253 31 1635 7 9 18 6 2 129 646 1 244 377 5 26 31 17 791 11 233 12 433 19 1 3624 7040 35 2666 122 15 1008 29 95 17 83 244 39 51 5 90 65 1 823 1810 2139 29 1 3158 13 3 5 26 87 46 103 7 1 135 33 59 39 1092 875 369 818 3218 488 14 8 1505 5838 2356 196 31 362 1285 5 1 37 25 213 1747 5 78 4 1 135 2825 440 25 1726 14 87 2 342 4 1 82 201 7998 17 1 18 6 39 8018 5 26 13 92 628 3 9032 8757 3950 177 9 18 1664 6 1 2468 33 22 34 654 94 7063 69 1 344 4 1 21 6 2518 3 13 7 8 57 3394 19 2319 6745 10 12 28 4 137 1575 9707 276 36 33 128 89 930 104 109 77 1 10 13 777 113 55 14 2 4868 5932 18 9 21 6 2 17 29 225 23 63 884 890 194 8\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 337 5 9 18 5 64 43 568 1748 1570 45 23 405 5 64 2 211 2038 1260 4 31 161 3210 23 76 112 12 1115 14 8499 1 67 427 12 1111 2 156 546 1253 36 1 622 4 1 5922 89 10 55 828 3044 2604 100 4624 2 292 51 61 2 156 1217 708 3 9 6 5 26 2 374 41 231 880 328 20 5 1621 2364 4 11 23 87 23 56 4108 335 1 14 16 1 708 38 3044 328 5 1654 2 580 1729 572 3 64 75 23 20 806 14 10 276 1104\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2907 37 1219 5 149 2 5270 216 9727 6121 5 1 412 11 8 190 24 1274 9 21 2302 68 10 17 20 30 1264 14 2 1465 4 5609 8 24 58 7 1 21 5 25 29 225 5 137 11 112 122 14 8 1405 1 1084 6 9555 6 7615 7 7 7 1072 6 4245 17 44 6592 4 1 3 44 1697 202 151 23 995 44 7404 1628 9037 1510 2 400 17 1381 3978 13 4098 20 230 23 24 5 284 532 366 5 1116 1 4692 1024 45 23 617 284 532 1925 23 76 229 175 5 94 956 1 803 13 1 32 1666 5 3 155 805 3 83 773 1 570 6379 4 1775 896 16 3247 2691 774 1 182 4 1 803 13 76 100 478 1 166 669 787 7 49 1 788 6 355 1423 2066 3290 3 42 2037 79\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 420 455 38 9 18 2 136 989 32 2 493 3 60 937 165 10 19 1771 51 12 2 163 4 8333 3 3008 14 4932 205 455 11 9 12 2 5287 158 56 3681 75 945 12 1251 32 11 28 178 8264 34 118 66 162 8 12 852 5 64 1 287 7 315 2 156 268 3 16 44 5 87 2 156 52 1025 36 1030 29 1 3406 41 1243 577 1 3801 41 9540 13 34 1 746 204 134 48 2 3903 3971 18 9 705 8 39 143 64 10 145 300 236 2 1820 7 48 81 149 782 7 1 199 5 204 7 13 743 184 369 224 94 34 1 7928 746\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 22 28 4 1 104 11 83 6282 95 1568 41 6523 42 2 46 211 85 1369 66 23 3001 7 1 398 594 41 1943 8 12 56 619 15 294 121 27 531 372 1 2041 36 129 15 1 32 11 5 372 1 528 2738 3 123 10 5 5868 2956 1 709 132 14 3 8 12 93 169 619 15 1 535 624 73 51 871 83 6282 78 860 17 650 38 1 82 8 12 619 14 33 1180 5 8065 3 697 4746 3 23 88 189 126 66 6 2 53 177 2009 4 759 22 6 3 299 37 19 2 509 2714 3400 9 76 273 116 9627\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7519 1 1131 5 1 121 11 151 9739 3490 37 1974 8 88 26 2 5505 7859 176 36 31 918 3712 9 21 20 1 113 177 38 10 6 1 1009 4 7 1 4339 3663 801 47 4 1 277 384 5 26 1 6472 391 7 1422 4 857 3 555 420 1019 1 10 2591 79 19 146 2684 36 1574 1711 971 45 23 87 751 490 317 56 7 16 2 87 725 2 7359 3 925 10 36 1 45 317 288 16 146 3161 3 15 171 11 22 52 1974 68 2 98 139 8825 618 45 23 175 43 538 3020 238 176 36 1238 8948 3020\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74 813 185 6 1011 1 2269 2063 674 143 1364 1 392 7 33 2200 5698 5 9 913 660 1 8711 3 9 18 2236 1 2603 67 4 1 1438 1 59 91 559 61 1 4 1 35 89 9 392 3109 1 129 4 7391 6 425 5 1682 476 27 6 483 11 143 1116 3 1 4 1 625 17 40 162 17 16 914 6862 3 36 154 21 11 1 392 7900 6838 61 93 9 28 9737 1 321 5 187 2 302 16 1 7 1270 3 16 11 729 93 1 302 16 154 625 2169 11 12 939 1670 7391 196 5 186 1489 16 1 4 2 212 10 54 24 71 138 5 216 19 75 5 934 15 1 243 68 450 7454 72 70 5 1364 9 657 23\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 57 37 78 5589 261 35 1417 1 67 4 4327 789 11 51 22 37 97 1733 4861 7 9 18 42 2348 105 78 85 3 991 12 1019 7 1 18 19 5726 3 25 8851 106 12 1 129 1 9921 4 95 1518 22 198 240 3 12 58 4727 106 7 1 18 123 10 7743 25 49 27 1647 848 3 346 378 72 22 685 2 7938 4 3139 11 3143 5 1346 1 4 1 3300 17 2197 5 7743 1 580 272 7 5064 896 1 302 144 1 913 726 37 3565 15 9 67 12 1 1733 69 75 27 1 3274 7 25 2138 3 1 3 27 337 5 5 8612 25 3 25 2277 16 966 8 88 139 926 17 5 3350 1095 105 97 985 7 1 158 2665 19 25 5405 3 20 227 4 1 840 69 1 53 691 23 54 504 5 64 49 1 462 4 1 18 6\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 246 219 394 269 4 9 18 8 12 246 219 1099 269 50 61 69 8 311 339 241 4360 1 18 6 56 1319 7 233 10 6 37 1853 11 8 57 5 99 34 4 10 39 5 26 285 490 8 310 5 853 11 10 1385 79 4 2 658 4 5116 2654 1545 32 1 4198 3 1 9060 6 14 186 28 483 986 90 2 263 1472 9 3561 7 14 97 6571 1650 14 5887 734 2 658 4 716 2166 3 8658 10 65 15 2 342 4 304 170 624 69 21 458 3 23 24 2 8 511 118 45 9 18 12 2 5766 17 1031 1 5116 4270 66 1436 5895 1543 2 156 84 10 181 11 51 6 2 2967 16 9 232 4 18 7 1 2533\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 474 4398 18 6910 2 147 3157 213 29 34 2 91 108 7 698 8 36 10 46 1264 1661 8 920 1 494 6 2390 3 1 67 6 2 222 775 553 29 1287 17 136 46 46 534 6 2 1321 227 3590 5104 3 9512 6651 114 2 1016 329 550 1874 4 1 672 505 10 12 1111 162 540 15 10 3198 1 847 6 3 43 4 1 2946 591 29 1 477 61 1 759 3 868 22 9294 258 1758 65 3 2681 2535 1 1967 40 198 71 50 923 1522 4 1 3468 1 474 35 8 87 2102 22 3 1 423 537 22 109 248 854 3 1 393 6 2 148 34 7 399 8025 1434 7101 5582\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 419 9 21 2 73 4 1 1805 171 3 112 1192 3823 45 23 173 284 36 2 23 76 100 70 140 1 4220 11 328 5 359 65 15 1 2294 2583 488 48 1 898 6 160 19 7 1 119 45 23 173 284 1 2174 3 3 1829 39 509 94 31 594 41 1943 43 53 861 17 93 43 37 534 23 96 116 412 40 4518 689 75 9 1196 235 8 76 100 5084 832 5 771 38 220 1 466 171 291 5 39 7571 3 176 29 239 82 49 33 22 20 5028 239 82 1695 1 129 6 37 1805 11 10 6 832 5 241 11 261 54 4269 122 1695 3 48 6 15 25 8 39 908 143 70 10 80 4 1 85 571 11 51 61 277 559 11 34 291 5 24 57 2 622 15 239 100 2242 47 35 12 603\n0\t0 0 1178 91 3957 525 19 528 15 505 489 443 1093 67 3 627 4 1054 2056 126 33 414 398 1945 3 317 1927 70 13 4255 3917 32 1 1696 60 1630 14 198 361 14 6069 14 2 391 4 742 8142 863 19 2478 3 2478 361 3 6 38 14 402 204 14 2 518 1970 13 92 2851 287 15 1 1184 671 6 113 49 444 434 7 3 55 1 5953 12 8283 2243 60 12 1 113 5444 7 1 3750 361 300 33 6137 44 183 1 4067 41 9540 13 7958 66 57 2 1095 17 441 5 66 28 88 1999 52 41 364 5893 4 1 4087 9 18 181 5 1229 19 2 45 28 153 474 78 38 361 3 1 22 11 551 4 3919 3 91 1232 52 7016 2572 3 469 361 51 6 103 302 5 64 194 41 5 26 13 677 22 43 823 185 3 43 17 1 840 6 364 98 3 1082 205 14 1703 3511 7208 10 6 3 14 2565 73 10 6 20 2637 13 2687 351 85 19 9 5592\n0\t3 2018 44 522 19 1 182 37 378 4 3851 307 118 4 25 1971 27 1036 5 1 4579 195 44 4070 975 6 242 5 149 47 106 60 6 3 48 653 5 768 109 94 283 44 975 125 3 125 316 794 2 1028 36 3 55 2829 5 1 1972 4 1 823 60 475 615 768 195 1 823 6 3 60 6 274 47 5 934 15 1 28 3 59 2172 11 643 768 91 177 6 11 60 143 24 78 4 2 59 5 4294 5 26 44 4070 3 2006 1 259 106 1 823 12 1 3399 143 55 241 27 643 768 37 34 6 2722 51 3 55 193 60 57 2 60 999 5 70 992 37 1 226 168 4 1 18 22 4 1 4 44 3 44 4070 1323 47 4 1 8459 37 23 467 5 348 79 7 9 18 1 91 259 3 20 28 17 102 1438 81 13 188 38 1 3515 4586 115 13 188 38 1 3515 265 478 363 223 3 1366 47 4 119 402 2442 121 32 43 20 34\n1\t94 394 269 1437 48 1 3106 72 165 5275 77 9 85 1 716 726 211 3 33 2716 211 533 1 108 7 1 74 185 23 39 359 2227 725 38 9 3 691 6153 22 97 52 3359 4 9 3 73 33 359 5665 1 166 716 1543 264 33 70 3288 3 7 1776 16 9 34 1 250 120 22 1694 1 74 28 55 68 1 4791 318 350 4 1 21 12 125 72 143 55 118 1 442 4 9 18 73 51 61 58 567 1079 3 72 337 5 9 4813 6745 17 72 273 57 2 53 290 1 429 12 5646 3 8 96 38 350 4 126 143 36 10 3 1 82 350 336 1 135 45 23 36 1021 3865 104 15 84 494 23 76 112 110 1251 32 8331 9 18 1071 2 163 138 68 1 970 1020 10 40 29 1 85 8 787 490 17 49 52 24 107 10 8 192 273 10 76 139 960 6 5057 8 7663 8 54 187 10 31 1315 47 4 1731 47 4 394 94 2 156 13 1149\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 134 62 20 253 174 2232 9 6 1 48 87 33 139 19 253 174 11 1 398 28 12 144 87 33 309 2533 3086 9 18 89 58 356 12 120 61 496 28 12 174 6 46 439 16 132 2 53 119 6 9 6 55 527 68 185 358 3 6148 8 8786 70 1 2 439 901 7 3051 8 1595 9 21 37 78 8 128 34 1 546 8 8786 36 66 12 676 1 212 6 37 264 68 1 9 28 713 1 165 8410 155 19 1 51 61 95 469 33 61 3154 75 63 33 24 881 9 33 64 33 89 1 1003 3036 29 546 358 3 33 90 34 1 20 64 9 747 1335 16 2 2232 5061 13 150 419 2 2232 19 5463 1170 1721 535 47 4 9825 13 985 4 3515 57 1187 15 6199 13 985 4 4356 464 4 211 5 26 14\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 219 9 18 19 5577 9 134 78 138 68 6 38 35 486 15 25 3 25 103 18 1986 49 27 3389 2 151 2 119 5 564 25 170 151 2 1439 30 5994 156 209 5 2 416 5 26 11 435 3448 122 47 4 1 406 255 3 139 5 5 149 380 2 53 12 761 29 6 114 12 12 1130 17 485 635 66 262 711 7 1 18 12 747 27 57 5 70 25 129 282 12 1257 17 12 82 635 114 114 12 3 114 861 6 313 7 205 4660 3 6 904 17 40 2 156 53 4089 265 12 59 338 28 1 5695 4 11 788 12 82 759 61 99 476\n1\t90 2 53 412 2859 1815 1608 3 8 338 1 788 11 2183 7 1 6950 657 8 192 13 9835 36 34 484 51 22 43 4095 13 835 65 15 3559 23 63 348 9 12 4229 29 1186 7013 11 511 1460 79 169 37 78 45 51 247 1 233 11 1 2588 676 2052 1 1393 8 54 24 78 7421 45 9199 3 1568 57 556 62 1888 488 3688 7474 336 25 606 52 68 54 26 404 2 222 6445 5 134 1 13 7551 3 1 3318 12 2724 467 5 8 1266 2056 27 247 198 1 80 4 1046 17 27 143 812 32 48 180 36 1 25 2328 12 13 3562 207 167 78 34 8 24 5 134 38 9 108 8 179 1 847 89 65 16 1 119 3 11 10 12 790 167 52 37 68 1 8685 7474 124 29 4822 300 145 39 6679 73 9 6 48 165 79 77 7474 7 1 74 2416 41 300 50 438 6 41 300 145 39 9508 17 8 56 338 9 141 55 45 145 1 6005 42 1901 1987\n0\t1 750 3436 37 11 85 63 1797 917 86 5871 1 465 6 11 811 301 29 6702 7 1 234 4 1 5694 3 37 90 122 70 155 7 1 3436 6 243 378 4 490 1 18 271 19 375 82 584 197 7 1068 1 250 994 14 2 1 18 432 519 519 2 222 4 2 9983 13 724 1 18 93 2440 32 1 278 4 670 34 1 1488 3 735 77 1 5072 11 618 33 88 925 7 1 74 3515 479 160 125 1 401 3 390 3182 977 144 114 1 4783 2549 7 1 633 250 27 89 2 2082 73 60 181 3 6 332 1 82 171 662 6 3 1850 13 1149 4 611 1 18 1263 2 156 53 529 15 2249 17 10 396 621 77 3 732 1102 3 3637 22 10 93 784 6118 73 270 155 824 11 1 1246 4 1 74 108 9113 2 170 282 270 16 2 542 4633 4 44 231 3 2080 122 5 186 185 7 44 13 743 3 1832 1441 835 1 796 4 9 18 1286 13 3382\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 713 5 99 9 18 1882 3 205 268 8 128 339 90 10 5 1 182 6950 74 85 8 1180 5 694 140 1 74 566 980 98 433 3208 330 85 8 1180 5 1426 512 5 125 31 719 279 4 5862 505 1054 3 483 345 3344 7 3770 5 1 13 117 785 38 1 161 4617 16 137 35 617 369 79 2222 23 1107 42 6 28 4 1 1003 1009 1400 4 34 1036 5 1042 2 18 562 19 62 408 5416 5 757 2 223 3 1370 67 386 1 562 184 85 3 7817 7 3949 655 3949 4 4617 2205 5 26 7096 7 73 33 339 55 187 126 295 369 818 2373 2350 13 1118 123 2905 1 1110 24 5 87 15 9 7771 176 29 1 1020 3 842 10 47 16 13 929 79 5 187 10 2 755 47 4 394 73 62 1020 153 139 14 402 14 5397 369 818 77 1\n1\t19 2 1 21 475 615 2 1229 189 382 921 4 674 6804 53 2606 510 2720 519 5 26 6609 124 1 7907 20 5 134 105 78 38 949 7 2 8266 5690 1 6151 868 6 400 3971 7 127 168 3 7 2349 10 202 181 36 2 342 4 268 31 7648 40 77 6917 7234 4400 2434 66 1605 90 1 21 13 777 2 4897 1024 11 7 1 182 10 271 52 16 1 883 300 20 6397 3 318 1 957 634 153 24 78 5 87 571 25 692 245 15 27 196 47 4 44 2 46 53 278 7241 1546 3 1462 68 1 28 7 1 3 31 1303 2281 29 31 8547 9298 7 2 111 8 87 3 83 1023 15 11 42 36 2 7 541 675 8 920 51 6 5319 15 1 5969 4 1 17 1 168 106 6609 123 1173 921 22 1914 5 137 4 95 265 3324 42 5174 42 42 20 65 5 3459 15 1 74 102 5830 17 3255 51 88 26 527 1175 5 1017 2 342 719 15 1 1313 4 1\n1\t53 3 40 39 2910 16 1 5310 3 4968 1777 6 31 240 244 56 39 2 184 3474 1711 77 15 29 225 28 454 288 94 122 154 330 4 154 1393 770 39 1777 1 540 111 69 27 1143 5 24 1816 3 4 611 3185 380 1777 2 426 4 3 136 11 196 122 77 34 3149 4 42 332 892 5 99 19 1250 115 13 2772 6 84 204 7 9 21 14 31 918 7927 3 2101 9289 1364 16 25 1663 2772 6 885 15 1 1411 1637 4 1 158 1573 1 459 211 456 77 3385 1411 17 27 6 93 84 7 2472 1777 224 5 2 952 3 253 1 129 2772 40 43 352 7 1 8941 4972 69 6 84 14 1 6706 1348 35 1777 173 70 227 2787 3 294 6 1442 14 8319 1196 1 113 607 353 918 16 25 278 7 9 158 3 236 58 2957 40 2 2570 2485 3 1544 65 17 244 198 288 47 16 1777 69 3 6 425 7 1 1174 1312 21 1777 6 386 3 3373 17 1510 1308\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7886 59 405 5 64 23 1094 7 1 5481 9 6 31 135 10 130 24 71 5 17 74 21 3 1 8888 6456 17 8 617 107 16 172 37 2176 48 8 63 320 38 110 1 635 40 5 15 1707 125 1 112 4 25 727 2202 25 1301 371 395 3891 14 3 1 1560 7 25 1499 17 25 3226 1301 395 85 14 6 9695 25 500 36 7390 6 242 5 2303 32 1 4163 39 36 2156 366 3 1315 56 452 760 194 539 3 1717 3 45 23 194 751 110\n0\t5 26 605 127 6376 1251 5 64 48 151 126 27 123 359 25 32 122 30 2911 122 5 946 122 7 2559 1 398 326 3 2334 122 15 2 1 3339 16 25 3474 17 4 448 6 20 2 53 3339 3 196 47 4 1 1009 7 1 606 3 4 611 322 188 662 13 3514 963 835 160 19 15 988 3 6 4 448 3 14 15 1 161 441 6 20 2 6 229 55 52 3 6812 73 27 2440 32 954 4664 3928 37 11 88 3110 16 25 510 3635 3 1 2849 4 1 8248 3421 6 2722 1221 3 236 55 232 4 2 749 393 4 13 743 1825 65 32 185 7983 17 20 78 4 461 805 1579 6 4525 3 2467 1341 37 43 547 293 1456 17 20 227 5 90 9 1051 2 156 32 185 843 22 2458 200 1221 36 4414 2604 3 17 11 153 56 90 95 9484 1441 8 195 24 283 1 212 251 47 4 50 5416 195 45 8 88 70 43 4 10 47 4 50 9828 843 47 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1479 851 8 219 9 29 2 6510 334 3 114 20 946 16 110 1 119 6 2069 3 1 212 18 343 36 31 431 4 2 249 880 45 23 24 95 2258 4 9397 41 99 689 23 76 230 230 36 1 18 6 31 2158 5 116 7396 115 13 3926 651 590 78 265 5819 6954 3927 1 210 121 8 24 117 1586 444 2029 11 2385 6 152 7967 244 1 28 11 2995 1 108 115 13 150 812 11 8 1130 670 102 719 4 50 157 133 9 1540 42 2 1152 11 33 165 5 637 10 2 5409 73 8 12 2 325 4 1 1571 66 12 152 167 452\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 84 1033 5 99 15 1 379 41 5657 51 22 1308 3 43 46 240 103 584 160 19 675 1 1624 22 34 46 240 3 373 279 133 7 62 1574 7404 4133 157 6 331 4 8356 3 2328 1 2141 5976 1769 424 8305 4253 5 1861 48 2 334 5 5 134 1 2532 3 28 326 10 190 390 50 8 56 335 9 18 3 154 85 8 99 10 8 335 10 1129 8 54 112 5 64 52 4 127 120 3 8 198 560 48 726 4 450 292 1 119 6 595 9 18 424 4 611 2 84 1335 5 39 694 155 19 1 7205 3 335 1 360 3 754 4133 15 127 360 3 62 221 923 4260\n1\t204 1505 1 360 453 4 1 7672 3701 12 3435 17 57 1 6564 4 101 2695 421 783 918 1707 278 4 7 8225 7833 125 1 3945 114 193 742 2149 29 225 5 26 2695 14 530 55 1 871 61 262 5 36 16 1 115 13 876 79 5 50 302 16 6540 9 158 1 593 4 1 3461 2107 8915 7734 35 2941 758 2 102 454 3290 218 3 1 5 1 412 3 89 2 331 18 47 4 194 123 10 702 27 1986 1 266 47 197 253 126 176 36 2 1039 3103 27 47 1 67 3 1 4720 13 8170 1181 910 269 77 1 21 183 72 70 5 1 178 11 1986 1 3290 106 1147 3904 255 5 64 25 1848 3 348 122 38 1 267 4155 193 51 22 494 32 1 309 285 1 74 2290 1507 1 980 554 6 400 7956 2 156 172 989 8 114 64 29 1 2404 8559 4 1 309 15 783 3 1347 66 12 2856 17 8 96 11 7734 3 2414 5236 19 110 42 39 2 360 4006\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 419 9 18 2 3802 3 193 8 1064 512 2 1145 1724 1787 8 214 9 18 46 832 5 186 2556 10 12 19 28 518 1925 3 145 1096 8 159 10 16 7844 9 18 6 229 53 16 2 156 3886 17 20 78 5521 13 92 293 363 22 38 855 16 1 85 1165 69 20 1853 17 20 1111 1497 4 448 72 118 52 38 9937 195 68 72 114 155 977 17 72 56 173 998 11 421 9 135 1 250 302 8 114 20 36 9 18 6 73 4 1 2876 13 677 61 375 546 4 9 18 11 8 555 54 24 71 5802 7 2 103 52 2252 69 1 1 707 19 1 2070 7 1 966 1952 1 18 6 78 36 2 6083 431 4 1 7490 324 4 1 3836 7186 69 528 15 2 978 1905\n0\t118 33 57 7 137 2569 17 1 129 60 266 424 7 2105 56 3644 7666 444 162 17 2 5 1 4293 4 6468 3 4 154 413 341 11 19 1 7143 16 1632 28 1925 49 638 3 22 355 10 926 44 761 5705 4244 2530 7 1 5331 8831 638 3 440 5 1890 1159 44 1 398 1344 1 5705 4244 6 128 770 16 3 1 102 634 14 45 162 57 3136 42 400 8718 457 95 57 44 129 71 2 148 3292 54 24 1 5705 4244 6232 3 4446 25 5651 142 1 7143 41 55 643 550 17 1 233 11 1 287 863 122 19 44 94 27 713 5 1890 44 6 1 7472 67 3 4280 5 1 13 1733 36 490 3 1 1517 6554 5105 151 2 3713 4524 17 3245 108 3245 7 1 1591 6895 8 39 339 352 17 99 1 21 16 1 1963 1637 4 10 34 395 313 861 151 10 4607 5 814 9 101 31 2605 158 8 497 10 6211 7 403 48 10 12 377 5 1405 17 6 1281 16 9177\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 46 747 11 123 20 582 253 502 33 70 527 154 290 3 6 2 2578 29 1 2904 42 2557 11 32 1 97 104 11 22 89 7 600 1 210 4 126 70 5 26 1172 1394 8640 6444 1644 21 9 18 197 2 119 600 121 41 263 6 2 351 4 85 3 1686 47 4 1731\n0\t3378 267 20 37 6 359 11 7 2867 7236 7675 23 1121 757 47 16 9 1 59 302 81 228 539 29 127 2249 6 73 33 175 5 230 987 543 194 4151 42 4138 5 539 29 235 4210 8 118 267 6 9 18 1513 26 211 5 571 300 1 1132 2449 14 2 601 5233 1 18 57 5 24 71 89 183 492 7748 3988 7 104 36 3 218 1504 51 173 26 95 82 302 144 31 353 4 25 7281 54 5 26 185 4 9 3161 6051 880 34 1 508 7 1 201 22 463 171 41 3641 2682 4348 315 89 2 53 1418 7 806 17 8 83 96 444 248 235 4 1548 117 4836 12 229 77 101 7 9 135 8131 1072 6 162 197 6 1 644 1003 376 7 438 247 754 29 1 3 51 22 128 229 2 5587 4 81 35 617 455 4 53 2560 9594 145 7 1594 4 483 1879 7020 17 9 28 1071 5 77 8 449 5 2207 9 153 390 2 1280 1513 51 26 2 1800 421 930 36\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 12 446 5 4008 7 16 59 1 74 2290 269 4 9 1879 108 1 80 7755 6956 12 11 136 1 296 8815 7 2 2672 4144 1464 22 34 1521 2572 32 4969 4 2135 3 160 197 7 7472 3 9681 3 3105 19 5132 3 69 987 20 995 7644 2629 69 33 198 2108 5 6119 8986 15 1 1675 4 2 6740 1599 2395 14 31 1536 1 1084 3 121 22 311 1319 8214 481 291 5 1382 5 2239 2 625 129 3 378 2182 2 243 4 576 2237 2 650 201 2239 1 2672 4144 1464 6862 228 24 71 17 49 1521 1736 6862 121 14 5 1 200 1727 3850 528 15 3 32 4170 3 1874 15 3263 36 940 32 322 207 39 1721 2329 4 4553 83 351 116 85 19 9 461\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 57 132 48 2 84 3486 31 968 2280 16 7929 3 923 59 5 1621 42 2583 664 5 91 345 1043 3 2 471 1 120 7 1 477 61 1476 59 5 1621 8239 350 111 140 5 390 28 5321 81 47 1455 13 4751 45 33 1019 43 52 85 19 1 67 3 10 54 24 71 2 84 141 378 4 2 202 4471\n1\t85 311 704 1 188 33 24 5 134 22 1681 41 4 1052 10 34 255 224 15 1 4073 4 1011 13 1833 23 176 29 1 171 4525 41 1 84 1077 30 578 10 181 678 11 132 2 21 26 46 670 7668 300 78 4 48 151 218 1966 48 10 6 12 1 85 1165 10 12 89 1107 236 9 5725 507 5 9 572 11 1523 79 1768 4 50 221 9822 81 771 4 1 2804 7 1422 4 661 5616 3 1224 17 207 20 1 2804 8 1457 7 41 8560 1 176 4 1 7525 1 7615 3 534 1311 538 4 1 505 3 1 790 1122 130 70 457 1 3059 4 95 454 35 1662 65 7 41 774 9 1592 4 85 7 2672 4100 8 64 512 7 476 8 64 75 8 159 1 1162 3 2 21 36 218 1966 1148 1 234 16 75 10 323 3191 13 1701 52 4 9 9523 786 13 92 315 100 1717 5953 4952 7144 1678 7 1 683 298 2037 773 9617 1 1085 4515 1 1085 4 6622 3 4114\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1252 978 3744 278 2 125 1 5037 638 128 384 5 26 1544 7 25 1996 58 1300 15 25 633 693 8730 3632 5 27 123 20 291 5 24 95 860 4 25\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 646 26 145 20 28 16 4210 3013 104 106 1 287 266 1 91 3404 809 20 160 5 186 95 930 32 4315 45 95 28 4 1 201 1144 405 2339 33 88 24 39 556 44 47 7 2 10 12 548 19 17 83 760 1 148 2939 1961 437 24 8 117 5 5917\n1\t12 5 390 6326 69 78 4 1 362 4328 4 1 158 11 185 49 3259 6 2 583 603 5 1 6 30 44 532 3 3361 294 181 5 2739 3 70 433 7 1 2767 1759 3 1769 17 308 3259 255 4 717 3 6 30 2523 2913 1 21 6485 6 2 627 651 3 615 11 7358 427 189 3 4453 7529 11 151 44 2 514 9888 16 137 29 3544 35 54 3143 5 1377 1 69 642 44 5161 2207 5947 17 14 60 77 44 280 14 2201 44 1128 19 1 6948 1091 2523 3 2 112 1971 11 40 3890 7 1 2122 4 307 6 6105 30 1 1292 4 15 5244 16 1 474 4 44 5258 69 78 664 5 1 4 1 21 270 199 5 1 3241 4 62 74 4 3555 537 3 98 741 15 43 7849 38 1 2728 4 2201 3259 3 2523 1380 19 1 943 533 10 151 16 31 3400 4 304 2417 589 3 2378 199 5 1116 1 4 102 170 460 7 5138 6485 3 4699 2 1195 45 20 115 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3730 4497 289 142 25 313 3689 7 205 121 3 523 7 9 1052 3 179 7977 4247 4 6493 80 382 3 6886 6158 3730 266 1 280 4 5139 15 132 2 6474 1900 11 9925 2257 278 6 93 4 84\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 8 159 1 8 9 6 160 5 26 2 84 108 3 1314 10 88 24 5674 1 651 372 1 250 129 12 46 3 1 1212 4 1 1673 6 618 1 4996 201 2 534 3725 19 1 212 2129 1 952 4 1587 12 105 1100 3 105 2759 16 31 238 605 334 7 3 10 472 295 80 4 1 1449 4 1 135 245 8 191 1 73 1 706 61 52 3 3271 11 1 215 710 3 10 229 2980 1 53 1020 1 18 2071 19 1\n1\t0 0 0 0 14 2 2868 3 325 4 1 215 366 9529 251 220 50 362 6420 28 1329 11 1336 56 71 1505 6 1 1234 4 2868 4887 129 285 1 1199 27 198 1180 5 70 411 7 5 28 84 41 9704 94 2877 5170 15 59 25 37 27 57 43 7 1 6615 431 3 25 4908 27 100 3091 95 82 5 463 2909 411 41 90 1 4887 13 4567 97 737 8 937 4323 1 305 1009 274 4 1 102 1823 104 3 3578 249 3428 3 24 71 1633 34 1 3434 3 292 8 320 133 126 155 7 1 362 2847 49 33 74 86 71 125 1099 172 97 4 126 291 147 34 125 702 2431 3 978 69 17 1515 3 496 2072 33 39 83 90 691 36 9 127 2569 195 86 34 15 961 120 3 13 50 752 40 71 1157 224 5 99 1 767 15 79 3 40 1619 31 4870 16 126 5047 4283 1 10 380 79 449 3 2845 1 251 76 1720 19 5 147 6497 4 596 16 172 5 5223\n0\t6 101 1699 200 30 2 7981 809 532 12 643 93 39 2 156 172 1448 1 170 282 486 15 44 3 6 242 5 369 139 4 44 532 1 113 111 60 5402 3 1 5924 4 2 147 823 181 8371 3713 227 8371 2 7195 7 66 5 8612 9 1 4698 1955 4 6 13 9300 3 307 7 9 811 48 5127 86 8443 286 630 4 126 22 1774 5 77 1 8437 4958 3 186 2 176 200 395 6379 204 6 107 49 2 4521 2889 11 6 314 16 3 5904 6 367 5 2735 1 161 569 4 457 86 11 424 318 3619 2495 126 8676 13 92 18 6 240 45 2 222 105 51 22 237 105 97 67 456 11 965 5987 3 10 39 153 70 105 97 2324 1 121 12 2054 17 1 1673 12 1634 8027 41 534 4067 3 39 2 1977 1 790 13 150 335 8813 581 101 28 4 50 3931 4148 7 11 17 965 5 6123 86 522 845 1 1793 37 11 10 88 64 86 221 4386 66 311 143 3109\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 31 3215 158 11 4156 23 10 181 5 26 7300 1918 7606 29 375 6397 3 98 146 6483 76 780 11 1975 10 54 187 295 105 78 5 134 78 2425 17 1382 15 9 21 3 23 76 26 962 9376 6 332 2038 69 27 6 407 2 376 11 1071 5 26 1 1040 7 25 733 15 783 7719 6 491 69 51 6 55 2 178 106 9376 7796 40 2 205 171 309 9 3 15 84 1384 4 9080 37 11 51 22 529 11 22 46 6270 3 8 100 179 8 88 70 37 602 7 2 2358 1484 14 8 114 7 9 18 69 3 8 83 55 365 1 93 313 6 6173 585 3101 14 3226 16 1 282 4357 42 20 301 2 1040 5352 360 1414 382 69 2 84 665 4 2729 616 15 31\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 6 31 313 249 880 115 13 4375 10 6 961 78 36 1 8884 4 1 3227 3227 5673 13 252 131 6 39 53 2843 3252 1 733 189 3 6 169 6813 33 396 186 29 239 82 375 268 31 2541 66 1583 2 84 934 4 623 5 1 880 10 1263 375 606 5008 7 202 154 2541 688 35 153 335 2 53 606 258 15 1 115 13 150 59 555 33 89 2843 756 36 9 1163 8 496 354 4460\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 1215 603 435 6010 7 1 210 280 4 2 46 8261 6 7 3724 6775 146 41 2877 60 6367 122 224 3 27 649 44 4 1 584 4 2 1598 1198 603 63 26 455 533 1 498 47 5 26 1 6615 164 411 35 40 1 644 113 35 44 32 91 559 3 621 7 112 15 1159 1204 126 39 227 85 7 9 102 719 5 7172 1326 136 2 7152 6030 276 19 3 1797 145 46 5 9132 5719 38 95 158 17 9 6 1 4707 4727 9 6 1 210 21 117 1001 45 23 83 23 617 107 110 404 10 66 6 1 113 3469 8 63 96 2562 1 18 4716 708 11 33 202 57 5 96 4 2 1020 2478 68\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 417 3 8 159 9 21 38 2 1679 989 3 8 230 10 332 2429 5 348 34 1 234 883 29 225 137 35 76 284 11 9 18 6 20 59 19 1 401 681 210 104 8 24 117 107 17 152 40 1 4556 4 101 1 604 461 8 24 107 169 2 163 4 124 17 630 4152 9 28 7 101 2317 23 88 134 8 3126 133 10 1104 50 59 1335 6 11 72 61 1000 16 2 156 719 3 1121 446 5 139 2882 422 197 257 1294 8 87 20 354 9 5 4315 29 74 8 179 72 61 133 43 56 91 1665 18 17 2242 47 94 394 269 11 6 20 1 3060 10 6 20 2 1073 10 6 20 1794 10 6 20 1357 10 6 20 2895 10 6 39\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 45 1 21 61 20 4 1548 7 2105 9 6 31 313 111 5 70 31 4 1 821 14 2 5 765 110 7 1 1702 4 7828 8 159 1 21 7 11 735 7 9592 2860 8 284 1 347 16 1 74 290 43 4 1 1935 7 765 1 821 12 50 2079 4 1 5394 135 3 16 138 41 180 195 284 3 4587 1 821 16 125 277 6 128\n1\t0 0 0 8 56 24 5 4091 15 35 27 24 219 1 389 4215 54 24 107 43 332 1528 4122 1769 5728 4 1 113 117 383 7 3 214 2 21 15 2 832 357 209 371 77 2 56 4608 13 252 6 20 2 184 445 135 243 10 6 2 21 11 40 2 627 2712 13 150 173 134 75 78 124 3551 79 69 5028 47 1 166 6898 691 316 3 702 153 291 5 26 38 11 29 513 10 56 181 5 26 242 5 1857 146 52 148 3 407 52 68 95 1058 4122 803 13 6648 37 1 121 213 7 1 541 2 207 73 1 171 22 1524 148 1098 8 152 179 11 1 1659 871 4 1 487 3 25 7547 61 56 1321 69 3 29 268 13 56 4398 2 330 6745 220 51 22 97 11 390 330 85 200 69 11 56 87 5357 77 1 8649 13 3616 1 2053 4 265 3 2607 1528 6932 1069 2 2712 1782 5 1 121 3 3580 40 590 77 169 2 3 1201 135 52 4 127\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 1 3106 12 476 1956 515 284 1638 800 3 7 1 166 72 70 9676 1795 7 15 772 3535 51 61 529 11 61 1577 17 239 28 12 9588 47 30 586 1224 41 7121 13 92 465 15 1021 36 9 6 11 10 811 55 638 216 811 36 11 29 984 3 39 36 25 240 289 3 104 10 1225 237 237 105 2043 3 1547 9 6 59 5907 13 92 201 12 9838 3 11 6 38 1 8117 5 476 8 1331 10 2816 19 1687 4 3 1 1401 4 8289 72 34 5021 17 39 153 90 1 120 1904 227 16 199 5 474 38 62 33 5091 1 570 178 844 1 212 177\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 365 1 716 169 322 33 39 662 452 1 131 6 2444 8 365 194 3 207 174 586 177 38 110 1 59 797 129 51 117 12 19 1 131 12 11 28 7 11 28 2541 17 98 8 64 1 82 431 642 11 431 3 1 131 6 2444 42 20 722 20 6017 8 83 175 81 5 134 1831 81 70 6549 73 45 479 37 1831 144 87 33 2095 81 33 83 55 118 3 134 11 479 20 1831 41 3427 227 5 365 1947 42 36 667 218 2743 6 17 100 288 17 9 6 332 1 210 131 8 24 117 107 7 50 727 1 716 22 2007 8 1266 23 63 365 949 479 39 2680 44 6 46 4153 44 8835 716 3 82 716 19 22 56 1230 3 531 7211 4 56 91 1014 145 20 273 48 127 81 64 7 9 983 17 5147 508 49 33 83 55 118 235 38 95 4 199 213 610 2 1831\n1\t33 216 237 52 3910 7 315 3 482 68 33 117 88 7 661 326 243 68 712 823 3 293 1456 1 21 2182 4181 1 161 2753 744 7638 19 2 53 441 3489 2132 514 274 2675 240 443 1093 3 627 121 2263 123 2 329 605 127 824 3 2000 1 644 1216 14 1 6402 1085 4 1 429 4723 3352 554 5 1 13 92 21 6 20 197 1 1428 4089 29 1 477 4 1 21 1 910 269 8 1868 9 6 229 30 124 991 5 1 21 5 86 215 193 596 76 1458 1116 1 680 5 64 1 21 5755 69 7 1422 4 1 9693 69 10 190 24 71 52 4 68 2 4136 1 706 672 22 1674 7360 488 7 1 5755 1025 1 1587 32 706 5 710 4220 66 6 273 5 26 761 5 43 13 2298 124 1071 4675 16 1 538 4 1 674 43 991 12 256 77 86 3 8895 13 150 381 1 21 7925 3 496 354 10 5 4 4198 1101 581 41 261 35 4283 2 53 1272 2876 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 2 46 1087 793 4 2 613 8114 7 2 346 1091 569 14 107 140 1 671 4 2 287 60 876 44 111 4 1873 15 1 8310 66 907 52 68 641 1 627 278 4 1 250 919 5211 30 53 4996 151 9 739 46 3473\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 12 2 32 4235 5 6302 42 509 5 1 272 4 3 1 121 6 1974 3 6080 9 12 206 742 1177 9935 17 35 19 990 2 263 14 775 1619 14 9 8645 276 36 174 319 224 1 1655 1480 412 22 8138 4064 8 670 1310 3072 277 268 3 50 753 76 831 24 5 26 52 68 9 461 3402 786 8802 48 117 819 71 403 2546 5 1177 9 4 2 158 139 155 5 1027\n0\t2471 6767 15 1845 2030 27 741 65 7 2 1641 549 30 1 4412 3318 8470 4394 7630 626 9911 7 2 60 3 44 2810 3838 182 65 7 3814 29 2 3498 2276 9233 318 479 7399 30 2 4805 2910 1 3311 473 77 4112 2739 2201 3 3470 3548 2 46 1896 8539 848 6045 60 173 7130 5266 288 16 1 2632 3 82 734 1988 13 2409 1237 7748 6 885 3 151 48 51 6 5 90 4 9 108 23 99 44 3 64 275 46 211 285 1 3416 1025 46 1321 285 1 203 168 3 46 1494 7 943 3 642 31 3059 3348 560 75 209 9 651 213 2 568 3384 42 105 91 1 344 4 9 1280 525 153 414 65 5 44 13 35 1304 1 804 818 6 227 5 9751 25 6447 8508 761 607 120 3 439 494 22 58 8968 16 2 148 356 4 2466 174 6066 7 1 1 21 276 4543 679 4 3500 3 748 22 3713 30 1667 3 1 3063 5271 16 11 7748 6 7 25 158 73 60 818 863 23\n0\t0 0 0 1682 75 7 25 406 104 2781 539 981 36 13 24 71 2458 47 15 5219 105 5915 13 872 32 1 276 4 111 105 5915 13 23 241 9 12 370 19 2 1070 88 4780 17 10 1306 3 229 20 2 646 115 13 174 7 1 35 65 15 5696 14 2 8345 7453 15 6475 19 25 4894 3632 1745 48 112 796 51 6 3 123 25 1418 14 2915 493 115 13 743 163 4 81 204 22 417 4 41 508 191 24 965 1 916 3 55 148 70 7 19 1 3603 3 176 5 24 52 860 68 137 15 115 13 858 237 14 1308 3137 1752 196 126 14 3 7 331 4754 196 679 4 14 2 886 35 451 5 70 5 118 148 530 148 2593 13 777 2 1152 11 2781 3554 295 14 78 85 3 991 7 2 21 36 106 10 143 729 704 27 2705 5 634 41 1265 33 143 1460 5 787 2 129 16 849 144 1460 5 13 7846 2682 650 16 3 16 1 29 1 714 195 479\n1\t6 370 655 1 1110 4 1290 5414 5 1 9492 2644 913 94 2 277 349 1 21 8814 649 2 901 4 720 7 1 5694 4 2141 2994 2247 3 1 857 5552 2 1388 4 368 7 31 1329 11 12 332 6735 7 1 74 158 286 9 15 1 2 6474 356 4 2141 1 119 6 237 52 8921 68 1 74 158 3 78 52 15 933 1637 4 1 817 77 1 158 286 1 164 32 9492 2644 2795 8108 154 3785 8805 4 1 74 4692 304 2653 2 1528 1229 4 1 2141 298 4087 1 330 80 1502 1131 4 5458 117 7287 3 2 885 3 1768 866 1077 30 1660 66 1 74 7 154 699 40 248 2 1016 329 15 9 158 3 10 6 496 1822 4 258 15 3055 5 1 538 4 1 2141 21 5607 1 466 1249 32 816 5 3 2 1579 1720 142 62 546 15 14 78 2380 3 14 1 74 135 14 237 14 3066 63 3137 1 164 32 9492 2644 2795 6 2 2 1768 866 3 7110 839 286 702\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 2 1529 179 47 108 41 4990 3522 12 109 179 689 8 219 11 18 518 28 1925 2337 38 48 12 5 5223 8 247 1558 30 1 182 4 1 141 8 12 8 339 70 10 142 50 1960 1 212 312 4 10 39 4104 79 1695 1 2526 12 52 4 2 1197 68 88 117 1405 1 119 427 12 93 146 11 721 79 240 140 3 2086 1 1249 4455 10 12 31 34 200 360 108 1 232 4 18 23 63 99 316 3 316 3 198 149 146 7956 180 107 10 723 41 681 268 3 145 198 1565 146 7956 42 2 18 5 359 23 942\n0\t2024 333 69 4077 52 3303 69 4 1948 7 1 74 5818 2 56 1065 4317 6 262 38 277 268 6768 308 6 105 17 7 1 330 5818 1 3 1 6 262 29 225 1756 984 531 29 401 704 23 338 1 788 41 20 1397 26 1517 1415 4 10 30 1 714 39 2564 43 81 2635 5 24 107 9 21 723 41 681 1287 9 907 2109 9094 5 3610 463 41 6491 13 1601 4 9 3396 2887 162 5 1 88 815 26 45 1 4 1 21 57 95 8823 41 45 1 67 12 7 95 111 13 724 10 13 92 59 1329 8 214 9728 12 200 3 128 372 1 7 2 3 55 9 3807 142 1002 13 1964 273 9 644 298 3214 76 2883 97 345 5 139 3 64 592 13 150 63 59 2979 23 69 45 819 100 107 2 5671 18 1704 83 357 15 9 2396 13 614 23 230 4565 5 99 194 925 29 34 6240 283 10 7 2 1913 1 3 9984 22 3785 16 5336 3127 13 2136 24 71 5095\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36 9 1035 5 90 2 272 38 1 2794 4 3004 17 51 56 213 78 85 16 11 7 189 1 2629 3 8286 14 31 7391 270 47 350 4 2 5587 4 8948 80 4 1 1736 9455 943 8811 3 235 422 27 63 272 2 4701 3706 1 59 287 7 1 750 4 34 127 1161 6376 6 521 1237 4476 1 5 2500 2244 3444 3 1 263 5 77 2 9396 4 1767 2 156 6786 668 6 1461 35 4715 142 34 1 3847 1626 32 1736 5 1596 39 7 524 72 83 169 365 35 1181 288 3706 7728 40 2 1568 7 25 9 2213 3257 6 5127 550\n0\t93 798 60 636 5 186 2 2507 140 1 21 3 29 28 272 6068 5 597 2522 13 858 45 9 21 61 20 5312 1509 10 784 5 26 757 5 145 20 667 10 276 36 1659 985 61 303 19 1 3005 974 3135 14 1 1176 5 43 8572 4 2 203 4692 145 667 14 1 21 1047 32 178 5 1146 23 396 70 2 9 6 1 232 4 177 1397 504 49 2 21 4705 1473 3 2 6 929 5 741 2193 2146 25 3 449 16 1 1293 1 5264 130 26 13 3371 2 119 23 63 4007 77 102 28 4 3342 31 3300 3 1 1560 4 2 46 293 431 4 1181 303 15 58 302 5 1594 203 9 3175 29 225 19 1 184 1250 7 698 9 6 1 426 4 21 11 130 26 6 10 56 11 254 5 90 2 782 1973 12 9 1176 55 1997 33 61 253 2 203 2 528 351 4 50 85 3 8 222 1 7721 5 70 23 9 5835 83 369 50 5320 26 7 83 139 77 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1923 97 4 1 708 11 24 515 209 32 417 2633 6035 11 9 3 97 82 402 445 3893 19 6675 28 6 433 49 10 255 5 712 127 746 14 31 2186 37 963 23 24 5 139 47 3 760 1 739 39 5 64 16 4175 28 4 1 74 188 23 191 365 22 1 1236 11 1 864 4 1 108 7 9 524 1 3277 1872 3392 35 1304 244 31 35 640 441 3 1357 15 48 27 2615 6 2 1052 3122 77 1 423 6888 25 84 3 8386 2113 8398 5 6895 8077 49 72 390 5706 4172 8 2398 54 26 56 105 97 54 26 21 1350 36 35 61 3172 19 402 445 203 2092 4 1 226 156 2197 5 4062 62 221 1684 1670 33 735 77 1 4 1 97 82 971 11 310 183 450 33 22 1933 15 161 3 1455 203 2515 11 33 4863 32 2 2596 41 52 703 1 1122 6 31 1698 351 4 21\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 475 165 5 24 2 176 29 9 5690 2854 386 94 1000 16 37 906 10 247 279 1027 55 16 2 1288 254 2854 1787 8 214 9 5 26 56 13 5547 51 22 1896 1896 223 1370 106 162 5547 1896 8607 106 162 6 367 3 1 212 177 15 1 545 20 41 48 1 898 10 12 34 2354 48 653 183 3 48 653 115 13 677 12 2 1564 69 1 2088 282 3 1 282 61 46 4507 3 5959 3 2 433 799 15 5 43 2846 2592 11 653 17 481 26 3475 38 115 13 5384 42 34 46 3509 3 46 2764 162 5547 42 46 5684 3 8 96 8 76 10 32 50 1182 3 995 8 117 219 110 1140\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 119 12 46 9246 292 1 312 4 6241 164 2306 6 2 53 2396 13 92 21 39 384 5 32 28 5210 178 5 174 15 237 105 156 2333 802 7 13 92 120 61 1974 3 28 13 92 393 89 58 8588 13 10 57 816 3 7 194 23 54 24 909 2 547 119 3 547 293 2170 43 4 1 363 61 169 53 17 51 61 39 105 156 4 2350 13 985 139 16 2579 9301 4 3 4191 3 4 448 1 3054 2184 8 93 179 11 1 178 15 1 7 1 4381 457 1 88 26 2111 14 31 4628 186 19 1 13 92 21 57 97 4 1 824 11 139 77 253 2 74 1090 203 21 17 33 61 775 3370 41 314 105 13 614 8 57 71 133 9 818 3 3412 8 54 24 56 381 10 16 38 394 269 1543 755 874 4 1 2527 98 433 796 1283 3 965 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 7448 1189 234 15 3445 120 3 761 1575 1948 9 1 1575 2277 5 2603 3493 3 90 299 4 75 33 916 1454 8 338 3 1 82 807 33 57 43 4 1 52 1474 2933\n0\t0 0 0 0 0 0 38 4765 63 26 2072 37 63 5122 5019 502 17 5122 3 13 2609 1 74 910 269 4 8 57 209 5 28 9 18 6 4548 4670 4015 3 7 86 2924 16 1 1754 162 9 91 6 89 30 9 6 1 1117 5610 4 2 2629 13 2409 4 399 5122 123 20 90 53 238 104 45 23 96 145 17 1 21 1350 83 474 69 444 2 1360 1277 737 286 702 115 13 2 1519 1277 2640 2092 9 322 2176 604 28 1519 3 628 13 2687 36 4709 1139 4765 220 11 5535 249 131 38 8101 105 573 2176 174 28 3 244 2 6388 13 2136 28 4 137 81 11 5214 606 8876 4865 1765 509 4975 5614 3 283 964 81 1544 7 2 18 11 276 36 2 6723 2 184 6723 13 872 23 284 9 753 34 1 111 5 1 714 23 2005 2 4384 13 4255 3108 20 2 461 3 45 33 56 90 2 967 5 368 1071 5 26 3219 2 212 4 5997 13 5140 420 946 5 64\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 67 4 3262 6 28 4 50 4148 32 1539 15 3105 1212 66 12 93 89 77 2 834 21 7 9 21 6 2 4502 1719 32 13 92 21 40 2 84 207 28 8 36 7 2 18 6 2 46 53 3975 3 8 112 1 759 50 430 788 6 1 684 5560 9 6 8 112 1 9880 32 1 21 1221 33 22 5906 50 430 178 6 1 178 94 1 1 103 9079 713 5 4165 3262 65 7 1 8 93 112 10 49 1764 417 395 9880 3 5349 65 37 60 88 139 5 1 217 10 5 1\n0\t1 18 3084 71 3288 45 275 57 56 1390 838 5 10 3 57 2 138 13 39 433 25 4770 5 1718 35 12 643 30 31 2488 19 62 2279 1393 17 49 25 975 270 122 5 2 1531 621 16 1159 17 2257 6 2762 44 32 660 1 2257 6 3992 3 153 175 1531 5 899 19 37 1108 3 60 76 90 273 11 5744 153 70 122 30 44 326 3 366 15 44 241 503 15 5545 207 13 44 434 823 6 31 6398 141 20 273 45 42 279 1 2128 17 420 187 10 2 2551 16 23 45 23 175 5 64 10 41 22 3831 7922 39 153 24 227 376 869 5 90 1 21 1093 58 5 137 35 112 1159 60 39 3852 19 1 346 412 125 1 4055 1250 20 5 798 1 129 4 60 181 128 20 105 1904 15 297 60 41 44 2540 39 805 20 56 39 15 43 3 2305 5837 9 21 88 24 71 1824 17 378 72 70 1 855 961 684 267 11 76 597 15 15 31 2213 13\n1\t3 7 3 47 4 1 67 14 3 49 33 8473 188 36 1 2841 3132 5 333 1 6459 2205 5 70 25 1007 5 28 326 5014 949 11 4 3 8016 3 25 112 157 15 7 286 174 280 39 5 176 53 3 87 162 1939 4325 121 2 103 105 3879 1204 103 974 16 250 120 5 734 7213 28 4 1 1659 1626 204 6 1 9013 4 1 5415 4 243 68 19 2852 860 3 3 10 88 24 71 758 47 78 4684 45 1 2274 730 2 163 52 142 1 68 59 19 194 3 285 8016 1251 32 1 3 3430 13 3371 1 1519 2039 10 6 806 5 64 106 1 319 337 5 69 1 1456 7 4909 2 3144 1189 980 29 2 6585 272 7 1 108 42 169 327 5 176 29 3 229 19 86 538 5239 17 316 8 36 5 11 55 197 137 8817 1 6459 4873 554 54 128 90 9 2 547 18 15 6459 3 246 3460 372 16 116 968 6 2 184 5 95 1750 4 2 1009 1400 5168\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 219 1 18 136 32 580 136 8 563 10 12 59 2 6733 158 2 1032 6488 8 336 110 10 190 24 3870 1 3984 4 298 3780 4261 10 1525 50 2407 3 2666 84 1547 257 1342 40 37 78 346 1035 6 105 7802 7 1 166 111 11 8 63 335 2 55 2 2442 416 278 4 8 63 1116 97 3444 4 4776 16 1 632 8 192 2 1277 3 214 15 1 5343 1912 36 25 9195 79 11 8 76 26 2161 7 1 799 4 5059 26 446 5 5 552 157 883 50 136 10 12 2 684 393 106 114 186 47 1 91 259 8 965 2 103 749 1151 106 53 63 50 234 6 56 105\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1359 5 2 2764 1106 30 3767 3 6707 593 32 626 5242 102 432 2 4755 16 8106 35 2071 44 957 4 723 918 16 5242 102 685 1 166 278 204 11 60 419 7 1 7365 3 59 49 8 9 85 60 153 24 2 583 5 2739 2246 5242 102 6 1 957 3 226 865 21 16 2772 246 2941 470 3767 9817 1 772 3 701 30 6 1 120 22 1 927 6 2235 3 236 2061 58 8049 9278 1 74 350 6 2 889 4709 1151 189 2 3 2 3 1 5801 330 350 151 23 223 16 1 74 6869 1 5825 2840 14 109 14 988 3 2 2050 1779 9733 22 17 29 225 33 1851 43 3224 3 226 3 2532 236 31 489 788 262 285 1 6950\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1398 3 3872 22 602 7 1 692 5008 49 1461 77 2 5813 4 3395 3 1937 11 10 151 122 378 4 1 1617 5 139 2881 19 2 282 3872 2708 974 41 3393 27 1123 25 5 3 42 167 211 3 169 5583 480 101 2 595 5256 3 1 238 100 844 1 9254 4 1 1828 66 6 531 1 4 2255 855 128 279 2 13 2298 145 20 273 75 31 3395 3872 63 201 2 3725 19 1 10 7698 6792 3 1 46 1109 4 101 3395 2330\n0\t1 2062 15 9040 27 405 5 139 16 2660 14 51 12 2 184 4466 29 1 290 27 153 1844 1 27 1133 16 1321 122 5 90 1 1285 16 1 2807 4 25 115 13 4804 236 2 178 7 1 21 49 9040 1072 3 22 2151 30 33 1291 73 40 71 4587 5 2382 19 5362 3 27 3738 295 29 1 4694 4476 257 2641 5 9210 145 20 273 11 54 24 262 7 2 4300 803 13 1 67 152 451 23 5 241 11 6997 1133 2311 6461 19 2 2660 4466 94 39 2 156 4119 32 19 75 5 149 115 13 252 12 865 21 2482 10 54 24 71 138 57 27 881 47 7 2 53 1214 3 7 233 27 57 248 2 342 4 138 879 15 6997 1133 183 2938 13 150 76 134 490 193 58 89 95 1635 7 1 158 9 6 28 4 1 156 2134 124 32 1 576 11 114 20 24 95 115 13 724 45 8 61 23 1013 23 22 2 184 325 4 6997 1133 41 186 1 398 142 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 6 37 862 573 11 8 202 343 1415 133 110 65 318 9 1746 1 82 57 29 225 28 53 177 38 110 185 755 12 3604 3 185 358 12 142 1620 3 2072 185 535 12 240 15 84 2170 185 843 57 84 1224 53 293 1456 3 2 147 548 2338 185 715 6 52 509 68 235 180 117 107 1448 2 78 32 185 843 6 155 15 44 1845 29 3558 9 377 5463 1170 4186 498 77 2 6881 1 5772 120 291 3 55 11 1316 3256 40 2 9443 19 44 2338 181 5 26 301 47 4 9 461 27 276 3 153 291 5 26 14 25 4834 291 47 4 334 3 4638 106 14 7 185 843 33 88 26 167 695 3024 67 100 196 142 1 2435 3 1638 593 6 37 573 11 10 151 50 5305 176 4817 1 212 119 4 9 18 6 903 3 8366 42 93 1693 3 167 2317 925 185 715 29 34\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 80 347 5178 22 91 17 9 21 303 47 1659 546 4 1 857 3 1241 1 3530 3 43 807 33 1 857 3 2746 168 3 1241 1 9990 33 1253 903 188 77 10 11 100 653 7 1 347 3 54 100 8928 13 614 8 1808 284 1 347 10 54 24 71 31 862 1065 158 10 143 90 23 474 38 1 647 36 126 41 4001 450 10 498 1 120 77 13 13 13 4 102 719 4 50 500\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 46 514 3 7006 471 304 7754 2313 265 6460 180 71 1882 7 2888 226 349 3 1 18 419 79 9 687 873 6947 1 3510 4 1 443 6 5670 14 109 14 1 1488 10 271 1052 77 116 1687 197 1496 873 81 22 46 3401 3 232 3 42 34 46 109 758 1732 1 412 675 1 206 6 372 1016 15 822 31 3500 3 289 1 410 11 10 6 93 888 5 369 126 335 2 18 15 1546 3 514 8506 308 819 107 9 18 23 76 175 5 64 52 32 1 166 2254 42 2 148 230 53 18 3 8 63 59 354 10 5\n0\t0 0 0 0 0 7 1 957 3465 4 1 1125 2014 3 1811 3889 1 5669 996 30 2 1709 349 2195 2 315 1215 3 1 1343 4 5212 711 3211 1436 7 1 215 604 535 6 2 243 1832 5409 220 1 840 3 315 267 6 2 163 364 1685 3 1303 14 10 12 7 6949 8 165 1 507 1 5509 12 1674 3808 19 14 2 2150 3 25 860 14 7757 1 623 7 1 817 21 12 2 163 52 2570 3 66 2589 2 67 36 9 828 896 1 3832 662 14 8078 737 1069 1 1829 1761 4 1 5669 164 213 14 51 128 6 877 4 840 17 20 350 14 3476 9 290 30 1 744 16 1 5733 757 324 14 10 289 80 2038 4571 1 389 251 6 1 3657 4776 4 1862 35 1059 3 470 843 767 37 8059 101 7 2426 1 74 28 6 2 3210 1 330 6 2 4 840 3 882 3 1 344 63 728 26 6991 492 7022 1843 14 55 193 578 1012 25 129 2 163 138 7 6949\n0\t559 35 44 7 1 3186 27 98 1036 5 564 44 17 6 3 2180 3438 1 4663 438 883 146 36 9127 3 60 270 47 44 6134 19 1 9820 7 1 13 1 523 42 223 5646 15 911 3 51 6 111 105 78 4 592 13 92 121 48 2 48 115 13 92 1673 408 388 6 91 1509 17 910 269 4 1131 6 39 2 1589 13 872 1 445 6 2 70 11 12 1 13 872 286 51 12 2 1817 5 1 1606 155 7 1 2032 127 232 4 104 310 47 7 15 697 3 860 3638 5 949 20 7 9 326 3 717 1815 45 23 175 5 99 9 232 4 5517 3803 1652 5900 43 4 199 98 9 6 34 116 1927 70 13 2361 1516 5121 802 7 2 447 1146 2629 15 4948 299 15 1890 30 1382 3 2 6083 383 4 1 1184 2646 15 1 166 1382 22 43 4 1 138 7111 19 1 13 777 20 53 3 10 495 26 17 20 220 1 4 988 24 81 89 104 36 2938 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6824 1 125 16 1 98 9 6 1 21 5 62 4636 11 10 76 2 1296 5 652 2 3224 3148 32 1829 13 92 21 6 1521 274 19 2870 2 4711 66 6 52 606 1 119 40 52 1931 68 1 855 3 2 201 32 1 8774 4 1 5883 5659 5929 31 240 391 4 1253 8547 6 372 1 14 8847 2612 1 23 495 26 15 2 263 11 6167 68 2 3847 274 1657 3 5453 4 14 813 9 21 1035 5 1 7435 4 3205 238 18 3 3 6737 1082 5 95 4 2350 13 743 191 99 158 45 59 5 539 29 75 91 10\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3325 266 2 3 3519 4342 3 35 1843 5 25 3 15 25 5896 711 195 1 569 15 2 379 3 4111 1403 196 602 15 2503 8041 4970 3 40 43 15 1 8310 17 48 27 56 451 5 87 6 787 3 4839 224 15 2 53 3248 589 19 1902 9299 15 2 280 16 11 6 30 498 2235 3 8397 3680 9093 3582 19 819 6 618 1 644 3 6 6984 206 10 7 7469 17 244 7 1317 5595 3 80 4 1 184 168 22 1289 41 1 572 276 862 2652 7 15 2 327 1128 16 2252 3 17 1 67 3 127 120 22 1544 7 1 6621 32 4577\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2907 5174 42 5840 42 17 207 48 151 10 37 78 1434 42 165 125 1 401 5172 529 11 22 39 908 3534 9 18 6 84 5 90 299 2562 760 10 16 2 53 13 92 21 3835 200 277 415 285 2 85 111 183 33 139 5 2 346 569 5 1203 2 6438 17 33 173 70 2 974 5 875 1 2016 3 207 49 33 889 244 1119 7 2 3413 232 4 699 3 27 1664 5 369 126 875 29 25 2613 17 27 153 348 126 1 1387 38 35 486 3617 13 278 6 37 491 14 218 11 27 56 2995 9 135 80 4 1 18 6 232 4 2764 292 1565 47 1 1387 4 231 6 232 4 1470 115 13 3793 283 9 201 7 127 168 151 10 279 2 5786 2315 3 9379 90 327 1128 115 13 150 1064 1 18 31 161 254 5 149 3 279 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2907 20 39 11 9 6 2 91 4866 42 20 59 11 723 4 1 2833 18 1350 22 7 9 4692 3 42 20 59 11 1 263 6 1634 42 39 18 290 9 81 22 2721 319 7 464 42 377 5 90 2 4093 38 2833 1342 17 1181 6137 65 15 9 232 4 703 6 91 1587 377 5 26 9424 8 83 70 110 2833 616 6 7 184 1245 45 9 232 4 104 22 160 5 1811 372 341 101 428 3 13 83 96 9 232 4 104 22 109 2071 7 72 812 126 3 33 83 4951\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 31 4904 135 83 70 79 1989 2013 9035 3 3286 2647 22 53 1041 17 1923 32 2 156 240 274 1 21 6 650 556 65 15 4741 3 1227 9413 47 49 235 271 5790 13 9416 11 15 4812 5 90 273 1 410 128 365 835 160 19 395 178 106 3286 2647 2980 5 2 2066 75 27 191 26 36 7 376 2748 6 162 52 68 2 3 23 24 2 224 953 20 1822 4 1 7121 13 9694 199 39 449 11 1 148 3720 199 2875 6 20 7 1 1191 4 132 2 13 1149\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 5987 43 15 25 1725 2 1207 6 8103 30 2 4332 66 3029 43 601 13 1119 1190 3 43 547 2720 457 3452 363 83 552 9 1493 203 739 32 101 2 8283 901 4 1 4332 81 4860 10 486 30 366 2440 32 86 6232 67 207 3 6707 7 1 119 100 181 5 139 2882 78 3 1 18 100 1664 31 2651 16 48 5547 41 55 2 3476 2582 16 10 513 1 201 6 1002 1669 7 62 13 8 187 1 21 43 985 16 86 2762 833 788 3 327 1673 1 3452 216 4 1 518 4123 6 167 53 1221 17 10 153 70 78 4 2 4755 675 2 1155 1617 16 5183 115 13 28 4 1 3556 2092 47 3617 13 6463 4582 47 4 3615\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 436 1 1340 29 18 2233 258 16 2 176 29 267 386 36 13 4371 130 70 2 16 16 605 2 185 106 121 775 7 1044 4 2 443 6 185 4 1 1174 877 4 3916 16 21\n1\t17 4166 451 58 185 4 378 6 7 112 15 7926 35 6 1136 5 58 28 6 46 749 217 58 28 6 749 16 46 2043 1 1892 621 1251 184 85 94 2 3002 3 6942 167 78 8150 411 77 73 27 1304 27 6 3 173 187 7926 2 1248 5 2162 11 244 2 1368 9524 35 12 2 46 1244 996 3 57 2 223 217 1447 895 205 7 124 3 2114 7 8632 1168 25 368 895 29 2905 7 1 3818 4529 15 2 251 4 1883 8521 8753 41 292 33 61 1281 2744 32 41 4981 2732 1191 33 726 6579 4 1 1818 9524 57 2 360 356 4 1666 217 2217 66 27 758 5 309 7 127 124 6050 25 2081 412 15 120 35 262 47 62 931 486 738 1021 1666 217 4702 90 241 3 679 4 7 1 120 22 198 47 4 2575 29 5680 41 2246 37 7 1 769 94 78 2504 31 3273 2 217 52 9524 741 1 18 15 2 570 217 6554 178 4 2 3 6973 7 2 1157 29 2 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 184 5810 184 91 265 3 2 1598 5791 22 1 911 5 113 1431 9 464 108 8 112 978 203 104 3 180 107 9 57 165 5 26 19 4 1 210 117 1001 1 119 6 3618 1779 3 3976 1 121 6 31 1 263 6 301 113 6 1 182 15 1 1277 3 75 27 1066 47 35 1 506 39 37 1589 1722 1 2389 22 3 211 7 3757 1 1773 6 4143 679 4 413 2951 137 757 11 131 142 62 11 413 152 3807 3 1 265 6 39 1652 11 266 125 3 125 202 154 178 51 6 4981 1224 3 605 295 1 128 153 542 16 34 1923 9 6 2 323 91 21 603 59 1817 6 5 176 155 19 1 2662 11 12 1 1575 3 24 2 53 161 539 29 75 91 297 12 155 3483\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 549 295 32 9 108 55 30 3641 3220 9 18 6 10 6 93 7 42 6317 1 250 833 6 11 81 35 1342 3 24 58 1451 16 235 22 797 3 279 81 35 2055 508 15 1451 22 6 2 18 11 2656 16 1 2 163 138 68 9 141 64 10 13 4255 1408 635 54 87 48 2788 1296 87 20 216 14 33 87 7 9 21 966 283 9 18 151 23 853 144 1063 333 1 6 2 301 657 40 57 2 464 500 245 60 6 132 2 464 454 1 410 481 3658 15 4341 13 51 6 28 177 2 18 63 26 1901 3410 7 9 524 51 6 6809 10 6 132 2 903 18 10 8787 1 454 35 440 5 3658 15 1 250 807 1 121 6 7433 30 3641 3220 3 1 593 2334 162 147 41 1470\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 776 6391 6 28 4 50 430 81 7 131 4552 8 24 284 205 4 25 1402 3 96 11 27 6 1051 745 63 1917 2 4134 427 15 1 113 4 450 1 2053 4 1 102 6 13 252 6 2 67 38 2 231 56 355 5 118 239 1715 140 2 1611 1285 2 435 3 585 4329 16 1 74 85 7 62 486 7 1 4 2 231 33 87 34 1 188 11 7161 3 4766 22 1331 5 87 7 22 39 403 126 78 406 7 500 1 1650 22 46 722 17 24 1 507 11 33 88 152 780 5 81 7 148 157 1491 125 1 401 41 9 6 1 74 85 11 8 99 776 6391 3 1435 3114 154 1900 11 12 29 984 25 671 176 37 13 18 3 84 67 3 994 10 40 267 3 1900 17 31 7910 123 2 84 329 93 3662\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 133 9 14 2 3049 292 646 229 149 10 9418 944 10 12 3848 691 14 8 12 59 1756 41 1943 8 93 2209 770 19 2 9759 136 133 194 37 8 247 56 2709 78 3726 245 1 178 15 1 3343 40 71 77 50 438 117 4836 180 1783 2143 81 45 2109 107 9 739 17 5 58 2042 172 1742 28 454 1505 458 27 57 107 194 17 27 179 10 1674 2 2 36 42 58 50 4699 58 1705 805 8 617 107 10 220 977 17 8 173 947 5 149 2 973 3 691 10 77 50 235 11 63 875 7 50 1128 16 172 1071 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 112 9 21 4330 159 10 49 10 12 74 620 3512 7 2 346 1532 616 7 10 12 56 3 10 12 2 46 4086 1190 1467 1 2944 4 1 18 645 1 3 1 4784 15 1 1840 3 206 12 198 30 656 7 25 870 10 12 2 46 4086 18 55 258 49 23 96 11 10 12 31 1532 682 13 499 153 3097 78 5554 4 11 158 310 32 1 2114 3 89 102 41 277 386 104 52 1066 16 249 14 109 183 27 726 2 426 4 13 1701 1 81 35 555 5 64 11 18 805 23 88 149 10 19 25 66 213 11 806 5 1776 16 17 86 2623\n1\t0 0 0 0 0 0 0 0 1 287 7 315 6 885 7 34 42 3903 3604 3 37 1087 11 23 63 152 64 10 2267 7 148 500 8 74 159 9 19 1 249 155 7 3 15 34 1 3647 142 3 1 7930 590 1095 10 12 229 1 80 1119 839 4 50 389 500 8 1180 5 70 998 4 2 9158 3 944 8 90 273 5 652 10 47 154 3146 3 131 10 105 6233 231 7998 35 24 58 312 48 479 7 3410 3 34 8 63 87 6 539 15 14 16 1 13 499 418 47 15 2 170 2755 654 1777 35 6 5293 30 25 7651 5 139 5 1 2967 569 4 5 4839 1 4 2 937 5212 69 3232 3256 115 13 252 21 418 142 14 2 3408 1195 3 240 1272 471 17 977 1777 1 3 32 11 178 926 72 87 20 230 72 22 1506 19 1590 3 8669 257 3 11 271 19 16 1 398 594 41 814 318 1 3765 13 743 3199 5 34 147 902 87 20 99 9\n0\t232 177 63 8 134 38 1 13 150 1 453 61 361 1453 11 495 216 14 33 6211 7 34 2328 32 6512 531 37 3 1168 65 1749 7866 47 4 4679 8110 3 2315 13 8420 69 75 1 67 361 11 213 1927 2874 4032 14 10 12 48 12 1 870 9945 10 247 722 11 3508 47 1211 10 247 240 227 5 26 12 11 2 1151 189 3 8 24 5 14 8 173 26 273 69 987 39 637 10 7 145 273 137 516 9 21 544 15 2 9830 8 1266 33 191 24 57 28 5 5290 5 1 1210 17 8 321 352 1565 592 13 2663 45 8 61 2 4937 454 35 88 5062 1 1011 4230 4 1 441 8 339 7 53 8882 354 2 21 11 2378 2 259 5 139 77 2 1730 329 3634 7 2 3 439 8986 1874 4 1773 361 22 72 377 5 26 6940 30 1 315 7839 3 6977 30 13 1118 192 8 8 459 433 269 7 1 697 133 4 1 18 361 8 481 95 52 85 5 9\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 220 24 8 1050 1573 142 1 18 8757 98 15 9 628 8 12 59 1194 269 7 49 8 906 8 114 90 10 34 1 111 2086 90 273 11 23 87 5075 13 777 20 11 4 1401 6 1985 41 2637 41 782 41 4140 41 42 11 42 20 95 4 137 2789 286 10 37 2805 451 5 26 34 4 450 1670 42 1495 7102 2674 3 775 3370 19 3481 298 416 293 1456 58 356 4 55 1048 1117 927 1092 11 42 279 13 252 18 6 3905 16 1 5541 11 55 1 9707 321 5 2725 2 427 7 1 8449\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 37 835 1 184 47 4 253 31 7326 2376 4540 49 23 24 31 353 809 201 14 2 3047 3751 32 1406 35 153 175 5 139 47 19 31 2525 1059 1 263 16 4452 2583 12 229 17 16 1034 1318 5887 9 18 3461 1419 7 11 153 467 10 40 58 1357 17 176 19 1 534 601 4 1 2129 9 40 165 5 5132 58 3491 5 7326 2376 41 82 5991 6908 3 8672 3 4452 2583 12 6980 11 111 712 1269 2921 5 90 79 3 375 508 942 7 1027 6187 180 100 455 4 1 2112 37 35 693 25\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 28 4 1 210 21 5178 4 2 668 117 1001 1 1039 324 4 2 5442 427 6 2856 9 18 4624 1 1183 7 202 154 699 55 1 1084 6 186 7365 14 394 276 6 4923 67 6 11 60 6 2 84 6130 17 2 535 7 1 276 657 60 615 2 17 1391 444 2 84 48 87 1 609 1132 5633 33 4158 31 651 35 173 941 3 6 754 16 288 1051 111 5 773 1 13 3204 236 1 145 273 492 12 1573 125 7 25 144 143 33 333 25 10 56 173 26 5236\n0\t261 149 10 1021 75 2 2892 5 26 51 3 1 1481 63 186 101 15 2 3862 618 49 6669 4632 126 15 2 1653 15 28 7721 3 33 1288 3 1 570 566 178 12 1698 49 6 195 423 3 6 4684 3 6167 68 95 82 3 63 186 2 645 32 550 15 1 570 566 49 122 5 1657 8 12 56 619 11 1 1657 143 3 122 174 177 11 3264 79 6 75 1 898 123 6669 70 53 171 5 309 6035 8 467 7 1 524 4 6669 42 301 142 1 4 75 1145 1724 9 18 705 1 265 868 195 11 191 24 2 798 24 23 117 9094 5 2 788 106 1397 243 757 2 15 2 6407 109 2905 2169 358 6 36 656 1 53 985 22 236 58 4828 3 1031 1 3173 28 51 6 59 28 1326 178 3527 7 1 3173 28 51 22 97 4017 128 2590 30 1 168 7 93 1 171 7 9 24 43 860 3527 7 1 74 28 1 1084 559 61 1623 23 83 241 79 176 10\n1\t0 0 0 0 0 0 0 0 0 0 8 54 39 36 5 1296 11 9 190 26 14 8 192 2 1840 19 1 135 245 8 76 4778 43 356 4 13 92 376 4 1 158 918 380 2 4410 278 14 2356 2 35 2731 52 85 68 7702 27 876 2 732 1388 5 25 129 11 56 2378 1 410 5 4329 15 849 30 6338 25 438 396 3 15 2 356 4 3061 1211 25 2707 262 30 8528 6 1 1829 1594 11 27 54 655 2085 25 417 93 6883 2 874 7 727 396 253 4331 16 122 243 68 3851 122 333 25 1126 66 396 268 27 6 51 2799 115 13 92 523 6 5670 3 1 6437 3347 36 168 32 2 1763 1752 141 15 350 14 78 1147 7100 13 92 443 216 6 2 103 5862 29 43 6397 3 1 478 88 93 333 2 618 1 453 47 5868 1 1681 8506 10 6 93 9039 30 2 304 1077 15 558 2447 3 31 4340 13 1601 7 399 9 12 2 9573 2 1219 738 97\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 28 4 137 104 11 33 114 105 78 1987 45 23 99 98 23 228 14 109 20 99 1 108 202 34 1 211 168 22 4014 7 1 571 28 66 39 629 5 26 2051 101 1 211 461 10 6 687 1290 4173 623 3 10 6 56 695 39 83 139 64 9 18 852 5 26 5658 34 7 399 45 23 36 1290 4173 41 1545 9 6 2 1286 39 99 1 6260 3 468 26 39 14\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8518 8 1150 3438 49 8 1991 5121 5 1 259 29 1 388 5289 27 367 11 2397 232 4 36 128 7861 37 8 1150 110 12 8 322 657 14 128 1184 2405 19 2 382 891 1301 243 68 2 5247 9423 17 207 4010 128 1184 649 1 67 4 1 678 2 891 1301 11 3437 65 7 1 2847 29 1 6123 4 62 6152 29 2 1114 891 3517 2290 172 1372 1 1301 1144 22 34 2280 5 90 2 3 22 2649 1 1617 5 309 2 3956 29 1 2290 349 4 9 3517 33 186 65 1 1857 3 1088 5 19 2 9282 3572 7 1 7762 43 169 211 3 34 1 120 139 140 1546 133 9 141 23 230 52 36 2 545 4 2 4715 2619 718 68 2 3 207 20 91 29\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 18 1525 50 4584 1281 73 2608 6 50 430 3868 8 4091 15 43 4 1 82 19 1 9057 11 1 119 12 20 8 57 58 1245 1068 10 8013 43 81 57 105 78 1 366 1 18 12 46 747 3 1462 14 530 48 52 87 23 6 2 514 147 860 3 816 1133 123 31 313 329 15 25 185 14 530 1 733 4 1 532 3 752 190 24 71 2 222 8902 17 1 2813 4 1 170 81 7 1 18 12 1265 10 12 747 17 10 273 1620 1 82 289 11 61 19 249 147 172 326 3400\n0\t20 68 29 225 3 1573 5 840 215 821 213 4 95 7313 73 10 6 14 1852 3 1445 14 1 682 13 872 9 6 2 1219 18 11 152 181 5 812 502 20 39 104 14 2 5877 17 104 14 185 4 1 1615 14 530 1 21 554 6 2326 5 161 484 34 4 66 8611 15 2 27 40 1 21 4 3782 3 1 21 15 4 161 581 20 14 31 4367 41 5 1851 2 1055 9031 17 5 9059 1 4159 4 161 3853 75 63 31 2342 361 45 23 175 5 637 11 361 90 2 216 4 632 45 27 459 5214 1 46 5652 27 6 770 1 46 991 6 400 13 153 291 5 26 7 2454 4 235 82 68 101 39 10 5214 3727 10 5214 4505 10 5214 2241 10 5214 3 3 415 3 413 3 161 81 3 170 81 3 3745 3 3169 488 322 23 442 10 3 10 229 40 2 178 781 9138 16 110 7 2 46 747 3 1140 744 190 26 1 74 5247 2 6593 4 2133 1615\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1096 11 275 40 89 2 18 38 75 254 10 6 5 3693 116 683 16 2 330 290 41 9 18 6 610 48 10 7829 5 26 69 9294 1474 3 10 380 23 9 53 507 200 116 683 49 10 5824 1 119 228 26 20 46 17 51 22 3367 4 1175 5 348 1 67 3 33 24 20 71 34 314 5142 1 201 6 1080 5254 292 1133 5953 123 20 176 36 2 435 4 31 3077 349 161 20 55 49 27 6 1727 2 814 1 22 19 34 1 260 7714 607 201 6 607 3 292 23 88 229 6660 1 212 18 23 54 20 175 5 4218 1 7306 10 6 39 1 260 426 4 1033 16 2 2714 8715\n1\t316 15 43 4 1 2349 127 104 22 46 5222 66 4495 2 1205 1559 157 217 25 3525 140 500 1756 7534 228 24 472 43 85 5 3494 42 697 17 39 94 350 31 594 4 1 141 1 18 6 34 274 5 3717 116 2935 896 9 18 40 43 1552 9568 2701 66 1572 1 902 359 206 308 316 6 1 3712 34 1 744 15 25 931 286 5487 4979 27 151 34 1 120 4 1 18 46 3715 11 1 81 54 152 149 730 7 1339 4 1 108 385 15 1 1392 76 1752 6 286 174 15 25 1016 121 8491 308 805 1 4738 4 1 206 217 1 353 557 14 2 6434 896 51 22 82 964 171 7 1 18 35 114 62 185 167 530 1212 15 207 48 60 63 26 60 276 304 217 123 44 185 483 530 3894 380 2 84 1594 5 1 18 217 2394 123 1 5102 292 2394 114 20 57 78 412 24 71 53 45 27 57 23 495 995 9 18 99 9 18 217 720 116 500 401 897\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 55 16 1 9145 9 6 2 4224 8 83 365 144 275 54 175 5 351 387 5718 2128 3 410 1568 5 90 132 45 116 160 5 90 2 1073 90 10 695 45 23 175 5 21 1652 36 9 359 10 5 4175 45 317 160 5 1042 10 14 2 1399 36 4167 8 1266 10 12 2 1399 3294 275 786 348 79 9 12 2 4644 8473\n0\t354 79 5 284 110 8 7090 10 7 154 334 3 475 214 110 9 6 2 347 11 154 164 130 8563 73 10 6 1744 3 73 4 42 8 381 154 13 150 563 38 1 18 3 88 20 947 5 64 110 49 8 475 114 8 12 46 6572 97 188 11 22 7 1 347 22 20 7 1 18 669 87 20 96 11 9 6 2 11 39 151 1 18 20 492 228 26 2 53 1392 17 2 91 7713 258 14 2 347 1 18 6 20 534 29 399 1 523 6 56 573 1 59 177 11 6 501 55 1111 6 1 1014 294 1977 6 31 491 353 3 1 59 543 8 512 88 64 14 13 1118 79 1 80 22 1 81 7 970 11 404 9 218 113 1260 197 55 765 1 41 1311 235 38 412 13 2136 63 59 365 1 5115 4 1 67 30 765 1 1158 87 20 1064 9 14 31 14 2 325 4 1 1158 8 12 46 5013 13 92 985 8 419 16 9 18 271 16 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8978 176 75 2 306 441 15 2 103 352 4 42 2521 2 3 1462 1252 2 53 1177 3 2 2065 84 121 32 2 658 4 1041 258 32 1 432 2 191 107 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 89 79 46 7614 42 1258 20 5 112 1 1831 3 1316 8969 282 35 1714 1 683 4 2 6212 2755 59 942 7 1246 7 44 3163 9 6 2 46 18 3 8 6783 241 11 72 321 52 124 36 6262 10 2610 50 2935\n0\t86 529 2720 46 17 63 70 2 103 125 401 204 3 51 66 151 79 230 36 1 18 6 39 1770 16 1308 17 4 448 20 7 2 53 3293 13 92 1177 12 855 14 530 3894 6 2 1056 4499 206 3 56 114 20 87 2 53 329 675 9 18 384 11 10 57 2 163 52 1187 3 27 114 20 87 78 5 2500 110 39 46 855 3 114 20 291 36 2 163 4 991 12 256 77 253 9 803 13 92 523 6 1 1659 5 2 53 1211 515 11 907 1 523 204 29 113 10 6 2255 7699 1078 10 123 24 86 529 10 12 20 105 2444 11 6 100 2 53 177 5 134 38 2 18 1815 115 13 614 20 16 1490 6107 3 10 439 903 393 8 54 24 340 10 2 2478 4274 27 6 198 169 2 129 7 25 502 9 6 39 2 47 678 18 15 678 120 11 56 83 139 7369 20 301 586 17 8 54 20 56 354 10 193 73 10 6 2 46 5684 108\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 1008 102 4 50 430 2737 1432 1 363 22 6985 1 67 8627 17 39 133 7 25 7825 9556 663 6 198 1434 8 258 36 1 161 1863 33 314 5 1743 9 1356 10 1253 5 48 103 1216 12 187 10 2 4349\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1786 6 1 210 177 11 88 780 5 1 382 120 1242 30 3795 2376 409 1 24 97 3601 3 264 2639 600 43 61 53 20 46 78 1786 42 1 210 1292 6 439 3 7758 4 289 14 218 869 6320 1786 3 1786 409 51 247 95 7691 15 1 215 120 3 1 584 22 509 3 775 89 409 1 147 6475 22 1906 3 1 847 6 1526 409 9 131 39 153 216 586 351 4 847 6 2 528 3285 3 9 1513 24 26 162 52 68 2 91 1399 409 1054 579 1580\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 181 5 2702 1 540 4979 51 63 26 4590 197 712 4 82 8 6020 63 70 77 8996 8 192 2 3403 35 271 5 1908 154 8007 17 8 87 20 1023 15 132 1850 9 6 1 210 85 2203 18 8 24 117 107 3 180 107\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1002 53 684 267 7 66 8 83 96 180 117 107 5260 288 95 34 1 2274 114 2 53 329 29 2202 9 2 6778 4 611 7 1 148 234 58 1744 54 55 29 43 17 11 6 144 8 112 684 63 39 400 995 864 3 24 2 53 290 327 135 5260 6 2\n1\t13 92 102 951 22 1018 180 100 107 183 480 44 6083 7 710 3 31 55 52 68 692 4346 1018 40 758 2 1494 2633 5215 176 3 672 5 43 199 13 92 74 350 4 1 18 6 19 44 7 2 148 4363 1400 3 244 1 1 330 350 6 19 25 14 31 3 44 1260 5 11 13 8829 46 4763 1123 1 3540 2261 14 31 16 199 77 44 1573 1 478 65 3 224 16 199 5 785 14 60 123 6582 42 55 52 761 68 692 49 410 1144 712 2946 14 14 2593 13 4 1 120 634 14 8152 5047 6 20 36 11 1757 32 4668 1 1404 4 20 7 2852 20 7 1025 3 20 7 1 790 4 1 6018 67 427 6498 318 1 226 2859 17 3106 1 410 12 1000 16 11 14 72 899 32 2 661 6139 5 2 5 684 3 1950 115 13 677 6 2 601 67 207 3 17 11 39 380 199 2 156 269 5 1236 257 13 252 6 28 4 50 4148 4 1 115 13 428\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 997 9 19 7402 3 12 2275 30 75 2 18 15 132 2 240 804 88 3235 65 101 37 3625 1319 809 116 460 1932 14 31 6345 298 416 8765 1469 2 35 1 5 2 1665 6390 303 5 122 30 25 5809 193 1 804 981 36 1 18 88 26 2 163 4 1816 10 6 2175 30 3365 1177 32 206 2127 2 3847 3 961 5220 3 121 11 6 55 91 30 5544 55 1 1797 211 1645 498 7 2 1317 7541 278 14 1 113 4699 6 1 59 53 185 4 9 1054 3 2346 7224\n0\t2930 6 2 46 678 18 409 8 467 11 6806 31 632 429 18 7 1 541 4 745 41 5036 600 8 467 6806 2 15 600 447 600 43 56 53 600 2 91 263 3 2 46 230 409 23 63 39 830 275 36 294 8085 1177 9 764 172 1188 600 193 4 448 27 54 24 757 47 1 115 13 155 5 1 91 263 600 28 4 1 922 6 11 156 4 1 120 24 95 574 4 6067 258 5819 409 144 123 60 1351 65 29 1 1940 1785 39 37 60 88 889 31 1928 1785 87 23 64 48 8 467 38 1785 4617 600 386 3 2 212 163 4 82 104 32 1 3818 7021 57 9 574 4 119 15 80 4 126 101 52 6804 3 1321 68 1 28 107 204 409 1 857 2236 5 917 31 2861 6804 600 3784 3 7033 3048 115 13 3053 367 8 114 149 1928 112 3245 3 20 59 224 5 1 19 2760 409 14 2 2 1045 447 267 6806 78 138 68 3569 3466 3 990 624 22 806\n1\t2368 6 2 131 38 9 37 404 3179 11 72 34 22 9329 30 45 1229 19 1 486 4 2 526 4 81 3 1 5570 4 62 13 1833 8 74 455 4 9 983 10 143 997 50 838 29 513 10 384 105 8556 977 8 159 43 3 336 1027 74 4 399 1 807 33 22 34 6886 3 264 32 239 1715 236 2 8851 2 287 603 19 1159 2 287 35 39 433 44 3357 2 4244 35 40 2 3033 711 3 37 1031 48 1181 314 2339 80 4 1 120 8314 15 239 82 7 36 7 257 3229 4407 50 1522 879 22 3 13 9883 1 1440 33 22 34 1051 3460 32 289 204 25 121 7 2 52 5411 129 68 25 817 216 14 1 82 879 187 84 453 1221 5376 8155 9040 35 266 1970 3 35 266 13 4956 49 8 310 5 6675 94 133 43 3428 8 339 241 11 10 165 2301 8 173 365 1 402 13 777 105 91 10 143 24 52 68 28 4207 10 54 56 26 2 53 131 5\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 5501 4 2 84 18 6 45 23 175 5 1811 5 64 10 125 702 9 18 16 43 302 3723 2 7 79 55 193 1 168 15 1133 5205 128 90 79 8 99 10 125 3 125 316 3 112 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243 1858 391 4 1255 1738 4928 3655 14 2 1341 1648 1543 657 2 4020 3 25 2707 2 3 657 1 379 36 2 18 152 3655 380 25 379 32 434 7821 8101 35 37 11 25 379 63 359 288 3391 27 196 1 94 403 2 167 1269 3979 15 43 11 151 1 29 1 94 174 4770 1 2 4530 2892 39 629 5 26 200 16 1 3 1036 5 200 16 2 471 60 196 34 3149 4 5107 38 1 3 2617 789 106 1 613 5091 521 444 142 5 49 60 762 2 426 4 678 288 1207 35 190 41 190 20 26 10 34 7 2 400 1439 5 24 2 1429 2279 5 1708 1 1341 17 10 181 11 1 1648 40 9830 14 27 44 850 48 76 8 152 338 9 18 14 2 222 4 2 2737 3655 6 84 737 25 22 34 46 46 4965 1 67 6 152 169 1858 7 43 1678 66 151 10 34 80 4809 2 299 103 3972\n0\t181 884 2268 819 3424 3 181 884 2268 819 3424 13 13 1238 181 1213 2268 819 107 3 181 1213 2268 819 107 13 872 181 1213 2268 819 107 1 557 4 3111 2075 3760 51 6 162 7 34 1 234 4 21 36 1 557 4 3111 13 1272 255 14 542 14 95 4 25 124 5 246 2 5306 640 3 10 59 2027 891 8456 3881 3 948 3 1 3088 1 8832 7 2524 4 13 8241 56 6554 6 11 1956 419 122 2 163 4 319 5 90 236 3239 4702 3174 4 4022 679 3 679 4 2170 936 11 151 1272 37 1328 23 99 43 489 36 366 4 203 41 9383 3 29 225 43 185 4 1 6 19 1 3397 11 33 61 515 253 1 21 142 1 19 62 2033 17 1272 12 89 15 31 697 2039 3 207 4548 8 1266 180 165 2 263 38 2 7965 4 536 7 2000 2 1085 5467 7 1 1692 47 4 3 3826 224 50 1945 2 69 75 114 9 259 70 1 16 723 4 1 104 117\n0\t2822 892 137 22 205 3156 883 15 245 100 76 1142 3 45 10 117 123 2500 382 409 409 322 10 76 26 31 631 2481 5 1 747 1296 4 257 1818 32 1 3605 91 567 788 5 1 752 207 515 972 68 44 1574 2707 9 21 114 20 24 78 160 16 110 1 523 12 17 20 301 1319 409 409 39 1466 1 593 12 3652 3 1 1219 6051 363 61 167 4131 3 4178 1 121 12 4862 3 1 1084 12 55 2194 261 35 54 241 1 3436 4 127 102 2916 191 20 24 2006 2 2901 7 2 1896 223 290 51 12 237 32 227 840 217 882 5 90 65 16 1 551 4 95 82 3266 409 409 3 49 51 12 2 222 4 2504 10 12 20 109 248 29 513 488 8 173 995 5 798 1 393 566 168 66 4416 15 34 43 4 1 210 180 2233 117 107 7 2 135 1952 9 6 31 728 5684 3 775 89 203 21 11 1071 5 26 303 818 29 1 1735 4 1 3780 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 36 1414 581 17 9 12 2 103 105 14 78 14 8 555 8 88 134 11 10 12 279 1 594 8 3010 65 8 8 83 96 95 324 4 1 18 55 255 542 5 1 1533 3 83 328 10 47 19 2517 33 228 3 1 886 35 262 75 161 12 8 118 1 8445 7751 61 264 155 17 209 19 1098\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7430 58 959 95 574 4 3 2 7117 4870 4 8 63 1582 134 8 12 2048 29 512 16 5 694 140 1 389 2206 4 8 495 351 116 85 15 1 640 23 190 284 82 5656 8 76 134 193 11 2394 3585 12 483 3182 23 463 4318 3719 5292 142 1 5515 41 43 3 42 5261 1649 5 411 11 9 21 12 2 91 3486 14 546 4 10 1733 25 7686 5 1 3939 5062 79 16 8787 14 17 646 187 1365 5 16 246 1 2576 5 2883 43 3399 5 9 4489 391 4 8 1116 1 217 4957 4 1 21 737 17 55 49 3260 1 3220 748 16 2443 27 142 3 4624 19 34 6647 7 145 273 97 4 127 633 61 20 29 6702 160 19 2 1992 15 2 3 2091 8 1193 1 644 356 4 4686 8 336 116 21 1 74 85 8 159 3951 49 10 1478 14 31 431 4 41 12 2 21 470 30 2394 2181 41 1763\n0\t656 2 18 38 3244 434 1098 209 926 187 79 2 1 2515 83 582 939 236 93 1 7466 3979 3 277 510 5595 11 6953 257 5803 20 59 12 1 18 9309 10 247 3681 1 21 1345 57 102 2248 1025 3 137 102 168 22 202 1 393 6 2680 14 10 844 1 1945 2081 1089 16 2 4384 236 93 31 393 859 15 2 859 667 75 59 755 47 4 4221 3079 455 140 22 15 2 327 749 4317 111 5 1173 1 23 4797 7 1 769 45 23 175 174 5684 203 158 64 482 1 59 1318 8 88 815 96 261 54 99 9 21 16 6 11 463 11 1 454 6 2 2608 325 41 11 33 22 942 7 1432 1 1637 190 26 1056 1476 17 8 83 36 50 18 9491 5 26 224 50 7003 3 2573 65 7 50 3374 9 21 440 5 26 3903 1571 3 6670 17 42 39 1 9730 23 118 23 24 2 1054 18 49 1 6568 333 1 4237 5 771 38 51 135 1352 76 64 9 21 58\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 881 7 4417 2110 6 2 46 53 238 267 21 11 89 125 1519 17 165 30 80 8 1454 179 9 12 2 84 135 1 67 12 1202 3 40 1 700 201 117 16 9 574 4 18 642 535 1748 1570 6726 626 3 1 46 1053 82 68 1 1054 4061 29 1 182 9 6 2 425 3599 4 238 267 3 2331 50 868 6 3615 5934 4\n0\t94 10 247 1459 960 6398 646 357 15 1 124 156 53 6397 1 238 12 3909 16 2 2478 158 3 1 1983 3 2840 314 61 195 1732 1 573 74 142 492 12 7 490 3 25 278 10 12 978 20 7 2 53 699 17 14 8 367 27 247 7 10 78 37 8 173 1844 550 28 177 11 12 56 2212 12 1 574 526 16 58 145 20 42 1 7060 80 1698 177 180 107 7 385 387 3 42 556 2556 93 9 21 7255 28 4 1 580 1493 18 10 2 3054 1146 3 153 80 4 34 48 9 21 6 162 56 4216 220 10 12 928 5 26 2 1823 1 263 6 202 3 10 153 24 2 1998 1905 55 1 250 59 209 7 959 1 714 45 117 2 18 965 5 65 1 7673 3 840 42 1706 7 3383 8 76 134 1 250 1176 19 1 61 34 46 2262 171 3 88 46 109 256 9 1378 516 949 3 139 19 5 2223 3 138 2508 33 39 57 162 5 216 15 675\n0\t122 95 4211 3251 1 263 6 2 900 3766 123 4415 109 7 2 607 1538 3 781 3643 255 3321 5 1159 37 11 1603 54 36 5 24 44 200 669 54 36 5 348 44 154 85 8 230 2 1302 588 926 14 8 118 60 54 70 79 2 1053 37 51 72 24 4360 1447 8672 31 240 103 1753 3 2 3098 3248 995 1 6161 1 972 975 262 30 6 132 2 3094 129 11 1 233 11 1 170 651 123 2 53 329 4 101 6 20 610 1 232 4 121 3362 60 54 36 5 8 1 5534 11 9 231 139 142 5 5 995 1 2557 469 4 1 532 6 37 4481 11 45 72 24 174 21 36 458 34 434 7126 24 2 260 5 4522 29 101 45 492 405 5 90 2 21 38 75 240 1 161 4328 4 424 144 143 27 39 139 5 1 2982 3 134 27 405 5 90 2 2203 21 15 43 3670 5883 144 351 319 19 2 865 21 66 6 162 17 2 8614 1480 4 3 8208\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4005 12 3 1184 3 23 39 339 56 176 1695 10 12 37 4965 3 211 3 747 3 1415 3 56 58 911 63 1 899 4005 6 660 8 214 47 38 9 21 765 50 1848 84 184 6192 30 1 6192 3 10 12 109 279 1 2551 3 5 1 401 4 50 18 133 9 18 6 38 1 80 5366 81 11 190 24 117 71 8096 28 130 99 10 16 62 430 5637 66 8 192 273 1483 49 8 70 161 8 202 555 5 26 39 36 184 50 5468 29 3 4277\n1\t2464 122 32 1 324 1 1571 5918 2 35 4292 1 8855 155 3 1245 79 58 9296 129 14 6547 110 72 64 25 14 1 4073 4 25 6 37 5 2207 4 1 3557 23 560 144 2538 472 132 9702 3211 123 37 15 2143 129 1273 1 119 5 86 5221 7230 9710 21 138 4936 1 189 3 7 2 156 168 11 22 301 2130 7 6087 2939 7050 72 64 15 3 1 312 4 16 50 5046 1 6 52 1619 7 1 1139 324 68 1 414 13 7352 6 31 731 7 1 3783 3 9296 151 3362 5 9 7 28 4 50 430 49 4094 1 161 5079 269 183 77 1 4317 6 15 1 5151 833 265 49 2110 1372 3395 5 25 417 17 6766 5 1 6 9 6 28 4 1 80 3971 4 1 21 3 6830 79 1875 8 64 592 13 92 109 8117 9 644 570 1880 17 57 10 71 9701 10 190 24 15 52 4680 14 10 424 42 279 2 5786 55 86 920 11 745 2538 78 4 25 3576 32 9\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 31 313 312 3 1 1769 12 304 17 207 106 10 5824 10 384 36 2 6707 274 10 142 762 1 6575 1 119 1092 89 95 1821 51 61 37 97 120 3 20 227 85 5 2210 62 51 61 105 190 2411 188 160 19 11 143 5 1 119 779 114 10 352 1231 1 67 4508 51 61 93 223 5164 529 106 1 119 88 24 71 5802 17 12 314 16 5494 41 2411 1 263 130 24 89 52 356 14 109 14 1 5246 8 57 2 568 1193 1183 19 50 522 133 9 108 17 1 1084 12 84 7 50 3222 45 317 59 133 16 1128 3470 98 9 6 1 18 16 1038\n0\t291 5 5 122 243 68 3 9 1 4287 7 1 1138 6 31 9786 5 1 415 7 25 157 69 25 975 1 41 25 69 3 37 121 14 2 8813 1217 5 6088 3 8264 6810 10 6 591 240 458 36 1 435 7 1531 1 473 4 1 8701 435 6 6735 16 1 4 1 135 9674 31 799 47 4 2671 5 25 1110 29 1 644 13 463 14 2 953 41 14 2 9 21 6 1391 243 4652 145 243 6137 65 15 412 66 6 105 3963 3 37 646 26 288 5 64 44 19 1039 183 8 209 155 5 44 69 381 124 702 1 1594 6 452 123 1 201 58 1815 169 1251 32 43 345 2036 3 43 1164 4067 86 14 45 25 593 40 303 8313 169 47 4 2500 69 145 517 591 4 5 35 1630 1311 17 1 274 1657 87 20 5004 65 5 2 890 2037 119 69 1 1560 8 24 459 5573 5 6 20 59 17 1130 7 86 13 5 64 2 53 2759 710 139 3 64 3438 8537\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 758 2187 5 50 294 4252 56 563 75 5 70 5 1177 9 360 572 106 157 6 2111 140 1 438 3 683 4 72 2033 32 85 5 387 15 1 352 4 3401 3 964 971 36 11 55 346 3107 36 5206 24 2 2935 8 39 339 582 50 55 193 1 21 40 2 749 714 9 6 1111 94 3949 4 124 8 159 140 50 727 56 2610 79 9 424 94 1 1 330 572 11 56 590 79 9473\n0\t1542 6 5 2033 25 429 40 31 9125 32 1 1849 3039 122 1848 8041 1542 521 440 5 352 25 147 493 157 19 4076 688 1867 196 7 1245 27 5655 32 1 6192 5 1 974 3 1129 1386 475 1148 31 1617 5 90 85 15 1542 17 1 448 4 306 112 123 20 549 4664 7 9 1723 1497 521 307 7 756 6 6710 1247 16 2 67 38 2 306 835 2 164 5 5633 16 137 35 336 1 161 756 131 4 1 166 3892 15 1037 3 1796 9 21 6 20 1822 5 5454 1 86 6803 1853 15 58 119 3 2 19 377 293 363 66 735 5022 854 6395 6 1976 14 1 17 4642 6 311 464 14 1 7630 65 2 1 344 4 1 201 6 14 22 1 4022 4881 3 397 8506 55 45 116 537 64 1 1203 3 6864 16 9 158 2883 126 5 1351 47 174 739 29 1 388 5504 26 374 3 1995 76 149 9 18 2 37 16 2 366 29 1 7617 41 200 1 234 7 5298 663 3438\n0\t1278 2248 655 1 600 1 233 11 33 24 1 445 5 1622 10 142 582 450 366 4 1 6 2 524 7 272 409 48 3538 79 38 9 89 16 756 21 6 1 233 11 10 440 5 2321 86 551 4 445 30 3005 5 1 3906 2296 409 2 784 1 1732 1 4050 4 1 171 14 33 2703 188 36 1786 850 50 6806 7300 9 111 1786 3 1786 549 16 116 486 1786 98 1 412 5 315 2084 1 1278 1 321 5 65 1 293 363 445 409 831 366 4 1 445 130 24 71 5 1483 138 171 409 1 201 22 30 58 907 91 17 33 22 3 551 1 3689 5 1720 2 21 66 6 129 3424 409 5346 3 2865 49 23 321 126 13 872 1 226 736 19 9 101 2 1661 12 612 2 342 4 2017 183 17 57 71 7928 16 375 2017 14 101 1 1702 2965 4 7730 3 40 2 4847 507 5 10 66 951 79 5 241 11 10 12 89 3 612 5 5454 7 15 1 4202 3690\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75 63 8 55 5466 9 18 197 2187 588 5 50 10 12 1416 1 3501 4 50 500 14 45 1 3463 1121 491 1509 1 3884 5 333 1 2544 166 383 533 1 389 141 55 49 1 1138 143 152 1484 65 15 1 1167 4 1 1361 4172 48 4551 3 136 1 18 6 331 4 2022 2937 2 156 3502 4 2 574 1764 106 2 130 26 3 28 1659 799 106 615 2 2629 5276 2 3 1225 8 76 100 995 1 5115 11 6 7724 1479 23 1045 16 174\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 6 46 1470 8 24 107 10 1882 3 10 181 4671 645 1 6066 19 1 522 15 48 27 2506 5 27 451 5 8 16 28 63 1999 5 1 11 1 1951 674 421 1 1955 4242 6003 11 6 31 7 257 154 2152 3 1 188 11 72 14 2 1615 22 377 5 20 38 664 5 4242 2152 7130 1 11 4671 140 1 824 7 1 124 6 205 935 7 86 3 304 7 86 7006 8 192 1096 8 159 9 21 3 10 6 55 11 4671 6 65 5 146 240 15 185 102 4 48 76 26 2 9904 10 6 297 6 4835 64 11 4330 81 11 8950 9 21 14 41 22 56 1156 1 9 6 31 1244 703 45 23 63 64 10 15 25 414 131 27 5052 183 15 25 5082 11 6 93 46 4222 1 111 23 70 7 5 25 6 56 2730 23 76 24 31\n1\t1 2697 245 1 934 6 11 1 199 1655 76 100 280 7 1 392 16 2377 2792 8250 3 37 8155 432 2 1595 842 577 1 2533 94 1 2155 27 440 5 25 17 1 576 255 155 3 550 25 59 6 17 55 27 481 87 78 16 1 4 795 11 735 655 345 13 92 67 6 1768 8918 14 72 99 1 2432 4 8155 35 292 2 84 6 1979 30 30 1603 35 550 20 59 458 17 27 93 4723 3155 11 55 1 6224 35 22 80 542 5 849 24 97 4434 4 62 2487 1745 199 15 2 866 4523 15 9308 2000 65 3 202 1 13 266 1 280 4 25 727 7 50 27 6 55 138 68 7 292 7 205 871 27 266 1697 3467 35 22 7095 5 1072 6 93 2355 3 1 166 63 26 367 16 1 212 201 7 13 150 617 284 1 1158 37 8 481 75 1 21 5 110 7 95 1723 9 6 146 4 58 5415 6278 50 7470 6 655 1 21 3579 3 1 21 1071 2\n0\t184 4 2706 8299 69 10 3009 2 287 35 451 5 1088 106 44 583 6 66 54 291 36 2 5057 227 193 20 5 1 8598 60 40 5 414 1566 243 68 2702 126 5 2 3403 2860 60 1036 5 65 3 597 16 98 106 2 156 52 8299 22 136 444 1057 44 435 1018 276 36 690 3 231 155 408 22 4241 5 2 66 498 46 145 20 160 5 187 295 1 2526 20 73 8 96 81 130 139 64 9 141 17 73 42 20 46 1470 28 4 1 922 15 1 21 6 1 1284 1181 377 5 15 44 17 182 65 378 44 5 70 2 500 1 22 1463 14 603 130 26 3010 65 2339 17 116 374 181 31 111 5 139 38 110 7 4637 10 270 19 66 10 457 49 10 440 5 2725 15 1 1955 5182 5974 3778 1 287 6 553 30 44 2755 11 60 5292 224 16 44 1 21 6 370 19 2 306 67 17 42 1626 24 71 3691 15 78 52 3 15 364 5 6786 7 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3354 1 157 47 4 174 754 1 882 6 2563 1 584 22 1 847 6 573 1 265 6 4112 3 3 4041 1 131 39 213 3883 13 2595 1 387 256 154 28 4 86 251 140 1 166 3847 4604 5893 45 10 1179 1 234 4 1 1254 41 1265 9113 3 1030 7 2 3663 14 6 3 1 22 256 6040 2193 3 23 173 896 7 31 1649 4 3 1 24 2 1998 3663 11 1008 126 14 147 1536 2368 115 13 5 1 3608 22 1 1228 3085 7 154 431 6290 29 1 85 16 17 128 25 19 7923 1 1170 3 69 22 23 1578 16 2782 69 1 4 669 5245 145 20 253 11 13 92 59 1817 4307 32 1 215 3267 6 11 783 1 672 4 32 1 362 2491 2236 1 280 3127 13 3698 47 308 39 5 70 2 147 4870 16 1 161 3823 925 29 34\n0\t2563 245 6 20 11 6413 3268 1 1424 522 40 2 808 136 1 259 30 57 534 1773 3 58 13 3885 49 1 129 4 633 5525 6 60 6 74 107 7 2 315 3814 44 543 3 4579 4309 5428 6010 2026 1159 3 285 1 3409 566 44 66 60 424 4 448 44 44 5374 22 1 74 177 72 64 4 55 183 44 13 3885 1 226 5525 40 5 566 7 1 6 2 1598 259 15 1 823 4 2 164 3 1 522 4 2 13 3885 510 40 31 1906 103 2070 3746 7 2 27 11 103 2070 423 3 13 51 22 97 82 4992 722 3654 3 84 1192 1 121 6 464 17 3 1 518 22 3 292 8 1991 9 18 14 8 519 57 1 1418 11 43 4 1 171 61 332 1997 4 75 1865 1 18 705 51 6 2 1551 1234 4 2565 3 679 4 633 1349 5 359 1 545 6539 6 31 862 489 141 17 8 128 496 354 110 81 15 2 356 4 623 76 24 1 85 4 62\n1\t868 4297 6 3401 3 6270 850 4789 69 1 5220 30 43 259 654 76 213 105 91 1497 21 1396 4497 16 5381 1 2638 918 7777 16 1 5220 17 25 3113 5 333 1 331 3864 12 2 461 8 173 96 4 97 138 1175 5 90 723 719 2874 13 154 3113 4497 151 557 1 333 4 8196 16 1 3 1 4 8906 26 41 20 5 7 2 3801 4 5 442 2 8464 1 1084 4 368 132 14 2549 8028 1740 8578 3 783 5373 7 1681 546 63 26 17 207 1 5548 201 5036 2291 1 1109 4 2257 4495 7464 77 2975 876 2380 5 44 1103 4 742 6 14 1 3 5667 7680 1 5261 280 4 5 1 4 306 9371 154 154 2519 154 736 6 2320 15 2380 3 51 213 2 1130 799 7 1 389 135 1 570 168 1 4295 4 6493 2432 7 2 111 20 888 15 2322 13 6 2 3 1391 1134 525 5 1484 1 3 7352 4 6493 1587 15 1381 42 5032 1 700 1260 117 829 608 627 17 109\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 197 2 894 1 1409 18 8 24 117 575 1 121 6 573 1 67 6 4250 1 120 22 3 1 212 21 39 153 90 1821 342 9 15 1669 3387 56 678 168 3798 14 1 28 106 1 635 4838 125 1 3 7322 621 3 1517 4862 927 25 3 23 70 28 528 8457 20 5 798 1 233 11 1 59 177 561 276 36 27 88 5423 6 2 524 4 17 9 6 185 4 1 1324 6434 694 224 3 99 10 15 2 156 4 116 417 16 2 53 2499 115 13 150 112 9 141 73 42 39 37\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 159 9 2156 366 29 1 21 6438 3 42 2 18 361 42 56 2716 15 437 2744 46 32 48 6 229 31 313 2797 42 2 589 15 1435 9778 647 5629 19 157 488 145 20 28 4 1 700 6255 117 7720 7 172 4 360 216 32 4075 1699 30 2 9481 14 2 3 3619 5702 14 44 78 1186 6221 752 424 36 1 148 3042 4071 276 36 776 9275 3 153 1 3 48 2 1935 5 64 132 313 1039 171 14 3894 3 5394 4545 93 32 1 7167 153 652 78 1590 5 1 595 3847 280 4 31 5192 1086 3 1 231 1636 22 436 52 68 148 157 54 17 42 2 5482 6560 2325 1612 19 148 157 7443 3 23 63 1717 29 10 3 20 230 36 317 101 896 48 2 7742 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 336 1 431 17 181 5 79 51 130 24 71 43 1911 3487 5 1 5161 355 16 3910 101 31 94 1 5977 136 8 36 49 2 431 4 2365 40 31 6018 1298 36 9 628 86 5836 130 26 185 4 1 2582 4 1 2541 385 15 1 4 1 13 92 189 745 4796 3 5063 3466 6 29 28 1746 372 2 754 4342 151 43 878 38 101 30 1 754 253 2 9293 5 1 148 157 3988 14 2 9 6 28 4 1 113 4 97 84 2365\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3046 74 331 5023 108 1 18 11 307 459 789 1 393 1467 2 5585 1 2940 297 11 271 15 9 18 12 7 50 522 49 8 1150 194 3 19 1 2341 11 8 219 194 10 12 1 425 18 5 99 7 1 1646 11 8 12 7 1491 1841 5 256 7 9388 2321 7 3 193 8 713 5 365 48 12 2267 5 466 5 1 393 11 76 26 2175 30 2133 6136 10 39 56 143 90 110 297 12 34 125 1 2416 1830 57 58 1 393 57 58 466 1107 297 12 39 232 4 51 7 43 111 3 1 40 58 1412 17 5 597 7087 29 1 393 11 10 196 2339 73 55 193 72 34 118 11 42 1046 42 1911 3405 14 5 144 42 81 151 95 686 525 29 2926 1 18 16 235 82 68 1 8726 1256 47 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 322 20 1891 29 13 777 20 3893 7 1 210 13 1627 987 34 968 1095 3 256 10 7 42 8779 13 252 6 323 2 91 108 341 8 338\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 56 143 36 9 135 1 119 12 46 2775 687 296 640 145 259 196 1 282 232 4 177 29 1 714 3 1588 40 2 2471 4 2471 4 2539 6 48 10 56 69 8 114 618 36 1 176 4 3935 1444 3 1 2449 3 1 61 32 2872 3 886 48 12 65 15 3559 850 3 33 721 19 667 691 36 209 1060 69 17 10 12 100 587 14 1060 7 1 1125 144 87 420 36 5 64 9 7 910 172 15 52 598 1440 8 7421 1 215 1199\n1\t3159 4 119 42 496 496 2571 15 2 84 393 14 530 10 57 2 84 441 105 194 3 3 3748 57 84 1300 1413 1 129 1273 12 93 167 501 2159 43 1016 2263 1 1177 6 776 492 123 2 46 53 329 737 15 1477 333 4 7671 2202 10 3489 4245 1477 443 7432 3 790 2202 1 21 29 2 46 884 53 1614 51 6 2 103 222 4 5941 72 70 2 156 1909 7065 4843 1909 7307 3342 3 31 1 121 6 5226 6 491 14 3541 27 6 313 7 1 121 4972 600 40 3159 4 892 28 3738 11 3 14 198 6 2 184 1710 3 12 3159 4 299 5 3748 123 109 737 60 12 56 4709 3 57 53 1300 15 6 547 737 15 48 27 40 5 1690 66 6 20 1264 3231 6 53 14 1 574 2112 27 12 742 8422 6 1477 14 1 250 5104 3 12 46 46 3 27 12 299 5 836 4649 1209 3028 34 87 48 33 24 5 87 46 109 14 1 790 2 191 47 4 715\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 180 107 138 4095 13 92 67 204 6 21 1176 242 5 21 2 203 18 7 2 334 106 2064 277 48 4216 9 213 2 900 201 6 1002 53 15 294 2845 3 294 6436 685 1 113 2263 42 3408 2 402 445 135 39 83 504 95 3536 813 41 840 395 21 40 2 46 4759 9635 8 12 100 400 1233 956 19 2 2446 2016 8 159 10 19 12 2 586 534 3 43 168 61 1258 5 1861 128 8 143 812 10 3 10 123 24 2 797 393 66 619 162 629 65 2268 98 37 10 4705 23 142 279 283 17 59 45 317 2 203 21\n1\t3222 3262 12 2 425 1110 5 1 865 847 21 794 3651 5 1 124 4 1 3 4056 1384 3034 1 443 1843 5 1 21 7 58 82 699 292 834 1 67 595 23 5273 1 312 4 1 1592 3034 1 4099 3 274 935 85 1165 1 67 270 8779 13 6 52 3287 68 4537 4308 3 2 1223 2740 34 4 1 120 22 595 571 16 1 1 80 118 27 40 2 356 4 2106 3 2 84 17 207 38 513 36 4537 4308 834 40 43 9282 1880 19 1 67 7 986 80 2639 4 1 22 9838 39 20 14 167 14 3 62 129 270 295 32 62 1286 327 13 834 1 896 3281 1 198 2019 44 533 1 135 1 1993 4 1 14 109 14 1 1068 6011 32 1 12 198 3276 14 2 320 793 1313 781 9 15 2 315 1138 3 2 1114 808 822 19 1027 1 2415 289 1 4 510 886 5 187 65 44 998 125 3262 3 920 54 139 19 5 1 80 4015 4 34 834 1897 7 3105 7404\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 2 323 7439 103 135 6080 1 215 12 30 1 1800 4 1843 15 1 8165 218 570 77 2 903 38 8757 140 1 21 791 1674 5 1851 1 9872 4326 3112 11 57 30 195 390 1 212 16 1 1199 17 98 5 9 249 18 4 1 7723 1009 274 19 305 69 83 26 6038 30 1 8927 4 1 9 12 3 6 3806 19 1 155 4 2 251 4 1227 514 6400 12 14 10 1220 30 1 3 1840 4 1 74 277 104 3 4841 420 1 119 45 51 12 1739 1 692 469 168 224 16 249 3 43 4 1 210 121 180 575 34 602 7 9 1480 224 5 1 81 130 26 3238 9 7687 117 89 10 5 1 2238 369 818 457 1 7723 3774 45 28 454 6 2173 30 50 753 5 925 9 5594 646 230 138 16 2420\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9401 134 9 206 6 34 38 3532 80 4 199 22 20 1578 5 1512 4 2241 3273 3 81 22 1506 1 5277 66 151 79 560 45 1 206 12 242 5 5707 1 1292 4 3148 41 4228 292 8 83 96 11 8 88 117 64 9 18 805 8 76 134 11 1 206 123 24 2 53 5727 51 61 43 56 327 802 3 7 1 21 395 3760 1 5295 7 62 17 1 67 303 79 8452 52 7 1 220 11 72 61 303 2227 5275 2386 1 3106 114 72 39 13 45 23 24 2 9363 5 4722 41 64 9 4006\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1883 171 36 1660 1856 3042 3 2817 4788 4635 5 90 9 7556 21 1762 2 4 1 8766 8 83 118 35 12 80 240 14 34 1857 53 453 3 1930 4720 13 123 1 3585 7 9 8240 372 31 3 1741 4172 11 818 151 16 31 240 27 276 6872 17 27 4819 4788 6 1 9838 1244 3 4 2 9931 1439 11 271 565 1660 93 6 7 1 1541 3 100 1082 5 7 38 95 803 13 92 18 88 26 1050 232 4 5 1 855 5277 17 8 214 10 8 83 36 2578 104 48 8 214 12 2 232 4 3445 1004 135 186 2 176 3 64 45 23 9 6 167 1903 21 11 1513 24 11 3734 73 42 311 2 53 67 3\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 9 18 19 249 518 28 366 172 1742 17 10 12 2 1577 839 11 40 2716 15 79 5 9 6093 13 92 804 190 291 2 222 8385 69 664 5 31 2 1503 2790 1320 4 2 1807 7 1 3815 845 2 346 569 6 3 2 1234 4 1 3895 615 86 111 77 62 2135 1 6705 4 1 569 905 5 1621 62 1514 5 3919 125 154 3 3381 2277 11 140 34 4 257 3443 32 85 5 387 3 11 1797 72 118 72 311 191 20 634 13 92 1428 4 1 18 6 2690 17 16 79 11 59 1253 5 1 14 1 8742 1633 418 5 51 22 375 2757 3 46 6363 168 11 24 4915 7 50 2079 34 9 1425 13 499 5093 240 1389 38 48 72 88 34 26 2262 4 45 72 419 7 5 257 80 114 8 335 1947 145 20 273 6 1 260 5590 114 10 90 79 145 128 517 38 110 782 2688\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 815 1 210 18 180 117 8 12 1578 5 1243 47 94 1 74 764 1452 1 59 81 1094 7 1 856 61 1 83 70 79 1989 8 112 3977 439 104 39 14 78 14 1 398 17 1 212 4493 523 3 623 10 384 5 79 11 33 61 160 16 2 230 69 678 3 1610 168 66 54 466 5 2 1280 1754 1670 10 1168 65 101 2304 3 13 92 59 2437 822 12 6634 3 8 39 343 1169 489 11 60 341 7400 57 4721 65 16 9 586 9404 13 8 143 946 16 2420\n0\t3 125 25 434 4757 25 6345 585 1843 32 5170 2495 3 73 244 69 1012 30 25 3495 45 261 5738 235 38 1 3186 85 5 2843 65 1 3180 32 174 259 35 308 563 3 25 434 585 1018 1 91 3 25 6345 13 7551 1 112 796 6 2 167 170 886 35 1036 16 58 302 11 60 451 5 2248 1 7549 4 1 9 629 7 38 358 269 4 755 5636 13 92 238 88 24 2052 9 158 17 42 55 527 68 1 857 3 1014 42 34 71 248 1704 42 34 71 248 78 78 138 6 2 2796 9 6 1 210 21 180 117 107 69 3 180 107 13 1 21 6 404 4556 540 16 1 3 1 5440 427 40 1 1350 4 3 69 841 47 206 638 82 124 3 468 521 3539 144 33 256 127 358 124 19 1057 55 193 33 22 125 394 172 3176 132 3156 14 1643 69 666 10 34 13 6144 187 23 45 23 83 139 5 64 9 803 13 69 16 20 118 129 649 23 146\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 465 6 1 280 4 1 120 7 1 135 164 5 164 289 2 598 9931 102 3 605 126 5 7190 3 98 11 33 22 20 1804 41 17 152 3757 5 2085 1 465 6 1 280 4 1 7 1 21 69 102 81 35 22 1979 36 6616 3 286 340 132 2 6978 2984 280 740 1 8061 1 741 65 101 1 950 4 1 21 73 27 5 1999 5 1 58 5534 4 75 1 102 8949 4 62 272 4 4706 4 62 8 149 10 6 2 2513 158 15 2 28 3261 10 100 999 5 899 295 32 1 793\n1\t0 0 0 0 0 0 0 0 0 208 12 105 170 5 49 8 74 159 9 108 17 8 159 10 16 36 1 330 85 38 1450 172 1924 50 975 553 79 8 57 5 64 110 195 50 212 231 40 10 72 3692 10 29 225 308 2 1393 8 112 9 128 539 94 34 9 290 1432 42 38 2 1581 56 2599 11 6 1 212 272 6 11 27 128 40 1 3099 433 7 1 508 11 72 64 7 1 108 3 11 27 6 1774 5 187 10 34 65 16 1629 8 496 9 18 5 261 35 451 2 2499 2 163 4 4267 86 4502 3 45 116 2 18 10 76 720 116 312 4 99 10 15 2 526 4 116 417 41 116 231 3 8 23 76 100 24 162 5 771 38 117 316 15 43 456 7 116 3268 10 76 90 23 539 16 172 5 13 499 6 56 6550 7 50 1562 5 149 2 18 11 307 17 9 141 8 8949 89 199 3 8 118 10 76 87 1 166 16\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 39 165 144 1589 1996 9588 1 292 12 20 14 53 14 66 6 313 36 10 37 78 11 8 55 517 38 2512 305 19 192 2 1596 1465 3 42 16 79 5 70 2 1644 1365 4288 3 39 449 1996 63 652 155 5781 9871\n1\t4 1 108 9 21 20 59 153 917 1 10 289 75 82 795 396 466 65 5 2633 4338 48 629 13 150 59 555 1 1132 57 5802 1 1636 200 2310 52 69 1 374 32 35 114 1 61 19 126 16 172 3 10 12 4140 5 99 1 111 9504 7425 126 154 85 1 5190 7577 65 318 937 33 61 1 691 36 3470 3 59 195 87 33 55 905 5 365 48 223 3277 363 1 2310 3702 10 12 46 2763 5 64 11 1 1741 9133 1329 4 1 67 12 340 169 2 222 4 158 246 2 4633 35 2440 32 2 1741 8 63 134 11 1 18 12 434 7853 19 7 154 1329 4 1741 5 1 206 3 846 35 515 114 62 19 137 3 16 137 35 96 732 188 339 780 7 2 2430 669 83 175 5 348 95 317 434 540 19 11 105 69 180 71 939 1 263 12 37 148 10 12 13 751 9 21 3 131 10 5 116 1410 374 183 42 105 9221 9871 4541 1479 23 16 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 107 6914 45 20 34 4 1 3745 217 3169 382 703 8 24 198 381 51 3865 55 94 133 10 125 3 125 702 9 147 21 1035 5 652 155 1 382 15 102 147 171 35 4960 205 3745 217 618 1082 8198 16 943 3799 28 4 66 6 75 47 4 334 62 22 362 3782 618 22 205 1012 7 1 3991 7154 43 4 1 1081 494 12 758 2366 618 10 93 1082 8198 5 209 542 5 1 382 1199 9 21 88 46 109 26 1 210 21 8 24 117 107 3 130 26 1789 142 1 4892 3 3746 295 4665 1 148 3745 217 3169 22 7 62 29 132 2 91\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 906 9 21 40 223 71 794 82 5406 24 17 9 6 28 4 1 3785 4772 4 1 84 2 3 1462 589 4 112 274 7 2 10 1008 453 30 9026 3935 3 7032 170 11 22 39 38 1 2049 4 62 3 42 2 665 4 75 1 1392 1403 12 446 5 932 31 202 200 824 4 6721 3 4131 1055 66 39 1501 11 75 323 684 3 4162 25 2447 5091 9 21 289 75 112 9752 3 1770 3 10 6 400 9 6 2 148 1719 4 1 4795 3 6 2 18 11 1071 5 26 52 4768\n0\t3859 7474 833 788 3 265 6 301 1 7746 440 5 30 403 2 868 11 981 696 17 42 128 39 58 53 2160 1 6 195 2 648 4391 20 2 606 11 63 473 77 2 1069 10 276 2 163 3 378 4 101 908 3876 9199 58 1534 40 44 1182 347 3 60 3 1568 924 90 31 1635 29 2616 13 92 119 6 236 146 38 2 5495 2441 3 1207 712 16 43 100 2722 510 17 207 34 8 8695 48 1 934 12 15 1 1101 259 8 76 100 2510 10 57 162 5 87 15 13 872 45 1 462 6 235 5 139 6934 25 226 524 6 4823 65 7 58 111 3198 3 27 2683 19 1 1426 37 144 42 404 6 2 948 13 150 247 1475 29 513 9 6 31 5 2 84 1139 131 11 6 3713 6735 19 2388 17 83 369 11 23 77 2512 1034 3859 7474 7500 23 5435 8 2925 9 3170 2110 94 475 133 110 58 635 76 36 41 1116 9 3 58 325 4 1 161 131 15 110\n1\t871 7 62 1658 5886 923 703 1 1557 2490 30 1 432 2 129 7 1 3103 1 353 2490 5 309 1 280 4 1 1557 5135 47 1 1557 16 19 75 5 309 1 1538 6 997 30 1 1557 19 3 33 5014 2 201 1433 14 62 148 13 5020 9 4 51 6 58 1 935 456 4 9 1 16 915 3683 1 5135 2 3 1 1557 1 9325 779 6 51 95 6111 2059 3 1435 4 1 5215 17 6843 4 4673 2286 9938 6 1 3047 25 221 157 16 25 3103 9938 6 93 1 35 6 1 915 4 1 4626 1 4451 171 3 3 1 6818 33 22 34 9938 73 33 22 34 997 7 41 1357 14 1 1 5325 16 25 113 34 1 120 63 87 14 174 6 6 24 447 3 359 4 13 677 6 923 436 1489 29 1 182 4 9 309 740 2 67 740 2 158 17 902 76 26 303 16 1 1296 4 9938 55 14 33 22 1029 15 16 1201 5024 4 2 6533 740 1 1083 4 31\n1\t1 1298 71 10 2893 8683 1 344 6 13 92 203 21 353 776 3364 29 1 551 4 2694 19 1 274 4 25 147 158 271 142 3 7308 2 147 1706 32 2 5504 1 521 498 122 77 2 160 1184 19 1 274 15 8941 3 82 1630 29 2613 1 6 1 27 123 297 27 63 5 2162 42 39 7 25 5553 9 40 2 167 547 4493 3 51 6 877 4 1617 16 43 547 17 48 10 6 375 1239 42 39 105 3309 16 42 221 452 1 119 1298 29 1 182 6 2 425 1632 66 6 37 6077 11 42 20 56 2 1965 29 399 3 39 255 577 14 39 908 4553 236 37 156 168 4 4181 41 3380 4181 11 42 39 2 3551 5 694 2086 42 1 5118 28 7 1 803 13 92 570 2 169 547 158 236 2 156 346 922 140 239 4 1 584 11 9 2 364 68 425 17 128 496 3245 135 496 1901 16 137 77 1 696 124 29 1 85 41 35 335 598 203 4121 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 362 9524 383 7 315 3 4308 6 2 1681 158 286 8293 1 6090 4 1 1091 206 7 1455 67 456 77 146 7406 3981 274 7 1 2315 3574 6 1 287 35 40 30 44 766 3 231 16 1 4 1 6444 5960 60 100 44 3 6 1366 155 5 1 569 60 303 30 31 4942 3674 32 44 752 44 11 60 105 40 556 2 5046 5 1 2114 954 298 416 2675 11 155 7 44 161 569 60 308 316 255 65 421 3 40 5 934 15 44 2626 341 766 6010 3 1 119 6 162 147 17 9524 748 411 1251 30 1749 4673 15 154 2990 4715 2859 3 27 6 7092 30 246 3574 14 25 914 7677 10 1225 2 8934 1507 3 207 39 14 322 73 1 1097 153 56 24 1 4944 5 139 95 9541\n1\t273 11 5319 4 15 69 174 609 1260 1738 492 4018 69 22 41 55 657 1 102 584 24 2 163 7 17 6 14 78 38 897 14 1 1112 4 3 1 429 7 6 274 6 29 225 14 78 2 129 7 1 18 14 1 102 171 69 1 429 153 56 24 31 5610 7 3 213 37 78 2 1112 4 14 10 6 2 3184 38 75 81 22 58 53 341 100 14 1831 14 33 96 33 3 2005 297 33 5338 646 39 134 11 205 104 22 1016 3359 4 1 2489 3 109 279 116 85 3 1686 9 6 4505 94 513 23 83 24 5 115 13 150 495 187 295 1 1552 3 498 4 1 640 17 8 83 96 10 3291 2799 180 219 1 305 3077 41 3555 268 7 2 2596 1166 3 128 381 1 1300 3 1 3718 3 1 1266 782 529 49 188 139 5770 42 34 248 37 109 11 1 2062 432 52 731 68 1 697 13 35 1143 267 3 1216 7 1 3595 541 4 3164 76 229 335\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8518 236 31 161 2792 3998 3 2 259 35 2180 3 98 236 1 3781 1003 1763 451 5 5561 25 862 3 1327 14 27 1843 32 216 2 1610 27 615 25 1 3803 1693 6357 3 1 323 33 22 521 5187 30 7141 1 8348 3 236 1 462 4489 103 8492 35 564 81 30 685 126 62 2277 6 5 6640 15 2 5840 287 7 2277 6 5 1337 7 2 2442 416 8 467 2277 6 5 1620 65 2 9526 15 2277 6 5 26 2 3094 459 2 3094 37 60 153 24 2 385 1 111 2 323 5191 1301 4094 2 323 1164 4923 1 5354 139 155 5 106 33 310 32 98 2963 960 481 998 2 5 9 306 1719 4 296\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2181 12 1051 34 4 25 249 289 57 2 84 8687 41 74 2351 1 344 61 676 2555 4 25 82 3434 2 156 767 4 231 7243 61 2555 4 25 972 249 3434 28 431 4 231 6 9811 5 31 431 4 2391 4 1 8569 49 2 1910 4 1 1433 693 31 1 131 12 298 445 3 105 4056 5 433 25 1388 15 249 289 94 1 1 121 6 627 15 1867 583 460 165 51 418 15 9 131 36 6431 3 3552 28 2437 1780 6 49 2181 25 2662 168 36 2 3 2 3710 122 1 1786 1313 4 2662\n1\t147 131 5 645 756 220 231 2678 10 12 286 174 1719 32 1 964 81 29 4974 36 1 1 131 3835 200 2 3720 231 3431 482 7 9 10 93 1263 97 1201 607 120 642 2402 1 4346 1 1 5366 482 4469 3 1 1338 3 1 1 82 460 4 1 131 22 1 3 33 22 862 5366 3 87 297 7 2 7215 253 1 80 5410 6368 2072 1 2053 4 1257 1764 120 15 46 1217 927 3 3755 1636 6 1 2732 4 1 13 92 1844 16 9 3989 3285 1936 15 33 5 4337 1 767 7 58 933 639 6756 101 4204 30 66 3678 460 33 88 243 68 1 52 5480 397 9990 375 984 1 131 12 16 31 1988 4 132 8633 14 1 1003 4583 794 45 4417 269 4 11 12 20 10 6 1314 31 2861 7723 16 1 958 4 756 14 632 45 31 215 3 4161 131 36 9 1082 136 1401 3608 3 296 13 1 528 251 12 612 19 305 3 1 131 195 40 31 1617 5 3494 2 3844 3829\n0\t9237 14 1 1387 792 5 5699 31 2231 13 1268 1061 272 6 11 2981 6 8 54 24 8410 31 1988 376 41 102 19 204 57 60 224 2 3947 17 58 132 9111 10 54 24 71 1 644 1187 2084 1994 262 5699 46 8 3394 3 8 511 26 619 5216 5 64 52 4 122 7 1 3667 115 13 92 940 804 4 1 158 292 7871 30 7291 228 815 24 1066 57 10 20 71 16 1 3605 6118 4 1659 201 7998 80 4369 3 638 4745 1 1 13 150 24 162 421 1879 703 2835 8 241 1532 21 6 257 59 449 16 547 21 253 7 1 663 5 5223 646 757 1879 124 169 2 222 4 49 10 255 5 293 1456 4702 55 668 868 3 1 790 572 3266 8 83 187 245 16 1382 842 121 3 2 5502 1471 51 22 2 4486 604 4 402 445 124 47 939 2836 9 213 28 4 450 8 173 352 17 2172 11 29 225 2 156 4 1 1755 35 24 6355 204 22 7 43 111 15 86\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 12 2220 30 1 3605 1698 119 4 10 12 2 1189 4 75 1 1383 130 1142 1 494 12 832 5 385 15 1 810 188 7260 129 12 1747 5 70 295 15 30 25 1914 13 150 721 6523 9344 236 2 302 144 1464 6 42 377 5 5538 1481 16 1112 3 473 126 77 28 236 58 974 16 6419 3 413 35 495 917 8 12 6750 16 5 70 25 5651 4446 73 27 12 132 2 3477 5 25 1658 8 54 20 175 5 566 6291 275 36 122 7 392 73 27 12 52 3096 15 3242 1687 68 15 403 48 12 2429 5 2909 25 13 13 3382\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 626 2501 14 1 1341 7946 3076 1645 6 1 250 129 7 9 135 29 1 477 8 12 517 11 1645 54 182 65 1362 411 36 294 3145 7 1 41 578 1791 7 1 1326 17 14 1 21 271 385 863 403 52 318 23 853 51 6 58 449 16 550 1791 6 35 451 5 582 4135 73 27 3155 11 1 76 521 26 881 3 27 432 5713 30 1 634 4 6 2 1574 506 35 151 58 189 1804 41 423 7865 14 1 1297 282 6 2 2065 129 1078 1 1537 4 11 290 60 1936 15 7 900 55 193 60 5214 550 1 226 178 4 2 8664 6\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 6 1319 1 1106 6 573 1 6 263 3 55 1 447 168 22 1 4591 3 5660 4 1 215 21 22 301 9884 9 18 12 383 7 2 2642 3 541 954 1420 4 1 66 6 37 1832 94 1 1212 4 1 215 135 5881 7184 129 3927 28 2745 4050 533 1 135 1 1552 3 498 4 1 215 119 22 8304 2130 9874 1 156 11 87 3097 22 311 1 59 3501 6 6832 278 14 3766 3884 7 9 5409 17 10 213 227 5 90 65 16 1 82 1 59 457 66 2 8869 130 26 89 54 26 45 492 2093 6022 5 2612 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 179 10 1164 11 62 1980 347 19 12 89 712 2 1205 263 378 4 874 4993 1 121 6 37 29 268 3 37 29 82 1287 144 54 2 564 1 102 2446 6922 35 1553 90 122 39 16 1 3106 4 1947 3 6 10 56 2429 5 131 1875 444 47 8449 72 70 1027 23 1019 2 103 222 4 319 5 760 43 957 1090 10 153 467 23 24 5 131 10 34 1 3900 1 276 36 31 161 416 8489 274 15 43 226 938 51 6 2 178 106 72 22 1694 5 2 156 81 19 2 771 131 16 38 1099 2110 183 33 22 643 197 1649 302 3 197 307 6 2 1223 5684 120 3 31 55 52 5684 119 90 9 28 4 1 80 104 180 107 1 7516 1354 209 47 1566 875 295 1013 317 77 91\n1\t8869 11 127 3117 29 236 55 2 2762 1212 5 26 214 7 1 205 7 1 1131 4 2 2472 224 86 7710 1122 4 2 625 41 1 8694 4 2 84 482 4615 14 10 2 6279 2918 10 6 9 3922 11 40 71 30 1 4 257 221 13 32 127 250 3313 72 22 93 1979 5 1516 4 32 200 1 1561 642 1 9079 4 4 147 3 1 4 1 4 611 389 124 228 24 71 4286 5 127 7524 5239 3 31 5221 9773 4 246 5 140 37 78 1131 6 11 43 240 22 125 237 472 6727 30 6734 5 1229 80 4441 19 1 9072 5542 3 5120 608 62 3034 43 6483 4824 533 2 349 608 1 1132 61 446 5 925 95 922 11 228 32 246 37 78 5 983 3 59 1597 269 5 131 110 303 79 16 2425 488 6204 8 195 24 7216 719 2425 14 521 14 8 63 1584 224 2 973 4 1 305 16 7910 3 3 6 2 323 2313 718 4458 3 10 228 39 26 50 1522 21 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 497 8 12 3592 5 9 21 205 73 4 1 478 4 1 67 3 1 914 1651 37 8 419 10 2 4343 32 206 676 2993 1760 6 274 65 30 1 8619 258 6173 27 6 929 5 139 19 1 549 2 1671 3 139 421 126 5 935 25 221 3 25 4003 207 56 34 8 63 134 38 1 441 14 8 247 2709 1 838 5 26 93 993 14 2453 14 2897 4871 14 2362 8936 3845 14 1312 6868 14 14 14 2257 8936 5138 14 2278 1760 3 2817 14 3150 151 2 167 53 1835 16 48 42 3 1 21 123 24 42 2103 591 15 2 1653 1112 959 1 769 17 8 173 134 8 381 10 14 8 143 176 29 10 513\n0\t6893 72 34 112 4281 11 19 1 1590 4 116 3104 1216 15 6018 8352 2056 5964 366 57 630 4 5920 4 611 72 36 2 5287 3207 5964 366 24 3559 10 40 2 167 487 15 2 1257 3 49 34 422 225 203 40 86 2737 1935 5 90 10 837 36 840 840 2565 3 1 2579 2801 2056 109 49 23 24 2 203 18 1274 7159 36 5964 1925 33 597 11 691 47 854 37 15 34 4 127 824 8 9 128 1810 14 2 203 1973 420 637 10 52 4 2 1211 81 7 50 856 61 1094 52 29 9 98 33 61 49 8 159 11 12 377 5 152 26 2 267 801 93 9164 17 1333 174 8 96 8 192 39 160 5 24 5 187 65 19 147 3535 34 1 53 203 104 4 1 53 8688 663 24 71 6642 77 1847 37 18 3065 63 90 1686 1 81 8 337 5 64 10 15 143 55 118 9 12 2 66 89 79 8 560 48 76 780 49 236 58 52 104 5 106 76 203 139\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 26 4769 8 336 133 207 144 13 10 2 7224 460 73 4 86 13 9 21 12 2 9722 5 836 13 2136 335 133 91 124 7 639 5 299 29 949 23 13 70 2 2382 47 4 13 92 67 56 153 3683 10 2027 43 259 809 13 872 40 2 3409 3 271 200 1610 1098 115 13 724 27 40 2 3018 1348 117 1148 122 87 110 115 13 2663 7973 7 28 46 1201 1146 27 2530 77 13 366 1957 3 142 43 4663 13 1148 110 115 13 153 1674 176 36 10 12 829 19 10 13 19 5100 408 1 1132 13 4 2036 6202 1779 3 13 1834 371 7 43 1192 17 650 23 173 13 92 23 173 365 48 479 9576 3 23 13 1833 1 398 196 25 32 25 13 3 760 9 108 1594 124 36 33 22 2 13 743\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 144 114 8 351 719 4 50 157 133 2782 144 12 9 21 55 144 192 8 55 5581 19 9 13 1268 2381 367 9 21 472 7610 5 99 3 10 12 16 8 481 842 47 35 9 18 6 1987 300 94 7206 2 645 4 1339 88 99 9 3 90 43 356 47 4 110 10 6 10 213 42 908 3 641 3095 1 21 1026 58 119 427 7353 39 49 23 96 23 24 3393 5074 115 13 150 96 1 393 758 43 5 1 21 3644 7666 1 545 196 2 3289 4 48 228 24 71 160 778 8 83 96 8 256 2 2636 7 737 20 11 10 54 3821 9 21 6 174 191 773 7 1 234 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2676 1096 1 2104 29 970 61 446 5 48 870 9 21 621 6873 8 57 2 10 12 242 5 26 2 1073 17 220 10 93 181 5 175 5 26 2 534 3 3842 8 247 5183 16 2 267 10 6 3007 4 55 1 4631 6414 77 1 4 1569 69 260 65 318 1 903 2526 66 48 31 1963 351 4 85 1 212 18 152 705 10 6 254 5 1431 39 75 3161 1 56 705 114 261 602 7 9 21 24 95 312 29 34 48 33 61 377 5 26 152 279 133 37 11 23 63 7571 29 1 412 7 4038 29 75 464 10\n1\t127 104 1417 1 166 1 59 8954 101 1 1109 4 1 733 189 53 259 3 91 2678 153 56 105 237 32 9 17 86 74 102 1630 22 1 425 665 4 1 3205 3 72 22 721 19 1 46 1590 4 257 1000 16 1 5 13 1833 1 9199 123 3 4504 6 369 2324 5 309 1 91 2112 1 21 301 3 1 226 2290 269 83 169 414 65 5 344 4 1 108 11 1113 1 238 6 4901 3 884 3 1 5836 6 4739 1 566 6 2780 17 1 76 198 26 3617 13 8824 4 1 3585 30 2 595 6 2 4312 4 611 42 928 5 26 32 1 347 1 4585 129 40 2878 37 28 88 3809 11 1 3585 6 928 5 26 2 7777 5 1 232 4 541 7 66 80 13 92 21 6 2496 2 1246 3 6 407 2 757 845 8460 4 1 4023 4 1 576 2290 982 496 17 20 16 1 904 4 3954 41 1960 9 21 6 1577 19 52 68 28 3432 17 977 42 928 5 1142\n1\t822 4 4483 4 1 1033 5607 7 127 268 4 3962 3 1296 132 1636 14 33 1030 7 1 21 22 13 168 7 1 21 1483 2 3045 178 106 1 2057 14 5 1 1109 4 25 1398 2102 25 1757 577 1 5331 963 125 1 5000 1559 1415 7217 2648 522 7 25 1191 69 2 510 42 2 1 5241 1109 4 704 1700 41 3688 1 171 114 97 41 34 4 62 221 66 951 5 43 1885 46 1005 168 29 1 769 14 1 613 3 3839 8692 542 7 19 1 2669 457 1 350 350 125 1 29 1 1590 4 1 4381 191 24 71 31 839 46 3418 16 17 10 6 980 11 1583 7925 5 1 4 10 2616 13 364 1321 824 8056 1 3930 791 4849 4321 6 303 5 566 2 1187 2377 103 1655 436 39 14 27 100 411 69 2 1005 473 66 100 29 1 182 4 1 158 1221 1 1187 40 71 34 2 103 105 17 127 22 52 68 30 1 82 4 2 21 11 128 151 16 3 3824 956\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 24 95 2481 38 1215 2675 195 11 60 7153 1 166 7 239 4 44 8597 1892 3 7 50 1062 34 1 104 89 32 44 3783 22 2 222 1495 17 8 36 647 73 33 34 24 2 732 2328 3 687 33 36 5 3640 14 93 7 1 177 11 151 3074 53 6 6512 46 53 7 44 914 1174 93 1 233 11 239 28 4 1 120 7 1 18 291 5 26 446 5 96 235 17 75 5 70 2 53 2185 3 521 1136 151 1 18 2406\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 51 6 332 58 119 7 9 18 129 17 40 2 156 53 1076 168 11 22 152 167 452 37 51 23 2 18 790 6 167 573 17 45 23 36 2 8187 739 11 1857 162 17 39 53 238 178 98 99 9 108 87 20 504 162 52 11 39 121 3 2 20 37 91 342 4 3916 32 3 12 288 5 64 2 103 222 52 7 9 6 2 53 4886 3 2 56 1053 482 6 2 84 1563 2342 3 2 547 2099 8 56 449 27 63 2391 2 138 18 7 1 958 37 72 63 56 335 25 2 21 15 482 3 54 26 1477\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1515 7 154 744 9 21 6 425 45 317 7 1 1646 5 230 452 45 23 112 5774 1224 10 6 2 191 1861 45 23 335 283 120 11 90 23 63 652 2 4443 5 116 1128 3 8657 36 236 58 9 21 6 16 1038 45 23 22 288 16 31 9844 1423 391 4 632 5 26 3 436 23 113 1382 15 146 30 7718 1240 82 911 69 2381 1095 83 23 118 2 53 85 49 23 64 50 59 3731 6 11 1 18 12 39 105 7222 3752 8 497 646 39 24 5 99 10 375 52 268 5 70 50\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1290 5700 6 246 2 3818 157 162 6 160 2401 49 25 606 271 47 19 271 77 31 2213 1940 106 492 4018 289 122 48 157 71 36 45 28 2592 7 298 416 57 209 47 2 53 804 15 43 650 1289 3 19 2 4146 4 28 5\n0\t286 1 18 424 2835 59 56 107 140 849 14 297 25 2150 666 6 140 25 6026 115 13 92 168 1295 1 82 6611 374 2140 7 5396 1 2415 6379 1 941 1146 1 4381 1146 55 1 2319 2460 178 66 6 377 5 1720 43 4 10 69 34 127 168 11 328 5 3506 29 1 4 1 6611 250 129 22 2415 29 97 2261 81 8 118 87 941 19 1 4152 11 6611 81 230 4 36 3 160 5 186 31 3400 16 2 2261 454 6 1550 31 1335 5 90 2 1052 3703 19 1 4 2301 49 8 139 8 139 13 499 93 1082 29 2844 1 182 4 1 3290 378 253 10 2 67 4 2 6611 287 35 5 2 627 1368 55 193 1 215 309 1168 15 2 52 3757 9743 106 205 24 5 1942 239 82 14 33 2140 3 106 27 40 5 475 3082 44 148 672 6 1 3510 4 44 7409 20 1 7 44 13 872 16 34 1 11 10 190 24 384 5 1718 1373 4589 7660 6611 287 5 9\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 84 135 1462 3 1 593 6 197 1193 53 216 5 1 4894 8 230 37 1140 16 30 1 2278 4 851 139 23 41 8\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 5702 129 475 987 2640 24 1 489 3880 79 5239 4420 413 45 23 175 60 5276 7 1044 4 4075 1826 5714 1 164 35 40 71 7 112 15 44 16 37 2043 327 2784 9 228 26 1 334 5 34 4 1 1817 11 5702 77 9 1223 84 302 5 230 3643 16 44 4304 7 2023 3 17 3255 4995 51 22 58 5848 283 9 135 115 13 2 6216 9 4549 6 9 6 152 2 1719 4 3857 17 936 8 894 207 48 1 4030 4 9 21 57 7 2867 300 51 22 2 156 94\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 12 74 1694 5 30 417 32 35 118 8 36 1244 2466 8 2923 7655 35 63 26 179 7977 136 548 132 14 690 3 2884 7 5 1602 1745 1 166 574 4 1055 623 11 116 3462 19 2 915 34 1 136 4065 116 601 5 3639 29 1 166 290 51 6 2 2081 2552 4 5258 7 9 7757 3 33 22 311 1 391 19 75 5 1088 19 1039 442 76 597 23 7 13 3779 3 1104 3 7454 23 24 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1740 8578 3 460 7 9 483 3516 3 38 7161 3 1217 3 1758 3176 1740 266 2 683 35 40 2 683 1643 66 3029 122 5 3143 47 25 5896 435 2 35 411 2 184 3384 1 263 6 2414 3257 15 4834 2 5022 593 30 1531 7 3280 3 29 1 8578 3 800 328 62 1726 17 800 6 3 3270 2011 40 174 28 4 44 2842 17 999 5 652 44 897 5 1 1327 1223 42 2 1073 8 7663 17 28 11 155 1 6621 32 3615\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 80 238 124 22 4 8709 2433 258 4 6422 3 25 231 115 13 92 21 6 687 6422 574 15 184 4996 3 13 92 21 93 40 687 4534 4 97 3 2 1021 13 92 1790 6 1976 3 98 1 5 6 53 17 98 1 21 271 19 3 19 115 13 92 980 4 795 899 29 2 673 1428 3 162 11 84 13 3828 22 97 439 168 36 1 22 620 36 258 13 92 2281 105 6 13 123 31 1976 329 265 6 2054 59 755 788 557 3 11 6 1 226 6016 6 13 6 14 3708 1630 36 2 6030 136 25 686 168 22 6985 6 6398 22 1011 2865 6 20 55 350 14 782 14 27 12 7 1 344 22 1976\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 21 66 40 89 609 333 4 8209 6 7 127 11 1 410 1148 1 931 7921 3 4 102 914 3 309 102 3519 4490 35 1088 5 209 371 16 43 1516 529 4 62 6 1 1656 4 5903 2920 15 1 1567 11 151 199 241 11 81 76 186 4251 15 120 542 5 413 54 56 230 1140 16 415 54 1416 1717 62 4418 47 29 22 93 28 4 1 1659 1636 4 9 4 1 120 15 1636 3017 5 62 221 481 26 14 2 6776 1040 21 292 10 40 71 2068 2769 11 2 5726 109 15 6 2 21 16 66 1101 206 40 3995 2 1002 53 1541 4 233 3 312 6 5 131 75 1 6206 4 2697 1241 4 2116 1101 736 38 1 262 30 84 1630 14 2 148 164 35 123 20 6864 16 3472 6644 25 3125 3 411 5 543 1 210 85 4 25 386 286 4673 306 1719 4 616\n1\t68 41 8 481 878 19 1 7882 4 86 2531 17 1 4 1 1615 5 1214 12 9805 530 51 12 2 84 934 4 48 485 5 9 36 4602 2417 3 1 274 1657 61 1618 3 2 163 4 319 3 179 57 71 5 592 13 92 1151 189 3145 3 25 1253 2 103 1988 3 2165 1 18 1496 39 2 1105 41 4471 263 12 53 197 101 105 51 12 2 84 934 4 873 1765 17 1 6083 4 6981 143 15 1 10 12 327 5 64 877 4 2438 19 1 4994 704 41 20 33 61 8 339 3051 17 3086 33 485 1 2482 29 225 1 951 61 20 262 30 1031 82 3117 132 14 4357 8 118 33 61 1060 4 1 7091 41 55 1060 800 3 13 8 381 9 52 68 95 4 137 82 502 1 263 12 138 16 2 3587 8 100 338 1 759 7 1060 800 3 3 247 1475 30 1 4 8 6001 5 100 246 107 9 216 183 3 214 10 1074 46 5 97 4 1 52 986 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8756 6 2 18 109 279 283 73 42 20 1 1045 1772 1 1703 1782 6 4962 15 534 168 3 2 232 4 793 4 835 160 778 1 443 793 6 75 1 206 863 1 119 1 1045 1329 4 1 18 6 6614 5 1 119 4 1 108 1 3141 314 7 1 18 213 2235 245 1 206 151 53 333 4 1 115 13 92 129 1273 6 7023 1 250 919 3924 1036 5 411 77 1 234 4 42 65 5 1 410 5 842 47 25 129 3 42 1 11 863 1 410 942 260 5 1 46 714\n0\t62 417 24 7322 322 10 181 14 193 127 3081 62 221 17 33 947 16 1 5143 5 3131 30 16 2 3 3272 10 13 724 1 624 3 6168 114 597 1 5797 17 944 479 30 62 3 479 51 5 149 1 480 1 233 11 58 28 117 1049 1 624 106 10 12 1448 51 93 181 5 26 275 422 19 1 5797 3 1 5266 7322 905 5 6252 28 30 628 3 220 236 59 8766 10 153 186 2043 3 236 55 2 426 4 749 2526 66 76 597 1 545 154 222 14 14 33 61 533 1 344 4 1 803 13 92 102 5266 291 5 26 2583 15 4519 7443 3 2746 15 58 121 1514 479 2406 1 231 6 93 3816 4 121 480 1 233 11 1 6 7028 35 1478 7 97 124 3 249 3434 1 238 6 9530 1 22 55 52 9530 3 1 1444 276 36 2516 13 1627 48 1 898 6 2782 145 20 1432 17 10 407 6 279 283 308 37 23 63 96 883 7912 843 47 4 3623 46\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 43 188 321 5 26 1 572 4 1183 6 20 1 1183 35 2371 7 9 108 8 118 11 73 27 12 50 9798 786 5724 11 2129 896 1183 12 1 4342 29 225 28 4 450 8 24 71 242 5 149 2 973 41 2 111 5 64 9 18 702 10 40 71 172 3 45 275 63 272 79 7 1 593 4 2 9158 11 54 26 1051 1 18 247 34 11 573 3 242 5 1498 10 5 8009 234 4 376 2283 3 82 298 4984 10 45 23 99 194 39 335 10 16 1 3 623 10 65 19 101 18 3 335 43 364 1688 3 703\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 51 12 117 2 637 5 90 2 91 21 11 75 439 3099 88 9 28 54 186 1 1 119 3835 200 5169 11 4004 7 1503 3545 4 1 11 2 526 4 5266 5 525 900 1377 4 1 1162 39 75 439 123 9 846 241 81 5 152 115 13 1149 1 121 12 91 29 1293 7688 1209 1130 25 860 403 9 135 492 216 12 2 1551 1484 16 1 1538 220 27 12 1 2658 4 1 158 3 114 2 53 1614 115 13 1149 9 119 12 3 46 5832 58 4952 41 7706 3443 130 64 9 135 9 6 75 2 1048 53 2606 510 119 63 139 13 1149 51 191 26 2 163 4 1741 4922 5869 200 1 21 35 176 16 1175 5 2967 9 574 4 8856 51 191 24 71 146 47 5 70 2 7159 5280 17 10 12 128 1319\n0\t11 54 26 5 1 1908 1267 7882 181 5 24 71 4 103 1 18 12 2776 5 26 2 4458 20 2 9738 793 4 1752 2 8 24 556 10 655 512 5 2221 157 3 24 284 205 557 3 630 3375 1 141 36 80 12 1325 829 3 109 6189 245 9 12 20 2 1087 1103 4 463 1 4 41 2831 386 3223 13 743 2846 1165 4 85 12 340 5 31 2561 11 1752 57 49 27 12 136 9 2592 12 58 894 731 7 25 1741 10 784 11 1 250 302 16 642 10 7 1 21 6 5 352 8065 2 3098 793 4 2453 174 272 6 7 2239 1886 172 1 21 6 1414 3260 1 1752 4003 4570 7 2548 285 1 174 465 6 136 1 18 289 2453 1752 6720 77 4613 10 1082 5 131 75 27 519 433 25 3 726 13 150 88 139 19 3 778 9 18 12 20 1267 7 95 111 3 130 26 1050 2 3047 18 38 2 1368 8 54 20 354 283 9 18 16 95 82 1734 82 98\n1\t29 225 2290 268 3 8 128 70 2187 7 50 671 29 97 4 1 1192 3899 2857 6 332 425 14 2 1902 376 603 607 201 6 242 5 70 44 3546 7 1750 11 62 221 376 76 29 128 40 11 360 3 304 538 3 2 425 842 11 44 246 57 277 2778 145 145 7 112 15 4341 13 92 201 4 6 1029 15 460 35 3471 62 871 5 7419 1763 7778 6 14 22 626 5743 6501 31 3120 5122 7 28 4 44 362 2842 6496 6634 14 1 1084 206 35 31 353 16 2 346 185 14 2 197 25 778 8119 6 360 14 1 6279 2417 3 113 4 399 14 5804 35 951 1 119 5 70 8480 129 5708 32 1 131 6 13 252 18 130 24 1196 5371 16 113 1073 113 914 886 7 2 1073 113 914 164 7 2 267 3 82 642 2511 1177 3 607 171 3 70 1 305 37 23 63 99 10 125 3 125 16 1 398 2290 681 982 23 76 128 26 1094 29 10 49 1 4447 2898\n1\t5 26 107 675 7 698 533 1 18 46 156 81 152 118 11 236 2 3873 19 1 2324 35 190 109 26 1 6968 5 307 3 261 27 246 367 458 48 72 87 24 204 6 2 46 109 248 67 15 2 952 4 1216 11 418 47 3408 298 3086 1031 1 81 4668 1 1 545 789 835 160 3 11 206 9305 4160 46 14 1 506 6 28 4 1 52 240 8 214 12 1 5641 733 189 1010 4321 6010 3 613 2046 4232 5947 29 1 2353 1 102 56 83 36 239 1885 55 193 33 24 5 216 1413 30 1 769 2109 2 148 2164 4 1451 16 239 1715 9305 114 2 53 329 15 3230 13 78 34 1 453 204 61 2332 4696 3 2093 61 1111 3 8 12 169 556 15 2 46 362 176 29 783 372 48 54 390 25 687 1174 8 214 46 103 5 9058 675 436 2315 310 577 14 2 103 222 1289 14 379 17 44 280 247 56 1284 5 1 471 34 7 399 31 313 391 4 916\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 39 83 365 144 9 18 6 355 7 675 10 6 10 213 6898 3 10 6 794 8 192 1130 19 1 201 4 9 18 266 62 120 5 1 1623 23 219 9282 4428 3 726 2 1147 3967 325 98 1661 23 76 26 127 22 242 5 552 1 15 162 17 3 1 465 6 33 83 853 62 7186 318 1 184 3 207 1 9 6 535 268 1 18 11 1 2881 35 79 12 286 196 30 1 166 8514 1458 1 166 81 35 230 1 74 18 7 3770 5 1 4384 8 39 83 70 110 1 716 216 19 52 98 28 45 23 143 70 10 8 118 48 952 317 3706\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 331 429 6 2 84 231 880 245 94 133 43 767 125 3 125 316 180 1640 11 479 862 509 3 33 291 5 730 32 1 1137 234 2 3284 657 51 6 2 163 4 1073 17 51 22 268 49 42 862 7883 42 20 36 8 812 194 17 39 83 99 126 125 3 125 316 73 33 70 161 229 1 113 1022 6 1 13 429 6 38 1954 25 277 3571 3 3233 3 49 379 2180 1 27 6 7 321 4 43 4136 814 25 113 493 5846 3 1 1848 4649 3586 1047 7 15 450 308 33 414 51 371 33 149 33 173 414 197 239 1715 115 13 429 1523 23 39 75 731 231 6 3 11 23 63 198 139 408 702\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 1719 4 1 8197 42 2 18 11 140 491 121 3 2 46 240 1177 9963 7 205 2791 4 1827 3 296 616 63 149 188 5 1999 778 1 1106 6 46 1683 3 331 4 304 807 1984 3071 6 685 28 4 1 700 453 65 5 6177 27 2148 25 5514 950 3913 253 199 230 25 2415 683 7 239 2519 7 239 626 763 6065 151 199 308 316 96 4 122 14 28 4 1 700 171 4 34 85 7 28 4 1 17 93 80 1087 453 7 25 3163 6 100 355 509 14 10 289 86 2641 935 4 95 687 4589 687 129 7035 94 1 392 630 6 2 5803 1603 6 2 3 9 18 6 38 11 641 3880 630 63 65 25 1657 94 2 2155 39 36 1 2641 4 9 108 6 38 1 4 1 1898 11 392 311 2313 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 207 48 4798 130 1142 3 5028 486 65 5 137 4911 2 1325 3995 3 983 5028 6 28 4 1 156 289 303 19 11 40 6 53 16 1 389 231 3 116 5553 42 20 38 1 1408 1357 2241 319 41 701 3407 4 154 82 131 19 4798 42 2 131 11 151 23 96 3 2655 17 292 1 1048 119 190 291 1 9491 22 148 5 199 513 1841 146 23 173 5021 1247 16 275 5 175 3119 599 295 32 116 576 3 2811 16 1562 55 7 1 80 2422 4 7714 13 150 853 11 4573 40 676 9588 9 360 131 29 9 1746 3 76 80 1458 6163 10 15 43 131 660 1 272 4 8 1331 297 123 209 155 5 42 105 91 11 51 22 195 58 82 289 19 4573 11 152 90 23 230 53 94 2034\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 63 674 64 195 144 2549 4980 6727 1 74 431 4 10 6 229 1 210 117 177 2982 40 1 567 168 61 38 14 4673 3 1244 14 102 7747 7266 2549 4980 57 58 919 3 1 3409 566 12 39 3534 1 210 185 4 1 431 12 2549 4980 43 9939 7 3624 29 1 477 4 1 431 69 75 97 81 3807 7 1 1 251 190 24 5236 220 977 17 9 74 431 1108 256 3242 1750 2563 3 6 2040 2 2418 4 2 84 950 4 2539 40 71 13 23 8 207 16 1432 1013 1 2982 357 5 365 48 6 2 2547\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 159 9 21 29 1 6438 14 114 6295 34 1 82 1 206 12 1124 3 384 5 24 1066 46 254 3 26 46 3030 5 1 6015 66 8 96 2980 1 845 855 3 1183 10 8695 42 80 696 5 2 865 2206 431 4 7981 374 1522 1 17 10 270 554 105 1067 5 24 55 11 1362 5606 1 18 7 554 6 300 279 283 45 317 242 5 87 2 1262 234 3940 5543 34 1910 14 8 173 96 4 174 18 17 790 10 12 775 1171 9732 30 31 2399 3 7710 5 1 1 1700 4 1 67 384 5 26 11 2020 76 328 3 8470 239 82 2780 17 14 223 14 51 6 31 2040 547 482 5 1825 1356 34 922 63 26 4433 1204 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 40 5 26 28 4 1 210 104 180 117 575 9 18 40 162 1061 38 110 43 4 23 81 152 36 9 1540 180 107 2 163 4 6495 104 3 180 338 307 11 180 1586 17 49 8 159 9 18 8 367 5 2758 2386 1 898 6 48 2 439 108 195 33 24 6495 1496 35 27 6 73 27 6 16 137 4 23 35 83 118 35 424 27 2374 5155 3 98 343 37 2737 27 4986 2085 23 24 5 26 9877 437 207 1 7060 302 180 117 455 16 144 6495 726 4548 35 1783 16 2 302 9945 48 2 391 4 9 18 705 35 117 310 65 15 9 1140 1335 16 2 18 130 26 55 1 6495 6 2444 45 23 117 159 9 18 23 511 55 96 10 12 4172 6495 6 11 462 377 5 5561 7852 83 351 116 85 41 116 319 19 9\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 28 4 1 700 2804 10 4054 47 36 2 7 2 8 173 241 1341 4390 10 41 3 1891 33 256 62 442 19 2 131 15 1596 3 259 19 835 65 15 3559 488 8 112 3044 560 144 27 57 25 442 5708 32 1 10 12 25 1340 280 11 8 118 2562 4 611 244 20 670 14 14 27 12 7 688 7 50 1520 9 18 6 260 65 51 15 2377 45 23 338 104 132 14 884 984 226 296 41 95 4 1 82 2804 484 468 112 9 760 10 3 468 64 48 8\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2199 2 170 287 8 192 198 2811 16 104 11 4735 1 3212 3 486 4 81 36 437 4 448 49 8 159 9 18 29 1 388 1320 8 179 8 54 335 5313 906 8 6629 292 1 6509 1463 7 1 21 22 240 3 1 67 12 311 20 4492 9818 1 18 39 721 19 3 19 3 97 4 1 120 11 1030 19 412 39 209 3 139 197 78 5 7622 5 1 790 135 57 1 206 248 2 138 329 1 1025 436 8 54 24 381 10 2 222 1129 4105 8 54 354 2 21 36 125 9 28 95 1393 8 39 12 20 105\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 219 428 19 1 3235 993 891 6942 217 3741 626 6942 12 39 1909 27 12 377 5 26 2 1515 378 27 310 142 36 2 5588 32 1 736 1 119 12 439 3 3 1 535 951 57 58 936 3741 6973 1196 31 918 16 113 607 292 44 2940 129 12 96 1 972 975 32 7 1 9813 1029 15 3 3 2130 206 2093 9524 40 1 389 201 62 111 140 494 11 343 929 3 1 182 1122 12 2 351 4 1452 57 2 2691 30 1 353 11 262 1 3318 19 70\n0\t3 8 57 58 1412 17 5 2309 10 12 2 6974 4 754 5158 304 1299 5 35 61 5000 45 33 322 45 9 6 48 6 65 2339 23 63 64 1 465 361 244 4676 4326 6379 7 2 525 29 298 3981 308 805 10 39 153 1093 29 225 7 50 9453 13 6 2 304 3 170 1651 17 60 380 199 2 129 204 35 153 291 5 24 78 3427 41 55 684 7213 42 660 79 75 60 88 2805 735 7 112 15 2 259 35 2225 2 2076 19 25 543 794 7 1773 11 276 52 36 3 28 4 137 9895 4678 1374 723 58 2425 58 244 377 5 26 2 9025 232 4 259 669 17 137 671 4 25 1379 27 228 26 2572 52 32 5 2 6987 1471 115 13 6044 83 9 21 6 84 5 176 3706 39 83 328 5 4329 1 19 1 808 41 96 105 78 38 48 317 2261 7 1 111 4 3251 23 63 87 2 433 4 19 9 21 8234 7 1 74 1801 3 23 56 495 773 1264\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 9 18 61 95 2428 10 54 24 71 470 30 4666 9 6658 1378 151 1984 2865 176 36 10 40 71 2 136 220 8 24 107 9 7726 2418 600 17 8 87 320 11 8 405 5 87 8024 5 34 137 4758 75 261 63 187 9 18 95 52 68 755 376 79 5 1 4 34 137 11 2111 9 8 187 10 28 376 73 51 6 20 2 1020 34 5554 4 9 18 130 26 4518 1 2435 15 8751 3 14 2 16 1 80 4 9616 1453 28 973 130 26 721 457 6428 2792 3 620 59 5 21 1350 14 31 665 4 75 20 5 87 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 109 89 21 7 1 6104 4 1 465 424 459 114 9 391 3 1180 5 652 6693 776 7 5 348 25 601 4 1 471 52 6 1 233 11 1 206 4 1 158 1539 1081 96 7494 12 2 392 318 1 337 48 114 27 96 54 115 13 92 7889 4 337 56 109 105 318 10 12 5235 65 30 137 11 6 48 9 21 811 16 243 68 2 4 1 634 4 392 2330 115 13 181 5 1379 11 1 392 88 24 71 549 45 95 392 63 26 828\n0\t0 0 0 0 0 0 0 0 1 4765 22 155 5 186 174 6912 47 4 257 7 9 957 135 9 387 1827 420 31 1536 377 5 26 33 1622 77 2 1089 1 3862 3 2033 257 161 417 1 255 5543 98 49 1 5997 1 1 2475 3 43 1 212 21 181 5 26 2496 1685 32 358 15 1 1526 160 140 1 2962 29 1 9 957 6 229 1 3 21 4 1 3600 15 59 28 4 813 49 2 5997 9834 2 522 1294 1 22 3107 14 692 3 1 981 36 31 5542 49 10 93 784 5 24 58 28 4 1 168 4 1 21 6 49 1 4688 19 1 33 2645 1 2000 106 1 3862 6 721 3 785 43 1021 4271 588 32 174 19 567 194 1 5997 1671 5209 47 3 450 144 61 1 3746 65 7 1 330 3862 94 7506 32 1 75 114 33 70 3746 7 14 1 3862 1945 88 59 26 3746 32 1 48 12 1 272 4 1673 9 850 35 7558 205 4085 224 16 1 5997\n0\t1 233 23 39 1130 116 157 16 102 5516 3161 2137 3 396 1289 47 8072 1580 3347 13 677 22 137 11 2635 9 6 48 151 2 84 141 11 10 6 37 9907 29 154 473 11 86 1011 4551 9 6 311 2 111 5 116 221 6636 10 73 88 26 2 53 538 16 2 21 45 10 247 7364 15 3 1454 8 24 3340 15 102 81 35 9644 5 79 11 12 464 49 33 303 1 5599 17 5081 5955 30 7648 89 126 99 1 18 316 3 98 209 155 5 79 15 10 12 167 53 8 338 13 1964 160 5 256 50 2749 2563 9 18 6 8 83 474 45 2402 6823 666 9 21 6 1 113 177 244 117 219 220 27 433 25 221 218 147 8 9 18 6 58 111 4 1 82 124 5 209 32 2888 7 1 226 394 982 1600 4 1433 3 624 22 78 138 104 1958 15 2 402 3 630 63 1582 1498 15 2711 541 99 59 45 116 942 7 253 2 2288 2418 4 162 19 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 713 5 99 9 18 7 2 1383 1464 285 31 3 369 79 348 1259 468 99 235 457 137 8292 20 9 391 4 8315 13 92 74 681 269 274 1 1511 30 904 538 505 1021 119 1552 3 1698 1650 3 7847 10 196 527 94 656 9 18 123 20 24 28 625 2084 3 286 10 6 20 91 7 2 111 11 54 90 10 211 5 836 42 39 2444 180 107 169 97 104 7 50 157 3 145 20 28 4 137 8 467 646 335 80 104 5 43 4295 55 45 479 565 9 8845 13 935 4 9 628 50 4699\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 4743 21 6 2 609 461 9 6 229 1 113 3 1522 280 30 1707 294 3 3859 816 6441 164 40 1457 7 2 2370 818 16 2 136 220 25 379 3 585 8983 3 195 27 40 71 6892 15 31 404 14 27 196 5 118 9 583 27 418 5 2210 2 9371 318 9482 451 122 1877 94 816 196 4126 38 962 20 122 27 271 5 1588 5 149 550 7 1 182 196 25 408 15 2 2083 231 883 274 285 1 330 234 392 9 6 31 313 135 10 12 2695 1 2442 3 10 1196 1 2377 756 1570 16 80 986 2331 294 12 604 535 19 9603 2297 700 2682 46 4817\n0\t6 595 4 2 264 13 252 21 40 6397 17 33 22 46 156 3 5484 7 2 46 6679 145 20 421 283 110 7 698 8 96 307 130 64 10 3 1088 19 62 221 704 33 241 10 41 1265 3 9 6 152 52 4 2 680 68 1 28 1 206 380 5 1850 243 68 31 1782 19 1 7347 10 276 36 2 923 19 1 1850 416 11 4732 25 9822 10 93 1 6680 80 4 1 268 14 463 862 2670 41 58 7 13 92 206 1123 18 168 32 2380 4 5155 197 748 65 31 3634 15 1 4 25 1081 416 3 2334 202 4580 3 8 152 214 1 5 26 1 80 454 3 96 11 25 2742 12 1435 8 93 2474 894 11 95 4 1 1850 35 61 61 41 55 553 183 1 3634 1 1734 4 1 13 3371 9 101 1113 51 22 407 147 3 240 2998 5 26 214 204 3 43 46 215 3462 19 1 1193 4 17 1 111 7 66 9 212 96 6 1160 6 396 9494 496 3\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 287 303 818 94 1 469 4 44 766 615 992 3592 5 44 6184 493 3 1368 7 2 1056 2733 441 1 287 792 3105 15 1 164 7 31 991 5 5533 1 2733 1 164 6 93 44 5776 19 3 142 112 13 858 45 9 247 678 1509 1 532 999 5 735 16 9 164 3 49 44 752 615 827 60 20 59 44 5017 733 17 93 44 5235 65 157 19 44 345 13 6998 23 190 96 955 4 9 1696 1 1387 6 18 999 5 2074 44 7 2 1061 7114 1325 262 30 2587 9 129 40 7684 3 2148 84 13 743 323 609 278 3 31 837 803 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 7 1 6603 4388 29 4300 388 1320 16 8 335 2 53 1493 18 195 3 98 3 2242 9 485 36 2 53 2396 13 92 18 6 169 7606 3 6 169 16 656 831 1 67 427 6 254 5 917 3 20 2 163 629 7 1 108 7 698 8 590 10 142 94 133 10 16 4132 269 3 2242 2 1679 406 11 8 130 99 1 212 177 58 729 75 673 10 5265 13 92 18 40 53 5015 7 194 17 23 24 5 947 3 947 3 2350 13 614 23 22 77 1493 484 9 228 39 26 16 1259 39 26 5095 11 1 18 6 673 3 20 78 56 5547 3 114 8 798 20 78 67 427 13 3382\n1\t15 1 4 201 6 11 8 481 291 5 390 4147 4 1 344 4 450 10 40 162 5 87 15 75 4248 33 22 1074 5 1 4633 376 869 4 1 102 367 1817 17 15 75 33 83 291 5 998 62 221 6291 949 193 407 255 4619 80 4 1 168 20 1295 6995 41 22 237 105 822 19 62 199 385 15 72 24 58 1412 17 5 1876 5 41 422 26 400 433 7 1 980 4 1192 33 22 383 202 1135 7 7432 14 45 6876 6 16 11 507 4 2 551 4 13 245 372 1 195 1410 585 4 4600 3 40 2 732 38 849 7148 2547 660 25 1166 407 78 68 95 4 1 1217 807 436 6876 1576 458 41 300 42 311 1 465 15 2 6876 21 6 11 23 100 169 118 48 12 1576 3 48 39 629 5 26 939 14 1113 6 2 729 4 835 7 1 2990 3 835 28 40 5 26 446 5 1961 11 48 72 64 6 2 3113 30 1 1951 5 2469 7 1 1616 4006\n1\t0 0 0 0 0 0 8 159 9 7 1 856 285 42 2319 1042 3 10 12 1577 98 14 145 273 10 54 128 1142 10 12 1 74 185 4 3 9 12 128 253 1 7 577 1443 3 51 57 937 71 2 7 50 106 8 159 9 106 2 164 337 19 2 1363 1 4 11 2592 2746 15 9 306 67 89 16 2 46 1577 2322 2751 10 56 758 5 157 1 313 121 4 626 4469 3 1133 8 12 1100 15 1 821 370 19 1 306 2592 30 6780 3 1 1106 3 593 30 742 3668 1 2592 3 4247 77 1683 3022 1262 265 32 2376 3910 4695 42 471 180 59 107 9 2 342 268 4836 10 12 105 3015 202 36 101 2 2928 5 1 1004 554 3 2914 385 15 1 9118 8 54 187 9 2 4 2 888 1731 1342 6 37 5 882 3 1004 1163 11 9 229 181 673 3 5963 3 88 26 2111 15 364 1380 17 5 261 125 2297 9 76 26 2 77 1 5990 4 1 1950\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 84 109 89 388 40 84 4771 84 857 3 298 299 857 5 9 6 3619 196 556 5 31 1444 16 19 8077 29 479 250 3896 136 288 16 44 3463 22 46 1473 3 4044 363 22 84 8861 22 1 7891 9060 1179 1 10 254 5 70 314 128 299 160 200 43 1577 1 5299 47 4 93 40 2 103 222 4 189 1 102 250 93 70 5 309 14 1469 6122 510 478 7 9 562 6 138 68 193 8 812 1 147 1 1598 2919 90 2 1577 1 2962 478 8113 52 1087 478 151 6122 510 2 3714 8 187 10 2 394 47 4 5579\n0\t13 92 124 570 7 66 7916 1026 1 5120 19 2 1213 1486 5 1 1523 79 4 3664 3 16 2 799 9497 29 2 323 240 4641 106 127 102 7225 228 365 55 1451 239 82 7 62 221 16 7916 433 25 379 3 583 93 5 31 6994 42 935 7916 1 5120 3 811 16 86 245 10 100 271 939 1 40 58 6711 41 1451 16 13 92 570 178 2019 9 1229 3 432 106 1 475 1141 1603 3 7916 3 140 31 1082 5 65 1 27 89 2 53 16 44 522 2 103 8 112 6616 3 8 3 48 6 52 8 112 17 45 9 644 4825 12 5 90 79 230 11 1 5120 12 1 1757 3 11 81 22 510 3 10 301 7916 289 6711 3 3 811 16 2750 3 34 1 5120 1304 38 6 848 3 13 92 59 859 28 63 1243 295 15 6 5278 23 64 31 2233 549 1 82 111 1232 45 23 1825 19 25 1 540 744 27 76 2955 23 5 1 741 4 1 990 5714 297 200\n1\t14 28 431 32 1 203 9082 21 3493 32 1 66 2371 1990 14 1 4854 379 129 204 262 30 5429 9 933 324 6 53 227 17 153 87 235 264 41 293 217 6 2 222 105 217 961 5 26 1050 2 2073 29 59 2992 269 7 2206 10 407 1047 385 29 2 53 4404 1 67 6 39 38 8078 227 217 10 1227 1745 547 1033 217 8 169 338 1 1905 9 85 51 22 1075 567 217 3383 3586 4313 528 15 1 692 13 6254 123 2 53 329 217 236 2 327 1190 15 2 3506 4 1075 2728 14 530 236 20 78 840 737 275 40 2 1544 7 62 4843 5100 543 6 757 15 31 5100 4520 6 757 15 31 217 236 43 813 6865 17 1227 1874 42 20 11 1 121 30 2 346 201 6 167 3629 13 872 34 140 1 429 213 1 113 901 32 1 17 42 2 547 28 34 1 5102 279 2 99 17 94 1 709 347 67 217 215 8368 21 324 114 72 56 321 41 55 175 2782\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 786 24 50 8 54 24 243 219 6718 869 255 5 2672 702 9 6 2 18 15 28 6026 1 166 5545 66 255 47 4 154 120 2333 5893 4 717 41 5 1876 5 11 672 316 8 54 24 5 4383 29 225 31 6708 3 8 83 186 10 12 3664 133 76 77 17 8 83 96 3950 1084 6 2160 28 130 947 318 33 24 2 67 183 33 1460 253 2 108 1013 244 39 403 10 16 1 1686 3 45 207 1 524 144 20 39 31 324 4 65 7107\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 28 4 137 104 69 36 296 3 558 950 69 11 1834 2 5520 796 85 3 702 104 5691 1364 17 2525 114 1 1084 16 1071 461 55 94 28 40 107 1 18 3 789 48 6 42 128 837 5 99 75 1 943 119 2627 34 1 589 6 17 207 1135 3811 16 2 18 15 2 1902 1814 5157 50 430 427 255 32 5122 144 173 8 787 36 8 96 42 2557 11 1 249 3 5272 8171 19 34 9 2411\n0\t658 4 2984 30 31 3784 14 2 2324 109 33 61 364 68 17 5360 133 7482 200 7 1 15 2 808 9677 1009 7 44 874 5900 1006 79 142 127 4540 28 30 28 726 903 73 10 143 1560 41 17 378 6457 11 61 73 4 1 4230 4 1 466 960 278 6 17 153 5436 78 5414 289 65 14 44 6818 3713 8 339 359 50 671 142 1 517 5 512 11 808 6 7821 54 60 26 1506 2844 3676 3 48 9677 12 60 160 5 333 5 1 398 44 4331 61 169 4652 133 44 5495 140 1 1261 49 188 22 475 590 200 6 243 664 5 86 8881 1511 3 1 393 6 146 23 88 64 2765 13 6700 593 1419 3 9073 14 10 167 78 4508 8 338 1 567 1079 1024 15 86 868 801 6 1 80 1535 177 533 1 3 6898 13 4255 84 153 1006 78 4 116 387 17 8 511 474 5 64 10 702 618 15 1 8124 4 2 2421 5079 10 89 79 4558 2 342 4 62 16 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1469 6 2 84 8185 353 19 2156 366 27 130 229 597 1 18 1926 818 1013 27 196 43 426 4 1688 7130 27 266 31 129 35 676 255 142 14 2715 3985 3 19 2942 118 1 59 211 1 691 33 1049 7 1 657 25 5024 4 186 19 79 6 695 162 422 705 258 49 23 63 348 244 242 46 254 5 26 2 1710 66 27 1513 24 5 328 29 73 27 6 461 3 1891 25 1 222 255 142 14 565 9 18 89 79 2210 31 1128 925 10 29 34 3 359 133\n0\t21 73 27 213 242 5 1654 818 7 1 8296 244 39 242 5 8877 13 7 1 2642 36 429 4 1 2927 237 3 1 82 535 41 843 5203 11 22 41 7 13 8365 662 104 5 26 4454 17 154 625 28 4 126 4847 77 397 457 1 11 1 6723 1800 5031 3 25 22 190 26 8209 740 1 398 358 5 535 982 1 52 3310 5203 27 63 1042 740 11 1 52 319 27 3 25 63 144 1460 253 2 53 18 49 2 91 1324 253 23 2 9945 1 1122 6 104 36 1 4 818 7 1 13 7 1 2642 36 34 25 82 104 22 39 2 3398 2605 4 4589 1955 6535 16 3840 13 872 5 137 35 1594 5031 30 3039 122 9633 41 1 398 1984 30 253 2 1280 842 47 4 1 996 317 39 253 10 4607 16 122 5 70 17 685 122 13 1701 52 284 6278 14 31 5119 39 83 1006 79 75 244 355 25 1413 1013 1 171 22 7 19 1 6435 11 948 40 128 5 26\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 3009 2 46 170 1753 35 844 44 231 3 2177 142 5 390 2 1185 28 366 3 44 417 1088 5 139 5 2 1305 1433 15 877 4 3185 3 1206 3 6 2914 15 44 1845 35 60 1143 17 100 553 122 60 336 550 14 12 2 606 12 2165 7 1 750 4 1 1611 3 60 12 2161 5 925 31 2561 3 14 2 1122 51 6 2 1909 2807 4 486 385 15 44 432 46 2537 3364 3 40 5190 66 1232 44 5 24 38 44 1845 588 155 5 157 3 3661 413 242 5 701 44 3 60 6 2280 5 149 47 35 44 148 417 2140 35 451 44 434 3 76 60 2711 9 389 203 1912 60 6 101 89 112 5 30 44 1845 94 27 1436 3 615 174 259 7 44 2023 3 6 553 60 12 2227 122 5 90 1629 9 6 2 111 47 158 3 20 46 53 29 513\n0\t466 30 7049 6155 3 13 92 914 278 30 2356 5850 424 20 46 6699 1070 114 8 149 783 46 53 14 3641 2247 3466 245 6 198 279 2 9011 3 292 27 229 247 2 46 53 1651 8 198 214 25 453 7 1 9359 4047 169 211 3 1571 3 27 152 2052 43 4 104 3798 14 1 243 1865 3 7 1 13 677 6 28 46 211 3 215 177 38 1420 69 1 84 6 372 2 8 88 24 5332 7 95 1538 17 183 283 9 18 8 54 100 24 5152 11 2025 54 201 122 14 2 424 308 805 1111 292 27 40 59 103 412 387 3 28 1146 106 27 2296 65 2 6 229 1 59 53 178 7 476 28 52 240 177 38 9 21 6 11 1 2622 206 3 800 4 7673 988 114 1 13 1420 6 2 4543 1865 158 17 4973 10 40 43 211 2184 101 2 9359 1214 8 214 10 299 5 1775 17 45 317 1375 100 438 9 141 41 99 10 59 16 1 1734 4 283 309 2\n0\t49 142 25 3 411 5 34 3462 4 1151 41 6468 959 1 466 6130 1944 30 73 162 3 58 28 191 8056 122 32 25 668 105 1685 30 16 10 5 6156 95 3770 15 226 5201 891 2045 6 2 3842 207 14 4742 470 14 10 6 1 21 271 16 3861 2106 2864 8309 3 676 6089 125 11 557 16 919 15 9903 6689 372 122 34 3 17 7 1 524 4 9269 255 142 105 15 2 278 11 6 650 49 123 2500 272 245 10 2439 7 31 2304 178 7 66 27 2 3485 3956 3801 3 6 15 3928 14 4 1 4307 1249 236 20 2 232 736 8 63 134 16 35 2060 6819 65 15 44 7545 17 204 15 2411 7 2 1174 3 2657 3743 5 3170 7 1 9423 131 65 29 1998 531 5 1963 43 5419 494 2102 891 10 16 86 523 3 4865 2132 1588 1912 6 1391 2 7297 836 45 23 99 10 16 9903 6689 809 590 77 2 121 3358 42 1 59 177 90 23 2618 7 9 3279 747 4006\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 219 9 19 305 7 215 1587 15 706 463 1 12 46 345 41 1 697 927 153 90 78 4 67 3 187 95 129 5064 51 22 169 2 156 5671 460 7 9 17 1 18 153 321 62 1761 5 90 10 138 41 2194 42 39 565 1 2437 3 3709 168 248 7 4781 22 1805 16 1 1860 3500 3 5115 17 10 63 70 5081 183 2043 45 235 9 151 79 96 4 2 6761 18 15 86 4 566 1025 3 930 994 145 732 8 48 472 334 7 1 21 17 1 212 3312 4 1 67 12 243\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23 63 2711 5166 8373 8 179 1 756 324 12 2 222 2619 111 1781 8 36 1147 27 266 2300 2 8871 35 6 1774 5 946 528 1 993 578 3 3766 9302 14 1 1007 3 8416 14 3529 1 4111 2300 6 3058 200 1 73 27 153 24 2 231 4 25 221 37 27 47 2 231 7 1 6444 16 2 6538 1519 8403 1037 5767 35 8 113 320 16 372 766 1777 6 2490 5 309 1 49 1 212 1261 255 7996 2563 1 1387 63 26 7191 1 5812 6 1251 32 1 2300 5717 1086 1327 3 44 1007 90 2 2065 23 173 751 48 23 555 1 121 3 523 6 1669 17 1 74 1090 201 2734 10 140 5 1 570 1361\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 548 1165 391 274 7 1 10 6 2 3601 19 1 382 1125 14 78 14 4 1 433 59 248 19 2 402 445 3 78 30 206 492 1 567 168 4264 1234 4 3762 632 1982 30 102 993 3044 14 2 1080 201 950 3 1 1612 5572 14 1 558 19 5 257 950 19 2 7 1 6791 5432 296 913 4 113 2519 257 950 5 2648 2 8377 5 44 39 14 23 504 122 5 26 4952 15 44 3 187 44 2 317 2 13 2046 6 2 31 1409 504 2 103 2 4 2 103 218 433 2 103 3 2 212 163 4 3 468 70 10 39 1907 99 47 16 1280 430 492 7 2 346 185 14 3 335 1 2940 333 4 294 3845 1948 2 2796 9362 16 305 4227 10 6 407 31 2055 16 1 212 1499\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4301 994 58 129 5064 8 337 77 9 18 15 298 1691 32 1 1533 10 88 24 71 31 1477 108 10 88 24 229 390 2 1280 2073 10 12 2 1598 10 12 775 201 3 57 586 293 2170 10 12 832 5 35 61 1 91 1 41 1 1383 41 1 1908 41 34 4 8101 8 192 128 303 30 732 32 1 108 8 192 303 14 5 732 1637 4 9 2654 66 6 100 56 1435 8 343 36 8 12 133 2 2390 431 4 2 6466 19 1 1045 7306 10 384 46 78 36 2 4743 108 83 139 64 9 108 10 6 2 351 4 85 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 2260 65 15 4601 6996 34 50 727 50 1508 1662 65 15 4601 72 24 39 219 1 74 431 4 1 7687 11 2307 554 3 4601 70 2 48 1849 22 3265 19 4476 9 5 5638 1 120 88 24 71 1366 138 30 50 1186 6641 1 67 88 24 71 138 428 30 50 535 349 161 4070 1018 22 4601 6996 596 4601 3 39 45 261 17 123 1 672 4 10 39 213 1927 216 1961 2522 13 252 2218 12 835 147 4601 6996 6 78 828 144 720 2 1707 9420 4388 9 391 4 1847 3 139 155 5 1 306 4601\n0\t37 15 58 4432 11 51 22 95 1636 72 1283 149 1 1892 6 20 48 10 181 5 26 480 101 340 1 1418 11 42 4835 72 149 6 815 1 210 7986 7 1 4053 14 27 181 5 1017 58 85 19 1 4399 3 93 181 5 24 969 2391 15 2 5788 4118 40 2 1659 5 2 4 51 22 82 1389 43 4 66 22 406 7 1 141 78 1372 7 233 105 13 872 19 1 272 4 1 203 1132 1367 11 1114 6781 22 20 782 608 3 93 45 479 928 5 26 31 184 98 90 126 8895 13 677 6 93 2 4140 551 4 14 395 113 5444 7 1 6054 1417 30 608 1 1283 784 5 26 3732 4 297 457 1 3958 39 73 60 6 19 13 3371 1 331 764 269 1069 4 599 2873 1 8480 288 16 1 1156 583 27 47 4 1 244 1721 2017 1 21 77 955 428 178 94 955 428 1361 91 9200 265 1082 5 734 13 91 124 63 26 1474 17 20 1 2213 66 6 39\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 6 540 15 23 1046 45 23 1121 2573 295 30 1 238 606 1102 3 2899 1053 823 98 23 22 6082 7 1 3268 4 448 1 21 213 2 5347 8 83 96 10 12 7514 5 1142 10 12 299 3 722 8 100 219 1 131 49 8 12 8 59 937 159 28 2541 3 49 8 219 1 141 8 343 10 57 1 166 232 4 4858 1 18 61 2060 3 1 606 1102 61 53 73 10 143 3551 79 3 2739 47 36 43 4 1 168 7 3 2899 5465 6 908 9055 8 39 555 33 57 314 44 52 7 1 238 5007 34 7 399 8 57 2 898 4 2 85 133 9 3 8 54 139 3 64 10 316 521 3 8 76 751 10 19 1771 1046 335 10 16 48 10 705\n0\t35 3219 433 25 379 3 752 9 3 451 25 5677 17 345 3 277 972 6 39 31 1438 41 6 29 1 6135 36 2 4060 189 218 3 15 2 4312 222 4 218 85 1256 7 16 53 111 5 3137 1 119 432 3 52 6232 15 154 147 1298 17 29 225 10 100 77 528 36 105 396 1 524 7 82 2759 9172 104 36 218 3 218 1 21 3130 155 3 3194 189 1 795 7 1124 326 3 3139 4 66 863 10 243 1474 3 1 2536 282 6 169 2 1447 919 2696 4 1 2011 129 7 1 52 587 1039 309 218 4297 2769 30 7 1 7730 1729 51 22 2 342 4 797 469 4677 36 1 1946 7 1 41 1 4585 7 1 11 22 3030 30 1 1272 4 35 89 2 15 2536 3 436 55 1 2710 2085 1 21 196 167 3 301 2271 774 1 769 17 790 236 43 53 978 299 5 26 5125 3496 1 225 23 63 134 38 9615 3466 6 11 27 373 2031 65 43 3609 125 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8081 316 5 1 958 3211 57 459 248 10 7 5 348 9 67 38 2 4474 207 5714 1 423 13 92 263 6 400 1184 15 43 806 4156 19 10 17 42 169 548 3 8081 1501 11 244 165 2407 395 4975 168 22 39 14 16 1 1249 1660 8014 3 1 304 653 5 22 39 1530 17 3360 4504 6 37 4127 1875 27 266 871 11 22 47 4 25 874 27 2439 37 929 3 244 20 4233 29 513 27 130 39 309 7320 1134 170 13\n0\t1656 255 142 14 43 1418 4 43 1040 170 1559 1418 4 1403 1418 4 1 7 1982 242 5 4294 244 2549 69 10 153 2874 125 257 10 40 58 2481 106 95 423 522 228 5721 13 2699 1 82 1737 51 22 43 1521 686 529 7 9 21 69 10 6 377 5 26 31 238 158 320 69 11 22 37 5174 28 3966 45 275 4014 6674 7 1962 13 858 16 3153 9363 5 3673 44 5374 69 8 173 830 2 364 2944 1349 60 6 37 1021 288 15 137 3861 8 173 830 48 95 28 117 159 7 4341 13 858 16 1 119 69 132 14 10 6 69 322 10 5036 5008 200 7283 3 851 818 789 2957 98 44 435 69 3071 69 7803 5 634 7 43 3 98 4 448 236 1 11 181 5 24 3307 7 32 197 1311 11 1 1241 69 229 73 27 1336 107 2 263 69 791 58 28 13 443 1093 5862 1043 69 45 10 1121 16 1 15 1 1 21 54 26 5875 13 858 10 424 42 2 148\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 20 7 2 699 42 39 565 42 1985 11 81 24 5189 1061 188 38 10 675 1 67 1 121 6 573 42 20 3903 1 293 363 662 1 40 1191 588 47 4 1027 850 4761 590 77 1 5810 2389 3 3452 7 1 168 662 3 33 165 2 5901 164 15 2 5 309 1 324 4 2085 9 6 36 2232 19 5463 1170 2688 8 335 1157 224 5 99 2 978 203 18 14 78 14 261 2684 17 51 22 138 91 879 47 51 5 2497 4557\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3770 189 9 18 3 1060 226 6 89 30 5748 17 6 68 2 3304 4 7 1585 3 36 1 1769 7 1 8325 236 162 78 5 194 20 55 1 233 11 2 633 6854 6 101 9495 30 102 2875 9 85 2246 58 28 7 1 201 255 142 105 15 9 1054 263 207 20 2884 1 1392 495 187 78 1032 5 9 28 45 27 117 5051 2 8 83 4630\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3224 155 42 71 105 223 220 819 1478 7 2 3 48 2 18 9 1220 12 10 4539 17 46 258 15 2 6776 36 492 2093 7 1 466 14 1 1085 3085 129 6 1 28 3889 492 2093 1 212 6 3831 1 1770 5858 60 63 152 634 1739 34 326 3 176 8 555 193 11 2611 57 2 2223 17 82 68 458 8 56 96 1 212 18 12 2 7759 32 357 5 4726 9 18 6 48 8 1064 5 1493 8580 2 1105 3205 1603 262 62 185 5 1 162 12 2722 5 7 1 37 14 5 359 23 3584 29 34 1287 3 8 56 96 11 114 28 3106 4 2 329 204 7 9 17 7 50 1062 492 2093 57 1 278 4 1 4085 960\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 63 59 1023 15 11 9 6 2 885 21 3 130 26 107 30 2 2081 1754 1 2407 19 1 1117 4247 4 1 1252 1 623 6 1506 1 102 951 22 84 3 56 1720 1 135 50 2952 54 26 5 20 55 99 2 8207 39 760 1 21 3 99 197 4911 8 1150 32 37 10 6 8533 1492 7 20 307 76 335 10 17 8 96 80 81 76 24 31 1062 3 207 198 501 1013 42 39 12 8 336 9 158 23 39 83 70 5 64 36 9 154 1393 9 130 390 2 1280 7552 187 10 2 9011 23 190 39 230 1 166 111 38 10 14 8 1405\n1\t2 4788 15 375 82 2891 35 1555 62 3 1870 15 239 6874 13 3422 7032 170 6 1 4903 1 1485 1835 14 3708 6 256 7 30 9429 7680 12 28 4 6733 415 7 1 781 65 169 2 222 7 607 2842 3 519 355 1 466 7 1493 104 262 7 375 4 1 3641 737 7680 266 31 532 35 153 175 44 2383 220 4541 59 70 7 1 699 60 123 297 60 63 5 70 7 1 111 4 1 642 77 1 4788 3332 4 448 285 1 3 3185 36 2 5295 361 791 3771 100 455 4 8851 155 7 1 13 1031 80 18 4 1 362 42 20 1 415 101 6261 5385 355 7 1 111 4 1 4747 413 361 11 1261 6 15 1 7161 101 4 16 2661 129 353 1403 14 28 4 1 101 31 362 4918 1 915 15 2 1551 4 5 26 1432 17 42 169 2 1515 103 108 5365 382 131 194 5087 180 59 107 10 131 65 19 2 156 663 7032 7305 17 42 496 1901 956 49 10 123 131\n1\t0 6 50 430 108 10 6 2 84 67 3 93 13 92 121 12 313 3 50 379 3 8 337 5 64 7978 7 172 406 664 5 44 278 7 1 108 10 6 2557 11 1 2561 3 1977 1 682 13 92 3782 4 1 2561 6 588 960 8 563 28 4 1 142 3 19 220 2113 19 1 106 50 435 337 5 8 93 118 2 542 493 4 1 518 13 150 12 1 1813 753 226 349 16 2377 16 1 487 6156 3 8 128 149 2 84 18 5 354 5 403 1 1032 3017 6156 8 13 150 2183 77 1 518 316 14 31 1217 3 12 1068 2 4 6835 72 57 256 371 49 4104 960 8 7457 65 1157 7 15 3 25 160 125 188 94 1 2561 29 1 2659 30 680 14 2 4818 37 145 78 2912 5 1 2561 3 95 18 8 89 273 11 8 12 2 53 1465 3 1616 1 3116 723 172 1372 3713 1509 19 1 8253 4 1 35 553 126 20 5 2874 7 3 35 406 2336\n1\t6473 8047 83 8353 62 874 37 10 255 14 52 4 2 2438 1965 14 72 70 1 331 1387 4 9 5192 1499 1 529 22 591 13 5851 40 1 80 9120 267 4 1 3650 28 4 97 171 5 24 262 1 280 4 1010 35 125 1 1166 6 2 163 4 299 14 2 203 18 376 1240 698 244 1 3501 4 9 2190 15 1 551 4 538 7 25 2045 1879 158 271 47 3 7308 25 221 367 40 678 66 8 4000 20 3673 675 1494 8412 4504 6 2 3224 1761 14 28 360 665 4 1 623 204 6 2 1311 556 29 630 82 68 1490 13 92 67 98 7 2 961 17 128 1535 111 14 1557 3859 2486 11 27 130 24 556 34 4 1 340 122 52 13 30 492 3 3664 3168 218 429 11 7393 6 31 548 1541 4 136 8 83 335 10 169 14 78 7098 867 32 1 42 128 53 1434 470 30 745 10 1047 1633 17 1416 959 239 4 86 4290 3 6 407 2 53 21 4 86 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2013 9035 196 411 47 4 1641 30 2 1655 6955 35 175 122 16 31 42 2 340 4 448 11 9035 40 1 2576 16 1 13 649 122 235 1024 244 340 14 1 410 6 340 2126 3 1657 4 207 377 5 26 378 42 761 3 1466 115 13 271 140 15 1 17 1 6 5235 65 3 1 259 29 1 401 4 9 1355 5269 1603 434 5 1203 10 960 37 307 7 1 201 2180 3 29 1 182 23 83 56 13 1268 4 1 82 1755 3184 47 11 1 21 12 1868 1882 14 1896 202 277 719 3 165 7122 224 169 2 4885 300 146 56 12 433 7 1 17 8 2292 5 96 10 12 2 8828 634 19 1 6899 13 743 46 964 201 11 57 81 36 742 4526 9535 3 2574 2913 6 37 1517 1130 204 42 2 6576 115 13 872 72 100 87 149 47 39 48 9632 6955 12 403 34 490 1 1 1 41 55 1\n1\t22 311 4083 1 1109 4 1 67 3 75 3125 876 1 102 120 371 1882 7 639 16 5 475 1006 44 16 5515 6 1360 5 836 519 112 29 116 570 799 6 227 5 1942 1962 1204 4 9 13 7080 28 4 1 113 584 38 2 532 242 5 5880 15 1 469 4 44 170 4757 8032 6 8972 14 1 2707 1770 16 28 226 3289 4 44 2375 3 9599 6 4614 425 14 1 3346 35 2378 44 1 13 519 28 693 5 96 27 40 433 112 5 1942 11 27 40 20 71 1435 6860 7 1 6499 242 5 149 106 33 337 540 140 2 251 4 1911 2932 32 25 2659 9564 5 963 75 78 27 693 4341 13 597 10 5 9009 1209 5 131 199 2 67 38 1 7 9227 3 2308 14 25 124 202 198 934 15 43 921 4 25 5282 32 5542 6 31 296 770 7 2498 35 6 1 16 2342 4 112 3 1898 519 28 153 321 5 118 48 6 101 367 5 365 48 6 160 19 7 1\n1\t54 735 19 6611 6594 740 1 14 2 732 164 32 221 601 54 1173 11 391 3 473 1 84 392 77 1674 2 17 10 6 631 5 79 11 56 2615 41 29 225 451 5 449 16 9 232 4 14 9 21 15 9 3527 25 52 3398 1260 4 1 1814 3870 1 6912 965 5 90 11 216 916 93 25 1784 4473 22 1 233 11 1 120 204 22 20 4812 16 17 148 1046 15 148 2752 603 408 486 72 22 5 14 530 127 22 413 35 39 780 5 241 7 1 279 4 3379 3 260 116 1658 996 3 7 9 326 4 646 186 2 103 7 50 119 5 70 2 1061 859 11 3898 2 272 4 793 11 8 96 72 63 34 8676 13 791 1 393 6 757 19 80 106 1 710 1 3383 142 1 413 308 702 9 6 2 1798 473 4 3929 3 190 24 89 1 21 2 138 790 158 17 8 54 24 10 1 4 1 570 4393 37 7 2179 145 1096 10 12 7101 1889 3431 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1233 8 221 9 305 8 165 10 147 29 8 467 8 96 86 3 2 167 797 739 3 5737 1 282 33 1351 65 6 1053 14 898 1 121 3354 3 1 212 39 3354 1 5628 6 43 568 259 1727 2 3433 3 86 3094 17 86 1233 8 511 354 10 45 36 2890 405 5 760 2 53 548 739 94 2 254 663 216 17 45 2890 24 162 422 5 87 3 15 9 439 104 36 8 7806 99 10 3 8 87 20 118 75 305 40 7 86 305 1894 600 6 20 53 227 5 26 7165 30 2 350 111 547 18 1404 1233 109 1333 34\n1\t389 4 1 1223 17 876 2 1219 4 4159 3 5 11 185 3 3316 7 253 2 39 99 122 7 11 178 7 66 27 1937 25 5367 2927 3 468 3539 75 78 27 6847 140 823 1587 3420 3411 35 266 7057 2 1782 5 372 1 7 25 406 1166 17 42 1 111 27 1 164 7 25 362 172 14 2 7 1270 3724 11 6 1 5886 113 7785 5 11 1174 1 5927 266 1 287 809 928 5 26 3327 7 9 9291 17 45 444 2161 5 652 577 11 507 4 98 42 56 20 37 78 44 2818 14 10 6 1 2818 4 2 1471 78 881 77 1 253 4 9 21 3 207 4225 4245 17 1 21 2440 32 11 5221 4594 11 6 963 48 468 320 38 10 49 23 597 1 616 69 42 39 37 7057 50 435 6 2 6239 991 657 17 93 2 21 11 88 24 248 15 2 78 4852 48 72 825 32 1 21 6 11 7057 3 89 239 82 46 3 15 9 158 1 206 151 199 854\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 83 96 180 117 71 37 125 30 1 1860 6956 4 2 18 7 50 389 157 14 8 12 49 8 2117 47 4 9 391 4 2145 162 7 10 151 95 1821 630 4 10 6 1269 41 109 179 689 47 4 551 4 323 3604 529 33 4382 333 11 900 3979 106 23 2031 65 1 265 183 1 129 123 146 36 1089 2 1945 41 4269 1923 2 3 98 939 1333 1233 5 87 3464 5848 17 8 277 1287 51 22 188 1256 7 16 58 1649 2650 647 67 1 120 1121 109 1619 29 513 1 393 565 573 573 573 4690 154 4 9 21 6 1634 3 145 39 204 5 2979 23 34 4 656\n1\t821 11 190 24 1685 1 3 37 926 3 37 778 154 5331 154 951 199 2812 77 2 3 34 1 136 1 3 1 6220 4783 7 62 3613 46 2171 77 1765 17 650 3997 3613 3 13 150 219 9 2 330 387 37 1213 3 1127 3 10 1220 3 37 5872 5 96 41 787 1395 45 8 24 2 497 14 5 48 10 34 1583 65 2339 10 54 26 2 2314 4 1 212 1109 4 1703 31 228 26 214 7 102 4 1 80 1474 3 8054 168 22 137 7 66 1 7974 43 3928 361 7 1 330 4 949 27 93 276 29 5993 556 4 1 11 4761 1 7974 7 1 361 98 27 140 25 66 6 195 7087 4478 4 2639 4 1 45 72 96 105 78 38 10 3 83 39 335 194 10 34 432 39 13 180 209 5 95 3714 38 8359 41 1375 8 63 134 373 11 1137 4 1 362 341 557 4 745 36 1427 1243 140 180 1550 71 37 30 146 37 9844 37 5709 37 29 3754 37 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 5630 535 16 9 18 73 10 276 84 14 123 34 4 618 10 12 25 692 1541 4 447 3 2288 118 679 4 81 36 9 21 17 8 1662 1455 4 10 46 6727 10 6 373 20 16 3622 1 515 472 1 185 16 3032 8 497 17 27 56 130 20 24 1130 25 290 8 812 5 261 5 4406 17 19 1 1069 601 10 6 2325 46 1805 3 8 381 1 265 17 88 20 64 10 140 5 1 182 3 8 481 134 11 16 97 502 8 531 99 1 212 177 17 9 6\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 20 2 53 108 105 8939 7 546 3 1 67 427 12 5447 1 5411 12 1530 17 20 4455 8 202 1310 3072 7 9 682 13 92 67 6 38 535 170 4913 11 175 5 24 1406 3 917 65 19 110 1 120 22 8 323 87 20 474 38 127 120 3 230 11 51 12 162 5 359 31 1217 9666 9 6 5075 13 150 54 24 338 5 64 52 293 5411 2170 93 8 36 5 64 52 2874 716 68 1 1916 1506 667 4 1 167 8976 7 781 1 415 14 429 6643 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 4108 139 3 187 126 50 394 4821 8 337 3 969 1 2638 1022 4 1 215 3 1 1293 29 225 50 374 335 10 3 63 99 10 197 79 38 48 33 22 4498 8 24 2 2901 3 60 1304 1 6260 22 903 3 54 243 99 1 1766 3 60 1304 2899 5465 6 2 586 9617 7 233 60 1304 60 276 52 36 2 68 9617 137 4074 60 228 14 109 20 26 1727 235 29 513 3 220 49 6 296 4808 24 235 5 87 15 1 8884 1152 19 126 16 1472 11 1858 427 7 51 38 246 447 15 2 5030 11 7 554 130 24 1866 1 18 2 3747 4274 1 59 53 177 11 228 209 47 4 9 6 2 4704 18 15 1 1572 34 37 1 81 47 51 11 337 3 107 1 18 76 64 75 10 130 24 485\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 236 59 28 177 145 160 5 134 38 1398 7 1 2 374 18 3 2 53 267 18 10 433 1584 4 75 97 464 716 7 1 18 11 20 59 3154 17 1121 610 635 850 3 30 1 111 1 111 1 1398 7 1 3341 3475 12 16 1 119 8 301 35 3457 10 3154 2799 145 20 273 144 2014 7504 5187 17 8 96 1 1063 61 242 5 90 10 478 36 122 7 6661 2208 197 1 771 3 10 2235 17 37 48 10 12 3182 83 64 3852 7 1 1735 1 716 22 37 42 211\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 159 426 4 30 10 12 372 19 1 6591 160 125 5 10 152 247 350 565 1147 6 1 3781 8243 808 7258 1787 17 25 733 15 8168 190 656 1 18 6 2 1002 240 176 29 75 234 795 63 4338 42 258 195 11 1 808 7258 24 1168 62 2123 8 497 11 127 3149 4 188 780 34 1 85 3 72 39 83 2292 5 1682 450 20 105 3133 13 3221 18 2239 31 1846 4276 5 2372 6 841 126 205\n0\t24 447 15 550 17 86 406 2144 11 8528 40 57 535 817 35 60 34 195 3 1845 88 26 218 7428 1 857 151 356 15 58 119 9665 1 1043 3 297 422 11 6 1813 38 9 18 6 1080 4835 1 18 6 39 3860 3 8 343 1 321 5 7 43 3955 4888 9 213 50 4259 4 13 92 18 1986 15 355 47 4 2023 7 39 2 37 7 1 46 2353 23 70 5 64 1386 200 14 27 2530 200 25 2138 7 2 406 19 27 40 2 1153 106 25 196 757 142 30 2 2204 4 3 33 87 131 10 385 15 1 813 11 2 8458 4 2374 3 40 5726 447 7 2 1069 236 2 163 4 5099 52 813 68 34 1 2338 9064 104 13 2078 11 8 24 235 421 1025 17 9 18 6 39 37 4282 49 10 255 5 1 212 18 6 200 1 1965 13 1627 45 95 4 9 6 116 4259 4 99 9 108 3823 875 237 237 237 237 237 295 32 9 461 50 438 6 128\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 653 655 2 973 4 476 20 2550 3 45 8 57 1019 50 221 319 19 9 420 26 1565 137 1968 3 7282 10 8886 34 8 63 134 6 9 54 26 2 464 1465 135 95 2308 4 1 5652 4 21 6 121 6 851 1853 1 67 54 24 71 7038 32 1 215 4921 6194 251 14 8385 3 4153 3 1 720 7 1511 4 1 466 1921 2671 5 1 6 13 150 63 59 1023 11 1 746 4 9 21 22 32 417 3 1499 145 1893 42 20 55 3133 13 7 1 115 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 310 155 32 1 74 781 4 1048 8869 2824 8 12 160 77 10 517 10 54 26 1865 370 19 4265 1396 3 8 12 3202 45 23 338 1 215 1048 8869 8 96 23 76 335 39 14 78 45 20 1129 84 67 11 198 863 23 1437 3 9290 1 265 6 5670 1 6317 83 139 852 1748 1570 4948 139 5 64 10 16 3805 3 1434 207 48 104 22 2776 16 361 8 173 96 4 2 138 111 5 1291 68 5 1291 15 6832 1966 35 6 14 1494 14 60 117 1306 192 517 38 160 5 64 10 316 9 9129 139 64 1027\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 339 241 1027 53 118 3070 34 148 81 117 771 36 2782 83 96 1943 53 3843 59 302 340 18 358 378 4 5397 2142 4035 132 2 18 14 2 212 903 1013 23 36 133 2174 384 2799 96 34 494 49 7715 3 170 90 2 293 991 5 478 598 33 209 125 14 8353 69 72 5632 2800 20 3 936 72 2108 5 29 1 166 290 17 207 59 45 2224 71 5 2 56 53 1228 6704 2015 5 2727\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1529 3445 21 15 227 1552 16 2 4 2872 6995 266 4600 3591 14 2 6241 2083 532 35 190 41 190 20 26 48 60 1 67 6 46 6045 7 3 1 927 4912 4 623 3 1070 4 66 1 5642 6995 2734 142 37 530 1 607 201 6 1 9 21 693 116 331 5837 202 5 1 272 4 5720 1 21 3 605 6995 40 52 447 1376 7 44 4 31 68 80 1624 24 7 62 389 4579 444 279 116 387 55 45 23 83 365 1\n0\t1 120 22 1302 3 78 36 1 67 3 1 541 4 9 135 15 148 1041 436 1 234 4 1 21 54 20 24 343 37 51 6 78 5 4429 737 17 29 1 182 8 214 11 34 8 88 87 12 8 114 20 335 1 18 11 1878 3 10 146 11 8 114 20 64 11 1 1117 824 63 26 1 1061 1329 4 2 158 17 197 2 53 67 3 627 647 10 63 34 26 16 2798 8 76 20 139 37 237 14 5 134 11 9 18 255 5 4516 17 519 10 255 4619 8 112 534 1045 6508 3 534 707 22 102 124 8 179 61 2856 17 6508 57 86 1697 1518 3 534 707 57 86 7601 67 9756 40 3725 3 5341 17 103 1939 8 555 8 88 24 338 9 18 2425 17 1 904 67 3 1 2213 120 3010 7 1 111 4 656 1 9756 12 2 1267 3 1703 5209 4 1666 3 500 75 977 11 28 4 1 80 4725 3 8772 104 180 107 9 349 270 86 462 32 1\n1\t25 1656 737 6295 1 206 267 21 206 4402 69 27 470 1 1338 7 2839 19 1 4156 27 88 1405 99 75 3328 7276 3 27 85 7276 4025 122 65 49 27 6 2 2204 4 27 7 1422 4 3718 10 1523 28 4 2249 27 114 7 1 7 124 36 8564 3190 1 431 123 131 2608 7 514 16 2 164 7 25 13 92 4647 4 4649 482 14 2 4 34 6 198 17 176 2 222 29 3328 7276 12 2 109 587 842 7 104 3 756 32 1 3787 5 25 1697 2436 7 15 7289 3 5545 25 113 587 1005 280 12 14 1 4613 7 1 21 324 4 16 2 3211 451 2047 6969 5 26 2 1727 2 2417 14 31 25 113 587 756 1635 12 14 1 1032 35 4080 1 1176 4 1 6366 7 376 2748 5 137 103 3107 794 7 218 1245 7276 12 198 279 133 1920 4649 4308 3 407 36 80 4 1 4261 27 1478 1107 8 24 100 2786 25 17 10 12 2 747 182 5 2 74 1090 129\n0\t303 51 7 116 7205 133 2 980 4 795 3 168 11 24 46 103 5 13 8 1595 1 1 265 7 1 178 801 43 708 6355 2 144 40 165 132 2 627 144 6022 15 9207 8 56 83 64 1 2115 1 59 177 23 825 6 11 40 165 2 46 91 3 169 2 627 7676 207 110 835 37 293 3 979 38 13 2609 34 127 1332 4168 369 79 272 11 51 22 102 168 11 8 338 2 163 6704 144 8 419 10 2 13 92 415 106 1 1 3 1 4 3 22 1325 13 92 82 178 6 1 28 1 94 1 4 30 1 5830 556 5 369 1 234 118 38 48 6 160 19 7 22 314 5 3658 1 81 605 185 5 1 8 214 10 169 215 3 356 4 9308 3 4593 22 2068 13 8568 51 6 2 2568 5109 11 1 18 12 7023 7 132 2 111 11 22 160 5 36 10 3 22 160 5 812 110 45 9 6 1 524 669 2474 894 194 98 50 878 130 26\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 338 3328 217 46 1264 121 12 46 452 67 57 2 979 3 240 1 4946 4 882 3 4717 447 12 120 61 46 1321 3 343 36 23 88 365 62 7854 46 837 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 1409 382 9431 1 593 6 6243 600 1 121 6 39 4455 911 735 386 16 9 84 916 1 80 6887 18 19 9104 9 18 40 3010 1 2476 4 4352 13 380 2 4410 1835 58 5067 34 1 171 24 248 62 113 3 1 18 9893 19 3765 23 29 154 4457 9 18 116 212 101 955 3 2495 23 5 38 97 1636 11 257 13 252 6 1 67 4 2 1277 2930 35 418 47 7 25 895 14 2 1784 164 17 1391 77 2 3207 1 74 525 7 2855 5 70 516 1 168 3 8205 1 2578 1387 38 4675 5 9431 115 13 2609 9 18 2 4 2855 104 165 612 11 5794 1 1826 9 18 12 323 2 6535 9 6535 8275 1 8709 18 178 16 52 68 2 9926 115 13 252 18 12 2 1009 1400 7169 115 13 743 5971 16 18 4238\n0\t7 7232 33 694 51 3 1337 691 29 1 1 1946 2149 2 52 3067 469 68 261 4 1 647 17 12 39 7 1 1877 51 61 102 3604 168 7 1 158 17 143 226 223 227 5 26 782 29 513 14 8 1113 1 4571 61 6021 3 519 81 35 24 162 5 87 15 1 67 427 70 62 2177 7122 1294 45 1 840 12 152 299 5 2198 98 10 2893 71 102 374 1431 2 823 33 149 7 1 33 1431 10 14 2 163 68 10 152 1220 33 2667 5 1 1277 11 51 61 200 7 1 559 25 3954 57 20 55 71 757 1089 37 51 12 58 111 61 7 25 193 8 2893 338 5 64 656 1 121 12 7372 120 61 3 1 7348 88 87 2 163 4 8 1379 2424 9 18 16 1 469 1025 8 4108 64 10 316 9387 6574 17 8 381 1 6021 3151 896 83 1460 15 1 5409 8 219 681 269 4 10 3 12 1120 5 2214 10 981 53 17 4819 1 215 7348 152 721 79\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 6 1 113 21 1290 4173 40 117 1001 4173 114 20 24 25 692 543 253 691 7 9 135 27 12 205 211 3 5882 4173 262 2 2892 654 1660 7916 16 297 11 271 540 7 25 500 977 851 255 224 32 2617 3 380 1660 25 9562 14 8 367 1704 4173 114 31 313 1614 8 93 179 11 2395 3386 3 2051 61 84 14 607 1 119 12 53 73 10 57 97 7 1 250 2115 9 18 63 26 14 109 14 1 263 1066 322 854 8 192 1096 33 89 2 967 5 9 135 8 1090 9 21 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 2285 748 47 19 2 4 4 25 7 1 2516 1926 73 27 2615 11 1 3 18 6 38 31 4 86 1375 3 27 7 233 1937 162 4 55 4759 796 7 9 332 810 3 8868 408 141 4739 16 3115 29 395 3582 231 17 407 20 16 2729 69 41 55 4228 2 53 8423 4 144 80 1532 124 22 20 1459 65 30 580 3065 69 73 33 22 1495 7826 3 4 58 796 5 261 17 1 206 3 7319 925 29 34\n1\t2 2729 21 197 86 10 12 28 4 1 1134 104 7 1 349 7 66 10 12 4303 9 18 421 1 184 4 1 2855 7 13 7 9 18 1171 52 36 2 8882 4 1 950 1875 27 295 41 433 25 60 12 51 5 3006 550 60 12 20 36 31 692 2594 5 87 1 692 691 4 599 200 1 7932 3 28 55 419 65 44 112 49 1 8784 2610 1 9544 13 677 12 174 129 7 9 141 66 12 262 30 262 14 31 280 8328 1 859 4 1 182 1122 4 2 1784 1277 35 1 540 601 4 1 2090 66 93 419 1 902 2 680 5 1 8784 8649 13 659 25 2289 7732 1 410 15 25 2691 280 66 1391 1196 122 1 113 607 353 30 1 1277 7 1 18 12 20 2 528 826 890 2328 27 12 446 5 5 1 2090 5 31 1 4519 66 303 350 3884 7 82 21 55 94 102 9 18 6 2299 39 73 4 1 206 3 1 389 8901 239 28 262 62 185 3459\n0\t0 0 0 0 0 0 0 0 0 0 0 2003 23 24 102 9624 429 4 4113 421 239 1885 1 225 23 63 504 6 1 1016 3 11 6 1 524 7 9 21 106 72 24 2 161 5968 9265 2 161 7 233 11 6 34 51 7 1 442 4 119 2091 378 4 10 6 1 1933 11 6 7 9 590 7823 13 1 102 8765 171 5 652 1 429 224 15 62 3 529 49 112 653 7 9 9907 3 11 6 34 23 149 7 673 17 2763 74 6869 1 4 1588 14 2151 7 7052 1022 22 30 1 182 4 74 5818 1151 9701 3 2462 51 6 20 78 303 5 26 5672 2091 7 1 330 350 2 678 255 7 1 921 4 4663 435 5 1 4295 11 27 271 16 2 6 56 2 2476 4 51 6 31 1381 678 2281 38 75 27 380 1107 1 4818 330 350 6 1289 15 58 9879 51 6 2 4389 15 2 282 583 2057 4 20 253 78 1 21 6 1901 16 86 1684 1782 3 1\n0\t1276 1426 5 566 1 1 2201 6022 3 37 792 2 2244 8982 5 1708 1 91 8569 183 33 63 8024 261 9809 13 3079 1 169 109 3075 4 1 156 7 1 4215 17 25 53 216 6 202 2175 30 595 345 478 3266 1 344 4 1 672 216 6 7132 15 46 103 5 652 1 120 5 500 1 6 1 59 129 11 6 1139 69 9342 1419 3 1 8569 22 2776 341 176 202 32 239 55 1 1678 22 1598 913 258 255 65 2179 101 162 52 68 2 15 2579 6126 3 29 269 1 21 6 20 610 286 10 4089 169 955 7 546 664 5 1 6592 4 375 5007 103 4 1569 6 8328 28 5242 7 1 347 1819 15 1 112 4 3 6 2406 7 1 158 1 166 3062 6 400 643 30 2346 8 310 5 1 1 852 679 4 299 3 17 48 8 165 12 167 78 1 9 28 6 2 1200 11 311 153 1484 1 4 1 347 7 95 4972 69 906 5787 10 191 139 224 14 28 5\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 21 8 159 49 10 74 310 827 3 66 8 24 107 2 156 52 268 125 1 982 42 198 13 1268 177 6 11 1 267 123 20 186 10 8445 3 59 6765 181 1137 1 382 55 193 244 1968 16 110 115 13 87 20 284 1231 45 23 617 107 1 21 115 13 252 6 2 7233 193 1463 1002 1006 88 275 1594 80 4 25 41 44 4073 7 2 625 4 10 54 757 140 202 95 13 3926 49 7 31 6765 1123 2 1847 63 1203 36 2 1257 13 646 70 9 19 1771\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 28 4 137 104 11 791 12 242 5 2062 1 1563 1792 3938 232 4 36 1740 783 8 6528 245 3527 1740 783 114 24 28 3045 1563 1792 178 51 22 630 7 9 28 1013 23 1064 43 3 14 6522 72 22 1694 5 1 376 35 6 1991 14 246 2178 7 1 8 12 7 1 3 136 33 22 167 3573 7 8 56 83 320 95 4468 19 14 2 1122 1 578 151 3487 5 1 49 27 1664 31 1335 16 144 7075 2 1296 7924 12 37 728 4068\n1\t33 867 17 1 4738 87 4165 65 7 1 166 9924 1283 4348 444 19 44 111 5 776 47 4 1 2416 292 44 22 303 688 51 6 55 52 299 8825 29 2 231 5194 29 2293 776 1225 77 805 2793 11 60 6 771 38 43 4243 5 688 1670 776 6089 5 2 3954 465 3 5647 47 7 1 76 4348 117 149 47 11 1019 1 366 29 488 48 76 26 1 145 1140 16 1396 35 5497 104 36 476 33 130 373 1095 16 9 21 6 1684 3 1434 4 611 10 153 1977 3291 11 1072 6 2 211 996 6 2 1515 1212 41 11 3482 6 2 1574 14 2 167 17 1 344 4 1 1249 642 578 3 2975 6 93 169 6807 1 176 4 1 21 6 4092 14 22 1 1759 3 3610 113 4 399 1 263 6 3950 3 1749 184 1308 16 1 1754 7 2179 45 23 175 5 1 70 9 18 10 190 20 26 1748 1570 1097 17 10 6 332 8323 5 473 2 91 326 77 2 7222 53 5592\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 34 1 2639 4 1 883 4 95 4536 67 16 11 9 7 50 1062 6 1 113 4 126 513 202 306 5 1 215 857 69 15 43 1681 3 8640 1 4946 4 217 3 1 233 11 1 7 8797 7 25 69 1087 121 3 4602 1769 3 1759 34 7622 5 90 9 2 323 1201 43 1 233 11 1 494 3 4220 22 301 7 45 28 6 1100 15 1 2991 27 63 128 90 2177 3 4 48 6 160 19 3 48 1 171 22 667 23 24 2 53 3864 4 1 29 29 225 8 2723 3 37 78 37 11 10 40 1685 79 5 2221 1 1101 1587 5 138 1116 1 18 55 1129\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 8 74 337 5 99 1 5666 8 12 852 2 547 21 32 48 8 57 455 38 10 3 8 338 2 163 4 3328 82 216 17 49 8 544 5 99 10 10 12 37 78 138 68 8 179 10 54 268 8 1067 343 3605 3 8 339 186 50 671 4 1 412 128 236 146 46 1577 38 297 7 1 135 195 43 81 83 36 324 4 1 5666 220 10 153 1135 917 1638 4625 347 17 7 50 1062 205 6466 3 1 347 22 34 5492 380 31 1477 23 22 288 16 2 53 215 18 11 76 359 23 517 55 94 1 104 125 98 99 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 94 8 159 1 141 1 306 1449 507 4 1 6096 834 104 310 65 7 79 3 8 1640 79 11 10 12 2 223 85 989 11 8 159 1 1449 7 2 682 13 92 2053 4 1 260 1224 8607 3 2548 363 876 1 834 507 316 77 116 4579 46 293 188 8 159 106 1 363 7 1 141 544 15 1 834 77 1 3262 2473 3 1168 14 31 1083 15 116 13 92 1449 40 4463 7 437 8 1090 9 18 1315 47 4 1731\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 101 4 2706 336 9 141 20 59 12 1 259 1053 3 211 27 12 93 6239 3 8 336 1 282 35 27 1310 7 112 15 1221 60 12 33 61 132 2 1257 9229 1 393 12 37 5882 112 9 1540 292 10 6 2 103 10 1523 4 2 598 41 2706 324 4 45 23 338 9 18 23 130 99 166 67 427 170 259 621 16 972 2891 972 415 621 16 170 259 1467 2 163 4 8668 7 1 769 1 113 3113 6 89 41 3649 6 83 24 235 422 5 867 197 9695 1 212 141 34 193 8 179 1 710 259 12 9448 364 2529 5 437 23 36 2706 484 8 54 354 4 18 6 37 452 1911 23 228 20 70 1013 23 99 6549 322 1333 50 5194\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 2638 865 271 155 7 387 5 1 349 218 2247 7 1 346 707 4 66 12 98 14 1 67 22 643 30 1 43 4 1 120 7 1 124 24 205 3 7 1 3186 80 631 6 1 492 3860 794 1031 25 561 3860 6 3365 15 814 27 5820 1740 794 8098 5 1743 6040 65 43 13 252 28 270 43 355 314 5 69 14 10 270 334 7 1 3621 3186 42 36 2 1214 15 2639 4 1 215 644 1198 127 22 1677 774 14 14 62 7 9 158 1 120 1017 31 489 163 4 85 19 1 9743 66 54 20 24 653 7 1 215 108 488 10 12 1021 5 24 1 8063 187 65 1 566 37 8109 49 3860 1036 5 597 3203 144 37 144 143 794 1279 1 81 5 566 197 13 1 2247 792 4071 5110 492 1740\n0\t198 57 71 1 3060 37 123 11 467 10 57 71 2 53 349 16 104 15 679 4 8 83 96 1943 8 96 80 4 1 104 76 26 2496 1837 7 910 172 32 944 15 1 1675 4 3780 3 218 2380 4 1 273 8 83 1023 15 154 625 1570 11 12 4610 47 9 3002 16 5540 130 57 1196 16 113 2653 20 11 8 83 36 626 1093 27 56 114 43 491 216 16 80 4 2773 216 17 8 56 230 11 2149 1 1570 111 1129 93 8 54 57 338 283 1290 5433 3 776 1364 16 113 1043 3 294 16 113 1948 17 850 322 51 6 58 111 1 1748 2520 63 786 1603 4 611 8 365 656 51 76 198 26 81 7446 38 1 13 499 93 12 211 5 64 11 80 4 1 1570 61 111 52 4917 68 1 3 114 2523 367 95 4 1 1487 260 29 3 61 6 2077 356 4 1712 3366 3 3924 1352 449 33 61 1 113 4 1 13 5944 2 46 5684 131 17 15 327 13\n0\t624 2703 1305 7 20 11 137 102 171 57 235 4 1548 5 7622 5 1 18 14 2 212 16 1 18 1926 29 2616 13 92 716 61 1054 3 20 211 29 2616 13 92 178 15 7528 5 1 843 6000 4 3460 588 155 5 352 122 47 7 1 6459 77 2 1445 119 49 33 544 8087 62 4453 3358 527 4 399 49 1 843 6000 1196 1 1 3216 1647 3 1 1484 10 12 323 2 13 2595 1 182 4 1 983 49 33 1364 1 34 1359 5 3460 313 2885 2677 8491 75 27 7410 137 6178 2576 6 2 5150 73 1 131 936 289 122 1 2576 39 30 25 13 872 98 25 435 255 47 4 1 5 3460 14 25 585 384 39 2 4312 105 1911 4 1 206 5 6303 65 1 803 13 659 2179 9 6 2 3460 4 1 692 99 10 59 45 3460 6 116 3123 45 23 22 28 4 137 603 9761 7 104 3461 15 137 7 1 1307 4 401 124 4 34 387 98 9 21 6 20 16\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 112 1 3270 4 1199 203 596 414 7 2 1829 551 4 5203 36 9 341 1 696 15 419 199 69 36 10 41 9262 3676 22 9057 16 360 179 7 1 3443 4 971 15 2 203 8001 5 2210 3 652 5 2135 16 72 35 112 5 19 13 252 28 1647 15 2 4 3 2183 1104 260 142 1 1590 4 9454 7 1 234 192 8 160 15 13 150 83 118 75 5 2600 1 4014 17 34 4 2 2585 1104 1453 51 12 11 822 577 1 366 2743 1188 1104 72 24 223 4026 1104 1568 7112 3 1104 2056 8 70 10 17 1104 109 1104 1 210 4351 4 4400 69 2 3 2911 274 65 197 2 13 5 1104 116 2031 65 40 5 24 2 11 2031 960 20 1 82 111 2246 4400 13 4 1934 69 184\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2477 6 198 3476 49 2 1557 65 2 524 3 1 1950 6 758 5 1533 7 9 524 1 2281 380 79 55 2974 5 64 1 8839 142 1 543 4 7252 49 60 44 1757 40 303 66 844 58 894 38 44 4593 6 46 13 7017 136 8 4429 5063 1835 44 129 1581 437 60 6 6212 3 60 196 44 221 111 30 1472 19 2 634 66 6 2685 7 2 287 4 44 3669 2428 60 40 195 274 992 65 14 7773 3 421 44 434 13 1833 2365 6 355 105 542 60 440 5 122 30 122 77 253 31 4510 5 31 410 4 27 498 1 1080 30 4643 2 46 2624 3 4510 38 1 7620 4 613 4142 13 63 8056 2365 32 1 5995 4 8097 570 1376 5 25 53 1109 6 7038 73 27 40 105 78 20 5 87 25 329 530 204 6 28 1261 23 173 47 4 7951\n0\t21 14 7 7 940 801 6 86 935 5 333 1587 7 1 166 2352 7438 30 49 27 7085 25 3 2697 49 27 404 25 1433 2 13 150 83 2635 5 56 365 7652 8 118 227 38 10 5 118 11 5 56 365 10 54 186 5291 17 72 1838 87 112 3 207 48 9 2082 4 2 21 440 5 45 10 1783 11 54 26 28 1689 17 10 674 1035 5 1006 3 1836 949 66 58 21 88 815 87 311 73 72 22 3980 237 295 32 1 3405 1623 33 1314 13 5676 1 744 9 21 965 2 38 1 4 375 15 1 341 20 5 798 35 396 2656 7 44 6026 4017 198 2275 29 9 6339 5654 4 7220 1556 9491 3 17 98 805 9 21 11 1 2747 1124 3 958 22 34 28 3 1 5102 37 45 6319 7 172 1742 8 1331 27 88 3097 195 3 9032 98 75 209 25 4740 2952 40 71 37 862 91 16 25 1608 8 145 1 5806 4 8104 3 37 42 34 50 20 13 1118 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 1193 4 704 41 20 28 1143 9 21 324 4 218 1272 7295 19 28 177 3 28 177 116 2671 5 1 278 4 1777 13 4052 5162 5 2303 202 154 178 244 1356 3 20 198 7 2 53 699 519 23 555 3719 4839 224 41 155 142 39 2 5145 5 1959 1 97 120 5 865 3 2210 801 33 87 5 43 17 936 297 863 155 5 5112 5943 13 8 36 1 158 3 55 36 5 31 8 198 291 5 10 77 1 29 137 1164 719 4 1 362 2341 49 8 173 2460 3 56 173 149 1 2157 5 99 235 1939 51 6 146 38 133 161 104 7 1 2446 534 4 11 8 149\n0\t8 159 39 183 9 628 61 2 163 828 1 1974 4 1 2383 66 22 377 5 176 5840 39 176 810 2166 49 33 3 1 1983 2837 22 162 5 787 408 1395 243 68 3858 2 3148 32 1 91 505 91 2132 3 91 2511 1 363 59 734 5 9 1378 4 2 803 13 2361 591 1230 49 1 277 82 120 1173 77 3 630 4 126 291 29 34 619 5 149 2 568 3761 125 1 9924 1 178 106 1 1081 886 4 1 429 2458 32 1 1 121 204 6 591 565 3 6294 17 20 2532 1 4992 892 222 106 1974 4794 259 31 4737 9498 4 48 6 377 5 26 65 19 2 391 4 3 418 295 29 1 5404 4 1 2195 510 259 35 2336 1 2168 72 152 70 43 7 9 1146 14 2110 94 25 9678 4794 259 6 3295 125 5 1 30 1 1272 4 1 161 259 3 6652 196 25 522 757 142 30 1 10 12 1 59 185 4 1 18 8 13 659 1382 5 1 215 218 8542\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 5971 718 18 16 261 35 5195 11 661 2543 40 433 86 1600 16 3602 1406 3 86 356 4 271 1585 6 31 491 4 2 471 72 414 1 486 4 3 1 1176 14 33 19 1 1486 4 2 40 9686 2 4922 66 6301 34 1 7 25 4579 27 6 9017 5 2 3 693 3726 37 75 88 9 1176 4 170 417 815 2108 5 186 122 19 2 4890 5 1 1585 5976 3 99 1 18 3 839 1 5101 3 4 9 84 1406 69 539 3 1717 15 1 1176 14 33 5880 15 6548 385 1 744 3 335 1 570 5228 49 33 4688 155 277 2584 406 7 62 408 569 5 2 3 43 84\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 1 59 18 180 107 2523 7 17 10 83 3821 3 8 179 27 12 59 84 29 1299 487 12 8 1328 9 6 229 25 113 1663 1 265 6 1051 1333 144 10 1196 1 918 7 8210 16 113 265 5 2 18 883 146 36 195 27 40 31 918 3 457 25 292 1 196 7 1 111 15 1 21 4072 90 273 58 103 374 41 7 1 51 213 5 78 5 134 197 5089 1 994 23 130 56 139 47 3 70 9 18 116 1894 213 528 1013 23 165 9 18 7 110 48 422 88 8 815 134 571 16 139 3 70 9 18 9314\n0\t270 2 163 52 68 1 443 197 41 302 3 4636 5 822 1 21 5 3882 95 4 1 845 3016 7 95 2846 3293 13 777 2 747 2219 19 1 1296 4 1532 21 8898 11 1 59 124 11 64 1 1208 4 2 18 856 22 4151 34 15 91 2653 6791 443 593 3 2 163 4 5 1369 730 14 13 777 103 560 11 124 36 4668 1 41 70 132 8 214 126 5 26 8208 3 46 6831 17 1074 5 1 1955 4 1532 36 2359 33 22 9120 609 3 13 743 156 172 989 283 31 21 928 11 23 54 1458 26 1979 5 43 5056 3 2 163 4 2157 3 3 300 2 156 1813 2200 30 1 402 10 907 11 3878 22 468 70 286 174 525 29 1 551 4 1600 4 1532 3 4 448 34 11 5 3272 120 3 1650 11 22 301 6749 3 13 6450 10 95 1197 11 1 1532 40 3 5166 20 29 34 49 23 64 124 36 5459 2359 11 87 162 17 973 1 210 4 1 124 11\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 40 165 375 1659 1 74 3 80 2846 4 66 6 1 935 551 4 2 53 9 1547 151 1 21 20 59 832 5 99 17 93 3426 1 732 1687 4 14 45 27 41 60 6 2721 5044 85 4 62 386 500 9 907 11 1 21 481 42 2996 378 10 1 956 1228 5 2323 9138 16 1 21 3 297 2920 15 1027 7 2179 10 56 6 46 46 46 46 46 46 46 6149 87 725 2 7359 3 9412 19 2 1114 5997 468 149 10 237 52 240 3 837 68 133 3248\n0\t3007 5567 43 2029 63 1718 30 7520 8476 3088 823 3 5374 15 25 976 410 69 3 20 39 19 28 17 19 102 1 4856 4 9 1262 5335 13 6867 40 1092 2 178 197 2984 913 265 7 1 5157 8887 713 5 90 1 631 272 11 1 18 6 274 7 5131 1052 1270 794 45 10 1121 37 27 11 272 19 3 19 3 75 6 9 31 23 228 322 49 1 18 475 741 3 1 913 265 475 116 1455 23 357 9696 2 678 218 1324 475 42 1011 13 9166 1 18 380 34 415 35 176 36 449 11 1221 190 28 326 2 78 1186 3 300 55 7320 13 6482 801 8 853 213 3685 2 185 4 380 449 5 34 415 11 176 36 458 11 33 105 190 28 326 1364 2 773 6444 1212 33 24 227 319 5 1 7773 13 96 145 246 1196 2 1212 7912 322 841 47 44 3 98 4547 64 35 1308 115 13 1 18 12 383 7 315 3 482 66 199 1 2364 4 543 7 86 1571 1574\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 54 26 2 3245 368 1669 45 10 57 2 53 5826 10 4088 19 1 687 296 953 119 69 8337 6 160 5 121 6 2255 6831 17 15 5666 1635 4 1 1557 35 6 1 113 353 7 1 21 3 27 6 650 1968 45 1 1560 7 1 21 21 12 301 30 5164 388 3 478 802 3 80 4 10 276 36 3532 21 3531 34 7 399 45 23 83 438 133 2 18 11 276 36 2 1465 21 6015 9 6 2 21 5 836 8 497 11 54 26 227 5 134 19 9 158 297 422 88 56 2600 1 1560 11 6 229 402\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 46 53 73 10 320 49 8 12 170 49 8 4537 10 12 37 1434 9 18 6 9 6 2 53 18 15 58 78 319 3 6 93 2 2548 18 73 62 2473 6 46 184 3 3391\n1\t143 335 5 43 27 515 217 270 1 1617 5 309 19 257 1401 4 1 3810 15 43 327 2629 274 1657 642 3769 3242 3495 827 3803 949 4231 19 2310 217 81 15 1 51 22 43 82 840 168 14 322 2 434 6599 275 15 2 6407 217 757 47 380 1 21 2 732 541 19 48 12 229 2 402 2039 27 1143 5 25 443 66 90 16 43 327 3407 217 8 338 1 383 106 1 443 6 845 275 101 217 568 4 813 6865 19 1 3135 7 2 327 2081 13 1 3810 6 4275 547 2653 265 217 397 1353 292 43 4 1 293 3624 363 176 2 103 9823 1 121 6 167 627 32 307 602 15 1472 7 2 53 1663 1 117 797 217 870 1522 4354 498 65 14 1557 28 4 3522 5768 13 92 3810 143 473 47 36 8 57 909 217 34 1 138 16 194 45 116 2 203 325 217 436 175 146 2 222 264 98 9 6 109 279 3698 689 8 338 10 217 96 42 373 279 2 836\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1653 7 44 2333 6297 1 155 4 44 522 47 19 1845 6155 12 1 466 2851 4 2 3 891 1301 35 339 6846 1 747 1687 4 44 959 1374 8 63 149 82 5057 1175 5 3183 9 82 68 1472 2 7721 140 116 60 245 1 1898 4 493 35 6 5 6163 44 19 37 11 1 526 63 1812 1 6746 30 2295 688 6155 89 2 934 15 1 534 28 3 5160 22 5 26 30 9 4519 959 1281 17 34 1 1301 1144 41 261 740 1 265 1210 70 434 49 33 735 7710 5 912 33 241 6 2 243 6155 3776 16 13 203 739 276 4543 40 2 772 201 35 130 90 2827 7 174 427 4 1093 3 5469 772 66 662 1535 28\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 10 36 1847 3 45 10 276 36 10 191 26 3095 9 6 30 237 28 4 1 210 104 8 24 117 107 7 50 389 500 1347 7931 345 1177 541 1275 1152 5 31 459 3509 3 1056 67 4 7417 157 14 2 7386 1 67 6 301 3 1693 5 836 732 1637 4 1 119 61 903 3 400 4178 10 181 11 34 4 1 238 168 61 4742 9012 371 30 345 119 985 3 586 1014 123 70 400 1326 7 9 28 1815 11 6 1 28 3 59 9473 5 9 135 45 23 175 5 64 44 1326 39 884 890 1 18 318 38 31 594 3 2 350 77 10 3 468 1236 2 212 163 4 8 2474 1379 11 58 28 64 9 18\n1\t2637 322 16 28 177 1 16 9 952 4 882 6 152 4638 32 1615 5 3 136 2360 2344 1607 54 3082 9 882 6 42 407 59 1056 52 68 855 16 2 5671 238 803 13 3926 315 3433 6 56 1 232 4 21 11 270 2 7988 3 9965 126 5 311 73 1 7988 730 22 5788 8366 94 4029 4 133 81 70 383 197 95 9964 1089 97 81 61 5 64 9881 3 3 1 4 1 1305 658 813 34 125 1 1888 17 1 233 424 49 317 383 15 2853 42 202 732 11 813 76 258 32 31 13 252 21 6 2 1596 709 347 108 10 6 306 11 1 124 100 70 9 2637 69 17 45 33 61 2915 5 3933 33 54 322 480 86 9 21 6 2915 5 13 92 59 3731 8 24 6 1 1673 3 5826 45 1 1350 4 9 21 57 383 10 15 31 1128 5 6236 1 41 1 1058 2743 2046 7800 8 894 261 54 24 214 10 13 724 14 10 8 128 57 2 299 133 9 2803\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 997 9 2 156 2017 989 19 231 9669 3 246 43 2122 4 1 249 131 32 50 9315 636 5 99 10 385 15 50 843 349 161 4111 8 130 24 165 43 9351 5 139 385 15 194 7675 9 6 39 20 59 6 10 2 668 15 5684 1 9872 978 363 3 3916 30 460 223 576 62 8374 10 181 5 24 71 1160 14 53 7072 9618 648 598 537 237 105 161 16 9 232 4 7 1 911 4 1 48 12 8 45 317 2 568 325 4 1 212 6765 3 7279 139 16 5313 3823 1013 317 1774 5 70 183 4171 875 3980 3980 237\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 192 2 184 325 4 6586 3 8 219 9 21 94 8 57 107 66 12 13 677 22 124 11 22 573 3 51 22 124 11 22 17 9 21 39 270 1 13 2718 61 37 3336 11 72 61 47 4 2709 257 319 852 2 547 803 13 5827 29 34 5130 55 760 592 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46 327 238 15 31 67 66 152 153 240 227 5 6156 133 378 4 9802 576 5 70 5 1 53 3955 246 7913 3 1605 10 1095 854 7913 7 11 3 137 6938 6 39 279 4025 65 39 5 64\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2199 82 1755 24 9 6 31 8363 135 470 30 1403 3 428 30 44 5 9439 1 10 6 2 3 899 38 4 2 147 887 707 479 3 415 929 77 17 479 2 2712 4 81 205 53 3 573 15 14 1618 14 95 13 7254 4438 738 9 1324 97 7113 3016 6 1 2964 189 9026 919 3 7032 27 3628 3 8414 17 1037 6 20 1 129 35 380 9 21 86 356 4 136 27 152 7043 1360 1623 11 3277 63 26 5 2 129 37 44 5 122 6 6544 3 49 60 432 60 666 60 76 3081 10 992 45 27 451 5 41 55 187 65 1 635 45 468 59 26 132 6 1 7529 4 7032 278 2607 717 14 2 169 641 919 11 60 181 1070 904 41 17 243 2 287 35 5526 49 60 615 194 3 451 162\n0\t3 1874 4 4806 28 4 1 1340 546 4 1 18 6 1 106 791 10 213 1013 42 3 1874 4 2 184 465 15 1 18 6 11 42 37 775 6819 23 173 64 835 160 19 350 1 387 66 6 52 4 2 6002 68 2357 7 28 4 1 7242 1025 23 173 55 348 48 317 377 5 26 283 207 37 13 872 49 10 255 5 7242 1025 1263 28 4 1 4120 180 107 81 134 11 619 503 3 207 8 63 134 11 1 184 3673 114 1197 503 73 8 143 64 10 9385 1 302 8 143 64 10 588 6 73 10 89 332 58 1821 8 495 2704 10 16 1259 17 8 76 348 23 11 50 493 3 8 1019 2 53 2290 269 5 943 546 4 1 18 5 149 235 11 54 24 11 29 399 3 34 72 214 61 52 188 667 11 10 247 13 1601 7 399 9 18 6 152 138 49 23 99 10 15 1 2219 6367 11 90 299 4 110 8 112 930 203 484 17 9 12 105\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 24 219 43 167 345 124 7 1 2747 17 48 1 898 61 33 517 4 49 33 89 9 108 57 1 397 1176 590 77 1713 49 33 310 65 15 1 312 4 253 194 73 23 273 24 5 26 1568 434 5 149 95 3805 7 592 13 150 192 2 325 4 80 7435 3 335 6040 9554 8016 17 1 168 32 1 562 39 89 9 903 3 13 858 80 24 459 1113 51 12 924 95 263 3 1 121 12 5128 8 495 351 50 85 6396 592 13 35 5933 9 21 845 843 40 5 26 185 4 1 397 1404 41 41 422 33 24 2 46 1292 4 13 150 191 867 8 12 52 3336 15 1 388 35 419 9 2 4085 1095 66 1699 79 5 760 110 1479 851 8 57 2 330 21 5 99 5 43 4 50 2845 7 3648 13 347 259 54 26 260 45 27 367 18\n1\t6 43 84 4400 248 7 1 2904 7 28 2859 1 1741 1296 4 2 129 6 620 14 27 4920 7 1044 4 2 8290 2767 1 166 919 35 6 31 8859 40 1209 1537 3306 15 1 2458 19 1 2282 7 25 17 48 3 22 56 403 7 7294 886 6 2060 1749 1 176 16 612 46 362 7 42 34 9874 1 5472 1 4 1190 3 1 1 5692 2639 4 864 6768 7094 5106 1133 7 1 4 5341 966 10 6 2 1442 572 5 176 13 1511 5119 1 1249 14 109 14 1 915 729 3 4633 4 1 206 341 1 4203 18 8 179 1511 12 2 103 1628 4829 6 20 65 5 1878 3 152 255 142 167 904 7 2 156 1192 7467 6 650 53 341 169 44 15 5393 3190 6 37 10 40 5 26 107 5 26 174 178 6 49 7094 271 94 1 5 1193 550 10 5453 5 2 1430 1146 14 60 7619 3311 122 140 1 15 2 582 29 2 8575 43 148 53 1560 7 3617 13 6685 47 4 843\n0\t870 2234 2243 1 288 2743 125 1 2644 114 1851 2 222 4 315 8 152 337 5 9 18 19 1 3397 11 1183 5035 12 110 136 1 1167 6 3 1 443 1035 5 1 1646 4 4 1 21 6 20 7 1 166 7 233 8 191 6001 11 94 31 594 4 1437 704 10 12 1 263 41 1 121 11 12 9695 1 158 8 1283 2299 11 8 12 928 5 889 50 16 5194 3 472 1 680 5 597 341 8 173 2209 1 226 21 8 2117 47 145 3584 32 1 746 11 1 393 190 24 303 2 1061 17 30 11 272 8 339 4219 45 1397 36 5 64 146 385 696 456 248 15 148 860 98 420 354 235 30 1 845 102 7896 16 665 4668 1 1646 16 8091 41 4 205 4 66 61 829 30 1 964 1803 395 1081 15 1469 3 205 4 66 22 124 5171 227 5 8270 172 4 1200 36 476 42 20 396 1803 951 79 3 436 1397 243 1876 5 849 17 83 134 23 1121 13 3382\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 328 5 99 10 3275 80 4 1 387 3 55 193 8 24 219 10 16 1 576 843 1166 8 24 20 107 154 13 92 131 6 38 1954 35 6 259 35 123 1949 16 25 379 6 643 30 2 606 2561 32 2 2599 4244 3 27 2080 31 3568 15 2 3 40 31 4116 4 25 8986 31 1217 635 35 123 267 3 123 3079 4 3267 34 1 85 5 186 474 4 25 277 3834 6581 33 637 44 35 6 1 330 6005 3 1 13 3828 34 414 457 28 9544 15 58 28 5 352 126 3335 13 7 1 983 4649 196 2 282 493 3 406 6 1136 5 44 3 24 3 3332 418 5 780 7 1 147 9 131 6 8175 45 23 36 1 157 4 3 207 37 487 762 1561 3 1696 23 76 112 476 2887 418 5 70 138 7 1 393 99 194 23 76 112 1027\n1\t1631 17 5 26 1784 8 12 2 222 945 49 8 455 38 1 232 4 280 444 372 7 1 108 17 94 133 1 18 1 2259 419 111 5 84 1451 16 44 14 31 2099 987 543 1027 1 5757 17 657 37 6 44 34 137 35 11 481 3603 76 26 1414 16 2 4222 57 5 309 2 56 1618 129 608 1360 19 1 286 2 1316 583 19 1 1208 608 3 444 248 528 2028 5 110 60 151 23 2655 3 60 151 23 1717 608 5 757 1 223 67 386 8 88 139 19 38 44 16 444 3 1990 5749 24 248 2 53 329 854 22 245 8 12 243 945 15 1147 101 1130 7 132 2 346 280 3 25 278 384 13 659 940 2155 863 23 19 116 533 15 86 1244 2106 3 741 15 39 1 260 1234 4 1552 7 1 994 8 54 496 354 9 18 5 34 341 52 37 5 69 8 192 56 1096 5 785 1 18 6 160 5 1173 1126 4 86 1953 1042 3 1042 29 82 1678\n0\t43 4 1 1381 1120 1995 7 3203 23 2198 236 20 78 16 126 5 87 463 69 571 5 24 447 15 239 82 3 519 15 1 1120 41 5 38 1 558 298 416 2358 4894 277 268 146 653 11 8 179 12 160 5 734 43 6952 4 589 5 1 108 1334 2180 17 162 56 629 73 4 458 3 17 162 56 629 73 4 458 988 2215 9154 2 103 1753 17 162 56 629 73 4 656 1 59 177 11 1253 235 4 1005 1548 5 1 18 310 29 1 182 15 1 469 4 1740 66 56 985 47 1 4 157 7 9 1526 103 3092 14 1 413 820 200 288 29 1 823 106 5 139 16 13 829 9 7 315 3 4308 66 6 1576 8 1331 5 272 47 75 4005 9 569 424 17 1 59 177 8 214 240 12 1 362 176 29 171 36 3 6730 794 31 1923 10 12 5287 5 64 75 78 7351 69 7 69 152 276 36 25 129 4 4184 1602 7 1 2377 3533 8 83 96 8542\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 772 3 1065 67 3 1014 20 2 625 53 2519 20 55 2 427 91 227 5 26 501 3 58 1201 55 1 7729 2403 15 1 305 1049 75 3365 1 171 61 3 75 103 299 95 4 126 61 1 3 3397 12 3 1 1200 5 26 1119 41 2959 1 61 5963 3 3 61 1953 5 170 1161 62 136 7 62 145 20 1040 227 5 1116 194 17 2 103 238 228 24 29 225 721 79 3 50 1327\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6004 6 28 4 1 80 2384 188 8 24 117 4164 13 7017 87 2 2454 3 925 9 6223 13 1 443 3 246 116 171 9155 123 20 1810 14 66 9 21 965 7 20 11 1 523 12 34 1 4092 243 72 61 303 15 2 658 4 301 6293 120 470 7 11 80 6293 111 395 30 137 35 83 118 75 5 13 252 21 380 1 1418 11 10 12 248 5 1376 5 1396 35 83 118 1 74 177 38 3164 801 6 80 4 13 3793 1634 10 666 2 163 38 8064 3 48 42 390 11 2359 12\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 379 3 8 5187 1 427 5 64 4689 29 1 21 3517 94 283 1 158 8 63 365 144 51 12 132 2 223 3875 4689 6 2 1462 67 38 31 1258 2771 189 102 1098 60 6 2 170 1753 27 6 2 6977 47 1 21 154 7343 7 257 4579 51 662 95 2461 168 41 235 11 6 254 5 99 69 86 1 4 11 56 3738 23 7 1 1 21 6 1325 3812 738 2750 72 336 1 178 106 3042 5488 4689 5 2062 2 346 241 9 6 44 74 121 3044 278 2716 15 79 16 2 342 4 2569 496 4869\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 4407 10 12 31 313 5024 4 31 1980 1 847 12 595 9508 17 162 147 32 10 12 373 138 68 909 16 2 834 18 15 58 13 92 1138 847 12 10 12 2 264 952 4 216 16 1 834 1098 43 4 1 120 61 2 103 17 10 12 52 68 89 65 16 15 1 1212 3 4 1 7754 1 265 12 2496 17 11 12 425 16 1 108 9 12 373 20 2 21 11 965 1 120 5 77 13 394 47 4 1731\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 2 84 108 834 89 1 260 6626 154 454 35 8 24 3475 5 38 10 367 33 336 110 307 9804 12 1179 16 1 185 33 5600 3 56 40 2 958 15 1014 12 425 16 1 60 12 610 75 8 5332 768 307 35 1336 107 10 8 354 10 3 8 4810 23 76\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 19 29 358 41 37 7 1 2341 28 2156 2 156 172 1742 16 943 1318 8 83 320 1 389 67 17 48 1373 22 1 102 453 32 1 1284 807 40 57 2 2557 3600 217 1345 770 2 3160 2340 6059 3327 189 923 3 5288 959 25 816 153 16 3643 69 10 255 1796 6 2 4053 295 32 1531 9266 2 2245 7302 7 48 191 230 2 13 659 97 1175 9 1819 15 1 9971 97 170 543 69 1 576 41 1 3667 14 10 498 827 15 43 216 1 102 63 3472 2970 217 262 217 6059 6 832 20 5 2624 1467\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 447 6 2 1526 525 29 2 686 589 38 893 229 2 18 6063 9 739 6 2 3489 1743 15 2 53 201 3 103 422 160 16 110 1735 2519 54 24 199 241 11 257 447 9716 129 40 1 7060 379 7 1 1561 2 4 9509 19 1 601 35 24 162 138 5 87 68 3131 62 16 122 29 25 3 58 329 7 2924 4 101 2 29 1 1726 9 739 88 24 71 53 2331 29 1 5867 772 213 463 3 1677 7 9107 9 1962 16 1\n0\t5 564 43 3413 3873 19 1 215 4994 17 444 2366 73 60 693 1 906 1 4351 6 128 51 3 81 357 2057 19 1 757 6 31 7981 525 29 1 661 17 831 10 153 652 235 147 41 1303 5 1 7 698 10 9834 350 4 3855 6304 679 4 2 1420 3653 42 7981 75 9 213 14 3 679 4 9560 9 148 41 6 9 2 4316 2 1420 7875 1 1043 6 573 1 265 6 4127 1 363 22 6985 202 297 6 91 38 476 6204 1 21 63 24 2 356 4 29 28 1746 2 282 7 1 18 1176 666 5 1 2250 4 1 429 33 22 1673 5009 4547 2055 116 429 14 45 10 61 257 5 66 27 7870 153 467 235 5 503 23 176 36 23 414 7 2 3 903 4834 61 227 5 20 2580 2424 9 461 3093 165 95 9256 7 794 60 7176 7 1 21 3 261 118 106 8 63 751 95 395 74 177 60 19 1 3 9454 1 898 6 50 5865 207 48 8 12 517 16\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 1501 458 197 816 2577 363 3 1321 1835 54 100 24 390 1 1280 645 11 10 1322 6 955 4454 15 2 263 11 9514 297 47 16 23 3 6 961 29 154 8979 3 93 1669 453 30 34 1 1488 5147 32 1 356 4 9 21 419 503 57 219 375 268 105 97 183 253 4460\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 46 6577 158 470 3 15 43 313 129 121 11 29 268 6 1768 866 69 16 665 1 178 15 1 5730 17 6008 1277 3 25 2866 1 119 6 6069 1066 47 3 7420 1 2041 129 6 591 240 3 266 31 202 280 7 1 157 4 1 5803 42 89 935 11 1 2475 22 39 14 3234 3 1578 14 1 9257 4720 13 743 342 4 4040 8 214 1 393 1056 14 10 1 8784 1134 77 1 3580 4 1 613 3 2028 66 1 4 1 613 120 66 40 71 65 5 11 2115 93 8 214 1 466 633 129 595 103 52 68 2 16 1 4 1 4128 34 60 181 5 87 6 3 14 1 1360 559 1112 10 689\n0\t0 0 0 207 167 3976 8 449 97 81 22 5794 5 35 414 34 125 1 3 34 125 1 1162 1 4842 40 125 2 9356 8 512 1711 3 9648 7 1443 3 140 50 1842 5452 3 8 24 71 4587 5 50 913 3 216 5 7622 5 1 4277 8 192 46 4286 5 1 3 4 50 4842 24 71 140 47 157 5 3 6264 16 1246 140 6835 7 639 5 7622 155 5 1 1162 8 24 118 97 32 34 125 3 8 24 5 4179 36 24 286 5 889 28 454 35 2615 11 72 130 1977 261 41 20 1942 95 82 4842 571 32 1 81 7 1 560 93 86 747 11 127 22 1 879 1 2152 333 5 4735 2 212 86 2 4842 4 28 9356 1046 3 127 22 364 68 28 8 192 273 1 82 81 4 82 54 20 36 5 26 5484 30 1 8281 3 97 52 66 22 641 346 35 333 3 20 32 1 5531 1402 7 639 5 7894 62 221 7908 41 1255 3291 140 62 37 404 4842\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7225 6 2 595 810 267 38 2 658 4 6643 5 142 239 508 6806 30 58 907 8397 91 36 43 1545 8 88 798 17 10 100 86 1187 409 830 75 53 9 88 24 71 45 72 57 1 1338 1177 1147 3967 7 1 280 4 5489 6047 13 8420 6 5489 370 19 1461 6454 1785 39 2284 73 1 1236 7709 19 4849 131 6 1786 176 94 239 82 3 359 648\n0\t44 77 5 149 47 406 444 1 184 6122 9 15 2208 655 44 30 2 2910 213 2 1189 8842 1862 40 6547 44 14 2 3211 9 5 199 32 2765 2408 193 7947 9897 128 266 1 280 16 7902 9 6 1 232 4 4533 18 11 173 369 31 2158 9720 6210 257 3213 5 914 164 2917 648 15 4071 19 1 6 4927 30 2 4062 29 2887 29 199 5 26 9806 127 102 4714 22 3806 94 101 6537 30 35 451 5 44 4071 6 553 9 76 90 44 39 31 2116 287 213 11 138 94 362 453 7 124 36 217 3 31 1244 287 15 2278 3 44 124 15 9609 8282 1553 8205 44 3 17 11 310 29 2 2154 395 651 40 1524 433 44 1 572 6 3 2859 15 293 1456 286 1348 2705 5 149 1 623 7 9 42 9448 3 4071 173 348 95 4 25 11 244 4667 73 60 89 122 5245 3719 243 24 2 7307 1544 65 25 8 560 45 846 152 179 11 12 2835 45 261 602 5005 32 4577\n1\t121 30 34 4 127 171 6 46 452 1 6 56 27 276 84 3 27 478 36 1 5499 129 1 51 22 43 56 892 168 7 9 2814 1 5991 6 56 53 3 43 4 10 6 1 18 6 829 46 452 1 265 6 452 1 21 6 169 240 3 1 18 56 863 23 160 318 1 714 9 6 2 46 53 3 3765 135 45 23 36 776 1183 5340 763 1420 763 1 344 4 1 201 7 1 158 581 2895 3 240 382 124 98 8 2474 354 23 5 64 9 21 115 13 115 13 150 165 9 21 19 2 293 305 11 40 1207 1 3 1 9748 4 1 32 9908 408 64 45 23 63 149 9 3712 15 277 1213 17 382 124 19 28 305 29 115 13 614 23 36 3020 124 8 2474 354 3020 4 1588 1 5953 164 762 1 5953 164 429 4 31 5659 762 1 4351 4 1 3020 31 296 3020 7 1588 4055 7721 3020 1 1198 8114 50 2 3020 91 2968 3020 1238 1481 9257 3 1209\n1\t46 2696 4 2046 528 15 5447 11 1473 1 1598 22 3424 30 8239 37 33 114 328 16 43 1592 1 633 120 22 7 2 111 11 415 4 1 717 54 20 24 9249 55 2648 871 7 9 6 20 2 91 1606 10 380 2 53 280 2726 16 50 752 5 176 2339 243 68 31 34 976 13 1268 302 9 21 6 2 430 4 2550 125 82 834 124 6 11 51 6 20 28 625 5079 1218 2 4270 11 1647 15 1 74 865 158 3 3091 19 140 5 218 2960 202 154 834 21 6 331 4 5773 9 6 84 3 399 48 54 1 1756 26 197 94 1 85 140 9927 202 26 138 17 9 28 1 20 308 123 154 625 454 19 1 412 1283 118 1 911 5 2 788 11 58 28 40 117 455 183 3 1173 47 7 4923 8 16 28 192 13 92 857 3 1384 4 847 6 273 5 359 1 838 4 205 5304 3 583 8247 10 6 2 21 8 192 1774 5 99 316 3 316 15 50\n1\t337 5 64 5139 73 8 12 7 189 8 2242 843 719 54 26 1111 180 71 2 325 4 434 805 1531 9684 8 12 301 30 1 2132 505 861 11 9 21 36 82 746 1 843 719 4859 4497 153 309 27 6 27 12 1711 16 476 49 8 99 9 21 145 1506 242 5 149 180 485 29 1 3 617 1887 450 75 27 12 446 5 899 1 443 7 3 47 4 1 3801 15 34 1 9151 6 2 948 5 437 9 18 12 383 7 5894 42 2 1152 11 1336 612 2 8927 324 4 9 19 8 221 2 305 9388 3 420 186 9 125 6257 95 1393 37 45 317 2575 256 9 21 47 1 111 10 130 26 3 8 83 118 48 653 29 1 9 130 24 7097 113 3236 113 1651 113 2132 113 5785 48 124 61 33 8 343 1140 16 4497 29 1 5371 49 27 114 2 3362 5 3189 19 1 1250 33 130 24 71 685 2 3362 5 4497 16 2472 199 28 4 1 700 124 4 34 290\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 20 1455 5 134 9 6 28 4 1 113 1105 4023 117 1001 1 67 270 334 7 2 3047 8273 17 515 10 1819 15 1 701 4 2 3 1784 8832 6844 1944 30 123 20 241 11 1 701 12 7412 3 3370 30 1 625 164 3 193 34 82 175 5 542 1 524 27 5 4154 15 25 13 92 1106 6 428 3348 3 884 3 1834 1 1560 2268 1 714 39 1 185 1873 15 1 3763 38 8692 6 2720 20 2 222 47 4 1888 1 393 980 69 4243 35 56 6 69 3897 383 7 673 1729 3 30 2 1077 6 1 80 1127 980 8 24 117 107 7 2 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1602 2770 6 28 4 1 1340 7655 117 69 229 1 6 1 113 7757 267 180 117 107 3 10 6 2 16 261 35 1371 2 53 180 219 9 18 3174 4 268 3 154 85 8 64 10 69 8 128 24 1434 9 6 373 28 16 116 388 9889 8 4810 11 23 76 24 5 99 10 375 268 7 639 5 785 34 1 716 73 23 76 26 1094 37 78 69 11 23 76 773 350 4 6073 6 13 3422 51 22 2 163 4 211 7655 47 51 69 94 133 9 7757 1073 80 4 126 76 291 36 45 23 24 100 107 10 69 70 194 99 10 69 3 23 76 112 9869 10 76 90 23\n0\t0 0 0 1104 41 300 10 39 6 9 565 1 119 6 2 772 7179 4 1 1239 66 6 6445 220 42 377 5 26 2 20 2 4384 167 78 1 389 18 181 36 2 772 1015 4 1 1239 15 168 1 188 11 653 7 1 1239 59 2 163 52 903 3 106 1 74 57 2 84 1249 9 28 7211 4 171 3 1 121 6 650 565 350 4 1 53 456 7 1 18 22 556 2829 32 1 1239 14 6 670 154 580 919 642 1 879 35 1121 7 1 74 108 8 853 9 12 89 65 30 2 249 251 1823 2541 17 207 58 33 143 24 5 473 1 1131 77 2 108 59 28 177 6 501 3 207 1 2944 5007 245 14 127 22 1677 774 14 53 14 1 879 7 1 1239 55 9 213 5459 10 845 2 1020 4 3441 45 23 24 2 680 5 64 10 16 3 317 2 826 2112 10 88 26 279 3698 827 45 23 175 146 2944 11 213 45 1375 925 29 34 4484 7224\n0\t22 5 1110 5 132 2 138 4236 45 8085 12 160 16 2314 3 928 5 87 10 7 1 921 4 2 91 141 109 300 8 130 1570 9 7101 13 777 20 39 1 17 5469 1 102 210 171 5 309 374 3 7365 6778 3 5668 479 205 761 3 15 1 9709 3 7365 38 1 1845 444 303 516 670 1 389 135 8085 55 271 14 237 14 5 24 44 878 38 1156 122 260 14 60 2 1598 169 1874 2787 5374 22 7 102 264 168 16 58 53 302 10 12 5 878 19 112 4 2270 7 62 13 150 76 187 1 21 28 4 86 102 460 1359 5 1994 4 1 6502 8769 7040 603 2691 29 2 156 264 985 7 1 21 106 27 456 2829 32 6 38 1 1340 2482 45 8085 1576 16 199 5 149 28 4 1 644 59 296 171 14 1 59 211 1871 98 174 8353 4 1 3341 5 122 16 7416 1089 1 4 368 267 7 1 1604 54 10 24 1977 16 122 5 87 11 136 253 10\n0\t44 2896 1175 3 1141 261 35 196 189 44 3 44 13 123 9 18 23 118 23 22 7 1245 49 1 1089 1079 357 65 3 33 22 39 1 1079 32 1 74 158 791 829 142 2 249 1250 1788 25 1788 636 5 1110 5 1 234 4 1184 2253 9503 125 764 172 406 3 15 2 445 11 229 2777 1 2591 4 2 5164 2581 3 2 388 443 2551 16 1 9129 987 39 134 11 979 541 153 8258 109 5 3324 2301 8 24 89 408 104 15 52 397 1548 68 476 3 440 5 1622 2 1414 1925 2483 366 358 30 350 1 599 85 15 1131 32 1 74 21 801 276 36 10 12 556 142 2 6977 1919 6 316 53 14 9503 17 1 21 6 37 3365 11 23 357 5 230 1140 16 44 16 993 7 9 3095 8 1266 29 225 1 74 21 204 72 24 58 1224 8130 363 1623 11 6 29 34 6041 443 1093 586 5070 3 1043 11 276 36 10 12 248 15 102 3863 960 925 9 29 34\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 89 30 710 1338 8227 3 3 8592 30 626 763 6065 3 578 9 6 2 1683 3 9167 901 4 75 147 2049 19 42 1393 8 74 159 9 49 8 12 2 170 2670 2042 349 2195 3 29 11 717 10 128 2610 437 1311 75 686 8361 56 12 283 9 1 212 1380 4 72 61 1565 47 35 1 2641 4416 75 51 3275 486 61 3 75 33 256 62 486 19 1 427 7 2 1261 106 80 81 54 39 549 3 552 62 127 2950 413 256 62 486 19 1 427 3 133 9 39 50 16 450 99 45 23 6 1 113 718 8 24 1454 117 575\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 8 219 9 141 3 8 1647 5 64 9030 120 2210 8 88 230 9 54 26 31 313 2129 49 23 70 11 9523 3 1 18 1314 7917 137 1691 1 839 6 8 57 11 46 507 533 9 108 626 7789 3 4719 8536 5811 262 6286 3 3007 627 546 66 61 205 918 1 607 201 12 1381 14 627 1749 2 1707 9193 16 1 572 5 2323 778 8 63 134 197 95 29 399 64 9 18 10 76 20\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 143 230 14 45 420 71 5323 36 8 114 15 1 2548 234 6 128 1 4 1212 3 1 36 5214 86 20 5 132 31 1809 42 1 523 6 4 1 584 916 127 22 20 1 120 72 336 32 29 2 658 4 1098 8 405 5 94 2 156 419 58 28 7 62 260 438 54 186 9 2556 48 72 24 204 22 277 4260 218 425 6 31 2221 4 59 557 45 23 63 1942 11 442 6 152 3 11 444 2 6524 578 2164 3 11 6 31 3399 3646 3129 883 14 8 36 5 637 3676 6 229 1 80 4 1 4494 5214 220 83 99 9 154 973 4 9 388 1071 5 26 1212 3 1 4494 6 128 2 1262 6593 4 2717 3 1 423\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 2 163 4 85 8 12 288 890 5 64 9 141 204 7 873 41 95 104 24 58 8898 7 9328 72 63 149 43 4 137 104 7 43 2790 3 8 39 214 8 12 852 146 501 17 1 59 53 177 7 9 18 6 1 74 1146 1 344 4 1 18 6 509 3 39 908 2212 15 2 163 4 4118 1025 3 2 509 471 8 192 2721 50 85 55 523 38 9 135 1140 17 6 1 3880\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5159 313 665 4 1 2577 8712 9611 4157 1160 7 1 362 1607 7597 71 46 619 5 64 578 5697 7 9 574 4 169 2 2964 32 25 358 172 6884 5697 123 734 6952 217 796 5 2 243 3484 1455 47 857 217 994 17 1 3501 4 1 18 6 1 535 4538 397 2139 155 5 1877 74 15 1 6024 1417 30 1 46 1128 7418 2 30 1 3383 4393 5697 59 7 1 226 604 10 65 19 401 4 2 1940 15 5420 1 604 15 5697 6 313 17 2 222 4 2 217 7242 94 1 52 1303 217 862 438 2 8 12 1 206 8 2893 9046 1 604 7 1 750 217 542 15 2 6114 1 82 358 2139 47 4 1 1793 37 5 1271 217 7 50 793 1 113 4 1 535 8191 1 535 397 2139 22 1 19 1 9959 217 578 278 6 1253 5 1 31 1485 668 843 376 141 1 2059 279 495 26\n0\t10 13 1279 844 416 3 271 19 2 1486 5 147 887 5 24 43 1434 19 1 111 1057 27 762 65 15 31 862 9575 856 73 27 789 162 4 1 1561 27 153 291 5 853 33 488 73 27 1304 244 8166 2608 1036 5 186 126 34 5 147 887 5 3471 19 245 39 183 1 131 25 417 149 47 11 2608 6 20 814 33 1088 20 5 348 2608 3 328 5 359 122 295 32 2196 11 175 5 542 1 880 33 2309 11 45 1 131 6 2 98 33 63 946 142 1 3 307 76 26 7614 245 33 995 11 1 131 554 8455 48 22 33 5 5633 488 76 2608 70 1 327 1753 70 30 2 2660 41 26 1289 3437 3 45 23 64 1 803 13 858 16 27 40 156 4873 7 1 158 193 51 22 43 7496 879 774 1 714 1670 2608 39 232 4 2530 140 1 185 7 2 46 5042 236 56 103 5 112 38 9 21 41 42 39 10 130 24 71 2 3106 4 2 163 828\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2003 8 12 140 1 249 3 310 577 19 1 18 8 284 42 277 911 997 50 1128 1990 149 44 280 7 1 1410 332 8 812 137 232 4 37 8 12 39 517 11 10 12 160 5 26 2 509 2195 112 67 993 114 8 8545 13 499 475 544 19 1 5165 8 57 50 1578 7 524 8 61 5 125 42 41 23 118 48 8 9605 29 1239 23 96 444 39 2 4358 2116 282 809 7 1549 17 40 467 5809 98 49 23 149 47 444 44 1845 77 848 44 4192 37 60 88 26 15 44 306 1549 317 36 23 39 83 504 9 426 4 280 16 11 426 4 3868 60 262 44 280 46 109 7 50 1520 8 100 909 44 5 26 446 5 634 36 132 2 3 60 114 10 5 1159 1 18 12 46 501 420 373 99 10 316 3 354 10 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5159 855 249 18 4437 400 2441 67 4 1842 35 380 53 3490 20 39 1 3138 4 3747 145 93 2 35 196 1377 4 2 4474 9706 1 4474 32 1 18 218 105 91 16 122 11 27 93 196 1544 7 2 2471 2000 285 31 15 2471 9993 3 1 1655 7194 242 5 582 122 30 1 2715 548 5953 9039 30 1802 385 15 1 1446 4668 1 540 334 29 1 540 9190 633 395 2681 2518 7722 3 14 2 17 1436 14 2 950 29 1 226 976 40 1 1446 1138 67 5 187 3643 5 1 1842 3 585 643 7 2 613 2 156 172 115 13 2 547 7052 326 682 13 2519 3340 30 3044 94 27 615 1 4 1 4474 1503 7 7722 1427 287 3 44 13 2\n0\t16 513 245 8 114 20 474 16 25 2462 5 4839 2563 73 8 143 474 16 25 1223 8 83 365 48 34 4 127 304 415 159 7 550 27 57 332 58 7232 41 27 7007 29 225 57 2 111 38 411 11 89 2479 904 7 1 82 68 25 17 5 58 39 73 27 6 2 6532 123 20 90 122 20 5 1 188 27 114 5 70 1 838 4 2 1136 287 27 1310 7 112 7 2 8585 4 681 269 4 1311 44 61 332 5006 3 2348 123 9 164 24 95 1152 57 27 1095 3 2165 403 3 667 439 188 27 54 24 71 52 1805 14 2 919 17 4648 25 129 12 2518 3 7441 13 129 12 8943 60 3084 39 14 728 71 31 15 44 1998 1874 672 68 87 2 345 598 1778 11 519 54 6982 140 47 1 682 13 92 59 102 120 8 4268 16 61 1 5295 3 195 137 102 57 1748 9496 16 119 8432 551 4 129 3612 586 505 2411 1794 1881 48 2 1378 4 2 108\n0\t14 1 8764 766 35 271 7 74 5 841 19 1 429 3 100 255 47 1 59 177 11 863 1 651 32 1345 1 1769 6 458 14 8 1113 62 2839 40 791 71 19 110 3 72 22 929 5 99 44 16 29 225 102 269 1534 68 95 21 206 54 998 1 3812 115 13 3753 5 1620 1 930 47 4 206 3 8 320 122 32 31 161 2365 431 106 27 485 78 138 68 27 123 204 69 58 1962 312 4 2 914 996 17 1195 3 17 58 28 88 815 26 14 7 148 157 14 25 206 151 122 176 675 115 13 422 255 142 2 103 138 571 16 1 161 342 341 4258 1095 8 118 33 61 101 262 16 3886 17 8 3195 17 20 1264 115 13 252 373 621 77 1 91 23 173 176 3631 4 616 1604 420 99 10 316 183 420 99 2 163 4 82 2032 3 1575 1394 4 1 3 5890 486 30 9856 209 5 3 4 10 6 84 1816 37 45 23 70 2 4343 99 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8609 715 13 2078 56 2 46 53 4285 17 8 114 36 1 312 516 3951 3 1 1 1132 114 90 10 176 167 53 1078 1 2568 445 33 57 5 216 1566 1 18 6 8019 31 4 2 414 873 864 131 11 3426 375 77 2 142 3 40 277 1172 94 5 126 5 564 450 1 45 51 6 628 3700 3988 3 307 422 39 5136 65 3789 1 250 5 9 18 6 11 1 121 6 167 565 630 4 1 7537 81 291 148 29 513 1 171 372 1 3729 22 232 4 73 33 22 2239 978 3 2864 7866 4 986 661 203 18 3 207 610 75 33 54 26 248 45 9 12 31 697 880 1 18 7803 5 26 248 34 7 28 51 6 28 9946 35 1026 1 200 1 3 297 6 107 32 1 272 4 793 4 25 17 1 3647 359 19 3 142 1506 5213 2321 1 32 28 186 5 3152 8 54\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 34 6 2 1016 745 11 6 475 355 1 7929 10 3 2368 62 22 97 1318 1 233 11 42 274 7 147 887 66 323 748 1 7508 1 885 3975 1 2529 376 498 32 1147 3 1 518 294 5188 35 6 4455 3 4 448 58 382 6 528 197 7365 1 21 6 2 822 3 684 267 11 6 46 78 7 1 6104 4 8303 267 32 1 21 6 2040 38 1 1557 6955 66 6 549 30 35 15 25 1658 9087 7010 4966 3 7892 5366 124 3 294 676 1 621 16 2 1086 3 5188 621 16 304 3741 35 1547 2035 94 2675 34 1309 6 3785 956 16 4238\n1\t0 5 26 5739 8 909 606 5008 7 9 135 51 12 59 56 628 17 1251 32 458 12 2 84 18 66 8 192 1096 5 221 19 1771 1 59 56 184 1487 7 1 201 22 742 14 1 2066 5464 3 3641 1518 1740 14 1 3207 17 1 344 4 1 201 1227 187 53 2263 8 258 338 75 419 44 919 2 222 4 60 88 24 71 2 8217 1757 129 17 60 6 1435 9778 14 60 5135 47 15 1 352 4 7386 3076 578 13 145 255 577 14 243 8705 17 98 805 1 129 27 213 46 109 9253 47 552 16 2 155 67 6422 6 340 30 25 1081 7229 1 1511 4 6953 6 721 65 3913 533 1 21 3 1 1190 4 1 3058 1420 29 366 15 1 506 9030 2206 7 25 3775 4005 6 31 313 111 4 2000 7868 3 1 265 314 5 1 21 6 6740 8 83 118 144 51 22 43 81 35 812 9 18 1943 264 16 264 8639 8 17 8 332 381 3 8 63 2474 354 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 48 72 24 204 6 676 2 1195 3 7790 804 3 15 2 547 3 964 1249 17 1339 1 18 2019 110 2740 10 100 56 165 6034 51 12 2 103 3008 49 72 149 47 11 9206 6 20 56 98 149 47 11 60 6 94 399 17 11 12 110 1312 8041 35 6 2 46 964 454 3 531 876 2 163 5 2 141 12 2384 3 25 389 129 12 20 55 542 5 101 731 5 9 141 82 68 5 90 10 9950 8 56 54 24 338 5 64 52 7659 189 1 250 647 2257 3 3 300 328 20 16 2 1011 1073 66 831 10 12 1375 17 300 2 589 15 1411 7035 8 96 45 1 18 114 9 10 88 24 71 46 211 220 205 1624 22 169 211 7 62 221 1175 3 1157 204 8 63 96 4 2143 9245 11 54 24 71 2\n0\t2 1655 2345 2844 11 37 629 5 3187 77 1 4065 1 5 1573 8031 77 5191 288 7214 1 398 177 23 1374 1713 22 34 125 1 707 2306 81 6779 136 2 1207 3 2 1655 1807 22 242 5 842 47 1 4922 207 253 127 81 2089 28 174 69 5259 1 442 32 98 926 34 72 64 6 1713 246 2 2857 326 19 154 558 7 2364 69 162 17 1809 3 3 4927 30 2174 4 5299 3 5941 220 9 6 2 1091 158 1 21 57 5 26 2484 77 706 3 49 317 20 1094 29 1 8439 4 1 7375 1 22 169 892 3 548 14 530 14 4450 1505 51 6 2 178 7 1 21 11 1 427 189 835 4752 3 20 5259 1 178 7 66 2 1696 35 6 2844 44 9383 6 101 200 7 44 30 43 3751 3 2 4 1713 209 47 4 1677 3 1643 450 28 1028 6828 1 1248 3 9834 10 77 2306 86 14 23 785 1 1248 4172 11 6 2 147 2869 7 91 6280 3833 8 348 1259\n1\t6 207 610 48 8 36 38 9 391 4 10 6 806 5 9 18 16 20 642 3813 2906 3 7049 1 215 9511 3 17 176 29 1 349 3 87 1 3813 2906 3 7049 3042 57 223 62 85 123 11 5 170 2682 763 35 44 280 14 12 5028 1 184 1958 193 60 128 485 53 3 12 128 1 425 13 777 2 1152 11 763 247 340 2 3844 2482 1604 10 12 53 5 64 1802 3 1712 3337 7 1 871 11 89 126 37 285 1 358 3299 11 1 12 19 2796 387 10 12 1 1300 11 89 1 251 132 2 5168 1 344 4 1 201 61 607 201 7998 20 5 134 11 33 1121 33 1 249 251 511 57 5823 14 223 14 10 114 197 450 340 1 1412 189 7049 3042 41 749 395 215 1 1412 12 105 7802 763 12 93 1 138 1412 125 1990 13 6998 9 18 153 7034 65 5 1 215 249 1125 10 128 65 2068 3 6 28 4 1 138 249 11 7871 1 285 1 518 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 4300 29 1 5597 4 62 7 7483 1838 179 4 1 2875 14 2 334 16 788 3 4170 12 128 2 156 172 1695 1802 3 4110 941 65 1 13 92 119 6 5417 17 35 30 1 744 1682 1 2691 871 16 6697 3 2 6520 13 743 3790 4 8725 6598 4501 642 1 754 9029 543 1 265 3 7 11 1146 1423 4099 1802 7 1 543 285 28 4 44 3 202 8831 122 1802 19 2202 1 186 14 1 1206 12 1016 13 308 4753 11 60 12 2 138 6130 68 220 60 57 5 87 34 1 166 7 3 13 5 96 4 194 672 12 327 854 1 164 12 7 13 2 18 5 65 19 1 7205 15 2 2382 142 1 3 335 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 1242 2 306 15 1 2137 2511 3 43 84 265 90 65 48 40 390 169 815 1 113 131 7526 13 1601 4 1 201 22 4234 17 3 4710 154 4 137 261 35 6112 9 321 59 2 156 591 32 1 74 156 578 6 332 332 3 23 128 149 725 2083 122 69 30 2693 13 6714 81 11 180 3340 5 38 1 7405 1018 617 107 10 76 134 3490 39 20 2 325 4 4527 549 69 83 1243 69 3 70 110 137 166 81 531 112 17 8 2398 33 83 78 474 16 42 20 38 1\n1\t7686 3 7 28 980 6964 140 1 155 5 2033 126 1029 15 3274 3825 5 24 39 3959 32 409 127 7525 586 14 33 2140 22 14 7 2 239 15 86 221 464 1880 286 13 2595 2 2276 404 6964 3130 32 1 1591 15 2 7 793 4 97 27 1 3310 5 1 4 2 27 1843 5 25 3254 3 151 2 2771 5 2 85 406 27 3130 32 1 1591 2607 298 3 1936 7 1 797 9813 19 2 2644 288 29 1 460 845 27 1036 11 25 329 6 5 2031 3 20 8618 14 27 1148 1 1591 8988 2 1598 4612 27 1225 29 2583 5 2870 1 1591 3 582 1 45 23 474 5 1 1261 10 6 2 301 1258 169 903 7 5977 10 88 59 780 7 2 13 777 678 75 28 7115 103 1733 132 14 2 5041 4 2458 19 3 295 15 1 4 1 13 5020 1 233 11 9 21 6 4768 8 2923 8062 2969 406 124 1 9203 3 1 1 3310 178 1991 845 56 256 79 1294 436 145 2\n0\t57 34 1 85 7 1 1162 124 24 138 238 4718 13 662 78 224 19 990 106 1 18 2731 80 4 42 599 85 15 242 5 2 2062 5 1 577 31 5325 15 2896 3063 2342 16 11 1367 47 51 136 1 6031 128 4062 5505 136 30 9836 32 2 1341 2825 3 510 4242 4982 35 1584 122 224 37 33 1042 122 19 2 327 39 83 504 45 23 617 459 5152 11 1264 113 2 282 7 2 1940 6396 783 14 161 259 15 482 1773 3 2 543 36 193 1248 605 47 1 15 2 4733 32 1 4138 32 31 1400 3406 41 3826 65 2 35 1143 25 22 3224 4 1464 7 2 21 11 16 4 42 599 85 1664 2 212 163 4 742 3111 1056 1534 215 757 11 262 7 2888 1664 31 5620 1721 269 17 47 5 26 757 224 5 2 52 3581 1 206 4 272 191 24 25 2029 460 49 1 419 122 31 1335 5 186 25 442 142 1 135 2 21 37 91 42 20 501 3 2050 2346 15\n0\t5726 6694 20 73 145 41 4017 17 73 1 4468 11 1678 655 1512 3 1650 6 6412 5 1 27 1286 37 10 255 142 14 2270 3 28 63 202 785 122 134 165 5 1382 2 4709 1326 487 7 9 29 268 10 181 11 6 242 5 309 65 1 5726 5105 5 25 5468 29 3 29 82 268 73 27 4283 11 1329 2443 5893 4 48 25 410 228 13 92 4 1 1709 41 394 264 584 7 3538 79 14 101 2 4636 4 14 2 243 68 101 31 1329 4 27 181 5 70 1120 15 239 67 3 37 27 126 65 243 3 15 103 55 1 570 427 4 927 7 1 158 66 43 81 291 5 149 932 2 216 4 632 49 38 10 6 37 78 361 5 503 10 39 151 79 560 144 54 1460 253 2 21 45 27 343 9 7 50 1520 2 237 21 341 15 52 5726 6 10 6 93 331 4 81 3 2271 4604 17 10 3316 73 4 86 8072 593 3 627 4400 3527 1082 30 137 166\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 143 118 48 5 504 32 1 135 322 195 8 2510 9 12 2 323 489 135 1 5220 1177 3 121 61 1381 565 1 67 12 810 3 2317 1 206 88 24 89 2 1831 3 179 7977 158 17 27 6629 8 7 50 3104 16 1 226 350 4 1 18 73 10 12 37 565 106 12 1 1229 5 1 3124 106 12 235 7 9 3124 6680 130 9 21 378 4 110 10 12 248 3 2 351 4 50 1686 87 20 64 9 135\n1\t232 4 1105 130 186 85 47 5 64 9 135 1 18 6 404 1786 707 3801 1786 3 15 103 6805 86 5133 63 186 334 2882 7 4100 10 39 37 629 5 1089 7 147 4889 204 72 24 1 67 4 2 986 9390 654 7637 294 15 227 5 549 2 580 707 15 46 103 4471 25 164 6 630 82 68 7637 1763 3586 31 1381 2437 2852 809 22 3353 5 25 3 205 384 7095 16 2302 6494 297 985 7 11 2132 318 2 613 1363 31 4734 30 35 2615 1 4593 985 959 707 3801 3 1 2 1721 349 161 487 3 2 613 469 22 19 2 895 1950 809 6269 3035 951 5 31 1649 30 1105 3 707 6967 1295 5479 36 1954 262 30 1403 3881 36 2095 2393 3 4527 36 776 35 22 1768 4758 93 22 1433 36 3147 6010 35 557 16 1 1400 4 147 4889 17 10 6 1 2164 189 1 7637 3 25 66 6 556 5 3649 30 1 2 84 2451 16 5749 3 2 273 2398 5 390 2 2073 4577\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 99 1 215 15 1 166 462 32 9 89 16 249 141 6 39 292 10 123 333 794 237 14 8 63 202 1 166 3140 10 39 153 6 10 1 505 1 345 1233 37 42 89 16 2534 17 144 99 2 91 9158 49 23 63 70 116 1191 19 1 1016 258 14 468 26 4014 5 1 119 3 495 335 1 215 14 1878 14 45 819 219 10 115 13 677 22 2 156 188 11 22 264 32 1 215 4662 9580 16 17 34 22 16 1 1 171 372 1 546 737 39 83 1179 1 23 39 83 241 126 3 35 88 401 2574 7481 278 32 1 45 23 59 99 10 94 819 107 1 215 3 55 98 468 26 46 45 23 99 10 42 202\n0\t1980 3 657 10 276 36 1 539 1584 6 6515 7 698 51 22 375 5015 106 51 6 434 9232 14 45 1 539 1584 12 5 26 9046 3513 1 171 291 5 947 19 1 1754 42 20 42 5882 1608 3 1 113 40 2 427 11 39 271 5 131 23 75 47 4 1388 1 1063 3 1278 5091 9511 666 146 9454 88 1848 8401 3 33 88 24 71 7 31 6994 33 88 24 71 645 30 2 2 5204 666 15 146 1848 8401 76 26 204 45 27 40 5 2739 411 142 1 1591 835 491 38 9 4347 766 12 2 7 1 362 4198 3 433 2 7716 3 12 670 643 7 2 1591 27 100 3 9 44 1499 47 885 753 4 44 157 3 9 427 88 24 71 728 1241 5 26 52 3401 5 4341 13 614 23 22 2 148 325 4 1 98 468 24 5 760 9 2908 10 75 43 188 22 138 303 3420 55 15 1 215 1249 9 6 202 14 91 14 1 3380 1015 4 1 131 2 156 172\n0\t2255 2 6148 8 12 1868 46 2337 5 64 9 108 86 2143 1625 19 249 16 375 2017 89 79 175 5 64 9 108 814 1 82 366 49 8 159 11 10 12 1492 19 19 8 165 43 4616 3 1407 224 5 99 1 803 13 92 857 384 1930 227 69 43 3751 6 6233 81 19 1 236 2 5282 2189 15 1 1156 1098 106 22 33 835 2267 5 8101 28 1344 1 5282 1148 2 2771 189 43 5993 27 40 3 432 2189 15 1 1068 122 2701 1 21 57 2 111 4 8925 23 1356 55 193 1 119 12 496 2775 7426 1453 42 2642 176 47 516 8 867 169 1120 15 1 772 13 92 640 55 193 2674 12 424 318 1 714 3378 12 53 318 1 98 10 39 165 666 19 1 859 3 8 1435 3 204 209 1 13 8 12 1247 10 12 43 1341 3300 43 4319 454 2189 15 3911 10 12 43 1085 1342 2202 3107 2191 16 75 1766 75 8366 75 13 209 19 819 57 491 581 17 9 28\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 100 71 2 17 10 6 2 1280 382 69 3 1071 5 1142 45 23 22 2 2523 325 9 6 16 4840 13 92 250 119 6 2523 283 25 5512 1007 7 411 3 122 1424 7 112 15 2 2784 241 10 41 20 9 18 213 39 1299 3 7407 51 22 97 1883 168 3 10 6 519 10 255 142 40 211 17 49 10 557 10 56 3375 46 645 3 13 4255 28 63 56 634 7 1 135 307 6 32 28 4 601 1630 36 218 9190 3 1604 10 1583 1817 5 1 108 49 117 2523 6 19 412 27 3647 10 65 3 10 299 5 64 122 29 25 2729 115 13 659 4641 139 3 64 9 45 23 112 2523 36 437 45 23 662 2 325 4353 90 23 5592\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 69 9 18 6 39 2 772 8 159 46 78 1097 3 504 2 18 36 69 48 8 12 1463 12 2 36 41 19 2229 58 4523 46 1495 52 98 527 43 53 1154 69 20 1129 8 449 8 76 70 1 680 5 90 2 18 36 9 3 98 8 131 75 5 87 132 2 13 1226 69 1 5673 13 16 50 91\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 203 18 3087 11 255 142 52 439 68 695 241 79 49 8 348 1259 8 112 8221 258 267 218 1326 3 22 43 4 50 430 1545 11 3087 2 933 1818 6 20 65 51 15 137 703 80 4 1 168 7 9 18 57 79 1157 51 7 5418 5494 73 1 18 247 34 11 695 51 22 2 156 1308 7 1 158 17 49 23 99 2 1073 23 504 5 539 2 163 52 68 2 156 268 3 207 34 9 21 40 160 16 110 57 52 1308 68 9 21 3 11 12 52 4 2 203 135 75 1213 6 13 5934 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 660 2 3725 4 2 894 1355 1849 6 28 4 1 210 104 117 1716 286 31 7805 7 50 683 73 1 5401 4 86 293 363 3 489 478 1584 7 1 74 1194 269 341 5 26 1784 207 34 23 321 5 4635 5 932 146 11 6 5185 13 92 567 178 7 6 39 38 14 14 861 14 576 116 671 5 3251 183 819 57 85 5 216 47 704 42 23 809 881 1 1079 2456 3 1 238 3525 5 3223 13 872 1923 32 1 1598 11 257 23 93 70 1 1253 1839 7447 4 246 205 1 215 171 3079 3 1 2484 3079 29 1 166 290 1011 13 92 747 177 16 596 4 9 232 4 3425 6 11 180 59 117 107 28 9158 37 1 3878 4 117 283 10 725 6 496 436 8 221 1 59 973 7 13 1149\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 80 509 18 8 24 117 1019 50 319 12 2 540 1412 16 34 127 84 460 5 351 62 778 239 129 12 1012 7 2 364 68 7110 699 58 121 860 620 765 2 2482 5297 63 309 1087 120 89 992 176 1906 16 31 1871 693 5268 19 75 5 1351 1 104 60 6089 5 309 7 14 87 34 127 184 460 35 24 303 79 945 29 1 111 33 24 34 1747 62 2447 5 26 7 2 865 11 844 78 5 26 8263 7 2815 15 951 1 1228 5 84 121 7 2 21 11 4203 9696 1560 3 1052 7953 51 12 20 28 799 49 1 201 12 446 5 2074 95 4247 4 9 1732 1 1250 300 10 12 1 2024\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 9 21 72 24 1 3088 1617 5 64 48 653 5 5249 3 8800 7 1 21 49 33 22 20 620 69 66 6 2 9 21 55 271 155 5 183 3 39 94 1 3241 4 115 13 306 5 1 74 158 800 4582 883 2960 800 535 7 82 6 2 722 2571 1303 3 2065 21 883 967 45 207 48 23 175 5 637 5908 2 4 3917 3 8431 16 13 2120 5249 3 8800 22 133 2 21 29 1 616 1543 2 2527 5249 3 8800 24 31 5541 4 48 272 4 218 2960 33 22 160 5 357 4171 14 5249 451 5 139 5 1 185 49 27 3 8800 209 7 3 8800 451 5 139 155 5 1 4362 33 24 2 46 1551 4 133 1 21 4 62 221 441 66 6 48 10 418 15 74 13 1701 261 15 2 53 356 4 1569 35 338 1 74 124 4 39 38 95 3575 335 800\n0\t3197 419 561 2501 34 2514 4 104 5 90 69 80 4 126 61 9250 11 6 144 3197 721 122 16 2992 982 115 13 690 7860 12 46 53 14 2 27 262 2 696 280 3077 172 406 7 5770 38 16 66 27 1196 31 918 16 2 607 1174 14 16 1631 9 12 28 4 44 210 2137 60 12 20 211 3 105 1005 16 9 1211 10 6 678 11 60 89 2 84 267 7 218 3 419 44 113 1663 10 12 631 11 60 12 105 161 288 16 44 1186 914 413 7 4435 896 10 143 352 11 43 4 44 2389 61 9185 13 91 60 3 561 2501 114 20 90 174 1005 18 36 62 226 18 2193 1 1016 1 166 708 38 9 18 63 26 367 4 174 141 11 561 2501 89 7 15 1922 10 12 105 1495 3 1 651 485 3176 1631 485 2861 533 1 18 3 1348 7 368 1887 5 348 44 5 64 2 6138 37 7 60 1436 29 717 48 2 60 12 1496 2 53 651 3 355 138\n1\t11 8 63 308 316 335 197 246 5 1899 4718 13 37 8 99 1 289 125 3 2287 7452 8 24 1887 177 11 40 89 79 1 1125 17 20 4001 450 8 96 7505 12 2 222 3061 49 10 310 5 319 11 1 537 1001 20 11 1 537 114 20 321 17 10 12 248 7 2 111 11 151 3026 1 168 106 7505 57 5 1271 38 75 82 81 61 20 46 53 288 8551 79 1705 49 578 12 6779 1 131 89 2 184 177 47 4 578 1841 25 221 17 100 1457 5 64 25 231 47 4 1 17 7505 5546 275 35 7265 2 2 222 4 2 5055 7 1 543 5 31 353 35 130 24 1168 25 85 19 53 268 781 11 27 4368 34 27 1987 14 8 99 1 4205 8 64 1 251 160 7 5 3 101 5 26 94 578 303 297 650 5979 200 20 2 91 1689 39 2 9964 1606 8 54 20 4622 50 7398 16 95 1234 4 2128 17 387 3 839 1647 5 4716 116 671 94 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 5297 7919 6 2 46 53 299 1105 2314 4 4242 3 2 822 5366 129 2221 14 2593 13 92 2216 6 2 222 673 16 2 1073 3 630 4 10 6 56 574 722 571 436 1 478 363 16 1 17 10 123 24 86 1474 2103 3 10 6 46 7 86 9981 1 184 8286 3663 6 229 1 80 13 92 5479 22 169 46 2696 4 145 34 260 258 1 15 2 822 684 5549 19 1223 1 1105 152 1720 1 471 6 46 3045 14 2 13 150 83 96 9 28 557 169 14 109 14 1 41 232 4418 3 17 55 822 7349 267 6 138 68 2798\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 45 33 117 2 18 3486 33 130 26 4446 47 4 1 145 7332 62 104 22 610 1 166 7 154 628 3 33 59 7211 4 4309 5 2118 6467 246 2 465 66 33 728 1247 5 26 3 355 147 96 38 110 45 23 24 117 107 2 18 993 126 15 2 264 640 4208 79 3 348 79 86 3774 127 22 345 7531 5 26 19 249 3 139 5 82 51 6 2 302 11 1 104 100 139 5 6247 145 273 11 49 33 61 56 170 3 89 43 484 43 1210 1855 969 34 62 3376 16 1194 1166 41 3393 37 11 195 11 4875 33 63 90 104 7 82 4179 1875 33 175 712 1 1686 369 79 5268 1259 875 295 32 3 42 16 116 221\n0\t463 5 41 139 5 13 1226 1508 12 2 2918 2046 16 1099 1166 27 88 20 241 25 671 49 27 159 1 682 13 25 839 14 31 2457 27 308 4826 5362 125 1 1 2046 2599 535 4 3 19 25 4 448 9 12 20 19 2 3720 13 1701 2937 1 1473 7 1 1473 6 1 80 731 177 19 95 3720 41 1265 5 187 2 29 11 85 6 39 368 1471 49 2 2046 6 256 457 27 6 457 23 186 34 25 3 1089 1 3516 106 1 2962 22 9 6 740 269 7 2 109 5149 27 481 8940 42 39 36 7 13 177 424 50 1508 93 57 2 1238 19 245 72 64 75 9035 369 122 7 1 1377 5149 9 6 20 2427 1218 50 1508 34 1 1378 1 1238 89 27 5265 13 3 2647 90 1 277 460 9 18 6 8138 3410 34 1 344 6 13 1833 72 87 118 11 81 61 128 2191 19 1 9 21 196 31 1988 13 614 23 175 5 64 2 148 953 38 2 13 1149\n0\t4 86 4606 33 22 46 346 3 4658 409 19 2 3579 3397 8301 5980 3 55 5747 24 696 260 4779 6655 7 233 19 2 3397 1 697 5524 4 6655 7 5747 6 152 2302 68 7 1 2269 2063 4 4100 10 6 16 1 845 1318 11 10 6 5 3 1 296 81 3 62 952 4 9208 7 9461 296 1342 30 46 3 5918 9 4779 658 4 14 101 4 296 4277 30 403 37 5482 2167 346 3 4658 6655 29 2738 741 4 1 5 31 1854 4 1443 11 6 31 5006 3 9 21 6 674 2776 5 3 5 1 3547 4 81 35 9 3 6906 812 1 296 81 3 111 4 157 457 1 4 3 1881 303 4779 9 21 12 89 16 20 16 1 1387 38 296 1342 3 1 423 63 90 4655 11 1229 19 6428 260 4779 1 1383 5678 1618 17 2197 8198 5 1124 31 1244 3 9738 8532 9208 369 818 6253 5 1 4 2 8921 18 131 6 5794 14 296 30 86 1594 16 9 3786 29 86 210 1847\n1\t7751 4 1 8325 2 3678 6 1050 1664 2660 5 1 16 1 522 4 51 6 2 3 1141 13 1 1 1621 1 1112 421 1 17 359 126 457 1208 7829 5 4479 62 486 2666 33 1917 17 44 711 649 11 1091 81 22 5730 15 62 13 1 94 1 469 4 2969 3 3 22 475 1141 393 44 1489 15 1 5566 4 1 13 92 2582 4 1 7006 6578 4 140 6 93 553 140 1756 1005 1 1109 4 1 74 185 6 2 2313 901 4 7233 8095 1151 3 1 330 185 6 2 1005 67 4 1489 3 1 1195 1106 15 2 425 1273 4 1 647 1 313 453 4 1 201 3 1 1477 593 4 1160 174 1859 1929 4 290 6 1502 15 2 900 264 1696 2189 3 7 44 1489 1 1759 11 2898 22 93 46 3 44 121 6 370 19 44 543 3 5786 8 12 2 103 945 15 1 2671 4 94 1 469 4 25 59 2375 220 8 214 10 105 50 2400 6 13 9267 608 2 763 5745 185\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 83 118 3740 17 49 8 192 1783 38 91 104 8 24 1586 8 396 96 4 218 1276 65 8 118 11 679 4 104 22 586 1074 5 194 3 8 24 107 527 1014 42 39 11 42 37 37 2775 7 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7398 7012 79 318 8 39 24 5 139 47 3 751 110 9 12 28 4 137 502 36 97 19 737 8 320 283 10 14 2 583 3 336 110 8 100 563 51 61 168 3 668 2139 11 61 9919 37 8 12 3565 5 64 48 33 228 1142 8 76 1023 11 1 980 6 195 2 4312 223 794 6 1 5243 17 82 68 458 8 214 58 15 1 4307 168 11 61 256 155 7 62 1888 436 834 130 24 57 1 215 324 801 6 1 5755 19 28 601 15 1 5755 324 19 1 3453 98 81 88 2497 48 33 405 5 3972 34 7 399 42 128 31 548 18 11 128 999 5 43 4 50 2113\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2049 4776 32 1055 2694 1165 6 370 655 2 2432 7 362 11 4826 1 486 4 670 710 14 2 7692 6201 1052 7 29 7 5182 3871 472 334 94 2 1473 57 16 277 963 7423 2483 7694 3498 11 758 38 1 5263 2182 8622 748 11 1 3858 2 8020 4 3933 30 478 2858 15 1 59 265 101 1160 30 285 1 477 3 393 4 2 216 16 66 363 7012 3757 5415 15 1 2024 1447 1117 2352 4 11 238 32 383 5 383 140 5954 4 2274 1501 5 26 740 9 7649 21 11 93 8293 7589 861 5097 655 1 206 5 168 197 246 2 4 292 1 833 8519 5 1 3385 869 4 9 21 6 1525 7 86 8344 1711 4 3689 29 2143 119 456 77 2 616 11 28 5 16 1091 2464 4 912 62 6 3461 2586 136 58 364 4 6565 5 1 2752 4 710 2 5228 1435 14 1163 5 2 14 10 12 29 1 85 4 86 74\n0\t0 0 0 0 0 0 0 0 0 0 9401 26 1 302 8 1150 9 18 12 73 8 192 2 568 325 4 6357 6432 4369 32 362 220 27 531 266 1 53 2112 8 405 5 64 122 14 7 2 264 280 5934 4 1 119 554 93 2300 79 2 561 191 564 2 454 29 1610 183 27 6 15 1 4077 4990 1 4 2 2928 35 76 421 275 7 218 1 104 12 162 36 8 5207 10 12 7840 8 1595 1 182 1623 23 159 194 1397 118 3 51 61 37 97 2411 3955 10 12 3 89 103 1821 657 10 12 2 3250 141 3 1661 1 2962 87 139 17 236 52 5 2 18 68 656 9 21 1171 14 45 10 143 24 1 85 5 139 77 39 934 15 10 3 365 110 1 121 56 89 65 16 578 5700 12 167 1474 14 218 1072 89 2986 291 14 1202 14 60 88 5338 60 619 79 1 3 6357 12 1381 1321 14 31 9547 9933 5 218 45 59 1 263 114 2028 5 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 58 18 15 2884 2142 7722 816 2503 1071 2 1020 457 715 19 675 9 6 2 345 324 4 104 36 5230 41 1 5092 4428 549 571 1 6854 101 9495 204 6 1 46 806 19 1 1128 816 266 174 1383 574 109 3 962 266 25 5 26 9888 530 1 119 19 1 543 4 10 6 2271 73 8 433 1810 4 1 268 130 24 3 88 24 3959 17 9 6 31 548 6945 18 3 51 22 53 3916 32 34 4 1 845 171 11 359 1 18 9 213 56 2 231 18 14 51 6 43 3 2 1219 2801 178 15 17 9 6 2 163 138 68 43 4 1 82 11 310 47 200 9 290\n1\t48 2930 13 92 131 645 5059 272 277 172 406 49 9038 1436 4 243 68 1 280 4 1 1063 39 369 122 26 5895 7668 49 690 1 129 4 472 25 334 14 3858 174 2732 4 6385 13 92 226 6208 7 159 1 1481 597 4660 30 3068 16 1 133 126 139 15 84 5903 1394 14 114 902 13 24 71 156 3 237 189 1394 1281 19 2660 2930 34 73 4 86 2654 9 6 16 28 1689 1 131 12 20 5328 38 45 2 482 164 6 37 1989 144 123 638 8210 21 9168 7752 5 128 70 620 19 1394 10 2450 5297 7919 14 31 3 1196 102 8872 10 12 32 2367 221 43 120 61 370 19 148 81 1394 1 56 114 6110 5 25 413 14 8872 8 186 1 793 11 45 23 22 160 5 256 622 19 5165 70 10 1907 1 2747 58 729 75 10 228 291 5 661 7708 6 12 205 211 3 3 902 159 476 1479 16 8 3051 85 5 582 9 5835 14 2011 54 8298 24 58 7 9\n1\t800 1 3 44 2277 16 1489 421 3 1 16 1 701 4 1 2577 7 9 21 6295 3 7 1 77 25 25 4921 4 1 3 1 182 4 9 21 1373 13 4511 4 1 21 6 9909 1 3144 748 3226 137 4 66 1685 62 748 2 147 7 236 2 568 201 4 3 632 3 5154 11 100 291 5 182 7 13 6 46 1134 7 44 1439 4 5677 60 999 5 2410 34 200 768 44 5 44 181 20 5 37 78 32 1549 41 17 32 146 2912 5 886 4555 827 79 60 563 60 12 2537 16 48 60 965 5 1405 17 3927 58 1408 423 8309 3 407 162 28 15 1 60 6 459 331 4 5 7605 6493 32 1 3 44 206 3642 9 15 2 8 83 175 5 17 11 6 2061 1 59 4050 117 5 3374 42 1 2059 7 2263 42 674 245 20 311 2 524 4 345 7121 13 1118 72 24 98 19 1857 6 2 6128 8185 4 31 43 228 64 14 31 8 39 64 1 21 14\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 83 175 5 139 142 19 2 737 6 1 210 6004 180 117 575 527 68 1 6223 3387 5312 2511 3 489 121 22 1 59 5424 824 2880 383 19 46 772 3481 10 276 36 2 298 416 6015 17 197 1 7953 1 2036 3270 276 36 2 625 1 478 6 1056 138 68 2 625 19 1 4908 17 297 422 38 9 177 6 39 1319 1 119 2177 142 7 678 8837 15 58 9193 41 406 1 824 22 3 1 1043 276 527 68 2 3234 42 20 55 91 227 5 26 695 42 39 565 1 6 7023 13 7099 79\n1\t2823 12 253 25 111 5 5 176 16 25 3 385 1 2151 1 97 5217 4 147 14 109 14 1 356 4 5555 7 3 200 13 533 1 718 22 2143 3679 15 1 413 32 8442 755 3 66 114 20 2686 95 17 101 6715 93 758 38 86 221 274 4 1872 14 33 1593 5 209 5 1422 15 1 8932 140 1 795 11 72 825 4 1 627 2956 127 413 35 3693 414 3 239 326 19 62 5 552 9697 13 2718 1647 15 48 1 718 12 377 5 1718 183 795 4 1 326 400 7 3 726 1 260 65 5 1 2464 106 1750 4 1565 6715 457 1 61 721 2191 30 1 413 35 216 2873 1 6489 7 253 356 4 1 8603 42 20 2 21 11 6 3 48 23 64 204 481 26 7 95 82 718 341 20 478 6521 16 368 42 14 542 14 23 63 70 5 11 1344 9485 1 2592 65 32 13 755 305 1263 2 3613 1988 594 4 843 748 4 3679 15 1 413 4 8442 755 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 119 407 384 240 2160 75 63 2 3602 1798 701 26 590 77 2 323 509 1973 322 23 63 99 3 149 3335 13 150 57 455 4 1 2064 183 9 21 12 612 3 214 10 5 26 31 240 306 67 4 43 1975 4412 1098 906 51 6 1580 129 3612 37 72 100 70 2 680 5 365 144 95 4 9 12 248 41 70 2 53 356 4 1 189 1 807 1 1428 4 1 593 12 46 9 34 951 5 31 509 682 13 11 5388 69 2 1284 129 14 1327 69 12 31 1840 3 11 379 12 2 19 1 158 72 130 24 57 1 1617 5 3494 43 148 3122 77 1\n0\t1036 5 597 14 60 153 241 7 1892 5 905 8340 13 252 21 6 1 330 1177 991 30 294 35 1059 102 1227 2346 8228 7 3 1 17 137 102 124 291 36 3156 1074 5 9 6667 391 4 42 46 806 5 134 146 6 20 211 17 8 96 15 9 21 42 55 4607 5 842 47 2957 9 21 6 400 3 1169 961 32 357 5 1812 15 154 178 288 14 45 42 59 2267 73 4 1 4 1 1471 35 93 1059 1 263 181 5 24 428 9 197 95 179 4 242 146 264 3 29 268 27 181 5 26 242 5 9450 1 166 2157 14 146 38 17 378 1 795 291 862 114 261 56 96 1 2528 12 9424 45 23 1690 116 2 156 268 285 1 21 120 54 7813 24 127 931 8607 11 22 377 5 297 17 34 33 3882 6 1 8128 3967 557 2 163 17 300 27 130 216 364 3 39 947 16 1 138 3645 5 209 25 111 73 9 21 153 216 14 2 267 41 14 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6552 7605 32 3741 9 6 20 2 21 5 26 8260 13 10 130 26 1256 15 84 13 252 6 31 8529 2908 3 145 2 13 13 5851 7001 40 78 52 1703\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 472 185 7 2 103 5451 397 4 9 49 8 12 2 1315 29 416 3 50 9482 969 1 388 16 437 180 336 10 117 49 8 12 10 12 1 759 3 2577 941 1102 11 8 381 17 220 180 219 10 49 8 165 5981 8 1116 52 1 885 121 3 129 2773 4321 3 3044 5799 61 3711 8 173 830 261 422 372 1037 41 2943 45 1 113 129 16 437 60 256 65 15 37 78 16 137 8863 8 96 444 132 2 627 129 3 44 570 178 322 23 198 151 79 113 668 7 50 1062 4 34 290 42 3890 34 9 387 10 76 414 19 16 97 52 172 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 9980 1486 100 255 542 5 1 2485 3 4 1 313 1406 127 559 472 7 62 74 108 9 4186 440 5 295 32 86 5530 5 1708 43 147 813 47 4 1 6182 17 10 270 2 540 473 3 1677 240 41 3883 13 3057 202 2 1130 19 781 1 559 403 2 891 3956 341 679 4 81 133 19 49 123 11 1416 1 263 846 88 24 248 146 52 176 29 75 34 1 1610 824 4 1 74 18 61 3353 65 371 30 2 126 29 1 1145 20 7 9 158 66 167 78 1168 1 1037 217 3351 1 1399 12 8137 13 92 3591 6 8260 77 1 16 1034 2560 9 36 1 212 640 6 248 775 3 1419 16 267 41 410 236 2 401 7 16 58 2560 236 17 162 56 1688 41 3883 13 9 9980\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 159 9 18 1882 29 2712 3 56 336 110 8 216 7 1 1215 2712 3 230 1 21 56 2151 43 4 1 3593 3 4 1 2712 69 7 116 15 2 6079 4 1 2511 494 3 121 6 1195 3 8 56 214 512 1366 77 1 67 4 1 170 287 14 60 3525 5 7894 44 3 20 1621 992 7 1 7762 84 941 1102 3 10 6 20 59 1 3274 11 899 3 15 17 1 443 1047 15 84 3 2717 14 530 34 1 120 22 5321 69 630 5788 53 41 91 3 1 415 120 22 9 6 2 21 11 40 2 627 3826 683 3 1 1343 4 9315 4138 8376 3 36 1215\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 94 1 4 1 74 7150 35 179 11 2 4848 88 26 2795 6 1914 7 52 1685 4571 3 39 212 163 52 1434 136 11 228 20 26 667 78 5 1 74 1464 2795 6 279 1 13 2571 153 186 554 105 1067 36 9615 1685 1865 121 3 13 7479 13 1149\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 39 159 9 21 226 366 7 1 6012 21 1672 3 10 1067 151 79 560 45 1 2104 29 1 1672 152 412 1 124 183 450 1 21 12 311 489 69 8 134 11 197 41 7200 69 10 12 1319 4785 663 14 2 914 164 22 111 2287 8131 31 8054 3 2411 706 1778 69 60 130 26 3238 4 44 7 9 135 9878 57 2 1021 103 2691 7 10 69 60 130 93 26 1 263 12 464 3 1 72 61 340 332 58 302 5 474 38 1 807 8 496 894 9 76 26 1459 1095 17 98 805 81 7 368 22 587 5 90 3036 9105 8 56 96 4 6 2 686 16 1 210 18 180 117\n0\t57 71 2 686 525 29 2 21 38 1 9015 4 128 7 957 234 4179 1 21 228 24 71 138 378 10 498 77 2 376 2662 4 2 18 106 1 460 310 1356 367 62 2131 3 1459 65 62 197 78 13 4018 3 25 379 6645 4657 216 16 1 2269 234 3839 9110 3 22 3297 403 62 177 7 3278 9033 385 255 745 6336 35 63 1092 227 9255 7 122 5 90 2 139 4 1 185 14 2 5705 14 4657 6 315 27 6828 44 3086 385 15 2 163 4 537 3 2 156 1995 14 2593 13 3027 448 4018 153 186 5 1 9931 3 1 344 4 1 21 6 1019 7 2 2464 1 344 4 1 201 40 132 2104 14 962 7163 9499 3 1297 21 376 7 546 3 288 37 862 1120 15 1 212 9404 13 7 146 36 9 964 81 36 137 1505 845 76 39 3 9183 19 2 4 7754 17 153 55 24 11 160 16 592 13 1118 31 1115 351 4 290 1 4 6723 787 142 6 1 5638\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 314 5 112 9 18 14 2 635 688 283 10 316 172 1372 10 152 4597 65 1 1748 228 24 71 1929 4 42 85 155 7 17 10 40 202 162 5 1857 104 36 3 78 138 1163 68 9 7726 58 58 84 716 571 16 1 4834 2224 34 455 2 1519 268 30 6755 13 150 937 969 1 305 7 1750 11 10 54 26 1 2067 8 2299 10 7463 322 8 12 111 1 1077 57 59 2018 1491 1 7168 508 57 3 1 5025 61 1634 1 59 177 11 12 1476 5 503 12 48 1 1921 456 61 183 33 367 450 8 219 9 18 11 78 155 115 13 92 59 302 8 192 523 9 753 6 5 187 50 102 7345 19 144 9 18 130 26 1140 5 3051\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 74 4 102 1290 7978 5178 612 7 8684 395 82 101 1 52 4566 94 534 40 34 4 2244 2891 1 6627 3699 3 120 11 22 463 20 14 14 508 2172 126 4 9986 41 20 14 13 6 1016 14 2 1081 7151 32 1 6119 16 157 664 5 31 5815 7 1 2412 578 1123 1102 5 3569 47 1 155 3 1 2817 4788 93 1510 2 84 1663 17 1660 6 1 644 1085 25 1848 8565 8814 239 4 25 4718 13 3057 202 58 709 3148 7 9 158 37 99 10 3023 5 26 3154 77 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5988 1530 83 70 8001 47 4 8 12 13 7955 6 152 2 138 3 462 13 3 1004 4772 70 1 2055 928 32 257 493 5649 3 27 123 28 4 25 138 4109 3127 13 2699 1 1004 1044 10 289 1 3880 33 2031 194 4376 194 98 6103 3 4684 1232 126 5 1621 110 64 16 725 5 64 48 271 6124 13 8 83 2510 15 3 1 112 4297 101 315 3 1 250 272 4 4706 8 159 10 14 31 1643 19 4063 1 233 11 742 338 10 666 14 78 14 530 3 1 1186 5181 2014 2470 7 51 12 2 327 13 777 31 1139 135 207 2 53 1606 248 109 3 109 1613 10 76 90 43 1920 1 17 831 207 370 19 13 724 56 130 24 11\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 2 91 18 8 191 24 2111 3174 4 91 104 3 286 1421 1251 32 34 508 7 42 221 979 699 382 132 14 218 218 5769 3 22 6760 91 32 357 5 4726 19 1 82 1737 418 142 91 3 196 527 14 10 6970 285 50 74 956 4 1 3153 566 178 8 179 5 512 11 9 12 2 323 91 135 8 12 5395 11 8 57 39 107 1 113 11 9 18 57 5 7196 1 18 270 86 80 3144 77 6517 898 285 1 2050 3365 980 66 6 2 3983 4 28 2346 1399 94 2877 15 39 9 28 158 206 4627 1501 11 27 1071 798 6291 1 1143 4 6173 3 1037 14 28 4 1 210 971 4 34 290 75 91 63 2 91 18 99 3 560 58\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 462 130 24 71 1 1 259 8460 4 1 18 27 153 118 48 27 41 48 27 705 139 140 157 4097 4902 2849 16 2798 27 196 58 58 2128 162 4851 5 26 174 13 4255 823 12 446 5 365 144 27 12 4851 5 26 1956 9809 13 92 59 177 11 12 935 7 9 18 6 11 27 112 25 435 3 12 2 53 4757 17 1 344 12 6960 13 26 206 6 2 11 54 36 5 26 1956 1939 17 48 27 56 130 87 6 5 70 2 148 2340 73 94 25 141 8 83 96 27 40 2 680 5 90 14 2 18\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2169 190 20 24 1748 121 41 4195 293 363 17 10 373 123 10 16 437 8 495 348 23 48 86 2354 145 273 23 459 284 1 9 6 2 84 5000 1724 108 3247 2999 153 134 1878 27 531 40 31 3664 41 176 19 25 543 17 10 2589 1 1223 51 22 84 238 3 566 43 4 1 168 22 8902 17 1333 368 90 241 2391 11 72 130 24 5 1291 257 1408 2058 8 24 20 107 2169 358 17 9 28 10 28 4 50 7219 145 2029 227 5 24 2 379 11 19 259 72 205 112 9 18 3 354 10 5 261 35 1143 1360 502\n0\t7656 243 68 17 188 357 5 139 540 5900 33 49 2098 912 40 926 357 5 139 13 7254 42 2 3199 5 7708 3 16 137 2479 35 83 4332 31 49 160 457 1 45 1949 8173 22 5 26 1 59 323 782 529 22 137 168 7 3928 193 6435 8 179 2611 85 152 57 52 840 49 1738 3 6396 48 271 19 285 1 8099 7395 13 777 2 901 4 102 1 8377 101 31 525 5 1965 1607 15 1446 2545 2768 8 4043 114 70 5 79 195 3 3483 245 1 330 350 1 18 77 3670 3 12 169 2971 77 86 5831 86 1154 224 116 43 188 905 20 5 90 2509 3 136 1035 22 198 1463 5 23 229 495 751 194 20 11 203 104 22 5480 5 905 8340 13 92 951 22 34 2211 3 51 6 2 6474 551 4 976 1761 1739 1 1277 1174 17 3255 145 20 193 1 857 88 24 71 5236 420 354 23 5 99 490 59 45 317 2 325 4 1669 4144 2895 19 99 47 16 137 543\n0\t4 25 871 11 54 90 122 1490 6 13 92 748 22 7682 45 20 1528 14 7 43 4 1 82 2982 13 872 207 110 1 344 6 904 5 590 1194 285 2675 3 1336 2 2481 38 75 5 634 9213 69 60 1986 44 671 148 2081 3 154 427 7 610 1 166 699 3042 6 775 6105 5 1159 3 25 6 1 178 8594 3 15 1580 931 41 2944 62 3112 209 14 2 9531 45 8 57 2 8 54 24 2649 10 5 126 719 13 4082 6 14 2 84 1965 45 23 320 25 514 216 7 27 2296 1 4761 4 6493 77 2 3583 4 102 41 277 911 3 98 1 7 14 3 2352 14 2623 7 9 2675 2201 9185 13 92 1392 7429 289 59 31 4846 4 1472 1 443 106 10 76 131 199 48 72 175 5 1861 1 567 6 4369 618 51 6 623 49 7 2 406 9604 791 260 7 1 98 6828 1 5888 618 114 11 70 115 13 6 2 223 3103 9 324 6 20 1901 16 41 78\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1396 22 6465 9 18 6 211 3 8 336 9 18 2 3284 144 123 307 812 9 18 37 1264 8 555 81 54 112 9 18 52 68 33 5074 1147 3967 3 783 315 22 306 7655 3 33 256 140 2 163 4 216 5 90 9 108 8 83 64 23 81 47 51 253 104 36 450 37 81 130 39 99 10 3 20 878 110 8 36 9 108 10 6 1233 140 10 513 51 22 546 61 10 1230 17 29 225 33 89 110 1461 3967 54 112 9 73 9 18 40 1 121 39 36 1 131 800 4 17 9 6 138 68 656 8 173 241 9 12 1274 37 8023\n1\t5201 66 12 1 1293 1 226 277 22 217 498 25 155 19 6000 217 196 2 19 122 5 550 2110 406 196 2 19 16 1 277 1810 5 1364 1 217 25 3588 17 25 366 12 20 125 5142 7530 94 1 7236 255 47 217 16 25 7236 2063 11 25 366 6 20 125 1891 217 666 11 1590 7 25 319 7 1 2471 1617 5 3953 16 1 3588 1590 255 47 15 380 1 5 7236 217 2177 142 7 1 2412 14 40 28 52 1484 5 139 204 13 294 2606 1590 16 1 9090 35 6 1089 285 1 196 826 295 30 1590 98 8653 2 19 271 16 1 1203 217 5 25 1965 2296 689 1590 8653 174 217 3736 16 1 1985 277 1810 14 27 40 1620 217 40 1196 1 9090 16 1 74 85 7 25 3163 7224 37 226 5201 147 172 3891 12 138 68 9 17 10 12 128 1 1484 12 93 53 217 1 1985 4 1590 7 25 1617 6 373 1 80 19 1 4811 13 646 187 10 7530 217 2 8392\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 684 267 213 105 565 51 22 43 211 188 2267 204 3 1057 3 51 22 43 243 1201 120 7 592 13 92 505 245 6 3161 1543 1 1675 4 1 136 43 168 22 84 1816 508 22 311 7 4909 8 214 1 185 4 1 67 4878 115 13 1601 7 399 8 497 42 279 283 45 23 36 2358 3 684 8221 42 20 56 2 91 141 3 1 393 114 230 169 452 39 83 504 235 47 4 1 1551 227 45 23 24 31 594 3 2 6538 5\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 1485 1532 21 6 28 4 1 46 113 4 1 349 5198 32 34 1270 4505 642 66 6 3948 31 6483 604 4 538 124 220 7 5198 5239 612 97 538 581 66 3437 2 350 2596 61 36 9 628 29 731 234 21 94 956 9 158 28 63 64 75 408 2260 124 61 446 226 349 5 4 86 2377 18 13 9951 30 28 4 113 7896 2668 9 21 363 4 17 86 1880 19 3 591 1 3100 2712 4 2668 6 360 14 1 327 3100 2010 242 5 2711 3 55 4891 7 2001 1255 28 4 1 84 171 4 616 6 425 14 1 3100 2002 14 6 1 344 4 1 1249 66 1680 2294 3 1101 13 1627 97 1955 1626 7 2868 1214 22 8 83 24 227 1032 5 139 77 9278 2668 4763 126 77 1 119 15 264 120 8356 45 9 21 266 29 2 1672 774 1259 41 19 3481 83 773 1027\n0\t1167 89 58 356 3 57 58 8630 1604 16 101 1002 2571 8 1274 10 2 715 47 4 9825 13 92 957 141 6164 136 9326 1 3914 266 36 2 6200 6084 2729 3641 7179 4 1 1239 1 51 6 58 41 9874 51 6 59 7416 1294 1 166 232 4 640 15 43 824 7979 1920 246 5330 378 4 2796 2139 189 1 69 31 312 66 289 52 674 68 235 422 11 9 6 2 3957 15 332 58 5056 3 162 5 13 3053 72 64 146 32 1 907 4516 73 1 22 39 185 4 1 184 91 1 4 66 72 785 162 2562 488 7 9 141 137 35 70 140 5 1 8738 1920 9305 114 29 1 182 4 1 74 3750 22 39 643 69 106 1 6 1 356 7 207 39 2317 145 1096 8 143 946 5 64 2938 13 92 397 1353 3 121 7 6164 1580 22 20 105 573 17 1 67 3 1 1154 22 37 1169 3816 4 95 3576 11 9 18 63 59 70 32 79 2 1020 4 535 47 4 5579\n1\t37 97 4 1 82 3249 249 5279 2 4275 2762 567 833 3 385 15 43 215 265 3 13 2595 28 387 8 241 11 12 1 401 249 1125 2 1246 11 251 57 587 183 15 1 1143 4 1724 14 237 14 1 781 16 9 7966 204 7 6444 10 12 620 518 366 5996 19 2534 1354 715 8488 195 587 14 13 872 8 63 320 39 35 12 1 215 7 9 933 2967 1306 3 51 61 55 19 178 6568 248 30 1 75 109 72 63 320 3 4642 14 2014 2914 19 25 869 3 14 72 61 101 4876 5 1110 1 398 1679 3 99 1406 4 30 1 7481 1404 4 1 1350 4 161 541 34 136 2014 12 3119 5459 31 161 541 19 1259 3185 4868 19 116 866 1181 1 5976 977 1 3068 54 597 1 4927 30 1 2918 2955 833 3 3343 1 13 5005 52 68 2014 12 16 4158 3 188 2183 46 78 36 2 2876 13 6621 2403 1724 86 4 3 13 3 4 611 6 2 16 1537 4223 7966 8057\n1\t397 5308 17 14 16 1033 5308 10 6 243 4878 7 698 8 1064 9 28 4 1 80 4499 124 4 1 10 1196 1 918 16 113 3236 17 1 21 6 39 509 29 268 15 37 78 1206 3 1206 3 7407 207 73 1031 43 4157 11 24 2 5057 604 4 759 385 15 2 627 67 3 121 3798 14 889 79 7 6676 9 18 6 202 34 1299 3 7407 7 698 9 21 40 38 1 6326 788 3 941 604 7 622 3 45 23 662 77 490 1 21 76 1108 3551 1038 187 79 52 14 2 4818 15 9336 397 2139 3 2 904 441 9 21 6 36 2 5759 4 39 153 5624 7 1 223 7985 115 13 2044 6 1 21 11 1620 47 1427 654 3 1427 334 7 1 16 113 488 5 90 3291 2428 218 2602 3 7 1 1121 55 2695 7 9 55 52 491 5 79 6 11 7 1 433 16 113 2511 1106 5 9 193 296 7 57 924 95 67 5 1271 4 3 12 650 3424 30 941 3\n0\t3914 10 380 1 1418 11 6 242 5 2321 1 3 551 4 931 1933 7 1 21 516 1 1933 538 4 1 4501 66 311 153 916 7 1 769 10 151 1 21 176 36 162 52 68 31 5 1 5773 3 2836 42 221 7785 5 1 1077 66 196 1 80 5837 193 10 6 1 5118 185 4 1 212 1077 14 237 14 145 6526 34 7 399 10 39 1421 5 131 11 789 52 38 265 68 502 443 216 6 1976 14 322 193 20 235 11 54 90 23 2703 47 15 13 92 59 177 38 9 18 11 721 79 133 12 1 220 8 32 10 12 299 5 309 2 232 4 3118 8 54 924 1064 9 14 2 538 8315 13 1601 7 399 174 680 433 16 135 8 359 19 11 1 113 104 24 71 588 32 1 710 185 4 1 4236 9 6 650 73 29 2532 33 24 146 5 348 3 2108 5 348 10 7 111 11 6 205 3056 3 931 395 1338 209 5 300 1 7648 1132 130 328 11\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2199 275 35 1143 1430 168 3 12 56 3565 30 9 1447 4801 8 12 7300 77 9 21 17 105 97 165 77 1 111 4 1 53 67 10 130 24 13 92 91 69 145 2 325 4 626 3 97 4 1 120 27 40 17 25 280 204 6 2 1065 28 14 31 8174 13 92 927 6 7389 3 1 167 7834 6 148 32 48 8 8563 51 61 375 971 9766 239 82 19 9 158 3 207 105 565 23 63 348 188 662 260 15 1 471 8 339 70 15 2055 1103 4 1497 27 130 24 71 8761 17 27 247 7 9 108 42 93 232 4 2 747 878 11 2 259 9403 2 1004 6 43 426 4 17 8 920 8 7457 65 6750 16 1 2112 4095 13 2078 297 12 4652 8 173 4522 38 1 4448 32 1 1504 4 5 1 3063 7 13 7414 36 5 64 9 18 3 248 1824 73 10 6 2\n1\t192 400 1933 73 8 118 7 50 683 11 127 102 120 76 64 239 82 702 42 34 38 116 221 923 2845 7 1151 3 42 2 46 923 21 11 153 1271 5 34 1098 17 10 407 5355 5 437 187 10 2 26 4937 15 1027 742 40 3995 2 46 1386 21 15 2 304 67 274 421 1 304 1138 4 1 707 4 133 10 151 23 230 14 45 23 725 22 140 1 707 3180 385 15 1 807 14 45 23 725 61 140 3572 19 2 42 46 3496 5817 8938 3 2975 87 31 5898 329 4 2472 1 1618 263 5 500 33 191 24 285 43 546 3 10 557 530 33 24 2 84 1300 7 62 2237 62 14 6490 355 5 118 239 82 7 1 477 6 46 1202 3 23 63 323 230 1 1151 3 2210 189 126 14 1 18 8 70 1 507 11 9 12 2 46 923 216 16 561 3 8 1768 1451 122 16 355 9 21 1001 10 373 2610 79 3 8 449 10 2816 508 39 14 1264 16\n0\t340 48 33 61 553 5 87 3 48 23 64 7 1 570 1 111 5535 4938 9 6 37 37 136 133 9 18 2 89 285 2 21 14 632 448 8 24 556 12 2467 29 6 1784 1900 1582 6 3 2 2785 793 4 9 6 2864 49 7 148 157 5 102 81 117 905 5 284 47 1767 7 14 3 87 49 1157 19 1 2023 160 125 1 5330 32 33 24 51 22 3359 4 9 574 4 2813 533 1 4356 34 1 413 200 773 606 3 98 4700 7 36 2 4 9079 605 142 49 60 271 5 1564 1424 140 1 4 943 6292 244 770 19 954 772 3416 1 212 4 7300 32 1 9204 5 1 14 45 9660 30 1 19 3 778 162 3557 3040 8 55 3307 45 442 12 2163 73 42 25 379 148 3892 5535 213 845 132 13 777 20 11 5535 6 6843 4 1582 8083 238 3 7953 1307 12 3982 1768 1462 16 503 3 8 3461 4429 2084 2015 2934 105 16 86 55 45 1 67 6 2 222\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 804 4 9 2673 251 6 38 4 34 188 5 3381 2 119 6171 8 323 1 250 129 40 2 293 9648 253 869 11 27 12 1711 2159 3 27 271 142 5 9648 2727 8 555 10 61 1492 19 2388 3 10 153 729 45 42 41 2484 69 42 11 452 55 1 833 788 818 6 695 29 28 272 7 1 833 5079 236 31 164 15 31 19 9188 2 710 14 45 10 61 2 5348 127 1512 76 20 90 356 1013 23 64 1 468 539 318 116 4251 10 6 373 1 80 979 2673 8 24 107 1826 4506\n0\t8 118 46 4618 81 204 291 5 96 11 1 18 143 24 5 1203 1 795 4 1 4623 25 2994 48 653 49 27 165 1 3227 17 10 6 23 2198 8 2309 45 23 22 296 23 76 118 34 4 476 72 87 20 34 414 7 4100 5 348 9 67 38 132 2 164 14 27 515 1220 3503 11 29 225 43 4 1 622 3 697 795 22 9 153 467 813 3 51 22 1175 4 781 3276 188 7 2 18 30 41 1269 1673 197 5 5941 197 55 1462 655 43 4 48 27 114 669 214 47 52 38 122 765 1 4450 708 19 9 1 18 343 36 2 2 799 7 85 15 46 103 7068 8 54 36 5 118 45 51 6 2 21 38 1 148 73 15 86 551 4 2132 46 673 1428 11 100 678 1103 4 3 1 46 2557 551 4 95 525 29 31 2526 9 18 6 4878 8 54 20 354 5 261 11 33 351 1 85 10 270 5 99 110 2 3714 755 47 4 394 2022 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 6 36 31 4 1 10 40 132 1654 9810 3 4159 23 63 20 815 241 10 12 89 94 1 234 392 49 4302 12 3 3 12 1029 15 2 568 10 6 2 5 1 113 3016 4 1 423 8634 14 109 14 5 1 2174 1688 7324 4 11 2391 4 115 13 6 2 129 36 2 661 5155 1565 25 111 7 2 184 3317 27 6 5814 3 30 1549 3 25 1630 720 1 81 27 14 78 14 1 6871 770 1 67 6 553 7 2 1574 2352 3 641 2434 286 15 2 1449 11 6 202 2 4 10 6 28 4 1 80 7910 104 117\n1\t1246 3 31 4653 1280 2073 10 247 223 183 216 1647 19 1 4384 1638 1 206 4 247 7166 19 770 19 1 967 220 27 1050 10 5 26 105 3 1031 1 74 28 37 745 253 25 865 21 9935 12 758 7 5 1654 1 4384 51 339 24 71 2 138 206 16 1 1614 1037 217 9980 1486 6 42 1029 15 86 221 979 541 3 2157 11 173 26 13 1118 151 28 4 1 113 3066 117 6 11 10 136 10 6 5151 68 1 1571 10 6 39 14 1434 10 153 720 1 120 36 80 3066 1405 1037 3 3351 22 1 166 3794 120 11 33 61 7 1 74 135 9 6 73 10 12 428 30 1 215 80 3066 22 20 428 30 1 166 1063 14 1 74 628 17 220 57 1 166 10 1168 65 101 39 14 53 14 45 20 55 828 39 36 1 74 628 6 332 3654 109 2878 1816 3 845 399 1766 42 1029 15 2577 293 363 3 885 1411 453 32 2822 9739 3 962 42 31 3385 3829\n1\t5072 3203 78 12 6344 30 1 4972 5076 1 879 35 713 5 1 322 11 419 1 2643 2 680 5 4269 126 142 1 15 25 16 1632 7 1 477 4 1 141 2 342 4 19 597 242 5 70 155 5 3381 19 85 22 4425 142 5 62 45 8 2209 98 28 1344 2 3421 5461 77 3203 815 1 1053 7 1 1162 492 55 25 442 6 2 606 3892 14 7 7 815 1 2059 1053 2 315 3142 1 3500 4 2214 510 3 27 196 1459 65 16 30 1 2643 19 5508 27 47 1 5292 4 1 9001 27 6 1 711 4 28 4 1 27 789 75 25 711 6920 1 1655 6 34 7 2454 4 1 236 59 28 111 5 70 2028 3455 16 1 848 4 25 711 3 5 5349 188 37 3378 3195 1927 780 316 5 1 1430 3 4839 1 7473 541 5 1 2295 27 271 47 5 1 3 1 2643 789 1 2075 9 6 2 18 5 26 2299 30 261 35 117 713 5 1313 19 2 732 3304 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 569 4 6 2 6445 17 360 1888 1 120 54 26 39 540 3 105 1577 17 1 609 523 907 11 10 5609 3 10 557 46 530 80 81 76 118 508 15 2 1388 4 43 647 17 3037 58 28 789 81 15 4 4421 132 14 3 1 8952 4 1 558 41 1 35 4918 15 78 12 59 2 156 4 1 678 1 249 557 2903 4 535 251 3 2 1075 4155 51 22 2326 5 97 203 581 132 14 1 1368 2 52 1058 1993 5 1 2552 4 557 6 2 158 1 3415 4 4 66 8 76 20 134 78 17 496 34 7 34 1 3415 4 6 2 892 267 131 15 1744 523 3 2335 807 8 54 373 134 11 10 6 279 133 14 23 4108 2580 8381\n1\t1186 28 6 3 5 598 671 680 276 36 2 17 6 152 31 296 66 6 791 2 264 7415 5 86 598 7902 1 1398 6 633 15 2 243 3 2305 7676 60 6 46 2586 4 44 3734 14 2 6342 66 7 44 671 151 44 6200 1914 5 95 3170 5885 3311 13 2679 31 1217 1 21 40 2 604 4 10 63 26 43 4 1 9381 3798 14 1 28 7 66 1 1804 2108 5 2 2779 2960 77 1 22 169 9803 3 1 423 120 22 34 301 9086 490 245 6 2 21 66 6 1281 4229 29 2383 3 8 2172 33 76 335 10 95 583 76 87 1943 30 43 1730 1396 132 14 578 35 11 1 3079 1 644 59 3272 5 50 793 11 1730 1396 22 20 198 1 113 5 2598 502 8 894 45 97 6437 38 19 86 377 13 1268 177 1995 76 1116 6 1 1667 4 33 190 93 1116 1 644 3599 4 1569 3 3008 14 1 3196 132 14 2779 3 7 1 9 6 2 46 837 231 135\n0\t800 4 1 13 40 20 71 232 5 9 416 4 505 41 5 9 108 670 154 770 353 1163 1123 2 5 1 661 6551 496 9970 3312 6 4345 3 378 4 1749 31 4782 89 2 47 4 1 361 31 121 541 11 54 24 3091 109 5 1 7123 4 1 3844 1588 9328 17 6 237 105 5 1720 142 2 661 13 872 37 1 18 385 1938 9363 5 151 43 4 456 4992 23 191 3 2 11 190 187 3951 378 4 2826 29 2659 25 2894 1272 794 95 2305 353 2437 2222 3647 7 187 199 11 13 6 1 59 82 353 4 1367 7 9 1472 7 2 53 29 1 8621 480 1 2050 631 717 5197 3211 12 60 12 1 82 171 7 9 18 24 58 680 5 70 235 422 4 2427 340 9363 5 175 5 1 19 9892 29 7238 115 13 172 1372 23 230 1 4 1 1039 353 35 3870 1 6627 5 2074 2 3965 3 378 5 2074 2 426 4 570 1352 54 24 132 2 1658 16 10 1259 925\n1\t12 852 10 5 1 746 61 167 4 194 55 193 33 34 384 5 1023 11 1 1292 12 2 164 615 47 25 147 1327 6 2 1500 4128 3 49 27 451 5 1173 65 15 1159 11 444 232 4 2 8 721 852 10 5 735 8429 17 10 100 56 1322 1432 10 153 90 14 78 4 86 1477 804 14 10 3 6089 5 26 386 49 10 228 24 71 138 5 1 644 17 8 173 1844 10 16 656 7947 9897 6 84 14 1 3 180 94 375 172 4 849 11 2917 4071 63 26 332 425 49 201 14 2 244 340 102 4 1 113 709 453 4 6012 395 82 7 1 167 78 8 332 65 29 1 5217 19 25 543 49 27 3 9897 74 24 4470 42 28 4 1 1340 447 168 1218 50 59 148 3731 6 11 33 90 2 222 105 78 4 2 36 202 3625 1943 300 15 43 1138 8 88 24 3946 10 828 8 63 5062 86 6975 1024 73 8 57 2 56 53 85 133 110 16 5183\n1\t22 1100 3 1683 893 1549 9906 6810 7015 1055 3 7670 193 1 494 6 396 243 1 832 3649 4 2239 127 1626 3 1 2558 486 4 1 120 6 109 5087 7 2 7572 699 43 4 1 168 4 4116 3 931 22 3418 5 99 17 1 67 153 77 1181 1997 11 1 120 1958 1 22 205 2100 3 3 11 62 2628 22 30 62 4 239 508 1687 14 109 14 30 1864 2670 7 541 1 67 4838 5 1 1618 683 4 1 423 5538 3 1 9456 1109 4 1 121 3 1 2171 83 1 4 1 4142 13 3027 423 12 28 4 1 124 11 165 2625 1932 1887 7 368 3 1864 133 10 23 22 4 101 2928 29 1 3241 4 2 6583 3163 44 9907 1212 3 412 4197 3644 28 41 114 169 36 7951 4558 116 838 32 44 74 9261 1864 6 373 1 1201 278 7 1 158 3024 2604 6 93 313 14 1 3401 3 8002 1465 3845 33 22 2 53 1024 144 850 144 143 27 352 44 15 11 2007 464\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 747 18 38 9 287 35 179 44 4729 35 60 336 37 78 12 229 2927 17 56 25 1648 1508 57 39 256 2 3528 19 122 5 473 122 77 9 56 1257 232 4 36 7 1212 3 1 10 88 229 333 2 941 178 3 300 43 1299 17 51 22 43 167 3860 3438 33 90 9 28 282 56 37 60 1572 992 70 6957 30 1 378 4 8920 140 1 212 108 1 1648 259 6 2 53 1508 35 440 5 7292 25 4615 585 15 1 287 27 12 4596 2339 27 55 16 126 5 24 2015 85 16 17 1 287 7 9 6 2 56 2513 3 1304 1 6 31 9448 1198 3 451 162 5 87 15 550 60 419 65 19 39 73 27 12 2 8 179 10 12 167 747 75 34 60 57 5 87 12 4420 122 3 3719 473 155 5 1408 3 3771 414 3472 117 7735 17 42 20 11 232 4 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 2 148 4773 1 4 1 1 119 6 6804 7 1 74 535 1507 1 120 22 3098 3 674 62 7200 301 2959 1 494 6 8266 3 850 37 3015 1 1650 22 979 5 1 120 3 20 29 34 7330 41 318 1 11 705 98 42 14 45 1 18 337 142 1 2 222 3 10 165 2 222 6800 3 4178 17 8 83 175 5 81 32 133 9 135 1 74 4 10 22 323 8 419 10 31 9427 51 22 43 1884 453 675 841 47 9 108\n0\t199 995 11 1 272 4 1 1484 12 509 15 13 2663 193 1 61 1 74 968 5 24 34 4 86 1144 2711 341 59 1 330 220 5 24 723 9 1484 12 20 2 9 12 1 6326 1484 4 1 1925 3 4452 114 2 3640 4 25 278 49 27 12 303 818 421 723 413 3 8 96 27 88 24 152 1789 142 31 127 2491 1 1484 54 24 1168 1 82 111 13 1268 4 1 6308 117 12 93 28 4 86 80 815 1 80 2107 2233 12 1 7110 4 1 1925 1472 19 392 2756 3 8637 3 55 1 7 1 570 5336 9744 10 12 37 678 5 64 122 256 125 37 98 139 260 155 5 25 1669 3163 9691 7489 93 114 322 355 3996 4 3 1 17 11 39 247 2 4802 5265 13 150 96 1 59 272 4 1 5336 1484 12 5 24 3 1 5525 1364 371 29 1 3158 13 252 131 12 509 3 1 6308 61 105 3752 1 2289 12 3879 17 6 1 302 8 76 320 9 461\n0\t6 2 586 135 16 628 10 440 5 26 97 7435 29 3633 6 10 377 5 26 2 2 2 315 1073 41 2 782 18 15 4833 1348 63 9194 236 2 686 178 29 74 3 2 330 10 498 695 49 1 21 440 5 26 722 1 623 6 169 1 1905 8 338 1 393 2 13 724 1251 32 1 2526 8 12 167 945 3 1 882 6 52 288 295 32 1 412 68 101 1 1511 1714 740 239 1146 519 722 519 3903 3 519 169 7 698 23 64 2 282 403 6653 7 48 22 72 377 5 70 32 3559 9 166 282 54 6912 28 4 1 807 12 11 377 5 26 9424 8 83 8545 13 2361 4 1 453 61 5417 3 97 61 169 8 143 474 16 80 4 1 807 8 338 1 119 17 1 3225 12 248 14 2 203 158 8 143 118 48 10 12 242 5 1142 8 143 149 10 722 779 3681 30 1 769 317 303 6523 2386 24 8 39 71 906 468 100 118 1 1836 5 11\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 8 74 159 9 21 10 12 20 31 1502 461 195 11 8 24 107 10 316 15 43 417 19 305 1394 33 57 20 2111 10 19 1 4055 412 9815 50 1062 1373 1 4272 1 915 729 6 3 1 453 22 5128\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 174 7981 5347 9 77 1 234 4 1 1903 3 1 3 10 123 46 530 10 153 5090 5 1 184 293 363 36 296 7020 10 2405 52 19 931 2 2831 641 119 11 217 652 5 500 10 1026 1 67 4 2 342 35 751 31 161 429 11 12 1521 408 5 2 46 161 287 35 100 337 3 603 766 6478 7 1355 3874 2 1556 1924 678 188 905 5 780 7 1 1828 3 294 1895 792 5 473 77 1 164 35 35 12 152 2 3319 496 4869 7101\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2676 101 5567 685 9 18 358 2682 1 427 38 23 55 107 1 6081 4 12 1 113 185 16 6116 15 464 523 3 121 36 5148 7 9 18 42 58 560 37 97 22 556 7 30 4533 249 864 3434 87 725 2 2454 3 70 47 4 1 429 3 645 2 2372 3699 116 1927 26 1096 8026\n1\t7542 2097 3935 6 28 4 137 173 26 728 7 1422 4 13 92 1332 746 1281 38 9554 471 17 10 784 5 79 11 1 857 6 169 3 8 57 58 465 1068 110 8 143 64 1 709 5082 286 8 192 20 2 568 199 709 1787 17 8 1116 1 9217 3164 3 2263 300 1 1691 4 80 81 61 105 298 38 1 67 10 54 9194 688 45 23 64 2 18 1084 6055 3 4232 5696 2193 48 54 23 4749 8 57 43 19 50 4843 3 173 352 17 114 72 56 64 1 166 1973 1 462 1538 292 20 14 3909 14 10 128 12 446 5 1622 122 65 3 1817 1 7645 6055 12 52 68 7 44 8566 1538 17 1253 2 163 4 299 5 1 471 1712 3366 12 211 3 5 2085 791 244 5227 227 5 139 8121 19 25 2941 1134 2237 72 63 64 2 8605 4 492 2697 3 626 763 6065 257 5 90 199 2499 3 97 1359 5 13 2044 79 42 20 91 29 513 1 2757 507 56 165 8892\n1\t20 3539 11 33 57 89 37 4961 8 93 96 11 10 6 2 84 4897 11 33 24 20 89 95 1129 8 555 11 8 165 340 127 830 503 101 7388 142 50 1339 3 101 7388 47 6162 98 9171 65 7 2 293 7731 406 926 8 2033 11 50 823 40 71 39 36 742 127 584 22 2297 269 4 1011 238 3 1216 34 1 744 23 481 566 127 535 1046 14 33 54 5423 23 7 34 5710 4 1 265 6 109 2878 3 5 503 1275 2 360 572 4 535 1500 5807 7 50 2867 1 426 4 2208 11 1 24 22 1 166 14 257 5732 1238 41 5236 5236 2261 3 9963 3 1 2838 4 394 413 16 742 3 5414 3 1 2838 4 535 415 16 35 8 179 12 304 3 49 8 12 2 2010 8 57 2 568 5549 19 195 8 63 64 3740 19 50 305 4994 1 1009 6 46 327 3 10 255 15 2 1126 34 38 1 1199 8 93 179 11 12 2 53 6763 7651 17 27 165 188\n0\t753 4 9 21 94 765 174 878 667 11 9 6 3598 113 108 57 39 4463 32 125 2 1173 7 21 121 3 27 6 674 675 2455 4 25 124 22 1505 7 3 33 83 1483 476 715 4 25 124 22 19 1 1307 4 401 2226 5487 484 805 20 642 476 3 3 707 274 47 5 2955 224 2 2244 7245 183 27 1 4659 5 43 4 1 1035 29 267 7 9 21 674 2197 3 3 12 3 2304 1491 1553 30 2 301 2518 9928 794 1 12 3 202 1135 4603 49 60 12 19 1250 43 525 29 1216 6 1716 16 665 49 317 928 5 328 3 497 66 4 715 413 19 2 8922 1285 6 1 3873 5889 4 126 22 8 365 11 9 6 1 389 1376 5 80 596 47 939 8 5152 35 10 12 3 8 247 56 242 13 614 317 2 1787 99 1 6989 23 55 70 5 64 1740 8703 25 2688 42 78 828 34 7 34 420 187 1743 5 564 42 20 3 42 39 105 7234 16 437\n0\t2036 996 35 191 24 71 2648 2 7 28 874 3 822 19 7 1 1885 3 1247 11 1 4058 142 1 54 734 5 11 78 965 822 7 154 1361 488 4 448 1 43 4 126 22 30 58 907 422 34 88 26 8306 675 1 3322 4 171 7 61 256 371 5 5912 2 147 477 3 7684 5 1 4 80 336 18 4 34 387 28 191 20 995 11 127 171 61 20 929 7 5 9 158 33 22 3 1774 9354 5 146 458 987 543 10 54 1416 24 57 298 3 4942 1228 37 10 7911 1 6370 5968 1923 2022 114 1 82 171 56 241 62 453 55 3380 5 138 1 114 5968 9265 284 1 263 3 241 11 81 54 320 25 494 7 9 4 2 3124 83 26 2212 4 448 27 9 12 2 5 1 1228 4 75 78 319 2492 5259 63 90 171 13 150 323 449 307 602 6 7366 15 48 6 323 2 6447 525 5 1015 2 382 158 66 59 3316 7 4325 438 49 33 99 1 1766\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 284 1339 11 49 6651 6173 7074 5 186 2 757 7 3265 7901 30 1084 44 7 6084 5203 16 1 4 44 13 7567 636 5 186 1 1686 17 44 895 3126 13 3053 228 1346 48 60 12 403 7 125 2720 10 153 1346 144 2862 8934 3 4387 3076 22 7 194 6 1 736 11 508 24 314 16 1 119 4 9 158 3 207 260 19 1 701 44 7877 3163 44 1246 7 7593 44 570 178 15 44 4111 58 185 951 5 1 398 13 3926 1 748 3 1759 485 36 3641 2688 3 44 5365 6 781 679 3 679 4 44 104 9 99 95 82 28 3 468 26 403 725 2\n1\t36 949 17 33 4915 17 25 2913 629 5 26 1975 52 36 25 68 36 6431 13 4052 266 2913 14 53 161 1848 10 181 11 6 536 7 15 25 8159 3766 3 60 6 283 2 3028 654 578 17 606 693 3 33 186 10 5 1 2700 106 1984 3375 5860 621 16 35 6 3592 5 122 69 17 615 11 27 1419 1 1741 6999 11 60 53 161 1848 7092 30 25 277 417 2453 3 2013 1088 5 187 62 5 5860 3 90 122 31 791 6792 4551 9 76 1089 1 5680 4 1151 189 122 3 2666 2934 6 1475 3 123 20 2600 188 794 27 1750 5 13 92 1190 6 4502 14 49 3701 3 25 65 2 1500 6792 11 33 352 5860 19 4433 9549 1 4 62 1 119 963 951 5 1 9120 4004 11 1 609 5860 40 7209 31 4701 2468 69 66 876 7 1 7444 4 1 3961 7 1 842 4 3138 13 499 12 2 1515 1073 3 31 240 3304 16 3701 7 11 27 12 20 14 14 17 237 52\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 8 192 133 2 158 8 192 1997 11 10 6 2 17 6687 8 87 36 5 1959 512 5 390 14 78 14 888 457 1 8292 8 96 9 6 48 151 199 2655 41 1286 4793 2537 14 410 7998 55 1024 1052 2563 72 118 10 6 2 48 8 83 175 6 16 1 18 5 3006 79 10 6 39 2 18 37 11 8 192 2161 5 9720 77 1 4424 5893 4 1 538 4 1 135 9 644 206 2167 5 3270 333 443 802 6737 19 1 1250 300 10 6 39 503 17 8 149 9 5 26 1722 7807 3 2724 33 228 14 109 549 2 577 1 1735 4 1 412 9 6 39 2 108 87 20 1959 725 5 390 105 942 41 45 8 175 646 10 32 50 249 17 100 285 2 18 8 175 5 3589\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 313 21 32 1738 627 453 32 2 4016 4 598 3 2706 1488 1 21 1819 109 15 2 915 3683 3 3910 2291 1 3 3591 1190 4 5725 1317 5222 10 123 162 5 463 601 7 9 19 28 1737 10 289 2 170 3403 435 242 5 3081 25 231 197 355 1366 77 1 19 1 82 10 1819 15 2 1671 35 22 4187 19 3151 46 240 488 8071 2072 83 26 852 95 3886 1815 1450 47 4 1731\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3698 1 2636 9940 39 7 13 7254 28 4 1 80 4131 104 8 24 117 1586 3 2837 343 36 8 1130 8826 269 4 50 500 1 59 1362 538 4 1 18 61 168 11 713 5 26 5709 17 39 1168 65 101 211 220 33 61 37 565 510 434 831 16 16 10 114 20 2210 2 1280 1068 3 1122 7 2 9904 9 18 713 5 7743 2 251 4 922 11 1 250 919 1944 30 7633 533 1 135 10 1168 65 101 2 1401 388 38 2809 11 1553 1 6 1 2710 3510 7 1 13 614 23 175 5 925 2721 116 85 3 2128 935 4 9 13 69 55 193 1 1203 276 1609 1476 66 6 144 8 497 50 711 969 194 10 7 58 111 270 334 7 2 1189 1013 23 1064 147 2539 41 147 887 707 5 26 132 2 1888\n1\t10 12 888 69 48 171 88 2074 126 1 61 152 13 8413 2252 4 9 18 12 425 69 58 894 10 12 2244 5 309 1107 309 138 1107 180 2830 43 3 192 1933 5 414 1137 4 1 69 23 559 35 230 116 63 24 50 13 3053 72 24 332 643 69 3 1811 5 87 37 69 5635 4 9 913 7 5 26 446 5 793 86 19 95 2152 6 17 10 844 2 3837 1600 5 853 43 87 20 474 38 110 3522 106 8 7240 6 2 425 8129 42 260 77 1 16 1305 6616 3 2615 2630 209 183 137 22 62 69 72 130 597 126 26 39 656 95 560 144 3 4398 3 6613 77 479 13 659 43 364 5215 744 72 34 321 5 839 1 4119 5 26 2178 32 69 5 365 257 123 20 466 5 8 1479 34 137 35 337 47 77 1 5 2230 9 661 3210 37 11 10 63 2545 1 3106 47 4 79 49 8 99 110 23 63 24 1 4591 4 3477 69 646 1382 5 1 2229\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 39 4068 2 900 351 4 85 3 1686 1 716 22 2674 1 120 22 37 1881 3 1 111 10 2492 38 6 20 211 14 530 1 465 6 11 1 1063 181 20 5 118 75 2 562 557 488 80 6911 75 5 90 716 38 9 3118 4 448 51 22 2 658 4 5640 35 309 36 9413 3 900 17 16 79 9 6 20 1 1340 111 5 90 716 38 9 3118 1 67 153 90 95 356 29 513 35 3457 38 75 223 2 562 6 101 1 700 465 7 9 18 6 11 1 1063 3 171 143 55 328 5 118 48 6 38 5 90 716 38 110 8 343 3238 30 133 9 1054 108\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74 142 8 56 381 8215 358 30 8971 9 21 12 1963 3786 8 339 820 5 99 110 1 857 12 2 6182 1 121 12 2 6182 3 1 233 11 8215 535 40 162 5 87 15 8215 358 6 55 52 2 13 2718 2248 32 5 469 755 1 1807 81 155 5 500 9 18 213 279 1 10 2591 5 760 110 8 56 381 8971 6795 104 17 9 28 12 2444 45 8215 535 6 31 16 75 8215 843 3 715 22 160 5 26 8 96 8 76 39 1899 2350 13 358 6 31 1477\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 2 1886 7 1 518 1575 12 2 3537 839 16 79 69 5560 9 12 48 1 104 88 385 15 3 1 182 4 1 9153 10 128 1834 2 293 334 7 50 683 3 438 69 2 7144 5 1 1744 4 13 9848 406 172 40 107 2 5759 7 1 538 4 25 216 15 3780 3 4 4101 2 464 402 2115 881 22 1 5498 1482 41 1948 58 1776 16 41 2760 4 84 34 11 6 303 22 120 3 1105 11 224 5 162 17 7291 3 169 3478 9059 1 2717 4 2 3287 6899 13 1 109 549 1034 1 2650 42 85 16 561 5 463 1825 10 65 41 582\n0\t545 35 4920 140 9 6658 51 6 332 162 5 112 38 9 682 13 2136 617 107 5017 2752 318 819 107 9 6 6477 6 6477 1 585 6 1184 3 1 752 424 850 2056 7861 33 93 24 9028 19 126 11 1963 911 11 54 90 2 258 1 1410 13 659 1993 5 1 8604 14 45 11 1121 1509 1 42 37 1779 23 88 284 2 4037 7 10 1 5524 4 13 6 5 2373 62 14 10 498 47 37 6 195 8 83 2635 5 26 2 148 4363 17 1 226 85 8 5856 7165 191 24 205 4 1 8952 7 639 5 26 45 59 28 4 126 7165 1 98 1 82 88 20 2373 194 37 10 54 26 1445 16 11 454 5 87 1943 561 5 2900 9 1048 698 3 5787 25 119 123 20 4142 13 2078 11 235 422 12 56 770 8127 13 92 59 888 302 261 88 24 16 133 9 21 6 45 33 22 332 1770 5 64 578 1692 7 331 8853 3536 3 8 173 830 144 261 54 175 1467\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 28 84 108 229 1 113 18 8 24 117 575 8 99 10 125 3 125 702 8 191 187 10 3829 460 73 36 8 367 9 6 229 1 113 18 8 24 117 575 9 18 113 1541 23 63 45 23 175 5 99 43 18 98 8 674 354 9 461 74 8 10 8 338 10 37 8 10 3 195 8 221 10 3 99 10 229 154 1393 50 4766 36 10 3 96 11 9 6 1 113 18 117 575 9 18 6 38 259 7 1189 1162 8 83 175 5 2600 34 1 18 37 23 63 335 10 94 23 284 50 1386 18 1386 647 1386 441 3 39 84 2688 2 191 99 108 449 23 381 50 878 13 90\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 201 4 9 21 2735 43 4 147 138 1041 97 4 35 8 24 107 7 3088 2842 9 21 618 7917 79 15 2 1052 1152 39 5 26 32 1 166 913 14 450 1 1429 296 3263 22 1 74 2481 11 188 22 38 5 139 1328 14 174 753 243 4139 1 4711 2468 6 7 233 31 161 606 15 2 156 4 1 4306 2632 32 2 314 606 3284 80 4 1 201 1030 5 26 32 1 223 599 147 1902 7304 42 14 45 9 18 12 65 29 2 1170 201 1075 7788 1 1122 4 105 97 3 815 2 222 4 830 762 218 112 5612 30 116 558 4438 416 3 470 30 31 3 23 70 1 13 614 23 22 31 1651 8 354 23 64 9 158 14 2 2221 19 75 5 2410 116\n0\t0 0 0 0 0 0 0 0 0 0 9 18 128 6830 79 5 1 7343 517 4 110 9 18 12 20 39 91 14 7 955 4278 966 292 10 407 12 34 4 137 2508 1 465 15 9 18 6 11 10 384 5 26 7023 242 5 9988 1 5277 3 403 10 15 84 5168 48 8 175 5 118 424 6 9 377 5 26 2 203 1973 8 1266 42 17 20 7 1 111 203 104 22 377 5 1142 8 88 64 1 74 3663 242 5 26 203 3 17 48 1 898 6 1 330 42 39 3182 1 957 3663 6 36 133 31 9687 1465 158 66 3007 227 151 10 1 225 1370 42 31 11 9 18 213 111 402 19 1 1735 37 70 116 5928 7 8 118 43 81 419 9 53 4900 688 322 479 4304 7 2 4412 525 5 3979 1038 1961 503 10 6 1258 5 36 9 108 1 59 5576 4 9 18 6 31 491 10 811 36 819 71 133 9 18 16 172 94 59 1 74 350 594 40\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 220 283 9 21 14 2 3338 125 1099 172 1742 8 100 7131 4 133 110 32 1 567 168 7 1 5 1 606 599 32 1 155 3104 4 1 4391 5 6607 1 1969 3 101 2311 4425 47 1 3406 30 8 96 9 12 436 62 113 1967 326 135 94 9 33 1527 5 3782 1556 8005 3 136 137 124 1121 2007 33 3870 1 709 3718 4 9 108 2367 62 223 85 7 25 226 1635 15 1 8863 781 65 14 1 1207 6 1786 8 367 6674 1786 25 5 4123 2227 122 75 87 23 6674 2 1645 3801 3 55 1147 131 7685 420 134 34 7 34 28 4 50 430 217 8960\n1\t9380 4 20 59 16 137 27 451 5 7313 17 16 411 14 530 10 6 31 278 3 8 59 555 1752 54 87 52 4772 36 9 378 4 25 2965 238 1702 3822 136 33 22 1816 9 259 6 105 53 16 450 1 164 138 1364 31 918 183 27 6 248 41 10 76 26 2 225 7 50 6933 13 92 344 4 1 201 6 4410 577 1 2394 14 1 2528 6 15 2 2421 4 500 25 4832 2618 3 4473 7 3099 255 577 4245 704 19 1 1969 101 6052 1157 7 2 2306 25 41 29 1 5701 7 1 6926 372 16 34 35 76 14 1 5559 2707 6 4807 781 1 254 8522 32 5 1728 5 301 30 1 4 2 4476 44 231 5 475 26 3 8422 3372 14 1 170 1696 4464 3 2415 30 6083 2430 34 17 340 65 19 536 157 5 149 112 3 10 6 1 3213 4 2470 11 1986 44 671 316 5 26 2 1696 2 893 2070 11 63 39 414 197 1401 4 1437 48 326 76 26 44\n0\t14 5 24 2 1061 1880 19 1 234 3 90 257 486 828 1 6 301 3976 3 1 87 20 917 32 7652 16 154 37 404 11 33 16 9 158 51 22 4695 4 35 54 301 33 54 272 827 169 11 1 4 1 234 123 20 6883 1594 5 7070 38 257 4162 13 499 79 11 81 22 160 5 64 9 21 3 301 2089 10 65 73 10 844 126 15 2 327 1061 6947 1 250 8912 4 1 21 6 370 19 2 900 4 7652 3 10 6 14 91 7 86 14 95 525 5 4800 6639 4842 15 696 13 5827 9 803 13 8420 29 28 1746 28 4 1 666 11 220 533 622 80 4 1 81 24 89 38 1 234 590 47 5 26 2091 1 72 3990 998 38 1 234 22 93 1458 5 26 7912 11 400 123 20 5345 3 55 45 10 2723 8 83 64 75 11 1605 25 8 1266 45 25 1154 117 726 1205 98 8 497 72 54 24 5 2309 11 33 22 2785 1221 370 19 25 221\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2199 237 14 1 6394 427 5655 245 9 6 20 1 1726 779 1 330 1293 9 12 959 1 17 40 43 2642 3 2537 1217 2103 5 66 1007 190 20 555 5 8205 62 2778 28 4 66 8293 773 160 7 2 3992 66 7954 676 533 1 4 9 4142 13 458 245 1 67 6 3 496 2072 28 178 7 66 1990 9187 3 773 139 7 2 4972 1320 6 311 3 51 22 82 546 4 9 216 66 2735 1 166 952 4 3 6141 13 150 36 9 46 1878 3 335 10 128 13 499 5933 2 13 92\n1\t44 532 155 11 5637 12 100 160 5 26 1 1246 60 179 60 1306 5637 396 181 3363 7 1 2747 2665 19 4331 60 89 4029 1742 3 1371 781 142 1482 32 44 9315 106 60 674 12 2 304 44 532 181 52 5 44 5 414 47 1 344 4 44 157 7 464 51 22 3714 4912 4 1 6520 157 205 415 308 4903 32 1 1482 11 131 2 749 1562 5 1 1751 3306 4 1 972 5637 398 5 44 9924 32 48 72 64 4 1 1828 80 4 1 7185 7 10 22 1 5412 22 8975 3 1424 8429 3 5637 844 2135 7 1 16 1 5 9183 778 3 4 448 51 22 2143 4532 599 13 2595 86 3754 9 718 6 862 5882 136 1070 287 181 591 5693 30 62 163 7 727 1 33 414 7 6 1169 1319 42 20 591 935 45 51 6 55 599 1793 7 1 1828 3 23 70 1 1418 11 33 24 2040 71 2841 30 62 5950 13 2298 14 2 4626 1 21 6 2 560 5 3 6 496\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2003 9364 162 3 58 28 63 550 2247 4 9365 6 815 77 28 123 20 365 399 17 36 29 2 1032 23 93 83 24 2339 17 28 811 1 869 4 1 21 5 154 3914 154 2129 31 3215 2419 4 1 958 4 1 632 3 1 28 4 1 80 7 1 1058 982 9589 4969 42 332 425 14 10 3191 13 1833 9364 162 3 58 28 63 550 2247 4 9365 6 815 77 28 123 20 365 399 17 28 811 1 869 4 1 21 5 154 3914 154 2129 31 3215 2419 4 1 958 4 1 632 3 1 28 4 1 80 7 1 1058 982 9589 4969 42 332 425 14 10 705\n0\t0 0 0 0 8 39 175 5 90 28 177 8 112 492 17 9 21 56 1572 122 1781 25 121 6 128 5670 244 128 14 1515 14 2233 3 27 128 276 1051 17 1 21 554 6 2 3790 4 145 1140 5 134 194 255 125 222 317 1506 1000 16 44 5 549 142 15 44 113 2540 809 221 6 2 103 7627 512 3 50 231 1018 1407 224 3 219 1 21 15 7327 61 93 256 142 30 1 1077 5 1 4692 29 268 1 265 39 143 1179 15 48 12 160 19 7 1 1192 245 55 9 12 20 1 210 1329 4 48 8 214 5 26 2 46 1832 135 8 88 5062 1 914 8 88 5062 1 120 11 61 1256 7 5 1 3 8 88 5062 1 345 1412 4 668 17 603 1412 12 10 5 757 47 1 212 750 3062 4 1 21 3 1899 826 5 1 1 393 12 515 7412 32 1 477 17 75 10 196 51 6 303 45 317 2 492 325 1899 9 4356 751 725 2 4150 3438\n1\t9154 3 106 1 8355 1583 146 1085 17 5 1 2135 5 5833 81 3377 13 252 6 39 2 4 48 1 545 63 149 7 1 3415 4 30 3846 1 277 171 187 3241 5 4775 3 4775 4 979 807 1 90 65 3 22 37 53 8 152 179 8 133 2 163 52 171 19 1 131 68 51 5091 17 42 93 84 1 111 33 720 62 3079 3 62 823 9956 1 56 390 82 5294 13 4511 4 1 716 357 15 146 32 148 727 3 98 6114 65 77 146 519 519 42 1011 203 197 2 274 1095 36 7 1223 39 830 2 1119 8484 2250 19 3624 77 5100 429 3 9931 415 5 26 25 58 2651 9663 42 11 8220 98 51 22 1 2143 2326 5 203 1 5494 4 1 1 5673 13 4 203 76 112 194 596 4 267 76 112 110 14 95 6720 236 2 2076 51 11 666 5 468 100 95 545 35 380 9 131 2 680 76 308 23 2033 1 3415 4 468 100 175 235 2684 468 100 995 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3089 107 138 1410 3020 104 7 50 387 9 28 245 270 1 52 267 68 2895 2968 1275 1 7 1 376 538 7 9 18 6 20 565 39 1 111 10 12 89 39 3426 7 3343 1895 9037 266 31 298 416 2358 2228 4 1 4978 35 741 65 20 4213 664 5 2 3020 6912 7 1 80 761 185 4 1 18 12 1 27 5461 307 1984 266 25 435 35 2006 25 182 4 25 221 435 1628 266 2 9968 35 181 5 26 20 401 4 25 3118 94 34 127 172 1347 181 5 26 46 47 4 334 664 5 1 9678 3 98 5176 70 1 680 5 1236 7 25 52 539 68 813 9 18 6 39 2 357 7 1 7299 12 31 7801 32 4460 755 47 4 715\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4454 267 11 1521 9101 1 7662 581 17 56 6 58 138 68 949 571 4 448 7 1 3031 1813 4972 3452 3 95 3087 11 6 527 68 86 3080 6 5000 5 2197 164 22 527 68 202 95 578 2164 5352 94 102 719 4 2261 1 3079 4 1 9622 468 26 6858 16 43 3778 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 56 40 58 477 41 714 3 42 56 46 4178 3 5744 22 377 5 26 770 7 2 974 16 31 1101 2753 6692 688 16 43 2650 479 256 65 7 2 1863 7137 577 1 1170 32 1 3 34 4 1 82 33 216 15 22 39 14 14 33 2620 28 177 11 8 214 631 7 9 18 6 1 111 11 28 4 1 6504 153 182 65 15 1 2678 8 497 33 713 5 1298 62 692 119 2 4885 327 5764\n0\t62 2131 396 37 2692 33 63 5691 90 1128 4208 15 1 13 92 18 213 722 14 8 367 1448 8 1309 3464 29 59 28 2519 3 55 98 10 12 2 461 102 2 3 2 46 904 2499 1074 5 18 2 604 4 82 547 1545 291 36 1998 539 13 150 36 2377 3533 251 29 225 277 4 723 3 62 382 1764 1828 17 62 1058 4 8379 132 14 9324 1543 11 84 709 1744 816 1851 2 53 665 4 144 62 4390 337 47 4 3687 52 68 2 3000 1924 10 196 56 2195 56 13 5 64 2 147 158 404 2660 6 101 612 15 62 4 42 36 2 21 183 10 55 2018 3050 608 300 33 130 357 20 6075 62 442 34 125 1 13 18 6 565 10 196 1 2377 4 3964 23 20 5 90 146 37 489 398 13 1 469 39 1382 2 658 4 3728 7 2 974 3 90 126 99 9 125 3 125 154 326 16 2 13 777 37 91 11 8 173 55 905 5 1346 86 8 187 960\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23 88 134 11 1 171 76 90 2 141 17 9 674 1501 11 3703 1328 80 4 1 120 7 9 21 551 235 5 998 19 1467 33 309 1 185 4 4435 757 101 1527 38 7 961 3 3509 3635 1 67 6 46 4736 10 88 26 8760 65 7 2 156 2800 17 646 998 155 7 524 261 765 123 175 5 64 9 803 13 150 57 5 884 890 1 546 106 783 1049 199 75 5 26 31 4112 420 24 5 134 11 4 9 21 200 41 355 1578 5 169 4041 420 243 20 1017 50 85 133 783 9412 15 31 1089 9201 4681 8 88 24 248 197 1 2326 3 716 11 1 74 350 4 1 21 4095 13 4 50 221 923 1 21 56 3870 235 279 42 290 51 61 3330 168 3 443 802 11 343 36 10 12 49 146 5547 1 4042 4 1 120 22 4712 3 13 20 5 176 9 28 960\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 190 3 8887 22 2709 31 791 1978 5 62 585 4002 3 25 231 7 7593 55 14 1 1978 2440 2 4790 683 9678 1204 190 3 9783 44 157 3 3667 1565 992 3592 5 44 5776 1845 7718 44 2628 466 5 5221 13 7287 17 16 34 86 2694 3 1 532 1664 2 1894 4 650 55 647 3 2080 1 545 5 4783 15 450 3372 14 3 10 6 44 3689 3 14 2 1529 7615 353 11 1 21 32 2 301 2578 17 3 24 1747 3 5 932 132 1169 4112 647 11 10 432 3944 832 5 474 48 629 5 14 2878 1 120 262 30 3 22 7 233 37 1169 6212 3 11 28 792 5 560 48 610 12 242 5 3051 14 4454 33 22 463 41 2161 5 7643 4002 3 845 1 102 5321 7 62 115 13 283 16 1835 17 103 1939 2 2826\n0\t13 252 18 56 3336 437 10 40 2 84 288 40 43 53 402 445 1456 43 1190 17 999 5 386 1 53 691 15 565 350 111 7 8 544 5 884 890 3 98 1825 140 1 19 1 9074 13 92 922 15 9 18 22 9323 74 142 1 201 276 38 4465 3 286 33 22 1331 5 26 7 298 2727 23 83 241 235 32 1 70 139 14 2 9112 1 136 288 84 213 78 660 656 27 666 439 28 7934 3 1047 7 2 2352 52 2776 5 26 211 98 3681 6 9 2 267 41 2 203 1973 86 2 465 11 271 660 1 28 7934 5 78 4 1 927 3 274 960 10 181 52 2702 65 4 154 1881 68 7574 203 135 8 43 75 504 11 1 21 12 89 16 2 46 8672 410 7 2867 203 596 35 175 5 9059 1 870 243 68 8582 592 13 5020 1 53 288 1198 9 6 2 21 5 9864 55 45 23 1351 10 65 7 1 6603 4388 16 457 681 317 2709 105 5915 13\n0\t553 79 420 735 7 112 15 1 628 3 8 112 209 75 63 1 212 234 24 1155 75 1169 464 11 13 3986 48 87 1 87 7 1 322 33 90 1 393 4 1 215 176 828 322 30 403 202 610 1 166 177 316 8513 59 37 78 527 8 96 50 6901 2 3 3747 54 26 6977 47 45 8 721 523 237 183 8 165 5 8350 13 872 1 6 39 20 56 2 42 2 13 9 21 6 39 565 8 56 143 175 10 5 26 573 17 10 705 91 7 39 37 97 3635 3 5 90 3291 2428 9 213 2 21 15 20 227 3550 42 20 2 21 15 105 386 2 42 20 2 21 207 71 4847 689 42 20 2 21 106 105 78 2728 40 209 32 1 9 6 610 1 21 1 274 47 5 90 15 5117 1435 516 450 3 207 48 151 9 37 1319 29 225 63 134 11 10 143 227 85 41 13 1 210 21 117 300 20 1 80 1832 3 21 117 5681 13 13 3382\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 12 313 69 1 113 220 1 251 273 2126 4 1 67 61 32 817 581 17 48 249 289 83 87 11 127 2569 48 72 165 204 12 2 8975 53 1045 471 2 84 184 1198 29 1 3381 4 2 1052 43 1016 4026 7 1 69 1 113 4026 1 251 40 209 65 2159 2 274 4 676 3098 3 1202 423 120 15 2 342 4 9565 2792 81 7 306 376 2748 43 4934 1626 9285 3 43 293 13 150 336 154 938 4\n0\t2883 9 1081 1277 4 448 7 1 2196 4 9845 490 762 3 40 31 1971 15 44 11 6 377 5 182 15 126 866 5 41 146 3976 66 4 448 5 2321 823 801 33 214 29 1 1863 60 12 3997 6052 17 1 21 11 28 4 1 277 415 4425 44 125 1 41 33 371 5 87 3 98 93 1180 5 186 34 4 319 7 1 7762 30 1 182 4 1 21 8 12 59 350 2709 838 189 6568 10 57 37 237 47 7 1032 32 48 10 88 3 130 24 13 614 23 662 1852 30 9 4 1 158 98 300 23 54 36 194 73 8 24 284 1 347 3 107 1 141 3 32 1 18 818 8 192 3605 10 12 1634 8 70 11 253 2 21 47 4 11 347 6 169 2 17 45 23 22 160 5 186 19 1 23 130 357 30 48 7 1 347 6 378 4 1749 43 4118 129 5 26 257 3256 7 115 13 51 56 58 1402 11 88 26 253 29 225 350 547 249 104\n0\t518 7477 46 10 88 216 15 1 8775 1167 45 59 51 57 71 237 364 4 1 788 3 941 3 237 52 4 6493 906 10 39 741 65 101 2 167 8436 193 46 2273 880 115 13 3221 465 6 4497 2085 8 1023 244 237 105 161 5 309 28 4 1 1554 17 52 6911 244 132 31 2830 353 11 7 2924 4 34 25 3117 5 26 39 174 9962 25 2838 4 121 289 34 1 290 4 448 27 130 24 262 1 800 69 58 465 7 246 2 3287 1465 800 3355 30 1186 8030 378 72 57 2 2273 17 353 16 1 4731 1826 31 2654 800 15 58 115 13 92 1234 4 788 3 5762 66 8 214 3240 7 2924 4 1 327 759 3 2273 227 6470 831 928 1 84 494 57 5 26 757 224 37 1 212 177 741 65 2 8436 3 4759 3 8 165 46 7895 642 15 1 709 9047 3 12 1096 49 10 4497 40 20 248 3189 2028 7 9 13 618 5 742 3 332 4253 14 1 972 9229\n0\t7 1 3 999 5 1708 2 3022 426 4 176 3 230 4 1 7021 480 101 89 19 2 402 445 7 9373 2720 42 20 274 7 1 137 35 1457 140 1 3000 481 8269 11 1 21 46 4989 10 12 5 90 146 53 47 4 490 258 1078 1 6580 3734 11 1 2732 821 40 7 1 17 10 1082 80 791 7 1 176 3 8949 3 93 7 86 2794 4 1 2732 4948 66 6 2724 13 7254 45 23 617 284 3 24 58 4957 4 765 1 2797 23 88 335 9 2940 7021 685 2 2234 4 5774 4994 8 63 373 64 48 1 523 968 61 17 33 373 88 24 248 828 15 487 690 14 2 5812 442 3 7063 3 6284 19 1 7 33 373 114 321 5 1 120 7 1 1175 11 33 1168 65 6306 7 698 420 139 37 237 14 667 11 1 1063 7457 65 403 48 205 1 347 3 21 361 10 1168 65 246 2 658 4 1995 47 930 3 86 410 36 5385 5 90 2 1911 4027 142\n0\t162 1129 3 1086 103 6 1130 7 2 346 280 14 2 236 55 43 2973 3 16 4019 17 1 700 22 1 127 1626 131 65 7 97 4 1 834 581 17 100 183 24 127 3545 71 37 1 687 312 6 56 4425 6550 3 94 4643 10 7 2059 1075 283 10 316 50 9627 231 5558 22 6911 17 834 191 582 9 2174 73 770 6 731 5 9688 2 1562 854 571 16 6368 1359 5 1093 1 435 143 209 577 14 11 573 17 8 214 10 2973 49 1 5305 553 122 83 36 48 8 39 14 91 6 1 4 1 312 11 34 625 1007 191 2459 45 33 175 5 3081 62 374 1907 2645 603 919 136 731 5 1 640 6 51 4580 5 26 1 112 796 16 1 2832 9 59 1501 11 1 834 1568 1961 1419 1 5905 5 925 32 1 1735 4 1 834 263 378 4 3851 9 18 3964 116 374 75 5 3497 686 947 16 1 398 834 1354 108 10 40 5 26 138 68 476 755 47 4 1731\n1\t3 1501 10 115 13 92 2247 516 1 3838 6 52 68 2 6543 11 58 28 451 5 4458 17 5903 3 7239 466 31 2537 2945 435 5 187 10 2 3812 1547 1509 1 2247 255 306 3 1248 1843 32 1 3789 1 817 3196 15 1 3838 2247 590 47 5 26 2 2432 17 9 85 42 146 1878 78 2194 48 76 653 15 1 486 4 257 34 296 88 4012 9 48 6 10 15 1 2757 115 13 4634 5 2928 28 4 1 80 8918 931 203 104 4 1058 1287 23 495 1 121 6 46 53 292 8 143 4062 1 353 35 1012 1 2832 27 143 291 4756 227 49 1 1650 1783 16 25 17 207 39 50 3222 8111 8655 323 2320 2 84 278 3 1066 425 14 1 4952 4413 1248 12 491 55 19 25 1119 3955 790 9 6 2 84 382 4 34 85 3 2 1577 18 11 2816 3242 9816 1 2807 4 275 23 1549 1 434 3776 5 727 3 2 507 4 13 6 16 8 83 2942 26 7 2 3838\n0\t37 3088 1020 19 6675 17 8 337 5 64 10 1441 73 8 192 2 184 325 4 5169 3017 3531 74 177 11 2705 79 12 2 103 105 78 7326 2376 4540 141 17 10 93 485 36 7688 1209 143 64 137 2376 104 140 2266 27 8 241 27 713 25 1726 17 263 39 265 713 5 26 1609 2376 541 854 84 1093 17 16 132 18 10 384 36 105 78 1093 36 1 388 185 2005 34 11 84 1948 626 419 25 113 121 27 114 2 53 2340 17 936 1 263 12 2472 297 1781 22 161 2860 1339 910 172 33 758 59 2618 5 50 3374 51 22 43 56 91 443 276 36 3 8366 1763 57 229 2 53 312 19 1 67 1240 50 1520 17 8 112 132 17 188 39 143 216 47 7 1 714 300 27 130 256 10 19 2 3618 49 10 12 128 1684 7 25 3268 49 8 1240 74 159 11 18 12 160 5 26 28 4 137 445 8 3388 11 8 76 29 225 2 53 441 17 519 104 39\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 96 9 40 1 1187 4 101 1 113 376 2748 251 1891 8 134 72 34 118 51 6 2 680 33 76 3131 1 2871 3 549 47 4 17 8 449 16 137 11 24 20 107 1027 197 11 761 5869 125 62 2177 154 85 33 3196 9893 10 88 26 3 1133 12 197 2 894 2 84 1412 16 3 1 6752 6 1053 1221 47 1 419 9 2 331 10 6114 295 34 1 82 251 8 449 9 271 1534 68 1450\n1\t8 653 655 9 18 14 31 349 161 19 2 6162 534 8833 8 12 1137 372 34 1344 3 49 8 310 7 200 8 57 2 4259 4 1053 3 1407 224 7 1044 4 1 249 15 2 8 12 619 5 26 133 2 1254 11 247 34 749 3 12 7 233 2642 3 10 2151 50 5553 145 273 10 4624 1 3 6 7 34 1 540 1678 16 1 17 10 128 2291 1 1343 4 1 441 1 1412 5 1720 2 16 1 53 4 2750 1 5570 4 966 1 538 4 847 844 974 16 17 1 28 334 106 9 18 674 7512 845 1 147 124 6 1 672 294 1977 6 84 7 476 45 23 83 36 75 1 129 6 176 2408 3 39 1876 5 550 25 672 6 180 107 10 316 4961 97 268 3 10 198 876 79 155 5 11 387 14 2 3474 16 43 2548 6610 42 16 9 302 8 134 1 21 6 5661 16 79 37 8 6330 86 17 189 294 8453 3 7233 10 128 3866 503 3 128 2788\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 2001 234 4 4569 51 6 58 1182 68 63 6163 1 353 3 7713 4648 9 574 4 21 6 237 105 1219 127 2569 278 14 109 14 578 7646 2376 22 2915 5 62 298 4911 8 560 45 9 18 12 89 16 10 40 2 923 538 5 1 10 6 31 5 134 11 1 453 22 34 7621 1 59 177 11 863 10 32 101 2 616 1719 6 1 551 4 2 84 17 167 1482 22 20 3577 75 63 860 1 1143 4 2376 3 1811 5 2230 132 514 216 7 31 717 106 171 8595 16 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 369 79 101 30 667 1 8 1417 133 9 388 30 133 159 3 94 159 485 36 1 34 85 700 203 739 117 55 193 8 179 10 12 59 1002 452 6 167 565 1 113 185 6 283 1 633 201 1 840 6 46 1429 288 3 10 40 86 211 546 17 86 483 961 3 8 143 175 5 875 5 64 1 586 1905 45 8 8 54 127 171 3 1 59 302 101 6 11 9513 40 71 7 125 2 3302 82 4033 3 180 93 107 102 82 1144 4 1 201 7 1381 41 527 1729 33 130 20 1747 5 1811 9\n1\t7 1 3567 660 1 3364 15 44 7521 1261 288 5 899 3377 13 677 2 342 188 11 56 3010 47 7 9 135 74 4 399 40 229 556 1367 32 1532 616 5 90 273 1 733 6 6239 3 153 735 77 95 368 42 2 46 7999 2566 11 3548 6069 533 1 135 10 5609 55 193 1 1261 554 123 291 2 103 13 150 192 93 1475 15 1 2263 136 1761 380 9 21 4102 32 1 27 289 2 732 1234 4 1817 3 299 20 531 107 32 550 3411 6 992 16 2 7 199 21 7587 7 1 3667 8 336 44 7 3 444 1381 53 204 14 1 7818 959 1 182 4 1 158 60 3505 6847 1 4 44 1223 145 288 890 5 283 44 7 52 4121 13 3616 394 7111 4 364 113 14 2 129 6054 109 4503 3 470 30 3360 27 1336 248 78 523 3 25 865 21 216 40 9875 650 4 184 368 703 286 236 407 31 2342 29 216 204 3 192 9547 5 64 45 5176 186 9 1611 8644\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 306 7034 4 95 3047 391 4 216 6 704 41 20 1 120 2323 32 62 3212 3 8398 32 1 839 7979 7 43 2846 111 11 9 720 321 20 26 1061 41 29 1 3158 13 5676 11 4564 6 2 5168 14 2 21 7 5396 10 3316 169 3322 1249 120 23 209 5 474 2354 360 263 3 304 748 3 7 386 1 21 424 322 292 34 1 453 22 277 191 26 1290 3 1990 10 666 146 49 9658 9659 123 44 692 514 216 3 286 6 30 37 97 508 7 1 1440 80 496 591 45 23 22 2 684 29 2935 1231 1265\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 56 1 940 6 7083 2049 216 17 51 22 97 4 25 557 11 22 52 892 69 7 9 28 22 2767 2364 2249 3 1688 2466 72 99 10 125 3 125 3 10 59 181 5 70\n1\t0 0 208 96 45 23 61 5 1006 80 704 33 504 2 6871 5939 73 4 62 9285 23 76 149 33 87 1265 8 118 8 87 1265 48 23 76 149 378 6 11 33 241 1 7829 5155 89 4 2 814 55 55 45 1 210 61 5 780 3 72 1288 136 2648 1732 257 5402 3 76 3013 2938 13 499 56 196 224 5 2 641 6 851 148 5 23 41 6 9 34 39 90 45 27 6 3715 3 23 1961 849 23 76 917 25 8837 58 729 48 1 386 3277 5683 190 5721 13 150 57 2 683 1643 38 2 349 3 2 350 1924 28 7 50 231 12 49 60 159 1 911 6829 7393 428 7 1114 5330 125 50 8 15 44 11 45 8 61 7 2 3887 11 59 2 813 54 552 50 727 54 11 26 2 53 85 5 4519 1 59 28 88 1110 79 5 157 49 1 85 60 143 70 10 361 851 39 213 148 227 5 768 105 565 8 555 60 88 24 1 5861 2 627 2845\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 96 3034 6 28 4 1 113 147 89 104 2246 8 336 1 111 1 18 15 34 1 120 740 1 389 108 10 12 3435 3 2 7574 682 13 743 109 89 141 28 66 8 76 198 4995 3 99 702\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 214 218 6380 7 2 6603 4388 3 179 420 2 433 9873 8639 236 2 302 144 23 83 785 78 38 9 135 1 119 6 1 2216 6 2690 6 38 14 14 1302 3 1 393 844 23 5307 20 55 2077 5689 63 552 9 5592\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 300 8 336 9 18 37 78 7 185 73 180 71 507 224 7 1 3 42 132 2 1386 103 1034 1 2650 8 179 10 12 5290 3090 1111 1244 441 304 1456 313 121 2166 763 35 6 9 18 89 79 68 180 71 16 2 13 499 6 2 46 211 3 1269 108 1 599 1399 4 1 622 4 2523 3 1 1 111 7 1449 363 1 1897 3 4775 4 1831 103 2816 34 721 79 207 78 4 48 151 10 37 42 31 18 15 52 67 68 80 484 286 51 6 31 1115 838 5 346 13 150 230 36 39 160 1929 3 133 10 34 125 702\n0\t900 551 4 4281 1068 1 6535 4 484 7142 38 2 147 3 1903 7524 11 47 1 6922 3 7487 4 2 2527 7731 1 1350 339 26 52 38 1 697 4 9 34 72 118 6 11 42 20 32 3836 1032 3 10 3003 47 4 2 82 68 490 236 332 58 2651 16 106 9 147 574 4 34 4 2 2585 255 36 8 1113 83 70 116 1750 65 16 31 1244 4852 1 74 350 4 1 21 6 548 1509 15 43 327 840 3 1 3213 4 2 342 5284 120 4394 2528 3 5514 17 1 330 350 6768 1 389 2430 6 256 5 6 1466 10 6 93 774 1 182 11 792 5 3957 972 341 703 8988 1 33 791 2183 47 4 445 14 322 220 1 2036 432 46 345 3 1 259 7 1 1198 2465 213 46 109 3041 6 279 2 7 524 317 56 1120 41 45 23 56 175 5 64 154 1575 203 18 117 1001 596 4 190 3082 294 32 3836 7 1 346 3 5210 280 4 809 7 4383 4 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 619 79 80 38 9 21 12 1 1860 410 10 696 124 132 14 3 79 24 100 2200 14 78 4202 14 9 21 7797 193 8 96 207 229 73 4 1 798 4 7 1 462 52 68 235 9809 13 777 2 609 21 1472 577 2 609 859 69 23 63 87 235 45 317 3446 1509 3 256 116 438 5 194 66 6 132 2 1061 859 5 261 133 9 803 13 150 96 9 6 28 4 138 581 3 8 96 444 2 609 2922 3 12 313 16 1 1174 12 609 854 2836 8 173 134 9 16 4467 73 8 83 96 11 27 12 11 78 4 2 53 1651 3 5 26 3314 25 671 61 2 103 13 1601 7 399 2 609 158 3 2 609 67\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 9 12 2 138 18 68 8826 1357 20 1139 8 96 10 128 1310 2 103 386 4 48 834 88 1405 10 12 1 265 12 52 4462 5 1 1357 3 1 363 61 138 248 5 1 121 12 436 1824 17 98 1 423 120 61 340 237 52 3271 871 7 9 5409 3 5205 542 6 56 20 5 26 14 7 1 74 108 60 151 10 44 345 3 1 22 360 120 5 309 142 2787 3 33 734 5 1 834 40 340 2533 9 6 2 84 231 158 15 103 41 58 4948 3 286 10 1373 299 3 240 16 1995 3 537 8247 42 3597 5 26 2 3210 14 37 97 834 124 2620 2176 5 1247 1 957 76 26 55 138 73 23 118 33 229 175 5 90 461\n1\t4079 338 110 101 2 184 325 4 10 12 84 5 64 2013 7 1 108 3 235 15 14 2 9240 173 26 34 6149 896 12 459 2 430 4 8424 37 10 12 84 5 785 126 19 1 13 92 215 1919 3332 12 1203 16 3979 41 2055 2450 31 4 372 25 6354 7 2 2412 4 1473 15 2 288 778 10 12 2 293 3 1 2154 16 1 1919 973 29 1 85 12 8 56 405 1 141 17 20 29 11 903 1 1203 12 59 1242 16 1 1 1404 7423 10 229 2242 2013 3 61 1 59 6798 81 7 1 141 37 33 57 138 256 6040 19 1 166 177 15 1 215 9186 2700 4 69 783 5492 12 7 10 16 34 4 681 1507 17 195 33 24 122 19 1 1203 14 45 27 61 1 250 13 150 24 2 41 4125 6885 3 42 2065 75 97 81 241 12 2 148 1553 11 6543 30 62 1077 6746 5 13 10 12 39 2 53 387 108 373 20 5 26 556 105 2301 17 39\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6552 1407 75 489 1 424 1397 24 5 787 7667 3 37 6880 10 5 134 11 10 6 2 5 91 13 971 139 130 24 71 1 462 4 9 2426 2835 971 22 377 5 62 216 15 2 356 4 1117 541 3 11 1 67 13 5094 6 1506 7782 1 443 3 372 15 1 2 75 6 10 1 67 4 448 236 93 1 30 1610 7442 791 42 390 4138 5 39 757 13 150 497 42 105 78 216 5 87 53 13 3562 11 89 10 105 78 216 16 80 81 5 99 1 66 14 28 4 1 80 3 289 4 34 5623\n0\t3 333 34 1 2949 1422 11 55 1408 81 481 7 1 178 106 4827 12 2811 16 1 80 2244 15 47 95 4880 5 2909 730 12 174 1021 272 4 1 135 3 11 178 12 37 4739 16 137 22 20 1 59 904 546 4 1 108 51 61 93 2 163 4 7 1 135 1 2553 4 1 80 2244 4937 12 31 2544 973 32 93 1635 4 7 1 46 182 6 515 1 210 2082 11 27 88 24 248 7 25 74 1540 1 38 1 9005 4 1 18 3 1 3679 11 5886 419 39 89 81 5 26 2284 3 1426 126 5 64 110 6 2 900 3315 8 54 24 45 12 20 9 54 26 446 5 1743 9 141 15 9 78 4 445 8 449 54 853 11 10 6 20 5 309 7 2 280 14 2 206 14 27 367 7 31 10 12 3595 35 114 10 8047 3 366 3884 10 27 130 26 1997 4 1 233 11 27 6 20 3595 779 122 5 26 52 5844 3 1688 398 85 7 9 184\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 835 51 5 134 38 1947 2109 301 2841 1 5056 4 1 74 158 3 311 89 2 1469 6107 6865 135 42 20 55 428 30 1 215 13 614 819 107 755 83 99 358 42 2 148 13 614 23 617 107 755 83 99 139 64 755 5 839 146 215 3 299\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 617 219 2 18 9 489 7 2 223 4222 300 20 220 1060 147 41 943 3190 502 657 10 6 11 1319 5164 3 1974 121 1416 7597 71 1685 30 1 18 12 2304 1920 2 3290 4990 3 11 507 4 123 20 216 109 19 5476 1 171 57 58 312 48 33 61 9576 258 44 1778 12 489 3 44 447 1376 6791 204 37 10 12 1370 5 64 44 82 120 3 33 16 110 3 48 12 15 1 802 4 2 414 410 7 8 57 5 473 1 305 2228 1237 10 54 24 71 1870 5 1812 9 135\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 590 47 5 26 2 9244 397 15 48 191 24 71 2 402 3550 1 2806 4 120 6 3982 32 5 8 381 1 733 189 1 6386 20 2235 3680 17 684 227 5 359 1 796 6034 8 93 381 1 1541 4 1569 801 63 26 46 806 5 70 1989 105 66 928 10 143 70 105 2642 779 105 10 12 2 84 1825 65 32 82 9131 3 7 1422 4 857 3 2426 33 24 2 84 5272 66 6 279 3698 689 173 947 16 45 1 952 4 7801 10 130 26 4083\n1\t2 13 6 27 6 128 372 1 166 129 78 36 4685 3 25 103 1223 146 11 5441 7 9 21 151 79 560 45 8 76 64 1 7600 103 316 8858 27 6 20 7 1 201 4 25 398 572 3 40 71 3333 52 85 516 1 443 14 4 13 6 93 837 14 1 6198 701 8 481 134 11 123 235 7 933 5 90 1 280 25 17 27 4982 25 129 630 1 13 659 1422 4 1 119 8 481 352 17 230 11 9 6 7 233 10 7598 4 4351 4 1 3 2181 22 52 68 2357 618 8 191 7301 2181 19 25 393 73 10 6 2 222 52 1269 68 116 687 368 324 4 9 135 378 4 297 101 315 3 4308 188 22 4962 7 7851 4 101 1135 1438 40 162 5 87 15 10 779 123 193 1 119 384 161 2394 128 40 2 9827 16 28 8 114 149 25 5 25 226 21 209 16 1 2106 539 3 26 13 5 134 45 23 335 7384 216 99 110 45 20 99 146\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 121 6 91 34 1 716 22 5026 3 1 3080 410 6 674 46 170 2383 6314 33 24 2255 855 8 853 11 10 12 928 16 2517 17 37 6 7 1 286 33 128 1337 7 1217 623 3 13 1118 130 72 504 32 2 131 466 30 2215 1 59 3561 7 3052 35 6 364 211 68 2 2871 4101 2 1559 66 6 229 144 27 2165 5131 1340 408 13 87 20 369 116 374 99 9 131 1013 23 175 5 552 319 19 9628 8205 116 374 5 4230 3 33 76 2323 65\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5457 8755 4 1 5901 7768 876 1 1494 8755 5335 5 3471 1 466 1174 7768 621 7 112 16 35 6 31 1532 3 8566 287 6843 5 1942 2 1629 49 8755 40 31 1971 15 174 7768 6 30 25 36 7 1 215 9299 1724 15 13 6 174 84 18 4 3607 4286 5 1 1 1005 112 67 6 1619 15 1 486 4 1 3249 15 1 120 33 22 3 97 268 6 20 332 935 704 48 6 2267 6 864 1543 1 41 1724 3431 1 763 6 174 4137 4 9 215 324 4 1 754 9299 66 6 370 19 1 821 4 50 2400 6 13 9267\n1\t0 0 0 0 0 0 3756 4 1 113 546 4 8064 6 283 104 11 23 54 1286 202 407 6789 1013 317 2 148 7648 23 229 83 1236 97 59 2 3507 70 95 6798 6204 8064 40 86 5 4655 7 1058 5775 13 516 6 2 1127 718 38 2 1005 397 526 29 1 1618 7 154 349 2 526 4 8815 1124 2 3103 206 7028 3 25 1176 917 1 14 871 22 3 1391 13 92 18 6 1029 15 1447 16 137 4 199 11 24 20 71 5794 5 1641 480 1 72 118 126 30 5301 72 521 1647 5 1116 3 1451 127 413 14 517 507 423 1 309 2163 16 1 349 4 1673 12 1 15 86 1229 19 3 1 171 34 15 1 8483 4 1 309 5 62 4322 1565 3 7737 15 62 120 3 1 1468 4 1 13 1701 2 718 158 36 2 1158 1 113 11 63 26 3388 16 6 11 72 839 146 11 1714 257 2058 3189 516 12 2 923 5760 16 437 2950 147 1561 11 40 132 3107 7\n0\t1057 5186 8624 5575 35 2734 122 77 2 1358 1873 13 2120 3685 9 18 2440 32 2 6707 263 3 2 857 11 213 46 7342 93 9689 421 9 21 22 43 1829 443 4156 11 1227 384 761 3 132 14 3 127 22 1 2514 4 363 2 206 228 1797 5 131 2 1921 2821 136 19 5413 571 7 9 524 33 291 5 24 71 8260 7 29 1610 6397 7 43 772 525 29 13 5020 86 201 4 4633 453 61 53 34 2701 80 4369 15 1451 5 1 250 8 2172 4547 26 283 29 225 2 342 4 127 81 7 2223 3 138 5203 7 1 13 3027 611 49 6557 1 1041 8 191 798 62 1020 370 19 9 104 4695 31 1 415 7 9 18 22 3 202 8056 23 32 48 2 509 18 317 2034 145 273 1 976 120 22 93 169 9838 17 468 24 5 1006 275 422 5 878 19 3230 13 3616 8 173 354 9 141 20 16 41 55 283 16 7844 42 831 39 20 279 1 991 10 270 5 694\n0\t34 1 1144 22 2769 7 2 425 1087 699 8 96 1 206 40 2 860 16 4392 148 157 4149 16 1632 2 435 35 40 5 90 25 2015 2307 32 1 6192 228 291 29 1239 17 157 554 951 199 43 1650 66 228 291 17 93 46 1408 14 530 8 96 1 206 6 2 46 53 38 148 3223 13 724 11 6 110 94 2 136 1 2694 7 1 18 792 5 5320 1 8 56 343 36 145 246 2 184 73 4 1 5163 648 807 10 12 14 45 1 171 3 1624 61 340 1 915 3 61 1747 5 1 10 6 1087 1581 17 120 198 2227 6 11 966 5 239 1885 41 120 667 41 23 2575 5 764 268 49 667 10 59 308 6 39 227 3029 79 5 24 2 13 150 93 96 1 309 3 347 765 168 22 52 98 33 130 1142 8 365 11 1 309 3 1 347 7 1 18 22 46 78 3017 5 1 640 17 8 96 1 206 40 1155 1 272 106 27 130 582 781 127\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 436 1 113 1158 429 4 1 5595 3764 31 6253 2994 9 28 331 4 7124 2 1069 43 232 4 9 18 2 84 1249 1069 2 84 632 2132 15 2 263 11 481 2735 34 9 3266 42 1846 16 2 670 1903 913 36 5 70 37 109 5484 14 10 6 30 9 141 603 436 59 5038 6 5 6423 105 7118 3 73 4 11 303 1 1228 2 103 650 73 33 2786 46 4618\n0\t18 76 26 7 1 6104 4 3 1170 3786 98 10 197 3199 77 2 589 38 2 1156 1753 2 3985 287 3 2 4413 98 10 554 77 1 59 53 185 7 1 18 66 181 5 26 274 65 36 2 3280 197 1 539 1 185 145 1874 4 6 2 3058 35 6 37 3058 27 615 5861 7 2 11 12 1 59 185 4 1 18 11 419 79 95 6947 1 344 12 2 4 50 500 977 39 5 131 75 3549 3145 6 51 6 2 232 4 718 29 1 182 4 1 21 4 3145 395 253 299 4 7594 395 7 6154 10 89 79 7054 55 193 506 5711 3 4770 4 506 5711 82 104 30 662 1 1726 33 29 225 22 179 47 227 61 23 63 875 2983 318 1 393 6950 8 55 36 506 5711 2 3947 10 57 43 84 456 8 128 333 5 9 6093 13 614 23 36 2790 581 45 23 36 581 3 45 23 36 5 99 116 39 61 33 2140 23 76 20 36 13 5934 4 13 3382\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 84 5 64 1996 7 2 280 106 60 196 5 2618 2 3284 93 336 2261 44 327 720 5 64 44 47 4 44 2237 1 18 554 12 2571 17 10 384 1899 43 2651 7 2 163 4 3955 375 4 1 120 384 5 26 4661 28 938 3 749 1 398 3 10 12 303 65 5 116 2407 5 842 47 2957 239 129 12 3445 193 3 7 43 8 339 947 5 64 48 33 54 87 398 41 785 48 33 54 134 4791 9 18 247 331 4 2843 1046 17 243 2985 1087 81 35 88 90 230 91 38 126 3 98 149 2 111 5 5349 450\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 12 229 38 14 810 14 1 1326 1653 801 12 377 5 524 7 13 4385 7 639 5 1429 44 8953 4252 6 4940 605 5904 4119 29 1 94 44 1 2307 44 766 29 216 5 187 62 75 114 33 70 25 216 13 5369 183 60 844 569 60 5716 44 2279 2412 7 1 663 41 55 2584 406 44 615 10 7 1 123 9 467 1 4200 12 100 13 6867 58 2651 6 340 19 75 60 6 2709 16 44 7126 474 7 1 408 60 114 10 516 44 1086 7225 13 9166 959 1 182 4 9 7297 21 4252 5359 44 766 6 7 1 2168 378 4 599 16 44 157 60 1225 5 1 4963 378 5 64 45 1 22\n1\t89 15 4 541 3 43 11 76 652 23 5 1 1590 4 116 13 4511 407 1 177 11 151 9 18 138 14 1 855 3205 6 1 3358 10 40 43 2335 2619 3 43 11 22 323 11 76 652 23 5 1 1590 4 116 8070 1 113 32 1 4866 1 7617 178 3 1 9137 4562 51 22 43 4759 2944 3 1 104 1428 228 20 26 884 227 16 1 7703 545 5 1435 1116 9 108 37 9 18 228 20 26 4739 16 13 92 67 554 6 93 169 53 17 10 56 6 1 541 11 151 1 18 10 228 26 16 1 596 59 17 93 7703 902 130 1116 1 109 2031 65 1560 7 1 682 13 677 22 43 327 129 1012 30 2 53 1440 492 4018 6 31 240 1084 1412 3 9206 1630 39 14 109 14 60 6 53 288 1491 91 16 2 13 92 668 868 30 6 93 3705 763 7616 36 3 4982 1 18 46 322 39 36 25 868 16 1 82 763 7616 141 13 3323 8 112 763 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4860 1788 9337 130 24 303 818 49 27 89 394 172 183 1 1042 4 9 9418 351 4 85 3 4471 1 233 11 1 215 12 364 68 31 594 7 2206 130 24 122 77 1 233 11 27 57 229 9 857 16 34 27 12 160 5 70 47 4 378 27 5 333 3159 4 1131 32 1 215 7 9 28 14 322 55 5 1 272 4 1 215 567 1365 906 2472 155 1 7513 4213 114 20 552 9 461 48 103 222 4 215 1131 51 12 7 9 739 276 14 45 10 61 829 15 2 1150 8139 45 9 21 2591 52 68 5 90 8 54 26 46 619 3 8 54 26 1381 619 45 10 89 235 542 5 11 925 9 28 3 99 1 215\n1\t6125 3 7452 104 24 390 37 125 7928 11 1 4591 4 5909 146 323 293 3 979 1550 4216 114 9 5 79 49 10 74 310 47 3 9 18 6 403 5 79 1705 8 143 118 2 177 38 9 183 160 77 10 3 48 2 4802 45 23 785 1 1292 23 228 70 1 507 11 9 6 28 4 137 104 38 31 491 5228 2777 15 125 1 401 265 3 242 5 24 199 1435 2173 4 48 2 84 67 10 6 1083 17 98 20 3851 199 1107 9 6 20 11 108 1 81 348 1 9 123 132 2 53 329 4 4392 154 799 4 62 4570 136 72 2645 62 234 3 230 154 330 15 450 51 6 37 78 660 1 7362 11 151 297 33 139 140 37 78 52 1462 1 12 93 2 84 4976 38 2779 3 781 1 4117 7 31 2316 111 17 9 21 6 78 52 4 2 423 471 8 39 159 10 1163 17 8 76 139 3 134 11 9 6 28 4 1 113 4655 8 24 117 575\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 99 9 9016 718 3 9016 2921 176 47 16 9 718 3 23 76 64 2998 3 1387 13 92 469 4 718 251 3431 681 6 2 3 3110 4 1 4559 66 7507 1 182 4 1 161 9632 3 202 1 389 74 350 4 1 10 1680 2 568 6415 4 1949 1131 3 3679 15 602 7843 205 3 1 59 148 66 88 26 89 5 9 491 4776 54 26 1 8124 4 406 7 1 220 1 2218 12 1001 9 12 1314 248 7 1 518 16 2 3640 781 19 2982 5165 17 1 1993 4 43 55 52 1058 795 54 352 5 528 9 5394 3 391 4 916 436 174 212 431 228 26 1 46 462 4 9 718 12 89 34 1 52 3271 30 1 7697 4 1 3277 30 1 9632 8961 4 3 69 2 78 3 4 11 66 5562 172 6896 13 2078 1724 36 7 1 392\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 1 226 18 180 107 183 355 39 226 2463 115 13 499 12 93 1 74 18 180 7090 3410 94 8 12 73 72 5586 5 1857 2 973 5 257 13 864 6 20 11 1251 32 5 34 137 35 1059 11 36 83 3097 7 148 727 8 54 354 126 5 1978 50 2906 7 13 2044 34 2750 8 54 59 354 126 5 64 9 141 183 3 94 1 1352 326 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8713 2448 1 131 7 9 28 14 2 8222 170 181 5 26 3073 35 196 411 16 2064 258 94 27 3352 25 112 16 9096 66 27 1143 5 3 187 5 6233 417 14 1739 34 4 458 236 31 548 948 901 1295 1 845 1505\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 46 2116 4743 1035 5 26 2 686 9974 136 1 529 4 9676 16 6731 884 140 1 4 1 3881 6119 4 3 1 691 66 6 1 59 177 66 151 55 2363 1470 2 99 29 113 66 52 1458 5 1376 5 1 940 1228 68 5 3696\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 876 199 43 2715 1985 529 3 2 18 11 153 186 554 105 2556 332 2 382 7 42 221 933 232 4 699 9 18 1745 2 264 176 29 45 23 70 2 680 5 64 9 18 87 1943 468 373 24 2 2618 19 116 543 80 4 1 290 20 73 42 211 41 235 5410 36 11 17 73 42 37 91 10 271 47 1 82 111 3 432 501 193 300 20 1434\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8232 3 561 7725 149 730 3363 7 2 576 2488 3575 136 5816 6 7 1 166 3856 245 42 1 1081 2204 11 40 1 80 242 290 1739 1 3 5 26 214 59 7 51 6 2 957 1 304 3 37 1494 14 7725 2731 52 85 7 9 4314 27 1633 792 5 5 1 4 25 507 2 1574 4137 5 3 2966 5 1 38 117 1204 9 1888 59 15 1010 1829 123 7725 998 19 5 43 5654 4 13 252 820 14 28 4 1 156 268 49 1 129 196 5 131 43 3 266 10 5 1 588 542 5 1 47 4 1760 2065 5 817 2046 5816 9465 247 1747 5 70 1 1753 174 1069 16 9 2396 13 7957 3697 4387 1 280 4 9440 1 1968 16 5994 1 4188 77 1\n0\t44 151 299 4 25 4433 3039 122 2 16 4401 9079 378 4 3 45 23 24 2 298 416 1465 128 4401 420 96 122 5 52 1458 26 1040 68 2 298 416 1465 35 4373 3 1372 1141 7 2 457 1 9487 1898 271 77 1 6435 9 1714 1898 32 11 4 31 2342 77 11 4 2 669 118 43 746 24 404 1 7348 2 6178 8 1 7348 2060 123 2 212 3135 3484 183 4700 1732 1 3862 285 1 2281 4 1 5352 1 7348 98 271 19 5 564 137 35 8963 849 137 35 4487 7010 7 1 137 35 4062 4 3571 4 167 78 261 35 1049 65 19 1 18 13 92 7447 865 19 1 305 130 26 1 206 954 123 31 324 4 4581 1224 27 4283 20 246 7738 200 19 274 37 27 63 8470 25 379 136 770 3 380 2 3692 5 414 30 341 145 2 17 4617 40 2 84 13 4 8 136 133 9 3515 715 114 10 58 604 4 965 5 335 9 3515 1034 10 270 5 70 5 2599\n0\t15 58 6111 29 5005 1473 669 96 275 5573 5 2 7 1 7716 66 27 3149 47 30 2 200 25 8666 7716 3 27 1092 40 2 5005 375 7 66 27 2767 6794 5 1 543 14 109 14 101 549 77 2 1945 5005 2 32 48 276 36 1 957 1732 197 1 4631 2076 4 2 2733 41 95 82 132 1 263 40 610 535 1269 2131 1 344 4 1 85 42 34 37 1065 3 7441 13 42 20 34 565 123 652 2 732 897 5 25 1871 3 6 4609 1 113 353 7 9 1772 4 448 11 153 134 1878 17 27 63 87 1 1518 197 5 1 9255 4461 80 4 1 2669 333 675 27 1510 25 3 574 456 15 43 17 23 22 198 1997 23 22 133 1490 121 1 13 252 18 6 323 31 489 351 4 290 1 505 132 14 10 424 6 426 4 2032 104 1974 427 3312 762 1660 5383 46 515 566 1025 17 42 20 55 2882 774 14 53 14 463 2 2402 2772 41 2 1660 1072 135 83\n1\t12 2 17 927 12 483 3 7 28 114 20 321 10 8127 13 92 170 196 3363 7 2 1892 5 31 7331 1091 3 94 2 386 85 7 2 1892 11 12 791 100 1843 408 5 44 13 659 2 754 3 211 1146 60 1036 5 139 9526 28 2341 49 44 2839 6 6913 30 2877 60 6 98 929 5 549 577 2 2857 3889 94 194 14 60 303 44 5784 19 1 31 44 2839 3 1843 44 5784 69 94 355 31 13 3828 694 16 2 136 488 7 2 4174 27 2334 44 15 2 15 2 1157 19 5037 9 6 106 60 1304 155 5 44 3 1 2628 4 44 766 3 31 60 789 9 164 6 13 7567 1843 408 3 963 5135 47 257 170 3 615 1 60 12 23 63 333 116 830 737 17 25 522 8893 32 793 3 72 64 44 15 220 27 100 165 23 63 31 4367 5 415 30 1 206 3 2 1965 5 13 92 59 177 11 9937 9 1325 829 18 6 1 6021 3 2 678 1905\n1\t100 438 1815 7 1 158 4374 6 9488 102 170 413 35 22 3732 4 13 3057 56 20 78 5 1 158 3 14 2 4818 10 181 243 8 405 52 67 3 129 5064 1 21 6 2226 269 1896 17 10 153 230 36 110 51 22 43 103 168 1738 4374 3 1 733 15 1282 17 33 291 13 92 121 6 53 34 2701 17 14 8 1113 278 557 14 2 919 17 20 7701 8 39 83 241 11 1 148 4374 12 11 2627 27 40 2 184 672 49 27 693 2339 132 14 49 27 2 3582 2854 3250 5 369 1 3732 820 17 6403 2148 4374 105 1 82 453 22 1195 1024 258 3256 5914 14 1 532 4 1 444 2 327 886 35 72 63 56 230 1987 641 3 286 46 72 63 64 144 4374 405 5 352 4341 13 7527 3142 181 5 96 4 9 21 14 31 3 29 1 85 4 86 4227 10 229 1306 17 55 977 236 39 20 227 1097 5 1124 10 14 13 777 2 327 1775 17 20 2\n0\t189 1 4069 51 228 24 71 43 232 4 17 292 29 28 272 2080 6359 87 23 112 153 55 476 42 100 56 935 704 9 6 235 52 68 31 3054 19 2 509 1611 1285 15 2 826 13 2663 1 7659 189 1 102 415 3 1 558 81 33 889 19 1 66 88 24 71 6778 3 22 378 5022 3240 3 650 13 677 6 28 53 1399 7 1 141 292 145 273 10 12 1 415 2203 7 2 3142 15 2 286 49 33 274 65 7150 33 24 31 5058 3105 3 55 2 3 19 401 4 458 49 33 2870 2 72 64 4 6295 6295 93 3091 7 1 103 6856 115 13 872 140 1 389 158 72 100 64 28 3498 8660 41 2882 11 276 36 10 54 152 24 95 334 5 751 650 33 2203 140 2174 2765 4 9264 37 106 114 33 70 13 677 190 20 26 105 97 3054 124 47 1057 53 41 573 17 51 22 877 11 22 138 68 490 3 46 156 11 22 2194 597 9 28 7 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 59 302 145 685 9 18 2 358 378 4 2 755 6 73 816 3969 6 211 14 31 1251 32 458 75 114 9 2507 547 201 2076 19 5 87 132 2 1054 300 10 384 36 2 53 312 29 1 8801 51 22 58 1308 5 1 2809 22 7372 1 201 6 1 593 6 195 11 8 96 38 194 80 4 1 1844 229 1936 15 1 1392 6868 27 876 47 162 17 1289 453 32 34 4758 83 351 116 85 36 8 17 977 8 335 2 53 1591 195 1 2090 6 1083 79 8 321 52 204 8026 9 18 130 26 404 1110 5 2054 195 11 12 3288 68 235 7 1 4285\n0\t118 144 236 34 9 2572 7 1 1561 36 9 18 11 244 1356 3 384 5 24 214 1 1836 49 27 74 3808 25 671 19 93 165 43 356 7388 77 25 522 49 25 2015 1183 809 1866 1415 3 1455 4 25 1021 3 1184 202 599 122 142 2 6668 7 2 36 1564 385 1 7460 13 92 18 218 330 588 4 271 19 15 2 604 4 7523 4677 229 5 2222 41 7 43 85 30 42 206 3 21 3 98 271 5 42 570 178 7 2 19 2 3069 14 40 34 1 5097 10 498 47 11 1 5782 165 37 3091 295 15 25 1719 14 27 713 5 19 1 8217 3 3353 65 1 697 4 2374 5155 43 172 13 5 694 140 3 202 1258 5 917 218 330 588 4 1275 23 140 1 166 232 2629 11 6 256 140 30 3 1 1350 4 1 135 1 18 440 5 26 9162 17 207 39 31 1335 5 1203 65 42 8187 3 6791 857 3 55 527 1 464 3 3161 121 30 307 7 2420\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 1 398 3663 7 1 4372 104 66 297 19 1750 3 1912 4 2 4372 5525 654 3 25 2567 33 139 47 3 33 176 1112 3 549 77 147 4372 3 186 19 147 2766 15 3 82 4372 7219 9 1406 270 19 15 2 147 4372 404 2 85 139 2612 3 8073 5 149 34 3149 4 147\n0\t171 7 84 185 3 1 166 85 1 119 1714 2 5145 220 1 120 195 22 377 5 26 2830 85 37 33 2248 65 3 224 7 2994 197 2709 95 838 5 1 233 11 10 863 355 14 23 5379 7 1 108 1 1922 440 5 359 1 212 177 371 15 25 17 25 129 40 71 37 236 20 2 163 27 63 87 5 552 1 803 13 2719 1 27 40 56 34 1 3726 1 18 6 1674 38 122 3 25 101 6457 1889 761 1889 439 41 1034 27 12 377 5 1142 233 9 129 440 5 2230 1 2931 32 1 2996 17 27 123 20 10 6 14 45 275 12 1083 23 2 56 46 46 91 6182 23 459 1374 17 27 6771 19 1083 11 1399 2268 1 769 3301 8344 5 90 116 2572 2 103 13 614 23 338 8973 87 20 2600 1 1600 7 116 2333 15 1 4384 45 23 143 36 8973 23 54 100 1064 283 1 4384 45 23 338 9 322 8 1331 23 128 321 5 64 2 163 4 502\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 651 372 1 752 39 153 209 577 14 13 499 153 216 16 79 49 8 64 31 651 4 38 2992 172 372 1 280 4 2 82 24 5822 11 9 6 28 4 1 3545 4 9 158 11 537 190 519 291 52 68 8651 17 15 1 1084 14 10 6 7 9 158 10 39 153 216 16 2522 13 2136 228 175 5 841 82 708 5 149 47 48 9 21 6 152 2354 73 8 339 2698 133 10 5 1 3158 13 150 1023 11 1 804 16 9 21 6 304 193 69 8 555 174 206 54 328 5 1351 65 9 67 702\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3777 7 1 9856 6 2 21 11 12 1227 4603 30 18 596 29 1114 664 5 86 1879 801 12 3 86 915 4 306 1850 1908 3 1 3125 4 137 303 4973 10 12 2 3800 67 11 1525 1 545 3 373 89 122 41 44 753 62 733 15 2374 10 2610 55 2 35 1 4930 17 114 20 241 194 1311 610 144 27 12 303 9 141 3 86 967 22 191 64 502 55 15 1 147 251 588 827 1083 1 166 67 15 2 78 2302 2039 1 1880 6 128 1 3777 7 1 9856 3437 1 2435 4 9 870 3 76 198 26\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 815 28 4 1 210 104 8 24 117 575 8 83 474 48 1 1396 867 42 565 8 96 1 465 6 15 3854 42 20 11 42 42 39 11 36 4 25 1093 42 2288 3 27 181 5 26 15 120 209 142 14 3 25 3783 14 2 212 22 8 24 284 97 4 25 557 1958 25 11 12 323 361 8 39 83 365 48 1 6 1395 8029 1920 1 7 25 3783 90 16 7 2 141 34 1 188 11 8 4001 38 61 300 8 39 1155 3393 17 8 83 96 1943 19 2 601 5233 8 481 241 11 9 6 2 1894 1771 58 111 6 9 18 11\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 22 1437 106 97 4 1 4477 3 9561 1154 38 1 1 3 1644 9100 209 7178 176 58 13 252 213 2 3018 368 21 4742 370 19 43 8297 1670 9 18 12 89 30 2 1404 764 15 2 1105 3 1842 14 2 141 1 182 1122 29 268 52 276 36 3502 47 4 2 2218 15 231 3 822 2828 140 1908 136 22 13 1701 2542 7125 10 190 26 254 5 6020 17 97 81 241 7 9 691 14 1463 7 1 108 3 458 5753 151 1 18 6820 23 229 495 149 2 52 8415 4 1 1213 3547 4 2 2846 604 4 116 1658 814 45 23 793 194 793 10 14 2 45 23 22 29 34 2152 23 83 321 5 26 5095 38 1 1035 29 2921 3 7 1 108\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 9 18 172 1742 3 8 12 17 98 316 8 12 59 2042 172 3176 8 937 10 3 175 11 85 1877 9 21 6 167 565 136 8 36 1072 1469 50 23 54 36 5 64 2 53 18 11 27 12 4 4297 993 1037 16 43 3 8507 9 280 162 16 62 13 3514 1072 919 6 31 2075 606 4244 35 2827 19 2037 25 2075 606 801 27 57 7 577 1 913 5 28 1 1655 40 34 2015 8 179 1 1292 12 1233 1491 1 527 180 455 17 1 3225 1200\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 1104 17 1 1245 4 9 397 6 11 42 46 237 32 2 53 13 28 173 198 504 1 2347 6000 36 41 41 286 1 265 4 9 391 151 55 3779 4642 176 42 2483 1065 3 1543 28 41 102 3 39 94 8 219 10 8 339 2209 2 625 2846 8586 69 66 6 243 1697 588 32 275 35 2178 1 212 174 3302 81 32 277 13 499 6 93 3713 10 270 334 19 31 862 1114 1039 3075 56 40 5 230 1140 16 137 81 7 1044 35 3437 62 7 639 5 64 146 2267 2297 19 1 260 41 2226 19 1 3 123 332 162 15 110 49 236 377 5 26 28 454 1299 207 39 48 23 70 69 3 1 344 4 1 1039 6 16 79 14 31 5033 2114 206 10 12 202 1370 5 4578 13 92 233 5575 181 5 24 2151 1 710 1615 7 25 557 138 68 127 63 117 209 542 1467 3 145 30 1 6152 4 9 7251\n1\t127 22 48 2630 531 555 1987 2968 583 289 1 1870 3 4 101 220 1 1687 959 2807 202 34 1 120 258 5 1 250 120 3 1 1468 4 1 462 3352 14 1 21 255 542 5 1 182 106 10 674 289 11 307 6 2 2968 66 3372 82 3242 744 685 8 2328 169 36 11 1700 1 18 2769 778 1 4 1 21 1936 7 43 546 4 1 121 3 293 363 220 10 89 1 21 364 1 178 106 129 2180 88 24 71 52 1127 3 1087 45 52 4602 1676 7 1 121 61 256 77 110 43 168 15 293 363 36 1 1653 802 93 88 24 71 52 4602 197 253 10 291 105 78 36 31 238 388 3118 1 11 310 47 4 1 2962 1478 105 1429 3 8 96 11 88 24 71 41 4973 8 96 2968 583 130 26 2 18 307 130 1064 2034 1 8813 1154 3 1512 1 18 876 47 54 26 728 3946 30 307 3 190 796 97 4680 10 6 169 2 5629 21 3 93 548 5 836\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 322 8 191 134 11 9 12 28 898 4 2 299 108 480 1 233 11 1 3710 12 167 5174 3 51 61 43 1164 529 106 1 21 384 5 473 534 1668 16 58 1649 2650 8 12 20 1558 1 67 12 152 167 1 226 1910 4 1 6311 7066 191 1584 224 1 82 681 1144 3 2033 35 738 126 6 712 62 2576 16 4670 3 35 6 712 126 16 452 1 1236 101 11 285 34 4 1 7066 61 3 34 24 220 4463 5 1342 7 8797 3 1241 62 13 92 2026 22 2 2421 5 1775 14 239 1910 4 1 6311 7066 40 2 264 1076 5363 3 1 566 168 24 1 171 4700 34 125 1 2416 3 5224 1 443 2683 3 1123 2 2081 227 383 37 23 63 674 64 34 4 1 13 92 28 5 1 18 6 11 1 67 5162 5 2739 2 222 7 1 74 350 65 318 1 74 566 17 1382 15 194 3 23 495 26\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2028 40 1 84 988 1862 4949 599 200 1363 81 35 1743 1098 98 244 142 5 106 27 4632 52 1098 27 196 3746 65 97 268 16 1363 1098 98 27 196 77 2 15 1 91 2112 35 6 2147 36 2 51 6 2 3068 3 988 1862 5136 65 7 4193 702 475 988 15 1 352 32 32 564 1 91 2112 2963 65 2 3068 41 102 3 275 196 383 15 2 34 9 3 2 6748 833 5079 39 36\n1\t293 41 55 2 17 11 6 20 3237 48 8 474 1395 115 13 150 2292 5 2095 104 19 2 524 30 524 8498 926 738 82 2789 45 10 6 2 184 1210 397 41 2 4693 135 9 6 2 4693 21 3 8 192 1774 5 5062 1681 2508 11 1113 8 241 10 40 28 4 1 80 3950 3 215 462 1102 11 8 24 4164 13 150 381 1 121 4 34 4 1 580 8 258 381 3 1628 1628 9037 40 80 4 1 1340 2933 1 129 1012 30 3619 228 209 577 14 3206 5 43 1046 17 8 24 1454 587 148 81 15 931 922 11 46 8533 176 29 7521 5445 14 44 129 2788 11 1553 79 1351 65 1 7733 106 44 6959 88 209 47 140 1 4 44 13 252 6 20 2 18 16 2383 4989 17 10 123 20 4783 7 2270 447 3 8010 51 6 169 2 222 4 1217 5322 1024 17 10 63 519 26 46 695 1240 4909 1628 919 35 173 55 5245 13 4804 99 16 1 3916 32 587 129 1488\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 2763 5 64 2 18 11 23 96 76 182 3472 39 36 202 154 82 296 141 3 98 26 619 49 11 153 3109 8 36 2 749 393 14 78 14 1 398 2112 17 519 42 138 5 2074 188 7 2 52 1087 7215 3 8 179 8196 114 9 46 2593 13 92 2526 15 28 493 676 992 16 1 1885 1826 1362 44 1188 345 2813 66 165 126 77 1 1261 7 1 74 2416 12 46 6270 8 202 243 54 24 248 197 1 226 2519 66 2012 11 60 143 152 87 1 60 2339 73 11 54 24 89 1 18 52 38 1 2566 189 1 102 3834 3 364 38 1 6576 704 60 114 10 41 20 247 11 13 92 67 554 19 1 9309 17 1 1624 721 50 838 15 62 313 2263 46 5222 46 13 47 4 1731\n1\t299 6 242 5 842 47 66 546 4 1 67 22 148 3 66 22 5613 300 479 34 148 41 5613 300 28 4 1 120 153 6567 300 59 28 5027 3 1912 4 1 2349 468 24 5 947 3 149 3335 13 150 57 1 709 1402 183 1 131 310 827 3 10 12 28 4 50 7219 1 8673 12 2577 3 1 67 12 215 361 1031 235 468 149 7 2997 41 10 76 116 2867 3 40 627 1217 197 101 41 3 1 131 314 676 1 166 2544 8673 8513 195 10 3 1 166 11 1 1212 214 7 1 709 54 26 9 12 1 113 131 5 1030 19 1191 6124 13 614 23 36 4816 4 2 5151 1109 41 321 2 53 438 8822 9 6 2 131 5 841 689 42 183 51 12 117 132 2 9404 13 92 80 6483 177 6 11 9 100 337 19 5 390 174 18 41 756 1125 17 8 83 134 9 7 3315 30 2202 10 3373 33 24 9 18 7 2660 3 721 10 1126 32 1 758 19 30\n1\t0 0 0 0 0 0 0 0 3262 12 28 4 1 74 104 8 117 3 5 79 10 6 10 6 2 1386 288 158 15 1612 4974 50 1522 847 178 12 1 4099 8 39 112 137 1 759 22 93 9294 20 14 53 14 4537 17 33 22 2 4621 5 3 22 2696 4 2 1153 6 2 555 3 37 9 6 22 1 120 22 93 2 3262 6 3 4234 3 1 9880 2666 84 709 9531 1 61 93 109 2427 14 109 14 17 8 336 1 1 1726 60 12 56 4670 7 3770 5 2 84 129 7 1 442 4 1 2603 10 6 2627 1 18 4089 15 1 4931 4 1 17 33 61 1975 722 37 8 83 4219 8 83 96 10 6 2107 83 23 10 1550 266 19 5165 17 1 56 91 967 123 19 19 2 1998 45 23 175 2 84 3262 8584 328 1 360 117 7735 41 1 7898 3 1 66 213 14 452 17 1034 23 1690 925 1 5409 66 8 24 1 2082 4 73 468 1479 437 5582\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 1 210 880 4 2260 65 121 36 374 58 623 2798 55 1170 40 138 623 3 52 1217 68 417 190 26 1 210 177 180 117 107 19 756 3 180 71 1157 7 1044 4 1 6426 311 123 20 6942 65 109 5 1885 2759 1199 10 1419 1 4 3 1 360 4 11 6 1 4 1 120 7 291 2776 5 90 126 9 526 4 6589 151 50 3569 13 92 131 6 301 197 31 1590 4 95 1 120 22 7866 4 7866 3 1 523 6 361 193 7023 1943 2887 228 26 240 5 2 523 220 1 1063 190 24 5 5705 5 6423 2478 68 62 37 14 20 5 7744 1 5730 417 4\n0\t89 9 91 19 8810 73 10 270 554 111 105 686 16 48 10 2 13 252 6004 12 46 17 11 6 58 1335 16 86 4206 84 124 22 1711 4 20 3550 57 13 79 5 1231 1 5081 869 4 9 351 4 45 8 61 246 2 15 2899 3 2899 7 1044 4 2 249 3 813 4 1 5348 310 926 420 26 47 4 51 68 1970 3520 7 3419 13 43 81 76 328 5 4376 1 108 4069 300 4541 867 3796 41 7 2 53 41 3796 37 573 42 137 81 22 2 18 6 463 501 41 42 565 236 58 132 177 14 2 53 91 108 17 51 22 132 188 14 5385 11 36 1865 502 83 70 79 51 22 679 4 104 47 51 11 22 837 3 2072 6 461 6 5075 13 252 1225 38 31 594 3 2 5818 3 7 50 5621 1520 42 1597 269 105 2043 1 113 177 38 9 6004 6 1 305 7328 37 398 85 317 774 1 305 6603 186 2 176 29 83 1388 194 39 3 5895 1243\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5457 9 6 2 2915 8584 10 6 78 364 1303 68 3854 896 42 2 222 903 49 81 134 188 5 8964 2102 662 13 9008 1 1324 20 29 34 573 39 13 3382\n1\t8804 13 499 57 58 1839 58 58 3 58 7442 23 54 99 1 18 15 116 1007 571 45 317 459 41 160 5 26 521 8 175 5 2783 19 177 204 11 193 11 1 6 189 2752 3 20 59 25 1782 6 400 1 18 6 59 38 217 344 4 1 120 22 632 7608 1 22 5 1 1138 3 1 59 4531 22 1 466 115 13 2366 297 12 202 1051 16 1 589 2482 1 1261 4 2432 12 1 1 5320 3 1 683 720 22 20 1683 29 513 11 6 144 10 1419 1 931 46 1734 4 9 473 4 6479 688 2 1298 7 1 901 12 2429 5 1 18 32 2 304 388 5 2 17 8 721 1000 16 1 4134 3 10 100 1 30 3 406 30 19 12 47 4 334 3 10 89 188 105 190 26 9 76 352 1 18 2 17 1 119 88 24 71 89 52 240 3 68 48 10 5265 13 677 61 105 1193 7 50 438 49 1 18 755 40 1 18 56 358 40 1 18\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4803 14 1 67 4 1312 6814 361 262 8821 30 3286 7356 14 1397 504 361 9 12 152 52 1 67 4 2862 4905 262 30 1763 13 252 12 4609 1 253 4 7778 14 2 686 1651 3 27 12 1317 53 7 1 6404 13 419 9 1 426 4 593 1397 7093 3 1 396 2577 168 4 1 61 137 4 1 426 11 59 27 63 70 13 92 4 1 201 12 3909 227 3 114 2 53 2340 7 48 741 65 14 31 1391 747 901 4 2 1270 3724 11 6 128 1677 774 1 3621 3186\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 46 402 445 267 18 3316 59 7 101 402 3550 927 6 2212 1430 168 22 6760 1495 3 80 4 1 6179 319 181 5 24 71 2052 16 2 251 4 6541 3 8286 7 2 8190 163 285 1 644 226 681 269 954 4764 362 7 11 178 6 732 5 3 930 19 1 644 3318 6 204 197 2 1 212 21 6 2696 4 137 11 2171 310 47 4 1210 49 3719 187 2 74 85 206 2 156 4821 3 2 197 1 7363 54\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 34 1 1827 3065 602 7 9 628 23 54 96 1397 29 225 70 43 167 17 1 558 1666 6 721 5 2 13 8243 6 712 2 1736 1778 7 639 5 309 2 2294 1277 69 1 67 6 5360 236 2 377 684 155 67 11 6 7023 1852 69 6 60 41 213 60 2 69 6416 58 1734 3198 1 2475 7 1 18 22 1 80 439 5 24 2 1235 506 21 7 2 223 290 51 181 5 26 43 859 38 1 2294 2886 392 17 220 167 78 1603 602 7 11 6 2927 28 153 64 1 272 7 592 13 5020 1 5998 4 185 4 1 1567 801 35 63 23 100 55 70 2 53 176 29 2 9330 8037 54 24 1 206 7 1 5468 69 15 50\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 52 8 99 5667 1 52 8 1116 122 14 31 2099 133 9 18 195 1240 8 63 64 11 10 153 56 1179 77 1 870 4 104 11 12 588 47 7 1 362 8 83 56 96 10 63 26 1050 2 21 8240 17 10 6 167 534 29 984 664 650 5 1 2036 3 1164 4421 4 1 4720 13 453 32 239 4 1 277 250 1041 35 34 114 2 53 329 15 62 2237 8 3394 245 11 6659 3 120 61 303 14 10 12 519 254 5 365 48 33 61 403 3 144 33 61 403 110 6659 6 2 112 122 41 812 122 232 4 2678 1 119 6 56 501 3 292 8 214 43 546 5 26 46 8902 51 61 546 106 8 57 5 874 10 5 1 206 5158 49 27 74 1148 1 34 7 399 9 18 6 373 279 2034\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 63 1023 15 82 708 11 51 247 31 5058 1234 4 622 8593 7 1 18 17 10 247 2 10 12 928 5 3162 3 8 96 10 114 2 46 53 329 29 592 13 150 1023 15 1 315 1499 1 168 15 126 384 47 4 1888 36 34 4 2 2585 10 54 26 1256 7 17 8 114 1236 19 5 1 67 3 1 2771 189 1 2752 406 19 3 214 10 167 3629 13 5020 10 247 2 4 1 4929 10 114 652 77 1 822 46 184 3 731 7649 4 1 9926 8 214 10 46 548 3 279 50 136 5 836\n0\t2 430 29 1 155 7 1 1393 236 332 162 7 1 111 4 2 119 11 23 228 773 45 23 61 1286 3 45 23 965 5 70 7 1 1646 16 82 6368 23 114 24 43 19 412 5 70 23 7 1 13 51 3195 2 212 163 11 40 160 16 110 42 274 7 1 4144 392 106 2 4 371 15 2 598 5112 196 2 103 105 237 890 3 40 5 70 155 5 1 2933 91 227 6372 17 127 559 93 209 577 2 7145 658 4 624 3 62 7 1 166 13 2136 118 835 747 38 9 21 6 11 10 472 415 6497 5 475 70 3946 7 1 1536 3 7 5455 4149 127 32 1 274 5377 155 822 982 7 233 20 55 1 254 8103 1730 2169 35 6 1 9091 7 4383 4 127 413 63 359 10 7 25 13 724 11 12 229 1 138 5 3006 43 48 33 61 29 1 7183 1987 9 58 442 201 6 138 142 15 79 20 95 4 126 16 95 2852 13 6 373 2 968\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3046 379 3 8 544 5 99 9 18 15 10 485 2624 3 10 544 47 688 521 726 509 3 3478 3921 94 2 4222 10 165 37 91 11 72 590 10 142 1 18 12 775 1171 3 72 339 56 365 41 405 5 365 48 610 144 41 75 1 898 33 88 256 65 15 9 23 433 3643 16 44 94 60 12 8681 3 121 1299 3 8 54 24 57 44 488 4 611 36 80 104 3 251 89 7 368 72 24 5 1337 10 2 7660 9 18 12 1466 8 12 852 52 32 4507\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 20 16 513 7 233 300 7 16 1348 571 2854 3 207 48 90 10 211 3 2 8374 5256 7002 7002 7002 2 391 4 6 2 360 572 4 43 1838 11 83 24 5905 3 645 379 3 374 16 1434 32 8 63 134 8 112 1027 50 430 767 7595 50 22 34 1 4271 200 3 882 90 79 2942 2703 3 256 79 516 50 9924 70 1 4789 1248 70 10 3 825 2 43 81 100 26 16 116 9238 1 52 2854 431 4 399 1224 3 2 46 1316\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 97 4 1 296 81 54 5 50 567 9066 1661 8 118 11 50 3770 6 197 6112 31 2158 16 1 596 4 1 1313 17 45 23 9 141 50 878 6 1907 72 24 1 35 271 5 1 569 2811 16 352 421 2 1301 4 35 451 5 2303 1 4 1 1 84 1820 6 1 111 11 1 67 257 2 1301 4 8484 4113 14 7 1 215 22 2 46 1618 4060 4 4421 17 29 1 182 22 48 1 2370 786 99 316 9 1115 18 395 1756 3 149 174 104 35 40 2632 1 67 3 713 5 70 1 166 1449 1380 68 1 1719 4 2 8353 6 1 8154 5525 15 7768 492 7170 1 67 5 1059 25 113 17 27 143 214 1 957 2749 4 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2003 76 81 825 11 43 104 22 89 16 299 3 22 20 3237 47 5 720 1 45 23 3539 9 98 504 5 24 4 299 136 133 3 9980 9 6 2 18 11 6 4 299 5 1775 9739 3 2822 90 2 84 19 412 968 62 120 32 3 313 15 55 52 98 33 57 7 3173 108 42 20 4701 1145 17 42 84 16 2 2655 1 120 101 483 3 1 101 37 8179 23 24 5 2499 83 504 39 504 1011\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 46 91 525 29 2 170 5750 29 225 1 265 7 5750 6098 12 3629 13 252 6 56 2 46 747 524 4 368 29 42 4120 2 658 4 368 91 7063 3 1278 932 43 131 37 62 374 63 26 7 1 850 1 623 12 55 565 8 812 9 691 49 51 6 56 862 964 374 171 3 47 51 62 5 24 1246 3 9 930 255 13 2890 144 247 2013 6516 7 1600 7 1033 6 160 224 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 57 5 64 9 2067 1882 5 56 1116 34 4 110 49 2 6441 435 4 102 25 102 2460 15 2 1985 33 22 3327 189 3499 122 3 1265 14 1 6402 795 4 9 901 72 825 2 163 38 1 2002 38 25 102 3 38 62 15 1985 1298 94 1985 9 21 100 2378 16 2 7 1 994 1037 7753 266 1 2002 17 1 80 3045 453 22 11 4 25 972 2375 262 30 4785 3 25 1186 2375 262 30 3924 9 6 28 4 1 113 4023 11 8 24 107 7 2 3166 3 23 76 175 5 99 9 2 156 268 5 1116 154 7202 1329 4 1 994 8 187 9 21 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 112 294 7 235 244 1107 1 28 85 27 270 125 1 443 193 27 4938 2 18 11 130 24 52 71 71 3594 87 20 99 9 18 1028 469 1 3780 1965 8174 6 4512 1802 111 4 253 23 1017 2972 3188 19 2 829 47 30 2 580 2032 5502 1796 101 1 1044 164 29 1796 30 1 111 151 1539 1301 176 68 19 2 3142 39 908 91 944 1 205 4 3 509 42 84 11 1796 6 65 9 161 691 3 7 43 4021 42 1228 36 1 344 4 1 3780 388 17 7 1 524 4 1028 469 395 736 5 734 3 796 19 1 185 4 1 59 111 5 87 3085 5 9 7960 6 5 1042 10 19 1 3780 2967 16 1 2284 3 596 4 45 23 2942 64 148 1351 65 315 9581 2232 19 5463 1170 41 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2634 22 610 358 53 188 5 26 367 38 6094 1505 30 2 817 2381 14 115 13 3217 7404 60 40 802 7 9 18 106 60 380 55 3766 2 549 16 44 2128 3 207 2 298 9664 7940 44 1349 6 1516 3 17 39 288 29 44 543 6 13 1 4536 1444 4893 15 86 3958 3 1668 13 7784 68 458 51 6 58 441 1 494 6 4862 3 29 268 4992 211 2610 23 106 317 2 3 745 129 6 2 7462 3217 1 4 44 919 17 98 316 49 23 24 5 216 15 494 9 91 42 7361 5 1844 1 171 395 233 11 60 721 667 1 442 7 202 154 6900 6 2 580 1608 3 292 1 21 6 274 19 2 4536 5797 51 6 924 2 4536 736 5 26 455 69 791 307 1057 32 374 5 161 1046 2656 706 1 212 290\n1\t656 14 7 1 236 2 84 934 4 3 3 9549 4 34 10 270 6 2 1969 637 69 7 28 4 1 80 1201 168 180 107 7 1058 6439 66 228 20 3237 90 16 1052 589 17 151 16 31 240 119 3 53 129 596 4 1 2041 870 22 1458 5 1116 10 7 11 6 20 14 14 28 228 292 10 6 3 145 20 648 38 1 324 4 368 3151 9 6 534 3 443 7 1 168 4 81 101 7 1175 11 3673 205 1 3099 3 4 1 3 94 34 882 6 31 185 4 199 704 72 36 10 41 5075 13 614 317 1100 15 2434 98 23 130 118 48 5 4749 1 2216 6 2831 673 3 1 861 6 1111 6700 3 534 7 3757 534 534 1504 3 136 1 4664 5565 802 734 2 8921 538 5 110 7 1 769 2 8332 1888 42 20 610 2 129 2221 3 42 20 31 2041 135 10 4936 2 1261 395 3 86 17 123 37 7 2434 3 6 205 1087 3 395 7 933 4 31\n0\t639 5 4882 1 1655 7 62 119 5 564 307 19 1 3 75 38 1 11 439 259 25 157 7 639 5 70 2 156 542 65 802 4 1 7214 27 229 3001 11 154 443 89 7 1 226 6491 172 40 2 5606 3 174 1689 144 123 27 134 183 27 5580 1 12 2 1219 2592 107 30 2 46 156 1098 1 1028 6953 76 71 107 30 307 7 1 4087 815 1 1162 27 153 96 261 422 76 70 2 156 33 93 1180 5 2704 1 59 178 7 1 21 49 1 2169 6 133 1 4439 144 114 1 1028 2321 516 2 16 681 269 183 8435 1 258 49 1 1028 88 24 209 140 1 9634 42 229 39 146 31 1028 18 325 132 14 512 511 5084 154 326 8 11 851 15 50 1568 9316 223 227 16 79 5 842 47 34 1 1546 7733 7 8439 1 13 8 96 42 240 11 9 6 1 74 18 11 419 79 1 2277 5 3628 1977 1 81 602 7 1 2426 4686 145 3039 23 8274\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 40 5 26 28 4 1 210 124 8 24 117 107 197 2 1 59 177 240 7 9 21 6 1 2691 4647 32 43 84 870 971 3 800 2085 1 21 40 2 84 4493 17 621 1251 38 1194 269 77 1 471 8 114 36 7 9 21 3 96 60 88 24 2 46 53 895 7 135\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 112 2023 3 37 78 11 10 151 79 1717 2 3583 2187 4 2421 154 85 8 24 1 2313 1935 4 283 110 8 54 93 36 5 1 641 233 11 8 112 10 37 78 43 24 5672 8 24 5554 19 388 3 8 112 126 34 8 93 112 261 422 35 1371 110 8 112 1038 50 1522 178 6 1 941 178 29 9765 8 24 2178 1 941 1047 3 6290 10 8 24 43 5070 4 512 1299 1 4923 45 261 63 309 1 41 6354 8 192 517 4 2 2023 3 449 5 637 10 1060 112 79\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 20 169 14 6987 14 406 5609 9 6196 6019 1664 43 327 2816 7 1 74 5818 17 3567 52 3 52 3 810 14 10 6461 5 86 1054 13 2044 26 1432 1 171 22 845 855 69 1078 9 6 31 18 69 3 43 529 131 1 2024 1117 17 212 1102 7007 71 757 488 4888 42 39 1 166 1652 14 2233 7 1429 1145 3 893 13 47 4 394\n1\t1 233 11 1 120 22 528 100 438 62 3 100 438 1 1610 188 11 5441 7 9 135 132 14 3647 101 446 5 26 8246 30 1 506 6768 244 20 55 9549 95 468 3 101 446 5 65 3342 101 446 5 24 7072 209 47 4 949 39 333 11 14 185 4 116 73 1333 48 56 151 10 9760 13 36 9 4735 1575 100 316 88 104 36 9 70 1716 118 2368 10 213 1 1575 3041 11 6 144 23 130 39 126 16 48 33 2140 53 7311 8 496 354 9 21 45 317 2 5121 325 4 132 14 2848 1 13 1268 226 1367 9 18 93 57 2 2382 3404 1518 14 322 7279 2 35 1141 34 25 161 7 2 1119 2 53 1518 151 2 53 2414 35 262 7279 791 3030 2436 3636 94 7489 298 12 4303 11 818 1583 146 1119 5 1 158 3 4054 15 10 3 10 55 151 23 230 52 1140 16 1 7279 919 8 6528 34 7 399 84 1575 7311 42 2 1152 10 76 100 26 1 166\n0\t132 2 129 14 2 1950 49 27 6 198 242 37 254 5 26 3904 7949 11 1416 27 1336 95 85 303 5 26 2 22 30 5501 105 3297 5 2303 3 5 2 3649 66 3503 11 81 20 64 1 212 6 37 903 11 10 63 59 26 5942 14 822 2815 31 525 29 3 6 89 30 77 1 67 2 1355 4 35 2530 77 1 1641 3 7803 5 26 31 27 1605 7 1 1291 3 34 1 3728 3 5 62 943 3244 126 5 149 7 62 226 9 129 6 262 46 109 30 4387 35 533 2 1321 1276 4 1085 9483 151 3 40 2 346 1780 4853 19 25 543 5 187 122 2 1 833 6 928 5 26 23 228 637 10 1 2862 324 4 271 1700 3 196 16 148 8157 8962 7886 4 289 75 10 130 56 26 1613 30 9 391 4 8436 3257 289 39 75 5132 1 4 1468 61 7 3092 3 11 49 33 337 16 146 11 228 467 3393 34 33 88 209 65 15 1220 23 5152 194 52\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 87 64 48 50 159 7 1 7670 2625 444 4253 533 9 1105 267 66 152 460 4232 2011 14 1 1105 1506 516 19 25 6 609 14 25 3 8 214 512 6750 16 44 2880 1 2011 129 6 20 29 34 3 244 20 55 2 547 13 6 28 4 1 113 29 48 27 2788 14 2 9362 3295 47 4 25 2460 29 2 1105 3 2695 5 26 7 639 5 4012 2 3226 9362 32 101 37 9 212 1378 6 4 1105 7 2 1433 404 1 45 317 4 2 1105 2867 23 76 229 64 2 1433 82 68 1 28 15 66 23 22 7 1 3047 4 2011 3 8 88 2725 2544 17 1181 20 204 16 3230 13 252 6 2 53 18 16 137 4 199 35 112 127 161 8221 45 819 117 219 95 4 1 161 217 4235 383 29 1 468 149 1403 14 260 288 3 2 163 36 27 57 79 13 4375 205 50 379 3 8 354 9 5592\n0\t1 1261 106 4159 6 30 31 3 5170 4 1 1655 5 365 181 5 26 2 859 1205 7 1 873 664 5 1 627 2728 4 3 35 22 2 1105 1 18 2639 4 3 164 22 102 82 1058 3359 8 83 5084 8 39 83 365 144 81 35 83 1271 1 1587 4 1 18 149 3442 1822 1097 7 476 300 1 210 12 433 7 1 13 92 393 4 1 66 6063 262 2 3600 6 2 264 4247 4 1 2622 3196 189 3 17 11 2247 6 20 1 80 986 7 873 3 10 6 37 32 2759 8195 11 94 269 4 125 262 1117 35 3457 75 1 206 451 5 1 206 4 1184 8754 367 11 51 12 31 4524 6535 738 147 873 971 5 2900 873 7708 3 3080 62 104 16 2118 21 639 5 3494 6167 1644 9 5609 292 10 153 90 2509 73 1 272 4 31 1644 18 8079 6 5 5337 5 1 234 48 232 4 104 22 101 89 7 82 232 4 104 81 99 7 137 407 20 3 1 3704\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28 138 2600 9 391 4 1477 1540 428 6984 30 1 1143 4 8281 3 2769 15 1 113 278 4 1490 895 3 28 4 46 1726 9 6 311 2332 8 555 8 88 1236 2 5612 324 9871 8 6725 8 449 9 9812 4861 21 40 20 390 105 832 5 73 10 2 16 95 41 2150 4 84 135 28 4 46 156 104 8 339 4079 3183 41 6660 3 279 2 330 41 55 957 6745 196 2 3 154 4 110 72 321 3 2005 52 104 36\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 159 783 16 29 50 558 1320 3 8 179 10 276 167 53 16 2 402 445 18 37 8 969 10 3 8 12 260 10 12 452 16 9 21 6 38 2 506 8330 37 207 146 5 539 38 3 1 111 10 276 12 211 1074 5 1 8330 19 1 8891 115 13 92 121 12 1976 3 1 456 783 367 57 79 1094 1352 59 23 16 2 3 80 142 4537 75 211 3 1464 6 3559 1 901 29 1 357 12 167 211 3 810 105 26 783 26 783 671 15 45 317 288 16 2 16 2 3641 267 203 207 331 4 98 841 783 689\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 8 159 6260 4 9 18 8 179 11 10 190 26 6872 17 10 76 29 225 26 695 109 8 12 1328 55 193 1339 1052 224 1 1278 57 31 240 859 5 3642 38 1007 101 303 818 3 62 727 1 111 33 713 5 1917 11 859 12 2444 1 74 6840 268 146 810 653 5 1 342 12 2831 695 17 30 1 769 8 88 202 6660 48 439 6 160 5 780 13 1 18 8 36 2 900 4 300 681 456 4 494 3 297 422 12 29 113 66 6 128 52 68 8 63 134 16 1 18 2330\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 336 9 18 220 8 74 159 10 7 145 128 2275 29 75 7700 3247 2999 2148 260 224 5 75 27 1047 3 1 5217 19 25 3374 519 86 782 75 78 27 8955 3 2492 36 1 148 5224 9 6 101 612 19 2388 37 34 4 199 11 24 71 1000 63 475 24 31 313 538 324 4 1 331 2206 135 8 24 455 1 35 134 11 51 22 43 41 43 188 303 827 17 8 96 11 2202 7 438 11 294 4654 59 57 38 358 4582 719 5 216 2159 3 11 9 12 101 620 19 756 4072 102 172 94 11 27 114 2 514 329 15 476 7 233 8 617 107 174 3568 18 11 55 255 542 5 9 461 496 4869\n1\t0 0 0 0 0 0 0 0 136 1 24 881 65 2 3600 3 43 4 1 1733 24 390 7026 95 809 9339 15 922 4 130 70 2 163 4 47 4 9 108 8 118 8 7937 13 2 147 887 3906 1036 5 899 25 231 5 1 3 2031 411 2 327 429 939 27 196 77 28 892 94 3152 32 5 5 5490 14 1 6240 3 4 1 5490 359 47 4 7130 8 179 11 1 1340 168 61 106 5820 2 5 4062 2 109 16 8459 33 4062 224 3174 4 17 100 149 8459 286 59 2 386 5604 2408 2 156 663 1372 1 5422 4 25 13 2961 3 8707 7899 187 1202 453 14 1 342 30 922 33 100 3 8194 2093 6 55 138 14 2755 3 231 13 92 59 6 11 1055 6419 24 1241 2 163 220 3232 6 1012 14 2 222 4 2 2670 35 40 58 312 75 78 5620 1245 444 3 236 2 315 7820 37 83 99 9 18 140 1 1055 4 3 468 335 10 34 1 5521 13 1149\n1\t11 660 25 67 1936 2443 3 11 23 173 256 2 423 438 19 1 1250 25 3 623 39 481 26 30 2 1106 41 55 1 113 121 1663 8 241 11 9 18 7 2227 1 1659 1389 11 7974 7 25 1158 17 137 5025 3398 529 4 2314 214 19 1 1981 22 20 214 19 1 1250 123 9 467 11 1 18 4624 1 4 448 1265 7 50 1520 1 18 3316 73 10 123 20 328 5 1 839 4 765 1 347 3332 6 20 2 5652 16 137 105 3840 5 473 2 10 3316 73 10 270 1 824 4 2 67 1242 30 28 4 5131 306 1703 3 2334 10 7 2 2 197 180 107 82 18 2639 4 1402 106 1 206 515 440 5 1354 1744 3 2019 9808 19 25 221 8 54 20 334 9 18 14 28 4 1 113 180 1586 17 10 1421 19 86 221 4944 14 28 109 279 2034 30 605 47 4 1 1324 3585 41 242 5 10 618 10 5402 532 366 649 25 67 3 1 7116 4119 197 41\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28 4 1 226 3156 4 1 710 147 16 2132 1922 2300 32 1 5969 4 16 441 2300 19 1 4 25 221 2985 112 500 37 97 188 63 26 367 4 9 21 69 1537 2171 2537 966 7 50 2867 1034 6808 11 63 26 421 9 21 22 728 30 86 2143 154 21 9962 4342 41 311 261 1774 5 3258 2 535 594 21 15 58 8830 58 265 388 58 1902 119 6971 3 58 6744 494 130 90 10 2 272 5 64 9 108 297 6 5 26 1 523 5687 1317 121 169 8305 6 425 7 62 5763 488 641 593 395 545 811 36 2 7703 740 1 4215 90 9 21 9 6 4609 2 21 11 2683 15 1038\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 59 34 847 12 9 1051 9 21 6 382 73 10 6 627 6 102 641 67 3 1223 1 120 7 9 21 22 1325 8 343 16 34 4 1 647 3 733 7 1 18 557 5578 1 304 847 3 1182 847 1336 1066 138 7 95 82 135 9 6 2 84 18 16 2517 3 16 1995 35 175 2 382 8784 1315 4 1731\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 267 370 19 2377 6664 58 45 23 597 295 4851 23 118 41 23 474 48 12 38 3 75 148 41 2140 45 23 1942 3 22 20 1977 30 1 23 63 24 299 15 9 135 5921 9124 6 29 44 1726 6241 866 3 695 1147 4685 3316 5 925 101 301 30 3 1 344 4 1 201 123 53 216 14 530 1 570 6 4422 3 5480 69 18 4 5871 279 4171 45 23 1942 1 3508 4 1 3118\n0\t280 227 1078 1 263 3 2940 471 1 607 201 6 568 3 58 28 591 1421 47 7 62 453 1013 42 19 1 1332 601 132 14 1 332 586 278 30 2359 35 181 5 139 30 375 264 1487 7 1 158 5469 31 489 1778 3 6 2 56 489 13 150 1582 713 5 70 77 1 948 3 21 3 99 4441 17 51 247 95 302 5 73 10 12 34 2 4 903 119 3 2270 447 2205 642 2 2724 3605 892 178 106 8581 271 457 1203 3 6 9012 9473 224 670 5 1346 75 9244 3 109 248 9 18 6 1 155 4 1 305 8 1459 65 2887 12 56 40 129 3893 14 1491 1 442 4 25 129 7 1 136 936 8581 999 5 26 531 3245 1 21 621 1289 19 42 543 242 5 26 7332 1078 206 2047 6 3153 16 56 3641 203 2092 10 59 151 356 55 193 8 96 27 12 56 242 5 26 7332 254 3064 1280 8581 596 76 24 5 64 28 422 16 95 426 4 948 41 4281\n1\t197 117 101 7023 3883 13 92 21 6 1219 3 19 3481 17 8 24 997 10 2 342 4 85 5935 518 29 366 19 946 8411 50 6332 973 40 71 219 4775 3 4775 4 268 14 8 7140 5337 9 21 2067 5 1 4370 13 266 1 5 257 5803 5047 791 12 39 770 16 44 4354 6 262 30 4 1 873 2133 1301 35 380 10 25 34 3 40 84 1773 140 47 1 108 4 4668 1 1404 4 9855 289 65 7 1 18 105 3 6 229 749 11 60 214 82 21 216 13 499 270 29 225 277 8441 5 842 47 48 1 119 705 19 5665 956 23 63 335 824 36 1 1234 4 4354 40 7 25 429 2607 225 41 11 4354 6 1727 2 15 4 7 1 1324 13 92 18 6 2674 17 496 50 417 3 8 389 1192 657 10 981 36 1181 1054 5640 3 72 22 1104 17 1181 1054 5640 35 24 107 4119 26 28 4 764 81 7 1 234 35 24 107 9 108 468 1479 79 16 2420\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 214 9 21 30 2082 97 172 989 217 3307 98 144 10 143 70 1 9558 10 130 3702 109 2878 304 505 28 3857 1298 94 3152 3 51 6 7 48 1 120 22 8 54 20 354 9 21 16 81 15 386 838 10 3503 9248 2717 5 9868 11 51 300 2 4 1387 7 9 471\n1\t478 453 14 3259 3 13 1 1267 7882 6 595 6269 14 29 58 85 114 2523 2913 70 383 136 9488 51 12 29 225 28 8267 525 49 33 61 47 2193 17 1348 12 3538 30 1 8 93 214 10 1164 11 103 12 248 5 19 1 5241 733 189 532 3 3361 294 10 6 169 1458 11 9 733 12 1 306 302 16 16 205 44 532 3 8 93 214 10 1164 11 51 12 31 525 5 2074 1 733 189 3259 3 2207 14 19 1 8571 41 29 225 246 1 1187 5 390 27 12 459 7 25 518 4978 49 3259 310 5 1 3 136 189 972 413 3 170 415 61 1205 7 11 4314 1 18 2148 14 101 2 6948 1099 146 3 3226 5 2523 51 61 791 5 17 60 88 100 24 1136 55 1056 2255 44 2276 7 727 3 2913 12 28 4 59 2 3507 35 54 24 71 4752 7 95 13 1601 7 34 8 24 1019 527 268 29 1 2433 3 985 15 50 379 173 26 2 91 177 1497\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1407 15 50 537 14 72 219 9 135 72 34 214 10 5 26 2 46 548 682 13 1833 1740 271 5 2 147 2860 2 8059 2442 8500 418 691 15 122 3 9 6 48 951 5 1 2306 4 13 743 2398 6 89 3 1740 40 59 37 78 85 5 2089 394 8728 41 1939 32 9 272 1 8500 3 25 417 328 5 209 65 15 1858 1175 5 41 1 8728 5 328 3 70 1740 1415 37 11 27 76 1621 1 13 2683 627 3 6935 25 111 77 1496 338 52 3 52 30 4075 55 1 13 150 4108 348 23 45 27 3700 1 2398 41 76 39 321 5 99 10 5 149 47 17 8 76 96 11 45 23 36 53 231 104 23 76 36 9 2396 13 369 79 734 11 9 18 6 20 39 16 8863 8 24 34 3571 3 33 56 338 10 2 3284\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 46 978 3 1065 1611 141 15 1 4748 5 26 4138 3 620 7 1 1043 541 3 43 1021 443 7432 5864 59 7 115 13 92 201 6 1 523 6 439 3 1 59 177 4211 6 1 9217 3975 56 797 3 93 1 567 4393 46 215 3 1470 115 13 45 23 5402 1 91 5719 3 708 38 9 739 22 400 10 6 56 1011 3095 4 448 11 9 40 86 7545 4 133 2 18 66 1603 54 20 3131 1 4868 4914 19 45 10 61 19 6602 17 552 10 16 2 326 106 23 24 332 162 422 5 1405\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 162 147 6 9 1455 11 6677 1 2447 4 1954 4671 3 5122 1078 11 9 12 1160 30 1 460 3 3722 6605 42 167 5963 3 1455 2688 3 75 209 1 100 1714 44 1773 41 6938 125 1 97 172 9 21\n0\t5 1 4066 1400 7 1 81 54 2146 1 1170 5 925 849 3 27 54 24 1436 7 2 3 13 35 4263 1 6751 4 6758 542 69 1 4 25 5161 16 5540 69 76 26 3538 30 1 233 11 81 214 122 2 5605 5567 1368 27 12 93 2 609 3 1 233 11 25 8607 291 9336 3 5 661 6594 7791 1 268 7 66 33 61 1716 49 12 1205 7 1105 1 66 12 1070 2 1284 4 1 362 6117 69 35 61 4176 69 779 41 1846 16 1 1287 1 21 151 10 176 14 193 6758 4707 8854 32 1 357 12 1 13 614 23 175 5 3658 1 398 454 35 76 1232 1 469 4 4 23 63 2900 157 1 28 1012 675 176 378 16 2 4226 4051 164 603 1683 8607 8270 1 389 3 603 1105 216 3 9061 1 4236 145 1893 25 2328 76 26 78 52 36 68 1802 13 150 3388 16 78 737 3 165 162 17 1 7855 35 89 9 177 2 1004 421 4084 9 6 1 1267 5610 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 58 312 48 1 82 2381 6 648 9 12 2 360 141 3 1242 2 356 4 1 1592 11 811 36 85 1 120 22 323 2535 1282 6 2 627 1484 16 3619 6 4605 3 2 4312 4127 6 2 1321 34 22 2211 3 20 1 4140 33 22 7 13 557 14 31 1532 391 4 1965 158 3 8 336 10 16 264 8250 17 9 557 36 2 3 158 3 12 32 50 1 113 1708 4 48 1 1702 191 24 343 3704 8571 657 17 301 50 796 7 1 486 4 6042 3 154 85 8 96 38 1 135 28 4 50 3931 7219\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 83 467 5 845 11 59 2 156 81 130 925 202 154 526 54 26 1120 30 9 2426 42 2 103 36 1 4198 249 1125 571 42 20 695 55 317 138 142 605 2\n1\t2 4750 383 3 35 29 5995 4 3 44 14 2 1187 5 26 57 30 95 907 2989 848 45 3 49 27 63 70 295 15 10 197 101 13 1092 1 77 25 749 157 15 3 1275 25 2749 2563 5 1959 1 6333 77 1 615 25 5076 1 6615 164 5239 3 4632 849 98 1843 5 1 1464 15 2 67 4 25 195 1215 40 58 302 5 2469 7 1 3 60 63 1654 126 5 1 183 44 223 155 5 9036 30 1 17 2 4279 7965 3 5191 2629 1 101 155 5 3839 30 25 6615 9776 7 85 5 552 13 2120 2188 1131 6 316 314 1 4046 2809 4 1 9408 22 3 1 22 515 171 7 6615 2554 3 25 6640 7129 2 952 4 7 95 82 158 14 109 14 2 11 55 3217 5622 2944 1 6615 164 339 9963 2030 12 7 6123 8211 12 100 52 2211 3 100 485 52 8571 3 13 3 25 6640 12 2 5228 2243 10 54 26 2619 16 97 3 1373 1 382 4 1 1125 5 9\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 819 100 107 235 36 110 308 1 7783 42 1 80 953 468 117 64 361 55 193 23 118 1 3 42 34 3715 73 42 2 718 361 2713 115 13 5676 1 85 10 12 2780 10 12 19 50 401 394 1307 4 34 85 84 3648 13 1 307 8 118 35 40 107 9 21 380 10 1 4274 55 45 23 83 474 38 3329 41 38 8012 23 76 149 725 3 361 241 10 361 19 1 1590 4 116 13 777 2 6480\n1\t55 1 15 62 4934 1782 5 157 3 623 69 61 33 61 3359 4 1 7875 11 54 209 5 24 31 1880 19 157 3 541 533 1 234 7 1 588 3000 13 3027 611 1 804 12 678 3 4083 1 312 11 275 35 12 536 1 7212 1153 88 26 37 3 12 591 5 2672 1838 16 912 5526 12 198 6804 14 319 3 188 1 1261 12 2769 7 296 104 3 2534 17 20 15 1 4117 4 41 1 18 488 45 1 804 12 20 2065 1509 1 907 30 66 10 12 6471 472 10 5 1 2 1187 1971 11 12 20 56 38 2241 41 55 4961 17 10 191 24 303 43 81 62 7 29 1 85 8127 13 590 47 5 26 69 7 37 97 1175 69 10 1929 4 86 85 69 1 5534 4 931 3 3 976 1080 30 1 10 6 105 91 9 251 40 20 71 7 2 184 744 3 34 137 602 340 1365 16 1749 2 4673 4 2 732 85 3 2416 3 34 1 3 9676 11 12 5\n1\t157 4 1 6874 13 3386 266 411 69 286 185 4 1 267 6 11 27 6 2769 14 31 353 35 40 71 47 4 216 16 723 1166 2 1972 16 2 103 5 70 155 77 1 3347 4 2508 25 6 5 26 11 4 2 2967 4048 3 27 6 4409 142 29 7877 2967 7 106 27 738 2750 28 1 282 29 1 394 7111 41 364 3875 20 59 6 1455 4 44 7445 2340 60 6 93 1227 2048 38 44 766 3990 3105 15 3840 3 44 551 4 1514 5 70 2 547 329 8151 1 102 2204 94 2 156 5916 922 3 142 33 139 19 2 11 2439 7 239 4 1 120 1758 32 1 1761 3 157 67 4 1 6874 13 499 6 2 641 441 311 8680 17 73 4 1 4952 189 3386 3 10 557 46 530 9 6 28 4 137 103 124 38 423 1830 106 101 7613 5 720 3 6597 6 1 4979 10 6 109 279 6745 3 9 6 2 305 11 40 11 22 8918 3 709 69 2 1935 5 3972\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3173 219 69 535 47 4 687 1282 2257 217 5744 3425 15 2 156 52 10 276 5 79 36 1 624 22 355 167 1455 4 9 691 3 10 76 26 240 48 629 5 126 45 33 117 1088 5 3639 65 3 139 51 221 3635 7 9 431 4 62 2766 33 22 7 7146 16 2 5263 35 1275 126 260 77 1 5 825 48 770 254 6 34 1739 1 687 15 1161 51 6 162 78 422 571 1 7146 3349 318 38 111 77 1 18 49 42 475 2722 144 33 22 355 98 98 4733 805 98 702 9 6 89 30 81 35 83 365 1 4242 234 3 10 289 7 62 4247 4 110 300 1 148 234 76 26 62 398 51 6 55 50 374 143 291 5 474 16 9 509 7 1 987 64 33 229 59 24 2 342 4 172 2268 62 6057 5706 4547 64 48 629 3483\n0\t0 0 0 0 0 0 0 7524 4467 115 13 6681 70 2 1197 49 62 473 47 5 2735 536 1 1536 968 195 24 5 96 6382 45 33 175 5 4012 1 4 1 423 378 4 1 13 2136 176 29 1 1203 3 23 3494 116 74 8848 4 1 135 11 6 167 78 110 1 121 6 59 39 4752 32 2 156 807 1 67 6 3652 15 1 212 21 370 19 1 1536 3 1 242 5 564 1 9 21 310 47 277 172 94 1670 9 21 276 5 24 209 47 3492 172 183 1 4765 1759 22 37 775 1716 3 8 87 467 51 22 515 81 2147 1095 3 9 21 151 58 1035 29 3814 476 2 178 49 2 4898 1225 224 2 6 1242 7 2 744 7 66 10 276 36 275 6 2914 1 1 6 28 53 1689 66 255 47 4 9 135 1 386 599 290 29 59 755 594 3 1194 1507 10 153 351 105 78 4 116 727 17 128 328 5 925 10 13 36 2 2848 1 8154 69 2457\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5744 7 31 362 280 3 8 96 44 74 993 1538 289 44 3602 7893 1109 7 9 6561 1902 8118 4172 6 9 2 2451 16 1105 3 1809 41 13 2 6561 7 148 727 60 191 24 9 1471 58 560 303 4779 4907 2402 6823 336 9 4866 42 260 65 25 1105 4095 13 7958 1 1755 737 8 192 1096 7175 992 32 9 7237 9222 5 138 871 7 104 11 9619 20 1 8339 4264\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4935 118 317 7 1245 49 1 567 3585 676 649 23 35 10 34 271 5523 32 939 443 916 1445 2932 5 388 562 8347 161 2918 3 5532 35 390 7325 7 1 4 31 5727 55 1 1713 22 7441 13 150 12 1247 16 29 225 2 5560 91 42 7455 1028 141 17 9 28 6 5560 91 137 602 15 86 5591 130 26 32 117 253 2 18 13 3382\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2373 10 14 2 203 141 42 377 5 26 2 3205 17 8 214 10 167 211 83 96 8 1309 1 212 18 8 96 10 12 73 4 1 903 121 3 994 8 83 1844 1 1041 8 96 33 61 20 46 501 17 8 96 6 2 46 53 6897 8 336 25 121 7 1982 3 2817 444 2 5984 3 2 53 651 14 322 17 987 328 5 26 2 103 8133 737 1 67 1 593 10 1419 2 163 4 53 1216 7 233 6 2 56 509 141 17 236 28 53 177 42 2 386 141 59 755 594 3 1099 269 2022 79 10 12 36 394 269 457 1 13 150 39 83 118 144 9 18 6 1274 37 7118 3 7 5491 55 835 540 15 501 3 8133\n1\t6227 6 407 20 2 91 1651 17 27 181 5 24 8103 142 52 68 27 63 9412 15 1 832 280 4 43 4 1 607 201 22 1111 4369 8194 2093 14 1 3 6042 5602 14 1 17 508 22 904 3 10 6 93 254 5 70 576 1 233 11 34 127 377 24 296 13 51 22 43 514 529 4 534 267 7 1 135 261 35 40 107 1 1706 3729 789 11 6227 6 407 2 53 1411 2099 245 51 22 529 49 10 542 5 101 2 2234 4 2330 2585 341 595 6 52 1458 5 3081 68 66 32 48 130 24 71 2 1127 799 7 25 13 1601 7 399 1 6 31 837 3 1930 4458 45 2 103 105 16 86 221 452 236 2 3507 4 4415 4290 529 3 2 5040 3418 3 1190 17 9 158 136 101 46 501 123 20 169 645 1 1183 14 3505 14 10 88 13 29 1 182 4 1 1344 31 6227 18 6 128 138 68 80 82 502 373 279 2 1775 39 83 504 5 26 2573 1695\n0\t31 489 163 4 648 2 222 4 423 3 43 1021 1028 3076 35 1 4 367 3059 9133 7 25 6524 5 2 183 126 7 1 4843 126 77 13 2136 70 1 2129 1078 51 6 58 121 860 19 2760 29 399 3 1 840 6 5403 8902 48 6 1 272 4 9 212 316 288 29 1 388 8743 1 259 1968 16 10 6 31 1280 54 11 26 36 137 1021 1842 106 33 23 77 517 28 111 49 674 1 2738 6 73 207 1 59 888 302 8 63 96 4 16 261 5 1935 30 133 9 6723 977 19 1 166 27 411 5 2014 4354 3 690 850 582 110 195 317 39 101 13 4098 23 335 9 3124 22 23 5888 30 1 845 45 814 23 191 26 2 1910 4 367 87 33 116 87 33 369 23 64 82 231 87 33 1426 23 5 99 3779 124 2268 23 96 244 1 113 206 220 87 9 981 36 2 293 5 437 3 134 5 1 4907 4 1 1420 268 49 23 1110 5 116 76 5917\n1\t295 5 2459 550 1 21 418 681 172 406 94 60 40 209 5 853 11 27 6 56 2 1798 480 490 60 440 5 90 1 113 4 10 3 20 19 75 53 157 57 71 183 9 5588 310 77 44 500 245 1 760 6 664 3 236 58 2128 37 1 886 6 929 5 176 16 916 60 432 2 923 16 2 1086 886 603 766 6 242 5 8657 2 1255 906 1 886 35 33 61 242 5 5833 65 2 1187 15 16 2 5194 1433 173 90 10 3 1 6 1390 5 26 1 1559 6177 322 36 60 65 167 109 3 1 164 6 15 48 5 87 11 60 6 152 1136 3 1 147 451 5 2459 322 64 1 18 725 5 64 75 42 34 8 143 36 75 33 2970 1 3357 14 10 384 4289 961 3 245 308 27 12 47 4 1 744 8 87 4429 75 1 21 93 143 187 65 2 3177 3 303 1 21 15 2 156 2324 13 1601 7 399 2 46 53 21 279 17 407 20 1051\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 18 590 77 2 388 8 39 112 1 67 3 1 188 11 271 19 7 1 6 2 17 11 1460 28 222 73 86 89 39 260 3 1 265 12 203 3 3409 566 9 18 9314\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 220 8 455 4 1 3101 9296 324 4 218 2207 4 1 8 48 1 898 6 8667 8 475 214 8 159 9 18 38 277 172 989 20 246 95 312 35 3101 9296 9905 3 8 338 3951 2 46 53 67 10 55 40 2 103 129 1273 66 6 84 16 2 64 10 45 23 70 1120 15 2759 83 70 79 145 20 667 42 39 2 327 42 2 167 53 18\n0\t0 0 0 0 8 192 20 28 4 450 29 225 12 3245 16 102 4 1 387 17 1 509 3 957 3062 4 11 18 419 199 2 1600 4 48 12 5 209 7 9 8868 2908 666 27 811 2 321 5 90 9 141 17 153 175 2339 3527 1 545 811 11 27 130 1382 15 194 17 56 153 175 5 1497 2 21 38 1101 3329 3 88 26 8761 17 9 6 20 11 135 29 28 1746 3 25 417 22 2379 1137 1 4483 1433 6514 1 3679 33 22 5664 5 15 1433 17 42 8805 4 9 21 11 72 100 70 5 64 235 4 450 15 1105 22 1 795 914 65 5 1 3241 4 25 2375 3 3578 408 18 802 4 122 15 1 1248 3 406 1 395 21 4089 199 140 375 172 3 52 68 28 72 359 852 5 64 43 6887 980 41 17 33 100 5223 8 16 28 894 11 8 88 24 1 7610 5 117 694 140 2 18 702 27 3316 7 253 31 594 3 2290 269 291 36 31\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195 9 6 48 420 637 2 53 3535 15 9 327 1879 710 18 997 50 838 32 1 46 74 1361 9 1501 23 83 321 1305 5614 41 679 4 840 5 90 31 1535 203 682 13 92 119 2480 200 843 7 2 7182 3 239 4 127 120 341 62 390 4723 52 1476 14 1 18 4160 65 1560 5 1 80 4 1 238 72 64 140 1 671 4 35 40 39 6672 1641 3 40 5 70 314 5 536 15 127 535 82 13 150 495 134 78 73 9 18 56 1071 5 26 52 4768 575 51 2 156 2387 1 5614 22 20 11 501 17 479 314 1 119 844 43 5153 3 188 70 46 1693 959 1 769 17 554 30 1 85 42 8137 13 150 179 25 12 2 46 53 141 7101\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 197 6370 1 210 3568 21 117 1001 1 18 2148 34 4694 14 2212 3 99 3059 720 1666 533 1 135\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 1 28 18 5 64 45 23 22 5 41 22 2 1136 9229 1 18 2 342 7 4302 3 1819 15 132 832 6509 14 216 3 5950 13 92 37 404 4 11 72 22 9696 4151 7 1 234 6 464 3 9 18 76 1416 90 23 13 743 191 1861 8 449 10 196 14 10 13 19 1 201 3 13 7846 4085 65 3 2 394 376 32\n1\t7 1321 199 4 44 7239 5 1110 5 1 3186 42 2 1261 80 63 2159 3 286 6 237 32 2 3098 1223 60 6 2 35 380 103 179 5 1 1687 4 137 200 1159 132 14 1 8941 35 60 73 27 1523 44 4 39 75 223 989 44 6637 663 5091 10 6 595 977 11 60 6 9794 15 2 749 1905 10 6 935 48 6 160 5 780 32 1 799 72 64 1 568 412 3 10 6 4763 7 1 567 529 49 4181 44 7820 30 47 32 516 1 1250 48 6 20 935 29 1 2353 245 6 704 101 3154 77 1 76 2162 2 8461 41 2 3061 2869 7 48 72 24 3 536 7 1 4457 14 10 498 827 6 1747 5 1110 5 1 576 60 3410 2 7144 5 75 627 1 517 4 2630 63 5721 13 196 138 15 239 3817 1 401 4744 523 3 121 4635 5 932 2 386 309 4 5058 869 66 6638 1 1109 4 2630 5 223 16 1 2747 55 193 72 63 100 571 7 1 4921\n0\t497 9 18 56 6 2 1211 51 61 97 1941 1025 132 14 1 6424 11 196 2573 65 15 2 874 1 178 106 1 389 445 12 3 2 178 106 2 164 3490 16 116 1 1759 22 56 91 69 1 166 1713 533 1 448 4 1 158 1727 1 166 5784 11 190 26 214 7 2 1660 1072 158 3 99 47 16 1 1668 4198 1 282 29 1 6 1727 49 60 3 44 1845 77 1 7997 8845 13 92 182 4 1 21 844 1089 1 1945 14 692 16 1 2 2066 9976 35 533 1 212 18 498 47 5 26 2 1028 411 3 25 38 1 4 1 136 1 102 6715 186 142 7 2 924 4 1 5098 1097 45 23 1006 2522 13 9 18 123 1917 97 4267 1 840 6 3 48 840 51 424 10 6 46 369 818 1 692 1541 4 315 3342 4901 1504 47 4 3 9345 4 1504 151 16 2 53 2551 16 2 1433 41 2 366 4 4868 3 82 68 458 203 596 130 875 8213 13 47 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 181 5 24 71 457 1 2728 4 1 296 4699 1438 1788 2423 196 16 2 7169 2884 6659 266 2 148 645 1368 9477 3993 7987 6 1 950 196 52 1 52 27 440 5 3 346 569 1443 123 20 291 34 11 68 1 184 3317 36 42 1505 8604 9 18 40 679 4 119 1552 3 498 11 291 17 34 466 5 1 1537\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 219 9 18 56 518 226 366 3 531 45 42 518 98 145 167 4 502 292 8 8 39 88 20 820 9 18 29 399 10 721 355 527 3 527 14 1 18 337 778 292 8 118 42 1331 5 26 2 267 17 8 143 149 10 46 695 10 12 93 31 258 8902 3 6764 1103 4 3368 500 7 524 9 6 48 95 4 23 96 913 157 6 2102 42 373 1265 8 87 24 5 1023 11 43 4 1 259 201 1144 61 4709 17 1 710 259 12 56 7810 8 87 24 5 1023 11 10 713 5 24 2 53 2869 7 1 441 17 790 50 8253 6 11 58 28 125 1315 99 194 42 39 105 3182\n0\t49 33 2071 1195 3609 3 263 906 11 123 20 780 9874 33 22 483 3 869 6 3461 4405 5 6204 1 607 201 6 169 501 15 8915 3 8126 591 1 278 30 2587 245 40 20 6977 14 109 14 28 54 13 3371 2 599 85 4 39 457 102 3 2 350 5516 1 21 93 811 8943 2043 51 6 1524 2174 3 1314 1 389 4660 980 801 4263 14 54 24 71 138 757 1164 4820 16 9 6 1 46 980 1576 14 1 4 1 389 135 5893 4 1 3656 1146 10 34 39 181 5 139 19 3 19 5 58 697 7499 13 858 16 1 305 2105 1 21 40 20 71 17 1 3687 6 483 501 3 136 1 7447 8717 213 591 1201 1070 6 4878 49 34 6 367 3 2427 8 187 1 1590 723 460 16 397 1353 3 4325 5 186 19 1 4041 9 2 21 113 303 869 3 3760 35 76 335 10 16 1 3032 4 1 3108 3 137 603 1154 38 4162 22 14 4712 14 1 21 7395 13 2381\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 130 20 26 1074 5 218 41 82 562 703 48 151 10 132 2 84 18 839 6 48 10 40 5 134 38 7015 3 42 93 2 1002 3005 7470 4 340 11 1 633 2689 6 2 9968 35 6 37 728 3 98 1630 47 7 132 2 7794 2352 7 1 40 1803 57 31 2557 839 7 6174\n0\t2483 562 4 1398 3 3872 2 696 119 427 5 2889 2300 79 5 490 17 11 6 106 1 5319 714 9 6 2 8187 3 1230 158 6777 4503 3 2069 1171 30 34 4525 1 4070 374 22 586 5 1775 17 86 14 11 191 186 1 7 1 91 121 292 27 6 340 2 549 16 25 319 30 1 1381 489 6818 14 2 21 86 119 427 6 301 34 1 111 3171 55 7 1 274 65 362 19 3611 1969 271 434 3 98 7 1 44 1365 4288 40 71 30 44 3 60 40 58 2559 3 86 1075 195 106 88 33 26 160 15 9 8 1 59 2065 185 4 9 6 49 94 848 34 1 3847 91 559 15 1 4 44 1449 60 4292 5 1159 45 50 6097 57 20 459 71 19 1 3135 29 9 124 10 54 1416 24 4409 3 19 1 8509 55 1 393 6 5235 1095 34 1 6561 1841 62 9085 4 3569 22 303 1169 8 143 96 8 88 26 1231 6572 17 98 8 159 11 5335 1160 9\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 192 6 2 3 2288 7726 10 153 729 48 1962 1105 3547 22 73 9 21 63 924 26 556 1067 19 95 3432 14 16 1 2635 11 8853 976 1349 6 31 8867 11 213 3040 180 107 124 15 976 8010 4672 33 59 1857 43 17 106 22 1 124 15 3 7485 73 33 83 6567 1 166 271 16 137 1865 2240 8120 7 1 17 20 2 7 3 137 2288 2445 104 36 1 3566 7 66 1181 1979 5 1 2819 4 4346 17 20 2 8434 4 7502 6766 19 183 2826 883 7 3291 4 3536 1 3073 130 186 77 3110 28 631 1820 189 413 3 51 22 58 19 2760 49 1624 784 3 1 166 481 26 367 16 2 1368 7 698 23 1227 495 64 633 7 31 296 21 7 235 386 4 1665 41 4683 9 5712 6 364 2 1839 1446 68 31 6080 2578 1514 5 209 5 1422 15 1 4 5377\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 9 18 7 1 5599 3 12 1517 1475 30 110 98 805 11 12 49 3619 5702 12 2 53 2922 20 1 60 6 1938 1441 9 21 56 3538 79 14 28 4 1 52 5222 304 2566 703 75 237 54 23 56 139 16 116 113 8 12 1527 5 2187 29 1 769 3 128 4443 65 49 8 99 10 195 669 221 5908 8 320 14 521 14 8 303 1 5599 8 404 50 113 493 3 5 44 75 78 8 336 768 9 6 2 84 21 5 99 15 116 113 5657 618 26 3023 16 1 202 732 3749 106 60 498 5 23 3 2080 45 1397 87 146 36 11 16\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 9 18 74 19 1 6598 21 6438 3 8 57 100 107 2360 2344 616 1448 8 343 36 1157 7 2 7892 1 238 12 37 3 51 247 28 509 799 533 1 135 10 40 1563 1549 293 363 3 2 885 994 50 430 178 6 49 1 4094 3 2026 16 411 69 28 4 1 97 168 66 5509 1 3215 668 4 1 108 9 21 6 2 3714\n0\t1317 103 813 2354 7 2 18 11 1582 130 26 7 13 1964 20 273 48 5 134 38 171 3 807 80 4 1 268 33 87 322 17 831 51 22 61 1 120 883 39 110 2 156 4 127 88 26 3228 15 1 922 1505 36 1 345 1456 41 1 345 11 88 1346 144 51 6 3666 103 7484 55 45 1 120 22 5170 36 2 346 1536 3 1 3080 6 7 908 2364 341 20 17 3255 49 317 7 148 9847 51 162 11 76 552 116 157 36 2 53 13 9848 11 173 1346 529 49 1 6388 1 59 28 35 789 75 5 300 934 15 1 6417 1 3020 11 424 1225 2408 49 1 59 188 27 63 26 273 2787 6 11 1 3020 6 588 16 1 1753 35 6 39 9784 122 944 3 11 27 481 369 10 24 768 17 1432 10 369 1 1350 3304 1 393 2 103 13 724 8 511 438 283 630 4 1 466 70 174 328 7 174 682 13 5 187 2 346 20 2 18 11 8 13\n0\t2193 2 1795 65 658 4 2998 14 14 1 108 174 454 247 10 6108 6269 5 622 49 80 81 54 59 118 38 10 32 9 3124 322 27 57 1 148 3211 12 55 3 1 4363 419 3 34 127 82 81 35 165 367 10 12 6389 13 724 48 8 56 3307 1220 3 1783 7 1 672 4 2 323 1220 45 1 1324 37 7198 89 954 57 33 20 1050 1 215 14 31 1 206 3 846 384 5 96 27 12 2 162 842 15 58 193 8 894 95 4390 2032 265 325 54 17 2 658 4 89 10 8 7663 3 33 39 143 474 38 296 1224 41 55 563 10 9 213 39 20 2 2493 42 20 55 7 1 260 1343 153 55 1179 1 29 1 46 225 10 130 24 57 1 4 28 4 25 5773 3 877 4 81 54 112 5 26 13 150 130 798 1 18 12 2071 109 32 1 658 4 1185 2517 39 142 1 3 77 2030 17 45 317 2 325 2900 1 2953 42 39 2 18 16\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22 2057 29 1 3 62 8249 22 58 28 789 144 41 2190 17 31 2892 5167 11 239 4770 12 1727 2 678 3 60 271 5 3634 86 1010 195 1010 6 2 1341 1648 15 43 678 642 3105 7 3 25 3797 379 15 1 9220 4 170 5 359 44 13 92 5180 40 31 240 804 3 2 386 227 549 85 11 10 1513 26 446 5 70 1466 906 136 10 418 142 169 322 10 123 357 5 2739 183 1 2507 272 3 196 243 509 15 86 2515 3 961 6199 13 677 22 43 53 188 38 3655 6 1515 3 510 3 5052 3120 2999 6 93 2 2211 3 46 1119 3 145 198 2 325 4 6 93 1321 14 1 2892 3127 13 499 8883 2 222 4 2 3762 1190 3 1 748 22 13 724 1952 10 39 143 2108 5 998 50 796 140 1 212 3236 3 16 458 8 24 5 1090 10\n1\t2440 29 1 1191 4 31 5512 766 2954 30 1954 98 196 4684 533 1 21 1359 5 43 293 2567 93 89 44 21 2289 204 3 380 2 84 278 14 28 4 137 4 220 145 32 8 57 459 587 32 44 771 131 801 29 1 85 4 9 1042 1808 881 36 48 2 21 5483 6 1442 14 174 493 35 93 629 5 26 1 6841 4 5491 6818 34 277 1624 2071 918 9496 16 62 216 204 16 113 3 16 113 607 274 7 1 1270 285 1 74 350 4 1 3782 5694 218 1666 6 2 21 37 627 11 10 89 79 1717 29 1 714 10 93 89 79 539 29 268 854 144 1748 61 37 254 19 20 5535 16 113 206 6 2 948 11 128 79 1938 17 5535 54 139 19 5 1364 102 5371 172 406 16 3 2015 253 122 28 4 1 113 18 971 4 17 27 130 24 1866 2695 16 9 108 1 329 11 27 114 160 32 293 363 36 5 2 686 589 36 218 1666 12 13 5934 4\n1\t1 80 1502 171 7 368 1163 30 2239 2127 14 20 59 2 5965 1950 15 551 4 4590 17 896 7 744 14 2 164 72 63 6249 1566 5817 8938 93 876 7028 2191 20 39 14 2 4583 17 56 14 2 164 39 1770 5 4008 19 5 48 103 27 40 8555 2127 3 7028 22 1826 758 5 157 7 132 2 1087 111 11 10 6 806 5 96 4 126 14 20 39 120 17 1 46 148 1512 4 433 3 1852 413 35 195 149 730 4475 1 9773 4 62 13 8643 1 2710 789 317 434 6 2 1700 901 38 75 257 2628 466 5 5570 11 72 1286 228 20 504 5 3374 52 68 458 257 4331 93 63 4338 137 200 199 7 1175 72 100 5207 7 48 130 24 71 113 572 4 1 3002 72 64 75 486 22 728 2415 49 1 112 4 319 432 1 2059 5995 7 639 5 6702 257 3033 2058 7 82 2800 51 22 58 806 41 3405 5 257 922 3 242 5 149 126 63 59 90 188 8350 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 37 4419 1 171 63 20 634 1232 33 181 5 26 765 32 2 347 3 1 67 6 37 59 353 35 114 2 1233 329 12 45 23 175 2 56 53 18 99 84 171 3 2 67\n0\t1471 7968 6 46 3 40 1187 5 90 10 237 15 138 3648 13 150 57 80 1691 16 35 12 229 1 113 4 1 3284 60 12 17 9 128 12 20 2160 619 437 60 384 16 1 80 1871 17 44 931 178 94 44 6510 469 12 169 452 181 14 45 60 693 5 149 2 206 35 76 352 44 4045 20 44 1257 17 48 945 79 80 12 9269 3 7968 143 176 36 2567 61 20 2 627 9229 58 2380 12 5 26 214 189 3 3 5968 3 114 20 1 8300 2380 33 13 858 16 4501 33 167 78 12 105 9336 3 8 167 78 9312 140 110 10 12 618 2068 1 604 12 6133 17 20 4884 166 337 16 1 82 5773 16 275 35 485 890 5 9 141 8 12 2761 1558 8 57 298 1750 16 73 4 25 17 181 14 45 27 433 25 860 285 1 1363 4 9 108 17 3037 27 25 860 16 17 9 18 6 113 7668 34 1 128 87 20 90 65 16 1 509 18 10 705\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 145 531 20 105 77 2 3656 131 16 1 217 1770 8 192 688 58 94 28 431 4 4704 8 12 13 150 173 55 134 75 8 12 11 42 15 4510 226 366 73 8 12 56 288 890 5 1 9062 2541 66 76 195 1276 398 805 11 2631 12 3822 101 2 147 983 10 693 5 2031 65 2 1068 3 246 1 330 431 4425 155 2 1679 1141 43 13 3053 1113 249 153 198 24 5 26 1822 5 26 3473 8 83 504 4704 5 186 408 95 17 8 87 504 10 76 26 446 5 1708 50 838 34 4207 117 99 1 74 156 767 4 2 2810 131 172 519 23 560 75 23 117 165 9584 129 2000 270 43 1425 13 92 28 431 16 239 349 312 6 4092 7 50 3222 1 59 82 131 8 63 2209 403 146 696 6 15 239 431 101 31 246 31 349 6 52 1087 68 2 326 11 786 187 9 131 2 3812 6558 38 632 39\n1\t4 448 1 250 302 144 9 131 6 37 452 42 2 1360 129 5 309 73 10 153 1959 1 353 5 7 1305 7630 36 1 919 262 30 8 381 283 1 102 120 8314 73 33 22 1 80 13 129 6 2 222 4266 5 335 73 27 6 52 1087 3 87 72 56 321 5 64 1 8969 67 16 1 387 292 8 76 134 11 1 1063 310 65 15 2 609 67 16 122 7 1 226 13 262 30 231 259 672 2342 6 892 3 60 40 2 8653 19 2 574 5545 66 152 2589 44 1223 1 59 747 185 6 11 72 143 64 52 168 15 44 3 1994 73 33 61 892 1413 105 78 67 12 1130 19 44 733 922 220 72 459 165 11 7 15 1994 3 13 8 76 134 11 1 1084 4 3678 171 61 198 1051 2 156 1327 7 1 1 400 1477 6964 262 30 1 1381 1477 2470 174 28 4 35 6 400 3 2 293 1635 30 1 1410 1897 6924 14 2 3403 13 65 398 19 8005\n0\t3 2467 36 2 1305 1297 32 1 161 13 1627 48 123 5633 60 270 754 1046 3 1275 126 19 44 880 48 232 4 754 8791 81 7824 3126 4072 36 1159 571 127 81 24 433 52 68 62 2109 3126 2121 1156 441 64 182 4 3 3303 97 5 3 936 33 209 19 1 131 3 348 62 441 14 45 72 617 455 10 183 3159 3 3159 4 268 180 455 116 901 38 2123 31 4520 5 2 4615 220 326 628 66 12 83 348 79 23 24 58 254 17 1 1003 177 229 19 12 492 6087 3634 7 94 101 3732 4 101 2 583 2836 561 2538 40 220 2021 1695 17 11 28 933 131 553 38 923 727 146 20 97 81 563 38 29 1 1425 13 148 2728 255 32 750 3412 415 3 5243 33 291 5 96 444 36 2 923 2374 9105 17 34 8 64 7 6 43 184 8590 886 35 89 10 4143 3 444 39 781 142 75 1086 60 3191 13 1964 1096 44 289 160 5 182 5982 72 321 138 756\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 2 176 29 155 49 27 128 2 1 408 4033 4 1712 14 2 635 22 1111 3 1 2219 32 25 1007 380 2 327 3289 4 39 75 1021 1712 7457 65 14 6082 65 14 27 705 9 388 6 2 191 221 16 95 4787\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 2 84 141 10 289 48 257 1655 76 5 5 82 4179 45 72 83 36 62 9 213 14 91 14 48 3 5248 604 28 114 5 1270 4505 17 1 199 128 40 58 1255 7873 200 15 82 4179 36 476 9 104 93 1501 11 296 2152 1655 9 6 610 48 33 114 5 7 1 302 9 7783 421 8995 143 4891 6 8995 12 15 125 8460 4 1 13 252 18 213 39 2 1105 4626 10 54 128 26 2 84 18 45 10 61 2 1794 42 491 11 9 6 13 92 82 2381 6 4304 49 27 666 1 1 2015 2152 6 599 8995 2921 34 1 5623\n0\t126 5 99 9 125 3 6001 5 13 150 495 7179 1 119 220 51 6 58 5306 640 17 10 123 186 334 285 1 296 3891 3 3366 266 31 35 123 20 175 5 70 4525 17 1391 2788 136 27 40 58 2128 58 6835 3 6343 36 2 2 46 1053 621 7 112 15 122 16 58 1649 2650 220 33 24 59 102 269 4 494 6340 13 4041 45 2371 7 9 141 378 4 10 54 24 2175 62 3163 1 263 12 2680 17 278 3 631 1429 1778 89 10 55 2194 2862 280 12 3534 8 56 173 1431 110 6 2 250 919 17 40 36 715 456 7 1 108 7 698 1348 2656 78 7 9 682 13 1268 4 1 80 1941 804 7 1 18 6 75 1712 3366 3 24 9 9422 9827 5 6129 549 77 239 82 19 1 86 36 1 389 6 2 9344 211 5 64 23 204 805 19 174 2226 2765 23 7 2 156 13 150 192 3021 5 187 9 28 376 30 6675 220 51 6 162 204 16 2 1332\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 192 2 155 1982 18 3 249 3123 8 336 1 131 3 3 8 336 34 1 502 17 9 18 6 20 14 84 14 43 81 61 10 5 1142 7 50 10 6 2 184 369 1781 8 96 1 465 12 10 57 58 2331 3433 4 1 3 1982 1110 4 1 9885 57 2 163 4 2331 3 1982 217 561 5447 1580 57 43 589 854 896 8 96 9 18 6 5 822 16 1 59 178 11 181 2 103 534 6 1 184 566 15 29 1 714 42 31 1233 1982 108 17 8 54 39 760 110\n0\t14 8 70 46 103 47 4 133 2 4007 4 5798 2 823 1359 5 1 1449 4 582 238 443 51 6 93 2 1401 4 160 16 3437 29 216 204 11 9 21 32 101 323 695 1 4722 4 246 1956 735 3072 7 670 154 178 190 786 43 410 7998 17 52 68 1458 10 76 26 107 14 31 5 2612 7 1 6141 13 150 228 93 734 11 51 123 291 5 26 43 161 5500 423 29 216 675 164 6935 3 207 6935 164 3 11 6 2 17 11 6 39 1 111 1 234 3375 7 1 21 1 2230 432 510 73 4 17 7 1 148 234 257 2230 432 510 1359 5 3 36 137 510 1504 9 644 4892 157 2 223 85 1924 51 22 2 156 53 5 26 5125 1 226 383 12 56 169 17 10 12 1677 774 227 5 552 9 145 167 273 51 6 2 53 18 3963 1052 740 9 9198 17 1 263 965 5 26 140 38 2 2596 5 70 939 3 30 8 467 5 1 952 4 18\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 641 144 134 10 8653 42 6374 234 392 535 1141 34 41 80 4 1 423 2075 3 1181 956 358 4 1 1 859 6 11 1 358 4251 130 20 24 71 29 5643 7 1 74 1888 224 5 32 239 3453 72 64 33 24 297 5 209 371 13 1565 13 2595 1 182 2109 636 5 4381 62 5047 475 37 33 76 641 441 6471 7 1 1953 445 4 1 362 4929 756 72 64 10 7 14 595 161 3 300 2775 7 1 362 58 28 57 107 132 8 187 10 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 323 2 409 42 2 179 7977 21 11 151 23 96 3 151 23 1193 257 5778 10 6 197 2 894 1 113 8709 18 8 24 107 5 6177 9 21 130 24 71 620 29 18 200 1 234 3 8 241 54 24 71 2 686 29 34 1 120 61 1080 201 3 3 61 2762 7 62 13 92 67 1 18 649 38 6 2 46 46 731 67 3 28 11 130 100 26 13 499 40 58 41 3 40 340 1 2 423 471 737 58 28 913 6 2769 14 53 41 565 51 22 510 510 3 53 4694 3 1 861 6 313 3 1 265 6 4673 3 297 38 1 18 12 1 121 39 472 50 4039 1695 34 61 1080 1440\n0\t4 147 120 11 22 1694 7 9 43 81 367 11 9 18 40 1115 523 3 4281 48 48 236 58 4281 2936 6 37 425 29 403 297 27 4361 8 83 96 27 40 235 5 3915 1395 45 9 6 1 113 18 4 1 349 9579 8 190 39 5460 133 104 115 13 6714 81 24 93 367 11 2385 278 7 9 18 6 28 4 1 113 1623 20 1 4 25 3163 48 75 97 456 114 27 24 7 9 8 24 43 1451 16 5568 73 27 40 71 7 104 11 8 338 3 40 262 264 2329 4 647 17 2 53 353 6 275 11 23 63 1092 3082 32 28 18 5 1 6893 275 35 6089 264 2514 4 2237 20 275 35 266 1 166 871 125 3 125 316 801 5568 153 1690 17 31 665 4 275 35 123 6 13 9 18 12 2 184 2259 5 437 8 87 20 354 9 18 17 8 87 354 1 74 102 2849 3 2936 3 8 80 373 354 765 1 277 1402 801 22 78 264 98 1\n0\t9 21 2480 19 537 5279 30 510 3106 1453 73 94 9 1 282 3 44 311 662 1505 3041 98 757 5 2 2112 15 1 80 468 117 2198 35 2296 65 15 25 1327 7 2 243 699 49 60 2080 122 5 1017 25 3533 15 1159 27 6652 25 122 95 574 4 84 1 18 475 418 944 14 27 4411 5 31 4658 2779 2265 5 43 193 20 183 27 3019 65 2 147 282 3 7939 44 533 62 34 232 4 678 795 5441 11 608 23 5152 10 608 22 100 1 282 5601 65 7 1 750 4 1 1767 265 266 5111 3 275 55 2448 1 1581 606 791 2 4 1414 5967 7265 1 6274 3 33 6290 19 207 14 542 14 8 70 6396 1 640 17 236 2 53 680 145 111 52 731 204 6 1 218 6 2171 46 5840 15 86 3848 265 3 240 5785 1 120 34 176 9422 3 1 9721 9114 266 2 53 9 6 1 574 4 1827 203 21 11 88 24 71 45 59 275 57 2705 5 787 2\n0\t1 3 5176 261 35 1035 5 4012 122 32 5184 25 28 3 59 13 8750 76 2711 5 64 1344 3 48 76 6581 87 49 444 929 5 44 700 1133 2899 3 5668 1932 8941 7 1 1222 1015 11 76 24 2976 5111 288 125 62 7261 14 33 47 1732 1 941 8509 2 119 11 76 229 256 23 142 160 5 64 476 1897 45 23 1006 79 6 2 53 9404 13 78 5 216 2159 440 5 6674 1560 47 4 1 80 6744 4 4149 29 28 1746 2 282 7123 77 2 3135 954 3 440 5 10 65 77 2 4457 1770 268 56 87 637 16 1770 51 617 71 9 97 802 4 220 1 226 13 659 1 1592 4 1 50 1500 1316 5230 3 5 1236 2 51 229 6 2 782 18 5 26 32 1 4 3 1119 4116 15 7670 7404 9 6 20 11 682 13 1226 570 925 29 34 1348 76 36 5964 1925 42 55 2 2259 5 35 531 335 1078 86 1409 551 4 813 41 2 366 468 26 7 2 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 159 9 21 226 366 7103 3 83 118 48 721 79 7 50 8070 8 497 8 39 909 2 21 15 8142 54 24 43 1548 7 10 963 17 162 4 1548 117 310 19 1 1250 1 67 6 2 810 1335 5 2418 19 383 94 383 4 3 8762 51 6 20 2 129 7 1 21 11 123 235 36 148 500 1 3005 4088 19 2248 5451 3139 3 5 187 4073 5 9 7354 4 2 1671 4 791 599 1126 16 172 3 1197 1 3043 6 1 4 31 3370 3207 8 83 64 75 2 165 602 7 9 5517 8976\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1004 1855 6 470 30 763 31 1101 1004 589 7087 829 7 31 728 1837 108 55 7 2924 4 2 53 606 1430 4393 9 739 181 5 19 202 2 147 1862 270 125 2 1127 4527 231 3 615 411 1076 16 25 221 500 7751 3 4 1 4527 3920 90 10 254 5 1961 7 261 258 49 3367 4 3188 22 29 6606 3 882 7415 1 166 7 9 63 20 26 256 19 2 4892 15 1 148 2041 39 1 176 4 1 21 876 155 2122 4 296 7183 9596 55 1 986 296 353 173 1 4 9 1004 2331 7768 93 460 3\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8467 6285 6 36 2 430 3470 1940 361 42 4 84 103 2126 11 734 65 5 146 56 13 92 67 339 24 71 42 5687 40 3 154 129 40 2 327 954 41 30 1 59 120 7 8999 5 24 31 22 35 2486 5 112 101 2 3 35 25 4 51 22 3159 4 1308 3 1257 529 7 1427 8467 34 4 1 171 473 7 84 672 1093 3 1 4500 205 1 1729 3 7280 6 13 252 686 18 6931 153 1337 200 17 9 18 407 1071 1 8 419 2420\n1\t18 49 8 12 8196 3488 14 145 15 86 1086 5876 622 14 1 226 4 1 215 128 2379 7 53 5538 23 1810 1 215 3197 7 11 9 18 1510 317 340 2 1751 3940 4 1 7 2924 4 34 1 3 2109 248 125 1 1801 172 42 71 276 14 2 21 1952 1 119 6 595 832 5 9675 1359 7 1114 185 5 1 4131 5826 3 49 8 134 145 20 712 11 736 236 2 163 4 4 5876 8600 3 55 2 178 106 1 626 129 6 246 2 3749 15 25 435 38 75 78 244 2260 1095 3 197 95 27 271 1240 137 3153 32 101 2443 5 2 9383 5 2 103 2010 3 98 155 5 411 136 648 155 3 3194 15 25 2832 2948 153 187 295 95 119 45 3128 28 63 26 3023 16 10 3 300 33 495 26 14 14 8 12 30 1 1 21 40 3412 109 3823 3 40 2 53 859 38 1 8583 5197 189 2 435 3 25 585 11 80 559 88 1999 5 7 43 921 41 7008\n1\t605 3590 6737 19 25 1182 3 7 25 221 5553 9 14 2 4645 5 3 2591 763 3492 172 4 916 372 15 148 3 3047 120 14 109 14 15 1 2996 10 3352 1 4 1 148 3 1 7 102 264 11 4 3 11 4 16 43 85 72 22 9083 5 601 15 1 263 4342 35 2615 11 1 1232 4 34 6564 6 1 2809 4 3319 8042 3 371 15 122 72 735 77 2 5072 49 1 6 475 3521 15 1 75 63 28 32 1 958 108 39 681 269 183 1 3177 1359 5 1 1205 5780 4 1 379 4 1 35 6 1768 7 1093 72 853 11 371 15 1 250 129 72 24 316 71 1581 48 6 1 2154 4 1 632 16 1 3032 4 66 10 6 4752 5 1962 221 442 3 1 474 16 1 170 13 1627 35 6 7075 9 6 27 2 609 41 275 5279 36 32 1719 4072 36 1 1967 1 263 846 7 1 182 32 1 1182 2079 297 40 763 4203 11 72 1836 9 1193 13 1149\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 6 52 38 75 537 90 356 4 1 234 200 949 3 75 33 341 333 6543 5 90 356 4 10 513 8 96 42 71 307 160 7 852 2 495 335 10 17 45 23 175 2 2812 441 42\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28 4 1 764 113 1545 117 115 13 252 181 2 267 37 3 822 11 7083 1545 22 13 7067 5482 2038 3 277 3436 130 5507 5 2 4 2 1545 401 764 45 8 61 5 8185 461 2 112 67 76 1 8 175 5 652 204 9 267 6 36 8727 316 2 342 1 4958 4 4 1 1966 3575 7 7146 3 7 7083 2 4087 7 9756 4302 3 7 1 166 3511 557 7 1 205 2 9343 3664 1885 2 5341 1211 29 2608 42 2040 1 166 3 300 1 166 6 15 1 6752 8263 30 205 7298 3 6 6807 8 24 214 277 3436 109 428 3 5734 197 101 1 119 6 676 46 6752 6 2 391 4 1 59 4531 22 1 102 976 3 13 18 6 311 8511 8308 3 436 28 54 26 6159 5 9 276 36 4086 42 1375 17 10 6 1751 1816 1114 1816 1434 3 5342 151 2 514\n1\t16 4672 66 6 216 36 9 6 1822 4 3 130 26 13 6 8430 14 322 14 783 3 8262 1240 44 1729 572 498 7 31 2316 278 14 5723 1072 10 6 4327 245 35 1421 47 7 2 3045 607 280 14 2668 14 109 14 4467 35 876 2 4290 1490 6953 5 25 280 4 896 7 48 5453 5 2 2691 280 3075 1183 844 31 1418 15 46 103 412 1425 13 92 607 201 1680 578 2414 4949 8421 816 816 294 294 7175 3 1 2886 392 76 2681 26 31 1089 7457 655 1 17 14 85 271 926 10 76 26 140 1 8133 4 1132 36 9582 1072 3 124 36 15 1 11 76 1391 352 5 542 1 3 5912 7 822 4 52 1058 3929 10 6 146 11 6 5873 21 6 2 1127 10 63 26 5060 14 109 14 2571 3 436 7 1 958 52 36 9582 6605 76 8582 3 5912 2 356 4 140 1 3401 2553 4 1 795 3 6419 11 90 199 48 72 2620 115 13 1149 115 13 1149 115 13 1149\n0\t612 19 305 7 1 2736 14 1 6 2 1886 1222 11 1082 7 167 78 154 1 67 6 202 5864 7 2 21 66 650 4 81 5066 200 2 534 15 1 1675 4 102 120 1018 22 169 515 7095 5 26 1 644 307 6 1517 1468 11 1 545 339 474 364 49 33 70 1 3112 662 2637 227 2 1516 383 4 2 9085 4 2777 7 1429 813 498 116 3 1 2270 447 178 1008 398 5 58 1349 4394 2082 5 90 7 2 1222 13 92 119 1148 1144 4 2 5247 1301 3746 1208 48 784 5 26 1 3781 6153 22 2174 2841 3 1031 95 1957 180 117 106 33 22 1459 142 30 31 6085 16 2 402 445 5718 1 397 1353 22 2054 3 1 201 22 34 291 5 26 1002 2262 1041 17 15 20 670 227 2438 2 5 70 56 8370 3332 6 2 37 7011 1 2461 111 105 78 2384 494 8234 32 1 3 43 2861 333 4 7427 388 4461 7 31 525 5 734 43 2434 1 18 1108 432 483 1466\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2859 28 58 2 191 64 45 23 22 77 41 102 184 4085 7685 84 790 2991 84 443 1093 53 1794 1357 8344 3 1129 167 542 5 1 148 1606 17 9 213 2 21 5 3 1351 47 1 1043 9 6 5 694 155 3 24 2 53 1 119 40 43 1384 17 9 18 213 56 38 253 23 4630 86 38 2926 1 6989 5783 3 2286 6989 358 3 535 22 167 53 917 5101 17 1 74 6 128 1 113 790 108 816 123 2 84 329 372 25 129 3 781 1 1503 601 4 1 6989 500 1 908 4 1873 15 34 4 1 2295 191 64 16 6989\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 491 11 37 97 81 11 8 118 617 107 9 103 4773 1603 8 24 590 19 5 10 24 209 155 15 1 166 48 2 84 13 3440 100 78 4268 16 3360 4504 2720 25 498 7 2042 7747 3 566 1957 131 17 25 278 7 9 21 14 2 3413 6 534 3 260 19 13 422 7 1 21 380 313 453 3 1 1324 673 3 2216 3461 7221 1 1 356 4 9225 16 1 120 863 14 33 209 5 853 48 40 71 56 13 92 59 177 11 863 9 32 2 394 7 50 1158 6 11 1074 5 48 310 183 194 1 393 6 2 222 105 223 3 17 207 1 59 4594 8 88 149 7 9 1280 13 614 23 841 9 21 827 328 5 70 1 2024 757 16 1 113 956 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 713 5 9567 19 1 78 138 492 21 15 2124 14 470 30 1796 1 59 240 177 6 75 127 374 61 7 3770 15 835 160 19 15 1 2543 7 5131 2558 6741 13 92 21 6 59 279 283 73 4 1 1761 4 2536 3 8214 35 1049 33 61 109 1413 1 434 182 374 24 3844 546 14 1 119 19 126 243 68 7 1 972 13 659 2 111 42 2284 75 12 314 7 1 166 111 43 114 7 406 172 260 204 7 147 4889 10 12 1 111 5 473 2 5856 200 100 1078 1 1055 922 10 7 2001 15 37 97 2962 200 51 6 2 147 4084 1 170 374 4 1 67 384 3170 243 68 75 268\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 150 112 203 484 17 9 40 165 5 26 1 525 5 90 28 1218 3039 10 1427 4316 6 93 2 9 6 20 279 8646 13 9 6 38 14 240 133 14 43 1610 4003 3200 5830 3 10 40 38 1 166 538 23 54 504 49 23 2702 116 764 349 161 585 77 1 1692 15 116 147 3 348 122 5 90 2 682 13\n0\t0 9 6 2 91 461 8 114 2 1839 186 49 133 31 161 376 2748 431 1 82 12 1 28 106 307 196 7997 15 11 1032 3 98 139 2 222 51 12 1791 1 9583 4 10 486 30 27 262 1 74 35 2180 32 34 8 88 96 12 11 3719 219 25 221 18 105 97 984 207 48 2200 1 9 18 6 331 4 323 9583 1098 51 6 58 1362 129 7 1 158 20 461 42 46 254 5 230 91 38 1010 1573 77 2 1034 27 152 590 73 23 39 83 36 550 3 23 83 36 25 1725 41 1 1858 3526 9691 41 1010 144 54 23 95 85 41 2157 7 9 1973 106 51 6 58 6429 15 1 647 51 6 58 302 5 1460 3379 38 110 20 5 798 1 586 2653 66 89 10 176 36 3771 829 1 18 140 3 1 681 4332 293 1456 97 4 66 1478 5 26 1657 4 3618 1256 77 2 325 5 4 9096 20 1 210 21 180 117 107 19 17 224 51 7 1 1735\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3756 391 4 8036 11 6 396 1837 38 9 231 21 6 28 4 13 2595 1 387 7 9 18 1525 1 2096 16 1 1003 18 6321 7 1729 572 622 341 190 1811 5 10 12 1525 7 69 58 894 7 4556 4 1 215 644 35 1 7 9 1015 33 1 3610 13 3514 1 6321 12 1525 29 1 223 881 277 9187 66 12 1 408 4 1 3 1 29 1 85 395 22 195 7 2312 3 1 29 1 6321 12 1525 19 2 18 412 11 12 681 584 7 5597 1208 1 3 1525 341 190 55 1811 5 1 2096 16 1 18 6321 7 2994 620 5 4238 1954 1347 3 1490 4642 61 34 7 5 1 4 3949 4 2225\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 20 39 1 119 818 11 151 9 18 31 4653 16 1120 7645 42 1 464 593 15 2 586 263 3 3036 303 3 260 11 151 9 105 5 836 145 1140 17 8 87 20 64 1 7 476 39 1 4591 4 1 97 3036 3 439 109 145 1437 75 1230 1 971 96 4 62 3948 1404 49 9 18 12 74 229 14 1230 14 11 2643 35 77 1 3862 331 4 15 2 1909 114 8 995 5 798 9 20 59 2 345 353 17 93 63 142 31 15 2 3790 4 1 5794 8 497 27 232 4 3001 49 27 1196 2 9947 125 1\n0\t1 5432 4 647 3 2 8908 3609 37 3418 7 86 221 3059 11 8 4463 5 1 856 2 330 85 5 90 732 8 57 20 1155 146 9589 11 228 720 50 3222 5 50 8 57 20 1155 2 1606 630 738 6221 3924 5205 542 3 9481 88 1126 4 1 5072 274 16 126 30 206 34 4 126 485 1080 4345 3 14 9797 30 1472 3194 14 103 991 14 5887 33 909 5 6982 77 1386 1165 4357 1 21 12 632 470 740 31 4 86 2284 11 1 397 5263 12 1 4 7 2 178 11 5193 9275 183 310 77 7463 155 977 10 12 587 30 86 215 8345 55 458 48 19 990 6 8345 7453 403 7 2 1383 7 1270 1443 7 296 884 2135 114 20 645 1270 1443 318 1 362 218 429 4 1 130 24 71 1 1729 572 2592 4 73 10 12 37 3 2915 5 86 4712 312 4 48 1 821 57 5 2967 10 14 31 632 135 14 2 4818 10 12 1070 2592 779 3981 3 16 458 130 24 16\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 161 81 145 1194 3 24 71 133 1 131 220 8 12 10 1732 50 1009 3275 32 3 2982 3441 8 56 555 33 1808 194 33 143 55 70 2 2305 17 48 31 8095 34 137 3428 8 96 180 107 126 399 3 20 28 255 5 438 11 8 143 36 3 13 4395 2 1152 1 2982 359 189 701 3 60 100 219 10 3 83 9671 1467 27 120 7 701 22 37 3 1 1300 189 1 171 6 2713 10 56 12 2 747 326 49 33 9\n0\t0 0 208 216 29 2 2965 1320 3 154 1679 72 24 104 11 209 7 15 39 2 156 127 22 1 232 4 104 11 1 1045 1354 3434 1 232 4 18 11 1348 117 3 59 11 5385 49 33 652 10 155 8 1006 126 10 95 33 134 6829 72 590 10 142 94 1194 104 15 464 1182 1500 2837 3 132 2102 46 13 252 6 1 166 574 4 18 11 424 3 1409 351 4 387 45 23 175 2 3408 341 59 53 8391 370 18 98 328 8391 217 600 993 4883 35 6 93 993 7 1 7493 8152 14 800 4 13 406 9 349 72 24 174 8391 141 15 2 376 201 9202 32 2047 8265 3 6205 5 8358 9212 3 294 13 724 83 369 11 70 116 1750 65 36 72 34 114 15 41 72 22 34 7 16 174 184 13 872 3260 204 6 50 3717 4 45 51 6 59 28 41 102 83 760 10 73 86 2 3790 4 9 6 306 4 1 387 531 20 306 45 1 462 6 41 2\n0\t475 165 5749 77 1 9943 1863 5331 8 57 5 322 835 160 5 780 204 16 1 398 594 41 37 5 359 79 1 20 1878 39 294 5749 246 2 1896 1741 13 4751 45 1 5749 129 57 52 1384 409 409 300 45 25 61 2 52 4 25 3275 157 409 409 409 300 45 1 21 57 463 138 1619 86 1626 38 2807 3 2845 41 57 20 126 19 7 1 74 334 409 409 409 300 45 1 21 57 89 2 1412 5 26 463 1872 203 41 203 3 57 1435 28 4 127 5616 409 409 409 8 34 8 87 118 6 11 8 159 9 18 15 102 82 203 7971 3 630 4 199 78 338 592 13 16 1 431 19 1 1863 1 1184 886 15 1 3 1 7 1 1276 34 277 4 66 3110 16 58 52 68 681 269 4 412 387 9 21 12 2 13 5676 1 744 9 67 181 5 2303 1154 32 1 5666 3 333 126 204 5 78 364 1127 5957 6 1638 800 195 3743 5 4097 1154 32\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 20 14 211 3 2637 14 1 305 1009 8 56 112 2733 3 484 17 9 28 6 56 39 42 28 594 4 3867 142 1642 1248 1711 7959 3 2 163 4 8 96 1 4748 15 9 2399 12 5 90 2 484 17 10 42 39 6149 2 156 168 22 1530 17 7 212 42 2 2908 45 23 36 2399 6865 36 9 28 8513 111 8 54 354 1330 358 3 4349\n1\t4 1 913 459 789 22 3040 2056 72 365 11 1 142 1 392 22 3365 1 1105 7 4383 4 10 22 55 52 3365 3 296 40 100 485 3 52 47 4 1388 68 10 123 260 195 361 17 630 4 11 6 1 7499 13 34 4 11 4271 6 1 1167 11 33 361 519 7 1744 1175 361 14 1 5998 16 2 810 14 294 129 395 6036 15 2 440 5 720 25 157 15 1 352 4 1 4585 35 153 1961 122 3 1 170 750 5286 35 451 5 637 142 44 1892 3504 266 25 4020 15 31 202 7876 3266 1147 384 5 79 1130 7 25 4693 185 14 2 4879 4103 13 6570 399 3 10 3375 42 641 1816 17 45 936 23 173 64 864 3 23 96 1 392 6 160 109 3 307 602 15 10 6 403 2 53 329 3 236 58 6967 3 81 7 1 750 3278 555 257 1214 1615 54 98 23 228 20 149 10 14 3883 13 1701 34 1 344 4 3119 10 12 2 822 267 15 2 1105\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 63 8 134 38 1756 8 219 19 2 3677 32 5 9292 3 14 11 3677 12 223 3 509 1 18 373 143 4136 76 129 1147 2470 6 202 301 9583 55 15 25 6709 7 1 714 1 1324 102 594 1069 549 85 6677 80 4 1 412 85 15 1610 1847 11 39 9049 1 119 385 14 673 14 2623 7 1 104 7370 129 1583 2 103 157 5 1 21 292 20 1264 8 83 365 75 261 88 152 1717 285 9 21 49 34 8 405 5 87 12 473 10 1294 93 76 1752 1141 411 15 2 29 1 1168 6785 11 848 725 15 2 6 1 8889 111 5 5317\n1\t1 613 4734 24 556 334 409 42 29 9 272 11 1 21 432 243 3509 664 5 2 551 4 1105 3 1 21 77 31 855 21 409 17 83 369 11 256 23 142 600 4926 4221 6 31 1244 953 109 262 30 1 201 258 2862 4496 14 2 613 13 227 2 156 172 989 8 284 146 428 30 1 754 7260 4071 7 66 27 367 146 385 1 456 11 1235 3729 369 730 70 997 37 11 33 76 26 1 2658 4 838 7 1 2152 8495 600 3 8 214 512 202 1 1433 9019 51 88 26 2 1235 506 7 1 3978 94 34 2152 6 8246 30 1 1433 3 261 809 161 227 5 24 9094 5 2066 41 284 706 4 76 118 11 1 59 1949 584 36 600 397 3 1479 23 5330 32 600 4719 3227 16 3978 409 1 1292 4 1496 2 1235 506 7 2 4483 2090 6 7033 409 17 8 497 45 2 6078 621 7 2 2527 3841 10 76 128 90 2 478 55 193 58 28 6 200 5 785 10\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 66 12 612 2829 19 388 130 1720 2 3199 6101 11 10 6 2244 5 423 3839 3 190 915 1 545 5 10 6 286 174 1842 18 15 1 53 559 395 1283 3 1 91 559 395 42 31 240 9198 258 220 72 64 10 780 19 2 3677 30 2 35 6 246 2 1971 15 2 5 134 11 153 5777 15 34 1 9159 101 1 2345 114 20 3187 41 1 18 54 24 71 2287 193 9 88 24 26 240 197 1 1423 1842 14 2 212 1 8908 18 151 28 1 121 6 586 3 1 515 22 46 1429 1069 42 286 174 18 383 7 4857 11 5 26 147 887 3317 4479 39 284 1\n1\t1 3510 7 1 518 292 1 462 54 1379 1286 1 74 715 172 4 1 4198 22 20 56 731 7 9 803 13 92 250 129 4 1 18 6 1105 35 271 19 1 1611 7 1 199 421 1 51 27 762 25 5 3004 5 2 255 155 32 1 392 3 1714 7 2 4711 1711 19 1 2638 4 176 2 36 3 98 77 2 1508 6 2 392 574 4 2 975 2257 196 3523 32 2 891 217 2456 2342 3 1225 295 32 408 3 271 5 2524 5340 285 1 1702 4 1629 1 393 6 46 432 2 4264 3 1603 6 8 369 9 9720 295 32 50 344 4 1 18 6 46 115 13 92 453 30 1 171 22 167 53 3 1 1077 4 1 18 6 332 3711 34 1 250 795 4 1 7223 22 7 1 1 2064 19 3 1867 800 14 1 184 1702 4 112 3 176 4441 16 72 24 7 438 6 9169 7 2023 16 14 2 74 4882 29 1 13 659 1 4198 6 2 304 18 38 2 304\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 31 548 231 21 274 7 2 85 49 6616 3 253 126 1257 12 31 3946 111 5 70 81 5 26 942 7 2350 13 19 2 306 441 2640 289 1 84 112 11 1 250 120 24 16 1804 3 16 239 1885 3 11 33 76 87 235 16 239 6874 13 2120 20 2 425 141 1 1139 9837 6 169 80 4 1 85 3 1 8860 11 5193 740 1 408 6 531 1474 16 13 252 21 4624 31 1617 5 7743 1 2082 4 2472 1305 1804 77 1 408 14 17 123 131 1 13 743 1901 21 66 12 1 74 16 1290\n1\t1 205 24 1 5532 551 4 864 1 131 51 22 93 599 2249 11 131 1585 6 446 5 90 299 4 7 347 38 25 85 19 1 983 27 5355 3478 38 3 93 25 101 2 151 4788 946 16 297 7 62 224 5 3 3417 1 5107 33 9675 1 120 33 889 1958 7 34 1179 1 8042 4 1 161 1125 3 51 22 375 642 2 8377 566 15 428 478 13 92 212 177 6 483 211 3 248 15 84 51 22 93 3916 30 2975 36 444 57 28 105 3 1403 9395 199 144 27 40 132 2 1280 76 26 1 49 1290 25 631 6 223 7668 1 18 4160 5 2 1002 631 17 211 13 252 131 6 2 2726 16 4704 289 608 906 51 22 156 11 63 1179 1 9 131 57 171 62 161 9767 170 171 372 2 18 38 1 253 4 1 1 171 1585 3 4788 3 2 7556 18 15 1 148 1895 1585 372 1 5434 1895 6575 10 40 3577 45 23 336 1 161 983 9 6 1 19 1\n1\t0 0 0 0 0 0 0 0 0 5457 10 12 829 29 2 7505 2377 3998 6885 400 1385 79 4 6375 1793 3 513 1 18 12 1002 4602 3 1 120 696 5 137 166 879 29 50 7 1 1820 189 1 3002 3 2550 4 6 34 1 3 563 33 1121 160 155 5 14 10 12 167 78 34 2780 37 2505 12 46 69 20 2 3953 29 513 11 12 1 5 34 257 6536 7 1 2847 3 66 8 118 16 2 233 14 8 2716 7 318 8 100 455 261 798 17 1 1536 114 24 1087 3004 2505 29 264 577 1 2125 3004 348 79 11 65 5 8368 1048 217 88 26 167 3234 3 73 1 57 71 51 3 61 5 1591 413 137 2576 5 90 194 292 11 12 20 198 1 3060 205 2 9091 29 3 406 28 4 50 3004 49 72 57 390 29 2 1048 2505 29 553 79 51 12 162 33 88 87 5 70 261 1578 3 81 39 57 5 149 47 3 842 47 16 2449 9 18 5933\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 36 116 166 161 819 713 2 1519 268 1704 286 936 7399 77 146 1684 3 7956 328 3 1346 1 67 5 81 35 617 107 10 2 170 415 32 1 540 601 4 1 6367 1035 5 5471 44 1261 30 605 65 3696 1864 1873 15 2 435 3 44 1758 4137 5 2 976 99 126 2456 62 671 29 1 3983 4 7291 3 479 10 286 8 12 30 75 109 9 21 5609 664 5 1 3270 1016 121 3 1765 3 3401 593 11 151 10 8 5503 9 29 1 616 73 10 485 36 528 930 17 83 90 1 166 2082 8 1322 279 2 5786\n1\t1921 221 97 1396 24 556 9 21 5 26 2 3306 4 31 283 992 15 132 14 2 1039 4048 35 649 1159 285 567 1925 107 2 163 4 7 50 387 17 180 100 107 261 14 2599 14 23 35 88 820 960 317 17 9 6 1989 16 8851 213 44 779 6 44 4380 33 22 1674 32 1034 177 6 56 1683 44 5 44 221 3 78 5 8710 14 2 27 100 1572 199 149 47 610 835 540 15 3 480 44 588 140 7 1 769 236 58 302 5 504 11 60 40 56 235 4 9 426 4 182 197 5836 8482 2829 15 1 52 4161 1827 971 4 1 1058 2747 35 61 4771 7 20 5089 297 5 31 2996 3 5831 62 902 5 55 45 10 13 1 21 1080 1 1380 4 2 2599 41 6608 47 4 1 3 14 132 1 545 316 6 602 7 86 2331 704 41 20 3466 123 94 1 644 4053 38 44 6 303 16 239 3 154 545 5 3 14 72 24 107 183 11 1962 4331 87 3821\n1\t5531 9 1546 20 1 709 1656 9038 845 48 4596 79 7 1 2797 3 1 18 10 6 1 1052 2258 4 423 157 620 30 1 706 3 1 661 176 15 66 2891 3012 3 62 4276 22 3 10 6 45 72 96 75 2 287 4 1 8338 5694 35 1457 202 2 727 88 5654 132 1384 3 1387 38 157 14 60 11 80 3 128 437 72 63 230 9 533 1 3515 39 6163 4022 3 333 2 52 1955 1587 17 1 4604 1 1 1154 54 26 483 8 96 4 1 6906 796 7 82 3242 4322 41 11 66 195 14 117 3717 5377 3 128 1 6111 7 3 685 4050 5 1962 258 154 1261 196 2 2905 3 4939 115 13 92 201 6 56 964 3 1857 46 53 3 483 609 2 170 6512 5456 6 591 4739 16 9 280 60 54 26 229 105 3287 16 6937 6 311 1051 3 75 8 126 16 1 360 6343 33 88 3 977 1 3999 706 106 154 1261 196 132 2 1449 3 2 56 837 3 6662 2803\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 3747 7 1646 16 175 5 39 6558 3 6 28 4 1 104 5 836 5968 544 142 167 10 6 35 2448 1 131 32 25 1477 3718 16 3 53 927 1685 32 91 17 10 40 1297 5 3951 81 96 10 228 26 1693 3 1 233 11 638 6 1177 3 6 130 20 3081 95 1901 104 7 1 166 3911 6449 3911 6449 950\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1640 11 1539 1478 15 7451 7 2 21 371 3 381 62 84 121 1413 55 745 57 2 280 7 9 21 3 57 2 91 6564 7 25 6192 11 2200 122 5 9 67 1819 15 2 8326 35 5106 2539 285 1 2294 2886 392 3 440 5 2 4090 11 76 1232 84 8024 5 82 7451 255 5 1 4882 4 8326 30 4025 122 65 3 29 1 166 85 1424 7 112 15 122 3 98 5333 5 352 122 1291 32 31 2048 3216 4 706 2550 4572 35 25 500 1 148 91 259 7 9 21 6 2359 15 681 35 380 31 1485 1663 84 382 21 197\n0\t11 2983 9 6084 967 6 128 279 4171 17 1281 664 5 6107 6 28 4 1 700 171 2701 7 50 1520 3 27 6 308 316 1485 7 1 280 4 1 2910 912 27 266 16 1 330 85 675 308 805 1 392 189 2910 3 5730 3869 6 758 5 4076 5443 1843 7 639 5 4012 1 3241 4 2 3338 5845 1 583 4 1 2986 3 1 423 287 9733 9 583 88 308 26 1 3608 4 1 14 8 367 8604 1490 6107 6 308 316 313 14 1739 245 218 1547 93 1680 2 658 4 1722 761 807 1 129 4 9733 12 761 1509 3 3336 79 55 1129 1 1003 1870 7 1 618 12 1 129 4 1944 30 2 282 35 511 4258 960 1604 278 213 1 59 1362 538 4 1 135 1 389 21 6 169 3 7 534 7671 66 2 163 5 1 4858 178 7 1 477 6 169 3 28 4 1 529 7 95 4 1 703 218 6 5519 1 5118 4 1 277 124 15 373 2 1490 6107 2571 17 162 660\n0\t7 136 127 228 90 16 298 1794 51 6 58 302 144 339 24 2716 15 1 2998 3 428 2 84 67 200 2350 13 278 14 6 169 501 292 27 519 276 9823 6 2318 3 2068 2148 75 726 30 25 1854 7 1 296 245 72 100 56 230 1 6953 27 7 25 1147 4657 380 43 157 5 17 243 5307 3233 9337 876 1900 5 1 129 3 42 56 105 91 11 1106 143 3569 47 44 733 15 72 100 825 48 2300 44 5 2 3300 82 68 1 5108 4 31 282 35 6 3592 5 413 4 1 607 871 15 3 2 22 4752 16 132 13 858 2 391 4 5725 784 5000 5 6603 66 6 610 106 8 1459 65 305 1042 16 1 21 6 2068 1463 7 8927 954 191 16 7183 15 4220 7 710 3 2322 1625 6 14 2 5252 2496 1837 571 30 2041 18 596 3 7183 1 21 153 56 637 16 78 422 7 111 4 3531 16 596 4 1 2489 42 407 279 3698 3335 13 47 4 13 2381 69\n1\t2 9899 3142 1835 1120 3 288 1 21 2330 6634 16 44 185 6 298 7 43 1192 31 240 129 1694 7 204 6 1544 14 1 454 72 474 38 7 1 1598 1032 59 340 31 240 1273 7 1 2917 919 6 56 446 5 87 235 147 41 240 15 25 1223 229 27 12 1 59 580 353 7 1 21 35 128 4268 38 25 916 3 5 26 1551 1 263 380 122 2 163 52 5 87 68 1 82 807 56 10 6 25 67 3 1 82 120 22 59 51 14 185 4 1 4387 123 313 216 14 109 14 1 1 21 54 6601 45 27 57 71 105 237 125 1 401 794 27 12 29 268 7 1 147 13 3 7 1422 4 363 1093 82 68 1 176 4 297 42 254 5 149 6 2 46 1535 919 28 4 1 80 4538 117 1 1032 5154 959 1 182 22 46 13 9 21 5 1246 370 19 1 4 86 17 19 86 3011 10 6 2 3476 391 4 1033 3 237 1914 5 95 4 406\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 380 23 2 1298 29 154 8979 154 625 8979 7 233 86 1003 465 6 11 51 22 37 97 1552 11 23 100 56 70 7 1 158 3 10 396 153 90 95 2509 292 33 87 531 1236 23 30 4802 1 67 6 46 501 571 16 1 233 11 10 40 37 97 1 1106 6 46 53 15 84 494 3 647 17 23 173 1236 34 1 1273 73 4 1 1 453 591 30 4018 22 2713 1 593 6 46 501 3598 9146 63 1 1117 363 22 5739 17 68 316 80 22 152 7 2 309 3 22 7810 1552 111 5 1878 17 128 557 3 6 279 2034\n1\t21 5 4800 656 43 893 1630 657 17 162 59 8561 3 58 1349 3198 8013 27 12 29 2 11 1049 420 36 5 1498 9 5 102 1058 124 8 337 5 64 15 58 1691 2997 1843 3 8 143 56 504 235 32 463 28 69 8 12 2 184 325 4 1 215 2997 124 3 1 1625 16 59 1049 10 14 2 5261 801 8 511 135 2997 619 79 15 152 246 79 230 38 283 25 74 4747 36 283 2 223 433 493 3 507 749 38 110 17 16 1 344 4 1 67 420 243 99 50 1500 29 225 10 1664 43 8352 316 12 2 900 4064 78 138 3 2812 68 1 1625 3 38 681 269 295 32 101 2 56 313 108 1 716 93 216 78 138 68 7 205 1 6812 879 3 1 52 5386 13 3514 1 59 302 8 1074 127 277 124 6 11 33 22 1 277 226 879 180 1586 740 2 46 386 4795 3 93 73 8 337 5 34 4 127 15 676 58 1691 29 513 420 5368 126 4472\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 2 46 53 135 8 143 139 77 10 15 46 298 1691 3 12 3202 619 30 1 505 1 1252 3 1 7754 9658 9659 12 885 3 37 12 1990 33 3686 1 880 17 1 82 171 262 62 546 1529 4330 46 837 135\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 5391 9 47 14 31 49 140 1 18 1320 3 339 24 71 95 52 3202 50 1916 3 8 219 9 21 2193 3 72 1517 381 110 10 213 1 687 15 2 5262 112 67 3 2187 34 1 111 3171 17 10 373 2816 2 7 1 1298 29 1 714 42 31 393 292 2231 3 1 1324 790 1380 6 20 30 110 8 96 8752 12 2 84 651 55 7 9 158 44 9935 3 9 6 373 279 8 143 3082 97 4 1 607 1041 17 33 34 309 62 731 607 871 530 218 164 7 1 6 132 31 1202 67 38 2 170 2901 1424 7 112 16 1 74 290 80 415 63 373 1999 5 2800 44 1546 3 44 20 37 1546 1676 36 1 687 1410 136 444 372 2 129 1852 38 1549 60 123 20 209 577 14 810 3 66 12 78 3281 1078 97 104\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 9 326 3 717 4 1115 293 18 1456 9 28 12 2 3315 1 171 384 4345 3 14 12 1 3251 4047 22 20 1205 3425 16 368 37 78 127 2491 17 104 36 2162 11 1956 47 51 128 789 75 5 90 2 53 461 1078 458 10 6 254 5 11 261 54 139 5 95 9507 29 34 7 78 364 1749 132 2 904 21 14 9 461 45 23 112 3 22 288 16 2 53 6488 359\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 424 169 1 210 18 8 24 117 219 7 50 500 10 190 26 1 210 18 2623 43 104 22 37 91 11 479 9 18 6 37 91 11 10 271 576 837 1464 3 311 432 1319 10 6 1 72 969 10 15 1 4187 5 3 34 4 50 231 200 16 2 299 3400 4 1269 1670 72 1407 7 5418 345 745 13 252 6 527 68 1 1139 2207 4 1 10 6 527 68 1 4651 10 6 527 68 10 6 527 68 95 1982 682 13 4098 1375 457 95 9978 369 9 18 1782 740 764 2919 4 116 3252\n1\t5 1 5050 85 2203 6 254 5 3 7 9 18 33 2403 85 2203 3 2 4162 13 150 93 230 11 9739 3 2822 61 19 51 113 453 7 9 141 33 485 1171 3 367 13 92 274 2217 4 9 18 6 14 322 1 748 22 169 5394 3 3144 29 268 3 10 63 26 254 5 241 11 127 748 61 89 16 2 18 38 102 1410 35 63 924 11 1 1744 4 1 212 253 127 102 5385 2223 68 157 120 11 22 1968 16 1 389 958 4 13 92 2417 2217 12 14 530 1037 3 3351 152 176 797 7 9980 106 14 7 313 1406 33 176 243 2102 109 14 33 54 256 194 13 2663 1 265 7 9 18 6 1 868 51 37 78 8 88 134 38 9 158 1232 8 112 110 17 9 6 28 4 137 104 8 1662 65 133 3 8 114 8 338 10 2425 37 8 63 365 144 81 812 41 39 96 86 9980 1074 5 313 1406 801 8 93 112 30 1 13 224 15 116 91\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1337 9 1054 1238 2 190 99 2799 31 91 259 11 3902 101 30 31 125 999 5 2303 2 11 3187 6559 19 4076 31 506 6 1172 5 652 155 1 1518 434 41 5010 294 7611 1800 266 2 11 7 1873 15 127 102 32 3980 237 1695 1759 22 5006 3 1 263 6 2130 7396 4346 1416 472 1 319 3 1800 289 1 59 2076 4 91 10 6 202 93 7 1 3 5388\n0\t2674 17 13 677 40 71 2 84 97 6140 4 161 124 41 249 289 125 1 576 394 1166 3 43 4 126 24 62 17 42 1496 3 16 239 21 11 1 312 4 1472 8688 3156 457 1 4 4942 36 6076 1018 123 24 25 6 2 46 91 461 10 6 631 11 1 319 6 1 1659 2272 6278 1 85 3 2157 256 77 1 263 6 1677 774 1509 3 14 2 4818 3697 6 1067 15 7291 5262 647 3 551 4 95 1384 13 2298 1 28 177 11 152 1475 503 9784 1 293 1456 12 1 49 253 9 232 4 158 661 1278 22 46 7166 19 4476 374 5 64 450 5787 1 1587 6743 1 882 3 6 46 1781 49 1 212 234 6114 1095 1 53 559 139 7426 3 7426 50 3697 11 232 4 3 1 120 22 29 5 134 48 255 80 1574 5 450 145 20 667 11 1 80 1574 4645 5 146 881 540 6 5 5245 69 17 10 151 10 52 1202 45 275 152 8 96 72 63 1479 6076 16\n0\t3 2397 1051 906 9 6 28 21 106 1 347 191 26 822 172 1929 4 1 991 5148 30 1 1063 3 265 81 602 15 9 5603 1 349 6 1 2732 5889 1 868 12 14 240 14 31 9137 2062 7 2 4972 5504 10 12 3 114 20 734 95 931 1933 5 1 21 29 513 10 1066 421 110 8 216 7 1 1255 4 21 3 756 409 8 335 101 6539 9 6 28 5540 106 8 721 517 88 10 70 95 2194 1 263 57 456 32 174 3000 3 8 118 127 415 63 634 17 23 511 118 10 32 9 108 5 734 5 1 790 4458 1 182 303 79 7782 50 3268 31 2952 5 1 7738 29 8553 4573 600 4573 231 3 1 457 95 3874 786 87 20 4158 1 7746 41 265 5 87 95 4 116 958 703 33 24 433 62 1388 3 33 321 5 365 48 1 736 600 3 907 49 6396 2 684 1211 51 6 2 234 2834 23 6210 34 7 34 2 568 2259 32 2104 29 2969 3 4573\n1\t322 1 344 641 8497 4 519 1618 34 806 5 917 1 28 116 2277 16 2 5344 471 375 758 65 43 1676 16 920 8 192 4732 30 112 7 10 6 1463 7 146 82 68 8 55 1309 29 2 6054 36 58 82 8 24 107 23 16 1 21 645 86 16 503 1339 200 2 103 52 68 350 111 3171 98 1 226 102 1102 1459 65 702 43 304 802 4 2498 29 1925 7448 684 232 4 1224 531 314 5 53 6731 20 39 16 7 5473 1227 53 2653 193 43 802 384 2245 1229 49 10 339 24 928 5 24 71 129 7 2216 4 239 21 12 501 3 790 193 2 222 223 4954 303 47 102 4 48 12 5 26 910 581 17 367 34 54 26 19 1 384 5 189 4 1 124 5 359 2 53 20 273 49 10 255 827 17 2 53 2221 4 75 5 90 2 715 9861 21 6743 48 153 216 1623 10 3736 105 78 387 16 2 386 130 26 7 5229 28 49 4988 17 33 143 118\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 804 4 31 7465 633 6656 7 1 2280 707 12 17 162 422 7 9 21 705 737 1631 6656 6 2 35 270 3320 4 1 3 7 1 2496 345 3 315 4305 10 51 6 58 894 38 1 53 4957 4 1 81 4758 185 4 1 465 6 11 7116 7839 83 8258 109 77 1 2868 1167 4 9 158 3 1 263 1082 5 90 1 916 896 1 1829 859 38 7520 3 685 6 2494 37 1 410 432 1455 4 10 109 183 1 18 4838 86 1100 714 9 6 2 859 21 11 153 118 49 5 7 1 462 1538 1 964 380 31 2235 1835 3 29 268 456 22 832 5 5084 1 1539 8916 821 40 71 2744 37 97 984 42 2 1593 5 7284 10 7 2 111 11 151 10 1684 3 7 2924 4 86 46 3824 4979\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4689 1 2272 4 583 11 6 34 125 1 234 5728 358 1519 537 22 154 3 123 37 3 197 5669 639 11 1 968 29 124 123 15 84 5168 296 353 3044 460 7 1 21 6291 9933 2 651 35 266 3 371 33 652 5 412 48 6 5 1 81 29 1 2741 8832 7 292 10 2 1423 1 21 1834 19 5 529 4 2931 3 449 14 72 70 5 118 1 120 65 2202 1 21 32 101 28 11 6 105 832 5 836 8 192 1096 2 21 36 9 6 2472 1 3781 838 5 1 4287 583 693 5 26 2165 3 9 6 2 46 53 74 42 84 3 2 21 307 191 1861\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 76 26 2 645 15 137 11 335 4683 38 893 6759 3 7 202 154 36 2 53 8427 36 36 1151 41 82 423 875 295 32 10 12 37 91 8 303 94 38 350 31 6708 8 159 102 374 9720 7 11 485 5 26 38 394 361 46 361 9 1071 31\n1\t6803 6748 3 2397 36 2 148 4317 11 228 357 1299 200 2 51 22 82 84 3 382 5499 5 26 455 737 3 1 593 3 121 32 1 951 5 1 1206 4081 22 34 401 13 9008 16 34 86 2243 10 123 24 2 749 393 16 2773 29 2532 193 407 188 143 182 3472 16 3 1013 23 96 2 157 19 1 3180 101 2 6 1816 10 247 2 3237 2 53 393 16 41 1 480 62 3383 8 511 56 9 14 2 231 158 193 8 83 96 781 10 5 374 125 1 717 4 1756 41 3077 76 87 95 9 6 2 3061 901 38 31 2557 8969 242 5 2711 19 1 3180 3 149 43 8 96 10 54 26 46 240 5 64 2 661 19 9 43 436 2 186 19 194 106 81 19 1 3180 4 1173 77 749 759 38 62 586 2058 420 36 5 64 2 7650 324 4 8 198 179 8916 54 8258 109 7 137 14 10 12 229 1 226 4 1 84 21 4157 3 300 1 21 180 117\n1\t5829 7 406 4718 13 150 83 812 10 49 8 497 1 393 362 7 2 135 8 59 812 10 49 1 1611 5 5836 6 15 509 13 412 4746 6 39 8308 55 49 244 372 132 2 3033 1223 244 3 1202 7 297 11 180 107 122 1405 1756 7534 6 174 514 9433 13 8422 6 2 1195 2239 2 9384 243 129 480 2 683 1212 6 7 1 1128 4 1 3 15 45 23 83 149 44 8039 23 130 96 38 9766 116 9453 13 499 12 327 5 64 2394 155 19 1 1250 8 617 107 122 78 17 11 88 39 26 437 2394 143 24 2 3439 1234 4 412 387 17 27 2925 25 2528 164 129 16 34 10 12 13 743 222 4 2531 19 1 1009 649 79 11 86 6 3 8 54 96 9 151 10 2 6269 1412 16 205 3838 3 6199 13 3616 8 24 5 354 9 21 20 16 1 17 16 43 46 53 2137 3 16 1 233 11 10 5162 5 43 4 1 1697 1676 11 72 1227 328 5\n0\t11 1066 200 62 402 445 41 7 82 4021 59 3021 11 402 445 5 26 6389 13 252 6 20 28 4 137 3648 13 2136 118 1 119 30 944 145 1432 45 317 765 476 463 23 455 38 10 19 19 5426 41 16 1034 302 23 1168 65 19 9 1981 47 4 42 38 2 1526 3 8092 282 72 70 5 118 16 34 4 535 269 7 31 862 91 265 3324 2525 256 10 371 191 24 179 10 485 56 1476 17 10 1581 56 8143 1441 60 1141 5533 98 60 8108 98 43 848 42 56 3 14 301 855 3 509 14 2623 49 1 74 271 142 7 44 2138 10 169 1067 981 36 2 391 4 4616 12 11 1 113 478 1380 33 88 209 65 8 88 149 2 138 478 1380 5 333 16 1543 58 19 1 1907 6755 13 2687 369 1 82 746 6458 9 6 2 394 376 18 3282 1038 33 22 515 463 4 1 21 41 300 55 1 206 242 5 5177 23 77 517 9 391 4 3563 6 279 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115 13 92 250 1193 8 8595 3646 9 21 424 75 87 23 21 2 5575 668 3 59 333 535 4 25 1194 3 262 1 466 871 19 204 33 22 3546 30 1 8130 808 3 8126 119 1714 3 1 299 6 13 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 210 141 1543 1 113 746 340 3676 180 117 575 125 1 401 3140 505 3 3344 52 1222 739 68 34 1 84 746 9 18 165 145 11 10 590 47 37 4553 1152 19 23 1867\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3756 3966 144 9 572 12 89 29 34 2521 1 119 14 132 6 400 1698 45 20 3976 1 120 1277 3819 1186 628 169 169 2674 1 393 400 8437 3 1258 5 365 8013 94 375 8441 17 1397 24 5 24 2 9363 16 11 1 312 101 23 24 5 284 1 347 5 365 1435 48 42 34 1 121 6 565 12 1 1048 312 5 131 11 710 21 1350 22 446 5 87 14 109 14 1838 7 1 870 11 1483 3 4 1 1785 45 814 10 6 2 900 8457 10 12 169 2 1246 193 341 40 2 426 4 14 1 74 710 1235 506 10 1050 14 2 53 2754 5\n0\t1 108 1550 24 8 284 2 35 248 10 953 11 40 1242 132 2 15 42 570 5836 3 8 57 3388 1 18 54 2 13 92 114 194 58 60 114 194 58 33 205 114 20 1476 20 1447 3 52 9530 761 3 2578 98 235 1939 734 5 458 11 1 112 4 157 2180 29 1 44 4922 3 60 29 25 3 98 757 5 106 444 34 4 2 2585 444 7 2 566 16 44 157 15 1 148 1518 35 12 94 101 17 10 498 47 27 3 1 379 61 7 10 9 212 177 40 195 390 378 4 2 53 161 5500 3323 8 343 5389 3 3867 142 30 1 347 3 133 1 191 920 10 1525 50 838 2068 121 12 46 53 16 2 249 1247 10 511 917 1 347 66 10 7457 65 13 150 128 96 1 18 6 3245 3 16 43 302 123 20 597 14 91 2 1600 7 116 2333 14 1 300 42 39 11 8 563 48 54 8 24 5 134 1 111 9 67 12 20 109 248 29\n0\t0 0 520 6 28 4 137 1532 89 30 631 17 10 153 24 34 1 692 2387 11 6601 80 132 703 10 40 2 3714 441 10 40 7433 505 1 1667 6 46 501 1 950 3 1 91 259 22 205 3012 3 1 1138 265 213 9 6 2 305 147 4227 37 81 76 26 288 204 5 64 45 42 6902 8 83 118 106 34 1 209 7178 14 236 58 111 9 21 6 11 53 5644 55 45 317 1 4413 115 13 92 226 21 72 159 29 2 856 12 4 8134 3 313 1158 639 4 1 7 4485 1 15 1064 11 794 89 30 57 58 441 407 58 121 12 1747 30 1 1392 1 1667 12 3 1 8843 668 868 12 39 2 2908 8 1274 2 73 1 4146 153 139 95 1 6 843 268 138 361 7 34 13 614 23 24 1 187 1 2 3614 4995 9 213 535 361 1 41 95 132 7442 42 1766 45 116 1691 662 9336 30 1 8222 4695 737 23 228 39 335 1 21 19 86 221\n0\t6822 91 1948 8 179 11 51 61 2 342 985 5 203 502 1 74 6 11 10 6 377 5 26 3604 227 5 2545 1038 9 18 196 3 6901 7 9 6683 1 330 272 6 11 49 2 129 6246 41 146 91 629 5 949 72 22 377 5 4219 9 18 196 31 6901 7 9 3055 14 530 115 13 92 74 441 2 287 196 30 94 101 1893 11 9 54 780 5 768 1 398 441 31 259 2180 32 20 101 5844 3 2492 5 2 434 493 4 1608 3 98 51 6 1 67 4 2 91 209 926 88 23 1351 6509 2 103 52 240 3 2 103 364 1205 68 101 818 7 2 1828 101 3 246 2 498 47 34 4 127 584 106 7286 864 30 2 1207 35 7 473 1123 10 2085 4172 8741 13 9694 79 1346 3393 8 335 133 91 203 104 3 1094 29 75 91 33 2620 8 339 87 11 15 9 461 10 12 1963 1870 5 694 3 836 87 20 457 95 99 9 108 23 76 2580 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 18 38 75 413 96 415 96 38 1629 58 287 3764 2 893 3196 3 10 2 112 2876 13 3027 1 764 8 343 59 277 56 57 95 232 4 1387 2412 140 450 8 721 1000 16 1 21 5 70 1824 3 10 114 2 3947 17 100 138 13 252 6 31 240 9198 3 8 721 1841 10 5 26 501 17 10 100 300 45 33 152 61 112 584 10 54 24\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 56 338 9 108 8 24 107 375 2013 1760 2092 3 9 6 28 4 25 1293 8 54 152 256 10 845 25 52 754 296 7 519 10 181 1 67 196 433 7 2013 1760 104 5 1 360 941 3 788 6878 17 20 7 9 108 10 6 373 279\n0\t2 3362 5 53 1014 205 4130 14 2 3628 1805 3 14 25 2185 7 447 3 1189 3596 22 6699 1 465 255 49 23 328 5 4329 62 871 5 235 11 629 7 148 500 2 170 164 35 6238 19 1 5241 1733 4 3242 486 1 111 123 54 26 4464 5 2 3 2 287 7 1261 54 26 3 6214 69 60 54 229 637 1 13 8365 188 22 1375 245 48 629 7 1 108 345 532 40 1436 3 25 435 1136 2 287 15 912 244 71 246 31 9781 4 611 5214 25 3 1572 27 118 110 60 40 447 15 550 43 232 4 31 454 35 1678 7 2 329 3 266 893 8466 60 276 36 25 3241 4413 10 34 741 3472 15 25 13 43 172 1742 1 309 3 2335 1171 141 809 1893 4 5071 57 2 7050 2526 15 120 1496 3 138 94 239 82 6584 1 1245 424 10 153 198 216 11 744 258 49 1348 56 7 5071 1 7790 73 4 1 4117 4 1 931 7 8802 1 931 5760 100 56\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 192 1841 5 90 2 15 7666 17 8 173 169 3983 10 34 1413 6740 3 125 2619 380 2 280 11 5068 29 1 166 75 6 9 21 38 1 754 2972 2141 1004 124 3984 10 34 1 85 3 1899 1 2461 882 275 754 367 308 38 199 616 1839 2 9801 3 42 31 10 3 86 31 238 9635 6 2972 269 105 223 1221 3 29 1 182 1 72 61 34 1096 5 1291 1 1913 75 97 124 404 22 72 160 5 51 191 26 1721 7 1 226 9926 1 882 3 1666 748 1 7877 1511 17 1 196 14 45 72 22 29 62 34 1 290 605 2 156 921 1 5680 3 7218 4244 10 34 432 5684 1 398\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 5187 9 2819 5 64 48 708 81 54 90 38 9 1409 2662 4 2 135 8 247 1366 7 16 55 2 8689 1 120 61 34 33 3554 154 3356 33 88 96 4 1247 146 54 8 54 2398 341 11 307 602 7 7461 276 155 15 51 22 43 84 171 204 17 23 54 100 118 110 1479 851 10 143 2410 2395 41 7175 41 1788 41 3524 51 12 58 9830 58 8445 4 112 737 59 2 586 991 881 1328 8 83 96 1 846 117 274 2749 7 2 148 2727\n1\t10 2 328 23 14 8 2723 209 5 5368 10 738 116 78 336 4121 13 499 6 1002 1219 16 79 5 99 2 21 4 2 347 15 66 8 192 459 7 97 4021 8 149 9 270 43 4 1 1935 295 32 133 1 158 17 204 51 6 132 2 627 1117 1376 7 1 1167 11 8 152 214 50 1935 30 1 8333 4 283 1 398 3663 4 1 1158 3910 183 50 3888 6756 4302 554 40 43 185 7 490 1 226 85 8 57 9 839 12 49 8 12 133 3493 32 19 1227 124 4 1402 2292 5 1 1005 952 4 1 215 216 5 8477 11 1 829 324 40 31 55 8115 17 204 45 235 10 6 3743 7 639 5 359 1 902 838 19 1 129 1273 243 68 19 95 1138 6479 9 557 46 322 292 1714 32 1 347 22 156 3 676 1 21 1373 306 5 1 215 471 84 1365 6 664 5 1 1392 2014 3 34 1144 4 1 1249 591 137 109 587 598 1624 35 309 1 723 5548\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 28 4 1 210 104 10 12 37 573 8 12 1094 140 1 212 1540 1 119 12 37 258 1 714 9 18 498 32 31 5 8 1266 3 8 96 33 333 8492 16 1 3 51 12 9 586 4420 178 7 1 750 15 1 102 250 120 35 653 5 26 75 10 12 37 464 11 50 9241 50 3504 3 8 339 1812 194 3 49 72 114 1812 194 10 12 38 2 349 1 330 85 72 219 10 3 72 1616 10 9 387 72 114 708 533 1 682 13 59 99 9 45 317 2 18 90 892 4168 99 9 29 2 16 3886 3 8 467 568 4267 93 99 16 1 6961 11 2980 9 3515 9 18 6 2 46 2513 2857 331 4 5502 3\n1\t845 136 1 2630 22 224 17 3901 2702 578 5 1 576 4 1468 5 2702 122 5 5 149 47 38 1799 4 1 578 196 256 77 2 1741 9015 2659 25 147 1010 7834 3 174 1741 4327 27 649 126 1 5050 4 448 58 28 2615 849 27 271 155 5 1 3667 17 1 3901 2702 122 155 5 1 3013 349 5 106 1 1207 6 3542 30 17 27 649 44 2425 3 2615 550 195 33 22 274 19 242 5 4012 1 4474 32 117 13 7747 12 31 1115 135 36 8 367 1 67 12 37 782 39 73 42 20 29 34 254 5 241 11 72 22 20 237 32 11 5855 17 1 212 18 12 39 1111 1 1249 1 3239 39 1 212 572 12 2 84 461 10 57 2 574 4 230 5 10 106 72 228 2324 146 3666 28 1344 5275 45 72 83 1876 5 2349 48 6 260 3 48 6 35 17 8 54 496 354 2042 42 2 84 18 11 45 23 187 10 1 2305 4343 145 273 468 335 592 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6880 10 5 134 11 9 1493 40 162 5 552 10 69 20 31 240 119 41 55 28 547 2099 5346 4598 4 3482 1897 3988 123 103 5 352 87 725 2 2454 3 597 9 28 19 1 4892 29 116 558 388 5504\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 31 4186 7 1 2741 7588 6782 1199 2 386 1457 873 11 165 94 2 7245 9644 5 101 1685 7 1 848 4 2 170 30 1 880 9 386 7 1 251 424 36 34 1 82 124 7 1 1125 2060 197 95 471 2 526 4 559 24 2151 2 170 3248 33 5454 44 224 3 5333 5 44 5 469 136 768 33 1620 1159 3570 125 1159 333 19 44 3 2958 7 4269 2 140 44 5727 9 6 1 80 7234 4 34 1 7588 6782 484 3 28 4 1 2808 10 12 229 9 158 52 68 95 4 1 2750 11 419 7588 6782 1 4 101 33 407 419 3576 5 6726 18 127 104 24 1866 169 986 7 203 33 24 5 52 17 1381 2461 104 36 33 229 2222 1 303 30 1 484 11 165 1056 65 3 726 864 2229 20 17 76 229 137 35 76 64 235 3464 3 560 144 8 118 8\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 3841 213 39 116 3275 1446 9563 10 93 40 31 240 1541 4 3018 824 14 530 1 67 6 38 102 5740 11 77 1 3841 19 2 7862 9618 2 7909 3 1 4237 4 25 434 379 3 102 537 521 450 51 6 146 23 83 64 154 206 1862 2376 196 31 16 991 292 1 21 554 621 1289 19 39 38 154 3994 1 121 6 39 311 855 571 16 1760 35 266 1 434 379 4 1 4895 4860 2142 13 92 21 1986 15 43 304 802 4 2 342 140 2 6753 3 77 2 33 853 105 518 11 275 6 6710 450 33 22 205 7 687 1222 9596 257 506 1123 2 4135 6407 533 1 389 158 571 285 2 3450 49 27 2 3 159 6508 5 25 4451 5367 13 92 3841 40 2 53 67 427 17 1 18 39 153 216 385 15 10 8 214 10 167 509 15 311 1865 1014\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 40 304 7754 831 10 40 58 994 7 639 5 24 2 119 51 191 26 2 9 18 57 6809 10 1019 102 719 5404 2 178 3 1200 5 117 334 95 8789 7 110 1 572 5 26 1703 17 1082 5 946 5 1 4 67 13 614 23 112 7535 1769 3 2874 8922 23 76 149 43 1548 7 9 21 39 83 504 2 471 51 213 461\n0\t842 47 75 5 6303 65 1 251 4 5353 27 1242 183 2 41 2730 197 311 1 141 987 39 134 11 7 23 99 94 1 23 149 725 2386 1 30 1 3257 14 2077 1026 2 1002 2461 3 3860 3048 959 7 1 769 37 97 22 303 7 1 141 11 23 905 5 2580 11 23 55 219 592 13 252 6 2 18 11 23 130 59 99 94 10 2018 9421 3 23 130 24 227 4868 3 417 200 5 9059 1 21 5 42 331 4939 42 377 5 26 2 1872 3205 3 6 2 547 1651 17 42 254 5 187 725 5 1 18 49 23 24 32 3 2 7022 711 403 1 2124 1093 3 2 9931 11 56 151 58 1821 559 76 112 1 2504 813 3 5299 1025 3 1 332 2411 447 168 3 5574 624 76 335 2652 2270 383 7 2 2542 141 49 86 202 198 1 624 11 70 224 7 2 108 4681 8 812 11 1 59 353 279 133 16 52 68 25 276 6 59 7 1 74 4 1 2803\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 40 46 3348 3 109 7412 1765 121 3 13 21 16 261 35 451 5 64 5171 523 3 6199 13 123 261 118 106 1 429 6 152 10 6 28 4 1 80 240 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 6131 2603 6 38 1 1272 4 31 161 1897 11 537 5 44 429 5 70 2 6387 16 62 2324 6131 3 98 270 62 2058 1 74 156 269 5337 23 5 1 477 4 1 2247 4 1 6131 2603 3 98 8771 5 1124 1393 1 6977 47 203 119 6 167 78 2052 30 1 1195 1014 33 88 24 248 197 1 1338 3 2 156 82 1025 17 790 1 840 168 61 1909 17 1911 66 57 2 5957 1 1128 3470 6 167 53 16 205 443 216 6 452 927 6 1551 17 7883 8 909 1 21 5 26 2 5132 402 2039 1222 15 46 156 1362 8 12 619 30 1 538 4 1 135\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 336 9 131 37 78 3 145 37 862 747 86 9588 8 179 10 310 155 1221 17 39 102 439 1333 1634 8 812 75 72 100 149 47 75 307 741 960 10 4597 652 10 8886 4573 40 439 289 36 3 17 153 187 85 5 53 879 36 1721 45 479 7446 38 4129 10 12 229 73 33 57 2 91 73 9 12 323 2 53 983 146 8 88 1999 5 3 244 8175 8 555 4573 88 39 1961 122 227 5 528 1 471 8 336 1 389 201 854 8 339 947 5 64 75 307 54 9871 889 239 82 29 3633 4325 67 6 195 303 195 646 100 118 45 1970 3 54 70 371 41 3 8 405 5 64 48 54 780 5 3524 41 3 307 1939 9 6 56 132 2\n0\t147 887 2977 1029 15 6508 2743 3 43 696 38 9768 906 1 1106 12 20 227 16 31 108 277 6655 3097 7 9 8780 6293 8780 3 7557 1 6293 2630 291 5 24 1 3843 874 3 1377 1 3329 4 1 3317 1 2630 22 3 22 314 16 3 1 7557 24 2 5869 19 1 84 4 3 528 15 2 1204 2 4664 19 1 511 2 5869 4975 26 7 425 1 845 1 707 3 1348 19 1 2435 7848 48 10 6 41 144 42 939 8 495 3551 23 15 1 2654 640 17 51 6 679 4 2411 840 3 97 1192 1 158 14 8 1113 276 5 24 71 4204 30 6508 3 436 93 30 1 8059 1656 3 1 29 1 182 4 1 21 1079 61 3893 5 1 2269 8004 3 1 21 6 17 1123 598 171 35 83 1271 10 6 631 11 62 710 927 40 71 9 6 2 3 8 93 179 11 9549 155 3 3194 189 148 2630 3 169 10 153 352 11 1 22 138 68 2 388 3118 1899 9 5592\n1\t135 2 641 2662 21 5 5 31 1698 4697 1661 145 20 1 1151 574 4032 17 11 130 20 1460 1259 73 23 76 100 64 2 1151 36 476 297 5 1 491 1456 5 1 1224 5 1 7589 1014 115 13 92 18 2182 31 491 1117 3 2 360 6947 297 276 46 148 3 7408 1 2247 992 6 620 2335 7 34 105 8955 105 1 121 12 1 148 5957 3 22 311 1 113 29 372 51 2237 58 28 88 24 248 828 33 22 3897 1 302 144 1 21 6 37 1051 115 13 150 497 42 20 105 78 5 771 1395 1 119 6 3373 1 121 6 3435 370 19 2 306 441 229 52 98 350 4 1 11 99 1 21 76 1555 1359 5 8711 393 66 63 100 26 7668 109 45 23 617 107 9 21 116 1156 47 19 146 3 2 21 5 16 3853 88 10 70 3911 20 29 513 1 80 866 21 4 34 387 83 1876 5 1046 64 16 725 98 23 76 5084 2 5900 26 619 45 23 1717\n0\t4 34 3 1313 4 13 92 804 794 15 80 1489 6 3373 342 889 3 139 827 146 91 629 3 33 70 62 1489 42 2 641 2441 3 28 11 97 971 24 2970 6984 125 1 982 7 9 524 42 14 45 2362 4321 3394 26 84 5 87 28 4 137 1489 124 11 271 2 103 2812 30 781 2 52 423 601 5 34 1 120 3 77 62 1741 1296 7 52 6231 51 22 93 2 156 1659 824 7 9 574 4 18 236 1227 43 232 4 2 83 87 9 41 9 228 780 1656 66 1583 5 1 1560 17 236 162 4 1 426 675 10 39 311 5547 98 162 629 16 31 5086 98 146 240 629 3 98 10 13 3057 2 163 4 56 4345 5123 7 9 870 3 9656 4 5 2362 4321 16 8 24 58 2272 15 25 1177 6988 17 7 3277 4 420 134 398 85 27 130 1382 5 1 2441 16 1 574 4 21 244 253 378 4 242 5 26 105 1269 3 5176 24 2 538 18 19 25\n0\t14 567 28 3 28 13 5340 14 2 1167 6 205 3 1 567 980 408 1 272 11 9 6 2267 7 2 2240 606 266 2 2846 1538 1 951 414 7 2 151 31 7289 3 1 570 629 29 2101 9298 52 5328 385 764 2919 4 6668 601 29 1 2312 69 39 227 5 359 1 4612 7 1 572 29 34 1287 308 1 631 1769 22 9778 58 82 525 6 89 5 3684 1 13 92 121 6 1 59 2084 2278 675 289 2 53 2552 3 2734 142 2 342 4 1975 931 1192 112 2148 32 2 530 1347 4829 59 196 2 3507 4 456 3 1882 14 97 510 259 15 80 4 1 2667 295 30 25 1 103 4794 635 2018 25 1002 109 13 150 93 419 10 28 1988 376 16 1 178 106 1 766 3269 1270 32 1 10 2932 5 2 7 31 7523 8190 3600 3 98 244 4079 155 19 1 4612 2037 10 270 2 212 163 4 146 69 69 5 328 3 9720 11 28 30 1 545 285 1 28 625 606\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 50 1327 337 5 64 9 18 14 2 11 6 72 969 29 4967 5 1 4265 5 2 18 183 10 3296 204 7 72 1407 140 1 3173 594 41 37 3 98 72 1 272 4 1 18 384 5 26 311 5 2074 1 1592 341 1957 17 10 114 37 29 1 4 129 3612 4 66 51 12 3 119 4 66 51 12 13 24 8 71 37 9742 5 1 120 7 2 13 92 265 12 53 1815 37 45 23 36 5 785 43 53 265 3 70 2 5349 4 11 1646 8 497 10 6 4010 17 83 504 5 70 2 119 4 1202 4720 13 3382\n1\t8 12 38 5 773 9 84 3283 2592 19 3923 249 226 1925 3 10 12 59 73 50 1327 19 2202 1 249 19 5213 90 10 4607 16 44 5 735 11 8 310 577 10 8 57 107 31 16 10 2941 17 4 448 1837 38 10 3 485 890 5 31 13 69 9 191 1416 26 2 243 1846 312 69 5 3381 2 21 718 19 31 3634 89 15 478 59 52 68 1099 172 1924 17 15 1139 3 82 718 21 1097 10 1583 65 5 2 56 53 3 7228 3306 4 28 4 1 3782 80 3281 5270 3249 69 8781 13 150 16 273 76 284 50 15 2 264 1128 94 246 107 9 158 66 151 10 4607 5 4329 1 7 541 14 109 14 1933 15 1 264 7 157 341 8 63 348 23 11 8 76 70 1 156 11 8 83 4 448 50 8020 4 1 40 1241 125 1 52 68 2992 172 11 8 24 459 71 765 949 14 40 50 793 38 48 22 50 17 9 1583 2607 28 52 7684 5 450\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 709 6433 189 962 3025 3 1922 1777 6 1 3501 4 9 701 5150 66 40 28 4 1 80 1213 3 2422 2392 1218 3025 6 229 1 80 1557 4 1 3 1777 40 2 979 672 66 396 981 36 2 9396 4 2568 33 22 483 299 5 1775 37 186 1 4 1 119 15 2 4 8751 3 39 335 283 10 1994 93 40 43 709 498 14 13 4090 15 3197 2403 2 66 1747 122 5 101 47 5 174 7515 17 27 405 5 216 316 15 1777 3 27 338 1 1252 37 27 7493 3946 1 33 57 1066 371 7 102 6408 581 1 701 524 3 1 701 1723 205 7 1 7177 6790 1199\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 5732 7 7 15 50 2802 72 34 338 10 37 78 11 72 159 10 2 330 85 15 50 5809 8 617 455 126 539 36 11 7 10 12 1 74 85 11 8 63 320 283 2 18 11 50 1007 3 50 374 88 3589 42 56 1257 3 72 173 947 16 10 5 209 47 19 1771 33 321 5 90 52 104 36 5732 10 6 2763 5 139 5 2 18 11 277 264 6497 63 335 341 20 26 8 24 20 107 2 18 9 1257 220 50 184 2253 4536 8 336 8970 14 1 4413 60 12 93 7 6661 9562 2604 6 7 9 105 3 27 6 2406 8 320 122 32\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 46 3876 45 317 2 325 4 9364 3 1596 1189 581 23 130 112 476 9 21 6 1 2119 2207 4 1 2 298 1189 441 370 7 697 1596 669 853 97 1396 24 404 9 21 8 96 33 229 24 1580 2258 4 1596 45 23 338 41 6027 4 2617 217 4482 9 28 130 26 260 65 116 9 21 6 128 46 832 5 149 7 1 55 193 10 12 4323 16 2125 8898 385 15 1503 4145 3 6175 109 279 1 9 305 6 93 1822 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 320 283 9 28 49 8 12 1756 41 8 191 24 214 1 120 73 33 303 2 1418 7 50 438 11 3890 16 2 223 85 94 1 182 4 1 108 3 1 2526 195 207 3279 8667 16 2 349 161 13 150 57 1 1617 4 283 9 18 316 3 214 11 1 119 12 105 3373 1 919 8 497 42 1 232 4 18 11 23 63 59 15 1 4159 4 2 170 13 150 354 9 28 16 34 23 1007 15 346 1394 8 159 10 7 86 215 710 2614 37 8 481 348 23 704 1 6981 6 53 41\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 1 166 111 31 298 538 710 2788 10 844 23 15 2 46 514 13 833 213 7956 1 21 153 1720 31 215 119 1497 86 8753 289 4275 17 20 86 1167 6 7332 86 7436 100 3 1677 1275 95 4073 19 116 6933 13 28 1231 190 134 38 42 660 894 11 9 46 710 21 1421 47 16 86 313 1014 1 277 951 6069 4951 34 2143 6112 3 189 949 253 1 119 5010 62 121 1435 5237 23 5 5 90 13 1701 137 200 29 1 387 93 1745 31 1988 86 1080 2151 1646 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 107 9 21 19 3330 3 1517 381 10 239 290 9 6 650 664 5 1 1386 7722 2 84 651 15 1115 3496 95 21 993 816 3 2884 6659 6 3597 5 26 2072\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5069 159 10 5446 7 1 21 3517 39 183 160 8 310 204 5 64 75 10 12 3 29 11 85 10 12 2 167 327 13 2609 1194 269 8 12 2057 5 70 47 114 17 343 2692 5 87 37 14 1 1840 4 1 18 12 7 1 13 150 114 20 36 29 399 1 3637 22 2513 3 466 7485 1 120 22 68 1 162 466 3 1 210 3 877 4 3 6075 19 1 108 480 1 233 11 8 459 1390 5 139 5 1 18 3 3162 2758 8 128 24 5 26 30 1 250 129 19 1 3480 3 7905 34 1 85 19 44 41 174 129 246 2 6072 41 3005 44 1773 39 5 24 5148 8511 19 1 34 4 9 54 26 45 1 640 647 235 12 501 17 12 573 56 6149 2 5009 118 75 5 13 2687 351 116 85 41\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 214 9 19 1 4892 136 3 7374 75 63 81 815 187 9 2 42 20 39 11 42 377 5 26 2 6945 6709 21 669 73 10 153 216 19 11 952 1497 904 640 91 1765 464 236 39 162 939 4841 6 5417 17 40 162 5 216 2159 3 6403 3 258 22 39 1634 1 119 2166 1 733 189 3 151 58 1821 10 181 36 1 1063 405 1 119 5 139 2 732 111 3 89 194 197 152 523 7 1 2429 2126 5 90 10 42 59 31 594 3 2 5818 17 207 1597 269 4 116 157 468 100 70 1877\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 53 1214 829 7 1 6866 679 4 1360 559 129 384 5 891 155 3 3194 189 2 3413 3 2 3808 155 375 1931 1478 7 1 3236 17 20 227 5 10 101 1303 3 279 4498 28 56 1230 178 289 5023 4021 4 62 3 8788 10 7 2 16 1 1734 4 1790 2 6793 6991 5 5273 11 78 27 54 24 965 2 4007 5 1720 1 3941 1 9813 12 515 144 20 39 3131 2 1484 19 10 3 369\n1\t472 4959 5 1364 79 125 5 1 4 2815 1 5686 57 6609 57 2124 57 3 57 3 7718 57 4959 1795 7 15 34 137 904 978 293 1456 11 526 4 607 120 3 171 3 3678 3108 51 12 7718 14 4959 27 57 2 356 4 623 7 2924 4 1 9847 12 31 7 25 5995 4 1 4845 3 2 49 10 310 5 7781 1 7466 3 7697 30 1655 1031 4 3119 12 1774 5 1382 25 5631 47 3 87 48 965 5 26 2427 55 45 10 928 25 1 182 4 25 3987 41 4193 290 16 34 25 642 58 1600 7 4959 12 2 164 4 1817 3 2485 35 5461 2 304 382 5522 801 12 31 161 314 606 29 1 6439 19 25 111 5 552 1 326 16 7989 14 53 14 95 82 3047 950 4959 12 1 950 758 5 157 154 1679 16 28 1022 1359 5 7718 195 11 244 2021 19 3 25 131 6 19 2388 8 449 244 246 14 78 299 133 79 99 122 24 299 372 1 366 9529 34 125\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 12 38 2455 172 161 8 214 47 8 414 2765 32 1 1848 2168 1 1848 429 6 19 7707 6926 33 24 1253 9466 220 1 18 12 1001 8 83 118 1 429 604 17 23 63 139 176 10 960 8 192 195 3 8 335 133 9 108 1 1940 19 9026 6 58 1534 451 5 2031 2 416 8 5461 30 1 429 226 1679 1 429 128 276 1051 50 1508 3 1848 54 139 5 1 1170 106 1 429 6 3 99 1 171 209 7 3 47 4 1 429 242 5 90 1 108 106 294 2146 125 1 33 24 89 49 8 785 38 294 25 585 8 357 517 38 49 27 89 2868 3346 27 12 41 2992 29 1 290\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4497 6 28 4 1 156 35 7848 1 1820 189 2 21 3 2 3103 5139 6 229 1 80 2915 1260 4 3189 5 2 21 3 286 6 2 46 4682 158 202 31 238 3323 1 178 4 2659 15 25 2894 1272 495 597 116 1960\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 6 2 67 4 2370 81 32 1 477 4 3782 1556 2268 1 10 6 38 2380 3 38 1736 3 46 9 18 6 20 238 10 7 330 185 28 63 149 84 759 69 1736 10 6 78 52 138 68 1207 1 206 4 9 18 1527 5 1443 3 89 1591 16 5821\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 112 1 108 10 758 79 155 5 1 113 85 4 50 500 115 13 2718 321 11 85 805 195 52 68 1218 16 79 10 12 2 85 4 3 1565 5450 8 76 198 773 110 51 76 100 26 174 85 36 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 1232 6 2 3965 17 547 21 1525 371 30 627 453 3 43 1688 2720 4480 2077 5689 6 31 758 7 5 552 2 1524 1438 170 315 164 32 1 2059 5 274 188 2401 5689 5 1 178 4 1 6721 106 27 191 20 59 15 1 7752 4 387 17 2 2643 1552 3 498 3 280 361 43 43 20 361 14 1 4213 1035 5 1 5251 1 7242 393 6 2 222 17 39 1232 6 279 2 176 19 2 673 2016\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4888 3549 4957 358 6 3549 4957 6449 805 59 775 1613 1 67 6 610 1 166 14 1 74 28 1958 43 4 1 15 59 2 156 1 201 6 52 3 373 364 378 4 101 8566 3 4401 79 77 133 194 8 1168 65 507 2124 73 10 5 133 2 9108 145 20 273 704 5 1844 43 4 1 3921 456 19 1 171 41 1 8 198 230 91 667 458 73 8 118 75 254 10 6 5 87 10 12 676 2 351 4 50 500 10 1345 79 11 43 104 70 1716 3 9 6 58 173 241 3771 90 2 957 461\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2088 3 12 10 12 2 3957 282 324 4 1230 3 17 364 722 3 33 314 105 78 1138 7664 3 105 78 1138 7664 3 265 45 23 1006 418 47 7925 1495 3 400 153 1351 65 1428 2882 6574 3 8 12 507 52 3519 14 9 3257 3091 1 59 177 11 2052 79 32 685 9 18 2 755 12 1 226 1099 214 10 595 548 3 240 14 10 1 769 17 11 12 1 59 8 339 352 17 36 5572 3632 3 8111 120 2 193 9 18 143 70 95 1308 32 503 10 721 50 511 134 5 301 925 9 141 17 51 22 3949 4 138 124 16 23 5 1017 116 85 3 319 19 68 2088 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 495 1431 1 441 14 11 40 71 248 8151 72 22 84 6064 3760 3 49 257 7174 1901 1 141 72 61 115 13 4255 560 72 57 100 455 4 9 73 10 12 2 2982 756 18 155 7 1 345 397 5308 8027 1854 600 443 216 3 345 13 6044 23 83 56 438 1 73 1 67 554 76 256 23 5 6086 42 31 240 423 441 17 20 29 34 6889 3 51 6 924 95 1905 23 83 56 474 16 1 120 14 62 486 22 14 509 14 116 157 133 9 3240 108 552 1 102 719 3 87 146 5 90 1 85 52\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1155 1 389 1022 4 1 131 3 544 133 10 19 4573 5272 285 1 1702 4 8 192 332 1184 38 1 880 8 96 1 389 201 6 2332 42 28 4 50 430 131 1218 8 39 5391 1 4573 2218 16 9 735 3 114 20 64 10 19 1 11 6 56 5882 8 449 33 76 652 10 155 1104 300 33 22 1000 318 40 44 41 6 10 59 50 8450 115 13 150 284 43 4 1 708 5189 38 1 131 3 64 37 97 5639 696 5 7792 8 407 449 11 4573 76 86 3113 41 3037 174 2276 76 1351 10 960\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5129 1 736 6 314 2 163 5 1431 2013 8936 3 519 25 1206 6 111 105 23 24 5 920 1 259 789 75 5 256 19 2 880 7 296 7 5618 27 43 1485 6878 43 66 1 640 17 22 6687 491 5 176 3706 47 2013 47 4 2023 16 13 1760 460 14 2 35 6 370 47 4 5618 27 2716 51 5 521 27 6 2 1086 3540 17 27 56 1371 275 67 1432 17 1 668 2139 552 1 131 8 56 336 8781 672 216 7 9 461 25 5 3 25 15 5043 2013 19 6 918 3 3024 8 63 186 41 8885 34 7 399 2 167 501 17 20 2803\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 4104 79 1695 45 23 63 64 59 28 4 1 1139 104 9 349 64 9 28 378 4 1 640 647 3 716 22 138 7 2 3264 500 93 49 23 139 875 7 116 3104 318 1 182 4 1 6950 42 1 113 185 4 1 108 1020 1709\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 109 106 87 8 905 50 8 337 5 9 18 7402 15 2 156 417 20 1311 52 68 1 171 11 61 7 194 3 11 10 12 377 5 26 2 203 682 13 4956 8 2242 47 740 1 74 910 1507 48 2 345 3113 8 57 89 160 47 283 9 108 1 119 12 4419 3 37 12 1 1471 1 456 61 586 5 1 272 11 81 7 1 410 61 1094 13 92 201 339 24 71 52 3928 55 43 4 1 168 384 36 33 130 24 71 89 78 33 3295 19 16 58 933 2560 46 345 13 1601 7 34 9 18 12 2 1598 351 4 85 3 1686\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3932 137 4 199 11 1457 3952 137 2584 4 1673 7 569 3 200 1 6753 69 72 20 995 1 3240 663 4 1611 3 14 2 8423 5 137 11 414 204 69 1483 184 966 1 2471 12 1 1430 168 2403 2968 1564 142 6390 2442 3 13 4327 2376 12 1 80 2385 12 845 199 34 69 55 155 3483 14 237 14 1 21 271 69 2 1399 4 2 263 3 55 2 2223 539 3260 121 3 119 69 17 35 3457 29 9 3432 2 327 85 16 137 11 335 257 5976 3 6753 13 1940 7 1 7800 215 442 4 1 21 12 3224 5 69 1 161 8190 163 12 1 569 1 802 61 142 4 1170 7 473 142 1 517 3 64 2 156 171 7 62 362\n1\t920 10 181 2 103 17 10 3567 8511 19 1038 896 5 3013 146 11 28 4 1 82 1396 40 367 153 134 11 467 317 27 666 11 467 317 9 6 25 7709 7 1 880 561 424 8 1340 4 34 36 13 646 920 11 1 362 431 61 2 222 452 17 94 2 136 1 767 726 4407 3 39 49 1 251 57 214 42 9176 13 150 118 1788 6 928 16 2517 17 154 308 7 2 136 2 609 131 784 11 63 26 381 30 2916 3 5706 127 289 1483 561 1 1139 1125 1645 7596 661 157 2607 3 34 4 127 191 24 71 1050 105 501 15 1 1675 4 7675 1788 343 1 321 5 2350 13 1118 8 36 1 754 570 2541 106 3466 566 2 13 7414 93 36 5 64 2 2388 15 877 4 3 3 642 1 570 13 724 4 611 48 420 373 36 5 64 6 1 131 209 155 19 1 5638 4165 65 13 150 555 51 12 2 1307 1339 19 1 3480 15 34 1 4722 11 54 26\n0\t104 11 876 47 2 148 1234 4 948 36 134 1394 66 8 214 5 26 169 501 17 1604 12 1156 146 2930 3 104 11 863 23 9 8 179 12 28 4 137 502 29 74 1 18 418 47 15 43 56 53 1216 3 4160 65 2 53 1790 272 16 2 53 203 1146 17 94 11 10 39 224 1 3069 3 32 51 10 59 271 6167 3 6167 1781 8 1505 1414 3069 29 74 16 2 302 73 8 63 64 2 163 4 1626 32 11 18 7 34 7 34 8 54 867 99 1414 3069 378 4 9 628 86 1824 86 52 3903 10 40 2 163 52 1216 3 93 1 393 6 2 163 3 113 4 399 23 4108 230 3867 142 14 8 114 15 9 9 39 181 5 26 28 4 137 1352 36 11 18 37 145 1927 10 7 50 221 56 91 1609 9533 850 3 28 52 7 2 203 4285 1333 36 242 5 2545 2 635 15 2 474 2698 35 40 79 3 8 76 112 23 428 19 1 3954 4\n0\t242 5 90 2 272 38 75 5963 34 9 6 30 2001 3220 100 472 95 5993 4 4683 893 3 75 1 2671 43 419 9 232 4 177 12 56 3 292 9 6 2627 60 100 152 151 10 291 7 1 671 4 2349 1163 72 176 29 2 170 282 7815 5329 3 96 162 142 194 17 72 130 24 165 43 426 4 507 38 75 1985 10 54 24 71 5 2 2759 1754 9 287 12 2 1284 185 4 2 2261 19 4605 17 58 28 6 117 56 620 14 13 8 303 9 21 39 517 75 5963 10 1306 3 5365 24 1180 5 925 235 11 228 26 4524 5 2 3930 33 209 577 14 102 596 4 773 1981 3 22 1770 5 90 273 11 4516 332 4516 88 815 256 2 91 822 19 62 8842 3 24 2091 5503 95 7 1384 77 35 60 56 1306 3 94 44 895 51 22 8173 4 44 1330 1109 3 1741 3 34 207 303 6 1 3983 4 795 11 89 65 44 3987 197 95 3895 5216 516 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5360 3365 3 1065 18 7 66 1 120 820 200 7 7185 41 2 4701 2468 3 771 23 228 96 188 54 65 49 33 3684 9937 17 127 168 22 829 140 2 1423 66 151 297 46 1 8238 2903 1281 4 3 1 2837 22 1135 9823 51 22 4 4 1 49 1 2594 4715 5136 1 36 4 2 3569 2306 6736 200 44 183 2354 1 1820 101 11 1 1984 2865 21 6 2 3302 268 52 2072 138 2951 49 133 1286 1 265 3168 2494 76 1564 23 45 23 149 725 2161 5 2460 28 366 39 9720 9 28 77 1 3 116 76 26 7 58 290\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3121 7417 424 197 6370 28 4 1 210 4023 117 1001 924 95 356 63 26 89 4 1 4326 119 3 30 1 2507 272 468 175 5 1337 116 4209 65 7 6002 3 2703 1352 187 13 5094 2013 9035 3 206 3328 117 165 602 7 9 1378 191 59 26 8760 65 30 62 13 150 449 33 1019 62 319\n0\t15 2 625 300 10 2893 71 2 53 312 5 24 1019 1 226 375 172 2084 65 16 13 40 2548 2208 696 5 137 2 7383 54 51 213 2 8117 19 1 604 4 3451 23 63 196 1 487 2 658 4 4488 691 16 28 366 17 98 1 635 2080 16 10 5 26 1172 155 5 1 8768 12 10 4557 1 761 93 1123 25 2576 5 352 1 487 1364 2 2372 562 30 907 4 2 2372 6 645 37 254 11 10 1 990 375 1287 2836 137 1230 1007 133 1 562 83 96 42 29 34 13 3514 420 36 5 6303 9 65 73 9 40 459 295 227 4 50 14 10 705 468 26 323 1527 30 1 178 106 2563 372 1 2707 3738 2 1238 66 6 29 768 116 683 76 29 44 1817 49 60 3780 224 19 44 1044 7134 3 60 3966 75 10 88 26 285 1 3723 1079 5586 174 21 5 917 8 6020 7043 5 7120 1 18 956 1228 40 71 9400 4 48 54 1416 24 71 2 1262 3940 763\n1\t38 48 337 19 29 1 595 673 160 14 67 6 553 7 3139 136 1 102 694 19 3 543 239 1715 2892 6 591 942 7 48 466 5 1 469 4 1 48 384 243 509 1283 498 46 1303 15 2 2065 1298 7 1 471 188 70 169 13 67 40 2 1330 170 1950 5543 2 5464 16 1 4937 181 5 24 43 574 4 17 1 5464 6 65 5 1 805 188 673 224 2 222 3 70 7627 98 236 2 678 1298 7 1 67 11 6 46 109 428 3 13 67 1819 15 4162 35 2506 5 26 446 5 5724 1 6224 9133 32 126 15 25 8794 28 4 1 7487 6 2 1081 1280 37 1 1134 196 52 805 72 22 619 30 2 5986 40 2 167 2637 178 7 3617 13 677 43 327 633 331 8853 1349 14 109 14 976 331 8853 1349 16 43 2560 8 214 1 584 5 26 46 109 428 3 1 206 3316 1135 7 1167 65 239 67 15 86 2065 1298 3 1 2637 13 753 4 1 1091 1771\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 312 2 46 386 21 15 2 163 4 1476 548 3 844 1 545 1841 1129 1 1840 40 1160 2 386 21 4 313 538 11 481 26 1074 5 95 82 386 21 11 8 24 575 8 24 1274 9 21 29 1 4066 888 4274 8 93 354 11 10 6 620 5 1400 3 1255 81 7 95 48 255 47 4 10 6 1 233 11 81 15 1154 22 100 9094 2339 62 672 6 100 9840 10 6 2 2869 5 26 2178 30 95 1400 11 451 5 139 8899 8 449 11 1 1160 76 2230 2 330 185 5 9 8 176 890 5 956 1 308 316 5 2152 7 3948 2 21 4 3 538 15 2 2869 7 1960\n1\t63 186 3588 25 6 13 724 4 448 1 4363 40 5 139 140 7 1443 3 48 22 1 5 5633 258 220 35 40 195 390 2 2879 40 13 35 6 19 2 1285 5 5 825 38 1 5502 5607 10 181 14 193 1 24 2 232 4 5502 11 33 6110 5 14 15 2 156 7 1 34 1 922 205 3 684 189 3 13 5094 123 1093 109 207 1 9586 5 1 212 135 17 2176 2 7 2150 209 155 783 228 39 24 1866 2 998 4 1 1085 4 49 27 12 3297 16 891 4166 3 25 6075 13 9199 2879 6 2 2038 3599 4 598 5156 3 684 1211 308 316 266 2 280 11 9511 54 24 71 201 7 45 1 21 57 71 89 9 601 4 1 12 109 201 7 1 185 66 12 29 1 477 4 25 895 14 2 684 683 111 183 261 17 122 9559 27 57 1 121 27 13 252 21 12 1547 620 29 277 7 1 2341 19 17 29 225 8 214 2 302 5 26 9050 16\n1\t0 0 0 0 0 0 0 0 0 0 0 0 2 514 67 38 1068 116 1912 3 152 605 2 29 403 146 38 126 49 1 680 162 12 806 16 7390 57 2 1562 2340 329 2 247 36 27 88 39 3131 48 27 12 403 3 8376 19 1 5 309 2871 16 843 10 472 8 192 1096 11 33 1049 25 202 65 27 165 1 5 1 13 150 63 320 283 122 5290 421 1 808 10 12 2 84 471 193 7390 152 276 52 36 294 41 2 68 6545 115 13 123 2 46 53 329 372 1 996 1 8433 5902 3 14 275 35 6 7 1 1 166 717 8514 8 407 63 9667 15 25 317 20 169 105 161 5 87 48 23 57 4 14 2 3474 17 42 355 939 23 24 5 87 10 68 13 8680 2068 6560 4278 53 5 64 1 1100 2121 4 1 518 1579 5582 3 2817 3127 13 329 34 2701 1096 5 64 10 13 6685 8609 179 11 1 2710 71 1 915 4 132 2 53 18 362\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 119 4 1010 2677 9 6 1191 224 1 210 21 180 117 575 48 2 747 111 16 2 84 3561 5 139 689\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 159 10 29 1 1040 3 3054 21 13 1118 63 8 7952 421 50 138 8 338 194 17 10 384 5 79 11 11 121 12 2 8 1887 9 32 1 231 4 1 1886 8 1266 1 263 247 4410 5 905 2159 17 1 171 143 90 79 241 1 13 92 119 6 93 13 8 338 110 1 120 22 8308 3 1 119 6 20 5872 41 42 4502 1 120 474 38 239 1885 3 8 83 1810 10 14 6840 269 115 13 724 8 83 354 110\n0\t168 47 4 8 93 96 1 469 4 1248 8119 653 111 5 521 3 1635 7 1 18 39 143 291 5 10 384 36 630 4 1 171 56 405 5 26 51 69 33 61 34 2130 7953 51 384 5 26 58 5334 189 3 6431 29 2616 13 150 96 1 263 1063 130 24 337 52 30 1 1533 10 181 36 154 18 207 71 89 37 237 39 1231 3 1231 295 32 8 467 7 1 18 33 100 1505 2 177 38 1 2550 3 1 102 1161 41 3904 355 1977 73 4 110 3 8 96 3 4042 5 469 88 24 71 620 3 455 243 68 39 13 4 1 723 104 11 24 71 89 37 237 420 24 5 134 11 2421 6 50 225 7552 8 449 15 1 398 723 104 11 52 4 1 347 6 1417 3 45 129 6 7 126 8 449 244 165 2 2223 185 3 8 449 25 185 213 37 8 93 449 51 6 52 4 3 3 300 55 7279 17 35 789 48 1 263 1063 76 24 7 1320\n0\t4322 17 10 924 123 126 1 166 2028 7937 13 92 21 181 5403 29 1287 258 49 7 1 21 2295 28 1040 129 196 6 30 2 4391 3 6559 434 19 1 174 6 3 128 52 22 311 1620 960 174 4257 391 4 1965 6822 11 228 152 24 71 1683 45 10 61 248 322 22 168 4 1 5479 4572 1345 403 1112 15 1 24 179 2 589 38 54 865 238 1102 3 3862 13 92 1392 40 2 3689 952 36 11 4 2 249 1392 17 27 6 237 2255 1 757 16 148 502 1 21 6 11 173 55 291 5 4839 19 2 1818 2889 6 340 2 4118 280 11 95 88 24 1029 3 7022 59 181 5 118 75 5 176 439 7 25 1381 2482 3 98 255 2051 1856 7969 14 257 4903 2 8785 654 10 41 1375 145 20 44 278 6 162 84 3 1 3125 4 44 129 6 2124 5 134 1 4822 345 333 4 1666 3 90 10 176 68 10 424 3 93 270 1 7537 1590 142 1 52 6620 2\n1\t133 185 4 1 431 4 218 13 666 19 1 305 4 11 27 336 1970 30 1 263 19 2 3 27 713 5 90 1 397 176 36 2 1519 3780 7628 55 179 27 57 2 163 364 319 5 216 8340 13 252 431 4 6 237 52 2325 3489 3 151 138 333 4 1 478 1584 3 1138 265 68 202 95 82 2541 55 193 1 251 198 314 401 5535 999 5 359 1 84 4796 3 6155 32 10 65 105 1878 17 205 171 22 128 2 163 4 1434 5535 93 196 514 607 216 32 1867 3 2315 34 1 453 24 2 3 38 450 1 59 431 11 12 542 5 101 14 109 470 6 1 362 431 15 3042 30 4841 13 150 96 1 102 767 4 218 3 9 431 4 1379 5535 1336 1619 3685 34 11 78 14 2 2254 27 12 84 32 1 4362 7 2 305 2219 4 2 431 3678 993 2913 626 9304 666 11 431 12 167 78 14 53 14 27 117 165 14 2 2254 300 1 166 6 306 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 179 9 18 12 695 42 2 1816 20 5 26 556 2301 18 38 28 1559 2733 3547 19 727 1549 322 2479 1 3417 2276 5 1 3417 2276 1542 8369 266 2 259 35 12 3172 30 7 2 3630 30 2 4545 435 3355 1506 30 304 1665 6678 3 49 25 3738 122 47 19 1 1170 27 191 825 5 16 411 15 162 17 1 19 157 11 25 2543 40 4587 11 3 31 670 7070 952 4 1817 3 1230 9111 3 37 1 45 23 617 107 9 18 3 23 335 2 441 98 8 496 354 2424 218\n0\t104 22 50 2737 1935 16 2 641 33 22 425 124 16 2 1011 73 8 83 24 5 96 49 8 99 450 11 907 8 83 24 5 3915 38 1156 2 1618 119 73 51 100 6 2 2305 119 5 357 1566 8 63 39 2382 142 50 4558 2 694 2366 4218 142 50 5905 3 335 34 1 940 3 6748 891 2456 5499 32 1 3000 4 126 2616 13 659 50 1402 2408 373 621 77 1 5560 91 42 195 45 317 36 79 3 1116 218 1652 9 6 1 2059 6347 1464 2751 42 37 91 11 42 202 5 99 3 39 49 23 96 11 10 173 815 70 95 527 10 3917 23 7 1 80 8711 3635 7 1 182 317 37 2275 30 34 1 147 3444 4 4230 23 39 83 118 704 5 539 41 7039 7 2 8 112 10 73 42 37 1589 1474 11 51 308 12 2 3157 11 152 89 124 36 476 8 128 187 10 755 47 4 394 193 69 308 10 2018 1 1735 2226 10 76 726 31 4653 91 18\n0\t0 0 0 0 0 0 15 9 158 1 545 15 34 4 644 228 136 6338 674 7 1 21 11 25 216 6 28 4 4989 10 6 1265 16 28 2650 97 168 30 1011 22 631 6768 11 345 621 142 1 23 63 152 64 1 1653 4487 19 1 260 4 1 16 3152 25 4 28 731 1 81 61 1 111 33 61 16 2 3656 302 66 6 39 9497 29 7 1 135 11 424 2 2200 30 551 4 9 6 1 1232 4 62 3 57 59 472 1 85 5 90 25 2531 45 27 5391 7 2 2949 3719 24 214 27 228 24 1168 65 1083 1 1387 38 127 81 1670 15 25 158 27 126 648 38 126 14 316 3 805 1 1357 168 5 932 1 34 4 9 46 16 2 66 2506 5 216 16 31 2492 34 1 85 7 9 158 20 3851 28 736 5 1 81 27 6 27 2492 16 126 488 55 977 450 9 391 6 3965 5 42 5 42 3 42 2 148 1152 42 1050 2 84 135\n0\t1179 77 62 3179 3 7791 1 13 3221 2635 32 126 6 11 62 12 3235 7 1 106 33 383 1 2968 4623 1 51 6 2 5480 1 1527 10 15 25 1737 37 10 3 48 1501 4167 322 45 1 4477 55 9545 1 5752 33 54 64 11 1 100 1047 94 1 24 369 10 1718 4623 1 4477 22 33 2004 2221 2 915 41 59 8497 10 318 33 24 48 33 310 3410 37 11 33 63 90 2 4004 32 458 3 90 2 5158 9 2654 13 743 2635 666 11 10 2004 888 24 71 829 19 1 2968 73 34 1 7227 209 32 264 7714 73 51 22 264 1 6293 2036 32 1 308 316 1 4477 22 540 794 1 166 54 780 7 31 990 3063 29 1925 15 58 17 8 894 11 95 4477 24 117 71 1137 62 5422 16 52 68 75 97 663 2 376 6 1525 8137 13 92 4477 22 7 184 290 33 59 64 48 33 175 5 1861 37 33 90 65 34 127 1936 5 291 731 69 11 6 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 2220 11 51 61 81 35 338 9 159 10 29 3 80 4 1 410 1309 140 10 29 168 11 61 20 928 5 26 695 8 343 91 73 1 466 651 12 7 1 2996 17 1582 1 119 5 9 18 965 580 143 55 90 2509 28 330 1 120 1193 48 610 10 6 11 479 398 178 479 5360 6263 3 842 47 75 5 90 93 1 393 39 472 1 20 160 5 2600 1 2313 10 167 78 260 7 15 1 344 4 1 586 9 18 16 267 45 23\n1\t4688 3 32 72 917 1 5101 3 4 1 102 250 120 8180 3 8227 7753 14 33 4466 65 31 2422 2566 66 200 62 7999 2380 16 5243 3 62 1813 15 638 13 8824 4 1 267 3567 47 4 1 4 1 2752 4 127 102 964 624 14 33 1173 34 1 1691 3 7988 4 62 46 264 231 13 7 1 14 3 988 69 968 5902 16 1 69 7 268 4 136 29 1 166 85 4307 1 250 4293 4 7805 4 205 1 250 4720 13 3 20 197 97 3 19 1 744 72 475 64 257 4286 3 2810 5243 295 5 3539 62 13 3371 84 453 32 2855 2661 6689 9213 3 1403 9 56 6 2 21 11 2291 1 2380 4 3 34 7498 13 3 22 2280 62 221 17 5519 7622 3461 5 257 2308 4 1 250 120 7 1 803 13 659 42 221 293 744 9 21 649 31 731 67 11 7 169 1 10 1 8522 7 1 2308 4 2116 81 7 2116 2752 3 1 1514 4 1 170 5 3964 1 3176\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 112 1602 8 96 9 6 8175 3 1 82 756 130 26 485 29 14 530 27 40 2 53 347 5 47 5 751 14 322 66 8 96 81 130 8 336 11 9 2218 1196 31 3 261 35 1143 622 76 229 70 2 539 32 335\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 1 113 18 180 209 577 7 2 223 4222 20 59 6 9 1 113 18 4 86 111 1147 636 5 21 10 12 27 829 10 712 1410 171 35 61 128 6401 298 2727 27 829 10 7 1 171 221 7185 3 314 1 171 148 1007 14 62 1007 7 1 135 93 1 171 61 1673 105 712 253 10 291 78 52 36 2 388 10 6 202 11 6 1314 2 22 2 156 9720 5101 245 16 665 49 2307 2391 2 2552 7583 42 71 8334 220 180 107 3676\n0\t13 3562 13 5537 367 34 1 8604 1 131 123 5471 14 10 271 4508 3299 755 3 358 22 167 573 535 289 31 7801 17 843 217 715 22 106 10 418 5 70 828 1022 1639 37 237 276 169 13 150 87 24 2 465 15 62 1412 4 2152 16 1 289 1815 169 3478 3 1 33 899 5 3716 1 828 43 4 199 36 5 152 186 257 289 3 99 126 19 547 5524 412 3 20 29 2 2568 3406 19 2 1182 20 59 123 90 9 17 1 5836 1 289 22 7 123 20 4146 29 34 530 7 698 10 151 1 289 167 36 33 61 2 1919 2581 8312 1 225 33 88 87 12 5 1483 2 13 3514 1 131 40 3 145 55 477 5 36 43 4 1 807 17 207 1801 767 926 37 145 20 273 9 666 11 78 38 129 1273 29 2616 13 724 48 63 23 867 42 13 47 4 7475 81 1274 9 131 14 2 1709 41 1731 61 72 133 1 166 41 22 23 7475 34 277 349\n0\t1856 17 45 59 1 121 3 397 1353 61 2882 774 14 53 14 1 1719 11 12 2848 1 8154 185 906 203 6 301 3816 4 205 127 13 724 7 1 769 9 59 151 48 23 87 70 37 903 3 6813 596 4 3 1910 1347 1867 76 459 26 1997 4 43 4 1 148 494 7478 47 1 1940 136 1 697 788 5 1 265 388 6 37 91 10 40 5 26 455 5 26 3114 69 8 173 352 1437 45 3392 6607 2865 3388 10 54 152 390 2 7169 1 203 1656 6 8 96 5 4 1 870 3 591 4 1 4795 17 51 61 268 49 8 339 352 275 8669 77 2 3 283 2 4 29 1 2282 13 45 819 71 2575 5 1347 1867 9 21 14 892 3160 36 2758 8 83 96 468 26 1558 95 596 4 203 130 20 1369 65 1 704 468 41 20 193 6 174 3821 9797 19 1 82 1737 23 22 7 1776 4 2438 7 1 2141 203 2489 70 725 2 973 4 1 3 83 176 1877\n1\t6420 4 2306 2 32 1957 3 1 2659 12 39 2 5 435 9512 5356 9471 3 6357 1279 735 7 112 16 3 6357 1123 25 319 5 5561 98 27 1986 25 683 3 33 70 1136 3 2203 5 3 1 6357 3671 3411 975 6 31 806 287 3 40 2 5549 19 9471 11 1148 44 14 2 6641 28 349 1372 6357 1937 11 27 40 2 465 3 228 26 3 418 3185 702 1 3992 6357 1083 11 25 379 3 9471 22 246 2 112 9781 49 4114 615 11 60 6 6357 2615 11 1 1248 3852 5 9471 3 25 951 5 2 6158 115 13 19 1 6 31 4499 5172 1902 9299 15 6293 120 3 4149 51 22 29 225 102 84 104 15 120 15 3185 218 433 15 1528 278 4 1796 3 4 3 15 1477 278 4 783 626 6942 40 2 5057 278 3 25 1921 7200 16 3185 22 2513 3 9310 7 1 769 1 5684 19 1 6 548 59 3 100 2 865 5 26 2695 5 1 8947 50 2400 6 13 9267 7 1\n0\t17 55 1147 3 783 22 314 1 2157 952 16 205 4 62 453 181 1781 1 102 113 453 30 237 22 2817 3 1469 259 6 37 8236 3 37 2 278 11 10 56 100 4203 95 4 82 1100 807 42 301 6801 286 255 577 14 3 6 38 1 113 651 7 1 1255 11 1348 789 1395 55 15 1953 412 387 60 128 154 178 444 5179 13 92 212 4 1 2654 589 6 11 7 2 3992 3582 2311 4632 6387 482 3 98 271 5 903 5 1203 10 1095 25 113 493 76 149 47 3 757 122 3789 17 1 119 1298 213 1202 73 236 162 38 129 5 7812 11 27 54 87 132 2 1606 27 266 132 2 1316 259 11 10 1 212 8529 2839 1430 3 23 10 42 34 3 835 1 272 4 1 571 11 3894 451 199 5 118 11 244 107 19 2 1 1106 6 2050 91 3 1 121 4 1 102 951 775 275 15 1584 2096 130 118 828 300 275 76 146 5 90 9 21 1608 5865 33 459\n0\t7 1 3203 218 181 5 24 71 89 16 36 7 1 292 10 247 3893 16 11 8 192 273 1049 51 43 41 366 16 31 410 66 229 247 105 1 1267 69 4161 3 5096 1134 69 143 291 5 24 71 46 109 37 1 18 6 331 4 368 642 2 2324 9998 262 30 1072 1123 1 1617 5 6290 101 3 6676 181 5 24 57 52 1481 588 3 160 140 1 569 68 2647 13 1118 56 89 79 12 49 1 720 77 62 59 7 7427 2886 392 87 5285 176 37 49 2587 585 4705 1209 7 25 8524 39 183 1 8 909 1 487 5 96 10 12 13 872 98 236 2587 5533 136 133 1 18 8 152 485 19 1 970 5 64 45 51 12 2 330 2587 1 4090 651 276 162 36 7 44 406 581 3 40 630 4 1 1761 60 54 406 24 7 218 6871 4 3 4 448 218 13 283 45 59 23 414 7 6676 3 23 24 2 342 719 5 564 19 2 368 4 116 408 1003 1949\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 323 31 313 21 15 2 5001 859 6094 7 921 3 11 130 20 26 1155 30 95 325 4 710 147 3938 41 2790 135 51 22 1092 567 41 3383 22 39 4409 77 1 234 4 4554 9479 3 9631 9 21 40 103 5 87 15 718 3 6 52 240 7 372 15 257 1154 4 6075 3 86 733 5 4084 456 4 148 3 20 148 22 7 1175 1100 15 124 6514 4626 17 9 85 72 87 10 16 1 3032 4 3 20 16 6396 1 3015\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 109 109 28 2004 1493 2721 85 39 1232 4 2 184 96 34 8 88 64 6 2 658 4 2447 2721 62 85 19 2 184 412 15 43 1526 623 66 76 1376 5 8 87 20 118 43 1526 759 11 76 26 455 30 43 8830 30 2075 421 8647 2890 467 351 421 8647 1233 37 74 23 2600 116 23 3964 122 2 2869 5858 72 22 37 4563 4 9 233 2525 367 86 2 609 147 1292 229 6 43 82 7524 82 68 423 6398 514 369 79 209 878 36 2630 87 18 40 2 327 859 5 26 340 17 10 88 109 24 71 340 30 2 3421 1157 1739 23 7 1 3417 243 68 23 160 16 132 2 18 5 825 10 8709 104 24 2012 10 2 163 459 3 93 8 2004 351 50 85 523 38 351\n1\t169 11 276 1442 341 5661 16 1736 8 93 36 49 1 22 101 7 1 502 204 236 2 163 4 9 2688 42 169 491 133 1 120 140 34 2352 4 13 1601 277 104 22 1051 8 57 71 5664 512 5 64 1 4 1 538 17 8 159 2 425 3607 15 356 3 1115 4873 341 20 59 2413 9519 129 784 7 34 277 104 69 207 93 313 3 863 2987 13 150 54 36 5 1431 239 18 39 7 2 156 69 84 1240 34 1637 69 10 6 28 3800 67 32 1 46 477 5 1 46 3 211 168 22 69 6 56 142 6722 3 1370 196 69 1698 395 287 11 2026 6291 15 2413 6 3 8 798 2 163 4 2962 3 13 858 5 1 344 69 78 40 71 1505 30 1 13 777 2 3607 11 63 26 219 125 3 125 316 2607 225 30 86 334 6 7 401 394 738 475 42 71 612 7 6325 19 305 395 4339 21 40 1 113 69 1 3 13 394 47 4 1731 1479 23 16\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 137 2316 1 18 443 37 362 7 1 1556 191 24 2242 47 43 4 86 1187 46 362 778 9 6 2 53 67 4 2 8074 574 35 693 319 3 8935 8068 25 1898 5 6797 16 2 163 4 1686 906 1 1898 6 25 1839 3 27 191 122 25 157 6584 51 22 43 360 168 15 81 47 488 4 611 1 168 49 1 102 22 19 1 1039 29 1 166 290 1 750 185 6 2 222 2764 17 1 67 6 198 7 1 3443 4 1 3930 28 177 8 24 5 798 6 1 940 4 1 81 7 1 108 896 33 167 78 295 32 78 238 66 54 24 29 225 340 43 157 5 1 1606 8 74 12 89 1997 4 9 18 38 2992 172 989 3 24 475 71 446 5 64 110 8 12 20 1558\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3599 4 6482 15 7352 3 414 238 15 847 151 9 2 306 216 4 3981 1 3585 30 3361 492 6 6270 1 2206 4 1 216 151 10 728 8818 16 897 974 5839 41 85\n1\t888 5 8017 2 366 3 6 3816 4 1 9059 41 11 531 1 1818 7 2 111 229 1929 4 86 387 1 1574 589 4 48 653 51 12 52 68 9248 5 3642 5 1 410 1 9448 1798 1109 4 3 229 2220 1607 49 10 12 107 260 94 1 2251 9 21 213 38 8 173 830 261 283 11 1112 178 3 1841 5 7 1 20 260 2408 8127 13 1118 9 21 56 3009 6 1 8346 4 3 75 7247 413 63 825 5 62 2058 236 31 313 2430 178 106 2 2596 413 5466 490 3 8 230 207 174 302 144 1 21 12 37 37 109 12 4415 236 2 980 248 7 4215 11 181 202 3 1 121 6 4234 1221 1699 30 294 12 425 16 1 280 73 25 1574 3 61 670 1 5102 3 2006 3 55 1457 15 122 16 2 136 5 825 14 78 14 27 88 38 1 164 3 25 1174 171 83 87 11 78 8244 17 1253 5 1 42 39 174 302 144 9 18 3316 7 1083 132 2 9709\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 89 204 2 46 240 108 10 792 15 1 3530 4 31 170 1696 7 86 770 4053 14 2 60 6 31 14 31 4020 784 5 26 2 111 16 44 5 149 275 7 44 157 2521 17 1 259 6 39 588 47 32 62 205 101 7038 30 1 1342 126 6 271 77 357 5 352 239 16 60 63 284 19 66 3352 554 5 26 46 4991 16 76 237 32 48 60 12 29 13 777 1325 1 212 6 46 55 45 10 498 77 2 21 1762 29 1 714 6 7 933 1325 7 130 26 2695 29 1 113 2520 16 44 3103 238 959 1 182 4 1 21 10 32 101 2 641 763 42 152 1317 548 2521\n0\t4112 272 4 242 5 16 154 2252 11 1 74 18 143 1 709 177 424 1 206 1 2544 168 4 1 74 18 11 61 595 6445 3 440 5 1346 450 17 1 168 22 39 7170 2780 51 6 58 3198 9 263 6 5370 8 63 830 10 101 428 30 43 1194 349 161 15 2 2372 3 2 4007 4 4868 16 2 897 5603 1 113 185 6 7 1 769 33 1 2112 3 27 432 1 3985 1658 7 1 74 141 3 23 64 122 49 33 149 122 974 6 7 6164 48 2 5986 74 4 399 48 38 45 23 617 107 1 74 628 9 153 90 95 356 23 2254 1608 174 84 378 4 1 2139 5 3658 4 1 974 9 85 10 6 535 239 28 685 28 4 888 7542 571 195 83 90 78 356 27 1572 1 5330 5777 183 2025 63 333 175 50 319 9142 13 150 497 8 57 5 787 9 224 220 51 22 39 37 97 573 41 39 439 1154 7 9 108 130 26 3021 5 7012 43 3694\n0\t8 241 33 39 5461 200 7 2 6430 4 3841 125 3 125 316 220 33 143 24 2 298 227 445 5 21 7 2 8115 11 41 1 206 143 175 5 351 25 3666 85 1673 7 264 5635 4 2865 27 12 5 3297 1157 7 2 1625 142 5 26 2705 15 132 8436 13 659 233 1 206 57 37 78 299 403 9 11 27 143 24 227 85 5 4158 2 184 227 201 41 55 31 3 37 27 553 1 3077 1144 4 1 201 5 4099 65 14 264 81 3 328 20 5 634 1864 8 2309 27 1241 25 442 3 1647 5354 29 1 21 213 2 254 329 3086 1 59 302 9 6329 214 42 111 77 257 4830 12 73 936 72 165 10 1852 15 2338 6033 678 75 127 188 780 213 110 3 1 59 111 72 89 10 193 1 366 12 30 3498 6356 19 3 126 5 257 5 925 1 4 9 9983 13 8420 1661 72 114 539 29 1 769 17 145 273 28 123 11 2 163 49 27 40 433 25\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 174 53 6 37 1386 3 510 3 1 166 85 7 9 6 132 2 84 4396 22 46 53 3 258 3 5 6 2 53 28 5 99 200 3900\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 12 3172 133 1 215 1982 1139 1125 3 192 31 6213 1982 2461 821 15 2 709 347 950 14 6580 14 51 22 732 11 481 26 1688 9702 22 34 109 3 501 17 49 10 301 1714 1 919 98 10 6 105 4506 8 4323 28 4 1 3299 4 218 7 1 1750 11 31 1988 7447 865 88 6424 43 822 19 1 16 253 9 131 132 31 7 31 3634 19 1 253 4 218 28 4 1 3249 41 1063 4017 8881 367 11 6838 343 72 1513 1378 15 17 72 88 1378 15 1 814 33 5 90 1 9885 77 31 7706 103 635 6858 16 5837 1 77 43 2673 561 77 2 8262 6311 77 2 1410 3 3330 82 1630 66 22 253 2215 8110 2456 125 7 25 115 13 2044 3350 10 34 8 555 8 57 52 1191 37 8 88 187 9 131 723 4085 1781 10 30 50 1020 15 2 358 47 4 394 311 73 10 1123 1 1982 3774 3265 4460\n1\t791 35 451 2 153 55 96 244 848 14 10 6 35 6 403 51 6 31 178 7 1 613 2276 11 151 1 4424 21 176 36 31 6483 1872 3 1 570 168 29 1828 93 3039 2050 77 2 78 52 4368 980 7 22 928 16 2 11 55 16 763 7616 6 2227 16 5313 1 570 383 5087 2 897 7 75 5 973 4175 286 51 6 2 46 5284 488 740 2105 425 178 29 1 1741 2430 9 1852 106 1 1207 123 43 216 19 2 5 66 34 1 82 8815 634 36 1804 7 2 3 31 383 160 65 3 65 125 1 178 6 28 4 1 113 802 4 117 2151 19 803 13 743 1152 98 11 1 21 741 19 132 2 678 3 6363 7215 106 65 318 98 10 6 2 1884 391 4 5378 2433 106 897 6 34 200 7 1 1813 1637 4702 7202 443 5954 1524 37 915 729 11 130 26 214 7 1 1541 4 16 2992 42 58 5347 17 420 407 186 10 125 80 4 1 2024 1058 4023 95\n1\t1 166 85 50 2240 1404 337 4569 3 8 165 1 1479 5814 73 8 165 5 64 218 3415 4 7 528 3 115 13 5851 3415 4 6 260 65 51 15 1642 3 218 374 7 1 13 5851 3415 4 193 22 28 1825 42 20 59 38 6833 7 2739 3 1 3283 10 271 2812 3 1878 1878 8 63 348 97 4 23 195 361 10 76 8235 732 6655 4 1046 10 76 2349 17 4995 86 59 534 1211 45 11 6 20 116 1689 83 836 45 23 96 23 118 534 1073 99 9 361 45 23 70 2048 3 98 23 83 169 118 534 1211 115 13 8365 559 165 10 2401 3 260 19 1 33 22 3435 33 22 313 3 8 381 239 3 154 129 236 2 528 67 11 6 553 204 32 431 28 5 1 714 23 481 99 9 28 431 29 2 387 11 6 28 4 1 7976 4 9 1199 99 10 7 9990 64 75 1688 3 3489 3 1768 4756 127 559 2620 58 28 3 162 6 47 4 458 50 6\n0\t5 772 115 13 92 82 177 38 9 11 1525 50 796 12 75 10 12 674 242 5 1 374 24 447 3 70 4 1 1575 42 254 5 186 11 19 73 51 22 37 97 4 137 124 11 459 1 870 40 71 248 5 2295 145 20 273 45 42 53 41 91 11 127 1132 311 713 5 90 174 3465 7 11 2489 197 14 45 10 12 128 2 536 2489 17 8 3281 1 13 6 144 8 1407 140 5313 519 23 39 175 5 99 2 203 135 51 56 12 105 78 274 1095 20 227 2565 2174 3 2515 3 1 2557 790 230 4 2 18 11 311 114 20 24 227 319 516 10 5 26 1 21 1 1278 29 1 46 225 1 2590 429 168 61 167 3876 420 946 5 139 5 11 2590 429 45 10 3 143 438 2709 2 3780 5 64 10 19 305 55 45 646 100 99 9 3456 13 7551 3 17 51 12 1111 1516 1255 15 1 1706 282 7 1 1352 314 5 26 17 180 6845 53 5592\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 491 718 380 199 2 3289 77 1 486 4 1 2950 415 7 3 480 3439 551 4 8252 1 1770 5401 4 1 1046 2767 3 2767 6057 8498 19 1 5229 4 1 913 3 1 1138 4 1 3 127 627 415 22 253 2 13 252 6 2 1219 2 323 5487 18 11 2 103 222 4 2845 7 480 1 72 64 7 1 141 2028 123 70 3455 1359 5 127 13 150 59 449 9 21 196 2 2081 1042 7 1 2269 6215 1 52 81 35 64 9 158 1 828\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 51 235 527 68 2 267 21 11 1419 1 1836 6 28 11 1082 5 9450 95 796 533 1 2129 1 804 6 20 105 91 69 2 2670 1044 164 16 31 4762 1255 69 17 9 6 2 15 2 345 263 3 1106 3 39 123 20 4142 13 9 1050 2 53 7 254 5 1 59 1061 1329 4 1 572 6 1 1249 66 1263 375 4566 2121 32 1 3 132 14 4232 7236 3 626 669 198 8950 742 14 1 35 165 2142 4035 643 7 4 2 37 8 247 9689 13 354 9 28 3 419 10 2 1020 4 535 69 45 23 24 2 9391 70 2 4201\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 76 100 995 1 366 8 159 9 108 72 61 19 2 19 7 1 2672 3 9 12 1 18 4 1 8715 72 34 419 65 94 1 330 33 114 20 55 328 5 131 10 29 1 16 2 9 6 34 8 56 24 5 134 17 33 24 9 439 3717 11 50 878 191 2735 764 2933 145 20 377 5 1 878 15 1610 911 37 8 76 39 1811 5 318 8 70 50 764 456 4 8 88 20 149 690 3893 7 1 1079 17 8 320 122 7 1 108 1 12 464 3 1 759 55 2194\n1\t2 2926 372 6 2411 3 1 8691 11 60 190 24 881 5 2023 15 1 2921 1 80 2697 5 552 44 766 32 1 4 1 3 80 4 1 1091 6862 209 32 1284 1084 3 22 30 1 2969 3 416 4 17 207 13 92 67 40 71 1 915 4 1402 3 3 43 2635 42 2 524 16 7497 11 97 52 7377 88 24 71 2052 57 52 5045 831 11 5541 6 7442 1 1091 415 35 9405 61 1768 3 80 5045 61 7137 19 2 427 1339 189 3 207 144 1 12 2061 704 28 7308 41 9836 1 11 80 5045 61 1774 4 1 697 10 39 63 20 26 11 77 2 32 3377 13 92 3797 6770 6399 11 48 12 4368 30 1 415 12 1427 1796 4 7 31 510 290 80 4 1 413 3 415 32 2 774 469 1285 5823 1 2251 37 1427 1796 4 10 12 3 2969 18 6 2 4 781 11 43 61 2052 30 1 4344 4 2496 2116 415 3 16 154 157 2052 31 7014 16 6593 3 198 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 1 18 14 2 583 49 10 12 612 7 1 856 3 10 12 37 91 11 10 726 1 4 2 231 4644 45 1 57 2 9 18 54 70 110 1 4765 61 1319 1 857 12 2348 1 121 56 153 7259 5 26 404 1014 1 59 302 8 55 320 1 442 4 1 18 37 109 6 73 50 231 128 2492 38 75 91 10 56 1306\n1\t7542 47 4 1 25 435 11 76 26 2037 122 5 1 5 11 40 58 796 7 403 17 6022 59 47 4 14 2 4818 32 1 4691 6 2048 17 101 2 2094 5327 996 25 435 6 832 5 771 5 41 5466 25 205 435 3 585 291 46 3 42 46 3857 49 1 1508 649 25 585 11 27 130 20 26 37 13 1833 8 284 1 10 2492 38 75 78 1 120 1662 3 1647 5 118 239 1715 245 8 56 83 96 33 114 3 11 6 1 1447 3 747 1329 4 1 135 1432 51 61 268 4 17 37 396 51 12 31 4 3 8 152 338 9 3 3281 11 51 247 528 5836 4 10 54 24 384 13 3616 1 21 6 109 1171 3 31 1846 3122 77 3 1 10 93 1745 2 1447 4 2094 3 1 1186 136 1 673 1428 3 551 4 38 1 733 533 1 21 190 9988 5748 8 96 10 419 1 21 1883 2694 3 89 10 176 36 2 21 38 43 8447 2 327 3 1846 135\n0\t33 357 47 30 19 943 1644 1949 3313 17 29 1524 1610 6397 1 1949 6 8043 30 9 9508 103 164 15 2 2223 68 25 389 4141 3 1094 3 1227 101 13 153 55 291 36 132 2 91 259 29 74 27 39 181 36 2 286 8025 161 1544 7 25 7160 1920 80 4 257 17 9 6 2 164 35 40 404 16 31 35 40 3 2649 4882 5 20 628 17 102 4854 35 40 314 319 5 549 4036 35 40 5211 929 7 8993 3 35 9335 11 296 976 7 22 1914 5 34 82 13 9008 9 54 34 26 722 571 11 27 791 40 2 1114 227 325 3381 5 359 25 103 131 19 1 1276 1801 172 406 458 41 227 319 5 43 249 7738 35 83 187 2 1589 48 33 1 4 1 131 432 49 23 853 11 43 1046 8870 191 26 133 10 3 2458 1732 154 5590 55 49 40 4382 620 75 3881 27 424 81 128 1876 5 550 8 83 118 45 42 211 41 3681 8 497 2 7117 4060 4\n0\t342 4 325 5859 10 181 11 1 846 12 52 942 7 34 1 589 3 5970 27 88 77 9 18 68 152 5987 25 4280 5829 3 13 4118 67 456 61 101 1694 7 1 226 3334 269 4 1 108 1 846 1067 965 5 25 471 436 27 12 242 5 26 17 10 12 311 105 78 1799 16 2 108 618 8 173 352 17 560 45 2 119 15 37 97 3 120 54 24 71 138 4462 16 2 249 251 41 2461 13 659 1 226 681 269 4 1 141 8 311 88 20 5682 1 1860 551 4 538 95 1534 3 1647 1094 29 75 2971 1 647 1 7015 3 1 212 119 1306 8 2610 50 5428 3 27 544 8975 65 1221 14 114 2 170 164 516 2533 72 713 37 254 5 1377 17 72 311 88 20 186 1 464 538 4 9 682 13 2699 1 2437 3453 1 847 6 1115 3 902 76 149 730 1 7448 6316 3 1515 129 1 847 202 49 23 83 474 38 1 647 10 649 23 75 5 6378\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3089 107 9 21 15 1 5278 23 63 70 576 1 11 4624 1 2115 6 7 1 8882 4 1 14 10 5091 9 6 2 547 21 15 2 1446 701 5150 17 15 2 6474 1298 11 2086 1 5836 844 1 545 2386 54 8 24 248 7 9 3 8 24 5 241 207 610 48 1 1951 5 11 769 3 5 1 182 4 548 1 2996 1 21 8 93 36 1 111 11 1 882 6 100 19 7167 17 39 142 2904 72 118 48 40 39 42 39 20 3455 65 7 1044 4 3119 98 7 257 14 10 54 26 1163 15 2759 813 3 840 6187 1 882 6 20 1 2115 1 272 6 1 1700 66 6 5087\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 1169 2406 86 201 1279 15 2990 28 3 270 199 19 2 360 2062 140 2041 703 1 2631 4 711 2606 711 784 49 711 432 2 245 1 113 129 6 1 2235 14 2030 666 7870 164 130 26 4611 16 1 706 13 10 47 19 3324 42 279 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 219 9 431 52 396 68 95 82 2541 10 6 11 3473 3 10 6 169 3903 17 34 7 501 1434 2 287 1141 44 4339 766 17 1225 77 2 465 49 31 3959 7 2 2327 6573 6335 1036 5 946 44 3 44 103 282 2 1978 29 11 46 4457 1282 35 8 291 5 320 32 4542 41 43 82 249 267 6966 983 6 1 510 1725 3 3147 6307 266 1 9334 7 1 2327 8 57 1837 2327 12 262 30 6307 125 1 982 25 2327 6 31 1426 3 169 4140 29 1287 23 63 229 497 75 2327 475 196 77 1 2168 1 431 6 262 16 3886 17 10 93 63 26 167 1883 29 1287\n1\t1184 108 9 6 2 873 11 1385 79 2 103 4 571 7 9 524 15 34 1 813 3 51 6 2 1213 112 471 42 254 5 830 75 33 55 65 9 2325 1528 141 15 43 979 1928 3107 11 2630 14 1573 126 77 185 2863 41 8 497 1 59 177 540 15 127 3107 94 33 186 125 2 7546 6 33 321 5 564 239 82 3 2089 1 1715 9 54 229 26 404 5678 6865 41 146 36 458 15 2 1016 1077 5 734 5 34 1 1434 1 18 93 9411 2 103 32 9668 218 7 2070 2217 3 2170 8 54 256 9 7 1 3631 16 14 51 6 5163 3 43 46 514 5941 3 2 16 73 23 83 55 321 5 284 1 1 1117 1512 818 22 227 4 2 438 9618 1 2217 4 1 103 3107 11 1 423 823 36 2 1385 79 2 103 4 1403 484 66 6 174 4367 5 43 313 840 124 15 2 356 4 7657 6 84 299 16 51 6 58 894 38 194 3 8 311 336 2420\n0\t6760 3652 258 32 1 1518 4 1 6054 262 30 9298 27 181 5 96 11 30 20 3 242 5 771 7 2 1052 672 27 6 253 25 129 291 49 34 10 56 123 6 90 122 291 2 222 13 92 119 1071 293 14 10 6 3921 660 34 7579 1 83 96 10 2235 678 11 62 6738 5 564 450 1 1882 999 5 773 283 1 1518 49 27 6 58 52 68 2 2749 295 32 768 1 1518 196 576 2 613 1727 2 2777 7 3342 3 2 1909 522 30 781 1 2475 2 5180 7 1 3104 4 1 606 27 6 1 1518 6 15 2 3 1544 140 15 2 17 100 181 5 26 30 243 5709 3 83 55 70 79 544 19 11 464 1905 13 92 59 1069 272 7 9 158 16 503 6 35 6 46 7682 17 56 58 52 68 2 1669 13 3616 9 21 255 142 36 2 775 2878 1171 3 6777 470 525 5 973 1060 3 17 10 1082 29 154 473 664 5 2 551 4 860 7 307 4758\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6478 7 1 28 349 406 27 2117 47 4 1 10 472 122 4132 172 5 139 1 2644 19 116 6 1427 661 9563 7 3933 261 288 16 43 3122 77 76 26 1547 1558 1 74 350 4 1 18 6 52 36 2 2203 4 147 650 1 2020 3981 1 330 350 4088 19 128 5993 4 2 9563 17 56 207 38 110 1013 4 611 23 22 942 7 408 104 4 2 3100 41 7570 25 1081 976 8 187 960 184 2259 3 20 56 1427 661 9563 69\n1\t6575 232 4 1 4 13 872 1 3678 460 22 2362 1579 4627 1856 794 2 2 170 2097 1209 783 3190 794 2 3709 7062 55 2536 7243 4 1 9878 1136 2 1198 32 3836 13 499 2183 16 3077 8896 125 8176 3428 32 5 13 6 169 1884 14 6826 1855 8501 1 80 164 207 117 15 1 3920 4 4556 4 2 3 39 1 260 3922 189 3 8 54 2400 16 122 16 3138 95 1393 27 57 2 46 240 13 872 2 170 4414 6609 6 169 4183 14 25 260 1737 896 2661 1214 353 3 913 265 842 395 7872 1642 5481 81 6 51 14 7903 5985 3 776 151 1 80 129 4 2 5393 23 88 1006 16 14 13 872 98 236 11 84 833 5079 3193 30 1 7872 7623 11 3 1 4561 180 165 1214 833 759 599 140 50 522 34 13 150 176 890 5 154 145 8788 1 212 4994 2 53 85 1491 5 798 2 6 198 14 28 5 64 45 1 1161 76 70 62 6612 47 183 1 13 409 409 409\n1\t1 182 1295 1 102 807 10 151 8588 13 3053 6 1 59 1084 1412 8 192 160 6873 1232 10 39 908 1 212 18 6 17 29 268 862 211 3 8 12 100 7374 204 72 24 43 4 1 113 171 47 939 773 60 3195 1051 17 204 72 24 294 1990 1147 64 48 8 13 252 6 1 67 4 2 6036 654 27 6 1172 224 5 43 750 5286 707 5 256 2 645 19 31 3570 164 654 9499 1 136 242 5 934 15 25 221 923 4386 27 40 5 352 47 1 2279 4 2 30 3 27 621 7 112 15 2 1949 30 51 6 2 177 38 1 1815 6 5713 30 768 51 6 2 178 106 60 6 1299 2 788 5 122 3 7888 27 3448 5470 13 92 1298 7 1 182 4 1 21 3352 232 4 2957 1 177 38 1 1298 6 11 8 114 232 4 64 10 9385 17 11 153 3821 9 6 2 4965 722 3 548 1211 8 112 80 4 1 1488 37 1581 75 88 8 20 354 13\n1\t233 10 12 20 2 147 312 7 15 3 7 2 6733 7628 1 993 294 57 314 2 696 119 38 31 353 35 6 372 31 3153 1 7270 3 35 418 9403 137 574 4 4571 94 31 2561 6301 25 1960 51 12 31 1188 18 7 1 7 66 31 353 372 7705 196 3992 4 25 379 669 96 1 462 12 413 22 20 17 145 20 17 664 5 442 3 3987 3 3387 10 6 2 1839 157 11 81 96 4 49 33 2209 9 119 3742 10 55 3866 267 19 31 431 4 106 4507 6 3244 31 35 190 24 121 4045 3 33 256 19 7705 29 1 8573 39 94 27 1148 44 15 1334 6973 59 4507 6 1997 4 1 2328 465 4 1 3 173 1 397 223 227 5047 440 5 357 2 4784 77 1 622 3 6379 4 1 115 13 92 201 4 2 1839 157 12 74 9749 3 593 12 14 273 14 1218 37 1 21 6 373 279 2034 17 480 685 31 264 1538 10 12 20 25 113 216 19 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 12 3023 16 2 1902 1814 17 12 3414 5 149 2 8100 1252 31 4698 313 7683 32 34 1 1041 258 745 491 293 1456 3423 3 304 55 2 383 4 1 1966 937 2945 30 1 20 5 798 3120 2501 29 44 80 304 3 183 60 419 7 5 1 11 44 406 916 34 1 607 2274 2873 10 827 3 8 87 560 35 4853 34 137 13 4 1 4393 23 56 63 11 42 7969 7 1 223 5574 44 3590 3 1 111 60 1047 6 6474 32 1 59 177 11 980 22 1 775 248 2196 4067 106 1 1138 1047 30 78 105 884 16 5458 29 2 13 614 23 175 2 7601 21 11 6 304 5 99 3 100 1495 1017 2 156 719 15 5542\n0\t10 12 2040 31 1532 2118 135 17 43 4 1 168 139 19 16 78 105 223 395 3 8 214 1 4257 121 3 3206 927 5 26 52 1179 16 1 1039 68 16 1 4055 4124 13 92 927 12 591 3 10 384 5 70 527 14 1 18 337 778 80 4 1 120 61 463 41 1101 536 7 147 887 7 1 3 17 62 927 2397 36 33 61 456 16 2 3189 309 136 33 1795 3 3808 1918 1 182 8 12 3 20 73 1 1132 405 79 1467 8 497 1 6476 7352 88 26 30 667 11 1 120 54 24 71 1874 3 1 927 6 2 6981 4 75 33 54 56 9226 17 10 332 114 20 216 16 2522 13 3221 427 4 927 89 79 539 16 2 264 1 250 1921 2375 1711 3 3172 7 147 887 7 1 1283 3019 65 2 1386 598 5048 145 59 3584 9 57 146 5 87 15 1 233 11 1 18 12 89 7 13 150 187 9 18 31 16 991 3 17 2 7272 2478 2442 16 9981\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2676 20 169 273 3740 17 9 18 39 153 309 1 111 10 9393 10 130 26 3 1816 17 378 6 39 1466 8 96 2 1114 185 4 10 6 73 33 111 125 262 1 1 161 1254 10 6 370 19 6 78 3606 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4837 9824 2093 9692 3190 3 2359 7346 22 277 1481 7 5240 1556 4660 2190 15 1 352 4 2 1793 487 3996 1 2265 4 1 4854 1 1300 189 1 171 1605 90 9 28 4 1 80 548 104 4 34 290 1334 6 4340 14 1 1793 487 35 6 30 34 3 128 451 5 26 3946 14 2 2169 7 1 6692 4742 370 19 2 191 64 30 261 35 4283 9 574 4 108\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 4933 1495 8 5245 8 202 1436 32 6103 29 1 3447 10 211 3 8786 56 11 78 238 7 10 4032 10 12 509 3 8 449 2525 47 51 11 338 9 141 851 26 15 23 7 1 958 49 23 149 47 48 9 18 12 56 36 3 328 5 2248 142 2 4612 41 146 36 11\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 9 6 2 6733 108 995 11 10 6 7 97 1175 378 187 78 2149 1365 16 2 915 66 29 1 85 12 7 3853 5 50 9 12 1 74 21 5 7743 1 915 4 1890 3 1 931 3 1741 363 11 11 1004 40 655 86 13 3422 78 4 1 121 6 9613 29 1726 35 29 1 85 12 41 380 31 313 278 533 14 1 170 1696 35 440 5 549 295 32 44 370 19 44 216 7 9 158 145 619 11 60 114 20 24 2 52 1134 121 3163 1221 40 43 514 529 14 1 35 4838 47 5 352 4341 13 515 770 19 2 1953 2039 12 128 446 5 932 43 1201 168 132 14 1 5995 140 1 3180 3 914 5 1 8192 3 1 613 1068 110 488 60 1242 2 9770 393 66 303 79 1437 45 2536 56 88 117 24 2 1408 157 8644\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1909 15 2 3248 244 71 383 30 102 3 98 27 6 32 1 3830 73 4 43 426 4 30 31 510 1 4135 4 415 2236 30 9 1 1248 1843 32 1 3830 3 451 1 434 805 17 59 15 1 352 4 1 613 9 76 209 13 743 1909 7375 3 2733 35 3143 7 1044 4 2374 5155 3 277 29 1 182 4 1 21 4243 199 48 475 653 5 1 7632 35 5823 4357 72 3753 5 102 547 802 173 552 1 5717 180 107 210 17 9 28 12 167 91 854 1901 59 16 1 596 4 1 1818\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 430 108 48 2 84 67 9 56 1306 420 39 36 5 26 446 5 751 2 973 4 10 17 9 123 20 291 2623\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 159 1 18 9 576 8 192 3 945 15 110 4888 1 18 649 23 11 1 879 32 1081 3978 5479 209 5 9 4087 652 307 33 63 15 126 32 1 161 4087 3 3 186 125 48 1838 24 71 770 1987 66 6 2 46 540 111 4 288 29 3 2 78 527 111 4 1083 81 38 110 207 1 250 1606 174 1689 1 790 2511 1177 3 1673 6 19 1 952 4 2370 1 171 114 167 322 17 10 247 65 5 126 552 9 658 4 2145 2 156 716 61 722 17 80 61 91 3 7883 339 947 5 70 47 4 1 5599 175 50 319 1877\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 12 1 210 393 8 24 117 107 45 43 28 63 786 348 79 75 3 144 1 226 2646 271 1184 3 6935 1 161 415 7 1 714 144 6079 1 18 24 34 137 772 1865 4181 7 10 7 1 477 17 286 49 1 74 454 2180 33 564 126 34 142 7 715 80 4 1 81 88 634 17 8 87 187 37 1365 5 1 1665 460 33 114 62 1293 93 10 57 2 342 211 546 3 1141 36 49 1 474 196 25 47 4 25 3404 3 98 196 15 110 45 9 18 57 31 393 11 88 90 95 220 8 54 24 340 10 2 1315 47 4 394 17 1 393 89 58 4836 1 393 3154 17 1 344 12 84\n1\t2340 11 705 17 213 1578 5 56 5142 814 378 4 2 4355 5617 2 8922 72 149 11 1712 6 599 16 7637 4 13 2120 47 7 1 2977 253 43 7774 3671 3 1 1081 1557 270 31 6779 17 7 2 8273 27 6 556 5 1 7731 115 13 1108 3 14 45 72 149 34 4 1 9087 4 1 7368 2224 107 19 1 131 781 65 5 1857 62 3 51 6 2 84 2659 4 34 4 127 1081 3 1124 14 33 5290 7 3 917 154 466 3 5109 4 2 13 92 1840 214 2 111 5 934 15 137 35 57 1436 2941 7 2472 62 2079 77 1 471 33 1180 5 1836 43 223 2379 1389 3 55 1694 43 204 5 3449 1 212 67 5136 65 1 251 7 2 80 3476 3 215 699 17 29 225 16 944 4547 597 11 14 13 659 65 297 77 2 103 9 249 18 1416 196 257 14 16 218 72 191 187 10 31 2 41 688 58 729 1 2442 737 10 143 868 14 298 14 2 687 8132\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 493 4 2550 969 9 6202 3 636 5 187 10 5 79 14 2 4777 8942 8 179 420 100 99 10 7675 8 563 10 12 2 1399 3 1 1203 4 1 305 485 7372 17 98 50 417 3 8 165 56 1120 3 219 110 32 357 2268 8 118 169 31 17 10 56 6 2 3665 42 254 5 23 130 64 194 42 2 148 2869 19 48 81 22 2262 4 49 33 241 479 1688 3 1831 3 56 1 6 4678 63 152 64 1 539 19 43 444 373 1 1 6 5 439 5 26 8760 65 3 56 297 7 9 21 6456 3402 946 293 838 5 218 1 259 6 31 1217 3 40 332 58 1335 5 26 602 7 476 244 483 91 14 530 1034 10 114 24 43 892 2184 841 10 827\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 1293 8 128 2004 70 227 4 133 43 4 25 113 4873 1218 8 93 36 1 91 559 7 9 18 395 161 164 276 36 2 1596 324 4 294 1031 43 4 82 1093 9 18 40 93 165 2 84 67 427 3 8 354 10 5 34 4 4238\n1\t621 7 112 37 188 70 55 52 2985 16 2693 13 858 23 63 2198 1 119 554 6 56 1005 17 1 18 1419 7 10 1523 79 1056 4 1 3585 7 1 1058 104 30 8804 297 629 46 245 49 236 31 238 178 10 196 37 7925 4682 11 183 23 853 835 160 926 42 34 2287 17 1 206 123 20 175 5 5561 199 15 6411 3 2286 48 6 52 731 204 6 1 5683 4 66 22 650 46 1 868 6 46 66 93 151 10 52 832 5 7317 19 1 135 37 676 23 321 5 26 46 4937 7 639 5 99 592 13 6450 1 21 279 1947 11 6 2 1193 56 832 5 8 83 96 11 9 839 79 37 46 1878 17 936 8 359 19 517 38 9 18 3 230 36 133 10 702 650 664 5 1 4523 66 6 56 17 20 73 34 1 85 3 24 94 34 479 170 1046 35 24 34 62 486 5 7408 37 58 729 75 254 10 196 236 198 2 4040 4317 49 33 22 1413\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1915 23 24 95 232 4 683 3 6711 16 1046 9 6 2 1360 18 5 1775 29 225 7 1 330 350 4 110 115 13 777 7 11 3663 106 72 64 327 103 635 70 4464 65 3 98 2 3985 164 139 142 1 1052 182 94 27 5173 9 1798 634 421 1 3049 42 20 2273 13 2298 42 2 53 18 3 1 121 6 501 854 1 67 76 694 15 23 13 6 1 259 3 6 262 30 816 8 96 9 228 26 113 280 1218 244 485 94 30 2 9962 262 30 1796 35 726 2 376 1 1068 349 15 1763 4 13 6 2 1847 164 35 4263 709 1402 3 1371 244 1 574 4 259 11 23 173 352 17 112 3 4201 16 5 414 2 749 500 49 27 827 42 16 375 53 1318 64 1 21 16 1 212 471 42 279 116 85 17 26 3023 5 139 19 148 931 7892 3 815 26 46 3364 29 43 188 23\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 112 9 8147 42 36 133 2 5451 18 239 1 74 431 12 37 3800 3 12 185 358 4 1 145 373 1927 359 77 9 8147 9 6 1 148 180 485 29 2 156 4 1 82 708 3 8 63 64 11 459 94 39 28 41 102 767 1 9736 204 22 459 2826 1140 45 42 20 174 864 983 51 12 308 2 85 106 51 697 249 3 9 28 6 152 53 1031 80 4 1 1865 1163 41 1 973 4 2 1800 217 639 41 1668 41 251 479 99 9 725 5 921 116 221 1520 83 186 28 32 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 459 2 376 16 25 3940 763 1426 7 3 27 6 28 4 1003 2445 2682 7 9 158 27 266 2 558 487 35 762 4130 7 2 29 1 40 2 1618 733 15 25 2861 2707 7282 3518 3 975 1543 912 27 40 2 6574 1 102 22 1424 7 8206 13 92 644 1567 361 66 6 8857 4 6083 2126 3 1657 4 1 8351 3 77 1 958 361 6 2 103 206 153 66 72 22 1356 3 1 67 427 63 26 832 5 5345 17 1382 10 1 644 570 4132 269 22 37 6712 11 23 495 26 446 5 186 116 671 142 1 1250 30 498 3 9 21 4031 15 14 5971\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2470 460 14 4467 43 232 4 2 35 9916 16 2 293 562 66 2027 101 9620 30 2 526 4 17 137 495 820 2 4343 258 220 6 2 556 14 2 212 6 28 91 141 1 3833 505 1 9418 263 3 56 6223 1177 90 1 538 2255 423 5049 618 9 18 6 37 464 10 432 1581 56 695 8 467 15 927 132 14 1352 118 646 41 116 59 734 5 1 9059 1548 11 52 98 1739 42 1 59 18 11 40 22 950 2 35 615 188 5 8657 19 7 1 4855 4 1\n1\t16 2 1028 9655 37 60 63 26 36 34 1 82 429 6643 19 44 245 25 1508 6 421 1 312 14 27 308 57 5 564 25 221 8834 1 231 123 2 1028 654 1944 30 1740 3 5 157 15 1 1740 12 1685 8903 27 6 446 5 3642 3 140 59 25 3253 6972 3 289 11 27 63 309 7615 120 138 68 25 1411 3449 9 6 25 113 280 220 3232 13 1026 7 1 4 82 1058 132 14 4 1 434 3 1028 101 275 35 1660 8155 3 8073 104 52 68 9535 8216 3 4449 8 2923 623 125 840 7 50 3535 245 8 365 1 4093 4 137 203 596 35 230 51 6 20 227 7 1891 8 192 273 4937 902 76 26 9794 30 1 124 4620 13 92 18 123 1173 224 7 42 957 3218 42 14 45 1 1063 61 37 4823 65 7 1 1257 804 4 1713 7 1 33 3001 38 1 67 245 340 50 796 7 203 1545 3 50 4870 16 283 1 4305 19 2238 8 1090 1709 47 4 1731\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 101 382 7 1 1329 4 86 978 456 3 464 505 9 21 130 100 26 219 1013 23 22 288 16 2 53 5939 16 116 8 173 830 261 152 517 9 12 2 5892\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 31 46 53 108 9 6 28 11 8 54 760 125 3 125 702 10 6 20 36 116 1408 4284 108 9 18 1073 238 3 84 293 2170 10 55 40 2 454 7 10 11 123 2 163 4 3079 19 1 962 4745 5767 6 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 151 2 2911 357 3 98 196 46 1852 3 40 89 2 163 4 991 7 355 1 1165 176 2401 2502 27 114 20 1017 52 85 19 1 994 80 4 1 346 120 7 1 18 131 65 16 58 933 13 5944 46 8 54 354 8617 9 108\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 2 21 11 3852 6917 5 1 46 2065 11 296 21 40 2163 9 28 16 28 16 1 113 2226 296 104 4 8 24 107 2060 34 4 1 104 19 11 9446 3 9 28 6 30 237 1 80 1832 28 4 668 2139 341 51 4961 97 4 8372 22 46 3 1495 3 24 1409 58 2771 15 1 471 1 182 4 1 18 40 2069 9843 66 3321 40 58 148 4276 5 1 67 4 1 108 10 191 26 11 10 6 46 109 1716 1 265 6 1530 3 1 1206 248 15 1 4066 1730 1446 69 17 51 6 58 148 302 144 1 980 6 2403 7 1 682 13 92 250 129 4 1 18 6 483 3 7586 3 7 699 25 1741 717 6 38 45 23 175 5 64 2 53 668 89 19 1 4 139 3 64 7 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3173 219 69 843 47 4 15 105 97 903 119 480 1 46 964 201 9 18 6 111 105 961 3 39 2724 42 1754 1 1228 6 20 439 3 8 449 76 20 359 6050 732 460 316 3 316 480 48 33 22 602 1566 72 96 11 9 18 6 160 5 26 38 146 15 8759 421 8494 7 1 477 17 10 498 47 5 26 162 17 2 2971 16 1 549 4 1 987 100 70 10 125 2159 3323 72 22 1789 77 154 810 4218 7 919 14 33 22 1012 5 199 49 42 965 7 1 441 3 1181 1578 16 9 177 5 26 125 111 183 10 5824 1661 51 6 43 53 121 737 258 32 3482 3 1984 3071 7 2 280 17 1 67 123 20 216 32 202 1 477 5 1 46 714\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29 1 182 4 9 431 4919 2080 20 5 2096 1 524 16 2 53 1 1500 303 25 103 4005 408 16 9 4815 51 6 58 7106 4 4432 29 1004 1192 4919 385 6840 516 1 994 1 6 475 3691 5 30 31 161 2 2352 11 54 24 89 1539 683 15 5387 7 1 31 1430 2 196 998 4 28 4 1 846 143 1088 5 19 1 67 4 3262 5 1 3 7844 850 6 2 222 4 2 720 4 1428 7 518 7477 222 4\n1\t17 987 176 29 1 184 75 97 4 199 175 5 26 2 3058 259 1 731 177 1181 4587 7 9 572 6 11 3058 259 191 26 2085 8 83 96 27 693 5 139 140 823 36 2127 123 801 6 5 26 3314 3 1869 5 9 5272 3 943 82 1949 12 7 233 3715 3 37 12 1 813 19 13 5851 1801 6339 12 470 30 7175 3 30 411 3 66 14 2 6966 11 2371 7765 6 1316 3 7546 14 25 129 6 20 43 35 8611 9 177 15 25 671 9 6 229 28 4 1 80 1244 180 117 107 3 6 20 2973 954 212 73 86 120 22 1979 15 7529 3 8184 55 35 1369 142 91 2952 5 1203 65 62 221 733 63 26 3017 5 19 2 13 92 111 218 1801 6339 266 47 6 1314 211 7 1 769 17 646 597 11 65 5 1259 1 5277 5 45 261 63 139 140 1 188 2127 123 3 128 24 1 2838 5 6381 2 287 14 1494 14 3766 98 42 10 6 100 105 13\n1\t35 39 175 5 414 62 3229 486 3 335 62 11 64 34 4 1 1076 39 52 51 22 559 36 11 22 1711 331 4 3 33 734 5 1 243 33 467 5 41 1265 896 1975 2615 7 1 27 2615 48 27 6 403 76 90 2 1820 7 1 6 2 222 1164 7675 25 129 181 105 1244 16 10 513 688 36 2 163 4 82 1524 1244 3012 27 6 3154 77 2 1671 5783 20 55 5018 42 105 9221 98 51 6 2 1011 3413 35 213 7 1 1076 16 95 82 302 17 16 1 1860 4591 4 194 66 7 2 574 392 151 122 2 43 228 245 944 7 9 158 4110 40 47 3890 25 3 40 390 2 46 2244 2324 13 9300 255 5 2 1746 3 1 393 6 2 1697 461 48 151 9 21 1822 6 11 6 289 205 4251 4 9 3436 161 101 7618 8 173 905 5 1435 365 48 34 1593 6 1395 688 8 87 118 51 40 5 26 2 138 3293 13 1601 7 399 2 109 4278 4006\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 294 8085 2777 34 794 15 9 231 108 6 2 4502 4268 16 32 30 1 2204 414 142 62 14 33 2203 1 84 199 4 6991 3125 6308 126 15 2 3 1 344 6 13 76 112 9 158 14 33 63 1999 5 1 8842 262 30 1709 349 161 1018 337 19 5 26 1 3093 139 4 1 129 6 377 5 26 38 1639 41 14 60 6 5 96 38 160 5 2727 43 4 44 4203 11 60 6 154 326 4 1709 41 13 5 51 6 877 4 3 103 184 2253 805 9 6 21 9022 4229 29 2 170 1754 548 3 83 176 16 95 9714 17 26 3023 5 6424 2 4443 41\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 3305 867 6 30 237 1 113 203 562 5 24 117 71 1001 180 262 6122 4670 1414 3069 3 1 510 434 3 2205 17 630 4 126 24 2151 1 1011 15 66 9 562 86 3276 7035 6 53 29 48 27 4361 66 6 1 203 5 257 1561 3 10 289 14 25 874 6 674 5111 7 9 3118 9317 55 25 672 6 7 1 562 14 28 4 1 250 807 331 4 7448 2946 3 227 1190 5 6846 2 1382 6052 6 1 562 5 1620 7 50 1402 14 1 113 203 3588 8 39 555 11 9 57 89 10 5 2 2090 17 345 8538 11 28 7 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 59 177 11 3917 79 52 68 1 604 4 81 35 338 9 18 6 11 10 12 470 30 4414 603 216 8 4429 1 951 57 332 58 20 16 2 330 88 8 241 11 51 12 235 2812 68 6468 189 450 1 67 39 143 2412 3040 734 5 11 6476 3159 4 6664 3 31 862 673 119 11 676 951 7485 3 819 165 725 2 148 6651 2801 168 228 26 4211 16 137 3078 43 17 1286 9 6 2 351 4 290 50 3462 14 8 219 1 18 12 11 24 71 138 3594\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 270 23 5 174 85 49 51 12 2 264 1428 5 3275 500 72 70 31 312 75 2752 57 5 934 15 1 392 3 75 1108 72 1172 170 413 142 5 2 46 1462 176 29 1 576 3 2 8423 11 4 392 83 39 780 19 1 13 97 4 199 24 100 57 5 139 140 48 257 41 1007 337 140 285 2 2251 9 158 8 2564 6 2 346 1479 1038 745 276 3007 36 2 170 745 3 2999 6 332 1515 3 14 2141 14 27 63 1142 42 373 279 2575 5 122 3 151 79 560 48 27 228 8612 15\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3121 74 392 5 26 4933 2362 427 666 10 513 9 6 2 254 5 1431 4692 1073 1357 10 1385 308 41 1882 4 1010 258 37 7 1 168 1738 1147 1018 114 2 1884 329 8 8 57 58 933 1691 4 9 158 193 8 192 2 184 294 5749 1787 37 8 39 369 1 18 8177 125 437 3 14 2 1122 8 12 169 6539 1 1105 2314 6 2050 2186 3 169 4 1 199 1 61 595 961 17 1 570 4 67 456 89 126 34 6902 8 63 365 144 9 21 12 20 1722 986 7 1 3119 17 16 1 344 4 1 1561 10 6 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 92 2346 2066 131 4016 3 25 1669 1301 22 1 1335 16 3 5 1351 65 2 7 9 3245 2590 429 3655 6 2 603 22 5794 14 2 525 5 31 4592 6 1 8319 3 6 2 3028 35 1429 17 10 498 47 11 479 205 7 4477 15 115 13 3027 611 6651 3 25 1301 4 349 161 1 1387 15 1 5951 4 888 623 385 1 699 20 1901 5 95 17 1 1409 203\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 322 48 12 571 16 1 299 13 777 50 330 225 430 37 3980 8 55 179 10 12 527 68 3 7 1 13 357 15 1 452 1 10 12 862 109 248 3 93 101 1 84 1764 2150 11 8 7806 10 12 299 283 37 97 304 1804 7 9 13 724 98 236 34 1 573 3 241 79 51 6 2 163 4 110 103 89 2509 37 137 1804 61 101 30 4026 3 1 927 12 93 167 1319 51 61 38 28 41 102 2933 115 13 872 210 4 399 246 167 78 34 137 1804 1288 12 46 4524 16 437 7 1 835 1 33 34 167 78 6920 72 143 825 3128 72 1121 9619 3 8 339 55 149 469 39 46 13 6463 3384 1152 73 1022 358 12 403 37 530\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7252 8059 865 14 1392 3 27 289 25 30 1177 2 5510 94 25 817 104 61 1423 27 93 266 2 2691 14 1 13 2136 63 348 10 6 2 3920 141 3 162 36 10 12 89 7 1 199 16 169 2 136 7888 1920 383 1 668 2139 37 33 61 36 48 1 410 54 64 69 58 8927 802 41 32 845 8712 48 8 87 149 211 41 240 6 11 23 100 152 64 1 6899 13 858 508 24 1505 1 951 22 1002 3 783 3 2359 309 62 1408 18 492 618 1745 2 222 4 13 92 668 2139 22 240 3 43 53 395 1890 4 1 7 933 6 17 1 589 3784 3 69 277 2064 6 105 97 3 24 4301 931 1880 19 1 807 9 6 106 9 18 88 24 71 2 163 828\n1\t6387 7 2 2695 6683 191 24 71 148 749 38 6916 5 1743 7 1 1751 7128 73 42 1258 5 70 91 1666 1482 32 11 8779 13 92 293 363 618 87 20 1 641 67 4 53 125 4548 1 53 6 1 102 170 2791 294 5699 3 5431 3 1 510 6 5949 14 1 35 440 5 2303 205 2 6646 3 2 3754 205 5 9 12 895 280 318 106 27 262 1 580 115 13 3027 448 53 196 2 103 352 32 31 2422 487 3 3777 35 190 46 109 24 71 28 4 1 156 35 88 637 411 29 1 85 31 1644 18 3384 1345 5978 32 5401 770 14 31 5542 487 16 1 4 27 12 30 5253 35 965 2 2020 466 16 28 4 25 3721 9610 2291 34 1 4159 3 4 2543 14 27 1 5309 1189 4 1 487 35 2 20 2 91 859 5 26 5994 47 7 29 3230 13 92 3777 4 1834 65 5096 109 1938 42 31 6879 901 4 1549 3596 3 1406 7 95 639 23 175 5 256 110\n0\t0 0 0 0 0 0 0 419 199 1 46 547 739 3 6012 419 199 414 2 20 37 547 3957 4 414 5357 1026 167 78 1 166 2441 14 9535 1188 158 571 9 85 1 1230 374 22 7 243 68 1284 1 119 2405 19 127 1230 2517 3 28 4 126 40 3336 28 4 1 8031 37 33 149 730 7 9442 1 8031 1088 5 8055 126 34 7 2 8531 3 564 450 480 1 233 11 420 455 43 364 68 188 38 9 21 183 283 194 8 128 3388 11 10 228 26 29 225 350 547 73 206 2934 5492 2941 89 1 46 547 4132 938 1890 3 1489 21 17 9 21 621 224 311 73 80 4 10 6 463 903 41 1466 1 21 6 515 242 5 155 5 1 53 161 663 4 616 801 2723 17 10 56 153 209 1294 6327 1078 817 216 7 293 363 69 20 55 1 840 6 10 6 2 163 138 68 1 236 20 78 422 8 63 134 38 9 91 3 20 7 2 53 699 925 8381\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 261 35 1304 9 21 40 20 71 3281 16 86 709 1744 191 24 71 4966 15 1 102 7 1 135 9 21 6 20 6 2 91 108 115 13 677 130 26 58 5319 189 9 21 3 1 1326 1653 41 6591 220 1 1967 102 124 22 109 428 3 695 897 4704 6 1070 4 137 2508 1 747 177 6 10 57 132 1187 1249 53 67 17 1 53 716 22 156 3 237 9107 1 168 11 61 377 5 26 211 310 142 52 761 68 6813 1 3675 1 1 2528 695 1 59 211 129 61 395 28 35 2925 44 1898 5 1 13 40 89 43 56 53 124 1828 17 9 213 28 4 450 8 407 909 52 32 294\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1214 32 9657 347 12 4861 29 1 85 4 86 1042 17 7 1 576 172 40 2 8970 3014 1923 32 2 301 1321 1 120 204 83 6156 78 4584 3 1 572 276 3 4232 5696 266 2 35 7 2280 2712 19 1 4 1677 3 1605 1 74 308 1 357 588 1356 5696 6 3321 30 707 35 175 185 4 1 2286 9304 2182 2 1190 16 1 18 66 380 1 410 2 732 356 4 85 3 2416 17 1 238 7 9 1140 103 569 6 4 1 67 101 89 65 4 2216 6 5482 7533 236 924 2 3703 101 89 4072 1 7 3 1 171 7571 29 239 82 197 78 19 62 42 2 3236 3 1891 7 31 744 10 2898 5423 6621 32 4577\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 419 10 2 358 39 73 794 1 276 1494 7 9 682 13 51 6 46 103 2947 5 9 141 17 37 22 80 4 1 1045 1706 6635 1 18 229 713 105 78 5 1173 295 32 1 2094 1706 4260 906 10 337 105 237 3 89 1 212 67 20 39 17 13 677 6 105 78 840 3 105 97 168 11 89 79 230 7054 2 53 1706 18 130 26 52 8390 11 23 83 321 5 64 2 163 4 813 361 72 34 118 49 2 1706 3130 19 2 423 6 160 5 87 48 2 1706 76 1405 2 156 41 5276 22 34 10 693 5 1431 1 178 1920 1 28 29 182 49 440 5 3803 34 10 693 6 2 156 1 344 6 116 1441 42 39 50 923 6280\n1\t168 15 1 1612 1108 341 243 1 1151 5105 6 243 457 286 4696 189 6365 44 41 44 2246 6757 5984 286 551 4 368 5365 54 100 24 1066 109 7 9 6 2 580 5 1 135 3470 6 20 286 444 46 1506 101 2021 189 3 8410 200 30 3788 4696 8831 44 1302 19 74 2659 3 5601 44 30 4868 125 44 4141 286 30 1 570 634 244 2 163 52 4952 5 44 5996 60 2475 28 898 4 2 32 1 178 7 1 2430 15 6757 3 4696 1513 1093 17 10 13 5188 6 609 14 4 44 918 1835 36 297 422 7 1 158 6 8367 148 3 44 469 178 6 6265 443 5954 3 1972 3832 22 591 1470 7355 336 2 53 3 1351 65 19 1270 1170 6 331 4 3348 802 11 59 7221 1 1560 4 1 994 7355 213 1893 5 369 1 443 19 2 383 16 1534 68 1446 56 286 7776 2734 295 32 469 178 5 187 1 410 9287 1 2868 3 443 3407 187 1351 65 19 1270 5563 2 661 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 349 6 5852 153 36 59 28 493 244 165 3 244 1147 31 161 3098 2037 2 8674 15 54 26 62 1659 5 33 549 77 1245 49 2643 3586 270 1 2356 59 40 5 70 10 155 3 1564 10 140 1 2125 2134 4659 5 33 24 2 526 4 82 81 15 949 36 1 2479 2473 3 1 102 413 70 77 1 2660 3 578 8438 2638 1 237 913 6 2 514 6488 121 216 6 151 2 1442 6008 5 4576 6 609 3 3111 6 46 53 14 8422 84 783 3 3386 22 107 7 4693 885 5 99 75 2367 1791 34 1 6536 7 25 39 1 164 3 25 93 244\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2054 37 8 70 110 1181 377 5 26 1 312 40 71 2 282 6 403 44 1508 3 605 5993 4 110 637 79 125 1 870 17 8 637 16 1 4683 4 31 634 183 8 63 735 16 476 17 83 504 79 5 99 2 3 390 11 60 6 44 467 1336 11 390 2 222 5559 7 1 1217 21 1926 459 15 3 213 48 116 438 63 3282 23 77 10 6 48 152 5027 7 135 9 6 106 5910 1082 7 432 4759 49 10 432 2 2497 116 221 6610\n1\t376 9051 962 3025 6 3 29 268 14 45 27 3 25 2465 337 5 1 3 165 1413 1282 6 46 1386 675 115 13 57 89 2 895 47 4 372 1 466 919 7177 7 2 251 4 104 89 29 2 342 4 3065 125 375 982 127 124 27 1619 77 2 595 8236 684 4903 29 268 55 7749 2041 2237 459 27 12 1544 7 595 4 2 895 30 1 85 9 28 310 4508 14 15 37 97 362 3108 10 384 11 25 85 57 209 3 8102 11 27 12 514 16 362 5493 581 17 11 15 2708 268 27 12 436 105 3287 3 5 13 92 701 1723 470 30 1 8363 492 6 28 4 1 226 4 1 7957 136 1 398 349 54 7 1 74 4 1 147 4449 1 1779 996 1 1246 4 66 54 86 914 2274 77 1 368 7 72 63 64 1 104 128 7 2 595 14 1 443 123 20 899 1878 15 1 505 36 1 1918 1 236 58 8024 7 9 1024 66 40 86 10 380 1 18 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 12 2 2038 14 2 4536 851 12 37 109 262 30 1 847 15 3 1438 1 3692 883 8 2209 8521 6 49 4 5770 9 1104 23 617 2178 50 4434 29 3 6738 5 4199 827 1 1648 3405 122 7 2 625 736 361 8751 1793 66 1 1724 846 17 3 37 77 1 8380 1637 4 5099 115 13 2 4253 3599 4 1033 3 1799 90 9 2 382 14 1684 3 6712 1163 14 1 326 10 12 4303 1 796 3 2407 6 5 6684 374 5 112\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1317 1535 3205 2938 13 3 3233 22 2 1730 8189 27 2 4342 60 2 6 1770 5 899 5 3610 488 7 31 634 4 6022 5 1 899 19 1 5538 458 385 1 744 33 1978 4 1267 796 3646 754 1235 9118 25 27 5051 1 2800 60 270 1 5830 15 1 182 1122 2 5515 4674 347 11 76 274 126 65 16 500 5 352 1 8822 33 1088 5 606 1555 3 1 5977 14 62 91 2902 54 24 10 3360 4504 1148 1 488 3636 94 848 25 27 3 25 4472 8032 889 1 846 342 3 905 62 2146 913 13 6 1485 14 1 1975 7136 5487 362 3 6 9039 65 30 3337 372 44 482 1652 129 11 181 5 26 44 7154 3 90 16 2 1321 1839 634 105 488 14 795 47 4 9048 23 14 1 545 22 3154 77 62 6533 3 63 230 1 1560 13 3775 3 1325 2859 9 1071 7929 660 86 1955 2 401 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1031 43 4168 2550 6 9 18 200 1 5194 4674 15 2 526 4 2098 43 23 2102 43 23 5074 2 156 22 2626 4757 62 584 22 20 28 749 15 307 3 4690 574 4 36 148 500 43 67 456 87 20 33 39 3109 17 36 306 2752 3 53 2098 33 1382 1413 1 1007 35 22 2512 2 1248 22 132 23 22 749 16 1 1905 345 6 1544 189 2 891 3 2 605 474 4 6102 44 9241 44 2375 3 242 5 359 34 62 486 1413 9 123 20 182 15 2 1243 41 429 7 1 3 34 22 536 7 2 1153 1561 17 6 2 46 148 157 1103 4 81 536 326 5 1344 4403 5 1952 9 6 2 53 67 3 2 84\n0\t3347 2068 7 1 85 13 1 206 3 1278 24 95 312 38 48 33 61 403 95 2531 139 77 515 1375 14 28 88 348 32 1 3144 11 8391 3 25 1176 16 22 28 580 465 8 24 193 12 15 1 46 176 4 8391 6 377 5 849 1513 27 20 24 71 2919 5669 3 358 469 3663 12 93 2130 7 154 111 608 7 50 1062 1 28 7 1 1859 12 152 138 68 1 89 65 3563 19 1 16 8129 6 377 5 24 25 4520 3867 47 32 1 30 8391 608 20 757 142 29 1 94 27 12 274 19 1473 30 31 7065 32 2 11 276 36 10 3 33 39 4635 44 15 1 4145 29 1 182 4 1 1859 106 27 963 2180 49 27 5 25 3 4105 48 1 898 12 15 11 115 13 614 23 175 5 64 9 18 73 86 2771 5 1 14 51 56 213 28 68 129 1 59 111 8 88 354 9 21 6 45 23 338 1 18 30 8829 608 292 8 83 354 133 1497\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3756 314 5 867 3646 11 25 61 52 240 68 25 8 241 11 1 166 88 2465 5 3 258 9 461 115 13 499 791 8108 97 8029 4 2 1200 3515 42 1 1252 73 4 981 1891 9 18 196 93 43 53 53 265 1136 31 53 121 15 3 115 13 3514 45 23 190 4001 194 23 173 995 110 9 678 18 152 844 2 46 4234 3 23 22 46 1458 5 359 10 7 438 16 2491 300 16 2368 7 1 3 1 477 4 1 104 143 24 1 166 467 68 10 36 2 5 1 1228 7 639 5 90 10 995 2 832 4084 4 34 1 1 11 12 1716 7 11 387 9 28 1421 14 591 13 659 2179 987 134 11 1 138 111 5 1116 9 141 6 5 99 10 197 1437 704 42 53 41 565 5 99 194 36 23 54 99 2\n1\t3440 107 34 4 1 1139 581 17 47 4 1 9 6 1 3 42 243 13 4 1 54 5368 14 1 1726 98 98 98 4 1 3 475 9 4031 13 659 9 1139 141 236 2 1355 147 7 3 1982 6 4187 19 5909 704 444 493 41 14 60 748 47 19 2 3132 16 13 724 14 1660 196 602 15 277 170 2891 27 792 6195 126 3 1937 35 6 1 147 13 92 1511 7 9 21 6 822 1078 80 4 1 124 22 3591 3 66 12 243 4652 1660 1630 3713 47 4 129 80 4 1 387 1 2669 22 32 1 226 581 3 136 1 238 168 22 7277 479 56 162 7956 10 93 1419 1 1005 1880 1 82 124 5021 258 11 4 66 12 1423 7 589 3 129 13 9300 7 1 21 811 167 6553 3 1 607 120 22 1515 17 58 28 6 152 279 6750 8279 13 1601 1 3166 8 56 381 490 8 57 2 3 1 2849 4 1 147 6 17 9 247 14 1303 14 420 13 47 4\n1\t9 18 7 1 388 1320 2 156 172 989 3 1150 110 50 766 3 8 381 10 37 78 72 969 1 1919 3 24 381 10 117 13 92 119 40 71 37 58 321 7 160 125 10 702 1 272 6 9 18 1071 2494 8702 662 160 5 70 34 1 716 1 74 85 2246 8 118 8 13 252 18 6 722 8918 34 29 1 166 290 49 1796 1 29 25 5776 42 49 4348 2307 1347 14 27 1035 5 4420 1159 42 49 6 475 30 1 287 7 6384 42 105 211 16 13 872 1 42 14 53 14 95 18 1077 180 455 7 982 8 12 1206 7 1 536 974 5 5770 125 1 115 13 8413 278 6 332 3090 1037 40 71 16 25 1103 4 2 164 35 40 57 28 105 97 91 1638 6 425 14 1 3794 2228 35 40 3091 2 16 4348 34 127 982 27 40 31 2529 176 11 151 415 175 5 550 17 34 1 171 22 1381 13 95 9410 23 284 38 9 18 3 64 110 42 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 1 4 1 5050 8648 6 30 15 423 24 2144 2 147 2732 4 423 5099 30 62 4774 3043 1 6264 5 2 7984 423 13 7704 28 1426 63 582 469 8966 5443 35 6 5 2410 3 25 13 659 1 7045 4 2 5443 615 2 304 170 287 603 1007 61 643 30 764 172 6884 195 60 451 5677 33 4466 2 5443 76 1591 75 5 566 1 3 76 466 5443 5 13 7924 8119 223 40 34 1 260 1047 7 9 1406 11 1510 877 4 2286 93 460 2142 6395 794 3 1133 794\n0\t20 306 48 6 160 19 3 56 876 162 5 1 67 4 1 251 571 2659 1 8238 164 3076 316 3 5 351 1099 269 5 87 9 6 30 237 174 524 4 91 523 7 1 1902 1814 4 8 56 36 1 131 17 1281 664 5 1 201 3 1 535 41 37 53 767 239 349 17 35 117 6 19 1 523 201 11 557 41 314 5 216 19 1 693 5 26 9 12 30 237 28 4 1 4120 15 7 1 74 843 269 23 118 11 48 6 160 19 6 9980 3 235 2267 6 2 1153 370 19 515 2200 30 2 7294 6194 129 3 49 27 5601 65 27 76 1364 3 4379 4379 4379 37 1 1063 83 24 5 56 932 2 1518 11 76 6230 1 67 427 95 9 4514 190 14 109 24 1253 174 1518 5 1288 7 1 226 431 1 8238 164 3076 12 7 3 89 122 2874 295 316 41 209 155 3 348 3904 27 3001 25 5 70 2 2912 176 36 7 9 431 3 637 10 2 1393\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 28 4 1 210 104 8 24 117 575 245 1 103 5705 1753 3256 3 7188 3071 1490 6107 6 48 151 9 18 2072 3185 3 9422 111 4 781 65 49 44 442 6 404 6 678 3 1470 8 24 5 7301 7188 16 25 1490 6107 3 1490 6107 16 4476 9 5 26 7 1 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 219 9 18 308 3 228 99 10 805 17 292 4130 7133 6 53 7 1 141 8 230 33 88 24 314 2 129 14 7429 168 16 5540 7 1 4193 49 27 6 30 4456 6160 22 105 695 638 316 6 2 360 4 2 25 1360 286 650 2446 1008 22 425 16 25 1174 308 316 762 9379 7 1 3447 741 65 588 224 254 19 33 22 205 425 16 9 3349 7 239 135 8 1454 112 11 538 7 2 158 106 171 182 65 7 1 166 1261 14 2 817 158 14 127 102 114 7 1 1504 790 10 12 2 167 53 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 133 9 362 9263 1093 10 12 308 316 5 79 11 362 9263 6 237 1914 5 518 25 838 5 333 4 822 740 168 6 25 2216 6 46 501 78 5 26 553 7 1 1032 4 31 594 41 1943 10 6 2 2502 11 27 247 14 38 1 541 4 25 406 478 124 14 27 384 5 26 7 25 1414 4121 13 252 12 1 74 21 7 66 8 57 107 60 12 169 3 286 8328 2 3861 4 13 92 393 6 2856\n0\t1209 13 872 1 233 11 3 1 129 3 1 81 33 2052 7 1 141 63 1271 706 34 4 2 2585 6 93 862 6465 48 89 1 4026 37 782 7 1 18 12 11 33 5355 31 1980 1587 3 61 148 115 13 858 16 1 293 1456 33 22 56 53 7 1 8782 17 1 46 1219 363 7 1 697 131 22 955 248 3 276 258 2 1849 33 1978 15 42 37 631 33 1243 200 19 2 15 2 955 89 5404 7 1 5157 42 31 2158 5 199 902 11 33 89 10 176 37 258 49 33 88 24 89 10 7 1044 4 2 15 1983 115 13 92 57 138 363 49 33 3246 62 74 767 7 11 12 843 172 183 7577 3 33 24 1 1649 102 1519 3780 445 3579 2541 11 1521 5125 33 191 24 1017 34 1 319 19 73 8 83 64 10 19 1 1250 115 13 509 3 1445 983 11 88 24 71 84 45 33 57 383 1 131 7 368 15 2 2223 445 3 138 1063 3 138 807\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 3254 30 1 2889 12 9884 10 191 24 57 2 46 402 445 73 2 1551 1234 4 1 18 191 24 71 829 15 2 1998 388 2904 814 740 1 166 178 69 468 24 43 443 802 3 641 388 443 5574 10 151 16 2 46 1164 8 96 33 130 24 214 43 111 5 20 87 1 574 115 13 150 96 42 4211 5 64 10 45 23 24 107 1 215 73 98 23 63 1498 3 64 1 17 45 23 617 107 1 215 468 100 175 5 64 10 45 23 64 9 28 10 76 229 291 111 105 978 3 473 23 142 32 55 3379 38 1 215 5592\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 219 9 158 385 15 154 82 1260 8 88 70 50 1191 642 283 7 16 43 9787 1 861 6 46 4422 14 6 1 1948 831 34 4 1 157 12 556 47 4 1 471 8 24 100 107 132 31 489 1103 4 561 34 4 25 80 22 9700 106 6 25 106 6 25 7931 6944 52 4441 4831 68 1 129 32 1 3854 7 698 1 353 372 7 9 1260 262 2 6245 136 1133 6 1933 5 7168 188 41 39 7571 29 1 801 27 123 34 1 8 24 58 312 48 33 61 9290 8 54 36 5 187 9 21 2 1056 2302 2400 370 19 1 360 265 3 861 17 8 1582 173 2698 5 64 9 21 16 105 223 73 4 690 3111 7931 1663\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 192 37 1558 9 18 303 79 507 47 4 50 85 3 1741 9879 204 12 1 2394 2181 21 34 125 1 7600 704 41 20 33 76 19 62 180 107 127 120 6372 180 107 1 857 32 23 764 268 106 114 116 6250 23 321 5 1089 116 671 3 176 200 1038 1 234 40 1241 220 4444 3801 69 3 23 321 5 720 385 15 592 13 677 22 237 52 240 3 211 9245 5 66 23 63 9144 116 4262 4 9676 3 69 144 20 328 126 47 378 4 1 166 161 125 3 125 3 125 3456 13 1833 8 785 11 2394 2181 40 2 147 1480 588 827 10 123 162 16 79 69 73 195 180 209 5 504 25 161 1 342 35 22 1758 1455 4 239 82 3 182 65 2578 3 166 2195 166 13 614 2394 451 5 1364 25 596 2366 98 27 40 5 365 11 257 356 4 623 3 2717 40 5 26 69 20\n0\t1288 254 325 204 19 2 2930 963 165 204 8 645 50 74 2152 9388 382 217 1200 5 1089 10 19 50 8743 3 98 217 1200 5 1089 10 19 50 1180 5 549 10 160 5 26 254 5 6455 1 736 38 10 45 1408 8734 2004 55 1089 13 92 135 304 3975 1016 4702 5171 443 216 3 6243 297 485 3015 3 98 1 102 250 120 3 3 1 18 1436 16 437 297 1251 32 1 3 1 697 847 4 1 102 250 120 1394 571 16 7 1 1206 178 2930 485 9220 3 400 5010 1 102 250 120 61 1139 37 775 11 29 268 8 12 1437 45 51 22 95 2205 19 1 2967 29 1 799 15 11 364 2694 68 2938 13 2990 7 1 18 6 14 2 3 1 177 6 84 45 1070 171 22 6270 145 37 1096 8 617 152 1901 9 5 4315 420 2704 50 13 7551 3 570 1189 57 2 52 3 6199 13 252 18 54 70 394 460 45 10 247 16 1 2432 11 4920 260 51 19 1 1250\n1\t7 1 80 3067 1422 11 2630 63 26 1 210 3 4 513 1 496 1005 1430 168 7 48 33 637 1060 5515 29 1 1 80 5583 2281 168 4 3 15 39 14 2577 2 7154 97 1030 7 1 158 66 40 1 3022 2694 2787 322 146 404 4084 9305 56 270 1 5097 77 1678 106 55 81 1550 3 106 55 7376 54 24 179 8704 9 21 12 2 580 4 1055 45 10 1419 1 4 1 80 496 5911 10 6 73 9305 472 10 37 1067 11 27 88 20 4202 10 1095 16 94 399 1 4595 4 6968 6 686 227 5 2545 2025 197 1 321 16 1988 2962 3 1 59 2557 177 38 1 21 6 1 2953 66 380 2 2785 8691 4 17 9305 12 235 17 27 674 1050 9 1480 2 1228 5 9940 199 5 2438 45 59 137 6811 57 2087 17 4648 33 22 355 527 154 1393 28 1344 94 2 9 21 190 26 620 5 2 156 6715 14 31 665 4 75 31 12 4223 19 158 17 86 4119 61 7668\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 543 5313 2943 2300 12 100 84 10 6 7 1 166 3631 14 6486 1449 6078 1828 4573 7 698 10 12 28 4 1 215 2441 4260 2943 6 3454 7682 40 58 7051 5948 7387 3 100 2993 6 167 78 1 4272 1 18 12 306 5 11 541 3 8 24 5 867 8 338 110 10 76 100 26 2 84 141 17 10 57 2 11 166 5661 8021 11 1 1402 10 57 39 1 260 1234 4 1216 16 50 537 3 51 12 202 58 2973 7337 8 338 1 4269 16 52 6024 13 12 2 222 4 31 27 12 2 103 47 4 334 19 2 298 416 8 100 169 165 144 27 12 51 7 1 74\n0\t450 3 8 721 2227 2758 14 1 359 121 36 33 24 9249 48 1362 3016 123 60 64 7 126 5 1382 15 126 1534 68 28 123 60 357 47 15 1568 8 721 1247 16 919 1 1136 5 390 146 52 68 311 1 761 4830 7 9 3218 25 280 6 674 5 2952 19 101 17 144 87 33 55 1460 5 771 5 122 49 33 495 771 5 239 3 25 13 92 957 634 48 119 51 6 17 30 9 85 8 12 288 29 50 836 50 417 553 79 33 61 128 1000 16 146 1975 211 5 780 3 8 57 5 1 178 11 2980 34 12 7433 3 1180 5 1346 34 4 1 1389 3 1355 494 2126 533 1 18 17 72 61 39 3698 126 142 2 5929 2054 207 144 3360 57 11 780 3 4467 666 9 13 1118 1308 72 89 61 32 1 4230 4 1 119 68 29 235 6813 55 1 285 1 1079 1121 46 695 1391 8 12 303 15 162 571 2 2277 5 2979 81 295 32 9 682 13 9409\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 39 159 9 18 19 94 110 8 1662 65 133 6901 3 57 2 580 254 16 1215 37 8 12 1345 5 149 47 94 283 9 21 11 1 5804 12 8586 35 276 167 53 17 93 276 301 264 3 6 831 775 8 54 100 24 5152 10 12 44 7 2 1519 982 48 1 898 6 60 403 7 2 572 36 2782 8 1023 15 1 559 204 11 1 18 1419 48 42 58 2241 58 2565 58 42 93 2 1015 4 1 1568 4860 41 80 4 1 238 6 1 250 129 2731 5058 5453 4 85 599 200 1 5782 9703 429 3 3 1 4305 7 5396 41 101 65 30 1 6388 34 4 10 509 3 195 45 1 54 24 89 490 350 1 21 54 24 71 1 1 2801 5859 17 23 59 70 11 16 910\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 37 1040 36 86 2 1916 3 585 1398 11 24 2241 33 93 70 1728 4 103 8636 33 70 274 19 1473 30 450 1 1916 1398 1928 177 1141 2 259 30 122 7 1 155 15 31 4 33 22 7721 3 48 1265 1 376 4 1 141 6 1 2475 6342 951 1 2475 5 149 1 1916 3 94 1 1916 1141 1 8959 1141 1 1916 30 2306 44 522 98 60 4705 19 6793 9 18 4597 10 12 111 111 52 211 68 10 12 3903 10 247 55 29 513 1 282 2018 1 1928 19 1 522 15 2 4908 10 122 689 60 98 271 3 768 1 98 6828 44 3 792 5 1890 768 308 805 255 5 1 2464\n1\t0 0 0 0 0 0 203 104 22 1476 877 4 877 4 3 877 4 623 5 139 385 15 110 218 6 2 382 7 42 221 916 1312 266 2 1886 35 440 5 26 2 950 7 25 3203 160 47 19 2 1992 15 25 282 6 243 687 16 34 17 49 1 161 164 1937 1 166 1424 4293 921 1 27 741 65 101 1 3 1312 1605 122 47 1 113 27 5435 49 86 65 5 1886 5529 9 18 56 1745 110 8 118 80 2976 24 57 62 49 33 634 1095 49 3477 255 2701 33 191 825 5 995 1 576 3 357 403 146 53 5 552 7989 49 1 1995 7 569 1168 65 825 1 254 111 38 218 599 33 191 825 5 1961 2916 3 20 369 62 2813 70 1 138 4 450 1 12 243 1257 7 1 1344 3 7 50 1062 8 96 10 12 49 307 7 5 582 1 1 569 6 308 316 1359 5 53 161 8 128 2089 3 99 9 18 34 1 387 45 23 83 36 1020 715\n1\t647 17 80 4 34 30 1 2762 3 304 1948 10 54 24 71 1 215 706 2484 324 66 8 159 69 519 5573 5 14 1 395 8324 12 152 30 730 3 59 30 66 6 1547 571 14 185 4 2 3605 4056 4447 13 9848 8 230 11 1 1042 40 71 3897 4014 30 1 672 121 6 1233 17 1 494 153 24 1 166 3532 2157 11 1 8324 41 1 215 873 5600 3 8 96 578 1209 6698 981 105 161 5 309 1 7592 33 24 89 43 1445 132 14 2708 1 250 1921 442 32 5 3 1253 43 3251 17 210 4 34 8 230 11 33 24 2175 97 168 15 265 69 1 567 178 4 1 16 665 12 1868 1414 17 40 71 4014 1359 5 4350 7237 11 51 26 265 372 1875 261 6 20 66 8 149 761 7 97 834 4121 13 252 21 128 6114 295 80 1058 1139 581 3 8 481 354 10 496 2160 1 119 6 641 286 5498 3 1 21 289 2 6090 66 6 1547 1156 32 80 661\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 24 336 9 18 117 220 42 2289 7 8 24 433 1584 4 75 97 268 8 24 107 1027 10 100 1082 5 90 79 539 41 7158 79 65 45 8 192 507 1781 1 277 951 22 885 3 1 263 6 1069 75 87 23 20 70 5661 2261 1 833 8 96 8 3692 9 18 197 5018 110 8 676 118 1 389 1252 37 49 275 6 133 10 16 1 74 85 8 24 5 998 155 667 146 38 75 211 1 398 427 110 8 173 55 8672 10 2563 5372 3361 129 229 196 1 80 1201 3449 1 754 9940 1 49 1777 25 4748 5 186 2 6072 6 128 17 1 1307 6 323 1 29 521 5 26 2894 429 22 2 591 25 7659 15 1 87 725 2 7359 3 64 9 8852\n1\t13 92 206 6 630 82 68 5300 411 5947 492 10 190 20 26 1703 17 10 6 128 627 227 5 9450 3008 3 25 333 4 3 3500 380 239 2852 274 2 167 797 5786 3779 1932 1491 2 206 8 591 12 3638 183 193 58 729 35 1 21 6 128 30 2 46 1423 1575 13 2409 4 399 5141 868 6 862 2431 3 1 238 168 4 95 5092 3 1 2753 356 4 1 18 6 237 105 6021 5 26 6069 274 7 1 3667 1251 32 1 2431 8949 1 59 82 177 11 3264 79 6 1 775 5612 11 4859 14 1 13 252 147 305 6 2 268 138 68 1 215 4228 881 6 1 4489 2129 7 86 334 6 2 4262 147 1 3500 3 1345 2133 32 1 1250 1 147 4729 3 1077 22 93 2713 51 1829 333 4 1 5068 5 84 1380 3 1 6 627 3 373 28 4 1 113 180 107 37 4506 102 1930 2 1625 3 2 1 9586 22 2403 7 9 274 11 255 7 2 243 4115 9720 3060\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 109 256 371 3465 7 1 1235 506 870 11 831 196 224 7 86 221 5 26 56 8136 9599 6 1016 14 2 5825 1557 242 5 1584 224 48 784 5 26 2 712 1 166 9756 848 4461 314 7 2 251 4 2064 27 172 6884 1133 6 5811 2185 3 33 24 167 53 1300 2607 225 16 2 82 120 2133 65 5 8984 5454 1 102 4021 1413 6 1 493 4 31 1188 1757 3 745 6 43 426 4 632 5 2 222 254 5 292 424 4 611 100 4320 1 644 393 6 591 4652 176 884 16 8574 1599 14 364 68\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 2 347 5 158 10 6 1227 2 53 312 5 359 29 225 43 4 1 1576 1511 41 8328 243 68 9326 1 2285 136 10 6 935 11 1 206 57 5281 5 3 337 19 1 2952 4 8438 2383 10 6 1659 5 1367 11 1 537 3114 62 532 5 26 2 528 7 7528 5 1 501 3212 4 44 9001 1 347 1733 44 157 19 44 3 44 4703 7 1 4486 60 6784 3229 2766 15 44 2143 417 3 193 33 1457 4775 4 2765 6584 1 158 245 270 2 1446 16 1 85 10 12 1716 2239 9 3540 839 14 3 670 5370 436 1 206 12 2472 43 4 25 3004 392 3212 15 122 5 9 18 794 43 21 24 17 10 181 5 26 2 2256 1335 16 605 34 1 2421 3 1212 4 1 347 3 10 77 2 5325 3816 4 417 41 83 351 116 85 15 9 4866 284 1 347 3438\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 28 4 1 80 489 104 117 63 3650 309 7 2 1973 27 6 2 2851 20 31 1651 27 848 3804 15 25 3 48 38 1 2384 8427 5617 50 851 9 18 56 4597 7 1 182 6 1 2201 4 3804 262 30 1 6879 1706 3355 30 31 1536 4 8456 17 49 1 4688 59 843 3804 22 48 653 15 1 82 33 549 47 7 1 3 48 38 1 49 6114 44 522 15 2 207 56 2 409 7 1 1706 7 2226 767 20 2 625 1706 6 643 15 2 9 56 6 2 551 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 722 6241 3 9909 5697 6 198 9306 7976 23 15 44 2485 3 9879 42 631 11 9 6 2 21 30 1 7 1 1252 1 1 111 33 1388 239 1715 3 183 51 61 9 6 58 1834 299 16 3622 8 83 365 1 294 2272 1815 123 10 729 704 41 20 244 7 9 3124 45 27 424 27 412 6 37 386 11 244 676 2 23 321 5 99 10 2990 30 2990 5 55 149 122 45 244 939 145 2 184 5697 1787 17 57 100 107 9 28 1448 8 214 10 19 5365 8 214 10 30 360 6994 694 155 3 335 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1895 2376 40 2 609 356 4 2466 51 6 162 8 143 36 38 9 135 2146 12 1325 3812 1895 123 2 84 329 2787 20 59 5641 1 250 647 17 93 1 1681 807 115 13 380 449 5 154 402 445 21 47 939 11 23 83 24 5 1017 2 163 5 932 146 279 2034 51 6 146 5 36 16 3622 45 819 57 2 464 45 819 117 1459 19 2 7 298 2727 45 819 117 2882 7 1 3317 45 23 24 95 574 4 356 4 623 29 34 23 76 112 9 135 9 6 1 574 4 21 11 76 26 200 16 2 223 85 3 741 65 316 308 1895 151 2 2223 442 16 2085 8 176 890 5 958\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 39 14 53 14 43 4 1 82 4047 89 30 2047 5899 3 578 1791 36 7357 3 1 1326 3 78 138 68 6849 3 4 1 9378 9 21 418 47 36 2 549 4 1 6452 1214 17 196 52 1618 14 10 271 4508 10 418 47 15 2367 1791 3 2393 9997 7 3 1791 6 5911 15 4562 27 6 214 1438 17 6 8674 6 2632 30 2 3881 1791 98 6022 5 466 146 17 8 995 48 10 6 17 1791 59 3457 38 355 25 8674 1877 14 1 18 271 385 42 36 1791 59 3457 38 411 39 36 25 129 7 1 1326 10 196 78 138 29 1 2507 272 94 33 4688 7 9 6 28 4 8438 138\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 548 2944 953 15 97 2461 3 168 11 76 4609 43 4680 245 4353 26 254 55 16 126 20 5 1116 1 375 3950 1102 9 21 41 5 2900 1663 6076 8883 31 1930 533 1 158 372 15 1 1468 4 1 8784 906 7 1 226 715 269 297 498 77 2 3 1 8729 393 6 407 20 14 53 14 1 344 4 1 108\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 2 586 2814 8 419 10 358 6397 28 16 8358 9212 3 2 330 28 16 1 304 7 1 82 68 11 1 67 39 908 3154 3 2588 7171 140 6741 247 37 147 7 1 12 229 48 3336 79 1 6914 107 235 37\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6824 284 97 4 1 708 737 145 619 11 58 28 40 4546 9 14 676 31 1015 4 2 4921 6194 431 32 404 993 8682 114 2 78 138 329 4 1749 31 1535 3848 901 7 4539 269 68 2077 114 7 269 15 9 3240 2 386 391 63 26 1535 15 2 1355 3 8417 2526 17 7 2 865 158 51 130 26 2 222 52 3895 3 1 67 130 90 1821 2836 3895 3 356 22 102 188 1156 32 218 657 10 40 43 2103 17 33 22 20 227 5 4800 116 290 43 1231 292 9 6 674 2 2759 441 20 28 129 7 1 18 40 2 3 55 193 2 606 2561 6 1 2592 11 196 1 67 51 6 100 95 3487 5 31 8174 9018 5 1 454 35 12 2037 1 82 4391 41 5 1 613 35 54 24 71 3021 5 87 2 50 1899 9 3551 3 99 1 215\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2199 2 6 20 2 91 152 338 10 138 68 1 3173 214 10 52 384 36 10 12 383 718 74 9 2705 8 179 10 39 485 105 402 10 1662 19 10 89 1 18 291 52 18 40 52 2570 28 7934 68 1 6 2 53 50 87 96 29 268 33 337 2 222 125 1 401 15 43 4 1 168 3 1 202 432 2 2234 4 190 26 1 18 29 225 40 43 1 3173 28 114 20 50 40 43 4 1 166 84 265 32 1 6 121 316 12 167 547 16 1 80 36 8 4 10 384 125 1 93 343 11 1 18 2019 2 163 4 959 1 182 3 51 22 2 156 269 66 291 56 673 3 39 83 291 5 1 344 4 1 179 9 12 2 167 1020 16 5 3254 30 1 6\n1\t6720 1 6430 3 1633 1496 768 1 6430 6 13 777 20 1 80 1202 67 72 190 24 107 41 9284 17 1 2838 4 1 21 123 20 7 1 67 17 7 1 1733 4 1 7 1 673 4 1 1741 1296 4 1 4128 7 1 9282 562 189 864 3 5 2 732 4295 10 6 20 48 629 19 1 412 11 17 75 10 5547 9395 1 4459 7 1 89 52 68 2 3000 1704 29 1 182 4 1 8284 1165 4 51 22 97 1733 11 22 100 17 98 9 6 75 948 124 191 26 3 9 6 152 75 157 6 9105 1 507 4 1633 1 3930 831 43 4 1 1733 7 1 226 185 4 1 21 22 20 105 109 3370 3 1 706 3340 3637 395 21 12 89 7 202 1 790 4858 245 1000 16 1 570 4134 178 6 46 279 1 13 777 20 1 113 21 11 6227 1716 286 40 97 53 3558 10 289 1 874 3 1 541 4 1 1392 3 12 2 2846 1825 7 1 2000 4 25 3163\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5159 287 654 7569 196 3523 30 2 3326 164 27 1664 5 2459 44 47 4 2 356 4 17 60 498 122 224 1289 3 1036 5 3081 1 635 19 44 2487 188 139 1233 318 1 583 654 6624 432 2 2901 3 188 4723 341 390 8350 13 3440 107 205 1 1414 324 3 478 324 4 1070 28 4732 79 78 341 8 1717 17 33 61 6577 45 242 5 1015 9 7 8684 12 39 2 439 3742 8 497 57 227 869 94 1 7631 1246 4 5 70 9 1001 9 1 67 6 1941 3 2431 30 2001 5544 55 193 3 187 53 453 9 21 56 4089 3 8 12 1120 810 30 1 714 1638 3 8106 6094 53 83 352 7 607 2237 7472 3 4320 179 9 54 64 1 3574 324 3438 8 187 9 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 756 251 19 2 986 557 6 58 4810 4 5168 756 9 1 254 111 49 7 33 969 1 3376 5 1 1402 8138 5 2097 277 4 66 61 4337 457 1 8374 462 1060 7171 2014 12 6765 2 1081 590 2015 1128 1068 31 2561 7 66 27 433 25 260 1737 59 5 24 10 3546 30 31 6293 461 3126 32 31 551 4 4197 1394 3 485 36 28 4 1 91 559 2930 136 7867 3142 1394 35 262 1 2850 2930 89 79 96 4 2 1875 27 12 19 1250 16 1721 9 4682 4738 5911 38 1 2392 5 5349 531 30 1 166 6665 69 9931 41 756 3554 319 29 1 983 17 5 58 5517 3 10 12 1108 142 5 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 18 66 1035 2 4 2994 274 7 1 1980 707 4 8 636 5 99 9 21 73 8 179 10 12 385 1 456 4 97 124 180 219 3 28 11 40 171 1874 3 1563 1792 322 42 630 4 656 9 21 6 383 1135 7 5400 6 9068 331 4 1041 3 40 397 1353 37 464 10 6 5403 20 6017 35 63 72 1844 16 9 1 505 3140 3 80 4 1 748 61 169 565 43 4 1 566 168 485 36 33 61 5870 30 1 558 298 416 589 9862 1 293 363 61 93 650 573 17 2 156 61 39 772 847 1732 1 412 11 2666 31 258 978 5957 10 40 28 1112 1146 106 2 156 3583 4081 70 5 549 577 2 2857 7 17 49 72 64 1 102 7 48 2 1 21 123 865 2 342 4 48 2 2502 33 143 131 2 103 52 29 225 11 54 24 71 146 16 1 559 5 83 8360\n0\t78 52 6712 488 906 12 2 2785 1825 32 66 25 1502 895 54 20 13 5020 86 4943 3 3408 547 1249 245 9 28 2012 2 3014 3 2729 6219 7044 1281 73 1 1567 39 46 7 698 169 5801 1035 29 203 7044 1 2594 246 5 256 65 15 8249 3 55 31 1643 30 2 4 9096 7044 6 1 1386 914 6769 655 2 433 3369 7044 152 71 1503 295 30 2 558 5 4012 10 32 1424 77 1 1191 4 35 24 78 4 1 1 4 16 237 105 2043 3361 294 498 65 7 2 222 362 19 14 1 35 1275 224 19 1 111 4 1 3 4240 16 9 4 15 25 3223 13 10 11 43 120 22 1 2738 4 48 33 2635 5 26 7044 37 11 1649 3798 14 22 963 5794 14 136 31 7822 842 912 8 159 29 1588 7 362 9579 7 2 1585 182 278 4 66 40 195 71 590 77 2 4215 271 32 5 44 2150 3 155 805 14 27 5 359 1 6415 5 7557 298 2906 2 2377 9873\n0\t5 37 4541 24 5 542 1 2552 318 33 63 26 732 4 62 400 7791 62 4 6602 3 72 64 205 2 1 9998 2871 995 110 182 4 2 54 5423 3 2 9998 2871 228 1 4 2 1974 9 54 93 70 140 1 41 4 95 1764 117 5 1243 9 7724 23 96 2 88 2 9998 3 2176 128 20 55 37 10 5 1 106 10 621 1732 1 3184 66 669 497 30 10 3 564 110 3184 115 13 92 662 301 5 69 33 2108 5 256 47 31 1128 4 1 330 28 15 2 9 1225 10 1237 37 42 20 14 467 14 2 2698 41 2 29 225 7 1 3648 13 3828 564 1 330 4898 15 2 3310 69 89 32 2 1029 15 3 50 319 54 128 26 19 1 42 7413 6 5 7317 34 1 2157 7 28 593 69 1918 1 2 3310 6 2 78 52 4 2 3310 1491 2 40 2 8603 66 1263 1 6201 5 483 298 3310 6033 2 2418 4 274 19 1473 76 311 139 79 19 11\n0\t6 279 1 21 270 6 274 7 2 3297 2430 106 2 658 4 1046 738 126 2 435 3 25 170 752 15 31 390 3363 7 1 9137 285 2 869 49 1 5680 1089 805 1 22 2213 3 10 276 14 45 1 2430 1936 2841 220 97 172 242 5 2500 1 1 526 6461 655 375 6906 3 8054 36 2467 4237 3 1423 2853 2837 32 1 1 59 277 985 145 47 5 22 1576 16 1 1769 3 1 7433 1560 2000 285 1 74 350 4 1 135 16 14 223 14 1 3775 795 83 6282 31 1 1190 6 169 5840 17 14 521 14 23 853 1 2651 76 9478 26 46 439 41 9900 100 1 8608 39 36 31 429 4 1759 100 56 61 782 5 905 15 3653 300 5 2094 488 7 2053 15 2 67 52 2696 5 2119 33 39 176 2724 1526 3 15 34 1 2377 3 323 979 1673 6467 8 1454 198 608 1 2391 4 2 3583 608 54 26 1 4528 2435 16 5261 3276 203 17 8 497 207 174 19 50\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 292 2030 6 28 4 1 1340 104 180 117 575 42 2 18 11 130 26 219 43 4 1 211 2126 22 248 7 2834 3 87 20 24 1 692 1234 4 838 1366 5 450 16 2937 359 31 1128 19 492 7083 333 4 1 1653 29 1 3838 93 19 1 172 11 1030 29 1 477 4 1192 42 28 4 137 1219 104 106 1 623 2018 23 55 193 23 118 42 2 1211 5756 1 1392 6 56 3056 23 381 44 138 587 124 268 29 7118 1827 130 187 9 28 2 13 2608 6 483 1904 7 1 462 280 3 1 607 201 8211 988 745 6 2332 496 4869\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 179 10 54 29 225 26 3391 10 12 2690 3 1466 8 202 1310 51 22 43 547 4501 17 51 6 9 28 788 29 1 182 66 6 39 43 259 5751 47 136 275 5354 19 2 1974 11 101 1113 51 22 43 167 4501 17 42 20 279 283 18 2287 139 19 4954 24 1 4265 194 3 2497 1 53 3449 115 13 1 18 6 43 259 253 322 207 2 4040 17 468 64 48 8 467 45 23 64 110 11 101 83 64 8381\n0\t184 654 1249 650 35 61 109 576 62 2796 3 7 9 2396 13 252 6 169 2 2578 21 49 23 96 38 110 2469 19 4482 3 23 76 543 9133 3 963 116 13 1049 11 60 88 128 105 91 1 18 143 7317 52 19 656 8211 288 128 5148 137 4365 32 4 1 376 7692 37 78 52 224 5 990 32 394 172 13 150 59 449 11 9 21 153 5975 5 3497 3319 2436 19 1 952 4 1290 75 63 261 26 3921 227 5 36 9 3 134 10 196 23 5 13 4196 114 1862 1364 31 918 16 9 13 614 1 61 403 132 2 360 177 29 1 769 144 12 1 8408 5 70 142 1 144 114 1312 2248 2468 14 94 399 27 57 214 25 115 13 252 54 24 71 2 327 21 45 1 57 39 1180 5 149 62 4 2543 19 990 3 875 3617 13 15 1 1675 4 29 9 2511 3 2207 789 35 422 22 34 9700 1 1063 130 24 556 1 1106 3 2954 10 15 9 526 14\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 83 24 78 5 734 5 48 40 71 367 1704 17 42 46 78 2 21 4 42 387 3 1 74 341 1458 85 11 1 1210 4986 1 21 400 19 1 434 182 13 92 419 1 1161 877 4 7313 32 206 1796 3 31 2039 5 31 202 2548 201 4 607 1488 29 154 8979 72 70 28 4 137 2067 453 32 148 33 22 105 97 5 9446 17 10 181 36 39 38 1603 19 1 163 1 46 1003 1243 140 9 2129 4426 45 23 63 1780 294 13 92 59 125 1 401 278 6 32 1 198 7434 14 2 3250 1855 15 2 27 266 9 129 202 610 36 11 4 1 3043 7 244 146 5 3 250 6 313 3 196 44 113 280 220 8485 13 1226 16 9 28 6 2 330 865 19 2 1839 1037 15 146 36 16 13 16\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 80 2253 259 7 1563 1792 123 10 702 31 362 7581 21 11 40 122 25 1921 4128 1660 6605 7581 6 3007 1072 36 7 25 2628 3 1 111 27 77 541 3 98 155 5 25 3011 52 1100 2885 2677 6 2 2421 5 99 3 289 75 4368 3 27 6 29 25 3981 1337 7 2 222 4 3416 1569 37 2810 4 9 574 4 739 3 9 2 18 11 40 10 34 69 267 5728 36 1 1429 315 238 3 43 1115 566 4718 13 743 84 4868 3 4714 18 11 6 279 31 594 3 2 350 4 8254 290\n0\t0 0 0 0 0 0 0 0 0 0 0 0 281 2218 6 56 2 1557 36 1954 129 54 24 71 9780 5 1 1653 172 1924 1 212 8114 6 89 65 4 35 2095 81 603 2628 139 155 4029 30 1 3220 4 154 3004 2661 129 2109 117 57 40 590 47 5 26 1 3300 1013 10 12 174 3004 51 40 59 71 28 315 3 27 12 256 65 5 10 30 25 482 1 59 506 12 2 35 643 174 5 2990 2 1170 635 16 2 1004 11 102 1086 482 374 48 2 658 4 3 345 81 3497 701 854 59 19 9 131 22 80 13 8241 2425 1 4 81 7 62 3 6304 16 4945 33 3030 172 989 22 2 4644 58 3602 5781 76 4269 16 701 28 73 10 907 1 1296 76 26 1544 15 62 2949 318 33 475 1 1296 54 26 403 62 2752 3 8174 7036 2 1 76 39 126 5 3 33 495 3272 2 1393 1 59 56 161 3728 35 139 5 1641 22 463 6639 1004 3467 41 603\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 1 232 4 18 8 1401 1 6169 3 10 2334 2 8185 4 1 2631 37 7330 3 1230 10 3898 31 2158 5 34 1098 1 453 22 32 9093 1326 178 6 332 5 5 4526 1018 276 260 47 4 2 1542 4713 5 35 151 2 3045 991 5 652 157 5 2 129 37 37 7330 3 37 955 428 34 303 5 216 15 6 2 20 5 798 1 2270 2526 2 840 8079 37 978 11 10 54 90 1984 2865 10 1082 7 34 3178 2653 632 2132 4022 2858 3 80 4 34 3387 40 198 71 2 2256 1951 17 29 225 25 817 104 57 43 8 173 134 235 53 38 9 351 4 2128 571 11 8 449 1132 825 2 2869 38 9741 3 32 9\n1\t5 70 80 4 10 73 9 6 2 56 84 2881 108 51 22 1 692 3339 3 2 222 9769 17 93 46 4290 3 55 4161 2184 1078 1 397 349 1 732 4040 3054 191 24 3172 2 156 4 448 195 10 153 1197 261 3 137 168 7 233 291 167 1325 1613 3 42 20 39 73 4 1 102 13 92 3498 1643 181 5 645 154 545 46 58 3 10 407 114 645 437 46 9281 93 1 32 1 205 4251 4 1 380 1 212 67 52 385 1 692 1216 3 2286 9 6 20 39 2 4747 392 901 4 28 3453 17 289 48 1936 516 1 9947 7 53 3 565 322 101 2 524 4 2155 650 3133 13 1701 1 596 4 7746 9 6 93 2 25 216 6 198 2355 1462 17 100 125 1 5037 3 8 96 8 24 5 328 5 1236 52 104 15 771 38 987 449 33 70 9 19 305 6574 37 8 63 24 1 389 18 7 50 1894 3 52 81 76 390 1100 15 9 46 103 587 4773\n1\t7217 3 2161 5 284 22 1 4 25 4955 27 255 32 2 3276 1138 7 6453 15 2 532 35 481 5 256 10 13 286 164 3 487 2624 5 239 1715 816 1937 316 25 1514 5 112 3 4219 3 1 487 2486 5 1942 9 112 3 64 816 3 6431 2000 2 3310 29 1 182 4 62 64 2421 29 48 6 229 25 74 117 4777 1433 1256 30 13 2078 5 187 295 1 2526 17 6431 6 6345 30 816 94 78 3 1 2204 905 2 147 157 78 16 62 7999 8206 13 659 9 141 3 7243 22 1068 7 2 223 427 4 104 106 164 762 487 3 2210 2 7999 1629 64 1 518 3 3650 7 41 3904 7949 3 7 5890 544 7 41 626 3 7 41 3739 3 1788 7 197 2 13 7846 985 4 3208 9 6 1 59 1635 4 11 8 118 4 106 27 59 2 4 2 147 17 27 123 13 9134 170 7243 93 2371 7 2 330 18 1738 7 1 2953 4428 66 6 370 19 2 382 2598\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 133 75 1 102 1338 8314 3 5357 142 4 239 82 140 1 212 18 151 79 1454 749 5 414 7 1 3368 2265 78 36 33 114 7 1 108 8 24 219 9 18 3330 268 3 24 1 347 260 9784 50 94 133 1 18 8 1023 11 9 6 28 4 1 156 104 11 123 2 347 8097 8 2474 354 261 11 40 1 680 5 139 5 7535 5 5295 41 26 5 87 1943 10 6 2713 8 63 20 96 4 261 422 11 88 309 1 280 138 68 3360 87 725 2028 3 99 28 4 1 138 104 7 1 661 18 4180 2474 354 3 14 2 4716 16 8922 7 205 7535 3 87 20 328 5 825 75 5 2874 5295 32 1 168 4 1 18 73 292 10 276 84 19 1 21 23 24 58 312 75 78 6290 3 3689 8922 36 11 152 1479 23 16 2575 99 9 18 786 45 23 54 36 2 223 747 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 107 39 38 34 4 581 3 33 22 34 304 3 17 9 28 7512 845 1 6161 9 18 400 1475 13 150 1310 7 112 15 3 3 62 4502 3379 9371 33 61 48 89 1 18 16 437 4 611 1 847 6 93 1016 3 1 265 2291 1 1687 7 1 21 5578 17 1 120 22 1 5666 272 7 9 3515 33 22 37 109 1619 3 331 4 13 5140 369 79 145 56 648 38 1 873 324 4 1 18 1543 706 136 1 706 8324 6 53 10 311 7 3770 5 1 215 1587 2939 1 3079 22 1824 1 1765 3577 37 8 1379 283 341 1 18 1 111 10 1868 1306\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7498 91 537 9259 1 80 9 6 2 7380 158 3 2 2256 461 48 56 1141 10 6 1 3627 5007 1270 4505 7283 6446 966 58 58 1117 2651 4 144 1181 1283 764 3583 2765 2408 58 1154 6471 7 9000 39 2 658 4 1131 4 15 19 62 14 174 2381 5672 1323 385 14 45 11 57 43 1052 8630 45 127 559 405 5 90 2 3925 234 265 3481 34 33 57 5 87 12 522 2 156 3302 2765 1270 4 106 1 113 546 4 61 2859 3 21 7 11 54 24 71 2 78 138 1167 16 7 13 724 3911 48 33 636 19 12 2 7380 7693 350 1 9289 3 5574 1 59 177 5 354 9 21 6 11 10 153 4206 169 14 78 14 13\n0\t13 1226 8 179 8 563 48 8 12 355 8 57 71 5095 5 3827 375 4 5515 183 1157 224 5 99 9 28 11 8691 57 71 4 480 50 402 6287 172 4 1200 5 3162 79 55 19 2 299 4 1 91 3432 20 39 573 17 91 14 193 7023 713 5 90 9 21 2 17 337 77 3 1 7352 224 257 253 10 20 3537 17 211 409 4034 3 1521 6783 713 5 90 2 53 1973 55 94 956 1 172 4 8 24 1245 3499 1445 3 4112 2268 1 182 15 2 375 529 5889 145 273 630 1 158 3 137 156 824 79 32 1573 1 305 1294 37 91 42 3911 10 57 39 227 7886 173 241 9 6 2 686 18 5 359 79 32 1573 10 1237 3 162 5521 13 2 21 5 99 15 2 526 4 70 116 221 599 2219 6034 11 2893 5236 1 839 16 437 37 91 42 2014 7504 7 25 4122 1778 19 10 14 10 5 473 9 212 391 4 77 2 709 5156 4000 996 1369 79 4\n0\t1490 6605 2503 361 1195 3641 171 513 17 9 4 2 18 143 333 95 4 126 5 95 426 4 15 630 4 62 120 55 2659 19 412 2720 1490 1072 123 70 5 309 2738 411 7 375 13 92 5829 16 1 4026 7 9 18 291 5 720 29 1 3131 4 2 1239 33 39 175 5 62 2468 3 98 33 473 19 1 250 129 30 848 80 4 25 417 3 20 7423 25 379 94 27 196 126 1 6585 185 33 977 47 4 7485 9 2075 1036 33 24 5 2410 1 1849 73 10 3029 105 97 2720 33 87 1857 1 250 129 3 25 379 2 1780 7 62 13 4511 4 1 21 6 1019 133 1 164 3 379 1564 41 1243 41 820 200 41 694 29 403 2798 23 202 555 33 57 1866 556 47 15 1 344 4 1 1849 29 1 769 39 7 16 509 199 5 9979 13 23 56 36 1469 1072 41 5662 1879 420 187 9 28 2 6789 10 621 77 11 8672 2552 4 1130 6517 189 376 3 3080\n0\t0 0 0 0 0 0 0 0 1 18 418 169 15 31 1930 1146 277 81 22 3185 3 253 346 771 7 2 9637 34 4 126 22 253 65 2 222 5006 4260 14 1 18 10 498 47 11 1 80 5006 67 6 3040 245 660 11 1 18 6 20 46 240 571 16 1 178 7 1 1940 3 1 178 106 250 1085 6 9 5760 629 1092 350 85 77 1 18 3 4041 20 78 6 303 5 26 575 1 344 4 1 85 206 6 8823 7 2 851 1736 2370 331 4 6418 3 1119 161 1432 127 22 1447 3 2 222 1985 7525 17 126 271 19 111 105 1896 95 888 119 41 129 5064 8 214 9 18 14 174 665 4 463 2256 41 3840 106 378 4 242 5 90 31 240 441 18 1350 7317 19 1447 4586 3 140 7 2 156 202 7523 584 7 272 69 5143 5 597 1 5 842 47 34 5643 3 5824 19 2 4760 10 40 9687 7289 17 7 9 933 524 6 162 52 68 551 4 3694\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 84 108 8 112 1 251 19 249 3 37 8 336 1 108 28 4 1 113 188 7 1 18 6 11 475 44 9816 1085 5 11 12 1051 8 336 10 10 12 167 211 854 42 2 84 1540\n1\t6242 3 5564 35 54 139 19 5 390 918 1707 171 1917 491 2263 6242 14 1 2597 988 35 32 346 569 2597 5 147 887 707 5 390 2 27 123 20 16 25 2163 8596 17 10 6 20 11 7802 1 147 887 707 415 36 1 1086 886 262 30 4657 3 262 30 918 2695 2765 22 264 68 2597 3129 2836 4027 6 242 5 1291 32 25 576 157 7 27 12 3172 30 25 3899 262 30 1 360 651 5063 482 35 1436 7 32 1 2840 7 147 887 707 22 360 5 99 14 6 1 733 189 262 30 5564 3 120 77 2 866 976 5 976 9371 1 413 22 2280 5 2711 1 147 887 707 157 30 20 372 30 1 3508 36 355 2 148 1614 14 1 21 576 255 5 1 4760 3 42 2762 17 20 6566 1 21 6 20 16 537 17 1074 5 2001 124 3 756 4428 3346 228 26 52 8 173 995 2 170 4977 3 2 1433 11 23 173 42 93 2 4 2 158 37 70 116 47 854\n0\t14 1012 30 6668 6668 6 929 5 1720 9 18 15 25 823 1587 16 80 4 1 290 27 153 87 2 345 2340 17 10 6 2 103 5 1006 4 31 353 5 8629 1 4 5164 412 85 285 66 1 120 1017 62 85 20 648 3 93 20 1014 80 1201 280 190 24 71 1147 2872 7 1 226 535 9197 164 104 13 92 119 6 2775 2 766 2064 25 1086 379 16 44 1686 1 379 181 5 3 9195 1 766 2037 122 2896 318 27 32 2 298 3406 1 4 25 434 379 8988 19 1 326 27 6 5 1288 58 13 92 330 1803 5820 276 2 163 36 31 706 1183 9422 1 59 177 11 1421 47 6 1 1963 16 3251 97 269 1369 7 58 28 3 156 3218 10 6 2 1152 1 3934 559 100 165 998 4 9 108 10 88 24 71 78 1824 45 20 39 14 2674 15 52 1765 41 9580 168 4 13 150 721 852 808 671 5 1030 32 1 7227 3 11 27 557 16 1 11 9 4006\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 12 46 1527 30 1 67 3 73 8 192 160 140 146 696 15 50 221 4192 8 56 10 6 37 806 5 995 11 275 603 823 6 4636 12 308 8921 3 3 98 236 1 3036 33 89 3 24 5 414 1566 8 336 5429 278 3 35 6 8528 444 2 148 8105 51 6 229 1 80 2944 178 180 117 107 7 2 158 286 162 12 620 69 10 12 39 37 1325 1613 790 1 176 3 230 4 1 21 12 2 148 931 5575 6 46 46 53 7 9 3236 27 2 164 8 338 1 111 1 1951 6537 9 3540 727 100 100 105 78 69 39 227 5 5833 199 1356 17 20 227 5 1781\n1\t1 53 161 1 2404 131 60 1371 503 55 1 313 2114 8559 7 2498 2 342 4 172 3 1373 1 6887 324 3 1 28 33 34 24 5 375 817 24 1 11 90 10 37 1134 3 1201 20 225 101 1 2753 7 9408 3 7914 368 16 838 3 2252 19 3322 372 243 68 39 102 951 14 37 396 629 1163 69 9011 16 1632 3227 32 3 1661 1397 128 24 4627 3 3 17 3771 39 26 197 1 1086 9959 4060 2367 1791 3 4910 61 205 4528 3 951 17 75 78 33 5868 49 62 453 22 7 137 4 1403 4214 2453 3 2127 3 9 6 183 72 3608 7 11 2054 300 33 61 2 4312 52 1438 7 11 717 17 75 97 2438 21 15 3 2241 473 155 5 137 663 4 3313 2434 3 3689 3 7 84 104 36 9 461 30 237 1 113 177 38 9 717 6 20 17 305 11 63 29 28 3 1 166 85 90 127 3156 1492 5 3 131 1 4651 75 1 184 1161 314 5 87 110\n1\t2453 3 2062 5 100 5 1110 408 6779 80 4 1 120 32 533 1 141 603 486 57 71 2610 30 22 620 385 1 744 3244 5 48 12 459 107 17 1167 65 1 570 178 5 26 52 13 2595 1 769 1 4 2453 3 6 3 22 303 5 1 795 33 39 13 1833 8 74 219 1 18 8 4983 10 12 89 30 1 1908 5 5337 2453 1752 5 8 58 1534 96 11 6 1 1723 292 8 449 1 18 63 87 39 656 14 31 8 149 11 1 21 6 2 6593 4 2453 3 8821 1 53 188 72 459 118 38 550 8 192 2284 5 64 75 76 793 1 21 69 704 33 76 311 64 10 14 31 1859 67 4 31 296 1842 996 41 146 9809 13 92 21 6 1325 2859 231 866 488 146 53 16 3622 11 1 795 1012 152 653 7 127 2269 2063 4 1443 6 240 5 7 822 4 1 97 1637 4 257 1615 69 642 3035 4 1842 4050 3 1451 16 1 1800 69 72 186 16\n0\t65 1 1086 342 37 33 63 2452 1 259 4 25 1449 1 833 954 218 111 72 16 1 24 71 4608 29 1 769 17 14 2 111 5 2382 142 2 18 6 2724 2578 3 181 47 4 1888 3 16 28 570 5150 257 4128 1727 331 40 2 4319 8552 432 25 129 301 3 19 25 37 4 448 1 74 177 27 123 6 720 77 1170 9858 115 13 1627 300 1 1324 17 8 497 86 1873 15 31 7 137 663 2 6430 4 374 15 3 12 5942 14 3 815 3 23 88 139 2896 45 33 5355 62 29 1038 1 8046 6 167 78 8760 65 7 1 74 1146 106 1 2892 2080 1 1277 4687 160 926 1 1277 666 2 374 433 7 1 3 236 2 680 3 2837 6 936 4758 1 2892 5 101 5731 1100 15 1 562 2243 27 2378 25 221 537 5 309 98 498 5 1 443 3 142 2 6898 11 1 562 16 297 3 58 5109 4 174 9516 7 1 769 86 58 5347 17 240 14 4743 104\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 4079 1310 7 112 15 9 131 999 5 256 2 2618 19 50 543 15 42 84 2347 927 3 84 1014 17 207 20 8011 10 93 999 5 359 23 318 1 714 1 1048 312 516 1 131 69 2472 81 155 5 157 15 28 393 1 3734 15 2 330 69 6 240 3 88 128 26 7 406 17 1 3604 701 1 979 176 4 1 131 3 1 496 6220 734 5 1 2751 17 6 52 68 42 3955 10 40 2 732 1817 11 8 56 335 3 145 288 890 5 2645 1 234 4 2993 3 3795 16 2 330\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8440 6 2 2012 9 18 6 400 38 81 536 7 23 76 64 162 17 2048 7 9 108 10 151 23 230 91 17 128 34 137 809 105 4771 15 130 1017 719 15 9 108\n0\t2437 7 1 658 123 12 1323 200 2927 16 13 92 2632 319 1283 784 19 1 9057 1137 1 1828 3 1 139 16 1 6574 174 28 4 949 6 3 316 1 178 6 109 248 3 1295 2 1065 3 58 195 51 22 277 160 38 3 28 4 126 693 2 1737 13 1833 28 4 1 1148 1 3 783 355 27 418 8909 599 295 36 4299 3 1363 142 25 1653 7 687 7008 37 78 16 34 11 2505 457 5989 2145 27 762 65 15 1 508 3 3671 7 25 6367 5 1346 144 27 6 8909 599 295 36 4299 3 1363 142 25 9982 55 193 1 1030 5 26 3889 550 805 11 263 2947 434 3 783 1843 5 1 1828 3 271 94 1 15 1 692 9056 45 23 1876 5 6400 30 1 744 23 190 8498 19 116 3575 11 10 6 1 166 478 455 396 7 1 433 7 1032 249 13 92 226 102 6715 2075 295 32 1 429 3 155 5 1 1092 17 87 23 76 24 5 64 1 21 5 149\n0\t2909 34 4 1 8500 1161 3 624 32 3070 2 3401 48 299 6 11 7 2 203 1973 1479 5814 6496 482 114 20 917 9 27 152 440 5 4012 246 1 265 262 29 1 3146 5762 1 46 265 11 88 2 869 5 564 34 1 374 35 57 71 467 5 550 45 10 61 503 8 54 24 256 11 265 926 3 115 13 92 344 4 1 18 6 38 9 2853 635 160 200 569 242 5 564 1 586 2853 376 27 144 20 2185 15 122 3 56 87 43 144 23 10 181 27 6 7 112 15 28 4 1 986 624 3 123 20 175 44 3271 16 2 6352 135 6 9 2 203 21 41 31 431 4 1212 3 1 1 18 39 271 19 3 19 29 9 1746 15 58 2895 41 235 279 2034 45 23 337 5 298 416 7 1 518 2804 36 8 2723 9 18 6 299 5 24 2 103 3450 5 9674 3 184 5810 17 11 6 10 16 9 135 1899 10 3 875 408 3 39 1876 5 43\n1\t4498 6687 2 77 1 161 157 6 58 1534 2623 3 1 147 28 498 47 5 26 162 52 68 2 1153 15 2 85 66 76 2500 86 714 1 443 4011 1599 3 8781 32 8604 16 28 223 14 33 22 205 4304 224 7 1 39 1 4457 17 1 166 14 9 938 76 139 6934 1 2566 4 1 102 3012 66 310 77 101 7 132 2 7469 76 20 26 8781 6 2945 30 1 4 112 5 1 2738 447 3 63 64 58 82 111 47 17 5 3497 5983 1599 498 77 2 707 35 2080 1 606 11 22 1000 7 1044 4 1 3647 16 13 92 18 3764 661 14 2 6565 66 1061 1353 132 14 423 41 9371 10 6 1 35 181 5 26 2262 4 781 1 111 47 4 1 17 831 25 255 5 2 91 714 245 25 3285 123 20 3237 24 5 467 11 10 6 1258 41 20 5 2500 1 1 111 27 289 199 6 1416 292 10 3503 2 568 1234 4 488 845 399 1 4344 5 9144 2 8179\n1\t0 0 0 145 2 8 36 50 5536 747 3 50 8 143 1717 49 532 12 3812 76 147 21 5526 276 36 2 1770 16 31 8947 676 8 12 1711 197 31 1703 6888 115 13 1627 144 19 990 114 8 36 7111 41 300 10 12 1 1839 8 183 1 880 41 7241 300 10 12 11 55 1 80 4 18 596 88 333 31 2579 383 4 115 13 872 1316 10 705 32 1 799 762 4394 2592 237 32 2 1 793 6 556 19 31 5241 1486 15 102 6490 2793 5 474 38 106 62 486 22 1325 30 616 541 443 13 92 250 5541 38 1 21 6 11 42 105 237 6 1 21 237 8 83 2510 23 348 437 180 286 5 889 29 1 20 16 551 4 87 8 335 1078 1 2766 11 228 5441 130 9 2592 186 7222 826 8 87 409 409 106 80 746 4 7111 41 735 386 409 409 2197 5 186 77 3110 11 55 72 24 3 9317 6743 42 279 1 2154 4 5 414 949 269 29 2 5623\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 246 284 285 97 172 38 75 84 9 21 1220 75 10 3573 738 1 710 1396 1 49 8 475 219 10 38 2 349 1742 8 214 10 167 1832 2266 977 8 497 50 1691 61 383 7 315 3 4308 9 5482 6361 21 16 2534 3 59 31 594 6 553 7 1 921 4 2 3749 189 31 632 3 31 6220 14 33 140 2 251 4 801 22 620 7 1 541 4 3 328 5 149 45 33 998 43 5107 38 2 1503 1105 6576 395 489 2257 9071 21 40 2 696 6 2 736 8 284 2 163 7 746 38 9 141 17 8 54 134 202 95 67 6 52 240 68 9 135\n1\t207 71 200 220 50 61 738 86 50 1007 57 2 2819 1790 7 3 50 102 1338 24 51 6755 13 153 24 235 2829 5 87 15 1 4866 2698 15 115 13 150 1019 29 3069 32 49 8 12 681 172 161 5 49 8 12 3 10 6 5 81 36 79 5 912 9 21 1 879 16 912 2 526 1464 7 1 1692 1220 14 50 649 4 503 218 53 3 749 45 819 100 2830 1 1297 1702 76 229 26 433 19 83 8360 42 20 10 153 24 1 2392 662 7 1 225 222 10 40 58 9719 132 1005 1560 14 5027 6 51 662 95 1041 51 22 58 39 5 131 142 75 1269 1 22 5753 506 427 38 75 44 5992 1513 25 11 6 20 1 225 3116 48 9 18 6 2354 95 52 68 1 6531 6 2 1222 739 39 73 10 40 2 163 4 19 412 13 724 1297 1702 6 9072 9730 45 23 24 2830 1 64 9 108 83 284 95 2425 39 87 592 13 1701 503 9 6 2 4006\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 237 14 9359 4047 3137 420 256 9 164 173 1288 19 1 1065 601 4 1 1818 42 20 11 1 18 6 591 573 17 10 1419 1 5115 3 3984 4 43 4 1 82 180 575 259 123 25 113 7 1 466 1538 17 1419 1 6179 4197 2429 5 1622 10 1294 15 28 3045 1 344 4 1 201 213 591 452 1 593 6 4737 3 1664 46 156 529 11 8 617 107 1448 236 39 20 78 5 70 46 2337 5722 13 92 201 1675 8 1505 6 444 1 28 2437 1780 7 9 1286 1669 135 906 44 412 85 6 1953 5 364 68 1194 1452 1 970 1981 16 9 164 173 1288 6 1328 123 20 309 6624 1670 60 6 1 129 145 20 273 75 261 88 2082 16 43 259 654 294 14 3893 7 1079 16 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 247 1135 273 48 5 504 32 2 1073 1794 7233 1045 2489 688 340 1 171 602 8 179 420 187 10 2 1 1511 4 1 21 343 160 140 4 239 4 1 7435 17 100 169 343 37 963 8 419 65 3 19 1 861 3 2852 2137 66 8 179 61 53 19 1 5012 1078 239 129 57 103 1384 73 4 1 1109 4 1 67 187 235 295 8601 8 24 5 134 10 343 2 163 1534 68 86 938 3 20 7 2 53 699 7 1 182 8 12 288 16 43 7034 4 17 10 143 473 47 5 26 1 1269 41 6443 391 8 57 3388 10 54 1142 8 96 1347 179 48 27 114 87 29 1 182 4 1 21 419 199 17 10 12 2 1697 2082 5 328 3 1 817 269 15 1 7230 1391 8 230 10 54 24 71 138 5 369 10 820 197 1 14 2 391 4 8 190 24 1155 1 272 301\n0\t0 0 8 192 2 2150 4 1493 484 187 79 2 8894 4332 3 8 192 7 8996 127 104 22 53 16 253 23 582 517 4 297 422 160 19 7 116 1162 55 2 439 1493 18 76 531 90 79 539 3 8 76 128 1064 10 2 53 1606 98 51 12 66 12 37 489 8 57 5 15 970 37 8 88 2979 2349 74 51 12 1 1145 4 1749 1 66 1 18 1092 2610 778 7 639 5 359 1 902 942 33 39 89 273 51 12 813 154 156 1452 285 28 1643 178 1 443 1527 142 4 1 1643 17 23 159 48 12 791 2 4 813 101 1256 30 2 5 369 23 118 11 1 1643 12 1909 3 1 454 12 229 434 4378 3088 293 155 5 1 8 179 10 12 46 240 11 1 633 2476 5258 61 1525 1326 3 1 9814 6999 3021 11 33 26 140 62 9801 3086 9 18 57 345 119 3612 464 441 3 145 1140 5 134 167 91 1014 20 55 962 3076 41 4327 8770 88 552 9\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 84 441 370 19 2 306 67 38 2 170 315 164 3 34 1 6612 385 1 9765 101 11 9 6 3286 74 117 18 11 27 411 12 1927 8 24 5 920 8 12 2 4312 17 35 511 17 98 805 244 2 84 353 15 4 172 4 4458 3 1 182 1122 590 47 1051 1 67 6 553 7 2 84 744 253 23 11 40 57 6612 285 116 6420 3 170 64 725 7 137 4149 814 10 2018 23 6550 3851 23 118 116 20 1 59 28 160 140 4359 7 399 2 1462 67 38 2 170 164 242 5 90 10 7 9 65 1162 395 67 6 370 19 1 157 4 6464 1711 4349 9597 912 12 93 1 846 4 9 3750 2474 4869 7101\n1\t2265 7 1 750 106 1 763 13 92 120 22 46 277 3 24 71 7 9 8661 4 1 2797 30 2587 1 546 22 1 1759 22 4092 3 1 1798 111 1 456 22 1366 827 15 1 5635 89 34 1 52 6474 30 1 5948 1 4531 139 2086 1 763 88 20 2459 1 1 88 20 352 3846 3 1 55 1 3098 4449 339 2698 5 543 1 8088 864 4 403 260 30 1 81 33 3377 13 150 354 9 441 205 1 821 3 1 5 4075 45 23 173 3258 1 1387 468 6113 3 140 43 3558 14 28 94 174 6 47 19 137 4 205 30 62 482 3 30 62 221 1098 2698 7 438 193 11 9 6 162 52 68 3933 3 9 901 6 31 111 5 825 38 592 13 150 118 10 190 478 17 9 9251 205 2983 79 3 503 480 1 1600 8 214 7 50 2333 29 48 337 926 3 8 1517 381 110 99 110 45 20 284 65 19 1 4795 73 236 2 2869 5 26 2178 32 10 513\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2907 1083 11 14 4 1 3465 4 9 58 6563 24 2 2400 4 95 232 16 9 108 20 6327 978 1145 1724 153 1376 5 126 169 14 45 23 36 2 53 6733 141 3 258 45 23 36 5 126 14 23 1775 23 76 36 476 45 23 83 24 299 133 91 484 9 1962 20 16\n0\t608 1 3 6 13 15 297 11 40 71 367 38 9 158 16 665 1 438 904 121 6768 42 9 91 23 186 174 139 29 1363 1 1146 851 1589 1 177 8 214 1 80 761 12 1 900 551 4 1205 356 7 1 1252 6314 132 2 177 6319 285 1 2426 51 12 31 631 4946 4 2 494 15 1451 16 1 7125 1 624 6043 4421 375 268 3 33 384 5 131 332 58 2369 4 95 41 55 5905 69 681 2831 1179 624 421 28 4040 633 7245 608 1671 65 19 1159 144 83 13 92 59 177 11 63 26 5942 14 595 4 2 16 9 462 6 1 443 20 1204 1 1209 29 95 85 1826 1 545 283 297 32 1208 10 69 66 424 14 1 344 4 1 158 2 53 312 3370 13 3 30 1 744 9 18 6 162 36 1 3482 1897 1480 41 41 95 82 462 829 15 2 8139 443 608 9 6 31 1380 3 20 2 314 4763 10 63 26 17 7 9 524 42 31 1335 16 5785\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 58 312 144 9 739 6 355 132 2 91 4581 30 37 97 970 8734 5728 22 667 42 25 18 617 95 4 23 107 358 1 50 430 4093 6 11 1 119 6 400 2212 3 39 31 1335 5 4008 34 4 1 238 1102 778 48 1 930 61 23 852 32 2 3942 5035 1973 114 23 1582 241 11 275 179 65 1 441 98 39 5646 10 65 15 4 448 315 3433 6 8175 238 533 670 42 389 599 290 42 93 8294 3 72 70 877 4 7078 3 1688 1175 4 133 1 91 559 341 169 2 156 1438 1046 70 80 4 82 1563 1792 124 22 49 1074 5 315 51 6 58 2648 155 19 1 2270 2504 41 238 1102 3 11 89 79 2 749 45 23 139 77 2 3942 5035 18 852 2313 927 3 31 1930 640 23 22 160 16 1 540 3799 315 3433 6 229 50 430 4 25 104 4 1 4131\n0\t9 6 312 4 2 323 5913 13 306 7785 7 6 436 1 80 3833 178 7 7648 21 2008 27 74 289 1 466 651 1243 34 1 111 32 28 182 4 2 2312 5 1 82 16 59 5 98 131 44 1717 9577 608 16 332 58 302 5216 608 16 174 1 21 98 7518 5824 58 2115 58 2815 39 2629 19 1 3930 115 13 659 31 991 5 1620 2 434 1 4698 833 4 8289 6 37 3461 11 1 59 306 507 4 9 21 6 11 4 7 698 8440 1745 2 78 138 8415 19 8289 7 25 203 21 3 497 3070 42 152 11 21 1527 14 673 14 7 17 51 22 138 1175 4 1 1292 4 8289 68 1 1963 351 587 14 6 2 425 665 4 3230 13 4 616 190 1479 16 1177 9 158 14 27 40 2666 2774 11 7648 616 63 26 39 14 775 89 14 203 6635 7648 24 195 433 62 4 1 538 952 4 116 3666 870 195 124 36 1536 4 4806 3 608 608 75 87 23 36 126\n1\t1 1762 1626 3 1 1122 6 31 2868 3721 1029 15 5925 3 3058 9087 11 2321 7 1 7227 4 1 7877 1 465 6 11 1 4030 4609 343 1 321 5 24 483 935 3 7 1 441 41 1 21 54 24 71 16 2542 7708 5 86 847 9420 10 1026 98 11 72 24 2 4 3847 120 132 14 3526 1004 3 7049 35 2963 4487 154 680 33 5338 10 1762 7 257 3 10 213 13 1118 6 527 6 11 1 494 6 2 103 10 181 14 193 154 427 5027 16 1 4707 302 4 1 994 9 6 162 4790 73 1 119 6 37 1618 308 10 196 160 11 10 693 43 935 3344 2668 5414 1605 204 105 30 2472 2 2742 5 25 1277 1223 29 28 272 7 27 6 107 7 2 4708 11 1416 6 28 4 1 80 3 401 4744 1102 4 1 135 906 1 7575 4 1 1045 2946 24 6977 142 2192 9 606 1430 3 88 5576 32 101 1056 7 2 46 240 17 3965 4975 709 347 7509 13 47 4\n1\t230 55 193 479 34 39 1189 13 1345 1258 5 99 9 18 3 20 1682 106 1 1350 4 165 62 1 120 32 9 18 22 167 78 1 166 120 7 11 18 32 1 7383 260 224 5 1 1642 42 20 31 1135 91 177 7 50 671 220 42 327 5 118 11 145 20 1 59 28 19 1 1849 11 40 2 1052 6245 112 16 9 491 108 8 74 159 9 14 2 635 7 1 3 179 10 12 1 700 177 7 1 234 3 655 133 10 316 226 1679 8 128 96 42 2713 207 2 306 7144 11 2 84 18 63 1 2476 4 290 1432 1 363 176 2 9054 222 3 978 17 10 12 89 111 155 7 1 37 187 10 2 8479 20 297 276 193 220 80 4 1 691 63 128 998 86 221 1163 49 457 2001 13 23 117 405 5 64 2 414 238 324 4 98 23 130 70 116 555 15 9 17 1 2048 3398 658 76 229 87 53 7 8617 9 220 9 495 26 62 4259 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3680 67 15 2 3680 478 42 38 2 103 282 1394 15 2 672 2930 35 44 1504 1 1304 3 2492 36 2 423 101 3 380 352 3 2952 5 25 1829 13 92 6 373 1 376 4 1 135 29 268 3 29 268 7 2589 4 5493 1 5746 2291 1 1646 7 2 80 1884 3 699 1 672 105 6 46 109 248 3 740 2 938 41 102 23 63 152 241 11 9 1244 103 5746 13 7 1 21 44 435 380 1 5746 5 2 3 1 3578 168 348 1 67 4 1829 1593 125 97 172 5 26 15 25 28 4 1 97 1201 168 6 49 27 621 77 91 1404 3 6 8408 5 2881 19 81 712 1 8867 5206 10 181 40 2 7437 13 92 393 6 2674 17 35 54 175 10 537 76 112 9 21 3 2025 35 863 2 5746 14 2 3838 76 4621 7\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 742 6 2 4143 20 46 327 35 40 670 1066 411 5 2295 45 27 270 1 3533 25 6922 1379 16 849 63 27 149 5526 16 1 226 2017 4 25 7608 322 5176 1458 26 138 142 45 27 1 672 4 1 13 252 962 2473 470 3465 40 43 84 529 395 3213 3 1 2553 4 742 157 140 2 1420 4926 3 43 1930 7 1 570 278 6 1227 167 452 688 906 1 39 123 20 169 216 73 28 123 20 182 65 2512 11 1 120 54 5077 1 111 11 33 1405 896 1 18 32 2 534 341 1447 5 31 202 9408 18 36 4 327 2868 7498 2514 35 83 438 11 33 662 3 155 316 5 2 1618 1762 119 16 1 226 1194 269 41 8895 13 252 6 2 547 18 361 279 283 361 17 10 965 2 103 52 599 85 5 8065 2 342 4 1 120 3 2 633 466 2262 4 2659 1 4292 4 44 1174\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 51 12 2 4146 2255 6449 10 54 70 2 1068 7 1 4 1 121 1623 51 12 132 2 12 8018 1 119 7 3 12 1316 7 44 1538 227 5 90 2 454 764 4085 224 16 2 1230 108 2084 4675 16 1592\n1\t1491 5 798 33 22 696 5 1 35 61 93 446 5 186 224 2 5386 1536 15 7794 6 373 52 5151 98 1 344 4 1 502 6631 30 1 491 856 353 4387 12 28 1 113 546 4 1 108 6 37 510 3 9520 276 36 561 4300 1074 5 122 409 1874 4 9007 48 31 491 182 5 132 31 6580 1223 9520 6 323 2 661 326 4536 2432 3 8 96 81 63 195 258 365 3 1116 9 94 1489 4 1 310 689 25 6709 29 1 182 12 866 3 56 876 2 749 286 9770 507 5 1038 1 113 185 12 4 448 1 293 2170 42 491 75 2 21 32 1 362 7492 63 128 820 1 2476 4 85 15 42 1 168 29 8196 276 491 7 11 2853 3 4 448 1 1859 277 111 1112 29 1 182 22 128 1528 5 176 3706 7 34 1052 119 3 931 529 189 2917 9520 3 3 49 2917 3352 1 1387 5 3 1115 293 363 6 2 3811 182 5 28 4 1 80 2810 7 616 2008\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 3009 1 67 4 9954 14 1505 7 1 462 3 25 5 161 417 7 2 8465 1 119 2027 1 526 4 417 14 10 255 5 822 11 9954 303 14 2 907 5 934 15 469 4 2 493 7 66 27 811 7 43 111 17 9 6 14 1 4331 89 7 1 397 22 483 345 3 20 1435 8228 20 198 321 26 17 33 130 29 225 1 1273 4 1 471 204 28 427 1035 132 14 8865 39 472 41 1352 118 23 83 24 112 7 39 87 1435 146 279 1 290 93 1875 1 846 811 29 2 2807 5 106 5 139 5 398 27 2932 5 2 265 5175 4 1 2689 1323 140 8480 5 43 2445 1646 1948 771 38 242 5 5053 45 23 22 942 7 2 53 158 1 574 11 380 538 3 3895 125 39 541 98 9 6 20 1 21 16\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 192 685 9 2288 391 4 1847 2 755 311 73 8 83 241 51 6 2 527 18 7 1 4370 13 150 812 9 141 8 812 1 505 3140 4893 523 3 5246 8 449 307 11 12 602 7 9 18 3945 3 7 1 6430 4 13 9 3094 351 4 1425 13 150 154 326 11 9 18 6 39 2 4 50 5553 8 11 8 1 141 3 11 8 76 100 24 5 64 10 29 115 13 1226 558 388 1320 3456 13 7 898\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1310 7 112 15 9 1414 238 2331 3247 2999 3 59 3247 2999 88 24 262 9 37 530 3172 32 2113 5 118 162 17 392 3 7266 6168 6 7096 19 2 1849 94 101 89 30 13 92 1039 6 274 3 174 382 6963 4 238 104 12 1711 69 20 20 20 1660 20 3739 20 1856 69 3247 2999 7265 9 280 3 89 10 1135 25 69 1571 3 34 105 8 773 1 233 11 3066 61 100 5681 13 13 13 13 1226\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 22 3759 5 760 41 751 9 18 5074 42 1 210 177 8 24 117 575 8 54 878 19 10 52 17 10 40 71 394 172 220 8 159 10 3 24 34 4 10 32 50 1960 552 725 43 85 319 3 109 101 3 875 237 237 1695\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 2 163 36 1 18 571 15 121 3 20 78 4281 1 840 824 22 1057 17 23 83 56 230 235 16 1 647 253 1 882 20 46 9281 43 546 22 39 36 5831 2 6762 224 835 65 15 3559 6 11 377 5 26 782 41 42 39 232 4 2317 14 16 8288 51 56 213 95 3653 16 1 259 355 7 1 2353 66 33 83 131 1 250 91 259 863 667 126 1288 286 1 8355 1141 126 34 46 7857 1 3112 22 34 2831 657 8 114 99 1 2939 814 1952 20 1 210 840 18 180 1586 17 20 29 34 53 1497 23 495 773 235 45 23 1899 9 5592\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 1 166 349 14 9 6 31 1381 141 193 7 2 78 42 274 7 31 147 887 285 1 2611 6190 6 2 1897 35 6255 2 3528 125 578 6941 17 196 997 7 10 3438 1 240 6 11 3226 6 262 30 35 1 185 4 7 19 2404 395 185 11 6190 54 90 754 19\n1\t4 17 6 162 1074 5 3564 9241 3232 35 7 386 17 168 54 6773 69 45 10 6319 69 1 918 16 13 38 5334 917 2 732 5889 11 3 17 1 4 6634 3 25 6 42 2 53 441 109 8242 9179 13 2120 274 7 1 6 20 7 95 148 356 2 3085 67 14 12 4 31 313 18 11 3691 15 4063 470 421 2 148 3792 779 6 10 323 2 21 38 42 38 5166 464 2113 3212 488 14 6634 3908 101 446 5 7 11 1 1757 6 128 1 9968 7 5524 3 14 2 2950 3 627 170 164 2506 25 260 5 2 547 157 15 1 4882 4 2 3379 13 1226 59 6 11 2647 6 2 17 6 9084 14 15 34 1 2875 1594 81 3893 7 1 182 6302 275 130 24 553 206 2647 11 25 919 36 34 6862 2255 1 5368 4 6 9084 14 20 2 184 6 1947 13 150 83 118 144 9 21 6 372 7 37 156 6247 10 1071 2081 5036 2917 190 109 70 31 918 13 13 3382\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 267 4773 679 4 539 47 1767 2103 1 2700 3 168 57 79 1094 1 120 22 3 1 494 69 8 118 81 36 4460 1 1569 6 1317 4620 3 1 21 3332 190 478 1275 79 7 438 4 31 7349 1211 42 2 3445 103 21 15 679 4 9278 10 407 270 2 604 4 180 219 10 2 156 268 71 781 34 50 3 1682 146 147 239 85 69 2 222 4 1117 11 8 1808 1459 65 19 1448 8 88 70 56 3 149 2 342 4 7 1 21 17 145 20 160 5 73 790 9 6 2 84 1816 6945 21 66 6 56 279 2 99 3 66 261 15 2 356 4 1569 191 3589 10 6 2 21 66 76 149 42 417 3 8 449 51 22 2 163 4 126 47 939 3 10 40 2 84 4169\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 192 850 9441 1096 8 24 20 1019 319 5 139 5 1 616 19 10 10 6 162 52 68 4 824 4 156 82 382 4235 36 1 1689 570 7233 1 966 5539 7 243 1065 3 5210 8 56 63 20 842 47 48 12 1 1734 4 1749 9 18 69 10 40 332 162 147 5 1857 7 86 857 66 6 93 51 6 162 5 99 69 1 176 36 51 61 556 32 2 330 874 5289 23 1227 159 34 4 126 7 82 502 17 10 6 373 2 53\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 207 50 5248 6 2 414 238 1480 89 30 1270 2312 4030 2872 3 2385 131 12 94 28 4336 20 73 4 91 152 165 53 17 73 10 12 46 50 5248 6 2 167 211 3087 4 31 855 3201 249 6 93 2 1105 9 6 1677 774 14 53 14 1270 6926 17 10 6 2 46 211 3087 4 2 3280 3 93 2 167 53 1105 259 35 266 7 207 50 5248 276 2 163 36 9892 45 23 63 149 1 983 841 10 22 877 4 1308 5 26 13\n1\t166 2416 393 1 1971 7 2 1697 699 8 24 39 219 16 1 74 387 3 1 74 8 24 6 4633 5 1 586 538 4 1 1919 612 7 30 1 8723 388 1 18 40 59 8931 269 599 387 3 10 181 11 10 12 314 264 4 135 51 22 43 546 400 3 82 546 46 5787 1 1212 4 1 1512 7 20 4013 30 1 8723 5277 45 27 40 2 680 5 149 9 1219 1919 7 2 2551 41 16 1 21 6 2060 2 1414 141 1 67 6 46 2431 3 40 59 2 156 2933 1 120 22 955 9818 245 9 18 6 93 46 15 1 5839 4 304 5374 3 1326 2253 823 16 1 1124 3220 4 7404 174 885 272 6 1 7006 3 314 4 1 189 3831 3 44 9853 1 111 1 206 1 168 5 131 1 693 3 4 3831 6 46 6566 1 182 6 93 46 1846 16 2 108 8 338 9 141 17 8 449 28 326 24 2 680 5 64 2 269 5755 2939 50 2400 6 13 9267\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 84 1106 3 43 4 1 113 171 1 234 40 117 7004 380 1 1292 4 1 613 1557 2 212 147 7684 4 4117 488 80 6728 13 1833 2 687 368 2019 1562 417 3 5 701 27 6 531 340 25 938 4 17 49 1 2110 22 2780 27 2734 411 2193 8318 25 1653 3 271 1363 65 25 6251 28 30 2396 13 6817 245 6 56 69 30 25 3273 4 611 17 93 30 1565 47 11 60 57 174 25 5034 3 27 123 20 3143 1489 17 693 5 359 160 5 149 1 148 4 2 1004 106 25 22 34 125 1 1361 1826 34 25 2628 390 9 6 1 250 302 144 9 18 199 5 257 17 20 1 59 461\n1\t7 146 8 198 149 1502 7 7540 13 1268 327 1 265 6 152 138 3 364 631 68 55 193 42 1 166 259 403 194 2698 10 40 2 2762 3 1846 1782 11 472 79 30 4064 420 751 9 868 45 8 57 1 13 858 5 1 94 1 983 10 12 30 3044 2772 12 46 1831 3 638 12 8975 2547 36 25 388 553 2 223 67 38 75 27 12 1249 3 1994 12 46 211 3 143 56 1836 1 1389 1394 17 180 198 57 2 177 16 12 1360 5047 472 1504 5 3649 16 667 60 12 19 3 1 624 35 262 3 61 205 2278 2312 3 61 51 14 322 1389 38 75 33 114 1 168 121 15 730 19 790 2 46 240 3 360 13 1964 685 1 131 2 1709 47 4 3623 3 46 78 288 890 5 133 10 34 13 8 39 219 9 2 330 85 3 56 449 33 3684 48 1 12 1868 89 1987 8 24 58 312 48 11 190 1718 17 10 1834 2 84 934 4 5380 5 8892\n1\t4094 10 15 372 1 8006 886 7 2 2404 856 106 131 6 101 7004 12 2 376 155 7 1 663 4 1 624 3 60 3 5208 1917 1 788 7 1751 541 15 42 1 113 178 7 1 21 14 5208 5 359 29 110 7746 7559 57 1436 2 223 85 1742 17 9052 12 128 2191 3 145 27 338 48 27 13 668 376 6 7 5918 5204 9937 14 1 3989 376 809 29 74 98 2048 3 2958 2308 4 3 60 114 2 342 4 124 15 3197 3 98 337 155 5 3572 16 52 216 19 1 145 3197 143 169 118 48 5 87 15 44 3 44 4901 6049 193 2820 3941 100 2006 2 27 143 13 123 109 14 1 4937 1840 35 1275 65 15 2 163 32 3 12 39 588 142 25 918 16 2030 4942 1 817 349 3 27 3 511 1030 5 26 31 4528 412 5065 17 479 20 91 6340 13 5204 9937 6 2 514 4755 16 1 2447 4 5208 3 60 143 24 5 1555 1 412 7 174 21 15 4526\n0\t11 51 6 58 5004 5 1 410 3 1 647 16 1632 45 60 6 38 5 26 23 175 5 8949 7426 50 3429 17 23 83 7 9 1723 23 83 474 73 51 6 58 5004 11 40 71 89 5 118 1 1223 7 1 8207 10 384 14 193 1 18 54 26 1111 286 51 6 58 1216 48 37 117 3181 51 88 24 71 300 43 948 17 51 6 1265 5770 60 40 6 2 12 367 19 1 7398 2366 23 54 96 11 10 12 4715 7412 9 141 3 4763 1716 17 10 6 1375 1 2526 12 39 1853 46 826 3 1445 854 1 121 6 463 855 41 2255 6831 300 55 7 50 1062 10 12 2 351 4 31 594 4 50 500 1 3 748 61 855 1221 162 293 48 37 1218 51 6 20 78 2565 41 1909 2504 20 78 813 6 9 18 12 6525 5 90 10 478 169 3982 286 1581 86 20 55 279 288 3410 8 87 20 354 9 5 4792 1013 33 22 728 30 2 156 2026 3 2 509\n1\t0 0 0 0 0 0 0 0 208 339 1023 52 15 3 8 2 6588 2 425 3808 155 2714 2341 108 1 623 6 1546 2738 4 14 28 5913 13 724 48 198 5 79 6 75 396 8 149 512 1841 5 209 155 5 9 18 125 3 2287 8 1868 7170 9 18 1732 1919 38 2042 172 989 49 10 12 19 28 4 137 946 2240 1126 3175 57 100 455 4 10 83 118 144 10 247 11 530 49 7398 61 612 9204 10 12 28 4 1 74 104 8 2 84 2053 4 201 3 4480 3496 1 155 3131 4 7535 153 1977 188 463 13 777 229 20 1 574 4 267 16 4075 17 48 45 1895 3543 574 691 6 65 116 9 229 495 26 116 4259 4 9 18 693 116 331 3726 1 623 6 650 7 1 13 150 241 50 398 956 76 229 26 38 50 17 8 128 118 11 49 10 196 5 1 168 36 1 28 106 1 4 1 613 2588 357 6297 1237 145 160 5 2324 10 543 6 1901\n1\t160 5 714 6 51 95 148 53 7 9 6212 35 6129 4918 25 1524 15 1 574 4 9138 11 31 54 76 257 3803 3519 345 103 350 6611 2594 2162 992 5 1 1836 5 44 1912 3 1 1261 11 3125 40 655 9207 1 545 6 3565 30 127 1389 3 1 171 1 3405 1633 3 6069 14 33 543 795 11 3953 3 3590 62 507 959 239 6874 13 6406 23 24 107 9 158 36 79 23 190 175 5 64 10 702 8 128 24 5 216 47 1 2024 1872 16 1 5447 119 7 1 280 4 1 2457 3 43 4 1 1546 7733 4 443 216 22 279 2 330 5786 1 119 123 1006 16 2 103 2407 49 257 950 6 340 2 680 5 257 3 2594 7 1 6494 23 191 93 26 3861 5688 5 241 7 44 609 765 3 75 43 4 1 238 621 77 1888 17 45 23 139 385 16 1 3765 2062 15 9 665 4 710 616 29 86 113 23 76 209 47 52 68 723 460 47 4 681 16 8892\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 52 684 1545 61 14 3370 14 9 8645 8 100 179 235 14 5410 14 1 641 9863 4 2 265 1009 88 597 79 5076 50 4039 15 5483 151 2 3 60 3 578 1791 198 758 47 1 113 7 239 1715 9 18 2225 48 8 96 6 1403 80 1707 1835 3 15 218 6081 4 3 457 25 11 6 667 2 3284 1 111 27 615 2 1075 5194 2185 303 79 15 206 228 24 179 7 25 9996 17 9 28 27 191 1416 1064 2 15 43 4 1 494 296 104 4 1 8775 40 5\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 969 1 388 243 518 7 50 8788 3 229 54 24 2052 2 163 4 319 45 8 969 10 6884 10 235 422 19 137 3 407 2005 62 2520 17 9 6 56 2 6243 3322 278 4 2 1016 4852 3070 23 83 118 48 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3014 3 4740 6219 49 74 4227 1 1396 24 590 200 3 4246 11 9 21 4 1 2024 1293 2 1420 36 230 5 1 21 1108 3548 14 1 559 32 2 1557 6955 294 5188 3 735 7 3 47 4 112 15 43 4 1 80 3445 3 304 415 107 19 21 7150 3741 3 78 4 1 263 12 41 19 1 326 4 1363 66 380 1 21 2 6378 1147 6 313 14 1 522 1557 7365 94 7206 2851 1464 3 283 19 1 4867 294 5188 1026 3741 3 1279 621 7 112 15 768 6190 40 2 156 624 27 6 3889 2989 3 3120 9 21 40 43 84 453 30 2 1440 22 7365 5047 153 24 2 427 7 1 74 350 4 1 5476 1147 40 100 71 138 341 31 5487 1412 16 2 684 3 1464 40 28 4 44 113 871 14 1 8462 913 2851 6099 60 6 2 4621 5 99 14 60 142 44 456 7 2 496\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 137 35 96 10 6 3806 623 3 23 22 7 233 1 3670 461 136 1 131 123 2735 86 1555 4 716 10 93 1263 2 163 4 5923 1097 3 299 29 1055 4386 4046 966 23 39 321 5 284 77 43 4 44 1097 2 222 52 5 70 592 13 1118 8 93 112 6 11 20 297 6 2 16 137 852 2 1399 36 417 669 112 417 23 495 149 10 675 378 2978 1123 1650 3 82 1175 5 3882 44 1569 66 6 52 3735 72 83 1243 200 7 9 234 3 24 2347 16 297 1113 66 6 7 80 8221 378 1 2978 7471 2218 151 10 52 1087 7 9 1821 115 13 1627 83 186 10 14 3670 623 73 10 6 37 78 52 68 656\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8276 7355 2 609 1117 43 32 2 3540 10 498 47 444 2 16 1 3 195 60 3 1 22 101 219 30 1 9104 1 21 1762 2441 6 34 86 1 4534 726 19 1 3975 3 28 898 4 2 7242 453 30 742 4696 3 1922 6757 22 260 19 3 1 5734 3056 263 6 169 3088 9643 5188 2071 31 918 7927 16 607 280 14 2 7277 1360 14 7568 32 4577\n0\t6678 4 1 75 10 77 204 6 13 677 6 82 84 2188 1131 4 7 1 161 663 49 1 5137 4 4857 12 2 2081 1780 7 1 1611 3 258 360 1131 4 147 887 268 7192 285 28 4 1 2886 7370 7 1 362 115 13 150 96 72 93 24 5 934 15 1 5534 11 9 12 829 7 4857 15 1 888 1675 4 1 1430 107 518 7 1 572 14 1 7460 181 5 26 7 1 5157 1 333 4 2 6 595 3 51 6 2 327 535 5 26 107 4330 4857 191 24 71 772 3 10 6 243 314 2 163 7 1 13 858 237 14 1 697 1567 4 1 21 51 6 103 5 354 10 82 68 1 948 4 39 35 5429 2872 6 685 1 5196 5 29 1 182 4 1 2129 3 60 80 373 6 8396 275 1294 88 10 1718 3747 14 7 626 1 206 35 2180 183 9 21 12 44 895 14 9 12 44 226 13 4395 36 1 4530 1 4846 310 4823 7 12 52 5044 68 1\n1\t174 29 1 2871 30 7807 1 413 35 209 44 699 1057 1 1120 2523 40 2 720 4 683 32 25 1065 157 3 621 7 112 15 1 1355 886 7 1 678 4099 30 2 1793 654 15 2981 16 115 13 1118 2300 79 5 9 21 80 4 34 12 42 215 186 19 1 161 2603 901 11 630 63 1498 1467 10 123 20 2 4125 4 1936 36 80 3262 3313 10 123 20 2900 95 302 14 5 144 3262 54 175 5 5014 1 2871 3 779 123 10 131 2 2513 601 5 1 2523 14 1 834 324 1322 378 10 289 52 4 683 52 68 95 82 397 3 1 8673 6 311 1 1759 22 34 1325 1716 258 1668 5 1484 1 1212 3 6026 115 13 150 54 496 1379 9 21 16 261 35 6 942 7 2 980 4 1 382 2603 901 15 31 240 5986 50 59 465 6 11 1 1278 3 206 114 20 90 2 331 1894 4 82 2603 3493 15 9 166 1656 3 1 233 11 1 21 6 195 47 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 850 50 3402 16 1 112 4 34 11 6 87 20 99 9 1540 10 10 269 4 50 157 8 76 100 70 1877 1432 8 88 24 2165 133 350 111 2086 17 8 179 10 228 70 828 10 6629 261 35 152 381 9 18 6 28 1067 1415 3 2733 58 560 199 24 2 464 3214 49 10 255 5 253 502 297 38 9 18 6 2680 32 1 121 5 1 5826 8 83 55 1797 787 746 19 737 17 7 9 524 646 90 31 4727 8 59 555 275 57 4 5095 79 183 8 2490 9\n1\t34 1 4272 1281 73 4 50 1687 29 1 714 8 3 34 1 81 200 79 61 311 9 6 146 23 83 396 230 409 72 22 34 355 2 222 3398 3 6137 65 15 125 3840 41 7 661 703 1 67 4 1 21 200 1215 2 170 287 7 1 226 6521 4 3 1 2566 11 3567 189 44 3 2 164 19 1 4 2 9 88 24 37 728 71 2 1065 3 1822 391 17 10 6 37 8561 3 2130 7 11 10 3700 23 125 301 3 421 1 5643 6 2 230 53 108 115 13 92 121 32 4497 3 6 1016 258 1 1967 35 6 198 1202 3 627 7 44 1174 1 1300 189 1 102 93 1 108 115 13 92 462 255 32 7081 5347 2 2345 89 4 3563 3 25 161 1642 204 6 2 16 205 7081 3 536 157 5 1 331 37 11 28 63 1720 19 3 1 82 63 543 1 714 115 13 743 304 3 211 18 11 8 54 354 5 4315 83 369 1 915 729 256 23 1294\n0\t39 405 5 322 42 2 46 223 8061 10 472 79 723 172 5 90 194 8 1379 11 23 64 10 3 1279 328 5 995 38 110 10 6 46 2043 1479 23 16 9 6 48 27 5672 9184 130 24 71 27 648 8 179 7 749 6 1927 26 4 611 30 1 85 25 3713 708 544 253 356 5 503 10 12 237 105 518 5 70 689 34 8 88 87 6 7 318 1 3647 310 19 702 3 7 1 182 8 173 134 8 230 7 95 111 5236 30 1 2751 657 8 332 336 1 74 350 6708 10 12 5605 5255 3 57 2 163 5 3051 3 657 6325 6 229 7 2 91 657 154 1342 40 97 1503 9639 657 157 7 6 229 5053 1661 1661 7002 8 70 34 4 476 56 8 1405 17 8 64 58 302 144 632 3 1468 130 26 37 1366 827 3 37 1370 5 45 23 175 5 64 2 21 2391 1339 189 1 4 368 3928 885 3 719 4 328 1 4388 42 9687 3 17 93 3 1434\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 1242 50 221 864 30 1323 47 4 1 856 8 12 7 30 50 1327 77 160 5 9 8633 15 44 72 5363 3 2117 47 38 31 594 77 110 48 2 3790 4 4296 147 717 13 22 30 5 4 1793 3 10 30 2 6226 10 1662 103 167 2 3131 4 7 1 701 1090 7 653 49 2 658 4 2104 4172 48 2 4296 145 273 11 275 16 723 663 826 285 1 166 290 130 72 8015 11 2306 2200 2 3131 7 1 701 115 13 9330 115 13 10 12 30 1 1 3043 4 66 12 28 4 1 66 61 3634 30 1 58 7200 737\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 20 2 42 2 35 1927 87 10 5 35 2808 42 37 254 5 1431 9 18 197 685 235 295 37 8 495 798 235 52 38 1 994 14 237 14 121 271 10 6 7859 700 280 14 2 170 23 56 64 1 2552 7 25 121 6988 7 9 18 32 5 2724 6 132 2 254 280 5 309 3 7 1 1039 397 4 9 8 24 100 107 262 109 19 205 741 4 1 1 353 266 122 14 2 103 8510 41 2 7859 6 1 59 454 8 24 107 35 40 1 129 260 34 1 111 2086 14 16 492 4018 244 492 28 4 1 113 171 4 1 226 2297 172 3 7 9 21 14 53 14 27 40 117\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 234 5493 1592 9 6 1 67 4 31 4086 1320 35 6 1424 7 112 15 2 948 287 15 912 27 40 684 59 5 2033 11 1 948 287 6 630 82 68 1 282 32 25 35 181 5 26 1506 15 1 734 2 103 1298 395 2250 6 2173 11 25 430 6 246 31 1971 15 1 1204 1791 4764 385 15 31 11 1 282 1791 34 5485 1 749 393 6 13 3422 46 2431 5 5401 3 24 2 379 3 102 374 5 22 385 15 1 6410 11 97 346 6781 4 36 2 668 8743 22 16 1205 3242 9 21 6 78 52 1535 341 52 68 1 9899 165 7 1 993 816 3969 3 5260 1 697 5643 4 1 22 37 1698 11 1 5520 2717 6 9812 13 200 1 6 31 1438 224 2079 4599 77 2 364 364 3 52 684 85 3 334 587 14 2 2791 4 382 684 1545 76 335 9\n0\t30 2 1355 35 310 32 1 1692 28 1393 7 1 615 85 16 4 4093 7 2 9467 178 11 5388 4 1 434 30 2 53 604 4 172 4678 63 785 1 3934 427 6 2927 59 25 2135 3 2 2068 179 17 775 3370 696 178 7 2 18 13 150 1227 96 11 1 2757 557 7 109 69 75 6 1 2271 5 216 45 42 20 1503 740 1 1080 181 5 39 10 34 125 1 572 3 30 403 37 25 5361 49 1 16 665 3019 65 2 282 44 111 5 569 3 6935 2 7 1044 4 1159 23 63 202 830 1 206 29 1 2996 6940 3 7366 15 25 221 115 13 92 940 3164 952 6 93 167 402 69 94 1 8757 8576 1 1428 432 5940 3 1 67 7297 3 8414 160 1677 3 20 591 884 1497 734 5 11 1 6905 2858 855 121 3 940 6747 5 1708 306 1190 69 1 2213 3180 4 569 22 69 3 420 457 17 128 76 149 227 5 1116 69 55 193 42 20 591 4981 41\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 482 164 5569 6230 5569 4256 565 74 5569 1109 5569 1804 4256 452 641 8447 2740 7 576 663 1 166 232 4 2921 12 314 5 4376 1 3734 195 10 6 314 5 1643 110 245 11 101 1113 8 96 1 18 123 4891 7 6786 73 10 266 5 1 1626 4 3035 3 215 1109 7 2 111 11 6197 5 3622 23 190 20 26 15 1 1324 4 75 1 1585 12 5513 17 261 63 230 2 356 4 7061 16 1 663 49 5458 88 549 1126 19 1 1214 395 18 93 8984 1 233 11 51 61 58 5458 7 1443 183 1 510 482 164 758 126 1441 8 338 110 1 538 4 1 847 69 258 1 567 383 69 6 7449\n0\t4 1 22 240 3 24 43 1267 1548 14 2774 4 48 9 3682 485 36 7 1 802 4 1 3 82 6650 22 93 1476 292 127 2686 32 1 5 1039 795 7 2 2352 11 151 1 6650 176 3 13 92 113 341 178 7 6 31 980 7 66 4657 1035 5 3964 2 5774 941 5 43 3129 395 941 6 1 315 58 364 1104 1 166 941 66 2215 449 4587 5 9617 3 1 1727 2914 3 2 4657 418 136 60 123 298 4365 3 44 7 44 525 5 3964 9 941 5 1 2602 3129 3411 33 39 820 51 5088 29 1159 791 1437 48 9 1184 482 287 6 242 5 42 2 46 211 1146 17 10 40 4524 4657 6 403 2 941 11 12 6915 30 315 1 181 5 26 11 315 130 26 446 5 3471 9 941 94 2 1516 1574 8 73 42 7 62 3342 41 9540 13 6144 1090 843 985 47 4 1731 9 21 666 2 103 222 38 2602 157 7 1 5126 3 243 52 38 296 3283 7 11 166\n1\t17 741 65 20 355 48 27 909 7 25 46 1162 1 120 191 98 934 15 62 1261 3 1 161 1313 191 15 1 2631 189 25 2277 16 2 5428 3 3 25 3 2094 13 92 67 6 1816 3 1 4887 4 1 647 62 4322 3 8309 6 1086 3 1683 1 129 1273 6 627 136 1 120 22 1618 3 20 28 5321 29 513 1 21 6984 6847 1 161 1559 1676 3 25 2277 5 149 31 3 289 75 27 3 1 635 3258 1 5717 51 6 93 5946 519 169 7109 29 3271 5011 1 21 93 1 53 3 91 4 2094 1596 6136 1749 1231 796 3 1384 5 1 803 13 92 3387 505 3 1769 22 34 7621 1253 5 1 82 9 2182 1086 3 1321 1117 1512 3 6889 148 807 14 2 4818 1 21 9350 627 6429 3410 3 1687 2354 1 4720 13 2361 24 4826 11 1 393 1 158 17 8 87 20 3237 436 10 88 24 71 4684 15 2 264 2526 17 95 7801 7 1 790 21 54 24 71 243\n1\t2283 431 628 688 8 24 5 134 10 1026 1 347 243 3 10 271 77 185 4 347 4069 1 102 1 53 188 22 11 1 238 6 595 240 3 43 4 1 847 6 169 1884 16 42 290 1 91 188 22 11 10 741 2507 140 1 102 197 95 1122 4 3132 5 2410 1 28 8846 3 1 847 276 169 2431 1074 5 2001 5544 115 13 3616 20 14 91 14 97 134 10 705 688 1 8699 414 238 324 6 1 147 4 1 2207 4 1 29 225 3101 9296 472 1 263 745 2538 40 367 11 1 1139 324 1685 122 5 284 1 5082 66 7 473 2200 122 5 932 28 4 1 700 1189 251 117 256 19 158 37 72 63 29 225 1479 3101 9296 16 11 646 186 1 1139 324 4 2207 4 1 3557 125 1 414 324 4 1599 9851 13 743 1450 47 4 2 4146 4 237 364 1330 68 1 8699 414 238 2614 17 1677 774 14 4817 16 596 4 1 1402 3 21 2639 4 1 2207 4 1\n1\t38 25 101 2 112 15 415 1424 1757 5 122 303 3 1907 27 1225 77 7440 35 6 101 1525 7 44 2473 30 2 3518 3 2832 810 6199 13 92 84 759 1483 2 1344 188 22 288 1095 327 216 45 23 63 70 194 3 8 173 26 2705 1705 7440 123 20 17 123 2 1516 341 604 15 1317 53 7 2 156 941 2139 15 5124 22 3945 3 7717 642 31 5583 3 299 7172 140 31 8547 13 4804 7 1 201 22 1549 1599 794 1796 3 50 14 1 466 13 6 7 1 750 4 1 4188 35 4094 327 216 45 23 63 70 110 44 2745 5217 22 2406 60 12 93 2 178 7 1 8480 1073 1 161 5500 744 372 13 8824 3303 40 71 19 9 21 73 4 1 4946 4 4110 2190 14 4139 54 24 71 1 9501 4016 5167 11 5420 3 61 102 52 6392 7440 6 514 14 3 1 4682 2378 1 668 2139 5 5507 5 15 709 3148 30 3945 3 13 158 84 4501 53 1249 3 7 2 1219\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1416 28 4 1 5153 4 1 661 69 9 21 6 20 1050 5 26 740 1 401 2226 124 4 34 13 614 23 219 9 21 3 179 10 12 235 82 68 360 786 369 79 118 69 1712 278 6 14 53 14 10\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29 25 80 3 5582 183 417 40 2 346 1174 8 396 96 5700 6 7 368 3 9 21 280 6 28 4 25 1293 16 137 4 23 35 99 25 249 983 9 6 2 46 264 3 1904 1223 1 18 554 6 20 990 779 6 1 859 147 17 243 10 6 1316 3 1 607 201 4 1100 2121 3 8161 1487 6 2 425 3922 292 8849 63 70 3 492 1515 4162 4716 40 2 1056 3775 45 20 14 379 6 831 3 28 3966 144 27 1136 768 7 4637 6 1130 3 20 1722 1321 29 1 35 165 1695 4973 2 327 111 5 1017 102\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 159 9 18 8704 8 173 241 89 132 2 1189 108 145 93 2 206 3 8 118 48 8 9 6 20 8244 17 8 64 1 795 22 2267 7 1 166 1165 15 1 5815 32 2455 58 441 58 640 2798 58 4641 58 6527 162 162 39 2213 13 1118 80 4 83 1374 9 18 6 16 1 710 7125 20 16 2533 33 56 241 11 6 1 864 7 93 16 130 582 253 502 8 83 56 118 45 72 63 637 9 2 141 300 2 203 3662 3 72 560 144 2224 165 132 31 1854 7 9 12 2 3933 17 213 3041 2 53 493 4 2550 32 1 3093 24 58 312 48 2 223 111 9578 81 2117 32\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 311 1 1340 3 4 34 8801 42 407 19 50 923 5929 9 28 93 196 2 1195 764 19 1 6198 1777 6 2 5901 35 4364 5 186 1 3287 3048 7 157 3 9737 34 9872 27 93 4364 5 597 1 28 326 27 3 25 923 139 8050 29 3 549 77 5780 4968 1777 3 1300 1583 5 1 344 4 1 135 51 22 892 274 1657 7 28 132 1146 1777 533 80 4 1 8831 19 1 540 2138 1945 3 5375 32 2 423 766 40 2 453 30 307 602 130 26 266 3361 294 202 2448 1 389 131 15 25 3211 472 408 1 918 16 9 3 1490 2146 1745 1 250 833 788 3712 11 23 63 42 2 1152 1 518 5382 2772 2021 295 226 4403\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 534 5953 987 70 260 5 4360 9 6 2 391 4 15 9939 19 110 42 39 31 489 108 42 31 2868 3020 18 15 43 4 1 210 121 8711 3 2 67 14 904 14 95 5711 32 31 1575 298 416 589 135 835 527 6 11 345 8110 12 77 372 1 510 8110 5100 242 5 8477 11 372 1856 6 1 5597 4 25 21 13 3514 1081 7786 6 93 7 1 18 3 60 963 432 2 854 42 232 4 2 1865 1277 589 15 1 3781 210 288 3020 7 110 17 10 123 24 529 4 8010 17 207 38 513 175 5 118 2054 1 3020 6 1227 31 315 200 1 1250 3 49 1181 227 5 152 64 2 5495 4393 1181 1463 15 146 11 4831 2 388 32 2 388 562 89 285 1 362 6521 4 1 1 74 1 4781 847 6 56 11 59 53 16 203 5121 11 175 5 64 346 529 4 1349 3355 30 1117 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 436 1 2760 4 2327 6573 117 3030 5 95 704 10 26 2 1158 2 3236 41 2 108 2327 276 36 2 288 224 19 1 537 3 1 2733 67 4 2472 7 5 352 122 5423 28 4 153 90 188 95 828 42 1941 5 134 1 2532 15 91 1456 55 16 5544 45 2 635 61 5 99 9 141 3719 24 5190 3 100 175 2327 5 3771 26 16 500 830 1 5757 7 1427 1075 8999 49 33 357 2467 94 101 256 19 207 75 9 54 473 47 45 5757 64 9 2803\n0\t19 1965 1548 818 95 52 4 611 42 2 21 38 2629 19 3 2091 1262 1512 4 882 41 24 364 3 364 3283 5137 15 239 349 11 896 2224 165 9 7 1 466 34 148 4138 25 102 3 15 1 103 1037 19 194 39 36 1 32 298 416 35 94 1 1187 4 50 4438 112 796 259 35 39 195 2307 411 2 13 437 3490 31 3490 2 6545 786 1690 1720 19 15 11 181 5 24 969 23 2 163 4 4056 3 139 23 63 2951 34 1 4 2 17 83 504 199 401 5 1259 5 917 116 2255 855 129 140 116 102 594 18 136 23 186 224 3855 3163 144 83 72 39 369 622 1271 5 1 7678 4 48 23 1690 1951 2678 50 497 6 622 76 963 24 134 146 38 11 229 207 7 20 6 53 14 23 96 10 705 3 2056 5643 22 468 26 8981 1 1844 19 116 4512 182 65 36 257 164 204 7 1 425 3863 19 3 2777 7 116 813 15 2 388 443 7 116 5361\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 40 3577 9080 5529 5675 1326 4133 10 1 321 16 148 2558 3 3836 9227 7 95 6499 39 73 3 22 2 342 35 780 5 26 1040 153 467 51 213 169 4991 3122 16 2025 7 110 8 54 229 10 14 2 1040 141 17 28 11 63 26 3281 3 336 30 81 14 109 14 5726 3 1098 5 3258 25 1676 1 111 257 1342 153 5975 199 5 634 95 3 11 6 48 1 189 122 3 9 6 373 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 1150 9 30 6633 8 3394 94 2 5990 4 1 8743 11 9 12 2 471 1670 42 2 441 3 8 1331 6 1002 687 5821 45 23 22 2925 19 1 859 23 229 76 6330 1 4 1 17 8 214 10 243 7191 115 13 150 24 5 920 11 145 2705 30 1 4 622 7 9 471 10 8086 1 14 43 426 4 4 231 1353 3 4590 954 129 6 11 4 182 7 17 10 46 4251 4 9 1342 3 1055 61 16 3 29 28 272 1 950 5 2 5784 1320 2250 38 188 11 478 20 34 11 264 68 1 6808 4 43 8199 38 5377 5784 5616 794 7 2 1058 13 3616 3394 8 1331 11 42 1 426 4 177 468 36 45 23 36 9 426 4 1689 3 42 407\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 1728 1 898 47 4 79 49 8 12 2 9754 195 8 149 10 52 1474 68 3903 17 15 43 167 6363 529 3 15 2 232 4 3526 538 5 10 11 8 3704 488 209 5 96 4 194 1 119 6 243 3094 2970 15 43 232 4 6280 45 51 6 2 465 15 9 141 10 6 11 51 22 568 9941 106 162 1303 41 240 4216 896 1 393 271 19 9117 253 2 5261 4730 2281 291 810 94 2 136 15 2315 2467 3 1 94 10 6 213 46 782 463 1 595 176 4 1 18 93 557 421 194 253 10 1030 14 2 52 68 146 89 16 6247 17 10 6 31 665 4 124 11 22 1550 89 4151 37 8 4254 203 596 5 99 10 3 230 2 222\n0\t4 1 210 104 8 24 117 575 74 4 399 2 95 199 591 2 3720 7 127 413 22 1 113 4 1 113 3 22 4286 5 62 1 8481 33 1720 6 1477 3 33 186 10 46 1067 34 1 111 32 1 2046 5 1 80 5811 1176 8 88 100 64 2 1176 4 95 2468 3639 62 9319 189 1 2046 3 1 3419 31 3419 2457 35 1171 14 1 129 262 30 3286 2647 114 54 26 4 25 3 3544 98 32 1 10 6 58 1197 1 2875 7074 5 2702 2 1813 5 352 7 253 9 135 45 95 1910 4 2 1176 89 1 1234 4 4271 89 19 9 33 54 26 5733 825 362 7 62 895 5 26 14 2446 14 888 5 925 33 83 5680 3 55 1271 5895 3 2951 2245 6296 49 8 12 2275 29 75 1767 33 1012 1 1176 136 1767 265 54 100 26 8 118 2239 157 7 864 54 20 2373 18 17 9 6 125 1 401 5 1 272 4 101 2348 8 54 20 354 9 18 5 4315\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 5630 1315 16 9 18 73 4 43 1681 5407 82 68 458 9 18 6 28 4 50 42 548 5 134 1 4822 1 1363 168 22 903 1024 3 8 96 8812 1018 1059 1 270 2 103 222 105 78 4 25 77 110 10 181 36 62 6251 39 1421 5 70 383 3706 245 9 18 6 1462 3 10 198 151 79 7039 10 40 2 163 4 84 623 7 10 37 10 151 79 539 14 530 8812 6 2 1016 353 8 191 289 37 78 7953 9 12 74 85 121 3 27 114 6545 1 280 2589 550 8520 1072 6 332 1051 1 212 201 6 48 8 54 867 425 16 9 108 83 773 1027 468 2580 8381\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 56 79 11 10 165 1001 1 191 26 56 4051 7 4084 8 63 96 4 58 82 111 1369 263 5960 48 8 175 23 5 1064 6 133 1 124 8 12 507 1140 16 1 1488 10 343 36 101 7 2 820 65 267 1957 106 1 259 6 2057 19 25 2919 3 116 1157 1057 20 2926 194 39 507 56 91 16 122 4 9667 56 36 5 118 48 1 445 424 497 10 191 24 71 402 14 1 21 538 6 56 4878 8 175 5 787 1060 716 143 1376 5 17 1 864 6 16 126 5 1376 5 1259 1397 24 5 26 1 164 35 1059 450 41 2 37 830 11 7 263 9 259 165 11 1504 1333 1502 213 1947\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 804 4 9 18 6 2722 19 1 305 7772 2 7135 3548 2 6871 9630 11 153 17 1 18 1082 5 70 19 15 110 378 10 16 4132 1507 200 2 183 27 151 1 184 220 1607 83 5576 78 32 283 2 635 188 827 42 2 678 1 18 40 3505 71 32 2316 95 308 1 9630 6 1 18 105 7513 11 205 1926 3 175 1 1204 1 18 15 39 102 7472 1 3 599 32 13 150 173 365 144 261 54 1431 9 14 1211 1 1511 213 211 41 42 52 36 686 1055 4093 4 1 11 205 8044 3 2426 66 7 473 32 5184 3 1 1162 657 207 229 2627 17 197 43 15 31 2742 959 11 698 1 18 6 311 31 8037 468 321 31 483 3861 5501 4 267 5 149 95 3127 13 252 6 52 36 2 598 889 294\n1\t23 328 254 2160 9 360 299 1029 3 519 9167 21 289 2 170 164 35 100 5627 17 5 2198 48 12 1137 1 9444 4 25 1386 707 4 4318 5 64 1 25 417 1147 3 375 82 53 417 636 5 90 555 209 3040 33 544 346 69 1147 217 1916 544 31 7774 5 652 5 9686 3 5 3081 16 1 5 186 5 20 59 64 1 7105 17 5 64 127 84 2269 6215 5 134 1 170 1185 4714 6211 7 2472 449 3 5 9 4922 54 26 31 33 1640 1153 3 98 33 256 62 486 19 998 136 781 1549 474 3 3159 4 299 5 136 3244 64 75 27 63 7 473 131 137 166 5 508 2572 32 337 19 5 16 1 808 2146 69 1157 7 25 4355 8788 319 15 25 1137 2 558 5504 25 360 2618 649 1 234 11 1912 87 209 306 69 34 23 321 6 449 3 2 526 4 1185 417 5 1594 3 474 16 1038 187 3 34 1 559 31 918 69 58 28 422 1071 10 1129 7062\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 2060 1258 5 1 5626 462 5009 176 9554 6 2 163 52 36 80 873 2433 1 67 6 20 14 14 1 67 2480 200 2 206 35 6 1673 2 67 38 2 1 274 6 30 31 651 35 285 1 1673 4 2 249 131 155 7 1 1 206 6 1 59 28 35 159 9 880 45 23 24 107 395 206 6 1 3 338 194 468 36 1272 3868 8 336 1272 651 2 163 52 68 2 323 782 3 1577 108 2\n1\t0 0 0 0 0 0 0 0 0 0 0 2003 4270 11 31 2342 191 1369 25 84 2576 3 1449 19 5 31 1 4213 3 46 2586 1170 587 5 34 14 218 800 4 432 1770 16 2 170 164 5 9155 3 13 7624 6091 3 149 122 2709 2 156 3188 16 2 103 454 30 8972 1574 7 9 1723 3144 7 1 13 4052 270 25 5255 1450 349 161 1732 25 5 414 15 25 3 304 59 5 2033 11 1 6 2 13 7624 157 6 4079 14 1 112 27 811 16 9 103 5705 282 432 7 1 4270 11 3503 122 5 1369 25 632 19 59 5 2 170 8845 13 677 22 97 584 1208 9 81 22 3 1 1615 4 3695 1986 554 16 257 1214 1128 5 3949 4 172 4 224 77 2 4 1794 3 156 76 597 9 305 516 15 2 2570 13 92 1813 5805 554 6 20 11 1111 14 8 214 1 478 3444 34 125 1 3 88 152 64 1 388 5805 456 7 375 546 4 1 108 496 1901\n0\t97 1714 32 1 215 3103 253 379 31 7 9 324 49 60 12 2 287 7 1 215 6 39 28 665 4 144 9 153 4142 13 92 121 213 78 828 123 1 113 27 63 15 1 4948 17 27 173 552 476 12 2 709 1744 600 17 93 2 514 353 14 27 9805 7 218 3 7 1 25 2328 88 24 1066 737 17 1 2256 263 153 55 187 122 2 3614 105 565 379 76 1564 23 7853 94 910 1452 64 75 521 4353 186 16 23 5 175 5 768 11 6 93 2 1152 73 60 6 93 2 514 2922 246 590 7 102 4340 453 7 3 3 630 4 1 82 171 87 591 109 6062 13 2181 1595 9 21 37 78 11 27 6642 1 21 7 15 411 3 2975 7 1 7672 33 2108 5 645 34 1 260 5167 3 1 21 554 6 2 709 3665 42 475 19 388 94 2 223 1112 125 87 139 47 3 149 11 2939 34 1 215 6 53 16 6 47 6891 35 62 13 47 4 843\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28 4 1 80 509 45 23 63 55 637 10 656 8 511 99 9 45 10 55 1168 65 101 43 232 4 4717 141 66 10 301 1 233 11 317 133 2 346 526 4 5901 81 7 1 1692 6 56 33 89 127 2329 4 104 16 37 35 61 33 56 7514 16 49 33 89 9 50 430 185 4 9 18 6 1 1203 632 3 42 1 59 302 8 2167 5 3143 47 9 141 66 653 5 26 185 4 2 1216 3156 2297 18 3 94 283 1 82 104 7 9 2297 468 853 11 10 3852 1677 1939 37 45 317 7 1 1646 16 2 547 1222 7 1 4905 8 354 39 183 5388 3 1 570\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 48 88 24 71 31 1286 549 4 1 1669 21 38 7 1 7223 395 1546 1 4030 4 9 21 2418 19 903 3349 94 903 3349 3 401 10 34 142 15 2 4481 103 19 5199 3472 117 94 1905 29 58 85 114 8 117 230 3643 16 4507 4599 41 3308 7 62 9522 474 1126 727 779 114 8 230 16 1 1 67 427 385 1633 5 86 2674 1526 2582 3 1 59 177 240 3 3245 38 9 21 6 1 1528 4507 4599 2176 2 10 5193 38 1099 269 77 1 135 884 890 5 11 185 3 1899 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1140 6795 3760 17 8 88 20 70 140 9 461 1 1077 12 38 14 761 14 33 1 121 12 1 67 40 71 248 3 2427 3 1 593 12 115 13 1582 485 36 2 2598 21 5603 17 180 107 43 4 3 33 152 176 138 68 9 10 784 5 24 71 37 33 339 4535 1104 20 2 20 2 1392 58 28 35 55 2363 57 2 2481 48 121 1306 10 12 2 46 345 1262 28 4 50 13 252 12 38 1 210 180 1586 398 5 4431 66 6 330 59 5 506 32 3836 6225 180 162 422 5 134 38 592 13 499 5933 2 13 92\n0\t15 174 633 3028 35 557 1057 3 418 4667 174 1 1554 22 34 7895 14 22 13 677 22 2 604 4 462 6604 75 78 85 40 168 22 167 2179 3 757 5 264 120 1339 2684 253 16 103 4 95 5250 2 163 4 168 3970 120 1323 3 8539 41 1157 3 8539 3 3272 103 5508 480 1 7752 4 387 97 4 1 120 22 198 1727 1 166 519 1 7752 4 85 907 49 72 64 2 823 16 1 330 387 72 1006 75 223 40 11 823 71 9252 3 896 29 225 28 4 1 434 81 83 291 5 24 71 1155 30 13 92 506 999 5 564 28 454 30 44 7 1 174 30 122 7 1 3 174 30 44 6 25 6407 41 13 92 388 1009 1203 40 2 51 662 95 7 1 108 1 7681 1203 40 2 7249 4 275 7 2 3 5703 2 526 4 415 7 2 5149 1 1284 7 1 7249 6 7 1 141 17 1348 117 2898 132 31 3 51 6 58 132 1361 1 506 6 3806\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 88 9 26 30 1 166 206 14 83 176 195 41 91 13 23 59 24 5 1498 1 943 2561 168 7 9 15 696 879 7 83 176 195 5 64 75 78 40 433 13 13 2663 1 1227 7434 2999 2 222 127 2491 145 1893 5 481 552 9 461 1 119 6 1011 1 121 6 1974 3 1035 29 25 6151 4 85 22 13 5827 9 28 36 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 873 25 6 28 8236 18 66 76 256 2 2618 19 39 38 8254 3374 596 4 549 6334 3 76 229 36 9 461 10 123 2292 5 917 2 2441 11 6 3944 986 127 663 4 1524 7523 34 1 1 790 67 7 2231 3635 1236 10 45 23 64 194 1286 947 16 1\n1\t49 1074 5 1 344 4 1 13 614 28 9 18 457 2001 5049 42 46 806 5 8950 10 14 174 772 1145 1724 21 15 91 293 363 3 245 11 54 26 2 14 480 86 10 6 5096 109 248 16 86 290 19 1 401 4 458 1078 11 1 18 12 89 49 1 3720 1592 12 38 5 905 3 12 128 2 2831 147 9198 42 1154 38 1 4 22 9432 28 570 177 1822 5 272 47 6 1 240 111 1 263 7142 1 1830 189 647 5376 1 2566 3 11 5027 189 1 7331 1010 7950 3 1 1302 1010 14 9 2378 84 168 189 1 102 6580 7540 13 2120 1677 774 1 3762 4 1 484 779 1 7436 1216 4 218 315 218 3395 6 373 2 1681 382 2956 2905 4 203 703 15 28 4 1 80 240 8228 4 9408 2895 9 4060 4 3423 203 3 1145 1724 6 28 5733 2107 2067 11 55 195 1510 2 53 6079 4 1033 9053 4 102 4 1 80 491 171 1 203 870 117 8637 4592 3 4928\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28 4 1 700 1406 584 117 2 67 38 1 598 2118 7 5240 1556 4660 3 2 654 2 558 35 5 26 39 36 25 1383 277 598 603 3 16 239 82 237 660 1 4 3170 6 2 306 3 2566 16 28 174 3 239 54 26 1774 5 5320 25 221 157 16 1 53 4 1 1715 5 26 2 2169 1221 2 7 4909 17 63 100 11 5368 664 5 25 1055 245 2641 22 20 89 1869 5 62 1055 479 89 140 62 5 5320 16 1 2974 53 4 2349 440 29 154 473 5 2162 25 17 76 27 117 1 5368 27 37 2 138 164 68 8 7806 28 4 4589 3156 3 2 425\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 567 383 12 1 113 177 38 9 141 73 10 419 23 449 11 23 54 26 283 2 1532 135 1589 11 567 383 16 6050 79 14 1 6004 7 2 2690 8908 7215 50 3462 61 8880 7 4276 5 9 12 51 105 78 7 50 114 1 171 24 5 946 1 206 5 26 7 9 114 8 70 50 4967 29 1 1009 657 4512 8 159 9 21 7 1 9 54 26 1 59 1675 8 76 90 38 283 2 21 29 408 125 2 18 8531 73 29 408 23 63 473 10 1294 61 51 95 1362 745 14 1 1446 1185 57 25 2103 258 7 2 1238 82 68 11 9 6004 337 32 242 5 26 2 1073 5 2 231 589 5 2 4162 10 6211 19 630 4 127 1608 3 1 1327 12 565 44 278 12 1 59 267 8\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1915 23 338 1 5922 4285 139 99 11 805 73 9 12 58 106 774 14 53 2 18 2014 1398 6 229 1 80 761 129 5 1 412 7 1058 1287 25 6 464 3 27 1308 29 25 221 716 15 31 489 5473 66 6 38 1 59 1094 8 455 29 1 3447 20 55 1 374 338 9 28 8639 3 374 539 29 235 1705 552 116 319 3 139 64 155 7 238 45 317 56 288 16 2 299 3200 231 2803\n1\t63 348 60 2788 48 123 1 4946 4 1666 258 29 1 625 1780 1 4 1 707 6 75 123 9 32 1 2460 3 1486 11 5029 4 1 3 1 72 190 830 1 172 220 24 248 194 17 123 5482 1 644 6 9 31 6 2 2603 198 2443 38 75 41 106 5 820 41 48 5 134 7973 127 5445 5 35 24 5 474 364 68 27 123 48 27 2788 41 6 9 25 111 4 242 5 508 30 403 10 5 75 264 6 27 32 669 867 8 2564 835 1 3 6 51 628 189 3 3 75 264 6 1 1124 213 27 128 403 194 1034 10 424 7 1058 2842 5043 8988 161 308 8 6834 362 16 28 7 2 251 4 650 703 16 2 223 3166 154 277 41 681 1507 224 1 54 209 2 976 7 5810 15 2 8 24 58 312 704 9 12 41 8 12 11 3575 17 24 58 312 48 8 512 485 36 3483 58 29 4822 8 87 24 2 2823 1024 35 181 5 24 2178 25 32\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 37 8 83 2704 10 16 1259 646 26 46 236 43 84 121 3 211 456 32 1 1805 1440 2 170 9592 4 416 615 47 27 153 118 14 78 14 27 1304 38 1098 27 271 5 2 346 2430 7 7505 16 25 73 2 1327 303 122 16 2 329 14 2 249 25 8765 6122 1553 30 25 652 122 65 5 33 352 2909 25 895 3 131 122 1 8115 6811 11 209 32 101 2 1207 378 4 2 2228 35 39 451 5 90 319 794 181 5 26 306 16 97 4 50\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 644 1625 942 79 227 5 9175 2424 1 1771 245 1 5864 18 6 332 7696 9 6 20 1 210 21 117 1716 41 1 210 21 9 3002 17 10 310 1589 13 92 250 2272 6 1 21 20 1311 48 10 451 5 1073 1217 1794 3205 1 67 6 1476 14 10 1819 15 1 4 17 1 21 6 2 2908 48 418 47 14 2 2715 240 954 736 8 333 7 1 888 98 271 400 7 3 77 2 46 534 3 3323 5921 9124 130 118 1824 3 1147 4685 6 14 22 3 4346 912 8 63 59 114 9 16 1 13 252 6 2 91 21 7 167 78 154 625 42 20 722 42 202 37 8976 11 23 88 202 5062 3069 16 297 27 2723 3 1 1005 824 22 39 2724 2 21 5 26 1013 23 332 24 5 64 9124 41 4685 7 154 28 4 62\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 997 9 21 7 38 8684 19 388 30 680 3 197 1311 48 8 12 7 1987 97 203 596 190 24 1155 9 517 10 12 2 687 1641 21 3 1 879 35 114 70 10 143 36 10 14 10 12 20 48 33 405 5 1861 1 845 1505 22 229 1 1318 10 6 402 1274 17 39 2900 11 3 187 10 2 45 317 2 325 4 1 7933 13 499 40 627 4982 7 34 32 263 3 1190 5 121 3 1 1641 2330 115 13 4550 1409 2 21 8 128 24 19 388 5 9 1393 841 10 689\n0\t18 117 89 73 37 97 124 1417 66 713 3 1200 7 1 210 111 5 86 5168 308 971 36 3328 3 9052 7775 89 104 36 3 7 31 991 5 6381 2 170 1754 482 971 3 1063 3380 5 90 124 5 6381 2 315 1754 137 104 22 3746 1339 7 2 3 1 102 654 3 97 508 32 11 870 24 14 113 8 1374 71 47 19 408 388 41 8411 479 1 1052 534 13 278 7 9 424 34 188 46 452 15 1 260 593 3 263 60 88 262 1 574 4 7902 415 3 2315 3574 1107 60 276 84 3 40 1477 1585 6 1 651 180 117 575 19 1 28 874 42 232 4 9167 5 99 44 525 5 1708 44 6637 32 172 881 6934 17 145 273 60 965 1 13 614 23 175 5 64 2 184 445 18 32 9 1592 841 47 660 1 6753 4 1 7959 4297 32 73 10 153 186 554 2556 42 1184 374 372 15 1 6999 29 2 580 440 5 134 2730 51 39 247 261 35 405 5\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 40 223 71 28 4 50 1522 5178 4 31 6074 3854 292 10 6 373 20 7 1 166 3631 14 1 2577 3 6 2 7448 3 2831 2915 249 324 4 9967 821 361 258 1078 86 386 1 1003 720 189 1 821 3 1 18 6 2 53 628 14 1 2411 11 6074 29 1 182 4 1 67 6 5708 204 3 3546 15 275 78 52 7048 5 129 7 1 344 4 1 1533 8 179 1 120 2163 5 2074 1 871 61 2257 9071 2530 1 514 427 189 3 1 1055 15 2 2278 301 433 7 6512 2939 7798 2088 2465 44 2742 3 129 14 1 11 44 280 7 817 6 3546 15 1 9348 72 118 32 1 1533 8802 280 6 3091 47 483 109 7 50 205 1 3 1 4620 6711 11 1 950 6 4962 15 7 1 821 22 1124 204 7 9 4006\n1\t886 3 2 315 886 1457 7 1 166 33 61 3298 3 1595 239 1715 28 1925 16 8250 1 315 886 6672 1 808 974 3 44 1756 1287 28 349 1372 1 808 886 303 44 60 643 1721 1438 1046 3 44 1757 12 1 315 7677 308 154 3302 1166 1 795 3640 730 7 9 2473 3 2 808 886 1141 1721 1438 2100 183 848 1 315 886 13 92 7547 741 25 901 30 667 11 1869 5 1 172 32 944 1 808 2201 130 209 316 3 564 1756 1287 17 27 126 11 9 6 39 31 161 13 172 13 252 6 1 46 477 4 1 135 51 22 97 1552 3 3917 7 1 135 42 138 16 23 5 995 38 2947 1623 23 56 194 1 67 153 90 3 39 917 1 21 15 86 360 7671 1 1612 2891 1 1 1 2036 363 3 1 304 13 2315 7711 738 82 236 2 2801 30 4304 19 2 207 146 5 1153 1395 3 83 1 886 7 808 1141 1756 13 614 819 338 6298 841 47 93 6298 4767\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 9998 18 901 6 1 210 4 1 3600 3 6 1061 3905 11 2 681 938 123 20 2 21 6555 345 6765 14 1 9915 6 89 5 176 37 2212 42 254 5 99 550 14 1 626 1336 31 9779 4 6434 1070 123 25 6279 7486 1 22 2384 3 59 673 48 51 6 4 1 119 1781 1 593 6 2060 3 1 607 120 734 46 4618 2047 6 167 14 1 2626 17 44 672 40 515 71 2484 16 43 2650 2 3125 5916 30 97 4 1 1681 3 1 21 29 2 7341 1850 191 24 71 1573 7 25 3830 49 9 10 63 1582 26 1113 29 225 4 9 18 4801 42 58 1197 11 10 337 826 5 388\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 56 560 75 9 131 266 7 1 3 1 344 4 10 6 37 38 101 31 482 11 88 26 2 184 302 16 43 4 1 3 6471 204 19 9 8 112 1 131 17 10 6 15 43 3 8 230 10 472 1 806 111 47 30 2636 13 3 4058 297 29 1 182 4 1 330 4207 2975 1 1945 4258 19 95 449 4 1 131 1013 44 129 6559 19 2 7 1 750 4 43 35 10 12 2 722 9493 3 19 1609 782 880\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 12 1 210 18 180 117 1586 286 10 12 93 1 113 108 4984 5585 215 1324 22 377 5 26 573 207 48 151 126 7311 1 2519 1352 36 50 4898 5143 109 6 229 1 113 3692 7387 896 1 119 981 36 146 47 4 2 7010 7193 8 63 830 10 944 1 1063 9171 65 94 2 223 366 4 355 298 3 372 941 941 9479 98 1472 1154 371 16 4167 1032 165 5 1928 7275 66 6 15 4765 3 40 7338 6673 7 194 5 2909 2 1145 968 6775 1 7724 113 312 7387 7 698 7 2589 1 528 4984 5585 215 18 2962 4765 7338 268 1032 2203 464 13 1627 139 99 9 141 17 83 751 2420\n1\t136 1 1615 4 1 518 4978 3 362 5 89 2 7 1 9 141 32 1 585 4 28 4 1 215 5556 3 66 12 89 7 2 696 7469 12 2 20 59 458 10 12 2 3014 8 241 745 4 3343 1966 12 1 59 28 35 114 20 4279 419 10 2 1795 5551 14 8 3 136 8 83 96 9 6 1 700 21 7 1 1561 3 8 192 20 2 325 4 1 5556 41 6136 8 87 96 9 6 279 13 1701 28 1689 9 276 3 1047 260 4508 16 3152 1 3064 453 22 34 452 742 6 1317 204 14 1 522 2041 588 155 32 2 3 40 2 1590 5 550 2356 271 155 5 1 5895 3857 453 27 419 7 25 2491 36 1 184 3 136 5429 6 59 3021 5 7 9 141 60 123 10 7696 42 20 2 84 4692 1 494 6 650 89 65 4 3 2 163 4 126 83 1 212 4 3 5443 3 6357 22 489 675 1604 8 12 9619 3 45 23 36 2041 581 23 228 26\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 1728 1 930 47 4 6116 8 24 5 920 11 8 1019 80 4 1 21 133 140 50 17 48 8 159 12 56 3681 8 47 1767 102 41 277 268 285 1 4811 13 50 430 1637 61 1 478 3 1 478 12 591 84 3 1 1167 12 56 1119 3391 8 284 1339 11 42 43 1021 766 3 379 968 11 89 110 16 43 302 11 151 9 55 3421 16 437 115 13 614 23 335 1 3130 3 4 782 104 68 9 28 6 16 5439 46 3604 3 2 84 18 5 760 15 2 658 4 417 35 112 5 99 104 65 19 2 2467 36 103\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 497 45 23 22 77 1 1045 3 203 691 10 228 26 1470 1 121 12 1976 17 20 1051 1 102 3523 624 22 377 5 26 3334 17 22 262 30 515 972 1624 35 590 47 5 26 2290 3 29 1 290 1 119 6 2054 17 1 67 123 2248 200 2 3947 1204 28 3584 704 317 7 7562 41 1 2906 181 5 333 2583 189 1 3468 1 3403 1908 6 1012 14 246 2 16 6195 795 66 59 780 5 137 4 11 48 45 1 102 624 57 71 54 1 4 2091 43 48 35 43 326 1 3403 1908 228 55 825 48 1 5169 45 23 773 9 628 83 230 819 433 2357\n1\t1 243 2742 4 15 1 1205 2509 3 53 1569 4 1 4 34 4 66 22 1463 14 101 598 13 4511 4 1 238 270 334 285 2 1702 3 17 7 1 226 1146 94 40 1 2736 1 5716 3 10 418 5 15 5039 6315 190 24 7979 188 17 16 97 172 185 4 101 598 12 1 1514 5 998 1 1034 228 134 5 1 11 5980 57 31 5472 1 1514 5 90 716 38 11 12 1381 13 677 6 2 53 278 32 3328 14 1777 1 3 558 9390 35 432 1 2796 4 1126 3 31 1474 2691 32 5483 14 2 622 7 1 245 9 424 8201 227 16 2 21 38 2 346 2712 3769 2193 31 665 4 3322 121 15 58 148 376 453 17 15 307 253 2 7785 5 31 313 135 10 1419 1 3 4 97 52 1058 5923 581 17 86 2485 3 2314 22 58 364 1535 16 34 656 10 1373 28 4 1 1340 19 117 89 488 15 1 888 1675 4 4418 3 6 50 923 1522 738 1 7349 8221\n0\t2634 6 2 302 144 3460 411 76 20 9 135 10 5040 4031 14 28 4 1 210 124 4 34 290 1 121 6 2680 1 263 1419 593 3 1 206 411 153 291 273 19 66 111 5 186 9 135 1427 2640 181 350 111 3171 27 380 1095 3 6 39 385 16 1 6480 3460 3 3813 22 964 3 4286 10 6 2 1152 11 33 1130 62 85 3 253 9 1378 4 2 108 3460 3 3813 2546 5 1295 730 15 490 57 1019 172 47 62 19 1 368 561 57 459 71 2 376 7 25 221 2401 121 220 1 3818 7490 14 1 376 4 132 1280 249 3 18 3156 14 3 1 7541 17 9440 5351 3 3 1196 1 4418 4 1443 15 25 871 7 1 1127 158 218 6653 3 2 4016 4 2349 561 63 71 107 19 249 289 4667 155 5 1 3818 3 12 2 401 5444 7 1 267 4 4100 27 63 26 107 7 3330 249 5015 3 7 580 703 10 6 2 4897 11 33 4786 5 26 107 15 9\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1195 1493 682 13 150 36 4452 25 7615 3312 6 2763 7 2 85 4 125 1 401 2263 8 338 1 733 189 1 435 3 4757 8 338 1 231 1 9590 276 3977 17 10 6 2 5571 4 1 5757 3339 3 1 434 42 31 2102 9 6 2 1872 441 20 2 2338 65 4653 1772 99 10 3 4951 19 116 2558 583 3 48 1 18 228 24 5 134 5 23 3 468 26 13 916\n0\t405 5 64 52 4 25 4142 13 292 10 666 19 1 305 1009 10 6 2 4785 21 3 1123 9 14 2 6063 27 40 2 156 456 3 6 19 412 16 20 46 269 29 1 182 4 1 158 27 6 676 31 1988 3 27 153 610 822 65 1 412 136 27 6 926 37 1288 254 3760 56 20 279 10 32 11 272 4 13 92 124 376 1024 3042 6 84 193 3 46 806 19 1 6551 3 25 129 6 39 37 327 3 232 3 2 306 9380 4 2 2112 3719 26 109 428 77 2 13 1627 16 306 121 5115 4 1 879 180 1586 420 1427 85 5 600 218 1161 1786 4397 5 1621 2 259 7 394 3 3 925 105 68 6285 3 7 1 1013 23 230 36 2 374 21 41 24 374 200 14 1070 4 127 22 4 25 4045 17 22 169 1474 124 16 2383 316 6 56 162 52 11 2 607 2342 15 39 2 156 45 95 13 858 16 20 2 91 21 17 10 93 213 412 4097\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 17 255 105 9221 72 459 24 227 4 9 3 72 175 146 13 971 130 24 58 922 283 660 62 387 20 144 81 64 59 14 2 13 2718 22 39 1711 20 3 1348 380 2 4078 38 161 1287 80 81 5130 320 41 5130 175 5 4995 3 1 147 3157 4 18 5130 365 2 4885 9 130 26 1 74 326 4 9578 18 20 1 570 788 69 300 1186 971 130 90 1\n0\t13 1 111 33 1049 294 1288 6 5006 3 1 18 289 1243 47 4 1 15 1 886 7 808 3 25 1327 30 1 744 247 55 51 11 2016 17 2 282 654 6409 1306 2734 47 25 1653 3 6 2573 5 4359 10 6 2 2012 233 11 114 20 24 2 1653 11 2016 1 3877 419 122 58 680 5 3 14 521 14 27 12 7 2364 33 4104 122 1695 33 143 55 24 5 1743 550 33 61 37 542 11 3945 61 214 19 25 3374 10 12 4562 33 93 134 11 1 164 643 11 366 12 20 294 94 848 3159 4 7 1 103 5815 63 23 830 1 3877 11 33 57 39 643 174 1438 1 1653 33 57 19 2760 11 12 1521 19 12 93 2012 20 5 24 71 318 94 2295 8 88 139 19 3 19 75 1 164 33 643 247 294 17 646 582 675 45 23 54 36 5 118 52 841 10 47 13 8844 1 324 15 6569 45 23 17 83 351 116 85 15 9 7943 391 4 1847 2803\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 18 3223 13 92 234 6 1167 554 16 1 1438 3 1 1011 5160 3 297 40 39 36 7 1 3383 178 4 1 682 13 92 18 40 360 3975 4060 4 9016 265 3 13 252 18 6 46 2763 391 4 1117 13 92 133 839 6 36 819 71 3154 7 174 684 3 519 3234 4370 13 4567 561 18 130\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 313 1105 3205 262 78 3 9341 68 1885 2302 124 7 9 1818 49 81 771 38 3366 3 5749 75 87 33 2108 5 1899 125 127 491 895 2 67 4 7015 6967 3 1 102 171 3007 109 2193 3 1 32 3 6403 22 1381 14 292 6 3435 258 49 1 549 5 378 4 19 31 125 1618 6967 10 2182 360 120 35 131 1 423 601 4 3285 31 1105 1 570 168 15 239 4 1 250 120 22 1529 428 3 6189\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 18 418 47 15 43 3864 66 270 670 681 1452 10 380 1 1048 3469 4 48 6 160 778 9 88 24 728 71 248 15 121 17 378 23 70 2 3864 5957 521 94 23 22 15 120 11 23 825 2 103 2354 359 7 438 9 6 34 23 76 825 38 450 1 119 418 5 70 142 1 2435 3 98 6541 140 1 389 108 20 59 123 1 119 8722 17 23 228 55 1006 725 45 116 133 1 166 108 8 24 100 262 1 388 3699 17 118 81 35 3702 32 50 2308 704 819 262 1 562 41 20 9 18 123 20 70 95 828 552 116 319 1013 23 36 5 2460 29 1 6247\n1\t103 188 11 131 65 1 21 14 101 89 30 81 1997 4 296 622 3 1615 409 28 6 1 7498 1541 4 1443 600 55 1163 97 96 11 1 4324 6 4478 4 482 49 7 233 59 4 1838 22 1786 482 1827 1786 409 1 21 7274 1263 2 178 106 2 4 264 9893 6001 1786 8 192 31 296 1786 14 745 6 7766 30 7701 600 31 35 12 1 74 5001 643 30 598 2495 7 1 296 392 4 8051 409 14 16 1 1786 293 733 1786 189 5980 3 1443 69 48 293 733 1785 3025 3 118 62 622 49 10 255 5 5980 3 1443 409 33 515 118 62 958 105 115 13 1627 320 5 99 9 18 15 43 4 116 438 7 1 576 3 43 4 116 438 7 1 1124 409 42 678 600 304 600 4608 3 1269 17 80 4 34 42 2 21 11 54 100 117 216 45 10 61 89 7 1 226 1801 172 409 63 23 830 45 1 67 12 274 7 9373 3 200 2 598 2169 643 7 6058\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 2 148 2055 3 169 9 6 48 2 148 953 18 6 34 1395 8 4847 77 1 388 6686 2 18 197 765 1 389 19 1 155 3 3388 16 1 1293 8 12 400 619 3 8 56 381 1 171 3 62 807 8 179 33 34 419 2 84 278 3 89 62 120 3735 1 119 12 109 179 428 3 10 721 23 942 32 357 5 1812 3 100 165 509 16 2 625 13 150 496 354 9 18 16 137 11 36 258 4023 11 22 109 3620 3 879 11 359 116 3726 373 2 394 47 4 394 32 437\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2199 2 325 4 34 1 376 2748 214 9 2 1832 2541 3 8 560 45 1 4264 333 4 1738 76 205 1061 341 2496 3 1332 4 7016 3 2 2 14 61 97 4 62 7 66 34 168 186 334 19 1 4491 93 1478 29 225 1882 19 1 215 2149 2 138 570 1635 68 9 16 44 919 1010 2257 5730 902 1240 1 376 2748 1561 6 51 95 82 93 61 9 12 1 226 431 4 330 9113 1 1022 1168 6965 15 2 17 15 1427\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 6 2 15 58 28 5 4201 16 3 58 28 5 474 38 361 480 1 562 3117 4 2 964 13 1510 25 692 3940 763 1426 14 9535 2 7881 1807 47 30 2 3657 4 1700 17 1031 492 42 1258 5 24 31 931 7 9 919 25 41 25 13 92 21 16 2 5576 16 2 4264 1105 136 6913 30 2 53 7 31 2045 361 7 9 1723 2 249 651 5428 809 1866 602 15 1 540 1098 6007 876 44 376 869 5 9 607 1538 292 805 1 263 153 187 44 78 5 216 1566 14 2611 7482 999 5 3643 480 5353 119 13 252 18 6 3806 16 137 35 36 133 3366 25 3488 3 335 1 82 906 189 1 263 3 2132 8 6 3806 5259 86 1953 2322 4227 3 1486 5 1771 1064 725\n0\t454 5 36 69 17 1 545 1513 2724 357 5 9322 768 6671 1803 6 25 7184 3 7 9 324 22 138 4462 5 2 41 1260 68 3 1337 1 1646 4 1 212 1971 7798 6 105 627 31 651 5 26 5 1 280 4 3 144 12 60 89 5 176 37 9348 6 377 5 26 2088 3 69 20 5 176 14 45 444 160 5 26 3091 142 30 7 1 398 1361 1 3580 40 71 65 3 168 29 1 769 49 3074 1036 60 1371 1803 10 255 577 14 1169 73 9 1567 1336 71 9727 620 3 3091 385 533 1 135 48 12 160 926 15 60 337 32 6484 36 31 296 651 242 5 44 221 1778 29 1 2353 5 34 47 296 8757 3171 3 98 155 5 706 29 1 714 2958 9 3295 29 1 714 1 347 3 1 184 21 324 182 15 1 2279 4 3074 3 1803 9 324 4089 19 94 1 4 1 2279 197 152 781 199 1 13 1601 7 399 2 243 284 1 347 41 760 1 5456 324\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 1 3209 3 206 1576 5 1089 4418 15 1 18 14 1 6532 405 5 87 15 25 1224 33 6211 15 437 423 1650 726 1571 923 3 7319 37 11 8 1454 343 2610 30 239 5717 8 241 8 54 1365 1 869 4 265 2746 15 1 272 4 793 4 1 454 523 1 108 197 8 63 134 11 8 12 46 1527 30 1 1324 1782 5 7702 617 152 4555 47 39 1052 7 2 46 223 290 8 54 112 5 149 2 111 5 131 10 5 2349 159 10 29 1644 21 3517\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 96 45 23 22 77 1 7223 232 4 1689 14 8 7806 23 22 5 351 38 5298 269 4 116 157 133 9 1092 3245 1 2084 4 9 1483 2 1317 9083 1055 2219 19 7223 1353 385 15 2 604 4 2831 109 587 171 997 7 362 341 8347 42 14 45 1 1278 4 1407 224 3 636 5 787 2 331 2206 158 7693 34 1 298 985 341 4 1 1636 189 1 537 3 1 98 256 10 7 1 1191 4 2 342 4 3 419 126 38 2 445 5 528 110 924 2 3210 17 7 86 221 111 10 123 1708 75 323 678 11 85 1220 1 1 3 1 4 1 674 20 16 3622\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 28 1675 4 1 3717 11 2 967 6 68 1 1766 86 267 29 86 1293 9 18 6 2 884 238 3416 267 106 146 181 5 653 154 8689 29 52 68 28 7014 1 389 410 1309 29 2 13 4395 2 184 3320 5 24 107 1 74 18 17 86 20 2 13 358 93 24 1 3320 4 101 2 2234 19 1 2045 4029 864 397 249 251 132 14 6703 7243 7 9 6 2 3923 18 16 1 3923 1754 1826 83 64 10 45 23 662 1100 15 3 86 7337 24 7311\n1\t0 0 0 9 562 6 299 3 10 40 2 119 11 23 88 152 504 5 64 7 1 40 71 5539 30 2 1355 1 707 6 101 30 2 678 3 36 137 4 3 22 3825 34 125 1 3317 35 6 516 127 88 10 26 4976 109 27 181 5 24 590 125 2 147 93 123 20 291 5 26 602 14 27 6 39 142 11 40 791 2591 122 2 243 53 7249 109 3916 32 82 2641 3 679 4 2669 406 76 1 5251 1 1076 6 20 5 254 5 1351 1095 1 2026 15 1 22 243 1434 23 70 5 7378 23 549 47 4 4125 3 10 6 595 299 1 3317 245 11 6 93 2 904 2115 1 8120 6 20 34 11 84 14 34 23 87 6 140 1 707 14 1524 25 5 1 23 93 87 20 24 78 463 258 1074 5 2 134 358 18 388 3118 1604 10 151 65 16 1 243 91 8120 15 1 82 824 258 1 471 37 26 3023 5 64 1207 3 16 28 1305 238 3485 6480\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 59 3045 177 38 9 21 6 11 10 12 1312 74 184 993 6404 13 860 6 3 3532 17 1784 7 9 2940 103 1045 203 5754 1312 289 411 14 1 1053 8682 606 2083 353 35 54 390 2 6898 6963 4 1 21 1926 39 681 172 13 926 7841 54 134 27 1595 9 21 3 11 8865 12 1 17 307 40 5 357 1339 3 1 7180 6 4709 1684 3 54 11 72 34 57 2716 11 3293 13 92 119 6 884 3620 3 292 2674 128 31 548 594 41 1943 3 42 56 299 5 64 1312 7841 183 27 726 1 800 4 341 183 60 726 2127 2 542 493 1172 79 1 305 2 136 155 3 42 2 1993 5 50 1312 7841 21\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 2 846 770 29 408 3 701 6 50 1173 5428 69 501 2843 1816 53 1569 3 6236 16 1 663 4 1 2097 1209 880 75 1438 72 34 61 341 75 1438 6 8 591 381 1 767 15 82 6236 3467 36 988 1 91 559 198 70 1 53 559 1720 778 1 460 674 335 730 3 22 246 2 2871 197 605 730 105 13 1268 144 61 37 97 4 1 2669 415 41 29 225 5819 12 105 86 254 5 830 44 56 2844 47 235 14 3067 14 31 13 150 449 72 617 107 1 226 4 2097 1209 3 231 19 257 29\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 112 9 141 17 173 70 48 6 7 9 18 6 20 5 3704 81 35 83 36 9 18 191 26 742 3 2402 17 8 173 241 11 6 561 4173 516 34 11 3 8 192 273 11 80 4 1 171 3 1624 7 1 18 40 89 21 183 476 3 51 6 2 147 543 7 1 108 2501 35 266 9398 4997 14 1 1 5922 255 47 4 3 3029 43 467 299 5 1 7 72 118 11 1 112 8373 136 1 5922 123 20 36 8373 3 55 151 299 4 103 9398 4997 35 35 6 1 752 4 1 1 18 12 470 30 3044 3 1 672 6 248 30 2047 3 4327 32 6 201 14 1 7637 4 35 153 36 648 38 1 5922 542 5 1075 290\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41 4 6 2 46 904 108 266 2 1557 35 6 242 5 149 2 506 35 4632 7 1098 40 31 1101 1778 66 32 85 5 290 339 60 39 1271 34 1 82 120 24 2 929 1778 66 6 1 494 6 46 91 3 1 3312 4 10 6 1 861 276 4358 17 207 20 227 5 552 9 9 398 185 4 9 753 123 2735 115 13 1 2281 10 276 36 1 1518 6 160 5 70 2408 17 98 27 255 155 224 5 70 383 3 87 2 797 4061 224 1 11 39 289 9 263 40 58 5056 3198\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115 13 5204 9937 6 28 4 2 870 4 21 11 1547 181 5 24 6478 15 1 1210 5416 1233 195 11 23 118 50 204 22 43 1318 8 96 9 18 123 820 3335 13 4385 292 1 1048 119 69 5204 9937 271 5 147 3820 432 2 3974 3 3700 1 683 4 44 206 6 2 167 2188 368 67 4 1 4795 1 1063 87 1 833 44 2 222 52 68 8499 292 5204 196 44 184 1173 49 1 376 60 213 1134 3 40 5 44 4650 3 139 155 5 372 2 1681 280 7 1 4811 13 5369 5208 13 6867 1 607 201 1680 43 56 84 2263 4028 14 532 6 4092 14 6 4600 395 532 4 1 206 69 294 1 607 278 193 271 5 129 651 14 2 28 85 651 590 856 13 2 99 16 5183 28 4 137 104 11 22 2776 5 90 23 230 138 38 1 234 3 116 5613\n0\t135 94 133 194 245 8 1582 241 11 8 88 24 89 2 138 718 5450 86 1030 5 24 59 723 25 101 3893 7 1 1079 19 970 8 143 64 742 42 2619 371 15 5403 3161 1182 1456 3 10 153 90 55 1 4631 525 5 1030 1 3585 6 533 15 2 202 5704 9695 95 5109 11 1 21 228 152 720 5100 438 14 3651 5 39 5 1 5158 193 51 6 43 240 4784 4 1 4 1 18 2018 31 5875 49 10 792 5 2761 19 1 1850 416 66 1 206 6218 14 2 3338 31 9015 66 791 122 955 14 10 122 5 9 6093 13 6998 515 57 2 402 2039 51 12 128 31 1617 204 5 90 31 1244 2219 19 1 496 6269 7839 4 236 407 2 4 1842 4655 19 1 3 9 21 88 24 1553 2222 1 1670 1 206 2167 5 2158 257 2717 15 9 391 4 66 7 1 182 784 5 26 43 426 4 3919 16 550 42 105 91 11 25 1850 849 17 27 915 31 410 5 25\n1\t3 1 9139 1 3958 255 7955 2720 8 173 320 7 66 1 4608 6359 114 8 2497 5917 3075 4 50 3931 430 6649 3 1664 2 4 211 282 4501 642 3431 9887 5009 4044 19 50 3 50 430 788 32 1 3168 218 265 11 151 79 4243 11 2 788 36 11 7 3 10 89 44 1 4 6649 98 4094 3773 3 42 202 2 16 44 406 412 5024 7 1 211 282 21 395 250 1820 101 11 1 315 204 6 69 44 21 57 223 3 421 1 315 1138 34 72 159 61 44 1191 3 17 1 7162 204 6 52 3 5911 68 44 406 21 9093 278 4 1 788 40 297 5 87 15 6649 3 162 5 87 15 2190 4 611 100 1 788 7 132 31 2352 14 6649 123 204 41 7 1 21 69 64 1 84 16 2 3289 4 52 7615 1 131 741 15 6649 1299 663 22 204 125 1 13 1833 10 12 125 8 367 5 1 493 8 12 133 10 2159 40 2233 248 235 13 872 60 12 172\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 74 350 4 9 324 12 1 113 180 107 341 8 96 180 107 154 324 4 1215 6855 117 1 1273 4 2113 3 129 61 977 10 12 14 193 275 367 1608 9 6 599 105 3 1 344 4 1 67 5 1 580 1025 49 2403 29 399 22 2780 3 256 47 4 639 7 132 2 111 11 33 301 720 1 4185 51 12 37 103 5073 41 55 178 1273 11 10 54 26 832 16 261 20 1100 15 1 67 55 5 5345 1 184 2259 12 11 1 477 3296 37 78 7963 3 98 1 182 2420\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 886 32 9995 6 3905 11 1 84 1744 4182 3331 88 1654 2 18 45 27 405 1467 30 3770 5 25 1885 52 1703 5609 9 21 40 59 2 1234 4 3 202 58 13 92 1675 9986 4 611 1 570 178 7 1 3801 4 4768 4786 5 26 28 4 1 700 168 7 1 622 4 135 10 818 6 279 1 2591 4 2 13 92 1316 1197 12 1 1016 121 30 1 304 5959 44 121 285 1 477 3 750 4 1 21 6 37 2355 60 89 1 82 171 1030 14 7866 378 4 807 55 1 84 561\n1\t1 1105 3 1383 7 1 234 61 2708 7 75 5 958 15 1 5113 4 2 3720 392 944 7 2 864 10 54 24 71 2377 2436 5 139 34 827 36 405 2339 421 1 808 1596 15 10 46 815 1462 142 2 3720 11 54 20 59 1 199 217 808 3695 17 1 389 10 12 11 731 864 4 958 392 11 12 100 220 1 2 3 8960 3310 1121 286 7 1585 7499 13 5 72 63 195 64 11 94 8487 25 4510 29 1585 1746 57 390 205 31 972 3 2169 14 109 14 600 220 25 32 1 199 7 25 507 38 392 3 1 1963 4 110 28 177 11 12 4587 29 31 362 3575 32 25 2886 392 940 1508 2093 11 1544 5 122 34 25 157 12 11 5 2 2169 36 411 392 130 26 1 46 7 1636 189 7 11 42 1 1481 35 24 5 566 3 1288 7 110 10 472 2 15 1 4 1 3720 3575 16 5 475 853 39 75 260 3 2547 25 1508 2 4 4556 36 2443 56\n0\t27 22 152 377 5 26 403 19 9 2439 7 97 3 36 8 2292 5 87 49 648 38 7652 6792 15 1956 35 152 789 48 27 6 648 38 3 4294 5 13 92 593 6 4737 14 530 23 228 504 146 52 32 1 259 35 114 2386 1912 190 17 3255 8 377 27 165 109 1390 16 1 329 3 6345 1 2742 4 2 147 887 7218 3796 116 2128 1 59 28 35 181 5 26 246 299 6 3931 91 259 20 59 123 27 24 2 2340 27 6 28 4 1 156 171 7 9 18 35 190 24 2 156 2547 29 9 6879 3 1722 509 147 717 13 252 18 6 78 36 28 4 127 5194 7690 49 23 149 47 11 116 1992 6 152 2 586 3551 35 181 5 26 2161 5 4258 960 29 28 799 7 85 10 181 1 911 473 77 346 7880 11 22 1256 5 116 522 318 10 13 614 23 175 5 24 2 53 85 3 24 5 2497 189 9 18 3 6927 5791 7 116 186 50 2497 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 2 547 227 983 17 10 12 46 1 120 390 509 94 2 136 3 1 716 905 5 735 13 150 96 10 2167 31 3271 272 7 85 5 597 69 10 12 1790 5 86\n0\t1 7348 142 1 9654 2307 122 3 98 1 345 1368 72 63 64 75 9 1477 18 6135 32 656 27 271 19 5 564 97 1046 27 1281 1141 1 81 35 419 122 2 254 85 7 3 271 142 5 564 43 1610 3404 1046 39 16 43 4267 58 1094 675 27 1583 2 5 154 854 154 85 27 643 7689 27 54 87 43 6653 3 1812 10 34 142 15 28 4 25 7 1 524 4 275 35 12 254 4 27 54 134 24 31 4 98 10 65 62 41 72 63 152 186 31 665 32 1 1540 27 39 165 248 848 2 1277 3 12 19 25 111 5 848 1 59 454 35 117 3010 65 16 550 44 2002 1 5 1 5 3 27 367 9344 875 3 3554 2 3554 25 7796 3 1544 122 1732 43 7 1 182 4 1 141 27 643 102 559 3 3554 7 1 3 643 102 559 30 2 77 62 9 18 89 79 175 5 7009 50 8666 37 565 300 398 85 9 259 151 2 141 10 495 26\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4172 8 336 9 135 10 190 20 24 57 1 3 6075 11 1 2045 368 70 17 10 8318 1882 1 931 1 901 2480 200 9 28 231 32 3 42 1 9833 189 1 81 7 1 231 11 1851 1 21 15 86 1 250 466 266 25 185 46 322 29 58 85 123 27 597 23 5 241 11 244 121 34 25 7854 42 25 711 35 3686 1 131 16 79 1815 49 1 102 61 7 168 371 33 62 456 142 4 239 1885 685 885 2263 84 1249 84 135\n1\t65 3 4958 25 98 27 271 38 253 2 17 7 255 1 568 874 66 6541 1 7010 3 4292 11 1 9851 90 2 8458 4 2330 27 6255 1 874 827 17 521 10 1843 3 122 7 2 5746 2423 106 244 929 5 2 1966 5361 27 748 38 194 32 17 963 1 13 659 2 980 4 1 9851 1123 2 5 4874 25 6766 5930 66 359 122 7 3 27 3902 155 2613 27 411 7 3 6 2311 643 30 25 221 2810 6736 49 10 621 19 25 13 252 18 153 2321 1 233 42 1011 4500 1031 661 104 11 5 26 1087 1 1737 16 2937 6 674 5100 874 7 2 297 422 6 9049 22 6766 3 22 185 4 1 253 10 2 4 1 18 1 1190 6 11 874 160 94 1 103 9851 1180 5 52 9225 7 79 68 97 203 104 13 92 18 6 631 17 10 9737 101 400 6810 16 86 42 2 38 1703 3035 3 66 173 352 1707 1 683 3 438 4 261 35 1834 3035 14 2 1574 1907\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1292 12 1233 17 924 1766 1 121 12 17 1 148 2636 12 11 51 12 59 28 1399 3 2 28 29 656 9 6 2 21 16 349 35 24 71 369 47 19 62 221 16 1 74 290 83 4000 5 99 10 15 116 2802\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1453 20 1581 17 9 6 2 46 53 21 2835 3 6 1547 2 1837 4773 315 3 482 4982 1 803 13 890 2 259 57 1 6968 3 1 8692 24 5 1584 224 307 27 310 7 4208 15 183 33 13 5891 109 4454 3 1 121 6 1051 742 4696 14 1 976 466 6 53 17 6 301 125 7 1 121 30 776 2093 14 1 613 3 783 138 68 3 1580 14 1 1547 337 19 5 309 696 120 7 43 56 330 1090 2041 41 392 502\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1465 2822 6 7871 30 5190 4 2 29 27 1912 4 3005 142 25 221 1737 65 2 2 7416 1089 25 7796 3 101 125 31 1089 6793 94 25 417 64 122 125 25 7217 2 1946 4203 11 33 4813 77 5 543 25 4 448 33 139 7 1 750 4 1 366 49 58 28 6 200 5 352 49 188 70 47 4 13 92 526 390 711 742 432 5279 3 418 848 3622 6937 4 3988 289 65 14 1 8406 1272 4 9067 466 2851 4 1 526 60 5488 2822 75 5 47 4 25 823 3 123 2 891 265 941 15 3640 2232 1131 5 47 1 599 290 34 4 1 2100 131 65 14 4237 2 1420 1 9952 129 7 31 296 3020 7 7593 1 263 6 331 4 119 8432 978 494 3 1054 1035 29 1211 53 5614 216 3 797 567 1079 6094 30 22 1 59 188 95 3 87 43 759 19 1 13 358 47 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1976 1 5586 2 267 3 337 5 99 10 101 1 74 1042 4 6012 6 20 2 91 1689 41 16 11 729 4 95 3002 73 1 74 3 226 124 650 6219 571 3 43 13 588 5 13 7 386 1 21 6 38 403 25 692 691 1547 42 761 9 85 94 10 40 31 2850 3 2 6219 13 267 168 3 955 2970 589 3 679 4 13 6 91 6 761 737 5271 195 27 6 588 4 717 17 2192 3 701 3 43 547 216 7 43 52 124 1 353 7 122 472 2 3 971 2665 19 25 3 1854 66 1547 433 42 1388 94 3 22 91 6 586\n0\t2 311 2334 2 4 447 3 323 345 11 511 55 786 1 80 325 4 978 1575 3535 1512 4 2 658 4 3 62 2753 6678 22 7813 15 168 4 2 9681 246 3243 447 15 2 2784 27 44 20 55 2 938 94 3 60 7911 122 5 55 45 60 40 5 1555 122 15 82 3129 8 83 70 110 6 9 377 5 4735 2 940 976 73 42 56 3847 3 155 5 1 658 4 7152 3 619 30 7104 7770 19 62 111 2293 1 526 730 7 31 2841 913 429 106 33 24 52 4904 447 3 963 735 1757 5 2 903 35 1141 126 513 1 121 453 22 1 3637 5419 3 7794 3 593 6 904 3 8 63 34 458 642 1 1103 4 2241 17 8 310 105 542 5 1573 1 21 142 285 1 4613 28 4 1 7112 4769 3738 3 3448 200 28 4 1 624 3 2307 44 2 9681 318 60 1345 44 3 15 9 980 424 7 50 5621 1520 1 1409 4 2119 2605 1913 28 5 925 3 300 55\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7607 9731 40 2 3712 2314 19 1 3699 2733 200 3 590 1208 689 1 3014 8087 4 1 18 7 2542 2152 14 3 59 2601 5 86 4117 14 2 2763 3 4 3242 893 3 10 6 7 1 4270 4 48 8 637 2314 1068 7 1 4 4668 1 1404 4 417 3 3 624 3 2 494 6 892 3 8 12 6129 3565 30 75 1080 27 2151 1 148 1428 4 2001 1579 1209 3 4467 22 277 35 385 15 1 9888 4 62 937 1136 2640 262 30 22 590 9473 224 19 62 221 1422 30 2 633 7257 1 4760 2 684 267 237 52 3476 68 80 1210\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 555 8 88 187 9 18 2 978 363 3 1014 1 59 302 5 64 9 18 6 37 23 63 64 75 91 10 705 1572 357 15 1 635 35 266 48 2 8 339 241 1 98 51 12 1 648 5 2085 8 497 33 339 39 24 1 18 26 17 4 448 33 57 5 24 122 1221 20 146 8 405 5 1861 17 7188 419 2 84 1835 1074 5 1 293 363 297 32 1 2698 5 1 3187 12 146 8 88 87 2758 3 828 8 1067 894 11 2142 57 235 5 87 15 1 2675 283 14 1 18 12 20 55 404 2958 8 87 20 96 1 846 57 117 284 1 1158 283 14 162 12 1 4272 8 96 1 347 12 1111 17 9 18 36 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 462 666 10 2616 13 1964 20 2 21 4907 779 76 8 634 36 1 344 4 1 81 5581 19 9 682 13 9 18 143 24 2 3780 2039 17 1 119 12 46 109 2427 1 121 12 1477 3 1 861 12 4407 10 485 36 23 34 57 2 163 4 299 253 9 1540 8 5630 1709 47 4 394 14 1 478 12 627 19 59 28 1354 378 4 17 8 830 9 228 24 71 31 8287 7 1 5486 4 1 9074 13 6144 373 26 3698 47 82 104 1160 30 1568 5698 115 13 201 3 7040 8 1479 5439\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1 536 434 3 34 4 1 82 104 127 559 470 176 36 33 165 371 3 829 9 15 62 4714 35 24 1580 860 28 3390 49 33 61 1120 22 301 3 8 149 11 4 2399 104 3 8460 4 408 388 1131 6 138 68 9 21 2243 1 5390 189 126 9175 1 1572 64 45 261 6 1230 227 5 751 257 3037 1348 422 5958 50 5 137 602 7 1 14 9 753 6 595 3061 17 8 12 1 35 284 116 1429 746 3 4323 1 2803\n0\t8 320 101 7 1 63 16 172 183 235 2267 8 83 96 42 2007 17 42 20 56 53 1497 5297 7022 12 167 501 17 1 119 6 10 232 4 7472 29 1293 1 201 6 167 53 7 48 479 17 316 23 22 59 14 53 14 1 1471 7022 1177 9 292 8 88 24 27 143 1654 34 4 194 8 179 8 284 1339 41 679 4 247 91 17 27 373 40 43 1187 7 939 292 25 216 19 6 162 386 4 1744 217 130 359 122 3297 16 2 103 136 9950 8 39 449 1 131 47 2 1420 17 300 20 55 11 2043 1709 172 10 37 45 23 175 5 64 2 21 11 23 495 70 78 7178 17 495 56 812 463 109 9 6 16 1038 8 173 320 1 226 85 2 21 57 71 4823 37 223 183 475 101 612 217 59 19 305 29 656 10 12 327 5 64 5297 7022 217 2047 8265 316 371 220 62 313 286 20 78 81 24 107 218 195 1351 65 11 313 21 16 43 148\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 745 6403 6 37 7023 14 31 353 11 25 47 95 4549 41 623 7 1 3251 27 7902 3 15 8259 14 45 27 61 2 1974 4646 15 55 25 4693 2816 1920 2 6791 19 25 83 3673 2 129 37 78 14 31 8881 353 101 470 30 2443 31 8881 9325 7 1 9275 2 345 1491 845 2 103 3700 31 6392 1886 7 2 9999 94 355 998 4 2 3369 8022 2911 2660 7 1 1751 1 390 43 1386 3 31 1164 17 240 2691 30 1531 6403 14 2 7128 996 22 1 4707 7 15 1 102 951 101 30 7256 3729 35 76 582 29 162 318 33 70 62 1191 19 11 6 46 7682 1 443 1371 44 8987 40 58 412 1761 341 44 672 40 58 2552 154 85 60 1986 44 28 6 9470 5 463 6113 41 7138 32 3615\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1224 761 464 861 2170 350 4 1 119 384 5979 200 1965 1548 3 1 82 350 384 5 26 2665 19 1 574 4 3216 11 54 29 81 5 357 2 13 1268 4 1 113 168 12 7 1 1 28 106 444 7 1 1400 15 44 8 83 365 144 3771 757 656 1 18 384 1770 5 90 2 272 38 235 10 88 3 7417 648 38 54 24 71 2 3501 4 1 682 13 443 216 6 2696 4 3 301 20 965 41 8406 5 2 108 1 21 65 39 5 2248 576 2 163 4 188 3 1 443 200 146 4382 165 161 1 74 85 10 12 42 36 1 971 22 1841 5 333 65 34 9 1988 1131 33 143 175 5 1337 8213 13 3221 18 15 1461 6454 7 1947 11 7007 553 79 20 5 99 10 32 1 13 743 986 18 16 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 2 9 18 88 24 56 71 146 5417 17 1 2511 7 4909 6 4419 3 1 250 120 22 243 2513 3 2014 12 501 3 1 1267 4 518 2847 12 109 17 1952 9 18 12 2 184 351 4 290 1670 1 18 5 1775 11 1819 15 696 1626 3 1 166 1048 85 6 1 84\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 219 102 5309 1742 19 2388 29 2 417 2168 1 804 4 9 21 6 169 783 315 3 1147 3967 7 2 267 15 2 163 4 5796 17 10 301 1082 5 8 219 10 15 38 681 417 3 6025 1309 16 1 389 135 1 716 801 22 156 3 237 22 20 211 7 95 1 67 427 6 4419 3 33 100 1836 1 106 123 1 4 448 1 1836 5 11 6 58 28 9 21 1419 95 426 4 267 6822 3 14 2 156 82 8734 24 367 1 59 177 11 151 10 55 202 279 133 6 1490 6107 14 1 630 4 1 120 22 9462 1 2392 37 1779 42 670 69 3 6 11 788 533 1 21 377 5 26\n1\t3082 322 27 12 2457 7 3 8 143 64 37 8 192 20 1722 13 123 2 2038 473 14 1 4 27 3 7 1 80 3 5006 4 5784 23 24 117 107 608 3 123 10 530 25 1897 4 1 4367 6 13 6 1016 6 608 27 12 93 7 3 23 190 93 3082 122 32 34 4 1 27 266 25 692 595 129 5 84 13 16 22 1227 340 16 1 9865 4 1 7 2 135 9 6 2557 14 1 5784 6977 30 5205 542 6 491 608 10 6 862 5394 44 49 60 6 101 612 32 1 8742 3 1822 4 132 31 2864 1223 44 5784 818 1071 29 225 31 918 13 1834 2 293 334 7 50 683 608 17 4485 9 21 5 1 215 1139 21 6 36 4485 5 10 173 26 1613 6880 10 5 134 11 6 55 138 68 1 21 324 4 11 310 47 7 51 6 2 163 5 36 6278 32 1 2364 8508 1 1765 3 1 1759 5 1 1084 69 10 6 2 53 21 16 1 212 1499\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 83 118 106 5 693 5 26 2165 183 444 256 7 174 108 1638 276 36 27 165 25 1921 6067 32 9793 7 140 9 1 2132 2858 478 72 56 321 2 388 7 1 750 4 2 1759 15 19 3 3255 236 58 119 1497 10 79 11 58 28 3638 5 1 1480 2165 3 1113 3675 9 39 153 90 95 2509 987 357 3037 895 63 32 9 13 224 1 210 21 180 117\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 8 159 1 4538 305 1009 16 9 3 1 2384 808 2201 8 343 732 8 12 7 16 2 184 17 4064 4064 8 336 110 4326 3257 4 448 3 11 132 2 2985 130 26 4847 5 1 272 4 1092 101 446 5 284 1 369 818 186 7 1 903 9516 127 8429 245 1 21 6 2 7193 3088 2479 7 3088 9536 7 360 3832 3 1 212 177 1506 19 1 899 3 4927 30 2 360 6986 6460 27 190 20 26 17 7 127 1657 27 228 14 109 26 1943 56 837 15 679 4 877 4 43 2637 1141 3 4301 613\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4780 14 2 2901 56 381 9 1540 1282 2257 3 5744 1066 84 371 3 307 384 37 29 8 179 1 18 119 12 46 53 3 449 307 422 4283 10 26 273 3 760 9869 93 33 57 43 84 5243 168 16 34 137 5243 3662\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2676 6679 959 95 18 11 8086 2 572 4 4302 69 7 50 1062 1 80 684 913 7 1 1162 831 1 18 12 243 2179 37 16 2 1165 6054 3 2 103 19 1 861 245 1 313 67 151 65 16 110 1 723 2479 19 2 9651 3533 15 922 19 62 125 1 448 4 1 141 33 853 62 922 3 905 450 33 241 2524 1 2473 33 875 1356 40 31 1380 19 1098 3796 2 4 666 23 63 99 62 720 32 5 14 1 1101 557 86 1449 19 2350 13 1601 62 922 3 62 22 1 1624 61 1051 1 1138 265 384 46 3271 16 31 684 1101 34 7 399 2 3829 18 16 8892\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 206 3044 6 9 445 21 6784 2 156 663 7 1 157 4 28 1599 3586 35 93 2 35 5375 2 7488 32 25 5657 27 418 5 186 5269 32 1 7488 5 186 3144 5453 4 5413 1890 3 20 198 7 11 9990 48 418 142 14 101 2 2605 158 109 2683 36 458 17 10 196 46 6196 46 7857 145 52 1918 1 10 6 254 5 995 308 107 1815 1609 36 45 816 1504 117 114 2 203 803 13 1226 115 13 9088 9089 9367 196 1435 289 3 5248 115 13 9089 283 294 301 1326 4382\n1\t945 1920 23 76 229 335 10 23 77 1 234 4 2 958 10 6 20 169 33 114 1 847 37 109 11 8 179 10 12 17 32 48 8 63 9623 10 12 1375 10 12 1674 1729 1 2745 5217 22 20 220 24 8 107 2 1189 234 37 109 5148 7 31 1 315 3 482 5652 6 314 5 1633 1654 116 838 5 1 915 4 1 50 430 1380 12 48 33 114 15 99 16 110 1 206 266 15 116 838 3 5034 17 23 22 7366 963 30 1565 1 7845 11 27 451 23 5 8105 1 790 1380 6 2 3061 3 3022 2868 234 1029 15 346 13 92 119 6 17 10 213 1634 10 6 51 6 2 16 80 4 1 580 120 685 126 43 7213 51 6 51 22 37 23 63 230 36 23 22 7 264 1678 7 51 6 43 1357 3 55 2 606 8 192 160 5 24 5 64 9 28 316 5 70 3577 8 93 354 2 46 1114 412 5 793 10 14 1 22 5394 3 1 1079 22\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 1140 5 34 1 3760 17 9 6 2 4118 108 1 121 6 573 55 8705 10 1 362 926 3 153 610 916 8 96 51 12 377 5 26 2 1298 29 1 769 17 10 39 1168 65 101 7578 48 1 1 3751 35 12 848 307 12 28 4 1 328 3456 13 4395 924 1571 3 10 213 55 591 53 14 2 826 3 207 667 9540 13 150 96 2525 114 1 2525 1059 1 1252 3 2525 179 4 1 1292 130 26 4733 3 13 2687 99 9 108 45 275 1275 9 19 29 2 7788 1337 1 4447 47 1 3406 3 256 19 2 53 203 141 36 5494 4 1 41 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 173 320 97 124 106 2 6261 3399 4 2 950 12 37 211 2880 3024 6 132 1 4 2 950 11 244 105 5 26 30 2 1612 8 57 1 53 2902 5 64 10 19 2 184 2238 3 5 149 2 388 5 99 316 3 702\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 275 965 5 90 2 606 9 6 323 151 1922 8966 176 36 881 15 1 9 6 31 594 8 555 8 88 5723 5 70 5271 10 1160 4969 32 66 8 1310 75 63 171 4 9 7281 932 9 8 54 243 1017 1 85 133 2323 19 1 601 4 2 5295 7494 68 4 9 5788 489 4 375 1818 8 195 333 1 305 14 2 19 50 5515 29 6 237 105 78 5 1017 19 9 4285 45 23 56 24 5 24 194 947 2268 33 1337 126 47 94 33 24 3091 126 19 1 16 375 172 3 22 3519 11 33 54 20 13 7017 16 1 112 4 851 369 9 18 1288 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 46 53 3587 8 12 2 222 619 5 149 1 20 169 37 10 130 24 71 5 1484 72 159 7 1 215 1199 1 201 6 1476 292 1 886 255 577 14 2 103 105 60 693 5 416 19 7725 2190 94 399 6 1 2726 16 9 105 91 33 339 24 1459 8 36 1631 6926 1 1 1207 40 617 47 1 82 571 16 1 315 2678 244 2 56 693 5 149 25 25 627 272 12 25 356 4 623 3 25 5 328 2357 27 424 4 611 184 3 627 227 16 1 1 61 1530 292 8 143 36 62\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 617 219 1 18 1891 17 173 947 5 64 1027 10 181 46 240 3 10 12 28 4 1 80 240 4669 180 117 1 1389 10 56 2165 79 3 89 79 2564 1 979 1782 5 1 6119 4 3696 14 2 6961 16 1 1479 851 1956 6 4101 174 5105 15 1 3696 1606 9 21 276 37 1684 3 3 1 353 6 56 8 258 381 1 386 5632 15 1 353 32 1 6866 484 56 8 179 11 1 3356 3 2113 3 851 789 2 163 4 81 321 110 652 10\n1\t165 7 114 60 152 1023 5 8503 1 72 22 303 5 6528 10 12 1930 5 26 721 3584 38 1 4159 533 1 158 17 72 1812 1 18 100 56 1311 45 28 41 205 4 1 624 228 26 571 16 9 5291 1 393 12 313 3 1 2439 13 92 121 30 3619 5702 3 2257 9071 12 46 1195 3 109 1613 35 40 71 3 125 152 6834 14 31 353 7 9 135 193 44 1103 12 3270 7706 794 12 44 60 5236 14 1 21 3 1 3874 726 52 7 2964 40 71 1642 457 1 44 212 1516 895 3 3372 14 1 35 1283 615 992 7 9121 12 1 113 278 7 1 803 13 12 4405 14 1 25 3 541 6 31 7 124 36 23 61 17 14 2 2755 7 2 957 234 913 19 2 5 1126 102 1438 624 32 27 57 1 540 13 92 176 29 12 1476 17 10 143 90 79 175 5 139 3617 13 3616 31 548 21 89 5353 7 546 30 1 4 43 903 1192 8 419 10 2\n0\t51 6 311 100 2446 2160 40 1953 2576 14 205 206 3 353 3 40 59 2 4 845 1505 873 171 3 1874 4 585 35 784 7 202 34 124 14 27 40 4 25 7161 1953 121 8491 3301 5 1 6 1 4946 4 1 813 3 840 11 318 98 12 2 6151 4 34 5348 135 9 12 515 1576 16 2 1186 1889 1827 6899 13 39 134 11 42 2 8773 21 16 1 855 325 17 2 3551 16 596 4 5348 1913 596 35 22 77 1 762 130 243 139 3 99 808 3958 1738 1539 8404 14 3346 35 40 5 968 65 15 5348 5 8989 2 5348 3409 32 1628 10 167 78 75 5 87 10 260 3 106 337 5790 13 3986 55 193 1 21 6 2 3170 2226 1507 10 181 36 2 78 1534 803 13 92 302 8 419 9 2 8537 985 378 4 74 85 8 159 9 158 8 159 10 7 1 1091 2939 7 9 2614 63 152 26 8 191 920 11 25 6 29 268 211 17 196 7297 94 38 1099\n1\t248 31 1115 13 3828 24 2746 4569 4500 1 1080 201 672 2447 4 1796 294 3 2884 97 9944 5 932 2 496 2571 231 21 15 2 627 859 38 2566 3 3379 16 116 1658 8679 3 75 519 10 270 97 264 3107 5 90 65 2 13 2120 133 9 21 8 165 2 627 1105 859 38 355 385 15 1 81 11 1555 116 1032 361 300 10 130 26 3021 956 16 34 234 13 361 286 174 1910 4 1 231 4 368 361 1745 2 1016 868 11 6 20 286 2601 5 899 1 238 385 488 29 984 6 5937 13 92 790 176 4 1 21 6 31 7863 3713 1202 4 6126 3 1 2852 120 61 7906 1202 1221 15 1 2745 5217 4 1796 101 2 933 13 92 389 980 15 1 76 597 58 894 14 5 106 1 4050 14 2 255 13 252 6 2 53 231 21 11 863 1 188 11 88 9184 41 537 167 78 361 17 148 13 499 54 26 2 84 18 5 64 7 1 856 3 5 751 16 2613\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 15 22 1681 7478 2956 1 4367 11 24 2021 16 203 104 37 237 29 1 488 657 207 3442 7940 7675 236 20 78 527 7 68 6392 35 96 1190 6 2 8968 16 2 5306 6199 13 872 207 34 23 70 15 1 9 6 2 21 11 12 89 202 1135 7 1 971 3268 1432 10 54 24 71 327 45 3719 10 5 158 17 9 653 3438 42 2 46 167 21 15 2 156 2438 17 1 226 7729 6 3806 16 1\n0\t5 2476 95 171 121 3689 41 10 398 5 162 8 969 9 21 5 64 492 27 6 28 4 50 430 171 17 9 21 12 174 3285 16 550 1 263 12 37 565 62 12 39 162 5 6601 116 3495 77 3 34 1 120 61 102 713 5 634 36 2 254 3404 17 1 263 3 593 143 55 1959 122 5 87 227 15 25 129 5 90 10 52 240 41 535 13 2663 1 478 363 4 1 29 1 477 4 1 21 2397 36 1 4271 4 2756 2871 2962 49 33 22 4733 7 2 10 12 56 1021 3 33 143 478 36 148 2 388 562 57 138 478 363 68 9 135 51 12 93 2 56 761 9268 29 1 477 4 1 21 35 12 2 1910 4 1 9216 27 57 9 296 8849 672 36 2 282 6228 456 36 70 1 47 4 3 48 22 72 160 5 87 27 2397 36 2 2784 14 2 1061 10 12 211 5 99 3 10 89 79 539 854 16 2 156 579 1230 135 345 27 76\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 50 1520 6 31 1409 4573 145 20 273 45 180 100 107 154 2541 17 8 128 381 110 28 4 50 430 767 6 106 4649 3586 3 70 45 23 175 5 118 75 48 89 10 37 722 1397 24 5 24 107 10 16 4175 10 12 2 37 1397 24 5 24 107 205 3955 174 28 4 50 430 767 6 106 3 3233 2257 217 5744 70 3746 7 2 3498 2276 19 1397 93 24 5 24 107 10 16 725 45 23 175 5 118 75 3 144 11 3136 8 24 97 82 879 11 8 2102 854 307 198 419 2 53 1835 1 397 2217 12 9165 1 1759 61 3 1 523 12 198 46 7 4641 55 193 10 63 26 107 7 944 8 2474 354 23 1236 10 39 7 524 10 271 142 1 1276 16\n0\t868 4 358 14 8 24 107 2428 17 46 13 2679 1 3847 357 4 246 1 182 4 1 21 29 1 357 3 160 155 5 1 357 29 1 182 9 21 314 297 7 1 1009 4 4156 314 7 21 253 39 16 1 3032 4 194 36 2 635 15 105 97 51 12 1 509 6196 673 3139 3 1512 3227 69 630 4 66 89 2 1065 21 95 3606 13 499 6 404 172 4 17 51 12 103 3185 41 3 58 2553 4 15 1 21 4700 38 34 125 1 334 15 58 5306 1821 1 67 12 955 428 3 483 2288 3 1 593 12 1381 345 3 10 6 2 1152 11 81 24 256 65 1231 319 16 52 124 30 1803 2941 118 16 101 7 2 3160 526 3 19 249 253 14 78 356 14 9 21 13 150 214 10 2 580 1593 5 64 9 5 1 182 17 7 1 449 4 10 355 138 8 3091 19 5 1 3837 17 10 56 12 2 351 4 85 3 8 54 24 71 138 142 20\n1\t7 9 744 1 18 57 1 1187 5 473 77 2 686 3 866 158 132 14 5 17 1670 1 18 2167 5 1229 103 19 1 1261 3 52 19 62 13 5702 3 2257 9071 205 473 7 313 2137 3 1 18 6 78 52 38 1 189 126 69 1 1 1 9783 3 9814 4 62 2566 3 1391 1 89 7 1 442 4 9371 9 18 6089 20 5 9157 105 1768 77 3329 41 55 77 1 4 1641 157 801 6 2 222 3 2405 52 19 127 2566 13 677 61 43 119 1931 737 3 43 546 11 39 143 291 1202 41 3735 72 143 230 1 148 1401 41 4 62 1261 14 109 14 72 228 3702 3 72 70 46 103 507 4 157 1137 1 1641 15 1037 372 1 1521 3526 2755 35 152 498 47 5 24 2 683 4 7 2179 9 30 34 24 71 2 78 5151 18 68 10 5265 13 724 1952 8 381 110 1 121 12 501 1 1077 12 3454 3 1 857 57 227 1552 3 498 5 875 1470 279\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1104 17 99 1282 278 44 823 7337 44 514 823 44 7109 17 8430 9 6 31 4368 2342 29 1 401 4 44 3 1 344 4 1 201 61 167 501 7290 13 252 6 436 1 3925 41 7428 956 16 503 3 8 64 52 7 10 239 290 48 9 234 588 2339 9945\n1\t1038 45 23 36 3 1116 1872 589 3 3423 977 30 34 8252 64 592 13 4 649 1 67 4 31 9786 3 4342 1010 5483 3142 35 440 5 352 2 4937 3 196 602 7 1 234 4 5177 413 1699 30 1 4051 2014 5 134 235 52 38 1 119 54 2704 1 4281 4041 8 149 10 254 5 241 261 35 666 33 159 1 1552 9385 39 36 2 1269 5177 8859 9 18 4373 23 77 86 4125 3 116 13 92 67 6 3 1 494 1831 3 1 121 6760 53 6 3913 43 24 11 1010 3142 6 20 2 46 3098 919 3 3307 144 54 90 8168 176 37 3628 17 1010 3142 6 377 5 26 1302 3 8335 44 6 7 2 111 3785 5 1 119 2607 28 1746 8 241 11 31 5 44 893 6 2 1659 185 4 44 6067 1104 646 134 58 13 4 6 2 534 176 29 1 4 423 1109 11 19 2 1367 4 10 76 998 116 838 154 330 136 23 22 4171 3 875 15 23 16 2 223 85\n0\t56 6 1 425 85 16 9 461 8 24 117 107 2 18 11 12 152 52 961 3 15 45 23 175 5 64 2 3765 238 141 83 99 10 73 23 228 1621 1 76 5 414 2507 2086 245 45 23 175 2 53 2655 786 99 1027 8 55 969 1 3795 9791 1894 1359 5 50 837 2156 2016 48 258 3538 79 6 11 178 11 54 26 4056 5 90 12 32 2 5924 718 41 31 161 19 1 199 8 12 2275 30 1 233 11 33 143 256 1 4631 991 7 253 1 397 176 3015 424 14 237 14 8 63 4995 1677 774 95 2918 3 286 15 2 625 3902 32 1 6681 15 25 3 6 556 295 30 2 7058 406 19 7 1 141 3448 31 3962 421 1 7 1 673 1729 178 23 63 1325 64 1 223 4 1 4144 7 1 1276 49 421 1 3305 112 110 8 354 23 99 10 15 43 417 3 2 53 1234 4 4868 1024 59 98 468 365 144 180 71 1341 227 5 1017 19 1 7772\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 1524 4847 1971 1738 14 2 6842 35 1633 151 417 15 1 6036 809 71 2490 5 564 44 30 44 6818 14 1 2490 9982 2744 1 1106 32 25 221 3290 15 3 494 11 1108 1 1128 3 31 1276 4 7043 125 1 389 6015 3 206 776 173 70 47 4 44 480 34 1 401 860 2989 626 763 6065 14 28 4 1 6 15 58 3895 5 1 67 3 120 35 1550 209 5 500 7138 32 4577\n0\t1394 29 2 8 365 2930 35 7813 57 58 5993 4 3831 19 1 1009 1394 30 98 60 12 2 770 442 2930 17 35 114 2108 5 6322 2 935 7249 4 48 784 5 26 31 4602 2041 5 6883 4102 5 220 82 2380 6 347 10 784 5 27 2615 23 5402 7 698 2095 2 347 30 42 14 37 97 24 1459 65 9 305 370 19 42 28 349 1372 195 19 2 3 8 2006 578 16 28 326 5 1743 2 641 386 21 27 57 3639 3914 66 8 96 40 100 107 95 309 480 1672 115 13 172 1372 8 12 2490 5 1743 174 21 3594 8 193 27 57 1066 47 1 50 12 19 6172 263 3 1176 9048 3 1 21 152 485 2911 7 16 48 10 2 772 1557 67 3690 1 3319 2064 4 624 7 480 2506 204 3 1 21 40 100 1478 7 95 1672 41 292 40 4382 4826 1 21 40 8898 3 12 311 7563 1042 5 15 1 305 1042 4 102 1210 1482 19 1 166 7347 5358 4 3 4659\n1\t122 2 170 1996 6168 912 27 1487 8 320 101 749 5 64 7688 24 2 2540 14 137 35 24 219 1 3267 22 4108 5 118 11 80 81 549 295 32 849 2467 1427 13 3 24 43 299 371 318 275 422 289 8 812 5 597 23 15 2 17 1 1254 6 59 1756 269 1896 37 23 173 56 26 105 6187 261 35 4263 1 970 5133 4 1 1254 63 48 629 13 92 3177 6 2 222 7 698 42 229 1 8737 180 117 343 133 2 5256 17 11 59 907 11 10 1527 503 66 229 2980 144 8 636 5 787 2 878 19 9 933 1254 3 20 46 97 2349 41 9317 1 233 11 8 152 320 9 1254 29 34 6 664 5 86 931 1380 19 79 361 8 617 107 10 4836 17 1 1254 123 182 19 31 5233 3 8 12 3414 5 64 7688 3 749 3456 13 7414 187 9 1254 1315 47 4 394 2682 330 59 5 1 3265 7901 1254 19 9 6 1 80 180 117 71 1527 30 31 1139\n1\t24 1 869 5 720 1 958 15 6167 68 822 8 639 11 50 4729 379 3 752 2897 2536 5063 2395 26 556 5 31 296 14 521 14 2623 50 752 2897 6 7 5362 4 1 1849 990 3 2 4612 60 459 367 11 60 153 36 246 57 275 2303 44 3 2795 562 32 50 7126 606 60 196 3096 38 82 8336 4097 44 82 2897 40 71 1758 65 7857 1 85 4 3 1790 157 125 316 19 9 1849 6 20 318 2897 54 26 2 170 886 30 98 3 44 6293 2717 54 24 71 3461 45 8 24 5 139 5 2 5 1811 1 296 98 8 192 7 2 5362 2192 3 20 56 3814 14 2 74 3138 783 6293 2717 367 937 11 88 26 556 5 582 5039 6315 29 95 290 1359 1855 1333 696 5 50 752 1083 79 2321 3 875 2257 6 195 1136 5 1970 5858 22 72 117 160 5 773 25 104 45 1342 45 23 1548 3035 4 4510 36 3138 6983 3 512 98 786 87 20 9 841 47 82 104\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 84 4 626 6 91 21 7 154 699 1 1252 1 5801 4404 1 551 4 1384 7 95 919 1 1445 1 2384 505 1 3396 2281 34 90 9 815 1 210 21 180 117 575 8 214 162 8308 837 41 7 95 3293 13 150 830 1 21 1350 179 33 61 253 146 1269 3 2642 15 86 5799 4702 223 3 5731 2762 4459 4169 45 814 33 1200 10 39 1120 503 3 8 555 8 57 100 219 592 13 5827 29 34 4484\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2668 326 3337 7 50 303 2749 380 199 28 4 1 113 453 117 30 31 2099 27 6 609 14 6099 7596 2 164 35 40 6361 35 98 2178 5 787 3 2756 15 25 303 2 109 2149 918 16 122 3 4977 35 266 25 2083 4413 4545 6 1442 14 1 1186 6099 3566 3 1796 6 84 14 1 2832 279 133 16 1 1485 2263\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 158 937 5630 14 31 410 430 29 1 8446 7590 1644 21 6438 6 5487 3 6270 2 754 929 5 30 1843 5 1 346 2370 4 25 3241 5 390 1 3043 4 1 1908 3 475 149 7 25 1948 4401 19 4 2202 188 740 3 4 1 129 4 2 346 3923 9 21 3548 239 4 86 120 530 3913 4454 1171 3 10 758 2187 5 97 3253 3 9483 5 513 3037 10 76 149 8898 7 1 2269 13 614 23 5402 64 1027\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 192 20 2 692 19 9 5272 17 283 75 2107 9 18 424 8 512 5 787 43 708 3 6399 38 110 8 57 299 133 9 141 436 73 1398 6 297 8 555 8 88 1718 8 192 20 160 5 2192 1934 41 3673 2392 17 236 22 188 11 8 56 214 3982 1 111 60 81 42 39 37 9 6 2 46 2107 141 8 551 4 737 8 531 139 335 3 98 1271 103 38 194 49 23 139 5 1 104 6 5 24 1816 3 8 56 381 1 8 2716 7 1 534 5149 2 191 107 125 3 125 316 318 1 4621 1695 987 328 20 26 37 3014 38 110 1479 23 16\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 228 46 109 26 1 1183 4 1 6014 1338 1563 1792 21 9 2885 2677 1859 5469 31 491 201 69 2 809 35 4 1 6014 193 1 119 6 1002 1446 3 1 566 6328 6 1016 14 3708 10 6 6592 4 1 915 729 11 151 9 21 1884 3 3473 1 356 4 5148 16 1 622 3 4 1 5467 6 7 154 20 1031 962 5 1 1076 7 11 166 1537 3594 21 41 294 6856 5 1585 272 7 218 223 5232 6 2 3995 7 11 166 13 92 3283 8 192 6159 5 6 5 1498 1 5467 5 1 133 9 21 76 187 1 166 3 5661 1687 11 23 2830 97 172 989 7 2442 416 622 49 23 2178 4 1 4344 3 5320 4 137 5000 2641 4 1 29 1 182 4 1 158 23 105 228 26 6159 5 637 827 320 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1150 9 18 32 1 4189 4662 254 5 149 16 53 3031 47 4 145 2 568 325 3 9 18 12 2 528 3315 1 6729 6 30 237 28 4 1 210 104 180 117 575 1 263 6 2680 20 73 10 32 1 215 821 17 73 10 197 1229 41 1 168 22 3 83 466 1 545 7369 835 15 1 6800 672 125 4 886 40 103 87 15 7352 12 301 9511 6 301 1698 14 9307 883 95 910 349 161 16 11 3897 664 5 1084 5047 12 285 8272 1 717 12 49 60 3 3897 664 5 1 233 11 60 173 3218 6 34 9080 58 58 1 593 6 1 206 311 3736 835 1057 66 213 1264 1 59 302 145 685 1 21 2 755 6 73 5397 213 31 1140 468 24 5 947 16 275 422 5 7284 116 514 216 77 146 52\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 67 427 12 46 826 890 3 806 5 917 3 4223 2 163 4 267 5 2 272 106 10 39 165 1466 43 4 1 410 384 5 149 10 211 17 8 36 52 1244 13 677 61 375 587 3923 171 7 1 18 3 62 278 61 547 1078 1 1471 6770 12 53 288 14 13 150 83 320 1 215 18 37 8 173 134 45 42 138 41 8350 13 614 23 335 104 36 9 18 228 26 279 605 2 176 3706\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 18 12 1002 501 2 53 238 119 15 2 1551 1234 4 8286 3 566 1025 17 3795 9791 114 924 3128 571 16 1 3310 3 1743 2 156 807 1 18 12 46 696 5 1 795 4 9044 15 2 4388 3962 5994 2 388 5 1 3138 3 5215 5 110 57 43 1016 238 2842 605 47 3 943 871 688 51 12 2 551 4 3795 472 125 80 4 1 1357 1204 15 19 44 688 1952 10 12 1087 3 143 551 1 1357 17 59 114 10 19 561 2482 8 419 1 21\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3654 3279 13 743 526 4 968 65 15 2 5 9587 730 47 4 62 84 23 2900 1 13 5 64 690 8331 403 146 1975 211 16 2 6193 1 1084 6 425 3 1 121 3220 46 7156 292 10 88 26 367 11 1 1176 915 213 5255 8 96 9 18 7142 10 7 31 240 3 979 699 37 11 10 1421 47 32 48 40 881 6896 13 5891 109 248\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 74 85 206 40 7720 2 346 17 1127 201 5 176 29 1 234 4 2 750 750 7232 5693 6036 3 25 1593 15 25 733 15 25 2832 9 21 7 364 68 1597 269 2334 31 862 240 2964 7 423 6360 638 14 1 1639 349 161 585 4 962 4745 5767 6 1 80 2763 103 353 180 107 7 5767 6 609 7 2 185 11 202 181 428 16 122 14 2 1537 4872 4707 2280 5 1173 1 4 25 435 3 25 4552 42 198 84 5 64 2862 4496 3 204 244 360 14 1 435 4 1 124 5626 5070 1584 6 109 279 10 5 785 1 206 1346 75 27 1459 1 1249 6467 3 829 1 108 1 1048 358 1354 478 6 7433 16 9 21 3 109 1 861 2182 1 1646 385 15 2 46 1546 668 5157 95 21 6931 41 4 423 1109 76 335 9 28 258 45 244 2 325 4\n0\t1 148 376 460 3 33 22 193 20 6699 1 1598 1804 22 6710 86 7710 3 1 526 549 3 566 421 28 80 2 957 52 2244 3 673 86 13 92 18 1510 1 15 679 4 813 3 840 14 4 4181 49 1 1030 15 1669 293 67 1745 1303 3 9542 1033 17 10 2439 5 26 169 509 1598 1804 22 2009 89 30 1182 3 291 400 2256 453 193 1 2274 8201 5 1496 187 1710 453 1 3 41 125 5412 409 3 10 8318 2 903 570 2483 1361 58 16 346 374 30 3 1330 1643 168 409 82 124 38 41 22 1 1068 2521 578 3747 15 9481 638 6836 3 294 4371 3 1 78 138 30 15 15 1970 6668 4829 3 9 1729 572 1029 15 1909 529 6 955 470 30 690 5433 3 15 58 5056 73 270 105 97 824 32 817 703 5433 6 31 2141 206 531 770 16 756 1486 5 1 2658 4 1 4482 3 97 9944 3 2171 16 616 1394 1 164 32 9492 3 8872 1020 2521 2255 6831 1735 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 6 610 48 86 462 525 5 70 23 5 751 77 48 1 1063 24 5 13 7248 42 1609 299 5 64 1 5593 8 320 15 34 86 810 3 10 56 1336 1241 39 2 4358 4543 103 2868 11 151 2 84 2659 334 16 1644 21 42 93 1474 5 64 3 522 5 7397 3 149 47 11 42 5593 34 125 805 59 15 2 678 4 4133 5117 3 286 52 21 13 150 83 64 5290 14 2 21 5 26 42 20 1033 1013 1 545 4283 133 5100 101 8 186 5290 14 2 3199 11 869 3 319 6 56 1525 30 1210 3 397 6392 341 7303 3 171 22 128 3170 55 49 33 2500 1 184 1425 13 3986 3 22 242 5 2373 23 2 751 10 41 8706 17 1 859 6 128\n0\t12 38 14 1494 2 18 14 8 57 117 117 12 5 1861 10 190 20 24 71 2 84 108 50 497 6 10 5958 8 83 56 320 78 38 194 5 348 23 1 3880 8 59 320 1 893 1300 189 8655 3 58 287 7 95 18 40 117 248 10 16 79 14 1 3625 1494 114 7 9 108 8 617 107 10 220 11 74 85 8 997 10 19 249 7 1 2847 3 8 83 96 420 175 5 64 10 316 220 145 273 10 54 26 2 662 14 3 180 390 52 6764 125 1 982 1604 49 8 96 155 19 1 3660 178 8 63 128 320 75 84 10 343 111 155 13 94 133 1 18 805 8 2144 11 42 2244 5 139 408 702 48 12 308 2944 6 195 167 1 972 164 177 128 557 16 503 39 20 14 78 14 10 308 2723 229 73 145 58 1534 2 11 972 287 6 195 1186 68 8 896 1 4 1 212 177 247 30 50 1960 115 13 519 42 138 20 5 1 3186\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1313 13 2361 172 1742 8 455 5535 878 11 27 54 1 18 204 3 51 45 27 57 2 3614 322 1803 8 497 162 6 3454 17 9 18 69 371 15 1307 69 6 116 1293 55 1630 109 7 9 28 13 1118 165 79 80 6 1 2694 4 1 67 3 2331 691 36 9 653 3 6 128 2267 7 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 113 267 8 117 6870 17 20 34 63 365 9 23 191 26 32 9464 5 365 9 491 1540 3662 790 28 4 113 21 8 117 3 34 607 171 372 46 46 53 17 121 4 6 16 50 1062 113 121 7 607 280 7 622 4 124 7 9 18 372 97 460 36 33 34 22 460 7 861 3662 1069 7 9 18 6 372 84 1736 376 3 4 448 206 4 1 21 6 28 4 1 8 9 18 16 307 17 320 23 191 118 53 1736 1587 5 99 9 18\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 14 3594 7 9 18 22 277 1185 417 2356 3 492 3 1856 35 22 38 5 9592 32 4728 197 1157 140 31 1784 17 253 10 182 9 2236 318 1 46 182 49 7586 17 1 80 1904 129 4 1 18 3467 47 48 33 22 65 1467 6288 418 7 639 5 90 65 15 25 1153 282 14 27 2004 7894 11 7 1408 1 59 465 6 49 1 4188 418 5 216 19 194 5300 621 7 112 15 1 1612 3 53 5736 906 20 2 609 870 108 151 5 99 1 18 806 14 25 278 6 3711 4625 278 6 6831 8 96 60 12 2490 39 5 26 200 15 44 1612 5786 1 6 2696 4 296 4808 15 2 264 3344 716 22 14 2513 14 7 296 17 662 33 34 8 96 9 18 6 2 3199 5 1 1132 4 1 870 11 33 22 599 47 4 1952 2 156 529 17 2 586 18 7 1422 4 16 3 9230 5005 47 4 9143\n1\t2729 16 2 606 11 1123 1 2157 11 1 6688 1 7 1 104 333 3 72 64 9600 574 6048 1642 200 1580 628 1 442 4 62 3317 62 3 4622 90 62 82 3 423 3 8692 8065 2 7 1 5779 2702 7 1 921 4 1895 3 4999 5 2 5 2 6958 5836 5 1 17 33 22 5708 3 1 178 6 274 16 392 7 1 330 13 92 847 6 30 1210 35 216 19 169 2 156 4 1 3 42 3 2325 264 168 36 4586 1131 3 933 168 4 3 790 5918 1 67 5578 1 119 190 20 26 31 215 1292 3 10 190 2725 19 4812 3 119 6678 3 5090 5 6620 1097 16 1880 17 94 1 948 2649 30 1 74 21 3 4712 1516 9 6 2 327 8415 4 1 795 11 303 1 234 3 7 1 1191 4 1 5779 11 2601 14 2 3199 3 14 2 2451 16 97 3 708 19 1 423 1 1273 4 3 1 5415 4 3 3 1 8972 5570 4 2631 3 1626 19 7 1 502\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 320 8 159 9 1254 49 8 12 1639 41 9552 50 7547 1459 65 1 388 4 10 16 1126 29 1 8 320 11 10 56 6456 1 119 57 58 1821 8 1595 1 1996 11 726 4699 27 12 37 7688 4555 25 522 142 45 27 339 149 2 4699 37 3070 70 125 1027 1 59 53 185 3 8 83 175 5 478 12 49 1 1996 165 383 3 1436 29 1 714 8 1309 50 522 142 7 73 9 1254 3154 37 1264 1 91 1949 6 1 1996 3 432 2 8 555 27 57 2716 3789 8 96 8 55 419 1 388 4 9 5 1956 73 8 1595 110 58 560 33 61 4676 10 16 1126 29 1 45 23 24 2 583 83 369 126 99 476 33 76 229 1023 15 79 11 10 4597\n0\t631 32 75 955 27 1 135 1 59 1820 189 1 506 7 3 492 6 11 3433 12 37 78 52 1535 3 27 143 24 2 465 15 9 691 6 115 13 2595 1 769 51 6 2 1516 525 5 199 28 52 85 14 5 35 1 506 6 15 673 3 1366 47 3433 17 98 72 64 5468 357 5 14 27 1834 25 396 6277 4472 3 72 118 11 244 71 1 506 34 4508 162 7 1 21 9497 11 27 228 26 1 506 318 1 570 3603 3 127 8417 61 20 610 1 111 5 3658 1 306 506 29 1 182 4 1 135 6 20 782 669 219 10 7 31 2213 429 30 512 94 3 8 24 71 1893 4 1 534 16 14 223 14 8 63 4995 3 55 8 247 3 1 120 228 26 888 5 474 38 45 10 1121 37 631 11 33 61 39 160 5 5317 8 320 101 1475 30 1 2322 6260 2243 1 21 12 7 3 47 4 1 6167 68 17 1 182 1122 6 1 166 161 1606\n0\t3201 5 1851 3 637 126 1949 6 15 1257 119 1552 3 8607 340 30 43 4 1 113 171 7 1 1162 72 219 97 289 3 475 419 65 7 49 33 2629 712 6844 940 14 2 5666 665 4 144 34 2329 4 2629 130 26 314 7 1 442 4 34 4 2533 1 251 93 999 5 976 3 633 7 1546 1175 30 712 126 14 119 7069 5449 510 1098 34 7 34 1 528 4 1 8179 1842 260 13 4255 894 1 6152 4 9 2218 76 26 314 30 958 14 3905 11 1443 433 86 111 7 1 362 185 4 1 9 4588 14 2 1465 4 622 512 8 54 9 2218 14 101 7 2 3415 15 1 2921 1160 30 16 2697 3 43 4 1 2921 1160 30 368 16 1 296 410 285 13 1627 45 23 175 5 333 9 14 2 6684 9677 5 352 116 1554 365 75 1546 2921 63 26 98 30 34 907 87 1943 39 26 273 5 4517 31 314 973 37 23 63 925 1 6428 260 29 3201 35 1160 9\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 39 908 1230 8 87 20 96 10 12 782 29 34 8 337 7 1247 5 26 2220 3 1728 17 12 650 1094 43 4 1 168 61 39 5 1429 3 1256 371 813 168 61 483 125 4781 3 43 4 1 61 3605 1040 288 10 93 3154 73 1 121 12 39 908 586 2890 96 33 88 70 43 53 171 3 80 4 1 120 8 1595 39 73 75 439 3 1054 33 1171 55 193 33 61 377 5 26 7 1 1383 8 70 5 99 104 16 1126 3 107 97 81 1323 47 4925 3584 73 10 12 37 1230 1609 1096 8 143 24 5 946 16 10 7 386 1230 3404 18 83 64 98 316 1333 50 1062\n1\t3013 4060 4 1546 267 3 3021 16 2 67 36 9 106 2 170 487 19 3619 5702 14 6 2211 3 39 117 37 1056 1928 41 2 425 4247 4 44 4410 626 763 7 1 2691 154 2381 6 648 2354 6 1314 6662 4 53 299 36 244 246 2 3 3233 8515 6 797 3 1858 14 4015 1897 50 1522 278 4 1 21 9181 45 23 381 44 8294 278 7 1 1058 98 23 76 1517 335 44 7 490 4095 13 1627 5 2873 142 9 23 76 2655 16 1432 23 76 3 23 190 55 1717 69 6 2 2211 16 34 1 1562 15 2 683 4 2660 3 52 68 6 1279 28 4 50 3931 1522 124 6 1 332 885 2879 3 6 101 8533 5 9 15 53 302 14 10 6 2 46 696 574 4 21 5987 696 1626 3 3 39 14 1 2879 4770 1373 8266 1831 3 211 2290 172 94 86 2319 4227 8 241 11 1 7935 9293 4 76 26 781 65 14 2 231 1522 19 257 883 5610 958 16 97 172 5\n1\t186 142 19 788 4 1 1270 15 86 7023 119 3 4500 204 556 1251 3 620 16 75 5491 3 2973 10 56 3191 13 9296 271 16 3437 7 1139 120 820 516 3 899 385 15 8685 49 882 3 3 2026 5193 42 14 1909 14 10 63 70 16 49 2 2124 1277 6 29 2 1940 3 6 3 256 7 3 2 27 7 2 2352 4 66 20 55 834 88 2500 15 2 3696 1484 15 711 2698 3 31 14 1 2281 6 829 7 1305 1131 255 19 32 85 5 85 4 161 484 43 3 43 32 1 11 22 39 13 4567 3739 3668 41 9135 4077 52 5878 1270 6926 9710 14 1033 74 3 98 8689 42 93 3164 19 31 1532 297 32 1 223 270 5 1 5175 3 1 6475 16 1 120 34 370 19 1 833 4 1 34 3272 1 179 7 1 1252 106 86 3641 119 1986 65 78 52 16 5 637 10 3261 4624 1 42 36 3039 1010 41 2063 4 1443 6776 488 16 503 42 28 4 1 113 117\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 2 900 5885 8 214 512 5 149 235 5 539 29 39 37 8 511 230 36 420 400 1130 50 50 290 1 523 7 9 21 6 332 1634 42 2 1152 42 20 65 5 1 3220 4 82 4199 3648 13 3828 130 24 2052 1 319 19 355 171 36 1802 3 2142 3 1019 1 319 770 1 263 318 10 12 1907 55 2142 247 4492 16 25 6404 13 252 18 844 23 1437 48 1 272 4 80 4 1 119 1 94 956 9 141 145 303 15 1 1418 11 1 1278 61 1247 5 1708 43 232 4 2106 106 42 20 37 78 1 456 14 1 129 3 1 906 9 18 1082 5 1917 1 2131 1 647 1 3312 41 1 2466 8 130 24 881 5 1 3810\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 2 84 525 959 1 8559 4 2094 1297 1353 66 22 101 3546 30 1214 2 231 67 781 34 1 154 454 130 917 136 15 154 625 4633 6586 380 2 278 14 2 38 5 5454 15 8796 35 6 93 46 3 60 93 1630 167 870 4 1 18 6 1 166 14 3 132 104 2005 5 26 89 7 4660 16 1 8559 4 161 2094 104 153 70 394 14 10 213 46 53 29 265 66 2 163 7 154 9 10 6\n1\t6 2 2435 16 4605 13 92 711 4 1 2770 1562 6 1 3043 4 2 1671 4 891 3 2456 123 31 473 14 1 3474 35 7099 52 5 1 1143 4 6166 68 95 817 598 3384 28 6 1385 4 129 2030 32 1060 1305 35 1699 2 1671 4 7893 7 78 1 166 111 14 9 644 951 25 13 1 4 1188 1004 4772 132 14 1060 1668 6 20 37 378 72 22 1463 15 375 109 120 19 205 4251 4 1 1800 14 1 589 4 1 3 1 684 796 189 3 4949 270 1 13 92 640 1864 29 268 2674 123 1917 43 1201 1192 1 2728 11 891 3 2456 265 12 179 5 24 57 6 262 47 7 2 178 106 2030 411 5 1 1224 914 2 5703 5379 19 1 613 1 80 1201 391 4 21 618 6 1 178 106 2 658 4 6907 416 2383 642 1282 3 22 1525 29 30 515 7 1 822 4 1 3602 5931 9 178 181 34 1 73 4 9 1 21 6 5691 3246 41 1492 5 661 7645\n0\t43 232 4 35 175 5 90 2 718 19 2 147 232 4 5511 7 14 31 1409 325 4 104 642 43 232 4 4774 1804 41 8 179 9 228 26 50 232 4 4285 10 9 130 26 52 4 2 4 75 20 5 87 1027 10 40 2 163 4 623 7 10 3 1 510 4494 6 31 1115 6182 7 1 570 178 10 271 94 1 250 120 1 2919 22 515 7 1 10 276 53 16 2 539 1815 45 10 61 59 16 1 551 4 860 189 1 1041 1 8397 439 3637 3 1 5185 439 10 54 26 29 225 279 2 2655 17 10 196 420 7663 1 81 7 4383 4 9 18 1887 75 904 10 1220 37 33 193 65 1 161 312 4 8 467 400 197 95 1318 28 4 1 250 1624 289 44 5374 5 1 3 1339 959 1 477 236 43 232 4 5210 9 6 1 226 253 1 18 1409 1652 5 437 42 1115 75 81 152 1017 85 3948 132 45 23 22 3078 16 2 148 351 4 99 9\n1\t93 12 1968 16 870 104 132 14 25 4157 61 198 822 3 299 5 99 3 52 267 36 68 235 422 3181 4157 100 61 56 38 86 9 12 146 11 52 2450 7 3 406 89 1281 32 1 3197 13 858 692 10 40 2 822 3 641 441 274 7 1 668 1561 11 4 448 6 93 961 3 9272 7 2 5344 699 10 5519 6 2 299 3 641 67 11 93 311 151 9 31 548 104 5 836 37 87 1 120 3 171 11 22 2239 450 426 4 1021 193 11 11 1 900 119 427 4 1 18 196 426 4 2841 1918 1 182 4 1 141 49 1 18 59 418 5 2903 47 4 668 604 13 92 668 529 1918 1 393 4 1 18 22 93 1474 3 109 2427 55 193 145 20 2 105 184 325 4 1 870 2330 308 316 1 668 2139 93 865 2 170 1740 27 396 262 103 3 1034 52 362 19 7 25 3987 642 1 18 668 4 4 28 349 6884 115 13 743 362 870 682 13\n1\t235 36 1 2943 2300 180 455 2562 17 8 12 1328 1432 10 247 2 973 4 1 5082 17 49 23 90 2 18 47 4 3393 23 24 5 10 5 390 2815 1 119 12 837 3 3765 15 2 163 4 697 4181 3 8 179 11 3074 4252 12 56 1202 7 44 221 111 4 2239 9 382 1223 51 61 375 211 529 3 19 1 6412 4 97 29 58 272 7 9 21 123 2943 209 142 14 2 60 12 5605 3 28 177 9 18 93 114 109 12 3922 1 212 177 47 15 2 1541 4 1073 3596 1216 3 7574 2184 8 336 9 108 48 2 2493 48 2 3 45 23 22 2547 3 1088 5 1961 79 3 139 64 490 26 3023 16 43 782 14 3106 529 73 8 1220 2102 9413 8274 139 64 10 41 26 2 3 39 369 82 81 1088 48 23 96 4 9 18 16 2082 8 202 1001 8 112 194 8 2942 221 9 1540 8 112 3074 4252 944 854 444 36 2 1209 763 32 112 194 112 110\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 1 357 4 2 147 3 240 376 2748 1199 10 40 2 5 4 230 15 5151 3 364 13 92 120 321 43 52 85 5 2210 17 33 24 5589 28 177 11 6 1002 1832 1543 34 376 2748 251 6 11 33 2074 132 2 572 4 1 189 413 3 415 7 1 958 49 33 2756 2 46 1061 572 38 297 1939 40 2165 2155 13 1149 1 633 120 204 22 4069 35 6 3 2457 35 6 6 169 3 6 89 5 26 2 13 1149 43 4 1 1176 6419 230 2 222 105 296 794 3651 5 1 52 1644 230 4 1 17 2182 240 13 1149 2 46 53 1823 193 16 2 46 53\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 107 1 425 585 38 277 1287 8 2197 5 64 75 9 21 6 2 1040 158 8 192 20 55 17 8 83 64 10 14 2 1040 135 10 6 2 21 15 2 1040 919 8 173 64 144 154 21 15 2 1040 129 130 26 3806 2 21 38 101 8 149 1 21 5 26 3098 5 1 2221 4 2214 1 469 4 275 35 6 116 8 96 498 25 157 200 1002 1108 94 73 27 451 5 3 133 25 711 2057 7 1044 4 122 151 122 25 500 8 214 1 927 7 1 178 49 649 2934 27 6 160 5 26 2 435 5 26 46 4422 2934 2063 11 27 153 175 5 118 38 1 188 27 6 100 160 5 64 41 1555 15 4315 213 11 3276 3 8 496 354 1 135\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 206 2063 7 1 865 11 27 1371 203 502 27 1371 126 37 78 11 27 4286 1 18 5 14 109 14 82 3045 971 132 14 690 6991 6796 3 9934 676 9 18 5 137 84 971 6 36 685 116 532 2 391 4 16 4291 1393 1 74 177 33 114 540 12 1 8903 201 81 11 63 3218 896 83 201 2 454 11 6 1801 172 161 16 1 280 4 2 4423 349 161 207 2401 244 71 7 298 416 16 8343 982 1 4042 89 30 81 14 33 99 62 70 62 4418 3867 47 6 6813 41 36 28 185 49 2 259 196 7 1 15 31 4 70 3 25 1327 39 5655 1 7348 411 6 169 2 1223 403 142 2588 3 3039 81 13 92 18 123 24 28 1362 850 5865 58 10 13 614 23 332 191 64 9 141 68 39 99 1 891 3 2456 1625 19 1 1771 10 3736 38 297 3 40 2 56 788\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2343 22 1 5643 4 2 4309 32 2977 3 6562 843 663 7 2523 2574 5797 9 6 2 84 108 10 6 370 19 2 306 471 9 18 1605 20 59 537 5880 15 17 972 81 14 530 449 307 76 335 8841\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 34 1 1546 7976 9 1465 21 190 12 261 422 1120 5 469 1000 5 131 25 3618 8348 13 92 167 78 2175 95 426 4 72 57 2583 5 13 2687 70 79 1989 145 34 77 5987 5131 534 17 9 6 2 11 196 2 7777 5 3245 59 16 1 233 11 276 1053 605 592 13 32 2 259 32 13 92 113 358 269 1 21 40 5 13 614 23 343 36 7416 142 23 88 87 828\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 906 9 18 6 37 565 1 215 47 4 12 8462 3 46 722 4 448 33 314 1 263 428 30 3767 16 43 302 3767 263 6 20 314 7 9 21 37 10 621 1289 85 3 85 702 55 1 410 8 12 15 100 1 593 6 46 673 3 3240 3 49 51 6 2 1399 10 6 340 295 37 1 1399 2180 4623 1 342 246 447 7 1 9298 33 10 6 2 2036 16 147 3820 109 72 34 118 1 3647 22 160 5 209 19 3 72 76 26 446 5 64 1257 3 6682 217 1312 87 2 222 4 5055 1 212 18 5136 65 101 36 1399 6 274 65 3 340 1695 144 213 1773 117 55 5235 65 7 1 108 23 76 93 1682 154 542 65 4 6682 4954 333 2 46 1883 2245 8 1379 23 760 1 215 15 783 5373 3 207 45 23 175 5 2499\n0\t0 0 1 21 2148 922 15 86 8820 7 1214 3724 140 1 3 1618 4 2 170 1696 3871 44 10 6 31 396 2316 3 5872 3306 4 2 170 3540 2277 5 209 5 1422 15 2 799 7 44 2747 7 4909 3 2 2277 5 2500 47 5 1 10 308 3 9 6 7 1 111 7 66 10 1135 200 1 5534 4 883 101 7 32 1 1124 5 1 2299 7620 5 2759 1105 3 8088 13 92 120 34 309 2 5087 2 1953 3 3784 1174 8004 928 5 26 2 1117 14 109 14 2 5571 4 2759 710 4212 844 28 9742 5 44 6533 14 60 181 128 5 26 15 1 166 60 381 14 2 233 14 2 583 60 181 52 7 9537 4 44 4084 1 344 4 1 3322 6 39 9086 1 315 2140 5 134 1 2532 4 1081 4902 195 30 1 2024 345 6592 4 44 3531 33 22 58 52 68 2 534 3 5998 421 66 1 3871 3966 3078 2 234 60 100 3 1247 16 28 11 63 100 26 214 7\n0\t0 0 0 0 0 0 0 208 64 81 523 38 75 84 9 18 1306 10 12 1 121 12 8283 29 1293 10 89 2 163 4 319 73 1410 624 337 5 64 1 18 1450 268 7 1 3050 73 4 106 1 898 114 33 70 1 1441 8 405 5 825 52 38 1 144 10 48 12 599 140 2 163 4 3242 300 55 2 103 4477 2688 123 261 853 11 732 81 143 55 2870 1 2468 73 51 12 2 1473 19 2870 183 10 55 472 1453 23 83 73 34 23 64 6 2 1086 282 1424 16 2 345 487 3 27 8086 44 1326 11 2390 3563 29 225 8353 23 142 11 1 18 12 13 150 114 1717 7 285 28 1146 1815 1 178 49 33 1049 1 1793 11 12 6050 65 7 1 10 485 36 4381 145 517 9 18 89 34 9 319 3 33 339 55 90 1 1793 32 1 7105 176 13 1 1301 262 19 136 1 2468 39 2348 9 12 1 210 18 318 5267 10 7 1 5 87 15\n1\t295 32 362 9822 188 186 2 473 16 2362 49 27 271 5 1444 16 2 231 4704 3 6461 577 31 1930 287 7 2 13 442 6 3167 3 60 6 288 16 2 347 5 352 44 925 2304 66 6 6244 4687 7 1320 49 33 70 1256 77 1 3945 231 13 614 819 107 1312 7765 7 1 1400 41 103 773 1397 118 11 27 6 15 1411 3718 3 2 9156 4682 353 14 530 1312 7765 6 1477 29 4392 34 1 1676 11 209 15 231 1 6002 3 6239 1 231 14 109 14 1 429 554 1745 2 2624 3682 16 1 18 11 1 2558 7921 11 4160 533 1 18 3 475 47 7 2 167 3604 7268 1 18 59 621 386 7 43 4 1 961 286 29 1 166 85 157 6 89 65 4 205 4549 3 66 6 31 4549 740 7395 13 7 148 157 6 373 279 16 1 4707 3805 4 133 34 1 211 72 396 773 7 3275 727 3 646 80 1458 335 10 2 330 387 41 55 2 39 10 19 50\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 372 47 14 2 426 4 5 1 84 1291 43 3492 172 1372 9 103 598 21 266 10 826 15 58 5991 3 4000 87 109 74 185 4 1 18 6 1 274 65 3 3578 1291 4 257 1864 1 330 185 19 62 5336 1864 19 1 549 14 33 328 5 2500 1 21 4088 19 1011 120 15 3373 8430 3 657 1202 494 5 1720 10 3 10 7129 86 58 103 1234 4 1216 863 1 21 5485 3 14 31 1406 67 10 557 1080 16 1 85 2990 10 2339 37 2 184 4085 5 1 21 11 190 109 26 1 74 4 86 574 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 80 586 4 2 84 1199 10 130 20 24 71 654 8489 73 42 59 1 166 7 442 3420 105 97 1714 5 39 24 23 24 120 590 32 976 5 315 5 2119 5 34 7 2 111 5 633 49 51 12 459 627 633 120 11 88 24 39 71 89 881 22 1 7557 6947 881 22 1 3132 16 4076 1 551 4 5 139 5 9836 270 295 32 1 158 258 49 28 6 89 2 5080 1 215 131 57 2 163 4 5502 5 194 17 10 57 2 1114 33 713 5 998 1732 9 1068 17 187 1 596 162 5 216 15 3 676 7827 7 62 543 14 33 90 10 221 1714 22 501 49 33 90 146 1824 20 5 39 90\n0\t144 54 23 175 5 90 10 77 2 684 5172 368 397 15 7260 3 8 83 70 592 13 92 1260 4 1 67 6 775 1716 3 45 23 24 284 1 347 3 338 194 145 202 273 23 495 36 48 114 15 110 115 13 659 1 477 4 1 21 468 300 149 1 1084 9508 1 121 91 3 1 861 39 2 222 17 23 449 16 1 1293 8 56 3388 2 163 285 9 135 8 152 405 10 5 26 452 17 10 59 196 2428 3 10 6 14 641 14 9218 704 23 284 821 41 1375 9 6 20 2 53 135 39 174 684 5172 368 397 2746 15 91 505 551 4 3580 3 69 4 448 69 877 4 802 4 7260 1326 13 150 88 4522 2 163 52 38 9 158 17 144 351 50 290 180 107 110 8 57 5 64 194 73 8 36 1 347 37 78 3 12 3 145 46 5013 13 6 16 1316 103 7 1 182 4 1 135 37 57 27 6977 10 1 212 85 3171 420 340 10\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 5368 9 1 113 4 1 1303 668 868 1583 4134 5 31 1303 412 6 31 313 607 201 3 948 1518 11 76 359 23 3584 318 1 570 9512 123 2 514 329 14 1862 3 25 6636 407 20 1 84 1177 968 4 3 7566\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 230 36 145 1 59 635 7 569 35 12 3336 30 8167 1663 27 6 2 514 353 30 80 17 27 311 88 20 1622 142 1 2516 5048 8 1266 10 12 10 12 14 45 27 12 242 105 254 5 26 2 28 4 1 817 1755 144 2125 171 61 20 201 7 9 135 8 330 11 42 360 49 555 5 62 17 42 174 177 5 328 105 254 37 11 2 278 432 300 10 12 17 244 2 132 2 84 13 3562 8 56 83 175 5 4497 16 25 332 5191 1778 105 1264 1603 1071 5 8470 65 204 3 939 17 10 6 254 5 99 146 37 761 11 1397 243 19 2 7453 7343 41 2089 2 331 4 930 68 694 140 1 1368\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 2 684 267 106 2913 262 1529 30 2393 3 25 309 1484 5518 5 25 8159 3 2 964 1 738 127 580 871 6 30 2 1442 607 201 4 109 4546 129 1488 9 18 6 1257 3 299 1104 2\n0\t5 1718 7 50 1520 2 900 13 3371 11 47 4 1 744 646 5466 48 337 5790 13 92 21 792 15 2362 2 15 277 624 35 6 101 1050 16 2 2952 27 25 624 16 2 231 106 25 4559 6035 5273 16 43 85 15 239 6874 13 92 231 6 298 1 1307 4 188 11 90 9 31 489 108 58 231 36 476 42 202 14 45 2109 71 9495 32 41 597 10 5 33 22 2 9571 4 48 72 96 2 231 6 49 1181 9552 10 4838 1 272 106 33 390 4112 3 311 1388 9759 231 3 860 289 22 20 75 697 81 42 202 13 3221 184 4594 6 1 287 7765 6 377 5 26 1424 1987 44 7 44 74 178 15 1312 7765 6 36 133 2 1757 242 5 26 48 8 830 6 377 5 26 979 3 215 7 9 287 255 142 14 2715 13 499 151 79 96 11 9 18 6 605 334 19 174 7724 8 303 1 856 1437 48 8 39 7031 94 517 9209 8 83 96 10 12 1264\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9135 316 1275 19 2760 25 1528 1514 5 5436 2 425 16 2 135 1281 140 2653 17 93 712 31 6443 3168 27 2182 2 4290 3 9717 1511 11 125 1 389 21 3 1517 196 50 32 1 3587 10 56 6 9 6243 11 151 1 5666 1 1719 11 10 424 7 50 3888 4 448 10 153 1977 11 783 5492 380 28 4 1 700 453 180 117 575 2 4602 1103 4 2 438 881 3 4642 22 5 26 4358 17 42 806 5 176 576 137 102 49 1 344 4 1 21 6 37 3711 1069 10 1008 1 353 15 1 700 442 4 34 85\n1\t699 2884 7351 3 2817 822 65 1 412 15 2 84 67 3 2 201 11 384 148 227 5 1622 23 77 62 2058 115 13 15 1912 69 7 3933 1 296 1153 94 15 2 306 67 38 1 2710 2367 2141 1711 2922 2817 266 2 2020 1585 138 68 2 163 4 8 3 2884 7351 12 7842 201 14 1 3 5621 3712 15 14 78 1872 14 1 855 545 7 1 1754 42 3015 1 6179 1300 3375 45 23 36 2372 317 160 5 112 9 135 1 4534 16 3 4808 61 34 7 939 50 4616 726 1 1420 115 13 872 751 1 1 265 6126 3 2995 1 67 911 3 265 9965 1 67 890 610 1 111 10 31 2265 11 79 52 396 68 5075 13 420 24 340 1 2372 5 1956 1939 17 7351 40 146 5 3964 199 34 38 3 2935 6676 5959 3 1 61 2 327 17 33 100 56 214 62 334 7 1 67 5 1089 3 542 200 450 2 103 2043 279 154 938 7 1 226 1315 1889 1731 115 13 1149\n1\t31 5 3471 29 2 1433 1256 30 6198 3337 17 5 39 246 2 1305 226 183 403 411 73 4 1 27 7099 20 128 60 2 156 32 122 11 1658 6198 5874 115 13 6940 30 10 318 1922 748 44 8082 19 25 8074 2375 94 11 27 6 20 6940 3 27 276 5 6846 1922 32 1 231 13 92 282 32 337 77 397 3818 8661 4 1 3920 37 10 337 457 8332 180 2 507 72 54 24 107 2 78 52 135 128 1922 14 2 1186 3 324 4 1585 6 198 48 2 84 709 860 11 287 5600 283 1 282 32 6 2 747 8423 4 1 84 2807 1 234 4 21 15 44 2834 277 172 9490 13 227 1 1084 4 1760 15 12 58 894 4204 30 1 1134 4074 1760 12 253 15 174 754 9643 3 1760 24 1 166 806 1300 189 11 57 15 6168 54 93 1288 2 349 406 7 2 6051 11 58 2651 40 117 56 71 9663 115 13 2687 773 1 282 32 42 2437 3 191 26 32 34 11\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 362 280 16 2315 74 7 5980 94 770 7 89 49 60 12 4539 172 42 407 3516 5 134 11 60 89 2 1528 2289 7 136 3 70 80 4 1 198 1386 651 15 1 1052 672 198 2717 14 109 14 132 665 101 6347 4 1 7 66 44 412 85 12 78 364 68 44 1921 6 1 4707 302 16 283 9 4 3 6 107 5 84 3320 832 5 134 45 44 1212 214 31 55 138 129 791 6500 7 1 72 22 5794 5 44 5132 155 49 60 6 5794 1315 172 406 7 1341 60 2898 285 80 4 1 21 6 2 1528 83 64 48 1525 11 4099 420 273 36 7 1061 11 2315 2 775 428 280 11 54 5423 80 845 44 1097 3 151 1 21 5040 148 2476 4 376 60 54 149 521 227 29 3065 7 1 4 1\n1\t131 132 5 116 5436 3 116 632 29 132 31 5386 190 72 34 87 350 37 2593 13 1 10 12 2422 11 1 435 88 24 1417 1 11 2127 472 200 147 887 197 936 2123 1 9 6 3 8 555 34 4023 88 24 37 346 2 93 28 3966 144 9146 636 20 5 348 199 38 1 3125 4 7028 29 1 714 72 63 497 3 6528 436 25 3125 1310 1732 1 3005 974 8509 436 9146 12 20 7366 15 48 12 829 3 85 2183 827 3 27 39 1113 10 36 656 10 56 153 3 8 96 10 8143 48 629 5 7028 6 20 160 5 26 452 27 213 1 232 4 259 35 999 5 549 142 5 4445 3 6 446 5 357 2 147 500 27 6 1 232 4 259 35 196 2 6900 4 394 5 910 3 2601 10 3 255 47 2 232 4 423 101 35 789 27 247 56 2 164 49 27 130 24 13 8844 9 16 3598 28 4 4589 1726 206 4 1 1 526 1238 326 3390 3201 3 97\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 2 91 111 5 357 110 8 179 9 12 1571 17 98 8 2144 10 12 2 4 1 1015 4 800 8 100 159 800 2344 318 8 12 8 159 9 21 49 8 12 1 644 265 76 70 1544 7 116 20 5 798 1 644 833 788 30 1 9 6 1 210 2070 363 180 117 575 29 1 166 85 9 21 1373 2 5326 4 1201 2 3 139 5 1 7 116 7494 3 23 24 8 320 283 9 21 19 18 30 51 6 28 178 106 10 12 36 800 2344 7 7 800 2344 27 6828 1 282 3 65 1 9654 17 7 9 21 27 224 1 2000 3 6828 1 282 1018 12 93 200 11 349 12 174 2344 5769 164 66 310 32 2360 51 6 2 163 4 4309 168 3 823 3955 9 21 76 597 23 6754 10 6 36 8 1113 39 174 800 2344 1274 9635 16 2504 5322 8817 3 43 782\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 641 16 4667 50 1410 6 50 1520 6 31 1409 4573 145 20 273 8 617 107 154 2541 17 8 128 381 110 42 254 5 134 66 431 12 50 7552 245 8 96 10 12 198 211 49 2 8 198 1309 29 656 480 1 233 11 578 3 638 61 501 8 338 1 131 52 49 294 5188 12 1 914 1368 45 23 1006 503 25 2585 2834 12 46 307 198 419 2 53 1835 1 397 2217 12 9165 1 1759 61 3 1 523 12 198 46 7 4641 8 449 43 3201 876 10 155 19 1 1276 16 596 4 1 131 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 37 37 293 363 70 7 1 111 4 1 240 733 189 1848 1867 3 1542 9302 11 72 320 32 1 249 1199 3 48 12 15 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 531 36 1028 484 17 9 28 12 39 908 3133 13 92 53 282 5904 5329 15 3 7 2 9673 401 49 60 13 92 91 105 78 388 105 78 4651 673 1729 2887 4089 1 20 227 813 3 91 505 3 58 471 1 59 82 454 7 1 856 12 1831 3 303 260 94 1 5329 5904 1361 2 900 351 4 3 290 8 187 10 2 358 47 4 1731\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1315 641 3508 6 2 211 131 17 10 93 40 43 157 4119 258 28 3287 2869 38 866 19 94 2 1621 66 12 1 431 106 776 1436 66 12 1 74 431 8 24 117 219 4 1 131 11 255 19 1 7066 361 532 3571 3 3 585 361 176 5 28 174 16 3 1594 94 1 469 4 776 3586 1 231 1007 5852 3 6883 2 5361 8 192 1096 406 7 1 4339 1022 4 9 131 33 636 5 256 638 7 9 131 220 27 12 248 15 1 8488 1125 39 1743 6116 17 34 3 34 9 131 6 167 452 9 131 1523 79 2 163 4 1 382 231 32 1 1575 3 3991 11 314 5 26 19\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 12 167 452 8 192 20 105 184 2 325 4 17 9 6 2 18 11 12 89 5 352 365 1 1468 4 1549 3754 5673 13 2453 4977 1490 1347 3 1932 3190 22 758 7 15 2 2806 4 964 171 3 2308 4 1 1 119 12 6256 3 8 112 1 4979 962 4512 3 1 559 256 371 2 84 682 13 4511 2225 124 200 306 584 41 3929 3 33 396 87 20 216 530 17 9 21 2018 2 394 19 1 55 193 51 61 2 156 1681 3036 204 3 3617 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5852 3700 2 2 7357 7 2 1363 1531 3566 6 2 91 4583 3 2448 1 270 25 2839 3 271 94 4273 3 25 413 3 1 7850 15 25 2640 298 7850 196 7 264 1191 19 1 10 70 155 5 1 260 2047 5899 3 578 1791 1066 371 16 1 74 85 3 310 65 15 9 5347 7357 6 1 260 164 5 309 1 12 198 1 260 164 5 87 1442 6042 5602 266 1 185 4 3 444 84 14 6 1442 29 1 185 4 6307 6 609 14 1845 1312 3 4332 22 107 7 1 141 3 479 262 30 76 3 1312 170 891 4166 266 170 9330 3 1 170 2047 4829 266 22 97 382 529 7 9 28 272 1 526 6 3355 30 220 9 6 2 84 5 99 9 5336 562 106 1 3 1 6 1 1 306 1214 596 76 112 9 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4790 8287 6 2 56 797 1540 626 7768 6501 1856 6941 3 638 3337 22 7 1 135 1 1324 201 34 1171 56 530 626 262 25 280 452 1 733 189 3190 3 5365 12 2 327 461 51 300 2 184 717 1820 51 17 33 22 2 979 9229 1 102 171 56 1066 371 243 530 1 265 7 1 21 6 56 53 30 3044 3 2589 1 739 46 530 51 6 2 658 4 691 11 629 7 1 18 66 23 83 118 48 6 160 19 3 48 6 160 5 780 398 3 9 18 863 23 160 32 477 5 714 45 23 36 626 7768 6501 3 5365 98 99 9 313 1540\n0\t0 0 0 0 0 0 0 0 286 174 362 21 32 4906 3595 66 181 5 24 71 248 47 4 14 15 3 1 23 63 348 11 3595 57 103 796 7 9 108 51 6 202 58 541 41 5436 5 10 29 513 1 67 2480 200 1802 3 2 170 1136 8189 35 209 77 43 319 3 139 19 2 4711 66 1501 5 26 2 2476 4 62 7411 5138 6 340 2 680 29 2 147 157 15 2 53 3326 164 35 621 7 112 15 1159 17 6089 5 186 1 298 1611 3 875 15 44 6818 9 228 291 52 1202 45 1802 1121 89 47 5 26 2 301 3404 35 3130 29 1 74 1617 27 1148 5 597 25 379 16 174 3248 1 342 741 65 3997 2193 17 1 18 1419 95 148 1361 1 957 634 271 7 2 301 264 2132 15 1 342 7145 19 31 2841 2468 3 9901 30 31 2119 8922 1990 3894 123 187 2 46 9542 278 14 1 2915 379 4 31 6818 207 38 34 23 63 134 16 9 461\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 57 1 18 12 160 5 26 565 145 2 325 32 111 1877 24 277 172 4 1 249 251 19 1771 109 8 12 1907 472 1 231 5 64 110 8 56 405 5 64 1 940 2248 316 3 43 4 1 1430 2248 168 61 452 17 5 3350 10 1095 1 18 12 2 224 65 324 4 1 249 4811 13 5465 12 4224 136 8 63 1582 134 11 1 215 9536 61 39 14 2899 4247 4 9617 12 311 1319 3 191 26 3343 7 62 14 2593 13 2687 351 116 1686 45 23 22 31 161 713 3 306 8884 325 36 79 3 50 277 374 22 23 76 26 46 1558\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 36 34 9 18 1176 3 534 623 17 143 36 9 28 29 7238 42 1853 586 3 1416 20 211 29 513 2502 481 87 2 212 18 640 1497 3 10 12 56 1466 223 2213 529 7917 1 4866 10 88 24 71 10 130 24 71 7 174 9580 300 8 909 105 78 32 1 1176 69 36 2084 1 18 42 93 1029 15 2515 4 120 3 8 83 70 10 144 81 338 3951 143 64 235 36 5920 34 7 399 42 2213 3 6418 3 850 7222 9\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 5 400 4091 15 1 82 878 3646 9 108 1 1117 363 1 3018 1626 4 1 18 3 87 20 7149 32 1 119 8 336 75 9 899 12 1031 7107 73 9 85 1 3409 238 57 58 9049 3638 3 80 4 1 85 23 63 64 1 238 65 13 150 96 1214 1607 76 26 46 1852 15 358 168 28 4 66 2027 2 6226 242 5 4874 411 2191 3 1 82 3646 1 11 10 6 1 182 4 1 1162 1 1505 168 22 32 732 4 3864 63 26 214 7 8993 9866 3 3 1 82 178 1819 15 2 7 1 873 155 98 56 179 11 1 234 54 209 5 31 40 1 1357 67 3 2946 5 95 3930 8 2474 241 11 15 43 1043 10 63 26 2925 7 1 2125 50 28 3731 6 7 1 226 566 178 669 173 187 235\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 74 143 175 5 99 9 158 16 1 1625 419 1 1418 4 2 1205 3 105 909 14 8 937 57 1 1935 5 2033 1 2065 4617 4617 1069 66 12 1325 470 3 428 30 4 8 1241 50 438 3 636 5 328 194 517 11 54 26 14 53 14 3 10 6 332 1265 1 263 6 20 573 17 10 6 20 14 109 470 14 1 171 20 14 5567 2166 14 509 14 60 531 9506 14 41 3 105 26 3314 8 128 83 365 75 132 930 63 24 132 2 5766 55 15 132 2 3086 1 67 88 24 71 2 5 932 37 97 240 9769 17 10 6 20 14 53 14 193 42 93 428 30 550 3 3840 916 400\n0\t117 1001 145 20 273 35 544 11 10 12 229 1711 47 4 1 6002 4 394 349 35 1121 1747 5 64 10 16 28 302 41 1715 172 94 12 4988 10 726 2 518 366 2240 141 3 14 2 4818 180 71 446 5 90 65 16 433 290 8 191 24 107 168 32 9 2384 1335 16 2 21 125 2 2596 984 3 8 63 198 1780 10 32 2110 4 412 290 245 1923 32 1 929 4 3 1563 1 91 1 4345 3140 3 1 832 1 21 40 43 188 160 16 110 15 34 207 91 38 1 18 1 478 6 152 167 2072 100 183 40 2 4134 41 2382 6892 15 37 103 1426 3 37 78 1 6178 981 22 17 1 3 1224 3 1 670 715 938 673 1729 178 22 323 7627 1 1430 140 1 707 4 213 56 4730 14 78 14 10 6 3 51 22 227 91 3 4081 35 34 17 176 77 1 443 3 3938 5 90 9 2 103 1434 88 10 26 4298 16 106 6 3934 49 72 321 1947\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 214 10 2 148 3649 5 694 140 9 135 1 478 1584 12 20 1 113 3 43 4 1 3263 89 10 832 5 365 48 12 101 5672 51 12 103 5 899 1 119 385 3 396 1 238 311 2165 3 51 12 2 1165 4 6437 66 384 5 1 108 127 6437 6043 189 231 6655 3 1 12 303 5 328 3 391 371 48 1 1205 7845 12 11 3353 126 1413 10 6 1219 11 8 1090 2 21 9 402 3 87 37 7 9 524 14 1 389 956 839 303 79 517 5560 3 6359 114 8 351 50 85 133\n0\t26 2227 144 8 637 1 4781 1 2482 207 73 1 46 210 185 4 1 18 6 1 478 2170 33 22 5973 4127 3 180 71 8 118 48 478 36 7 1 1692 29 1925 3 136 33 63 26 5973 479 20 36 1 7 9 108 531 49 1 981 47 1 1324 1765 42 2 91 1689 17 32 48 8 997 4 1 494 4 9 158 8 247 1156 5915 13 92 238 12 3 1466 1 1560 12 14 12 95 356 4 6429 15 1 807 1874 4 1 647 33 61 34 3 1 59 2715 2316 12 8 173 96 4 2357 51 12 2 427 41 102 11 89 79 4750 2 17 11 12 38 592 13 92 861 12 5417 2 1825 41 102 845 48 1397 1797 64 7 2 18 36 476 245 10 128 57 11 4316 538 5 10 11 23 70 15 104 89 19 720 3 2 115 13 614 317 36 79 3 70 2 2382 47 4 445 870 7020 3 23 64 9 28 7 1 3780 96 38 110 3823 875 295 29 34\n0\t1327 3 752 13 3520 153 87 3066 46 3651 5 1 312 4 457 358 3 59 5 87 10 19 1 5538 1 21 1404 27 12 15 29 1 85 369 1654 25 221 3750 37 480 9 101 2 305 5409 1 466 280 9 85 2873 271 5 1037 153 55 1030 7 43 4 1 2188 1131 32 1 74 21 11 784 959 1 17 236 2 302 27 1336 248 78 216 220 2905 2169 358 3 207 73 244 20 78 4 31 1651 3 20 78 4 31 238 376 4032 2 129 11 792 14 46 534 3 7184 17 498 77 2 1446 238 950 142 1065 1594 8945 32 1 74 158 3 1347 24 1674 4059 29 1 680 4 1988 4142 13 252 6 2 21 207 713 5 973 1 541 4 1 215 169 322 15 1 4702 534 7227 3 4581 265 372 125 2 163 4 110 10 123 9 169 322 831 10 173 15 31 4128 31 1381 4435 1518 3 31 67 11 1 1350 87 46 78 291 5 24 89 65 14 33 337 4508 6621\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 50 430 4 1 277 474 4398 502 308 316 8 338 34 1 5773 1 184 465 618 14 80 81 24 3184 47 12 11 9 67 1 1766 16 137 11 159 1 74 18 2209 1 4398 2006 62 35 33 791 100 563 1395 10 247 4 448 318 1 182 11 1 2071 62 94 6785 75 78 33 7 9 67 618 1 2323 65 15 1 474 4398 3 24 34 4508 11 101 367 9 213 2 91 18 14 223 23 359 10 3613 32 1 2808 8 179 1 129 78 52 510 98 1 5667 4 1 2808 17 29 1 166 85 8 343 10 1253 2 426 4 3922 5 1 4 1 474 8 93 338 1 72 474 185 29 1 769 292 8 118 82 81 57 1795 1687 38 11 1361 3 4 448 8 336 1 5773 50 4148 101 1758 65 3 2681 7305 1 474 4398 104 24 198 57 132 53 5773 764 460 16 2 46 53 2803\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 4 1 3153 2064 7 370 19 1 1158 6 829 30 3668 3 7745 3801 7 315 3 4308 685 10 2 718 6378 51 22 53 453 32 4469 3 4071 14 1 3729 3 14 2 1277 35 450 1 168 914 65 5 1 829 29 1 697 429 106 1 1004 15 2 1077 4 22 169 1883 3 3668 4938 15 2 163 4 3 1123 375 240 189 1192 1 59 3731 6 11 10 6 2 222 15 1 3295 47 3 595\n0\t4 1 366 409 115 13 651 69 409 580 1197 220 307 179 12 160 5 1364 311 224 5 1748 3329 17 114 2005 10 3 419 1 113 4510 4 1 366 115 13 206 69 4414 6609 409 580 1197 220 307 179 12 160 5 70 1 1570 311 73 3719 100 1196 28 409 152 145 1096 38 9 73 45 27 143 2005 10 16 7218 4244 600 9330 41 27 143 2005 10 16 1 115 13 21 69 1519 3780 1248 409 316 174 580 1197 220 307 179 1 1748 54 3639 1 2520 16 113 206 3 113 572 136 8 179 1 368 3430 119 4 1 54 24 89 10 2 434 16 113 572 136 3755 915 729 54 24 590 2 163 4 142 115 13 1118 127 2520 436 8697 6 11 9 349 1 24 636 5 2900 918 3329 3 1975 187 47 2520 5 81 35 2005 10 146 33 617 248 7 1 576 600 8 467 2 304 438 3826 1 4 1 2412 16 3032 579 3 223 190 1 1748 2400 15 62 2177 378 4 62\n0\t2356 919 160 77 2 5 4517 2 5813 4 51 6 2 9216 3 2 147 1320 196 643 285 1 115 13 7527 196 7 1 3 271 5 1 2430 15 1 2678 9 181 2 103 1878 17 5865 236 5521 13 7527 432 400 2189 15 115 13 1701 1318 11 100 90 95 232 4 5480 2509 35 40 2 46 53 727 2 2211 2083 4472 2 2340 327 1828 327 4391 4056 27 451 5 26 2 4583 36 2981 1220 3 839 157 7 2 402 2709 2340 536 7 2 15 2 1327 3 888 9833 15 2244 5294 13 4196 9 21 165 746 646 100 2510 273 123 2 53 121 329 69 27 198 123 69 3 25 276 24 5236 15 717 361 17 1013 23 24 2 184 15 2356 3 24 5 64 154 21 244 1356 8 511 354 9 8302 42 102 719 4 116 157 317 20 160 5 70 155 69 3 241 79 69 468 24 162 5 26 38 49 137 102 719 22 2780 82 68 101 9050 317 20 128 1157 51 133 9 13 3382\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 322 8 57 5 694 224 29 1 1182 3 787 224 1 753 1279 94 133 9 4 2368 73 8 24 5 369 10 26 587 5 34 4 23 39 75 91 9 18 705 42 3625 565 39 5 369 23 7 19 75 91 10 424 646 1857 9 103 2252 38 1 108 285 168 4 66 531 2903 4 81 1363 41 6362 7375 33 168 32 1 388 3118 657 23 455 79 1907 9 18 56 4597 7 698 10 151 79 96 38 1 233 11 10 6240 764 3188 127 663 39 5 70 77 1 3050 127 2569 3 5 64 1029 930 36 2782 51 6 58 67 5 1271 4 3 1 18 676 40 162 5 1857 82 68 1 2579 383 3 56 772 145 56 945 15 490 1311 11 8 219 110 1530 145 42 37 91 8 173 55 149 1 6029 6070 1580 47 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75 40 9 391 4 930 2716 19 249 9 42 1634 10 151 79 175 5 1743 42 37 1429 11 10 6 152 527 68 2 7836 1045 108 420 243 24 2 68 99 9 7442 8 320 133 10 49 10 74 310 689 8 3394 4686 9 88 26 1476 98 8 214 47 75 3605 439 10 56 1306 10 12 37 91 11 8 152 472 47 50 6407 3 1544 50 874 5 1 13 7017 1046 582 133 9 3 34 82 864 4205 479 1 1652 11 6 1 3 538 11 3503 43 179 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 157 6 38 2084 8 87 216 15 2 1398 2464 8 192 2 73 8 339 564 31 1764 55 5 9751 50 500 8 173 55 564 2 8 256 10 1 178 106 1 537 1337 6126 29 1 5746 318 10 6246 15 7 31 525 5 26 3946 30 1 82 2383 89 79 1415 3 40 2590 79 117 4836 10 311 7625 79 11 423 5807 22 1526 7 62 321 16 1 393 69 1 3564 1007 9155 69 123 20 5611 1 2553 4 1764 144 54 261 175 62 583 5 64 9 3124\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 39 565 565 565 565 195 11 180 1866 11 47 4 1 744 8 230 828 9 18 6 345 32 477 5 714 1 67 6 4068 1 3663 6 56 565 2338 6 29 25 1254 129 4120 1479 851 33 643 122 1294 3 35 451 5 64 3 816 5226 13 92 59 53 177 7 1 18 6 1 103 222 4 11 1181 340 19 72 64 27 308 57 2 1562 3 72 70 5 64 25 5514 435 13 7784 68 458 34 565 51 22 43 538 171 7 204 8703 3 3 33 87 62 1726 17 1 182 1122 6 39 37 565 1 594 3 2 350 8 1019 133 9 18 6 3 594 3 350 8 173 117 70 1877\n1\t3 2 1805 170 4585 917 65 1 13 92 524 4 1 6323 190 20 5576 32 1 304 17 10 123 24 102 4 19 80 754 6 690 35 1066 15 19 1 678 7583 4 3 34 1 3500 4 1 2642 385 15 2 604 4 82 40 2 84 412 9027 3 154 85 8 64 122 7 31 1101 10 432 631 144 27 6 4382 1440 1 304 35 76 26 2299 32 116 7583 6 2 3746 5331 460 6291 3 8821 1745 1 382 6019 633 7592 123 2 53 329 7 1 2024 4355 308 805 15 375 304 168 69 1 113 4 66 605 334 7 2 974 15 1504 1 868 30 6986 8821 748 1 17 10 6 1 263 458 308 805 6 1 2037 1426 516 5168 1 846 16 82 723 40 256 371 2 263 11 6 3765 136 3997 295 32 1 1205 6019 4 20 253 1826 9 21 32 1 344 4 1 7033 1818 1 524 4 1 6323 6 2 538 6019 158 3 286 174 1246 16 1 84 45 23 36 468 112 4460\n1\t1622 9 18 4 5 106 51 6 20 2 1679 799 7 1 135 48 56 151 9 18 37 53 6 75 306 5 43 4 1 4581 6655 4 1 85 9 18 705 97 4581 6655 57 922 15 2504 15 3 36 1 526 59 726 986 49 1 1647 5 90 2 184 934 47 4 1 3755 13 150 36 9 18 73 10 6 51 6 146 204 5 8235 307 7 2 53 699 1 18 40 2 19 2 53 604 4 81 105 1137 4 1 1340 101 4 3722 106 33 310 65 15 9 494 8 481 1 18 40 427 94 427 11 76 24 23 3343 19 1 8509 14 8 367 183 1 523 6 39 13 150 192 20 619 11 9 18 2006 132 1953 4228 10 6 31 5605 3 55 179 7977 135 9 6 105 78 16 480 1 233 10 6 3654 3 670 6243 7 42 2426 51 22 58 580 3108 17 2 163 4 1100 642 6817 35 266 1511 99 9 141 29 1 46 225 23 76 373 24 31 1062 4 110\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 539 47 1767 211 309 19 2241 1562 3 1 5452 7 6645 3815 52 1308 47 4 1 3920 68 42 107 220 1 663 4 3 119 3835 19 102 7824 2398 19 66 28 4 126 63 2023 25 6094 625 41 521 5 26 625 169 1494 361 3 2808 45 25 493 76 946 142 25 5 2 1330 2119 1170 1671 361 45 27 27 191 309 1735 164 5 25 115 13 4 9493 1765 1002 1415 1710 5946 966 17 2 163 4 1 267 6 39 5127 1 6 1201 14 2 46 1910 4 1 231 35 741 65 605 25 6241 8159 19 2 349 223 5 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 2 21 6 1532 3 20 132 14 1 8 12 852 47 4 1 757 47 116 683 3151 8 118 11 53 104 83 198 2735 813 3 2504 17 8 284 4900 8 5474 1 3 8 55 2173 2 156 4 50 417 5 946 5 64 9 851 489 18 15 437 49 51 6 2 1672 404 8 192 852 2895 20 9591 15 50 1691 61 483 402 16 9 158 286 1 103 1691 51 12 16 1 21 61 383 5 898 308 8 159 11 31 594 57 2021 183 72 159 1 74 3131 4 813 209 47 4 51 61 105 97 119 1931 3 303 105 78 5 1 5553 8 2580 20 283 749 8 96 51 228 24 71 52 882 3 840 7 11 18 68 7 1\n0\t100 338 3722 6605 17 179 420 187 9 28 2 91 6633 1 18 6 377 5 131 75 1 585 4 1334 148 157 2064 4732 2 4305 7 1 1702 4 48 10 56 114 12 2658 200 1 80 509 120 11 8 894 261 4268 16 14 237 14 62 1358 4386 1892 4386 3 37 926 966 1 168 11 8017 1 2064 22 39 458 3 162 2 1363 3 98 42 155 5 2156 366 835 55 52 903 6 3722 5383 1412 5 131 65 14 2 2892 7 1 3515 1961 503 317 58 875 47 4 1 484 10 151 126 55 527 1294 1 80 810 178 57 5 26 1 1238 1874 7 2 3309 5545 66 12 2769 7 2 178 183 10 106 10 12 377 5 24 71 48 61 23 517 49 23 89 9 3124 20 517 29 34 6 50 6528 81 35 96 4541 64 2 1004 1794 186 50 2952 3 87 20 351 116 85 41 319 19 9 317 138 142 133 1461 6454 7 9 351 4 158 8 419 10 2 755 47 4 489\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 850 4512 9 4285 10 12 2444 8 192 2 568 325 4 203 502 3 80 4 1 387 203 104 82 81 134 22 573 8 3704 1 353 35 262 12 3982 8 76 134 656 17 9 119 12 1319 10 89 58 10 57 111 105 78 2565 3 31 2411 341 447 178 29 1 4362 8 87 241 1 206 12 242 5 26 41 17 10 39 310 47 1319 5 734 5 1 2418 4 930 33 404 2 640 1 171 1181 1853 3 8 4268 37 103 38 126 11 8 521 3001 35 12 7 4641 9 18 89 79 7054 45 23 63 925 133 9 18 7 1441 786 1405\n1\t1 7001 3 130 26 1 879 5 187 199 1 113 428 3 80 179 7977 431 4 1 4207 7 5 72 22 1979 5 1 67 4 6668 3 29 1 357 4 1 431 1 342 22 246 2 40 997 6668 4451 3 27 6 2805 242 5 1364 44 1877 136 33 33 149 730 7 2 606 2561 106 6668 6 303 15 59 3 17 6 1256 32 1 606 3 4705 19 1473 49 2 6952 3 11 57 1732 44 4705 44 19 6793 3 9 6 39 1 7354 1098 308 7 1 2430 6668 191 1088 704 41 20 130 414 7 9 1296 15 58 3059 3 59 236 93 2 601 1380 854 154 85 60 271 2 1323 14 2 1272 3 3029 1245 16 34 3149 4 1098 1191 224 9 6 1 113 431 4 1 1022 3 407 4031 14 28 4 1 401 767 1218 32 1 3067 363 5 1 263 66 3554 7 2 156 1552 8 100 159 588 3 1216 37 23 63 202 1388 194 260 5 1288 130 24 1 260 5 139 19 536\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611 30 95 1408 1446 4 21 2169 6 2 46 345 21 7940 3247 2999 6 2 4975 1500 2169 3172 220 3241 5 564 17 98 89 94 101 30 2 658 4 56 1500 1481 29 2 11 276 2 222 36 2 7473 197 1 3187 13 19 2 3563 7275 244 30 2 2712 4 1032 11 3964 122 38 231 157 488 3247 153 771 1264 475 1 56 1500 1481 473 65 3 564 1 30 1363 126 7 1 155 136 479 599 1695 3247 196 2048 3 1141 3622 2 1849 196 1 3158 13 1 1748 357 2 147 3631 16 2169 6 20 160 5 1364 95 245 14 3936 14 10 424 10 1373 31 837 2751 1 1383 6 1 220 4026 395 488 29 1597 269 1896 10 153 86 786 1367 11 1 2255 1183 6 59 2 3707 681 985 142 45 23 9671 5 186 10 1067 3 28 52 45 23 83 36 13 47 4\n1\t29 1 106 151 375 1035 5 70 9 748 65 679 4 56 211 2103 3 679 4 84 566 7511 7 1 4270 72 64 34 2329 4 4115 3 240 341 2505 6665 29 1 14 109 14 1688 1123 4 1974 14 13 4804 979 3 4 1367 6 1 4 2885 2677 3 1 5436 4 9445 6 20 3946 14 2 1465 29 17 6 89 5 2031 16 1 349 4 1 19 1 305 8 969 51 6 2 293 19 2000 3 1 3576 11 206 2300 32 110 9 6 2 5436 97 3174 6756 4 172 2195 3 7 2360 2344 6 128 2336 4 55 19 1114 193 1 1585 1123 8603 3 14 2 1122 4 25 1093 3548 2 293 541 4 2885 49 1783 48 232 10 424 27 5185 2885 66 27 74 285 2 15 1 7 1 570 7887 15 1 51 6 2 7418 7938 4 1688 1123 16 3 13 2679 2 267 9528 8 96 42 28 4 1 113 4 1 2885 2677 1818 14 2 2885 2677 21 7 5396 10 93 1421 8 354 10 5\n1\t3 2 4051 1 633 1706 407 6 1 1706 220 831 136 51 22 43 53 9491 36 2 797 673 1729 5528 178 7821 143 4654 333 52 4 9 18 6 1677 774 14 53 14 10 88 24 5674 8 909 5 64 627 3804 7 238 3 29 225 28 1534 7055 2068 5870 566 980 2022 665 1208 2 3 12 303 595 1558 136 5333 29 2 6167 1428 68 86 10 128 4089 2 103 7 43 546 2720 1677 774 14 91 14 78 36 618 9 1324 2281 774 1 182 6 20 46 13 4511 4 1 845 190 478 36 6 2 91 18 17 10 373 4819 10 6 1227 837 3 4031 738 1 138 8967 5 1 1818 10 6 1070 31 8385 6495 1015 1920 202 154 82 1706 18 47 779 6 10 31 238 36 6508 6949 10 311 88 24 314 2 222 52 13 7414 56 36 5 64 2 957 4186 89 30 4654 17 42 229 20 160 5 8928 13 3199 1 393 12 111 105 2775 130 24 1866 11 54 24 89 1 18 169\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 1064 512 2 84 8200 4 638 5609 16 27 1745 1 902 15 332 979 1729 1482 15 687 246 107 80 4 25 5609 8 179 8 88 6660 398 8 12 434 1328 6 146 8 88 24 100 5332 457 1 442 4 638 1604 94 50 32 1 74 8 544 5 38 9 483 7794 250 919 3 8 2300 1 2582 11 34 1 6606 3 1463 204 22 2126 32 3933 101 30 110 51 22 188 7 257 486 72 924 117 16 33 22 463 3094 41 2680 245 33 22 3690 3119 37 8 186 1 4344 5 867 2405 19 127 2126 3 9 6 20 2 18 5 9369 193 468 519 539 47 4 2 4965 356 4 2106 9 6 31 1139 6180 4 34 188 72 243 5 15 86 3 186 10 14 10 424 23 83 24 5 36 110 10 39 3 2958 45 317 1509 468 149 824 687 5 2854 14 530 8 354 10 16\n1\t18 856 3 8 338 1 108 2924 4 1 233 11 97 2387 3 4296 3 536 29 1 166 4795 3 55 1 1972 4 106 1 67 2672 40 43 8029 32 16 72 63 24 299 55 23 22 46 115 13 92 1849 6 6720 31 2488 3575 3 97 1804 22 5 1 1270 106 6 6765 6 2 439 11 6 303 516 30 25 221 1562 11 173 820 122 95 7 25 744 27 762 75 27 2307 2 5799 35 123 20 474 38 41 3 6 160 5 1 4126 11 27 63 728 26 6765 1036 5 917 3 7 1 750 4 62 33 214 2 423 532 15 44 8048 1 532 2180 17 3 6765 1036 5 186 122 3 1110 1 1248 16 1 9768 28 4 1 1036 5 917 3 352 126 5 139 5 2 5 1 7885 48 3 6765 123 20 1374 6 11 6 32 2 7066 35 5214 2630 3 451 5 564 1 9383 3 93 4294 5 33 205 5 90 33 390 48 76 3659 76 4 2813 3 13 1427 1592 87 69\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29 74 9 21 54 26 116 687 1214 158 245 10 590 47 5 26 46 240 3 721 79 260 5 1 46 769 66 590 47 46 7565 57 576 3212 15 578 3 100 1334 3 54 582 29 162 5 90 273 27 997 65 15 122 3 1390 122 1877 906 2315 3306 4 2 1180 5 70 997 65 7 9 1261 3 214 992 738 447 413 35 100 384 5 597 44 3420 1334 57 5 90 43 46 254 5445 3 3 8 12 169 619 29 1 7230 9 6 2 46 548 21 3 1 121 12\n0\t582 244 1459 1 210 1 1423 3 137 35 83 24 1 445 5 134 58 5 1351 778 3 49 27 123 70 2 53 454 5 27 1 898 47 4 2350 13 69 34 22 1012 14 258 254 645 22 1 285 1 5327 27 1092 380 261 1 680 5 1271 183 126 463 2443 41 140 1043 7 1657 15 2436 34 22 1012 14 140 1 2858 3 630 4 1 81 6 2619 13 69 1 859 29 1 182 6 862 3 136 10 6 31 240 3486 42 20 1463 15 5 1 3330 81 35 22 20 1842 1037 2980 411 136 3502 4 5566 309 7 1 9 1345 380 1 859 11 4842 6 439 3 3 11 10 76 2410 1 1162 27 93 2063 11 307 602 7 4842 6 8741 13 3371 1 9502 5 1 158 10 40 43 53 6397 3 1 2106 136 46 6 152 695 17 118 160 1356 10 6 2 46 4706 1037 4706 4 244 20 5909 2357 244 1083 23 48 27 13 69 43 53 2103 17 8339 15 31 483 718 3358\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 112 86 28 4 50 50 1522 767 1 28 106 60 498 77 2 1 74 2541 1 306 112 431 3 80 4 1 344 32 1 74 1199 8 87 96 1 1185 767 61 20 14 53 14 1 298 416 879 17 33 61 138 68 1 226 251 66 12 1319 9733 12 2 53 129 14 60 12 52 9778 68 17 6624 12 7 43 609 4916 3 61 3982 3 51 384 5 26 58 2651 16 106 33 12 2 53 129 854 8 100 338 2395 41 33 39 1121 14 53 14 44 82 2567\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 56 336 9 141 3 10 591 1527 437 1 102 250 171 22 685 199 132 84 2137 11 29 1 769 10 6 56 683 2828 5 118 48 475 653 5 62 4720 13 92 189 7024 6649 3 8400 6 3 1 788 22 39 84 1 111 33 2620 115 13 6570 144 8 143 230 619 49 8 2178 10 57 1196 715 2101 9289 2520 395 80 9794 18 29 1 2101 31 918 3 55 2 9 18 6 2 382 11 1071 5 26 107 30 4315 2 84 141 11 40 396 71 8013 73 6649 5 70 602 7 194 1416 14 2 44 6 1 3 11 76 1416 786\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 320 49 9 21 12 65 16 1 1748 2520 3 114 20 1364 7 95 6683 16 1 157 4 503 8 481 320 48 10 12 65 17 28 177 8 63 8298 10 12 28 4 1 113 104 8 24 117 575 3 1 233 11 1970 5535 470 1 21 114 20 79 28 13 10 6 38 2 315 3540 7686 3 14 60 6 1758 65 32 2 282 5 2 3248 51 22 2 163 4 11 22 1577 3 17 34 4 126 22 965 5 64 75 78 9 287 40 256 65 1566 385 1 744 72 64 82 415 35 24 57 5 256 65 15 62 3 1243 15 126 5 5122 5019 380 44 113 278 117 7 9 108 1954 4671 130 24 93 1866 29 225 2695 16 25 280 7 9 135 115 13 872 1 113 185 4 9 18 6 11 10 4918 86 5258 20 36 43 6051 289 36 1 52 1058 1322 8 5975 261 4 95 2075 5 64 9 135\n0\t5 62 47 19 9074 13 5 1 30 86 515 7 233 38 59 5 26 2958 14 3365 7 154 1 596 4 6046 3 4 25 347 24 71 94 1 813 4 86 220 10 1478 19 9074 13 6714 53 985 24 71 89 30 1 82 708 8734 19 9 591 1 28 38 712 9 14 2 6684 4882 16 21 416 9277 220 9 6004 123 20 55 333 1 1048 4 2858 593 533 86 389 535 719 599 290 10 6 888 1 206 114 131 65 16 1 407 51 12 6025 1124 35 563 55 2363 48 33 61 13 4550 7845 2236 5 19 9 970 1981 66 130 29 225 1 4 9 6003 15 2 156 1308 16 62 13 8824 12 332 162 12 571 8769 762 4 1 15 34 1 1569 556 3335 13 3786 39 13 677 22 148 1532 6473 47 51 5 26 5391 689 81 35 152 328 5 216 5 2 298 1446 378 4 62 38 75 84 62 18 6 160 5 5721 13 8677 88 87 527 68 359 31 1128 19 4452 16\n1\t1591 9216 11 643 723 7 2 3578 379 12 3 37 6 47 16 2 80 1858 426 4 5677 10 2027 1 9931 488 8834 1 1890 4 752 30 122 3 25 1 1122 6 2 3 1330 5995 140 1 6274 3 4 2516 13 92 226 254 3012 370 19 1579 821 6 1330 7 97 7714 642 1 189 5023 3 3 1 1890 178 1295 3 102 1144 4 1671 6 229 154 222 14 6269 14 696 168 7 3311 3 17 11 153 7149 105 1722 78 32 1 644 1872 1782 5 1 1214 1818 7346 6 446 5 3258 1 1909 67 15 2846 3 278 14 31 4213 12 229 1 113 28 27 117 419 7 95 4 25 5725 703 151 16 31 258 3 205 3 1469 8277 794 1576 87 53 498 14 530 1 265 204 6 32 1461 4695 5 2226 3 1 1015 4 17 10 128 557 3127 13 829 400 19 1972 7 3 1 161 4881 1 226 254 413 693 5 26 612 30 1996 19 1919 2633 305 5982 10 6 2 1214 11 1071 162\n0\t0 0 0 0 0 0 0 0 0 0 0 9 18 23 76 175 155 1 719 10 270 5 70 140 110 5456 3 470 30 745 114 48 217 440 5 87 78 78 78 828 11 18 12 5687 5296 3 8 4268 38 48 653 5 205 361 41 243 1 120 60 262 361 3 1 453 30 607 201 61 13 8212 14 217 6 1 494 6 2971 3 8 88 24 4268 364 38 95 4 127 81 361 225 4 34 28 6 37 5017 361 44 74 4914 4 6 29 394 361 3 37 5172 60 6 6985 3 20 7 1 1411 1821 1 4339 6 4275 17 13 7384 817 3322 104 1066 3822 145 27 1019 85 19 1 1106 3 1 171 61 28 391 4 8036 16 9 18 6 11 27 1059 9 1106 7 102 23 63 9194 3 136 6 964 361 137 200 44 22 1375 20 227 5 26 2 212 1 18 741 65 101 3 2 658 4 82 81 23 118 819 107 7 82 104 17 173 169 320 66 13 46 5882\n0\t5 139 1677 774 14 237 14 1 18 130 24 13 92 263 6 139 5103 11 10 6 806 5 497 48 119 272 6 160 5 5441 1194 269 183 10 152 4216 1 121 6 17 1 120 22 37 11 162 88 26 248 15 450 51 61 93 2 163 4 985 106 10 384 36 8 12 133 2 243 68 2 682 13 92 644 59 22 1 3007 304 633 7672 72 70 5 64 126 7 43 483 3348 3 167 5089 59 37 78 88 26 620 664 5 1 7159 236 877 4 3 3274 403 43 941 6878 17 236 58 1349 41 447 5 1271 2562 5047 863 355 55 52 304 15 6 93 7 1 18 16 2 46 346 1234 4 290 1494 9933 6 93 46 806 19 1 671 341 60 40 2 506 3 289 43 2438 121 13 92 59 81 8 88 64 9 18 2529 5 6 1161 35 662 1747 5 99 104 5142 11 410 228 70 2 163 47 4 10 32 2 17 1217 1607 76 230 3336 3 13 9409 1 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 55 45 4 81 11 40 107 9 18 6 646 359 65 15 1 706 220 10 6 1 1587 4 9 13 252 18 6 2 391 4 210 121 8 24 107 16 2 290 1 374 22 1634 5376 1 5649 9 12 1 74 85 8 159 275 15 364 2745 4050 68 5226 3 28 625 672 7508 36 2 715 635 765 7 1044 4 1 4575 75 63 275 37 91 26 1 250 353 4 2 18 1785 1 857 6 37 2513 50 752 88 24 248 138 5047 6 535 10 6 37 641 10 88 26 428 7 2 3 553 7 535 5907 13 677 22 59 277 6811 16 275 335 9 3515 5884 23 22 2 4509 23 24 71 37 30 11 23 96 11 235 11 40 1 6 6774 23 24 2 686 1568 13 5827 29 34 6240 579 2 1152 5 1 8723 18 1361\n0\t5770 38 8 337 5 2 3115 4 9 21 2 156 2017 989 3 12 169 945 15 1 5372 8 1116 11 1 206 89 2 18 38 1 413 4 69 2 915 729 11 223 2149 7 1 21 1926 69 1 121 7 43 546 4 21 12 169 1 453 4 6817 3 1856 1133 1072 61 34 1051 245 1 206 130 24 100 256 411 14 1 250 129 7 1 108 1140 23 22 39 20 2 21 2099 1382 5 48 317 53 29 69 856 1014 8131 278 7 9 21 12 93 2444 60 130 100 24 71 340 2 1874 280 3 44 276 61 5 309 1 185 4 2 773 51 61 82 170 1624 7 1 21 35 61 3321 304 3 603 453 61 144 1121 33 201 16 11 174 580 465 15 9 21 61 86 238 5007 1 1481 83 176 36 33 61 1076 1091 369 818 4315 5080 9 12 2 402 445 7628 17 220 9 12 2 158 213 10 731 5 131 43 152 9 21 12 2 1822 17 373 20 279 2 580\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 360 589 3 6 401 496 354 9 108 44 1835 7 50 1520 12 1748 1570 1 59 148 747 233 204 6 11 2905 1336 107 5 10 11 9 18 12 117 1492 19 95 388 704 10 26 2581 41 1771 33 22 9326 2 46 53 108 17 2905 40 103 3055 16 86 4189 19 2388 66 6 5882 45 23 70 1 680 5 64 9 1339 1491 273 144 10 6 1550 55 549 19 64 1027 8 495 139 77 1 67 73 8 96 80 81 54 243 24 31 1062 19 1 158 3 105 97 1017 719 523 38 1 441 66 6 1492 13 743\n1\t811 3643 16 122 3 7848 25 236 93 58 1 1005 799 106 1740 3155 48 2 528 9677 244 101 5 25 1186 711 3 1891 30 1 182 4 1 141 43 574 4 1681 5495 40 71 1001 236 43 2694 204 7 1 111 1 120 1650 3 7 1 111 33 1999 5 239 1885 3 46 103 4 10 255 577 14 13 92 59 5 1 18 255 7 1 921 4 31 332 1941 941 178 11 55 1 4030 4 1 3153 941 1433 7 3 5505 54 3706 144 850 144 12 10 256 77 1 114 6661 4300 1622 2 3 7450 5 186 1 280 1013 27 12 340 2 2451 5 4755 25 850 37 1502 1206 1 389 980 373 114 20 321 5 26 51 3 57 1056 364 1411 1548 68 95 340 131 19 218 622 13 3616 1024 9 18 12 2355 3 1 2206 7103 31 594 3 2290 12 39 38 3090 28 4 1 1726 80 1087 414 238 635 124 468 117 64 45 317 117 200 537 41 39 320 48 101 2 635 12 152\n0\t2 5 31 5221 1394 17 1317 2930 7230 250 985 4 796 22 102 1394 1060 40 2 163 5 1836 16 7 9 14 2 1446 203 9815 3 1 168 1738 1 17 483 3150 1 74 6 2 223 176 1685 391 15 44 528 15 5701 1 330 2 78 9580 7058 29 44 15 205 288 167 1441 154 40 2 4055 3 205 168 131 4 44 885 37 34 6 20 13 5944 8 173 1088 704 1060 429 106 510 6 3245 41 548 7 2 232 4 699 45 317 20 77 1 870 51 6 162 204 29 399 17 16 203 596 51 6 229 227 5 1 1164 2618 3 7777 4 1451 16 13 178 69 7 95 82 21 1 4143 6384 6283 54 24 2632 1 880 33 22 193 30 1 2622 231 1146 106 2 9243 522 784 7 1 3571 19 283 9 60 2080 48 232 4 9130 10 6 5 26 553 3 183 1 7872 427 69 236 31 489 543 7 50 45 9 247 227 1 6 2089 116 9130 16 3745 217 3169 344 7\n0\t4674 941 7 2268 1 166 271 16 2934 174 345 353 35 380 162 5 1 412 17 25 53 276 3 1065 1286 587 14 2014 213 169 14 91 14 127 3802 27 123 29 225 187 1 21 146 372 1 4 1 9862 1 574 11 1 2009 133 54 812 5158 329 109 27 1275 7 2 595 1321 278 11 419 79 1219 3805 32 1 1772 17 4648 10 6 20 227 5 2464 1 21 32 42 3 1289 80 91 124 8 149 146 5 186 32 1 158 17 9 40 162 5 194 3181 8155 213 105 573 17 60 6 39 1 857 6 2764 10 784 1 846 12 52 8001 19 253 2 21 4 9 541 3 3 3001 5 734 235 1939 95 8630 95 4575 235 29 513 73 36 80 33 22 39 6118 1445 11 22 1674 167 5 176 6052 78 7048 5 1 3397 4 9 6565 803 13 31 594 3 2 350 4 85 8 88 24 1019 138 403 146 78 52 7277 36 648 5 1597 349 161 6035 19 1 1969 38 1\n0\t1040 413 22 1 1232 4 11 33 76 187 10 5 1 344 4 1 1561 3 72 76 34 22 23 9877 22 81 56 439 227 5 96 11 6 1 6 1 87 72 230 11 111 38 1 2100 4 4 8 63 64 11 816 6 1977 73 4 25 5367 2214 3 27 10 19 17 809 29 2818 9102 1 1757 41 1 22 56 1 8481 4 1 33 114 20 3143 3 114 20 3143 5 6455 1 13 8382 3516 447 6 3785 5 2 3516 727 17 37 6 1 1828 87 72 56 175 5 1844 1 4922 19 1 54 3516 447 189 816 3 2362 24 5367 2059 5753 17 20 4707 13 6 7861 114 8 798 3230 13 5 23 70 48 23 209 6171 4539 5517 3 13 8 17 8 96 9 21 985 2 5147 5196 29 1040 413 16 62 9789 3 4187 959 2 9153 30 2241 49 1 1090 4 3516 447 6 5610 41 138 68 11 4 72 34 321 5 4165 65 3 70 686 38 6 848 3174 4 3949 4 826 154\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 219 2960 800 52 268 11 34 50 417 256 246 2 1248 23 118 75 10 705 30 195 8 205 1 119 3 1 2933 94 2960 800 358 310 47 8 12 36 1233 109 369 79 1 330 28 12 98 8 159 31 3906 16 2960 800 755 3 8 12 36 1233 51 72 139 702 94 133 1 755 4582 8 12 36 8255 34 50 1691 2022 61 2 323 1386 3 215 119 863 23 6596 5 116 3104 16 1 389 290 8 24 1887 11 1 1254 12 1029 15 37 97 3865 529 11 76 9144 204 13 150 354 283 1 5256\n1\t1 3641 328 13 743 103 1779 29 984 17 86 4834 3 1 1972 52 98 90 65 16 476 294 112 181 5 26 246 299 403 25 280 14 1 6428 510 482 1 4 4452 27 1583 2 7684 5 1 21 11 59 2 6776 36 1977 88 7715 3 2884 22 2 53 23 87 560 144 33 205 256 65 15 239 205 7715 3 1490 2074 2 968 11 6 39 37 78 299 458 45 23 63 70 125 725 16 2 4174 23 190 149 725 121 36 2 635 316 29 1 1650 3 1 8583 1216 33 7935 4348 123 2 84 329 14 1 7 11 6 52 3096 38 1 7200 4 44 98 44 13 150 24 286 5 149 2 18 11 6 14 78 299 197 355 224 1 18 30 242 105 5053 20 154 18 40 5 26 1 2045 3 1961 12 31 1766 37 1572 320 11 6743 104 22 16 1055 2219 41 2621 5 31 410 17 39 16 1 1860 299 4 101 2191 3 536 7 2 85 49 257 8784 414 7 2 6517\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 2 8 192 198 19 1 16 124 7422 5 217 245 15 9 232 4 930 47 54 26 227 5 95 6899 13 150 721 1000 16 146 5 67 5 41 39 16 10 5 90 43 232 4 1821 1070 10 12 39 5210 1025 7 95 111 15 2357 1 21 1200 5 8328 95 232 4 67 41 1384 5 1 5943 13 2609 31 594 41 52 4 9 8 311 590 10 6739 13 2687 351 116 85 19 9 13 376 69 3 10 153 55 2005 656\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 12 2 323 91 135 1 129 262 30 492 12 1 1003 302 9 1 353 343 11 65 31 3625 2304 2516 54 90 9 129 52 4670 10 6629 94 38 910 269 8 57 4318 16 2 4510 5 90 31 7289 9 54 24 1253 43 13 3885 5884 955 1171 69 4509 120 69 6774 1779 119 13 13 3382\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 429 4 2205 40 2 627 67 106 4116 3 309 2 184 2482 2 9786 1664 5 352 2 4937 15 25 6993 3 196 997 29 1 13 23 117 343 5380 16 146 11 12 205 2244 3 99 48 629 45 23 7894 9 4254 3 139 34 1 699 694 19 1 1590 4 116 4355 14 22 101 9515 3 2100 473 77 317 100 273 4 35 6 610 35 7 9 682 13 252 6 205 2 538 3 2 4 1 1471 14 1 18 741 23 230 11 1 67 1419 2 222 4 17 34 9 6 2496 30 1 313 1872 13 252 6 373 28 4 1 113 104 38\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 948 4 1 424 7 2 4930 115 13 92 119 271 11 2 1355 633 9882 6 19 3 136 1982 6 242 5 5455 2 244 242 5 842 47 35 1 1355 705 115 13 677 6 162 540 38 490 17 51 6 162 56 293 38 10 4032 56 89 10 1382 689 115 13 4 1 57 223 433 112 4760 3 1378 15 25 13 12 2 580 2592 7 1 157 4 1803 115 13 2663 1 1982 660 18 3601 1237 1110 4 1 1052 15 1 120 4758 115 13 724 948 4 1 57 43 1681 2 163 4 2441 142 30 2 1669 19 2 4711 4041 9 177 6 52 4601 6996 68 534 2130 1 4134 3 6912 11 1 1139 251 57 7 42\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 173 241 294 136 1673 31 431 27 19 284 490 5934 4 25 6482 5188 12 1711 7 600 600 19 5302 115 13 4052 6892 25 226 756 280 7 641 3508 16 4667 50 1410 370 19 1 986 1533 19 9 27 262 776 2 286 9228 35 3808 224 1 2435 3508 16 25 277 2778 1 131 12 2 4129 3712 7 86 74 1022 3 1196 2 4902 1412 1570 16 113 147 267 3 93 1196 16 430 267 251 30 1 231 136 770 641 27 93 2371 7 25 158 13 3053 166 349 600 136 294 12 16 1 7428 431 4 1315 641 3508 9239 27 1310 1531 1991 10 14 485 36 27 57 2135 27 19 1 4881 27 12 1108 4847 5 2 4521 6890 1 166 2430 106 27 12 1711 12 15 31 31 683 27 8099 17 114 20 90 110 294 5188 1436 29 717 600 39 755 1679 295 32 25 4777 600 1204 25 379 5756 3 843\n0\t7 4146 488 7 2 211 744 253 1 81 23 1369 19 1 3180 291 52 2852 3 5261 2912 5 23 68 33 228 7 174 1888 1667 1080 6847 490 3 55 1605 1 67 385 29 13 2291 1 4510 3 541 4 1596 3 82 2524 138 68 261 117 7797 8 4630 45 236 132 177 14 2 306 2524 5340 42 48 23 785 32 1 7218 669 35 784 648 19 1 1969 7 28 178 5 1 111 27 2307 1 454 19 1 82 182 13 92 67 6 4608 488 480 2 156 46 346 151 86 985 1325 38 1 11 1622 29 1 4418 4 81 536 7 161 9572 69 642 1 1105 3 7498 3 103 3857 11 352 5 450 34 9 6 69 436 144 43 204 96 1 21 10 153 69 6880 10 5 134 11 1 102 3132 16 3672 432 2 3132 16 146 52 13 6 1156 65 15 2 980 9039 30 2 3309 7575 788 32 1 5126 669 38 2524 5340 3 34 86 1184 31 296 657 17 936 20 1135 142 1 1183\n0\t36 9 59 5 2033 11 1 1198 6 7546 5087 2 461 49 8 159 34 1 7376 362 19 8 12 1247 16 43 232 4 9436 8605 12 132 2 369 224 49 1 6235 12 13 2699 401 4 490 43 4 1 691 7 9 18 151 58 1821 115 13 4196 1 898 123 1 6235 564 1 2792 4687 1 1746 1251 32 6927 2 84 2076 65 11 666 145 2 3413 3 8 414 224 86 2212 3 59 181 5 780 5 4012 129 32 355 13 1118 1 27 71 2306 224 9252 8 165 1 1418 27 12 3910 1356 3 59 1 2231 567 77 11 9704 3062 369 122 40 27 71 7376 34 11 387 3 45 37 144 87 33 4008 200 122 37 144 6 27 37 1589 254 5 244 9246 3 20 610 29 6123 181 5 359 160 480 11 22 5610 5 137 11 1 120 7 1 803 13 92 305 2219 666 72 22 1576 5 15 17 8 39 149 122 86 31 1535 227 141 17 10 1130 37 97 7536 11 10 151 79\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 247 852 9 5 26 2 84 141 17 1070 12 8 852 10 5 26 37 1319 8 1595 1 532 129 37 78 8 57 5 473 1 7306 8 590 10 2366 1247 10 12 39 28 185 4 1 141 17 3911 3 16 1 752 5 694 51 186 101 41 202 248 47 4 2 2340 41 3424 5 6951 1208 44 221 22 23 9877 7852 8 12 3172 5 1451 341 55 50 532 17 420 256 44 65 884 7 1 1863 45 60 2012 11 761 7 50 2168 8 12 909 5 917 2 274 4 3508 7 50 4291 1828 94 2616 13 150 143 751 95 4 110 8 713 685 10 375 8 56 1322\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 2 1526 3688 5 4800 1 2628 4 1282 2536 7 639 5 87 490 33 201 2 229 20 4668 639 5 87 51 12 58 111 33 88 24 201 2 2042 41 3492 349 161 14 1 487 73 1 112 168 54 24 307 47 1623 33 57 55 71 1747 5 87 8372 69 14 33 9393 1282 1845 12 50 3575 253 44 2 7091 1098 1 5501 4 153 24 5 1483 97 537 69 34 23 321 6 2396 13 150 56 83 474 38 44 41 44 5192 7411 60 57 2 8481 5 44 1554 11 60 114 20 414 65 1467 1 302 340 6 11 60 6 7038 1 3 7074 5 186 44 42 977 11 60 12 20 517 28 1750 11 60 195 7848 44 13 2719 11 60 3 22 1136 3 24 102 537 2193 8 11 60 6 19 44 3 517 13 1601 11 5119 9819 2536 5433 12 400 1321 3 425 1084 16 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 6 28 4 1 138 1297 104 8 24 107 378 4 1865 788 3 941 41 1238 502 34 1 171 24 1049 1 260 1676 29 1 260 4117 15 260 10 6 1 4 2 53 141 11 10 90 1 545 139 155 3 2531 1 7347 66 610 48 8 114 3698 19 8 198 335 5685 1546 541 4 121 3 27 57 243 2 2985 733 15 25 221 435 5087 20 14 1005 14 3 560 75 10 1553 122 9 1223 8 12 1475 30 1 593 3 358 4085 65 16 9260 6586 16 3948 132 2 9244 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 251 4 4074 1230 249 4205 8944 6426 2018 3 4624 2 3284 1952 8 87 56 36 9 108 906 2 342 4 1 4313 22 400 1466 2 156 56 84 3502 90 65 16 476 2 5 132 3156 36 8345 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 31 313 135 8 83 365 144 37 97 81 83 36 110 51 12 37 78 7 10 5 4329 2159 37 97 304 7525 3 37 78 6711 7 1 188 11 1121 5672 8 12 1517 9619 3 12 303 15 2 507 4 39 14 8 192 49 8 1812 80 95 816 5860 471 195 8 617 284 9 933 347 4 37 8 83 195 75 9 6105 1095 17 8 173 830 9 18 88 24 71 2 46 91 1 18 303 2 163 16 23 5 6825 6115 66 6 1 113 185 4 95 816 5860 2797 65 1 8506 115 13 2044 34 4 23 35 367 9 12 1 210 18 2233 8 2502 48 103 191 26 303 4 1 822 7 116 237 32 1 210 117 9 18 12 223 414 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 109 8 191 134 9 6 229 1 210 21 8 24 107 9 1 716 61 483 3243 852 10 32 14 9635 9635 7 3 33 1121 6017 15 9 84 201 8 29 225 909 43 53 121 17 8 143 55 70 656 8 192 2 568 4071 325 3 9 6 1 74 85 8 12 483 945 30 25 1663 1070 2917 41 7947 120 22 1 225 222 1904 3 8 56 88 24 4268 364 48 653 5 463 4 450 8 143 504 9 29 34 14 7 1 576 8 24 56 338 82 104 30 9 206 2491 1756 5309 16 9 18 12 20 279 1 10 2591 79 3 8 2474 5975 23 20 5 64 9 108 8 4810 11 23 76 26 36 79 6858 16 9 18 5 26 2287\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 180 39 99 358 124 4 4629 1 1128 3 28 186 5863 49 8 219 1 6551 8 12 232 4 945 38 9 102 3675 35 8 57 455 53 911 38 126 1448 11 21 395 40 2 56 91 1252 258 1 393 3 105 7 50 600 17 86 128 53 7 1667 3 5690 9000 37 8 636 5 64 28 186 59 3 8 143 945 702 128 84 4824 1528 2858 797 265 3 9 67 40 2 163 4 2445 3 2211 468 64 43 2568 119 8432 17 10 153 1232 95 1245 15 1 4185 1 59 465 38 9 21 6 8 70 2 91 1771\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 193 1 1657 22 6425 9 1894 4 2455 386 124 6 323 2 866 3 423 2751 51 61 43 2190 7 1 4165 4 1 1900 19 1 4 1 472 9 5 26 8 83 96 1333 1 1723 55 193 43 546 228 26 556 11 111 45 23 83 176 516 1 8128 1391 1 21 6 162 571 31 525 30 81 5 2783 62 3643 3 1687 38 48 3136 127 22 584 4 81 809 5029 24 71 65 30 48 653 19 2 7 13 858 8 367 9 21 76 899 1259 229 5 9925 86 20 198 806 5 1775 16 665 1 21 32 4445 6 103 52 68 2 315 412 15 5473 17 86 1380 6 132 14 5 5292 55 1 6472 4 81 8023 45 23 63 26 627 23 56 130 64 9 135 10 76 5861 23 3 23 3 4338\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75 9 391 4 1847 12 256 5 21 6 660 437 1 59 353 35 6 29 34 587 5 79 6 2095 31 4368 353 603 1761 6 1674 2 16 1472 10 77 13 150 83 55 96 10 6 279 2 7927 16 2 5491 9 21 56 123 90 1493 104 2 1262 2 606 385 1 15 613 7 3 58 28 789 75 5 582 1 4391 2056 8879 13 92 263 191 24 71 428 19 1 155 4 2 80 89 16 249 104 22 489 17 9 1 5590 841 47 1 121 2576 4 1 4612 1011 918 3531\n1\t8 24 100 7207 2 18 19 970 245 8 192 7 1 388 5450 3 588 32 11 8 63 867 197 2 3725 4 2 894 11 9 21 6 48 2 386 130 1142 10 40 2 46 53 67 3 174 177 8 55 138 1298 567 12 46 109 2427 8 336 388 2163 16 10 3 75 10 12 13 150 192 20 2 325 4 17 1 111 9 21 1123 1 1380 10 3375 3 15 95 21 11 6 34 11 1 3347 4 1 21 557 1080 3 1043 12 46 109 1613 32 2 1813 601 4 188 801 6 601 8 1797 216 297 6 93 46 109 1613 51 6 58 580 691 5 272 689 59 1681 28 8 24 6 11 1 182 1079 22 2 103 9 6 229 664 5 2 369 79 93 134 11 8 54 24 2923 5 107 52 4 1 112 178 17 8 192 259 6582 23 63 11 65 5 2 259 13 1627 790 8 1090 10 2 10 6 279 1 99 45 23 325 4 2633 386 4121 13 1140 16 91 41\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 112 3 300 207 144 8 381 1 18 37 1264 102 663 183 1 18 6321 8 337 5 64 25 8 159 1 1625 3 1 388 183 1 18 3 8 179 8 57 10 34 8 12 378 4 2 53 18 8 2 84 4941 8 343 1 108 10 12 10 12 17 80 4 34 10 8 173 55 905 5 1431 1 37 8 495 3662 145 20 2 18 8 173 1431 10 7 52 50 1609 4712 3530 6 34 73 1 309 303 79 1479 851 16 1 3662 1479 23 1479 23 3748 1479 23 3 1479 23\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 141 8 495 637 10 2 12 676 38 162 3 650 16 1 986 1630 4 1 290 4789 1 392 12 19 331 8657 3 9 18 419 1 6318 3 257 1607 2 13 724 987 24 146 15 2 222 52 13 283 2 170 2640 1086 19 1 1 265 12 53 13 724 28 2691 94 174 196 161 13 150 143 55 3082 1580 37 45 317 28 32 1 14 33 867 468 373 335 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 332 336 9 18 49 8 12 2 4163 8 4555 154 85 8 219 110 10 247 1021 5 437 8 400 15 1 807 8 54 112 5 64 10 316 341 449 8 4108 26 8 12 56 1366 7 5 1 1189 1162 3 5 79 1 18 12 8 560 45 8 117 159 1 251 3 24 1852 8101 1 121 8 179 12 8 336 783 27 12 37 9025 5 31 394 349 161 6768 8 74 159 1 141 20 7 8 63 128 320 1 120 1 12 400 1202 3 8 63 128 1 510 9273 12 782 69 8 511 175 5 2146 44\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 3905 11 21 6 31 7644 2434 3 483 1822 4 875 5010 16 503 10 6 27 113 665 4 21 220 13 499 6546 906 100 70 1 7929 10 7767 10 12 100 6980 4492 49 10 12 74 612 3 40 57 5 2031 86 4 596 140 36 616 3 736 4 2333 2551 13 150 496 354 11 81 288 16 146 52 68 3670 1033 760 9 18 3 77 86 496 4326 994\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1310 7 112 15 5138 7 2828 1 98 1662 55 52 4574 30 44 2552 3 7 3 195 255 9 1528 1103 4 2 1086 282 35 3 7 2454 4 1 4872 1898 4 1 583 4 2 164 674 7 321 4 44 671 22 1 4761 5 25 1898 48 4620 3 304 671 33 9753 13 35 186 188 1345 76 149 7006 3 593 169 35 22 1774 5 139 15 1 491 2157 6 9 829 6373 76 26 109\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 20 1 113 21 11 2025 4 199 24 1586 17 37 75 8 1309 49 8 74 159 206 56 405 5 87 2 686 1406 141 17 91 11 8158 28 4 1 1340 104 117 50 5268 6 11 23 130 64 45 23 2723 10\n1\t4243 144 1 1019 2 5117 19 7370 17 89 20 1 4631 525 5 35 152 4733 1 1653 11 643 25 958 3396 5 867 9 933 538 4 1 1904 950 6 30 783 7 1 324 66 93 400 1 1643 19 9522 1682 75 1 2906 204 1047 890 2 1428 41 102 7 1197 29 1 17 98 151 58 525 1034 5 257 103 2594 7 1 278 4 11 27 411 12 1521 5 9 6 2 46 866 178 1314 73 10 6 37 13 93 1745 31 3122 77 1 216 4 174 514 2922 9878 7963 603 216 12 1135 9017 5 1414 1913 60 1136 4642 8085 7 3 5343 7 5 44 157 301 5 44 766 3 62 102 2778 4642 8085 1436 7 17 60 1457 318 728 7 17 8 2398 6025 57 1 5905 5 3634 768 174 1617 115 13 2044 503 7243 59 89 2 1418 14 8 179 27 12 1056 4405 3 2 1516 29 25 1501 4167 27 531 262 41 17 638 14 692 12 13 659 399 31 4056 397 15 304 1667 3 3102 397\n0\t17 42 128 1445 3 10 151 79 396 96 4 1 9946 809 7782 25 7 1044 4 1 3 328 5 90 3489 1047 7 1 1482 11 146 54 209 47 4 5908 1 1084 6 501 3 51 6 2 212 4523 66 6 1 1122 4 53 5246 8 96 1 250 919 1 170 2112 6 169 240 7 25 1 2253 259 6 93 452 3 1 259 35 276 36 5297 17 6 20 550 17 167 521 94 1 477 1 18 498 47 5 26 146 7 9 524 8 467 31 2174 427 4 168 4 3 51 6 20 78 3099 7 9 42 400 3 154 454 7 9 18 6 3094 3 41 521 3789 3396 5 134 11 51 6 58 623 1497 42 2 223 197 58 3148 7 95 4457 1441 3466 1373 5 79 28 4 1 80 240 18 1350 11 22 7736 2087 3 8 96 4 9 18 14 31 3 14 2 3285 7 656 307 40 5 839 355 433 6743 39 5 825 3 5 149 62 111 702 9 228 26 80 3509 3 2213\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 405 5 420 637 2 115 13 23 57 68 13 165 79 2 13 8 905 5 6252 786 5724 395 3346 32 50 3268 11 6 20 1 111 8 555 5 26 115 13 2361 4 1 1529 8561 3 396 32 9 1515 3 396 7228 135 5382 2772 6 4226 3794 3 3361 294 6 1515 3 4878 1 102 24 2 3 585 733 66 1 164 912 1777 6 5 76 27 917 25 683 3 41 39 25 125 1166 180 4463 5 9 141 15 3 8547 3 10 6 2 18 5 1110 2339 85 3 85 805 3 320 48 6 731 7 727 14 386 14 10 705 115 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3458 4 399 9 18 1385 79 4 1 161 104 8 314 5 24 5 99 7 4842 897 7 2727 207 20 2 53 1606 4888 42 39 2 8939 3 2288 391 4 39 36 1 464 1199 145 20 5888 30 1842 17 8 192 5888 49 127 1842 104 39 780 5 26 483 1319 8 54 39 36 5 26 446 5 134 327 188 38 2 1850 18 17 10 153 176 36 11 76 780 95 85 5982 8 2398 45 23 419 1 5169 2 547 2039 33 128 511 26 446 5 209 65 15 235 452 39 925 9 461 896 1 233 11 1 6300 231 38 9 21 19 62 5272 6 174 302 5 90 79 812 110 7 698 94 8 2111 490 8 337 408 3 219 50 973 4 638 1274 5062 79 435 16 8 24\n1\t8203 6 313 14 2 164 29 74 2364 17 35 5647 2 534 3186 3 22 46 1535 1221 5376 7 25 46 7282 1174 245 6 35 2303 1 131 15 25 278 14 2 1330 3 4756 164 35 1052 1208 59 451 5 26 2085 1 120 22 3913 1619 3 1 201 151 1 80 4 2350 13 92 18 6 17 10 6 20 197 86 1555 4 4 611 1 80 2741 28 6 86 1 43 4 1 22 2 222 345 1074 5 1 1535 3624 3 314 7 82 1025 245 10 6 100 105 91 16 110 229 1 91 177 38 6 11 10 181 5 1621 43 8239 30 1 182 49 10 2405 19 1 3018 315 1449 243 68 7 1 647 20 105 78 4 2 91 177 17 1 393 190 291 904 32 11 272 4 13 6 174 28 4 137 84 203 124 588 47 32 3871 3 28 11 1071 5 24 52 6 373 2 860 5 917 14 9 8107 9732 901 4 1 3018 6 2162 227 4 25 4681 9 21 6 2 147 7552\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115 13 858 15 1 82 767 7 9 4743 251 19 1 97 2766 4 1 2918 1500 423 7045 34 680 16 13 858 103 8402 2175 97 3299 4 1 398 3389 154 5717 239 3 154 1269 7869 6305 255 59 32 1 8754 4 250 1245 7 9 18 251 181 5 26 1 97 8287 120 845 3 2255 122 7 1 4380 4 2 425 101 151 16 1065 67 37 1914 6 257 4128 11 55 137 35 525 5 352 122 22 5 87 146 1013 6 51 5 1654 3 1377 62 154 13 1118 6 1 356 7 1083 2 67 38 95 454 35 481 87 540 3 76 4382 1364 29 297 154 625 8647 48 6 1 272 4 133 132 2 7771\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 2626 44 417 3 8 24 219 9 18 1345 4775 4 1287 8 969 10 1882 3 43 103 15 110 8 1150 10 37 46 97 1287 10 39 100 196 2965 153 55 24 10 7 62 4078 3 8 24 713 5 760 10 16 125 715 982 197 2 4724 9 12 3 6 50 80 1522 18 4 50 5776 40 10 7238 72 72 72 8593 148 157 3 75 254 43 537 24 10 7 1 1162 51 12 162 4294 38 9 108 72 3017 5 154 330 3 154 427 1359 2 1519 16 257 2845 7 423 6360 3 13 13 8750 22 72 5 2095 45 2 1086 287 621 7 112 15 2 345 41 2 164 35 40 112 6089 5 3081 2 583 35 6 20 25 2487 10 190 20 26 50 41 116 500 10 6 20 59 6256 10 629 154 1393 1479 863 50 2845 7 423 1109\n1\t1936 224 16 58 461 1682 75 260 94 490 27 303 1 37 27 511 24 5 329 5 6006 57 102 84 15 75 4325 113 1484 6 421 1 3 98 62 12 2 207 144 11 5201 4 1 349 12 2 75 396 87 23 64 102 9042 1364 4 1 349 9 518 7 62 13 92 3274 1484 12 28 4 1 113 4 1 2463 35 563 1 3274 88 998 62 221 421 28 4 1 113 8268 13 6714 134 11 1 1484 12 2 351 4 290 17 8 336 110 4995 48 89 1 161 794 1356 84 12 1 1541 4 3 6051 880 6 51 2 1898 47 51 35 143 36 13 92 250 2592 247 573 292 1677 774 1484 4 1 349 33 256 9174 125 322 17 89 2 2547 1412 7 246 359 1 27 12 1 74 220 6732 5 998 1 16 52 68 102 8384 22 34 1 290 17 32 1 477 4 1 140 1 4 1 45 23 23 1155 2 462 13 858 31 161 416 4613 1787 9 28 3 22 50 7219\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 341 11 588 32 31 9 6329 6 91 13 8824 40 459 71 367 30 1 1755 183 395 879 35 1274 9 391 535 3 5 66 8 1435 8 39 36 5 734 2 156 8714 115 13 1 277 559 35 57 5 2089 62 221 182 165 7122 65 30 31 5323 30 2 57 62 7880 2573 295 69 1 2440 1 210 2629 136 246 5 1876 5 1 4663 2174 3 1445 29 1 4963 4674 794 87 17 29 225 72 24 1 8828 4 1 9984 13 1 206 757 47 1 3 2174 3 1025 257 2572 54 24 71 125 94 1099 5907 13 92 59 188 11 89 9 739 29 225 595 22 5138 3075 13 110 83 751 110 83 351 116 290 3 116 50 1568 6 37 8345 94 133 9 8 230 1 321 5 99 341 260\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 493 4 2550 1901 9 141 50 7162 3 5390 15 7080 1 1324 250 1223 8 497 5 31 4295 8 63 64 11 3 436 2 222 2425 145 20 46 273 704 41 20 207 13 252 6 2 167 979 1093 1 59 18 5 66 9 228 24 52 68 2 7691 54 26 306 3596 20 16 1 1933 41 1 541 4 1673 41 16 1 1428 4 494 265 6 39 37 78 2425 322 17 378 11 33 205 4735 661 112 13 659 940 145 2 184 325 4 2134 104 38 265 3 7063 2022 665 8 496 354 254 3064 3 9 21 7 10 40 31 1438 7545 7080 6 20 198 1 80 2112 17 236 146 38 122 11 4373 2 8970 426 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 322 6 197 894 1 113 598 756 131 2233 1 2137 1 3387 1 6172 1 3423 1 297 6 885 38 592 13 3422 1 131 1310 2 103 406 7 86 570 4336 9 393 18 1459 65 1 2068 3 2 1016 67 16 596 4 1 131 3 8 481 354 9 18 2425 149 10 3 99 110 17 8 87 5268 133 1 251 1239 14 1 74 358 3299 22 55 138 68 9 885 682 13 4550 631\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1490 6 761 3 1832 7 25 1103 14 9 18 88 24 71 2 382 57 3193 14 109 14 816 3969 7 41 5564 14 5653 7 4044 996 41 2077 7381 14 1334 8422 7 8 192 13 91 73 1 67 427 6 4673 5 199 7 727 1 607 453 30 7565 4970 7763 2014 3 6042 5602 61 535 4 1731\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 54 100 24 179 8 54 202 1717 956 28 938 32 2 315 3 482 18 197 9004 1359 5 1867 8 114 395 18 12 32 6505 23 76 357 5 365 1623 42 20 459 1 48 151 2 53 108\n0\t4752 7 31 4 41 7547 4 1 346 5649 17 14 31 1805 164 35 196 3 40 447 15 95 1696 10 6 3681 7 2865 7384 1073 300 27 165 2 4343 17 7 2 141 10 6 695 8 192 242 5 842 47 144 41 75 3 3946 5 9914 7 132 1853 3161 3 1652 108 87 33 321 551 4 3878 7 138 104 664 5 62 22 33 417 4 1 16 712 9 3 636 5 352 3 5912 5619 8 87 20 118 704 1 4748 4 12 5 131 44 5374 331 4 17 10 6 11 132 2 84 651 6644 132 2 1471 1 166 6 5 1 1612 60 6 1463 197 197 95 2 900 551 4 1451 15 28 4 1 80 304 651 7 1 616 2008 2 233 6 56 1930 75 63 2 197 95 923 4584 5912 9 685 2302 4129 41 523 708 38 9 1973 22 33 417 4 1 8 192 712 9 41 1 10 981 46 678 5 79 11 2 1408 970 8864 63 36 132 2 135 50 2400 6 13 9267 7\n0\t2056 42 20 254 5 842 827 3 317 37 237 1929 4 1 263 11 317 9368 49 10 270 174 764 269 16 127 168 5 13 92 4 10 34 6 3 8 56 175 5 36 218 2889 8 39 173 87 110 236 20 227 204 5 139 926 3 9 6 52 4 2 18 5 256 19 285 2 7788 73 23 88 771 260 125 10 3 10 511 3821 115 13 92 21 40 2 1307 4 1 188 160 16 194 1 80 731 101 1 4898 2105 66 784 7 277 2 3725 2 1114 2726 522 11 6 3295 140 1 5339 3 2 1435 1640 11 152 276 167 452 51 22 93 2 2204 4 3794 7 194 3 33 1720 1 2009 4 1 623 7 1 108 2 393 844 199 1 469 4 205 1 1198 3 28 4 257 2810 37 154 53 177 38 9 21 6 434 30 1 182 4 110 144 12 8 37 4732 30 9 12 10 1 788 262 125 1 3383 41 12 8 39 16 1 85 11 8 351 133 124 36\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 782 18 358 6 373 1 210 4 1 843 581 16 51 6 20 78 4 2 119 600 91 505 167 3240 3 43 56 978 4019 3 9 6 2 184 688 51 6 28 53 1651 28 53 6182 3 2 53 4362 1 53 353 101 1542 1 28 53 1399 6 1 8319 15 1 3094 874 35 198 123 17 539 1822 2508 3 1 53 477 6 1 3087 4 1 13 92 119 5 782 18 358 6 1 250 120 32 1 215 3 2 4016 4 147 120 385 1 111 22 4876 5 875 1 366 29 2 1119 161 17 76 33 2711 1 9 21 6 20 46 53 17 45 116 1120 23 228 14 109 99 1027\n1\t0 0 0 0 0 0 0 0 0 0 0 208 76 357 30 667 11 9 40 26 30 39 38 1 233 6 10 247 48 261 12 258 32 259 48 307 12 852 12 3 53 28 7934 7454 8026 36 6446 17 9 6 237 52 3287 68 25 817 3375 8 54 1023 11 10 6 1693 17 34 1 2998 22 51 16 199 72 39 24 5 64 126 3 1876 9 21 4292 34 116 176 576 1 797 3 7418 176 4 1 158 328 5 1876 5 1 494 243 68 4429 1 453 3 8 96 72 76 34 70 2 52 2308 4 1 212 803 13 9 40 86 32 661 566 6486 5378 1724 3227 2930 17 10 6 7 1 212 215 7 205 593 3 2216 15 2 265 868 330 5 6809 8 230 11 45 307 219 9 21 125 3 125 33 54 365 10 2 163 52 3 300 1116 10 16 1 514 391 4 661 616 11 10 6 3 8 449 93 11 7609 2236 7 9 9915 14 8 237 2923 9 5 25\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 40 165 5 26 1 113 18 180 117 4164 13 3999 861 15 1528 121 3 2 3800 640 3 23 24 2 13 6912 1238 57 79 3800 1 1590 4 50 3104 285 43 1025 7 203 285 2750 3 303 79 8953 7 50 221 2187 94 1 1697 8649 13 92 21 303 2 1052 1418 19 437 42 6777 1330 168 15 1 4608 3 4952 1192 1 21 6 4 42 1398 6377 51 22 58 2801 168 7353 3 1 168 87 20 55 3970 6365 41 13 92 859 66 9 21 1463 5 7852 34 423 58 729 75 1330 41 3549 33 190 24 2 4952 4867 123 2 1016 329 372 1 185 4 1 4854 13 150 1090 9 21 42 2\n1\t116 221 207 13 1268 190 241 11 2 2830 2949 1207 54 20 118 1 4 361 1 4 3297 990 361 3 20 11 43 8772 2518 6 8671 17 8 96 1265 115 13 872 174 1062 1366 32 2751 13 1268 190 241 11 63 2645 3 4008 200 2 1228 416 3801 285 2 416 1055 3 90 17 8 96 11 416 22 2 3682 3 4192 3 416 4827 54 26 200 5 4012 2938 13 2719 26 2 53 6119 3 348 199 29 66 9015 23 1662 5470 13 1268 570 533 4686 1 681 1410 417 5573 5 730 14 1 51 6 229 31 2651 144 1 681 61 1 17 73 10 12 100 239 3487 32 239 5636 13 3027 448 236 229 31 9516 53 329 11 8274 195 646 26 5567 3 76 352 23 47 4 116 292 10 12 6121 14 2 940 1 736 40 174 42 2 2225 3277 314 5 2 41 7354 69 2 1176 9345 4 715 843 3 2 13 252 18 114 20 2412 306 16 2522 13 2718 130 34 5 116 3909 3 3222\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7994 48 2 2007 464 2294 180 57 10 16 38 723 172 3 475 544 10 1 82 2016 8 219 31 594 41 37 183 7300 5 9924 8 12 167 3565 30 1 212 1606 8 1616 10 226 366 3 339 241 106 8 2165 10 1 366 1448 8 2165 10 1 330 183 1 18 337 301 13 4567 8 1113 8 12 167 3565 3 2284 14 5 106 9 948 12 160 17 2165 10 260 49 2414 5375 1 8717 7 1 9637 8 1459 65 49 27 1986 65 1 8717 5 3673 2 1653 3 98 266 2 562 4 98 1 184 3673 6 11 1 212 177 6 2 3962 119 30 280 372 562 23 63 348 1 2294 1926 12 373 516 206 4 102 184 817 51 6 31 313 868 3 84 17 9 3349 4 75 261 1407 140 1 226 1801 269 15 2 826 543 6 660 8892\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 336 9 108 10 6 1219 5 70 2 3289 4 3 9 5455 168 3 1303 8379 3 114 110 8 57 58 312 420 26 37 4732 30 110 48 31 491 176 29 75 1928 6378 10 12 1360 5 1775 169 72 34 365 1 1076 3 1 195 574 4 1794 17 9 6 37 37 3026 48 629 49 33 209 155 3 328 5 414 2 7608 33 10 89 79 46 1997 4 2 1114 526 4 413 11 22 200 433 7 4100 20 446 5 173 173 24 112 173 934 15 33 230 400 6584 9 6 2 568 3 28 11 213 9084 2160 2056 2224 1241 257 2742 38 3004 72 36 126 944 17 37 3070 10 153 291 5 24 89 95 1820 5 450 42 105 37 10 12 2 84 158 17 8 4555 2 3284 8 24 58 82\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2054 17 39 908 6465 20 91 16 2 135 8 12 765 75 81 6043 10 15 1 492 324 3 11 6 2 53 3979 7 50 1062 73 43 2260 5101 812 5113 3 49 33 64 9 28 10 76 70 126 942 7 203 124 36 9 28 41 300 107 3676 1 203 1848 646 24 5 64 38 2424 41 2512 11 21 17 1 4339 6 111 138 98 9 28 17 8 969 9 28 19 1919 4 3 165 10 1 326 183 279 1 723 29 9 803 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 46 548 2493 1078 1 445 3 86 1 857 6 924 117 2610 19 7 1 18 234 37 10 93 758 2 356 4 1 121 12 84 5 3 1 861 12 93 46 109 1613 8 354 9 18 16 261 809 77 10 76 20 7961 5439\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2954 9 19 50 16 2 7052 326 664 5 1 1249 43 56 254 770 81 7 1 3 49 8 475 219 8 12 20 5013 13 252 18 40 43 8021 1505 7 1 182 1079 14 2 1524 1532 7523 119 456 11 14 1 21 4373 5 86 7268 5767 6 3 1784 14 2 164 35 173 291 5 1291 25 4496 266 3 2148 14 156 5402 1583 5 2 5482 224 734 3935 2315 2462 1258 19 20 5 798 1 5759 294 5188 3 23 24 34 1 4534 16 2 53 135 1 263 6 1 927 6 1126 32 1881 3 5629 2166 189 5767 3 638 5238 4473 3 9369 9 6 323 85 109\n0\t6 248 140 2 3977 672 125 3 3270 301 1 8742 4 120 7 698 42 254 5 55 842 47 35 1 672 22 648 38 73 33 1431 132 264 120 5 35 72 64 19 75 22 72 928 5 118 7260 6 928 5 26 31 1330 3 28 4 127 810 672 649 2533 16 2826 47 5973 1 1109 4 25 129 6 350 1 272 4 1 18 3 1 59 177 11 1572 199 118 6 2 672 1 148 506 6 1 807 297 38 450 62 2389 22 1080 3 176 1684 32 1 480 1 233 72 22 1506 1385 33 22 928 5 26 9687 33 22 34 16 630 291 5 24 95 148 4 157 19 1 41 19 3 286 9 6 928 5 26 1 524 15 80 4 2350 13 9808 1071 58 52 838 68 2 249 18 36 490 1080 109 383 3 3685 17 2 589 11 4632 37 2081 4 101 7790 3 38 16 719 197 56 160 7369 29 225 196 224 5 44 4777 2465 29 154 340 236 58 82 302 5 5682 9\n1\t3 1115 2836 23 495 149 34 4 127 1637 371 7 28 6178 141 571 16 681 2483 13 1 113 6178 18 4 2 1086 640 331 4 1552 3 9047 15 341 647 385 15 43 4 1 113 5 209 47 4 1 1 1246 4 275 5046 1 21 7295 19 1 902 1514 5 66 129 6 2768 3 35 7 48 28 6 1 102 6 1 277 6 1 723 6 1 3 681 6 1 239 129 40 264 3 1936 1 72 825 385 15 1 1465 919 1565 47 35 127 264 413 473 47 5 1142 72 22 7 25 6296 6582 5 3 72 24 5 1351 35 72 3 35 72 8706 39 36 27 2788 72 825 385 15 2693 13 2078 59 6 1 640 1 647 3 1 1111 42 93 299 5 1775 66 7 50 347 151 10 52 5044 68 202 95 82 18 4 42 5250 42 279 169 2 156 4011 5 1351 65 19 297 207 160 778 6 2 2869 19 48 6178 63 56 83 504 97 82 6178 124 5 414 65 5 42\n0\t0 0 0 0 1 5029 1208 4644 1 3781 80 1208 13 1 3 623 4 1400 5477 9 21 3269 1 1376 4 9 21 77 1 2435 30 253 1 623 132 11 10 54 59 26 4492 3281 30 6057 523 6028 1 410 6 1783 5 2309 1 8161 280 4 2 6057 3 98 15 1 6936 1230 13 92 389 21 6 5979 19 1 6057 5161 1565 1126 387 2575 5 265 3 523 2 821 136 127 22 25 23 173 830 1 5055 7 1 543 10 6 5 1 410 49 2507 33 149 47 27 40 57 2 329 66 1179 34 277 4 137 17 98 380 10 7685 1 206 3 3209 3 5346 301 5724 1 6067 5 41 55 149 548 2 2689 11 40 2941 1256 295 11 66 27 6 7446 38 1 551 13 32 11 580 1 6057 5161 623 1082 73 33 191 26 2667 5 1 410 239 85 33 3109 197 127 1 410 511 24 1887 235 591 623 6 59 1535 45 10 153 321 5 26 1517 2667 5 1 410 48 6 695\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 755 47 4 9825 13 252 6 1 232 4 18 11 23 2004 241 23 39 1130 358 719 4 116 157 14 23 64 1 1079 1174 8 1582 96 8 88 90 2 138 1706 3 8 118 2798 1 59 177 11 123 20 39 4206 68 2 6 1856 1133 25 129 6 29 225 2 103 222 3879 40 43 5150 3 3738 2 103\n1\t360 171 35 117 1478 2882 69 745 6336 3 4910 1752 69 371 69 7 2 722 3445 267 93 993 7559 626 3 2215 6336 6 31 35 196 1 4 2 964 1182 3 270 2 3887 7 2 7651 549 30 69 15 1 4825 4 7 1960 42 20 4664 27 40 3592 1 838 4 25 29 1 9018 262 30 3 25 4910 1752 1018 789 122 29 62 334 4 457 174 432 25 5161 16 2 1516 3856 60 173 359 2 329 3 60 6 107 533 1 21 7 2 2806 4 69 34 393 15 44 101 49 151 5 1159 60 5237 6336 125 5 44 1289 16 14 2 17 1 102 521 1088 479 89 16 239 1715 4 611 60 153 118 6336 6 2 13 252 6 132 2 53 18 69 23 173 352 17 112 6336 3 1752 3 26 4574 30 25 6690 3 1 1175 27 47 4 9442 17 236 2 1298 393 11 76 131 23 35 56 40 1 83 773 9 141 274 7 7593 42 279 45 10 59 5 785 4910 1752 71\n0\t2352 29 513 51 22 2 156 168 106 33 4091 73 4 194 17 58 4 95 84 1384 11 54 1346 75 33 63 26 371 136 283 1 234 37 258 220 1 4 5205 6 37 7457 65 7 9 185 4 25 157 341 1895 6 7736 227 15 25 11 27 10 15 85 3 896 375 268 5205 6 1012 16 101 1 111 27 6 5 1895 16 25 136 1895 6 620 5 26 3 66 1 21 5 26 1 8104 111 7 1 714 8 83 36 101 5 36 656 8 6218 2 4784 15 1 206 94 956 3 27 367 11 27 1463 9 2631 189 126 3822 45 27 12 7 6296 341 27 367 27 123 7 148 157 1999 5 11 27 88 100 1992 275 15 322 977 8 96 27 130 24 248 2 78 138 329 4243 75 5205 88 87 10 7 1 135 896 206 367 27 470 490 25 74 141 59 94 765 16 1177 12 20 11 573 17 237 32 2 401 4744 4471 180 107 2428 17 8 1550 597 124 507 9\n1\t1062 5 56 335 1 21 8 1379 23 284 70 2 973 4 1 347 3 98 99 1 135 1 347 6 58 1534 7 3687 17 8 114 1584 2 973 224 3034 1 2285 1628 482 12 2 285 1 4339 234 392 605 185 7 3 9 12 25 74 1533 10 6 428 30 275 35 789 3 9 233 8 241 380 1 347 3 21 8 24 20 340 1 21 2 764 59 73 4 1 1109 4 1 393 4 1 158 20 14 53 14 1 1533 51 22 2 342 4 119 456 11 32 1 347 896 66 6 678 14 1 347 6 20 38 1 1114 4146 1109 4 392 17 38 1 2852 7 2251 1 21 9 4415 530 8 24 1 973 4 1 347 5 369 50 585 284 3 98 1 21 5 369 122 1775 7 11 13 614 23 63 1584 10 224 1 347 3 1 21 98 10 6 373 279 10 3 8 59 555 11 10 12 52 8533 1492 16 52 5 284 3 2198 28 4 50 34 113 392 581 7387\n1\t31 731 272 38 1 6974 7 78 4 1124 326 9641 1 21 1263 97 892 529 132 14 1 28 4 1 624 6 89 5 2951 49 160 5 1 4200 3 1 282 35 7980 992 14 2 2169 3 12 59 997 73 60 2167 5 99 1 1484 32 2 3104 16 2 8765 1 624 7201 16 1 562 6 132 11 30 1 182 1 545 6 1458 5 26 19 1 1590 4 62 3104 1247 11 9641 76 1364 3 1826 70 5 139 5 1 7 1 1481 662 620 14 33 22 39 35 22 51 73 33 24 5 26 3 49 4243 5 1 624 144 287 173 99 9192 2225 83 291 11 2173 30 62 221 13 499 6 2 1152 11 9 21 173 26 107 7 9641 554 17 10 6 53 11 1 8115 234 63 64 10 3 1826 64 11 2116 662 2 658 4 1770 5 392 19 1 1585 17 1408 81 15 1 166 3 3009 14 81 8164 1 201 114 2 84 329 7 253 62 120 291 36 148 81 243 68 3170\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 174 1040 135 9 85 42 781 1 315 4867 2398 116 226 3780 42 1927 24 31 5192 17 2368 15 59 364 68 2 350 2596 34 1040 124 24 5 182 7 469 41 31 42 36 34 1 1827 21 1762 6816 7 1 3 1 41 633 191 1288 41 2062 142 818 77 144 7 6009 442 191 7303 7896 3 1278 24 1 410 597 1 2114 507 94 399 42 377 5 26 300 1 3631 130 26 1241 5 2 135 2 1114 4 1040 1830 87 226 3 1 5740 87 2062 142 371 77 1 58 729 35 5051 41 27 59 289 1 224 601 4 1040 157 3 380 1 1418 4 1040 9 18 39 1501 50 2115 45 23 760 1 2388 186 31 16 204 255 174 2814 9 6\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3089 1092 39 89 10 140 28 431 1 927 12 6476 3 6113 1 121 12 480 25 113 1035 5 26 1373 650 25 3506 29 2 1058 9841 3619 88 24 39 14 728 71 372 1 7 7 2 1414 108 1 120 61 239 372 62 2984 7 1 119 650 8208 994 978 293 363 63 26 340 1 249 9251 3550 17 1035 5 932 1216 3 1197 140 7807 861 1253 5 1 8 70 1 507 11 1 393 12 377 5 26 2347 3 17 10 12 1054 3 57 103 5 87 15 1 344 4 1 471 45 8 57 5 1498 42 790 538 5 146 2684 420 256 9 431 4 3 19 3459 15 1\n0\t0 0 0 0 520 2483 4165 6 1 425 18 16 21 5 825 75 20 5 90 2 13 48 114 1 1176 1378 65 7 9 210 265 1541 210 1043 210 263 210 3931 1177 210 121 210 6328 210 861 210 5398 210 748 210 2036 966 987 543 194 45 9 6004 57 71 7 2964 3 10 128 54 24 71 1319 34 168 22 534 81 637 10 6299 1 265 868 9320 47 1 8208 66 12 1233 73 1348 117 5355 102 212 197 223 16 5957 1 3345 12 48 12 3559 5774 8 497 10 12 377 5 26 1323 41 2730 145 273 10 3538 1401 77 1 4 1 345 488 75 87 23 5761 37 78 1131 4 20 2623 1847 6 58 729 75 23 110 75 114 261 117 70 9 3952 1 13 427 8 339 820 5 99 52 68 10 12 37 17 8 114 64 1 212 177 1543 39 5 64 45 10 57 95 53 546 7 10 29 513 13 743 425 665 4 75 20 5 90 2 2 191 64 16 154 686 21\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 381 1 18 3 1004 1794 1 161 639 1 4595 30 2 170 5965 996 58 894 661 4277 8 179 1 570 178 12 678 3 88 20 365 45 72 61 5 241 11 184 5659 12 101 16 101 5965 41 10 12 185 4 1 1439 2 2043 8 336 1 178 3 16 308 7 2 1596 141 1 882 12 20 2 5870 1563 1792 19 177 11 198 79 38 5671 124 6 11 1 250 2728 1 598 291 5 24 57 6 5 5337 3 77 1 558 1587 3 86 1474 11 223 94 72 24 8102 33 22 128 939\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 613 2457 5356 7 2 1004 707 40 25 379 3219 3 170 585 643 94 60 5 820 65 5 2 29 2 94 1 70 142 1359 5 2 3881 2095 3 27 411 6 16 1099 663 16 9138 4 27 1036 5 186 3291 77 25 221 1191 30 2 526 4 1699 30 2 288 1802 127 2549 4980 2514 426 47 95 1950 11 1 1800 6 5 3 15 62 352 27 1035 5 1584 224 137 11 13 252 21 6 162 17 2 184 4830 1 59 177 47 4 1 2116 6 1 6179 4 2 102 349 161 2010 66 12 167 7054 1286 42 1255 14 692 16 9 870 2027 679 4 606 8876 3 1795 7 15 877 4 976 8 88 24 248 197 1 1641 566 7 1 3660 1295 34 137 1815 896 114 33 549 47 4 319 183 1673 1 226 8 798 9 73 10 741 46 7518 15 103 45 261 187 79 2 2740 83 13 2044 457\n1\t0 0 0 0 0 0 0 0 0 0 8 336 9 108 7 233 8 336 101 31 651 7 9 108 2450 14 2 3523 2901 7 1 330 350 4 1 108 23 190 320 79 52 674 7 1 178 49 1 3020 12 411 19 135 8 12 1 633 7 1 1044 5041 15 50 1191 19 50 543 7 2671 5 48 72 61 133 19 1 18 7 233 33 1839 472 79 2 156 268 37 42 254 5 773 11 6633 4085 65 5 331 2968 7156 555 10 209 5 2240 5982 5253 8 336 9 108 7 233 8 336 101 31 651 7 9 108 2450 14 2 3523 2901 7 1 330 350 4 1 108 23 190 320 79 52 674 7 1 178 49 1 3020 12 411 19 135 8 12 1 633 7 1 1044 5041 15 50 1191 19 50 543 7 2671 5 48 72 61 133 19 1 18 7 233 33 1839 472 79 2 156 268 37 42 254 5 773 11 6633 4085 65 5 331 2968 7156 555 10 209 5 2240 5982 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5484 1 2729 616 7 3871 32 198 627 29 1 3 531 1083 1005 3 3604 3493 4 8600 4527 3 234 392 2795 88 26 19 5 187 199 102 1195 719 4 1033 19 2156 2016 27 1066 15 1 7009 4 1 976 171 4 25 2047 6 1 59 85 27 470 42 31 4614 7445 158 605 334 1281 7 3 6908 20 28 1430 178 3 924 95 13 380 2 53 1835 45 595 3 27 6 109 5211 30 1 82 1488 8 339 352 1437 48 88 24 248 15 9 441 19 1 3397 4 395 3 395 2629 4 1588 7 30\n0\t1902 2847 4743 104 7984 15 368 40 3 137 11 100 76 1142 1 201 86 111 140 1 177 15 58 28 56 288 452 1 113 883 665 6 1209 4657 7 2 46 346 280 288 1227 433 14 5 144 244 939 1 119 6 2764 3 4178 6581 14 2 2056 42 38 14 1202 14 1 1971 60 40 15 1 638 1 18 93 1419 95 7341 242 5 70 34 723 41 681 67 456 77 1 21 1034 3347 228 24 5125 15 58 589 41 1216 7 741 65 101 2 46 345 665 4 2 2847 4743 108 1 5252 3501 16 79 12 1 6258 216 32 1 518 1645 2376 69 2 8 773 2575 1467 1 111 27 1 5660 3 1 1190 7 147 6962 6 1011 5502 29 86 13 4567 80 508 35 24 107 8 93 114 37 9053 4 948 1145 856 10 190 26 28 4 1 1228 5281 3428 17 42 28 4 1 113 3359 4 1 289 362 3587 37 55 193 180 59 1274 2 646 187 9 431 2 5567 19 50 3934 1020\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2676 2275 75 97 708 19 9 131 22 38 75 7537 10 705 300 145 20 185 4 1 166 4053 73 45 9937 6 3128 42 125 1 401 7 2 184 3293 13 92 121 6 1 1769 15 7201 3 1 2392 24 1931 23 88 1564 2 3862 2086 207 20 48 8 637 13 499 6 37 8037 7 86 2277 5 26 11 10 59 289 75 32 864 2452 2470 3 25 4827 9753 13 3616 8 214 10 5 26 29 113 2 3 29 210 52 68 2 103 3182 6729 276 36 60 88 26 2 53 2922 17 42 254 5 348 15 1 2864 541 4 1 212\n1\t7 2 1269 111 11 5842 34 1 2324 741 371 127 8399 1389 22 229 303 51 19 8810 1204 10 65 5 1 3 236 162 540 15 11 15 2 833 132 14 476 6 2 595 1846 1541 4 9182 21 3 2895 15 1535 333 4 981 3 1948 8 36 1 233 11 1 1284 129 6 20 116 687 1753 17 2 1408 46 8 192 1415 3 1455 4 1063 62 221 77 62 1402 3 1732 1 14 45 261 3457 4078 5 99 41 284 38 286 174 3058 6420 14 45 207 34 51 6 41 14 45 11 232 4 129 1138 1834 2 19 53 5589 1 178 15 3308 3 1 487 2022 169 2 12 2 222 78 69 1687 4 205 4712 3 8547 69 1078 11 60 12 377 5 26 59 9044 17 10 590 47 11 12 3492 41 2972 49 9 12 8096 8 24 58 312 144 33 143 1 1921 717 41 70 2 1186 3868 10 12 169 631 11 213 11 7305 144 971 198 201 374 972 68 48 33 3290 5259 1 646 100\n1\t56 6 20 50 2489 951 79 5 1 3113 4 20 765 1 1533 246 20 284 2 625 736 4 9967 2511 8 56 173 1498 9 5 95 4 44 916 48 8 63 134 6 11 202 154 427 4 927 7 9 6 5687 5296 3 14 109 14 1 1003 2732 4 267 7 476 9 89 79 539 47 1767 2 3600 15 425 598 3 9896 3531 154 121 278 6 3 5456 301 8653 1 280 4 2 232 1 120 22 4233 3 8 114 149 2 342 4 126 483 245 3 136 8 96 11 29 225 43 4 11 12 928 5 26 722 10 8388 5 70 2494 3 10 1582 247 1474 1 74 85 33 1 1043 3 861 22 3 297 276 1169 9612 119 3 2216 22 1111 317 100 7374 10 123 182 7 2 631 7215 17 300 207 48 1 410 4 127 8 173 2635 11 9 114 20 3162 503 10 114 32 357 5 8693 3 420 99 10 702 51 6 1516 1587 7 476 8 354 9 5 95 325 4 1151 4260 7530\n1\t313 108 1 265 12 248 1529 30 1954 3 1 215 759 30 6055 61 1476 17 33 61 20 1 298 272 16 44 3163 42 1021 73 14 23 99 1 21 3 64 1 3604 2103 1 21 811 37 78 36 1982 73 4 1201 478 5 25 13 150 112 1 3474 121 14 184 487 341 11 186 19 3 1 861 3 1177 61 9 21 12 46 89 3 1008 3159 4 84 171 35 61 587 14 84 171 16 2 136 183 9 21 12 89 1712 962 8119 3766 2097 1209 1 21 12 470 30 5696 2443 66 12 1470 10 6 202 36 5696 159 411 14 3935 7 2 576 157 41 146 73 27 56 1179 1 13 150 57 5 187 9 21 31 7101 16 297 11 10 758 5 616 11 165 4861 2022 1034 51 24 71 3159 4 125 1 1020 4 9 18 19 6675 3 8 128 83 365 2957 1 120 61 301 215 3 14 12 1 541 4 1 3239 4702 3 297 7 9 135 139 751 10 1938 23 76 20 26\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 197 894 1 113 2673 1254 117 1001 8 74 159 2473 7 1 2743 7 1 518 2804 14 2 583 3 10 303 2 7055 172 337 30 3 8 3001 1 462 4 1 158 3 59 30 680 19 1 3480 8 214 9 1719 702 94 765 82 4902 746 3 7106 145 20 619 10 40 132 9558 3 2610 37 97 73 10 123 597 31 2 306 1189 8095 2 191 64 16 34 537 3 5706 86 113 20 685 1 67 295 37 8 54 134 99 9 18 76 2 935 3 1089 1960 45 23 24 374 2055 126 5 9 8 2988 23 33 76 112 110 236 20 78 5 134 38 9 391 4 632 17 45 819 20 107 10 99 10 3 3589\n1\t1 3 93 2071 1 2875 8 12 3202 619 5 825 11 50 435 12 1 1813 4 9 21 3 8 192 1247 11 27 57 31 1880 19 1 21 7 253 10 4960 75 10 56 12 155 977 14 8 284 7 943 708 428 30 1 902 4 9 21 11 10 384 36 50 435 6 2 4 2998 3 3 198 405 188 5 26 107 14 33 61 37 8 54 36 5 241 27 57 146 5 87 15 3230 13 4052 3990 486 7 6713 1136 5 50 532 16 125 1801 172 444 3 2 156 172 989 12 28 4 1 4066 32 1 6631 4 2888 16 25 7785 3 6368 4 2472 155 3 5 2888 220 4310 126 94 13 1226 435 12 308 2 9857 17 8 118 11 308 23 22 2 317 198 2 3 11 6 610 48 27 6 3 8 112 3 1451 122 46 5915 13 150 54 112 5 26 446 5 99 9 21 45 261 76 24 2 973 4 110 3 420 112 5 187 10 5 50 435 16 25 4777 9\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 179 11 50 430 8238 12 46 509 3 1366 10 12 20 211 29 513 1 410 39 1407 140 1 212 18 3 143 539 29 20 55 1 374 11 6 747 16 2 834 8 179 33 88 24 214 1956 138 5 309 1 8238 243 68 1490 27 12 56 3 27 12 20 8 179 1 648 2465 12 56 7 1 215 756 251 1 2465 153 771 3 899 7 50 1062 33 130 20 24 1130 62 85 19 9 8 187 10 102 56 2 351 4 85 3 8 54 20 354 1 18 5 1479\n0\t8749 4 1 7 392 4 1 1 185 1608 38 98 12 148 9 6 146 186 2 1243 7 1 3 29 1 304 3 300 1917 2 6527 36 5009 564 46 8 54 24 909 9 47 4 2 1970 9785 141 20 32 1 914 651 151 79 96 38 6293 1773 3 105 78 3 8 143 64 28 178 106 44 1773 6 5235 1095 41 60 41 44 2389 22 60 39 153 176 36 2 7475 1556 3 7 1 8573 106 33 3143 65 257 4128 151 2 878 38 1 11 27 276 36 1059 25 347 3 7561 10 7 3 10 726 754 7 1 398 982 3 82 337 5 1284 3724 32 5 37 1013 1 238 270 334 189 3 72 24 2 4287 3662 151 2 327 14 2 69 254 19 1 17 2245 3 19 1 9553 20 11 8 54 15 2 17 23 70 1 2115 27 56 999 5 24 11 4464 8510 176 19 25 543 19 375 1 18 111 105 223 3 3944 1466 83 99 1027 83 751 1027 42 2 351 4 116\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 39 2 1399 4 2 433 79 459 29 1 567 178 2244 2070 1141 82 2070 7 25 6 219 30 2 1648 11 557 51 19 2 3 497 48 60 1572 139 7 5 1 2423 5 841 1 691 75 1230 87 137 1063 96 423 5807 22 209 19 1333 1 166 36 4700 7 2 5295 7494 15 2 84 482 4615 73 10 116 4118 3 55 52 8 76 20 55 771 38 1 201 73 33 662 279 1 4471 144 33 143 4733 1 259 11 1059 11 1279 6 2 948 5 9 1609 2236 1 389 108 59 53 177 106 1 1983 11 6 138 98 855 16 127 1609 1879 3648 13 614 127 1609 188 83 1460 23 139 64 26 5095 45 116 9024 6 845 4417 23 76 229 812 110\n1\t2 526 4 35 165 3363 7 2 4537 29 2532 207 48 1 6320 8245 7 864 10 6 2 526 4 9993 35 15 62 6591 7 1 6274 94 62 4161 1439 5 2303 4021 331 4 319 32 2 1642 1655 2345 1 4021 22 6455 34 125 1 3 33 321 1 352 4 1730 5 8989 13 252 6 4 448 20 28 4 1 80 1244 104 2233 17 7 86 870 42 31 837 461 8 258 381 294 14 1 510 1313 438 3 3043 4 1 1671 4 8 118 122 113 32 1 891 32 1 17 8 381 25 278 7 9 18 14 530 790 1 121 6 1530 10 57 2 163 4 238 5 1857 3 4 448 93 43 17 10 93 2649 2 46 327 9 18 12 829 7 2 2313 1574 8 336 1 9492 6274 3 1 2779 9187 3 1 436 207 144 8 187 9 18 2 868 2302 68 48 8 1797 187 5 31 238 1889 1406 18 4 9 5250 8 187 10 2 45 23 83 504 105 1878 9 6 31 837 2803\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 213 1913 10 213 3694 10 213 10 213 3681 10 213 2072 10 213 235 29 2616 13 150 165 9 73 50 4184 3908 2056 1907 1 59 177 797 38 9 839 12 1 5252 233 11 8 143 751 10 17 1150 10 13 777 383 36 2 91 1902 8118 58 1902 29 225 176 2782 9 276 36 10 12 383 15 5100 42 10 13 92 861 6 35 6 9 206 9945 8 83 55 474 227 5 176 122 960 27 1 453 30 127 345 6233 171 61 237 138 68 9 13 19 1 6733 115 13 3053 38 2 19 1 4146 13 92\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 40 5 26 1 210 18 1 121 6 68 1 108 679 4 3342 17 58 312 106 10 255 7178 33 83 55 131 23 1 8 173 241 8 1130 50 85 133 9 108 72 1309 36 72 61 133 2 267 3 20 2 203 108 9 6 2 9382 5 203 16 28 45 33 22 7 144 6 51 2 482 1277 2037 576 351 1652 236 37 78 4 174 1587 11 23 83 55 118 835 160 19 350 1 290 1 21 1043 6 2 6182 50 2901 88 87 828 3 45 8 337 5 2 18 856 3 11 1858 161 164 12 770 1 3406 11 54 26 1 74 87 20 99 9 20 5 55 64 75 91 10 424 23 76 26 1140 23\n1\t4 115 13 987 20 3282 239 82 675 1 233 317 765 2 878 19 459 11 23 24 43 426 4 796 16 1879 3641 2286 28 4 50 1658 1755 1019 169 43 85 2 1307 6908 34 1 250 3 529 4 9 1307 6 400 2186 3 8 63 59 15 110 9317 8 88 55 734 43 52 6232 1102 5 11 1307 1920 1 6987 3 3396 4747 5320 4 2 2169 35 153 55 24 95 15 1 4825 4 1 2462 3 1 344 4 17 835 1 23 373 118 20 5 504 2 4933 5306 3 7790 3665 72 118 32 9 76 26 2 810 3 141 3 42 300 55 1 2544 302 144 72 175 5 841 10 8274 9 6 2 5006 3 1303 18 38 2 658 4 1081 3004 4714 1573 77 3 392 421 1 3881 3138 3 1 2377 1358 786 83 504 174 9 933 1729 572 4088 19 1 121 453 4 1 8348 6386 2 212 163 4 8286 3 3 608 226 17 20 225 608 2 885 1077 7 66 1990 4094 2 1203 4 7\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6398 45 23 175 5 139 64 9 18 39 187 79 257 319 13 23 61 10 3 468 24 1 166 1234 4 1434 13 2663 4810 52 1434 9 18 308 316 289 48 629 13 2136 173 70 95 28 422 5 4158 116 231 3 116 929 5 13 221 502 5102 145 160 140 623 3758 13 3 9 18 6 56 2 9382 5 18 13 5 1965 23 77 1094 73 23 173 241 1 3444 13 5 5 90 23 2499 37 50 1857 845 1421 14\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 426 4 2 6496 762 1423 42 38 2 259 35 196 1459 19 8113 3 27 400 196 1489 15 1 352 4 2 1423 2853 10 6 132 2 2073 1 1077 6 819 165 536 9042 4 2853 7 110 3 6817 2154 12 84 7 9 135 9 6 2 191 24 16 2853 4238\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 631 11 34 4 1 53 746 5189 16 9 18 37 237 22 32 35 61 463 602 15 1 21 41 35 118 1956 35 789 1956 3 24 1826 107 2767 322 8 83 118 261 4525 3 180 107 1 570 9919 3 10 6 1011 3095 1 59 177 10 40 160 16 10 6 8854 3 2767 3916 32 203 9042 19 412 16 1722 42 14 45 1 1132 89 9 18 19 2 3175 285 2 203 3 165 171 36 1347 816 638 3 492 5 21 168 285 62 5515 9 6 31 4540 15 464 121 32 2 201 4 15 52 68 6 4752 7 1 7220 4588 51 6 103 41 58 42 34 2235 494 11 1035 5 1346 2 4326 994 1182 5614 22 2 6182 17 51 662 227 4 126 779 227 238 5 90 9 21 837 7 2 3934 699 94 38 1315 826 168 4 162 17 8539 468 149 725 5184 16 1 20 3851 3192 332\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 15 307 845 35 367 235 11 76 2883 23 5 20 351 55 2 4 529 133 9 3007 3161 108 46 345 505 397 5308 1169 9613 2132 3 2 263 37 3365 3 5419 10 130 100 24 71 2878 369 818 7004 55 368 791 139 5 216 39 16 2 292 58 28 130 24 71 1390 16 9 91 916 5834 130 378 24 1168 125 9 13 51 6 146 1447 38 133 146 37 565 3 6 3 5040\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 158 1868 612 29 9581 12 223 179 5513 2 46 345 973 40 3 89 77 2 195 16 83 751 1027 1 21 6 1634 1 1084 6 3652 1 263 6 1853 3 1 1177 6 13 170 1299 3 7407 3 11 12 1 13 7254 9 18 12 433\n1\t27 130 24 71 2695 16 2730 294 5749 12 53 1221 14 223 14 1 545 153 438 25 5048 27 190 209 142 14 761 45 23 173 820 9 1 111 11 129 15 129 12 6256 3 1056 3865 29 1287 1954 12 1016 14 6666 638 12 84 7 2 607 1174 6403 12 53 17 20 4884 51 61 268 49 9 572 1505 37 97 647 229 105 9323 10 190 186 2 330 956 5 4995 12 94 37 97 28 40 5 582 3 96 39 5 1 393 143 24 2 163 4 10 12 2336 65 16 37 223 3 98 12 2 222 4 2 9 12 28 4 1 156 922 15 1 135 220 1 18 247 4803 14 2 184 412 10 89 43 995 11 9 18 55 3366 3 61 84 17 1 644 551 4 7 1 3050 190 24 16 58 10 12 7 1 408 3 902 22 128 2793 11 9 462 6 47 939 89 7 10 128 1421 65 1163 3 76 2469 986 16 97 172 5 13 3986 90 725 43 3 64 9 8852\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 5133 16 9 18 123 2 84 329 29 4243 48 5 4749 42 2 46 53 3323 109 3812 1360 5 241 10 12 1037 3609 9935 193 43 802 87 176 610 36 2 2939 115 13 9008 51 22 2 156 802 11 56 176 53 3 131 43 148 2407 19 1 185 4 115 13 777 2 1195 67 15 43 84 1552 29 1 769 375 4 949 34 6256 34 1816 3 113 4 399 109 227 5 90 126 306 115 13 92 583 171 7 1 18 87 2 1111 854 145 531 4 104 15 374 7 993 871 73 34 105 396 33 209 142 14 17 205 127 374 87 2 53 13 252 18 6 20 42 20 46 3681 17 10 6 2153 46 8220\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1547 20 1492 19 305 14 1891 17 279 19 9501 41 2 5161 2615 44 1855 6 3732 4 3273 3 270 19 97 2244 120 7 31 991 5 8065 1 3880 2 18 15 97 1552 3 534 630 4 66 8 76 1 5774 1301 980 106 257 2594 5135 1 1799 38 1 3300 6 28 4 1 80 2944 168 7 368 2994 480 101 29 46 402 445 3 89 285 4170 7 315 3 480 1 402 445 69 223 1444 276 595 69 9 6 2 18 4 215 541 3 1485 7467 12 2 84 651 2144 30 2604 35 563 78 38 127 1084 1 415 69 9206 7451 2536 69 4 62 4180 626 12 4 28 4 375 217 6473 69 3227 69 35 5 3727 3 758 2 496 215 1684 2419 15 450 1547 7467 12 100 340 132 2 84 185 805 3 963 1168 65 7 775 1160\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 275 553 79 11 9 12 28 4 1 113 1217 104 5 6177 8 24 220 297 553 5 79 30 9 2852 94 283 9 108 42 39 1634 197 160 77 6083 4 1 943 1025 186 50 736 16 194 1 447 168 22 3509 29 1293 7913 7 1408 1170 2389 7 1 477 12 1 3501 4 1 21 5047 123 176 17 42 34 5523 32 939\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8075 9425 6 752 4 2250 2913 35 6 1281 942 7 372 6604 3 15 2567 444 942 7 2914 7 1 7189 318 289 65 5 2031 2 28 4 44 2894 417 98 16 25 25 379 289 65 16 1 2971 13 4 824 36 2801 13 1972 1363 7\n1\t9 1696 44 1093 3 44 72 93 284 1282 66 130 26 2 191 284 347 30 34 632 13 2334 1 2998 72 24 284 38 781 1 362 157 4 1 170 287 14 60 418 5 60 12 674 4204 30 1 216 4 44 2002 30 3 82 4 11 3856 44 733 3 112 1971 15 6 1 3397 4 1 135 831 339 139 14 237 14 60 88 24 73 4 1 8642 421 415 7 1 10 143 352 463 60 2200 2 106 60 6 3732 4 101 5323 30 60 57 5 139 5 7146 7 639 5 5604 992 32 11 5192 85 4 44 3223 13 151 2 304 60 6 2 1612 2070 35 2380 7 3788 266 44 2832 6 107 14 1 164 35 405 17 1168 65 7 784 16 2 13 92 21 40 2 8987 1812 11 1 443 216 4 2291 7 34 86 1 4 1 21 1857 31 312 4 48 1685 11 416 4 5404 5 131 7 62 1 265 30 2601 109 48 72 1861 470 15 273 874 781 2 1117 541 4 44\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 2 84 1540 9 6 37 2696 4 1 360 834 382 231 104 4 1 4198 3 1 8 12 37 3202 94 1 576 910 172 4 1409 4350 414 4261 24 3335 13 252 18 6 31 1409 1 583 460 61 39 538 1488 8 192 80 1475 15 1 538 4 9 682 13 12 2 900 599 2 1641 1464 16 7013 12 360 14 1 13 150 495 1 67 204 14 51 6 103 272 7 403 11 286 805 17 1 67 6 4092 1 593 12 3215 3 1 121 538 12 9 216 1523 23 48 42 36 5 26 2 3338 197 160 34 41 101 105 1 7982 168 2450 19 1 305 324 61 323 113 303 33 61 105 3061 16 9 18 3 54 24 556 37 78 32 110 136 1 3303 12 9497 7 1 1616 10 12 20 9120 620 660 2 732 10 12 113 11 3293 13 252 12 31 332 2038 18 5 4578 13 499 196 2 13 92\n0\t5 26 556 1067 17 2320 341 7 9 524 15 2 3 2 29 1 1754 479 47 4 334 34 260 361 691 361 17 56 20 11 3883 13 252 397 1385 79 4 2 416 3103 1 59 353 3 129 8 343 95 4870 16 29 34 12 1 28 372 259 4 35 12 1 4707 28 35 1478 5 24 95 3258 19 4233 3 4233 8313 361 17 4041 8 511 24 367 11 12 2 46 53 16 1 958 4 1 14 4 1 85 4 2511 646 187 10 174 383 7 1 1750 11 188 190 5471 3 2023 224 2 222 30 398 8007 15 364 6476 3021 3 436 1 171 52 29 6702 15 1 94 399 1 567 431 4 247 610 2 193 10 12 1677 774 14 91 14 476 17 45 8 64 58 7801 94 431 3802 145 1893 1 251 40 202 407 433 28 13 54 26 2 73 180 165 2 2245 1780 16 1 2247 19 2238 32 1 2766 4 2093 9692 5 1 4 742 17 9 2549 1082 5 50 813 7 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 173 241 8 219 9 852 1129 10 418 47 4010 9 18 9965 1 7186 4 864 111 5 29 225 1 74 28 12 595 3735 10 9834 142 1 74 18 3 55 5738 1 5603 261 35 789 235 38 9397 76 812 9 108 10 123 24 28 53 859 7 10 1024 99 47 16 184 1 18 39 151 10 291 36 184 711 6 111 2223 68 27 152 6 7 4084 11 12 46 55 1 3624 19 1 171 12 301 565 43 4 1 121 6 167 452 43 4 1 121 6 56 91 1815 1 263 12 1233 29 43 985 3 301 5235 65 29 82 3955 9 18 266 19 38 154 681 1452 36 8 1113 8 173 241 8 219 10 852 1129 8 96 8 192 1927 2133 7 1 215 5 70 155 5\n0\t348 435 835 160 778 1 4766 3 93 62 8412 2176 106 1 119 196 2 103 4553 7786 6 1694 5 199 14 2 2490 30 3 379 4600 16 62 2802 2180 3 2440 43 4740 7 4552 7786 40 5 26 369 3192 60 271 155 5 3871 3 172 406 255 155 5 1 231 49 1 374 22 2260 960 115 13 1964 3134 17 8 173 241 1 374 321 2 1705 6 169 260 49 60 9758 44 11 10 247 1 374 35 758 44 1877 7 1 1408 448 4 2789 7786 54 24 1866 19 15 44 500 115 13 1268 4 1 817 1755 367 11 2 6538 5 2 957 4 1 21 8 24 12 2619 689 815 11 88 26 1 302 16 1 97 119 1931 72 13 777 105 91 11 8412 3 3150 88 20 24 248 174 21 371 7 1 8383 49 12 29 44 8904 3 7786 57 39 89 2 13 6 1 250 302 5 64 1895 57 723 3 145 1774 5 241 11 2 53 934 4 8412 12 303 19 1 3005 974 8509\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 350 576 2927 993 1970 3520 7 1 250 280 12 2 580 350 576 434 358 6 39 2 5409 31 238 18 15 162 1621 17 15 58 9316 5 1364 2730 42 364 548 68 1 74 7 34 17 42 292 1822 2 5786 45 23 36 238 104 41 39 146 5 99 285 2 4616 45 23 93 36 5 99 1081 460 19 412 41 55 45 23 112 5 99 55 45 33 22 1654 41 5075 13 114 2 53 2340 1037 5019 12 2255 1 6831 8 96 27 213 89 5 1 1614 6 2 53 8 3051 1 344 114 1 2340 17 162 3982 162 237 32 13 8344 322 2 397 89 30 173 26 1051 861 12 2 2662 17 790 593 12 39 99 10 45 23 45 23 1775 23 495 1621 2357 17 45 23 322 23 495 1621 1497\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 191 79 28 4 1 210 270 19 3804 117 6547 30 3788 75 63 28 473 132 2 8053 915 77 2 400 7771 20 132 2 832 74 4 399 2 3772 4 95 6 2 534 3 1190 15 2 327 1494 9 28 1419 34 127 105 78 822 69 1 850 50 3429 144 7 1 442 4 12 11 13 8413 85 6495 310 38 27 12 30 822 1240 1 263 5 359 122 4250 16 1 39 51 12 59 28 178 11 89 10 202 279 4171 774 1 393 4 1 18 15 6495 3 25 147 8 56 381 1 74 628 1 12 1571 17 9 1962 39 20 501 20 7 95 699 3037 1 957 28 76 4837 1 8 36 37 78 7 82 3156 36 6495 41 55 3634 15 1\n0\t575 1 63 26 2 46 1127 2859 17 49 154 178 2903 4 162 17 10 2019 34 86 115 13 1133 40 43 46 304 1769 5 216 2159 1 4 1 1 304 4363 106 2047 6969 4322 3 1 140 19 25 1486 16 5677 831 72 59 1236 1911 7350 4 127 1678 183 1 443 2932 5 2 572 4 2 4143 1598 3268 55 1 5073 168 106 6 2037 818 577 4445 1108 757 5 2 115 13 92 868 6 3 154 1900 72 130 6378 1 67 554 130 24 71 2970 78 828 738 82 2789 105 97 81 2133 65 47 4 1677 5 352 385 69 42 39 91 4480 115 13 777 2 687 953 2991 17 97 508 24 556 1 166 804 3 248 1485 188 15 110 58 111 47 57 2 595 696 2991 17 10 12 2 78 138 108 115 13 92 393 12 301 3 3126 32 1 80 5172 4 1 135 9 18 12 100 160 5 26 1111 17 45 72 159 52 4 4445 3 364 4 1598 2177 9 21 228 24 71 4809\n1\t0 0 0 0 0 0 0 0 0 14 23 63 64 9 6 28 4 50 430 45 20 430 703 9 6 2 129 589 66 6 332 2406 1 250 129 6 2 1255 164 35 6 1544 7 2 1689 264 27 1148 2 287 288 47 2 3406 4 2 941 1210 32 25 1591 3275 3 3966 38 44 3 1036 5 149 47 52 38 768 27 1036 5 2612 1 941 897 59 5 149 47 60 6 20 1 32 51 27 15 723 82 6623 3 2486 5 335 1206 14 109 14 1565 47 38 1 1355 13 677 6 58 2270 883 447 4525 39 75 2 346 526 4 81 825 75 22 6979 3 13 252 21 12 6642 15 742 8142 3 2051 3 1 147 28 136 2529 6 1677 14 837 14 1 1766 1 18 100 89 10 184 7 1443 73 10 12 20 16 1 5371 220 10 12 4337 19 756 7 2888 481 26 612 19 249 41 33 22 16 918 10 114 1364 2143 2520 7 2888 16 113 158 1249 206 3227 16 62\n0\t144 61 6175 256 19 1 75 54 11 359 1 1235 506 4223 7 1 12 27 3746 224 51 30 25 231 217 5 469 41 39 35 6 561 3 144 6 27 37 1770 5 70 1 6175 244 100 107 702 144 12 1 1235 506 848 8791 72 59 64 1 28 161 164 12 51 2 9060 41 41 144 123 1 379 1283 390 6 10 1 3761 4 1 1235 40 27 1180 5 1 4703 3 3740 45 1 766 12 446 5 3 701 2 9638 2792 6 27 2161 5 25 3 39 75 1127 6 1 2090 7 5747 11 10 54 3707 122 577 1 974 311 3005 2 822 3 144 123 1 379 875 7 1 6 60 195 5279 30 1 1235 6 1 1248 160 5 26 1 506 115 13 252 18 12 132 2 7071 839 8 405 5 637 50 2276 3 1006 16 50 319 8886 1 59 837 1329 4 9 67 12 283 1 766 599 200 7 39 25 7151 4074 16 2 163 4 1 387 17 55 11 339 5611 9 3627 2908\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 2 382 524 4 146 11 130 100 24 5674 9878 12 195 2 625 2707 44 766 57 303 44 73 60 511 414 7 43 15 122 3211 12 1341 11 57 71 3 405 5 473 25 155 19 260 98 3 51 8 57 922 15 1 251 69 209 926 8 134 5 2758 6 9 1 166 3943 492 11 260 1 251 337 926 17 10 39 143 24 95 1034 3899 8362 32 34 1 231 12 223 9700 5848 45 1 251 57 71 340 174 442 3 1463 14 101 400 1532 4 34 7 1 1562 10 228 24 1066 689 322 207 131 4552\n1\t130 564 239 1715 981 1021 1785 2835 17 236 2 2974 1734 5 34 4 476 9 6 1 185 66 130 20 26 3 37 10 3968 2469 13 1149 17 1401 1375 10 6 1 1903 11 1 545 5 99 52 4 9 141 10 40 31 1135 264 1782 5 1 1193 2521 75 223 85 63 23 820 101 15 2 164 809 31 3 54 23 564 122 5 6322 3035 13 1149 1 74 594 6 676 242 5 116 4584 10 65 197 23 152 1311 110 98 10 432 2 7892 2062 15 1305 238 15 2 1388 4 5 4556 1 709 347 32 66 1 18 6 370 13 1149 1 18 6 1314 46 6719 37 293 11 1408 7059 495 793 10 457 1408 8292 245 1 67 6 8761 1 265 6 4807 3 1 171 87 62 222 5728 52 68 9944 5 90 1 18 323 13 1149 45 23 130 26 37 7580 11 116 616 41 388 1320 40 194 99 194 3 335 1 233 11 20 307 6 242 5 90 2542 104 5 6773 568 4 13 3382\n0\t1956 352 6116 17 4 611 9 131 511 4206 11 91 45 10 1121 16 114 23 64 75 1 968 1012 33 159 126 14 162 17 35 414 7 2 1053 9264 17 6 1 7783 763 2278 4 144 9 131 323 3354 1 4 126 1 131 1506 2734 65 1 166 716 395 2009 4 126 101 517 10 6 36 1 700 177 7387 6 650 1 28 5 8 1595 75 33 721 19 6557 801 93 40 2 3599 4 623 7 10 39 14 3 54 6051 689 3 35 88 995 11 1230 8804 1399 11 154 5304 7 54 333 7 11 28 23 1374 1 28 7 66 154 625 5304 5 82 1007 667 3676 54 1963 1 2544 166 6900 183 2828 77 62 5757 657 10 190 26 74 897 623 5 43 1046 17 10 6 1011 5 13 614 145 20 8 87 241 7049 367 146 38 393 1 880 1479 307 200 50 2265 666 2102 1 1340 131 1218 8 39 173 1023 15 8 96 42 39 174 2418 4 2839 11 72 70 19 257 1254 59\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 286 174 7 1 223 427 4 58 2039 58 5718 58 860 104 383 19 388 3 340 2 6700 1203 5 6233 29 1 388 13 614 23 175 5 118 48 133 9 18 6 2102 4558 2 388 443 3 43 808 2135 3 21 725 3 116 417 5066 200 1 4305 29 366 3 1098 819 39 89 4 1 536 195 64 45 2 8898 1404 76 751 10 32 4840 13 150 24 107 43 402 2039 383 19 388 124 11 5148 860 32 1 1132 3 171 41 29 1 46 225 5718 17 9 40 925 1013 23 22 2 306 41 22 6940 30 775 89 203\n0\t90 8206 13 92 250 129 4 1 9172 1125 76 123 20 1030 7 9 628 292 5738 122 5 3581 1807 7658 7 2 3749 38 60 93 44 2185 1557 3 193 72 83 785 25 182 4 1 13 6 32 4193 30 2 526 4 3804 1699 30 16 2 8526 246 146 5 87 15 2 851 654 669 9010 1510 34 4 25 456 7 2 46 1289 7215 136 5 2 2940 1 566 168 22 1722 13 92 5070 7 1 18 12 167 775 3 775 43 494 196 433 457 265 41 861 213 84 1497 246 1 18 274 7 3 152 383 7 1 2736 12 2 222 4 2 7575 1024 29 225 16 9 5061 13 4035 6 46 53 14 9838 17 52 8541 444 728 1 113 353 7 1 18 566 168 145 169 619 44 6 37 45 236 117 2 9172 3 8 54 2398 51 76 1718 33 130 652 44 2366 55 45 10 907 1642 44 5 13 4221 6 1492 19 86 3011 41 7 1 305 1894 68 898 385 15 9172 3 102 7523\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 267 6 56 20 695 2 1151 11 266 37 78 19 2809 10 151 58 42 2 21 37 7758 361 657 55 155 98 361 10 40 58 13 92 201 6 52 68 11 42 254 5 3051 245 835 327 6 11 1 2274 22 29 9 54 24 2371 626 1 379 4 2 4998 15 58 85 16 235 17 216 88 24 71 95 604 4 13 2718 63 26 9050 11 9 103 587 21 6 30 4113 650 1903 1938 3 1 397 1353 662 1319 286 10 151 58 148 13 777 2 5103 3 35 451 3559\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 969 9 18 73 9 12 7950 8 93 338 5 64 75 54 27 191 134 27 6 313 7 25 6 1016 7 9 123 2 360 5211 12 53 7 25 3 114 62 546 109 93 12 53 7 25 346 5868 7 2 1669 593 6 1043 6 67 6 649 199 38 2 754 2133 40 2 163 4 633 4 126 6 3 735 7 112 3 70 196 643 30 25 2 1291 32 139 5 255 577 621 7 112 15 122 3 196 67 6 2281 6 74 350 93 4089 2 10 6 2052 30 1 171 3 330 350 265 6 6748 15 43 327 861 276 7 1 74 350 17 10 276 788 22 1065 571 16 3 28 4044 1759 22 111 99 9 39 16 1 171 3 265\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 192 400 6263 5 9 880 8 173 947 2268 1 1679 271 30 5 64 1 398 42 2 84 67 427 3 10 40 1 113 171 3 1624 19 1 880 8 76 4317 7 154 1679 5 99 10 55 45 8 192 20 408 8 198 24 50 274 5 2581 2414 7163 6 1 113 353 19 1 880 10 6 3604 3 7420 8 96 9 131 130 875 19 1 1276 3 8 241 307 130 4317 7 5 99 110 8 159 1 46 74 431 3 152 8 247 160 5 99 10 17 8 12 133 3657 28 326 3 8 636 5 99 10 73 10 12 19 3 8 332 112 10 3 260 195 42 50 430 880 8 192 56 467 110\n0\t3182 378 4 120 11 61 3 14 7 72 70 120 11 1445 2952 19 6509 33 24 58 2481 1395 75 63 2 129 11 2898 3302 3780 3 40 100 71 1208 2 3080 4972 1320 504 5 187 2952 5 2 287 19 75 5 6264 16 2 329 3634 14 31 83 96 11 3671 550 45 27 213 685 44 5784 244 1083 44 48 60 130 1 80 761 185 4 1 18 16 79 12 75 1521 33 61 7 2 5 90 31 3 286 1 120 359 1565 85 5 549 174 26 10 1 4391 5720 29 41 39 8981 200 5 1307 142 62 394 7111 41 364 4 188 33 112 3 8 721 1841 5 29 126 7936 23 134 23 57 1339 5 48 1 3106 22 2 938 989 23 61 2060 5935 195 317 2306 3 116 318 8 159 9 141 8 100 323 2786 75 146 88 655 17 8 96 9 18 123 610 458 3 1943 1 494 151 1 120 978 3 1 1675 11 8 343 1140 16 205 4 1 171 16 246 4721 1732 9\n0\t4 7636 73 105 97 7807 1733 543 1 410 285 1 4 1 2876 13 1268 190 241 11 9522 416 624 7 1 4529 728 419 295 62 197 179 4 1892 5 33 1092 1374 17 8 894 592 13 1268 190 241 11 170 298 416 2976 22 496 3 14 33 8314 15 62 7 1618 1055 4604 17 50 839 40 9249 52 396 68 1375 2916 230 46 2304 3 634 6457 14 33 3763 7 1 1217 4370 13 1268 190 241 11 2 2830 2949 1207 54 20 118 1 4 361 1 4 3297 990 361 3 20 11 43 8772 2518 6 8671 17 8 96 5075 13 1268 190 241 11 63 2645 3 4008 200 2 1228 416 3801 285 2 416 1055 3 90 17 8 96 11 416 22 2 3682 3 4192 3 416 4827 54 26 200 5 4012 2938 13 1268 570 533 4686 1 681 1410 417 5573 5 730 14 1 51 6 229 31 2651 144 1 681 61 1 17 73 10 12 100 239 3487 32 239 5636 13 252 18 114 20 2412 306 16 437\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 141 55 193 6 38 28 4 1 80 430 6509 4 2833 1278 1 1809 157 7 257 40 2 211 111 5 256 10 19 1 1250 115 13 4 1 52 731 2833 7896 4 1 226 984 1782 4 257 707 5539 7 8356 5270 3149 14 10 63 26 1 5156 41 1 66 380 199 2 21 15 2 125 5794 3356 7 257 4087 17 8592 7 2 46 264 111 66 380 2 1511 550 115 13 3371 171 103 17 11 4 313 111 62 239 28 4 1 971 4951 7 1 584 1 9316 30 72 24 71 2882 7 1 1561 11 9316 4 539 1 3 5 90 6593 4 1 436 5 97 81 7 257 913 1 21 20 24 17 8 1064 11 81 4 82 4179 88 149 1805 3 1555 1 4 1\n1\t81 5 3494 62 672 17 10 93 289 1 2269 2063 65 16 86 3 4282 16 423 3376 3 8995 6 620 14 2 46 2950 3 4051 3043 2280 421 48 63 59 26 14 2 8231 8696 3816 4 95 356 4 41 8097 127 1132 24 4440 2 7783 1031 235 4899 6896 13 872 7 1 2146 72 64 1 308 316 3769 1 9049 3 34 356 4 4084 42 5 99 1 2319 6521 4 1 8554 1311 331 109 11 1 4 11 1181 9485 6 2 9677 223 314 30 296 3 62 1524 1 1131 151 10 935 11 9 6 20 2 4 249 41 5103 1131 17 31 7736 4 2 81 3 86 1655 1076 16 86 3667 323 2 866 839 16 261 15 2 127 2706 21 1350 2005 257 223 414 13 2718 321 5 1 5534 11 239 913 191 26 1747 5 2497 86 1655 3 5 2210 7 1175 11 1 2009 1148 74 7 9 2196 6 1 321 5 118 48 1 7620 4 1 1261 2140 3 9 718 123 2 84 329 4 403 39 656\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 320 8 336 9 18 49 10 310 689 8 12 2042 172 2195 57 2 3 336 5 309 7391 19 110 8 12 2091 56 6324 49 8 165 5 751 9 18 56 8 256 10 7 50 3 544 164 9 18 6 56 6149 7728 666 36 535 911 7 1 389 18 3653 16 11 489 3680 4510 29 1 3 40 1 166 4050 19 25 543 34 1 699 3 11 439 112 177 7 1 42 39 37 3007 2775 8 39 1168 65 884 1 389 177 3 337 5 6597 1 18 16 146 1939\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 300 1 700 21 117 38 13 499 6 13 92 567 383 2236 5 9195 50 13 4 611 6 360 3 47 4 9 4370 13 2376 6 198 2 4621 4426 1 478 4 5774 14 13 614 23 5402 149 1 42 1492 19 13 1601 2791 4 5774 3 21 1762 130 2221 9 3439 13 1118 7227 3 822 69 48 265 69 48 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 46 731 73 5822 79 9 519 23 63 555 5 26 1415 1104 519 23 63 555 5 24 2 1104 6743 16 1632 23 63 555 24 11 111 1397 20 320 9 509 18 1104 3 845 34 1397 20 320 1895 6743 8305 23 63 24 1150 174 13 1226 535 47 4 1731 50 45 23 22 1070 2 325 4 509 684 1545 41 1895 3543 2 1399 83 3097 1895 175 5 449 552 275 5 2300 1104\n1\t25 2935 3411 9568 200 1213 6882 1380 8218 132 14 4044 3826 224 7626 3 285 2437 1668 58 8082 4 132 14 1 28 11 2018 2 416 7 1284 20 5 2 66 6 14 638 1 524 27 615 11 27 6 237 2912 5 1 1021 795 605 334 68 27 88 117 28 654 5 122 7 2 1153 2648 2 1966 15 813 3 27 615 11 9 164 6 28 4 137 27 6 5 4735 29 27 615 11 42 169 5887 94 43 678 15 1645 3 6437 15 11 27 46 109 228 26 9329 5 2 1343 654 3 11 25 1912 22 697 4 888 5113 286 5 13 589 4160 42 67 3 6 301 215 3 15 745 7 1 21 6 2325 14 72 64 127 46 5081 1512 4 888 7964 959 17 1 644 80 1683 5105 6 407 1486 5 149 11 1387 11 122 14 27 1389 1645 3 1469 29 74 5 352 25 413 70 142 32 2 1004 33 143 3 1391 5 149 47 48 27 40 5 87 15 235 11 6 41 228 5441\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7634 6 1 964 5857 2376 1768 2346 3095 42 58 560 1336 470 235 422 220 69 261 35 40 2 680 5 90 25 74 21 19 25 221 370 19 25 221 1252 15 1 352 4 9609 8282 2443 3 2182 146 36 490 261 35 811 11 9 12 2 67 279 1083 5 1 1561 153 2005 2 330 8479 457 1 9978 1 453 22 53 69 1 171 87 48 479 553 5 1690 3 33 87 10 530 42 39 11 33 1513 24 248 10 7 1 74 1888 115 13 47 4 5841\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 277 250 120 22 46 109 258 30 891 6532 590 77 74 85 353 27 6 483 1321 14 1 2478 897 1 21 289 46 109 1 1380 4 355 602 7 117 52 5877 1 2964 3 5390 189 1 2478 3 2302 75 307 196 3091 295 30 7250 3 47 4 1731\n1\t56 602 7 15 2367 1083 44 11 27 557 14 2 1800 3 8174 13 157 4 1004 310 331 6430 49 94 60 214 47 38 25 1085 727 122 47 5 1 613 5 4012 122 32 2 36 15 25 1671 1144 2147 14 8959 4 25 3226 136 19 3912 2367 310 5 25 9680 3 9644 25 4593 1774 5 543 1 265 3 977 94 25 277 349 6900 6 1095 70 25 157 155 1413 115 13 2261 32 1658 11 2981 3 25 113 493 1802 61 246 31 1971 516 25 155 2367 3437 47 4 1641 393 65 2 32 1 42 29 106 27 557 14 205 3 11 2367 7 283 11 2981 14 109 14 1802 61 306 5 122 11 7075 36 29 25 57 2 2585 720 4 2935 17 1 179 4 160 155 5 7182 15 29 225 174 764 172 1253 19 5 25 12 39 105 78 16 10 12 98 11 2367 636 5 182 10 34 30 3851 1 613 35 30 98 122 224 87 1 2340 11 27 411 143 24 1 683 5 1690 16\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 987 359 10 50 102 374 61 6596 5 9 108 10 40 86 2387 32 31 1217 9528 17 751 43 3 39 335 110 115 13 872 1 282 12 13 872 2011 12 167 9055 292 444 20 7 1 21 46 1878 37 83 70 105 2337 3617 13 2078 207 42 56 2 91 1689 17 10 6 1 232 4 18 23 99 39 3633 83 751 1 9074 13 13 8 798 2948 12 16 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 20 1 210 21 8 24 107 4 745 17 10 6 4619 11 271 5 1 55 527 1533 9 2024 124 4 535 8 24 107 8 149 126 34 5 26 36 1 1061 1262 27 22 400 30 1 4 25 1097 3 790\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 6 2 53 665 4 75 140 2152 23 63 2373 2 21 11 6 58 52 68 2 46 2346 249 7 5645 1 3229 4530 15 1 40 428 38 1 4 9 158 202 34 2349 1 4530 15 1 330 3852 5 1 166 1 8132 6 1 59 4530 19 1 1444 11 40 1 644 921 3 8387 3 3184 47 34 86 6975 7291 3 91 13 3793 73 2 21 151 2 4328 4 1 410 539 15 806 3 631 3758 3 73 28 63 3082 171 3 4448 123 20 90 10 31 4752 135\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 10 407 247 1 113 18 180 117 1586 10 12 407 279 1 801 173 26 367 16 97 104 127 13 252 12 2 2273 3110 4 2 306 441 292 97 4 1 1733 4 1 148 67 61 2733 16 1 141 1740 129 12 277 41 723 81 7 1 148 67 2746 626 7789 12 4 448 501 3 4719 6501 12 93 5956\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 179 4841 2 2535 1684 32 1 447 294 98 14 2 1 265 30 8 909 31 1101 1277 953 11 12 89 7 4100 8 165 2 67 11 100 89 356 3 2 18 11 303 79 105 97 8399 3 20 227 2286 1 2 1187 1280 382 165 224 1 3 216 109 2193 37 300 9609 8282 63 7292 127 559 15 138 1471 1608 3 1 1530 17 20 13 3616 20 2 351 4 387 17 20 2 1013 23 22 2 5121\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 284 1 746 4 9 141 3 33 61 1227 167 53 37 8 179 8 130 64 110 145 2 184 3 632 21 5847 17 8 241 9 6 286 174 524 7 66 1 1396 90 146 41 77 146 10 6 1265 8 76 26 10 1263 168 4 893 11 8 117 405 5 152 1861 4989 1 5701 1946 40 43 580 1872 7443 17 8 56 114 20 175 5 64 126 5148 37 1 21 424 7 9846 8 1266 49 8 159 16 2 8 12 30 1 226 426 4 178 15 2051 17 11 12 20 2882 774 1 426 4 3 8 343 285 9 4006\n0\t551 4 144 123 10 198 230 36 145 133 2 1455 3250 7291 1120 120 3 2392 11 139 7293 52 68 2233 8 63 64 144 37 97 1838 4 1101 22 29 9 880 42 227 5 90 23 175 5 65 15 2 53 347 5 13 8677 19 970 112 5 2635 11 236 162 53 19 5165 3 2091 218 6 2 4039 4 1684 5638 22 127 166 81 105 3297 2709 62 2240 5 99 218 4662 2403 7 8026 75 38 1 218 1585 41 1 2335 1171 1623 48 38 815 1 113 267 4 1 226 156 3 72 995 11 72 414 7 31 717 4 7500 69 1348 5 99 7956 420 78 243 47 16 31 274 2787 322 167 78 68 187 4799 2 4403 883 2 305 5 1811 5 2162 75 78 4 2 10 63 5721 13 2136 175 53 99 157 19 1 41 41 41 55 2546 983 45 317 459 738 218 4 596 3 42 105 518 16 1038 17 45 1375 597 1347 3 25 4533 106 33 34 5507 69 15 1 54 26 111 105\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 4544 8 219 10 1 82 326 15 50 4184 27 367 10 12 9338 17 8 96 10 8 1266 42 37 3876 3351 9684 6 37 2950 3 27 89 2 18 400 1031 137 464 368 581 36 1 4651 3 582 41 50 1916 76 10 88 24 71 1824 1815 8 36 3 8 93 36 11 184 11 1 211 164 8 96 244 1 259 220 11 7417 2678 20 59 123 9 18 176 56 3879 36 137 104 50 1508 89 4 50 4777 49 8 590 17 10 649 2 1618 901 15 4775 4 120 11 291 5 26 400 17 33 34 889 65 7 1 714 42 1744 75 9 4125 6 5 90 297 889 960 8 555 3351 9684 54 90 2 4384 17 10 693 52 3 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 12 1341 261 89 9 108 8 12 55 52 2048 8 433 5044 269 4 50 157 1157 128 5 99 476 8 88 24 57 2 8776 329 3 71 52 6539 29 225 151 79 539 183 10 8 12 2 222 1852 29 74 17 98 8 997 19 3 1640 48 12 160 778 30 9 85 1 21 12 350 111 3171 3 1661 8 192 2 17 8 198 175 5 64 188 140 318 1 714 37 8 1544 10 47 8 219 10 513 20 59 22 1 171 20 14 1805 14 7 3549 33 39 662 6699 180 107 50 7486 1717 16 838 52 6069 68 1 377 6468 1012 19 412 7 9 108 45 23 36 91 104 15 91 121 99 476\n0\t15 2 442 3 2 576 11 22 2722 14 1 67 51 6 2 119 5 1 800 3 3 25 147 6008 94 43 2270 1983 8444 5870 1563 1792 22 74 9794 30 1 800 5 390 25 59 5 26 371 308 2201 3352 44 119 5 564 1 800 3 585 5 1959 44 2150 2207 5 186 125 1 3717 4 286 4 448 3 1291 3 22 5 566 239 82 5 552 1 486 4 62 2752 379 3 537 3 195 7651 112 1971 15 15 1 909 13 92 121 1543 1 1675 4 294 6 37 904 11 1 21 2171 181 14 193 10 61 928 5 26 7885 1 201 1593 15 1 775 428 3140 253 199 555 33 57 314 62 2020 15 1 668 868 30 4387 981 14 193 921 161 249 1902 17 45 10 6 1117 317 94 51 6 877 4 11 3 11 818 151 1 18 279 2034 10 6 2 21 11 40 631 298 4740 16 34 1 293 363 3 4 201 3 748 3 289 86 53 10 6 39 1 11 22 6515\n0\t11 1708 2 1165 4 85 73 33 22 202 36 2 718 4 1 5201 6419 3 4133 6 93 211 73 1 1879 9509 7 9 18 22 3806 80 1879 104 24 11 4437 3 23 63 348 1 9509 7 9 18 61 1 558 3 6678 16 43 4 126 57 37 78 2458 32 62 11 10 12 211 5 99 75 1 337 1305 125 48 12 2040 43 56 51 61 43 854 11 6 1 1817 4 127 1879 1865 502 23 76 64 2 163 4 3 43 148 8 5391 65 19 43 4 126 29 970 3 1756 172 406 4133 6 62 59 8203 105 565 10 54 26 240 45 275 117 1180 5 87 2 9454 22 33 347 19 34 4 1 11 24 1478 7 1 622 4 104 3 98 61 100 316 5 48 51 22 229 28 41 102 170 81 7 202 154 18 35 291 5 24 2 163 160 16 126 3 286 172 406 49 23 64 1 18 316 19 249 23 560 2386 117 653 5 9 18 650 17 10 40 43 211\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7785 5 1 296 616 6 25 8820 6 31 1485 526 4 104 11 76 414 9117 14 6 1 524 15 218 2700 200 1 9 21 40 71 6642 77 82 364 9771 104 3 2 668 3290 197 1 1817 41 4 561 3011 3 3714 13 3 578 1791 1066 7 375 124 1413 62 120 7 9 18 820 47 14 31 665 4 75 5 26 7 2 18 197 202 3825 5 26 121 29 513 205 460 22 2038 14 1 9642 11 83 118 4 28 3152 17 35 3125 57 126 770 371 7 1 166 2700 7 13 92 302 144 127 382 124 1066 37 109 6 1 491 607 6255 1 3065 256 371 7 572 94 2129 7 737 72 24 1 360 1403 372 1 2250 4 1 896 72 64 2453 4214 962 3935 3 1539 5584 738 2750 403 1502 216 7 253 199 241 11 657 33 22 7 13 3053 6 144 127 124 76 414\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5069 94 1 182 4 4170 3025 217 61 1783 5 209 65 15 146 5 328 5 1 5641 189 1 2736 217 1 29 1 85 51 12 2 163 4 125 3 125 574 4 6588 936 33 310 65 15 9 13 1226 1522 18 4 34 290 42 165 3577 3596 9080 9092 589 3 46 13 150 63 100 1346 610 3740 17 10 2018 34 1 260 3 292 180 107 10 3174 4 268 4357 145 128 8323 5 26 7 2187 29 97 985 13 10 1 2313 505 1 360 3239 1 1685 263 1785 35 17 99 10 3 468 64 48 8\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 51 6 84 2252 7 2 8467 500 297 6 1 21 276 84 3 1 847 6 519 1 21 213 105 1722 42 676 2 661 186 19 1756 59 15 8 381 1 129 5334 618 3 1 91 559 7 9 21 152 384 565 10 181 11 834 531 151 62 91 559 973 1 22 5703 3 1 466 91 2112 12 2 841 9 28 689\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 67 6 2040 3 1 393 6 162 17 2 91 1399 19 1 2996 23 63 64 48 3592 127 53 171 5 1 1480 69 10 1664 126 1 232 4 871 7 66 53 171 63 3 5868 33 1405 1 21 6 89 69 16 86 290 10 12 6642 7 5198 14 3 45 23 59 175 5 64 28 324 4 1 67 6704 34 10 8 354 1 1967 628 15 593 3 1 52 4683 2326 5 119 985 11 1 215 88 59 3506 3706 1 2526 245 128\n1\t43 243 761 3079 16 537 7 235 9 21 1008 2 170 487 35 2 1591 404 1 2783 7 1 1750 11 27 63 90 10 5 2 1849 11 40 1 3141 5 473 122 77 2 27 3451 5 390 2 3345 5 7576 25 2707 35 12 4769 2035 29 1 1191 4 2 3345 35 2630 16 1434 285 1 448 4 25 2766 27 432 417 15 1 943 4572 1 1591 14 109 14 2 287 11 4831 25 5212 2707 2 304 287 654 35 14 15 80 287 7 2673 104 40 2 1085 11 88 463 26 56 53 16 257 170 4128 41 56 565 27 271 32 1849 5 1849 105 14 1 1591 151 943 3671 3 27 1225 77 2 1032 8395 654 2046 35 791 2371 7 25 221 1139 1254 1125 37 676 1 2783 270 334 7 11 34 7 34 2 46 53 2062 15 2 243 678 3 2231 1905 51 54 26 2 967 5 9 628 17 10 12 20 169 14 53 14 9 628 618 1 393 12 2 222 52 570 68 10 12 675\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 143 504 78 49 8 159 9 29 1 7590 21 8079 9 9129 10 12 31 5626 1412 49 102 82 124 61 2925 689 1604 8 1525 47 10 2397 2 222 78 36 3 259 621 16 31 1297 5984 9291 4379 4379 12 20 425 17 10 12 31 837 21 15 43 53 1308 3 1904 4720 13 2855 57 630 4 656 1 121 384 6476 3 111 5 120 61 37 1881 1 67 384 36 10 88 24 71 428 30 298 416 589 1 478 56 2705 437 10 384 14 45 51 12 2 163 4 4 3251 8 467 2 3284 8 118 519 42 2429 17 10 2397 36 350 1 21 12 383 7 2 6524 3 10 726 46 13 7846 460 6 101 595\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 51 12 162 38 9 18 11 8 10 12 37 515 1879 15 91 2036 3 443 216 36 3482 1897 6015 59 10 247 377 5 26 11 51 247 56 78 5 1 640 3 1 18 39 1358 19 3 778 8 152 140 1 226 4 1 484 17 11 114 20 352 3291 1264 10 485 36 10 228 26 53 32 1 8743 17 8 191 134 162 38 9 18 55 452 58 53 1041 1 293 363 61 37 8671 1 443 216 12 2680 3 1 494 12 2050 1634 19 50 221 923 8 187 9 18 2 5397 4 1731\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 337 5 64 9 2 156 663 1742 3 42 254 5 995 11 1 540 3799 9 21 6 377 5 26 722 42 1375 20 2 625 539 7 1 436 16 3 9815 3 42 1495 1495 1466 10 12 55 254 519 5 365 48 33 61 33 39 771 5 884 3 83 1089 62 227 16 199 5 5084 8 12 15 2 493 3 52 68 843 41 715 268 8 997 512 667 94 2 427 11 12 377 5 26 211 1786 4875 48 114 27 3 145 8 812 5 134 458 340 1 233 11 8 96 53 124 22 89 737 17 8 7 5379 16 34 35 76 139 64 1 21 1394 45 117 620 1137 4 3871 13 1768 1140 16 11\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8180 6 46 1831 3 451 162 52 68 5 309 49 60 5231 2 558 968 60 40 5 4004 5 44 1007 316 3 805 14 33 54 100 4 44 3889 44 33 175 44 5 4839 224 15 2 327 1297 487 3 825 75 5 13 10 36 6 2 46 211 230 53 18 11 153 321 5 26 1052 3 7456 42 39 514 14 10 705 1 201 22 34 46 53 3 33 309 62 871 46 322 1 67 6 641 3 2674 17 10 557 1080 3 1 263 6 46 1087 3 46 3883 13 743 84 231 18 7101\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2634 22 137 104 11 22 91 33 22 722 98 51 22 137 106 23 2703 1352 175 11 28 3 2 350 719 4 50 157 167 78 48 9 3191 13 9372 440 5 26 31 353 17 1 22 56 91 168 3 6126 11 176 36 1424 3 1 1429 3928 2962 11 24 6332 19 3639 412 1380 314 5 131 2767 188 2267 29 308 6 39 13 252 18 2004 55 26 314 14 28 4 137 641 366 86 39 11 13 614 8 88 139 1332 8\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 419 9 18 5955 746 693 5 64 52 3648 13 743 4583 270 25 443 3 7939 25 1741 1499 1 18 6 1029 15 5385 3 1680 414 11 130 3350 10 34 65 16 4840 13 4098 20 351 116 290 23 190 175 5 99 1 389 18 7 1 1750 11 10 196 138 14 10 271 19 69 10\n0\t1 4748 4 44 157 5 2162 2 2115 60 1304 81 35 335 132 2 131 22 7054 8 96 60 89 44 5541 46 530 4 611 101 2 170 2670 1753 60 6 6907 4 48 60 6 38 5 3374 8 96 44 121 7700 2148 2 170 282 781 1700 4344 480 44 5081 6850 8 96 60 2 732 7529 533 1 21 480 1 1770 1261 60 12 5179 13 858 16 1 18 7 5396 82 68 10 12 167 78 48 8 5207 10 57 313 840 1025 30 5544 1 119 300 472 2 1911 3394 924 95 42 676 39 2 534 6232 1222 158 66 1 442 8 112 1 4 1 27 721 7416 1237 20 39 16 1 1232 4 7673 2720 2496 17 93 5 1159 183 27 1141 768 1 7307 12 2406 16 1222 21 27 12 229 1 113 5943 13 150 187 9 21 843 47 4 1731 10 57 2 53 4893 202 58 640 3 2 1541 4 53 3 464 1014 8 54 354 10 16 2 772 17 924 2 4036 7 1 3234 11 6 3535\n0\t3538 79 14 31 3921 3 3840 525 29 1 8261 119 418 15 2 259 3 5234 2 287 7145 29 1 601 4 1 9765 27 3 25 711 22 65 318 1 711 2296 47 3 5 889 25 1327 47 7 1 9273 27 741 65 5831 44 77 2 429 106 33 8470 3 27 406 289 44 2 1894 4 3542 559 7 1 1 2761 7211 4 44 161 1845 35 5323 1159 2 3 44 3803 27 2980 5 44 11 27 6 160 5 564 126 513 60 5136 65 848 122 3 98 1573 44 1229 959 1 413 883 912 60 3 80 4 1 882 3 40 5 87 15 2306 3 5714 69 34 4 66 22 237 32 1577 3 2040 1 113 178 6 2 2461 3258 1417 30 43 1370 1352 7827 19 116 8 19 116 12 1576 14 31 967 5 1352 7827 19 116 69 370 926 1281 1 2953 3 2 3487 1 250 129 380 69 8290 44 532 12 8 1454 1064 11 5 26 2 5692 9 18 6 2 1495 3161 1378 11 16 17 1200\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 31 491 135 15 46 103 1765 1 212 67 6 553 15 3 823 7337 46 1295 202 50 59 6 11 10 40 20 71 612 19 388 7 5747 3 6 2091 59 1492 19 2229 48 2 9616\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 599 47 4 124 5 8 1459 65 8 9339 140 1 74 957 4 1 18 1437 45 1 344 54 26 2 351 5 1861 6204 10 56 1095 3 8 336 1 18 169 2 4885 1 330 350 4 1 18 57 79 3 1094 1 389 290 8071 292 51 61 2126 4 1983 33 61 20 6077 41 13 150 54 24 5 867 193 69 1 171 34 24 1423 1827 8602 37 26 5095 45 23 24 1245 2308 137 3079 41 62 3283 13 150 56 336 9 141 3 76 24 5 639 512 2 973 16 50 221 5650\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 12 929 5 64 9 73 9478 8 24 31 2455 6339 282 3 9900 72 57 620 44 1 2300 104 32 1 66 60 1517 4681 8 143 96 10 12 14 2318 14 1 5126 7020 17 19 1 82 1737 10 247 1 391 4 9222 8 10 54 1142 10 12 31 2715 548 108 292 145 3414 11 33 143 328 5 2943 5 7220 1556 9937 1834 1 462 14 1 661 2943 8 87 96 11 33 89 44 2 103 105 11 33 143 87 227 5 2210 2943 2300 69 1 18 88 24 71 3594 282 8 24 5 1844 1 8 96 239 353 114 2 53 329 15 48 33 57 5 216 1566 8 338 3074 4252 7 9 1538 17 33 419 44 2 20 2322 4227\n0\t10 481 815 70 2428 91 121 3 2 1054 1252 2746 15 400 3365 2132 9 6 56 573 1495 3182 1 59 177 11 595 863 23 6 1 2831 386 947 16 1 398 178 11 6 31 2544 973 4 1 1766 127 5554 22 37 91 33 90 23 539 3 8 1309 2 163 7 2924 4 2758 73 10 12 36 133 1 4 2 5666 1 59 177 11 6 53 7 9 586 1378 22 1 4 1 1461 868 4 492 3 1 1968 16 1 263 55 2403 1 6 58 4966 7 9 927 7 1 178 3 1661 60 3426 44 6844 1018 6 195 2 115 13 150 192 1140 8 24 107 9 489 21 11 130 24 100 71 9859 10 123 5698 5 1 1571 37 91 6 110 1 59 1362 1548 6 1 9013 11 8099 341 8 192 273 7951 1966 1 113 319 63 63 87 2 53 329 17 63 515 20 1 7842 4 1 1766 3 48 3009 1 423 823 7879 5 854 51 130 26 2 83 117 90 2 967 5 2 425\n1\t51 12 162 2223 29 1 290 32 840 242 5 9186 3 154 177 422 457 1 3958 3034 1 265 5 154 29 1 85 10 12 1 1409 8700 177 689 16 2 156 2584 29 2532 2523 12 2223 68 6055 3 492 115 13 2718 34 3626 16 1 21 3 61 2337 49 10 10 143 307 12 997 960 8 12 31 6919 29 1 152 262 265 1 262 29 225 308 41 1882 31 6708 8 191 7259 9 2219 30 667 458 29 11 387 50 4148 61 1740 1 4 3 508 7 1 147 3938 1 265 4 2523 29 1 85 34 2514 3 28 4 1 1318 11 43 4 10 181 37 978 3 195 6 11 10 12 184 3483 34 1 188 11 3006 23 4 1 1575 61 6580 3483 10 12 2542 3 10 181 36 2 1705 10 165 37 986 11 10 726 2348 42 36 1 2729 16 115 13 499 276 439 195 73 307 12 997 65 7 10 232 4 36 2 1213 5481 41 2730 1441 8 449 9 419 23 34 2 103\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 123 1388 2 156 240 69 10 1082 5 131 2774 4 34 1 8497 35 22 1 3 6655 4 11 9 69 835 65 15 34 1 1712 840 6482 160 19 9252 36 75 27 338 372 15 1 19 1 7401 41 11 25 635 165 645 30 2 105 91 48 123 11 24 5 87 15 1 13 3440 107 78 138 3488 7 78 364 387 19 5924 8 56 83 365 144 9 40 132 2 298 868 19 6157 1013 819 71 536 457 2 8125 9 1513 26 95 1949 5 34 9 6 161 3 34 1712 840 6 242 5 87 6 70 43 6152 5011 145 20 296 37 83 55 328 667 11 145 2 5248 325\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3756 4 6359 12 9 502 1 1151 6 46 254 5 10 6 28 4 137 458 7585 69 33 22 7 1629 1 18 6 1029 15 223 3 3418 529 69 1 7183 5528 101 1 80 1539 123 2 4233 329 17 16 80 4 1 18 42 39 122 3 6268 1006 6115 87 23 175 5 99 15 25 3 15 44 371 16 2 594 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 337 5 64 9 28 15 78 169 831 1 494 6 1169 439 3 790 1 18 6 237 32 5487 6125 41 3208 55 2 583 63 64 1 1156 2947 5 1921 2001 374 321 1688 584 66 54 8270 949 66 54 90 126 38 1 6479 207 6244 48 653 15 104 36 3 376 2283 2 3000 1924 6229 97 374 5332 38 1496 3 62 221 1067 83 351 116 85 217 319 19 9 461\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4788 35 76 229 59 26 2299 14 28 4 1037 4954 24 16 11 6 229 1 5118 1656 4 9 880 10 56 2236 1 1455 2441 4 1 1 950 7872 3661 174 7872 15 3139 38 1 226 85 33 17 51 6 43 9291 3 51 6 2 3409 566 29 1 182 106 23 24 2 772 293 363 13 3204 23 24 1 129 4 1788 4888 116 687 3991 4128 15 1 687 4185 144 87 23 368 2514 96 893 1560 6 52 240 68 9 12 2 2675 37 350 1 251 270 334 7 147 3820 3 1 82 350 6 7 39 36\n0\t0 0 0 0 0 0 0 0 0 1013 23 22 21 1465 35 40 5 64 4690 9 21 76 20 59 26 2 351 4 116 85 3 319 3 2 568 17 10 76 93 90 23 2048 660 13 677 228 26 2 67 279 1083 1339 17 8265 636 5 2321 10 3 457 37 97 9069 6802 4 791 1610 5070 388 253 1 5520 7610 549 1779 94 2 46 386 13 4196 54 275 36 8265 2497 132 2 80 832 3 496 1480 14 25 74 1252 74 868 3 957 21 63 30 6528 300 27 262 15 10 7 25 438 16 132 2 223 85 318 10 726 14 48 10 20 55 16 2085 1 1122 1501 11 27 40 30 237 20 227 839 41 3689 5 3882 1 8263 13 2663 1 4654 3 2854 581 5 442 39 102 57 8460 52 364 120 3 52 67 13 2047 23 4229 16 1 3108 17 831 1155 30 2 342 4 822 982 786 1382 5 505 7 11 4972 23 22 2 1598 3 1348 130 1006 52 32 1259 20 55\n0\t11 51 6 146 1722 540 15 9 471 3 1251 32 458 10 6 7 95 524 2 6485 2555 142 4 2 868 4 104 3 1402 36 6486 564 1 692 3 3 72 22 20 1873 15 232 737 42 2 4282 13 1118 1391 271 540 204 7 9 18 6 11 1 857 36 2 2599 19 45 9 18 12 2 1397 24 77 1 4137 398 5 10 94 186 1294 51 22 37 97 1552 7 9 18 66 76 100 26 11 45 10 12 2 1397 26 8452 2 157 8044 4 5 216 4 1 94 3185 110 162 6 117 2667 3 49 23 475 70 43 5654 4 1 593 23 96 42 23 70 1789 7 286 174 2396 13 150 497 9 67 247 160 2882 19 3618 3 191 24 179 11 6 12 1477 5 90 2 18 47 4 10 1441 101 1 398 638 2854 41 9540 13 16 400 1962 221 216 3143 1730 48 88 24 728 71 2 2067 378 432 2 2971 2135 16 5 9208 19 29 115 13 116 1898 3 925 29 34\n0\t8856 1 18 418 142 15 2 2153 46 223 3585 11 3029 7319 5034 341 284 30 2 586 3 32 1057 1 2932 22 1581 56 6465 236 9 28 272 106 3 22 288 200 2 2000 207 71 2945 3 1 412 689 49 10 255 2366 3 22 1363 5111 3 7585 31 389 1536 40 5187 450 7912 115 13 872 275 114 20 1460 3698 1 3036 7 9 108 29 28 1746 2 968 2296 140 17 1 4914 2296 183 33 1388 110 4218 3500 7 1 750 4 28 178 3 94 2530 295 32 2 434 23 63 64 44 905 5 70 960 115 13 858 16 1 8 12 56 5513 146 38 31 161 7965 7423 4806 3 275 1 41 146 3 34 1 510 2837 2133 689 42 39 31 1335 5 24 2 163 4 1653 168 395 3141 6 37 5386 204 11 58 129 117 693 5 7 9 4215 11 169 8305 1466 115 13 150 969 9 18 1247 5 539 29 75 862 439 10 1306 8 143 2655 17 8 128 96 42 2317 2153 2153 46\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 1 471 1 804 4 1 131 6 1470 245 1 1063 917 37 97 67 456 3 10 15 105 97 120 11 10 224 1 1 119 29 48 1560 10 228 24 5125 7 95 340 2541 103 41 162 13 6 2 1383 770 19 2 8866 2169 712 2 2632 906 25 59 770 6 3424 30 1 324 4 25 434 752 35 1436 7 2 2436 2200 30 1481 4 1 28 31 2790 13 9608 2453 4 6 2280 5 998 25 231 371 136 2811 16 1 324 4 25 752 1018 93 1436 7 1 7 2 7286 324 4 801 2474 4831 5126 115 13 659 1993 5 1 2511 2440 32 2 696 465 14 97 4260 72 459 118 75 10 741 5158 1 2210 62 221 7532 3 5285 421\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 20 160 5 9058 1 108 51 213 11 78 5 771 1395 10 40 53 1764 2628 168 66 61 229 167 6483 29 1 290 5696 213 610 2 244 2 103 4040 3 20 591 53 17 207 4010 244 1 164 7 11 2960 72 118 11 49 27 173 186 1 85 295 32 25 5 2292 5 25 4472 27 76 182 65 19 31 1444 15 44 3 24 5 552 1 1393 275 367 1188 11 10 6 2 622 1 168 29 1 8484 22 4 174 1344 258 1 374 35 4008 2246 8 143 853 11 55 155 7 1 33 19 277 10 485 36 146 47 4 8 497 207 1 2188 1131 33 5125 58 560 1 177 165 479 198 648 38 44 960 236 55 2 10 649 199 2 103 38 976 633 1830 29 1 387 2 232 4 17 45 23 83 186 10 105 2301 23 63 24 299 133 110\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 176 29 2 7 7220 1556 6628 1 584 4 1721 6655 4 120 30 1081 718 5518 6 2 3 1883 391 4 8033 13 2609 1 6455 4 184 711 864 4205 270 661 5 31 3537 3432 254 5 36 17 391 4 1827 228 291 3549 3 286 999 5 3642 1 507 4 661 1342 7 2 13 743 191 16 2791 4 234 1913\n1\t2538 7 17 78 52 1574 3 7546 4 5871 17 45 4049 19 1 1975 53 1637 11 8 1505 1 265 4478 30 2414 6 28 4 1 298 985 3 55 45 10 167 78 198 1 5102 10 2589 1080 3 10 1605 5 932 2 243 534 1190 285 1 529 4 7809 37 45 8 24 5 187 50 570 3703 3260 9 141 145 160 5 24 5 134 11 8 173 352 2083 194 642 1 346 2387 3 80 81 35 335 127 687 1101 203 104 32 1 518 495 26 945 30 9 461 10 40 34 1 687 3 198 109 2071 7291 36 1 1184 161 164 35 152 2656 1 4845 1 558 287 35 6 367 5 26 2 2 1119 8874 2 568 534 5422 15 2 464 1085 3 1 558 2104 35 328 5 4012 1 7380 15 62 5 875 295 32 1 3153 8 54 134 11 6298 1071 102 4085 65 3 2 4134 29 116 4141 14 2 111 5 946 3362 5 1 2594 4 1 471 186 9 18 16 48 10 6 3 335 2420\n1\t128 270 65 1 3409 5 566 48 27 1304 6 2 3761 13 6 2 21 832 5 42 1117 4586 6 7776 3995 3 2211 17 10 1123 105 78 443 3 298 2583 4067 7671 4569 363 37 1 182 1122 6 595 11 1113 1 477 3 1 393 4 1 21 22 5519 205 7436 3 45 59 1 206 54 24 71 2547 227 20 5 25 4830 4 13 7784 465 15 6 1 1234 4 3151 16 2 21 15 132 31 859 6677 111 105 78 2157 3 412 85 5 8017 1 2174 1112 1192 896 1 111 1 882 6 620 6 198 19 1 1590 4 101 7 698 2 813 3660 421 1 366 2743 181 5 26 28 4 1 124 9000 6 2547 227 5 131 1 9448 1697 601 4 882 14 530 1604 10 181 11 6 20 273 704 244 253 2 2094 238 21 41 2 1768 1700 1 410 173 26 273 4 490 4032 318 1 46 182 4 1 135 1 1127 9732 393 6 48 3389 10 674 11 9 21 6 146 52 68 2 3170\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 99 679 4 782 104 883 29 225 33 328 5 3 9 40 5 26 1 210 45 20 4339 210 18 8 24 117 57 5 90 512 328 5 694 2086 8 100 563 1 8774 4 318 8 1150 9 391 4 5502 2777 7 2 314 8 192 2 325 4 6337 17 9 6 527 68 8 54 449 16 2693 13 2699 1 82 874 1 67 12 2911 3 8 12 1 74 938 3 2 350 136 1 1079 6276 3 8 57 286 5 64 48 1870 485 36 74 5361 436 51 22 43 902 47 51 11 381 9 3 63 272 79 7 1 260 2132 17 98 316 8 118 4 137 902 35 365 45 20 503 258 49 72 57 5 473 1 388 1237 3 11 311 6 20 248 15 257 133 8264 57 5 90 28 1675 115 13 614 10 61 65 16 2 5938 420 187 10 2 680 37 223 14 33 57 29 80 4 1 215 77 110 207 513\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5300 4058 6 2 21 16 261 35 1143 2413 3672 3 7326 1 124 250 2689 6 80 373 1 585 4 127 102 678 14 16 1 82 120 109 33 22 1100 4 696 238 21 106 9 21 6 215 6 7 1 4 1 2094 2360 2344 18 541 15 1 368 238 6610 1547 9 40 20 71 306 4 1 124 27 40 89 7 3853\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 56 405 5 36 9 6488 101 2 325 4 1 870 3 2 325 4 1037 3 34 4 912 22 7 9 734 5 1 1541 2142 4035 14 1 466 1651 3 10 2397 1051 115 13 92 1245 5958 8 214 512 288 29 50 99 39 1801 269 77 490 101 1120 5 2295 1922 129 12 595 761 3 578 39 114 20 176 36 779 634 36 4035 247 29 25 1726 4032 6484 105 9 12 375 172 183 27 645 25 2796 14 31 13 659 2 25 1214 383 522 65 1 1369 3 99 174 73 80 4 6040 61 237 138 68 9 5592\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 130 24 1 964 2452 266 745 2 1081 756 206 25 3212 516 1 2904 2956 1 27 6 5712 5 24 1066 19 22 1060 4 5686 3 1060 25 22 20 1 225 222 664 5 25 7030 4 5066 142 1 7499 13 724 7 10 1200 10 6 2 983 3 1 1399 6 20 591 695 1 3645 22 301 2130 7 3 1082 5 2883 14 31 161 1368 1875 1544 16 235 1474 5 867 66 6 36 154 681 27 1636 2 2499 243 68 101 6940 30 23 175 5 1743 550 45 161 413 4466 23 14 3654 98 9 6 16 4840 13 499 143 352 11 1 289 4416 15 1 4 217 3 243 452 16 1 1399 5 1093 33 965 5 26 56 2384 132 14 3 13 92 131 184 387 37 5224 72 22 1 203 4 958 511 10 26 8294 3857 45 61 9871 554 1 915 4 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2191 1756 81 7 2 2462 7 7 1 93 27 11 27 57 2035 174 5230 81 3211 314 5 564 3523 2891 3 98 27 274 126 19 13 252 18 6 2 718 11 1 2328 4 140 375 3679 15 81 11 165 5 118 122 3 140 43 168 262 30 171 370 19 148 13 6 2 686 1093 37 42 20 6906 29 513 132 2 6402 38 75 43 2113 63 473 2 164 77 2 13\n0\t363 802 66 176 6398 17 98 33 22 531 2175 30 31 332 489 363 383 826 9076 236 2 156 547 840 363 204 1221 236 2 757 47 3754 2 6413 7716 6 8103 1237 236 43 813 2 797 383 4 2 259 303 2648 25 221 94 27 40 71 3219 30 1 236 2 156 434 3274 107 217 275 6 15 2 1 196 5 2089 2 342 4 81 854 1 397 1353 22 56 4543 1 274 276 36 28 4 137 833 2312 89 32 217 137 2294 413 191 24 71 7 1 210 7 1262 622 15 1 1521 2202 126 7 2478 68 2 33 88 24 311 47 4 10 217 549 295 10 12 37 13 3371 2 377 445 4 38 8 173 64 106 1 319 383 7 7 7 791 3334 2569 1 121 213 84 32 6025 8 24 117 455 13 56 213 95 138 68 95 82 772 1045 1354 480 31 202 240 217 1846 4493 11 1048 3703 130 676 26 227 16 23 5 1088 704 23 76 335 9 41 20 2607 2 497 229\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1 6 436 2 167 2940 3931 430 4 7792 1 113 3 1340 32 35 6 587 16 6865 2673 3 3526 8 555 27 114 52 36 2938 13 1226 430 168 22 1 9351 4781 4393 1 546 106 2207 6114 65 25 4636 1 1433 11 1037 3029 3075 4 1 1340 3 1875 50 430 919 13 9 3335 13 6 20 16 686 3733 2673\n0\t2 604 4 22 7322 2035 136 29 1 3 406 62 3274 22 2632 9204 5 1 4530 846 7522 3076 1036 5 4154 127 1355 60 1937 11 260 183 239 1 4770 12 340 2 1219 32 1 66 4223 2 1127 1358 11 450 7522 6 553 11 1 12 74 2260 30 2 1010 35 486 7 2 15 25 2866 7 3933 1010 6 1968 16 1 30 1472 1 7 2 8273 3 712 62 9220 5 359 25 379 7305 385 15 1010 3564 1018 6 770 15 1010 19 1 2949 948 3690 25 328 5 1426 1010 874 30 1167 65 2 5952 66 963 951 7522 77 1 1341 9703 9 18 57 2 46 53 567 17 676 1168 65 15 105 97 8049 802 3 82 904 1192 1 201 6 5417 3 2149 1824 17 207 500 2999 2448 1 131 1958 47 35 123 20 187 28 4 25 52 1201 2137 55 1078 25 14 372 1 280 15 1 3016 4 97 4 1 2984 8029 4 97 4 2001 368 904 3 2971 393 14 530 5280 370 19 1493 484 5841\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8518 237 94 1679 102 4 218 5252 4 8 192 2 103 5013 13 2361 4 1 121 6 501 14 223 14 72 571 11 10 6 59 13 150 192 8881 75 81 63 230 11 9 3047 589 6 4 1 172 69 10 6 1976 14 1794 17 8 230 1 1570 1707 347 6 128 78 3606 13 150 560 45 1 2982 76 117 187 199 1 917 65 3 1 398 185 4 1 589 3 1 172 11 917 15 63 59 70 8487 15 6012 3 1 233 11 72 22 128 15 11 2988 32 2 1655 11 6 331 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 64 9 682 13 499 440 5 26 2 3087 19 124 4 1 3787 3 7490 17 34 10 29 6 253 23 555 56 955 11 23 61 133 28 4 126 3 20 592 13 499 6 46 4068 2 3087 40 5 24 43 1329 66 40 43 845 3459 538 5 110 9 18 123 20 24 95 132 13 4175 42 105 518 16 79 39 83 99 110\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 84 1993 5 8254 13 7747 6 2 18 23 83 64 154 1393 10 40 313 171 5 139 15 2 313 471 9 6 20 2 1408 280 16 1660 8014 17 27 1834 1 280 36 27 1834 294 13 92 307 19 990 3 844 2 156 3302 6715 67 6 20 2 147 28 17 1 67 270 2 1684 147 593 19 592 13 743 1172 155 7 85 5 70 1799 19 2 4474 66 40 8839 47 80 4 164 13 92 171 7 9 61 4544 8 191 187 2 798 5 3360 4504 35 12 892 14 1 1741 4937 578 762 7 2 1741 13 92 206 114 31 491 329 19 2472 199 2 1577 572 4 2 958 30 2 13 92 1804 107 7 1 4474 234 89 10 230 36 33 549 1 234 49 2630 22 3424 77 2790 13 252 18 12 313 3 191 64 3 93 86 2 191 8548 13 150 46 78 496 354 592 13\n1\t4 34 4 127 81 83 169 209 1413 14 3613 3493 33 34 216 109 17 14 2 212 33 83 4008 14 461 8 83 1844 220 28 173 198 645 188 47 4 1 8743 258 49 43 28 36 626 9304 35 7 124 4 9 426 2171 13 252 213 5 134 11 51 662 1318 5 64 1 135 14 76 34 124 51 22 198 1318 5 64 25 581 704 33 216 41 1265 1 74 1285 4 1 6 28 4 1 113 188 117 114 3 6 279 1 2154 4 2 86 28 4 1 80 2548 529 7 21 622 14 1 6 3 556 689 1 435 3 585 536 7 1 606 6 1462 2720 1391 46 3 51 22 82 2126 3 1657 11 5868 1920 1 201 66 6 577 1 2870 3 28 130 29 225 328 1 21 14 146 264 32 2 164 72 531 2920 15 5348 124 41 1004 13 4395 31 1930 32 2 1313 1951 66 907 7 9 524 907 86 138 68 80 82 1132 13 1639 3 1450 14 2 5012 78 2302 7\n1\t15 2 434 2169 7 1 1643 3 2 434 254 3064 3962 35 12 602 7 98 72 64 2 67 32 106 2 526 4 681 1438 2598 1148 4388 3 2827 5 7799 122 3 1364 1 8461 319 32 4100 98 72 64 1 67 32 106 23 64 2 315 412 3 1633 23 64 1 148 1131 4 6292 588 1781 3 1 81 35 22 1544 7 1 2000 22 4700 47 4 10 5 552 62 2058 1 82 80 731 67 6 32 106 2 532 6 2280 5 70 1451 16 44 434 585 603 442 6 3363 7 94 5302 2455 9678 257 683 1620 5144 418 45 72 785 102 1487 2882 7 1 74 6 234 4622 7302 3 1 330 6 9 21 400 1714 257 8020 3 151 2 627 272 30 6458 146 52 5 592 13 150 76 373 354 9 18 5 307 35 1371 5 24 132 2329 4 408 305 5650 373 279 154 9199 23 17 786 83 504 235 52 1251 32 124 7 9 1771 51 6 4 448 4 1 21 1350 17 58 1988 9610\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7285 9 6 2 687 5 1 1222 803 13 67 2179 2 658 4 1995 1496 7145 7 1 750 4 1119 1692 3 70 224 30 1326 13 252 18 40 34 1 16 9 1222 13 2891 41 170 1995 101 7 469 1025 226 6703 101 2 109 2336 170 287 35 76 198 131 142 44 17 100 9960 5840 1184 164 35 789 38 1 4670 4420 1146 101 2 3300 13 2663 98 16 2 978 1222 158 10 12 56 1634 1 1190 6 400 3789 4516 20 55 1 3803 4683 168 3 3536 12 227 5 359 1 976 3 3054 633 410 9666 133 10 343 36 10 12 101 219 15 2 1858 522 41 2 1858 522 13 1 6400\n1\t1 429 7 3413 6 152 1 4 1 4402 9038 15 239 952 14 25 217 9667 6 28 177 17 98 5 1379 1 166 177 38 239 711 7 1092 2 1620 6 2 1884 2476 4 2845 11 3700 125 1 13 3422 8 57 58 312 35 12 608 27 4831 2 8605 4 1951 1579 1827 353 3 1 2157 4 1132 9609 8282 3 1867 608 15 25 6045 3 9906 1 4016 255 577 14 2 1341 115 13 4763 77 375 4 1 21 6316 533 253 16 2 2318 1511 17 128 1572 1 3 1811 331 685 9457 16 5541 7 277 1630 7693 1 9792 4 124 30 1 1143 4 3595 3 124 14 8356 14 1 6081 4 1 808 3 566 9862 115 13 3057 146 16 307 3 45 28 164 63 31 5541 41 29 225 2 302 5 5466 2 644 1626 608 55 45 33 22 5 2 2818 608 98 8 134 9 1894 4 21 3179 6 279 1 836 3143 10 47 195 45 23 63 183 10 255 5 408 42 1 59 111 5 1116 110\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 56 112 9 108 8 320 28 85 49 8 12 7 4339 50 1946 1049 10 5 199 19 2 21 9 141 245 63 26 2 103 4140 16 4339 132 14 1 178 106 1037 2064 2943 3 283 543 16 1 74 85 19 1 1250 28 4 50 6035 6 1415 4 283 9 18 73 60 9545 125 10 7 265 4575 45 8 61 2 1946 3 88 2442 1 81 35 1160 9 360 158 8 54 187 126 31\n0\t105 276 36 2 1039 13 659 1039 72 24 120 7630 204 105 1 13 92 74 350 289 5968 202 9877 1 5685 7264 35 1630 105 211 36 2 346 13 92 21 40 2 53 859 75 20 5 2600 116 585 17 1547 1 111 5968 451 5 90 1968 6 332 13 2663 25 302 16 3814 25 25 32 1 2430 3 1 5172 4510 30 6 2 256 13 2361 1676 87 1388 23 17 80 22 105 125 1 13 267 6 892 17 105 5496 7 330 350 115 13 30 6 105 6077 193 43 168 22 53 265 6 13 171 5968 10 7 1 74 350 17 6 1016 7 931 168 5685 7264 105 123 25 185 109 17 276 7 43 105 168 25 1300 15 9265 6 6 2 27 151 23 539 197 7630 3 39 25 1761 3 25 1230 8742 3 1569 27 6 2 9722 6 53 7 43 709 546 17 105 1767 29 1678 6 1 2594 37 162 5 1690 9 6 44 226 21 15 37 237 6 1477 193 60 276 105 170 16 9265\n1\t101 4 194 3 49 27 1789 1 1653 47 3 1 6354 544 12 36 72 563 51 12 2 1591 19 1 17 853 10 6 39 195 6270 1661 51 6 2 3116 7 1057 17 261 422 64 2124 473 482 1 1 7 176 75 78 319 3 81 61 516 11 1540 187 1 635 2 1173 16 34 7 34 8 96 10 12 46 109 1613 59 358 188 8 54 24 1505 22 924 279 1243 65 5 2 8816 572 2990 15 1 4908 3 8 54 24 39 5148 1 6865 29 1 477 802 5 2 128 2859 37 81 511 3237 118 48 10 3191 13 1226 839 37 237 40 4587 79 11 42 20 11 42 254 5 90 2 39 270 85 5 825 75 5 87 1 85 5 152 87 194 3 98 23 138 186 43 52 85 128 5 96 4 34 1 1733 468 321 5 24 383 183 23 637 10 276 36 2934 114 25 3 45 9 1314 6 25 74 5854 420 187 122 31 1 344 4 23 5854 5 1 1400 16 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 8 24 100 71 2 325 4 1 215 5 86 4489 397 10 784 36 3189 1074 5 9 2418 4 930 758 5 199 30 197 2 4724 6 38 1 80 761 3 489 129 1242 16 537 341 9 1680 1 14 109 14 5112 1 603 2437 312 12 10 5 932 43 426 4 386 7079 1238 3 10 5 1271 3 98 1 120 15 2525 10 6 1071 5 1288 41 99 9 131 669 96 469 6 1 1735 427 6 11 1 103 1238 6 311 8819 761 3 19 1 9 6 59 7 1 138 94 97 1166 10 54 24 71 138 5 39 182 1 4848 68 932 9 8 63 64 144 7 1 8685 18 33 89 1 1518 2060 307 5214 9892\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 891 2456 298 416 12 28 4 1 113 104 117 9859 8 96 1 59 302 10 12 37 1477 12 73 4 1 23 339 24 89 1 166 18 3 256 146 36 1 447 41 1 7727 7 334 4 1 10 39 511 24 71 1 4272 2535 4414 4346 1209 1282 776 3 1 3801 39 1253 5 1 108 1 212 389 18 6 38 1 37 1603 1049 64 891 2456 298 416 45 116 2 568 325 4 148 20 1 7400 147 1 5973 3 884 5250 1 232 59 1 6859 88 1405 7 5846 5897 5897\n0\t33 61 483 5026 81 15 58 5174 978 2809 15 6506 11 337 7293 1 2646 12 39 2 55 45 60 12 547 8 83 118 48 9 12 2621 5 1718 17 75 2220 12 8 49 33 1049 9 1652 19 8 202 50 1397 96 2 1354 36 11 54 131 52 538 703 51 22 1878 78 138 1040 3 3054 124 47 939 218 6517 6 31 313 3939 8 1517 381 1 145 273 51 22 508 11 24 50 438 29 1 4174 17 48 145 242 5 134 6 11 9 39 247 279 110 45 23 1236 10 19 2534 1530 17 1286 83 13 677 61 300 277 41 723 802 11 485 56 327 8 63 1810 126 19 28 1286 1 861 12 167 1865 14 530 1 2036 12 111 142 7 2 163 4 8224 8 96 43 4 1 363 61 314 5 328 3 734 5 146 11 39 57 2060 162 160 16 592 13 150 173 8269 2030 5285 6 167 1053 9726 1 4794 1773 4 105 91 25 121 114 162 16 437 1382 15 148 9463 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 139 64 9 18 16 1 1612 4586 4 2127 3 2055 725 5 2 1517 3 9651 2751 1 265 1080 1 5752 17 100 4373 838 959 2330 43 404 1 3634 15 1 2342 2 904 17 1064 4167 144 54 23 19 9 7 2 141 45 23 63 284 29 2206 7 25 5082 41 5014 28 4 25 313 9 5652 6 78 52 4739 5 131 1 1109 4 1 5609 3 6 314 6984 7 9 8184\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 37 1 84 4 622 2236 368 13 252 12 6232 903 13 4395 79 11 132 31 491 1234 4 319 63 26 1019 5 2230 48 6 1 80 775 1171 7943 21 8 24 117 575 10 6 13 1516 15 686 121 784 5 26 2287 8 63 59 2309 11 1204 5202 5876 12 2 7 31 1286 4 2384 4121 13 1501 11 44 278 7 12 58 60 56 173 13 130 26 3238 4 411 16 770 19 132 13 7704 1901 16 137 463 32 2 1058 41 81 4 31 1062 11 1443 6915 1 1162\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2343 2 573 91 1540 8 713 133 197 884 94 38 1099 269 8 2165 1 141 337 5 64 75 97 269 9 2662 1306 8513 1507 10 12 2 9530 509 108 8 83 96 261 63 70 7388 224 30 355 645 15 2 78 364 30 1 28 211 177 6 11 8 219 218 506 324 4 1 108 1 1009 2063 4431 68 1 2322 45 9 18 12 586 15 34 137 2506 8 560 39 75 1054 1 45 23 175 5 64 2 84 18 38 1 234 4 1 536 217 1 234 4 1 434 99 95 4 1 366 4 1 536 434\n1\t188 15 79 3 8 100 56 504 261 422 5 8451 6549 17 192 3414 49 8 354 10 3 1956 123 335 110 50 518 435 1595 1777 17 9 21 12 28 27 56 381 3 25 5424 7201 16 218 1272 3 7957 3351 9780 5 79 14 2 3049 172 1372 8 99 10 154 195 3 805 2926 1 8 198 560 45 10 76 20 26 169 1 166 17 8 192 100 945 7 110 51 6 78 5 3589 1 980 19 1 1591 6 323 1685 49 3 9723 5 9988 1 6169 976 98 1 212 3062 7 1 2276 6 491 15 37 78 160 19 23 24 5 359 960 657 10 6 2431 3 331 4 8930 7 3263 3 119 19 1 215 309 30 5226 4 1536 17 331 4 360 129 453 69 642 8419 14 2 1 1190 6 323 14 774 3775 14 31 1777 2451 88 5338 9 6 1492 772 14 7 1 2736 19 305 37 2055 4175 10 6 2 425 2341 41 95 326 3840 3390 391 4 2815 8 1479 13 104 63 26 53\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 1494 14 117 3 5858 61 72 56 117 11 170 9 18 63 128 1388 1 4418 4 2 163 4 2976 10 693 5 26 256 19 305 521 41 10 76 390 2 2073 8 56 381 1758 65 5 9 18 8 24 198 57 2 5549 19 195 8 192 105 161 17 5 9 18 6 89 16 34 23 118 8 209 32 1 362 2265 61 8 57 5 99 307 414 1 157 8 405 17 3952 104 8 63 87 11 34 125 316 8 497 7 386 8 192 1247 3 5364 11 9 18 20 26 433 7 85 17 5 1 2543 37 33 190 335 1 683 2624 6050 23 70 2793 38 3 922 3 75 5 70 295 15 691 11 181 37 580 155 98 17 83 467 195 37 9 18 6 2 4667\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 112 9 8 12 1094 50 522 142 15 34 4 1 716 3 1 882 32 6277 17 386 37 3416 618 123 2005 10 17 27 123 328 25 113 5 90 1 250 129 271 5 3695 5 1591 59 5 735 77 1 4028 3 498 77 2 282 49 30 1302 8459 32 98 19 42 1011 5555 28 94 2877 738 1 820 22 1 5284 711 3 975 4738 4 3 1 1494 1 34 4065 1245 16 257 618 10 6 6212 435 35 5136 65 101 1 16 1 1378 80 4 1 290 45 261 175 31 2673 207 722 9 6 1 461 42 3 138 15 1 873\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 56 338 9 324 4 14 3651 5 1 2939 8 214 1 324 169 1466 45 8 63 70 65 7 1 750 4 2 18 2 156 8 114 15 1 68 5 503 10 6 20 34 11 1051 4 611 9 88 26 664 5 1 233 11 8 12 59 3555 29 1 85 1 324 12 758 689 245 8 24 107 97 106 8 24 338 1 215 3 972 28 828 8 214 11 1 119 4 1 324 12 52 7779 3 57 676 721 306 5 1 215 197 1 1468 4 1 2939 7 50 1520 8 343 1 324 57 52 3008 3 247 37\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 332 336 9 10 40 71 28 4 50 7552 76 496 354 8 39 112 8723 33 934 15 148 157 6479 145 56 747 11 1 1902 1168 17 145 273 646 26 446 5 149 10 8449 16 137 4 23 35 24 20 107 194 786 64 110 8 336 1 647 1 119 3 75 188 590 47 7 1 182 16 1 1 59 177 8 54 24 1241 6 1 182 16 3 44 223 157 1629 8 173 947 5 64 10 316 3 496 354 110 40 71 30 3980 1 113 1902 8 24 117 575 995 297 422 449 23 34 36 10 14 530\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 39 586 1 119 12 39 1530 17 1 344 4 1 12 12 91 409 8 467 209 19 5930 3 98 33 55 713 5 90 1 18 4569 3 11 89 10 55 1797 8 54 36 1879 18 17 9 12 39 2 351 4 85 3 202 89 79 175 5 1110 1 274 11 10 310 778 8 24 38 764 1879 18 274 15 36 104 19 126 3 8 54 24 5 134 9 6 1 527 18 47 4 34 4 450 93 1 6 142 3 33 333 2 1429 3928 11 153 55 176 36 2 148 628 33 88 4 314 28 11 485 55 2 103 542 5 2 148 28 37 552 116 85 3 319 3 83 99 9 108\n0\t56 17 308 2177 5 1 10 34 621 8429 1069 1 178 106 1 2669 2629 1562 3 1141 126 61 377 5 149 10 1577 49 10 7 233 6 9 6 2 56 91 158 15 91 121 3 2 46 509 4404 6 56 797 618 10 6 20 1509 20 4869 1 593 6 46 565 690 123 2 46 91 329 737 15 1669 443 1093 2518 3 2202 1 21 29 2 509 7341 1 121 6 167 91 3653 16 6 1477 737 3 136 27 213 3021 5 3603 27 6 169 299 5 1775 3 40 2 56 797 919 3 57 2 163 4 618 55 27 173 552 9 27 57 58 1300 15 1 201 6729 6 464 737 3 136 444 547 7830 60 213 46 1321 3 57 58 1300 15 6 9055 17 123 20 24 78 5 87 17 2703 3 60 114 1976 29 1133 6 862 761 14 1 250 5104 3 247 5703 29 399 27 12 1941 14 61 1 82 2824 344 4 1 201 22 565 790 55 45 23 87 36 1920 5005 47 4 715\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 1 80 215 18 180 107 7 982 45 23 36 979 4023 11 22 4204 30 21 8240 98 9 6 39 1 260 5939 16 34 4 137 368 1702 1 3050 127 2569 2969 36 2828 1 9203 24 1866 52 17 9 6 56 25 113 916 10 6 6411 197 101 7807 3 1664 1 425 2053 4 1216 3 534 2466 42 105 91 27 636 5097 61 1 3938 4 1 3667 42 254 5 134 35 3475 122 295 32 1 541 27 737 17 42 4325 2807 11 27 337 77 25 2761 593 3438\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35 7 1 234 553 8419 3142 11 9 12 2 53 280 16 13 872 5346 123 2 7475 349 161 35 173 1473 2 1653 390 2 125 314 8299 1069 1580 129 1273 3 38 1194 1445 265 1926 3916 3757 2 1317 91\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 58 321 5 2252 48 508 24 428 7 82 746 69 204 271 1 115 13 6463 78 4 1 847 216 6 2724 1612 69 1 3500 22 1016 69 54 112 5 24 10 248 7 14 2 13 6463 1 67 3 3225 6 2 900 69 10 12 169 832 5 875 5758 29 13 614 23 22 2 1465 4 1 514 7338 362 4842 3 37 3194 69 24 29 110 9 6 2 21 16 4840 13 614 23 175 31 9682 548 18 69 176 69 9 6 2 3285 14 235 82 68 31 1703 13 143 24 30 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 9 21 29 1 2327 2315 21 6438 3 51 12 20 2 2570 1128 7 1 2168 10 6 1115 5 64 20 59 48 2 84 454 424 17 75 7113 1 344 4 1 968 6 105 3 29 132 2 170 13 499 93 89 79 96 75 3094 6919 1220 3 75 19 101 340 31 1617 5 3970 3 8270 7 2 1061 744 33 289 23 704 33 56 474 38 1 2543 3 62 902 29 2616 13 777 2 360 3 683 6315 306 116 17 42 84 5 64 75 3379 3 5487 2543 4 1163 63 1142\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1307 271 19 3 778 3 2 658 4 82 289 1501 11 1181 7 1 750 4 2 2101 717 7 756 2008 6 1011 4551 1115 6802 4 3 3313 30 7589 861 5 333 9 4930 49 6396 2 2 506 3168 84 453 3 5826 261 35 213 3863 19 490 22 1156 28 4 1 80 731 1688 5217 7 756 1218 10 190 24 86 4386 49 133 59 28 431 2 8007 17 1 305 3716 6 152 31 1115 111 5 99 476 449 33 359 10 65 794 145 273 33\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 118 162 4 1 37 63 20 878 19 42 7882 5 11 471 245 14 2 820 818 21 8 214 9 46 1466 1 1112 168 713 5 26 1114 3 2577 17 33 61 39 631 13 92 121 6 345 3 58 894 3360 4504 12 201 39 5 6381 1 17 27 123 20 90 2 53 105 167 8 192 13 985 22 6 1 9 21 123 176 53 15 1 5325 3 2473 5956 8 87 36 2 21 11 29 225 440 5 70 1 120 3263 306 17 9 21 39 181 5 2900 10 72 785 7618 4122 706 235 17 48 23 228 504 16 2 21 38 31 1980 5286 13 1601 7 399 8 87 20 354 9 21 16 2 231 694 1781 10 6 105 223 3 1 170 76 70 13 1701 8651 10 6 1233 45 23 83 474 38 1 551\n0\t0 0 0 0 0 167 464 2688 1 742 2501 6559 7 3 65 15 9162 206 2453 16 9 5096 2011 2501 266 2 8166 2057 5771 2648 125 44 19 31 1444 106 60 46 44 5 31 862 4937 49 4713 289 65 6458 5 26 2 3 161 2540 2501 3155 44 85 6 960 7 1 1809 5644 42 832 5 45 2501 3 4713 22 121 955 41 45 10 12 4748 5 90 62 120 37 45 207 1 1723 98 1 121 6 4713 25 2131 642 1 736 7394 375 984 136 2501 444 56 1319 37 6 14 1 4 115 13 7394 6 38 75 85 6 3 75 884 157 1047 385 5644 102 1446 2011 8195 17 42 37 30 11 57 2501 3 4713 20 10 47 16 1 410 285 62 650 5419 95 3895 1 21 40 54 24 71 301 115 13 123 24 1528 443 54 24 5 24 71 47 4 1229 5 8470 65 1 1212 4 1 607 201 1008 1 84 14 1207 3 492 14 44 1858 2792 27 3 25 3311 87 2 604 19\n0\t1 7014 3 670 1141 1539 30 8920 122 7 1 543 3 8394 30 1539 155 408 5 1282 98 5135 19 5950 13 1627 5 3350 9 18 65 676 23 130 504 1 5502 5 1 178 106 1539 5134 16 1 74 85 6 46 1881 3 23 202 2400 16 1539 5 1364 39 73 6 28 4 1 7060 633 951 7 203 502 98 23 3305 112 1 178 106 1282 40 2 1653 3 4632 10 29 2 1277 606 3 936 1 212 177 851 368 8286 3 145 605 1 18 16 48 10 424 42 39 37 8294 91 11 10 498 77 2 534 267 16 79 11 8 88 39 335 253 299 2562 145 20 273 45 9 6 48 1638 800 405 5 64 16 25 441 17 27 123 24 25 687 2691 7 1 135 37 50 8691 45 23 99 9 141 39 186 10 16 48 10 6 3 83 125 96 194 42 3670 1033 15 2390 1456 91 6172 2 810 67 3 227 4532 5 90 1 1184 1398 886 32 1 134 207 2 163 4 13\n0\t1 6048 22 1076 11 22 1609 3879 3 89 79 139 144 8 338 17 154 118 3 949 43 1865 1380 76 186 23 260 47 4 11 103 23 61 242 5 2321 1107 3 116 260 155 77 5018 9 21 39 153 414 65 5 86 13 872 174 177 11 426 4 2705 79 2 222 38 1 108 9 18 6 676 2 18 16 2802 23 1374 1598 6048 10 582 1729 17 9 104 494 57 2 163 4 893 3 1 882 196 2 103 37 8 721 2227 512 6 9 2 374 18 41 94 2 136 8 39 310 5 1 2582 11 676 9 12 2 374 18 15 1217 66 56 213 2 53 13 1627 16 137 4 23 35 83 230 11 732 2670 1817 4 133 102 6048 1076 239 82 3 45 23 83 24 2 5661 2771 5 9 18 1920 8 109 9667 1379 23 935 295 32 9 461 2 84 1392 17 9 18 27 1716 39 143 87 10 16 437 322 29 225 20 195 11 145 2 331 2260 13 9409 358 47 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2549 2011 123 25 113 5 4635 267 3 17 255 142 2 222 2862 6 105 14 25 2356 6 313 193 14 1 3 4689 3 5572 4321 22 2844 1 21 140 80 4 86 3234 10 7917 85 17 6 103 52 68 656\n1\t3092 14 223 14 58 1962 7830 45 23 3305 139 23 3305 3192 7 82 2800 4986 6 20 56 7 1 1170 69 17 27 407 54 69 3 835 1 465 4 448 4116 15 1660 1072 93 196 122 77 184 6536 14 530 27 4152 2 1671 4 5266 35 24 7074 5 946 25 4 611 7 2 1660 1072 141 1 5266 54 26 1050 3 33 54 24 2178 62 17 7 2360 864 831 3 1 5266 1110 49 244 20 2701 5 25 13 3027 611 4986 475 7 1 769 39 14 198 1322 120 36 9 191 198 5228 2607 225 7 73 33 22 301 3 14 4924 480 62 709 3 33 56 4735 48 6 113 7 1 2630 72 4429 3 555 5 1142 72 83 56 175 5 26 1660 1072 1018 40 5 839 1 2807 4 34 4 25 417 183 27 196 2 680 5 1620 1 7 257 221 56 175 2 234 106 5383 22 13 5384 11 234 59 5027 19 803 13 17 48 69 3 7 11 1193 72 149 7581 4986 29 25 709\n1\t3524 61 16 9 1195 5668 4082 6 1 585 4 2 1950 35 432 2 1277 5 757 34 5842 15 1 576 17 481 359 25 1330 1175 7 841 136 5359 488 28 1925 27 271 105 2013 6 1 5896 379 4 25 2 392 950 35 40 390 602 15 1 914 3 3911 755 2142 1018 57 411 71 1 4 4082 14 692 15 9 6 2 18 15 2 3045 567 1079 980 3 30 2 53 201 11 93 1680 7559 794 816 794 7218 4244 3 4262 794 3318 15 3045 1594 93 588 32 5414 5741 794 1 794 3098 3 626 6505 7916 794 246 459 71 5095 30 1 1967 5 25 1175 41 2684 4082 3 5741 16 2 342 4 719 1068 25 701 5 256 1 613 19 1 1240 9 540 6367 4 245 94 432 1 2796 2172 4433 66 85 4082 3 22 1 1277 271 30 411 7 1435 5 70 142 3 1 16 25 221 1 2689 6 2 1618 129 3 4082 7512 5 1 3953 15 2 5642 11 6 3705 30 1 1996 1762 3358\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 5 4043 9 324 3189 630 63 634 571 1 5804 35 12 50 9213 57 53 2576 14 2 1886 17 60 173 187 931 1384 5 44 456 3 72 56 63 100 4329 5 768 444 527 403 1 178 49 60 6 3185 1 3105 582 8 54 24 10 7 44 2333 5 4258 44 7685 2047 1078 25 82 84 104 244 169 2 7 9 461 3 83 70 79 544 19 42 128 53 5 64 45 317 19 1 2955 5 64 154 9604 3 9213 117 89 7 1 622 4 135 6487 3 324 6 128 1 1726 1417 30 3024 324 3 98 1 1955 6964 3\n1\t9438 2144 1 4846 11 2993 7797 3 1036 5 90 122 2 2185 7 2993 2816 1 2080 35 643 949 3 49 1 938 6 1095 27 2816 126 805 3 33 3183 110 207 75 33 531 3183 110 533 1 3428 1 2064 24 46 240 2392 3 26 48 81 225 13 1268 1344 2993 1937 11 25 398 701 5 3183 6 25 2113 4950 1539 27 876 44 155 5 157 3 1036 5 1173 1 3508 3 359 44 5010 7 44 2416 1 7548 1392 35 3686 32 1 6920 49 615 827 3 49 3795 451 5 352 15 1 27 153 1023 2 2 3166 72 785 122 637 3795 9 6 34 721 7 1085 32 3 5204 3 3 307 422 16 11 3683 7 524 261 4546 44 32 1 966 3 1808 303 1 429 7 982 3 3795 1023 5 216 1413 2993 3 3795 2323 5 112 239 1885 193 33 173 1388 239 82 117 3456 13 252 131 6 722 40 1442 647 1263 84 119 6971 3 76 373 70 116 5595 960 8 449 10 153 70 29 3492\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9607 1414 112 8806 21 32 20 2 5150 17 46 5400 46 3 4664 7151 2215 8484 7151 8225 783 5 26 25 3897 5 359 1 167 17 7944 51 22 679 4 129 171 3 783 3 2279 1 2379 7 1 4 1 6181 1965 29 1 2364 4 1 46 5669 3 1 46 386 3012 1 2253 6769 1 6504 2190 4 611 3809 38 66 601 4 1 5 3 1 2279 9183 6 6813 1 344 4 1 18 40 783 2123 7944 3 3696 25 111 155 5 44 3754 41 146 36 656 10 12 174 1592 15 1 410 7 3400 3 1 6833 1095 1221 49 47 4 1 1 443 7432 1 4404 1 333 4 1 46 3489 3 1 6016 3 1043 4 1 226 3696 1484 6 46 53 276 22 7 9 25 6039 6 20 37 4 835 160 19 200 122 14 27 6 7 8962 1 3 37 6 20 3182 17 63 24 132\n0\t5 1 84 3894 27 470 102 4 50 3931 4148 7 3 27 57 43 514 104 14 109 17 198 2666 146 4 796 1104 318 1705 8 241 1 210 177 23 63 117 134 38 2 267 6 11 10 6 1466 6 1 5501 4 1466 100 4 184 325 4 1011 5055 1382 3 8 12 39 5418 29 75 9418 9 18 705 51 22 300 358 7 1 212 177 69 45 23 63 946 838 11 2043 1 113 185 4 1 21 6 1 599 4722 4 1 462 788 30 2 45 1 21 57 71 428 14 109 14 1 5079 10 54 24 71 2817 6 2 360 651 3 8 853 33 34 175 5 87 267 1958 17 1 148 234 28 4542 201 1910 5756 6 44 692 125 1 401 7 44 280 14 1625 2312 1652 590 1 2662 4 1 21 6 783 315 3 1147 1 74 216 371 9301 43 17 94 11 62 1300 8893 664 5 1 345 1471 9 263 6 36 80 4 783 1921 1154 69 20 2 91 3394 17 58 449 16\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 22 288 16 2 1 155 7891 19 116 13 12 428 30 8281 1 42 2 1039 3290 2744 16 1 1250 4 1 18 270 334 7 1 1612 408 4 3598 4895 244 1 2285 4 2 1134 2404 3290 17 25 226 843 3117 24 69 13 4550 5033 3632 9125 35 6218 2 340 30 40 1172 122 2 973 4 1 309 27 40 4993 8218 649 25 1725 1 309 6 3088 69 2 7169 17 6 10 53 227 5 1288 9426 85 76 13 927 3 2143 1552 3 498 7 1 119 359 9 18 548 32 477 5 714 1 212 201 181 5 24 2 53 290 42 2696 4 174 299 492 4018 279 8646 13 1149\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75 88 843 47 4 5230 2546 187 9 18 2 75 88 52 68 350 1 2546 187 10 2 1450 41 35 6 9102 8 63 59 2309 10 6 4176 374 361 46 170 2802 1 233 6 11 9 6 2 91 18 7 154 699 1 67 6 1 121 6 254 5 55 96 4 14 1 120 22 3 1 494 6 1634 8 159 9 28 7052 3390 19 1 1045 7306 7 1 747 2592 11 10 6 117 8 1379 23 284 2 347 3438\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5988 37 1 5614 22 20 298 3550 17 9 67 6 370 19 697 6479 20 146 1256 371 5 90 2 342 4 1086 1041 55 14 80 104 11 22 370 19 5082 51 22 11 39 83 59 2 342 4 81 24 4246 11 9 18 12 370 19 148 3929 20 2 14 80 81 241 10 9 18 6 7 58 111 3017 105 82 68 205 104 22 38 13 1701 137 4 23 35 24 922 15 1 1145 4 1 3 7 1 141 51 22 2 342 4 188 23 321 5 1 697 9585 4 1 12 5431 7235 37 9 18 12 612 5230 172 94 1 697 6479 328 96 75 237 4199 2531 40 5386 7 11 290 10 653 7 2 3844 1751 5797 6 1 957 707 7 1 55 193 1 18 2307 1 569 146 2684 3 666 42 2 346 3203 16 1 148 67 841\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 327 5467 3752 583 171 2467 62 456 384 5 26 1 16 11 326 3 290 436 101 3 20 965 5 26 89 65 1987 1923 32 11 9 6 1434 340 1 124 1592 51 22 732 1637 4 1 1689 32 2 1055 11 4466 79 14 205 46 3 8 495 139 77 137 737 420 243 20 2600 10 16 23 17 369 23 99 10 16 725 3 64 45 23 1780 137 7035 14 362 19 14 10 12 86 806 5 64 32 9 386 1 5380 11 12 459 5641 16 11 151 10 279 133 45 317 2 5467 3123 16 508 86 2 797 111 5 564 764 269 136 317 1000 16 116 53 366 4914 4 6674 5 2624 65 19 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 70 37 64 1253 1131 4 17 20 610 918 1822 2688 887 12 924 2 147 178 106 8475 615 47 3904 6 2997 6 1056 1698 7 11 27 153 1682 11 51 22 588 47 4 1 1653 378 4 148 148 5387 54 24 25 2389 3 98 142 122 1732 1 3135 17 995 1876 5 90 299 4 324 11 89 52 5480 1821 1 3138 2492 4 1 1 2647 49 10 12 1868 11 178 89 11 427 169 9034 4 1 427 2397 810 1074 5 5 1825 66 12 2320 138 3 57 2 3811 2771 5 1188 178 7 1 3862 98 51 6 1 393 15 1 155 1 234 5 139 155 7 9190 5957 10 590 155 297 7 1 212 18 3 89 23 560 106 610 1 4701 4229 16 117 337 220 10 153 1126 3 1404 95\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 292 8 1023 11 42 2 53 17 20 84 141 16 97 4 1 1318 82 5406 24 5598 8 128 335 110 28 302 6 1 420 637 838 5 1 46 797 1635 30 1 1338 361 3 5985 361 7 2 178 7 1 127 559 61 102 4 1 113 5774 4 62 1344 3 33 2108 5 6069 1 438 4 2367 1791 30 372 31 4741 28 7 239 4 8438 1 56 114 309 11 322 1221 193 8 2172 1 697 265 16 11 178 12 2484 406 30 1 102 4 450 8 83 118 78 38 690 35 196 1 1365 16 1 265 68 11 27 181 5 24 1066 15 1 277 4396 19 52 68 28 17 1 1084 4 1 1338 14 12 2 148 327 9963\n1\t4315 19 50 1307 4 430 104 9446 1 59 879 19 3459 15 10 22 104 132 14 1 2207 4 1 3557 1125 6706 295 3 2874 295 13 150 63 56 1999 5 1 250 129 29 1 357 4 1 18 444 2 4832 282 15 2 1056 1164 1138 35 40 2 163 52 417 35 22 1161 68 11 22 5859 60 56 3354 23 77 44 500 8 93 407 173 2818 95 4 1 505 41 261 6341 7 1 803 13 92 5243 12 240 5 99 55 16 275 36 79 35 40 58 312 4 1 1 18 6 100 1466 1 1151 6 56 1257 3 143 90 79 28 177 11 56 89 10 193 12 1 1297 1007 22 1297 3 51 22 97 1297 7988 533 1 21 3858 2 46 240 3283 3122 14 109 14 297 1939 1 1297 81 22 93 2040 9 6 2 588 4 717 21 38 6734 1 3048 23 175 3 1076 16 592 13 53 1545 22 1496 50 430 18 870 1359 5 9 135 479 722 479 2763 3 33 90 23 230 4817\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2054 9 21 6 38 3 42 28 4 1 80 4226 2038 104 468 117 64 14 2 4163 42 1 3385 18 38 102 1995 3 102 374 19 31 1406 16 1434 10 190 26 2 103 5 1775 17 328 194 8 1070 50 532 143 96 10 12 573 8 12 46 15 1 18 3 1 4500 33 61 34 169 3629 13 499 6 2 7906 267 16 1 212 231 5 55 1 2802 3436 1450 172 3 65 76 335 9 4092 668 267 15 23 3 116 231 258 1 4974 1 847 5954 3 22 56 327 3 2005 2 4085 960 42 2 53 668 16 1 212 231 37 48 22 23 1000 9426 139 5 1 388 1320 3 760 3 1705\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 109 204 8 139 15 174 1493 1926 108 42 747 227 5 64 43 955 89 124 17 8 83 474 45 2 1493 1926 41 8392 1926 8924 1 135 131 43 991 7 116 916 1 120 22 56 565 1 121 213 7 1193 7 9 28 17 119 705 75 63 2 8114 2928 102 4 62 1658 1481 3 98 139 19 14 45 162 3136 48 79 12 75 1 846 55 3554 7 1 4307 1144 2 178 106 33 1399 38 75 327 1 9703 3404 1306 187 79 2 8479\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 305 12 2 6182 1 5070 16 1 74 156 269 12 464 15 478 47 4 3 672 20 55 49 1 5070 12 138 7 38 715 269 1 345 640 456 3 171 130 70 174 329 73 1 18 1255 6 20 106 95 4 126 130 5721 13 2120 9785 57 43 53 104 7 1 362 663 1 2045 879 22 2 1399 3 130 26 2 31 5314 5 122 3 1 1404 11 89 592 13 614 9785 12 1 28 11 2970 9 27 138 1110 5 246 174 1433 549 1 983 73 27 40 58 860 48 37 117 7 2938 13 252 21 6 2 528 5314 5 34 602 7 86 397 3 2 9382 5 34 35 2111 110 8 590 10 142 7 38 910 5907 13 150 76 26 2227 16 50 319 155 29 4646 1183 32 4857\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 9 4427 1083 4 2 3175 5916 738 5270 1282 3 3 508 1242 2 7741 781 62 16 893 923 32 1105 5 4264 1358 333 16 205 3 14 62 1688 3547 4 157 3 4480 6396 197 509 1 545 75 239 846 5135 5 149 62 385 15 1 3 239 15 3999 1769 11 123 20 7149 17 46 78 1 471 109 1242 120 32 3591 5 2083 98 2048 5 15 43 4 1 80 1386 3 178 5 26 5125\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6939 400 142 1 2282 7 2 53 744 17 39 400 2317 6 31 4060 4 2895 3 377 1211 48 9 5 6 2 3670 3 400 3627 135 51 6 46 103 3140 1281 664 5 1 233 11 1 1252 45 51 12 628 6 528 8 511 55 637 10 4965 52 36 39 9 18 6 732 5 3 23 24 71 51 6 332 58 302 5 351 85 19 490 3 45 23 1690 1 9014 76 36 5491\n0\t156 547 203 168 217 1 816 129 6 84 1875 244 19 412 2243 144 143 27 785 7175 2828 1 1945 224 15 31 136 7506 15 217 42 2 1152 49 27 196 643 1294 51 22 2 342 4 547 840 168 737 275 40 62 522 1356 236 2 275 196 275 7003 6 8103 827 8754 22 8103 142 217 275 6 3867 7 6869 51 6 93 2 1551 1234 4 331 8853 633 3536 20 11 10 1605 5915 13 3841 4 1 6 1530 42 3408 109 89 17 162 2235 293 41 9 12 383 7 2539 217 217 42 169 1164 5 64 31 706 1167 16 2 46 296 9890 3535 1 121 6 1227 167 345 552 16 35 1071 5 26 7 138 68 476 203 2285 40 31 2685 2691 29 1 182 217 1501 27 130 1382 5 523 243 68 7121 13 4 1 12 2 167 345 203 158 10 181 5 24 596 47 51 37 300 145 1156 146 17 42 20 2 21 8 24 78 1987 1251 32 28 41 102 547 529 236 20 78 204 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1862 27 12 84 7 3 57 2 53 7 17 204 7 34 449 6 534 601 40 115 13 858 15 80 4 50 250 839 15 9 28 12 19 3 48 31 839 10 9095 2014 3 1 6048 4062 62 1052 77 3569 3 9 739 42 631 33 61 39 477 15 19 62 1862 2382 3 204 1936 62 19 2 13 499 151 16 2 211 4458 51 22 877 4 1412 50 4148 69 16 3796 2597 4 126 22 6359 12 60 1727 44 5964 4099 5 3 50 430 69 4 3070 48 12 27 1 585 585 4 2 9240 13 5676 2105 424 14 988 1862 1275 10 7 1 141 1427 184 2253 17 737 10 152 40 43 1033 4939 23 70 2 4343 1236 9 324 4 13 7846 460 16 764 16 1 3934 324 13 7551 3 328 20 5 1978 49 988 7\n0\t5 694 140 2 2944 135 6832 1966 460 7 44 74 280 106 60 6 80 4 1 85 2 185 4 10 73 4 1 3161 2511 1 2132 3 402 1 18 6 331 4 6447 4996 3 55 52 5405 954 2 178 12 757 142 37 11 9 511 26 1274 68 1 74 9930 7 1 1199 6 2 1683 13 2044 401 10 1237 297 11 89 1 215 21 2 2737 1935 6 20 214 2882 7 1 135 1 121 204 6 56 565 6832 1966 40 43 17 737 60 196 483 638 460 7 1 210 280 4 25 727 3 181 5 100 90 52 68 102 5217 7 1 1852 3 5919 6 2 586 111 5 1811 31 1286 215 1125 11 1180 5 256 7 953 15 483 530 776 75 8 773 13 8869 5919 100 2397 36 2 53 141 488 2835 10 4819 43 124 130 100 70 47 4 3 11 6 1 507 23 70 94 133 476 944 10 6 78 4607 5 365 144 2093 3 638 4409 827 3 144 6832 1966 12 852 2 568 16\n1\t24 59 1 80 1061 4 9 135 14 10 153 291 5 26 1492 5 186 408 3 1775 8 1331 646 24 5 947 2 156 52 172 318 9297 4671 255 50 111 316 15 25 184 131 341 3578 2386 6 8 159 9 21 7 202 2829 94 101 602 7 2 243 8972 606 37 8 12 1056 29 1 387 66 12 436 2 46 53 1296 4 438 5 99 1 648 3 1 7 1 4284 1759 3 4671 7 25 3271 4893 5978 47 4 1 3135 36 2 2313 5472 13 6450 10 2 3703 19 157 14 72 118 1947 4 448 307 9894 632 5 26 39 656 8 243 96 11 1 1387 6 52 4225 7 1 3 7 1 1332 6225 48 23 83 348 199 6 48 72 191 17 6 237 52 68 1 1936 11 82 81 5357 199 326 7 3 326 689 243 28 2386 6 68 104 36 41 7 13 1259 561 4671 2 299 164 5 99 19 412 41 29 25 184 5734 722 9384 3 90 52 581 787 52 5082 359 1 2232\n0\t7 10 6 2 7179 4 1 3 54 24 71 4310 16 1 166 302 69 1034 11 5265 13 150 12 3003 1852 14 8 179 11 4444 190 24 71 2 264 17 60 12 275 1245 30 5427 6383 4 2 696 5 1 28 7 1 74 135 596 76 1279 1367 11 33 22 20 1 166 13 2609 283 2 701 7 2 3 93 283 1 7743 14 322 44 5464 3 2 7367 1465 35 3461 4831 1 259 19 1 772 1151 3783 3 522 5 1 1828 488 273 1509 42 1 166 4539 719 406 2 701 629 39 14 60 4 611 72 24 58 312 35 9 287 6 41 144 60 12 13 3204 1 18 5 2 4 1 67 15 43 1988 1131 11 72 114 20 64 7 1 1766 1 6 620 1031 1 1766 2836 43 4 1 53 168 61 9919 17 8460 4 10 6 939 144 9 3124 114 33 149 1 1131 7 1 48 12 1 115 13 100 118 488 480 1 9786 1083 4444 60 6 72 34 118 1 76 100 5317\n0\t1 344 4 1 18 6 311 8172 685 4173 162 422 5 216 15 1739 2 8092 129 35 6 332 27 181 52 36 2 16 257 5837 1841 1 545 5 149 48 27 6 403 722 49 42 56 39 13 150 24 198 381 2051 19 3 60 12 1016 7 226 5201 1060 53 60 105 40 2 4846 16 1073 17 15 1 263 14 14 10 424 60 6 311 340 1 185 4 1 3837 5657 60 255 577 14 3 51 6 58 1300 189 1 102 13 130 24 71 2 267 11 3375 17 10 153 55 24 1 5299 5 9955 1 915 729 11 42 253 299 2 156 1681 8476 3480 6 17 378 42 39 590 77 2 1411 1211 20 5 798 11 42 1511 32 810 5 3 55 315 267 29 1287 1 18 1082 19 670 154 3432 207 20 5 64 10 6 1135 3816 4 3886 17 42 4619 95 18 11 811 1 321 5 168 4 2 1238 5 70 42 1308 40 4955 17 3255 45 23 149 716 722 139 16 592 13 1149\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1915 294 4958 57 428 3 470 7181 4 94 101 3538 38 1 522 4382 15 2 1423 1 1122 54 229 26 146 36 218 813 42 2715 548 16 1 74 350 5086 17 98 10 77 2 426 4 4 1829 2467 3 81 403 188 5 239 508 15 6718 3 3150 6 862 761 3 5421 1585 6 202 14 91 7 1034 10 6 244 403 7 1044 4 1 13 4751 1 113 177 38 218 813 6 11 10 495 186 80 902 46 223 5 995 38 2420\n0\t6992 12 2 15 2 1360 669 12 9 6 2 525 5 932 3643 15 49 80 4 199 459 24 110 244 2 3479 16 2826 47 1 18 595 6847 112 16 1224 36 3 486 10 213 14 1535 14 463 4 137 5830 8858 1 389 21 6 19 10 1391 6 75 27 15 307 1939 25 101 2 6532 6 2 327 1388 17 924 279 1 21 153 9 8805 1435 77 25 186 265 47 4 41 486 3 58 21 1 6 52 38 2566 7 940 68 1948 88 26 2 846 41 21 4907 3 156 456 4 927 54 321 5 26 1067 13 252 6 59 988 957 158 3 25 74 11 213 2 1151 5088 987 449 9 21 213 31 6410 4 75 1953 25 6988 2620 51 22 5 25 1188 557 17 1 6 78 8130 68 463 4 450 7 25 2905 130 20 24 4786 5 4768 1042 9 2129 9 21 181 16 830 1033 4 8 511 26 37 945 15 10 45 57 2 1953 4228 86 345 1009 1400 278 190 138 4772 32 101\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 56 381 9 18 14 2 170 4163 29 11 717 8 179 11 1 810 2372 4931 61 211 3 11 1 18 12 73 4 42 38 944 375 172 1372 8 63 176 155 3 64 48 2 109 2776 18 9 1306 9 18 3296 50 671 14 2 346 583 5 1 3525 82 537 3691 15 3 148 234 11 232 4 5839 6 2496 2130 7 374 104 127 663 66 8 83 96 6 5 257 273 1 2372 4931 291 56 1230 944 17 33 2300 374 1107 58 1756 349 161 6 160 5 1006 5 64 2 18 38 3564 2383 17 33 76 1006 5 64 2 18 38 834 1640 9 233 3 472 3320 4 10 5 3964 127 537 31 731 2869 38 1 4370 13 858 2 170 1217 1 278 4 1712 3 1 82 3869 181 237 364 618 8 76 187 1365 5 1 171 372 205 537 3 1954 4671 35 34 114 2 885\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 6 28 91 3 2346 1414 1211 1 3718 4 1 3416 6 301 1294 9 6 1 232 4 623 15 732 1102 11 90 23 560 45 479 377 5 26 211 41 1265 245 1 697 538 4 1 21 6 9 6 956 16 21 7971 1281 73 86 28 4 1 7603 3359 4 1040 1913 1 250 129 4 6 31 2112 121 78 36 1 2984 1205 7 97 362 703 1 21 40 1 2742 1205 4 1 290 1 6 167 1853 17 1447 32 2 1267\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 616 4390 6 2722 11 1183 672 12 152 2484 30 2 910 349 161 292 12 1050 425 16 1 462 1538 206 4679 4321 12 20 29 34 3414 15 25 1299 1 1085 12 2722 30 19 2 6273 2736 718 3594 94 33 61 12 1390 7534 16 44 216 3 60 57 5 1023 5 359 44 14 114 1183 33 721 62 736 3 59 2722 9 233 14 185 4 1 249 131 4029 94 1042 4 1 135 16 1 1183 5343 32 121 3 6 2 7\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1309 37 254 285 9 18 50 543 1147 7100 12 892 3 1385 79 4 2 167 487 783 315 7 9 1174 380 25 687 2 1663 1 389 201 6 722 1 67 167 53 3 1 709 529 4544 8 337 77 9 18 20 852 78 37 436 11 6 144 8 12 37 619 5 209 47 4 1 739 1517 3414 3 8 54 354 9 18 5 261 35 4283 1073 63 3658 15 8289 285 1 2633 1472 65 15 1 1 113 185 5 9 21 5213 79 61 1 1546 2126 4 623 11 997 79 301 142 3998 3 57 79 1094 223 94 1 344 4 1 410 57 1 178 1295 1 2036 4 1 1075 139 64 10 3 24 2 53\n1\t186 19 28 4 127 1352 159 11 588 32 155 41 39 2 132 2 13 724 42 2 1197 11 4240 142 3822 4614 1509 9304 6 446 5 1236 43 4 11 46 514 41 243 6 446 5 4992 10 47 4 2 46 4 2 1 21 15 1190 1623 20 900 519 42 53 3 519 39 547 16 14 6 815 160 5 26 645 30 2 184 3 1 3 3 4044 359 188 3 3 37 1 1190 6 56 17 37 22 453 32 4741 3730 14 1 35 2755 196 997 65 2159 3 626 5743 7918 6768 6 27 14 1 2015 1557 7 114 8 626 35 7 39 681 269 4 412 85 151 132 31 1418 5 4008 1 4 1 572 115 13 858 1113 43 4 1 119 6 2 103 4250 41 39 232 4 1446 6 3837 1112 1438 3 3309 17 29 1 166 85 8 96 9304 159 146 5498 7 1 4948 146 5151 68 43 4 1 82 557 11 40 9 2379 47 45 42 20 1135 10 128 557 19 86 1953 1422 14 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 1641 170 1404 206 3732 4 349 161 7 1 2196 4 25 910 6339 3073 8182 3399 3 4417 6339 3427 35 2035 25 2 1966 7 1 1789 2144 2 8795 4 2 1081 9405 1 3611 29 1 477 4 1 8795 1263 1449 11 1521 6023 5 6 28 4 1 3 80 1244 203 124 8 24 107 9 21 40 2 230 4204 30 1 557 4 151 16 2 46 1119 3 6363 6 2 1551 1234 4 840 602 15 43 3950 3 1798 469 168 3 1 120 4 723 6023 22 1317 2 1152 11 1994 89 323 586 1015 4 8225 1155 94 25 1528 47 4 5579\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 850 106 5 905 7 6396 1 4 3767 2045 525 29 21 115 13 677 22 97 2329 4 21 596 47 1057 17 30 237 1 80 761 3 2513 6 561 8905 23 118 561 83 5917 115 13 1 1658 11 58 729 75 2212 4153 3 1065 2 21 424 27 666 8 83 118 144 307 1595 194 8 214 10 244 1 232 4 259 35 615 1 4 1238 8905 258 49 27 10 7 1 3590 4 2 2697 19 25 3843 3 38 1 429 38 1 5115 4 1145 1724 11 1008 2326 5 4536 244 93 1 259 9 324 4 1 164 12 89 1987 58 28 422 88 820 2420\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 693 5 26 575 1 572 4 48 6 160 19 7 1 234 11 180 107 220 9649 139 64 1027 3 45 317 2029 227 5 24 10 1089 7 116 2977 26 273 5 64 10 19 1 184 412 378 4 1771 1 523 6 3056 3 1 593 6 53 227 16 1 1154 5 209 3171 193 924 3090 1990 5749 6 3982 3 1 344 4 1 201 6 53 854 42 5487 11 294 5749 165 9 18 1716 488 8 6020 27 57 5 333 43 4 25 221 319 5 87 110 42 2 2271 515 89 197 1 7324 10 17 128 3650 6941 1970 55 1037 617 620 1 5299 5 134 48 9 21\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 180 198 381 283 3795 9791 7 135 292 1 121 190 20 26 5670 1 566 168 22 4083 8 93 381 283 3471 385 601 550 7 50 1520 1 9791 1338 24 730 5 26 514 3 9 12 286 174 514 8 449 23 186 1 85 5 793 9 1540\n1\t162 17 3 32 62 33 24 5 2 4 613 3 6057 928 5 359 126 32 62 216 19 1 4879 1358 3 2 1858 8590 13 7740 638 3 3044 22 885 7 1 185 4 1 1033 6 133 671 200 7 154 178 7 48 6 2 6243 709 1835 3 121 6 7572 3 127 102 90 34 1 267 1637 4 1 67 216 69 9266 2 6002 1795 15 206 35 12 459 587 16 25 4 3755 5258 7 25 4824 123 20 4832 295 32 1 4 1 471 4990 1 18 6 7 1103 4 1 4 1 234 4 613 3 3180 3728 11 127 102 413 3301 5 9 2694 6 1 233 11 1 148 3 1171 14 1813 16 1 158 3 55 1030 7 2757 2691 871 14 102 1658 6862 35 1 10 6 2 148 3362 5 1 4 593 11 27 999 5 1080 3922 9 2578 15 2437 6385 13 4196 40 369 9 694 19 1 4892 16 1099 172 69 1092 685 10 2 408 388 41 305 1042 7 1 10 6 2 1681 1719 32 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 3893 14 1 376 4 490 480 217 101 78 2223 460 68 4341 13 9 6 2 222 4 2 3601 19 1 6559 19 9355 135 266 1 282 35 811 1140 16 31 1928 101 4106 30 1 1383 3 270 7 1 2070 7 44 46 1494 2 222 4 1349 3 3536 2 1445 447 178 34 865 385 1 3293 13 92 21 6461 140 2 156 631 3 599 716 38 101 620 8 169 338 1 376 2748 716 49 57 71 556 125 3 27 165 2 56 797 469 5636 13 499 12 1002 631 11 12 160 5 26 556 125 3 1 21 57 169 2 904 2526 10 54 24 71 327 5 131 610 48 232 4 860 1 1928 2021 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 75 10 89 10 77 397 437 1 250 129 6 31 4112 131 142 35 213 1 225 222 695 8 173 820 1 129 29 513 244 2 1230 3404 15 162 5 1857 1 880 115 13 252 6 1 210 1254 5 4760 7 1 226 394 1166 58 4644 1 67 456 22 205 775 428 3 6209 1 716 22 14 91 14 1 879 19 4350 1316 157 4 3 8 88 20 4001 9 131 2425 42 464 3 130 26 55 1 833 788 6 565 1 2953 55 8350 13 777 14 193 9 131 6 428 30 2 342 4 1194 349 11 370 1 129 19 730 3 96 479 1053 691 49 479 56 39 6169 3 551 6250 14 109 14 13 139 295 237 3\n1\t6152 5 1 518 7021 16 8 63 320 8521 75 78 9 21 2983 5350 155 7 11 42 1009 1400 12 253 10 1 1003 4 17 220 1 2804 8917 32 2079 10 40 390 1 7 177 5 8269 1602 2770 1482 1 267 11 33 152 308 5125 1 2101 583 6 20 65 15 1 52 3946 2804 2770 1482 36 1678 3 6645 3815 6388 17 655 1 21 937 8 1454 149 11 10 1263 2770 29 25 3 1515 13 7 19 2 1189 238 2441 11 12 3 30 4 1 433 7 1 2101 583 2018 34 1 3021 870 167 1753 4161 15 2 7 25 6948 1518 941 37 706 8 88 4420 122 360 3 2 1257 635 15 7070 1 21 59 2080 23 5 70 602 7 1 1816 20 5 3 86 279 14 2 1189 2129 1661 1 1983 3761 276 944 3 1661 1 870 57 237 138 1482 7 1 6304 3 17 56 45 23 1023 15 1 1020 4 715 204 19 9 2819 98 23 190 39 26 605 9 870 2 103 105 5709 2556 7530\n0\t1 67 6 1381 14 72 917 5006 4931 5 90 25 3 93 3 25 526 4 242 5 4012 550 39 36 95 4 6146 2974 581 1 21 255 15 2 8323 278 32 849 14 109 14 97 4 25 6145 69 638 6765 294 5043 3 3552 5 442 2 8464 42 93 327 5 64 7502 2781 2926 2 2691 15 6146 69 5087 372 1 166 1538 17 128 6807 1 67 6 1314 167 3976 14 22 97 4 1 120 4525 66 5452 9 14 2 21 2474 457 1 488 292 10 100 4838 1 8904 4 1073 51 22 877 4 1474 716 11 291 5 272 7 1 260 3344 1 21 1200 19 42 2319 1042 664 5 1 389 234 94 469 395 21 12 612 364 68 535 2584 51 6 198 11 179 8248 7 1 155 4 116 438 49 956 10 11 9 12 6146 226 135 42 237 32 2 84 21 69 42 396 2690 105 3976 3 519 1 716 311 662 51 69 17 10 6 5519 837 69 45 59 16 174 401 1090 278 32 745\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 51 6 2 163 5 36 675 1 171 22 74 1090 3 1 263 1745 53 927 113 4392 1 4 2 9746 1904 1499 245 16 11 302 1 21 123 20 2412 3040 72 64 35 791 39 2178 4 25 1061 2040 4793 7 2 111 11 6 20 7 4317 5 1 1190 16 66 27 615 2085 14 322 1 21 741 595 7518 8617 48 25 711 3 1 344 4 9 542 231 191 24 3691 15 7 822 4 62 112 16 550 1 170 353 35 266 2823 6 1502 14 1227 6 1 344 4 1 1440 906 1 88 20 1088 33 405 31 7228 19 1 363 4 19 2 2529 231 41 48 1 6 19 1 1757 69 37 10 59 4912 29 5679 136 9 21 1745 2135 16 179 10 844 1 545 1841 78 52 68 10\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 713 5 26 105 97 188 34 29 1105 368 5262 684 1073 231 1353 1 1307 271 19 3 778 10 1200 8198 29 34 4 949 17 51 12 227 796 5 359 79 32 1573 10 142 318 1 3158 13 3422 8 1116 1 1343 516 2155 10 79 5 64 132 2 6457 5718 258 49 10 76 26 556 30 86 9023 5 4951 1 551 4 1 3052 4 2 686 243 68 311 1 345 2511 2132 3 397 4 9 933 803 13 677 6 2 7470 5 26 89 38 1 4 2251 17 299 29 10 7 9 111 1 306 4 48 6 5855 1523 79 2 222 4 277 66 7050 2 2438 1232 16\n0\t58 2806 7 562 3290 24 80 4 1 265 19 1 6326 3444 187 58 4912 5216 5 1 2228 37 33 63 875 55 1534 7 2 334 378 4 355 5 1 6199 13 137 478 36 7231 65 13 8 35 693 129 1273 41 13 145 1140 127 1154 291 36 33 76 483 1 2228 6739 13 439 4258 65 317 13 34 60 123 6 4 448 60 63 136 7484 2248 136 7484 41 2382 136 316 3 6362 123 20 1 233 11 34 60 6 1391 403 6 1 9693 265 6 483 3391 8 112 2575 5 110 1 7 562 265 271 32 5 1841 5 757 116 6594 6739 13 9 562 12 89 7 8 12 852 1 2946 5 2963 79 8 12 373 20 7 2 53 3293 13 9 562 6 2 58 129 1273 1378 15 2 1092 2147 415 7 1 466 11 271 140 509 16 43 509 11 228 26 8 339 348 1363 875 237 295 32 9 196 102 460 16 246 2 415 35 213 2 7 729 75 60 228 3 1 304 77 1948\n0\t516 2693 13 92 19 1 1481 6 37 2050 515 66 33 713 5 90 176 36 3 8198 20 5 1 466 101 38 715 105 184 16 1 345 2301 27 276 36 27 6 2 346 583 1727 25 2894 2958 2549 999 5 1473 38 9063 1080 4229 802 34 200 28 1737 7 1 8585 4 38 358 32 48 784 5 26 2 58 423 2191 88 90 137 2329 4 4067 7 11 386 1234 4 387 15 2 78 364 2 13 2609 458 33 1291 1 1481 3 582 5 352 31 3007 109 2147 3 2843 15 2 11 34 61 1774 5 87 34 1 387 3294 75 9 1140 1335 16 2 251 117 165 2 330 1022 6 660 437 1 397 6240 2607 225 16 48 8 191 24 7 1 4775 4 3188 883 13 69 8 96 2 589 897 88 24 256 19 2 138 9 12 37 573 55 11 464 1763 324 4 2549 4980 12 3606 13 150 496 1379 23 1899 9 3 139 760 41 751 1 4 1199 78 138 2878 4278 3 13 1701 4897\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8641 58 355 200 9 18 6 1634 180 107 1 161 1490 484 145 1100 15 1 120 3 42 1235 17 42 128 39 245 745 1744 128 3372 140 15 25 1103 4 5584 15 4 3 2838 140 2 42 2 278 8 334 19 3459 15 745 1103 4 1209 17 248 7 2 4 1 412 85 4 34 502 45 1 18 12 248 7 2 52 6104 36 30 111 4 1 6347 249 983 9 3084 71 146 4155 45 317 2 2677 41 745 6146 9 6 146 23 321 5 2198 17 42 2 1369 16 261\n1\t230 1 166 111 38 13 360 231 135 45 23 24 2 2245 1780 16 6616 9 6 8323 5 90 23 1717 58 729 116 3669 8 314 5 99 9 18 34 1 85 49 8 12 2 103 3474 3 8 149 11 944 29 717 8 112 10 14 78 14 8 114 3483 8 88 100 1088 19 2 430 129 977 3 8 128 83 96 8 8 112 34 277 4 1 1 494 181 46 148 3 36 2 17 1499 8 87 112 4343 3 75 29 1 182 27 666 11 27 40 2 231 29 8517 5174 657 17 28 191 320 11 9 6 928 5 26 2 231 158 3 10 11 280 5578 7902 40 39 1 425 6079 4 3 3725 6 1 425 2726 5 1 2535 13 92 1804 111 1 8780 17 4 448 80 4 1 529 22 5 26 57 285 31 5334 15 126 3 1 20 5 798 1 1115 1077 11 380 239 799 55 52 9080 3 31 9958 6947 8 187 9 5 26 1074 5 341 55 1274 138 4532 3 3311 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 479 781 9 19 43 42 109 2145 136 10 6 20 14 91 14 1 6918 33 131 19 1 1045 3201 19 17 128 2 1002 1114 2418 4 2145 1 121 6 1 119 3 523 22 1002 3 1 2216 6 1135 105 7533 154 938 4 1 18 811 36 1 185 4 1 18 106 479 188 65 183 1 1079 69 20 1 6123 4 1 141 1 896 1114 4 1 201 176 111 5 161 16 1 717 2552 479 1 212 177 6 2674 509 3 20 1822 4 101 5399 552 116 290 42 20 55 279 1 85 10 270 5 99 10 16 7844\n1\t1 18 5 1 166 1368 33 93 274 10 7 2888 7 1 166 7 1 166 2168 7 698 1 873 206 472 5 1015 1 166 18 14 10 12 7 1 1571 1 59 1820 12 1 1084 4 296 1488 11 152 590 77 2 5576 14 10 1253 1 1656 4 7 2 678 5 1 790 3535 20 59 61 33 101 2590 30 31 332 5287 3 7371 17 33 61 93 1544 7 2 301 2118 246 6111 77 4277 10 39 1253 5 1 790 2336 77 1 18 3 8 179 10 12 31 313 13 152 123 2 46 53 1614 60 276 7613 3 6 446 5 3642 44 1401 530 51 22 630 4 1 1831 6399 11 22 37 1205 5 296 203 484 41 28 7934 11 7149 32 1 790 4806 3 203 4 1 4280 5717 7 698 10 12 728 14 53 14 1 2412 66 8 93 1517 8 449 1 958 4 296 203 1026 52 4441 1 873 147 3938 4 203 544 15 1 1115 1246 4 72 22 475 355 104 11 152 63 26 14\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 8 544 5 99 9 18 19 8 1 6919 104 61 34 91 37 8 852 1264 17 9 18 12 56 452 8 338 10 2 3284 3 10 55 57 2 1298 29 1 714 64 9 18 73 10 289 11 89 16 249 104 11 22 53 6567\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 899 152 57 79 4700 47 4 50 4355 7 8333 4 48 1 171 61 160 5 1 121 12 1 1726 8317 130 24 1866 2 918 16 9 60 12 578 12 37 53 8 1595 122 27 12 1 1518 3 262 10 2856 51 662 97 104 11 24 79 14 9 461 1 201 12 84 288 2220 15 137 184 671 8317 288 36 2 1757 3 23 44 203 14 60 337 140 110 8317 89 23 230 36 23 61 51 3 507 1 166 4519 60 343 23 405 44 5 1977 849 286 23 93 563 10 12 1 540 177 5 1405 1 18 57 23 19 2 7892 2062 3 23 337 65 3 224 15 239 1361\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23 459 118 75 1370 5 99 9 18 705 17 8 560 144 28 4 1 210 104 117 130 1483 28 1 80 304 144 1 2588 130 26 20 59 1 1757 4 17 93 1 59 306 171 3 4113 7 110 37 75 19 990 23 41 1034 88 1959 137 81 5 70 7 1388 15 116 2588 3 2704 23 3214 16 66 23 187 1 355 31 3320 4 1 2588 3 6773 319 19 62 10 6 1370 16 137 35 112 10 6 1370 16 137 35 112 3648 13 150 175 50 319 155\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 12 46 9178 38 50 3666 85 5 99 9 135 8 143 335 1 74 28 29 399 3 1 226 1922 7647 1209 6669 21 8 338 12 813 94 5 694 140 10\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 1100 67 4 31 972 287 6 1317 1126 112 3 4193 1541 1317 109 7 9 1837 2445 4471 466 651 7522 14 1 9487 380 1 2049 278 4 44 895 34 4 535 7183 12 3 7 1 170 17 380 2 52 686 278 7 1 1 2579 882 3 1349 22 595 17 30 1 2254 951 3 690 9850 2373 1 1151 51 22 227 5390 189 1 3 1 170 5 90 28 560 45 1 166 206 1 1967 21 14 530 7522 106 22 13 32 773 57 1478 14 2 6130 19 1 249 891 3 2456 131 183 1 1203 794 109 14 3825 7 31 4 1 7828 2272 4 16 2 60 93 1478 14 2 1897 7 1 986 1280 7183 1 13 92 40 475 89 86 408 388 9935 14 185 4 1 1009 274 7183 1280 3156 7235 66 6 1492 32 3 43 7321 132 14 113\n0\t1 121 181 46 345 14 322 3 1523 79 4 1 161 315 3 482 1592 124 620 2171 19 6881 1596 3252 292 9 6 832 5 348 15 1 633 1538 14 1 67 181 5 59 6282 44 1323 2873 36 2 1974 10 1523 79 4 376 5035 35 936 165 2 3214 14 2 53 651 7 1 1585 16 246 2 19 44 543 34 1 290 115 13 21 1 12 2 237 138 135 17 83 26 6038 30 1 233 11 7 2 346 569 12 274 7 1 518 1031 1 1668 1 233 11 9 21 6 274 7 2 85 4 6 7826 5 1 119 2105 1 7045 4 1 569 291 5 26 162 52 68 2 13 150 560 704 6 311 242 5 2062 19 1 6152 4 1596 124 7 1 1585 3 1376 5 2 2118 410 35 173 348 1 1820 189 2 21 11 6 41 3 28 11 6 311 3240 3 13 614 95 21 2589 1 3530 4 9 6 110 8 64 58 302 204 5 582 38 1 1296 4 1 1596 21 5607\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 1 13 150 24 58 312 48 8 39 5399 277 413 6613 3 38 297 3 29 307 7 62 9 6 377 5 26 2 1794 17 48 10 424 6 2 900 351 4 158 197 2 625 1362 13 150 24 284 746 1 453 14 3 145 1893 8 481 1013 127 413 61 377 5 209 142 14 1 7060 80 4563 35 117 13 1601 7 9 12 20 2 108 10 6511 533 3 2019 307 17 1 1754 180 219 9 277 984 3 481 16 1 157 4 79 64 48 261 1148 7 9 3095 51 6 162 3537 737 3198 42 6960 13 499 5933 2 13 92\n0\t7 1 148 441 9 18 57 58 9193 5 110 2525 114 1 1084 19 9 177 12 111 1294 33 88 24 29 225 713 5 70 81 35 485 36 1 215 201 17 1453 33 39 2490 2 658 4 20 55 56 53 288 1488 8 192 712 9 3277 292 8 5130 118 2957 33 16 273 8786 87 95 7 9 682 13 1601 9 18 6 2 658 4 28 7934 11 5130 55 1484 1 2485 11 1 215 5600 109 43 4 126 114 17 11 12 39 73 33 61 32 185 3441 174 91 272 12 7 185 28 23 88 365 1 321 16 126 5 634 47 16 838 73 51 12 58 4570 32 1007 9 28 57 126 7 10 3 33 61 775 14 45 5 131 144 1 374 22 36 476 10 8786 216 1815 1 113 177 193 38 1 215 12 11 1 201 57 1300 33 472 23 77 9 1162 1 19 412 1560 11 12 51 89 1 21 48 10 1306 9 177 56 7045 1 839 4 1 74 28 875 111 32 476\n0\t59 203 1656 4 9 389 18 6 42 1859 13 150 96 1 5264 1623 51 12 28 29 191 24 71 2599 49 7122 9 177 65 69 51 22 168 11 1478 5 26 47 4 639 2266 11 88 24 39 71 1 345 8613 1 206 217 7745 69 51 61 43 46 678 802 3 11 8 96 61 928 5 26 5 3595 41 17 39 1168 65 288 810 514 7 2 8240 17 9 12 242 5 26 146 13 92 212 177 436 190 24 71 211 1240 11 111 11 817 1755 24 1505 69 75 114 9 70 45 8 57 71 7 1 1646 16 43 831 16 79 8 57 9867 19 1 15 1 3647 224 7884 15 1 2783 4748 4 512 810 69 9 6 2 46 345 158 3 145 1893 8 173 354 10 5 1046 20 55 16 13 3402 83 351 116 85 41 319 19 9 69 463 7605 2 148 158 41 149 725 2 973 4 463 744 468 24 2 237 52 837 3 4140 366 68 23 88 117 449 5 3882 15 9\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5615 8 219 1 1625 16 9 28 3 193 9 28 6 20 16 8 219 50 766 3 257 6510 2121 285 1 8207 3 563 9 12 2 8 1266 2 658 4 2646 11 941 69 174 13 9883 8 544 133 194 10 143 176 34 11 565 37 8 3091 19 2034 8 219 10 260 5 1 714 48 31 1477 108 45 3128 9 6 2 127 624 24 10 6 56 2 6945 141 3 2 222 4 2 112 471 56 844 23 15 2 327 13 1 67 4 2 282 253 10 184 7 1 2977 94 160 140 1 692 51 24 71 2 342 4 10 6 202 2 147 2868 17 10 93 151 23 96 4 116 727 3 48 23 24 322 79 2799 8 96 10 6 73 1 212 770 7 2 1940 3349 6 46 20 39 16 503 17 16 97 81 8 2510 83 1961 1 4669 16 9 28 69 10 6 4229 29 2472 1 413 1107\n0\t302 8 55 159 10 12 73 51 61 2 658 4 624 160 67 16 2 264 14 8 1647 133 8 1887 3393 9 21 12 1634 195 51 22 102 2514 4 2007 236 2338 2606 1856 2007 106 23 3 116 417 694 155 3 539 3 1399 38 75 464 10 424 3 98 51 6 2 18 36 476 1 1398 7 1 3341 1200 5 932 55 2 796 7 437 14 8 219 1 74 222 4 10 20 59 12 8 1120 17 8 343 14 193 8 57 7 43 111 71 30 1 4 367 108 2014 7504 6 531 3435 8 112 1 2009 4 25 1093 17 146 7 9 18 143 28 4 1 188 11 1 1241 12 11 33 7074 5 333 95 4 1 3500 4 1 215 347 6384 19 95 129 17 1 41 1375 33 93 7074 5 1708 95 4 1 215 341 8 812 5 333 9 4930 17 10 4 1 1766 1 347 12 36 31 2488 7009 3709 3 3 1 18 12 38 14 2518 3 254 5 14 13 5827 9 36 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 159 9 18 19 267 1284 2 156 1287 9 18 12 167 452 42 31 240 1406 15 1 157 4 6422 7858 35 6 8678 5 2459 1 800 4 37 11 1 2125 63 70 31 1536 3381 51 5 3922 869 7 1 750 43 53 3758 642 8 93 39 336 1 393 6317 10 419 79 84 1105 9003 764 47 4 764 12 50 1020 16 9 2803\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 417 3 8 1150 11 18 226 366 3 72 57 28 4 1 700 1308 7 1 18 6 20 377 5 26 211 29 399 17 10 6 39 37 903 3 10 1419 95 2694 3198 1239 669 995 48 25 129 6 404 3 8 83 56 1123 25 1998 9667 5 139 140 34 1 20 59 6 11 1526 17 10 196 49 25 5058 3117 7 25 1565 1 66 1 1500 9 6 908 695 1 4730 1646 11 72 22 377 5 839 6 301 30 1 5407 288 5149 1 2526 36 34 2684 6 46 46 46 5174 258 49 1 91 6413 2755 289 65 19 1441 9 18 6 2 53 2499 45 23 321 146 5 90 299 2787 373 64 110\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 192 1893 10 12 2 18 11 23 24 5 152 99 5 70 235 47 4 5351 6 20 2 3670 18 36 4880 185 23 118 1 28 106 6 56 10 6 20 2 18 11 6 167 78 1 166 29 1 182 14 10 6 2 1 4362 23 63 549 5111 771 19 1 1969 87 48 117 3 335 10 7 95 24 1887 7 1 576 11 80 81 11 87 20 36 9 574 4 18 22 1 574 11 76 87 80 235 17 99 2 18 3 98 10 73 33 83 70 10 41 365 10 41 48 13 2687 369 116 186 2\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8375 1244 3 3604 18 32 28 4 710 306 1 446 1 119 6 31 2544 4814 4 1 3 270 334 7 2 3047 4236 1 158 2325 14 109 14 6 383 15 10 1026 1531 1 35 270 19 411 5 1 7 97 3178 42 2 46 1577 141 20 1 225 16 1 1302 3 4 86 878 19 2 2654 661 2558 1 1190 3 120 22 34 1169 6256 3 303 162 5 680 7 86 3348 19 174 3994 9 2831 18 39 57 2 1194 172 19 2773 8937 35 12 5257 16 1 141 2 6084 21 7 97 1 225 4 66 20 101 13 777 2 5347 95 616 2150 130 64 194 7 86 215 710 324 15\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3121 4515 4 12 28 4 1 74 865 7025 703 5 3013 2 817 4150 1 74 7025 865 5996 4350 12 66 12 2 2417 589 11 314 1 1666 16 42 1666 13 5851 4515 4 276 14 45 10 88 24 71 383 172 406 14 1 861 1123 20 59 1 1666 17 93 1 333 4 10 191 24 71 491 16 31 1607 29 1 85 5 64 2 1666 865 94 283 676 59 315 3 482 124 16 62 212 500 906 1 21 123 20 820 65 5 1 5785 11 101 1113 1 21 6 279 283 39 14 2 1117\n1\t239 82 69 197 1311 110 62 494 69 37 2970 14 5 291 1169 1574 69 1080 6847 62 5034 217 2446 7239 14 33 3143 16 1898 6 28 4 1 382 112 584 4 1 8033 13 1403 2395 40 2 52 686 280 68 3708 11 4 2 164 603 5415 7 25 103 234 6 49 27 615 411 5 26 2 31 4368 178 27 2378 58 1900 5 1291 2395 1745 1 21 15 86 80 156 529 69 774 1 182 69 49 27 11 25 31 9315 4283 2 1201 1075 13 1583 174 4708 2553 5 25 4 412 9 85 11 4 2 35 1517 1071 1 8494 963 47 5 550 4620 4214 40 25 2049 21 280 14 2 231 164 35 56 63 20 4535 5 390 602 7 2700 286 1373 2 493 5 13 1 346 280 4 2 962 3935 6 892 14 1 4086 487 35 270 3320 4 5 411 1732 1 13 659 2568 2842 1539 266 2 1557 3 784 14 2 18 76 3082 1282 217 7944 69 205 69 7 62 625 178 14 773 5305 217\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 192 747 11 2 1165 4 622 11 6 37 1447 3 37 1086 7 1097 16 21 63 26 89 77 2 2592 409 8392 12 1092 620 7 1 21 600 229 1 80 842 4 1 3856 1403 578 12 100 5598 5575 1186 600 600 3 1909 1037 3632 600 35 54 16 25 2035 975 154 85 27 337 77 1112 12 301 6735 7 1 1471 378 72 61 929 5 99 120 11 100 1619 77 261 72 4268 1395 75 5882 1 1759 61 360 245 14 12 1 1972 1363 7 8 449 9582 1072 76 90 174 21 32 1 1165 3 328 805 41 43 82 21 5518 76 176 77 1 3439 6415 4 1097 5 787 2 412 309 19 409\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 313 3 2186 8061 270 84 5 2531 3 9712 25 523 3 10 4240 1294 27 6 20 1893 5 348 1 4845 55 193 10 228 2725 746 3 708 32 43 35 36 584 5 26 2843 3 1316 3 13 6406 805 876 7 1490 193 20 7 14 298 2 2 280 14 27 262 7 8 214 9 18 14 109 1171 3 109 1463 14 3 8 7301 16 25 4608 4480 109 248 3 50 3341 6 142 5 1 4342 1 1041 1 397 8901 2 84 2814\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 202 404 4799 3 50 319 155 16 1 4403 39 73 2109 71 9 108 8 63 39 64 1 18 1157 200 72 321 5 209 65 15 146 207 39 36 408 5239 59 4547 734 2 658 4 2559 16 1 3474 4158 1041 3 850 2056 4547 90 10 2 163 364 13 300 20 1 226 1871 17 207 676 48 819 165 675 20 55 279 283 45 275 422 110 3 14 2 18 16 995 110 8 511 369 50 374 64 490 20 3237 73 4 3758 17 73 8 511 175 126 5 867 2386 61 23 517 781 199 11 1054 391 4\n1\t0 0 0 0 0 8 88 20 1023 364 15 1 1020 11 12 340 5 9 141 3 8 241 9 6 2 4 75 386 5688 80 4 22 34 125 1 1162 22 23 6852 11 616 314 5 26 2 232 4 632 183 43 713 5 90 10 59 9 18 6 20 3560 29 225 20 11 806 1033 23 70 19 104 36 6257 41 10 40 2434 10 6 4638 10 6 207 144 80 4 23 24 1595 10 37 73 10 123 20 328 5 26 5 1038 42 39 2 441 2 46 1021 28 8 4043 17 94 399 59 2 1021 471 10 6 20 2 84 441 20 55 2 84 616 1093 17 8 241 10 6 279 2 1020 59 16 1 4344 4 205 2285 3 206 5 383 2 67 11 6 20 89 5 786 1 2996 1826 4194 4 5554 3 253 1 184 3065 55 9 18 424 16 503 18 89 7 1 3119 3 307 602 7 1 253 4 10 1071 8184 26 10 16 1 41 26 10 16 1 979 356 4 2466\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 130 20 26 219 14 10 12 928 5 26 2 8804 74 405 5 90 9 2 1015 4 382 2855 18 17 94 246 922 15 1 215 1350 636 5 139 1929 15 1 1480 8 497 597 34 1 53 546 4 1 18 1252 4501 1224 1073 238 47 3 1743 1 18 39 73 27 459 780 5 4158 1 8901 351 4 2128 351 4 290 94 253 104 36 3 1404 27 1789 2 19 48 61 23 517 1 67 424 193 254 5 9675 6 202 36 1 161 9269 372 3 147 635 19 1 4646 372 9269 205 6897 286 417 352 2 1277 1708 2 91 259 2808 406 7 1 141 195 5343 1277 5820 126 14 923 2792 3 32 1 1191 4 2 46 80 405 262 30 5968 7 524 23 617 71 133 2855 484 1 53 559 1364 7 1 714 51 8 39 2052 23 535 3666 719 4 116\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 88 261 786 582 294 4654 32 3 5482 9695 25 75 402 63 23 10 181 9 164 40 433 95 1537 13 252 431 276 36 10 40 71 248 30 2 21 9962 10 213 55 279 477 5 771 38 48 12 573 73 10 12 39 2 470 30 1956 15 58 860 14 2 1951 41 197 95 13 926 561 786 1279 15 2 344 4 3 582 47 1652 36 9 7 2 91 4270 32 1291 32 7397 5 4237 4 13 2599 3438\n1\t5 1364 1 113 572 918 125 1 3002 66 928 10 1620 47 104 132 14 1427 334 7 1 1427 654 218 2602 218 1668 4 2 11 2463 2 148 4 448 17 29 1 166 85 93 2 222 105 78 1365 16 9 2437 3 548 682 13 1833 23 99 9 18 23 1416 76 26 2983 30 10 399 66 6 93 1359 5 1 18 86 304 1666 176 3 1 97 327 120 740 9 108 1 668 2139 22 93 34 2068 2427 66 6 58 184 1197 49 23 24 81 132 14 3 2013 1760 29 916 115 13 724 1581 339 57 297 11 165 553 7 9 18 71 248 7 31 594 364 41 8 1266 72 459 118 106 1 18 6 7300 5 17 286 10 999 5 3304 10 47 34 16 14 223 14 2623 20 11 10 151 1 18 2739 7 95 3558 10 39 151 10 2 222 1 18 88 57 93 373 71 248 15 2 156 364 668 2139 7 592 13 1268 4 1 138 3197 11 6 20 197 86 2387 8315 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1891 72 61 8680 51 12 174 594 3 910 269 303 5 13 1608 144 247 51 31 5264 5 348 1 3392 5 791 11 3392 40 2941 248 14 2 2179 9 54 24 71 6545 17 1 551 4 494 418 5 94 2290 1452 1 551 4 78 265 1 1138 7664 3 258 2 70 161 56 7857 17 1 210 3285 6 7 471 51 6 3666 103 660 2 13 2609 31 594 72 159 4 1 166 178 125 3 125 702 8 670 29 1 2238 6838 70 194 72 70 42 491 11 94 11 303 1 8531 72 88 1564 2293 99 1 3229 131 3 546 4 1 70 1578 16 118 11 1 410 12 128 3363 7 1 13 777 20 227 5 116 23 24 5 187 1 410 227 5 1555 116\n0\t1658 200 1 669 2221 7 1 13 6 28 4 1 46 113 6364 557 117 1001 10 12 4478 30 2 4536 2 212 172 94 1 697 2251 256 392 200 3 1 697 302 4 1 392 20 101 1212 17 1 6585 3887 4 11 367 28 190 195 365 11 6 20 5918 1 697 795 794 42 20 2186 17 9 12 100 1 1734 4 9 916 115 13 9 568 28 63 149 411 1437 16 1 46 4 1549 9788 3 37 778 1 113 185 3 1 80 5060 14 109 61 127 2492 189 1 6027 183 1 630 4 127 193 61 2722 7 13 12 56 772 5 50 3253 3 5 82 3427 81 706 3 1091 9406 4 79 14 530 10 6 2 1152 5 1017 3367 4 3188 7 132 2 91 30 1 111 425 4199 12 2 91 3 439 2965 3463 114 1 212 3 286 10 6 113 916 115 13 150 8015 667 11 1397 138 99 146 422 3438 8 54 187 358 47 4 1731 10 6 2 56 4056 1493 682 13 115 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 397 427 1894 4 8835 716 11 7803 12 100 1 1063 674 3388 11 1 9586 4 283 1804 771 54 26 227 5 359 1 18 6034 42 1265 1602 2770 8068 47 286 316 14 2 1207 35 25 1837 2113 4846 16 2308 1 3 4 7588 3311 3 1 672 201 6 1502 2975 294 5429 776 1579 17 1 263 6 37 3 2346 11 1 212 177 224 1 4388 167 6727\n0\t1 462 120 88 24 2052 9 16 51 54 128 26 1 729 4 1 301 5419 3 494 11 7917 154 938 4 1 108 154 178 40 29 225 28 2304 41 16 1632 7 28 1146 2359 440 5 4522 38 20 101 446 5 24 41 73 4 25 7119 17 378 4 2239 9 312 27 47 1 2212 1169 9530 2519 3093 118 4875 145 100 160 5 24 95 41 2054 73 317 37 13 2663 52 7755 6 1 528 551 4 397 7542 657 8 118 9 3195 1 534 17 55 2399 21 1350 130 118 43 38 293 363 3 5826 16 1632 1721 4 808 9959 87 20 6880 16 1087 7721 81 87 20 577 2 974 189 3 6781 87 20 735 890 49 115 13 4098 20 351 116 319 19 1147 217 8 83 474 45 317 41 8 83 474 45 317 9949 41 8 83 474 45 317 6654 8 83 474 48 1526 302 23 190 24 5 26 6159 5 751 9 875 2408 237 1695 9 1324 59 1362 538 6 86 1514 5 26 314 14 2\n0\t9 38 3 1018 276 1053 14 6 2 35 6500 15 44 954 46 3582 492 35 475 32 25 238 950 1 1916 615 47 38 1 33 70 77 2 33 175 5 186 10 5 1 131 6704 2401 58 3 98 72 24 2 4814 67 15 31 7465 9229 33 186 10 5 1 880 1 120 1652 40 1550 71 9 8 12 1437 144 1 898 6454 40 3367 4 3760 286 630 4 126 5391 47 25 108 322 195 42 400 704 23 112 122 41 812 849 23 76 812 9 1540 75 63 8 42 2 900 1378 4 2 1729 572 1623 207 48 23 637 5908 42 37 955 15 168 11 39 83 3 94 2 1165 4 85 1 119 2061 8893 3 42 311 34 125 1 39 830 2 961 1902 1814 7399 77 2 709 15 5691 4267 115 13 1226 59 1061 1367 6 2 1053 1361 207 14 14 10 83 70 79 1989 1 167 17 45 23 176 29 1 790 21 4485 10 5 1 1097 19 6565 5156 181 483 13 1226 535 5934 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 2 2763 471 9 18 1 5415 4 1 231 3 1 5415 4 1007 7 1 486 4 62 2778 75 1219 6 3559 7 127 268 4 40 102 883 48 2233 23 2222 7 1 10 6 806 5 64 144 9 833 6 20 16 3622 15 1 2894 871 101 6530 8 12 1247 9 54 26 174 8603 75 1832 5 24 10 714 154 129 12 731 3 114 2 3088 329 2844 62 1174 8 54 24 336 5 64 239 129 2210 125 1 982 8 336 9 141 10 6 28 8 76 99 154 85 42 778 53 441 53 505 3 8 449 9 213 2 17 58 447 41 91 7337 1661 10 2610 50 2935 70 1 48 8 149 747 6 11 9 601 4 231 157 6 1550 2769 1163 7 257 3560 26 10 756 45 116 23 139 1753 187 199\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 8819 572 66 6 31 182 5 745 3163 10 6 2 2502 9 18 12 117 1001\n0\t0 0 0 0 0 0 0 144 132 2 5103 2327 37 2518 3 104 183 11 713 5 2559 7 19 1 3200 8634 80 4369 6573 1 29 225 12 548 5 99 73 4 1 5 194 3 34 1 2188 1131 101 16 43 2650 11 384 749 5 437 17 9 18 39 1075 7 1 3 1 2421 4 34 1 2802 2327 486 7 25 4334 6 2 2710 654 2327 196 352 32 1 75 1610 6 322 220 10 12 89 7 4445 98 43 4 23 228 365 1 111 4 75 1 21 12 1001 8 57 5 920 43 4 1 363 61 39 5532 16 1 290 10 12 2 4 1024 480 34 1 6536 15 1 141 10 128 811 36 2 1075 108 53 4670 3 1075 128 266 2 185 4 257 4418 4 154 53 282 41 487 7 1 1561 41 815 1359 5 2327 6573 1 814 8 96 23 130 187 10 2 9011 55 45 10 6 28 4 1 210 3200 104 4 34 8801 193 10 130 256 2 2618 19 116 543 95 1393\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 12 198 2 184 325 4 9 141 74 4 34 24 23 107 1 1249 1 121 6 1016 3 352 90 9 18 899 385 46 530 12 340 84 746 16 44 1538 3 33 61 109 1 477 4 9 18 418 7 1 576 49 603 1892 255 5 2 49 44 766 2180 6204 196 2 330 383 29 157 49 27 6022 5 26 155 5 990 14 1 2822 5356 2822 271 19 5 414 25 147 157 6852 25 576 157 136 440 5 70 19 15 17 3125 3048 172 406 49 27 762 752 9658 6427 3 6 1283 15 2 6415 4 2122 3332 6 106 1 299 3 2685 1650 1 265 6 84 3 1 168 22 683 343 3 46 5906 23 4108 26 945 45 23 187 10 2 4343 3878 22 468 36 110 46 211 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 8471 273 86 2 28 4 1 80 3489 581 17 49 10 255 5 8387 55 1 76 9 461 2368 1 124 263 6 14 2399 14 2 358 349 161 8048 263 6 4731 197 2 53 263 55 1 700 206 4 3931 481 87 2357 6 1160 30 1 80 1134 397 7968 3 460 3825 7 110 17 162 19 990 63 552 23 45 23 263 6 4085 115 13 9260 6 2 2661 2099 17 75 88 27 1976 2 280 36 2782 5685 7264 6 84 1651 7 233 244 1 4707 2084 6586 40 100 485 37 60 276 1528 3 844 1259 34 820 960 6689 153 70 25 664 7 675 3 22 13 6 2 509 135 1 124 3285 29 1 1009 6139 130 23 359 1695\n1\t1688 6 396 314 7 104 3 249 49 2239 795 7 2994 8 143 369 95 50 3805 4 1 135 1432 23 64 1 6839 3471 759 29 1 11 89 79 33 55 787 11 155 8 83 96 688 4973 8 179 10 12 2 84 21 3 1 2137 13 92 148 16 503 7 698 12 1 353 35 262 1638 8 39 38 1310 7 112 15 550 25 3791 2328 3 1874 672 384 5 26 27 485 227 36 2 170 294 16 79 5 87 2 959 1 182 4 1 21 49 23 64 1 6839 4231 19 1984 4377 16 1 74 290 8 152 214 512 9783 704 41 20 10 12 697 5752 318 8 159 1 82 171 7 1 5636 13 614 317 288 16 2 434 2186 622 4 1 157 3 23 173 70 95 138 218 14 10 12 30 1 2449 245 45 317 288 16 2 299 4 62 663 914 65 5 62 6206 7 1443 3 23 597 116 3014 29 1 7147 23 173 139 540 15 1 4 1 191 16 95 7537 41 7703\n1\t0 0 0 0 0 0 0 0 1 226 21 7 6578 6 2 2426 10 6 396 1050 1 1906 4 1 215 17 8 96 10 6 2 4744 845 431 341 39 2 4744 2255 767 6377 3 7 698 8 96 10 6 1 957 113 21 7 1 14 237 14 145 8181 10 6 128 2 548 135 10 6 20 2 18 15 2 2353 2281 3 1 644 15 59 28 4825 7 86 652 5 51 6 31 1276 4 3638 5 1 212 1689 66 151 1 21 2 103 105 17 2537 896 10 6 2 163 4 1434 147 120 22 1694 3 161 879 543 5255 2231 3 1851 794 84 709 9531 3 6132 22 2 360 684 3 2917 6 128 2 84 129 5 3658 1566 805 10 6 341 2558 2631 48 380 1 6578 86 2407 6 128 46 78 3 1 644 1626 4 7963 3 6709 145 1096 4195 963 4409 1 312 4 253 431 3 73 9 21 6 2 84 5 2 1896 1447 3 5498 20 2 425 141 17 299 7 1 113 3358\n0\t2431 32 5 41 5 292 10 6 1258 5 610 1 799 11 1 8657 1592 29 1 7 3522 5768 7 1 518 1702 4 12 407 28 4 1 362 11 8657 12 6720 1 4 2542 5131 9631 49 2450 25 8657 243 68 1 941 265 11 25 1301 57 71 1 2543 7 1 410 337 11 12 1 2353 688 220 414 3 736 4 2333 61 1 4438 6665 1492 5 6455 1 10 472 43 85 183 8657 89 227 5 2230 184 2018 11 1049 65 19 1 2133 7 368 1 1635 4 3 25 3 5653 3 25 7 1 21 11 1 21 1926 12 1578 5 9567 19 1 7 668 1600 395 21 12 7 397 59 2 349 3 2 350 41 37 94 51 22 2 156 240 668 529 204 3 51 7 368 17 571 16 3 25 51 213 2 163 5 3823 1 80 240 668 1102 22 1 567 16 7742 3 11 26 2 2869 5 397 604 29 1 7183 1 21 6 80 240 5 64 3 785 3 25 309 3 2097 3025 3\n1\t14 1 2808 6240 2264 15 239 147 3 55 2 684 8806 6 5332 3 475 426 730 47 17 20 183 43 211 3416 168 3 1269 494 11 1 6507 4 1 147 13 3371 25 1839 270 3 6243 427 2961 6 7 9 574 4 3 1290 25 52 807 7 2 280 1868 928 16 9662 8707 7899 289 144 60 12 4589 425 2866 60 153 70 97 4 1 3288 2131 17 60 5961 44 293 3599 4 3 5 90 31 2529 129 19 44 2487 99 44 1 2235 429 15 44 1666 14 1037 8194 2093 289 25 14 4693 871 22 1029 6984 15 591 1201 498 30 1599 8965 14 1 561 14 4020 3 6268 14 1 3794 7820 1 6273 305 1745 43 1930 9908 1097 642 102 2066 2639 4 1 18 69 1 74 2 324 11 114 182 65 9173 2961 3 3 98 2 330 324 2961 15 25 651 2 80 3271 9428 218 429 4 6 93 2403 685 199 2 3865 3940 4 2 4975 1153 2168 1 215 2322 4669 16 764 4 21 3156 528 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 21 6 202 1941 15 9513 4640 3 6042 5602 65 14 1 7126 4 6217 15 1 586 94 1 1 102 415 968 65 3 597 16 3610 7 639 5 1089 3 788 3 941 1210 16 4970 13 2679 1 2353 10 432 1649 11 4640 40 89 2 2082 7 605 5602 15 44 5 5602 266 2 1768 1842 287 35 3944 181 5 26 160 142 44 115 13 2044 90 3291 2428 1 415 35 414 2193 22 5381 5703 1969 35 1275 19 2 4794 6 521 30 1 3326 435 4 28 4 44 9277 2068 262 30 2884 13 7 28 4 44 226 581 4764 6 107 14 975 35 5602 6 2 2915 13 92 21 56 3852 5 6042 60 6 1423 204 3 384 5 90 44 121 55 828 5602 198 114 109 7 871 9814 44 13 92 393 6 4 1 8078 3 35 63 995 5602 29 1 5701 295 15 11 400 2896\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 59 302 8 192 5 878 19 9 18 6 5 552 23 34 269 4 116 157 3 300 116 13 150 969 10 16 10 485 1476 37 8 472 2 13 269 4 1573 10 19 8 5303 420 89 2 6633 1 389 201 130 26 295 318 3907 3 98 1256 19 1 6602 106 33 88 889 52 4 62 13 858 16 1 6409 3 27 130 39 26 2859 1547 9 130 24 71 248 183 27 89 9 13 5827 9 158 45 23 64 10 7 1 549 8213 13\n1\t1428 2 870 158 49 27 942 7 1 1097 83 1460 133 95 4 25 8965 2092 15 2 535 41 2 843 94 1 171 7824 57 105 103 5 87 937 9327 55 2142 16 56 256 62 34 77 43 4 62 113 871 7 172 361 14 16 27 40 1 260 3791 292 25 121 6 2 222 361 42 935 25 129 6 377 5 26 533 1 158 17 153 169 3642 110 8 5391 970 3 8 64 1 846 93 1059 429 5931 5919 217 16 1 206 361 205 1681 3156 7 62 221 17 515 2402 616 361 9 1962 52 36 43 4 1 138 4467 3 4467 4 1 2032 361 685 23 1 2605 1656 17 4676 1295 589 29 1 166 85 361 2 148 1825 8899 20 3 1 709 570 529 22 2 222 17 2 9707 346 36 9 130 20 26 4861 49 33 209 5485 66 6 1219 227 794 8 12 1385 14 8 713 5 694 140 31 2913 404 1 82 366 361 9 1879 691 213 14 806 14 10 276 361 17 207 174\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 4 21 1819 15 1 3212 4 102 170 3834 3 14 33 825 38 157 3 112 28 13 9951 30 626 754 16 25 1016 216 7 8906 564 2 1 21 100 2018 2 2785 34 1 121 6 4455 14 8752 151 2 1528 21 133 9 1325 5016 3 3913 470 3 2619 158 8 343 36 8 12 288 140 2 3406 5 3933 243 68 133 2 682 13 150 24 219 9 18 29 225 715 984 3 63 1582 134 11 10 6 28 4 1 625 113 104 117 89 38 101 2535 101 7 1549 3 160 140 1 3 1714 4 170 2752 15 537 189 394 3 1194 130 99 10 2193 3 333 10 14 2 4784 6054 14 10 5093 2 604 4 1636 38 75 5 934 15 101 7 1549 1 4 2\n0\t0 0 0 0 0 78 40 71 89 4 333 4 4569 3141 5 1 5157 29 268 10 557 322 1 178 106 2278 3 44 7820 2928 32 1 4625 3225 6 591 29 82 268 10 380 1 21 2 3713 3161 3791 7406 2 408 3324 245 1 580 4636 6 11 1 1860 4 1 9204 178 2182 31 1380 7 1 3930 72 118 11 48 72 22 133 6 20 148 37 75 63 72 230 16 1 5 26 8 114 20 474 29 34 48 653 5 1 886 41 1 13 92 82 580 8 2580 5 867 6 1 278 4 4114 2999 7 1 914 1174 60 6 7 2061 154 178 3 1 1246 41 1286 4 1 21 19 44 1663 1233 60 6 1874 2 2118 1587 17 60 6 6843 4 148 7953 44 7 1 178 106 60 5 44 493 763 4394 313 278 30 1 9625 283 1 522 19 2 2200 43 2692 2931 7 1 1754 896 99 44 1191 49 60 6 13 1601 7 34 2 46 1832 158 591 340 1 1061 746 19 9\n1\t131 7 53 13 150 112 1 753 4 2133 1615 11 9 131 9130 93 1605 79 875 19 401 4 48 81 7 1 1400 22 5648 5 49 648 38 2 41 13 92 113 185 6 11 9130 289 3502 4 1 4856 4 127 4205 66 22 531 1 1340 41 80 3755 529 80 81 70 3863 77 133 296 73 4 1 6051 131 11 22 1 66 6 144 80 81 2635 5 836 3 11 8252 8 83 24 5 2686 140 1 82 4 127 438 771 289 41 4205 16 28 4 41 1 59 302 144 9130 153 70 2 394 7 50 1062 22 7587 1 22 20 11 722 3 19 31 55 1 2219 213 198 65 5 17 33 173 34 26 408 1225 4032 45 814 9130 511 26 19 13 1911 2485 3 523 968 801 1680 90 16 2 84 880 8 780 5 335 1 1094 3 708 32 1 1176 35 22 55 49 479 101 5622 631 30 685 2579 9053 3886 42 892 73 10 6 479 515 101 3 207 185 4 48 151 9 131\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 1 21 122 10 1008 2 2831 5241 176 77 1 794 109 14 940 77 1 486 4 943 2213 81 3078 1175 5 2222 3846 2926 1 4 6360 32 1 477 5 1 182 4 1 21 72 1 4 1 943 9767 72 825 4 62 3 62 1 790 5970 2151 740 423 157 341 286 1 5969 4 292 1 21 6 10 63 26 46 10 123 20 1426 95 6207 17 2378 1 1154 5 209 38 3846 10 2378 1 9491 5 3673 13 92 21 741 14 109 3 14 1283 14 10 3 28 323 7848 1 1468 4 11 112 6 396 31 634 4 3 1 97 3036 11 72 6555 10 6 2 176 77 3275 727 46 109 3 1325 7076 13 614 23 22 288 16 238 41 16 1883 1794 9 6 20 1 21 16 1038 245 45 23 335 3314 1571 3 4673 124 11 22 20 929 3 197 9 6 2 84 21 5 836\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 116 687 441 20 41 2587 675 2 323 215 471 127 22 35 1 83 8360 33 22 1011 510 1467 115 13 92 21 6 20 3090 97 4 1 171 22 674 1 102 951 35 309 1209 3 1 2646 22 167 53 1815 1 21 6 7863 1330 66 190 43 1098 93 10 6 5646 15 4296 2252 11 97 76 149 254 5 365 3 190 70 1120 1566 8 12 2925 19 1 1269 857 3 1 342 53 2263 58 1083 75 1134 9 21 88 26 45 33 57 2 2223 445 3 10 165 3319 8898\n1\t153 3097 197 86 2726 3 11 1 102 124 76 20 582 101 37 34 27 123 6 372 15 9 3770 29 154 799 4 25 158 9850 7481 30 5 3646 1 4713 123 2 609 329 30 1089 1389 4 1 215 1239 3 98 2037 1 212 410 5 9308 30 5714 9 360 3 393 1 18 15 608 3 204 6 1 2636 608 6964 588 155 5 990 3 1565 411 1208 2 234 11 181 5 24 71 8502 30 4665 115 13 5140 9 6 1 1836 5 3242 1691 33 998 73 4 1 1985 393 4 1 74 4 1 31 2526 55 52 52 6483 301 9530 73 608 3 204 145 15 943 4 1 3 608 10 123 20 90 95 1821 51 481 26 2 1468 5 194 41 39 2 37 2985 28 11 10 432 1542 4713 6 372 25 3549 8016 27 123 10 15 2 3 27 123 10 530 4713 596 76 273 36 194 508 190 230 3 4522 38 43 426 4 322 3 8 83 96 1278 76 117 1006 4713 5 1654 2 1015 316\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6824 284 1 821 183 283 9 158 8 12 8511 945 30 1 1974 121 3 1 4 1 1278 7 62 4282 4 1 994 8 230 9 21 7 58 111 6638 1 5115 4 1093 3 243 419 1 1418 4 2 2513 112 471 7 1 4 1 21 5 2 386 1 21 433 97 4 1 1659 1008 66 90 1 347 3 1826 5864 7 2 595 119 15 103 51 6 58 2031 65 5 1 1151 189 6944 3 1215 37 9 784 243 8830 3 220 1 102 120 24 132 5334 23 481 352 17 830 62 6 9 6 132 31 5 22 340 58 1418 4 3445 3 66 6944 5 1159 3 25 66 1215 5 2693 13 5020 5 345 8 96 11 2 156 4 1 120 61 1012 46 5845 3 2278 618 790 1 397 12 4878 340 2 138 436 1 21 54 24 71 52 9250 64 15 7748 3 3744 6275 16 31 1485\n0\t54 229 26 643 142 45 9 1121 4742 370 19 2 1267 7 9 441 6 19 2 1516 242 5 149 146 4 1548 5 2162 27 1071 5 1231 3684 4100 27 3 25 413 149 2 346 7965 4 7871 30 13 92 697 950 4 1 67 498 47 5 26 35 1501 5 26 3 27 789 1 260 177 5 87 7 154 4820 66 1275 122 29 15 14 109 14 15 1 2535 4086 4 611 1 2020 282 35 6 377 5 2459 1 9247 621 16 25 4519 959 1 2294 37 42 34 167 1 4765 22 15 4633 480 605 334 7 31 2265 11 181 2081 1 67 167 78 270 334 7 463 1 4905 41 1 2370 16 4 1 387 37 10 213 2325 1303 6062 13 150 143 55 3082 4387 33 419 122 2 903 9621 3 31 3784 6049 3 936 27 6478 77 110 27 153 176 41 478 2294 16 2 3914 245 253 1 1084 1412 540 7 154 699 45 9 18 57 71 612 27 54 24 71 47 16 2 58 13 3616 9086\n0\t0 0 0 0 0 0 0 0 0 0 0 0 48 63 26 367 38 11 1336 9 6 162 17 1011 32 477 5 714 45 23 175 2 18 11 76 359 23 19 1 3135 9 6 1 425 18 5 5338 32 5 341 42 723 9356 297 38 9 21 4 6960 13 9951 30 626 1 3153 438 11 758 23 1 4761 178 7 1660 5383 562 4 2214 27 308 316 8293 25 528 551 4 1177 3694 2 156 82 2121 23 80 1458 495 3082 76 1030 16 116 3805 14 322 32 4027 5 292 23 495 320 126 41 474 38 126 94 1 18 6 7076 13 370 19 2 347 404 218 464 2768 45 8 88 149 2 625 8434 4 42 3052 2882 8 54 26 942 7 765 194 5 64 106 9 177 337 1328 1670 1 347 791 6 2 4 5553 229 146 89 65 7 639 5 2373 25 1054 13 9 28 65 3 10 16 4175 10 6 728 28 4 1 113 91 104 8 24 117 1586 3 11 6 667 169 2\n0\t92 265 12 37 91 3 37 10 12 14 45 1 7746 12 7 25 221 234 25 221 502 50 680 5 87 2 50 680 5 87 582 1083 79 75 5 230 578 2 53 868 835 2267 19 1 9 18 965 52 4 31 457 3168 17 378 10 12 14 78 7 116 543 14 1 859 5265 13 92 523 12 37 12 2046 1850 5816 12 1 3093 83 81 22 3360 4657 12 3534 1 102 820 47 453 310 32 1 3 1 972 259 173 320 62 7 133 1 5213 1836 50 1193 4 2386 61 33 1 1278 3 1132 3 171 22 39 667 1927 2500 2081 3 4657 6 3 3378 6 39 36 2 368 8 310 5 1 2582 11 33 39 83 118 48 1 33 22 13 150 1 4471 355 1 859 5 2 2081 410 6 2 885 3742 21 6 1 113 5652 888 5 87 656 176 29 104 36 2081 2380 4 55 106 632 1 1735 427 6 11 1 21 965 5 26 89 30 81 35 24 860 3 906 10 12\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 67 4 491 1141 218 125 3 125 702 1 120 3 119 22 301 3509 794 6 1341 443 1093 66 6 531 2 1362 3608 7 25 3 95 5654 4 1216 6 1677 5 26 42 47 5 31 1 769 23 495 26 15 3008 17 15 6103 36 503 300 31 4254 5 735 2051 278 1071 7 2 138 108 6795 39 20 78 160 19 7 218 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 50 74 18 753 19 6157 8 12 929 5 94 133 9 108 8 481 7 53 8882 1959 9 18 5 26 30 437 1 81 191 26 13 2409 4 399 50 1020 4347 5397 794 7 13 150 112 783 6384 1147 2817 3 1490 3 1891 8 1595 9 108 51 6 2 640 17 35 3457 49 236 58 1471 1 494 6 6749 3 908 1495 1 1650 22 1 3347 4 795 6 673 3 595 1 120 22 3 3 1 441 292 370 19 2 53 4493 6 2317 9 18 6 2 391 4 13 438 2721 319 19 9 141 42 20 55 279 116 85 1019 133 110 786 87 20 64 3951 8 6864 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 59 3731 8 24 38 9 1260 6 11 10 6 188 11 61 59 9497 29 7 1 821 22 620 6179 16 43 1021 2560 114 33 96 1 410 54 26 105 439 5 365 45 33 61 20 620 297 82 68 458 9 6 46 34 1 171 87 3102 4109 2472 62 120 5 500 16 1 2513 415 47 1057 42 279 133 29 225 73 7594 14 8543 6 1 177 1218 45 8 61 3552 8 54 24 8984 1837 8 12 128 1136 1 938 8 3808 671 19 13 4 2 1 393 178 6 2 211 4 48 653 7 1 1533\n1\t2744 16 1 412 30 2668 1 21 12 470 30 742 35 590 1 309 77 2 2038 6385 13 5147 30 43 4 1 708 30 6675 1 184 2272 181 5 26 1 9173 4 1 102 3108 35 57 19 612 1 166 2463 18 1607 143 96 235 38 1 717 1820 49 9 21 12 4303 7 698 80 4 1 4213 976 460 4 11 1165 61 198 602 15 78 1186 13 92 21 274 7 5003 285 1075 6 2 2038 267 11 40 4680 2611 6190 12 29 1 5597 4 44 1212 14 42 935 1 443 44 58 729 48 12 60 14 1 1897 11 432 7546 44 8730 6 6930 578 6941 35 266 1 6 93 107 29 25 1293 561 1791 12 31 313 267 353 35 289 7 204 144 27 12 29 1 13 659 607 871 1 360 372 6 2 3224 1993 5 95 141 14 60 1501 675 783 1 711 4 6 93 452 6875 6 93 107 14 1 846 3598 13 252 6 31 313 111 5 1017 2 3907 366 29 408 133 347 3\n0\t24 1413 144 6 60 132 2 5 5619 311 73 1 119 3503 10 37 11 406 49 1 102 4 126 70 19 2 6071 1444 1 76 26 590 3 27 76 3964 44 2 39 14 8054 6 75 33 735 7 112 480 246 162 7 1205 3 246 5559 239 82 16 4 1 682 13 6 2 3977 5026 18 32 477 5 714 6055 380 2 3705 1974 1663 51 22 97 1230 6055 1299 3 1206 29 1 5426 4 2 1189 178 15 6055 3 2 163 4 168 106 27 44 3 3738 44 7 1 259 7609 123 25 1043 66 6 1941 675 1 21 1263 43 4 1 210 927 180 455 7 2 580 18 7 375 982 1 393 6 5262 3 42 676 218 1668 762 7310 1 1349 4 1 1081 3 1 356 4 623 4 1 13 4751 6636 6 37 184 11 60 6771 19 7511 5 2162 992 14 2 3909 3868 786 187 10 1095 16 257 3032 14 109 14 9 213 44 210 18 1815 11 128 3852 5 60 1336 89 235 527 68\n1\t80 1163 14 28 4 1 2049 971 7 368 2994 17 9 21 1501 11 27 705 459 2 1246 30 403 3733 296 4772 132 14 2 3674 5 277 6643 3 34 38 4999 14 109 14 3505 3189 5 157 7 123 2 3102 329 4 2472 9 645 2404 309 5 21 3 123 10 15 3358 6166 5557 6 425 14 2743 55 45 27 173 2369 105 530 27 6 1 59 353 35 88 1622 10 142 1080 2485 25 1860 3 1403 3325 6 2 360 9459 14 5627 3 123 2 53 329 4 121 14 6288 1922 6516 6 93 46 53 14 2978 3566 3 44 168 15 5557 15 84 34 607 171 87 62 1871 258 4598 14 1599 1 2839 7 2 46 211 4885 1604 130 26 340 80 4 1 1365 16 2472 2 514 668 7 86 221 260 5 1 412 7 132 2 111 11 10 811 4602 7 97 168 17 6 128 2 67 7 86 221 1162 34 7 399 559 3 7959 6 2 84 668 3 557 19 97 3444 10 1797 130 20 3702\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 226 349 72 61 1979 5 102 104 38 6780 523 1 347 32 66 9 21 12 89 69 3 13 150 481 830 2 18 36 9 101 89 7 2 1127 3 1798 5 1 3734 4 2 21 382 30 1 5171 593 4 742 3668 1398 19 2 1053 1 13 499 6 240 11 626 35 2371 7 9 158 40 57 37 97 922 4 518 11 190 26 3017 5 25 1103 4 2 506 7 9 803 13 252 6 2 21 11 2683 15 23 94 3817\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 84 1 74 85 8 159 10 8 179 10 12 32 357 5 1812 3 8 128 87 1705 8 190 20 24 107 1 3290 17 55 45 8 57 10 511 582 79 517 11 1 21 6 39 14 452\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 162 422 19 22 23 56 322 98 99 245 83 760 10 3 373 87 20 751 110 11 54 26 2 184 13 150 219 9 19 249 3 214 512 1094 29 732 5011 8 114 20 539 223 3 8 114 20 539 5053 245 51 61 1546 716 3 708 8 1309 3706 45 23 22 288 16 31 483 211 18 98 99 45 23 22 288 16 2 1127 931 18 11 9 18 440 99 146 36 1912 41 45 23 22 16 43 53 315 139 99 2 1665 2493 73 1 1349 7 9 18 6 670 245 45 23 24 162 138 5 87 3 9 6 19 9421 139 1929 3 99 110 23 76 26 1056 13 47 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4935 24 5 842 11 49 1 442 6 3893 540 7 1 567 6302 23 22 20 7 16 2 53 85 395 1365 4263 43 327 606 1743 6040 1095 2963 6040 65 238 45 34 23 175 6 1357 73 1 733 5 48 119 5027 6 29 1726 3 301 4178 1 5829 4 1 647 258 11 4 29 1 769 22 527 98 5999 33 22 49 33 22 20 5360 34 8 63 96 6 11 2127 191 26 2 56 327 259 5 70 9 97 53 171 77 9 4896 2 1480 3211 173 24 146 19 34 4 949 63\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 920 1749 84 1691 183 133 73 43 417 1505 10 341 33 22 20 14 2 191 1861 3 10 6 2 191 39 83 504 5 64 146 13 92 22 240 7 97 546 4 1 158 17 236 39 105 78 3 10 153 1382 7 1 3158 13 2361 4 1 53 188 22 1 4 80 4 638 43 4 8962 3 436 2 342 52 8 1155 669 39 3 8 531 83 773 188 1013 33 22 105 631 41 2324 7 1 13 7784 68 101 66 151 10 105 1896 1 718 6 837 7 1 356 4 43 6137 30 257 5259 1 2729 1246 4 80 4023 9545 3 314 14 3397 16 9 13 150 56 381 1 1511 4 1 3585 3 1 991 4 561 5 66 40 71 16 105 1896 5376 7 2672 4100 805 42 111 125 1 401 3 8 241 20 5 26 2 301 351 4 85 16 8 87 241 80 2630 24 2 534 4870 16 469 3 5099\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 40 2 46 2404 230 69 1 1 505 1 3 286 207 34 10 7199 43 4 2 2404 197 1 115 13 92 18 6 1 572 1 1299 19 23 37 11 23 1283 22 1385 42 2 7251 115 13 3325 115 13 1 5290 3 1 1778 4 44 672 12 115 13 1803 1352 320 1 2139 19 50 115 13 7615 1299 6202 13 75 78 1922 6516 276 36 7969 7 44 1192 42 1 7343 75 8 2893 643 5 24 107 773 7969 7 2 280 5872 5557 8644\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1205 7 124 2903 4 1 250 120 1204 1 3 4 1 707 3 1565 730 7 1 4 6360 7 869 4 72 22 620 102 584 4 4490 403 39 458 242 5 149 730 140 2 1285 5 1 986 4144 7 1 6274 4 245 243 68 2103 72 24 102 120 603 1285 77 1109 12 39 174 921 4 13 92 1428 4 9 18 6 2690 72 825 7 1 182 48 56 758 239 5 3 72 825 75 479 16 137 35 175 368 3 16 2 18 5 187 126 2 6887 9 18 76 20 17 16 137 35 175 2 18 11 844 126 6523 126 172 7735 9 18 76 52 68 11\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 117 23 87 87 20 351 116 85 19 9 5370 108 2 1015 11 114 20 321 5 26 307 588 47 4 1 856 57 1 166 6588 210 18 8 117 7031 552 116 85 3 13 2423 12 224 5904 7 8437 1793 3 3343 224 3815 136 101 3219 30 17 286 25 2465 12 128 1080 3 8934 482 318 1 46 226 5636 13 3422 2 53 201 15 5429 3 2423 1 121 12 39 14 1698 14 1 18 2330 10 6 491 75 53 171 63 87 132 91 502 83 33 70 2 973 4 1 263 2808 45 23 128 24 95 796 29 34 7 283 1 18 29 1 46 225 947 16 10 5 209 47 19 1771\n0\t1655 4 1 2152 6 19 3 31 857 11 7698 7106 3 5 86 903 4726 8480 54 20 26 13 5094 88 1 1655 1 1387 4 2 1028 49 1 864 4 10 54 26 1649 144 54 33 187 10 52 68 2 7 9 326 3 717 4 5097 15 48 88 33 815 449 5 8612 16 52 68 2 326 41 37 29 944 45 33 61 7693 146 1095 36 62 221 1 100 4936 132 1670 10 19 6956 3 775 5612 795 5 4062 16 1308 2633 86 410 495 1682 1 774 900 551 4 397 1548 660 1048 3164 114 261 7 9 21 70 8 449 1 171 2723 45 59 16 62 85 1130 19 895 2528 36 9 29 225 1 165 5 65 43 8720 216 7509 13 2663 1028 596 76 149 103 5 3494 32 1 1 840 6 5096 5963 16 4 86 3 51 22 58 274 1657 41 1201 2170 479 34 7 5977 40 162 5 13 2663 3563 36 1 7981 12 2765 1929 4 1 3134 3675 155 5 1 4401 3 186 116 6063 15\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2199 2 306 3568 1787 9 18 6 2 900 3 1 263 6 2 5318 1 18 1986 15 1 304 585 3 1 1769 4 1 1751 7128 380 1 545 449 4 146 4155 3568 196 7 1 572 3 25 860 6 1130 184 387 258 19 1 344 4 1 2450 5773 8 1407 140 9 18 8327 39 5 90 273 10 6 2 391 4 755 47 4\n0\t1291 5 24 43 1430 36 42 174 3 1 17 15 14 1 7 233 95 4 137 12 78 68 48 180 219 13 9 1719 143 4190 95 1570 23 175 5 90 79 241 11 51 12 2478 18 68 9 1785 8 87 20 96 37 579 42 2 1261 106 1 191 411 1364 28 16 25 13 6 204 93 14 2 3678 376 300 16 607 25 3285 585 17 9141 1 435 12 14 3285 14 25 585 579 3 144 6 11 109 579 73 8 812 1867 300 52 68 8 812 709 104 1121 14 53 14 86 8854 579 115 13 20 2 267 141 42 2 203 28 3 8 39 812 203 104 258 137 66 24 71 14 709 879 579 115 13 53 177 38 1947 579 322 9 28 1074 5 174 6166 1198 18 395 1444 4 1010 69 54 26 542 5 9431 115 13 2521 45 23 128 175 5 118 48 22 41 35 22 6244 1 573 1 1906 3 1 46 1906 7 9 9533 39 116 226 3 139 99 190 851 352 23 579\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 179 9 12 2 967 4 43 3 10 6 928 5 26 5 1 215 32 17 2 967 6 20 605 1 215 119 3 5714 592 13 150 152 57 46 103 1691 5 9 141 17 8 39 1130 269 4 500 58 1216 69 8 152 230 345 505 3 37 1029 15 1813 37 8 14 2 1182 39 339 241 110 33 24 713 5 90 10 2 1541 189 2 5103 392 18 3 4539 3768 17 9 6 20 55 1822 4 2 402 445 249 682 13 4098 20 64 9 141 9 6 2 528 351 4 290 378 70 1 1766 1 833 6 128 83 369 5 78 869 77 2 3 1 121 3 119 6 237 52 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 687 3205 40 71 248 97 268 1448 641 119 1277 432 2189 15 1725 3 27 440 5 142 53 8688 3247 37 27 63 24 768 9 6 660 2674 10 153 55 328 5 90 23 7663 1 119 6 1 119 3 236 58 517 1137 1 1009 675 8 497 98 1 59 302 5 99 10 6 5 64 75 10 17 162 6 248 1868 41 236 20 56 235 5 134 38 9 158 42 20 591 573 17 236 58 53 985 1497 2999 266 2999 3 23 118 48 317 1927 70 49 23 64 122 7 2 135 40 31 761 6026 8 284 1 119 8749 3 8 88 64 1 21 7 50 4843 10 12 37 631 3 8 219 10 3 10 6276 47 7 1044 4 50 671 610 14 8 57 8 343 20 2 3131 4 1900 2880 8 24 58 507 959 9 158 42 14 45 8 100 55 219 110 1078 490 42 2 167 1445 21 213 1947 1604 646 187 10 8542 16 43 2560\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 1 2918 4 930 11 368 341 9944 1811 5 256 827 9 6 28 4 137 7 1 2 8620 641 18 11 6 46 548 3 844 23 15 1 507 11 23 143 39 351 31 594 3 2 350 4 116 3223 13 7175 6 56 169 491 7 9 108 8 57 100 56 71 2 325 41 57 1887 44 183 17 160 155 3 283 9 362 278 4 2173 79 444 483 13 9 21 12 31 7 2 1185 448 16 79 37 8 12 9178 8 54 55 4219 8 3394 7426 2010 43 1230 739 41 6561 2445 8 12 3202 5658 197 1 97 3824 8195 646 39 867 45 23 617 107 194 87 725 2 2454 3 841 10 689 519 1 104 22 1 1726 3 9 6 2 84 5592\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 24 2666 199 15 2 5709 3 1370 7106 4 1 8088 3 1105 5059 11 172 4 24 7 5645 2 304 1444 15 1 80 81 8 24 2006 3 286 73 257 3961 4364 5 2121 86 5645 22 1747 5 3 13 92 4162 5059 11 1 1261 4 5645 40 45 3 1 1048 11 9751 95 4277 6967 6 5 1 4295 11 81 22 20 2709 801 40 1699 2 5059 16 9 3 2 356 4 3 1 13 2 2961 1747 9 1370 286 1127 21 5 26 13 743 191 64 409 409 409\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 405 5 64 31 238 267 15 2 5923 1298 794 9 21 12 17 9 28 1200 79 6060 16 503 1 119 12 2 222 1693 5 917 3 8 7513 433 3208 8 230 37 1140 16 294 1990 1147 3 16 355 602 15 9 108 646 2469 2 325 4 34 4 126 17 59 85 63 50 507 125 9 461 1 28 177 8 63 134 5937 38 1 21 6 11 262 129 37 109 11 8 143 55 3082 10 472 79 2 156 168 5 853 11 10 12 768 5271 8 1150 10 16 140 808 57 8 1390 5 64 10 7 19 1 184 2238 8 54 26 56\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 214 9 18 5 26 46 722 8 336 75 10 89 4 1 3329 4 661 326 9 18 6 20 14 211 14 1270 2312 17 10 6 167 695 3 220 8 192 2 2225 325 8 336 75 33 89 299 43 4 1 52 903 188 7 9 18 6 84 16 3772 2225 2791 1221 229 138 16 126 152 220 33 24 5 139 140 157 1437 144 81 917 2225 37 3383 49 51 22 37 97 2896 3508 3 5 2225 3 1 233 11 10 907 332 2798 8 93 214 1 697 562 33 310 65 15 5 26 1476 10 6 426 4 36 2839 15 3 2022 1 454 790 8 496 354 23 64 9 141 3 241 11 23 76 182 65 2083 9 108 618 45 9 541 4 267 6 20 116 430 23 229 495 36 110 2266 11 6 15 95 267 3750\n0\t293 1426 968 404 4645 6011 244 15 31 91 1277 654 7 1 567 178 72 64 217 605 19 43 2471 17 29 366 33 22 2 342 4 559 403 8 83 175 5 187 5 78 2408 17 188 473 91 16 1 559 403 1 35 557 16 271 5 2 3912 1295 217 27 2172 4896 309 3 15 1 352 4 123 43 4154 11 498 5342 35 6 34 740 1 968 5231 15 5 328 5 652 1 3881 2475 5 13 2136 63 348 32 1 477 11 3386 3 278 22 167 1 59 454 11 187 2 34 47 278 6 6617 27 6 2 528 8153 524 7 9 18 3 89 2 47 4 437 797 8134 6 464 7 9 135 27 666 154 427 1 166 111 3 289 167 78 1 166 7953 27 12 78 138 7 104 36 1052 1668 2918 217 95 340 1 21 418 142 15 43 327 238 17 98 4089 10 2919 140 1 344 4 1 135 1 393 6 237 32 13 2687 351 116 85 15 9 135 145 1472 10 19 9\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5457 1 3480 16 817 9863 8 2183 577 127 6588 144 22 33 34 37 42 39 2 18 3 42 20 8 7410 9 386 21 32 50 1007 1099 172 989 3 24 198 71 400 7086 15 110 180 620 10 5 97 4 50 417 217 33 34 336 10 854 8 230 5 221 9 215 315 3 482 1414 21 4 4970 183 60 726 986 41 109 94 765 1 82 4168 8 1023 11 1 21 6 184 8 59 555 10 12 9950 10 181 11 8 191 26 1 59 454 35 7265 28 4 127 16 9863 29 2532 37 8 560 75 78 42\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 40 5 26 1 210 18 8 24 575 596 83 26 1366 77 9 36 8 1306 27 6 59 7 10 16 2 9287 4 681 1452 9 18 6 37 91 11 1 59 302 144 23 54 99 10 6 45 34 1 344 4 1 104 19 990 14 109 14 4798 57 71\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 112 9 131 14 10 238 3485 15 8095 112 3 109 43 268 42 37 53 64 2 131 106 34 1 120 216 109 371 3 33 2055 239 82 15 8184 42 93 46 53 5 2097 1209 7 2 756 280 14 8 24 59 107 122 7 1282 1 4060 4 1 250 647 8576 4649 3 1312 6 46 4392 5 1 1754 9 6 2 131 23 24 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 485 1930 32 1 8207 3 72 258 36 34 4 1 1488 906 1 18 12 20 1683 227 5 26 1050 1794 3 10 247 211 227 5 26 2 1211 10 2060 384 5 2105 3 5 58 548 5957 94 269 4 1000 16 9 177 5 70 1824 50 379 3 8 2117 827 20 246 1130 95 52 85 19 132 7442 10 311 12 20 1476 4422 211 779 10 784 14 193 10 61 2878 1160 3 470 30 2 298 416 527 1891 10 12 132 2 351 4 1286 964 1041 20 5 798 257 85 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2776 59 5 9988 883 95 1244 3792 45 1 2024 4748 57 71 16 1 545 5 4001 1 462 919 98 10 54 24 71 2054 17 8 118 11 51 6 58 132 177 14 2 368 206 90 2 7470 4 5131 4929 9956 258 20 2 1951 32 1 51 6 37 78 3921 927 160 19 737 11 519 8 3307 45 8 247 152 133 2 1211 23 511 26 29 2818 16 517 11 9 6 2 2314 608 207 75 1 18 40 71 7 44 1555 4 104 66 876 79 5 1 6544 2582 11 1 6 28 4 137 368 4264 688 8 1266 662 33 327 17 16\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 2 9363 5 3640 2443 40 71 2 5424 2259 117 220 27 645 10 184 15 13 4 6 58 4727 605 77 1 233 11 8 8152 31 21 55 183 8 337 1356 291 5 198 70 1 138 4 550 42 556 16 195 25 124 22 8339 3 13 150 1121 273 45 8 12 133 2 267 11 750 1443 41 43 3323 1 5683 4 129 6 5788 19 97 97 168 15 43 891 788 6 93 7863 3182 27 12 7693 65 1 1931 7 25 263 3 593 30 65 1 4718 13 150 192 732 11 97 81 76 149 9 21 731 3 17 7 34 4105 9 6457 3 991 59 2656 4 345 13 11 11 136 253 27 57 84 352 32 1334 15 1 1471 657 11 12 113 3 27 130 365 195 27 693 2 53 25 124 32 1 576 1194 61 2 900 2908\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3356 6 2 826 3692 32 1 18 3 8 96 42 167 9432 8 12 37 1120 5 434 15 9 1445 4471 34 1 9301 966 253 58 356 94 74 910 269 6 39 91 21 253 5569 45 23 22 23 54 24 1436 29 225 681 268 4 448 34 1 638 2854 596 54 3081 2 16 9 232 4 3960 5 26 218 113 21 117 73 10 153 90 95 356 3 49 10 153 90 95 356 42 165 5 26 4554 3 632 18 6 198 452 3294 8 134 1328 9 232 4 6293 632 4558 6 39 2 1526 111 5 328 5 131 11 317 2 53 21 2047 8265 14 2 313 353 130 39 875\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 18 12 2 184 606 13 724 35 7558 8 337 5 1 856 5 793 1 8358 217 13 1627 8 497 10 12 2 53 108 13 1149\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 2065 760 29 2 558 388 5289 8 12 3414 5 149 2 2152 2314 1822 227 5 3953 2773 1711 3 202 14 5832 8 96 10 337 109 15 50 956 5 26 7 518 6273 133 1 2863 87 42 1449 19 1 2009 4 5131 756 956 10 876 65 1 1193 72 56 11 115 13 499 373 50 3972 51 12 93 2 3844 1193 101 1 67 4 88 736 4 2333 3 5081 19 146 14 756 2230 2 88 1 67 4 5155 71 88 10 24 71 301 42 146 1 18 1275 7 2 483\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7257 1 1504 4 1182 3463 51 1 632 3 3689 4 10 165 433 7 34 1 1 168 4 161 361 15 1 19 1 3 121 7 1 361 61 34 1303 3 9682 605 23 155 5 31 240 3 1086 4180 1 238 19 1 7167 7 66 3 12 52 68 95 4 1 2271 298 11 1 1 2157 7 1 2996 1 3500 4 1 3239 61 237 52 3476 68 34 1 3257 11 472 125 119 3 1663 48 2 1130 28 4 1 113 171 6779 3 27 196 433 7 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 31 489 108 8 112 1198 2092 17 8 339 99 55 350 4 1 464 505 4435 120 3 4862 293 2170 51 6 162 1362 38 9 108 1 120 209 32 463 31 2174 8044 4 439 9998 41 422 33 22 1 119 6 757 3 1446 55 1 1983 6 2444 23 118 42 91 49 23 173 55 19 1 18 5 1851 43 53 1128 58 3917 166 161 166 3176 9 6 323 28 4 1 210 124 117 1001 206 2402 7363 130 26 4986 32 2 37 11 537 63 333 122 14 2\n0\t5 26 9 6 20 1 59 260 4779 859 4 1 158 51 22 3174 4 802 4 296 3 568 4 2 514 665 4 75 1 59 1127 177 7 1443 6 3 235 4 1700 41 1703 1548 6 20 55 340 2 176 7 4 9 135 319 6 2769 14 1 59 731 177 5 170 5294 13 92 4 1 1940 2063 11 60 123 20 1959 1358 8734 7 44 8573 3 98 60 271 19 5 345 4 254 224 44 221 5631 3 98 1 4 44 4827 3 95 28 35 789 235 38 76 118 11 63 26 39 14 2244 14 3 52 2244 68 80 4762 13 872 2958 144 22 168 7 66 1 466 129 6 2 272 4 893 796 5 1 410 6768 60 6 355 41 15 44 6 44 435 198 72 99 70 44 15 1 443 2061 44 4944 136 60 6 28 1 1969 5 44 2832 60 44 435 39 14 60 44 8 149 9 80 13 659 4641 9 21 6 5 415 3 4041 5832 17 48 422 87 23 504 32 1461\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 424 7 2179 2 1262 3665 1 21 6 1527 385 2335 30 1883 1512 11 1768 899 1 3401 3930 1 21 1986 285 1 2294 2886 392 14 2 526 4 537 3143 62 1489 19 174 3049 7 698 33 22 121 47 7 62 234 2 324 4 48 33 24 4899 7 1 1217 234 200 450 406 72 889 277 4 127 537 316 14 1995 29 2 204 72 64 48 157 40 19 239 4 450 28 6 2 3803 8386 174 164 6 2 35 40 390 1 957 3338 2 170 6769 40 390 2 3 6 6416 29 1 9 21 6 31 38 1 1380 4 882 19 1 13 252 21 40 2 2281 11 6 373 20 16 1 1144 4 1 956 410 17 10 6 5480 14 109 14 9106 6270 1 121 6 313 3 1 263 6 169 109 4993 51 6 2 668 868 11 1745 31 4 9225 533 9 135 9 6 20 2 21 16 4591 17 2 21 16 2 5629 1754\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 37 862 565 345 1488 23 63 348 479 242 56 254 5 8284 2 17 72 34 118 23 1 523 6 37 631 3 42 747 133 126 328 5 2373 110 1 623 3 2216 22 37 42 254 5 241 95 4 127 53 171 4721 19 16 2938 13 3053 1113 42 37 489 11 1181 246 2 254 85 288 295 32 1 1250 72 39 24 5 118 106 9 6970 17 207 59 73 72 997 10 19 2229 45 72 57 152 1390 16 490 4932 26 115 13 1627 10 196 358 460 16 101 29 225 565 3 1 265 794 3651 5 1 2445 6 5403 2696 4 31 431 4 17 20 14 452\n0\t0 0 0 0 0 0 0 0 0 0 0 2477 12 1 4668 1 4270 4 296 11 6038 79 77 2424 9 108 48 8 165 12 2 391 4 3563 7 1 541 4 15 1 580 1820 11 1074 5 9 1 18 181 36 2 4926 13 252 18 89 79 2580 11 8 9794 82 104 15 755 47 4 3623 73 195 8 173 139 5127 656 9 28 151 169 43 91 104 176 36 1262 13 150 152 590 10 142 94 4132 1507 3 207 146 8 46 1550 1405 17 10 12 39 105 908 1495 2212 3509 3 13 241 43 81 152 8461 9 15 394 47 4 1731 48 114 116 1007 5633 3131 23 19 1 522 49 23 61 39 2 41 12 10 1 46 74 18 23 117 37 23 165 162 5 1498 10 22 23 128 2 5358 3 22 5374 34 23 117 96 146 191 26 1989 29 13 1226 875 935 4 9 461 55 45 116 7 1 1646 16 2 641 18 11 153 6282 6523 2497 146 2684 41 468 2580 10 16\n0\t47 1 201 37 237 22 44 447 9716 2823 3 1 59 222 4 1744 1084 180 107 7 962 14 1 13 92 67 181 5 26 8208 959 42 29 9 1746 15 58 148 3915 38 2202 1 545 9666 1 1151 691 6 46 534 292 9 131 5101 1 1464 3608 32 146 36 137 161 534 7227 767 268 38 29 268 10 384 37 2940 5 503 11 8 39 24 5 2309 10 12 1576 5 1142 17 1031 2 131 132 14 11 1789 1464 142 9 131 123 1265 47 4 334 15 1 6 1 1809 840 3 2461 447 4 1 880 145 20 5 463 4 127 49 33 22 248 322 14 33 24 7 97 82 4799 289 17 204 29 225 33 3234 447 168 1295 1856 291 2 222 125 1 401 3 13 1 59 327 177 8 63 56 96 5 134 38 9 1378 6 11 8 338 1 567 462 4799 40 57 2 3983 4 91 2902 15 62 289 8 449 33 9 94 1 74 1022 3 328 5 70 146 138 19 1 5638\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 12 56 945 15 9 135 1 74 4958 18 8 159 12 1235 1916 3 8 336 110 98 8 159 3 8 336 110 98 8 219 3 56 426 4 1595 110 1 59 177 8 338 38 11 18 12 57 2 898 4 2 163 4 3694 8 12 323 5658 14 2 5012 8 511 354 9 8061\n1\t5096 304 3 6270 1 2319 882 6 20 146 1 206 41 1 846 89 1095 207 75 188 653 285 11 2251 2 635 1311 11 25 1508 6 7 1 9386 8114 11 643 25 301 2623 34 11 653 406 888 854 12 148 854 29 11 85 50 1444 12 20 1 3200 5090 10 40 81 61 3652 3 1066 7 346 94 1 392 51 61 268 4 13 3986 23 495 149 2 392 67 7 9 158 41 29 225 20 1 232 4 392 67 23 4749 51 22 58 58 8948 58 1105 9 6 1 232 4 2155 66 629 49 1 1032 6 1953 4072 841 1 5524 4 1 49 566 15 62 49 1144 4 1 166 231 566 239 1885 3 33 414 7 2 334 106 1603 789 468 149 2 67 38 1 5698 11 9 933 232 4 392 63 1232 5 81 3 1 67 4 75 33 2711 11 41 300 33 13 150 191 798 1 313 216 248 30 1 1063 35 2744 1 821 3 30 34 1 1041 35 1180 5 478 56 11 12\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5431 7235 1 13 5431 9063 1 13 4 7498 3 3283 2849 4891 14 14 609 4247 4 1719 29 1 1782 4 86 2300 371 31 6415 4 860 32 1 2294 4231 1792 2712 5 932 9 112 788 5 62 1 5715 4 1 22 1463 197 1567 7 8622 4476 1 869 4 239 278 5 183 2904 1688 333 4 1114 3 1527 533 1 4881 2746 15 6602 4044 3 7681 734 4427 1005 363 5 1 8880 4 5079 941 3 1663 7939 4 533 1 1 2380 4 1 265 5 86 84 34 19 25 1039 32 1 304 4 3797 6623 7 2094 2417 5 537 1206 15 62\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 39 881 47 4 1 101 1086 3 15 58 4192 25 157 181 28 1344 27 762 2 345 487 912 532 6 1770 16 43 2128 1605 5 1776 38 25 157 3 35 106 25 5809 9 6 2 18 32 2 147 1392 3 10 6 1080 935 7 80 4 1 4356 168 20 4454 4996 2 103 43 7 1 1 393 6 6191 109 248 6498 39 2 3 11 3389 2 103 1 135 171 22 587 3 15 84 4437 4973 33 22 20 1685 227 5 90 1 18 34 4 126 24 248 138 7 82 135 1 21 2439 509 3 229 23 76 1017 80 4 1 85 517 75 78 85 76 1369 318 10 5824 4 448 51 22 679 4 527 581 688 1432 51 22 97 97 138 3449\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1078 1 3693 4 781 1830 183 1 518 923 113 88 24 248 138 5 309 1 733 189 3 14 2 52 68 5690 4 3223 13 499 181 5 79 11 1 4030 4 9 18 3554 7 1 733 189 102 1002 1805 415 7 639 5 6381 4680 93 1064 1 1597 2110 4 1 4 375 415 4700 9890 125 2 298 2248 9 1610 178 57 46 103 8483 5 1 18 3 10 1478 14 193 9 12 248 1674 5 359 1 410 942 7 9 2518 108 8 1331 1 1278 61 242 5 1 509 119 3 1 55 52 509 1167 4 1 18 395 8144 1584 3 2857 13 252 753 190 291 17 10 6 1 3880 1 2605 4 170 823 3 1 733 2175 95 1365 11 8 54 24 340 5 9 803 13 7978\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 337 5 2 4 9 21 3 12 2220 75 978 10 1306 10 12 2 2053 4 154 9309 242 5 878 19 97 188 642 6797 8959 3 10 12 2 2908 1 121 12 167 1 635 3 1 2374 3751 61 9338 17 1251 32 8 4429 1 991 2720 1056 19 1 525 29 781 1 1850 81 7 2 264 193 33 114 458 1 111 10 1463 1 12 2 222 2188 3 17 98 805 10 190 24 5 26 220 27 12 648 5 2 103 3911 2740 180 636 42 39 34 200 565 850 50 6545 8 343 91 16 1 81 35 89 9 18 29 1 10 384 36 2 345 1465 5603 145 160 5 582 38 9 195 3 134 1735 2519 139 64 9 18 45 23 175 5 351 31 594 3 6840 269 4 116 157 19 2145 51 23 3192\n0\t4244 4 1 161 606 3 60 6 6068 30 723 608 1 1 3 1 5432 49 1 2792 3998 4 1 8768 1159 27 6 383 19 1 522 30 65 44 606 242 5 1291 32 1 618 60 6541 44 3862 4521 2 3841 136 4106 30 1 60 270 1 3 5647 7 1 1076 421 1 1671 5 13 743 342 4 663 1742 8 159 1 1625 4 60 12 7955 3 8 12 9547 5 99 1 1771 831 1 1625 6 138 68 1 141 3 8 192 400 945 15 9 1065 3 5353 1894 4 9310 7504 6 1463 14 31 3 6842 3 14 1 6 44 59 796 7 44 1292 4 1499 60 6 4106 30 723 467 3728 17 60 126 15 2 11 181 5 26 1 5787 1 119 6 37 2271 11 1 1671 4 3728 6 6979 30 1 430 1881 4 296 484 15 31 2 3 2 5432 371 15 31 296 2207 5 26 4210 2611 7482 40 2 547 505 17 62 537 22 105 170 16 2 6339 3248 50 2400 6 13 9267 60 12\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2199 2 1270 42 31 2158 5 96 11 275 12 152 1390 5 2230 9 13 5020 1 233 11 1 206 12 28 4 1 1063 16 1 215 9 5 1 251 6 1 215 251 12 370 19 1267 2998 38 2 164 35 12 2 84 3043 3 2 164 35 262 2 1114 280 7 1 622 4 558 7 1270 13 92 119 4 9 158 245 6 162 17 32 1 1735 4 1 9402 30 2 846 11 40 1200 5 5561 220 1 13 2120 9499 3 1531 22 53 1041 48 6 638 403 737 8953 15 25 808 3 13 150 721 852 415 5 1030 47 4 1677 3 549 577 1 412 7 62 2568 808 16 58 1649 2560 20 11 9 2893 71 95 52 1213 68 1 119 427 11 12 229 65 94 394 4 4868 29 2 4488 4099 7788 106 5100 2417 1685 1 846 5 1110 5 31 2602 833 16 25 398\n0\t403 1 2340 270 295 297 11 12 2336 5470 13 252 213 377 5 26 42 2 254 99 217 10 6 17 1 394 938 669 143 1810 2930 1890 178 29 1 769 39 3577 129 6 52 41 9960 59 133 48 4216 66 876 79 5 1 1003 13 57 1 1890 1146 17 1 18 337 19 1958 45 10 12 155 77 6 288 77 1 443 7 1 182 3 666 146 38 246 5 70 125 476 1239 11 255 2 222 105 5935 11 130 64 44 134 11 94 1 2319 3 3 80 6728 9 6 106 1 7648 18 7007 209 1107 10 6 52 240 283 61 129 54 139 94 1 330 1890 178 3 75 60 54 15 48 60 57 1613 17 98 805 60 143 152 3628 87 11 78 4426 1104 2 2415 129 11 1 18 2932 142 13 4957 3 57 1066 17 4636 5 3642 80 4 1 2789 33 274 47 5 87 1958 45 23 63 64 48 33 10 40 5 26 1286 10 153 1104 20 5 798 1 1890 168 14 33 22\n1\t1 135 1531 4731 2 323 2107 21 206 35 36 962 100 56 411 77 95 28 2489 2734 371 2 3844 68 157 397 11 100 2019 2364 4 1 112 67 189 638 3 3 221 1052 1593 15 25 2845 7 6857 1 3048 7 9 21 88 24 71 46 17 800 863 10 148 3 240 34 1 699 1069 72 100 1621 1 356 4 948 38 242 5 365 1 76 4 3429 39 14 638 411 6 2280 15 1 4272 32 1 74 178 106 2 2169 2180 242 5 552 1 32 638 6 20 7366 15 5213 58 28 63 365 1 76 4 6857 9 6 1 1486 72 19 260 140 5 1 1127 393 106 638 6 475 15 13 9 21 3852 5 7309 8530 35 360 14 800 25 638 6 2 164 23 63 241 88 3717 2 913 17 12 29 28 85 2 2915 2851 4 9 6 28 4 25 113 13 150 83 64 9 18 19 756 78 8244 17 49 8 87 8 100 2197 5 99 110 8 96 10 128 1834 65 46 109\n0\t0 0 0 0 0 0 0 0 0 0 0 0 281 40 1 5480 4 1029 15 3 1 790 6 39 14 9846 115 13 26 314 7 1 6430 4 898 29 290 39 908 13 150 54 243 2497 5 99 1597 269 4 50 1182 160 140 1668 8052 4 469 68 99 9 4904 6003 316 69 1218 2444 2444 13 2136 1374 1 53 177 38 5502 6 11 385 15 1 1931 23 70 43 204 42 59 1931 69 3 1 3008 109 11 498 133 2756 2570 77 31 3937 3 31 2583 13 1226 1568 6959 32 242 5 216 47 35 9 114 33 96 38 1 669 6783 449 1375 1286 51 6 58 1 59 6 33 57 1 1935 4 1157 140 1 89 16 249 130 20 26 2 369 1 5458 549 2324 577 1 536 257 410 22 13 150 12 3863 39 5 118 75 10 88 70 95 2194 9 6 20 2 53 9237 115 13 130 26 3238 16 7423 592 13 150 130 26 3238 16 133 592 13 150 192 145 142 16 2 223\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1150 9 18 7402 73 10 485 36 2 299 108 8 2242 11 23 56 339 139 540 15 2 1292 4 4729 1327 15 1500 9562 115 13 17 1 18 12 1852 3 1445 13 499 384 11 29 154 473 1 846 721 2966 3563 1107 93 1 846 721 2966 7 111 105 78 4200 623 3 893 1650 11 59 2 1410 487 88 8206 13 499 181 11 10 88 24 71 37 641 5 2725 2 67 47 4 4790 4137 1500 950 4034 17 8 497 1265 115 13 252 6 20 2 299 684 267 10 12 6525 5 1142 23 88 20 186 2 583 5 64 10 3 23 54 26 2692 283 10 2 6177 115 13 614 1 846 88 24 248 2 1048 67 200 1 298 1292 3 10 65 69 1 18 228 24 2 1076 3614 115 13 743 686 351 4 1425 13\n1\t30 3788 6 4864 3 1791 6 1791 475 3155 11 27 191 87 3393 41 76 186 125 274 65 25 221 3 10 76 390 25 3092 39 36 1 410 93 3155 48 1791 191 1405 174 177 11 1 410 3155 6 11 1791 6 1 59 177 11 1421 189 1 3 45 1791 54 186 125 1 3203 45 1791 2683 3 863 19 20 403 235 38 194 1 76 26 643 28 30 28 3 9 6 106 2 84 178 1791 2530 77 25 27 40 2 19 25 16 2 156 25 9982 7 1 6 2458 19 2 2192 9784 25 7217 1 1653 6 542 1095 1791 6 7 1 39 1208 1 9634 27 29 10 16 2 156 27 1 1695 1 6559 19 1 155 4 2 3 621 5 1 8509 9 6 73 27 6 2966 295 25 161 727 66 9875 4 20 3379 38 2025 17 2085 27 255 77 25 147 727 4 3244 81 49 33 321 4136 48 741 1 21 6 2 6903 131 4 53 421 4670 3 2 1975 6945 507 11 297 76 26\n0\t2 2892 35 811 1140 16 94 1573 122 77 2 3 2 749 393 7 66 196 142 30 2828 1 1800 15 31 3921 1 178 4920 19 1 18 36 2 19 2 8484 3268 115 13 92 18 20 59 151 985 11 22 459 4481 3 10 949 14 45 1 410 61 6843 4 95 13 777 20 1 121 41 1 593 207 4878 1 644 20 91 7 137 3 1 1667 6 167 53 1221 642 102 243 2577 802 361 1 4 1 2000 3 1 6562 4 1 42 1 263 11 6 1517 13 92 74 350 4 1 141 6 1976 7 3 9981 10 863 43 4 1 103 1733 32 1 3854 3 1238 6 654 35 1 898 54 442 2 1238 10 2019 86 1229 202 301 7 1 330 350 3 19 1 212 6 1092 279 8646 13 3398 8764 190 26 2973 5 2 163 4 1046 17 244 165 1 5 5292 25 689 1 1063 3 1278 114 20 24 1 4344 5 1351 126 65 3 1826 4104 1 680 5 90 2 1447 2221 4 147\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2467 29 415 6 36 2467 29 315 1046 571 42 2194 4995 1 1493 4930 1031 1 5932 4930 6 1 59 3277 11 6 128 2920 19 2 3229 3397 15 3151 6 1 226 177 415 785 183 33 22 41 9 259 6 882 30 712 1 1587 4 3151 981 36 27 190 26 2 1040 259 242 5 1203 30 37 11 27 76 478 36 2 3 75 38 34 1 3850 482 559 7 25 410 685 1 9386 136 62 439 103 482 415 29 62 3453 674 6907 5 9 3938 4 2398 153 241 41 1594 1126 4510 16 6073 209 926 608 87 23 175 415 5 24 1 1126 4510 5 23 14 3 3 14 23 1690 41 87 23 96 6 59 16 413 5 930 19\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 112 9 108 10 6 84 21 11 5961 706 3 1297 15 7443 132 14 624 1841 5 309 2225 11 61 2941 16 3788 10 289 1 3525 4 205 31 1297 454 1841 5 1173 1137 44 3283 3 415 1841 5 1173 1137 1 6974 214 7 258 7 2539 29 1 290 8 230 11 1 3283 3525 22 52 68 1 82 13 659 2964 5 1 82 8 87 20 96 9 18 6 235 36 2124 1206 41 95 82 132 2646 1772 9 899 6 336 30 97 2514 4 1046 413 3 2891 170 3 161 8247\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35 1 898 29 366 1864 1323 7 1 3063 3 4411 7 1 4855 4 1 3 127 81 22 377 5 26 1730 35 1 898 29 366 1864 1323 7 1 3063 3 4411 7 1 4855 4 1 3 127 81 22 377 5 26 1730 35 1 898 29 366 1864 1323 7 1 3063 3 4411 7 1 4855 4 1 3 127 81 22 377 5 26 1730 35 1 898 29 366 1864 1323 7 1 3063 3 4411 7 1 4855 4 1 3 127 81 22 377 5 26 1730 35 1 898 29 366 1864 1323 7 1 3063 3 4411 7 1 4855 4 1 3 127 81 22 377 5 26 1730\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 96 1 21 6 245 10 1082 5 2055 1 2272 66 37 78 7411 896 1 21 1082 5 3673 48 1 1908 184 1617 12 1155 5 348 1 234 48 33 152 8245 8 88 20 70 2 935 312 4 48 10 6 3547 22 19 1284 6509 4 13 150 24 97 417 3 33 22 327 1098 54 24 71 327 5 70 2 572 4 75 33 793 62 52 3755 300 127 7849 22 39 105 3755 5 26 1979 7 2 21 17 10 54 24 71 84 5 785 1 212 67 4 2453 323 240 500 94 399 10 380 3122 77 296 179 19 4842 7 1 8338 4588 449 33 87 43 4655 19 9 1447 7347 4476 5 878 19 500 72 190 24 2 7695 3138 43 1393 94 399 1752 2183 16\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 1 232 4 21 458 45 10 61 89 2087 10 54 229 376 5430 3 4545 2740 195 11 8 96 38 194 9 28 6 169 5 26 6642 28 1393 42 17 15 58 1384 3198 10 2440 32 1 202 4790 4 578 1791 7 2 280 27 6 38 910 172 105 161 3410 3 14 2 1122 51 6 58 1300 189 122 3 1 304 2611 6875 7 1 346 607 280 4 31 5033 4342 6 1 59 353 7 1 21 603 278 8611 48 23 228 637\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 814 94 765 1 103 19 737 8 636 8 57 5 64 9 18 16 5450 9 18 6 2444 8 2165 133 110 8 2474 354 8006 2 6524 378 4 133 9 141 468 26 52 13 777 402 445 15 91 7121 13 6 685 9 18 6 301 3 130 26 13 150 192 7 58 111 3228 5 95 4 1 82 13 8534 9 18 6 20 279 8646 13 46 91 108\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2343 2 586 1211 400 4068 1 377 12 641 3 2317 954 84 57 1 59 546 279 3706 3 27 12 3353 65 3 29 1 290 83 351 116 85 15 9 461 10 1071 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74 4 399 45 2 325 4 1 322 468 26 46 945 145 273 579 402 445 18 6 377 5 26 9016 7 1 195 1283 27 432 7453 8223 10 419 43 8658 3 5299 5 1 709 1394 30 1 744 7 1 158 25 435 2656 9016 3 27 2656 8872 1 4183 2000 432 2 1205 7 1 53 288 432 43 288 2678 2338 1 797 1823 432 43 47 4 3279 855 2678 53 123 20 3097 29 34 27 419 43 579 153 1337 29 399 17 39 43 6762 1 212 67 6 1852 3 276 36 2 2288 710 971 3 8223 45 23 83 24 1 2128 1 1514 41 1 3141 5 7284 1 786 1382 5 43 1151 7 46 46 91 158 53 177 8 39 1150 194 83 1810 19 79 5 99 1 967 1394 45 51 6 95 579 8872\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 8 56 555 1 18 57 71 274 7 1 4198 1 347 1306 3 8 56 88 24 3691 15 772 293 363 7 639 5 552 1 445 16 2 52 2186 145 1096 458 5848 275 228 26 4204 5 284 1 688 1 164 15 808 671 14 1947 3 835 65 15 1 106 12 11 7 1 745 552 2 223 85 989 8 455 11 51 12 1827 324 4 9 135 8 273 555 8 88 9667 110 8 63 59 830 10 228 26 2912 5 1 148 67 68 9 345 9 18 693 5 26\n1\t2741 4442 1981 12 58 3026 43 1396 3 5 8792 340 1 280 4 4442 667 60 12 58 1534 2 5883 3 143 24 1 16 1 2482 8 100 88 3258 1 185 9557 17 8 100 909 5 14 2573 14 295 30 44 278 14 8 12 655 39 956 1 21 719 1924 1510 2 918 1822 278 14 1 6580 4529 1753 2190 94 31 362 157 4 3303 6788 3 2427 146 156 971 54 229 8935 432 28 4 1 80 3475 38 6678 4 34 290 1 572 3736 2 163 4 2435 7 86 1597 938 599 85 286 480 58 364 68 277 51 6 128 2 507 11 51 190 26 2 346 4328 1156 32 1 471 2459 3 885 263 6 59 30 2 105 8830 3 20 14 935 14 10 130 26 1905 1604 1365 191 26 340 5 1 102 2479 16 1749 2 670 6243 9974 11 999 5 946 3362 5 205 86 915 3 1 3000 10 209 918 387 3 130 26 5381 894 10 76 3659 193 51 407 22 58 277 415 52 6662 4 450\n1\t13 4511 873 2673 6 17 7132 534 41 3398 41 3 1 847 554 6 396 3 630 4 127 922 6968 2473 7 1 10 40 2407 5 3 1 120 22 109 45 1056 4257 2639 4 1087 1098 4 137 1727 51 6 877 4 8095 17 20 813 3 5941 1 847 6 3 1262 9098 4478 69 20 2 163 4 1289 5574 1 6316 22 13 92 672 121 7 1 2484 706 324 6 74 9749 591 1 102 6386 5852 1209 6698 3 1 478 6 1111 854 333 116 1210 5473 45 819 165 592 13 1268 1329 11 8 591 381 6 11 78 4 1 155 67 6 303 12 308 3 6 195 2368 72 100 2510 72 118 14 78 14 72 321 5 1374 3 98 72 39 24 5 1942 1 9469 66 6 806 5 87 73 1 6915 234 6 37 1435 2835 10 6 1551 5 134 11 1 234 6 52 1435 1640 68 80 4 1 1681 647 35 22 16 1 80 185 6128 2188 120 9912 5396 810 161 5301 496 1901 16 81 3412 1639 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 252 9707 1378 5961 2 8842 1456 2 7001 3 2174 3054 1131 3 42 128 1 4132 938 599 85 59 181 36 59 53 185 6 28 4 1 1 91 559 1426 2 77 2 28 2749 202 196 457 2 4355 186 9 155 5 1 388 1320 3 99 41 3438\n1\t32 43 1098 16 503 36 80 2104 737 183 3538 2 1052 7 503 8 12 323 1685 30 110 9 6 2 18 11 1391 9061 32 52 68 28 3817 10 2182 43 4 1 80 3385 1687 3 1676 23 63 815 10 6 1258 5 830 9 234 197 117 517 38 1 232 4 7110 1687 8 165 32 592 13 92 18 557 14 2 4 102 8002 5160 11 22 1790 5 70 5 118 239 1715 10 6 46 1244 3 20 37 78 7 75 28 3749 3237 5842 77 1 398 41 1 4 1 6509 4 4649 3 17 243 1 103 1 1080 33 32 239 1715 10 2291 31 3314 8571 286 423 1900 11 6 1790 5 7 1 7589 10 7625 199 11 62 733 228 26 1 700 9664 7 1 1162 3 48 629 94 11 366 6 1089 16 17 8 100 894 11 33 495 239 82 3456 13 92 708 30 3 1 2255 4450 22 3359 4 2 5 1942 3 1451 137 35 112 9 682 13 8844 10 3 10 190 720 116 111 4 500\n1\t14 15 14 2501 6 15 49 1 102 413 735 47 125 7865 608 1 4707 6703 4 2 1301 4 4694 2501 1141 608 3 2 482 7946 2321 207 9360 5 1 6333 3 1 4694 16 46 264 8250 2 432 193 1 5683 407 13 6 407 3857 1084 608 10 12 1573 224 97 4 1 1859 871 3197 1619 16 122 7 124 36 3 11 419 2501 25 7662 94 172 4 5759 25 1773 1666 190 20 2883 17 25 278 4361 2 2513 3 1330 164 37 15 812 11 27 153 2951 2 9982 1 1653 2898 550 1778 213 198 17 27 151 2 53 2446 950 7 1 2367 1791 242 5 359 998 4 25 3 25 2628 15 25 7160 183 475 355 2 680 5 90 9177 3 4642 93 187 14 53 14 33 17 1 148 376 6 1 9746 15 31 313 1128 3 16 129 608 20 5 798 31 393 3328 9135 4863 16 1 5666 608 10 1267 15 548 589 197 117 4194 463 3752 1 147 710 305 6 17 123 2 5805 15 31 706\n0\t61 2 3022 2331 17 10 4819 9 6 31 2706 2188 3 102 4966 3 10 130 26 383 36 476 10 130 24 4664 3510 32 28 383 5 1 4791 1 21 39 276 4865 3 1256 6340 13 92 453 22 2054 340 1 489 1471 2 493 4 2550 367 5 79 36 10 12 36 33 39 1417 7260 7680 200 16 2 4514 27 380 2 547 2760 14 2 17 10 58 111 5 25 453 7 7787 41 1969 1 113 278 12 32 35 266 2 3803 3519 5901 287 35 40 39 71 7096 30 44 2471 4048 766 16 2 1186 3248 8 96 60 130 597 44 9418 7757 3 1229 52 19 44 7121 13 1601 7 399 86 123 7 58 111 414 65 5 1 1691 256 19 10 30 1 2706 4107 41 2005 5 26 55 1050 14 28 4 1 113 2706 124 7526 13 1964 852 2 32 127 708 73 80 81 8 24 3340 5 24 367 10 12 1051 17 183 23 1006 54 96 37 496 4 9 18 45 10 12 274 7 2539 41\n0\t63 64 62 8 190 2923 1188 1165 5 25 52 986 691 203 512 688 55 19 1 25 12 5032 19 1 82 1737 181 20 5 24 1685 6795 7 1 225 608 283 75 27 636 5 1 7612 15 31 10 15 120 2606 7826 840 8264 22 1979 5 2 1858 9563 5194 39 183 9485 1 246 62 5905 1345 4464 47 30 62 3 55 43 496 189 1 5900 3 44 7462 16 48 10 6 72 24 102 2641 16 1 2154 4 28 6278 2 170 1449 487 19 43 3 25 5428 4623 32 2604 2190 480 101 404 16 181 5 26 51 311 5 3131 7 19 25 32 85 5 85 3 70 25 1186 47 4 1245 8234 285 31 4524 1643 4 1 906 55 1 692 2084 2278 4 132 1097 255 65 386 204 14 8850 868 181 4289 6695 29 1287 6795 55 5 187 1 21 2 5403 15 1 5166 950 160 47 77 1 5996 28 3 34 15 1 4882 4 1 1449 78 16 25 221 377 1710 1732 25 398 608 3 5224 608\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 2 84 18 17 10 57 1 210 393 8 96 8 24 117 1 171 61 84 3 5148 360 3694 1 389 67 12 2733 3 2768 6 48 89 10 2072 14 53 14 1 18 1220 1 389 21 6 7766 30 1 2526 66 12 300 2 967 88 9 91 1905\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1970 266 2 1648 8912 19 1 329 7 6325 7 1 46 74 719 4 25 329 2 823 4 2 2035 282 6 758 40 25 4572 139 155 5 176 16 2774 3 33 652 155 681 52 418 1 67 4 1 2955 16 28 4 1 210 1235 3729 7 661 326 6 2 8622 2578 534 18 11 4936 75 1 4 1 161 3978 5479 8486 41 2200 1 3112 4 97 4 1 3729 93 4936 7 2862 129 75 1 2305 4 7 2 4483 63 352 3882 1 2059 4825 4 1565 2 1198 2 3800 18 20 16 34 17 16 137 35 36 2 53 1557 67 11 76 998 116 796 9 6 373 2 191 64 19 2 4146 4 28 5 1709\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 722 99 8841 115 13 33 175 394 456 37 9 6 2 3087 4 3020 502 679 4 43 811 36 31 362 18 7058 664 5 1628 17 15 364 5055 45 23 36 1 1326 2962 104 468 36 9 105 316 364 3416 7 9 115 13 1 623 32 822 893 7 2 1886 5 56 4608 1 5495 4 1 2968 298 416 32 7662 5 2847 6 56 695 1 980 15 1 2708 6 1233 300 20 609 17 128 2406 51 22 3159 4 1790 32 1 7662 1302 392 8046 3 1 518 2847 13 3514 39 99 1 18 45 23 70 2\n0\t1 263 40 126 667 3 403 188 81 54 100 1690 29 225 261 15 2 9458 4 1 950 621 16 2 287 27 1148 14 25 1898 6640 29 2 1 326 4 1 5395 60 76 131 65 14 25 7119 1327 29 1 27 440 5 5 25 7119 17 1311 257 950 6 674 15 1159 122 30 1727 1494 5784 3 36 2 34 125 1 711 7 2 1335 11 60 6 781 122 75 5 29 28 1746 60 152 3 196 77 2 3660 15 550 27 440 5 1203 25 3888 25 683 6 60 1304 42 722 318 60 1283 1036 60 153 175 1 711 3 844 1 13 92 18 56 1 410 3 86 111 140 1 223 1 523 6 3 4178 72 202 2117 827 17 721 517 1416 146 54 780 11 54 188 1095 17 34 1 1386 746 191 24 71 428 30 1390 47 5 345 36 79 77 283 930 36 476 4485 10 5 103 773 1152 19 949 1 7303 1 1041 1 8223 3 1 3050 16 3851 235 9 91 90 10 5 1\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 6 279 283 818 16 7188 1485 1103 4 294 10 153 729 11 3071 153 610 4960 25 1778 3 2742 22 1011 113 9876 7 2 558 15 2 325 14 5 704 776 217 112 6 1822 4 8243 3734 7\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 609 3306 4 2 7346 7 918 1707 35 6 30 25 221 7346 266 31 8281 35 25 3043 5 7378 2 8461 285 1 168 781 2026 3 3250 2628 22 46 5222 4049 19 1 7239 740 1 551 4 449 16 2 138 958 181 5 26 2 3125 527 68 9979 13 6254 294 3142 3913 2182 31 8437 3 4730 4523 8444 30 1 3 2553 4 1 2706 2825 1005 265 868 1583 5 1 1262 918 3712 93 16 113 5220 2695 16 113 2129 9 6 28 4 4589 2073\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 8 179 1 4133 12 573 15 1 1820 11 9 18 40 28 4 1 700 171 4 257 387 6726 83 1844 122 16 1 489 1252 45 95 28 63 90 95 356 4 48 1 898 12 1 272 4 11 141 187 116 1537 2 3813 19 1 1877 86 2 2146 189 1 2370 3 2 1471 86 418 142 1609 5076 116 6551 3 98 14 10 271 1231 77 1 640 10 39 151 58 2509 3 83 70 79 544 38 1 48 12 3559 1 59 177 11 151 9 18 3097 6 6726 2423 692 84 2106 3 25 1514 5 26 211 7 1 4149 45 23 139 5 2 2965 3 9 6 1 59 18 5 1775 552 725 681 4821 3 39 139 155 408 3 473 256 43 177 19 1473 3 49 43 879 2080 23 3740 39 134 1 8889 177 11 255 77 116 2867 3 51 23\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 637 1 9276 2 203 108 29 113 10 89 79 1056 2248 32 1197 29 2 342 4 13 614 28 1 4140 7684 3 276 29 82 4251 4 1 141 27 6 316 1558 1 121 6 1233 17 20 1051 1 67 63 26 595 240 29 1 2353 136 28 6 242 5 70 835 5855 17 1918 1 182 28 7848 51 6 20 78 5 5084 824 181 519 5 24 71 1253 5 1 263 197 13 64 9 18 10 45 23 24 162 52 240 5 1690 36 3005 1 41 288 29 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1403 6250 191 24 71 39 38 1019 30 1 85 27 89 9 135 136 10 40 2 156 1515 2103 3 97 360 9120 4 20 39 1 263 17 5291 1131 32 25 74 324 4 9 441 2404 1037 6 2724 10 6 7779 11 27 54 1131 32 1 7242 2839 8840 66 6 17 27 1123 389 494 168 15 1681 1041 98 876 155 137 171 3 791 9894 199 20 5 16 1632 11 4788 2164 6 2972 172 1013 23 175 5 64 28 4 1 226 4647 4 2773 1899 9 28 3 99 2404 1037 3438\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2338 40 881 32 782 5 9 4186 7 1 2232 5061 13 1149 42 71 358 152 2455 220 9 21 270 334 7 2338 40 643 154 226 635 19 5463 1170 571 32 185 1 21 380 19 3506 35 27 66 27 1123 5 652 52 537 5 209 5 5463 59 123 2338 196 25 27 93 196 25 752 155 5 5463 60 615 47 48 6 3 82 374 1088 5 564 2338 308 3 16 93 70 5 64 43 4 6237 3664 13 1149 2817 40 71 5 1 2232 251 16 2 223 85 30 81 812 9 8 338 713 5 652 47 48 2338 12 403 15 25 3 151 1 251 52 211 68 9 21 6 56 2 5 6 20 1 7 1 358 128 1834 592 13 1149\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 531 328 5 3408 4 581 17 8 63 20 241 9 165 576 1 263 5960 1 494 6 1 121 46 1 3263 39 1853 3 1 593 3 2216 6 29 6837 13 150 83 320 1 226 85 8 159 2 21 169 9 565 2453 167 14 27 424 228 39 24 643 25 895 14 1108 14 10 13 92 1444 4 1207 12 58 527 68 9 3095\n0\t5038 2378 16 5 1137 1 5962 4 1 1908 3 6 286 174 7872 7 21 15 4057 4 11 9 151 58 356 220 98 2 88 187 23 899 3377 13 6144 1 119 685 78 1 2906 271 5 7146 15 25 2640 5 27 876 15 122 2 1741 4937 4017 20 253 9 35 383 122 285 31 3 35 1371 122 1491 28 4 9 6 2 2599 2706 2906 3 745 14 2 33 70 5 149 43 1119 374 35 87 162 7 1 158 889 15 2 11 1 2599 2706 259 789 1491 3 35 380 1799 30 848 81 244 2 91 259 37 27 40 31 3 2301 145 20 5183 1 119 1395 7904 6830 15 1 5038 4913 5 147 887 15 1 5038 16 31 3 98 43 82 691 629 3 98 5889 142 1 621 3 1 21 13 755 594 77 1 21 28 56 560 45 235 40 3136 30 1 182 146 40 653 17 23 173 26 29 34 732 11 10 3291 3 220 80 4 1 589 270 334 463 183 1 41 317 56 507\n0\t135 101 924 2601 23 45 317 1674 160 5 11 1181 459 8340 13 1964 3134 17 76 10 209 14 2 5 261 11 5884 2 163 4 4109 4206 3 4509 80 4 126 22 5951 4109 7 1 3085 8 563 11 183 8 159 1 135 10 143 56 1851 31 5990 4 11 1441 14 136 1 21 3525 5 230 7537 4908 58 1224 835 160 19 924 266 47 14 10 54 7 1 13 31 26 37 5 6730 49 27 3019 65 25 94 6730 5460 19 122 94 535 663 49 1 259 367 27 909 122 5 875 1639 41 1 326 94 25 329 341 65 1 2863 27 12 770 11 307 54 26 37 806 19 13 743 184 465 6 257 9 259 6 2 20 73 244 1544 7 127 41 40 2 8599 41 276 36 461 244 2 27 153 946 838 41 55 56 328 29 127 27 40 1580 45 8 57 5 4158 7689 27 511 90 10 576 1 13 1964 288 890 5 48 1469 1752 123 6893 17 3675 3707 142 1 2688 6300 153\n1\t1112 4 4 8564 421 1539 2 1313 9 6 31 313 4 3924 1199 7 1 21 1030 692 9998 14 3859 3 193 58 618 6 2 700 5104 1539 13 777 2 2438 7416 15 3 3423 642 31 1303 570 5986 9 6 2 933 8564 18 17 72 149 5 4919 1424 7 112 15 2 2826 3 55 9 85 385 15 1 431 7 15 9662 1122 5 26 1 59 28 66 4919 6 9217 9826 1835 27 6291 745 22 1 113 8564 249 600 136 7 1 616 6 2681 9826 5052 14 2 204 1207 213 2 3 6457 7760 30 17 6 31 3 2185 109 30 2574 2 425 4 1084 6 3478 293 798 5 626 3169 14 1163 754 30 280 14 7 1599 6 2 2661 353 15 5315 172 4 895 3 15 375 1246 132 7098 1 6646 3 1030 171 15 1442 2137 9342 738 2349 1 18 196 2 3709 1190 600 1 1588 3180 3 4949 429 22 109 1 1729 572 6 109 470 30 745 206 4 943 4916 42 2 191 64 16 1 1777 4238\n1\t8910 4 883 37 10 3 1 111 102 2055 154 287 3771 889 181 17 1 52 8 96 4 10 1 52 8 853 11 10 936 255 142 14 2 2038 103 4773 8 192 4574 75 12 446 5 70 295 15 110 1 18 6 46 548 3 496 10 6 109 2878 1 121 30 34 6 74 69 7232 3 1 265 6 1316 3 2740 49 8 96 4 194 102 4714 57 248 146 53 5 1 415 33 310 577 33 3023 2 287 7 1 1591 395 9294 2088 35 544 44 18 895 15 28 4 1 80 1502 7 29 717 16 1 2659 15 44 766 912 60 57 20 107 16 102 33 214 2 164 35 12 475 446 5 70 2 3 33 3 9461 170 3 46 1774 1240 28 4 44 362 412 62 3196 15 9 267 5 1 1697 3432 7 2179 8 192 20 273 420 36 5 889 3 3042 7 148 157 3 9242 126 125 16 5194 17 8 57 2 53 85 133 1 18 3 102 719 202 7833 69 10 12 100\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 15 7 1 462 6 332 8323 5 1288 2 469 7 2882 7 190 26 31 9015 7 1 2125 17 10 6 2060 1903 7 3572 5 1 3844 1827 6 2422 5 11 5717 1 4904 22 39 11 69 22 20 695 674 1803 8156 1430 1304 244 722 94 34 773 1308 2 163 29 25 444 355 1390 16 10 3 143 24 5 47 16 1 1 3062 274 7 2539 6 166 161 166 161 249 47 1 166 161 166 161 1455 1430 196 433 7 1 1863 69 9255 230 5389 11 72 100 159 19 808 19 1 103 69 8 139 1 706 22 710 4774 69 5045 3 798 1 1 8 1837 154 888 1261 6 1066 5 1430 537 22 8397 565 1 233 11 9 4848 2183 14 223 14 10 114 191 652 5861 5 137 35 11 23 100 1621 319 30 1228\n0\t28 938 4 53 18 85 5 4800 1 594 3 2 350 11 12 8188 3396 5 134 8 12 4769 1558 274 29 2 4133 429 106 2 526 4 1185 417 22 9 18 2440 32 2143 922 253 10 20 279 4498 1239 51 22 119 9665 3914 46 156 4 1 669 83 55 4000 637 126 9900 171 63 634 279 2 37 95 168 11 24 1187 2197 6060 8165 1 1090 4 1 21 6 46 6905 3 2304 5 99 80 4 1 85 253 1216 2000 46 914 5 46 156 3917 16 1 1754 2638 3 80 6728 1 393 6 301 7087 73 4 75 10 741 1 506 498 47 5 3 7087 73 1 927 6 39 7226 5 1 124 8710 10 6 1 59 18 11 8 76 117 134 6 1 210 18 8 24 117 1146 3 180 107 2 13 3986 39 36 2 91 1399 23 54 24 71 34 1 100 1 398 85 275 2080 23 45 23 175 5 118 2 1085 23 76 26 5751 1453 23 56 83 14 23 549 7 1 2738 3344\n1\t16 49 55 294 3 61 39 355 9543 3 6096 834 12 128 7 2442 13 777 240 5 5233 1221 48 31 1880 1 4 2 1414 1324 462 6604 63 24 19 1 67 101 8242 180 107 102 2639 4 9 21 2649 30 102 388 3 219 126 3 292 1 1854 1933 554 6 202 102 264 748 4 348 102 46 264 4260 341 1 119 8749 275 2666 845 649 286 2 957 441 66 4203 11 236 174 324 47 51 1 598 21 66 40 649 1 67 4 102 239 4940 35 2321 9 1799 32 28 174 7 639 5 62 518 2894 1 1885 1736 649 2 67 4 1136 35 22 239 2737 4 7 1 1736 324 561 5106 25 1327 29 1 136 7 1 706 324 711 1037 5106 25 379 29 1 4681 8 2923 1 3 1 324 440 5 105 78 119 77 48 130 26 2 641 4801 3 43 4 1 22 2 222 13 9008 7 95 1 1489 6 2 2038 158 3 54 90 31 4528 5 11 82 84 1139 216 66 1008 5522\n0\t6 20 28 4 450 34 10 123 6 90 23 1116 1 3022 124 34 1 5521 13 1133 6 3 3372 11 1519 3780 2618 2880 244 198 2 7 1 210 4 25 703 1923 32 9040 1 82 250 302 8 405 5 64 9 18 12 664 5 75 78 8 381 1631 7 6369 141 7 516 1 60 6 39 14 2211 3 23 63 348 444 2 53 2922 17 60 12 929 5 134 43 167 1230 2131 3 1 60 12 340 30 1 206 12 323 1319 180 59 107 5181 7 3 27 266 1 2544 166 129 6169 23 175 5 1620 77 8 497 10 1501 244 2 53 89 79 812 550 51 22 43 1054 1035 29 709 3148 11 59 7149 32 1 158 7 50 3222 292 51 22 97 824 5 8 191 134 11 8 214 512 323 2926 1 102 2294 759 6271 7 1 668 207 20 144 72 139 5 64 6997 1133 484 13 677 22 373 527 1133 124 47 1057 3 9 28 407 213 17 10 93 407 339 26 8069 235 660\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 1 332 210 391 4 930 180 117 57 5 99 69 152 10 12 37 91 11 8 39 57 5 99 10 13 92 1983 6 91 42 7311 42 20 55 542 5 1 1983 7 207 75 91 10 424 13 1964 2275 125 1 233 11 43 8898 1404 152 40 256 319 224 5 1042 9 19 2388 17 8 497 4541 70 52 319 47 4 10 11 744 1 2591 4 253 10 63 20 24 71 52 68 2 156 3302 13 777 37 489 11 2 897 88 24 89 592 13 8844 10 3\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 46 837 21 11 1008 120 35 87 91 188 3 35 369 1676 36 4519 3 2 2277 16 2287 1 201 6 46 501 236 877 4 1357 3 1791 196 1 282 3 25 1489 1543 2 7 1 714 180 107 9 21 375 984 3 198 99 49 42 19 41 8411 496\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4229 29 1 315 2868 2967 4 1 362 460 7 1 462 1538 11 4 2 5804 35 432 2 9882 94 5266 90 103 975 2 1330 3257 385 15 2157 3 59 380 1 1567 2 20 78 4 31 651 737 17 60 15 1 410 7 2 20 78 264 32 48 1539 8404 12 403 29 9 387 1 21 12 3 6525 14 2605 286 128 1180 5 149 2 1754 1163 245 42 1674 2 7 7602 21 2994 3 1419 1 1376 4 82 104 7 9 1818 7138 32 4577\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 53 177 38 9 21 6 11 10 1421 818 69 23 83 24 5 24 107 1 1766 831 9 6 93 42 1003 10 54 24 71 327 5 24 2403 2 156 4 1 215 120 7 1 147 67 3 107 75 62 486 57 9818 14 7 1 215 6 313 3 1745 1 124 113 709 529 14 27 1035 5 934 15 2304 3 2685 1650 17 1 607 201 6 20 14 627 14 7 1 215 108 6 5 26 19 2 2950 525 5 899 1 129 19 3 932 31 215 967 17 1 21 6 1391 3965 3 1419 1 6091 4 1 215\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 2 10 6 167 13 252 6 2 53 19 1 306 67 4 75 2 658 4 1180 5 582 1 1423 1793 397 7 3 1 4 1 344 4 1 1423 1793 5 13 252 18 213 425 3 10 88 24 71 2 222 1 113 185 4 1 18 6 11 43 4 1 22 262 30 13 614 317 942 7 622 4 4170 3 21 9 6 2 18 207 279 2\n1\t101 2 5734 4112 7325 7713 9 6 100 11 78 4 31 73 2414 794 5203 105 2593 13 5264 2 103 105 3 9311 6 243 14 1 7697 4293 4 488 15 3055 5 1996 1018 266 31 8 63 134 59 4167 39 134 1 4930 773 8005 3 8 76 597 50 1725 2373 34 50 3 751 512 2 2345 4967 7 639 5 186 50 334 29 116 601 14 116 4 611 340 11 145 2 2253 706 23 228 20 149 50 1857 105 17 42 51 19 1 4674 2799 340 75 386 44 895 40 71 37 3980 28 228 96 10 6 2 103 105 521 16 1996 5 186 19 2 280 66 1 426 4 651 60 228 26 179 5 245 60 123 10 15 43 3 483 9 282 76 139 13 677 6 1594 32 2 2806 4 7903 4113 69 3 1037 32 1 8730 3632 3 1954 32 1 13 677 22 375 2103 3 8 80 4 1 111 2086 14 2233 1 151 4647 49 10 56 153 321 2339 292 29 225 2 342 4 127 22 46\n1\t14 1763 8623 1373 3395 16 1 344 4 1 18 3 6 5 2951 2 37 25 118 106 27 705 1687 4 8046 3 7239 905 5 186 125 919 3 49 27 615 47 11 25 4729 1327 3 6 246 2 1971 15 174 4 1 170 3901 7 1 5065 27 475 1 18 98 498 77 2 8605 4 3 2 1222 2493 17 207 20 667 42 2 91 51 22 4181 3 6830 3 1 18 1047 29 2 327 7341 1 293 363 22 401 4744 954 538 198 7 34 4 776 9969 72 70 5 64 43 1102 100 107 19 2 18 1448 45 236 235 5 4522 2354 5753 6 1 4 1 1650 30 1 74 594 4 1 18 23 118 1763 8623 76 90 1 2248 32 101 1021 3 5366 5 101 2 9334 7 1 714 3 1 393 6 2 222 17 480 490 6118 164 6 128 279 2034 45 23 175 5 118 48 2 323 91 18 424 98 351 116 319 19 1543 1638 41 1 55 527 1 883 15 2391 195 11 6 47 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 173 70 3834 693 5 2031 1095 6 1459 19 30 4684 52 1134 3675 966 107 194 159 194 1527 778 420 24 5 134 11 2452 693 5 899 576 1 1895 3543 185 4 25 500 3 70 47 4 1 1895 3543 51 22 102 211 546 7 1 212 108 8 339 55 1812 1 226 715 1452 8 12 355 7374 218 6 31 6398 135 8 87 531 335 1895 3543 124 11 24 1 166 994 17 9 12 242 105 254 5 1 716 22 46 3176 814 1961 437 9 6 20 2 21 11 80 81 88 56 70 6873 17 43 2723 37 646 26 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 678 3 45 2325 4183 1104 2 9258 56 1495 111 105 78 976 1349 2989 3 39 2 426 4 7750 8 76 245 11 732 4 1765 556 19 62 221 87 24 2 2762 3266\n1\t93 40 2 1442 3762 1 7 9 441 385 15 1 1119 478 363 4 90 9 67 2 191 16 596 4 4602 3535 1 2638 3 570 441 7 66 2 9915 203 353 196 8246 30 1 27 6 1056 8130 98 1 508 49 10 255 5 1560 3 17 11 1 4 1546 623 52 41 364 656 236 55 2 103 974 16 2234 7 9 67 14 1 2689 6127 5 8941 1490 1072 7 1 6495 80 1201 1656 7 9 226 5242 6 1 1761 4 1 1612 8412 1 32 1706 407 6 28 4 1 97 4856 7 1 7 115 13 4255 894 38 429 11 813 76 26 3461 3281 30 382 203 4238 8 323 241 458 15 2 222 4 9 88 152 26 28 4 1 156 104 23 3 597 2 184 1244 3 1683 203 36 10 130 496 4869 28 1988 103 9 21 190 190 20 457 95 3874 26 1852 15 11 9 1967 28 6 2 46 2850 3 2256 2790 1575 1222 11 40 165 162 7 1205 15 9 158 571 16 1 462 10\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 71 2 325 4 197 2 8434 32 1 2351 8 56 481 2783 50 2259 7 1 431 226 4514 9 6 2 148 465 11 237 105 97 2752 24 3691 15 3 1811 5 934 1566 1 551 4 2152 6585 7 1 74 719 40 71 30 2 1058 1800 642 558 600 8273 3 9632 22 93 48 12 1 1734 4 6075 9 915 729 3 98 47 19 1 756 63 934 15 202 95 915 729 571 9 6 10 371 41 83 3684 10 398 290\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1763 115 13 5 26 763 6 612 32 1641 3 748 47 5 90 2 147 357 7 500 188 22 160 109 16 35 6 3297 3244 3479 3311 142 1 7304 49 1 6489 3723 19 184 188 473 565 1 5939 6 3 6 2366 3 9 85 60 6 3446 5 90 11 60 198 13 542 44 280 14 763 3 308 316 6 1 3501 4 1 135 154 178 15 44 7 6 279 133 7 9 1065 5409 66 811 52 4 2 3640 4 1 817 158 243 68 2 147 2876 13 608 4354\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 279 283 308 16 1 453 4 3 8713 1498 1 8194 2093 7 8999 15 1 8194 2093 4 9 135 22 51 3804 29 2324 7 9 41 6 51 2 52 5087 1381 8713 6 2 808 35 6 201 14 31 258 7237 1223 42 299 5 176 29 25 264 2745 5217 7 48 6 56 2 2188 1223 20 78 629 16 2 223 387 17 98 72 2033 11 4966 1207 6 1 148 51 6 105 78 17 11 6 3459 16 1 448 16 9 4180 4600 276 56\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 34 1 598 104 36 723 4383 4 1 822 16 1632 9 18 1421 47 14 1 7009 4 1 10 6638 2 85 49 218 3958 100 274 19 1 598 70 125 110 8 495 139 77 144 73 37 97 508 24 6471 1 97 1318 11 151 9 21 1051 8 24 5474 1 3815 3 24 5016 1 1369 140 66 1 598 3 10 1373 14 10 1220 30 85 3 30 164 3 3 55 193 8 118 42 283 4304 434 19 2 3 49 127 456 22 284 115 13 13 2136 13 6998 180 23 3 13 5676 1 11 89 13 2 138 164 68 8 7806 115 13 150 1604 29 172 4 3575 70 8073 3 261 35 666 33 83 6 2 1 2552 4 1676 740 10 6 1 1183 4 2 84 108 36 1 393 4 174 84 158 4 9880 3\n0\t6 1 4307 6308 22 39 13 3819 6618 30 17 9 114 20 2760 1 306 2447 4 205 13 4537 3819 53 1484 17 5 1 13 3819 962 1 210 1484 4 1 13 1112 9 12 31 299 1484 5 1775 17 73 1 250 460 4 205 7036 61 602 7 1 250 6203 59 2 35 784 19 3 6 229 2 5158 1 35 6 1674 2490 14 31 13 3819 5382 1 113 1484 4 1 2356 3169 3370 2 32 1 4 2 2423 3 140 2 1974 4674 3 2385 12 77 1 66 1478 5 26 483 13 1966 1302 12 1 2452 1209 12 1 5121 3 3247 5105 12 2 7 1 34 460 7 1 250 2592 19 1 4 218 61 5080 216 94 1 571 16 35 937 3219 2 19 3 76 6305 26 340 916 76 1110 5 756 6435 3 307 8263 5 2928 1 3 4 218 5 64 1966 1302 47 4 916 1 40 248 78 828 2 1484 7 66 34 61 758 5 28 54 24 71 1824 3 48 117 726 4 3 6175 164\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 3154 579 33 472 146 32 50 2113 5323 10 7 31 9 18 12 37 91 8 405 5 139 408 3 998 50 7500 3 1717 7 2 1 201 12 464 579 10 247 218 10 12 3 2037 2 5030 49 12 1855 49 12 2 1360 33 100 61 579 1855 12 5965 3 12 31 49 114 4649 4487 27 100 114 579 195 83 70 79 46 4264 3 236 162 540 15 2 103 17 10 57 58 334 7 9 1540 1 59 177 53 38 9 18 12 1 4669 183 1 18 3 1 182 6950 10 12 2 351 4 319 85 3 5638 925 29 34\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 6 80 1577 38 9 21 6 20 11 416 848 36 1 28 2769 152 3659 17 11 1 1387 6 33 22 3091 47 30 2916 36 3 374 15 1408 9346 30 712 2 874 1525 443 4568 2 1420 3482 1147 3316 7 2472 199 77 1 486 4 102 417 35 24 43 1636 15 298 2860 292 72 662 117 553 610 48 6 516 137 33 291 5 26 687 163 4 81 812 298 2860 37 3070 2 185 4 23 39 153 241 33 76 117 1720 47 1 46 109 179 47 5931 19 1580 1393 1 443 168 7 1 416 285 1 1363 22 89 34 1 52 1127 16 11 2560 23 173 241 42 56 3 11 42 56 3136 1 874 1525 443 4568 93 2182 1 11 9 6 20 2 4503 141 2 609 312 340 1 915 3821\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 9 74 310 827 50 1508 758 10 72 61 2275 30 10 12 37 264 32 235 72 57 107 1448 8 12 288 16 2 3656 18 226 1925 3 8 214 1060 702 1 1009 6 1424 8429 3 8 192 619 11 1 2581 128 292 10 6 20 538 10 6 128 46 452 33 130 2373 9 10 6 2 7649 16 1182 847 496\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 56 1316 18 11 40 43 5390 5 1 3773 7902 7640 17 6 446 5 80 4 1 290 1 1003 130 139 5 1 102 7672 2611 6 205 1316 3 9384 6 205 1805 3 1 1300 189 1 102 6 46 3629 13 6254 2611 1123 43 5 65 1 2946 3 93 1664 1502 566 168 7 66 63 8 338 122 2 163 138 204 68 7 1 496 4499 3 11 487 40 2 958 69 137 8955 137 566 3 2 684 7592 20 3133 13 3562 8 63 90 10 327 135 50 6070\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 76 20 1458 26 5630 113 267 4 1 3002 2 156 105 97 3 119 9665 618 72 22 648 38 2 18 106 2 6036 3 2 482 9648 390 4714 37 2 156 1513 209 14 105 78 4 2 4802 4430 6 313 7 9 1538 881 6 1 1974 578 2164 954 280 27 12 1130 45 27 63 4778 9 232 4 538 8 449 27 2236 5 90 8221 5881 6 93 313 14 826 1368 180 284 2 156 1332 708 7 204 38 449 1932 17 8 179 60 12 169 53 14 2 6842 15 2 534 601 3963 1052 51 22 679 4 53 14 4430 25 111 140 3 2 156 168 106 8 670 1436 6754 50 435 954 670 433 10 49 6337 3764 411 14 2 78 36 174 6036 1073 1 1569 63 26 46 8296 45 23 22 7 5 11 26 3023 5 335\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 1 18 518 28 366 19 2240 3 88 20 241 75 91 10 1306 8 531 335 91 484 17 9 28 12 37 11 10 247 55 2072 43 4 1 4856 4 9 21 1483 1 2271 265 66 6 1506 372 533 1 141 1 5191 293 363 6768 275 6 383 15 2 1653 33 473 1504 3 6652 3 1 3094 1014 1 505 7 698 6 48 8 230 2448 1 880 8 143 3082 95 4 1 171 7 1 141 3 8 449 11 8 100 24 5 64 95 4 126 702 1952 8 354 2424 9 18 1623 23 63 149 5313 8 173 830 2 388 1320 2844 9 39 37 11 23 63 825 5 1116 538 124 94 283 9 3786\n0\t82 271 3 196 4136 1 28 11 6 160 155 5 25 606 2296 25 72 22 98 15 1 537 14 33 1346 5 1 5166 287 11 33 22 4237 35 643 730 32 101 747 38 62 4413 33 1023 5 352 1 287 7292 15 44 13 92 1068 178 7698 1 2947 4 1 18 49 1141 1 259 1000 29 1 27 12 93 4667 41 1136 5 1 936 1 537 853 27 6 2035 3 348 1 287 38 110 60 1036 5 64 10 16 992 3 515 1225 77 1 3207 5271 1 537 90 122 582 30 5215 5 597 122 4665 23 118 106 9 6 13 5944 1 18 1071 723 460 47 4 3 207 101 16 34 86 1 668 868 6 109 1613 42 128 3245 854 51 22 43 443 3407 11 176 3 43 4 1 748 22 248 530 1 119 6 4178 51 6 132 2 177 14 1774 6272 4 17 15 1 1639 2765 8 173 830 1 7660 2088 54 186 142 36 11 7 1 750 4 1 2016 8 1266 209 13 3885 1628\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 431 4 4921 6194 5961 2 1414 3062 15 5172 121 3 2364 8508 31 4367 5 1 362 7298 2608 703 679 4 7298 1424 19 2 7147 1424 7 2 599 200 810 4 2 85 2696 4 2 3984 3466 312 4 48 1 958 54 1142 772 36 16 2479 41 3581 7345 2 9085 16 291 298 5 55 1 234 4 6 105 78 16 75 1985 49 27 6 9495 5 1 234 4 7298 12 242 5 139 1 4 11 85 451 5 1110 5 2 1561 1 11 27 40 9545 3 33 139 155 2193 3 6 195 749 3 1 20 246 8850 661 41 31 6718 37 7298 3426 122 155 15 1 1184 13 252 4921 6194 153 24 2 1423 4979 220 7298 2608 1436 7 10 6 28 4 25 226 207 13 1268 82 1257 164 4649 482 6 2 35 1 85 25 2863\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 5832 8 241 51 6 58 302 16 9 67 5 26 8242 10 6 1070 548 779 123 10 24 1055 4939 1 18 6 46 109 1 453 22 401 1090 3 74 4575 1 67 3548 7 31 1930 111 11 1834 3208 17 29 1 182 9 18 3 6 5 8 354 5 58 461\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 23 335 217 34 1 598 1569 4 1 387 98 9 103 2067 6 332 13 6 2 148 13 150 159 9 15 417 19 249 49 10 74 310 827 3 86 382 5324 24 6979 2 185 4 257 716 16 1099 1166 3 76 87 8 24 10 19 2581 3 10 6 6129 13 7254 43 1755 22 605 10 105 13 150 173 241 10 6 195 59 1492 7 1 199 4 3 20 7 106 10 130 26 31 3785 185 4 1 622 4 598\n1\t0 0 9 18 6 20 38 3560 41 20 55 2 18 23 175 5 64 5 1369 1 290 9 18 6 2 1975 2 2760 4 306 112 11 63 59 209 32 6857 28 481 352 17 26 2610 1768 30 288 29 9 108 72 24 375 4 112 11 5 1 1548 4 9 108 51 6 1 8058 112 4 851 11 6 1325 6009 112 1 683 3 438 3 3 6 51 6 1 112 7 2 7411 136 1 250 129 15 25 5367 27 3155 140 6009 112 11 27 1371 25 379 52 68 27 88 117 27 789 11 27 3 25 379 22 28 3 63 100 26 2958 23 24 1 112 4 583 3 1 374 7 1 231 209 371 3 853 11 162 422 3291 571 11 112 4512 2098 112 6 20 112 1013 10 255 32 3429 73 851 6 112 3 112 255 32 6857 771 5 275 3 369 126 118 23 112 450 112 123 58 53 1013 10 6 340 5 2877 8 9 18 63 8270 3 720 1 486 4 307 35 1148 110\n1\t66 56 4831 48 8 175 5 1296 11 42 2 3021 1656 16 463 28 45 6 602 7 1 34 42 2 707 5127 1 14 16 1 1176 246 43 15 1 1176 32 7 10 228 26 1 8673 17 8 83 356 95 51 14 1 1921 4421 61 1080 215 5 437 14 31 2673 325 11 1274 14 1 8243 113 2673 8 117 219 55 195 1938 8 87 24 50 6112 38 49 8 74 159 1 17 195 11 8 219 1 141 8 308 316 50 6627 15 834 3 24 298 1750 16 62 958 104 94 1952 1 113 834 18 286 197 79 29 1 478 4 62 759 29 1 750 4 1 18 3 42 2 1069 11 33 62 978 3645 5 90 10 55 828 896 42 491 11 33 152 2074 1 91 559 176 1408 15 47 253 126 2235 510 7 1 477 669 12 1437 35 1 91 559 22 3 59 1 2088 282 232 4 4960 1 276 4 2 91 129 7 1422 4 75 834 4373 10 4860 90 1 91 559 176 56\n1\t5 2373 62 2 2094 2119 33 378 1486 5 2 580 707 5 947 47 1 136 7 1 2977 33 22 3743 5 6858 3 101 39 28 4 3174 4 82 2557 3479 9346 292 20 2 196 997 65 7 2 3250 29 2 1086 1559 2168 444 9778 65 16 3225 30 1 9455 17 6 2052 29 1 226 6216 44 53 245 6 11 60 214 5044 29 1 2819 11 44 3 44 231 1 1617 5 1110 5 62 4399 5 357 125 702 1 4805 214 6415 8570 8520 27 432 9957 3 270 1365 16 1 8105 27 432 2 46 1086 7986 17 11 59 151 3291 527 14 27 3944 432 52 6169 3 832 5 302 1566 27 2019 1388 15 1 1048 188 7 157 11 319 173 3 14 1109 308 316 498 1 4674 19 8520 30 5994 2 6968 4 5 2410 297 27 7199 758 5 25 8520 1 4882 4 34 2098 1081 2098 3 1499 15 34 11 7313 27 3316 7 2084 1 32 11 4458 27 308 316 1843 5 3 31 4870 16 1 7 500\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 684 1545 3137 9 12 2 1257 3 1707 461 8 179 11 1 523 88 24 71 4684 5 2031 65 1 570 2771 2 222 1824 17 11 6 20 2 568 2115 688 5819 3 1133 5953 187 327 453 3 22 14 1515 14 1218 127 22 102 4 50 430 1041 3 8 12 39 1096 5 64 126 201 14 684 7672 8 449 5 64 126 201 7 52 5203 13 3616 9 18 495 720 116 727 17 6 6 4502 2624 3 20 2 91 177 5 26 29 513\n0\t169 2 222 11 3902 561 9201 25 3312 4 240 6 48 151 1 164 2 645 19 1 4728 27 255 577 8308 27 153 5 1 1955 1105 541 3 27 748 25 8082 19 1 237 303 14 109 14 1 237 2401 3 16 53 13 5384 1 21 554 6 2 7 698 8 54 20 55 637 9 2 718 17 243 39 2 1894 4 133 197 2 6 58 264 32 133 2 19 2 6332 3663 19 51 22 58 443 58 58 51 6 58 441 58 13 1 397 6 3806 5070 6 464 3 519 72 481 785 82 268 72 481 785 1 1389 11 22 101 30 137 7 49 6 1874 1550 22 72 1747 5 64 1 4042 4 1 410 571 49 72 22 340 2 1911 383 4 25 379 35 791 154 28 4 25 8607 3 15 4650 154 85 72 64 4341 13 150 481 354 9 21 3 54 134 11 317 229 138 142 3698 47 25 6332 8607 19 41 6904 5 1876 5 7 1 13 47 4 394 145 7 2 5567 1646\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 381 1 230 4 1 567 156 1507 17 7 8 12 1 237 105 97 802 4 1791 4895 1323 32 974 5 5331 224 140 5680 3 224 1 5563 3 14 97 802 4 122 288 3 419 79 1 1418 11 1 67 57 1868 71 928 14 2 386 3 98 5496 77 2 865 14 2 4 112 189 206 3 376 4954 1 13 499 228 24 71 52 548 45 95 4 1 120 57 235 5 134 11 8 1808 455 367 7 97 82 124 1704 41 45 1 393 247 69 69 1 28 8 57 277 269 77 1 21 16 31 1210 5476 29 225 86 683 12 7 1 260 334 69 10 247 116 1446 5344 368 6810 7442\n1\t2177 4 1 3250 2752 35 7074 5 369 122 37 11 27 88 335 157 15 25 170 585 3 4111 742 4 218 266 2 1004 1855 35 451 5 1 15 1 919 17 1 344 4 25 175 1 6036 3789 36 80 1004 4023 7 1 7490 3 6618 5 1 1262 4590 11 1004 123 20 1 28 164 35 40 162 5 87 15 1 701 4 1 379 3 585 4 1 950 136 174 1 950 15 1809 123 20 351 2 330 7 9 960 1251 32 1 532 3 585 2057 7 2 606 3310 928 16 1 2002 1 210 177 11 270 334 5193 7 31 7134 49 31 4 1 950 6 7 2 5030 6618 6 2 243 17 10 123 24 2 298 823 1810 16 2 9170 59 29 1 226 938 123 257 2689 369 25 3998 224 3 37 1 2971 4590 4 31 1128 16 31 1128 1373 6521 2 342 4 547 606 5008 3 1 469 4 2 1862 7 2 1591 4309 140 2 1591 9704 6 14 1909 14 9 1330 1 1667 3 1 22\n1\t6 2 222 4 2 2259 7 1422 4 7213 1 67 6 243 3 72 100 230 11 72 323 70 5 118 78 36 44 42 39 31 10 123 2292 5 44 5993 61 1281 107 7 3 200 147 3820 7 2 46 8672 2967 4 2790 3 44 148 3988 310 94 44 5993 61 7 1 518 2032 3 7299 3 1 1280 4 6697 1981 794 44 442 12 531 700 5839 1 12 7 3825 7 1 2272 395 1075 66 6 5612 7 8990 7 1 13 92 21 6 109 2427 45 243 10 6 446 5 9751 796 318 1 182 3 8293 97 514 2263 10 2018 1 298 985 4 727 17 7791 97 1733 66 54 24 340 10 237 2974 7213 1 393 6 243 2 369 1781 10 811 243 1604 1 18 6 373 279 956 30 261 942 7 41 55 1 85 3856 1 1077 6 1111 56 3769 1 545 77 1 45 162 2684 1 21 1421 14 2 4755 16 5131 5405 3 1 7727 15 86 3186 42 93 2 29 31 6963 16 205 413 3\n1\t159 7 11 18 1544 15 79 184 290 8 617 107 10 9557 17 8 320 5 9 326 80 4 1 903 1141 7 1 108 16 1632 1 178 7821 6 51 2 2853 2023 7 2 196 4077 1 259 101 9320 7 2 209 6171 50 923 9996 7065 3954 32 1 75 63 23 1582 812 19 2 18 106 28 4 1 120 615 2 4868 7 31 2841 2860 2102 394 41 1194 172 406 3 1304 10 54 26 2 53 312 5 3827 1947 98 25 3954 3 11 84 7479 987 186 50 198 382 930 34 1 699 115 13 150 1266 8 176 155 944 202 910 172 1372 3 539 29 110 17 49 8 12 8 12 1728 11 3341 883 12 10 2 11 1 506 6126 533 79 1 13 1601 7 399 657 2 1865 108 17 16 6236 3 16 623 3608 9 18 196 2 1709 47 4 394 32 437 463 875 65 154 366 148 518 3 449 5 1236 9 19 166 518 518 518 18 983 41 2955 224 2 1919 973 3 7692 142 116\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 397 40 332 58 4185 1 121 6 1 2911 4273 756 9342 376 130 20 734 9 18 5 44 44 121 6 237 32 6243 3 1454 8 96 60 40 4 1730 7422 5 1 111 60 992 7 9 108 9 18 1263 105 78 2411 3536 6447 893 168 3 8681 7337 10 93 289 2 540 1854 4 1 794 80 104 87 20 1460 5 99 9 3515 2 351 4 387 2 351 4 319 3 31 2685 2096 16 35 40 2012 5 26 138 15 44 542 19 19 1 1250\n1\t2163 3127 13 3221 1164 272 38 9 293 6 38 1 249 251 3 86 2994 286 34 1 3502 620 22 32 1 2322 108 55 1 1131 6 3685 18 8347 45 23 118 317 98 23 118 11 1 18 12 1868 7412 5 26 89 1239 59 5 26 7 2454 4 1 249 131 49 6100 965 5 2222 85 7857 37 49 3 1585 61 9814 16 1 1538 10 12 16 1 141 20 1 249 880 144 59 1123 18 1131 6 10 80 229 40 5 87 15 3376 7443 17 10 6 2 6474 5 137 7 1 283 2975 7 1 8351 17 59 1131 4 1072 14 7 1 13 3616 8 338 1 983 1281 16 1 8 54 24 7421 1 541 314 7 17 8 63 365 144 3771 175 2 52 391 340 1 915 3821 6187 8 36 127 1098 42 327 5 64 126 47 3 2354 128 246 299 15 28 4 1 84 1657 4 1033 2008 8 39 555 33 57 248 10 2 103 138 3 49 52 4 1 215 201 12 128 2191 5 26\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 20 78 4 31 3083 19 121 41 82 18 8344 17 9 18 39 645 79 8 83 96 646 117 995 110 28 178 258 669 96 11 2025 35 40 107 1 21 76 118 4 66 28 8 192 6 19 50 13 150 93 219 1 696 18 794 5573 5 30 2 817 10 12 93 46 4422 17 20 169 14 826 5 1 272 3 45 23 22 3401 29 399 463 76 652 2187 5 116 3253 17 87 4 1 190 875 15 23 13 252 6 46 2578 915 3683 17 8 2564 1453 8 449 11 1 21 3316 7 2472 52 838 5 592 13 81 321 5 64 9\n0\t7012 261 5 1811 5 1090 10 298 94 3559 8 12 2 568 325 1 3173 4207 8 12 3863 69 34 1 5150 3423 8417 6479 23 100 563 48 12 160 5 780 4791 30 1022 3802 8 12 128 133 17 12 355 2 103 3519 11 43 1048 188 57 286 5 26 3 378 4 685 23 52 10 39 384 36 52 9606 8 112 3423 17 23 24 5 1337 81 2 7343 154 195 3 98 5 359 126 8646 13 5140 8 173 55 320 48 475 590 79 1237 17 1339 7 1022 3802 8 57 2160 145 20 2 184 325 4 956 69 3 23 674 173 773 31 431 5 875 65 19 835 5855 814 10 12 58 1534 279 1 991 5 2522 13 777 2 1152 11 33 339 24 71 2 103 3 52 4 1 5730 4238 8 1023 15 43 4 1 5406 11 10 784 4573 39 165 5965 3 636 5 64 75 223 33 63 3304 9 131 689 83 33 853 11 7 1 769 33 22 160 5 1621 52 596 68 33 88 815\n1\t28 4 1 558 632 18 3050 7 1 2265 4 10 12 2 900 1197 1074 5 1 7 1 17 72 61 205 2573 295 30 1 10 12 1325 248 3 5016 7 2 442 16 1339 7 1 6556 10 6 2 46 4683 4887 4 1 893 1830 4 2 526 4 413 3 415 4658 32 1 10 6 885 19 52 3444 68 8 63 8560 72 310 408 94 1 18 3 3475 3 3475 318 38 843 192 1 398 13 92 324 72 159 12 7 706 37 51 191 26 29 225 102 2639 220 1 74 2381 159 1 18 7 7058 86 1091 2939 8 7090 3 7090 16 2 388 2581 324 17 100 310 65 15 2357 54 332 112 5 24 2 1919 41 305 324 4 476 10 4936 1830 29 2 952 3 6 93 2 84 19 75 5 1999 5 116 45 261 789 1 786 2883 122 5 1042 805 19 305 127 2569 8 481 55 830 355 1455 4 133 1 278 4 1 171 35 22 195 229 34 7 62 3402 786 652 10 1877\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 2 1447 3110 4 1 2955 16 1 3978 74 587 1235 3207 8 57 7403 1356 39 852 2 249 141 17 214 512 1366 30 1 1683 111 1 67 12 8242 14 508 24 1113 51 6 78 5 4429 204 11 6 1547 2130 7 97 184 412 13 8824 4 1 1365 191 139 5 1469 603 1244 1106 3 593 2725 1 545 1356 318 10 6 1258 20 5 230 2537 4758 1 121 30 1 212 201 6 93 5670 258 11 4 1 102 6386 1638 3 2862 62 1321 7683 187 62 129 2 84 934 4 3 1 178 106 33 24 62 74 2659 94 6 1975 13 614 23 2923 116 1004 124 15 2 222 52 1384 3 2 103 364 8 2474 354 23 176 47 16 13 1149\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 59 177 686 38 9 18 6 1 2466 109 279 1 2551 646 2398 23 99 10 8704 42 631 11 4496 381 25 1174\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 330 1 1729 5 90 9 77 2 141 10 54 26 8 12 93 2275 29 1 857 3 129 2031 7 9 3118 8 24 262 10 316 3 316 910 39 5 328 146 264 3 10 196 52 240 154 290 570 1189 2089 116 683 9 130 26 89 77 2 45 261 47 51 451 43 352 5 357 2 5 24 9 89 77 2 141 786 4208 437 8 54 112 5 352 15 11 1480 95 1393 1 3463 22 84 16 3 55 90 23 995 10 6 80 4 1 290 1 4 601 151 10 264 154 85 23 3103\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 1494 18 6 2 59 655 2767 8441 63 28 323 365 1 4 9 135 1454 8 335 1 6220 16 25 5605 58 915 303 541 4 1 3213 23 260 2408 3 1834 23 29 1 1590 4 116 3104 533 1 135 27 1745 360 3122 77 1 234 4 1 3 2378 1 410 5 56 15 7051 203 9 21 1 263 554 1834 1 18 371 20 59 16 2517 17 1 3797 9002 76 3494 2 2302 2308 4 1 3 1 661 5654 11 33 24 19 1 893 2751 1929 4 86 85 3 9725 7 2653 10 1416 1 736\n0\t611 71 5 2 18 1704 3 37 72 118 75 9 733 6 160 5 182 960 9 6 2091 144 4547 321 4443 16 1 1324 957 13 92 465 15 1 177 424 1 263 39 100 16 1 28 274 391 7 66 306 112 13 6 377 5 26 2 35 93 451 5 39 1337 1 212 329 2287 1 263 100 255 224 6917 19 28 41 1 82 4251 4 9 245 3 6 303 5 1298 3 7 1 13 9534 6 377 5 9322 3598 2535 17 1875 27 255 65 5 44 794 27 123 60 151 2 272 4 2316 122 7 378 4 2621 5 25 13 92 4 362 168 6 2336 200 2 5714 31 4056 1863 5331 3 98 605 1 9137 5 19 1 4056 298 8384 4 2 5883 29 2 13 92 1053 11 60 6 3592 5 170 73 27 6 1 129 100 289 199 27 6 8858 9 6 286 174 4 1 1324 8394 8256 13 2595 28 719 3 6840 1507 9 177 811 1534 341 52 68 32 10 6 8819 3 20 55 549\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2076 40 2 84 567 5833 14 1 7945 1426 209 577 2 3962 3381 409 9 6 1 574 4 5833 11 6 2 191 49 523 2 263 600 10 6828 1 8864 1889 410 3 1 3213 4 638 14 27 2 974 32 3 2999 1 272 11 9 6 2 164 20 35 27 666 27 6 409 618 94 1 84 567 957 8 214 1 344 4 1 18 1693 3 15 2 1114 604 4 3 34 11 264 32 82 3018 4023 11 107\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1 433 6646 6 2 18 38 2 170 2523 35 6 32 25 6646 664 5 25 435 395 101 643 30 1 7606 9 1324 38 9817 1 293 1456 640 505 3 1227 297 38 9 18 6 565 245 42 37 91 11 42 695 23 76 359 133 9 18 311 73 42 37 91 42 722 488 36 1 82 2381 4 1 18 1113 42 37 91 42\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 903 21 324 1 5270 382 294 5874 6 2046 35 621 7 112 15 1 2626 1990 25 711 5036 6 2 3226 16 1631 49 561 5874 2019 25 7716 7 2 7599 9836 550 27 191 1 5120 3 1364 13 677 22 375 168 66 190 24 6324 856 591 1 168 1295 5874 2123 25 1 21 1336 3412 322 51 22 78 138 124 32 1 387 205 3 5126 1 102 442 294 5874 3 1990 662 29 62 1293 115 13 2097 4642 8623 5110 294 1990 4642\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 2 91 158 51 6 531 43 1362 7628 146 11 23 63 134 1661 10 12 2007 17 51 12 11 1835 41 11 185 4 1 1252 41 11 293 6731 9 12 39 311 464 34 2287 1 121 12 6985 1 263 2007 528 15 97 8054 9169 29 3 55 1 293 363 61 5862 29 1293 9 12 2 46 91 21 3 28 11 55 2300 5874 3451 12 32 2008 99 10 45 23 175 9478 2686 3061 1537 8000 9900 64 39 75 91 2 21 63 1142 9 6 28 21 106 8 63 333 1 1881 9283 269 4 50 157 8 76 100 70 15 43\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 58 2818 5 1 171 4954 34 256 19 84 1 790 67 12 20 46 109 6209 1 18 1986 15 2 84 2 1184 161 259 2495 2 170 4663 606 142 1 9765 17 977 1181 929 5 5682 1801 269 4 129 1273 15 31 1135 147 526 4 120 1104 3 72 83 118 144 318 1 1801 269 22 960 10 498 47 11 33 22 1 879 35 963 2033 1 4663 823 1104 3 1 67 9272 32 3617 13 2120 1 67 123 1351 65 29 11 1746 10 56 271 7293 94 358 5516 8 1783 12 51 2 272 5 490 41 12 10 39 5 64 1 120 1593 15 4 4063 3 4230 4 75 33 2970 1 1 67 12 1391 8729 3 343 136 10 6 109 4278 236 20 2 627 227 7 1 21 5 9175 110\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 855 4515 2806 4319 15 30 1638 8831 142 943 170 5213 333 1 3277 46 7 3801 66 6 101 8209 224 16 1738 2384 121 30 1 389 201 151 44 3 21 2289 204 14 2 35 40 44 522 30 2 2 5180 4 3623 1976 3624 30 4785 2 156 1909 2064 4332 7453 116 1446 140 1 522 3947 11 426 4 3067 2 1197 1298 393 66 12 406 7170 7 2 1119 868 30 1490 2535 2 4040 4 2270 633 3536 3 6223 593 30 4327 3 1312 4654 1018 93 199 15 218 3 218 9 4862 65 14 2 53 934 4 3\n0\t1935 5 655 32 1 799 60 784 318 1 3383 4 1 108 43 6365 3 1349 8658 188 65 3 1 201 291 5 26 246 299 15 1 3309 37 6987 11 1 810 1511 6 229 3271 16 1 13 26 4 796 16 234 4613 3892 1856 28 4 1 8514 25 14 2 29 1 478 4 2 6078 9998 6 1904 14 2422 4128 2 2670 170 164 603 195 3 7 112 15 8454 6 7 15 1687 30 3814 44 1971 15 32 25 136 7262 3 525 5 122 295 32 9 312 11 27 63 2 434 11 881 827 100 5 702 1 3761 6 650 8 497 5 32 781 75 10 276 45 1463 7 1 3054 4931 4 3 6 650 62 112 9022 308 818 7 1 1692 65 421 2 6 224 3 93 712 1 4 2016 50 1020 6 2 222 959 194 202 4580 73 4 16 3031 5026 8250 243 68 1 119 41 8405 1 18 5 786 3 6 5 1 624 35 112 1053 8 2564 1024 16 1 80 1871 1 623 621 2 222\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 159 9 21 8334 155 770 19 2 1625 16 1 644 397 3 10 12 1634 6 1669 29 1726 8265 25 278 7 2266 128 6114 295 7 62 168 3 5297 276 7374 1961 79 19 4167 23 130 925 9 21 36 1 6968 45 10 117 196 4303 10 181 5 139 19 2681 14 1 1455 119 6135 29 2 7341 10 6 7619 8819 1 861 6 1865 3 1 593 6 5297 7022 130 139 5 21 416 45 27 2827 5 1654 702 7 1422 4 25 505 25 129 6 400 66 151 10 1258 5 4201 16 550 2362 6 167 211 3 1 2065 3452 4 1 7773 774 1 644 182 6 4709 17 9 21 6 39 908 1319\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 42 892 3 37 211 11 23 76 5472 116 8666 6754 8 24 107 10 37 97 268 8 24 2165 17 10 196 13 79 19 9 6 2 645 3 8 336 10 3 76 1811 5 112 110 8 449 28 326 51 76 26 2 293 6208 305 758 13 4085\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 12 373 1 524 15 3869 7 1 10 12 19 249 226 366 3 8 241 8 1808 107 1 21 220 50 349 7 298 416 3 145 195 7 50 7428 349 4 9628 292 1 21 40 97 6975 10 6 39 37 1462 11 23 173 352 17 694 2563 99 194 3 335 4175 10 6 93 2406 1954 6 39 37 125 1 401 11 23 173 352 17 539 47 1767 29 122 29 80 290 10 1583 5 1 21 3 145 273 42 610 48 1 206 23 152 230 16 1 120 7 1 21 55 193 1 1273 213 1 1293 2 191 1861 8 496 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 428 30 1 846 35 9690 1 313 701 7185 251 66 2766 15 1207 2453 8 12 288 890 5 9 3 8 247 1558 10 12 169 673 4422 15 2 163 4 4468 19 6002 29 8564 4919 66 12 46 2186 3 8821 10 12 31 240 129 2221 3 46 109 383 1394 19 4569 3481 1846 16 2 1165 391 8872 1 121 12 313 34 591 1542 3 1579 5582 292 1 353 35 1012 603 442 8 481 320 1475 79 58 714 31 313 129 2221 66 40 38 1 166 1234 4 1552 14 95 1408 8564 4919 3060 87 64 9 45 23 70 1 680\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 637 79 5704 17 8 56 87 96 11 9 6 2 84 1199 45 23 617 57 2 680 5 839 2 156 767 4 1 2045 376 2748 1125 23 130 373 99 9 461 436 52 1683 68 11 4 66 1 251 15 2766 22 301 4638 286 3713 265 6 6748 854 58 306 1045 325 63 139 197 283 29 225 28 376 2748 127 90 1 947 6902\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 58 2481 14 5 48 9 12 383 19 17 23 63 373 348 11 33 57 58 3550 91 505 586 2653 3 1054 119 3 43 547 293 363 87 20 90 2 53 108 1 541 76 90 23 1 1 4229 7118 17 5873 1155 62 8659\n1\t3027 1 1950 526 207 71 2193 33 34 118 17 83 118 239 1715 2 163 4 267 602 6 126 507 239 82 689 14 1 6005 193 9019 10 232 4 270 4383 15 1 508 17 160 4508 258 49 33 842 47 48 57 7 6933 13 858 16 244 165 1 53 5117 5 26 1459 65 30 2 2204 4 7 1984 3 2668 27 196 1 3131 19 3 13 2609 11 42 1 723 3728 242 5 1812 48 544 3 355 295 1 9104 7 1 5220 42 1447 75 205 67 456 359 15 239 1715 14 1 558 2643 4011 7 29 48 6135 7 25 13 1004 6 2 211 21 30 2 658 4 2274 35 291 650 5 24 57 2 1138 7 756 41 54 5982 8 173 134 11 261 3010 47 7 1 201 33 93 291 5 37 109 1413 115 13 630 4 127 81 22 7655 3579 17 33 34 2 822 709 1388 11 53 1177 758 689 115 13 1004 6 28 46 211 141 1 232 4 21 11 109 587 561 2770 54 24 4993\n1\t164 35 1620 47 9987 7 25 280 16 1 113 353 8947 669 128 54 24 340 1 918 5 17 776 114 87 2 84 329 3 2149 1 29 322 145 1096 8 114 841 9 18 827 73 8 381 10 8 96 1 18 114 2 5145 17 20 59 114 8 20 2867 8 381 1 8607 3 12 100 1120 15 2350 13 92 121 12 1485 7 9 108 8 258 381 776 2695 16 31 2625 1932 20 690 488 1994 35 266 1 750 3049 8 56 381 25 31 487 35 2492 36 43 426 4 27 39 79 960 55 1 120 442 6 695 115 13 92 2526 7 66 129 12 929 5 87 146 27 1050 540 55 193 27 12 403 10 16 34 1 260 8250 1066 16 79 14 530 8 4786 15 144 27 343 27 57 5 48 27 2723 3 8 2786 144 27 339 169 1346 110 1 859 9 18 151 6 2 53 3 3943 628 1 1769 1 6 2211 3 1 121 6 1 2332 99 9 18 45 23 117 70 2 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3089 59 219 1 74 251 19 2388 17 54 1 7405 14 2 119 15 2 1471 1 251 6 14 53 14 3 3 202 14 53 14 1 6531 20 2 3 237 138 68 95 4 259 292 236 877 4 1357 43 4 10 167 1 67 6 129 55 43 4 1 1681 120 7622 5 84 67 8640 1 733 883 551 15 3 1 1725 3 1490 3 25 493 1018 143 226 46 223 954 1570 13 32 1 640 1 263 3 1 505 1 82 1318 8 338 13 4385 10 89 79 175 5 1978 147 9991 3 2089 15 2 2824 1 1948 4349 10 289 11 1345 261 63 2686 32 1741 3839\n0\t4 2274 22 54 23 56 474 5 64 1602 7440 1352 112 116 3253 8 112 116 33 1600 55 138 68 7 2 788 404 194 59 1 103 742 2296 47 4 1 193 6 929 5 2369 43 4 25 52 759 7 2 3 75 209 34 1 1630 2369 197 2 625 3380 19 1 1926 22 3861 3 7 62 13 1 572 12 169 15 293 363 2989 2 2975 3 1666 801 195 276 1289 3 7 698 15 86 11 3 3569 10 4831 2 5352 2132 1024 213 8716 3 1 478 538 6 93 169 13 7254 10 255 224 5 10 101 37 3176 2 85 49 413 128 19 2238 1257 583 171 89 1217 6399 3 315 6619 59 165 5 5393 3 5889 4 66 780 8601 286 43 36 10 9055 1 2602 8621 1147 3 4961 97 52 820 14 3359 4 124 32 1 1165 11 63 128 26 381 2087 37 1 5892 29 1 9190 5541 153 56 820 960 29 86 683 1 282 173 352 10 6 2 3398 3 6414 11 153 2698 542 13 3382\n1\t3 396 1330 17 93 151 23 539 49 1 3725 4 25 576 213 3769 122 1781 145 20 160 5 2704 3128 17 51 6 28 178 7 933 11 130 24 116 671 3 55 1 80 8348 4 413 54 24 5 26 5 20 230 146 136 133 9 108 1862 380 174 84 1835 17 6 30 8567 3 1752 187 1195 2137 17 162 7 1 427 4 1 102 914 2237 623 6 128 8351 66 152 2052 9 21 32 101 51 22 375 1308 5 26 5600 17 83 96 23 76 875 51 1896 73 10 196 686 316 197 78 13 150 88 139 19 3 19 38 75 109 9 18 645 19 39 38 154 1900 1 423 823 17 8 76 757 9 28 3752 8 230 51 6 58 321 5 348 23 235 1129 87 725 2 2454 3 186 1 85 5 64 9 108 55 45 23 24 5 947 318 10 255 47 19 2388 42 4933 279 1 290 2 1768 866 21 273 5 256 2187 7 116 671 3 2 2618 19 116 4 22 2 6888\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 179 9 12 2 46 324 4 2 754 2141 471 7904 3 61 46 53 7 62 2842 3 419 62 120 43 17 1 212 177 343 929 3 13 92 477 88 24 71 2 163 52 436 1790 15 2 3 98 155 16 2 4 75 33 165 51 41 11 426 4 1606 3 8 343 36 154 178 12 961 3 36 2 46 91 249 13 150 12 56 288 890 5 9 141 3 1247 16 146 2 163 828 1 59 177 8 63 134 7 86 7359 6 11 10 4152 1 7867 2614 17 20 30 1264\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 143 56 504 78 32 218 366 3 8 152 100 455 4 10 318 8 159 1 1203 7 1 245 1 18 6 46 1535 49 10 255 5 2000 65 6272 3 7809 19 7014 10 4089 2 5145 17 10 152 1605 5 359 23 1437 835 160 5 780 3 52 14 1 18 1 129 262 30 2549 2011 196 3295 77 43 232 4 3 5 1 272 106 27 432 2189 15 1565 47 1 1387 3 3052 38 2 2972 349 161 5559 635 11 6025 384 5 24 117 107 7 3792 1 366 6 31 240 441 66 6 84 7 2000 65 1 1216 533 1 18 3 317 167 78 721 7 1 534 4 35 6 4304 3 835 3015 245 7 1 182 10 232 4 3 153 414 65 5 1 1187 10 88 24 5125 10 153 56 187 23 2 5394 41 7790 2651 38 1 82 250 919 66 54 24 71 8406 3\n0\t99 34 4 110 436 45 420 107 10 7 2 5599 7 86 215 8 228 24 3281 194 17 42 237 105 16 2522 13 150 284 1 347 43 2992 172 989 3 1 1733 4 1 119 24 8917 32 8708 9 114 20 352 1 158 14 42 146 364 68 4708 3 935 7 86 4408 4 13 252 6 56 723 9329 581 41 2 21 7 723 3558 3 1220 8 6020 1576 5 26 107 125 723 5309 7 2 2322 8 214 185 8 5 26 837 1509 17 10 12 34 8 88 87 5 694 140 185 66 4089 765 6 28 1606 45 23 70 2 53 6981 41 63 284 10 7 1 1571 25 609 523 237 95 1636 28 228 24 15 1 1428 4 1 471 19 158 245 42 254 5 197 101 13 150 24 82 1636 15 1 546 4 1 21 11 8 7031 42 46 15 2 163 4 443 216 11 2307 838 5 2105 378 4 6416 5 5379 1 2876 13 145 1156 3393 17 8 39 339 1 7201 5 65 546 6377 3\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 74 869 12 2 464 21 11 310 47 285 1 518 362 3991 1592 4 7198 89 203 703 8 214 9 18 46 509 17 483 892 7 43 3955 9 18 1419 37 78 356 3 4102 11 10 3195 55 695 1 2028 2090 7 9 21 151 2597 176 904 30 9274 4997 4036 9337 6 7 111 125 25 522 15 9 280 3211 266 2 3 6451 52 1805 266 2 83 351 116 85 15 9 28 73 42 565 48 2 8 186 10 1877 9 18 151 2 84 1433 135 841 47 1 60 40 1 4944 180 117 107 19 2 11 247 7 2 2374 6170 1772 13 252 7507 31 182 4 31 1592 16 25 376 12 3 27 339 2725 4913 5 2 10 12 16 122 318 25 2 156 172 9490 13 2078 1901 1013 317\n1\t3 20 5 1 124 3 584 38 3 14 109 14 3 7 4212 34 7 1 442 4 41 851 41 43 82 903 17 519 10 6 8406 5 39 186 174 1782 3 6424 43 822 19 1 13 92 1167 6 1 6012 1484 189 9641 3 5 7259 16 1 234 22 298 3 375 415 328 5 8797 730 14 413 5 70 77 1 13 92 415 35 61 997 1944 30 3 3 16 2666 2 211 3 3289 77 1 4 9 913 488 80 34 5327 62 5334 15 1 8199 1481 35 61 3 949 205 707 3 3 1 435 35 12 288 16 25 752 2666 43 892 529 14 72 179 38 144 33 24 132 13 499 6 1281 38 2 1342 11 811 10 40 5 552 42 415 32 1 3243 2813 4 42 3788 243 68 1 976 33 8269 3 3376 5 1 13 1 1714 7 1 1481 1968 3 1 6180 4 8199 4212 10 6 1197 9 21 76 20 70 95 309 7 17 40 2 3712 19 25 1191 16 137 446 5 64 110\n0\t21 263 54 24 390 105 1 21 263 1155 5 90 47 4 776 146 4340 854 8 54 1379 31 41 2 41 448 2 754 4941 49 33 475 149 33 175 5 2883 1159 5 209 155 5 73 27 40 102 671 5 64 3 6 446 5 474 16 768 17 343 7 112 5 25 1 2114 114 8 11 27 12 55 2 754 2114 13 252 6 1091 21 14 23 190 64 7 9 2288 2675 11 1 1091 21 6 20 198 3948 53 581 73 33 39 132 232 4 3427 703 9 21 6 56 8 24 1 11 1 21 263 40 71 371 32 43 7 5515 3 1603 6 6469 5 7622 15 31 3742 229 93 40 8486 15 43 3427 3984 4 101 2 8 12 1385 30 9 21 263 5 31 82 1091 21 4 1409 69 459 1 4 1 462 6 20 305 1203 5051 1427 9 21 165 93 4 3 1 13 7017 83 2600 116 85 15 9 2814 51 22 56 53 124 7 99 47 16 21 971 36 4745 2453 2845 7048\n1\t5 122 14 2 13 2236 5 90 943 1035 5 70 6217 17 963 11 1 59 111 5 3505 3882 25 4825 6 5 787 2 38 25 221 280 7 469 3 1 1203 960 27 123 9 3 93 6821 11 27 6 160 818 5 37 11 1 613 63 1 2041 16 4562 1 7887 15 3 1 7697 907 30 66 7658 7129 25 221 1851 2 4730 3 3811 2582 5 9 3022 13 3 5217 3642 25 1921 3033 1109 3 25 14 27 1819 15 2 251 4 66 1483 3 917 2295 245 213 1 59 28 5 839 6564 14 2 1134 2726 2019 44 329 73 4 34 1 1245 3690 768 44 2002 43 172 1188 71 2 16 1 8619 615 411 5911 15 2 1004 27 114 20 4354 71 2 392 950 57 2830 3 2 2807 4 1537 66 1699 5 3 379 3826 3 71 274 65 7 1255 30 435 93 2440 25 221 13 1 7424 6 2 1517 2316 901 1295 2 526 4 240 3 8356 120 3 2 250 2689 35 6 1 1409 4 1700\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 308 805 28 4 137 104 11 275 1304 41 440 5 90 508 96 11 33 2786 110 261 35 440 5 90 95 356 4 9 6 2 50 5268 54 26 5 186 102 20 28 17 102 2018 4 46 627 7072 3 29 225 468 70 2 1117 4591 47 4 9869 292 29 1 182 23 190 564 725 16 2721 116 101 11 9 878 3503 394 456 4 369 79 787 146 16 137 4 23 11 76 328 5 4376 1 108 3095 351 4 3694 18 6 15 3618 19 15 19 2 6422 7 1 981 36 2960 7 2 808 822 15 283 8986 195 1346 11 5\n0\t238 2092 4 1 7021 11 198 2074 1 14 510 91 559 47 5 1 2125 42 240 5 64 9 85 1 1736 259 14 2 13 2078 2 84 2493 42 56 3705 2 6733 238 1772 492 887 7459 43 897 5 9 1669 108 5253 35 266 1 1736 1277 6 232 4 17 1317 40 43 1300 15 492 4889 543 194 492 887 6 132 2 53 353 11 3719 24 1300 15 261 244 403 2 178 1566 1 2652 776 196 643 740 1 74 1194 269 77 1 108 944 45 776 12 7 9 18 10 2893 71 31 845 855 6733 238 1772 34 8 63 134 38 776 6 11 27 6 148 327 5 176 29 16 1 74 1194 269 4 1 108 1 5104 262 30 742 6 116 687 91 2678 244 46 2088 3 46 7 9 682 13 9 739 45 51 6 162 422 19 249 5 836 42 6545 10 153 4206 105 565 1 238 168 22 7967 1 121 88 26 1824 1 119 3084 1527 78 17 3255 23 70 5 64 48 6325 276 36\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 6 1 59 177 8 63 1061 5 134 38 9 108 6 1 3974 180 71 51 3 100 159 1 707 176 9 452 304 2644 3 13 252 18 1047 1929 29 132 2 1428 33 449 23 495 1682 1 551 4 148 234 81 599 200 3 1363 2962 197 95 16 1632 51 6 2 1743 47 29 2452 1921 102 2588 22 3 286 1 2475 83 131 65 51 2268 78 406 7 1 108 701 16 4158 100 485 37 13 1059 9 18 130 26 19 1 5381 182 4 28 1 104 3330 97 4 1 171 7 9 18 22 37 78 138 68 476 8 841 1 1992 4 1 18 39 5 90 273 10 247 428 285 1 1063 4466 17 9 12 20 1 3060 9 18 6 3990 7 19 1013 23 175 5 4 125 51 6 58 302 5 99 110\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 183 49 8062 314 104 14 4554 20 39 2 471 2 304 5404 38 112 3 2295 9 6 28 4 50 430 104 4 34 290 1 1 39 3090\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 50 671 9 6 202 1 425 665 4 368 59 4464 30 1 147 800 2344 108 2997 6 1 215 1500 950 3 1071 5 26 1979 15 1451 55 193 27 2898 12 1 210 2997 180 117 1586 32 1 357 4 1 18 2890 39 2942 2 4 224 25 27 276 39 810 1727 1 17 227 38 849 2257 12 2 91 16 8475 60 6 377 5 26 2 254 3404 17 7 9 18 60 276 52 36 2 1 119 12 904 3 961 27 6 152 2375 35 54 24 117 3 1 121 12 2444 9 18 40 28 53 177 160 16 194 3 42 442 6 1763 25 1103 4 9174 12 609 17 55 27 88 20 552 9 108 48 9 18 965 12 1 201 4 3 3653 1763 8393 4 9887 3 2 264 471 8 219 9 18 94 133 218 3815 24 3 8 12 5 825 11 51 6319 527 104 98\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 76 2704 2 18 14 78 14 1 2053 4 2 345 263 3 345 3344 9 6 1 524 15 218 13 92 263 6 1154 32 5981 138 2905 203 2092 36 3 1 593 6 4481 3 1 121 6 8093 55 6 1074 5 816 7 218 3 1 1278 22 8222 227 5 734 1131 32 6099 6200 138 5530 3 272 65 1 7335 4 62 221 13 1640 75 91 9 18 1220 3 2040 6642 10 32 7564 102 172 406 14 218 15 2 78 138 263 3 138 2254 1 1122 12 1458 1 113 21 7 62 723 21 292 20 2882 774 14 53 14 7559 13 1131 5093 9 21 5 2 4349 1 691 6 2 358 29 1293 2097 3 5342 3142 61 229 1096 5 64 62 120 142 37 33 511 24 5 1030 7 8633 36 9\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 753 1263 2 13 1149 8255 202 565 1367 8 1113 9 6 162 52 68 679 4 1610 168 9012 371 7 2 2324 525 29 2 471 1 4531 4678 481 637 126 1743 1438 16 62 3 93 2452 166 16 696 3799 236 93 3159 4 66 12 2 16 437 10 181 14 45 1 1018 59 6 5329 3 20 1326 14 82 746 196 643 362 926 17 3301 174 5894 269 4 8 173 6846 1 507 11 1764 3303 5562 2143 268 7 9 1262 45 317 7 2 3934 23 228 149 9 7573 17 16 1 80 185 23 63 995 110 139 760 1 215 305\n1\t0 0 0 0 0 0 0 0 0 0 0 0 2585 1880 12 790 138 68 1 7 50 3222 10 12 2000 65 5 26 2 84 141 17 98 8 159 1 3 12 5013 13 1880 12 264 68 1 817 1 119 337 2 264 593 7 9 141 14 2124 1599 153 186 14 78 4 2 613 1782 9 85 2246 72 93 83 64 1 318 1372 66 907 364 412 85 16 949 66 6 138 16 199 2616 13 6609 308 316 2448 1 131 14 2124 227 5672 3813 12 837 14 3318 147 5293 384 5 720 25 442 5 2046 737 463 744 27 247 95 3026 492 6 547 14 761 8 1454 381 580 2604 14 1 170 5247 35 40 2 421 2913 12 313 14 3231 12 53 14 1796 2 754 3054 200 3203 783 12 109 201 14 2 195 16 1 56 91 2482 5430 2150 12 2069 4405 14 2051 112 3208 3 776 6307 12 39 586 14 13 92 18 54 24 71 37 78 138 45 20 16 138 523 3 121 19 43 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9607 739 32 1 6969 1867 4261 2657 266 1807 4036 522 4843 5 770 16 25 288 16 809 19 2 2462 39 99 1 108 115 13 252 28 2149 3 165 1 331 3934 14 1 1161 3 943 1755 24 3184 827 1 18 57 52 2840 68 9 135 791 383 19 2 2039 9 18 4856 3498 3 361 406 5 376 14 7 361 784 14 3365 136 3871 6678 1 6624 5414 881 2069 1328 508 7520 1 412 1483 2 3582 742 3071 2 690 2 6036 15 3 1 1518 9640 2 598 5048 23 63 167 78 842 47 1 119 2507 140 1 567 6302 17 335 1 4 9 2032 13 8 96 4 9 18 341 8 96 4 9 18 8 1236 512 1 4561 428 16 3 28 789 2957 115 13 522 12 470 30 28 4 277 4090 971 29 2905 35 54 139 19 5 90 78 2223 581 7 25 524 8163 2824 1 508 61 294 3 2 170 1658 654 1970\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1309 2 163 69 73 10 6 37 862 91 69 1140 8639 17 373 28 4 1 210 104 8 24 117 8 118 10 6 402 2039 17 1 171 5077 36 372 7 2 1 4996 22 332 1865 3 1 226 85 8 24 107 132 1164 1482 12 29 2 1652 29 43 2543 388 1672 764 172 1924 8 56 1116 11 81 5273 371 3 1743 772 484 17 29 225 2 732 1234 4 538 130 26 17 29 225 28 53 7629 1 74 277 269 4 1 18 61 2446 240 3 485 1976 69 3 1 868 12 56 279 2575 1467 1 305 1203 5586 2 3600 17 11 6 30 237 1 113 9 21 40 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1178 464 21 66 6 377 5 26 31 1532 461 10 965 43 19 9540 13 252 400 4661 21 1819 15 1 7659 738 2706 1098 61 33 242 5 1 360 21 45 814 9 21 13 677 6 39 105 78 160 19 204 30 2 103 599 200 3 2966 6126 77 3 2588 66 515 1232 13 92 21 6 39 105 6905 5 916 28 287 2019 44 766 94 2972 172 5 174 136 44 1186 975 6 3867 142 30 2 9 3029 1 1081 975 5 390 2 3837 3 1243 200 7 2389 20 279 1 972 975 93 432 17 521 615 13 9883 72 24 535 5640 35 4517 6356 5 2452 2 4989 1 9216 271 17 51 153 291 5 26 95 8494 16 1 5753 1 8494 130 24 71 19 1 1063 16 3285 5 932 2 4006\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 74 85 8 159 9 431 12 36 2 1965 5 503 10 12 152 1 74 85 8 159 1 2583 188 22 2267 6 3982 3 42 37 3 55 1476 42 202 14 45 23 22 765 2 308 23 357 194 42 46 254 5 32 1 938 742 6954 12 648 5 783 38 1 5109 11 33 24 2 1208 8 12 1157 5516 66 907 394 211 3 6477 17 145 1 232 4 259 66 49 27 6 942 27 39 173 251 6 28 4 1 113 4 42 5250 3 42 2031 7 2 111 4 246 2 156 264 584 11 22 101 3228 1413 1901 7 154\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1233 74 4 34 369 79 134 11 145 128 2275 4 75 1 119 13 724 68 316 86 2 18 11 3066 2 1970 9785 18 59 15 58 1970 9785 13 3793 1610 402 445 238 168 56 58 272 8 128 2275 8 4518 1597 9861 19 9 930 56 13 3793 760 2 3672 18 41 139 64 52 299 3 40 58 3 20 5 24 3 925 9869 1 113 353 372 51 6 1037 5019 3 11 666 2 13 872 58 27 153 309 46 109 36 8 367 925 10 8 128 2004 241 8 1130 1597 9861 3 1019 394 9861 52 523 3662\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 125 1 172 180 107 2 658 4 127 826 5 388 9785 484 3 154 28 1834 1 166 1234 4 1 1033 952 6 29 2 8023 1432 1 238 1102 61 7067 17 11 12 167 78 110 3520 12 56 7 25 2796 49 27 114 104 457 457 3802 3 3419 225 19 1 238 17 285 1 576 764 1166 127 2514 4 104 11 376 9785 56 87 20 889 25 576 13 2699 1 52 1061 3453 1 18 114 90 53 333 4 387 36 43 4 1 238 1102 3 333 4 39 49 1 18 384 5 39 2739 926 2 167 797 238 178 758 10 65 47 4 1 8 1582 241 11 52 4 104 54 87 138 45 27 247 1 59 28 11 596 3082 7 1 108 607 171 3 1624 22 2 46 731 1689 3 45 25 1955 104 57 9 587 607 171 3 300 1 18 76 70 52 986 9056\n0\t317 20 377 5 118 95 4 127 1098 73 23 87 118 127 1098 246 2 376 7 95 4 1 871 6 2 464 49 23 1229 19 492 2093 3 25 378 4 19 1 624 3 1161 19 1 427 3 62 3313 23 1621 9540 13 499 6 323 2557 11 1 113 980 7 1 131 6 757 5 90 111 16 2 464 147 788 6469 11 1317 2071 2 7927 29 1 40 2 147 788 3 509 6328 361 28 3966 144 33 2705 5 1743 2 18 324 29 34 45 33 61 160 5 1378 15 2 770 2441 9 5915 13 1701 596 4 668 2114 3 137 35 381 1 1039 2614 9 18 6 2 747 4 297 33 3 16 137 35 100 165 5 64 1 215 2675 463 19 2404 41 19 9 18 6 1 59 3487 33 76 24 5 139 6210 3 4541 24 5 560 39 75 10 165 5 26 1 668 7 2404 622 361 318 2 103 131 404 4532 10 7 1 518 17 11 6 2 264 441 3 83 55 70 79 544\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 179 9 57 1 260 3599 4 919 640 4975 691 3 293 363 197 160 125 10 76 186 2 136 5 70 17 1 121 12 53 3 8 12 3565 30 1 2986 35 6 20 5 254 5 176 3706 8 36 1 2742 7290 407 20 36 82 1035 29 4975 4260\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 152 159 3695 2795 183 8 117 159 1 215 3695 3 8 24 5 134 11 1 74 6 152 2194 527 4256 3 3288 4256 828 45 317 2 91 18 325 36 8 7806 9 6 84 3531 9797 245 23 22 288 16 95 426 4 4673 640 121 41 9 6 113 1 113 185 6 75 33 829 34 1 1076 1102 7 5185 565 64 10 16 2 2655 64 10 16 3670 3560 17 1034 23 1690 64 10 16 1126 19 2229\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 190 26 355 1929 4 512 737 17 292 1 21 554 12 2 1813 1719 16 86 387 8 219 10 19 9501 226 1925 1 1193 5 144 114 33 87 3559 1472 62 486 7 97 4 126 1436 19 1 144 54 33 132 2 39 5 149 2135 16 62 1804 8913 308 33 3866 1 4 6674 3 144 143 33 39 875 9252 54 23 116 727 3 11 4 116 389 9288 39 5 149 2135 16 2 4 14 2244 14 10 1220 5 87 10 16 11 1734 5239 289 1 5969 4 127 2514 4 1098 3693 469 16 2 138 126 68\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4935 24 2 627 12 152 172 161 29 1673 17 485 774 5894 3 27 59 1457 174 1315 982 29 28 272 1113 1352 192 125 1882 116 2054 328 1 7957 227 5 26 116 833 33 61 1363 16 143 916 5080 8765 8063 519 3235 65 15 6057 52 869 5 949 17 11 153 467 8 175 5 99 110 42 20 2 729 4 7920 17 1 8 36 50 2135 106 10 6 299 5 99 3 1 2847 7077 966 90 10 279 10 45 10 255 19 2240 518 29 366 3 23 175 5 99 146 5 3235 224 16 9924 10 54 24 71 327 5 64 1 2088 493 4 1 28 35 44 70 52 1192 35 12 9 145 160 5 328 3 149\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57 9 18 71 89 39 2 156 172 1372 8 54 24 7388 224 1 868 2 272 41 102 73 1 478 538 12 243 4878 29 984 1 18 1478 5 26 2 1414 21 285 1 981 22 688 340 10 12 3 2 710 141 9 6 169 258 220 9 93 5193 7 406 710 66 85 1 478 6612 130 24 71 1066 47 301 3798 14 7 32 13 1251 32 43 1681 478 4386 9 6 2 1257 103 21 38 2 1156 1707 4967 3 2 223 1307 4 81 242 5 70 110 488 285 1 1776 51 22 679 4 103 759 11 23 173 352 17 3704 2 327 1515 21\n0\t42 2348 58 28 88 26 19 1 1588 7 1 386 85 10 6 20 7 3085 239 366 51 22 8268 4 4572 224 51 3698 1 6367 3 4231 966 11 51 22 3479 81 536 224 51 6 1381 41 11 42 55 888 5 70 3746 7 3 20 24 5281 5 2 7905 1969 7 9 326 3 13 92 210 207 1458 5 780 45 275 114 149 730 51 94 1 226 1591 6 11 33 228 70 19 450 292 9 40 71 588 457 1377 664 5 1 3144 604 4 2792 5097 19 1 174 7 1 601 4 1 471 7 1588 14 2 212 72 24 52 2792 5097 68 95 82 707 7 1 13 614 10 57 71 274 7 2 707 8 192 20 1100 15 436 8 88 24 381 10 140 17 42 20 2 298 538 21 37 8 39 339 652 512 5 5238 50 4038 3 328 3 335 10 16 1 6744 103 901 11 10 3191 13 150 54 24 340 10 45 132 2 1020 815 1 80 1832 21 8 117 179 8 54 3704\n1\t13 2 3437 689 1 1721 2015 249 6652 1647 1 249 33 3 893 13 197 2152 1 7783 54 20 24 71 9250 1 21 151 10 935 11 5800 2761 19 1 2152 5 1799 3 11 1949 63 26 728 13 457 1 4 1 1 249 8660 1 2377 9550 2377 3 472 1377 4 1 13 9039 30 1 1383 8696 30 1 199 3 2 5577 19 1 8196 5 1380 1 383 29 17 1 2015 2152 2619 1131 37 10 1478 11 1110 1473 12 4229 29 1 5577 11 7 233 57 71 8067 13 613 337 19 2 1363 421 8995 1231 1 13 1525 7074 5 4 448 1 98 667 27 57 17 1144 1 1387 5 1 1644 9288 66 963 165 1 859 155 5 30 2240 13 1 81 2981 1095 1 1110 4 1 3138 33 57 912 59 2 88 13 69 29 2 103 125 31 594 1896 9 4976 6 237 105 3752 4973 86 31 6712 391 4 3 1819 15 2 921 4 66 1550 196 2610 151 2 84 5428 391 5 218 1112 4 13 28\n1\t274 7 2 569 6 2 7144 5 25 1 2036 363 22 224 260 15 218 1524 3825 3 77 1 7227 29 6725 1 641 286 4769 1535 265 868 59 1583 5 1 13 92 453 30 34 1 2274 22 109 2427 15 3656 5 4130 1072 4829 3 2862 1631 4829 6 132 2 53 9367 73 60 6 37 1904 3 10 6 34 1 52 4140 49 60 6 101 8389 30 492 7504 73 1 206 3 545 24 6860 37 78 77 1159 72 175 44 5 2711 3 70 8213 13 266 1010 36 2 164 19 2 3 10 557 530 27 1583 2 356 4 5 1 1 569 615 554 7 73 27 789 48 510 62 13 3616 20 59 6 3146 2 84 203 141 17 93 2 84 135 10 557 19 97 3444 3 4373 1 410 7 3 100 1572 960 9 130 26 1446 956 16 261 1841 5 839 2 323 782 108 3 16 31 55 52 387 328 133 10 818 15 1 3647 1294 83 26 619 45 23 96 23 64 218 8248 200 7 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4172 9 12 2 46 91 4285 14 284 7 82 708 9 18 40 58 640 58 129 3612 33 815 57 43 232 4 263 17 42 832 5 348 370 19 1 697 182 13 92 1043 4 9 18 12 56 10 5162 5 2248 32 178 5 178 197 95 2771 41 235 5 1 545 7 48 6 152 13 1601 7 34 9 6 311 2 402 445 1028 739 11 12 20 179 47 29 399 40 91 505 91 1765 91 13 92 59 177 11 3389 9 18 32 2 755 41 358 6 1 840 8 96 9 191 26 106 33 1019 1034 319 33 57 5 328 5 4800 253 2938 13 23 22 1920 7327 4286 5 1565 3 133 34 1 1028 2092 23 63 87 20 99 476 3856\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 8199 21 11 6 20 89 30 41 1 9 6 2 31 548 315 267 15 170 624 8814 6362 1 7 86 42 34 38 2358 3 86 722 86 56 695 1 206 666 218 1678 22 3715 1 2592 6 3715 3 37 22 1 120 3 1 9 6 144 8 2167 20 5 333 1730 1041 14 62 1761 54 24 1694 2 5534 4 1 76 24 23 6750 16 126 1013 6991 116 683 6 89 4 1966 3941 23 22 8821 1 21 6548 5962 15 31 202 2271 10 40 1196 1 7773 1751 4512 42 106 63 8 70 998 4\n0\t20 695 42 20 55 2363 695 508 24 4753 19 1 1530 2 346 9235 1 74 85 27 666 110 98 27 10 77 1 9743 6039 29 1 443 36 42 1 1340 177 117 4993 70 125 4175 7 698 8 96 1 648 5 1 443 222 12 1 302 8 4079 5085 1 135 83 2309 15 116 1754 6 78 36 13 2679 51 23 676 24 2 2253 8092 259 648 7 2 46 111 38 25 1065 157 14 2 8 143 853 244 42 2 5 3100 7655 5 637 9 42 39 2346 2466 39 73 317 3100 153 467 23 24 2 9827 16 1 1211 2 123 2 138 329 4 623 68 9 2112 37 515 42 20 38 13 614 28 4 1 2126 8 57 107 57 8 228 24 1544 2246 17 43 160 19 38 75 78 27 1371 1 1487 4 1 415 27 557 2159 98 126 16 681 223 1507 153 90 2 84 682 13 252 6 31 631 525 5 9567 19 1 6152 4 83 369 725 390 2 1757 4 3080 39 134 58 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 31 489 177 579 2773 1966 229 405 5 3763 41 146 4426 1 464 333 4 265 3 1482 6722 17 48 16 56 1785 1 212 177 516 1711 181 5 26 2 176 29 75 63 473 77 528 1652 17 831 1 18 498 77 1652 2330 786 561 8937 398 85 23 175 5 9058 1 4 249 289 712 882 5 70 298 925 403 1 166 15 116 18 579 492 367 169 4763 38 9 21 11 10 12 2152 15 9386 3635 75 59 27 3001 5 348 199 38 1 3144 23 70 94 1157 140 9 3790 4 930\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 475 47 19 305 7 4302 8 24 107 9 18 37 97 268 3 8 149 10 55 697 127 663 49 4302 2440 316 32 2 426 4 883 1 199 16 11 8 192 1096 51 22 14 1 28 262 30 7 9 18 35 63 2369 47 4 300 33 63 3964 1 4 9 234 75 5 26 627 3 566 5 26 14 423 13 5 1 3515 14 80 81 204 459 1505 1 121 6 360 17 1 5070 1138 6 8 191 2309 11 831 146 6 433 45 23 83 365 1 1101 1587 17 8 63 8577 23 11 1 4 1 4 864 7 11 4 1 2697 1978 5 7146 63 56 90 23 13 743 13 1149\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 12 20 37 78 6980 204 7 193 10 165 53 171 600 84 263 3 243 53 12 20 2 37 404 18 7 50 4236 1 18 554 6 46 38 1 254 85 11 2 9933 57 5 139 140 49 27 1843 7 25 94 71 612 32 2 1641 1 182 6 243 6 242 5 359 65 15 25 185 3 27 7142 10 167 8667 6 84 3 46 1494 7 2 678 111 3 4 448 6 16 28 52 85 542 5 1450 47 4 394 73 46 156 4536 104 63 90 132 31\n1\t3 679 4 293 363 54 24 590 10 77 174 9477 108 48 72 24 204 6 2 1825 41 102 138 68 3230 13 92 670 1903 6 5498 14 1 3 9 6 6585 16 9 18 5 916 44 2547 103 9483 3 1311 276 22 3 23 149 725 5364 11 1 443 495 44 3374 10 151 10 11 1 91 259 262 30 93 103 587 1240 1 2125 29 228 186 31 6361 796 7 1159 146 3918 63 60 6 446 5 25 44 15 39 2 3 47 2721 50 98 142 189 25 2761 5170 286 1283 253 2 178 36 11 7790 153 780 30 13 1 1003 465 8 24 15 1 372 3918 6 10 39 213 46 1202 16 44 5 139 874 5 874 15 31 3 288 259 36 3 1620 550 60 39 3195 2 4071 41 2 574 651 35 63 1337 2 1321 3851 411 26 30 276 36 244 39 15 25 103 13 8535 9 6 20 56 31 238 158 9 213 2 184 8 39 449 33 87 138 19 11 45 3 49 33 90\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7811 13 150 159 9 19 1 1045 7306 10 310 19 260 94 1 74 461 16 43 302 9 18 721 79 9666 8 83 118 3740 582 13 10 12 978 75 9 259 165 602 15 1 253 4 1 108 7 1 74 141 27 57 2 5 564 1046 17 7 9 350 4 1 4571 61 16 58 2560 3328 643 1 206 664 5 1688 27 2151 1 664 5 1688 17 48 12 1 934 15 242 5 564 142 1 58 1249 58 108 27 405 10 5 148 49 33 45 9 12 377 5 26 132 2 298 445 141 333 1 293 1456 1368 4 448 36 1 74 628 1 2151 282 196 2408 3 3328 741 65 355 5235 1095 3 9 18 57 5589 3 1 8737 177 4 1 56 747 8 54 99 2 30 1 2889 59 73 8 36 7175 3 244 1 59 53 185 38 9\n1\t144 8 636 5 787 2 13 92 67 6135 7 1588 200 106 2 3100 282 1036 5 390 31 3868 60 440 2805 5 390 628 17 10 183 2 164 4918 44 955 11 60 3155 19 7167 11 60 40 860 3 11 60 15 1 410 3 8428 14 2 4684 423 13 677 61 732 4900 61 44 278 12 33 3732 44 4 101 2764 20 446 5 652 157 5 44 1223 8 96 44 627 1746 610 48 9307 130 26 3 151 2 2950 3113 5 90 44 9307 2 243 509 2784 37 44 5495 29 1 182 6 52 1127 68 10 88 24 71 115 13 92 861 6 1111 1 1512 4 1588 200 1 473 4 1 1556 22 46 534 3 3279 23 63 64 75 4524 157 12 155 3483 115 13 92 59 2818 7 50 1062 6 1 2206 4 1 141 23 2324 1388 15 1 647 94 34 8158 59 38 1565 1 353 7 6115 37 51 22 58 1005 2628 7 1 135 8158 1365 11 72 2324 1 796 7 1 18 94 1 74 6708\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7047 209 180 100 107 41 55 455 38 9 42 260 65 50 9928 15 1909 1941 3 31 1575 2458 200 110 16 43 302 1348 6 56 942 1356 1 4827 3 1554 4 31 8696 3403 4728 22 30 31 1903 1946 2975 2872 432 602 49 34 1 81 60 40 4208 15 463 473 65 434 41 5077 9 18 6 5185 6149 236 332 58 2947 41 3 154 129 6 1381 5210 5 1 2349 16 1632 236 2 282 643 3 44 823 7096 7 2 977 3 16 58 2650 1 67 1283 1047 890 277 2584 286 1 2035 282 6 100 1505 41 55 8090 20 55 30 44 1 121 6 6418 3 51 213 55 2 222 4 1349 5 3589 1 5760 4 1 506 6 169 211 73 1 1350 56 384 2173 11 10 12 31 215 42 1375 6 728 28 4 1 210\n0\t143 1 1402 183 523 1 1471 2538 93 4246 11 33 1868 1576 5 90 2 1189 21 1 456 1 2207 4 1 3 11 1 28 27 56 405 5 87 12 1110 4 1 4731 73 10 57 2 163 4 5154 17 58 129 13 659 9 21 713 5 26 52 3040 4 448 2 163 4 188 61 1989 1 121 12 489 3 167 78 9006 4690 3 1 1428 12 105 7857 3321 33 757 2 3600 3 2744 82 1025 3 16 9 33 2005 8203 136 2538 1253 2 163 4 238 168 11 3455 58 119 8810 9296 757 347 168 66 114 162 5 5379 1 119 2799 236 152 2 2284 7691 189 1 3580 4 1 2538 3 9296 124 774 1 477 69 7 11 33 205 32 1 215 1402 7 1 166 111 69 292 4 448 43 4 9 88 26 13 252 12 20 2 53 158 17 1 1187 12 939 9296 367 7 31 3634 5 1 1957 11 59 847 88 87 1 2207 4 1 3557 8097 25 324 143 1093 17 27 228 24 71\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 43 1474 2106 43 11 621 5022 43 547 505 43 11 6 169 7226 9 18 6 311 645 3 8323 5 2042 349 161 1161 52 68 95 82 13 92 583 171 7 1 18 22 39 49 23 22 253 2 231 1073 11 123 2292 5 26 2 4287 6645 7512 845 1 1097 5 187 2 722 3 4000 8 134 194 423 278 7 1 8407 4 9\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 192 20 56 2 325 4 1 212 2306 3569 7 3094 147 870 4 21 17 8 192 2 91 18 37 50 398 1945 5849 367 27 57 1 210 18 1218 9 461 37 72 357 133 110 74 3 69 10 6 4440 19 2 8122 330 1 672 4 1 9526 482 1207 6 2484 30 2 1114 315 8165 630 4 1 494 151 95 1821 1 1028 1025 193 3784 3 4 345 3452 3 466 79 5 241 1 206 341 50 398 1945 22 7 321 4 1872 4136 42 211 16 38 715 269 17 10 196 161 7857 42 37 3161 42 36 133 2 775 2484 298 416 388 15 7214 2 1367 5 261 602 15 9 18 69 8 175 1 910 269 4 50 157 8 1019 133 490 183 8 1310\n1\t7696 8 12 9178 49 27 74 1478 19 1 1146 73 8 12 132 2 568 325 4 25 518 711 17 1290 40 31 6179 1817 11 40 1866 122 46 237 361 3 27 40 1619 10 109 125 1 5775 13 5723 6 28 4 25 1188 124 361 25 4073 6 2 11 306 16 80 4 361 3 8 36 1 135 657 10 6 1462 3 37 45 317 77 606 8876 8286 3 2270 2241 98 23 228 175 5 1369 19 9 28 361 10 6 2 2624 21 4 277 433 35 149 239 1715 83 70 79 1989 8 192 34 16 1 277 4424 5 2 1134 158 17 8 93 36 2 4358 1195 901 36 9 2396 13 872 292 5700 3 1760 2854 1917 313 2137 1 148 376 4 9 21 6 361 35 6 332 13 150 83 118 48 653 5 44 3987 17 2525 6 1968 16 7206 1 2871 130 26 3812 23 339 1006 16 2 52 425 3213 5 3988 68 9 158 3 286 162 4 1367 40 71 455 32 44 13 3221 747 368 67\n0\t0 0 0 0 0 0 0 0 43 327 4448 17 1 67 66 2 5106 488 7 1 448 4 403 188 7 1 80 4 1175 3984 1667 7 1 1 6592 4 161 2 315 2967 392 3 936 1240 1 8585 4 102 2491 58 432 11 52 68 95 1 117 224 6 311 489 14 1 5543 598 2948 60 181 5 118 332 162 38 1 1615 4 3 55 364 38 6 1 2818 4 1 7303 17 11 444 761 14 34 70 47 6 44 221 2818 3 1 344 4 1 1249 642 3361 294 3 1403 291 14 2724 1852 30 1 7612 14 8 1306 7 2179 20 48 1397 504 32 4 1 3 13 133 16 2 5403 2431 178 7 66 224 421 34 976 126 16 44 3285 14 31 136 457 1 822 368 88 5 401 10 1237 60 2731 1 398 594 4 1 21 3 3 599 77 1 4209 4 95 3751 60 63 8105 4172 771 38 116 13 5 6392 186 2 349 41 102 4 7 2727 4353 56 352 47 7 1 223\n0\t4 3 2617 217 10 6 254 5 96 4 411 7 896 4327 3076 12 162 52 68 2 1996 4090 2228 183 101 5293 5 309 1403 578 5 4649 7 218 306 67 4 4649 4863 32 1 1210 1 817 349 9 5886 28 1183 12 25 313 3 5089 278 7 294 6856 382 218 17 25 372 737 385 15 14 1 330 350 4 1 578 4629 6 162 386 4 1466 1070 2228 652 95 2328 41 4306 5 62 5763 2237 33 400 773 1 8576 2130 1 4197 3 1376 37 8521 5148 30 869 3 6403 7 1 1766 1 18 6 93 30 105 97 3139 3 15 1 34 125 1 334 1106 14 1 2549 4980 4 1 296 7082 255 577 14 2 11 23 63 230 58 6429 16 3198 1 607 201 22 924 279 6557 17 10 6 2 1152 5 64 132 2 84 651 14 1092 355 2 176 7 14 13 92 113 1637 4 9 8773 1214 6 1 360 861 30 1 84 988 3 1 313 265 868 30 1 2107 3 103 587 7746 7969\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 124 81 7 1809 931 4604 531 15 375 1330 1192 7 1420 244 1873 15 1 8972 363 19 2 3540 766 3 585 14 60 2180 4 7 2 1 1410 4663 893 951 5 1330 15 44 1499 204 72 24 2 243 4014 170 287 35 44 766 5 186 65 15 2 1494 44 6067 6 2 103 220 6 6843 4 765 41 6514 235 52 5872 68 249 19 1 82 1737 244 165 2 3088 823 669 560 144 100 89 2 2225 18 5 131 142 11 54 24 71 84 14 2 13 92 1084 6 5956 213 1747 5 187 2 278 5047 40 340 266 15 34 1 3 1817 23 88 1 178 7 1 8573 106 244 7 1 1225 295 3 5135 98 521 15 259 15 137 671 3 3791 266 766 42 2 514 3640 4 1 9173 7 7783 763\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 888 13 614 23 63 70 30 1 483 4524 915 3683 9 21 123 1857 2 3244 4 2940 1317 1509 9 18 40 71 7170 3 375 268 125 1 1166 292 42 254 5 95 1951 101 1685 30 9 4981 2331 1070 28 4 1 415 63 634 204 2243 40 5236 125 1 2587 1664 1 59 1388 4 897 14 2 3 1469 6 30 498 1526 3 4992 892 14 1 91 259 4 1 13 206 4657 173 90 2 47 4 9 4 2 1252 66 6 8985 5 15 91 494 3 4149 16 1632 1 570 4393 106 6828 44 3 5008 224 94 25 2045 1985 634 6 928 5 26 1303 17 3438 734 2 3 668 868 30 3 23 24 2 306 2737 55 193 317 1458 5 230 3 8452 2 1053 3660 94 956 110 83 134 23 1121\n1\t298 19 992 6 531 331 4 1 166 2270 9957 42 39 2 658 4 3 38 14 8390 14 11 82 7210 6031 22 396 1 59 934 15 9 18 6 1 259 6 202 14 14 1 2891 244 77 1 166 3 1 2646 6 152 1 80 454 3617 13 150 96 42 232 4 211 11 1 2646 196 37 515 590 19 30 8295 112 5 1622 1 103 2088 295 32 17 266 44 34 1 699 444 3711 60 196 1 517 236 146 65 189 949 3 98 60 2448 1 66 6 59 3271 220 33 1030 5 26 32 1 166 717 7741 1 789 444 71 57 30 1 769 49 444 7206 44 543 77 1 4 44 1191 136 4094 7 1 1138 458 51 22 2 1519 5740 7 2498 17 8 59 24 9 13 724 87 33 70 1136 7 1 769 2822 3 8 63 59 830 2 733 393 7 2 33 22 105 6212 5 26 235 5 239 82 68 13 150 36 1 21 1815 10 721 79 9619 42 165 2 327 3791 3 42\n1\t7 62 221 260 3 16 62 221 3016 243 68 30 1 11 296 124 22 40 5 328 254 5 26 3022 3 615 10 254 5 90 194 17 29 6091 598 124 63 2207 10 125 62 1286 5081 13 252 21 1082 20 7 86 1933 17 59 7 554 5 1 37 4476 10 5 26 34 5 728 107 14 1 216 4 376 3 206 1339 774 1 182 4 62 42 2 342 4 4029 1372 7309 6684 3 9 85 15 102 624 19 25 1960 27 5488 29 25 416 421 423 3376 49 1554 244 4733 65 149 7 62 8407 27 191 543 704 244 39 34 13 252 6 2 21 7 11 236 20 1 692 129 4 95 296 18 11 23 504 5 87 1034 27 4361 17 2 2670 164 487 35 190 128 256 297 19 1 427 16 42 407 58 1024 101 105 106 2125 21 190 291 1087 73 479 2868 3 8367 9 3 82 598 124 4 1058 172 69 137 11 83 328 5 1484 1443 16 5991 69 22 148 73 598 1569 3352\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 50 379 3 8 636 5 99 9 18 72 179 10 339 8 112 1740 50 379 1371 2897 4252 3 307 72 3475 5 367 33 336 592 13 2718 61 7 13 2699 50 1871 8 343 1740 129 12 483 6128 3 114 46 103 16 1 135 1432 27 2 342 4 53 3758 17 14 2 129 27 114 162 17 186 65 13 872 345 2897 7 576 289 60 266 109 14 2 7677 7 9 2493 60 181 301 8386 3 57 46 103 6793 9 6 20 1 2897 4252 11 50 379 4283 8646 13 6648 45 8 61 5 149 28 53 1689 10 54 24 5 26 1490 195 207 2815 688 39 36 1740 924 235 6 620 4 25 5943 13 614 317 288 16 2 366 4 3670 1308 15 46 103 1362 6822 139 64 110 17 45 317 288 16 2 5734 684 1073 9 6 20 116 135 42 630 4 1\n0\t2351 183 944 7 1 178 106 1478 15 813 19 25 1191 3 10 57 71 9497 11 435 12 275 35 12 355 1086 140 4762 8 179 300 27 12 2 3250 6763 7 39 36 7 202 154 82 913 7 1 1561 37 10 12 2 5057 245 7 9 431 72 825 11 435 6 7 233 1 1855 883 2 401 4 2 4144 9018 3 11 48 57 71 403 12 3628 8435 2 1655 4335 1018 12 152 160 5 26 19 25 13 150 190 26 258 38 9 73 8 780 5 216 7 1 17 8 54 134 10 6 2973 3 3261 5 55 1379 11 9 232 4 177 271 19 7 11 9638 686 7036 36 41 801 191 26 1 2726 16 9 606 9018 14 33 22 1 59 879 11 152 3097 7 15 127 378 4 36 95 1408 1404 4 1 6575 10 6 39 1698 5 79 11 1 1063 54 24 1 5 787 146 36 11 77 1 441 3 11 51 1336 71 31 7 9866 125 110 10 811 36 2239 2118 606 7036 14\n1\t1 567 1079 14 31 353 49 10 6 9902 1078 10 6 25 5476 226 17 20 225 6 1 304 60 6 2 84 651 3 266 1 242 5 256 44 157 155 371 2 280 11 181 709 3148 29 1239 17 741 65 101 31 1329 16 48 6 5 13 40 3995 28 4 1 113 1005 129 8497 8 24 107 7 2 223 290 1 593 6 202 395 189 2932 3 120 7 1 1138 56 3336 79 7 1 1 121 5670 3 1 67 306 5 2105 100 605 1 806 111 47 41 554 65 15 2 3353 9425 29 1 7230 55 1 265 12 885 3 314 5 20 5 466 199 7821 94 102 84 1123 4 1 9487 788 30 1 35 114 230 1 321 5 333 1 6084 1602 1015 16 1 769 8 83 1374 17 10 114 831 1382 47 16 8675 125 79 6 2 21 38 112 3 75 292 10 63 1232 1 210 1870 10 63 93 552 199 32 2580 3 1959 199 5 308 316 64 1 234 14 2 334 4 1212 3\n1\t123 32 85 5 290 8 495 995 44 1635 7 2437 808 15 77 44 16 2 223 387 3 16 34 1 540 13 3986 501 299 34 236 728 227 1097 204 16 2 330 251 3 8 449 11 33 87 461 8 1961 33 825 28 2869 1815 1 120 100 186 142 62 7 246 1019 2841 719 4 7888 33 4760 128 1727 62 41 359 1 3348 7457 2873 62 6812 94 375 3428 58 286 3 23 63 139 6864 16 2 835 2782 362 7220 1556 37 397 5065 22 23 116 120 76 3183 43 4 62 1741 922 45 33 87 14 109 14 771 110 29 225 4541 24 52 299 7 1 299 1025 345 2508 7 2 251 8275 30 463 101 7 1 41 405 5 26 7 1 41 246 39 71 7 1 42 2 222 3977 3 2 3600 11 1 120 7 62 13 8 12 160 5 868 1639 182 17 1 251 123 28 3979 207 1219 2160 49 239 431 9196 23 198 175 2425 3 23 176 890 5 1 398 28 15 37 8 868\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 332 1 7060 18 180 117 575 48 2 351 4 2 4253 1440 207 578 14 1 372 8 88 139 19 3 926 17 8 54 515 26 3333 52 85 19 9 753 68 2025 117 114 19 1 1471 1 59 177 9 18 6 38 6 199 2606 126 3 75 5 7 3416 660 95 5057 423 9 6 28 4 1 394 210 104 8 24 117 107 361 3 8 112 578\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 80 1046 258 170 1046 190 20 365 9 135 10 276 36 2 67 4 49 10 6 152 2 67 38 101 3420 43 81 190 100 230 8289 29 9 13 129 4657 1 900 2738 4 129 106 4657 343 3363 30 25 12 242 5 995 25 157 7 1 166 8546 6 2 360 5 1 201 3 3543 2734 9925 57 1 709 280 3 12 2 84 16 13 150 64 5371 1339 675 2 46 514 135 45 23 24 117 433 3 343 5239 9 21 76 8577 23 11 317 20 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1530 176 29 1 462 4 9 803 13 92 462 666 10 34 3294 1 462 6 8 1266 2 163 4 188 130 209 77 116 522 94 110 7 698 23 228 26 483 9547 5 64 592 13 3562 2836 23 495 64 95 4 3230 13 3793 2 658 4 91 1041 43 813 43 1053 3 43 13 7551 322 8 96 51 22 38 269 4 1713 3 3804 13 295 32 9 45 23 175 5 64 2 53 108 422 70 110\n1\t406 4916 8 83 64 2 212 163 4 1820 69 1 3645 3 1626 2469 2496 1 166 533 69 17 33 87 1621 43 84 81 385 1 7382 50 752 40 256 1 7500 19 44 555 9446 37 436 1 2391 4 293 1008 3 2219 76 6424 43 822 19 34 4 476 8 93 555 3771 248 43 623 38 1 1714 69 36 19 762 9153 106 33 3131 1 103 975 16 31 389 1022 41 814 3 49 2 264 353 406 289 65 372 1159 33 1006 44 106 444 71 3 60 666 41 49 362 251 7660 289 65 16 1 298 416 33 1006 122 106 244 71 3 27 666 5 1 185 4 1 100 620 30 1 4908 183 667 9344 561 947 3 599 142 412 5365 101 174 129 35 850 109 69 300 51 76 26 31 8580 306 368 67 19 9 41 8 12 39 1096 5 64 3518 131 65 16 1 3177 69 60 12 198 28 4 50 4148 69 42 105 91 10 339 24 71 2 52 201 395 39 143 757 10 16\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 12 46 15 9 297 12 464 32 1 3587 1 267 12 1 238 1 759 55 1 857 12 32 2 846 35 40 428 1134 3645 36 3 8 57 298 4911 1 171 1066 111 105 254 3 114 20 352 1 21 29 513 4 611 1 412 7 2 17 16 102 8 96 8709 4061 971 130 2531 75 238 104 22 1613 33 2292 5 111 105 1264 7 1596 581 9 541 557 73 11 6 62 5754 688 8709 22 1 5773 2 53 238 18 130 226 58 52 68 102 719 3 481 176 8366 688 7 1 5050 145 273 127 238 104 76 70 78 93 5 26 267 3 238 124 87 20 1541 1013 248 9539 53 2902 398 290\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2517 3412 1450 5 165 132 2 568 2382 47 4 9 21 11 72 419 2 973 5 34 4 1 82 374 19 257 4777 1307 9 2463 33 34 336 1027 374 32 358 5 1450 99 10 4382 3 3 72 70 2 2382 47 4 133 10 15 2350 13 777 1219 11 2 21 1 374 16 37 1896 3 1664 1308 16 1 8651 854 80 335 10 52 68 1 13 397 3 31 313 1249 1699 30 1490 14 2 1914 3 5788 15 2 3794 4159 3 2 933 9827 4 605 2 6078 7 1 5211 30 1 8416 14 1 510 2470 1908 14 1 510 5588 3 1603 1939 9 6 1434\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7947 9897 266 2 170 287 15 2 1343 341 1114 35 963 1565 44 306 334 2956 2 526 4 19 2 7401 4787 5 1 6 62 3054 35 621 7 112 15 4085 41 1265 9009 1209 470 3 2744 816 1158 17 25 2314 40 58 4438 3080 3 39 34 125 1 36 7400 8013 11 12 25 17 42 20 1295 16 31 2741 6219 247 37 78 14 10 12 3 28 63 64 42 2 251 4 7 1776 4 2 640 3 1 2137 3609 2816 3 861 22 34 9897 6 2 7815 6291 1 242 5 70 2 17 9 167 78 256 1 19 3163 846 4027 1531 1018 143 787 490 17 436 130 380 1 80 9806 278 14 1 1207 35 557 19 28 4 137 13 7846 4085 1781\n0\t0 0 0 20 55 2215 7963 30 2 4 514 129 1041 63 552 9 775 428 525 29 8930 1073 14 25 3718 40 103 66 66 5 916 1 119 2027 2 368 21 376 654 1862 3 25 525 5 1383 3085 29 1 477 4 234 392 1417 30 25 30 2082 7 2 1852 525 5 3544 2 752 8219 262 30 3 25 1012 30 1602 15 122 3 1 277 22 602 7 943 3260 2505 829 7 1 6408 16 9 5718 43 4 86 401 17 593 30 1 531 7434 638 8319 12 3 9 191 26 5 2 1156 1411 1656 7 1 2 1918 1 182 4 1 21 5 932 31 1617 16 30 6 15 345 4061 216 3 443 238 7 6 340 1 113 456 3 9 2661 1313 4 1 123 46 109 30 450 3741 276 1386 3 1630 14 322 3 10 6 117 2 4621 5 64 3 785 9832 14 44 2002 603 672 6 979 19 412 41 17 51 6 103 33 63 87 5 552 9 158 14 10 6 15 31 8287 7 263\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 180 100 107 97 4947 104 7 80 4 50 727 17 45 420 1351 95 4 949 420 1351 2 1269 3487 5 80 104 36 376 712 2 4908 3 4 1856 8616 1 632 4 1573 2 1408 1854 77 2 3 98 1472 10 34 371 15 847 5 70 2 234 9437 30 1 67 792 29 1 11 16 971 98 1 750 6 29 1 2353 3 37 926 49 8 74 219 194 8 909 2 3791 17 36 503 1371 8955 37 472 154 2252 5 1 292 8 83 354 10 16 2383 41 54 2025 1739 79 36 194 17 786 1776 10 65 19 1 2 386 158 176 65 21 86 541 1523 79 4 1270 6926 17 364 394 16 1 3791 1639 16 1 3886 3 1639 16 1 441 10 34 255 5 2 53 13 145 9547 5 64 1 108\n1\t0 0 0 9 190 20 26 2 1201 3210 17 10 6 2 1462 1151 15 31 731 833 11 1 5415 4 7 661 1342 3 1 8972 895 3 157 5570 16 95 2557 2852 2130 9 9589 13 92 67 2480 200 2 5771 35 432 15 2 1658 29 44 4436 2340 31 7135 654 1937 11 3328 6 2161 5 8563 3 94 27 2019 25 2340 60 380 122 765 4119 29 408 7 44 4 611 14 23 228 1 4069 292 3003 4 2210 1687 16 239 13 6403 266 2 287 15 922 4 44 3011 15 2 329 2130 102 1410 537 3075 31 975 3 44 5512 6818 245 626 7789 6 4 448 609 7 25 4217 1103 4 1 1244 3 17 2472 2 7529 5 1 280 11 8184 33 662 116 687 1515 170 8189 14 1227 2769 7 19 412 17 31 2116 770 7232 750 3412 2204 15 167 224 5 990 13 150 495 187 1 393 2408 17 42 2 9294 7204 1151 3 2 923 176 77 1 2272 4 1217 5087 32 1 2821 4 2 3047 1223\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 997 79 142 3998 49 10 544 47 7 2 7137 7 3 2 742 1036 5 24 146 5 2089 3 196 34 1053 3 2705 125 2 46 9055 1494 136 7163 4365 47 4 1 27 1148 2 1296 3 2080 23 3 98 34 898 2296 2324 7 52 1175 68 461 2943 2181 5 6 2 249 2892 3 6 198 288 16 2 1949 5 4910 5136 65 7 2 1053 3 7163 255 2 3039 19 44 5 348 44 27 451 2 131 2563 1214 2434 15 1 558 401 1277 7 3203 9 6 2 264 158 245 2943 2181 3 742 22 1 59 102 171 35 352 9 572\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 119 6 1 121 6 1339 1270 4 2 3190 298 416 3103 1 861 6 20 91 17 10 276 36 10 12 757 15 2 8 339 1088 4 9 12 31 7023 6800 739 41 45 1 81 516 10 152 179 33 61 253 2 53 135 96 469 6753 663 762 81 599 200 7 2 661 569 1727 1639 1653 10 40 52 68 86 1551 1555 4 2688 572 1 53 559 3769 65 5 31 161 4399 1828 3 8190 1 3142 260 7 1044 4 2 572 1 7 2 1863 133 31 515 1214 18 9640 2 873 478 1584 17 15 706 42 34 56 678 17 228 26 5236 45 133 10 136 7 2 103 42 2 148 5765 15 661 7737 5 154 1214 18 1881 23 63 96 2562 236 55 2 661 324 4 1 53 5736 1753 3 2 7 1 4169 45 275 876 9 5 116 408 16 2 2156 366 18 348 6040 116 305 2228 6920\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28 4 1 2049 4157 1716 28 11 6 5092 3 6 279 283 85 3 702 1 505 258 30 3044 5799 14 6 4455 1759 22 1 13 92 102 170 35 309 2773 3 1 22 1529 2773 4321 123 2 84 329 2239 1037 5 106 23 173 352 17 449 27 255 5 2 464 27 2788 115 13 92 1206 6 4763 5870 3 6 2773 63 998 86 221 15 1 1143 4 50 1551 6769 1 478 4 1224 966 2 21 16 1 389 1499\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 531 209 19 9 5272 2546 5 160 5 1 484 14 8 36 5 64 48 82 81 96 4 1 108 8 284 97 746 66 367 20 2 203 9 79 5 187 9 21 2 5764 8 56 191 186 2272 15 127 14 10 12 8 202 337 3 1783 16 50 319 2366 3 45 23 163 4 1755 381 9 23 191 26 728 29 1 182 4 1 141 1 81 516 79 367 47 1767 2386 2 351 4 9190 3 8 590 5 126 3 1786 8 339 24 8760 10 65 8 721 1000 16 146 5 10 6629 51 12 1 1187 16 2 163 4 53 4181 883 5991 45 23 17 630 3136 2011 1171 1 185 169 109 17 8 343 27 12 386 1241 30 2 345 263 66 200 3 337 7293 552 116 319 8639 9 6 2 3960 66 76 26 1738 29 2 305 1320 774 23 7 1 46\n1\t0 0 0 0 0 133 1882 73 4 1 738 375 1683 3313 8428 14 2 5788 3476 216 4 632 11 266 112 421 3359 4 7071 13 1226 430 120 22 5342 3586 5244 16 11 4 2 5 1 8847 16 912 27 6 7087 1 4692 35 2731 5291 85 1749 2757 17 16 44 1258 766 6875 3 2 2240 249 15 1961 7 5117 3093 76 889 1 282 4 116 13 132 22 1 2495 4 3445 3933 34 6344 30 2628 4 1 8190 2 7 2 1596 249 2 31 5194 11 963 2439 7 4 2 13 92 21 6 355 2599 29 2 1835 4895 2 3085 2621 5 934 15 31 1 4475 2 5528 8713 5 25 5 24 537 30 523 1596 1327 6 4304 5 3 1 259 35 621 3072 136 2 73 27 1019 1 366 288 16 25 1156 13 743 1681 67 15 1228 2240 5281 4016 3 2 558 121 1946 765 32 218 487 7 1 1 580 112 255 32 1 13 19 78 1 166 952 14 3 17 19 2 2478 445 3 15 2\n0\t583 1373 1 80 4489 117 5 645 1 184 1250 995 995 8048 9 635 270 1 1 59 1820 424 72 22 377 5 230 1140 16 122 73 244 2 245 9 6 1258 220 9 583 6 169 1458 1 80 129 117 23 175 5 564 122 140 1 389 158 3 49 36 261 294 5188 1036 5 359 1 9525 23 76 26 5751 122 7 2220 1920 375 4 1 81 29 1 856 106 8 159 10 13 252 6 59 1 330 18 8 24 340 2 5 19 1 6157 1 82 12 2997 3 30 851 8 339 348 23 66 12 2194 294 5188 57 2 3692 7 249 4716 38 1 85 11 465 583 7235 66 27 12 20 1356 310 689 27 367 146 36 218 59 111 8 54 87 174 967 6 45 33 3295 50 434 823 155 5 5 13 150 54 243 99 2 4 613 1748 3066 68 64 55 2290 269 4 465 583 702 59 73 8 173 187 10 2 1332 3168 66 6 48 10 56 7767 275 4874 1 215 4 9 158\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 520 74 272 11 2307 1 838 7 117 6 1 4946 4 2 119 3469 7 6157 1 2651 6 641 220 51 6 58 441 5220 119 41 1034 228 2209 1 5951 3580 4 2 108 6 28 4 1 80 4499 3 2288 971 4 1 616 1926 3 9 1445 930 6 738 25 80 703 8 241 11 1070 411 40 2786 48 6 9 67 17 51 22 11 5 4800 41 1346 9 8370 141 3 10 6 211 5 284 62 5656 115 13 1226 2400 6 2396 13 9267\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 2 46 179 7977 158 258 16 29 1 85 10 12 152 2 568 1009 1400 5168 94 1 5725 10 1478 5 26 17 86 1284 3545 61 105 731 5 5777 12 152 29 225 3334 172 1929 4 86 28 57 117 455 4 1 3 1 3755 915 4 12 1550 758 5470 13 92 748 3 293 363 228 176 2 103 17 184 319 16 4984 5585 124 12 2 7 11 3856 45 23 176 4441 23 76 64 297 531 151 1821 9 6 2 859 141 20 16 47 376 2283 596 11 2004 694 140 28 938 4 179 1013 10 1263 2 1519 4821 279 4 13 252 12 93 226 53 158 1 182 4 25 754 4984 5585 9904 94 11 10 12 34 9336 2662 3 184 445 3216 3786 9 228 20 26 1 80 1474 102 594 18 117 1716 3 1 393 228 26 1119 3 17 86 254 5 149 95 21 1840 15 5299 4078 35 54 9955 2 915 36 476\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 12 91 32 1 3587 1 59 1734 4 1 18 12 11 5857 405 5 70 2 298 823 1 121 12 2444 1 4571 61 1171 47 46 8606 36 49 9098 165 8985 224 11 4200 8 497 10 12 7 1 2841 17 49 1 182 4 1 18 255 3 6352 3 1 82 259 22 7 1 3254 23 64 9098 37 5857 191 24 881 7 5 70 768 1 185 11 56 165 79 12 49 1 315 282 3 5857 61 7 1 3254 3 5857 472 1 6354 3983 3 768 28 10 12 586 121 3 102 144 511 23 39 473 200 3 4134 1 98 49 6352 6 355 4106 30 5857 45 23 24 1 144 20 39 473 200 3 37 2317 9 18\n1\t624 5 26 9495 5 1 7583 8114 3 31 13 243 68 121 36 33 6129 1193 1 1481 38 1 516 1 253 62 6956 169 8128 292 33 63 785 1 3216 1 415 481 64 1 238 17 3882 2 1681 9947 49 33 28 4 1 1481 5 1851 2 599 2219 19 1 3118 28 4 1 1340 1102 270 334 49 2 633 6 5 1 9192 974 30 2 1 170 98 191 5880 15 2 774 9722 49 27 40 5 4012 261 422 32 712 1 136 1 282 6 128 13 30 5145 5 11 66 126 498 47 5 26 2974 68 11 66 126 3 1 2422 516 62 913 3 4201 16 1 9947 11 76 2702 9641 5 1 234 292 1 272 6 89 362 3 396 3 1 21 2 222 7 1 151 2 1083 272 38 2 1342 106 2 1105 8696 15 2 7338 1055 8042 40 5 15 31 1758 526 4 9461 3 4210 28 63 59 449 11 234 5989 3 1 8980 4 86 221 81 76 1426 1 5 209 5 1422 15 1 7220\n0\t25 21 12 757 30 202 277 269 19 86 215 598 4228 10 213 832 5 64 712 86 3762 833 14 1 16 14 78 3536 447 3 14 1 644 386 599 85 76 1018 1059 1 1106 457 1 1123 127 2729 824 14 3170 5998 5 2 19 727 469 3 1 69 893 3 1286 69 66 1 423 13 19 1972 29 2 913 429 285 1 4 1599 2762 861 31 1190 4 3591 7 66 1 7189 69 4725 3 304 7 3757 7034 69 181 5 2 4 9683 203 1789 2 696 3979 1188 1 166 349 15 2 7572 953 66 77 2 4 882 285 1 570 245 480 86 119 3 397 1353 76 1607 32 1 3 136 1 102 633 4531 22 14 4051 3 2529 14 88 26 1 976 466 576 25 2796 29 1 85 4 6 8304 4405 7 2 280 11 130 24 881 5 43 304 2 5971 8626 16 1280 18 3760 31 1474 16 307 2684 6 31 7410 6280 99 47 16 1414 1592 112 7 2 1516 2691 29 1 182 4 1 2803\n0\t9921 4 3918 42 20 11 1 18 6 2007 42 39 20 48 8 12 852 41 1247 1987 136 180 71 1997 4 1 3918 8280 129 16 1166 145 20 2235 1100 15 1 709 41 1 2461 37 145 588 77 9 18 14 146 14 31 11 190 26 185 4 1 302 16 50 3315 8 12 852 52 238 3 52 1211 1 21 6 494 8 1331 8 12 288 16 146 15 2 103 52 1464 4939 14 10 424 50 442 6 3918 6 2 686 135 51 22 46 45 2184 1 505 29 225 32 6 4752 17 162 7621 14 508 24 60 123 1030 2 103 105 5 26 301 1202 7 1 462 1174 48 238 168 51 22 7 50 442 6 3918 22 28 4 1 124 5118 5011 8 100 969 77 1 5534 11 9 287 88 3258 2 1301 4 4853 13 150 56 449 9609 8282 271 1929 3 151 1 2 184 445 21 370 19 1 3918 8280 1223 145 2173 1 1292 40 2 163 4 1187 3 8 54 46 78 176 890 5 2420\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 76 5912 1 7801 4 1 1960 284 2 42 1115 261 54 96 9 18 2149 1 85 3 5 6555 180 107 6733 104 183 17 1 18 40 39 71 8 143 96 8 54 117 335 869 6320 220 50 374 2165 133 17 8 214 512 288 16 1 4033 3334 269 77 298 416 4261 22 138 68 9 3 1 171 602 130 9 32 62 5314 6 28 4 97 11 209 5 1960 50 35 1371 127 2514 4 104 55 590 10 1294 195 11 40 5 56 348 23 2730 45 23 99 9 141 3 36 194 8 76 16\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 131 6 38 102 3298 536 1413 4689 101 1 1186 28 40 43 1410 922 19 1 82 874 44 975 9793 40 922 36 80 4 1 415 19 1 7724 33 328 5 1594 239 82 33 90 3036 519 17 33 83 187 65 3 3 1 131 6 93 38 9371 1 7 500 8 336 9 131 37 1264 10 6 211 3 1 171 22 37 452 8 192 56 747 11 1 131 6 2287 8 128 99 1 85 5 5819 6 46 6624 190 26 147 5 267 17 60 266 56 530 60 6 28 4 1 1624 8 36 2034 8 36 7236 3 733 33 22 46 2142 6 2 1574 860 3 151 23 539 239 85 27 289 960 15 4689 214 2 148 493 3 8 56 36 126 2458 689 7451 129 6 37 211 3 60 6 2 1574 3694 8 54 36 5 64 44 1129 9 131 56 270 23 7 3 151 23 2499 8 555 1 131 1336 71 2287\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 460 14 783 1760 31 3 2 1277 35 271 19 2 1776 3 2410 2462 5 552 25 975 32 9475 3833 18 6 37 7198 89 3 37 91 11 3044 6 957 3 286 40 535 269 4 412 387 3 55 137 662 95 452 790 2 464 141 17 1 168 15 3 6729 2458 32 2 6078 3 22 279 2 156 4267 1417 30 31 5236 4384\n0\t114 9 2972 767 41 8 63 64 144 6755 13 150 969 1 431 32 10 12 50 74 37 12 7844 11 6 1 59 53 177 38 1 839 13 150 495 878 56 19 1 505 220 127 4416 8 7663 1002 147 81 35 1808 56 1866 1 329 224 39 260 5142 29 225 180 100 107 126 183 7 95 574 4 580 983 856 41 2229 45 8 2723 98 8 24 728 1837 2350 13 724 1 293 363 61 332 2627 9 213 610 2 6015 17 1 215 376 2748 114 138 68 9 217 11 12 172 1924 8 258 165 2 539 47 4 1 91 559 41 146 36 9127 2468 14 10 4106 1 892 288 15 4487 588 47 4 1 288 146 36 2 2726 8 1435 909 5 963 64 1 2914 19 5199 136 3889 94 1 661 83 55 87 10 11 3133 13 872 11 247 55 1 210 4 110 1 574 57 79 1437 45 8 12 152 133 2 1045 21 41 2 2013 2396 13 4 1 83 351 116 269 4 1 2662 404\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 713 1882 5 70 140 9 158 1 74 85 69 3 10 12 36 3769 3495 69 3 4636 1 330 85 480 2 84 305 1 42 311 105 7441 13 614 23 63 70 5 1 1005 9065 1146 66 270 65 80 4 1 330 350 4 1 158 23 24 10 1716 17 42 1360 355 5 11 2115 51 22 43 240 2492 30 285 1 1 393 6 1462 14 4374 2530 142 3 33 25 8458 125 1 4124 13 777 2 327 441 7503 3 10 1419 6952 7 1 74 350 3 1 545 32 2458 7 939 8 2172 1 148 4374 12 2 163 52 240 68 9 4006\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1060 4351 4 4054 5 1282 67 16 28 736 4 1 2953 66 511 26 37 91 45 1 1714 61 95 53 29 513 1 2432 4 1 2070 5714 231 40 71 301 3 3546 2798 1 683 3 1700 7302 4 1 67 6 9700 10 153 352 11 9 6 2 27 1071 297 27 1 119 6 676 2 2513 4 9310 55 556 19 86 221 9 6 2 21 1738 2 2070 15 2 7970 14 42 1 74 4 203 581 470 30 6634 3 993 745 3 1490 6605 86 334 7 203 622 6 17 42 2145\n1\t5580 1 435 6 674 17 1 585 6 27 6644 47 4 5 25 435 243 68 5 9092 3719 243 26 15 25 5657 1 435 6 7 2 163 4 188 66 1 585 153 365 3 1 189 126 6 1 3511 11 8883 1 1794 292 10 6 396 243 245 36 95 53 1611 18 51 22 9711 120 7633 385 1 16 665 2 287 19 2 7 35 655 101 1783 16 8837 5 311 196 7 1 3 985 15 44 874 28 736 66 33 2309 5 26 2 334 17 173 149 10 19 1 7 174 164 33 1006 8837 4 27 63 1271 710 17 98 1745 31 8562 2219 7 51 6 93 2579 623 69 7 28 913 1 585 4 2306 3 451 5143 69 33 22 340 2 17 831 6756 5828 16 1 10 1225 295 183 1 435 63 3471 1 5327 33 963 90 10 5 69 1 5327 5610 4 1 17 19 2 78 16 10 6 34 1213 17 9331 1 18 213 3733 17 6 1515 7 86 221 744 2 232 4 2377 15 6888\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2199 185 4 257 518 3787 72 109 563 1 103 1147 19 11 84 131 13 499 310 2156 366 3 307 12 6596 5 1 756 4994 9 12 2 148 131 5449 231 7542 51 190 24 71 2 8132 17 10 12 1 627 231 1190 11 1789 307 6340 13 12 14 1 4 1 1499 25 911 2769 72 396 61 303 5 560 11 1147 2 191 24 71 1 113 4 7225 5 11 345 379 4 25 35 57 6920 27 360 13 72 34 3307 144 4252 303 1 880 1 131 12 2 2660 2550 3 4252 4057 4 319 49 27 25 895 100 472 142 14 27 12 2920 14 2 4757 27 130 24 713 5 70 155 77 1 1199 27 407 433 2 30 7206\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 8 812 765 223 1247 5 149 2 272 3 101 6572 8 76 74 348 307 11 9 18 12 1634 2724 1634 3 1375 1317 16 1 1318 1505 7 1 74 5835 8 179 8 228 1023 15 849 283 14 27 419 1 18 1 5368 10 17 12 655 765 48 27 5672 8 192 169 3238 5 26 605 1 166 601 14 275 35 4753 11 1 18 1419 7320 369 79 26 1 74 5 867 11 12 373 43 686 6540 939 50 438 63 924 9868 1 4934 38 9 1067 1024 2 551 4 1513 26 1050 31 3785 5 2 108 45 317 1770 227 16 23 130 56 99 82 2514 4 484 20 3237 1424 77 1 1045\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 1 1446 4706 9 6 2 3031 489 108 245 10 5933 2 774 425 868 19 1 4833 267 8 63 96 4 156 697 1545 11 90 79 539 14 254 14 8 114 133 9 108 2127 1272 2147 7 2020 296 1206 3426 79 77 8 511 351 1 3498 41 2157 2037 5 1 388 1320 5 760 194 17 45 23 780 5 26 8981 19 1 7205 29 535 7 1 2341 3 10 255 19 2534 841 10 689\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 21 6 2 360 18 370 19 1 157 4 2 164 404 4005 7 5126 8 214 10 5 26 7050 6286 3 7574 14 3 10 3019 65 518 7 4005 157 3 1026 122 140 25 80 3 9179 13 92 21 6 38 2 2134 1297 35 615 411 1 6533 4 1 27 93 1 7 1574 6559 3 1 4 9 6 31 5006 1292 7 1 5126 3 1317 109 27 432 2 109 587 3 1 22 1578 5 13 92 1084 4 4656 4430 181 243 9508 17 6 20 261 1841 5 3809 11 272 191 74 99 1 18 5 5084 4430 1745 2 360 278 14 123 4444 6 2 627 651 603 334 9784 4430 6 1574 1074 5 1 929 7 1058 2164 4121 13 150 54 354 9 21 5 261 942 7 53 1794 304 4448 41 10 6 2 18 16 2752 14 322 618 537 457 394 19 54 24 1245 1068 1 994\n1\t31 2524 5340 136 1 102 1081 2791 525 5 6331 3 239 1885 975 288 56 169 5375 2 528 3 440 5 1817 5026 1752 51 22 877 4 1 692 8303 267 2 156 529 4 5225 3 55 2 892 4853 6030 11 2448 154 178 42 1107 591 1474 6 1 178 7 66 2 7 639 5 932 2 3406 16 25 5896 16 205 4 949 10 6 31 2557 35 8150 1 4 3 2019 44 1514 5 13 1 12 1 8059 1707 189 1802 5124 3 4110 3 1 957 3431 7 66 470 1 8725 6598 2666 1 644 265 3 3 239 668 604 6 3 2571 55 45 33 662 169 14 1201 14 137 7 3341 85 41 72 941 5124 1035 5 1173 1126 32 25 687 197 78 5766 17 42 254 5 830 1 5444 197 1 1817 11 88 59 101 7272 1 4 1 1151 189 3 557 109 15 1 4931 4 1 102 250 3108 3 9348 2 9621 5 925 15 2088 40 2 342 4 931 6132 6878 642 8451 516 79 66 12 1868 428 16\n1\t46 1985 18 15 4282 168 4 5405 11 80 81 54 20 504 5 64 7 2 315 3 482 135 136 58 893 1630 22 620 19 2238 10 6 46 631 48 6 2267 142 13 150 381 133 9 21 46 78 3 8 241 80 661 1607 76 70 29 225 43 3805 47 45 194 258 15 1 124 1965 4939 8 114 96 136 133 10 11 1 2216 384 2 222 673 29 3558 17 8 96 11 38 80 104 1 74 85 6 64 450 2740 8 96 11 202 34 104 180 107 89 32 1 362 8775 57 43 1681 2216 922 41 732 546 39 143 169 1907 9 12 229 39 1 5436 4 3164 247 169 286 608 10 54 186 39 2 156 52 982 1498 2 21 32 3 1498 10 15 31 362 8775 21 3 8 96 468 64 48 8 13 6406 805 145 46 1096 8 12 446 5 99 1 215 10 56 123 90 2 184 9484 93 95 294 3145 596 76 26 619 5 64 122 7 9 18 183 27 12 754 7 31\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3121 164 7 1 6 2 167 53 108 10 6 46 1462 29 268 3 6 46 109 248 7 34 8 511 134 1 21 12 1722 1571 17 48 6 127 13 92 201 1144 34 114 2 84 329 15 62 5763 2237 8 56 381 283 8752 29 132 2 170 3575 3 123 169 2 53 1614 1856 1588 123 2 514 329 14 530 3 1 59 82 454 8 4546 12 1334 35 114 2 885 329 15 25 1174 8 56 338 129 2 3284 29 268 27 384 5 26 1 232 4 435 23 17 7 1 182 23 56 36 25 1223 1 344 4 1 201 12 46 53 14 2593 13 614 317 77 1462 104 38 1758 65 3 1873 15 48 157 3448 29 1259 98 23 3753 5 99 9 135 420 1379 765 1 119 5133 3 45 11 981 36 146 1397 26 942 1356 98 139 16 110 449 23 335 1 158 1359 16 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 4323 9 18 19 73 10 5586 84 2946 3 1948 8 12 93 2 84 325 4 2 696 4285 1 18 6 46 78 94 2081 7432 46 696 802 15 5097 274 5 1708 223 85 7752 7 239 3812 55 43 4 1 168 61 9811 395 1170 15 3527 553 2 84 441 5972 3 5113 4 1 234 7 31 6712 2753 3 84 1224 9 18 39 4059 32 383 5 383 15 58 441 1669 668 3168 3 42 8 179 51 191 26 43 426 4 622 4 1 350 1 18 6 3 5325 36 17 8 143 1460 5 1067 8639 9 6 2680 760 10 45 23 17 87 20 751 110 1 1132 130 26 3238 4 730 16 1472 9 689\n1\t6 58 85 1130 19 2411 2145 3 144 54 10 51 6 105 78 53 1097 204 5 6282 1065 8172 201 6 452 40 71 1669 7 2 3983 4 484 37 204 12 475 2 280 169 4739 16 550 6 1257 37 42 7826 75 60 1630 3 35 6 1286 169 4127 6 243 501 5 2 1114 4295 73 27 6 1727 37 78 2745 1773 11 8 143 3082 122 29 2808 669 555 33 114 11 5 4711 7 154 18 37 8 511 24 5 99 25 1230 8 1169 1200 5 3082 8416 3 511 24 587 60 12 7 194 57 8 20 107 44 442 7 1 6 1515 14 2233 2 222 1846 5 64 44 7 2 1005 1174 6 1 210 249 3280 4 34 1 59 1084 4331 11 61 6269 61 31 362 30 6496 3 1 400 2271 8124 4 1 6304 9799 23 179 420 1483 2498 1221 143 5917 1453 8 96 6 1 4528 1412 7 44 1635 14 2 1230 73 1 21 6 38 738 82 188 608 3 38 2 1665 353 608 60 2589 7\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 7 50 1520 15 3796 16 1 210 18 4 34 1425 13 417 7406 1 324 4 1 201 4 5273 7 2 5515 2700 5 1876 5 296 2 8395 2066 880 42 30 2 259 15 2 207 1 80 1303 1329 4 25 4811 13 850 5865 8 1266 3 1 344 4 1 91 1671 34 186 498 5089 62 1003 5195 5 1 5 949 2 5782 506 6 13 5804 98 5333 5 2629 7734 3 2817 5865 1140 30 253 62 5195 209 5 500 127 5195 1483 132 14 3 101 881 224 19 30 161 2479 15 13 13 252 18 1220 7 2 4930 1184 848 1419 236 162 5 90 1 545 1 393 13 614 23 24 332 58 3055 16 116 336 4449 760 6300 15 2350 13 614 23 474 16 116 336 2 103 5 116 558 760 34 4 1 5554 4 6300 3 2321 126 7 116\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 18 6 4290 8423 4 2855 101 39 2 4 3853 2855 93 5162 5 5357 19 576 16 86 13 89 9 18 15 1 11 2 1541 4 3 9434 1 76 652 408 31 8947 10 590 47 5 26 9570 13 2663 1 312 4 1 462 6 1685 32 1 9305 2073 7 1 1571 5557 6 620 14 5459 14 6379 4 13 191 899 47 4 4589 3725 45 10 693 5 26 556\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 133 9 18 12 2 351 4 290 8 12 6159 5 597 7 1 750 4 1 141 17 8 8 83 118 48 1133 17 8 2178 11 7 1 9455 415 70 14 439 14 3788 33 825 5 5 2158 3 5 566 7 3 207 93 2 351 4 85 1240 50 488 1441 48 1 898 12 11 570 178 7 22 33 128 1076 41 6 10 11 42 806 16 307 5 241 81 22 198 2\n1\t2 568 860 3 9 6 475 2 2451 16 11 860 5 26 381 30 2 2081 1754 8 99 9 131 3 8 539 2 46 1114 4 1 8801 8 173 134 11 38 97 249 63 5917 9 131 6 475 146 147 3 240 3 6432 6017 9 6 2 131 8 76 100 773 3 10 6 28 8 76 751 19 305 14 521 14 10 255 689 23 10 5 725 5 99 9 8 6660 2 223 549 16 9 3 39 5 26 1 81 35 22 5888 30 9 131 39 83 70 3951 436 33 551 1 2717 5 9868 3951 33 130 582 253 7855 4 730 30 8435 146 33 83 5084 261 35 1123 1 736 7 3487 5 41 35 2506 11 60 59 5 6 111 142 1 444 610 1 39 44 3 468 1108 64 11 444 2 568 4 2886 966 45 23 83 118 11 444 9141 34 4 127 5006 23 83 70 110 3 45 23 83 70 194 87 1 344 4 199 2 2454 3 26 2446 38 10 37 72 63 34 335 1\n0\t648 38 160 224 7476 9665 145 20 273 48 11 57 5 87 15 235 422 33 61 667 41 17 28 177 145 732 4 6 11 10 936 2027 4470 2740 1 18 6 4245 447 6 1463 14 9448 3 13 659 95 1723 1 648 2177 7495 1 250 129 7129 3 30 5404 4418 34 125 44 823 15 2 1449 3 5333 5 1243 200 15 31 55 176 7 44 125 671 68 60 544 8340 13 150 175 358 719 4 50 157 9142 13 2 342 4 1610 5324 66 8 653 5 13 8 96 4 14 6749 40 390 2 163 52 148 5 503 3 458 66 8 314 5 1064 3715 6 2 163 364 148 68 1 69 43 648 522 19 1 4 7652 13 123 10 186 16 28 164 5 24 31 10 270 39 28 5425 162 1714 19 1 34 1 1714 22 31 286 27 40 31 69 43 1537 522 4 44 221 416 4 13 288 29 992 7 1 1352 812 5439 8 812 5439 317 317 8 24 69 250 919 1 2253 3 1906\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 528 31 2557 4 1 1615 4 2 3000 1924 7 9 141 9613 16 139 874 7 874 15 395 761 8439 995 1267 864 854 143 80 1214 255 32 1585 31 296 728 4392 15 2 3507 4 2958 638 88 20 24 71 95 52 28 63 59 75 54 27 24 7 1 80 1 9251 12 5670 3 10 6 2557 11 130 24 1866 25 1191 19 146 6801 3 89 10 669 2292 5 96 11 27 57 874 7 1749 9\n1\t1 272 11 28 331 594 4 1131 12 2681 303 7 1 3005 974 3 10 12 308 316 3572 11 10 14 174 3331 13 820 689 1 178 15 86 822 3 9717 3 4 448 1 4 9151 3177 11 6 14 382 2 391 4 14 95 7 4926 8110 41 1 1 59 9502 8 149 15 1 18 6 9070 2706 1778 3 436 43 4 1 1043 7 1 74 3218 1 67 618 7 2 8053 7215 66 1 2932 59 3272 5 8 241 1 2761 7122 2639 4 3 2 2757 538 16 11 13 54 411 7 3572 16 764 172 3 1110 7 5 1917 286 174 3210 1 1388 4 4670 436 1 8262 4 1 21 1762 11 12 459 7 86 663 30 11 290 12 20 1 1009 1400 1246 2 376 2451 16 4589 6321 376 4 1 387 5959 3753 5 24 9249 3 3331 1892 15 1168 183 1 18 12 55 4303 172 406 3 28 594 4 1131 9960 6 128 28 4 1 113 21 1762 1482 28 6 1458 5 1416 11 191 1810 16 2730\n0\t1075 105 78 4 294 492 7 25 6335 5213 26 5739 244 2 3501 3 2 18 207 105 5904 7 5 230 36 53 3425 286 105 7 42 1967 350 5 230 36 2 299 29 34 1 91 188 38 1 4 1 1425 13 6 385 16 1 2062 1221 14 6 8119 17 42 56 162 52 68 2 18 16 3 45 23 36 25 541 23 76 149 146 5 335 675 906 236 46 103 422 5 354 9 1137 4 1 263 1092 3448 65 235 547 15 1 1675 4 28 591 53 178 1295 2 892 1594 526 1873 15 2 46 3656 13 593 6 14 1669 3 14 1 1075 4288 11 23 2702 1 23 617 107 7 394 172 3 27 181 5 96 11 311 1472 1 4534 371 197 2 53 1541 41 547 474 556 76 4810 2 7935 1075 72 70 2 2518 9262 15 105 78 9045 19 5037 995 9 3 1382 1 892 19 316 45 23 175 2 1111 661 1075 6385 13 8844 9 45 23 1 2327 3802 2327 9383 1 2327 1 1291\n1\t1 6188 104 3448 39 38 154 7606 16 2 3 55 1583 2 156 8299 11 143 3097 111 155 13 872 20 59 6 1 2608 19 874 14 1 2030 4 1 2953 17 37 22 132 211 559 3 7959 14 3 39 38 154 82 353 7 368 11 653 5 1243 77 1 7319 1397 26 619 30 75 97 2121 468 8 118 8 5265 13 872 1 322 49 33 357 827 33 209 29 23 884 3 36 2 2863 51 22 105 97 5 1810 7 1 2353 142 15 2 1184 833 788 30 1021 1712 17 23 24 5 99 16 49 33 3 33 24 5 2 103 105 6281 115 13 33 291 5 26 246 299 3 8 12 1094 2 53 1234 4 1 290 7 1 769 1024 51 12 877 4 85 5 96 38 75 732 168 88 24 71 3288 69 20 531 1 113 177 5 96 38 94 133 2 6385 13 724 16 2 673 366 49 236 162 53 19 2534 2133 7 3 26 1578 16 43 686 13 2682 841 47 83 26 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4067 4118 4067 4118 168 22 48 23 76 149 7 9 135 7 82 2800 10 384 3685 345 5 437 1 668 2126 22 470 3644 7 1 6392 6470 955 91 3 631 4 1 171 32 85 5 387 115 13 92 21 6 223 3 1466 8834 10 151 156 272 3 55 364 1821 115 13 677 22 43 53 1154 1815 43 4 1 709 824 22 152 258 1 567 1361 245 1 21 196 527 3 527 37 11 10 6 301 5875 3 1258 5 365 30 1 714 115 13 92 1625 8 159 12 46 11 6 20 306 16 1 135 11 6 5 134 1 189 1 1625 3 1 697 21 6 146 46 542 5 2 2555 1294\n0\t546 88 26 19 28 874 3 300 350 4 110 6 25 280 55 52 68 7 1 74 1871 2549 6 242 5 634 36 7208 444 9766 17 207 6 2549 6 55 45 2549 63 26 211 30 992 19 7167 60 6 20 7 9 18 73 444 20 121 14 60 314 5 3218 8 118 11 10 130 26 254 5 6163 1956 35 12 53 7 2 280 2 1570 16 44 280 7 1 74 3750 17 60 89 2 184 378 4 372 44 1538 60 262 372 44 14 16 1 441 42 39 105 4 448 72 563 29 27 182 4 1 74 18 11 51 54 26 2 967 17 3 130 713 5 787 2 52 641 67 36 1 74 2351 1 2249 22 5407 3 1453 1581 236 58 52 68 535 211 546 7 476 1 59 53 188 228 26 1 1759 3 43 293 2170 37 23 24 59 358 1318 5 99 4360 5884 45 23 175 5 825 75 5 5761 4289 2 141 4509 45 23 175 5 351 116 85 41 45 23 56 321 2\n1\t7 31 2561 669 241 8 320 11 10 12 2 2561 41 606 3 10 12 1 8737 431 6768 10 74 3246 3 8 12 2 2568 12 37 747 5 13 3 1 537 152 70 47 4 1 5203 3 55 390 6589 15 3 11 6 75 1 46 226 131 13 1601 4 1 537 4013 62 1912 3 214 1617 7 239 4 62 5613 10 12 2 360 393 3 8 4555 73 8 12 749 16 126 3 1 131 384 37 1087 11 8 152 3114 7 62 8 449 11 9 232 4 393 3557 306 7 152 16 13 743 84 131 3 97 82 84 289 1417 642 3 1 9 12 31 1477 1165 16 7465 756 3 1 113 1063 61 1477 29 11 290 249 2391 6 1477 16 1 2122 3 8 39 112 10 73 8 481 820 1 3563 11 72 22 133 1938 155 1 5725 3 7021 1244 902 22 2 2057 7415 47 204 3 72 321 138 13 2 249 2391 215 3280 4 1 2847 3 2804 794 33 2369 7 5770 7 1 61 1\n0\t8 365 144 86 37 9 21 6 37 573 37 1722 428 3 5360 402 445 11 1 393 6302 66 131 34 4 1 757 168 106 33 62 2131 22 1345 1 1324 1 21 6 38 2 5427 201 16 28 631 2650 44 5329 912 1123 44 2208 15 31 5690 2863 5 1622 6781 32 174 7684 77 9 4084 49 60 2734 7 43 232 4 1009 36 4293 1 1383 3448 10 77 1 1089 155 4 2 3862 15 28 2169 5 3998 194 3 48 87 23 2 635 7 2 1198 2417 5792 827 4079 1141 1 2169 15 2 7564 577 25 4141 98 3902 5 2 4521 3317 17 243 68 350 1 5170 2495 4 1 8598 5 149 10 3 2909 1 1228 137 7 4383 39 597 10 65 5 3 1796 5 149 10 19 62 3011 17 58 3683 9 18 6114 34 86 4102 223 183 3483 9 1092 3902 101 5630 2 755 30 79 59 73 4 4833 3886 1956 693 5 9940 1 1278 4 1145 856 45 33 83 118 38 10 358 47 3623 1581 56\n1\t2260 2 222 77 2 109 587 13 92 18 6 20 14 84 5 99 14 1 296 324 17 42 2 84 18 9 4 448 20 7 1 225 6 664 5 1 18 42 84 627 441 11 6 31 1930 28 3 1745 1 18 15 43 84 120 3 10 1026 1 821 169 4441 3 6 2091 650 1 166 14 82 18 2639 4 86 441 15 4 448 14 2 1820 11 10 165 274 7 31 1101 13 10 65 5 1 5 90 2 18 38 157 3 1 148 81 7 110 127 362 198 24 2 46 1087 507 125 10 3 22 2091 93 169 1295 5 836 831 1 18 433 43 4 86 869 1918 1 769 49 1 18 544 5 230 2 222 3 7 3955 1 18 88 57 728 1168 1194 269 13 8 83 56 24 78 422 1332 5 134 38 9 108 42 311 2 3461 89 628 370 19 43 1381 84 3 627 2732 3531 169 31 1502 3609 2289 16 35 3884 5 1654 43 97 52 84 3 1201 1101 1005 3648 13\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6118 1746 193 6457 7 7714 999 5 26 31 483 4217 3 1474 238 682 13 92 4438 1033 1548 204 6 623 69 307 498 7 1269 453 11 1851 1 21 15 2 84 934 4 13 7551 30 1 744 4 1653 5791 76 26 30 1 4 1 120 7 9 4285\n0\t13 1149 45 236 28 177 5 26 367 16 10 6 11 444 49 60 12 31 6919 60 274 1 234 4 5377 2753 155 910 982 944 7 158 60 40 274 5377 871 7 21 3 1342 155 910 1166 30 34 1 80 2680 3016 415 24 71 5 24 3746 295 1208 949 3016 33 24 71 37 2805 242 5 2162 33 56 83 13 1149 1 83 284 95 1231 45 23 83 175 5 13 1149 2176 1 28 53 177 8 76 134 38 9 158 3 8 56 12 1475 30 110 33 143 139 16 1 8878 69 129 2058 7 1 749 368 2526 129 54 24 1436 19 1 5797 3 44 766 54 24 71 1126 5 475 4839 224 15 2 501 547 1696 2 287 35 54 26 1 2544 2738 4 25 5212 1725 3 33 205 414 3472 117 8145 17 7 9 483 2578 4641 60 6 3 308 2425 9 345 1757 4 2 766 6 308 316 15 25 3761 4 2 1725 3 25 157 76 308 316 390 2 536 13 1149 7568 204 1 1934\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 159 9 18 102 2584 989 29 1 7080 1512 8359 7 193 8 247 852 78 32 194 8 24 5 134 180 71 945 39 36 97 81 7 1 45 8 405 5 3350 65 75 8 420 134 180 71 4485 10 5 2879 3 32 1 477 5 1 714 4 448 42 4553 17 8 339 352 110 1 584 22 169 4638 17 1 5029 22 46 78 8247 3 32 9 272 4 4706 1427 6078 4 373 173 820 1 3770 15 55 45 42 169 53 6103 7 1 182 86 528 551 4 5056 151 79 5268 23 20 5 474 5 99 110 8 1274 10 358 47 4 394 954 222 8 497 10 1071 535 41\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 1023 15 42 2 46 2107 1032 18 3431 611 75 97 53 1879 879 662 45 8 320 1 7869 5 1 948 12 2 426 4 8954 2266 20 4 73 1 1182 7314 1 57 152 71 2 996 35 57 936 71 590 77 2 3 36 33 713 5 25 17 20 1 6283 546 4 849 3 14 15 10 1699 5 5318 51 6 29 225 28 211 4457 49 1 1490 4837 919 35 173 149 95 615 1 2841 3838 236 2 232 4 9717 4174 17 98 1 631 177 153 780 94\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 475 4323 3 1253 5 50 1894 2 973 4 8 481 878 95 52 68 48 817 902 24 4246 3 5 1 647 119 3 790 538 4 9 21 197 5665 62 221 6029 283 1 4647 4 37 97 1414 460 6 279 1 956 7 3 4 2330 8 56 36 1 178 106 6393 4371 266 992 3 6 7633 30 992 372 1 250 129 4 1 141 7522 90 273 23 284 44 8754 14 51 6 58 462 4288 48 60 6 667 49 60 1148 6393 4371 17 10 6 146 5 1 1380 4 1352 83 96 8 36 2133 1 2133 7 1 2581 3 70 1578 5 139 155 52 68 277 4 2 1556 7 18 253 2008\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4888 9 18 6 28 4 137 1219 104 23 463 812 3 96 19 2436 14 1 398 113 177 5 1690 243 68 246 5 694 140 10 16 102 3768 4077 14 7 50 1723 23 64 10 14 2 28 4 137 104 1 5946 1 640 1 505 6 152 46 1503 17 16 137 4 199 1774 5 139 288 16 194 1 206 322 1 8461 4347 2890 539 116 4 9431 1 233 11 2890 24 5 149 1 188 1505 8604 152 151 1 18 55 52 722 73 2890 70 1 1418 1 206 213 55 1997 4 75 211 25 18 424 66 153 291 1458 3 1936 1 2717 29 1 4 9 1480 404 2521 9431\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 28 4 1 210 124 117 107 3 107 2 163 145 2 21 8 83 365 144 8358 9212 54 26 7 9 1973 114 60 321 1 319 11 8 112 3 24 107 202 297 117 71 7 37 8 219 9 358 174 28 1294 10 12 6149 20 55 53 573 39 91 565 10 57 755 41 358 211 103 529 17 34 7 34 10 12 91 5932 2 351 4 8826 1452 8 2004 55 134 485 53 7 10 73 109 60 6629 1 119 6 961 1013 23 3747 852 2 4 9604 3 9213 98 86 1265 34 2873 4652 300 45 116 2042 9 88 26 2 53 21 1286 8 56 83 354 110\n1\t106 27 12 1711 5 414 2 2446 500 1057 27 255 7 4273 15 1 558 1908 11 76 720 25 3223 13 150 57 58 1691 49 8 159 9 18 16 1 74 85 8 36 133 2118 104 11 22 20 5400 3 180 459 107 2 342 4 3923 104 7 50 727 17 9 28 12 1 113 37 13 8212 5 7 50 1520 9 21 6 2 1359 5 97 2789 4 66 28 6 1 1485 1014 492 6 425 14 1 202 4832 3 4787 2668 304 6 15 44 167 2618 3 44 1546 1014 1 1144 22 34 240 120 15 62 221 67 13 252 18 649 2 441 2 304 441 38 1224 1549 7016 2214 38 2 164 35 4787 25 157 5 1224 3 35 440 5 932 2 6088 3052 7 1 2370 106 27 12 136 242 5 90 3778 15 1 576 3 15 1 111 25 157 40 71 2268 3483 6651 289 199 11 1 3923 22 1485 18 139 64 8 42 2 18 11 151 23 96 38 157 3 1549 3 207 93 7 43 699\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2056 42 2 2646 739 3 10 1047 1609 2690 17 42 152 167 53 69 3 8 1064 512 2 1368 23 3305 112 5208 7858 58 729 48 444 1356 3 1 282 35 266 44 752 380 2 1321 9433 13 92 1769 4 1 8620 1702 1780 6 304 3 266 109 15 1 580 833 4 1 108 1 1903 2607 225 1903 5 7327 171 3 1624 6883 2 2694 5 1 18 11 4373 23 7 3 863 116 3726 1952 8 187 10 31 139 64 110\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2199 2 625 287 125 8 214 9 21 483 4096 3 5 625 415 125 20 5 798 154 82 1696 4 95 3669 10 12 2 3279 1526 525 30 2 164 5 787 3 1654 2 3 10 1200 6060 2127 213 78 4 31 651 5 905 2159 17 340 1 6791 9518 669 812 5 55 6110 5 10 14 2 7 490 60 143 24 2 3614 51 12 58 129 3612 58 302 5 230 16 95 4 1 647 3 58 525 5 90 1 21 7 95 111 1087 41 2959 3 98 236 1 7466 4 31 1805 826 287 1283 6916 5 187 2 328 361 13 2078 59 87 8 555 8 88 70 50 319 155 16 1 305 8 93 175 137 269 4 50 157 1877 48 2\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 80 4 1 767 19 1022 755 22 6 58 3770 5 4921 6194 41 3836 14 33 7373 152 57 547 67 2933 80 4 491 584 22 109 491 7 1 760 41 751 1 4921 6194 24 455 1022 358 4 9 251 6 78 16 43 302 19 1 7398 33 757 47 1 1796 546 66 1231 9 1 28 797 177 6 5 64 171 3 1624 49 33 61 1186 7 4 1 67 456 22 46 961 193 3 1 251 88 4 71 138 15 1552 3 498 11 303 23\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 71 2 325 4 5028 220 1 46 4362 10 6 1529 179 1095 3 7355 40 1 80 1884 1154 16 9 4811 13 499 6 1698 19 75 78 249 40 71 8452 2 215 131 36 5028 10 6 2 568 3148 5 64 2 983 11 6 1031 1 9469 106 7098 45 23 1074 10 5 43 4 1 5772 4205 132 14 3 1828 23 54 64 1 3 10 123 70 3240 29 529 5 64 289 37 542 7 13 3371 2 2313 1249 360 1252 3 8431 7 154 2541 5028 424 28 4 1 80 1884 289 19 116 3252\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3458 1237 1 18 12 20 306 5 2998 29 513 8 39 159 1 718 2 156 663 1188 3 1 18 247 235 36 110 74 4 34 12 2 1744 29 3 9 6 48 1 18 130 24 71 38 20 2 67 38 2 164 35 12 3 35 214 112 29 1 182 3 37 778 93 51 22 2 163 4 168 11 61 39 908 540 69 1 178 106 27 200 15 2 6092 29 1 653 7 25 362 4728 172 20 94 110 7 50 1062 2999 143 1179 5 9 185 29 34 220 27 153 176 1 7270 2091 27 56 339 309 461 10 54 24 71 84 45 10 54 24 2665 52 19 1 5 3 20 1 29 9 952 12 105 3 105 5026 5 26 1051 1454 8 96 27 247 1341 779 9561 3 27 12 1732 146 220 81 4 11 7281 2292 5 118 52 68 72\n1\t1516 14 7417 44 67 1133 10 2325 20 59 1 795 66 60 3764 17 93 1 272 4 793 66 450 60 123 24 1786 4 7 44 2090 17 44 2852 2419 6 3086 1846 4 31 287 35 1 157 4 16 7386 115 13 499 6 49 7417 792 5 1999 1 795 66 466 5 44 11 1133 56 1572 371 15 7745 2362 3 7746 2011 1133 2 4 2759 4723 72 905 5 853 11 1846 193 60 190 26 7417 6 58 52 5312 68 1 1615 60 40 14 60 140 9 3283 1133 151 25 545 52 1997 4 1 4159 66 10 7005 140 1 537 66 1 1567 1391 1133 2148 62 14 1 59 1291 72 24 32 9 2757 9618 115 13 2044 9058 9 18 16 101 2235 9970 6 7048 5 2 41 2 16 20 11 66 6 36 95 84 5404 1 1468 7 1786 6 7 1 4760 3 1 4760 6 3577 115 13 150 192 20 7 95 111 2920 15 1133 1126 17 24 198 71 3 76 1811 5 26 2 568 8200 4 1347 7931\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 281 6 30 1 237 210 391 4 180 117 107 7 50 500 10 1092 89 1821 10 247 782 29 34 23 897 782 14 1767 7664 3 693 5 582 15 127 203 703 8 96 307 422 7 1 616 4786 15 79 49 8 49 1 1079 6276 960 115 13 2699 50 1307 4 1 210 104 117 89 9 6 75 10 54 13 4385 1 1110 2824 3254 6608 4349 1414 13 92 302 8 89 1414 3069 3925 6 73 10 1049 43 4140 1025 17 1 344 12 1409 166 15 3254 89 58 2509 17 1 1110 11 5929 86 527 68 1414 3069 3 3254 6608 256\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 680 3196 189 2 3 2 6036 1714 205 62 2058 9 6 31 1164 21 11 5609 31 1502 991 16 7 2 280 11 6 2 237 1717 32 578 4430 6 1317 1535 14 1 3058 6036 35 418 5 457 1 5509 4 25 2340 17 6 2161 5 4329 2537 15 261 5 352 122 6 1381 53 14 1 2 547 1658 15 2 7 25 500 1932 6 514 14 2866 1281 2 129 1 21 6 73 10 811 1684 3 31 483 534 1211\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 374 1459 9 47 29 1 388 84 5 785 14 3741 1232 60 981 39 36 44 17 51 22 105 97 91 4501 3 1 847 6 167 3243 1074 5 82 3267 4 11 290\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2315 266 2051 6382 2 756 2892 35 4411 15 44 1176 3 8475 5 5 1203 2 5116 3517 1 465 6 11 62 24 2910 140 3 34 7 569 22 37 33 2203 47 4 569 5 2 2527 1972 3 186 3320 4 1 4 1 1524 3430 954 7437 8218 511 23 118 194 3 2185 5071 22 3814 2 184 1085 7 62 7 2 1884 35 1391 1 13 743 8294 266 1 306 1198 7 9 1577 103 203 108 10 4160 1633 17 1416 5 31 1883 7887 1889 4643 1 203 7 346 318 1 570 350 6708 1 1863 3 1 69 1114 4 204 69 22 84 80 4 399 1 119 2027 3 4476 1 18 5 186 19 2 323 534 3266 3 286 10 93 432 4608 14 72 853 5811 6 58 510 17 14 78 2 1757 14 1 5859 1 570 383 6 258 13 5851 6 2 1195 103 203 739 1822 4 13\n0\t240 16 42 387 17 85 40 20 71 232 5 110 42 14 14 3 207 183 8474 117 2816 110 244 1884 29 1565 1034 53 12 3 110 115 13 743 641 1193 228 24 1553 8474 136 1673 490 8 2698 3333 55 2 156 269 15 81 36 2 580 2272 16 95 1260 4 1 309 6 75 1 7428 2282 4 856 30 42 4946 7 54 26 9084 7 1 21 9420 236 100 71 2 52 3103 1 1836 33 310 65 15 1220 3490 48 12 1 1 201 40 71 32 2 604 4 979 5 2 3216 239 82 3 1 2996 3 62 1413 8 12 109 576 50 49 11 761 103 577 1 1039 19 2 29 1 1754 1 309 89 23 365 856 1098 9 18 39 151 23 175 5 2350 13 7254 761 6535 4 120 1323 2829 5 1039 2658 3 1299 62 584 29 1 410 773 378 4 7422 5 82 120 544 675 17 1 210 8711 8559 4 1 309 76 90 23 230 52 2191 68 9 108 115 13 743 5442 427 6 1011\n0\t154 238 2601 14 2 3170 3511 5 899 1 119 1918 86 961 7230 428 120 35 58 16 62 1 538 4 121 34 2246 551 4 129 1384 258 1835 603 129 32 101 5 121 3 1391 255 577 14 2 1852 9 6 14 457 82 3874 1631 3482 6 31 2529 3 2262 13 3291 16 1 527 6 206 5668 19 712 293 363 7900 176 16 31 4992 892 1430 29 1 3 2 4138 1077 7 1 1750 4 2529 5 1 386 838 4 1 6919 407 1631 1501 11 60 6 446 5 1313 1 1813 601 4 2132 17 7 58 111 123 44 3689 352 3038 1 644 8583 922 3 1826 1 18 4089 19 5 1 714 40 2 6474 1117 618 10 6 436 138 4462 5 265 4033 68 5 865 803 13 92 1278 7786 217 26 16 62 1514 5 853 9 4356 33 61 446 5 2545 65 1519 5 1 158 9332 2 53 1249 3 70 5732 3 2118 9 6 58 346 16 31 1532 135 286 340 1 538 4 1 1 1122 6 2 1795\n1\t3 16 308 8 12 446 5 64 1 697 2024 757 4 1 21 3 10 6 2 78 138 108 8 338 10 1704 17 195 8 63 64 48 6168 12 152 242 5 87 15 9 461 3 1 2219 1605 1221 2261 771 38 1 21 7 7280 27 789 42 2 4981 1028 141 17 27 123 131 1451 5 34 81 4758 896 40 2 84 356 4 623 3 43 5621 9741 11 508 88 825 32 7 1 18 1 516 1 168 4 1028 6 167 299 14 530 8 343 10 12 202 14 548 14 1 21 10 12 89 1987 51 22 43 84 3679 3 516 1 168 5752 1795 15 1949 584 38 1 21 32 43 580 1678 36 1996 3 125 399 2 299 103 21 11 6 46 3234 200 1 17 128 57 79 1094 3 2926 1 8 24 107 97 581 3 43 383 4 388 581 3 97 22 169 2764 17 9 28 56 5958 136 5772 124 22 3685 33 39 662 9 78 13 69 8 455 33 22 195 9075 9 19 2 184\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 57 198 71 2 184 287 325 37 49 1 1045 1354 2183 9 57 5 64 12 6 2 560 287 18 7 442 153 2951 1 260 2417 191 24 7074 5 41 57 5002 580 3 1 119 1225 36 2 345 1559 578 630 4 1 188 11 89 1 709 347 2594 2 1246 4623 1 2838 41 3446 39 28 223 91 83 55 96 6 34 11 1805 511 351 116 85 19 476\n1\t111 11 3548 140 1 18 14 2 3792 1 121 2576 4 205 460 12 1317 501 1078 33 662 1730 1041 3 1 206 114 2 3102 329 15 10 399 1167 10 7 1 958 7310 1 1642 2588 3 13 2699 2 601 5233 278 12 46 1 59 82 21 180 107 122 7 6 1112 106 27 266 3 7 9 21 27 181 5 26 1 2544 2738 4 6 3 6416 14 2 426 4 709 3148 15 25 12 1 184 1360 259 19 1 1444 35 643 197 517 235 4 110 814 99 47 16 25 1835 45 317 1100 15 1112 468 26 46 619 30 2693 13 724 83 26 1256 142 30 1 3469 19 1 155 4 1 8743 73 9 213 56 2 1706 108 42 39 2 18 15 2 1706 7 110 11 129 6 2 1706 6 202 2 1138 233 15 835 56 160 19 7 1 3 23 559 76 112 1 226 1361 42 2 56 866 572 29 43 6397 1 1667 6 56 109 1613 42 373 146 5 1351 65 1 398 85 317 29\n0\t1174 51 61 58 82 1100 2121 571 16 1 535 2682 4426 561 2188 1404 89 80 4 25 124 1 3156 33 1547 1155 3127 13 2719 72 209 5 1 250 460 294 3145 217 962 1 5686 93 191 24 71 384 47 4 334 675 9 426 4 280 531 1179 25 541 27 12 39 7433 675 114 1 113 27 17 1677 14 53 14 27 531 5265 13 499 12 3021 11 51 26 31 651 7 9 574 4 108 204 7 44 74 580 280 4215 6 2 46 304 3292 17 20 56 31 2922 60 6 128 246 871 19 3252 369 79 26 232 3 134 60 40 57 2 223 370 19 44 276 68 121 3694 93 7 14 1631 9655 6 376 192 1096 60 1544 5 13 92 344 4 1 397 1079 61 237 32 1 692 298 1446 4 82 294 3142 124 51 61 2 156 1383 574 759 1521 248 30 1 20 53 29 513 1 238 168 61 53 17 209 29 1 182 4 803 13 5934 4 9279 985 5934 4 970 843 5934 4\n1\t7 1 166 67 69 29 203 7 205 523 3 19 21 3653 16 324 4 1 5666 66 152 12 3903 1031 4625 1402 66 22 14 4140 14 50 184 69 1 303 628 66 128 40 1 13 724 1 287 7 315 6 11 1219 661 21 11 76 90 1 19 1 155 4 116 5631 820 19 714 9 6 1 111 10 130 26 1 206 2182 7868 3 1 6267 1272 117 152 107 311 30 246 44 1283 473 65 2379 128 1339 41 82 15 11 1115 176 19 44 3374 98 27 876 10 34 5 2 1577 4619 244 2178 25 4119 32 1 6000 35 563 75 5 90 203 69 9793 1398 3 626 2547 954 9793 3 206 4 1 2762 3 1 823 8829 8654 9793 35 470 2 323 6402 1028 158 20 1 3860 3160 114 213 3903 8639 42 39 3 3337 2181 395 3 4 448 783 473 19 1531 578 1 3 1 111 1 1313 4 3423 63 128 652 23 5 1 1590 4 116 3104 55 15 2 3 4058 1165 391 36 457 13\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5964 366 358 6 31 1233 203 18 17 5964 366 6 111 138 3 9 104 38 75 1 5964 2201 1282 4997 7 196 643 30 44 1845 3 255 155 1099 172 406 16 113 353 7 9 18 6 3 1 18 460 82 1233 171 3 651 36 5699 2820 3 742 51 22 43 53 840 168 36 49 1282 4997 1141 1 282 11 6 242 5 2321 7 44 30 1 371 3 75 28 4 1 1554 22 19 1 1182 3 1282 4997 122 5 34 9 6 31 203 18 3 50 1020 6 843 47 4 1731\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 58 312 75 970 3149 746 17 8 87 118 458 14 629 396 19 51 22 2 4183 604 4 46 1332 746 16 9 18 66 3640 1 5102 595 4248 648 6397 202 2 59 970 13 858 16 9 3515 42 4835 42 2 722 1257 3 46 7234 682 13 777 71 125 2 3000 220 8 1066 7 1457 7 3 5474 6035 7 1 1270 17 8 214 162 41 38 127 2802 6 1 5305 2 1213 87 1 494 3 119 2782 657 8071 33 1405 22 82 104 274 7 1 8973 3 1738 1889 5645 374 23 123 11 90 9 18 2 1004 8371 14 43 4 1 5213 50 3253 708 54 369 2 3583 3928 13 252 6 138 68 95 431 4 3190 298 41 7156 29 1 3770 17 100 57 3 145 5 1 30 9 1324 4 1734 3 4952 13 3053 1113 420 112 5 118 1 516 34 9\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 64 48 1 206 12 242 5 87 17 27 1155 1 8659 1 250 353 12 56 53 17 1 1043 200 25 529 270 23 47 4 110 1 443 1093 2036 3 6 232 4 2399 66 8 88 5062 45 1 593 12 52 17 10 5958 1 478 12 2 222 142 3 11 270 23 47 4 1 21 14 530 8 64 88 64 9 206 403 2 103 222 138 7 1 958 37 20 2 900 260 142 17 83 504 2 18 670 14 53 14 663 406 41 3128 359 116 1691 402 3 468 70 52 47 4 110 29 225 10 12 59 31 594 3 2 6869 850 4789 3 82 68 1 466 1 121 12 167 91 45 23 1006 437 17 145 2 18 37 186 11 16 48 207\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 1501 11 53 121 255 32 53 593 3 9 123 20 780 7 1006 1 7260 7680 6 531 2 514 353 17 7 9 27 6 2862 4496 255 577 14 31 2368 73 1 263 6 1853 1 1260 6 489 3 1 171 291 1120 3 350 1 1190 4 1 18 6 91 69 8 88 59 96 49 10 54 1812 3 8 590 10 142 350 699 1 206 40 248 2 46 345 329 3 55 193 8 24 20 284 1 821 10 6 407 2 1155 3614 1 1190 9 21 6 242 5 3 1 859 3 857 100 4838 1 1754 7 28 4930 10 6 2 464 135\n1\t20 773 95 13 8 24 100 107 2 18 11 1168 15 132 2 570 1905 20 5 26 8 467 8 336 194 17 10 39 619 79 11 10 56 721 160 318 10 17 145 355 1929 4 2758 1572 357 15 1 46 357 4 194 49 10 1 119 8749 271 36 490 51 6 9 996 3 20 5 187 295 95 8994 3211 1336 57 95 447 33 333 9 119 3511 5 274 1 67 4422 3 51 22 41 1375 10 88 139 463 7382 43 211 1650 57 30 1 250 647 43 6908 3 3758 3 2304 4604 23 8545 13 92 206 1123 1 7 3141 30 1 21 383 19 1 274 3 4503 3140 43 1224 3 716 5 90 2 211 141 2776 14 2 1073 106 27 270 199 19 2 1486 32 1 567 1079 5 1 182 15 31 1135 331 18 7 9107 8 337 77 9 18 852 5 64 2 211 267 73 4 48 8 459 563 38 194 3 303 507 14 193 8 57 39 303 2 856 11 39 262 2 211 1211 764\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 236 162 147 675 34 1 1446 1025 55 224 5 1 7218 5 1 9724 5 582 1 287 1642 1695 1 59 177 11 3389 9 6 1 121 4 6186 6609 217 43 4 1 1681 120 3 468 773 35 515 57 43 6141 13 10 142 49 1 2204 22 7 3 23 495 24 5 139 140 1 5221 119 8000\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5768 249 1949 2892 2051 395 304 2315 4 218 2881 35 336 5505 3 44 102 4348 395 4348 3 395 167 8475 2535 35 20 59 196 643 1239 17 93 44 7 2 2270 2801 6072 139 5 3610 5 1203 31 5116 3517 220 34 1 558 22 9349 1 277 1386 2479 22 929 5 3143 974 3 2870 29 2 17 2527 3630 7165 30 9436 262 5 7842 30 1 5935 84 8218 3 25 975 5071 954 1195 906 40 28 46 1858 3 8008 534 231 1085 7 25 2 7372 654 5811 4394 1462 3 5287 1103 30 1638 7 35 3321 196 2324 3 43 4854 470 30 1954 15 6760 514 121 32 2 1249 2 640 313 3624 30 5414 2 2068 1119 4523 2 1529 1305 2 2690 17 5759 4404 1904 647 3 2 1317 570 2990 395 4389 8318 31 6191 627 3 4608 9 4861 362 1575 3413 6 109 279 3698\n1\t1063 24 179 65 2 156 9381 11 352 90 10 2 103 52 240 3 7 1 769 42 2 3408 2396 13 9416 3 679 4 82 124 3 23 24 10 56 6 31 4 264 128 51 6 58 82 21 2607 225 11 8 118 162 6 56 3704 16 1 81 7739 1 215 6164 397 2219 19 86 305 190 320 11 3475 38 75 27 310 65 15 1 67 4 27 2492 38 122 3 246 71 29 2 85 3 33 205 61 7 9 483 1065 974 15 58 449 4 355 827 88 46 109 26 1 324 4 1 4 1 6164 441 3 5 11 769 42 202 36 28 4 1 6164 13 1118 63 8 7952 8 381 10 6 2 84 18 3 1 264 546 4 1 18 22 483 6577 15 3159 4 1244 6207 128 8 230 1 18 6 1156 146 3 8 24 922 1565 47 6244 48 10 9905 300 45 72 24 2 5919 8 63 1836 11 9119 6 2 84 158 17 20 14 53 14 8 909 10 5 5721 13 6070 1889\n1\t3444 29 254 1045 421 1032 8095 4934 421 115 13 677 22 97 7212 7 2924 4 34 62 1 1481 22 2147 16 1 9324 5871 4790 5924 6 2 5621 5060 2 1 80 240 129 6 752 246 100 107 2 164 60 6 890 5 1 8901 444 2 1886 35 6475 44 221 2389 3 270 154 1617 5 720 9536 361 830 8416 15 2 5812 413 133 1 21 228 64 44 14 2 2670 282 7 2 17 154 287 789 51 6 58 132 177 14 2 2670 282 7 2 2587 6173 1071 138 7929 16 1 15 4547 100 118 45 60 12 122 14 27 220 1 2046 3 432 2 52 240 3080 16 44 3726 60 6 1 129 35 151 1 731 720 7 1 135 2220 11 44 435 1 434 4976 5 1 82 7 25 6562 7788 60 498 295 32 44 2002 44 2293 5 597 15 1 16 4076 42 9 634 4 4 11 3426 9667 2070 125 1 5714 86 5806 39 14 10 114 3949 4 1188 5 1 115 13 4751 1 57 1410 3571\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 1028 21 440 5 26 4774 3 17 8439 1 255 142 1054 14 43 4 1 1713 6710 1 7 5797 2 1028 587 14 1 4474 6 101 262 224 30 1 1655 3 756 2 342 4 17 6872 5160 29 1354 715 249 1949 811 86 410 6 101 340 2785 449 3 58 312 4 1 148 3477 29 5361 31 4942 44 15 1 4882 4 2 1383 3693 157 3 5 1124 2 4337 5 131 1 7964 29 5361 87 725 2 2454 3 83 836 9 177 6 515 46 402 445 3 255 577 15 1 230 4 2 298 416 309 881 565 121 6 3833 3 1 1713 22 202 93 3825 7595 492 962 3 4977 8439 1 130 26 303 5\n1\t86 397 1353 61 2 222 30 1 3220 4 1 3644 16 3 3948 44 221 124 217 1127 227 30 5 90 1034 21 60 636 16 1 59 85 7 44 895 5 1015 2 135 1 182 1122 407 1457 65 5 44 4911 205 124 61 46 986 29 1 1009 13 743 1447 2221 16 43 958 21 54 26 1 2728 4 7 1282 10 407 1225 36 2 2101 7845 140 1 1414 104 60 7004 292 1 8583 7 1 46 1109 4 1414 616 228 1232 127 4162 5 1030 595 2304 2087 72 22 4565 5 1942 126 14 6239 30 62 46 4 7574 7 28 304 178 7 933 1421 47 7 9 7719 6 6684 992 5 284 712 2 60 5 4642 8085 1018 266 44 2 736 32 774 1 155 4 1 347 11 60 123 20 5084 27 10 16 44 395 736 6 515 488 671 590 14 1 331 1468 4 1 5320 655 1159 543 432 5937 13 743 4253 147 868 16 9886 40 71 30 4327 1183 7471 66 1080 1 1212 217 4 9 360 135\n1\t1 3 6348 32 25 1327 69 16 308 20 11 60 2296 65 15 849 3 27 6638 19 62 6499 14 6 2434 1 67 6 3 1738 2467 3 599 253 10 1 80 3663 7 2498 8178 3 815 93 1 80 1462 308 418 9188 25 80 1127 9677 608 13 2044 2222 1 1332 674 20 34 971 2108 14 1462 14 1209 3 1 1735 4 1 2418 30 47 2 323 3663 7 66 2 103 487 1 67 4 75 25 1007 33 22 102 3058 9 185 6 37 710 3 2805 3445 11 10 6 4096 5 1644 4680 93 4938 2 345 3 3663 15 31 8032 912 1 2807 4 44 4757 162 422 4216 2958 1 3 4 1 4423 584 7 1 182 811 595 4847 3 13 2498 8178 323 23 15 4437 16 34 1 82 584 22 15 8934 121 3 1474 4480 10 6 407 28 4 1 4856 4 6012 1491 667 1878 8 3 2 46 923 21 7 1 356 11 10 6 5 1351 2 1522 3 2 225 496 1901 205 5 2542 4 13 47\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 215 9263 18 12 89 7 15 2 46 53 21 7940 4589 112 4 6140 876 199 2 1002 240 18 993 27 4 448 12 609 14 27 202 198 384 5 26 7 34 4 25 502 7565 5023 14 3779 2538 12 2 4 4551 245 1 18 114 2292 5 70 2 103 223 7 8224 10 123 20 899 29 1 1428 4 1 2939 1604 10 6 2 299 18 11 130 26 107 29 225 3633\n0\t1 166 2451 5 66 8 39 4241 512 1240 31 4 39 5187 9 2819 311 5 90 273 11 58 28 422 117 9 18 12 31 5314 5 154 625 454 114 3361 284 1 263 183 27 419 1 5 2257 45 814 98 10 191 26 1 166 5535 35 1 187 79 458 5890 12 2 645 3584 3195 105 3414 305 1203 5586 3 2 42 930 36 9 11 90 161 4002 3 25 5066 1301 4 478 36 8 24 2 408 388 4 50 1398 11 9350 52 796 68 1103 4 771 38 4729 16 561 3328 1479 3429 39 7 1 1788 5617 85 27 179 5 24 5300 637 1 3 1479 11 1 2475 57 39 997 1 306 65 318 1 1079 8 12 128 1000 16 10 5 26 43 232 4 421 3 25 3232 23 83 1291 48 1 898 12 11 4963 178 15 1 2749 7 50 22 23 527 7 9 41 6654 8 21 144 83 23 90 10 2 2965 366 3 760 9 385 15 7640 3 3 98 3497 883 6 10 186 9850 15\n1\t3 7601 2991 3 1 8348 164 47 742 419 1 18 2 46 2124 6378 317 202 30 1 32 1 707 3 86 9681 13 92 120 22 2856 35 40 390 28 4 50 430 1041 6 1 164 1242 9 280 4 286 1904 8 88 373 256 512 7 27 1148 11 146 213 2401 17 307 200 122 463 153 1876 7241 36 1390 20 5 41 451 122 3789 2574 7481 7243 1240 25 226 158 266 1 3794 161 35 40 57 227 4 9 1858 1888 307 422 6 1111 258 7969 14 2 391 4 11 255 15 1 2138 7 66 60 13 92 293 363 22 4807 55 16 1 7480 1504 1 4975 3 258 1 11 70 3996 4 61 2332 1 1276 1137 276 3094 3 46 1 2213 707 3180 1029 15 1 9525 3 81 22 46 13 1268 570 1367 6 1 2526 66 55 195 128 2220 437 10 6 17 45 23 96 38 194 42 2 167 53 13 92 1735 7479 115 13 4550 313 2032 1145 1724 739 11 151 23 96 3 844 23 507 46\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1748 9191 5672 9 21 57 297 7 110 267 5 90 79 2655 589 5 90 79 1717 3 28 4 1 700 941 168 5 3226 6910 6718 1 121 12 8353 401 4 95 135 3924 7646 12 7 401 921 223 220 107 220 25 19 1 1990 5749 880 25 456 61 3370 15 3 2485 226 107 7 2 46 170 2367 8 179 8 159 1 398 4 2 170 3286 2647 49 1 427 3773 11 12 1 306 1573 272 4 1 108 50 5305 336 10 78 11 8 969 44 1 305 3 1901 10 5 44 2567 10 76 652 2187 5 116 671 3 6091 5 116 683 14 23 64 1 482 1347 3 2602 296 6288 1932 140 101 1525 65 29 6407 3 6288 685 1347 19 1 147 4682 4738 40 6834 3 22 47 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 337 77 9 18 852 10 5 26 56 3 10 1306 8 56 343 1140 16 1 8119 9038 12 2 360 183 60 89 9 7236 3 776 61 1832 14 692 17 9658 9659 339 256 7 28 4 1 3088 453 8 118 3 112 44 1987 9228 262 30 3431 4 9855 2956 57 38 28 13 92 119 12 961 3 34 125 1 2416 3 1 1569 9884 51 12 28 185 4 1 18 106 2327 3849 1 429 4 2 3100 11 89 79 539 39 73 62 5217 61 83 64 9 18 1013 116 59 82 6253 6 246 2 15 2 1591 300 1 1591 54 26\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 80 1871 9 18 811 36 2 4471 1 593 6 1 121 1543 1 1675 4 1802 6 3 8111 1510 44 456 36 444 1302 765 126 142 2 7669 59 28 177 151 9 21 279 4171 3 11 6 308 255 155 32 1 51 6 146 1577 38 133 2 346 583 701 7689 3 9 18 228 26 52 68 43 63 3258 39 16 11 2560 10 6 332 9 21 59 123 28 177 2401 17 10 8831 11 28 177 260 47 4 1 9298 279 283 39 16 1 226 394 269 41\n0\t81 7 35 8 29 225 63 1999 5 22 1 164 35 440 5 1291 3 1 2557 262 30 1209 4657 35 2311 4632 550 1 940 7612 7 1 4 554 22 105 3 55 5 26 5 2 9890 921 4 33 291 5937 7 62 16 1632 7 6597 16 1 3 80 1227 8104 4 1 569 40 25 221 334 7 1 1521 13 2595 28 272 1181 9806 11 288 16 62 221 6880 10 5 134 1 1009 1400 16 9 572 50 221 11 80 4 199 662 288 16 9 232 4 1 804 554 6 903 3 202 17 88 216 45 1 2274 61 3090 17 1760 411 6 1 80 177 38 1 141 3 6 2069 4405 14 2 7 78 1 166 111 14 8126 12 4405 7 3 1 1209 4657 123 25 113 324 4 1 382 918 6008 5 1760 1958 2036 535 29 28 272 36 7 3 27 1745 2 163 4 1474 2184 17 10 666 146 7 554 45 1 113 185 4 2 184 445 15 34 1 113 2447 4 3197 6 2 1209 4657\n0\t1285 15 62 3298 3 1 3298 963 5720 30 31 1444 16 43 9232 33 70 1795 65 15 43 635 3 25 506 95 1187 1216 41 1318 5 359 19 133 100 289 1095 17 1 3450 12 6803 138 68 1 8351 2768 1604 213 667 5915 13 1701 2 136 51 8 57 1837 38 1 215 441 29 28 1746 8 300 1 206 57 1221 3 49 1 3450 11 54 26 1 769 66 54 24 1066 16 79 1078 9 2259 54 24 71 2 9 1445 18 740 2 1445 18 123 963 769 3 148 691 123 3659 17 42 2317 8 497 8 143 610 504 2 18 1029 15 101 41 235 36 458 17 8 114 504 43 921 4 650 39 2 9530 3365 2991 8881 4 86 1818 50 2952 54 26 5 3143 47 146 4211 36 1643 4 1 4494 45 4792 8 54 59 354 9 28 5 686 3641 35 191 24 126 399 261 422 942 229 40 1568 48 56 196 79 6 11 8 128 24 58 312 144 33 404 10 786 83 2089 1 8542\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 190 24 107 31 431 41 358 49 1 131 1868 3246 17 49 8 219 755 431 19 7174 8 12 93 9584 8 219 1 212 251 7 36 358 2569 3662 8 56 338 2142 1223 74 244 1517 98 23 357 5046 1 129 188 24 2 3583 25 2127 6451 762 1539 762 6797 6 1051 4226 3 232 4 2244 3 30 8 467 8 2942 26 36 122 49 8 2323 960 4195 315 6 84 854 1 3263 22 84 854 1441 8 179 9 12 28 4 1 113 249 289 117 3 23 10 5 725 5 64 2420\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 145 2 325 4 1 251 3 24 284 34 1450 6028 8 405 5 64 9 39 5 64 75 10 12 1613 34 8 63 867 6 11 1 59 81 35 130 99 9 22 879 35 24 459 284 1 251 3 22 2284 38 110 86 167 573 3 76 473 23 142 765 450 20 5 26 1266 17 4114 6 37 1906 10 32 1 108 12 60 1 971 2301 145 273 1 7 1 18 61 3992 4 44 60 57 31 11 54 256 95 5 7661 1 18 39 2019 37 78 7 1402 83 8258 14 728 14 1 5082 41 55 1599 13 1268 177 33 114 46 109 1613 292 1 82 423 171 15 4962 2121 1394 176 3977 12 56 109 248 220 10 12 20 39 2 423 353 1323 2246 1394 8 497 86 36 11 161 2839 358 81 2930 896 8 54 26 2284 48 374 96 4 9 108 300 33 54 335 1947 17 14 16 8651 3516 2398 33 55 45 2 3123\n1\t327 177 38 1 18 66 8 56 3281 12 39 75 386 1 18 1306 10 6 84 5 694 3 99 2 327 277 594 41 37 18 308 7 2 3166 17 4151 42 36 154 18 11 255 47 811 105 1896 106 14 9 18 39 343 36 1 260 20 105 1896 3 105 3752 33 83 351 85 30 242 5 2210 1 120 105 78 73 33 118 9 213 1 18 16 11 3 30 403 37 33 89 2 46 327 386 108 101 2 568 21 265 8 24 5 134 11 1 113 185 4 1 18 6 1 6428 797 868 30 42 56 327 5 64 139 32 523 1 961 691 5 1 84 265 244 403 1705 8 56 1 797 691 27 123 16 1 250 105 91 11 8 173 149 1 1077 54 24 56 336 5 1876 5 1 4235 9387 8 405 378 4 246 5 2133 7 1 305 49 8 175 5 785 592 13 42 327 16 48 10 6 3 42 237 32 84 2433 130 128 1851 16 43 346 548 594 3 2\n0\t1569 432 2 243 68 2 1126 4426 1 6139 4611 13 252 951 5 50 398 1 1569 6 1466 51 6 58 111 5 90 2 425 129 235 52 68 1056 2318 9726 2 311 73 257 3275 1569 255 32 7929 4 257 37 48 45 2431 2 3581 349 60 1279 11 48 60 6 403 213 260 3 2296 65 15 550 51 40 5 26 43 426 4 2631 243 68 31 7319 300 44 532 615 47 41 28 4 44 417 440 5 70 3996 4 122 3 741 65 550 11 54 26 1111 10 54 26 36 2 37 195 180 2666 2774 16 50 97 4 50 417 112 9 131 73 33 617 455 4 116 7201 41 4611 3612 97 4 50 417 812 9 131 73 33 937 544 133 116 7201 41 4611 5064 115 13 150 24 219 46 103 4 7 50 727 17 8 24 219 227 5 1780 568 2387 11 90 1 983 7 50 1520 301 7278 45 819 284 9 3980 1479 1259 3 8 449 23 29 225 357 133 43 4 1 289 8 24\n0\t9 158 98 27 2085 11 114 20 2031 16 2 627 4307 4 1 471 805 8 343 11 1072 12 160 16 319 19 9 21 378 4 697 3694 436 11 6 75 27 88 4535 205 3286 3 8402 7 1 166 18 197 95 13 677 61 102 84 168 7 9 21 11 89 10 279 133 140 5 1 714 83 70 79 1989 9 12 2 46 91 141 17 51 6 198 2 4036 7 154 1 178 49 2311 66 287 27 6 15 12 27 6129 337 155 3 1387 5 5034 7 2 111 11 2012 11 1072 12 152 516 1 2904 10 12 2 178 11 12 229 433 7 1 664 5 1 4307 345 1192 1 82 178 11 12 279 133 12 1 111 11 1072 1694 3 1168 1 135 30 2202 1 166 2216 3 2132 27 12 446 5 652 9 1697 129 200 331 6430 3 187 122 1 680 5 720 25 500 82 68 127 102 2103 1 344 4 1 21 12 1011 20 279 956 1013 23 22 38 5 139 13 6621 47 4\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 360 206 49 10 255 5 4047 3 1373 7 237 14 3842 6 130 597 11 5 1311 81 36 41 1 3088 2093 1 1106 6 37 961 11 23 76 20 26 619 308 136 23 22 133 132 2 2865 129 12 1685 30 4 6285 4426 3 35 88 241 444 2 315 1559 752 12 52 4233 7 4 3325 3 4829 22 340 37 546 11 33 481 87 235 15 345 1 3326 7320 912 76 9564 735 7 112 6 620 14 2 2391 4 22 1 10 12 128 6 16 81 23 63 149 204 51 3\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 74 189 217 4035 6 2 1683 718 19 1 4 1 7965 4 1882 2 3002 52 68 81 3 350 2 1519 1804 2146 9187 3 6274 5 70 5 468 230 36 2 94 133 127 81 62 1804 140 2488 1302 1793 3 1243 140 1 4537 5 2146 1 6274 136 242 5 70 62 1804 5 1243 385 3 8672 2779\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 18 6 30 237 1 8 24 107 7 2 223 3900 360 847 3 5675 120 1958 1 91 559 61 89 9 28 2 900 3712 7 50 1158 3 93 7 1 1402 4 137 8 159 10 1566 8 128 175 5 64 10 805 17 617 57 290 138 68 3339 441 66 12 53 1221 17 20 9 53 409\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75 63 1 545 1020 16 9 18 26 39 39 1 1386 170 130 5144 357 23 29 1639 49 23 1088 116 4274 578 5700 6 53 7 9 1221 25 74 53 686 1538 8 1808 338 122 7 235 17 38 226 366 318 476 27 12 167 53 7 1671 3017 15 4330 1760 23 3305 112 768 322 8 1405 145 59 1437 48 653 5 773 13 150 419 6262 5723 2 1450\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 281 21 6 37 161 8 100 1640 75 170 288 1796 485 7 8 320 122 372 7 2 84 158 1796 266 1 280 4 492 35 6 2 46 1086 51 22 277 624 7 9 572 35 22 20 46 749 38 62 435 3 532 3 33 149 47 62 435 6 160 5 70 1136 5 2 170 2088 35 6 2 2660 59 288 16 2 1086 9045 33 4158 2 164 5 8595 14 2 46 1086 25 442 6 1810 35 6 2599 34 1 85 3 6 3 380 877 4 709 1308 533 1 2129 9504 619 307 49 60 12 7 2 613 2276 3 553 1 3318 4 613 11 60 12 31 1814 376 3 98 9199 418 1299 15 1 80 885 672 8 24 154 9284 1 389 613 4972 3 544 66 12 2 46 548 3 837 178 32 9 135 9 6 9504 74 21 2289 3 60 726 31 4653 1246 125 366 3 337 19 5 390 2 84 18 376 15 2905 3065 94 1204\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 649 1 67 4 218 8355 4 16 2 3 1736 1235 506 35 4826 486 32 1 21 2405 19 1 1557 35 8418 1 506 421 34 5643 7 1 543 4 31 7 3 8505 31 4799 2754 16 1 21 1664 2 1195 1249 53 2137 1 410 78 4 1 8344 17 266 47 36 2 1 4 696 368 9596 31 55 3 4 2 686 3 103 587 67 52 240 68 1\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 528 3 1409 2 514 665 4 48 2 91 18 6 2102 9 173 26 2529 5 4792 20 55 3641 4238 87 1375 8 87 20 351 3666 85 4 116 157 19 9 391 4 3786 91 505 91 3387 586 2266 8 467 56 1252 3 528 551 4 31 312 14 5 48 1033 3431 95 705 8 969 1 305 16 535 8 5245 8 88 202 946 275 5 186 110 4058 10 54 20 26 227 16 48 9 18 114 5 437 8 36 1 506 1 1021 17 9 6 1677 23 118 137 104 11 22 37 91 33 22 9424 20 39 908 161 4224\n0\t3 11 9526 635 999 5 2382 25 74 7222 2857 4825 260 49 10 56 3442 1 13 39 1348 7 50 1908 40 117 2830 5155 7 2 132 2 5042 657 51 24 71 7 50 1562 14 109 14 3 2070 3 8 126 5 6009 2278 3 17 851 213 43 6098 11 23 473 19 3 142 30 101 53 41 6149 27 6 30 3 1114 2 25 209 396 49 23 96 23 83 321 126 17 23 56 1405 42 2 1896 254 5 1 1611 4 3 188 100 473 47 1 111 23 179 33 13 252 18 40 53 17 73 4 86 9550 3 900 10 9156 5 2 1 91 121 3 2225 18 2515 291 5 26 3170 398 5 1 11 9 18 8935 13 2044 34 23 958 3759 5 90 2 3515 83 26 1893 5 131 148 727 55 23 24 5 734 43 77 1 618 78 1 6 30 9 3470 1348 40 2178 235 8311 32 110 187 199 1 1 1 148 306 157 7879 5 4075 20 39 3 207 28 1329 1 143 2108 5\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1090 9 18 15 535 59 1 624 563 75 5 9 3084 71 2 138 141 45 171 61 1824 1 6504 61 1530 8 3114 33 61 4670 17 1 3 5843 2823 33 3154 56 573 10 384 36 33 61 765 1 3645 378 4 121 45 479 144 87 33 1 3804 173 3827 8664 3342 1 975 7 1 18 666 987 3827 44 136 60 6 98 49 479 866 5 174 1828 33 186 19 2 479 8664 5099 182 4 13 499 12 2 568 351 4 387 3 11 89 79 1341 8 284 34 1 746 4 75 9 18 12 1111 75 97 2520 9 18 3 9 18 12\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 12 50 74 3213 5 1 234 4 2855 3 145 195 1976 37 10 3503 4 2 264 5 133 199 124 17 308 23 1959 725 1 1935 4 2926 10 16 48 10 6 23 495 26 1558 1 759 22 5670 3 46 1 171 22 2325 1683 258 6586 35 6 1416 28 4 1 80 304 1624 2882 7 1 21 1162 6467 4306 22 45 23 175 146 264 3 22 288 5 26 65 3 8 354 23 1236 9 108\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 336 9 5451 1199 114 31 1115 329 2239 3552 2 304 170 287 385 15 44 170 2375 32 2 1355 3186 14 31 35 1371 9 18 12 39 50 4259 4 6007 3 8 54 354 10 5 261 288 5 1291 16 2 156 719 77 1 2539 4 1 8 93 191 798 11 7594 35 2148 1 46 8543 6 302 227 5 99 9 360 2426\n0\t440 5 90 1 113 47 4 31 1286 2346 1174 39 40 11 979 709 4045 3 244 211 29 202 235 27 2788 55 2772 196 2 133 1159 23 173 17 560 2386 1 898 6 31 9399 651 403 7 9 44 442 247 1505 7 1 567 30 44 3 4 448 2 18 4 9 833 40 5 1483 1 1313 4 112 2443 1740 5897 1740 5897 6 4051 14 3541 17 55 27 173 227 157 77 9 135 8 93 24 5 734 11 1 1077 6 331 4 2245 3747 217 1493 66 1 21 55 2425 685 10 2 2069 45 1 263 213 509 2160 8 1266 9 6 5 26 2 1211 1 1077 2893 71 3271 16 146 36 6943 115 13 5851 2479 3697 59 40 4267 51 22 7 66 4542 63 2230 2 84 18 47 4 2 386 99 205 4 1 9153 484 3 468 64 75 42 1613 17 9 141 39 36 1282 3766 129 5 412 7 289 1 4867 43 22 928 5 26 2299 19 3 20 19 1 4055 4124 13 1226 535 5934 4\n1\t105 6 78 36 3230 13 3371 2 641 4962 155 3131 4 2 3690 1 120 7 2 80 4 1759 47 62 456 5 31 2996 190 26 20 169 14 3189 1576 17 15 53 683 3 306 16 13 240 68 1 309 554 61 1 103 3916 4 239 164 516 25 1223 28 159 1 309 14 2 2869 7 174 14 2 6709 4 25 10 12 169 866 5 64 1 413 295 2 4443 14 33 5355 4 3273 1363 3 28 57 1 507 11 33 54 34 36 5 3235 155 1 6489 3 62 1798 9238 618 794 275 1 576 12 2747 3 1 1124 12 1 477 4 2 147 3667 29 225 1 309 419 3148 32 1 2578 3462 4 576 13 92 1641 8692 130 26 16 4476 1 309 5 186 1888 132 31 2592 54 256 19 1 8022 3 3037 82 228 917 62 53 5821 10 181 5 79 11 307 1421 5 59 1 1641 17 1 6023 730 35 321 5 149 147 6627 3 1537 3 26 3023 16 1 326 49 33 139 47 19\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 131 57 167 53 3313 17 91 6625 1 250 129 12 258 3182 42 169 631 144 9 131 12 5372 36 80 4205 8 100 563 10 55 6319 318 10 12 7 13 4511 4 42 2392 384 5 26 7170 32 82 289 3 484 914 79 5 96 1 1278 143 24 31 215 312 7 62 115 13 150 617 4753 2160 819 165 5 24 29 225 764 456 4 1 293 1380 61 20 91 16 2 8699 4811 13 92 12 2 327 1223\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 6 28 46 4513 2426 1 940 40 198 71 11 136 2879 5483 190 24 71 3 3 190 24 7 1 4 29 44 60 12 2 46 304 170 3248 204 12 1 5118 1746 1 651 1200 5 70 11 10 93 1478 11 1 397 445 339 3304 5 2 69 32 1 1 1773 19 1 2879 5483 129 57 2 9282 9079 7 176 3 485 14 45 60 57 71 3295 140 2 1 353 372 1 5686 4 1478 5 24 3023 16 25 280 30 133 2523 1539 3 12 13 92 397 12 2 4594 1881 2685 3790 4 5663 8 96 34 3229 9460 8034 2005 2 1126 305 973 16\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1608 48 299 51 6 115 13 40 2 6090 16 1177 267 268 29 7118 176 809 17 204 10 276 36 60 553 1 171 5 139 47 3 24 1434 2608 140 1 280 4 728 25 113 412 1663 988 6 84 14 1 8201 654 1954 48 2 1152 971 143 1351 65 19 476 3 8 24 55 1505 742 372 3 1 1921 979 8 83 96 42 31 2561 11 1 6013 4 1 1921 442 6 13 456 22 533 1 141 15 745 340 53 2933 55 171 15 1681 871 36 2097 3 1628 70 7 2 53 13 10 5 2 4699\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2735 13 92 9487 5329 2594 174 304 6752 3 44 435 4394 5366 3028 603 2188 6 2415 7 28 383 3 212 7 1 32 2 7001 3 1858 6117 47 2 2638 36 137 4 43 82 196 14 1 18 778 1 226 4328 4 1 18 6 4787 5 3054 9 1131 152 196 148 1495 148 6382 66 666 52 38 1 516 1 443 68 1 3107 7 1044 4 110 8073 196 86 119 47 4 1 111 74 3 6382 98 380 838 5 1349 3 9108 4470 9 151 7001 2 5 104 89 7 1 7490 30 559 36 4123 638 6505 3 1599 39 45 9 57 71 47 723 4029 1742 10 54 24 262 16 172 19 1170 385 15 1479 23 3 4420 79 14 10 424 8073 7001 337 826 5 408 3324 4558 183 10 271 47 4\n1\t0 0 0 0 208 381 2913 16 86 978 238 3 1471 2 163 4 81 4522 38 1 119 5 1 74 158 66 6 229 144 6910 40 2 1230 14 6126 119 15 1 166 5 1720 10 7878 13 252 28 380 1 442 4 1 74 1324 4128 5 2 65 1172 5 1 576 5 552 1 3667 60 6 3172 30 2 7965 7 9033 2 53 4328 4 1 21 59 40 494 7 31 2602 6045 197 66 8 338 73 10 89 10 291 595 4602 6229 396 87 104 7 9 870 56 328 5 87 10 153 186 223 16 1 510 5 85 2203 155 7 85 5 149 44 3 328 5 564 4341 13 2687 70 79 1989 9 6 2 391 4 930 1491 11 1 74 28 12 235 51 22 6506 1295 1105 3369 3 1 572 6 46 386 19 37 630 4 127 188 196 2 46 53 9841 1 572 6 676 2 1366 47 566 15 43 5008 11 224 5 2606 10 40 86 1033 6822 39 83 504 4437 41 235 4 1 74 2803\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 39 159 9 18 73 5914 6 7 3 8 191 134 11 8 12 20 115 13 3027 611 1 1182 3463 61 3982 17 1 67 427 965 2 103 896 8 96 9 18 54 24 248 78 138 15 52 3 3342 14 109 45 10 61 1274 115 13 3053 54 373 6381 52 81 5 64 48 54 93 6381 52 2976 8234 1886 54 26 2 1114 542 65 4 5914 19 1 115 13 2663 193 1 18 57 42 224 6397 8 128 159 10 3 179 10 12\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1806 1 567 168 4 9 18 2 164 383 140 25 1863 974 77 174 1559 6192 3 4104 47 34 1 9 191 24 71 46 16 17 243 111 111 47 3 57 162 5 87 15 1 158 2549 4980 114 20 90 31 1635 14 237 14 8 88 1861 245 2625 4 12 46 170 3 1805 3 3193 28 4 44 113 871 7 2 223 895 7 3853 100 2165 41 101 46 1494 15 44 3 37 404 5795 2465 19 44 15 690 55 1892 5 2030 7 2 9163 9473 224 3 55 165 2 315 5727 1932 3 89 2 84 8189 28 1331 5 26 46 1086 3 1 82 2 46 345 142 7167 1932 3 61 246 2 148 112 66 6 53 302 144 51 12 49 127 102 1478 7 9 135 45 23 338 2625 1932 3 690 9 6 1 21 16\n0\t0 0 0 0 0 6 174 28 4 137 124 11 6369 3993 12 253 7 1 226 3000 4 25 157 242 5 1594 25 231 3 875 47 4 1245 15 1 42 2 1015 4 1 1802 21 32 2 3000 13 7958 11 1210 40 1 3320 4 11 84 1972 861 260 29 1 2364 4 1 2101 17 6369 35 12 4213 183 1 443 7 154 158 12 111 105 161 5 26 372 127 2514 95 9950 25 168 15 56 87 551 13 858 16 60 266 1081 35 140 1 4 101 2052 32 2 1473 195 40 60 205 153 320 6369 3 6 195 1136 5 115 13 724 165 43 1858 81 1699 30 1867 3 35 22 94 43 66 24 209 77 25 165 5 934 15 126 4095 13 302 5 64 6 5 785 800 5575 2369 3 309 1 80 81 1163 83 853 11 5575 12 31 4368 5774 33 59 96 4 122 14 2 152 27 12 2 1239 1 1299 12 31 13 6 2 3484 21 16 137 35 22 596 4 11 574 4 108\n1\t1910 318 2453 649 122 11 2 164 190 1621 25 379 7 1 398 157 45 60 6089 20 5 875 15 44 766 3 11 403 6 2 111 5 352 3 116 2866 758 28 4 25 6643 5 44 7 1044 4 2 897 331 4 1554 30 44 3 10 2050 2268 60 310 5 44 2453 15 1800 3 7653 4882 32 1 1655 29 34 1287 4085 25 5468 29 1655 3 29 34 4352 13 150 336 9 18 3 45 23 83 118 78 38 2453 1752 3 48 1 1908 98 9 6 1 18 5 1861 3 45 23 57 1852 1 1908 15 1 1908 98 23 56 321 5 70 116 634 1413 72 22 20 78 264 32 261 35 2615 7 2374 1 4 1892 3 1 1562 14 109 2 5 257 3 4236 72 22 34 264 14 109 39 36 23 63 149 264 3 835 731 6 257 859 3 48 72 820 1987 9 18 5 2074 11 17 51 6 37 78 4 157 11 173 26 2777 7 2 3170 358 594 108 9 12 2 56 84\n0\t78 403 37 4618 6 2 278 52 4462 5 121 5616 4 1 518 362 9408 106 14 121 2 185 41 31 13 1 18 24 71 4 5871 51 22 2 4 1175 5 24 829 10 7 2 111 11 54 597 1 545 507 11 127 81 88 29 225 449 5 64 239 82 316 361 42 71 248 1704 7 9476 16 5821 10 88 24 57 31 7 66 102 46 264 81 24 5 5800 19 239 82 17 20 3237 720 5213 8477 2 1700 78 927 3 2411 2944 168 88 24 71 16 2 52 21 176 361 14 7 4746 10 88 24 55 71 146 4 2 3205 3858 11 1 129 24 2 467 14 1740 8703 57 7 434 6088 55 45 10 54 24 71 248 14 2 447 5156 10 54 24 1066 138 16 6055 14 1 125 1 5199 6051 355 44 17 15 86 467 2106 197 29 225 2 3289 4 44 129 246 2 601 11 5647 516 2 3433 4 3 197 56 221 919 9 432 174 242 5 176 36 2 1112 4 1\n1\t5079 966 22 314 5 90 1 2771 3 884 5025 720 4 857 863 10 32 101 509 41 5184 10 6 2474 5 274 1511 3 4858 1 6741 4 3 3272 14 1 5998 16 1 3313 3 802 4 137 6741 22 314 5 1 67 660 1 807 28 4 1 52 866 802 6 49 35 151 1 166 1243 154 1344 44 1243 3 157 32 1 4633 6088 4 44 1170 5 1 3297 250 75 1 4 1032 6 2325 6121 6 109 1613 14 15 80 2294 104 2 163 4 4400 6 248 712 1 584 14 1 641 51 6 2 7006 393 11 6 595 684 3 3680 17 6 128 13 858 6 105 78 7 112 15 25 221 1097 10 6 43 168 22 3 19 1 1902 3994 642 1 121 112 727 1 6 4257 3 6 2 904 13 252 6 396 1074 5 73 1 3580 6 1 4272 17 33 22 3026 6 52 3685 17 595 9 40 52 1 1514 5 8258 1900 3 1190 94 283 490 23 22 9470 5 1279 899 5 1 147\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 24 58 312 14 5 66 410 206 690 3388 5 2373 9 15 7133 7 1 1284 280 3 227 9536 3 5 1 389 266 36 2 572 2746 15 95 604 4 810 3280 767 1295 709 20 5 798 31 2691 30 370 19 2 309 30 1334 3 3044 9 901 4 31 5896 1136 342 3 5267 2793 1 254 111 11 62 585 6 4940 536 15 2 482 227 716 5 1152 95 362 431 4 863 44 3 1860 5034 6 53 16 2 342 4 17 1 344 4 1 4113 22 5005 32 4577\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23 2324 2226 9024 985 39 16 1107 9 131 40 5 26 1853 8 7450 5 4317 7 32 39 48 180 107 7 106 114 33 4062 9 259 65 29 9945 896 48 87 33 9671 5 87 398 1 1085 6 689 307 459 789 1 274 22 33 160 5 176 16 81 35 40 71 536 457 2 891 5 376 7 398 106 22 33 160 5 4062 65 52 439 58 560 1443 6 2 184 1399 5 48 23 22\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 96 1 131 57 2 167 53 1292 5 216 1566 17 1 3225 12 4878 1 263 6 345 3 121 6 565 51 61 97 1636 11 88 24 71 1012 7 2 138 744 36 1 421 1040 1892 41 1565 1 1 131 173 26 4492 14 267 131 14 10 1419 623 6060 8 130 134 9 131 12 1092 1134 7 1472 1 157 4 5327 2712 5 43 13 195 330 1022 6 527 68 1 74 461 8 57 50 1750 298 3260 9 983 17 8 12 232 4 1558 128 8 1116 16 1472 65 132 1292 7 1044 4 1 4680 3086 8 555 113 4 2902 16 1 3667\n0\t1026 122 2701 1770 5 70 998 4 11 823 2831 13 252 6 2 238 14 97 4 124 36 9 22 4426 1 1839 5617 480 101 185 1357 185 684 1073 9 18 1082 5 1857 1 545 78 4 235 4 796 16 29 225 1 74 269 7 66 1 1132 186 52 68 227 85 5 131 1 7319 465 5158 101 7 9537 4 2 606 3 2 434 6972 3 2 6036 1565 47 11 1 6 160 5 26 254 5 94 2768 3 1359 5 345 121 30 669 336 9 3474 1221 17 42 20 610 5 920 1 268 49 27 515 339 634 3 1 551 4 148 3 189 3 1 1518 11 151 78 4 1 795 3784 3 14 2 4818 5 734 5 1 1077 12 3625 1941 3 2397 52 36 759 23 54 785 7 968 1443 4426 1 13 8169 3760 245 130 20 26 945 5 64 62 487 7 245 508 2308 11 895 229 49 27 12 2972 41 1194 3 100 228 504 14 76 902 39 288 16 362 6304 9222 5 1369 1 5623\n0\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2385 6 155 32 1 434 16 2 957 292 145 20 273 261 4268 29 9 272 571 16 1277 4238 35 1436 7 1 226 2493 6 140 3 6 195 1053 19 1 6826 4 375 602 7 1 1363 4 2 1658 2457 6 46 4147 2562 8 1155 185 4 9 362 1879 17 10 12 5 64 65 1 823 1810 7 3067 3635 465 424 1 790 21 6 167 3 311 3195 1856 41 1 796 167 6382 55 15 11 1751 3641 1313 626 14 2 1207 35 741 65 15 25 5905 1382 15 1 74 21 7 1 1125 66 6 211 3 782 3 7277 34 29 1 166 290\n0\t4531 4 696 3117 205 2356 3 3111 2470 22 918 49 1074 5 1862 174 1083 2076 6 11 9 12 470 30 742 35 40 630 4 1 6090 2453 181 5 24 7 238 1102 11 230 78 52 4056 68 62 98 316 193 205 3111 2470 3 22 229 52 4056 5 358 6 2 2555 142 15 2 51 22 37 97 2448 32 138 104 2905 2169 5 55 3146 11 42 202 14 45 742 6 242 5 2 356 4 2849 5 1 9613 1097 286 197 1 1244 1154 41 29 225 1 3670 4 84 1357 358 621 5307 51 6 1345 58 53 312 11 213 4863 32 2 138 18 3 1 607 201 1 59 1675 255 32 1347 4713 35 6 2765 138 68 1 3531 93 3564 276 36 60 88 26 138 15 237 138 3531 618 358 255 142 1281 14 2518 3 6707 14 86 914 996 618 15 58 148 1563 1792 1102 5 735 155 926 34 51 424 6 679 4 2588 125 3 11 818 6 58 8968 16 1 4 8854 6471 3127 13 47 4\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 297 6 7 49 1 103 231 1047 1356 14 1 435 24 165 2 147 329 7 2 1182 1404 939 17 58 54 26 528 197 86 678 188 629 14 1 231 5231 1 558 913 1957 197 1 3357 14 10 407 1834 1 435 6 20 2 17 5989 6 19 122 5 14 307 35 6 235 7 1 4305 3 29 216 22 8679 626 53 259 185 6 2 222 17 6155 14 53 6842 1573 1858 3604 3 6577 15 2 3150 14 1957 176 47 16 1280 430 492 7 2 222 185 14 2 1 18 2291 1 356 4 8046 3 1 293 363 570 6 279 1000 1987 8 24 107 9 18 169 2 156 1287\n0\t4 4287 58 32 2100 883 1348 40 95 41 1 225 312 4 1076 155 883 8396 1 2792 8055 19 1 1863 974 1 81 22 36 3073 6630 13 5676 1 6934 45 317 2 840 1787 468 26 945 854 34 1 848 6 721 3 6 361 361 1613 6582 16 115 13 4 1 4571 6 1 225 222 1470 80 4 1 85 2109 459 653 30 1 85 72 149 3335 13 92 59 1881 1156 12 1 1398 11 198 5792 47 7 9 232 4 502 7426 23 1728 6116 8 179 23 61 1 506 361 115 13 872 98 29 1 182 49 42 85 16 1 506 5 1288 361 322 987 39 134 42 1 3 80 631 6626 13 92 410 12 3 648 155 5 1 412 2880 10 12 105 1230 5 241 3 20 56 782 2160 83 5975 9 232 4 3840 13 3 30 1 111 361 58 4 2 5964 800 41 58 58 4 115 13 1627 552 116 319 3 760 41 1 41 41 41 4316 4 8372 5 70 2 53 2545 15 43 215\n1\t0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 56 336 9 158 657 8 118 10 12 1002 237 51 6 58 111 11 606 88 24 1180 5 875 19 1 1611 14 109 14 1 15 34 42 1377 3 82 17 82 68 11 1 212 21 12 109 256 1413 2423 12 313 14 692 3 1 344 4 1 201 61 93 167 53 15 1 1675 4 1 91 2112 27 12 2 103 78 83 23 1441 84 158 84 2588 3 84 1014 8 16 28 89 273 50 606 12 3746 3 7 50 2363 8246 9870 11 2016\n1\t165 2 103 1415 4 307 17 11 5351 26 2 302 5 9 2351 10 12 2 1021 3 6018 2541 17 10 12 128 6886 3 5637 419 31 278 7 9 431 14 1 379 246 5 543 15 44 4703 8 93 214 10 240 4409 47 4 416 3 2 421 66 80 1458 495 24 1 7880 5 1622 1294 6 195 66 1986 2143 5680 5 922 7 406 4916 51 61 2 163 4 84 7 9 2541 896 3 8 96 190 889 25 45 27 863 101 2 5965 13 252 247 2 84 431 3 945 59 73 55 193 1347 1141 1046 72 14 31 410 6313 122 3 230 27 6 257 950 4 1 880 9 12 2 2429 431 16 1 1125 55 193 10 12 2 103 959 1 7230 4675 5 5637 1835 3 638 1430 3 1 1063 16 1749 9 5788 215 3 6018 119 5986 9 6 1 59 1022 4 1060 106 8 617 2 2481 106 10 6 160 5 3192 8 173 947 16 398 2351 50 6070 115 13 427 4 1 5 9029 3137 1209\n0\t1711 183 1 2968 41 20 161 227 5 1116 450 8 96 10 6 78 4607 5 1193 31 5926 2592 45 23 114 20 414 140 592 13 150 12 2 29 1 85 4 17 8 12 161 227 5 365 48 12 160 778 1 389 234 1417 1 2968 257 2752 200 1 249 5 99 1 4530 1 2045 239 1344 32 6481 5 32 5 2968 34 1 111 5 7 2 4 7 2860 43 5452 61 37 72 88 99 1 250 795 19 2229 285 3492 1 234 3 1525 86 8374 4039 14 1 413 408 5 31 23 339 139 2882 197 275 2227 48 1 2045 1306 1 234 12 323 28 8465 115 13 2719 15 2 4 172 94 1 698 10 6 806 5 2635 73 7201 3 796 40 1436 1781 72 22 303 15 257 622 5082 3 2025 63 2635 11 622 6 540 3 525 5 10 15 2 658 4 1936 3 2998 136 301 9326 1 4 2774 781 5 798 1 3905 11 7 1 5160 3 2122 4 137 35 1457 140 127 1529 3 885\n1\t12 73 10 5916 86 442 15 1 5079 3 93 73 50 493 57 969 1 9303 37 8 56 143 24 2 1412 8 337 7 852 10 5 26 146 36 1 5494 4 1 17 10 590 47 5 26 1772 1956 40 459 1505 11 630 4 1 120 22 8308 3 11 6 332 8 56 339 474 364 45 129 165 44 3867 47 30 1 8 12 6750 16 1 3479 5 90 10 47 2191 15 129 355 44 39 1490 1752 40 407 248 2 84 329 15 1 1117 1329 4 1 135 245 1 67 6 243 4250 17 98 316 1 212 272 4 1 18 12 5 2545 1 930 47 4 23 3 10 114 11 169 1 868 30 2 1301 404 1 12 401 458 52 68 235 2684 56 1728 1 930 47 4 2522 13 92 206 12 2 56 547 3 12 169 548 285 1 8 56 87 449 27 196 5 90 138 124 7 1 13 252 28 6 3806 16 870 3760 17 420 354 5 187 9 2 328 2799 10 12 2 299 6480\n1\t39 451 5 26 303 3420 129 11 2888 6 29 31 3944 731 4 1644 3 11 45 188 1811 14 183 1 3961 76 26 5942 14 162 52 68 2 1301 4 31 731 2 46 148 3469 4 1 111 7 66 1 102 4179 239 159 730 14 101 7 1 2401 3 159 1 82 14 101 7 1 1328 1 7727 189 102 4902 15 7444 40 86 533 2994 2 7511 833 11 77 1 1124 3 19 77 1 13 3 1 2553 4 1556 6713 183 1 959 11 12 5 917 406 7 1 5694 6 2332 2 1117 3 31 3122 77 1980 13 150 496 354 4792 704 2 294 3145 325 41 1375 5 99 9 21 45 23 70 1 3614 39 26 1997 11 10 213 31 238 135 10 6 2 5571 4 31 240 334 3 85 7 2994 3 2 112 67 66 5 62 255 5 1 923 486 4 1 102 250 807 99 9 21 19 86 197 1959 725 5 26 7 86 441 3 23 76 1517 335 592 13 1601 7 399 31 313 4006\n"
  },
  {
    "path": "data/keras_log.json",
    "content": ""
  },
  {
    "path": "data/tf_model_savedmodel/assets/saved_model.json",
    "content": "{\"class_name\": \"Model\", \"config\": {\"name\": \"model\", \"layers\": [{\"class_name\": \"InputLayer\", \"config\": {\"batch_input_shape\": [null, 784], \"dtype\": \"float32\", \"sparse\": false, \"name\": \"input_1\"}, \"name\": \"input_1\", \"inbound_nodes\": []}, {\"class_name\": \"Dense\", \"config\": {\"name\": \"dense\", \"trainable\": true, \"dtype\": \"float32\", \"units\": 128, \"activation\": \"relu\", \"use_bias\": true, \"kernel_initializer\": {\"class_name\": \"GlorotUniform\", \"config\": {\"seed\": null}}, \"bias_initializer\": {\"class_name\": \"Zeros\", \"config\": {}}, \"kernel_regularizer\": null, \"bias_regularizer\": null, \"activity_regularizer\": null, \"kernel_constraint\": null, \"bias_constraint\": null}, \"name\": \"dense\", \"inbound_nodes\": [[[\"input_1\", 0, 0, {}]]]}, {\"class_name\": \"Dense\", \"config\": {\"name\": \"dense_1\", \"trainable\": true, \"dtype\": \"float32\", \"units\": 64, \"activation\": \"relu\", \"use_bias\": true, \"kernel_initializer\": {\"class_name\": \"GlorotUniform\", \"config\": {\"seed\": null}}, \"bias_initializer\": {\"class_name\": \"Zeros\", \"config\": {}}, \"kernel_regularizer\": null, \"bias_regularizer\": null, \"activity_regularizer\": null, \"kernel_constraint\": null, \"bias_constraint\": null}, \"name\": \"dense_1\", \"inbound_nodes\": [[[\"dense\", 0, 0, {}]]]}, {\"class_name\": \"Dense\", \"config\": {\"name\": \"dense_2\", \"trainable\": true, \"dtype\": \"float32\", \"units\": 32, \"activation\": \"relu\", \"use_bias\": true, \"kernel_initializer\": {\"class_name\": \"GlorotUniform\", \"config\": {\"seed\": null}}, \"bias_initializer\": {\"class_name\": \"Zeros\", \"config\": {}}, \"kernel_regularizer\": null, \"bias_regularizer\": null, \"activity_regularizer\": null, \"kernel_constraint\": null, \"bias_constraint\": null}, \"name\": \"dense_2\", \"inbound_nodes\": [[[\"dense_1\", 0, 0, {}]]]}, {\"class_name\": \"Dense\", \"config\": {\"name\": \"dense_3\", \"trainable\": true, \"dtype\": \"float32\", \"units\": 10, \"activation\": \"softmax\", \"use_bias\": true, \"kernel_initializer\": {\"class_name\": \"GlorotUniform\", \"config\": {\"seed\": null}}, \"bias_initializer\": {\"class_name\": \"Zeros\", \"config\": {}}, \"kernel_regularizer\": null, \"bias_regularizer\": null, \"activity_regularizer\": null, \"kernel_constraint\": null, \"bias_constraint\": null}, \"name\": \"dense_3\", \"inbound_nodes\": [[[\"dense_2\", 0, 0, {}]]]}], \"input_layers\": [[\"input_1\", 0, 0]], \"output_layers\": [[\"dense_3\", 0, 0]]}, \"keras_version\": \"2.2.4-tf\", \"backend\": \"tensorflow\"}"
  },
  {
    "path": "data/titanic/test.csv",
    "content": "PassengerId,Survived,Pclass,Name,Sex,Age,SibSp,Parch,Ticket,Fare,Cabin,Embarked\n181,0,3,\"Sage, Miss. Constance Gladys\",female,,8,2,CA. 2343,69.55,,S\n405,0,3,\"Oreskovic, Miss. Marija\",female,20.0,0,0,315096,8.6625,,S\n635,0,3,\"Skoog, Miss. Mabel\",female,9.0,3,2,347088,27.9,,S\n701,1,1,\"Astor, Mrs. John Jacob (Madeleine Talmadge Force)\",female,18.0,1,0,PC 17757,227.525,C62 C64,C\n470,1,3,\"Baclini, Miss. Helene Barbara\",female,0.75,2,1,2666,19.2583,,C\n400,1,2,\"Trout, Mrs. William H (Jessie L)\",female,28.0,0,0,240929,12.65,,S\n481,0,3,\"Goodwin, Master. Harold Victor\",male,9.0,5,2,CA 2144,46.9,,S\n44,1,2,\"Laroche, Miss. Simonne Marie Anne Andree\",female,3.0,1,2,SC/Paris 2123,41.5792,,C\n446,1,1,\"Dodge, Master. Washington\",male,4.0,0,2,33638,81.8583,A34,S\n811,0,3,\"Alexander, Mr. William\",male,26.0,0,0,3474,7.8875,,S\n255,0,3,\"Rosblom, Mrs. Viktor (Helena Wilhelmina)\",female,41.0,0,2,370129,20.2125,,S\n49,0,3,\"Samaan, Mr. Youssef\",male,,2,0,2662,21.6792,,C\n544,1,2,\"Beane, Mr. Edward\",male,32.0,1,0,2908,26.0,,S\n497,1,1,\"Eustis, Miss. Elizabeth Mussey\",female,54.0,1,0,36947,78.2667,D20,C\n857,1,1,\"Wick, Mrs. George Dennick (Mary Hitchcock)\",female,45.0,1,1,36928,164.8667,,S\n440,0,2,\"Kvillner, Mr. Johan Henrik Johannesson\",male,31.0,0,0,C.A. 18723,10.5,,S\n406,0,2,\"Gale, Mr. Shadrach\",male,34.0,1,0,28664,21.0,,S\n628,1,1,\"Longley, Miss. Gretchen Fiske\",female,21.0,0,0,13502,77.9583,D9,S\n742,0,1,\"Cavendish, Mr. Tyrell William\",male,36.0,1,0,19877,78.85,C46,S\n33,1,3,\"Glynn, Miss. Mary Agatha\",female,,0,0,335677,7.75,,Q\n702,1,1,\"Silverthorne, Mr. Spencer Victor\",male,35.0,0,0,PC 17475,26.2875,E24,S\n126,1,3,\"Nicola-Yarred, Master. Elias\",male,12.0,1,0,2651,11.2417,,C\n508,1,1,\"Bradley, Mr. George (\"\"George Arthur Brayton\"\")\",male,,0,0,111427,26.55,,S\n524,1,1,\"Hippach, Mrs. Louis Albert (Ida Sophia Fischer)\",female,44.0,0,1,111361,57.9792,B18,C\n6,0,3,\"Moran, Mr. James\",male,,0,0,330877,8.4583,,Q\n588,1,1,\"Frolicher-Stehli, Mr. Maxmillian\",male,60.0,1,1,13567,79.2,B41,C\n252,0,3,\"Strom, Mrs. Wilhelm (Elna Matilda Persson)\",female,29.0,1,1,347054,10.4625,G6,S\n675,0,2,\"Watson, Mr. Ennis Hastings\",male,,0,0,239856,0.0,,S\n699,0,1,\"Thayer, Mr. John Borland\",male,49.0,1,1,17421,110.8833,C68,C\n525,0,3,\"Kassem, Mr. Fared\",male,,0,0,2700,7.2292,,C\n121,0,2,\"Hickman, Mr. Stanley George\",male,21.0,2,0,S.O.C. 14879,73.5,,S\n451,0,2,\"West, Mr. Edwy Arthur\",male,36.0,1,2,C.A. 34651,27.75,,S\n671,1,2,\"Brown, Mrs. Thomas William Solomon (Elizabeth Catherine Ford)\",female,40.0,1,1,29750,39.0,,S\n15,0,3,\"Vestrom, Miss. Hulda Amanda Adolfina\",female,14.0,0,0,350406,7.8542,,S\n806,0,3,\"Johansson, Mr. Karl Johan\",male,31.0,0,0,347063,7.775,,S\n172,0,3,\"Rice, Master. Arthur\",male,4.0,4,1,382652,29.125,,Q\n545,0,1,\"Douglas, Mr. Walter Donald\",male,50.0,1,0,PC 17761,106.425,C86,C\n703,0,3,\"Barbara, Miss. Saiide\",female,18.0,0,1,2691,14.4542,,C\n513,1,1,\"McGough, Mr. James Robert\",male,36.0,0,0,PC 17473,26.2875,E25,S\n449,1,3,\"Baclini, Miss. Marie Catherine\",female,5.0,2,1,2666,19.2583,,C\n456,1,3,\"Jalsevac, Mr. Ivan\",male,29.0,0,0,349240,7.8958,,C\n142,1,3,\"Nysten, Miss. Anna Sofia\",female,22.0,0,0,347081,7.75,,S\n190,0,3,\"Turcin, Mr. Stjepan\",male,36.0,0,0,349247,7.8958,,S\n36,0,1,\"Holverson, Mr. Alexander Oskar\",male,42.0,1,0,113789,52.0,,S\n448,1,1,\"Seward, Mr. Frederic Kimber\",male,34.0,0,0,113794,26.55,,S\n668,0,3,\"Rommetvedt, Mr. Knud Paust\",male,,0,0,312993,7.775,,S\n875,1,2,\"Abelson, Mrs. Samuel (Hannah Wizosky)\",female,28.0,1,0,P/PP 3381,24.0,,C\n501,0,3,\"Calic, Mr. Petar\",male,17.0,0,0,315086,8.6625,,S\n237,0,2,\"Hold, Mr. Stephen\",male,44.0,1,0,26707,26.0,,S\n555,1,3,\"Ohman, Miss. Velin\",female,22.0,0,0,347085,7.775,,S\n99,1,2,\"Doling, Mrs. John T (Ada Julia Bone)\",female,34.0,0,1,231919,23.0,,S\n862,0,2,\"Giles, Mr. Frederick Edward\",male,21.0,1,0,28134,11.5,,S\n681,0,3,\"Peters, Miss. Katie\",female,,0,0,330935,8.1375,,Q\n132,0,3,\"Coelho, Mr. Domingos Fernandeo\",male,20.0,0,0,SOTON/O.Q. 3101307,7.05,,S\n381,1,1,\"Bidois, Miss. Rosalie\",female,42.0,0,0,PC 17757,227.525,,C\n97,0,1,\"Goldschmidt, Mr. George B\",male,71.0,0,0,PC 17754,34.6542,A5,C\n138,0,1,\"Futrelle, Mr. Jacques Heath\",male,37.0,1,0,113803,53.1,C123,S\n219,1,1,\"Bazzani, Miss. Albina\",female,32.0,0,0,11813,76.2917,D15,C\n637,0,3,\"Leinonen, Mr. Antti Gustaf\",male,32.0,0,0,STON/O 2. 3101292,7.925,,S\n5,0,3,\"Allen, Mr. William Henry\",male,35.0,0,0,373450,8.05,,S\n551,1,1,\"Thayer, Mr. John Borland Jr\",male,17.0,0,2,17421,110.8833,C70,C\n179,0,2,\"Hale, Mr. Reginald\",male,30.0,0,0,250653,13.0,,S\n688,0,3,\"Dakic, Mr. Branko\",male,19.0,0,0,349228,10.1708,,S\n719,0,3,\"McEvoy, Mr. Michael\",male,,0,0,36568,15.5,,Q\n510,1,3,\"Lang, Mr. Fang\",male,26.0,0,0,1601,56.4958,,S\n177,0,3,\"Lefebre, Master. Henry Forbes\",male,,3,1,4133,25.4667,,S\n720,0,3,\"Johnson, Mr. Malkolm Joackim\",male,33.0,0,0,347062,7.775,,S\n206,0,3,\"Strom, Miss. Telma Matilda\",female,2.0,0,1,347054,10.4625,G6,S\n76,0,3,\"Moen, Mr. Sigurd Hansen\",male,25.0,0,0,348123,7.65,F G73,S\n706,0,2,\"Morley, Mr. Henry Samuel (\"\"Mr Henry Marshall\"\")\",male,39.0,0,0,250655,26.0,,S\n852,0,3,\"Svensson, Mr. Johan\",male,74.0,0,0,347060,7.775,,S\n786,0,3,\"Harmer, Mr. Abraham (David Lishin)\",male,25.0,0,0,374887,7.25,,S\n838,0,3,\"Sirota, Mr. Maurice\",male,,0,0,392092,8.05,,S\n61,0,3,\"Sirayanian, Mr. Orsen\",male,22.0,0,0,2669,7.2292,,C\n183,0,3,\"Asplund, Master. Clarence Gustaf Hugo\",male,9.0,4,2,347077,31.3875,,S\n574,1,3,\"Kelly, Miss. Mary\",female,,0,0,14312,7.75,,Q\n189,0,3,\"Bourke, Mr. John\",male,40.0,1,1,364849,15.5,,Q\n844,0,3,\"Lemberopolous, Mr. Peter L\",male,34.5,0,0,2683,6.4375,,C\n27,0,3,\"Emir, Mr. Farred Chehab\",male,,0,0,2631,7.225,,C\n860,0,3,\"Razi, Mr. Raihed\",male,,0,0,2629,7.2292,,C\n360,1,3,\"Mockler, Miss. Helen Mary \"\"Ellie\"\"\",female,,0,0,330980,7.8792,,Q\n260,1,2,\"Parrish, Mrs. (Lutie Davis)\",female,50.0,0,1,230433,26.0,,S\n793,0,3,\"Sage, Miss. Stella Anna\",female,,8,2,CA. 2343,69.55,,S\n437,0,3,\"Ford, Miss. Doolina Margaret \"\"Daisy\"\"\",female,21.0,2,2,W./C. 6608,34.375,,S\n619,1,2,\"Becker, Miss. Marion Louise\",female,4.0,2,1,230136,39.0,F4,S\n653,0,3,\"Kalvik, Mr. Johannes Halvorsen\",male,21.0,0,0,8475,8.4333,,S\n120,0,3,\"Andersson, Miss. Ellis Anna Maria\",female,2.0,4,2,347082,31.275,,S\n813,0,2,\"Slemen, Mr. Richard James\",male,35.0,0,0,28206,10.5,,S\n484,1,3,\"Turkula, Mrs. (Hedwig)\",female,63.0,0,0,4134,9.5875,,S\n559,1,1,\"Taussig, Mrs. Emil (Tillie Mandelbaum)\",female,39.0,1,1,110413,79.65,E67,S\n500,0,3,\"Svensson, Mr. Olof\",male,24.0,0,0,350035,7.7958,,S\n647,0,3,\"Cor, Mr. Liudevit\",male,19.0,0,0,349231,7.8958,,S\n482,0,2,\"Frost, Mr. Anthony Wood \"\"Archie\"\"\",male,,0,0,239854,0.0,,S\n270,1,1,\"Bissette, Miss. Amelia\",female,35.0,0,0,PC 17760,135.6333,C99,S\n878,0,3,\"Petroff, Mr. Nedelio\",male,19.0,0,0,349212,7.8958,,S\n766,1,1,\"Hogeboom, Mrs. John C (Anna Andrews)\",female,51.0,1,0,13502,77.9583,D11,S\n430,1,3,\"Pickard, Mr. Berk (Berk Trembisky)\",male,32.0,0,0,SOTON/O.Q. 392078,8.05,E10,S\n822,1,3,\"Lulic, Mr. Nikola\",male,27.0,0,0,315098,8.6625,,S\n638,0,2,\"Collyer, Mr. Harvey\",male,31.0,1,1,C.A. 31921,26.25,,S\n34,0,2,\"Wheadon, Mr. Edward H\",male,66.0,0,0,C.A. 24579,10.5,,S\n207,0,3,\"Backstrom, Mr. Karl Alfred\",male,32.0,1,0,3101278,15.85,,S\n242,1,3,\"Murphy, Miss. Katherine \"\"Kate\"\"\",female,,1,0,367230,15.5,,Q\n598,0,3,\"Johnson, Mr. Alfred\",male,49.0,0,0,LINE,0.0,,S\n383,0,3,\"Tikkanen, Mr. Juho\",male,32.0,0,0,STON/O 2. 3101293,7.925,,S\n808,0,3,\"Pettersson, Miss. Ellen Natalia\",female,18.0,0,0,347087,7.775,,S\n74,0,3,\"Chronopoulos, Mr. Apostolos\",male,26.0,1,0,2680,14.4542,,C\n655,0,3,\"Hegarty, Miss. Hanora \"\"Nora\"\"\",female,18.0,0,0,365226,6.75,,Q\n726,0,3,\"Oreskovic, Mr. Luka\",male,20.0,0,0,315094,8.6625,,S\n589,0,3,\"Gilinski, Mr. Eliezer\",male,22.0,0,0,14973,8.05,,S\n306,1,1,\"Allison, Master. Hudson Trevor\",male,0.92,1,2,113781,151.55,C22 C26,S\n832,1,2,\"Richards, Master. George Sibley\",male,0.83,1,1,29106,18.75,,S\n724,0,2,\"Hodges, Mr. Henry Price\",male,50.0,0,0,250643,13.0,,S\n870,1,3,\"Johnson, Master. Harold Theodor\",male,4.0,1,1,347742,11.1333,,S\n91,0,3,\"Christmann, Mr. Emil\",male,29.0,0,0,343276,8.05,,S\n869,0,3,\"van Melkebeke, Mr. Philemon\",male,,0,0,345777,9.5,,S\n60,0,3,\"Goodwin, Master. William Frederick\",male,11.0,5,2,CA 2144,46.9,,S\n73,0,2,\"Hood, Mr. Ambrose Jr\",male,21.0,0,0,S.O.C. 14879,73.5,,S\n627,0,2,\"Kirkland, Rev. Charles Leonard\",male,57.0,0,0,219533,12.35,,Q\n818,0,2,\"Mallet, Mr. Albert\",male,31.0,1,1,S.C./PARIS 2079,37.0042,,C\n460,0,3,\"O'Connor, Mr. Maurice\",male,,0,0,371060,7.75,,Q\n522,0,3,\"Vovk, Mr. Janko\",male,22.0,0,0,349252,7.8958,,S\n149,0,2,\"Navratil, Mr. Michel (\"\"Louis M Hoffman\"\")\",male,36.5,0,2,230080,26.0,F2,S\n734,0,2,\"Berriman, Mr. William John\",male,23.0,0,0,28425,13.0,,S\n431,1,1,\"Bjornstrom-Steffansson, Mr. Mauritz Hakan\",male,28.0,0,0,110564,26.55,C52,S\n170,0,3,\"Ling, Mr. Lee\",male,28.0,0,0,1601,56.4958,,S\n727,1,2,\"Renouf, Mrs. Peter Henry (Lillian Jefferys)\",female,30.0,3,0,31027,21.0,,S\n876,1,3,\"Najib, Miss. Adele Kiamie \"\"Jane\"\"\",female,15.0,0,0,2667,7.225,,C\n732,0,3,\"Hassan, Mr. Houssein G N\",male,11.0,0,0,2699,18.7875,,C\n214,0,2,\"Givard, Mr. Hans Kristensen\",male,30.0,0,0,250646,13.0,,S\n195,1,1,\"Brown, Mrs. James Joseph (Margaret Tobin)\",female,44.0,0,0,PC 17610,27.7208,B4,C\n256,1,3,\"Touma, Mrs. Darwis (Hanne Youssef Razi)\",female,29.0,0,2,2650,15.2458,,C\n731,1,1,\"Allen, Miss. Elisabeth Walton\",female,29.0,0,0,24160,211.3375,B5,S\n289,1,2,\"Hosono, Mr. Masabumi\",male,42.0,0,0,237798,13.0,,S\n244,0,3,\"Maenpaa, Mr. Matti Alexanteri\",male,22.0,0,0,STON/O 2. 3101275,7.125,,S\n576,0,3,\"Patchett, Mr. George\",male,19.0,0,0,358585,14.5,,S\n837,0,3,\"Pasic, Mr. Jakob\",male,21.0,0,0,315097,8.6625,,S\n468,0,1,\"Smart, Mr. John Montgomery\",male,56.0,0,0,113792,26.55,,S\n518,0,3,\"Ryan, Mr. Patrick\",male,,0,0,371110,24.15,,Q\n232,0,3,\"Larsson, Mr. Bengt Edvin\",male,29.0,0,0,347067,7.775,,S\n161,0,3,\"Cribb, Mr. John Hatfield\",male,44.0,0,1,371362,16.1,,S\n722,0,3,\"Jensen, Mr. Svend Lauritz\",male,17.0,1,0,350048,7.0542,,S\n767,0,1,\"Brewe, Dr. Arthur Jackson\",male,,0,0,112379,39.6,,C\n159,0,3,\"Smiljanic, Mr. Mile\",male,,0,0,315037,8.6625,,S\n573,1,1,\"Flynn, Mr. John Irwin (\"\"Irving\"\")\",male,36.0,0,0,PC 17474,26.3875,E25,S\n652,1,2,\"Doling, Miss. Elsie\",female,18.0,0,1,231919,23.0,,S\n351,0,3,\"Odahl, Mr. Nils Martin\",male,23.0,0,0,7267,9.225,,S\n326,1,1,\"Young, Miss. Marie Grice\",female,36.0,0,0,PC 17760,135.6333,C32,C\n25,0,3,\"Palsson, Miss. Torborg Danira\",female,8.0,3,1,349909,21.075,,S\n264,0,1,\"Harrison, Mr. William\",male,40.0,0,0,112059,0.0,B94,S\n418,1,2,\"Silven, Miss. Lyyli Karoliina\",female,18.0,0,2,250652,13.0,,S\n744,0,3,\"McNamee, Mr. Neal\",male,24.0,1,0,376566,16.1,,S\n210,1,1,\"Blank, Mr. Henry\",male,40.0,0,0,112277,31.0,A31,C\n872,1,1,\"Beckwith, Mrs. Richard Leonard (Sallie Monypeny)\",female,47.0,1,1,11751,52.5542,D35,S\n215,0,3,\"Kiernan, Mr. Philip\",male,,1,0,367229,7.75,,Q\n646,1,1,\"Harper, Mr. Henry Sleeper\",male,48.0,1,0,PC 17572,76.7292,D33,C\n565,0,3,\"Meanwell, Miss. (Marion Ogden)\",female,,0,0,SOTON/O.Q. 392087,8.05,,S\n325,0,3,\"Sage, Mr. George John Jr\",male,,8,2,CA. 2343,69.55,,S\n651,0,3,\"Mitkoff, Mr. Mito\",male,,0,0,349221,7.8958,,S\n865,0,2,\"Gill, Mr. John William\",male,24.0,0,0,233866,13.0,,S\n605,1,1,\"Homer, Mr. Harry (\"\"Mr E Haven\"\")\",male,35.0,0,0,111426,26.55,,C\n329,1,3,\"Goldsmith, Mrs. Frank John (Emily Alice Brown)\",female,31.0,1,1,363291,20.525,,S\n180,0,3,\"Leonard, Mr. Lionel\",male,36.0,0,0,LINE,0.0,,S\n620,0,2,\"Gavey, Mr. Lawrence\",male,26.0,0,0,31028,10.5,,S\n148,0,3,\"Ford, Miss. Robina Maggie \"\"Ruby\"\"\",female,9.0,2,2,W./C. 6608,34.375,,S\n273,1,2,\"Mellinger, Mrs. (Elizabeth Anne Maidment)\",female,41.0,0,1,250644,19.5,,S\n535,0,3,\"Cacic, Miss. Marija\",female,30.0,0,0,315084,8.6625,,S\n31,0,1,\"Uruchurtu, Don. Manuel E\",male,40.0,0,0,PC 17601,27.7208,,C\n777,0,3,\"Tobin, Mr. Roger\",male,,0,0,383121,7.75,F38,Q\n648,1,1,\"Simonius-Blumer, Col. Oberst Alfons\",male,56.0,0,0,13213,35.5,A26,C\n527,1,2,\"Ridsdale, Miss. Lucy\",female,50.0,0,0,W./C. 14258,10.5,,S\n759,0,3,\"Theobald, Mr. Thomas Leonard\",male,34.0,0,0,363294,8.05,,S\n266,0,2,\"Reeves, Mr. David\",male,36.0,0,0,C.A. 17248,10.5,,S\n373,0,3,\"Beavan, Mr. William Thomas\",male,19.0,0,0,323951,8.05,,S\n848,0,3,\"Markoff, Mr. Marin\",male,35.0,0,0,349213,7.8958,,C\n650,1,3,\"Stanley, Miss. Amy Zillah Elsie\",female,23.0,0,0,CA. 2314,7.55,,S\n649,0,3,\"Willey, Mr. Edward\",male,,0,0,S.O./P.P. 751,7.55,,S\n577,1,2,\"Garside, Miss. Ethel\",female,34.0,0,0,243880,13.0,,S\n78,0,3,\"Moutal, Mr. Rahamin Haim\",male,,0,0,374746,8.05,,S\n402,0,3,\"Adams, Mr. John\",male,26.0,0,0,341826,8.05,,S\n"
  },
  {
    "path": "data/titanic/train.csv",
    "content": "PassengerId,Survived,Pclass,Name,Sex,Age,SibSp,Parch,Ticket,Fare,Cabin,Embarked\n493,0,1,\"Molson, Mr. Harry Markland\",male,55.0,0,0,113787,30.5,C30,S\n53,1,1,\"Harper, Mrs. Henry Sleeper (Myna Haxtun)\",female,49.0,1,0,PC 17572,76.7292,D33,C\n388,1,2,\"Buss, Miss. Kate\",female,36.0,0,0,27849,13.0,,S\n192,0,2,\"Carbines, Mr. William\",male,19.0,0,0,28424,13.0,,S\n687,0,3,\"Panula, Mr. Jaako Arnold\",male,14.0,4,1,3101295,39.6875,,S\n16,1,2,\"Hewlett, Mrs. (Mary D Kingcome) \",female,55.0,0,0,248706,16.0,,S\n228,0,3,\"Lovell, Mr. John Hall (\"\"Henry\"\")\",male,20.5,0,0,A/5 21173,7.25,,S\n884,0,2,\"Banfield, Mr. Frederick James\",male,28.0,0,0,C.A./SOTON 34068,10.5,,S\n168,0,3,\"Skoog, Mrs. William (Anna Bernhardina Karlsson)\",female,45.0,1,4,347088,27.9,,S\n752,1,3,\"Moor, Master. Meier\",male,6.0,0,1,392096,12.475,E121,S\n541,1,1,\"Crosby, Miss. Harriet R\",female,36.0,0,2,WE/P 5735,71.0,B22,S\n356,0,3,\"Vanden Steen, Mr. Leo Peter\",male,28.0,0,0,345783,9.5,,S\n387,0,3,\"Goodwin, Master. Sidney Leonard\",male,1.0,5,2,CA 2144,46.9,,S\n372,0,3,\"Wiklund, Mr. Jakob Alfred\",male,18.0,1,0,3101267,6.4958,,S\n873,0,1,\"Carlsson, Mr. Frans Olof\",male,33.0,0,0,695,5.0,B51 B53 B55,S\n263,0,1,\"Taussig, Mr. Emil\",male,52.0,1,1,110413,79.65,E67,S\n511,1,3,\"Daly, Mr. Eugene Patrick\",male,29.0,0,0,382651,7.75,,Q\n612,0,3,\"Jardin, Mr. Jose Neto\",male,,0,0,SOTON/O.Q. 3101305,7.05,,S\n845,0,3,\"Culumovic, Mr. Jeso\",male,17.0,0,0,315090,8.6625,,S\n243,0,2,\"Coleridge, Mr. Reginald Charles\",male,29.0,0,0,W./C. 14263,10.5,,S\n106,0,3,\"Mionoff, Mr. Stoytcho\",male,28.0,0,0,349207,7.8958,,S\n536,1,2,\"Hart, Miss. Eva Miriam\",female,7.0,0,2,F.C.C. 13529,26.25,,S\n230,0,3,\"Lefebre, Miss. Mathilde\",female,,3,1,4133,25.4667,,S\n380,0,3,\"Gustafsson, Mr. Karl Gideon\",male,19.0,0,0,347069,7.775,,S\n705,0,3,\"Hansen, Mr. Henrik Juul\",male,26.0,1,0,350025,7.8542,,S\n328,1,2,\"Ball, Mrs. (Ada E Hall)\",female,36.0,0,0,28551,13.0,D,S\n107,1,3,\"Salkjelsvik, Miss. Anna Kristine\",female,21.0,0,0,343120,7.65,,S\n257,1,1,\"Thorne, Mrs. Gertrude Maybelle\",female,,0,0,PC 17585,79.2,,C\n829,1,3,\"McCormack, Mr. Thomas Joseph\",male,,0,0,367228,7.75,,Q\n393,0,3,\"Gustafsson, Mr. Johan Birger\",male,28.0,2,0,3101277,7.925,,S\n423,0,3,\"Zimmerman, Mr. Leo\",male,29.0,0,0,315082,7.875,,S\n392,1,3,\"Jansson, Mr. Carl Olof\",male,21.0,0,0,350034,7.7958,,S\n697,0,3,\"Kelly, Mr. James\",male,44.0,0,0,363592,8.05,,S\n804,1,3,\"Thomas, Master. Assad Alexander\",male,0.42,0,1,2625,8.5167,,C\n801,0,2,\"Ponesell, Mr. Martin\",male,34.0,0,0,250647,13.0,,S\n221,1,3,\"Sunderland, Mr. Victor Francis\",male,16.0,0,0,SOTON/OQ 392089,8.05,,S\n258,1,1,\"Cherry, Miss. Gladys\",female,30.0,0,0,110152,86.5,B77,S\n548,1,2,\"Padro y Manent, Mr. Julian\",male,,0,0,SC/PARIS 2146,13.8625,,C\n24,1,1,\"Sloper, Mr. William Thompson\",male,28.0,0,0,113788,35.5,A6,S\n794,0,1,\"Hoyt, Mr. William Fisher\",male,,0,0,PC 17600,30.6958,,C\n871,0,3,\"Balkic, Mr. Cerin\",male,26.0,0,0,349248,7.8958,,S\n560,1,3,\"de Messemaeker, Mrs. Guillaume Joseph (Emma)\",female,36.0,1,0,345572,17.4,,S\n111,0,1,\"Porter, Mr. Walter Chamberlain\",male,47.0,0,0,110465,52.0,C110,S\n750,0,3,\"Connaghton, Mr. Michael\",male,31.0,0,0,335097,7.75,,Q\n447,1,2,\"Mellinger, Miss. Madeleine Violet\",female,13.0,0,1,250644,19.5,,S\n37,1,3,\"Mamee, Mr. Hanna\",male,,0,0,2677,7.2292,,C\n465,0,3,\"Maisner, Mr. Simon\",male,,0,0,A/S 2816,8.05,,S\n238,1,2,\"Collyer, Miss. Marjorie \"\"Lottie\"\"\",female,8.0,0,2,C.A. 31921,26.25,,S\n716,0,3,\"Soholt, Mr. Peter Andreas Lauritz Andersen\",male,19.0,0,0,348124,7.65,F G73,S\n229,0,2,\"Fahlstrom, Mr. Arne Jonas\",male,18.0,0,0,236171,13.0,,S\n81,0,3,\"Waelens, Mr. Achille\",male,22.0,0,0,345767,9.0,,S\n69,1,3,\"Andersson, Miss. Erna Alexandra\",female,17.0,4,2,3101281,7.925,,S\n662,0,3,\"Badt, Mr. Mohamed\",male,40.0,0,0,2623,7.225,,C\n630,0,3,\"O'Connell, Mr. Patrick D\",male,,0,0,334912,7.7333,,Q\n584,0,1,\"Ross, Mr. John Hugo\",male,36.0,0,0,13049,40.125,A10,C\n828,1,2,\"Mallet, Master. Andre\",male,1.0,0,2,S.C./PARIS 2079,37.0042,,C\n491,0,3,\"Hagland, Mr. Konrad Mathias Reiersen\",male,,1,0,65304,19.9667,,S\n689,0,3,\"Fischer, Mr. Eberhard Thelander\",male,18.0,0,0,350036,7.7958,,S\n32,1,1,\"Spencer, Mrs. William Augustus (Marie Eugenie)\",female,,1,0,PC 17569,146.5208,B78,C\n35,0,1,\"Meyer, Mr. Edgar Joseph\",male,28.0,1,0,PC 17604,82.1708,,C\n269,1,1,\"Graham, Mrs. William Thompson (Edith Junkins)\",female,58.0,0,1,PC 17582,153.4625,C125,S\n736,0,3,\"Williams, Mr. Leslie\",male,28.5,0,0,54636,16.1,,S\n140,0,1,\"Giglio, Mr. Victor\",male,24.0,0,0,PC 17593,79.2,B86,C\n293,0,2,\"Levy, Mr. Rene Jacques\",male,36.0,0,0,SC/Paris 2163,12.875,D,C\n186,0,1,\"Rood, Mr. Hugh Roscoe\",male,,0,0,113767,50.0,A32,S\n394,1,1,\"Newell, Miss. Marjorie\",female,23.0,1,0,35273,113.275,D36,C\n55,0,1,\"Ostby, Mr. Engelhart Cornelius\",male,65.0,0,1,113509,61.9792,B30,C\n715,0,2,\"Greenberg, Mr. Samuel\",male,52.0,0,0,250647,13.0,,S\n590,0,3,\"Murdlin, Mr. Joseph\",male,,0,0,A./5. 3235,8.05,,S\n666,0,2,\"Hickman, Mr. Lewis\",male,32.0,2,0,S.O.C. 14879,73.5,,S\n231,1,1,\"Harris, Mrs. Henry Birkhardt (Irene Wallach)\",female,35.0,1,0,36973,83.475,C83,S\n9,1,3,\"Johnson, Mrs. Oscar W (Elisabeth Vilhelmina Berg)\",female,27.0,0,2,347742,11.1333,,S\n690,1,1,\"Madill, Miss. Georgette Alexandra\",female,15.0,0,1,24160,211.3375,B5,S\n841,0,3,\"Alhomaki, Mr. Ilmari Rudolf\",male,20.0,0,0,SOTON/O2 3101287,7.925,,S\n401,1,3,\"Niskanen, Mr. Juha\",male,39.0,0,0,STON/O 2. 3101289,7.925,,S\n494,0,1,\"Artagaveytia, Mr. Ramon\",male,71.0,0,0,PC 17609,49.5042,,C\n507,1,2,\"Quick, Mrs. Frederick Charles (Jane Richards)\",female,33.0,0,2,26360,26.0,,S\n764,1,1,\"Carter, Mrs. William Ernest (Lucile Polk)\",female,36.0,1,2,113760,120.0,B96 B98,S\n778,1,3,\"Emanuel, Miss. Virginia Ethel\",female,5.0,0,0,364516,12.475,,S\n164,0,3,\"Calic, Mr. Jovo\",male,17.0,0,0,315093,8.6625,,S\n420,0,3,\"Van Impe, Miss. Catharina\",female,10.0,0,2,345773,24.15,,S\n685,0,2,\"Brown, Mr. Thomas William Solomon\",male,60.0,1,1,29750,39.0,,S\n464,0,2,\"Milling, Mr. Jacob Christian\",male,48.0,0,0,234360,13.0,,S\n561,0,3,\"Morrow, Mr. Thomas Rowan\",male,,0,0,372622,7.75,,Q\n479,0,3,\"Karlsson, Mr. Nils August\",male,22.0,0,0,350060,7.5208,,S\n526,0,3,\"Farrell, Mr. James\",male,40.5,0,0,367232,7.75,,Q\n680,1,1,\"Cardeza, Mr. Thomas Drake Martinez\",male,36.0,0,1,PC 17755,512.3292,B51 B53 B55,C\n473,1,2,\"West, Mrs. Edwy Arthur (Ada Mary Worth)\",female,33.0,1,2,C.A. 34651,27.75,,S\n521,1,1,\"Perreault, Miss. Anne\",female,30.0,0,0,12749,93.5,B73,S\n253,0,1,\"Stead, Mr. William Thomas\",male,62.0,0,0,113514,26.55,C87,S\n704,0,3,\"Gallagher, Mr. Martin\",male,25.0,0,0,36864,7.7417,,Q\n455,0,3,\"Peduzzi, Mr. Joseph\",male,,0,0,A/5 2817,8.05,,S\n816,0,1,\"Fry, Mr. Richard\",male,,0,0,112058,0.0,B102,S\n480,1,3,\"Hirvonen, Miss. Hildur E\",female,2.0,0,1,3101298,12.2875,,S\n209,1,3,\"Carr, Miss. Helen \"\"Ellen\"\"\",female,16.0,0,0,367231,7.75,,Q\n417,1,2,\"Drew, Mrs. James Vivian (Lulu Thorne Christian)\",female,34.0,1,1,28220,32.5,,S\n391,1,1,\"Carter, Mr. William Ernest\",male,36.0,1,2,113760,120.0,B96 B98,S\n364,0,3,\"Asim, Mr. Adola\",male,35.0,0,0,SOTON/O.Q. 3101310,7.05,,S\n506,0,1,\"Penasco y Castellana, Mr. Victor de Satode\",male,18.0,1,0,PC 17758,108.9,C65,C\n340,0,1,\"Blackwell, Mr. Stephen Weart\",male,45.0,0,0,113784,35.5,T,S\n276,1,1,\"Andrews, Miss. Kornelia Theodosia\",female,63.0,1,0,13502,77.9583,D7,S\n287,1,3,\"de Mulder, Mr. Theodore\",male,30.0,0,0,345774,9.5,,S\n547,1,2,\"Beane, Mrs. Edward (Ethel Clarke)\",female,19.0,1,0,2908,26.0,,S\n176,0,3,\"Klasen, Mr. Klas Albin\",male,18.0,1,1,350404,7.8542,,S\n291,1,1,\"Barber, Miss. Ellen \"\"Nellie\"\"\",female,26.0,0,0,19877,78.85,,S\n342,1,1,\"Fortune, Miss. Alice Elizabeth\",female,24.0,3,2,19950,263.0,C23 C25 C27,S\n245,0,3,\"Attalah, Mr. Sleiman\",male,30.0,0,0,2694,7.225,,C\n154,0,3,\"van Billiard, Mr. Austin Blyler\",male,40.5,0,2,A/5. 851,14.5,,S\n840,1,1,\"Marechal, Mr. Pierre\",male,,0,0,11774,29.7,C47,C\n294,0,3,\"Haas, Miss. Aloisia\",female,24.0,0,0,349236,8.85,,S\n102,0,3,\"Petroff, Mr. Pastcho (\"\"Pentcho\"\")\",male,,0,0,349215,7.8958,,S\n723,0,2,\"Gillespie, Mr. William Henry\",male,34.0,0,0,12233,13.0,,S\n633,1,1,\"Stahelin-Maeglin, Dr. Max\",male,32.0,0,0,13214,30.5,B50,C\n824,1,3,\"Moor, Mrs. (Beila)\",female,27.0,0,1,392096,12.475,E121,S\n614,0,3,\"Horgan, Mr. John\",male,,0,0,370377,7.75,,Q\n188,1,1,\"Romaine, Mr. Charles Hallace (\"\"Mr C Rolmane\"\")\",male,45.0,0,0,111428,26.55,,S\n866,1,2,\"Bystrom, Mrs. (Karolina)\",female,42.0,0,0,236852,13.0,,S\n770,0,3,\"Gronnestad, Mr. Daniel Danielsen\",male,32.0,0,0,8471,8.3625,,S\n213,0,3,\"Perkin, Mr. John Henry\",male,22.0,0,0,A/5 21174,7.25,,S\n413,1,1,\"Minahan, Miss. Daisy E\",female,33.0,1,0,19928,90.0,C78,Q\n755,1,2,\"Herman, Mrs. Samuel (Jane Laver)\",female,48.0,1,2,220845,65.0,,S\n241,0,3,\"Zabour, Miss. Thamine\",female,,1,0,2665,14.4542,,C\n587,0,2,\"Jarvis, Mr. John Denzil\",male,47.0,0,0,237565,15.0,,S\n843,1,1,\"Serepeca, Miss. Augusta\",female,30.0,0,0,113798,31.0,,C\n792,0,2,\"Gaskell, Mr. Alfred\",male,16.0,0,0,239865,26.0,,S\n791,0,3,\"Keane, Mr. Andrew \"\"Andy\"\"\",male,,0,0,12460,7.75,,Q\n740,0,3,\"Nankoff, Mr. Minko\",male,,0,0,349218,7.8958,,S\n556,0,1,\"Wright, Mr. George\",male,62.0,0,0,113807,26.55,,S\n93,0,1,\"Chaffee, Mr. Herbert Fuller\",male,46.0,1,0,W.E.P. 5734,61.175,E31,S\n308,1,1,\"Penasco y Castellana, Mrs. Victor de Satode (Maria Josefa Perez de Soto y Vallejo)\",female,17.0,1,0,PC 17758,108.9,C65,C\n496,0,3,\"Yousseff, Mr. Gerious\",male,,0,0,2627,14.4583,,C\n591,0,3,\"Rintamaki, Mr. Matti\",male,35.0,0,0,STON/O 2. 3101273,7.125,,S\n108,1,3,\"Moss, Mr. Albert Johan\",male,,0,0,312991,7.775,,S\n303,0,3,\"Johnson, Mr. William Cahoone Jr\",male,19.0,0,0,LINE,0.0,,S\n346,1,2,\"Brown, Miss. Amelia \"\"Mildred\"\"\",female,24.0,0,0,248733,13.0,F33,S\n135,0,2,\"Sobey, Mr. Samuel James Hayden\",male,25.0,0,0,C.A. 29178,13.0,,S\n184,1,2,\"Becker, Master. Richard F\",male,1.0,2,1,230136,39.0,F4,S\n337,0,1,\"Pears, Mr. Thomas Clinton\",male,29.0,1,0,113776,66.6,C2,S\n67,1,2,\"Nye, Mrs. (Elizabeth Ramell)\",female,29.0,0,0,C.A. 29395,10.5,F33,S\n151,0,2,\"Bateman, Rev. Robert James\",male,51.0,0,0,S.O.P. 1166,12.525,,S\n284,1,3,\"Dorking, Mr. Edward Arthur\",male,19.0,0,0,A/5. 10482,8.05,,S\n615,0,3,\"Brocklebank, Mr. William Alfred\",male,35.0,0,0,364512,8.05,,S\n197,0,3,\"Mernagh, Mr. Robert\",male,,0,0,368703,7.75,,Q\n318,0,2,\"Moraweck, Dr. Ernest\",male,54.0,0,0,29011,14.0,,S\n236,0,3,\"Harknett, Miss. Alice Phoebe\",female,,0,0,W./C. 6609,7.55,,S\n22,1,2,\"Beesley, Mr. Lawrence\",male,34.0,0,0,248698,13.0,D56,S\n781,1,3,\"Ayoub, Miss. Banoura\",female,13.0,0,0,2687,7.2292,,C\n410,0,3,\"Lefebre, Miss. Ida\",female,,3,1,4133,25.4667,,S\n80,1,3,\"Dowdell, Miss. Elizabeth\",female,30.0,0,0,364516,12.475,,S\n823,0,1,\"Reuchlin, Jonkheer. John George\",male,38.0,0,0,19972,0.0,,S\n389,0,3,\"Sadlier, Mr. Matthew\",male,,0,0,367655,7.7292,,Q\n333,0,1,\"Graham, Mr. George Edward\",male,38.0,0,1,PC 17582,153.4625,C91,S\n129,1,3,\"Peter, Miss. Anna\",female,,1,1,2668,22.3583,F E69,C\n122,0,3,\"Moore, Mr. Leonard Charles\",male,,0,0,A4. 54510,8.05,,S\n278,0,2,\"Parkes, Mr. Francis \"\"Frank\"\"\",male,,0,0,239853,0.0,,S\n835,0,3,\"Allum, Mr. Owen George\",male,18.0,0,0,2223,8.3,,S\n407,0,3,\"Widegren, Mr. Carl/Charles Peter\",male,51.0,0,0,347064,7.75,,S\n867,1,2,\"Duran y More, Miss. Asuncion\",female,27.0,1,0,SC/PARIS 2149,13.8583,,C\n442,0,3,\"Hampe, Mr. Leon\",male,20.0,0,0,345769,9.5,,S\n879,0,3,\"Laleff, Mr. Kristo\",male,,0,0,349217,7.8958,,S\n408,1,2,\"Richards, Master. William Rowe\",male,3.0,1,1,29106,18.75,,S\n710,1,3,\"Moubarek, Master. Halim Gonios (\"\"William George\"\")\",male,,1,1,2661,15.2458,,C\n748,1,2,\"Sinkkonen, Miss. Anna\",female,30.0,0,0,250648,13.0,,S\n354,0,3,\"Arnold-Franchi, Mr. Josef\",male,25.0,1,0,349237,17.8,,S\n399,0,2,\"Pain, Dr. Alfred\",male,23.0,0,0,244278,10.5,,S\n849,0,2,\"Harper, Rev. John\",male,28.0,0,1,248727,33.0,,S\n540,1,1,\"Frolicher, Miss. Hedwig Margaritha\",female,22.0,0,2,13568,49.5,B39,C\n572,1,1,\"Appleton, Mrs. Edward Dale (Charlotte Lamson)\",female,53.0,2,0,11769,51.4792,C101,S\n836,1,1,\"Compton, Miss. Sara Rebecca\",female,39.0,1,1,PC 17756,83.1583,E49,C\n760,1,1,\"Rothes, the Countess. of (Lucy Noel Martha Dyer-Edwards)\",female,33.0,0,0,110152,86.5,B77,S\n563,0,2,\"Norman, Mr. Robert Douglas\",male,28.0,0,0,218629,13.5,,S\n654,1,3,\"O'Leary, Miss. Hanora \"\"Norah\"\"\",female,,0,0,330919,7.8292,,Q\n178,0,1,\"Isham, Miss. Ann Elizabeth\",female,50.0,0,0,PC 17595,28.7125,C49,C\n153,0,3,\"Meo, Mr. Alfonzo\",male,55.5,0,0,A.5. 11206,8.05,,S\n247,0,3,\"Lindahl, Miss. Agda Thorilda Viktoria\",female,25.0,0,0,347071,7.775,,S\n641,0,3,\"Jensen, Mr. Hans Peder\",male,20.0,0,0,350050,7.8542,,S\n802,1,2,\"Collyer, Mrs. Harvey (Charlotte Annie Tate)\",female,31.0,1,1,C.A. 31921,26.25,,S\n634,0,1,\"Parr, Mr. William Henry Marsh\",male,,0,0,112052,0.0,,S\n191,1,2,\"Pinsky, Mrs. (Rosa)\",female,32.0,0,0,234604,13.0,,S\n375,0,3,\"Palsson, Miss. Stina Viola\",female,3.0,3,1,349909,21.075,,S\n810,1,1,\"Chambers, Mrs. Norman Campbell (Bertha Griggs)\",female,33.0,1,0,113806,53.1,E8,S\n23,1,3,\"McGowan, Miss. Anna \"\"Annie\"\"\",female,15.0,0,0,330923,8.0292,,Q\n611,0,3,\"Andersson, Mrs. Anders Johan (Alfrida Konstantia Brogren)\",female,39.0,1,5,347082,31.275,,S\n298,0,1,\"Allison, Miss. Helen Loraine\",female,2.0,1,2,113781,151.55,C22 C26,S\n116,0,3,\"Pekoniemi, Mr. Edvard\",male,21.0,0,0,STON/O 2. 3101294,7.925,,S\n776,0,3,\"Myhrman, Mr. Pehr Fabian Oliver Malkolm\",male,18.0,0,0,347078,7.75,,S\n874,0,3,\"Vander Cruyssen, Mr. Victor\",male,47.0,0,0,345765,9.0,,S\n632,0,3,\"Lundahl, Mr. Johan Svensson\",male,51.0,0,0,347743,7.0542,,S\n450,1,1,\"Peuchen, Major. Arthur Godfrey\",male,52.0,0,0,113786,30.5,C104,S\n416,0,3,\"Meek, Mrs. Thomas (Annie Louise Rowley)\",female,,0,0,343095,8.05,,S\n597,1,2,\"Leitch, Miss. Jessie Wills\",female,,0,0,248727,33.0,,S\n378,0,1,\"Widener, Mr. Harry Elkins\",male,27.0,0,2,113503,211.5,C82,C\n83,1,3,\"McDermott, Miss. Brigdet Delia\",female,,0,0,330932,7.7875,,Q\n537,0,1,\"Butt, Major. Archibald Willingham\",male,45.0,0,0,113050,26.55,B38,S\n568,0,3,\"Palsson, Mrs. Nils (Alma Cornelia Berglund)\",female,29.0,0,4,349909,21.075,,S\n585,0,3,\"Paulner, Mr. Uscher\",male,,0,0,3411,8.7125,,C\n812,0,3,\"Lester, Mr. James\",male,39.0,0,0,A/4 48871,24.15,,S\n733,0,2,\"Knight, Mr. Robert J\",male,,0,0,239855,0.0,,S\n319,1,1,\"Wick, Miss. Mary Natalie\",female,31.0,0,2,36928,164.8667,C7,S\n579,0,3,\"Caram, Mrs. Joseph (Maria Elias)\",female,,1,0,2689,14.4583,,C\n419,0,2,\"Matthews, Mr. William John\",male,30.0,0,0,28228,13.0,,S\n854,1,1,\"Lines, Miss. Mary Conover\",female,16.0,0,1,PC 17592,39.4,D28,S\n891,0,3,\"Dooley, Mr. Patrick\",male,32.0,0,0,370376,7.75,,Q\n223,0,3,\"Green, Mr. George Henry\",male,51.0,0,0,21440,8.05,,S\n434,0,3,\"Kallio, Mr. Nikolai Erland\",male,17.0,0,0,STON/O 2. 3101274,7.125,,S\n39,0,3,\"Vander Planke, Miss. Augusta Maria\",female,18.0,2,0,345764,18.0,,S\n174,0,3,\"Sivola, Mr. Antti Wilhelm\",male,21.0,0,0,STON/O 2. 3101280,7.925,,S\n586,1,1,\"Taussig, Miss. Ruth\",female,18.0,0,2,110413,79.65,E68,S\n439,0,1,\"Fortune, Mr. Mark\",male,64.0,1,4,19950,263.0,C23 C25 C27,S\n747,0,3,\"Abbott, Mr. Rossmore Edward\",male,16.0,1,1,C.A. 2673,20.25,,S\n625,0,3,\"Bowen, Mr. David John \"\"Dai\"\"\",male,21.0,0,0,54636,16.1,,S\n746,0,1,\"Crosby, Capt. Edward Gifford\",male,70.0,1,1,WE/P 5735,71.0,B22,S\n795,0,3,\"Dantcheff, Mr. Ristiu\",male,25.0,0,0,349203,7.8958,,S\n670,1,1,\"Taylor, Mrs. Elmer Zebley (Juliet Cummins Wright)\",female,,1,0,19996,52.0,C126,S\n250,0,2,\"Carter, Rev. Ernest Courtenay\",male,54.0,1,0,244252,26.0,,S\n462,0,3,\"Morley, Mr. William\",male,34.0,0,0,364506,8.05,,S\n98,1,1,\"Greenfield, Mr. William Bertram\",male,23.0,0,1,PC 17759,63.3583,D10 D12,C\n825,0,3,\"Panula, Master. Urho Abraham\",male,2.0,4,1,3101295,39.6875,,S\n362,0,2,\"del Carlo, Mr. Sebastiano\",male,29.0,1,0,SC/PARIS 2167,27.7208,,C\n669,0,3,\"Cook, Mr. Jacob\",male,43.0,0,0,A/5 3536,8.05,,S\n756,1,2,\"Hamalainen, Master. Viljo\",male,0.67,1,1,250649,14.5,,S\n880,1,1,\"Potter, Mrs. Thomas Jr (Lily Alexenia Wilson)\",female,56.0,0,1,11767,83.1583,C50,C\n42,0,2,\"Turpin, Mrs. William John Robert (Dorothy Ann Wonnacott)\",female,27.0,1,0,11668,21.0,,S\n631,1,1,\"Barkworth, Mr. Algernon Henry Wilson\",male,80.0,0,0,27042,30.0,A23,S\n282,0,3,\"Olsson, Mr. Nils Johan Goransson\",male,28.0,0,0,347464,7.8542,,S\n286,0,3,\"Stankovic, Mr. Ivan\",male,33.0,0,0,349239,8.6625,,C\n50,0,3,\"Arnold-Franchi, Mrs. Josef (Josefine Franchi)\",female,18.0,1,0,349237,17.8,,S\n553,0,3,\"O'Brien, Mr. Timothy\",male,,0,0,330979,7.8292,,Q\n886,0,3,\"Rice, Mrs. William (Margaret Norton)\",female,39.0,0,5,382652,29.125,,Q\n581,1,2,\"Christy, Miss. Julie Rachel\",female,25.0,1,1,237789,30.0,,S\n361,0,3,\"Skoog, Mr. Wilhelm\",male,40.0,1,4,347088,27.9,,S\n343,0,2,\"Collander, Mr. Erik Gustaf\",male,28.0,0,0,248740,13.0,,S\n62,1,1,\"Icard, Miss. Amelie\",female,38.0,0,0,113572,80.0,B28,\n600,1,1,\"Duff Gordon, Sir. Cosmo Edmund (\"\"Mr Morgan\"\")\",male,49.0,1,0,PC 17485,56.9292,A20,C\n785,0,3,\"Ali, Mr. William\",male,25.0,0,0,SOTON/O.Q. 3101312,7.05,,S\n330,1,1,\"Hippach, Miss. Jean Gertrude\",female,16.0,0,1,111361,57.9792,B18,C\n644,1,3,\"Foo, Mr. Choong\",male,,0,0,1601,56.4958,,S\n436,1,1,\"Carter, Miss. Lucile Polk\",female,14.0,1,2,113760,120.0,B96 B98,S\n100,0,2,\"Kantor, Mr. Sinai\",male,34.0,1,0,244367,26.0,,S\n583,0,2,\"Downton, Mr. William James\",male,54.0,0,0,28403,26.0,,S\n86,1,3,\"Backstrom, Mrs. Karl Alfred (Maria Mathilda Gustafsson)\",female,33.0,3,0,3101278,15.85,,S\n700,0,3,\"Humblen, Mr. Adolf Mathias Nicolai Olsen\",male,42.0,0,0,348121,7.65,F G63,S\n217,1,3,\"Honkanen, Miss. Eliina\",female,27.0,0,0,STON/O2. 3101283,7.925,,S\n72,0,3,\"Goodwin, Miss. Lillian Amy\",female,16.0,5,2,CA 2144,46.9,,S\n780,1,1,\"Robert, Mrs. Edward Scott (Elisabeth Walton McMillan)\",female,43.0,0,1,24160,211.3375,B3,S\n272,1,3,\"Tornquist, Mr. William Henry\",male,25.0,0,0,LINE,0.0,,S\n46,0,3,\"Rogers, Mr. William John\",male,,0,0,S.C./A.4. 23567,8.05,,S\n208,1,3,\"Albimona, Mr. Nassef Cassem\",male,26.0,0,0,2699,18.7875,,C\n336,0,3,\"Denkoff, Mr. Mitto\",male,,0,0,349225,7.8958,,S\n691,1,1,\"Dick, Mr. Albert Adrian\",male,31.0,1,0,17474,57.0,B20,S\n366,0,3,\"Adahl, Mr. Mauritz Nils Martin\",male,30.0,0,0,C 7076,7.25,,S\n562,0,3,\"Sivic, Mr. Husein\",male,40.0,0,0,349251,7.8958,,S\n110,1,3,\"Moran, Miss. Bertha\",female,,1,0,371110,24.15,,Q\n48,1,3,\"O'Driscoll, Miss. Bridget\",female,,0,0,14311,7.75,,Q\n7,0,1,\"McCarthy, Mr. Timothy J\",male,54.0,0,0,17463,51.8625,E46,S\n643,0,3,\"Skoog, Miss. Margit Elizabeth\",female,2.0,3,2,347088,27.9,,S\n466,0,3,\"Goncalves, Mr. Manuel Estanslas\",male,38.0,0,0,SOTON/O.Q. 3101306,7.05,,S\n412,0,3,\"Hart, Mr. Henry\",male,,0,0,394140,6.8583,,Q\n663,0,1,\"Colley, Mr. Edward Pomeroy\",male,47.0,0,0,5727,25.5875,E58,S\n478,0,3,\"Braund, Mr. Lewis Richard\",male,29.0,1,0,3460,7.0458,,S\n104,0,3,\"Johansson, Mr. Gustaf Joel\",male,33.0,0,0,7540,8.6542,,S\n56,1,1,\"Woolner, Mr. Hugh\",male,,0,0,19947,35.5,C52,S\n469,0,3,\"Scanlan, Mr. James\",male,,0,0,36209,7.725,,Q\n617,0,3,\"Danbom, Mr. Ernst Gilbert\",male,34.0,1,1,347080,14.4,,S\n359,1,3,\"McGovern, Miss. Mary\",female,,0,0,330931,7.8792,,Q\n4,1,1,\"Futrelle, Mrs. Jacques Heath (Lily May Peel)\",female,35.0,1,0,113803,53.1,C123,S\n842,0,2,\"Mudd, Mr. Thomas Charles\",male,16.0,0,0,S.O./P.P. 3,10.5,,S\n167,1,1,\"Chibnall, Mrs. (Edith Martha Bowerman)\",female,,0,1,113505,55.0,E33,S\n344,0,2,\"Sedgwick, Mr. Charles Frederick Waddington\",male,25.0,0,0,244361,13.0,,S\n474,1,2,\"Jerwan, Mrs. Amin S (Marie Marthe Thuillard)\",female,23.0,0,0,SC/AH Basle 541,13.7917,D,C\n881,1,2,\"Shelley, Mrs. William (Imanita Parrish Hall)\",female,25.0,0,1,230433,26.0,,S\n225,1,1,\"Hoyt, Mr. Frederick Maxfield\",male,38.0,1,0,19943,90.0,C93,S\n819,0,3,\"Holm, Mr. John Fredrik Alexander\",male,43.0,0,0,C 7075,6.45,,S\n815,0,3,\"Tomlin, Mr. Ernest Portage\",male,30.5,0,0,364499,8.05,,S\n38,0,3,\"Cann, Mr. Ernest Charles\",male,21.0,0,0,A./5. 2152,8.05,,S\n621,0,3,\"Yasbeck, Mr. Antoni\",male,27.0,1,0,2659,14.4542,,C\n205,1,3,\"Cohen, Mr. Gurshon \"\"Gus\"\"\",male,18.0,0,0,A/5 3540,8.05,,S\n51,0,3,\"Panula, Master. Juha Niilo\",male,7.0,4,1,3101295,39.6875,,S\n453,0,1,\"Foreman, Mr. Benjamin Laventall\",male,30.0,0,0,113051,27.75,C111,C\n199,1,3,\"Madigan, Miss. Margaret \"\"Maggie\"\"\",female,,0,0,370370,7.75,,Q\n580,1,3,\"Jussila, Mr. Eiriik\",male,32.0,0,0,STON/O 2. 3101286,7.925,,S\n398,0,2,\"McKane, Mr. Peter David\",male,46.0,0,0,28403,26.0,,S\n368,1,3,\"Moussa, Mrs. (Mantoura Boulos)\",female,,0,0,2626,7.2292,,C\n861,0,3,\"Hansen, Mr. Claus Peter\",male,41.0,2,0,350026,14.1083,,S\n85,1,2,\"Ilett, Miss. Bertha\",female,17.0,0,0,SO/C 14885,10.5,,S\n693,1,3,\"Lam, Mr. Ali\",male,,0,0,1601,56.4958,,S\n890,1,1,\"Behr, Mr. Karl Howell\",male,26.0,0,0,111369,30.0,C148,C\n765,0,3,\"Eklund, Mr. Hans Linus\",male,16.0,0,0,347074,7.775,,S\n640,0,3,\"Thorneycroft, Mr. Percival\",male,,1,0,376564,16.1,,S\n515,0,3,\"Coleff, Mr. Satio\",male,24.0,0,0,349209,7.4958,,S\n279,0,3,\"Rice, Master. Eric\",male,7.0,4,1,382652,29.125,,Q\n754,0,3,\"Jonkoff, Mr. Lalio\",male,23.0,0,0,349204,7.8958,,S\n830,1,1,\"Stone, Mrs. George Nelson (Martha Evelyn)\",female,62.0,0,0,113572,80.0,B28,\n467,0,2,\"Campbell, Mr. William\",male,,0,0,239853,0.0,,S\n200,0,2,\"Yrois, Miss. Henriette (\"\"Mrs Harbeck\"\")\",female,24.0,0,0,248747,13.0,,S\n831,1,3,\"Yasbeck, Mrs. Antoni (Selini Alexander)\",female,15.0,1,0,2659,14.4542,,C\n26,1,3,\"Asplund, Mrs. Carl Oscar (Selma Augusta Emilia Johansson)\",female,38.0,1,5,347077,31.3875,,S\n761,0,3,\"Garfirth, Mr. John\",male,,0,0,358585,14.5,,S\n839,1,3,\"Chip, Mr. Chang\",male,32.0,0,0,1601,56.4958,,S\n458,1,1,\"Kenyon, Mrs. Frederick R (Marion)\",female,,1,0,17464,51.8625,D21,S\n194,1,2,\"Navratil, Master. Michel M\",male,3.0,1,1,230080,26.0,F2,S\n158,0,3,\"Corn, Mr. Harry\",male,30.0,0,0,SOTON/OQ 392090,8.05,,S\n28,0,1,\"Fortune, Mr. Charles Alexander\",male,19.0,3,2,19950,263.0,C23 C25 C27,S\n204,0,3,\"Youseff, Mr. Gerious\",male,45.5,0,0,2628,7.225,,C\n774,0,3,\"Elias, Mr. Dibo\",male,,0,0,2674,7.225,,C\n196,1,1,\"Lurette, Miss. Elise\",female,58.0,0,0,PC 17569,146.5208,B80,C\n316,1,3,\"Nilsson, Miss. Helmina Josefina\",female,26.0,0,0,347470,7.8542,,S\n309,0,2,\"Abelson, Mr. Samuel\",male,30.0,1,0,P/PP 3381,24.0,,C\n367,1,1,\"Warren, Mrs. Frank Manley (Anna Sophia Atkinson)\",female,60.0,1,0,110813,75.25,D37,C\n395,1,3,\"Sandstrom, Mrs. Hjalmar (Agnes Charlotta Bengtsson)\",female,24.0,0,2,PP 9549,16.7,G6,S\n143,1,3,\"Hakkarainen, Mrs. Pekka Pietari (Elin Matilda Dolck)\",female,24.0,1,0,STON/O2. 3101279,15.85,,S\n618,0,3,\"Lobb, Mrs. William Arthur (Cordelia K Stanlick)\",female,26.0,1,0,A/5. 3336,16.1,,S\n613,1,3,\"Murphy, Miss. Margaret Jane\",female,,1,0,367230,15.5,,Q\n41,0,3,\"Ahlin, Mrs. Johan (Johanna Persdotter Larsson)\",female,40.0,1,0,7546,9.475,,S\n347,1,2,\"Smith, Miss. Marion Elsie\",female,40.0,0,0,31418,13.0,,S\n607,0,3,\"Karaic, Mr. Milan\",male,30.0,0,0,349246,7.8958,,S\n10,1,2,\"Nasser, Mrs. Nicholas (Adele Achem)\",female,14.0,1,0,237736,30.0708,,C\n251,0,3,\"Reed, Mr. James George\",male,,0,0,362316,7.25,,S\n386,0,2,\"Davies, Mr. Charles Henry\",male,18.0,0,0,S.O.C. 14879,73.5,,S\n677,0,3,\"Sawyer, Mr. Frederick Charles\",male,24.5,0,0,342826,8.05,,S\n125,0,1,\"White, Mr. Percival Wayland\",male,54.0,0,1,35281,77.2875,D26,S\n139,0,3,\"Osen, Mr. Olaf Elon\",male,16.0,0,0,7534,9.2167,,S\n71,0,2,\"Jenkin, Mr. Stephen Curnow\",male,32.0,0,0,C.A. 33111,10.5,,S\n1,0,3,\"Braund, Mr. Owen Harris\",male,22.0,1,0,A/5 21171,7.25,,S\n292,1,1,\"Bishop, Mrs. Dickinson H (Helen Walton)\",female,19.0,1,0,11967,91.0792,B49,C\n424,0,3,\"Danbom, Mrs. Ernst Gilbert (Anna Sigrid Maria Brogren)\",female,28.0,1,1,347080,14.4,,S\n457,0,1,\"Millet, Mr. Francis Davis\",male,65.0,0,0,13509,26.55,E38,S\n695,0,1,\"Weir, Col. John\",male,60.0,0,0,113800,26.55,,S\n187,1,3,\"O'Brien, Mrs. Thomas (Johanna \"\"Hannah\"\" Godfrey)\",female,,1,0,370365,15.5,,Q\n771,0,3,\"Lievens, Mr. Rene Aime\",male,24.0,0,0,345781,9.5,,S\n404,0,3,\"Hakkarainen, Mr. Pekka Pietari\",male,28.0,1,0,STON/O2. 3101279,15.85,,S\n335,1,1,\"Frauenthal, Mrs. Henry William (Clara Heinsheimer)\",female,,1,0,PC 17611,133.65,,S\n730,0,3,\"Ilmakangas, Miss. Pieta Sofia\",female,25.0,1,0,STON/O2. 3101271,7.925,,S\n863,1,1,\"Swift, Mrs. Frederick Joel (Margaret Welles Barron)\",female,48.0,0,0,17466,25.9292,D17,S\n488,0,1,\"Kent, Mr. Edward Austin\",male,58.0,0,0,11771,29.7,B37,C\n739,0,3,\"Ivanoff, Mr. Kanio\",male,,0,0,349201,7.8958,,S\n888,1,1,\"Graham, Miss. Margaret Edith\",female,19.0,0,0,112053,30.0,B42,S\n661,1,1,\"Frauenthal, Dr. Henry William\",male,50.0,2,0,PC 17611,133.65,,S\n353,0,3,\"Elias, Mr. Tannous\",male,15.0,1,1,2695,7.2292,,C\n800,0,3,\"Van Impe, Mrs. Jean Baptiste (Rosalie Paula Govaert)\",female,30.0,1,1,345773,24.15,,S\n642,1,1,\"Sagesser, Mlle. Emma\",female,24.0,0,0,PC 17477,69.3,B35,C\n182,0,2,\"Pernot, Mr. Rene\",male,,0,0,SC/PARIS 2131,15.05,,C\n246,0,1,\"Minahan, Dr. William Edward\",male,44.0,2,0,19928,90.0,C78,Q\n198,0,3,\"Olsen, Mr. Karl Siegwart Andreas\",male,42.0,0,1,4579,8.4042,,S\n348,1,3,\"Davison, Mrs. Thomas Henry (Mary E Finck)\",female,,1,0,386525,16.1,,S\n332,0,1,\"Partner, Mr. Austen\",male,45.5,0,0,113043,28.5,C124,S\n156,0,1,\"Williams, Mr. Charles Duane\",male,51.0,0,1,PC 17597,61.3792,,C\n370,1,1,\"Aubart, Mme. Leontine Pauline\",female,24.0,0,0,PC 17477,69.3,B35,C\n578,1,1,\"Silvey, Mrs. William Baird (Alice Munger)\",female,39.0,1,0,13507,55.9,E44,S\n622,1,1,\"Kimball, Mr. Edwin Nelson Jr\",male,42.0,1,0,11753,52.5542,D19,S\n495,0,3,\"Stanley, Mr. Edward Roland\",male,21.0,0,0,A/4 45380,8.05,,S\n127,0,3,\"McMahon, Mr. Martin\",male,,0,0,370372,7.75,,Q\n323,1,2,\"Slayter, Miss. Hilda Mary\",female,30.0,0,0,234818,12.35,,Q\n532,0,3,\"Toufik, Mr. Nakli\",male,,0,0,2641,7.2292,,C\n234,1,3,\"Asplund, Miss. Lillian Gertrud\",female,5.0,4,2,347077,31.3875,,S\n70,0,3,\"Kink, Mr. Vincenz\",male,26.0,2,0,315151,8.6625,,S\n29,1,3,\"O'Dwyer, Miss. Ellen \"\"Nellie\"\"\",female,,0,0,330959,7.8792,,Q\n749,0,1,\"Marvin, Mr. Daniel Warner\",male,19.0,1,0,113773,53.1,D30,S\n11,1,3,\"Sandstrom, Miss. Marguerite Rut\",female,4.0,1,1,PP 9549,16.7,G6,S\n783,0,1,\"Long, Mr. Milton Clyde\",male,29.0,0,0,113501,30.0,D6,S\n787,1,3,\"Sjoblom, Miss. Anna Sofia\",female,18.0,0,0,3101265,7.4958,,S\n626,0,1,\"Sutton, Mr. Frederick\",male,61.0,0,0,36963,32.3208,D50,S\n134,1,2,\"Weisz, Mrs. Leopold (Mathilde Francoise Pede)\",female,29.0,1,0,228414,26.0,,S\n539,0,3,\"Risien, Mr. Samuel Beard\",male,,0,0,364498,14.5,,S\n486,0,3,\"Lefebre, Miss. Jeannie\",female,,3,1,4133,25.4667,,S\n595,0,2,\"Chapman, Mr. John Henry\",male,37.0,1,0,SC/AH 29037,26.0,,S\n517,1,2,\"Lemore, Mrs. (Amelia Milley)\",female,34.0,0,0,C.A. 34260,10.5,F33,S\n504,0,3,\"Laitinen, Miss. Kristina Sofia\",female,37.0,0,0,4135,9.5875,,S\n428,1,2,\"Phillips, Miss. Kate Florence (\"\"Mrs Kate Louise Phillips Marshall\"\")\",female,19.0,0,0,250655,26.0,,S\n202,0,3,\"Sage, Mr. Frederick\",male,,8,2,CA. 2343,69.55,,S\n603,0,1,\"Harrington, Mr. Charles H\",male,,0,0,113796,42.4,,S\n698,1,3,\"Mullens, Miss. Katherine \"\"Katie\"\"\",female,,0,0,35852,7.7333,,Q\n557,1,1,\"Duff Gordon, Lady. (Lucille Christiana Sutherland) (\"\"Mrs Morgan\"\")\",female,48.0,1,0,11755,39.6,A16,C\n444,1,2,\"Reynaldo, Ms. Encarnacion\",female,28.0,0,0,230434,13.0,,S\n371,1,1,\"Harder, Mr. George Achilles\",male,25.0,1,0,11765,55.4417,E50,C\n268,1,3,\"Persson, Mr. Ernst Ulrik\",male,25.0,1,0,347083,7.775,,S\n809,0,2,\"Meyer, Mr. August\",male,39.0,0,0,248723,13.0,,S\n882,0,3,\"Markun, Mr. Johann\",male,33.0,0,0,349257,7.8958,,S\n299,1,1,\"Saalfeld, Mr. Adolphe\",male,,0,0,19988,30.5,C106,S\n858,1,1,\"Daly, Mr. Peter Denis \",male,51.0,0,0,113055,26.55,E17,S\n117,0,3,\"Connors, Mr. Patrick\",male,70.5,0,0,370369,7.75,,Q\n203,0,3,\"Johanson, Mr. Jakob Alfred\",male,34.0,0,0,3101264,6.4958,,S\n14,0,3,\"Andersson, Mr. Anders Johan\",male,39.0,1,5,347082,31.275,,S\n58,0,3,\"Novel, Mr. Mansouer\",male,28.5,0,0,2697,7.2292,,C\n575,0,3,\"Rush, Mr. Alfred George John\",male,16.0,0,0,A/4. 20589,8.05,,S\n355,0,3,\"Yousif, Mr. Wazli\",male,,0,0,2647,7.225,,C\n312,1,1,\"Ryerson, Miss. Emily Borie\",female,18.0,2,2,PC 17608,262.375,B57 B59 B63 B66,C\n345,0,2,\"Fox, Mr. Stanley Hubert\",male,36.0,0,0,229236,13.0,,S\n737,0,3,\"Ford, Mrs. Edward (Margaret Ann Watson)\",female,48.0,1,3,W./C. 6608,34.375,,S\n601,1,2,\"Jacobsohn, Mrs. Sidney Samuel (Amy Frances Christy)\",female,24.0,2,1,243847,27.0,,S\n119,0,1,\"Baxter, Mr. Quigg Edmond\",male,24.0,0,1,PC 17558,247.5208,B58 B60,C\n382,1,3,\"Nakid, Miss. Maria (\"\"Mary\"\")\",female,1.0,0,2,2653,15.7417,,C\n758,0,2,\"Bailey, Mr. Percy Andrew\",male,18.0,0,0,29108,11.5,,S\n77,0,3,\"Staneff, Mr. Ivan\",male,,0,0,349208,7.8958,,S\n112,0,3,\"Zabour, Miss. Hileni\",female,14.5,1,0,2665,14.4542,,C\n171,0,1,\"Van der hoef, Mr. Wyckoff\",male,61.0,0,0,111240,33.5,B19,S\n664,0,3,\"Coleff, Mr. Peju\",male,36.0,0,0,349210,7.4958,,S\n341,1,2,\"Navratil, Master. Edmond Roger\",male,2.0,1,1,230080,26.0,F2,S\n409,0,3,\"Birkeland, Mr. Hans Martin Monsen\",male,21.0,0,0,312992,7.775,,S\n762,0,3,\"Nirva, Mr. Iisakki Antino Aijo\",male,41.0,0,0,SOTON/O2 3101272,7.125,,S\n883,0,3,\"Dahlberg, Miss. Gerda Ulrika\",female,22.0,0,0,7552,10.5167,,S\n735,0,2,\"Troupiansky, Mr. Moses Aaron\",male,23.0,0,0,233639,13.0,,S\n165,0,3,\"Panula, Master. Eino Viljami\",male,1.0,4,1,3101295,39.6875,,S\n459,1,2,\"Toomey, Miss. Ellen\",female,50.0,0,0,F.C.C. 13531,10.5,,S\n30,0,3,\"Todoroff, Mr. Lalio\",male,,0,0,349216,7.8958,,S\n103,0,1,\"White, Mr. Richard Frasar\",male,21.0,0,1,35281,77.2875,D26,S\n235,0,2,\"Leyson, Mr. Robert William Norman\",male,24.0,0,0,C.A. 29566,10.5,,S\n623,1,3,\"Nakid, Mr. Sahid\",male,20.0,1,1,2653,15.7417,,C\n820,0,3,\"Skoog, Master. Karl Thorsten\",male,10.0,3,2,347088,27.9,,S\n454,1,1,\"Goldenberg, Mr. Samuel L\",male,49.0,1,0,17453,89.1042,C92,C\n656,0,2,\"Hickman, Mr. Leonard Mark\",male,24.0,2,0,S.O.C. 14879,73.5,,S\n441,1,2,\"Hart, Mrs. Benjamin (Esther Ada Bloomfield)\",female,45.0,1,1,F.C.C. 13529,26.25,,S\n773,0,2,\"Mack, Mrs. (Mary)\",female,57.0,0,0,S.O./P.P. 3,10.5,E77,S\n320,1,1,\"Spedden, Mrs. Frederic Oakley (Margaretta Corning Stone)\",female,40.0,1,1,16966,134.5,E34,C\n624,0,3,\"Hansen, Mr. Henry Damsgaard\",male,21.0,0,0,350029,7.8542,,S\n549,0,3,\"Goldsmith, Mr. Frank John\",male,33.0,1,1,363291,20.525,,S\n128,1,3,\"Madsen, Mr. Fridtjof Arne\",male,24.0,0,0,C 17369,7.1417,,S\n152,1,1,\"Pears, Mrs. Thomas (Edith Wearne)\",female,22.0,1,0,113776,66.6,C2,S\n729,0,2,\"Bryhl, Mr. Kurt Arnold Gottfrid\",male,25.0,1,0,236853,26.0,,S\n310,1,1,\"Francatelli, Miss. Laura Mabel\",female,30.0,0,0,PC 17485,56.9292,E36,C\n523,0,3,\"Lahoud, Mr. Sarkis\",male,,0,0,2624,7.225,,C\n599,0,3,\"Boulos, Mr. Hanna\",male,,0,0,2664,7.225,,C\n267,0,3,\"Panula, Mr. Ernesti Arvid\",male,16.0,4,1,3101295,39.6875,,S\n472,0,3,\"Cacic, Mr. Luka\",male,38.0,0,0,315089,8.6625,,S\n850,1,1,\"Goldenberg, Mrs. Samuel L (Edwiga Grabowska)\",female,,1,0,17453,89.1042,C92,C\n877,0,3,\"Gustafsson, Mr. Alfred Ossian\",male,20.0,0,0,7534,9.8458,,S\n799,0,3,\"Ibrahim Shawah, Mr. Yousseff\",male,30.0,0,0,2685,7.2292,,C\n390,1,2,\"Lehmann, Miss. Bertha\",female,17.0,0,0,SC 1748,12.0,,C\n259,1,1,\"Ward, Miss. Anna\",female,35.0,0,0,PC 17755,512.3292,,C\n790,0,1,\"Guggenheim, Mr. Benjamin\",male,46.0,0,0,PC 17593,79.2,B82 B84,C\n512,0,3,\"Webber, Mr. James\",male,,0,0,SOTON/OQ 3101316,8.05,,S\n146,0,2,\"Nicholls, Mr. Joseph Charles\",male,19.0,1,1,C.A. 33112,36.75,,S\n222,0,2,\"Bracken, Mr. James H\",male,27.0,0,0,220367,13.0,,S\n443,0,3,\"Petterson, Mr. Johan Emil\",male,25.0,1,0,347076,7.775,,S\n817,0,3,\"Heininen, Miss. Wendla Maria\",female,23.0,0,0,STON/O2. 3101290,7.925,,S\n610,1,1,\"Shutes, Miss. Elizabeth W\",female,40.0,0,0,PC 17582,153.4625,C125,S\n216,1,1,\"Newell, Miss. Madeleine\",female,31.0,1,0,35273,113.275,D36,C\n305,0,3,\"Williams, Mr. Howard Hugh \"\"Harry\"\"\",male,,0,0,A/5 2466,8.05,,S\n438,1,2,\"Richards, Mrs. Sidney (Emily Hocking)\",female,24.0,2,3,29106,18.75,,S\n300,1,1,\"Baxter, Mrs. James (Helene DeLaudeniere Chaput)\",female,50.0,0,1,PC 17558,247.5208,B58 B60,C\n63,0,1,\"Harris, Mr. Henry Birkhardt\",male,45.0,1,0,36973,83.475,C83,S\n531,1,2,\"Quick, Miss. Phyllis May\",female,2.0,1,1,26360,26.0,,S\n95,0,3,\"Coxon, Mr. Daniel\",male,59.0,0,0,364500,7.25,,S\n602,0,3,\"Slabenoff, Mr. Petco\",male,,0,0,349214,7.8958,,S\n327,0,3,\"Nysveen, Mr. Johan Hansen\",male,61.0,0,0,345364,6.2375,,S\n713,1,1,\"Taylor, Mr. Elmer Zebley\",male,48.0,1,0,19996,52.0,C126,S\n262,1,3,\"Asplund, Master. Edvin Rojj Felix\",male,3.0,4,2,347077,31.3875,,S\n193,1,3,\"Andersen-Jensen, Miss. Carla Christine Nielsine\",female,19.0,1,0,350046,7.8542,,S\n322,0,3,\"Danoff, Mr. Yoto\",male,27.0,0,0,349219,7.8958,,S\n314,0,3,\"Hendekovic, Mr. Ignjac\",male,28.0,0,0,349243,7.8958,,S\n803,1,1,\"Carter, Master. William Thornton II\",male,11.0,1,2,113760,120.0,B96 B98,S\n224,0,3,\"Nenkoff, Mr. Christo\",male,,0,0,349234,7.8958,,S\n784,0,3,\"Johnston, Mr. Andrew G\",male,,1,2,W./C. 6607,23.45,,S\n296,0,1,\"Lewy, Mr. Ervin G\",male,,0,0,PC 17612,27.7208,,C\n807,0,1,\"Andrews, Mr. Thomas Jr\",male,39.0,0,0,112050,0.0,A36,S\n118,0,2,\"Turpin, Mr. William John Robert\",male,29.0,1,0,11668,21.0,,S\n2,1,1,\"Cumings, Mrs. John Bradley (Florence Briggs Thayer)\",female,38.0,1,0,PC 17599,71.2833,C85,C\n604,0,3,\"Torber, Mr. Ernst William\",male,44.0,0,0,364511,8.05,,S\n88,0,3,\"Slocovski, Mr. Selman Francis\",male,,0,0,SOTON/OQ 392086,8.05,,S\n461,1,1,\"Anderson, Mr. Harry\",male,48.0,0,0,19952,26.55,E12,S\n227,1,2,\"Mellors, Mr. William John\",male,19.0,0,0,SW/PP 751,10.5,,S\n542,0,3,\"Andersson, Miss. Ingeborg Constanzia\",female,9.0,4,2,347082,31.275,,S\n433,1,2,\"Louch, Mrs. Charles Alexander (Alice Adelaide Slow)\",female,42.0,1,0,SC/AH 3085,26.0,,S\n594,0,3,\"Bourke, Miss. Mary\",female,,0,2,364848,7.75,,Q\n421,0,3,\"Gheorgheff, Mr. Stanio\",male,,0,0,349254,7.8958,,C\n529,0,3,\"Salonen, Mr. Johan Werner\",male,39.0,0,0,3101296,7.925,,S\n43,0,3,\"Kraeff, Mr. Theodor\",male,,0,0,349253,7.8958,,C\n489,0,3,\"Somerton, Mr. Francis William\",male,30.0,0,0,A.5. 18509,8.05,,S\n696,0,2,\"Chapman, Mr. Charles Henry\",male,52.0,0,0,248731,13.5,,S\n350,0,3,\"Dimic, Mr. Jovan\",male,42.0,0,0,315088,8.6625,,S\n657,0,3,\"Radeff, Mr. Alexander\",male,,0,0,349223,7.8958,,S\n498,0,3,\"Shellard, Mr. Frederick William\",male,,0,0,C.A. 6212,15.1,,S\n768,0,3,\"Mangan, Miss. Mary\",female,30.5,0,0,364850,7.75,,Q\n827,0,3,\"Lam, Mr. Len\",male,,0,0,1601,56.4958,,S\n728,1,3,\"Mannion, Miss. Margareth\",female,,0,0,36866,7.7375,,Q\n220,0,2,\"Harris, Mr. Walter\",male,30.0,0,0,W/C 14208,10.5,,S\n239,0,2,\"Pengelly, Mr. Frederick William\",male,19.0,0,0,28665,10.5,,S\n851,0,3,\"Andersson, Master. Sigvard Harald Elias\",male,4.0,4,2,347082,31.275,,S\n115,0,3,\"Attalah, Miss. Malake\",female,17.0,0,0,2627,14.4583,,C\n569,0,3,\"Doharr, Mr. Tannous\",male,,0,0,2686,7.2292,,C\n280,1,3,\"Abbott, Mrs. Stanton (Rosa Hunt)\",female,35.0,1,1,C.A. 2673,20.25,,S\n514,1,1,\"Rothschild, Mrs. Martin (Elizabeth L. Barrett)\",female,54.0,1,0,PC 17603,59.4,,C\n763,1,3,\"Barah, Mr. Hanna Assi\",male,20.0,0,0,2663,7.2292,,C\n533,0,3,\"Elias, Mr. Joseph Jr\",male,17.0,1,1,2690,7.2292,,C\n212,1,2,\"Cameron, Miss. Clear Annie\",female,35.0,0,0,F.C.C. 13528,21.0,,S\n782,1,1,\"Dick, Mrs. Albert Adrian (Vera Gillespie)\",female,17.0,1,0,17474,57.0,B20,S\n12,1,1,\"Bonnell, Miss. Elizabeth\",female,58.0,0,0,113783,26.55,C103,S\n377,1,3,\"Landergren, Miss. Aurora Adelia\",female,22.0,0,0,C 7077,7.25,,S\n166,1,3,\"Goldsmith, Master. Frank John William \"\"Frankie\"\"\",male,9.0,0,2,363291,20.525,,S\n543,0,3,\"Andersson, Miss. Sigrid Elisabeth\",female,11.0,4,2,347082,31.275,,S\n864,0,3,\"Sage, Miss. Dorothy Edith \"\"Dolly\"\"\",female,,8,2,CA. 2343,69.55,,S\n868,0,1,\"Roebling, Mr. Washington Augustus II\",male,31.0,0,0,PC 17590,50.4958,A24,S\n889,0,3,\"Johnston, Miss. Catherine Helen \"\"Carrie\"\"\",female,,1,2,W./C. 6607,23.45,,S\n463,0,1,\"Gee, Mr. Arthur H\",male,47.0,0,0,111320,38.5,E63,S\n609,1,2,\"Laroche, Mrs. Joseph (Juliette Marie Louise Lafargue)\",female,22.0,1,2,SC/Paris 2123,41.5792,,C\n302,1,3,\"McCoy, Mr. Bernard\",male,,2,0,367226,23.25,,Q\n144,0,3,\"Burke, Mr. Jeremiah\",male,19.0,0,0,365222,6.75,,Q\n672,0,1,\"Davidson, Mr. Thornton\",male,31.0,1,0,F.C. 12750,52.0,B71,S\n659,0,2,\"Eitemiller, Mr. George Floyd\",male,23.0,0,0,29751,13.0,,S\n233,0,2,\"Sjostedt, Mr. Ernst Adolf\",male,59.0,0,0,237442,13.5,,S\n788,0,3,\"Rice, Master. George Hugh\",male,8.0,4,1,382652,29.125,,Q\n475,0,3,\"Strandberg, Miss. Ida Sofia\",female,22.0,0,0,7553,9.8375,,S\n711,1,1,\"Mayne, Mlle. Berthe Antonine (\"\"Mrs de Villiers\"\")\",female,24.0,0,0,PC 17482,49.5042,C90,C\n274,0,1,\"Natsch, Mr. Charles H\",male,37.0,0,1,PC 17596,29.7,C118,C\n683,0,3,\"Olsvigen, Mr. Thor Anderson\",male,20.0,0,0,6563,9.225,,S\n261,0,3,\"Smith, Mr. Thomas\",male,,0,0,384461,7.75,,Q\n352,0,1,\"Williams-Lambert, Mr. Fletcher Fellows\",male,,0,0,113510,35.0,C128,S\n499,0,1,\"Allison, Mrs. Hudson J C (Bessie Waldo Daniels)\",female,25.0,1,2,113781,151.55,C22 C26,S\n796,0,2,\"Otter, Mr. Richard\",male,39.0,0,0,28213,13.0,,S\n304,1,2,\"Keane, Miss. Nora A\",female,,0,0,226593,12.35,E101,Q\n137,1,1,\"Newsom, Miss. Helen Monypeny\",female,19.0,0,2,11752,26.2833,D47,S\n275,1,3,\"Healy, Miss. Hanora \"\"Nora\"\"\",female,,0,0,370375,7.75,,Q\n163,0,3,\"Bengtsson, Mr. John Viktor\",male,26.0,0,0,347068,7.775,,S\n369,1,3,\"Jermyn, Miss. Annie\",female,,0,0,14313,7.75,,Q\n425,0,3,\"Rosblom, Mr. Viktor Richard\",male,18.0,1,1,370129,20.2125,,S\n374,0,1,\"Ringhini, Mr. Sante\",male,22.0,0,0,PC 17760,135.6333,,C\n277,0,3,\"Lindblom, Miss. Augusta Charlotta\",female,45.0,0,0,347073,7.75,,S\n20,1,3,\"Masselmani, Mrs. Fatima\",female,,0,0,2649,7.225,,C\n288,0,3,\"Naidenoff, Mr. Penko\",male,22.0,0,0,349206,7.8958,,S\n54,1,2,\"Faunthorpe, Mrs. Lizzie (Elizabeth Anne Wilkinson)\",female,29.0,1,0,2926,26.0,,S\n775,1,2,\"Hocking, Mrs. Elizabeth (Eliza Needs)\",female,54.0,1,3,29105,23.0,,S\n339,1,3,\"Dahl, Mr. Karl Edwart\",male,45.0,0,0,7598,8.05,,S\n96,0,3,\"Shorney, Mr. Charles Joseph\",male,,0,0,374910,8.05,,S\n833,0,3,\"Saad, Mr. Amin\",male,,0,0,2671,7.2292,,C\n629,0,3,\"Bostandyeff, Mr. Guentcho\",male,26.0,0,0,349224,7.8958,,S\n645,1,3,\"Baclini, Miss. Eugenie\",female,0.75,2,1,2666,19.2583,,C\n201,0,3,\"Vande Walle, Mr. Nestor Cyriel\",male,28.0,0,0,345770,9.5,,S\n315,0,2,\"Hart, Mr. Benjamin\",male,43.0,1,1,F.C.C. 13529,26.25,,S\n564,0,3,\"Simmons, Mr. John\",male,,0,0,SOTON/OQ 392082,8.05,,S\n509,0,3,\"Olsen, Mr. Henry Margido\",male,28.0,0,0,C 4001,22.525,,S\n887,0,2,\"Montvila, Rev. Juozas\",male,27.0,0,0,211536,13.0,,S\n717,1,1,\"Endres, Miss. Caroline Louise\",female,38.0,0,0,PC 17757,227.525,C45,C\n492,0,3,\"Windelov, Mr. Einar\",male,21.0,0,0,SOTON/OQ 3101317,7.25,,S\n606,0,3,\"Lindell, Mr. Edvard Bengtsson\",male,36.0,1,0,349910,15.55,,S\n721,1,2,\"Harper, Miss. Annie Jessie \"\"Nina\"\"\",female,6.0,0,1,248727,33.0,,S\n114,0,3,\"Jussila, Miss. Katriina\",female,20.0,1,0,4136,9.825,,S\n271,0,1,\"Cairns, Mr. Alexander\",male,,0,0,113798,31.0,,S\n64,0,3,\"Skoog, Master. Harald\",male,4.0,3,2,347088,27.9,,S\n567,0,3,\"Stoytcheff, Mr. Ilia\",male,19.0,0,0,349205,7.8958,,S\n593,0,3,\"Elsbury, Mr. William James\",male,47.0,0,0,A/5 3902,7.25,,S\n552,0,2,\"Sharp, Mr. Percival James R\",male,27.0,0,0,244358,26.0,,S\n57,1,2,\"Rugg, Miss. Emily\",female,21.0,0,0,C.A. 31026,10.5,,S\n485,1,1,\"Bishop, Mr. Dickinson H\",male,25.0,1,0,11967,91.0792,B49,C\n714,0,3,\"Larsson, Mr. August Viktor\",male,29.0,0,0,7545,9.4833,,S\n240,0,2,\"Hunt, Mr. George Henry\",male,33.0,0,0,SCO/W 1585,12.275,,S\n13,0,3,\"Saundercock, Mr. William Henry\",male,20.0,0,0,A/5. 2151,8.05,,S\n68,0,3,\"Crease, Mr. Ernest James\",male,19.0,0,0,S.P. 3464,8.1583,,S\n658,0,3,\"Bourke, Mrs. John (Catherine)\",female,32.0,1,1,364849,15.5,,Q\n376,1,1,\"Meyer, Mrs. Edgar Joseph (Leila Saks)\",female,,1,0,PC 17604,82.1708,,C\n505,1,1,\"Maioni, Miss. Roberta\",female,16.0,0,0,110152,86.5,B79,S\n667,0,2,\"Butler, Mr. Reginald Fenton\",male,25.0,0,0,234686,13.0,,S\n411,0,3,\"Sdycoff, Mr. Todor\",male,,0,0,349222,7.8958,,S\n502,0,3,\"Canavan, Miss. Mary\",female,21.0,0,0,364846,7.75,,Q\n674,1,2,\"Wilhelms, Mr. Charles\",male,31.0,0,0,244270,13.0,,S\n18,1,2,\"Williams, Mr. Charles Eugene\",male,,0,0,244373,13.0,,S\n534,1,3,\"Peter, Mrs. Catherine (Catherine Rizk)\",female,,0,2,2668,22.3583,,C\n519,1,2,\"Angle, Mrs. William A (Florence \"\"Mary\"\" Agnes Hughes)\",female,36.0,1,0,226875,26.0,,S\n592,1,1,\"Stephenson, Mrs. Walter Bertram (Martha Eustis)\",female,52.0,1,0,36947,78.2667,D20,C\n798,1,3,\"Osman, Mrs. Mara\",female,31.0,0,0,349244,8.6833,,S\n109,0,3,\"Rekic, Mr. Tido\",male,38.0,0,0,349249,7.8958,,S\n636,1,2,\"Davis, Miss. Mary\",female,28.0,0,0,237668,13.0,,S\n745,1,3,\"Stranden, Mr. Juho\",male,31.0,0,0,STON/O 2. 3101288,7.925,,S\n678,1,3,\"Turja, Miss. Anna Sofia\",female,18.0,0,0,4138,9.8417,,S\n616,1,2,\"Herman, Miss. Alice\",female,24.0,1,2,220845,65.0,,S\n679,0,3,\"Goodwin, Mrs. Frederick (Augusta Tyler)\",female,43.0,1,6,CA 2144,46.9,,S\n157,1,3,\"Gilnagh, Miss. Katherine \"\"Katie\"\"\",female,16.0,0,0,35851,7.7333,,Q\n772,0,3,\"Jensen, Mr. Niels Peder\",male,48.0,0,0,350047,7.8542,,S\n516,0,1,\"Walker, Mr. William Anderson\",male,47.0,0,0,36967,34.0208,D46,S\n90,0,3,\"Celotti, Mr. Francesco\",male,24.0,0,0,343275,8.05,,S\n503,0,3,\"O'Sullivan, Miss. Bridget Mary\",female,,0,0,330909,7.6292,,Q\n365,0,3,\"O'Brien, Mr. Thomas\",male,,1,0,370365,15.5,,Q\n554,1,3,\"Leeni, Mr. Fahim (\"\"Philip Zenni\"\")\",male,22.0,0,0,2620,7.225,,C\n709,1,1,\"Cleaver, Miss. Alice\",female,22.0,0,0,113781,151.55,,S\n173,1,3,\"Johnson, Miss. Eleanor Ileen\",female,1.0,1,1,347742,11.1333,,S\n331,1,3,\"McCoy, Miss. Agnes\",female,,2,0,367226,23.25,,Q\n285,0,1,\"Smith, Mr. Richard William\",male,,0,0,113056,26.0,A19,S\n692,1,3,\"Karun, Miss. Manca\",female,4.0,0,1,349256,13.4167,,C\n397,0,3,\"Olsson, Miss. Elina\",female,31.0,0,0,350407,7.8542,,S\n150,0,2,\"Byles, Rev. Thomas Roussel Davids\",male,42.0,0,0,244310,13.0,,S\n741,1,1,\"Hawksford, Mr. Walter James\",male,,0,0,16988,30.0,D45,S\n429,0,3,\"Flynn, Mr. James\",male,,0,0,364851,7.75,,Q\n47,0,3,\"Lennon, Mr. Denis\",male,,1,0,370371,15.5,,Q\n311,1,1,\"Hays, Miss. Margaret Bechstein\",female,24.0,0,0,11767,83.1583,C54,C\n131,0,3,\"Drazenoic, Mr. Jozef\",male,33.0,0,0,349241,7.8958,,C\n17,0,3,\"Rice, Master. Eugene\",male,2.0,4,1,382652,29.125,,Q\n571,1,2,\"Harris, Mr. George\",male,62.0,0,0,S.W./PP 752,10.5,,S\n254,0,3,\"Lobb, Mr. William Arthur\",male,30.0,1,0,A/5. 3336,16.1,,S\n403,0,3,\"Jussila, Miss. Mari Aina\",female,21.0,1,0,4137,9.825,,S\n660,0,1,\"Newell, Mr. Arthur Webster\",male,58.0,0,2,35273,113.275,D48,C\n3,1,3,\"Heikkinen, Miss. Laina\",female,26.0,0,0,STON/O2. 3101282,7.925,,S\n855,0,2,\"Carter, Mrs. Ernest Courtenay (Lilian Hughes)\",female,44.0,1,0,244252,26.0,,S\n608,1,1,\"Daniel, Mr. Robert Williams\",male,27.0,0,0,113804,30.5,,S\n334,0,3,\"Vander Planke, Mr. Leo Edmondus\",male,16.0,2,0,345764,18.0,,S\n452,0,3,\"Hagland, Mr. Ingvald Olai Olsen\",male,,1,0,65303,19.9667,,S\n528,0,1,\"Farthing, Mr. John\",male,,0,0,PC 17483,221.7792,C95,S\n8,0,3,\"Palsson, Master. Gosta Leonard\",male,2.0,3,1,349909,21.075,,S\n558,0,1,\"Robbins, Mr. Victor\",male,,0,0,PC 17757,227.525,,C\n483,0,3,\"Rouse, Mr. Richard Henry\",male,50.0,0,0,A/5 3594,8.05,,S\n757,0,3,\"Carlsson, Mr. August Sigfrid\",male,28.0,0,0,350042,7.7958,,S\n101,0,3,\"Petranec, Miss. Matilda\",female,28.0,0,0,349245,7.8958,,S\n79,1,2,\"Caldwell, Master. Alden Gates\",male,0.83,0,2,248738,29.0,,S\n66,1,3,\"Moubarek, Master. Gerios\",male,,1,1,2661,15.2458,,C\n218,0,2,\"Jacobsohn, Mr. Sidney Samuel\",male,42.0,1,0,243847,27.0,,S\n301,1,3,\"Kelly, Miss. Anna Katherine \"\"Annie Kate\"\"\",female,,0,0,9234,7.75,,Q\n445,1,3,\"Johannesen-Bratthammer, Mr. Bernt\",male,,0,0,65306,8.1125,,S\n673,0,2,\"Mitchell, Mr. Henry Michael\",male,70.0,0,0,C.A. 24580,10.5,,S\n324,1,2,\"Caldwell, Mrs. Albert Francis (Sylvia Mae Harbaugh)\",female,22.0,1,1,248738,29.0,,S\n427,1,2,\"Clarke, Mrs. Charles V (Ada Maria Winfield)\",female,28.0,1,0,2003,26.0,,S\n686,0,2,\"Laroche, Mr. Joseph Philippe Lemercier\",male,25.0,1,2,SC/Paris 2123,41.5792,,C\n357,1,1,\"Bowerman, Miss. Elsie Edith\",female,22.0,0,1,113505,55.0,E33,S\n422,0,3,\"Charters, Mr. David\",male,21.0,0,0,A/5. 13032,7.7333,,Q\n520,0,3,\"Pavlovic, Mr. Stefo\",male,32.0,0,0,349242,7.8958,,S\n297,0,3,\"Hanna, Mr. Mansour\",male,23.5,0,0,2693,7.2292,,C\n797,1,1,\"Leader, Dr. Alice (Farnham)\",female,49.0,0,0,17465,25.9292,D17,S\n226,0,3,\"Berglund, Mr. Karl Ivar Sven\",male,22.0,0,0,PP 4348,9.35,,S\n779,0,3,\"Kilgannon, Mr. Thomas J\",male,,0,0,36865,7.7375,,Q\n490,1,3,\"Coutts, Master. Eden Leslie \"\"Neville\"\"\",male,9.0,1,1,C.A. 37671,15.9,,S\n290,1,3,\"Connolly, Miss. Kate\",female,22.0,0,0,370373,7.75,,Q\n487,1,1,\"Hoyt, Mrs. Frederick Maxfield (Jane Anne Forby)\",female,35.0,1,0,19943,90.0,C93,S\n123,0,2,\"Nasser, Mr. Nicholas\",male,32.5,1,0,237736,30.0708,,C\n175,0,1,\"Smith, Mr. James Clinch\",male,56.0,0,0,17764,30.6958,A7,C\n471,0,3,\"Keefe, Mr. Arthur\",male,,0,0,323592,7.25,,S\n846,0,3,\"Abbing, Mr. Anthony\",male,42.0,0,0,C.A. 5547,7.55,,S\n265,0,3,\"Henry, Miss. Delia\",female,,0,0,382649,7.75,,Q\n349,1,3,\"Coutts, Master. William Loch \"\"William\"\"\",male,3.0,1,1,C.A. 37671,15.9,,S\n712,0,1,\"Klaber, Mr. Herman\",male,,0,0,113028,26.55,C124,S\n338,1,1,\"Burns, Miss. Elizabeth Margaret\",female,41.0,0,0,16966,134.5,E40,C\n295,0,3,\"Mineff, Mr. Ivan\",male,24.0,0,0,349233,7.8958,,S\n94,0,3,\"Dean, Mr. Bertram Frank\",male,26.0,1,2,C.A. 2315,20.575,,S\n89,1,1,\"Fortune, Miss. Mabel Helen\",female,23.0,3,2,19950,263.0,C23 C25 C27,S\n52,0,3,\"Nosworthy, Mr. Richard Cater\",male,21.0,0,0,A/4. 39886,7.8,,S\n415,1,3,\"Sundman, Mr. Johan Julian\",male,44.0,0,0,STON/O 2. 3101269,7.925,,S\n753,0,3,\"Vande Velde, Mr. Johannes Joseph\",male,33.0,0,0,345780,9.5,,S\n249,1,1,\"Beckwith, Mr. Richard Leonard\",male,37.0,1,1,11751,52.5542,D35,S\n639,0,3,\"Panula, Mrs. Juha (Maria Emilia Ojala)\",female,41.0,0,5,3101295,39.6875,,S\n155,0,3,\"Olsen, Mr. Ole Martin\",male,,0,0,Fa 265302,7.3125,,S\n665,1,3,\"Lindqvist, Mr. Eino William\",male,20.0,1,0,STON/O 2. 3101285,7.925,,S\n75,1,3,\"Bing, Mr. Lee\",male,32.0,0,0,1601,56.4958,,S\n248,1,2,\"Hamalainen, Mrs. William (Anna)\",female,24.0,0,2,250649,14.5,,S\n317,1,2,\"Kantor, Mrs. Sinai (Miriam Sternin)\",female,24.0,1,0,244367,26.0,,S\n321,0,3,\"Dennis, Mr. Samuel\",male,22.0,0,0,A/5 21172,7.25,,S\n283,0,3,\"de Pelsmaeker, Mr. Alfons\",male,16.0,0,0,345778,9.5,,S\n169,0,1,\"Baumann, Mr. John D\",male,,0,0,PC 17318,25.925,,S\n694,0,3,\"Saad, Mr. Khalil\",male,25.0,0,0,2672,7.225,,C\n684,0,3,\"Goodwin, Mr. Charles Edward\",male,14.0,5,2,CA 2144,46.9,,S\n59,1,2,\"West, Miss. Constance Mirium\",female,5.0,1,2,C.A. 34651,27.75,,S\n124,1,2,\"Webber, Miss. Susan\",female,32.5,0,0,27267,13.0,E101,S\n751,1,2,\"Wells, Miss. Joan\",female,4.0,1,1,29103,23.0,,S\n105,0,3,\"Gustafsson, Mr. Anders Vilhelm\",male,37.0,2,0,3101276,7.925,,S\n145,0,2,\"Andrew, Mr. Edgardo Samuel\",male,18.0,0,0,231945,11.5,,S\n538,1,1,\"LeRoy, Miss. Bertha\",female,30.0,0,0,PC 17761,106.425,,C\n358,0,2,\"Funk, Miss. Annie Clemmer\",female,38.0,0,0,237671,13.0,,S\n40,1,3,\"Nicola-Yarred, Miss. Jamila\",female,14.0,1,0,2651,11.2417,,C\n396,0,3,\"Johansson, Mr. Erik\",male,22.0,0,0,350052,7.7958,,S\n546,0,1,\"Nicholson, Mr. Arthur Ernest\",male,64.0,0,0,693,26.0,,S\n82,1,3,\"Sheerlinck, Mr. Jan Baptist\",male,29.0,0,0,345779,9.5,,S\n738,1,1,\"Lesurer, Mr. Gustave J\",male,35.0,0,0,PC 17755,512.3292,B101,C\n582,1,1,\"Thayer, Mrs. John Borland (Marian Longstreth Morris)\",female,39.0,1,1,17421,110.8833,C68,C\n885,0,3,\"Sutehall, Mr. Henry Jr\",male,25.0,0,0,SOTON/OQ 392076,7.05,,S\n379,0,3,\"Betros, Mr. Tannous\",male,20.0,0,0,2648,4.0125,,C\n821,1,1,\"Hays, Mrs. Charles Melville (Clara Jennings Gregg)\",female,52.0,1,1,12749,93.5,B69,S\n92,0,3,\"Andreasson, Mr. Paul Edvin\",male,20.0,0,0,347466,7.8542,,S\n147,1,3,\"Andersson, Mr. August Edvard (\"\"Wennerstrom\"\")\",male,27.0,0,0,350043,7.7958,,S\n718,1,2,\"Troutt, Miss. Edwina Celia \"\"Winnie\"\"\",female,27.0,0,0,34218,10.5,E101,S\n570,1,3,\"Jonsson, Mr. Carl\",male,32.0,0,0,350417,7.8542,,S\n307,1,1,\"Fleming, Miss. Margaret\",female,,0,0,17421,110.8833,,C\n596,0,3,\"Van Impe, Mr. Jean Baptiste\",male,36.0,1,1,345773,24.15,,S\n847,0,3,\"Sage, Mr. Douglas Bullen\",male,,8,2,CA. 2343,69.55,,S\n136,0,2,\"Richard, Mr. Emile\",male,23.0,0,0,SC/PARIS 2133,15.0458,,C\n363,0,3,\"Barbara, Mrs. (Catherine David)\",female,45.0,0,1,2691,14.4542,,C\n141,0,3,\"Boulos, Mrs. Joseph (Sultana)\",female,,0,2,2678,15.2458,,C\n853,0,3,\"Boulos, Miss. Nourelain\",female,9.0,1,1,2678,15.2458,,C\n87,0,3,\"Ford, Mr. William Neal\",male,16.0,1,3,W./C. 6608,34.375,,S\n789,1,3,\"Dean, Master. Bertram Vere\",male,1.0,1,2,C.A. 2315,20.575,,S\n676,0,3,\"Edvardsson, Mr. Gustaf Hjalmar\",male,18.0,0,0,349912,7.775,,S\n84,0,1,\"Carrau, Mr. Francisco M\",male,28.0,0,0,113059,47.1,,S\n805,1,3,\"Hedman, Mr. Oskar Arvid\",male,27.0,0,0,347089,6.975,,S\n530,0,2,\"Hocking, Mr. Richard George\",male,23.0,2,1,29104,11.5,,S\n826,0,3,\"Flynn, Mr. John\",male,,0,0,368323,6.95,,Q\n414,0,2,\"Cunningham, Mr. Alfred Fleming\",male,,0,0,239853,0.0,,S\n477,0,2,\"Renouf, Mr. Peter Henry\",male,34.0,1,0,31027,21.0,,S\n708,1,1,\"Calderhead, Mr. Edward Pennington\",male,42.0,0,0,PC 17476,26.2875,E24,S\n432,1,3,\"Thorneycroft, Mrs. Percival (Florence Kate White)\",female,,1,0,376564,16.1,,S\n814,0,3,\"Andersson, Miss. Ebba Iris Alfrida\",female,6.0,4,2,347082,31.275,,S\n385,0,3,\"Plotcharsky, Mr. Vasil\",male,,0,0,349227,7.8958,,S\n682,1,1,\"Hassab, Mr. Hammad\",male,27.0,0,0,PC 17572,76.7292,D49,C\n45,1,3,\"Devaney, Miss. Margaret Delia\",female,19.0,0,0,330958,7.8792,,Q\n281,0,3,\"Duane, Mr. Frank\",male,65.0,0,0,336439,7.75,,Q\n856,1,3,\"Aks, Mrs. Sam (Leah Rosen)\",female,18.0,0,1,392091,9.35,,S\n769,0,3,\"Moran, Mr. Daniel J\",male,,1,0,371110,24.15,,Q\n707,1,2,\"Kelly, Mrs. Florence \"\"Fannie\"\"\",female,45.0,0,0,223596,13.5,,S\n743,1,1,\"Ryerson, Miss. Susan Parker \"\"Suzette\"\"\",female,21.0,2,2,PC 17608,262.375,B57 B59 B63 B66,C\n160,0,3,\"Sage, Master. Thomas Henry\",male,,8,2,CA. 2343,69.55,,S\n435,0,1,\"Silvey, Mr. William Baird\",male,50.0,1,0,13507,55.9,E44,S\n211,0,3,\"Ali, Mr. Ahmed\",male,24.0,0,0,SOTON/O.Q. 3101311,7.05,,S\n725,1,1,\"Chambers, Mr. Norman Campbell\",male,27.0,1,0,113806,53.1,E8,S\n133,0,3,\"Robins, Mrs. Alexander A (Grace Charity Laury)\",female,47.0,1,0,A/5. 3337,14.5,,S\n162,1,2,\"Watt, Mrs. James (Elizabeth \"\"Bessie\"\" Inglis Milne)\",female,40.0,0,0,C.A. 33595,15.75,,S\n550,1,2,\"Davies, Master. John Morgan Jr\",male,8.0,1,1,C.A. 33112,36.75,,S\n426,0,3,\"Wiseman, Mr. Phillippe\",male,,0,0,A/4. 34244,7.25,,S\n113,0,3,\"Barton, Mr. David John\",male,22.0,0,0,324669,8.05,,S\n384,1,1,\"Holverson, Mrs. Alexander Oskar (Mary Aline Towner)\",female,35.0,1,0,113789,52.0,,S\n313,0,2,\"Lahtinen, Mrs. William (Anna Sylfven)\",female,26.0,1,1,250651,26.0,,S\n185,1,3,\"Kink-Heilmann, Miss. Luise Gretchen\",female,4.0,0,2,315153,22.025,,S\n834,0,3,\"Augustsson, Mr. Albert\",male,23.0,0,0,347468,7.8542,,S\n566,0,3,\"Davies, Mr. Alfred J\",male,24.0,2,0,A/4 48871,24.15,,S\n19,0,3,\"Vander Planke, Mrs. Julius (Emelia Maria Vandemoortele)\",female,31.0,1,0,345763,18.0,,S\n859,1,3,\"Baclini, Mrs. Solomon (Latifa Qurban)\",female,24.0,0,3,2666,19.2583,,C\n65,0,1,\"Stewart, Mr. Albert A\",male,,0,0,PC 17605,27.7208,,C\n130,0,3,\"Ekstrom, Mr. Johan\",male,45.0,0,0,347061,6.975,,S\n21,0,2,\"Fynney, Mr. Joseph J\",male,35.0,0,0,239865,26.0,,S\n476,0,1,\"Clifford, Mr. George Quincy\",male,,0,0,110465,52.0,A14,S\n"
  },
  {
    "path": "eat_tf2_ebook.md",
    "content": "# 《30天吃掉那只 TensorFlow2.0 》开篇辞 🔥🔥\n\n\n📚 gitbook电子书地址： https://lyhue1991.github.io/eat_tensorflow2_in_30_days\n\n🚀 github项目地址：https://github.com/lyhue1991/eat_tensorflow2_in_30_d\n\n\n### 一，TensorFlow2 🍎 还是 Pytorch🔥\n\n先说结论:\n\n**如果是工程师，应该优先选TensorFlow2.**\n\n**如果是学生或者研究人员，应该优先选择Pytorch.**\n\n**如果时间足够，最好TensorFlow2和Pytorch都要学习掌握。**\n\n\n理由如下：\n\n* 1，**在工业界最重要的是模型落地，目前国内的大部分互联网企业只支持TensorFlow模型的在线部署，不支持Pytorch。** 并且工业界更加注重的是模型的高可用性，许多时候使用的都是成熟的模型架构，调试需求并不大。\n\n\n* 2，**研究人员最重要的是快速迭代发表文章，需要尝试一些较新的模型架构。而Pytorch在易用性上相比TensorFlow2有一些优势，更加方便调试。** 并且在2019年以来在学术界占领了大半壁江山，能够找到的相应最新研究成果更多。\n\n\n* 3，TensorFlow2和Pytorch实际上整体风格已经非常相似了，学会了其中一个，学习另外一个将比较容易。两种框架都掌握的话，能够参考的开源模型案例更多，并且可以方便地在两种框架之间切换。\n\n```python\n\n```\n\n### 二，Keras🍏 和 tf.keras 🍎\n\n先说结论：\n\n**Keras库在2.3.0版本后将不再更新，用户应该使用tf.keras。**\n\n\nKeras可以看成是一种深度学习框架的高阶接口规范，它帮助用户以更简洁的形式定义和训练深度学习网络。\n\n使用pip安装的Keras库同时在tensorflow,theano,CNTK等后端基础上进行了这种高阶接口规范的实现。\n\n而tf.keras是在TensorFlow中以TensorFlow低阶API为基础实现的这种高阶接口，它是Tensorflow的一个子模块。\n\ntf.keras绝大部分功能和兼容多种后端的Keras库用法完全一样，但并非全部，它和TensorFlow之间的结合更为紧密。\n\n随着谷歌对Keras的收购，Keras库2.3.0版本后也将不再进行更新，用户应当使用tf.keras而不是使用pip安装的Keras.\n\n### 三，本书📖面向读者 👼\n\n\n**本书假定读者有一定的机器学习和深度学习基础，使用过Keras或者Tensorflow1.0或者Pytorch搭建训练过模型。**\n\n**对于没有任何机器学习和深度学习基础的同学，建议在学习本书时同步参考学习《Python深度学习》一书。**\n\n《Python深度学习》这本书是Keras之父Francois Chollet所著，该书假定读者无任何机器学习知识，以Keras为工具，\n\n使用丰富的范例示范深度学习的最佳实践，该书通俗易懂，**全书没有一个数学公式，注重培养读者的深度学习直觉。**。\n\n该书电子版下载链接：https://pan.baidu.com/s/1-4q6VjLTb3ZxcefyNCbjSA 提取码：wtzo \n\n\n\n### 四，本书写作风格 🍉\n\n\n**本书是一本对人类用户极其友善的TensorFlow2.0入门工具书，不刻意恶心读者是本书的底限要求，Don't let me think是本书的最高追求。**\n\n本书主要是在参考TensorFlow官方文档和函数doc文档基础上整理写成的。\n\n但本书在篇章结构和范例选取上做了大量的优化。\n\n不同于官方文档混乱的篇章结构，既有教程又有指南，缺少整体的编排逻辑。\n\n本书按照内容难易程度、读者检索习惯和TensorFlow自身的层次结构设计内容，循序渐进，层次清晰，方便按照功能查找相应范例。\n\n不同于官方文档冗长的范例代码，本书在范例设计上尽可能简约化和结构化，增强范例易读性和通用性，大部分代码片段在实践中可即取即用。\n\n**如果说通过学习TensorFlow官方文档掌握TensorFlow2.0的难度大概是9的话，那么通过学习本书掌握TensorFlow2.0的难度应该大概是3.**\n\n谨以下图对比一下TensorFlow官方教程与本教程的差异。\n\n![](./data/30天吃掉那个TF2.0.jpg)\n\n\n\n### 五，本书学习方案 ⏰\n\n**1，学习计划**\n\n本书是作者利用工作之余和疫情放假期间大概2个月写成的，大部分读者应该在30天可以完全学会。\n\n预计每天花费的学习时间在30分钟到2个小时之间。\n\n当然，本书也非常适合作为TensorFlow的工具手册在工程落地时作为范例库参考。\n\n**点击学习内容蓝色标题即可进入该章节。**\n\n\n|日期 | 学习内容                                                       | 内容难度   | 预计学习时间 | 更新状态|\n|----:|:--------------------------------------------------------------|-----------:|----------:|-----:|\n|&nbsp;|[**一、TensorFlow的建模流程**](./一、TensorFlow的建模流程.md)    |⭐️   |   0hour   |✅    |\n|day1 |  [1-1,结构化数据建模流程范例](./1-1,结构化数据建模流程范例.md)    | ⭐️⭐️⭐️ |   1hour    |✅    |\n|day2 |[1-2,图片数据建模流程范例](./1-2,图片数据建模流程范例.md)    | ⭐️⭐️⭐️⭐️  |   2hour    |✅    |\n|day3 |  [1-3,文本数据建模流程范例](./1-3,文本数据建模流程范例.md)   | ⭐️⭐️⭐️⭐️⭐️  |   2hour    |✅    |\n|day4 |  [1-4,时间序列数据建模流程范例](./1-4,时间序列数据建模流程范例.md)   | ⭐️⭐️⭐️⭐️⭐️  |   2hour    |✅    |\n|&nbsp;    |[**二、TensorFlow的核心概念**](./二、TensorFlow的核心概念.md)  | ⭐️  |  0hour |✅  |\n|day5 |  [2-1,张量数据结构](./2-1,张量数据结构.md)  | ⭐️⭐️⭐️⭐️   |   1hour    |✅    |\n|day6 |  [2-2,三种计算图](./2-2,三种计算图.md)  | ⭐️⭐️⭐️⭐️⭐️   |   2hour    |✅    |\n|day7 |  [2-3,自动微分机制](./2-3,自动微分机制.md)  | ⭐️⭐️⭐️   |   1hour    |✅    |\n|&nbsp; |[**三、TensorFlow的层次结构**](./三、TensorFlow的层次结构.md) |   ⭐️  |  0hour   |✅  |\n|day8 |  [3-1,低阶API示范](./3-1,低阶API示范.md)   | ⭐️⭐️   |   0.5hour    |✅   |\n|day9 |  [3-2,中阶API示范](./3-2,中阶API示范.md)   | ⭐️⭐️⭐️   |   0.5hour    |✅  |\n|day10 |  [3-3,高阶API示范](./3-3,高阶API示范.md)  | ⭐️⭐️⭐️   |   0.5hour    |✅  |\n|&nbsp; |[**四、TensorFlow的低阶API**](./四、TensorFlow的低阶API.md) |⭐️    | 0hour|✅  |\n|day11|  [4-1,张量的结构操作](./4-1,张量的结构操作.md)  | ⭐️⭐️⭐️⭐️⭐️   |   2hour    |✅   |\n|day12|  [4-2,张量的数学运算](./4-2,张量的数学运算.md)   | ⭐️⭐️⭐️⭐️   |   1hour    |✅  |\n|day13|  [4-3,AutoGraph的使用规范](./4-3,AutoGraph的使用规范.md)| ⭐️⭐️⭐️   |   0.5hour    |✅  |\n|day14|  [4-4,AutoGraph的机制原理](./4-4,AutoGraph的机制原理.md)    | ⭐️⭐️⭐️⭐️⭐️   |   2hour    |✅  |\n|day15|  [4-5,AutoGraph和tf.Module](./4-5,AutoGraph和tf.Module.md)  | ⭐️⭐️⭐️⭐️   |   1hour    |✅  |\n|&nbsp; |[**五、TensorFlow的中阶API**](./五、TensorFlow的中阶API.md) |  ⭐️  | 0hour|✅ |\n|day16|  [5-1,数据管道Dataset](./5-1,数据管道Dataset.md)   | ⭐️⭐️⭐️⭐️⭐️   |   2hour    |✅  |\n|day17|  [5-2,特征列feature_column](./5-2,特征列feature_column.md)   | ⭐️⭐️⭐️⭐️   |   1hour    |✅  |\n|day18|  [5-3,激活函数activation](./5-3,激活函数activation.md)    | ⭐️⭐️⭐️   |   0.5hour    |✅   |\n|day19|  [5-4,模型层layers](./5-4,模型层layers.md)  | ⭐️⭐️⭐️   |   1hour    |✅  |\n|day20|  [5-5,损失函数losses](./5-5,损失函数losses.md)    | ⭐️⭐️⭐️   |   1hour    |✅  |\n|day21|  [5-6,评估指标metrics](./5-6,评估指标metrics.md)    | ⭐️⭐️⭐️   |   1hour    |✅   |\n|day22|  [5-7,优化器optimizers](./5-7,优化器optimizers.md)    | ⭐️⭐️⭐️   |   0.5hour    |✅   |\n|day23|  [5-8,回调函数callbacks](./5-8,回调函数callbacks.md)   | ⭐️⭐️⭐️⭐️   |   1hour    |✅   |\n|&nbsp; |[**六、TensorFlow的高阶API**](./六、TensorFlow的高阶API.md)|    ⭐️ | 0hour|✅  |\n|day24|  [6-1,构建模型的3种方法](./6-1,构建模型的3种方法.md)   | ⭐️⭐️⭐️   |   1hour    |✅ |\n|day25|  [6-2,训练模型的3种方法](./6-2,训练模型的3种方法.md)  | ⭐️⭐️⭐️⭐️   |   1hour    |✅   |\n|day26|  [6-3,使用单GPU训练模型](./6-3,使用单GPU训练模型.md)    | ⭐️⭐️   |   0.5hour    |✅   |\n|day27|  [6-4,使用多GPU训练模型](./6-4,使用多GPU训练模型.md)    | ⭐️⭐️   |   0.5hour    |✅  |\n|day28|  [6-5,使用TPU训练模型](./6-5,使用TPU训练模型.md)   | ⭐️⭐️   |   0.5hour    |✅  |\n|day29| [6-6,使用tensorflow-serving部署模型](./6-6,使用tensorflow-serving部署模型.md) | ⭐️⭐️⭐️⭐️| 1hour |✅   |\n|day30| [6-7,使用spark-scala调用tensorflow模型](./6-7,使用spark-scala调用tensorflow模型.md) | ⭐️⭐️⭐️⭐️⭐️|2hour|✅  |\n\n\n```python\n\n```\n\n**2，学习环境**\n\n\n本书全部源码在jupyter中编写测试通过，建议通过git克隆到本地，并在jupyter中交互式运行学习。\n\n为了直接能够在jupyter中打开markdown文件，建议安装jupytext，将markdown转换成ipnb。\n\n此外，也可以关注公众号”**Python与算法之美**“ ，后台回复关键字：**tf**，获取本书ipynb源码的下载链接。\n\n```python\n#克隆本书源码到本地\n#!git clone https://github.com/lyhue1991/eat_tensorflow2_in_30_days\n\n#建议在jupyter notebook 上安装jupytext，以便能够将本书各章节markdown文件视作ipynb文件运行\n#!pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -U jupytext\n    \n#建议在jupyter notebook 上安装最新版本tensorflow 测试本书中的代码\n#!pip install -i https://pypi.tuna.tsinghua.edu.cn/simple  -U tensorflow\n```\n\n```python\nimport tensorflow as tf\n\n#注：本书全部代码在tensorflow 2.1版本测试通过\ntf.print(\"tensorflow version:\",tf.__version__)\n\na = tf.constant(\"hello\")\nb = tf.constant(\"tensorflow2\")\nc = tf.strings.join([a,b],\" \")\ntf.print(c)\n```\n\n```\ntensorflow version: 2.1.0\nhello tensorflow2\n```\n\n\n### 六，鼓励和联系作者 🎈🎈\n\n**如果本书对你有所帮助，想鼓励一下作者，记得给本项目加一颗星星star⭐️，并分享给你的朋友们喔😊!** \n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"**Python与算法之美**\"下留言。作者时间和精力有限，会酌情予以回复。\n\n如果有想要获取本书的jupyter notebook源代码的小伙伴，也可以关注公众号，在后台回复关键字：**tf**，获取本书全部代码和数据集下载链接。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n```python\n\n```\n# 一、TensorFlow的建模流程\n\n\n尽管TensorFlow设计上足够灵活，可以用于进行各种复杂的数值计算。\n\n但通常人们使用TensorFlow来实现机器学习模型，尤其常用于实现神经网络模型。\n\n从原理上说可以使用张量构建计算图来定义神经网络，并通过自动微分机制训练模型。\n\n但为简洁起见，一般推荐使用TensorFlow的高层次keras接口来实现神经网络网模型。\n\n\n使用TensorFlow实现神经网络模型的一般流程包括：\n\n1，准备数据\n\n2，定义模型\n\n3，训练模型\n\n4，评估模型\n\n5，使用模型\n\n6，保存模型。\n\n\n**对新手来说，其中最困难的部分实际上是准备数据过程。** \n\n我们在实践中通常会遇到的数据类型包括结构化数据，图片数据，文本数据，时间序列数据。\n\n我们将分别以titanic生存预测问题，cifar2图片分类问题，imdb电影评论分类问题，国内新冠疫情结束时间预测问题为例，演示应用tensorflow对这四类数据的建模方法。\n\n\n\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![](./data/Python与算法之美logo.jpg)\n# 1-1,结构化数据建模流程范例\n\n\n### 一，准备数据\n\n\ntitanic数据集的目标是根据乘客信息预测他们在Titanic号撞击冰山沉没后能否生存。\n\n结构化数据一般会使用Pandas中的DataFrame进行预处理。\n\n\n```python\nimport numpy as np \nimport pandas as pd \nimport matplotlib.pyplot as plt\nimport tensorflow as tf \nfrom tensorflow.keras import models,layers\n\ndftrain_raw = pd.read_csv('./data/titanic/train.csv')\ndftest_raw = pd.read_csv('./data/titanic/test.csv')\ndftrain_raw.head(10)\n```\n\n![](./data/1-1-数据集展示.jpg)\n\n\n字段说明：\n\n* Survived:0代表死亡，1代表存活【y标签】\n* Pclass:乘客所持票类，有三种值(1,2,3) 【转换成onehot编码】\n* Name:乘客姓名 【舍去】\n* Sex:乘客性别 【转换成bool特征】\n* Age:乘客年龄(有缺失) 【数值特征，添加“年龄是否缺失”作为辅助特征】\n* SibSp:乘客兄弟姐妹/配偶的个数(整数值) 【数值特征】\n* Parch:乘客父母/孩子的个数(整数值)【数值特征】\n* Ticket:票号(字符串)【舍去】\n* Fare:乘客所持票的价格(浮点数，0-500不等) 【数值特征】\n* Cabin:乘客所在船舱(有缺失) 【添加“所在船舱是否缺失”作为辅助特征】\n* Embarked:乘客登船港口:S、C、Q(有缺失)【转换成onehot编码，四维度 S,C,Q,nan】\n\n\n\n利用Pandas的数据可视化功能我们可以简单地进行探索性数据分析EDA（Exploratory Data Analysis）。\n\nlabel分布情况\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'png'\nax = dftrain_raw['Survived'].value_counts().plot(kind = 'bar',\n     figsize = (12,8),fontsize=15,rot = 0)\nax.set_ylabel('Counts',fontsize = 15)\nax.set_xlabel('Survived',fontsize = 15)\nplt.show()\n```\n\n![](./data/1-1-Label分布.jpg)\n\n\n年龄分布情况\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'png'\nax = dftrain_raw['Age'].plot(kind = 'hist',bins = 20,color= 'purple',\n                    figsize = (12,8),fontsize=15)\n\nax.set_ylabel('Frequency',fontsize = 15)\nax.set_xlabel('Age',fontsize = 15)\nplt.show()\n```\n\n![](./data/1-1-年龄分布.jpg)\n\n\n年龄和label的相关性\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'png'\nax = dftrain_raw.query('Survived == 0')['Age'].plot(kind = 'density',\n                      figsize = (12,8),fontsize=15)\ndftrain_raw.query('Survived == 1')['Age'].plot(kind = 'density',\n                      figsize = (12,8),fontsize=15)\nax.legend(['Survived==0','Survived==1'],fontsize = 12)\nax.set_ylabel('Density',fontsize = 15)\nax.set_xlabel('Age',fontsize = 15)\nplt.show()\n```\n\n![](./data/1-1-年龄相关性.jpg)\n\n\n下面为正式的数据预处理\n\n```python\ndef preprocessing(dfdata):\n\n    dfresult= pd.DataFrame()\n\n    #Pclass\n    dfPclass = pd.get_dummies(dfdata['Pclass'])\n    dfPclass.columns = ['Pclass_' +str(x) for x in dfPclass.columns ]\n    dfresult = pd.concat([dfresult,dfPclass],axis = 1)\n\n    #Sex\n    dfSex = pd.get_dummies(dfdata['Sex'])\n    dfresult = pd.concat([dfresult,dfSex],axis = 1)\n\n    #Age\n    dfresult['Age'] = dfdata['Age'].fillna(0)\n    dfresult['Age_null'] = pd.isna(dfdata['Age']).astype('int32')\n\n    #SibSp,Parch,Fare\n    dfresult['SibSp'] = dfdata['SibSp']\n    dfresult['Parch'] = dfdata['Parch']\n    dfresult['Fare'] = dfdata['Fare']\n\n    #Carbin\n    dfresult['Cabin_null'] =  pd.isna(dfdata['Cabin']).astype('int32')\n\n    #Embarked\n    dfEmbarked = pd.get_dummies(dfdata['Embarked'],dummy_na=True)\n    dfEmbarked.columns = ['Embarked_' + str(x) for x in dfEmbarked.columns]\n    dfresult = pd.concat([dfresult,dfEmbarked],axis = 1)\n\n    return(dfresult)\n\nx_train = preprocessing(dftrain_raw)\ny_train = dftrain_raw['Survived'].values\n\nx_test = preprocessing(dftest_raw)\ny_test = dftest_raw['Survived'].values\n\nprint(\"x_train.shape =\", x_train.shape )\nprint(\"x_test.shape =\", x_test.shape )\n\n```\n\n```\nx_train.shape = (712, 15)\nx_test.shape = (179, 15)\n```\n\n```python\n\n```\n\n### 二，定义模型\n\n\n使用Keras接口有以下3种方式构建模型：使用Sequential按层顺序构建模型，使用函数式API构建任意结构模型，继承Model基类构建自定义模型。\n\n此处选择使用最简单的Sequential，按层顺序模型。\n\n```python\ntf.keras.backend.clear_session()\n\nmodel = models.Sequential()\nmodel.add(layers.Dense(20,activation = 'relu',input_shape=(15,)))\nmodel.add(layers.Dense(10,activation = 'relu' ))\nmodel.add(layers.Dense(1,activation = 'sigmoid' ))\n\nmodel.summary()\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ndense (Dense)                (None, 20)                320       \n_________________________________________________________________\ndense_1 (Dense)              (None, 10)                210       \n_________________________________________________________________\ndense_2 (Dense)              (None, 1)                 11        \n=================================================================\nTotal params: 541\nTrainable params: 541\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n\n### 三，训练模型\n\n\n训练模型通常有3种方法，内置fit方法，内置train_on_batch方法，以及自定义训练循环。此处我们选择最常用也最简单的内置fit方法。\n\n```python\n# 二分类问题选择二元交叉熵损失函数\nmodel.compile(optimizer='adam',\n            loss='binary_crossentropy',\n            metrics=['AUC'])\n\nhistory = model.fit(x_train,y_train,\n                    batch_size= 64,\n                    epochs= 30,\n                    validation_split=0.2 #分割一部分训练数据用于验证\n                   )\n```\n\n```\nTrain on 569 samples, validate on 143 samples\nEpoch 1/30\n569/569 [==============================] - 1s 2ms/sample - loss: 3.5841 - AUC: 0.4079 - val_loss: 3.4429 - val_AUC: 0.4129\nEpoch 2/30\n569/569 [==============================] - 0s 102us/sample - loss: 2.6093 - AUC: 0.3967 - val_loss: 2.4886 - val_AUC: 0.4139\nEpoch 3/30\n569/569 [==============================] - 0s 68us/sample - loss: 1.8375 - AUC: 0.4003 - val_loss: 1.7383 - val_AUC: 0.4223\nEpoch 4/30\n569/569 [==============================] - 0s 83us/sample - loss: 1.2545 - AUC: 0.4390 - val_loss: 1.1936 - val_AUC: 0.4765\nEpoch 5/30\n569/569 [==============================] - ETA: 0s - loss: 1.4435 - AUC: 0.375 - 0s 90us/sample - loss: 0.9141 - AUC: 0.5192 - val_loss: 0.8274 - val_AUC: 0.5584\nEpoch 6/30\n569/569 [==============================] - 0s 110us/sample - loss: 0.7052 - AUC: 0.6290 - val_loss: 0.6596 - val_AUC: 0.6880\nEpoch 7/30\n569/569 [==============================] - 0s 90us/sample - loss: 0.6410 - AUC: 0.7086 - val_loss: 0.6519 - val_AUC: 0.6845\nEpoch 8/30\n569/569 [==============================] - 0s 93us/sample - loss: 0.6246 - AUC: 0.7080 - val_loss: 0.6480 - val_AUC: 0.6846\nEpoch 9/30\n569/569 [==============================] - 0s 73us/sample - loss: 0.6088 - AUC: 0.7113 - val_loss: 0.6497 - val_AUC: 0.6838\nEpoch 10/30\n569/569 [==============================] - 0s 79us/sample - loss: 0.6051 - AUC: 0.7117 - val_loss: 0.6454 - val_AUC: 0.6873\nEpoch 11/30\n569/569 [==============================] - 0s 96us/sample - loss: 0.5972 - AUC: 0.7218 - val_loss: 0.6369 - val_AUC: 0.6888\nEpoch 12/30\n569/569 [==============================] - 0s 92us/sample - loss: 0.5918 - AUC: 0.7294 - val_loss: 0.6330 - val_AUC: 0.6908\nEpoch 13/30\n569/569 [==============================] - 0s 75us/sample - loss: 0.5864 - AUC: 0.7363 - val_loss: 0.6281 - val_AUC: 0.6948\nEpoch 14/30\n569/569 [==============================] - 0s 104us/sample - loss: 0.5832 - AUC: 0.7426 - val_loss: 0.6240 - val_AUC: 0.7030\nEpoch 15/30\n569/569 [==============================] - 0s 74us/sample - loss: 0.5777 - AUC: 0.7507 - val_loss: 0.6200 - val_AUC: 0.7066\nEpoch 16/30\n569/569 [==============================] - 0s 79us/sample - loss: 0.5726 - AUC: 0.7569 - val_loss: 0.6155 - val_AUC: 0.7132\nEpoch 17/30\n569/569 [==============================] - 0s 99us/sample - loss: 0.5674 - AUC: 0.7643 - val_loss: 0.6070 - val_AUC: 0.7255\nEpoch 18/30\n569/569 [==============================] - 0s 97us/sample - loss: 0.5631 - AUC: 0.7721 - val_loss: 0.6061 - val_AUC: 0.7305\nEpoch 19/30\n569/569 [==============================] - 0s 73us/sample - loss: 0.5580 - AUC: 0.7792 - val_loss: 0.6027 - val_AUC: 0.7332\nEpoch 20/30\n569/569 [==============================] - 0s 85us/sample - loss: 0.5533 - AUC: 0.7861 - val_loss: 0.5997 - val_AUC: 0.7366\nEpoch 21/30\n569/569 [==============================] - 0s 87us/sample - loss: 0.5497 - AUC: 0.7926 - val_loss: 0.5961 - val_AUC: 0.7433\nEpoch 22/30\n569/569 [==============================] - 0s 101us/sample - loss: 0.5454 - AUC: 0.7987 - val_loss: 0.5943 - val_AUC: 0.7438\nEpoch 23/30\n569/569 [==============================] - 0s 100us/sample - loss: 0.5398 - AUC: 0.8057 - val_loss: 0.5926 - val_AUC: 0.7492\nEpoch 24/30\n569/569 [==============================] - 0s 79us/sample - loss: 0.5328 - AUC: 0.8122 - val_loss: 0.5912 - val_AUC: 0.7493\nEpoch 25/30\n569/569 [==============================] - 0s 86us/sample - loss: 0.5283 - AUC: 0.8147 - val_loss: 0.5902 - val_AUC: 0.7509\nEpoch 26/30\n569/569 [==============================] - 0s 67us/sample - loss: 0.5246 - AUC: 0.8196 - val_loss: 0.5845 - val_AUC: 0.7552\nEpoch 27/30\n569/569 [==============================] - 0s 72us/sample - loss: 0.5205 - AUC: 0.8271 - val_loss: 0.5837 - val_AUC: 0.7584\nEpoch 28/30\n569/569 [==============================] - 0s 74us/sample - loss: 0.5144 - AUC: 0.8302 - val_loss: 0.5848 - val_AUC: 0.7561\nEpoch 29/30\n569/569 [==============================] - 0s 77us/sample - loss: 0.5099 - AUC: 0.8326 - val_loss: 0.5809 - val_AUC: 0.7583\nEpoch 30/30\n569/569 [==============================] - 0s 80us/sample - loss: 0.5071 - AUC: 0.8349 - val_loss: 0.5816 - val_AUC: 0.7605\n\n```\n\n\n### 四，评估模型\n\n\n我们首先评估一下模型在训练集和验证集上的效果。\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nimport matplotlib.pyplot as plt\n\ndef plot_metric(history, metric):\n    train_metrics = history.history[metric]\n    val_metrics = history.history['val_'+metric]\n    epochs = range(1, len(train_metrics) + 1)\n    plt.plot(epochs, train_metrics, 'bo--')\n    plt.plot(epochs, val_metrics, 'ro-')\n    plt.title('Training and validation '+ metric)\n    plt.xlabel(\"Epochs\")\n    plt.ylabel(metric)\n    plt.legend([\"train_\"+metric, 'val_'+metric])\n    plt.show()\n```\n\n```python\nplot_metric(history,\"loss\")\n```\n\n![](./data/1-1-Loss曲线.jpg)\n\n```python\nplot_metric(history,\"AUC\")\n```\n\n![](./data/1-1-AUC曲线.jpg)\n\n\n我们再看一下模型在测试集上的效果.\n\n```python\nmodel.evaluate(x = x_test,y = y_test)\n```\n\n```\n[0.5191367897907448, 0.8122605]\n```\n\n```python\n\n```\n\n### 五，使用模型\n\n```python\n#预测概率\nmodel.predict(x_test[0:10])\n#model(tf.constant(x_test[0:10].values,dtype = tf.float32)) #等价写法\n```\n\n```\narray([[0.26501188],\n       [0.40970832],\n       [0.44285864],\n       [0.78408605],\n       [0.47650957],\n       [0.43849158],\n       [0.27426785],\n       [0.5962582 ],\n       [0.59476686],\n       [0.17882936]], dtype=float32)\n```\n\n```python\n#预测类别\nmodel.predict_classes(x_test[0:10])\n```\n\n```\narray([[0],\n       [0],\n       [0],\n       [1],\n       [0],\n       [0],\n       [0],\n       [1],\n       [1],\n       [0]], dtype=int32)\n```\n\n```python\n\n```\n\n### 六，保存模型\n\n\n可以使用Keras方式保存模型，也可以使用TensorFlow原生方式保存。前者仅仅适合使用Python环境恢复模型，后者则可以跨平台进行模型部署。\n\n推荐使用后一种方式进行保存。\n\n\n**1，Keras方式保存**\n\n```python\n# 保存模型结构及权重\n\nmodel.save('./data/keras_model.h5')  \n\ndel model  #删除现有模型\n\n# identical to the previous one\nmodel = models.load_model('./data/keras_model.h5')\nmodel.evaluate(x_test,y_test)\n```\n\n```\n[0.5191367897907448, 0.8122605]\n```\n\n```python\n# 保存模型结构\njson_str = model.to_json()\n\n# 恢复模型结构\nmodel_json = models.model_from_json(json_str)\n```\n\n```python\n#保存模型权重\nmodel.save_weights('./data/keras_model_weight.h5')\n\n# 恢复模型结构\nmodel_json = models.model_from_json(json_str)\nmodel_json.compile(\n        optimizer='adam',\n        loss='binary_crossentropy',\n        metrics=['AUC']\n    )\n\n# 加载权重\nmodel_json.load_weights('./data/keras_model_weight.h5')\nmodel_json.evaluate(x_test,y_test)\n```\n\n```\n[0.5191367897907448, 0.8122605]\n```\n\n\n**2，TensorFlow原生方式保存**\n\n```python\n# 保存权重，该方式仅仅保存权重张量\nmodel.save_weights('./data/tf_model_weights.ckpt',save_format = \"tf\")\n```\n\n```python\n# 保存模型结构与模型参数到文件,该方式保存的模型具有跨平台性便于部署\n\nmodel.save('./data/tf_model_savedmodel', save_format=\"tf\")\nprint('export saved model.')\n\nmodel_loaded = tf.keras.models.load_model('./data/tf_model_savedmodel')\nmodel_loaded.evaluate(x_test,y_test)\n```\n\n```\n[0.5191365896656527, 0.8122605]\n```\n\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n```python\n\n```\n# 1-2,图片数据建模流程范例\n\n\n### 一，准备数据\n\n\ncifar2数据集为cifar10数据集的子集，只包括前两种类别airplane和automobile。\n\n训练集有airplane和automobile图片各5000张，测试集有airplane和automobile图片各1000张。\n\ncifar2任务的目标是训练一个模型来对飞机airplane和机动车automobile两种图片进行分类。\n\n我们准备的Cifar2数据集的文件结构如下所示。\n\n![](./data/cifar2.jpg)\n\n```python\n\n```\n\n在tensorflow中准备图片数据的常用方案有两种，第一种是使用tf.keras中的ImageDataGenerator工具构建图片数据生成器。\n\n第二种是使用tf.data.Dataset搭配tf.image中的一些图片处理方法构建数据管道。\n\n第一种方法更为简单，其使用范例可以参考以下文章。\n\nhttps://zhuanlan.zhihu.com/p/67466552\n\n第二种方法是TensorFlow的原生方法，更加灵活，使用得当的话也可以获得更好的性能。\n\n我们此处介绍第二种方法。\n\n\n```python\nimport tensorflow as tf \nfrom tensorflow.keras import datasets,layers,models\n\nBATCH_SIZE = 100\n\ndef load_image(img_path,size = (32,32)):\n    label = tf.constant(1,tf.int8) if tf.strings.regex_full_match(img_path,\".*/automobile/.*\") \\\n            else tf.constant(0,tf.int8)\n    img = tf.io.read_file(img_path)\n    img = tf.image.decode_jpeg(img) #注意此处为jpeg格式\n    img = tf.image.resize(img,size)/255.0\n    return(img,label)\n\n```\n\n```python\n#使用并行化预处理num_parallel_calls 和预存数据prefetch来提升性能\nds_train = tf.data.Dataset.list_files(\"./data/cifar2/train/*/*.jpg\") \\\n           .map(load_image, num_parallel_calls=tf.data.experimental.AUTOTUNE) \\\n           .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n           .prefetch(tf.data.experimental.AUTOTUNE)  \n\nds_test = tf.data.Dataset.list_files(\"./data/cifar2/test/*/*.jpg\") \\\n           .map(load_image, num_parallel_calls=tf.data.experimental.AUTOTUNE) \\\n           .batch(BATCH_SIZE) \\\n           .prefetch(tf.data.experimental.AUTOTUNE)  \n\n```\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\n#查看部分样本\nfrom matplotlib import pyplot as plt \n\nplt.figure(figsize=(8,8)) \nfor i,(img,label) in enumerate(ds_train.unbatch().take(9)):\n    ax=plt.subplot(3,3,i+1)\n    ax.imshow(img.numpy())\n    ax.set_title(\"label = %d\"%label)\n    ax.set_xticks([])\n    ax.set_yticks([]) \nplt.show()\n\n```\n\n![](./data/1-2-图片预览.jpg)\n\n```python\nfor x,y in ds_train.take(1):\n    print(x.shape,y.shape)\n```\n\n```\n(100, 32, 32, 3) (100,)\n```\n\n```python\n\n```\n\n### 二，定义模型\n\n\n使用Keras接口有以下3种方式构建模型：使用Sequential按层顺序构建模型，使用函数式API构建任意结构模型，继承Model基类构建自定义模型。\n\n此处选择使用函数式API构建模型。\n\n```python\ntf.keras.backend.clear_session() #清空会话\n\ninputs = layers.Input(shape=(32,32,3))\nx = layers.Conv2D(32,kernel_size=(3,3))(inputs)\nx = layers.MaxPool2D()(x)\nx = layers.Conv2D(64,kernel_size=(5,5))(x)\nx = layers.MaxPool2D()(x)\nx = layers.Dropout(rate=0.1)(x)\nx = layers.Flatten()(x)\nx = layers.Dense(32,activation='relu')(x)\noutputs = layers.Dense(1,activation = 'sigmoid')(x)\n\nmodel = models.Model(inputs = inputs,outputs = outputs)\n\nmodel.summary()\n```\n\n```\nModel: \"model\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ninput_1 (InputLayer)         [(None, 32, 32, 3)]       0         \n_________________________________________________________________\nconv2d (Conv2D)              (None, 30, 30, 32)        896       \n_________________________________________________________________\nmax_pooling2d (MaxPooling2D) (None, 15, 15, 32)        0         \n_________________________________________________________________\nconv2d_1 (Conv2D)            (None, 11, 11, 64)        51264     \n_________________________________________________________________\nmax_pooling2d_1 (MaxPooling2 (None, 5, 5, 64)          0         \n_________________________________________________________________\ndropout (Dropout)            (None, 5, 5, 64)          0         \n_________________________________________________________________\nflatten (Flatten)            (None, 1600)              0         \n_________________________________________________________________\ndense (Dense)                (None, 32)                51232     \n_________________________________________________________________\ndense_1 (Dense)              (None, 1)                 33        \n=================================================================\nTotal params: 103,425\nTrainable params: 103,425\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\n\n```\n\n### 三，训练模型\n\n\n训练模型通常有3种方法，内置fit方法，内置train_on_batch方法，以及自定义训练循环。此处我们选择最常用也最简单的内置fit方法。\n\n```python\nimport datetime\n\nlogdir = \"./data/keras_model/\" + datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\ntensorboard_callback = tf.keras.callbacks.TensorBoard(logdir, histogram_freq=1)\n\nmodel.compile(\n        optimizer=tf.keras.optimizers.Adam(learning_rate=0.001),\n        loss=tf.keras.losses.binary_crossentropy,\n        metrics=[\"accuracy\"]\n    )\n\nhistory = model.fit(ds_train,epochs= 10,validation_data=ds_test,\n                    callbacks = [tensorboard_callback],workers = 4)\n\n```\n\n```\nTrain for 100 steps, validate for 20 steps\nEpoch 1/10\n100/100 [==============================] - 16s 156ms/step - loss: 0.4830 - accuracy: 0.7697 - val_loss: 0.3396 - val_accuracy: 0.8475\nEpoch 2/10\n100/100 [==============================] - 14s 142ms/step - loss: 0.3437 - accuracy: 0.8469 - val_loss: 0.2997 - val_accuracy: 0.8680\nEpoch 3/10\n100/100 [==============================] - 13s 131ms/step - loss: 0.2871 - accuracy: 0.8777 - val_loss: 0.2390 - val_accuracy: 0.9015\nEpoch 4/10\n100/100 [==============================] - 12s 117ms/step - loss: 0.2410 - accuracy: 0.9040 - val_loss: 0.2005 - val_accuracy: 0.9195\nEpoch 5/10\n100/100 [==============================] - 13s 130ms/step - loss: 0.1992 - accuracy: 0.9213 - val_loss: 0.1949 - val_accuracy: 0.9180\nEpoch 6/10\n100/100 [==============================] - 14s 136ms/step - loss: 0.1737 - accuracy: 0.9323 - val_loss: 0.1723 - val_accuracy: 0.9275\nEpoch 7/10\n100/100 [==============================] - 14s 139ms/step - loss: 0.1531 - accuracy: 0.9412 - val_loss: 0.1670 - val_accuracy: 0.9310\nEpoch 8/10\n100/100 [==============================] - 13s 134ms/step - loss: 0.1299 - accuracy: 0.9525 - val_loss: 0.1553 - val_accuracy: 0.9340\nEpoch 9/10\n100/100 [==============================] - 14s 137ms/step - loss: 0.1158 - accuracy: 0.9556 - val_loss: 0.1581 - val_accuracy: 0.9340\nEpoch 10/10\n100/100 [==============================] - 14s 142ms/step - loss: 0.1006 - accuracy: 0.9617 - val_loss: 0.1614 - val_accuracy: 0.9345\n```\n\n```python\n\n```\n\n### 四，评估模型\n\n```python\n#%load_ext tensorboard\n#%tensorboard --logdir ./data/keras_model\n```\n\n```python\nfrom tensorboard import notebook\nnotebook.list() \n```\n\n```python\n#在tensorboard中查看模型\nnotebook.start(\"--logdir ./data/keras_model\")\n```\n\n```python\n\n```\n\n![](./data/1-2-tensorboard.jpg)\n\n```python\nimport pandas as pd \ndfhistory = pd.DataFrame(history.history)\ndfhistory.index = range(1,len(dfhistory) + 1)\ndfhistory.index.name = 'epoch'\n\ndfhistory\n```\n\n![](./data/1-2-dfhistory.jpg)\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nimport matplotlib.pyplot as plt\n\ndef plot_metric(history, metric):\n    train_metrics = history.history[metric]\n    val_metrics = history.history['val_'+metric]\n    epochs = range(1, len(train_metrics) + 1)\n    plt.plot(epochs, train_metrics, 'bo--')\n    plt.plot(epochs, val_metrics, 'ro-')\n    plt.title('Training and validation '+ metric)\n    plt.xlabel(\"Epochs\")\n    plt.ylabel(metric)\n    plt.legend([\"train_\"+metric, 'val_'+metric])\n    plt.show()\n```\n\n```python\nplot_metric(history,\"loss\")\n```\n\n![](./data/1-2-Loss曲线.jpg)\n\n```python\nplot_metric(history,\"accuracy\")\n```\n\n![](./data/1-2-Accuracy曲线.jpg)\n\n```python\n#可以使用evaluate对数据进行评估\nval_loss,val_accuracy = model.evaluate(ds_test,workers=4)\nprint(val_loss,val_accuracy)\n\n```\n\n```\n0.16139143370091916 0.9345\n```\n\n\n### 五，使用模型\n\n\n可以使用model.predict(ds_test)进行预测。\n\n也可以使用model.predict_on_batch(x_test)对一个批量进行预测。\n\n```python\nmodel.predict(ds_test)\n```\n\n```\narray([[9.9996173e-01],\n       [9.5104784e-01],\n       [2.8648047e-04],\n       ...,\n       [1.1484033e-03],\n       [3.5589080e-02],\n       [9.8537153e-01]], dtype=float32)\n```\n\n```python\nfor x,y in ds_test.take(1):\n    print(model.predict_on_batch(x[0:20]))\n```\n\n```\ntf.Tensor(\n[[3.8065155e-05]\n [8.8236779e-01]\n [9.1433197e-01]\n [9.9921846e-01]\n [6.4052093e-01]\n [4.9970779e-03]\n [2.6735585e-04]\n [9.9842811e-01]\n [7.9198682e-01]\n [7.4823302e-01]\n [8.7208226e-03]\n [9.3951421e-03]\n [9.9790359e-01]\n [9.9998581e-01]\n [2.1642199e-05]\n [1.7915063e-02]\n [2.5839690e-02]\n [9.7538447e-01]\n [9.7393811e-01]\n [9.7333014e-01]], shape=(20, 1), dtype=float32)\n```\n\n\n\n\n```python\n\n```\n\n### 六，保存模型\n\n\n推荐使用TensorFlow原生方式保存模型。\n\n```python\n# 保存权重，该方式仅仅保存权重张量\nmodel.save_weights('./data/tf_model_weights.ckpt',save_format = \"tf\")\n```\n\n```python\n# 保存模型结构与模型参数到文件,该方式保存的模型具有跨平台性便于部署\n\nmodel.save('./data/tf_model_savedmodel', save_format=\"tf\")\nprint('export saved model.')\n\nmodel_loaded = tf.keras.models.load_model('./data/tf_model_savedmodel')\nmodel_loaded.evaluate(ds_test)\n```\n\n```\n[0.16139124035835267, 0.9345]\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n# 1-3,文本数据建模流程范例\n\n\n### 一，准备数据\n\n\nimdb数据集的目标是根据电影评论的文本内容预测评论的情感标签。\n\n训练集有20000条电影评论文本，测试集有5000条电影评论文本，其中正面评论和负面评论都各占一半。\n\n文本数据预处理较为繁琐，包括中文切词（本示例不涉及），构建词典，编码转换，序列填充，构建数据管道等等。\n\n\n\n在tensorflow中完成文本数据预处理的常用方案有两种，第一种是利用tf.keras.preprocessing中的Tokenizer词典构建工具和tf.keras.utils.Sequence构建文本数据生成器管道。\n\n第二种是使用tf.data.Dataset搭配.keras.layers.experimental.preprocessing.TextVectorization预处理层。\n\n第一种方法较为复杂，其使用范例可以参考以下文章。\n\nhttps://zhuanlan.zhihu.com/p/67697840\n\n第二种方法为TensorFlow原生方式，相对也更加简单一些。\n\n我们此处介绍第二种方法。\n\n\n![](./data/电影评论.jpg)\n\n```python\nimport numpy as np \nimport pandas as pd \nfrom matplotlib import pyplot as plt\nimport tensorflow as tf\nfrom tensorflow.keras import models,layers,preprocessing,optimizers,losses,metrics\nfrom tensorflow.keras.layers.experimental.preprocessing import TextVectorization\nimport re,string\n\ntrain_data_path = \"./data/imdb/train.csv\"\ntest_data_path =  \"./data/imdb/test.csv\"\n\nMAX_WORDS = 10000  # 仅考虑最高频的10000个词\nMAX_LEN = 200  # 每个样本保留200个词的长度\nBATCH_SIZE = 20 \n\n\n#构建管道\ndef split_line(line):\n    arr = tf.strings.split(line,\"\\t\")\n    label = tf.expand_dims(tf.cast(tf.strings.to_number(arr[0]),tf.int32),axis = 0)\n    text = tf.expand_dims(arr[1],axis = 0)\n    return (text,label)\n\nds_train_raw =  tf.data.TextLineDataset(filenames = [train_data_path]) \\\n   .map(split_line,num_parallel_calls = tf.data.experimental.AUTOTUNE) \\\n   .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n   .prefetch(tf.data.experimental.AUTOTUNE)\n\nds_test_raw = tf.data.TextLineDataset(filenames = [test_data_path]) \\\n   .map(split_line,num_parallel_calls = tf.data.experimental.AUTOTUNE) \\\n   .batch(BATCH_SIZE) \\\n   .prefetch(tf.data.experimental.AUTOTUNE)\n\n\n#构建词典\ndef clean_text(text):\n    lowercase = tf.strings.lower(text)\n    stripped_html = tf.strings.regex_replace(lowercase, '<br />', ' ')\n    cleaned_punctuation = tf.strings.regex_replace(stripped_html,\n         '[%s]' % re.escape(string.punctuation),'')\n    return cleaned_punctuation\n\nvectorize_layer = TextVectorization(\n    standardize=clean_text,\n    split = 'whitespace',\n    max_tokens=MAX_WORDS-1, #有一个留给占位符\n    output_mode='int',\n    output_sequence_length=MAX_LEN)\n\nds_text = ds_train_raw.map(lambda text,label: text)\nvectorize_layer.adapt(ds_text)\nprint(vectorize_layer.get_vocabulary()[0:100])\n\n\n#单词编码\nds_train = ds_train_raw.map(lambda text,label:(vectorize_layer(text),label)) \\\n    .prefetch(tf.data.experimental.AUTOTUNE)\nds_test = ds_test_raw.map(lambda text,label:(vectorize_layer(text),label)) \\\n    .prefetch(tf.data.experimental.AUTOTUNE)\n\n```\n\n```\n[b'the', b'and', b'a', b'of', b'to', b'is', b'in', b'it', b'i', b'this', b'that', b'was', b'as', b'for', b'with', b'movie', b'but', b'film', b'on', b'not', b'you', b'his', b'are', b'have', b'be', b'he', b'one', b'its', b'at', b'all', b'by', b'an', b'they', b'from', b'who', b'so', b'like', b'her', b'just', b'or', b'about', b'has', b'if', b'out', b'some', b'there', b'what', b'good', b'more', b'when', b'very', b'she', b'even', b'my', b'no', b'would', b'up', b'time', b'only', b'which', b'story', b'really', b'their', b'were', b'had', b'see', b'can', b'me', b'than', b'we', b'much', b'well', b'get', b'been', b'will', b'into', b'people', b'also', b'other', b'do', b'bad', b'because', b'great', b'first', b'how', b'him', b'most', b'dont', b'made', b'then', b'them', b'films', b'movies', b'way', b'make', b'could', b'too', b'any', b'after', b'characters']\n```\n\n```python\n\n```\n\n### 二，定义模型\n\n\n使用Keras接口有以下3种方式构建模型：使用Sequential按层顺序构建模型，使用函数式API构建任意结构模型，继承Model基类构建自定义模型。\n\n此处选择使用继承Model基类构建自定义模型。\n\n```python\n# 演示自定义模型范例，实际上应该优先使用Sequential或者函数式API\n\ntf.keras.backend.clear_session()\n\nclass CnnModel(models.Model):\n    def __init__(self):\n        super(CnnModel, self).__init__()\n        \n    def build(self,input_shape):\n        self.embedding = layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN)\n        self.conv_1 = layers.Conv1D(16, kernel_size= 5,name = \"conv_1\",activation = \"relu\")\n        self.pool = layers.MaxPool1D()\n        self.conv_2 = layers.Conv1D(128, kernel_size=2,name = \"conv_2\",activation = \"relu\")\n        self.flatten = layers.Flatten()\n        self.dense = layers.Dense(1,activation = \"sigmoid\")\n        super(CnnModel,self).build(input_shape)\n    \n    def call(self, x):\n        x = self.embedding(x)\n        x = self.conv_1(x)\n        x = self.pool(x)\n        x = self.conv_2(x)\n        x = self.pool(x)\n        x = self.flatten(x)\n        x = self.dense(x)\n        return(x)\n    \nmodel = CnnModel()\nmodel.build(input_shape =(None,MAX_LEN))\nmodel.summary()\n\n```\n\n```python\n\n```\n\n```\nModel: \"cnn_model\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nembedding (Embedding)        multiple                  70000     \n_________________________________________________________________\nconv_1 (Conv1D)              multiple                  576       \n_________________________________________________________________\nmax_pooling1d (MaxPooling1D) multiple                  0         \n_________________________________________________________________\nconv_2 (Conv1D)              multiple                  4224      \n_________________________________________________________________\nflatten (Flatten)            multiple                  0         \n_________________________________________________________________\ndense (Dense)                multiple                  6145      \n=================================================================\nTotal params: 80,945\nTrainable params: 80,945\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\n\n```\n\n### 三，训练模型\n\n\n训练模型通常有3种方法，内置fit方法，内置train_on_batch方法，以及自定义训练循环。此处我们通过自定义训练循环训练模型。\n\n```python\n#打印时间分割线\n@tf.function\ndef printbar():\n    ts = tf.timestamp()\n    today_ts = ts%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8,end = \"\")\n    tf.print(timestring)\n```\n\n```python\noptimizer = optimizers.Nadam()\nloss_func = losses.BinaryCrossentropy()\n\ntrain_loss = metrics.Mean(name='train_loss')\ntrain_metric = metrics.BinaryAccuracy(name='train_accuracy')\n\nvalid_loss = metrics.Mean(name='valid_loss')\nvalid_metric = metrics.BinaryAccuracy(name='valid_accuracy')\n\n\n@tf.function\ndef train_step(model, features, labels):\n    with tf.GradientTape() as tape:\n        predictions = model(features,training = True)\n        loss = loss_func(labels, predictions)\n    gradients = tape.gradient(loss, model.trainable_variables)\n    optimizer.apply_gradients(zip(gradients, model.trainable_variables))\n\n    train_loss.update_state(loss)\n    train_metric.update_state(labels, predictions)\n    \n\n@tf.function\ndef valid_step(model, features, labels):\n    predictions = model(features,training = False)\n    batch_loss = loss_func(labels, predictions)\n    valid_loss.update_state(batch_loss)\n    valid_metric.update_state(labels, predictions)\n\n\ndef train_model(model,ds_train,ds_valid,epochs):\n    for epoch in tf.range(1,epochs+1):\n        \n        for features, labels in ds_train:\n            train_step(model,features,labels)\n\n        for features, labels in ds_valid:\n            valid_step(model,features,labels)\n        \n        #此处logs模板需要根据metric具体情况修改\n        logs = 'Epoch={},Loss:{},Accuracy:{},Valid Loss:{},Valid Accuracy:{}' \n        \n        if epoch%1==0:\n            printbar()\n            tf.print(tf.strings.format(logs,\n            (epoch,train_loss.result(),train_metric.result(),valid_loss.result(),valid_metric.result())))\n            tf.print(\"\")\n        \n        train_loss.reset_states()\n        valid_loss.reset_states()\n        train_metric.reset_states()\n        valid_metric.reset_states()\n\ntrain_model(model,ds_train,ds_test,epochs = 6)\n\n```\n\n```\n================================================================================13:54:08\nEpoch=1,Loss:0.442317516,Accuracy:0.7695,Valid Loss:0.323672801,Valid Accuracy:0.8614\n\n================================================================================13:54:20\nEpoch=2,Loss:0.245737702,Accuracy:0.90215,Valid Loss:0.356488883,Valid Accuracy:0.8554\n\n================================================================================13:54:32\nEpoch=3,Loss:0.17360799,Accuracy:0.93455,Valid Loss:0.361132562,Valid Accuracy:0.8674\n\n================================================================================13:54:44\nEpoch=4,Loss:0.113476314,Accuracy:0.95975,Valid Loss:0.483677238,Valid Accuracy:0.856\n\n================================================================================13:54:57\nEpoch=5,Loss:0.0698405355,Accuracy:0.9768,Valid Loss:0.607856631,Valid Accuracy:0.857\n\n================================================================================13:55:15\nEpoch=6,Loss:0.0366807655,Accuracy:0.98825,Valid Loss:0.745884955,Valid Accuracy:0.854\n```\n\n\n### 四，评估模型\n\n\n通过自定义训练循环训练的模型没有经过编译，无法直接使用model.evaluate(ds_valid)方法\n\n```python\n\ndef evaluate_model(model,ds_valid):\n    for features, labels in ds_valid:\n         valid_step(model,features,labels)\n    logs = 'Valid Loss:{},Valid Accuracy:{}' \n    tf.print(tf.strings.format(logs,(valid_loss.result(),valid_metric.result())))\n    \n    valid_loss.reset_states()\n    train_metric.reset_states()\n    valid_metric.reset_states()\n\n    \n```\n\n```python\nevaluate_model(model,ds_test)\n```\n\n```\nValid Loss:0.745884418,Valid Accuracy:0.854\n```\n\n```python\n\n```\n\n### 五，使用模型\n\n\n可以使用以下方法:\n\n* model.predict(ds_test)\n* model(x_test)\n* model.call(x_test)\n* model.predict_on_batch(x_test)\n\n推荐优先使用model.predict(ds_test)方法，既可以对Dataset，也可以对Tensor使用。\n\n```python\nmodel.predict(ds_test)\n```\n\n```\narray([[0.7864823 ],\n       [0.9999901 ],\n       [0.99944776],\n       ...,\n       [0.8498302 ],\n       [0.13382755],\n       [1.        ]], dtype=float32)\n```\n\n```python\nfor x_test,_ in ds_test.take(1):\n    print(model(x_test))\n    #以下方法等价：\n    #print(model.call(x_test))\n    #print(model.predict_on_batch(x_test))\n```\n\n```\ntf.Tensor(\n[[7.8648227e-01]\n [9.9999011e-01]\n [9.9944776e-01]\n [3.7153201e-09]\n [9.4462049e-01]\n [2.3522753e-04]\n [1.2044354e-04]\n [9.3752089e-07]\n [9.9996352e-01]\n [9.3435925e-01]\n [9.8746723e-01]\n [9.9908626e-01]\n [4.1563155e-08]\n [4.1808244e-03]\n [8.0184749e-05]\n [8.3910513e-01]\n [3.5167937e-05]\n [7.2113985e-01]\n [4.5228912e-03]\n [9.9942589e-01]], shape=(20, 1), dtype=float32)\n```\n\n```python\n\n```\n\n### 六，保存模型\n\n\n推荐使用TensorFlow原生方式保存模型。\n\n```python\nmodel.save('./data/tf_model_savedmodel', save_format=\"tf\")\nprint('export saved model.')\n\nmodel_loaded = tf.keras.models.load_model('./data/tf_model_savedmodel')\nmodel_loaded.predict(ds_test)\n```\n\n```\narray([[0.7864823 ],\n       [0.9999901 ],\n       [0.99944776],\n       ...,\n       [0.8498302 ],\n       [0.13382755],\n       [1.        ]], dtype=float32)\n```\n\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n\n\n\n\n# 1-4,时间序列数据建模流程范例\n\n\n国内的新冠肺炎疫情从发现至今已经持续3个多月了，这场起源于吃野味的灾难给大家的生活造成了诸多方面的影响。\n\n有的同学是收入上的，有的同学是感情上的，有的同学是心理上的，还有的同学是体重上的。\n\n那么国内的新冠肺炎疫情何时结束呢？什么时候我们才可以重获自由呢？\n\n本篇文章将利用TensorFlow2.0建立时间序列RNN模型，对国内的新冠肺炎疫情结束时间进行预测。\n\n\n![](./data/疫情前后对比.png)\n\n\n### 一，准备数据\n\n\n本文的数据集取自tushare，获取该数据集的方法参考了以下文章。\n\n《https://zhuanlan.zhihu.com/p/109556102》\n\n![](./data/1-4-新增人数.png)\n\n\n\n```python\nimport numpy as np\nimport pandas as pd \nimport matplotlib.pyplot as plt\nimport tensorflow as tf \nfrom tensorflow.keras import models,layers,losses,metrics,callbacks \n\n```\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\ndf = pd.read_csv(\"./data/covid-19.csv\",sep = \"\\t\")\ndf.plot(x = \"date\",y = [\"confirmed_num\",\"cured_num\",\"dead_num\"],figsize=(10,6))\nplt.xticks(rotation=60)\n\n```\n\n![](./data/1-4-累积曲线.png)\n\n```python\ndfdata = df.set_index(\"date\")\ndfdiff = dfdata.diff(periods=1).dropna()\ndfdiff = dfdiff.reset_index(\"date\")\n\ndfdiff.plot(x = \"date\",y = [\"confirmed_num\",\"cured_num\",\"dead_num\"],figsize=(10,6))\nplt.xticks(rotation=60)\ndfdiff = dfdiff.drop(\"date\",axis = 1).astype(\"float32\")\n\n```\n\n![](./data/1-4-新增曲线.png)\n\n```python\n#用某日前8天窗口数据作为输入预测该日数据\nWINDOW_SIZE = 8\n\ndef batch_dataset(dataset):\n    dataset_batched = dataset.batch(WINDOW_SIZE,drop_remainder=True)\n    return dataset_batched\n\nds_data = tf.data.Dataset.from_tensor_slices(tf.constant(dfdiff.values,dtype = tf.float32)) \\\n   .window(WINDOW_SIZE,shift=1).flat_map(batch_dataset)\n\nds_label = tf.data.Dataset.from_tensor_slices(\n    tf.constant(dfdiff.values[WINDOW_SIZE:],dtype = tf.float32))\n\n#数据较小，可以将全部训练数据放入到一个batch中，提升性能\nds_train = tf.data.Dataset.zip((ds_data,ds_label)).batch(38).cache()\n\n\n```\n\n### 二，定义模型\n\n\n使用Keras接口有以下3种方式构建模型：使用Sequential按层顺序构建模型，使用函数式API构建任意结构模型，继承Model基类构建自定义模型。\n\n此处选择使用函数式API构建任意结构模型。\n\n```python\n#考虑到新增确诊，新增治愈，新增死亡人数数据不可能小于0，设计如下结构\nclass Block(layers.Layer):\n    def __init__(self, **kwargs):\n        super(Block, self).__init__(**kwargs)\n    \n    def call(self, x_input,x):\n        x_out = tf.maximum((1+x)*x_input[:,-1,:],0.0)\n        return x_out\n    \n    def get_config(self):  \n        config = super(Block, self).get_config()\n        return config\n\n```\n\n```python\ntf.keras.backend.clear_session()\nx_input = layers.Input(shape = (None,3),dtype = tf.float32)\nx = layers.LSTM(3,return_sequences = True,input_shape=(None,3))(x_input)\nx = layers.LSTM(3,return_sequences = True,input_shape=(None,3))(x)\nx = layers.LSTM(3,return_sequences = True,input_shape=(None,3))(x)\nx = layers.LSTM(3,input_shape=(None,3))(x)\nx = layers.Dense(3)(x)\n\n#考虑到新增确诊，新增治愈，新增死亡人数数据不可能小于0，设计如下结构\n#x = tf.maximum((1+x)*x_input[:,-1,:],0.0)\nx = Block()(x_input,x)\nmodel = models.Model(inputs = [x_input],outputs = [x])\nmodel.summary()\n\n```\n\n```python\n\n```\n\n```\nModel: \"model\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ninput_1 (InputLayer)         [(None, None, 3)]         0         \n_________________________________________________________________\nlstm (LSTM)                  (None, None, 3)           84        \n_________________________________________________________________\nlstm_1 (LSTM)                (None, None, 3)           84        \n_________________________________________________________________\nlstm_2 (LSTM)                (None, None, 3)           84        \n_________________________________________________________________\nlstm_3 (LSTM)                (None, 3)                 84        \n_________________________________________________________________\ndense (Dense)                (None, 3)                 12        \n_________________________________________________________________\nblock (Block)                (None, 3)                 0         \n=================================================================\nTotal params: 348\nTrainable params: 348\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n\n### 三，训练模型\n\n\n训练模型通常有3种方法，内置fit方法，内置train_on_batch方法，以及自定义训练循环。此处我们选择最常用也最简单的内置fit方法。\n\n注：循环神经网络调试较为困难，需要设置多个不同的学习率多次尝试，以取得较好的效果。\n\n```python\n#自定义损失函数，考虑平方差和预测目标的比值\nclass MSPE(losses.Loss):\n    def call(self,y_true,y_pred):\n        err_percent = (y_true - y_pred)**2/(tf.maximum(y_true**2,1e-7))\n        mean_err_percent = tf.reduce_mean(err_percent)\n        return mean_err_percent\n    \n    def get_config(self):\n        config = super(MSPE, self).get_config()\n        return config\n\n```\n\n```python\nimport datetime\n\noptimizer = tf.keras.optimizers.Adam(learning_rate=0.01)\nmodel.compile(optimizer=optimizer,loss=MSPE(name = \"MSPE\"))\n\nlogdir = \"./data/keras_model/\" + datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\n\ntb_callback = tf.keras.callbacks.TensorBoard(logdir, histogram_freq=1)\n#如果loss在100个epoch后没有提升，学习率减半。\nlr_callback = tf.keras.callbacks.ReduceLROnPlateau(monitor=\"loss\",factor = 0.5, patience = 100)\n#当loss在200个epoch后没有提升，则提前终止训练。\nstop_callback = tf.keras.callbacks.EarlyStopping(monitor = \"loss\", patience= 200)\ncallbacks_list = [tb_callback,lr_callback,stop_callback]\n\nhistory = model.fit(ds_train,epochs=500,callbacks = callbacks_list)\n\n```\n\n```\nEpoch 371/500\n1/1 [==============================] - 0s 61ms/step - loss: 0.1184\nEpoch 372/500\n1/1 [==============================] - 0s 64ms/step - loss: 0.1177\nEpoch 373/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.1169\nEpoch 374/500\n1/1 [==============================] - 0s 50ms/step - loss: 0.1161\nEpoch 375/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.1154\nEpoch 376/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.1147\nEpoch 377/500\n1/1 [==============================] - 0s 62ms/step - loss: 0.1140\nEpoch 378/500\n1/1 [==============================] - 0s 93ms/step - loss: 0.1133\nEpoch 379/500\n1/1 [==============================] - 0s 85ms/step - loss: 0.1126\nEpoch 380/500\n1/1 [==============================] - 0s 68ms/step - loss: 0.1119\nEpoch 381/500\n1/1 [==============================] - 0s 52ms/step - loss: 0.1113\nEpoch 382/500\n1/1 [==============================] - 0s 54ms/step - loss: 0.1107\nEpoch 383/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.1100\nEpoch 384/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.1094\nEpoch 385/500\n1/1 [==============================] - 0s 54ms/step - loss: 0.1088\nEpoch 386/500\n1/1 [==============================] - 0s 74ms/step - loss: 0.1082\nEpoch 387/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.1077\nEpoch 388/500\n1/1 [==============================] - 0s 52ms/step - loss: 0.1071\nEpoch 389/500\n1/1 [==============================] - 0s 52ms/step - loss: 0.1066\nEpoch 390/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.1060\nEpoch 391/500\n1/1 [==============================] - 0s 61ms/step - loss: 0.1055\nEpoch 392/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.1050\nEpoch 393/500\n1/1 [==============================] - 0s 59ms/step - loss: 0.1045\nEpoch 394/500\n1/1 [==============================] - 0s 65ms/step - loss: 0.1040\nEpoch 395/500\n1/1 [==============================] - 0s 58ms/step - loss: 0.1035\nEpoch 396/500\n1/1 [==============================] - 0s 52ms/step - loss: 0.1031\nEpoch 397/500\n1/1 [==============================] - 0s 58ms/step - loss: 0.1026\nEpoch 398/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.1022\nEpoch 399/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.1017\nEpoch 400/500\n1/1 [==============================] - 0s 63ms/step - loss: 0.1013\nEpoch 401/500\n1/1 [==============================] - 0s 59ms/step - loss: 0.1009\nEpoch 402/500\n1/1 [==============================] - 0s 53ms/step - loss: 0.1005\nEpoch 403/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.1001\nEpoch 404/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0997\nEpoch 405/500\n1/1 [==============================] - 0s 58ms/step - loss: 0.0993\nEpoch 406/500\n1/1 [==============================] - 0s 53ms/step - loss: 0.0990\nEpoch 407/500\n1/1 [==============================] - 0s 59ms/step - loss: 0.0986\nEpoch 408/500\n1/1 [==============================] - 0s 63ms/step - loss: 0.0982\nEpoch 409/500\n1/1 [==============================] - 0s 67ms/step - loss: 0.0979\nEpoch 410/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0976\nEpoch 411/500\n1/1 [==============================] - 0s 54ms/step - loss: 0.0972\nEpoch 412/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0969\nEpoch 413/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0966\nEpoch 414/500\n1/1 [==============================] - 0s 59ms/step - loss: 0.0963\nEpoch 415/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0960\nEpoch 416/500\n1/1 [==============================] - 0s 62ms/step - loss: 0.0957\nEpoch 417/500\n1/1 [==============================] - 0s 69ms/step - loss: 0.0954\nEpoch 418/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0951\nEpoch 419/500\n1/1 [==============================] - 0s 50ms/step - loss: 0.0948\nEpoch 420/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0946\nEpoch 421/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0943\nEpoch 422/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0941\nEpoch 423/500\n1/1 [==============================] - 0s 62ms/step - loss: 0.0938\nEpoch 424/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0936\nEpoch 425/500\n1/1 [==============================] - 0s 100ms/step - loss: 0.0933\nEpoch 426/500\n1/1 [==============================] - 0s 68ms/step - loss: 0.0931\nEpoch 427/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0929\nEpoch 428/500\n1/1 [==============================] - 0s 50ms/step - loss: 0.0926\nEpoch 429/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0924\nEpoch 430/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0922\nEpoch 431/500\n1/1 [==============================] - 0s 75ms/step - loss: 0.0920\nEpoch 432/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0918\nEpoch 433/500\n1/1 [==============================] - 0s 77ms/step - loss: 0.0916\nEpoch 434/500\n1/1 [==============================] - 0s 50ms/step - loss: 0.0914\nEpoch 435/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0912\nEpoch 436/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0911\nEpoch 437/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0909\nEpoch 438/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0907\nEpoch 439/500\n1/1 [==============================] - 0s 59ms/step - loss: 0.0905\nEpoch 440/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0904\nEpoch 441/500\n1/1 [==============================] - 0s 68ms/step - loss: 0.0902\nEpoch 442/500\n1/1 [==============================] - 0s 73ms/step - loss: 0.0901\nEpoch 443/500\n1/1 [==============================] - 0s 50ms/step - loss: 0.0899\nEpoch 444/500\n1/1 [==============================] - 0s 58ms/step - loss: 0.0898\nEpoch 445/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0896\nEpoch 446/500\n1/1 [==============================] - 0s 52ms/step - loss: 0.0895\nEpoch 447/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0893\nEpoch 448/500\n1/1 [==============================] - 0s 64ms/step - loss: 0.0892\nEpoch 449/500\n1/1 [==============================] - 0s 70ms/step - loss: 0.0891\nEpoch 450/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0889\nEpoch 451/500\n1/1 [==============================] - 0s 53ms/step - loss: 0.0888\nEpoch 452/500\n1/1 [==============================] - 0s 51ms/step - loss: 0.0887\nEpoch 453/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0886\nEpoch 454/500\n1/1 [==============================] - 0s 58ms/step - loss: 0.0885\nEpoch 455/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0883\nEpoch 456/500\n1/1 [==============================] - 0s 71ms/step - loss: 0.0882\nEpoch 457/500\n1/1 [==============================] - 0s 50ms/step - loss: 0.0881\nEpoch 458/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0880\nEpoch 459/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0879\nEpoch 460/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0878\nEpoch 461/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0878\nEpoch 462/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0879\nEpoch 463/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0879\nEpoch 464/500\n1/1 [==============================] - 0s 68ms/step - loss: 0.0888\nEpoch 465/500\n1/1 [==============================] - 0s 62ms/step - loss: 0.0875\nEpoch 466/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0873\nEpoch 467/500\n1/1 [==============================] - 0s 49ms/step - loss: 0.0872\nEpoch 468/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0872\nEpoch 469/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0871\nEpoch 470/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0871\nEpoch 471/500\n1/1 [==============================] - 0s 59ms/step - loss: 0.0870\nEpoch 472/500\n1/1 [==============================] - 0s 68ms/step - loss: 0.0871\nEpoch 473/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0869\nEpoch 474/500\n1/1 [==============================] - 0s 61ms/step - loss: 0.0870\nEpoch 475/500\n1/1 [==============================] - 0s 47ms/step - loss: 0.0868\nEpoch 476/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0868\nEpoch 477/500\n1/1 [==============================] - 0s 62ms/step - loss: 0.0866\nEpoch 478/500\n1/1 [==============================] - 0s 58ms/step - loss: 0.0867\nEpoch 479/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0865\nEpoch 480/500\n1/1 [==============================] - 0s 65ms/step - loss: 0.0866\nEpoch 481/500\n1/1 [==============================] - 0s 58ms/step - loss: 0.0864\nEpoch 482/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0865\nEpoch 483/500\n1/1 [==============================] - 0s 53ms/step - loss: 0.0863\nEpoch 484/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0864\nEpoch 485/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0862\nEpoch 486/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0863\nEpoch 487/500\n1/1 [==============================] - 0s 52ms/step - loss: 0.0861\nEpoch 488/500\n1/1 [==============================] - 0s 68ms/step - loss: 0.0862\nEpoch 489/500\n1/1 [==============================] - 0s 62ms/step - loss: 0.0860\nEpoch 490/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0861\nEpoch 491/500\n1/1 [==============================] - 0s 51ms/step - loss: 0.0859\nEpoch 492/500\n1/1 [==============================] - 0s 54ms/step - loss: 0.0860\nEpoch 493/500\n1/1 [==============================] - 0s 51ms/step - loss: 0.0859\nEpoch 494/500\n1/1 [==============================] - 0s 54ms/step - loss: 0.0860\nEpoch 495/500\n1/1 [==============================] - 0s 50ms/step - loss: 0.0858\nEpoch 496/500\n1/1 [==============================] - 0s 69ms/step - loss: 0.0859\nEpoch 497/500\n1/1 [==============================] - 0s 63ms/step - loss: 0.0857\nEpoch 498/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0858\nEpoch 499/500\n1/1 [==============================] - 0s 54ms/step - loss: 0.0857\nEpoch 500/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0858\n```\n\n```python\n\n```\n\n### 四，评估模型\n\n\n评估模型一般要设置验证集或者测试集，由于此例数据较少，我们仅仅可视化损失函数在训练集上的迭代情况。\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nimport matplotlib.pyplot as plt\n\ndef plot_metric(history, metric):\n    train_metrics = history.history[metric]\n    epochs = range(1, len(train_metrics) + 1)\n    plt.plot(epochs, train_metrics, 'bo--')\n    plt.title('Training '+ metric)\n    plt.xlabel(\"Epochs\")\n    plt.ylabel(metric)\n    plt.legend([\"train_\"+metric])\n    plt.show()\n\n```\n\n```python\nplot_metric(history,\"loss\")\n```\n\n![](./data/1-4-损失函数曲线.png)\n\n\n### 五，使用模型\n\n\n此处我们使用模型预测疫情结束时间，即 新增确诊病例为0 的时间。\n\n```python\n#使用dfresult记录现有数据以及此后预测的疫情数据\ndfresult = dfdiff[[\"confirmed_num\",\"cured_num\",\"dead_num\"]].copy()\ndfresult.tail()\n```\n\n![](./data/1-4-日期3月10.png)\n\n```python\n#预测此后100天的新增走势,将其结果添加到dfresult中\nfor i in range(100):\n    arr_predict = model.predict(tf.constant(tf.expand_dims(dfresult.values[-38:,:],axis = 0)))\n\n    dfpredict = pd.DataFrame(tf.cast(tf.floor(arr_predict),tf.float32).numpy(),\n                columns = dfresult.columns)\n    dfresult = dfresult.append(dfpredict,ignore_index=True)\n```\n\n```python\ndfresult.query(\"confirmed_num==0\").head()\n\n# 第55天开始新增确诊降为0，第45天对应3月10日，也就是10天后，即预计3月20日新增确诊降为0\n# 注：该预测偏乐观\n```\n\n![](./data/1-4-预测确诊.png)\n\n```python\n\n```\n\n```python\ndfresult.query(\"cured_num==0\").head()\n\n# 第164天开始新增治愈降为0，第45天对应3月10日，也就是大概4个月后，即7月10日左右全部治愈。\n# 注: 该预测偏悲观，并且存在问题，如果将每天新增治愈人数加起来，将超过累计确诊人数。\n```\n\n![](./data/1-4-预测治愈.png)\n\n```python\n\n```\n\n```python\ndfresult.query(\"dead_num==0\").head()\n\n# 第60天开始，新增死亡降为0，第45天对应3月10日，也就是大概15天后，即20200325\n# 该预测较为合理\n```\n\n![](./data/1-4-预测死亡.png)\n\n```python\n\n```\n\n### 六，保存模型\n\n\n推荐使用TensorFlow原生方式保存模型。\n\n```python\nmodel.save('./data/tf_model_savedmodel', save_format=\"tf\")\nprint('export saved model.')\n```\n\n```python\nmodel_loaded = tf.keras.models.load_model('./data/tf_model_savedmodel',compile=False)\noptimizer = tf.keras.optimizers.Adam(learning_rate=0.001)\nmodel_loaded.compile(optimizer=optimizer,loss=MSPE(name = \"MSPE\"))\nmodel_loaded.predict(ds_train)\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n\n\n# 二、TensorFlow的核心概念\n\nTensorFlow™ 是一个采用 **数据流图**（data flow graphs），用于数值计算的开源软件库。节点（Nodes）在图中表示数学操作，图中的线（edges）则表示在节点间相互联系的多维数据数组，即张量（tensor）。它灵活的架构让你可以**在多种平台上展开计算**，例如台式计算机中的一个或多个CPU（或GPU），服务器，移动设备等等。TensorFlow 最初由Google大脑小组（隶属于Google机器智能研究机构）的研究员和工程师们开发出来，**用于机器学习和深度神经网络**方面的研究，但这个系统的通用性使其也可**广泛用于其他计算领域**。 \n\n\nTensorFlow的主要优点：\n\n* 灵活性：支持底层数值计算，C++自定义操作符\n\n* 可移植性：从服务器到PC到手机，从CPU到GPU到TPU\n\n* 分布式计算：分布式并行计算，可指定操作符对应计算设备\n\n\n俗话说，万丈高楼平地起，TensorFlow这座大厦也有它的地基。\n\nTensorflow底层最核心的概念是张量，计算图以及自动微分。\n\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![](./data/Python与算法之美logo.jpg)\n\n\n\n# 2-1,张量数据结构\n\n程序 = 数据结构+算法。\n\nTensorFlow程序 = 张量数据结构 + 计算图算法语言\n\n张量和计算图是 TensorFlow的核心概念。\n\nTensorflow的基本数据结构是张量Tensor。张量即多维数组。Tensorflow的张量和numpy中的array很类似。\n\n从行为特性来看，有两种类型的张量，常量constant和变量Variable.\n\n常量的值在计算图中不可以被重新赋值，变量可以在计算图中用assign等算子重新赋值。\n\n\n### 一，常量张量\n\n\n张量的数据类型和numpy.array基本一一对应。\n\n```python\nimport numpy as np\nimport tensorflow as tf\n\ni = tf.constant(1) # tf.int32 类型常量\nl = tf.constant(1,dtype = tf.int64) # tf.int64 类型常量\nf = tf.constant(1.23) #tf.float32 类型常量\nd = tf.constant(3.14,dtype = tf.double) # tf.double 类型常量\ns = tf.constant(\"hello world\") # tf.string类型常量\nb = tf.constant(True) #tf.bool类型常量\n\n\nprint(tf.int64 == np.int64) \nprint(tf.bool == np.bool)\nprint(tf.double == np.float64)\nprint(tf.string == np.unicode) # tf.string类型和np.unicode类型不等价\n\n```\n\n```\nTrue\nTrue\nTrue\nFalse\n```\n\n\n不同类型的数据可以用不同维度(rank)的张量来表示。\n\n标量为0维张量，向量为1维张量，矩阵为2维张量。\n\n彩色图像有rgb三个通道，可以表示为3维张量。\n\n视频还有时间维，可以表示为4维张量。\n\n可以简单地总结为：有几层中括号，就是多少维的张量。\n\n```python\nscalar = tf.constant(True)  #标量，0维张量\n\nprint(tf.rank(scalar))\nprint(scalar.numpy().ndim)  # tf.rank的作用和numpy的ndim方法相同\n```\n\n```\ntf.Tensor(0, shape=(), dtype=int32)\n0\n```\n\n```python\nvector = tf.constant([1.0,2.0,3.0,4.0]) #向量，1维张量\n\nprint(tf.rank(vector))\nprint(np.ndim(vector.numpy()))\n```\n\n```\ntf.Tensor(1, shape=(), dtype=int32)\n1\n```\n\n```python\nmatrix = tf.constant([[1.0,2.0],[3.0,4.0]]) #矩阵, 2维张量\n\nprint(tf.rank(matrix).numpy())\nprint(np.ndim(matrix))\n```\n\n```\n2\n2\n```\n\n```python\ntensor3 = tf.constant([[[1.0,2.0],[3.0,4.0]],[[5.0,6.0],[7.0,8.0]]])  # 3维张量\nprint(tensor3)\nprint(tf.rank(tensor3))\n```\n\n```\ntf.Tensor(\n[[[1. 2.]\n  [3. 4.]]\n\n [[5. 6.]\n  [7. 8.]]], shape=(2, 2, 2), dtype=float32)\ntf.Tensor(3, shape=(), dtype=int32)\n```\n\n```python\ntensor4 = tf.constant([[[[1.0,1.0],[2.0,2.0]],[[3.0,3.0],[4.0,4.0]]],\n                        [[[5.0,5.0],[6.0,6.0]],[[7.0,7.0],[8.0,8.0]]]])  # 4维张量\nprint(tensor4)\nprint(tf.rank(tensor4))\n```\n\n```\ntf.Tensor(\n[[[[1. 1.]\n   [2. 2.]]\n\n  [[3. 3.]\n   [4. 4.]]]\n\n\n [[[5. 5.]\n   [6. 6.]]\n\n  [[7. 7.]\n   [8. 8.]]]], shape=(2, 2, 2, 2), dtype=float32)\ntf.Tensor(4, shape=(), dtype=int32)\n```\n\n\n可以用tf.cast改变张量的数据类型。\n\n可以用numpy方法将tensorflow中的张量转化成numpy中的张量。\n\n可以用shape方法查看张量的尺寸。\n\n```python\nh = tf.constant([123,456],dtype = tf.int32)\nf = tf.cast(h,tf.float32)\nprint(h.dtype, f.dtype)\n```\n\n```\n<dtype: 'int32'> <dtype: 'float32'>\n```\n\n```python\ny = tf.constant([[1.0,2.0],[3.0,4.0]])\nprint(y.numpy()) #转换成np.array\nprint(y.shape)\n```\n\n```\n[[1. 2.]\n [3. 4.]]\n(2, 2)\n```\n\n```python\nu = tf.constant(u\"你好 世界\")\nprint(u.numpy())  \nprint(u.numpy().decode(\"utf-8\"))\n```\n\n```\nb'\\xe4\\xbd\\xa0\\xe5\\xa5\\xbd \\xe4\\xb8\\x96\\xe7\\x95\\x8c'\n你好 世界\n```\n\n```python\n\n```\n### 二，变量张量\n\n\n模型中需要被训练的参数一般被设置成变量。\n\n```python\n# 常量值不可以改变，常量的重新赋值相当于创造新的内存空间\nc = tf.constant([1.0,2.0])\nprint(c)\nprint(id(c))\nc = c + tf.constant([1.0,1.0])\nprint(c)\nprint(id(c))\n```\n\n```\ntf.Tensor([1. 2.], shape=(2,), dtype=float32)\n5276289568\ntf.Tensor([2. 3.], shape=(2,), dtype=float32)\n5276290240\n```\n\n```python\n# 变量的值可以改变，可以通过assign, assign_add等方法给变量重新赋值\nv = tf.Variable([1.0,2.0],name = \"v\")\nprint(v)\nprint(id(v))\nv.assign_add([1.0,1.0])\nprint(v)\nprint(id(v))\n```\n```\n<tf.Variable 'v:0' shape=(2,) dtype=float32, numpy=array([1., 2.], dtype=float32)>\n5276259888\n<tf.Variable 'v:0' shape=(2,) dtype=float32, numpy=array([2., 3.], dtype=float32)>\n5276259888\n\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n\n\n# 2-2,三种计算图\n\n\n有三种计算图的构建方式：静态计算图，动态计算图，以及Autograph.\n\n在TensorFlow1.0时代，采用的是静态计算图，需要先使用TensorFlow的各种算子创建计算图，然后再开启一个会话Session，显式执行计算图。\n\n而在TensorFlow2.0时代，采用的是动态计算图，即每使用一个算子后，该算子会被动态加入到隐含的默认计算图中立即执行得到结果，而无需开启Session。\n\n使用动态计算图即Eager Excution的好处是方便调试程序，它会让TensorFlow代码的表现和Python原生代码的表现一样，写起来就像写numpy一样，各种日志打印，控制流全部都是可以使用的。\n\n使用动态计算图的缺点是运行效率相对会低一些。因为使用动态图会有许多次Python进程和TensorFlow的C++进程之间的通信。而静态计算图构建完成之后几乎全部在TensorFlow内核上使用C++代码执行，效率更高。此外静态图会对计算步骤进行一定的优化，剪去和结果无关的计算步骤。\n\n如果需要在TensorFlow2.0中使用静态图，可以使用@tf.function装饰器将普通Python函数转换成对应的TensorFlow计算图构建代码。运行该函数就相当于在TensorFlow1.0中用Session执行代码。使用tf.function构建静态图的方式叫做 Autograph.\n\n\n### 一，计算图简介\n\n\n计算图由节点(nodes)和线(edges)组成。\n\n节点表示操作符Operator，或者称之为算子，线表示计算间的依赖。\n\n实线表示有数据传递依赖，传递的数据即张量。\n\n虚线通常可以表示控制依赖，即执行先后顺序。\n\n![](./data/strjoin_graph.png)\n\n\n### 二，静态计算图\n\n\n在TensorFlow1.0中，使用静态计算图分两步，第一步定义计算图，第二步在会话中执行计算图。\n\n\n**TensorFlow 1.0静态计算图范例**\n\n```python\nimport tensorflow as tf\n\n#定义计算图\ng = tf.Graph()\nwith g.as_default():\n    #placeholder为占位符，执行会话时候指定填充对象\n    x = tf.placeholder(name='x', shape=[], dtype=tf.string)  \n    y = tf.placeholder(name='y', shape=[], dtype=tf.string)\n    z = tf.string_join([x,y],name = 'join',separator=' ')\n\n#执行计算图\nwith tf.Session(graph = g) as sess:\n    print(sess.run(fetches = z,feed_dict = {x:\"hello\",y:\"world\"}))\n   \n```\n\n\n**TensorFlow2.0 怀旧版静态计算图**\n\nTensorFlow2.0为了确保对老版本tensorflow项目的兼容性，在tf.compat.v1子模块中保留了对TensorFlow1.0那种静态计算图构建风格的支持。\n\n可称之为怀旧版静态计算图，已经不推荐使用了。\n\n```python\nimport tensorflow as tf\n\ng = tf.compat.v1.Graph()\nwith g.as_default():\n    x = tf.compat.v1.placeholder(name='x', shape=[], dtype=tf.string)\n    y = tf.compat.v1.placeholder(name='y', shape=[], dtype=tf.string)\n    z = tf.strings.join([x,y],name = \"join\",separator = \" \")\n\nwith tf.compat.v1.Session(graph = g) as sess:\n    # fetches的结果非常像一个函数的返回值，而feed_dict中的占位符相当于函数的参数序列。\n    result = sess.run(fetches = z,feed_dict = {x:\"hello\",y:\"world\"})\n    print(result)\n\n```\n\n```\nb'hello world'\n```\n\n\n### 三，动态计算图\n\n\n在TensorFlow2.0中，使用的是动态计算图和Autograph.\n\n在TensorFlow1.0中，使用静态计算图分两步，第一步定义计算图，第二步在会话中执行计算图。\n\n动态计算图已经不区分计算图的定义和执行了，而是定义后立即执行。因此称之为 Eager Excution.\n\nEager这个英文单词的原意是\"迫不及待的\"，也就是立即执行的意思。\n\n\n```python\n# 动态计算图在每个算子处都进行构建，构建后立即执行\n\nx = tf.constant(\"hello\")\ny = tf.constant(\"world\")\nz = tf.strings.join([x,y],separator=\" \")\n\ntf.print(z)\n```\n\n```\nhello world\n```\n\n```python\n# 可以将动态计算图代码的输入和输出关系封装成函数\n\ndef strjoin(x,y):\n    z =  tf.strings.join([x,y],separator = \" \")\n    tf.print(z)\n    return z\n\nresult = strjoin(tf.constant(\"hello\"),tf.constant(\"world\"))\nprint(result)\n```\n\n```\nhello world\ntf.Tensor(b'hello world', shape=(), dtype=string)\n```\n\n\n### 四，TensorFlow2.0的Autograph\n\n\n动态计算图运行效率相对较低。\n\n可以用@tf.function装饰器将普通Python函数转换成和TensorFlow1.0对应的静态计算图构建代码。\n\n在TensorFlow1.0中，使用计算图分两步，第一步定义计算图，第二步在会话中执行计算图。\n\n在TensorFlow2.0中，如果采用Autograph的方式使用计算图，第一步定义计算图变成了定义函数，第二步执行计算图变成了调用函数。\n\n不需要使用会话了，一些都像原始的Python语法一样自然。\n\n实践中，我们一般会先用动态计算图调试代码，然后在需要提高性能的的地方利用@tf.function切换成Autograph获得更高的效率。\n\n当然，@tf.function的使用需要遵循一定的规范，我们后面章节将重点介绍。\n\n\n```python\nimport tensorflow as tf\n\n# 使用autograph构建静态图\n\n@tf.function\ndef strjoin(x,y):\n    z =  tf.strings.join([x,y],separator = \" \")\n    tf.print(z)\n    return z\n\nresult = strjoin(tf.constant(\"hello\"),tf.constant(\"world\"))\n\nprint(result)\n```\n\n```\nhello world\ntf.Tensor(b'hello world', shape=(), dtype=string)\n```\n\n```python\nimport datetime\n\n# 创建日志\nstamp = datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\nlogdir = './data/autograph/%s' % stamp\nwriter = tf.summary.create_file_writer(logdir)\n\n#开启autograph跟踪\ntf.summary.trace_on(graph=True, profiler=True) \n\n#执行autograph\nresult = strjoin(\"hello\",\"world\")\n\n#将计算图信息写入日志\nwith writer.as_default():\n    tf.summary.trace_export(\n        name=\"autograph\",\n        step=0,\n        profiler_outdir=logdir)\n```\n\n```python\n#启动 tensorboard在jupyter中的魔法命令\n%load_ext tensorboard\n```\n\n```python\n#启动tensorboard\n%tensorboard --logdir ./data/autograph/\n```\n\n![](./data/2-2-tensorboard计算图.jpg)\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n\n\n# 2-3,自动微分机制\n\n\n神经网络通常依赖反向传播求梯度来更新网络参数，求梯度过程通常是一件非常复杂而容易出错的事情。\n\n而深度学习框架可以帮助我们自动地完成这种求梯度运算。\n\nTensorflow一般使用梯度磁带tf.GradientTape来记录正向运算过程，然后反播磁带自动得到梯度值。\n\n这种利用tf.GradientTape求微分的方法叫做Tensorflow的自动微分机制。\n\n\n### 一，利用梯度磁带求导数\n\n```python\nimport tensorflow as tf\nimport numpy as np \n\n# f(x) = a*x**2 + b*x + c的导数\n\nx = tf.Variable(0.0,name = \"x\",dtype = tf.float32)\na = tf.constant(1.0)\nb = tf.constant(-2.0)\nc = tf.constant(1.0)\n\nwith tf.GradientTape() as tape:\n    y = a*tf.pow(x,2) + b*x + c\n    \ndy_dx = tape.gradient(y,x)\nprint(dy_dx)\n```\n\n```\ntf.Tensor(-2.0, shape=(), dtype=float32)\n```\n\n```python\n\n```\n\n```python\n# 对常量张量也可以求导，需要增加watch\n\nwith tf.GradientTape() as tape:\n    tape.watch([a,b,c])\n    y = a*tf.pow(x,2) + b*x + c\n    \ndy_dx,dy_da,dy_db,dy_dc = tape.gradient(y,[x,a,b,c])\nprint(dy_da)\nprint(dy_dc)\n\n```\n\n```\ntf.Tensor(0.0, shape=(), dtype=float32)\ntf.Tensor(1.0, shape=(), dtype=float32)\n```\n\n```python\n\n```\n\n```python\n# 可以求二阶导数\nwith tf.GradientTape() as tape2:\n    with tf.GradientTape() as tape1:   \n        y = a*tf.pow(x,2) + b*x + c\n    dy_dx = tape1.gradient(y,x)   \ndy2_dx2 = tape2.gradient(dy_dx,x)\n\nprint(dy2_dx2)\n```\n\n```\ntf.Tensor(2.0, shape=(), dtype=float32)\n```\n\n```python\n\n```\n\n```python\n# 可以在autograph中使用\n\n@tf.function\ndef f(x):   \n    a = tf.constant(1.0)\n    b = tf.constant(-2.0)\n    c = tf.constant(1.0)\n    \n    # 自变量转换成tf.float32\n    x = tf.cast(x,tf.float32)\n    with tf.GradientTape() as tape:\n        tape.watch(x)\n        y = a*tf.pow(x,2)+b*x+c\n    dy_dx = tape.gradient(y,x) \n    \n    return((dy_dx,y))\n\ntf.print(f(tf.constant(0.0)))\ntf.print(f(tf.constant(1.0)))\n```\n\n```\n(-2, 1)\n(0, 0)\n```\n\n```python\n\n```\n\n### 二，利用梯度磁带和优化器求最小值\n\n```python\n# 求f(x) = a*x**2 + b*x + c的最小值\n# 使用optimizer.apply_gradients\n\nx = tf.Variable(0.0,name = \"x\",dtype = tf.float32)\na = tf.constant(1.0)\nb = tf.constant(-2.0)\nc = tf.constant(1.0)\n\noptimizer = tf.keras.optimizers.SGD(learning_rate=0.01)\nfor _ in range(1000):\n    with tf.GradientTape() as tape:\n        y = a*tf.pow(x,2) + b*x + c\n    dy_dx = tape.gradient(y,x)\n    optimizer.apply_gradients(grads_and_vars=[(dy_dx,x)])\n    \ntf.print(\"y =\",y,\"; x =\",x)\n```\n\n```\ny = 0 ; x = 0.999998569\n```\n\n```python\n\n```\n\n```python\n# 求f(x) = a*x**2 + b*x + c的最小值\n# 使用optimizer.minimize\n# optimizer.minimize相当于先用tape求gradient,再apply_gradient\n\nx = tf.Variable(0.0,name = \"x\",dtype = tf.float32)\n\n#注意f()无参数\ndef f():   \n    a = tf.constant(1.0)\n    b = tf.constant(-2.0)\n    c = tf.constant(1.0)\n    y = a*tf.pow(x,2)+b*x+c\n    return(y)\n\noptimizer = tf.keras.optimizers.SGD(learning_rate=0.01)   \nfor _ in range(1000):\n    optimizer.minimize(f,[x])   \n    \ntf.print(\"y =\",f(),\"; x =\",x)\n```\n\n```\ny = 0 ; x = 0.999998569\n```\n\n```python\n\n```\n\n```python\n# 在autograph中完成最小值求解\n# 使用optimizer.apply_gradients\n\nx = tf.Variable(0.0,name = \"x\",dtype = tf.float32)\noptimizer = tf.keras.optimizers.SGD(learning_rate=0.01)\n\n@tf.function\ndef minimizef():\n    a = tf.constant(1.0)\n    b = tf.constant(-2.0)\n    c = tf.constant(1.0)\n    \n    for _ in tf.range(1000): #注意autograph时使用tf.range(1000)而不是range(1000)\n        with tf.GradientTape() as tape:\n            y = a*tf.pow(x,2) + b*x + c\n        dy_dx = tape.gradient(y,x)\n        optimizer.apply_gradients(grads_and_vars=[(dy_dx,x)])\n        \n    y = a*tf.pow(x,2) + b*x + c\n    return y\n\ntf.print(minimizef())\ntf.print(x)\n```\n\n```\n0\n0.999998569\n```\n\n```python\n\n```\n\n```python\n# 在autograph中完成最小值求解\n# 使用optimizer.minimize\n\nx = tf.Variable(0.0,name = \"x\",dtype = tf.float32)\noptimizer = tf.keras.optimizers.SGD(learning_rate=0.01)   \n\n@tf.function\ndef f():   \n    a = tf.constant(1.0)\n    b = tf.constant(-2.0)\n    c = tf.constant(1.0)\n    y = a*tf.pow(x,2)+b*x+c\n    return(y)\n\n@tf.function\ndef train(epoch):  \n    for _ in tf.range(epoch):  \n        optimizer.minimize(f,[x])\n    return(f())\n\n\ntf.print(train(1000))\ntf.print(x)\n\n```\n\n```\n0\n0.999998569\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n\n\n# 三、TensorFlow的层次结构\n\n\n本章我们介绍TensorFlow中5个不同的层次结构：即硬件层，内核层，低阶API，中阶API，高阶API。并以线性回归为例，直观对比展示在不同层级实现模型的特点。\n\nTensorFlow的层次结构从低到高可以分成如下五层。\n\n最底层为硬件层，TensorFlow支持CPU、GPU或TPU加入计算资源池。\n\n第二层为C++实现的内核，kernel可以跨平台分布运行。\n\n第三层为Python实现的操作符，提供了封装C++内核的低级API指令，主要包括各种张量操作算子、计算图、自动微分.\n如tf.Variable,tf.constant,tf.function,tf.GradientTape,tf.nn.softmax...\n如果把模型比作一个房子，那么第三层API就是【模型之砖】。\n\n第四层为Python实现的模型组件，对低级API进行了函数封装，主要包括各种模型层，损失函数，优化器，数据管道，特征列等等。\n如tf.keras.layers,tf.keras.losses,tf.keras.metrics,tf.keras.optimizers,tf.data.DataSet,tf.feature_column...\n如果把模型比作一个房子，那么第四层API就是【模型之墙】。\n\n第五层为Python实现的模型成品，一般为按照OOP方式封装的高级API，主要为tf.keras.models提供的模型的类接口。\n如果把模型比作一个房子，那么第五层API就是模型本身，即【模型之屋】。\n\n\n<img src=\"./data/tensorflow_structure.jpg\">\n\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![](./data/Python与算法之美logo.jpg)\n\n\n\n# 3-1,低阶API示范\n\n下面的范例使用TensorFlow的低阶API实现线性回归模型。\n\n低阶API主要包括张量操作，计算图和自动微分。\n\n```python\nimport tensorflow as tf\n\n#打印时间分割线\n@tf.function\ndef printbar():\n    ts = tf.timestamp()\n    today_ts = ts%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8,end = \"\")\n    tf.print(timestring)\n    \n```\n\n```python\n#样本数量\nn = 400\n\n# 生成测试用数据集\nX = tf.random.uniform([n,2],minval=-10,maxval=10) \nw0 = tf.constant([[2.0],[-1.0]])\nb0 = tf.constant(3.0)\nY = X@w0 + b0 + tf.random.normal([n,1],mean = 0.0,stddev= 2.0)  # @表示矩阵乘法,增加正态扰动\n\n```\n\n```python\n#使用动态图调试\n\nw = tf.Variable(tf.random.normal(w0.shape))\nb = tf.Variable(0.0)\n\ndef train(epoches):\n    for epoch in tf.range(1,epoches+1):\n        with tf.GradientTape() as tape:\n            #正向传播求损失\n            Y_hat = X@w + b\n            loss = tf.squeeze(tf.transpose(Y-Y_hat)@(Y-Y_hat))/(2.0*n)   \n\n        # 反向传播求梯度\n        dloss_dw,dloss_db = tape.gradient(loss,[w,b])\n        # 梯度下降法更新参数\n        w.assign(w - 0.001*dloss_dw)\n        b.assign(b - 0.001*dloss_db)\n        if epoch%1000 == 0:\n            printbar()\n            tf.print(\"epoch =\",epoch,\" loss =\",loss,)\n            tf.print(\"w =\",w)\n            tf.print(\"b =\",b)\n            tf.print(\"\")\n            \ntrain(5000)\n```\n\n![](./data/3-1-输出01.jpg)\n\n```python\n##使用autograph机制转换成静态图加速\n\nw = tf.Variable(tf.random.normal(w0.shape))\nb = tf.Variable(0.0)\n\n@tf.function\ndef train(epoches):\n    for epoch in tf.range(1,epoches+1):\n        with tf.GradientTape() as tape:\n            #正向传播求损失\n            Y_hat = X@w + b\n            loss = tf.squeeze(tf.transpose(Y-Y_hat)@(Y-Y_hat))/(2.0*n)   \n\n        # 反向传播求梯度\n        dloss_dw,dloss_db = tape.gradient(loss,[w,b])\n        # 梯度下降法更新参数\n        w.assign(w - 0.001*dloss_dw)\n        b.assign(b - 0.001*dloss_db)\n        if epoch%1000 == 0:\n            printbar()\n            tf.print(\"epoch =\",epoch,\" loss =\",loss,)\n            tf.print(\"w =\",w)\n            tf.print(\"b =\",b)\n            tf.print(\"\")\ntrain(5000)\n```\n\n![](./data/3-1-输出02.jpg)\n\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n\n\n# 3-2,中阶API示范\n\n下面的范例使用TensorFlow的中阶API实现线性回归模型。\n\nTensorFlow的中阶API主要包括各种模型层，损失函数，优化器，数据管道，特征列等等。\n\n```python\nimport tensorflow as tf\nfrom tensorflow.keras import layers,losses,metrics,optimizers\n\n\n#打印时间分割线\n@tf.function\ndef printbar():\n    ts = tf.timestamp()\n    today_ts = ts%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8,end = \"\")\n    tf.print(timestring)\n    \n```\n\n```python\n#样本数量\nn = 800\n\n# 生成测试用数据集\nX = tf.random.uniform([n,2],minval=-10,maxval=10) \nw0 = tf.constant([[2.0],[-1.0]])\nb0 = tf.constant(3.0)\nY = X@w0 + b0 + tf.random.normal([n,1],mean = 0.0,stddev= 2.0)  # @表示矩阵乘法,增加正态扰动\n\n#构建输入数据管道\nds = tf.data.Dataset.from_tensor_slices((X,Y)) \\\n     .shuffle(buffer_size = 1000).batch(100) \\\n     .prefetch(tf.data.experimental.AUTOTUNE)  \n\n#定义优化器\noptimizer = optimizers.SGD(learning_rate=0.001)\n\n```\n\n```python\nlinear = layers.Dense(units = 1)\nlinear.build(input_shape = (2,)) \n\n@tf.function\ndef train(epoches):\n    for epoch in tf.range(1,epoches+1):\n        L = tf.constant(0.0) #使用L记录loss值\n        for X_batch,Y_batch in ds:\n            with tf.GradientTape() as tape:\n                Y_hat = linear(X_batch)\n                loss = losses.mean_squared_error(tf.reshape(Y_hat,[-1]),tf.reshape(Y_batch,[-1]))\n            grads = tape.gradient(loss,linear.variables)\n            optimizer.apply_gradients(zip(grads,linear.variables))\n            L = loss\n        \n        if(epoch%100==0):\n            printbar()\n            tf.print(\"epoch =\",epoch,\"loss =\",L)\n            tf.print(\"w =\",linear.kernel)\n            tf.print(\"b =\",linear.bias)\n            tf.print(\"\")\n\ntrain(500)\n```\n\n![](./data/3-2-输出01.jpg)\n\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n\n\n# 3-3,高阶API示范\n\n下面的范例使用TensorFlow的高阶API实现线性回归模型。\n\nTensorFlow的高阶API主要为tf.keras.models提供的模型的类接口。\n\n\n使用Keras接口有以下3种方式构建模型：使用Sequential按层顺序构建模型，使用函数式API构建任意结构模型，继承Model基类构建自定义模型。\n\n此处分别演示使用Sequential按层顺序构建模型以及继承Model基类构建自定义模型。\n\n\n### 一，使用Sequential按层顺序构建模型【面向新手】\n\n```python\nimport tensorflow as tf\nfrom tensorflow.keras import models,layers,optimizers\n\n#样本数量\nn = 800\n\n# 生成测试用数据集\nX = tf.random.uniform([n,2],minval=-10,maxval=10) \nw0 = tf.constant([[2.0],[-1.0]])\nb0 = tf.constant(3.0)\n\nY = X@w0 + b0 + tf.random.normal([n,1],mean = 0.0,stddev= 2.0)  # @表示矩阵乘法,增加正态扰动\n```\n\n```python\ntf.keras.backend.clear_session()\n\nlinear = models.Sequential()\nlinear.add(layers.Dense(1,input_shape =(2,)))\nlinear.summary()\n```\n\n![](./data/3-3-序列结构.jpg)\n\n```python\n### 使用fit方法进行训练\n\nlinear.compile(optimizer=\"adam\",loss=\"mse\",metrics=[\"mae\"])\nlinear.fit(X,Y,batch_size = 20,epochs = 200)  \n\ntf.print(\"w = \",linear.layers[0].kernel)\ntf.print(\"b = \",linear.layers[0].bias)\n\n```\n\n![](./data/3-3-内置训练.jpg)\n\n```python\n\n```\n\n### 二，继承Model基类构建自定义模型【面向专家】\n\n```python\nimport tensorflow as tf\nfrom tensorflow.keras import models,layers,optimizers,losses,metrics\n\n\n#打印时间分割线\n@tf.function\ndef printbar():\n    ts = tf.timestamp()\n    today_ts = ts%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8,end = \"\")\n    tf.print(timestring)\n    \n```\n\n```python\n#样本数量\nn = 800\n\n# 生成测试用数据集\nX = tf.random.uniform([n,2],minval=-10,maxval=10) \nw0 = tf.constant([[2.0],[-1.0]])\nb0 = tf.constant(3.0)\n\nY = X@w0 + b0 + tf.random.normal([n,1],mean = 0.0,stddev= 2.0)  # @表示矩阵乘法,增加正态扰动\n\nds_train = tf.data.Dataset.from_tensor_slices((X[0:n*3//4,:],Y[0:n*3//4,:])) \\\n     .shuffle(buffer_size = 1000).batch(20) \\\n     .prefetch(tf.data.experimental.AUTOTUNE) \\\n     .cache()\n\nds_valid = tf.data.Dataset.from_tensor_slices((X[n*3//4:,:],Y[n*3//4:,:])) \\\n     .shuffle(buffer_size = 1000).batch(20) \\\n     .prefetch(tf.data.experimental.AUTOTUNE) \\\n     .cache()\n\n```\n\n```python\ntf.keras.backend.clear_session()\n\nclass MyModel(models.Model):\n    def __init__(self):\n        super(MyModel, self).__init__()\n        \n    def build(self,input_shape):\n        self.dense1 = layers.Dense(1)   \n        super(MyModel,self).build(input_shape)\n    \n    def call(self, x):\n        y = self.dense1(x)\n        return(y)\n\nmodel = MyModel()\nmodel.build(input_shape =(None,2))\nmodel.summary()\n\n```\n\n![](./data/3-3-模型结构.jpg)\n\n```python\n### 自定义训练循环(专家教程)\n\n\noptimizer = optimizers.Adam()\nloss_func = losses.MeanSquaredError()\n\ntrain_loss = tf.keras.metrics.Mean(name='train_loss')\ntrain_metric = tf.keras.metrics.MeanAbsoluteError(name='train_mae')\n\nvalid_loss = tf.keras.metrics.Mean(name='valid_loss')\nvalid_metric = tf.keras.metrics.MeanAbsoluteError(name='valid_mae')\n\n\n@tf.function\ndef train_step(model, features, labels):\n    with tf.GradientTape() as tape:\n        predictions = model(features)\n        loss = loss_func(labels, predictions)\n    gradients = tape.gradient(loss, model.trainable_variables)\n    optimizer.apply_gradients(zip(gradients, model.trainable_variables))\n\n    train_loss.update_state(loss)\n    train_metric.update_state(labels, predictions)\n\n@tf.function\ndef valid_step(model, features, labels):\n    predictions = model(features)\n    batch_loss = loss_func(labels, predictions)\n    valid_loss.update_state(batch_loss)\n    valid_metric.update_state(labels, predictions)\n    \n\n@tf.function\ndef train_model(model,ds_train,ds_valid,epochs):\n    for epoch in tf.range(1,epochs+1):\n        for features, labels in ds_train:\n            train_step(model,features,labels)\n\n        for features, labels in ds_valid:\n            valid_step(model,features,labels)\n\n        logs = 'Epoch={},Loss:{},MAE:{},Valid Loss:{},Valid MAE:{}'\n        \n        if  epoch%100 ==0:\n            printbar()\n            tf.print(tf.strings.format(logs,\n            (epoch,train_loss.result(),train_metric.result(),valid_loss.result(),valid_metric.result())))\n            tf.print(\"w=\",model.layers[0].kernel)\n            tf.print(\"b=\",model.layers[0].bias)\n            tf.print(\"\")\n        \n        train_loss.reset_states()\n        valid_loss.reset_states()\n        train_metric.reset_states()\n        valid_metric.reset_states()\n\ntrain_model(model,ds_train,ds_valid,400)\n\n```\n\n![](./data/3-3-自定义训练.jpg)\n\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n\n\n# 四、TensorFlow的低阶API\n\nTensorFlow的低阶API主要包括张量操作，计算图和自动微分。\n\n如果把模型比作一个房子，那么低阶API就是【模型之砖】。\n\n在低阶API层次上，可以把TensorFlow当做一个增强版的numpy来使用。\n\nTensorFlow提供的方法比numpy更全面，运算速度更快，如果需要的话，还可以使用GPU进行加速。\n\n前面几章我们对低阶API已经有了一个整体的认识，本章我们将重点详细介绍张量操作和Autograph计算图。\n\n\n张量的操作主要包括张量的结构操作和张量的数学运算。\n\n张量结构操作诸如：张量创建，索引切片，维度变换，合并分割。\n\n张量数学运算主要有：标量运算，向量运算，矩阵运算。另外我们会介绍张量运算的广播机制。\n\nAutograph计算图我们将介绍使用Autograph的规范建议，Autograph的机制原理，Autograph和tf.Module.\n\n\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![](./data/Python与算法之美logo.jpg)\n\n\n\n# 4-1,张量的结构操作\n\n张量的操作主要包括张量的结构操作和张量的数学运算。\n\n张量结构操作诸如：张量创建，索引切片，维度变换，合并分割。\n\n张量数学运算主要有：标量运算，向量运算，矩阵运算。另外我们会介绍张量运算的广播机制。\n\n本篇我们介绍张量的结构操作。\n\n\n### 一，创建张量\n\n\n张量创建的许多方法和numpy中创建array的方法很像。\n\n```python\nimport tensorflow as tf\nimport numpy as np \n```\n\n```python\na = tf.constant([1,2,3],dtype = tf.float32)\ntf.print(a)\n```\n\n```\n[1 2 3]\n```\n\n```python\nb = tf.range(1,10,delta = 2)\ntf.print(b)\n```\n\n```\n[1 3 5 7 9]\n```\n\n```python\nc = tf.linspace(0.0,2*3.14,100)\ntf.print(c)\n```\n\n```\n[0 0.0634343475 0.126868695 ... 6.15313148 6.21656609 6.28]\n```\n\n```python\nd = tf.zeros([3,3])\ntf.print(d)\n```\n\n```\n[[0 0 0]\n [0 0 0]\n [0 0 0]]\n```\n\n```python\na = tf.ones([3,3])\nb = tf.zeros_like(a,dtype= tf.float32)\ntf.print(a)\ntf.print(b)\n```\n\n```\n[[1 1 1]\n [1 1 1]\n [1 1 1]]\n[[0 0 0]\n [0 0 0]\n [0 0 0]]\n```\n\n```python\nb = tf.fill([3,2],5)\ntf.print(b)\n```\n\n```\n[[5 5]\n [5 5]\n [5 5]]\n```\n\n```python\n#均匀分布随机\ntf.random.set_seed(1.0)\na = tf.random.uniform([5],minval=0,maxval=10)\ntf.print(a)\n```\n\n```\n[1.65130854 9.01481247 6.30974197 4.34546089 2.9193902]\n```\n\n```python\n#正态分布随机\nb = tf.random.normal([3,3],mean=0.0,stddev=1.0)\ntf.print(b)\n```\n\n```\n[[0.403087884 -1.0880208 -0.0630953535]\n [1.33655667 0.711760104 -0.489286453]\n [-0.764221311 -1.03724861 -1.25193381]]\n```\n\n```python\n#正态分布随机，剔除2倍方差以外数据重新生成\nc = tf.random.truncated_normal((5,5), mean=0.0, stddev=1.0, dtype=tf.float32)\ntf.print(c)\n```\n\n```\n[[-0.457012236 -0.406867266 0.728577733 -0.892977774 -0.369404584]\n [0.323488563 1.19383323 0.888299048 1.25985599 -1.95951891]\n [-0.202244401 0.294496894 -0.468728036 1.29494202 1.48142183]\n [0.0810953453 1.63843894 0.556645 0.977199793 -1.17777884]\n [1.67368948 0.0647980496 -0.705142677 -0.281972528 0.126546144]]\n```\n\n```python\n# 特殊矩阵\nI = tf.eye(3,3) #单位矩阵\ntf.print(I)\ntf.print(\" \")\nt = tf.linalg.diag([1,2,3]) #对角阵\ntf.print(t)\n```\n\n```\n[[1 0 0]\n [0 1 0]\n [0 0 1]]\n \n[[1 0 0]\n [0 2 0]\n [0 0 3]]\n```\n\n```python\n\n```\n\n### 二 ，索引切片\n\n\n张量的索引切片方式和numpy几乎是一样的。切片时支持缺省参数和省略号。\n\n对于tf.Variable,可以通过索引和切片对部分元素进行修改。\n\n对于提取张量的连续子区域，也可以使用tf.slice.\n\n此外，对于不规则的切片提取,可以使用tf.gather,tf.gather_nd,tf.boolean_mask。\n\ntf.boolean_mask功能最为强大，它可以实现tf.gather,tf.gather_nd的功能，并且tf.boolean_mask还可以实现布尔索引。\n\n如果要通过修改张量的某些元素得到新的张量，可以使用tf.where，tf.scatter_nd。\n\n```python\ntf.random.set_seed(3)\nt = tf.random.uniform([5,5],minval=0,maxval=10,dtype=tf.int32)\ntf.print(t)\n```\n\n```\n[[4 7 4 2 9]\n [9 1 2 4 7]\n [7 2 7 4 0]\n [9 6 9 7 2]\n [3 7 0 0 3]]\n```\n\n```python\n#第0行\ntf.print(t[0])\n```\n\n```\n[4 7 4 2 9]\n```\n\n```python\n#倒数第一行\ntf.print(t[-1])\n```\n\n```\n[3 7 0 0 3]\n```\n\n```python\n#第1行第3列\ntf.print(t[1,3])\ntf.print(t[1][3])\n```\n\n```\n4\n4\n```\n\n```python\n#第1行至第3行\ntf.print(t[1:4,:])\ntf.print(tf.slice(t,[1,0],[3,5])) #tf.slice(input,begin_vector,size_vector)\n```\n\n```\n[[9 1 2 4 7]\n [7 2 7 4 0]\n [9 6 9 7 2]]\n[[9 1 2 4 7]\n [7 2 7 4 0]\n [9 6 9 7 2]]\n```\n\n```python\n#第1行至最后一行，第0列到最后一列每隔两列取一列\ntf.print(t[1:4,:4:2])\n```\n\n```\n[[9 2]\n [7 7]\n [9 9]]\n```\n\n```python\n#对变量来说，还可以使用索引和切片修改部分元素\nx = tf.Variable([[1,2],[3,4]],dtype = tf.float32)\nx[1,:].assign(tf.constant([0.0,0.0]))\ntf.print(x)\n```\n\n```\n[[1 2]\n [0 0]]\n```\n\n```python\na = tf.random.uniform([3,3,3],minval=0,maxval=10,dtype=tf.int32)\ntf.print(a)\n```\n\n```\n[[[7 3 9]\n  [9 0 7]\n  [9 6 7]]\n\n [[1 3 3]\n  [0 8 1]\n  [3 1 0]]\n\n [[4 0 6]\n  [6 2 2]\n  [7 9 5]]]\n```\n\n```python\n#省略号可以表示多个冒号\ntf.print(a[...,1])\n```\n\n```\n[[3 0 6]\n [3 8 1]\n [0 2 9]]\n```\n\n\n以上切片方式相对规则，对于不规则的切片提取,可以使用tf.gather,tf.gather_nd,tf.boolean_mask。\n\n考虑班级成绩册的例子，有4个班级，每个班级10个学生，每个学生7门科目成绩。可以用一个4*10*7的张量来表示。\n\n```python\nscores = tf.random.uniform((4,10,7),minval=0,maxval=100,dtype=tf.int32)\ntf.print(scores)\n```\n\n```\n[[[52 82 66 ... 17 86 14]\n  [8 36 94 ... 13 78 41]\n  [77 53 51 ... 22 91 56]\n  ...\n  [11 19 26 ... 89 86 68]\n  [60 72 0 ... 11 26 15]\n  [24 99 38 ... 97 44 74]]\n\n [[79 73 73 ... 35 3 81]\n  [83 36 31 ... 75 38 85]\n  [54 26 67 ... 60 68 98]\n  ...\n  [20 5 18 ... 32 45 3]\n  [72 52 81 ... 88 41 20]\n  [0 21 89 ... 53 10 90]]\n\n [[52 80 22 ... 29 25 60]\n  [78 71 54 ... 43 98 81]\n  [21 66 53 ... 97 75 77]\n  ...\n  [6 74 3 ... 53 65 43]\n  [98 36 72 ... 33 36 81]\n  [61 78 70 ... 7 59 21]]\n\n [[56 57 45 ... 23 15 3]\n  [35 8 82 ... 11 59 97]\n  [44 6 99 ... 81 60 27]\n  ...\n  [76 26 35 ... 51 8 17]\n  [33 52 53 ... 78 37 31]\n  [71 27 44 ... 0 52 16]]]\n```\n\n```python\n#抽取每个班级第0个学生，第5个学生，第9个学生的全部成绩\np = tf.gather(scores,[0,5,9],axis=1)\ntf.print(p)\n```\n\n```\n[[[52 82 66 ... 17 86 14]\n  [24 80 70 ... 72 63 96]\n  [24 99 38 ... 97 44 74]]\n\n [[79 73 73 ... 35 3 81]\n  [46 10 94 ... 23 18 92]\n  [0 21 89 ... 53 10 90]]\n\n [[52 80 22 ... 29 25 60]\n  [19 12 23 ... 87 86 25]\n  [61 78 70 ... 7 59 21]]\n\n [[56 57 45 ... 23 15 3]\n  [6 41 79 ... 97 43 13]\n  [71 27 44 ... 0 52 16]]]\n```\n\n```python\n#抽取每个班级第0个学生，第5个学生，第9个学生的第1门课程，第3门课程，第6门课程成绩\nq = tf.gather(tf.gather(scores,[0,5,9],axis=1),[1,3,6],axis=2)\ntf.print(q)\n```\n\n```\n[[[82 55 14]\n  [80 46 96]\n  [99 58 74]]\n\n [[73 48 81]\n  [10 38 92]\n  [21 86 90]]\n\n [[80 57 60]\n  [12 34 25]\n  [78 71 21]]\n\n [[57 75 3]\n  [41 47 13]\n  [27 96 16]]]\n```\n\n```python\n# 抽取第0个班级第0个学生，第2个班级的第4个学生，第3个班级的第6个学生的全部成绩\n#indices的长度为采样样本的个数，每个元素为采样位置的坐标\ns = tf.gather_nd(scores,indices = [(0,0),(2,4),(3,6)])\ns\n```\n\n```\n<tf.Tensor: shape=(3, 7), dtype=int32, numpy=\narray([[52, 82, 66, 55, 17, 86, 14],\n       [99, 94, 46, 70,  1, 63, 41],\n       [46, 83, 70, 80, 90, 85, 17]], dtype=int32)>\n```\n\n\n以上tf.gather和tf.gather_nd的功能也可以用tf.boolean_mask来实现。\n\n```python\n#抽取每个班级第0个学生，第5个学生，第9个学生的全部成绩\np = tf.boolean_mask(scores,[True,False,False,False,False,\n                            True,False,False,False,True],axis=1)\ntf.print(p)\n```\n\n```\n[[[52 82 66 ... 17 86 14]\n  [24 80 70 ... 72 63 96]\n  [24 99 38 ... 97 44 74]]\n\n [[79 73 73 ... 35 3 81]\n  [46 10 94 ... 23 18 92]\n  [0 21 89 ... 53 10 90]]\n\n [[52 80 22 ... 29 25 60]\n  [19 12 23 ... 87 86 25]\n  [61 78 70 ... 7 59 21]]\n\n [[56 57 45 ... 23 15 3]\n  [6 41 79 ... 97 43 13]\n  [71 27 44 ... 0 52 16]]]\n```\n\n```python\n#抽取第0个班级第0个学生，第2个班级的第4个学生，第3个班级的第6个学生的全部成绩\ns = tf.boolean_mask(scores,\n    [[True,False,False,False,False,False,False,False,False,False],\n     [False,False,False,False,False,False,False,False,False,False],\n     [False,False,False,False,True,False,False,False,False,False],\n     [False,False,False,False,False,False,True,False,False,False]])\ntf.print(s)\n```\n\n```\n[[52 82 66 ... 17 86 14]\n [99 94 46 ... 1 63 41]\n [46 83 70 ... 90 85 17]]\n```\n\n```python\n#利用tf.boolean_mask可以实现布尔索引\n\n#找到矩阵中小于0的元素\nc = tf.constant([[-1,1,-1],[2,2,-2],[3,-3,3]],dtype=tf.float32)\ntf.print(c,\"\\n\")\n\ntf.print(tf.boolean_mask(c,c<0),\"\\n\") \ntf.print(c[c<0]) #布尔索引，为boolean_mask的语法糖形式\n```\n\n```\n[[-1 1 -1]\n [2 2 -2]\n [3 -3 3]] \n\n[-1 -1 -2 -3] \n\n[-1 -1 -2 -3]\n```\n\n```python\n\n```\n\n以上这些方法仅能提取张量的部分元素值，但不能更改张量的部分元素值得到新的张量。\n\n如果要通过修改张量的部分元素值得到新的张量，可以使用tf.where和tf.scatter_nd。\n\ntf.where可以理解为if的张量版本，此外它还可以用于找到满足条件的所有元素的位置坐标。\n\ntf.scatter_nd的作用和tf.gather_nd有些相反，tf.gather_nd用于收集张量的给定位置的元素，\n\n而tf.scatter_nd可以将某些值插入到一个给定shape的全0的张量的指定位置处。\n\n```python\n#找到张量中小于0的元素,将其换成np.nan得到新的张量\n#tf.where和np.where作用类似，可以理解为if的张量版本\n\nc = tf.constant([[-1,1,-1],[2,2,-2],[3,-3,3]],dtype=tf.float32)\nd = tf.where(c<0,tf.fill(c.shape,np.nan),c) \nd\n```\n\n```\n<tf.Tensor: shape=(3, 3), dtype=float32, numpy=\narray([[nan,  1., nan],\n       [ 2.,  2., nan],\n       [ 3., nan,  3.]], dtype=float32)>\n```\n\n```python\n\n```\n\n```python\n#如果where只有一个参数，将返回所有满足条件的位置坐标\nindices = tf.where(c<0)\nindices\n```\n\n```\n<tf.Tensor: shape=(4, 2), dtype=int64, numpy=\narray([[0, 0],\n       [0, 2],\n       [1, 2],\n       [2, 1]])>\n```\n\n```python\n#将张量的第[0,0]和[2,1]两个位置元素替换为0得到新的张量\nd = c - tf.scatter_nd([[0,0],[2,1]],[c[0,0],c[2,1]],c.shape)\nd\n```\n\n```\n<tf.Tensor: shape=(3, 3), dtype=float32, numpy=\narray([[ 0.,  1., -1.],\n       [ 2.,  2., -2.],\n       [ 3.,  0.,  3.]], dtype=float32)>\n\n```\n\n```python\n#scatter_nd的作用和gather_nd有些相反\n#可以将某些值插入到一个给定shape的全0的张量的指定位置处。\nindices = tf.where(c<0)\ntf.scatter_nd(indices,tf.gather_nd(c,indices),c.shape)\n```\n\n```\n<tf.Tensor: shape=(3, 3), dtype=float32, numpy=\narray([[-1.,  0., -1.],\n       [ 0.,  0., -2.],\n       [ 0., -3.,  0.]], dtype=float32)>\n```\n\n```python\n\n```\n\n### 三，维度变换\n\n\n维度变换相关函数主要有 tf.reshape, tf.squeeze, tf.expand_dims, tf.transpose.\n\ntf.reshape 可以改变张量的形状。\n\ntf.squeeze 可以减少维度。\n\ntf.expand_dims 可以增加维度。\n\ntf.transpose 可以交换维度。\n\n\n\ntf.reshape可以改变张量的形状，但是其本质上不会改变张量元素的存储顺序，所以，该操作实际上非常迅速，并且是可逆的。\n\n```python\na = tf.random.uniform(shape=[1,3,3,2],\n                      minval=0,maxval=255,dtype=tf.int32)\ntf.print(a.shape)\ntf.print(a)\n```\n\n```\nTensorShape([1, 3, 3, 2])\n[[[[135 178]\n   [26 116]\n   [29 224]]\n\n  [[179 219]\n   [153 209]\n   [111 215]]\n\n  [[39 7]\n   [138 129]\n   [59 205]]]]\n```\n\n```python\n# 改成 （3,6）形状的张量\nb = tf.reshape(a,[3,6])\ntf.print(b.shape)\ntf.print(b)\n```\n\n```\nTensorShape([3, 6])\n[[135 178 26 116 29 224]\n [179 219 153 209 111 215]\n [39 7 138 129 59 205]]\n```\n\n\n\n\n```python\n# 改回成 [1,3,3,2] 形状的张量\nc = tf.reshape(b,[1,3,3,2])\ntf.print(c)\n```\n\n```\n[[[[135 178]\n   [26 116]\n   [29 224]]\n\n  [[179 219]\n   [153 209]\n   [111 215]]\n\n  [[39 7]\n   [138 129]\n   [59 205]]]]\n```\n\n```python\n\n```\n\n如果张量在某个维度上只有一个元素，利用tf.squeeze可以消除这个维度。\n\n和tf.reshape相似，它本质上不会改变张量元素的存储顺序。\n\n张量的各个元素在内存中是线性存储的，其一般规律是，同一层级中的相邻元素的物理地址也相邻。\n\n```python\ns = tf.squeeze(a)\ntf.print(s.shape)\ntf.print(s)\n```\n\n```\nTensorShape([3, 3, 2])\n[[[135 178]\n  [26 116]\n  [29 224]]\n\n [[179 219]\n  [153 209]\n  [111 215]]\n\n [[39 7]\n  [138 129]\n  [59 205]]]\n```\n\n```python\nd = tf.expand_dims(s,axis=0) #在第0维插入长度为1的一个维度\nd\n```\n\n```\n<tf.Tensor: shape=(1, 3, 3, 2), dtype=int32, numpy=\narray([[[[135, 178],\n         [ 26, 116],\n         [ 29, 224]],\n\n        [[179, 219],\n         [153, 209],\n         [111, 215]],\n\n        [[ 39,   7],\n         [138, 129],\n         [ 59, 205]]]], dtype=int32)>\n```\n\n\ntf.transpose可以交换张量的维度，与tf.reshape不同，它会改变张量元素的存储顺序。\n\ntf.transpose常用于图片存储格式的变换上。\n\n```python\n# Batch,Height,Width,Channel\na = tf.random.uniform(shape=[100,600,600,4],minval=0,maxval=255,dtype=tf.int32)\ntf.print(a.shape)\n\n# 转换成 Channel,Height,Width,Batch\ns= tf.transpose(a,perm=[3,1,2,0])\ntf.print(s.shape)\n```\n\n```\nTensorShape([100, 600, 600, 4])\nTensorShape([4, 600, 600, 100])\n\n```\n\n```python\n\n```\n\n### 四，合并分割\n\n\n和numpy类似，可以用tf.concat和tf.stack方法对多个张量进行合并，可以用tf.split方法把一个张量分割成多个张量。\n\ntf.concat和tf.stack有略微的区别，tf.concat是连接，不会增加维度，而tf.stack是堆叠，会增加维度。\n\n```python\na = tf.constant([[1.0,2.0],[3.0,4.0]])\nb = tf.constant([[5.0,6.0],[7.0,8.0]])\nc = tf.constant([[9.0,10.0],[11.0,12.0]])\n\ntf.concat([a,b,c],axis = 0)\n```\n\n```\n<tf.Tensor: shape=(6, 2), dtype=float32, numpy=\narray([[ 1.,  2.],\n       [ 3.,  4.],\n       [ 5.,  6.],\n       [ 7.,  8.],\n       [ 9., 10.],\n       [11., 12.]], dtype=float32)>\n```\n\n```python\ntf.concat([a,b,c],axis = 1)\n```\n\n```\n<tf.Tensor: shape=(2, 6), dtype=float32, numpy=\narray([[ 1.,  2.,  5.,  6.,  9., 10.],\n       [ 3.,  4.,  7.,  8., 11., 12.]], dtype=float32)>\n```\n\n```python\ntf.stack([a,b,c])\n```\n\n```\n<tf.Tensor: shape=(3, 2, 2), dtype=float32, numpy=\narray([[[ 1.,  2.],\n        [ 3.,  4.]],\n\n       [[ 5.,  6.],\n        [ 7.,  8.]],\n\n       [[ 9., 10.],\n        [11., 12.]]], dtype=float32)>\n```\n\n```python\ntf.stack([a,b,c],axis=1)\n```\n\n```\n<tf.Tensor: shape=(2, 3, 2), dtype=float32, numpy=\narray([[[ 1.,  2.],\n        [ 5.,  6.],\n        [ 9., 10.]],\n\n       [[ 3.,  4.],\n        [ 7.,  8.],\n        [11., 12.]]], dtype=float32)>\n```\n\n```python\na = tf.constant([[1.0,2.0],[3.0,4.0]])\nb = tf.constant([[5.0,6.0],[7.0,8.0]])\nc = tf.constant([[9.0,10.0],[11.0,12.0]])\n\nc = tf.concat([a,b,c],axis = 0)\n```\n\ntf.split是tf.concat的逆运算，可以指定分割份数平均分割，也可以通过指定每份的记录数量进行分割。\n\n```python\n#tf.split(value,num_or_size_splits,axis)\ntf.split(c,3,axis = 0)  #指定分割份数，平均分割\n```\n\n```\n[<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\n array([[1., 2.],\n        [3., 4.]], dtype=float32)>,\n <tf.Tensor: shape=(2, 2), dtype=float32, numpy=\n array([[5., 6.],\n        [7., 8.]], dtype=float32)>,\n <tf.Tensor: shape=(2, 2), dtype=float32, numpy=\n array([[ 9., 10.],\n        [11., 12.]], dtype=float32)>]\n```\n\n```python\ntf.split(c,[2,2,2],axis = 0) #指定每份的记录数量\n```\n\n```\n[<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\n array([[1., 2.],\n        [3., 4.]], dtype=float32)>,\n <tf.Tensor: shape=(2, 2), dtype=float32, numpy=\n array([[5., 6.],\n        [7., 8.]], dtype=float32)>,\n <tf.Tensor: shape=(2, 2), dtype=float32, numpy=\n array([[ 9., 10.],\n        [11., 12.]], dtype=float32)>]\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n\n\n# 4-2,张量的数学运算\n\n张量的操作主要包括张量的结构操作和张量的数学运算。\n\n张量结构操作诸如：张量创建，索引切片，维度变换，合并分割。\n\n张量数学运算主要有：标量运算，向量运算，矩阵运算。另外我们会介绍张量运算的广播机制。\n\n本篇我们介绍张量的数学运算。\n\n```python\n\n```\n\n### 一，标量运算\n\n\n张量的数学运算符可以分为标量运算符、向量运算符、以及矩阵运算符。\n\n加减乘除乘方，以及三角函数，指数，对数等常见函数，逻辑比较运算符等都是标量运算符。\n\n标量运算符的特点是对张量实施逐元素运算。\n\n有些标量运算符对常用的数学运算符进行了重载。并且支持类似numpy的广播特性。\n\n许多标量运算符都在 tf.math模块下。\n\n```python\nimport tensorflow as tf \nimport numpy as np \n```\n\n```python\na = tf.constant([[1.0,2],[-3,4.0]])\nb = tf.constant([[5.0,6],[7.0,8.0]])\na+b  #运算符重载\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[ 6.,  8.],\n       [ 4., 12.]], dtype=float32)>\n```\n\n```python\na-b \n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[ -4.,  -4.],\n       [-10.,  -4.]], dtype=float32)>\n```\n\n```python\na*b \n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[  5.,  12.],\n       [-21.,  32.]], dtype=float32)>\n```\n\n```python\na/b\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[ 0.2       ,  0.33333334],\n       [-0.42857143,  0.5       ]], dtype=float32)>\n```\n\n```python\na**2\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[ 1.,  4.],\n       [ 9., 16.]], dtype=float32)>\n```\n\n```python\na**(0.5)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[1.       , 1.4142135],\n       [      nan, 2.       ]], dtype=float32)>\n```\n\n```python\na%3 #mod的运算符重载，等价于m = tf.math.mod(a,3)\n```\n\n```\n<tf.Tensor: shape=(3,), dtype=int32, numpy=array([1, 2, 0], dtype=int32)>\n```\n\n```python\na//3  #地板除法\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[ 0.,  0.],\n       [-1.,  1.]], dtype=float32)>\n```\n\n```python\n(a>=2)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=bool, numpy=\narray([[False,  True],\n       [False,  True]])>\n```\n\n```python\n(a>=2)&(a<=3)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=bool, numpy=\narray([[False,  True],\n       [False, False]])>\n```\n\n```python\n(a>=2)|(a<=3)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=bool, numpy=\narray([[ True,  True],\n       [ True,  True]])>\n```\n\n```python\na==5 #tf.equal(a,5)\n```\n\n```\n<tf.Tensor: shape=(3,), dtype=bool, numpy=array([False, False, False])>\n```\n\n```python\ntf.sqrt(a)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[1.       , 1.4142135],\n       [      nan, 2.       ]], dtype=float32)>\n```\n\n```python\na = tf.constant([1.0,8.0])\nb = tf.constant([5.0,6.0])\nc = tf.constant([6.0,7.0])\ntf.add_n([a,b,c])\n```\n\n```\n<tf.Tensor: shape=(2,), dtype=float32, numpy=array([12., 21.], dtype=float32)>\n```\n\n```python\ntf.print(tf.maximum(a,b))\n```\n\n```\n[5 8]\n```\n\n```python\ntf.print(tf.minimum(a,b))\n```\n\n```\n[1 6]\n```\n\n```python\n\n```\n\n### 二，向量运算\n\n\n向量运算符只在一个特定轴上运算，将一个向量映射到一个标量或者另外一个向量。\n许多向量运算符都以reduce开头。\n\n```python\n#向量reduce\na = tf.range(1,10)\ntf.print(tf.reduce_sum(a))\ntf.print(tf.reduce_mean(a))\ntf.print(tf.reduce_max(a))\ntf.print(tf.reduce_min(a))\ntf.print(tf.reduce_prod(a))\n```\n\n```\n45\n5\n9\n1\n362880\n```\n\n```python\n#张量指定维度进行reduce\nb = tf.reshape(a,(3,3))\ntf.print(tf.reduce_sum(b, axis=1, keepdims=True))\ntf.print(tf.reduce_sum(b, axis=0, keepdims=True))\n```\n\n```\n[[6]\n [15]\n [24]]\n[[12 15 18]]\n```\n\n```python\n#bool类型的reduce\np = tf.constant([True,False,False])\nq = tf.constant([False,False,True])\ntf.print(tf.reduce_all(p))\ntf.print(tf.reduce_any(q))\n```\n\n```\n0\n1\n```\n\n```python\n#利用tf.foldr实现tf.reduce_sum\ns = tf.foldr(lambda a,b:a+b,tf.range(10)) \ntf.print(s)\n```\n\n```\n45\n```\n\n```python\n#cum扫描累积\na = tf.range(1,10)\ntf.print(tf.math.cumsum(a))\ntf.print(tf.math.cumprod(a))\n```\n\n```\n[1 3 6 ... 28 36 45]\n[1 2 6 ... 5040 40320 362880]\n```\n\n```python\n#arg最大最小值索引\na = tf.range(1,10)\ntf.print(tf.argmax(a))\ntf.print(tf.argmin(a))\n```\n\n```\n8\n0\n```\n\n```python\n#tf.math.top_k可以用于对张量排序\na = tf.constant([1,3,7,5,4,8])\n\nvalues,indices = tf.math.top_k(a,3,sorted=True)\ntf.print(values)\ntf.print(indices)\n\n#利用tf.math.top_k可以在TensorFlow中实现KNN算法\n```\n\n```\n[8 7 5]\n[5 2 3]\n```\n\n```python\n\n```\n\n### 三，矩阵运算\n\n\n矩阵必须是二维的。类似tf.constant([1,2,3])这样的不是矩阵。\n\n矩阵运算包括：矩阵乘法，矩阵转置，矩阵逆，矩阵求迹，矩阵范数，矩阵行列式，矩阵求特征值，矩阵分解等运算。\n\n除了一些常用的运算外，大部分和矩阵有关的运算都在tf.linalg子包中。\n\n```python\n#矩阵乘法\na = tf.constant([[1,2],[3,4]])\nb = tf.constant([[2,0],[0,2]])\na@b  #等价于tf.matmul(a,b)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=int32, numpy=\narray([[2, 4],\n       [6, 8]], dtype=int32)>\n```\n\n```python\n#矩阵转置\na = tf.constant([[1.0,2],[3,4]])\ntf.transpose(a)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[1., 3.],\n       [2., 4.]], dtype=float32)>\n```\n\n```python\n#矩阵逆，必须为tf.float32或tf.double类型\na = tf.constant([[1.0,2],[3.0,4]],dtype = tf.float32)\ntf.linalg.inv(a)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[-2.0000002 ,  1.0000001 ],\n       [ 1.5000001 , -0.50000006]], dtype=float32)>\n```\n\n```python\n#矩阵求trace\na = tf.constant([[1.0,2],[3,4]])\ntf.linalg.trace(a)\n```\n\n```\n<tf.Tensor: shape=(), dtype=float32, numpy=5.0>\n```\n\n```python\n#矩阵求范数\na = tf.constant([[1.0,2],[3,4]])\ntf.linalg.norm(a)\n```\n\n```\n<tf.Tensor: shape=(), dtype=float32, numpy=5.477226>\n```\n\n```python\n#矩阵行列式\na = tf.constant([[1.0,2],[3,4]])\ntf.linalg.det(a)\n```\n\n```\n<tf.Tensor: shape=(), dtype=float32, numpy=-2.0>\n```\n\n```python\n#矩阵特征值\ntf.linalg.eigvalsh(a)\n```\n\n```\n<tf.Tensor: shape=(2,), dtype=float32, numpy=array([-0.8541021,  5.854102 ], dtype=float32)>\n```\n\n```python\n#矩阵qr分解\na  = tf.constant([[1.0,2.0],[3.0,4.0]],dtype = tf.float32)\nq,r = tf.linalg.qr(a)\ntf.print(q)\ntf.print(r)\ntf.print(q@r)\n```\n\n```\n[[-0.316227794 -0.948683321]\n [-0.948683321 0.316227734]]\n[[-3.1622777 -4.4271884]\n [0 -0.632455349]]\n[[1.00000012 1.99999976]\n [3 4]]\n```\n\n```python\n#矩阵svd分解\na  = tf.constant([[1.0,2.0],[3.0,4.0]],dtype = tf.float32)\nv,s,d = tf.linalg.svd(a)\ntf.matmul(tf.matmul(s,tf.linalg.diag(v)),d)\n\n#利用svd分解可以在TensorFlow中实现主成分分析降维\n\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[0.9999996, 1.9999996],\n       [2.9999998, 4.       ]], dtype=float32)>\n```\n\n```python\n\n```\n\n```python\n\n```\n\n### 四，广播机制\n\n\nTensorFlow的广播规则和numpy是一样的:\n\n* 1、如果张量的维度不同，将维度较小的张量进行扩展，直到两个张量的维度都一样。\n* 2、如果两个张量在某个维度上的长度是相同的，或者其中一个张量在该维度上的长度为1，那么我们就说这两个张量在该维度上是相容的。\n* 3、如果两个张量在所有维度上都是相容的，它们就能使用广播。\n* 4、广播之后，每个维度的长度将取两个张量在该维度长度的较大值。\n* 5、在任何一个维度上，如果一个张量的长度为1，另一个张量长度大于1，那么在该维度上，就好像是对第一个张量进行了复制。\n\ntf.broadcast_to 以显式的方式按照广播机制扩展张量的维度。\n\n```python\na = tf.constant([1,2,3])\nb = tf.constant([[0,0,0],[1,1,1],[2,2,2]])\nb + a  #等价于 b + tf.broadcast_to(a,b.shape)\n```\n\n```\n<tf.Tensor: shape=(3, 3), dtype=int32, numpy=\narray([[1, 2, 3],\n       [2, 3, 4],\n       [3, 4, 5]], dtype=int32)>\n```\n\n```python\ntf.broadcast_to(a,b.shape)\n```\n\n```\n<tf.Tensor: shape=(3, 3), dtype=int32, numpy=\narray([[1, 2, 3],\n       [1, 2, 3],\n       [1, 2, 3]], dtype=int32)>\n```\n\n```python\n#计算广播后计算结果的形状，静态形状，TensorShape类型参数\ntf.broadcast_static_shape(a.shape,b.shape)\n```\n\n```\nTensorShape([3, 3])\n```\n\n```python\n#计算广播后计算结果的形状，动态形状，Tensor类型参数\nc = tf.constant([1,2,3])\nd = tf.constant([[1],[2],[3]])\ntf.broadcast_dynamic_shape(tf.shape(c),tf.shape(d))\n```\n\n```\n<tf.Tensor: shape=(2,), dtype=int32, numpy=array([3, 3], dtype=int32)>\n```\n\n```python\n#广播效果\nc+d #等价于 tf.broadcast_to(c,[3,3]) + tf.broadcast_to(d,[3,3])\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[6.5760484, 7.8174157],\n       [6.8174157, 6.4239516]], dtype=float32)>\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n```python\n\n```\n# 4-3,AutoGraph的使用规范\n\n有三种计算图的构建方式：静态计算图，动态计算图，以及Autograph。\n\nTensorFlow 2.0主要使用的是动态计算图和Autograph。\n\n动态计算图易于调试，编码效率较高，但执行效率偏低。\n\n静态计算图执行效率很高，但较难调试。\n\n而Autograph机制可以将动态图转换成静态计算图，兼收执行效率和编码效率之利。\n\n当然Autograph机制能够转换的代码并不是没有任何约束的，有一些编码规范需要遵循，否则可能会转换失败或者不符合预期。\n\n我们将着重介绍Autograph的编码规范和Autograph转换成静态图的原理。\n\n并介绍使用tf.Module来更好地构建Autograph。\n\n本篇我们介绍使用Autograph的编码规范。\n\n\n### 一，Autograph编码规范总结\n\n\n* 1，被@tf.function修饰的函数应尽可能使用TensorFlow中的函数而不是Python中的其他函数。例如使用tf.print而不是print，使用tf.range而不是range，使用tf.constant(True)而不是True.\n\n* 2，避免在@tf.function修饰的函数内部定义tf.Variable. \n\n* 3，被@tf.function修饰的函数不可修改该函数外部的Python列表或字典等数据结构变量。\n\n\n```python\n\n```\n\n### 二，Autograph编码规范解析\n\n\n **1，被@tf.function修饰的函数应尽量使用TensorFlow中的函数而不是Python中的其他函数。**\n\n```python\nimport numpy as np\nimport tensorflow as tf\n\n@tf.function\ndef np_random():\n    a = np.random.randn(3,3)\n    tf.print(a)\n    \n@tf.function\ndef tf_random():\n    a = tf.random.normal((3,3))\n    tf.print(a)\n```\n\n```python\n#np_random每次执行都是一样的结果。\nnp_random()\nnp_random()\n```\n\n```\narray([[ 0.22619201, -0.4550123 , -0.42587565],\n       [ 0.05429906,  0.2312667 , -1.44819738],\n       [ 0.36571796,  1.45578986, -1.05348983]])\narray([[ 0.22619201, -0.4550123 , -0.42587565],\n       [ 0.05429906,  0.2312667 , -1.44819738],\n       [ 0.36571796,  1.45578986, -1.05348983]])\n```\n\n```python\n#tf_random每次执行都会有重新生成随机数。\ntf_random()\ntf_random()\n```\n\n```\n[[-1.38956189 -0.394843668 0.420657277]\n [2.87235498 -1.33740318 -0.533843279]\n [0.918233037 0.118598573 -0.399486482]]\n[[-0.858178258 1.67509317 0.511889517]\n [-0.545829177 -2.20118237 -0.968222201]\n [0.733958483 -0.61904633 0.77440238]]\n```\n\n```python\n\n```\n\n**2，避免在@tf.function修饰的函数内部定义tf.Variable.**\n\n```python\n# 避免在@tf.function修饰的函数内部定义tf.Variable.\n\nx = tf.Variable(1.0,dtype=tf.float32)\n@tf.function\ndef outer_var():\n    x.assign_add(1.0)\n    tf.print(x)\n    return(x)\n\nouter_var() \nouter_var()\n\n```\n\n```python\n@tf.function\ndef inner_var():\n    x = tf.Variable(1.0,dtype = tf.float32)\n    x.assign_add(1.0)\n    tf.print(x)\n    return(x)\n\n#执行将报错\n#inner_var()\n#inner_var()\n\n```\n\n```\n---------------------------------------------------------------------------\nValueError                                Traceback (most recent call last)\n<ipython-input-12-c95a7c3c1ddd> in <module>\n      7 \n      8 #执行将报错\n----> 9 inner_var()\n     10 inner_var()\n\n~/anaconda3/lib/python3.7/site-packages/tensorflow_core/python/eager/def_function.py in __call__(self, *args, **kwds)\n    566         xla_context.Exit()\n    567     else:\n--> 568       result = self._call(*args, **kwds)\n    569 \n    570     if tracing_count == self._get_tracing_count():\n......\nValueError: tf.function-decorated function tried to create variables on non-first call.\n```\n\n\n**3,被@tf.function修饰的函数不可修改该函数外部的Python列表或字典等结构类型变量。**\n\n```python\ntensor_list = []\n\n#@tf.function #加上这一行切换成Autograph结果将不符合预期！！！\ndef append_tensor(x):\n    tensor_list.append(x)\n    return tensor_list\n\nappend_tensor(tf.constant(5.0))\nappend_tensor(tf.constant(6.0))\nprint(tensor_list)\n\n```\n\n```\n[<tf.Tensor: shape=(), dtype=float32, numpy=5.0>, <tf.Tensor: shape=(), dtype=float32, numpy=6.0>]\n```\n\n```python\ntensor_list = []\n\n@tf.function #加上这一行切换成Autograph结果将不符合预期！！！\ndef append_tensor(x):\n    tensor_list.append(x)\n    return tensor_list\n\n\nappend_tensor(tf.constant(5.0))\nappend_tensor(tf.constant(6.0))\nprint(tensor_list)\n\n```\n\n```\n[<tf.Tensor 'x:0' shape=() dtype=float32>]\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n\n\n# 4-4,AutoGraph的机制原理\n\n有三种计算图的构建方式：静态计算图，动态计算图，以及Autograph。\n\nTensorFlow 2.0主要使用的是动态计算图和Autograph。\n\n动态计算图易于调试，编码效率较高，但执行效率偏低。\n\n静态计算图执行效率很高，但较难调试。\n\n而Autograph机制可以将动态图转换成静态计算图，兼收执行效率和编码效率之利。\n\n当然Autograph机制能够转换的代码并不是没有任何约束的，有一些编码规范需要遵循，否则可能会转换失败或者不符合预期。\n\n我们会介绍Autograph的编码规范和Autograph转换成静态图的原理。\n\n并介绍使用tf.Module来更好地构建Autograph。\n\n上篇我们介绍了Autograph的编码规范，本篇我们介绍Autograph的机制原理。\n\n\n\n### 一，Autograph的机制原理\n\n\n**当我们使用@tf.function装饰一个函数的时候，后面到底发生了什么呢？**\n\n例如我们写下如下代码。\n\n```python\nimport tensorflow as tf\nimport numpy as np \n\n@tf.function(autograph=True)\ndef myadd(a,b):\n    for i in tf.range(3):\n        tf.print(i)\n    c = a+b\n    print(\"tracing\")\n    return c\n```\n\n后面什么都没有发生。仅仅是在Python堆栈中记录了这样一个函数的签名。\n\n**当我们第一次调用这个被@tf.function装饰的函数时，后面到底发生了什么？**\n\n例如我们写下如下代码。\n\n```python\nmyadd(tf.constant(\"hello\"),tf.constant(\"world\"))\n```\n\n```\ntracing\n0\n1\n2\n```\n\n\n发生了2件事情，\n\n第一件事情是创建计算图。\n\n即创建一个静态计算图，跟踪执行一遍函数体中的Python代码，确定各个变量的Tensor类型，并根据执行顺序将算子添加到计算图中。\n在这个过程中，如果开启了autograph=True(默认开启),会将Python控制流转换成TensorFlow图内控制流。\n主要是将if语句转换成 tf.cond算子表达，将while和for循环语句转换成tf.while_loop算子表达，并在必要的时候添加\ntf.control_dependencies指定执行顺序依赖关系。\n\n相当于在 tensorflow1.0执行了类似下面的语句：\n\n```python\ng = tf.Graph()\nwith g.as_default():\n    a = tf.placeholder(shape=[],dtype=tf.string)\n    b = tf.placeholder(shape=[],dtype=tf.string)\n    cond = lambda i: i<tf.constant(3)\n    def body(i):\n        tf.print(i)\n        return(i+1)\n    loop = tf.while_loop(cond,body,loop_vars=[0])\n    loop\n    with tf.control_dependencies(loop):\n        c = tf.strings.join([a,b])\n    print(\"tracing\")\n```\n\n第二件事情是执行计算图。\n\n相当于在 tensorflow1.0中执行了下面的语句：\n\n```python\nwith tf.Session(graph=g) as sess:\n    sess.run(c,feed_dict={a:tf.constant(\"hello\"),b:tf.constant(\"world\")})\n```\n\n因此我们先看到的是第一个步骤的结果：即Python调用标准输出流打印\"tracing\"语句。\n\n然后看到第二个步骤的结果：TensorFlow调用标准输出流打印1,2,3。\n\n\n\n**当我们再次用相同的输入参数类型调用这个被@tf.function装饰的函数时，后面到底发生了什么？**\n\n例如我们写下如下代码。\n\n```python\nmyadd(tf.constant(\"good\"),tf.constant(\"morning\"))\n```\n\n```\n0\n1\n2\n```\n\n\n只会发生一件事情，那就是上面步骤的第二步，执行计算图。\n\n所以这一次我们没有看到打印\"tracing\"的结果。\n\n\n**当我们再次用不同的的输入参数类型调用这个被@tf.function装饰的函数时，后面到底发生了什么？**\n\n例如我们写下如下代码。\n\n```python\nmyadd(tf.constant(1),tf.constant(2))\n```\n\n```\ntracing\n0\n1\n2\n```\n\n\n由于输入参数的类型已经发生变化，已经创建的计算图不能够再次使用。\n\n需要重新做2件事情：创建新的计算图、执行计算图。\n\n所以我们又会先看到的是第一个步骤的结果：即Python调用标准输出流打印\"tracing\"语句。\n\n然后再看到第二个步骤的结果：TensorFlow调用标准输出流打印1,2,3。\n\n\n**需要注意的是，如果调用被@tf.function装饰的函数时输入的参数不是Tensor类型，则每次都会重新创建计算图。**\n\n例如我们写下如下代码。两次都会重新创建计算图。因此，一般建议调用@tf.function时应传入Tensor类型。\n\n```python\nmyadd(\"hello\",\"world\")\nmyadd(\"good\",\"morning\")\n```\n\n```\ntracing\n0\n1\n2\ntracing\n0\n1\n2\n```\n\n```python\n\n```\n\n```python\n\n```\n\n### 二，重新理解Autograph的编码规范\n\n\n了解了以上Autograph的机制原理，我们也就能够理解Autograph编码规范的3条建议了。\n\n1，被@tf.function修饰的函数应尽量使用TensorFlow中的函数而不是Python中的其他函数。例如使用tf.print而不是print.\n\n解释：Python中的函数仅仅会在跟踪执行函数以创建静态图的阶段使用，普通Python函数是无法嵌入到静态计算图中的，所以\n在计算图构建好之后再次调用的时候，这些Python函数并没有被计算，而TensorFlow中的函数则可以嵌入到计算图中。使用普通的Python函数会导致\n被@tf.function修饰前【eager执行】和被@tf.function修饰后【静态图执行】的输出不一致。\n\n2，避免在@tf.function修饰的函数内部定义tf.Variable. \n\n解释：如果函数内部定义了tf.Variable,那么在【eager执行】时，这种创建tf.Variable的行为在每次函数调用时候都会发生。但是在【静态图执行】时，这种创建tf.Variable的行为只会发生在第一步跟踪Python代码逻辑创建计算图时，这会导致被@tf.function修饰前【eager执行】和被@tf.function修饰后【静态图执行】的输出不一致。实际上，TensorFlow在这种情况下一般会报错。\n\n3，被@tf.function修饰的函数不可修改该函数外部的Python列表或字典等数据结构变量。\n\n解释：静态计算图是被编译成C++代码在TensorFlow内核中执行的。Python中的列表和字典等数据结构变量是无法嵌入到计算图中，它们仅仅能够在创建计算图时被读取，在执行计算图时是无法修改Python中的列表或字典这样的数据结构变量的。\n\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n```python\n\n```\n# 4-5,AutoGraph和tf.Module\n\n\n有三种计算图的构建方式：静态计算图，动态计算图，以及Autograph。\n\nTensorFlow 2.0主要使用的是动态计算图和Autograph。\n\n动态计算图易于调试，编码效率较高，但执行效率偏低。\n\n静态计算图执行效率很高，但较难调试。\n\n而Autograph机制可以将动态图转换成静态计算图，兼收执行效率和编码效率之利。\n\n当然Autograph机制能够转换的代码并不是没有任何约束的，有一些编码规范需要遵循，否则可能会转换失败或者不符合预期。\n\n前面我们介绍了Autograph的编码规范和Autograph转换成静态图的原理。\n\n本篇我们介绍使用tf.Module来更好地构建Autograph。\n\n\n\n\n### 一，Autograph和tf.Module概述\n\n\n前面在介绍Autograph的编码规范时提到构建Autograph时应该避免在@tf.function修饰的函数内部定义tf.Variable. \n\n但是如果在函数外部定义tf.Variable的话，又会显得这个函数有外部变量依赖，封装不够完美。\n\n一种简单的思路是定义一个类，并将相关的tf.Variable创建放在类的初始化方法中。而将函数的逻辑放在其他方法中。\n\n这样一顿猛如虎的操作之后，我们会觉得一切都如同人法地地法天天法道道法自然般的自然。\n\n惊喜的是，TensorFlow提供了一个基类tf.Module，通过继承它构建子类，我们不仅可以获得以上的自然而然，而且可以非常方便地管理变量，还可以非常方便地管理它引用的其它Module，最重要的是，我们能够利用tf.saved_model保存模型并实现跨平台部署使用。\n\n实际上，tf.keras.models.Model,tf.keras.layers.Layer 都是继承自tf.Module的，提供了方便的变量管理和所引用的子模块管理的功能。\n\n**因此，利用tf.Module提供的封装，再结合TensoFlow丰富的低阶API，实际上我们能够基于TensorFlow开发任意机器学习模型(而非仅仅是神经网络模型)，并实现跨平台部署使用。**\n\n\n\n\n\n### 二，应用tf.Module封装Autograph\n\n\n定义一个简单的function。\n\n```python\nimport tensorflow as tf \nx = tf.Variable(1.0,dtype=tf.float32)\n\n#在tf.function中用input_signature限定输入张量的签名类型：shape和dtype\n@tf.function(input_signature=[tf.TensorSpec(shape = [], dtype = tf.float32)])    \ndef add_print(a):\n    x.assign_add(a)\n    tf.print(x)\n    return(x)\n```\n\n```python\nadd_print(tf.constant(3.0))\n#add_print(tf.constant(3)) #输入不符合张量签名的参数将报错\n```\n\n```\n4\n```\n\n\n下面利用tf.Module的子类化将其封装一下。\n\n```python\nclass DemoModule(tf.Module):\n    def __init__(self,init_value = tf.constant(0.0),name=None):\n        super(DemoModule, self).__init__(name=name)\n        with self.name_scope:  #相当于with tf.name_scope(\"demo_module\")\n            self.x = tf.Variable(init_value,dtype = tf.float32,trainable=True)\n\n     \n    @tf.function(input_signature=[tf.TensorSpec(shape = [], dtype = tf.float32)])  \n    def addprint(self,a):\n        with self.name_scope:\n            self.x.assign_add(a)\n            tf.print(self.x)\n            return(self.x)\n\n```\n\n```python\n#执行\ndemo = DemoModule(init_value = tf.constant(1.0))\nresult = demo.addprint(tf.constant(5.0))\n```\n\n```\n6\n```\n\n```python\n#查看模块中的全部变量和全部可训练变量\nprint(demo.variables)\nprint(demo.trainable_variables)\n```\n\n```\n(<tf.Variable 'demo_module/Variable:0' shape=() dtype=float32, numpy=6.0>,)\n(<tf.Variable 'demo_module/Variable:0' shape=() dtype=float32, numpy=6.0>,)\n```\n\n```python\n#查看模块中的全部子模块\ndemo.submodules\n```\n\n```python\n#使用tf.saved_model 保存模型，并指定需要跨平台部署的方法\ntf.saved_model.save(demo,\"./data/demo/1\",signatures = {\"serving_default\":demo.addprint})\n```\n\n```python\n#加载模型\ndemo2 = tf.saved_model.load(\"./data/demo/1\")\ndemo2.addprint(tf.constant(5.0))\n```\n\n```\n11\n```\n\n```python\n# 查看模型文件相关信息，红框标出来的输出信息在模型部署和跨平台使用时有可能会用到\n!saved_model_cli show --dir ./data/demo/1 --all\n```\n\n![](./data/查看模型文件信息.jpg)\n\n```python\n\n```\n\n在tensorboard中查看计算图，模块会被添加模块名demo_module,方便层次化呈现计算图结构。\n\n```python\nimport datetime\n\n# 创建日志\nstamp = datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\nlogdir = './data/demomodule/%s' % stamp\nwriter = tf.summary.create_file_writer(logdir)\n\n#开启autograph跟踪\ntf.summary.trace_on(graph=True, profiler=True) \n\n#执行autograph\ndemo = DemoModule(init_value = tf.constant(0.0))\nresult = demo.addprint(tf.constant(5.0))\n\n#将计算图信息写入日志\nwith writer.as_default():\n    tf.summary.trace_export(\n        name=\"demomodule\",\n        step=0,\n        profiler_outdir=logdir)\n    \n```\n\n```python\n\n```\n\n```python\n#启动 tensorboard在jupyter中的魔法命令\n%reload_ext tensorboard\n```\n\n```python\nfrom tensorboard import notebook\nnotebook.list() \n```\n\n```python\nnotebook.start(\"--logdir ./data/demomodule/\")\n```\n\n![](./data/demomodule的计算图结构.jpg)\n\n```python\n\n```\n\n除了利用tf.Module的子类化实现封装，我们也可以通过给tf.Module添加属性的方法进行封装。\n\n```python\nmymodule = tf.Module()\nmymodule.x = tf.Variable(0.0)\n\n@tf.function(input_signature=[tf.TensorSpec(shape = [], dtype = tf.float32)])  \ndef addprint(a):\n    mymodule.x.assign_add(a)\n    tf.print(mymodule.x)\n    return (mymodule.x)\n\nmymodule.addprint = addprint\n```\n\n```python\nmymodule.addprint(tf.constant(1.0)).numpy()\n```\n\n```\n1.0\n```\n\n```python\nprint(mymodule.variables)\n```\n\n```\n(<tf.Variable 'Variable:0' shape=() dtype=float32, numpy=0.0>,)\n```\n\n```python\n#使用tf.saved_model 保存模型\ntf.saved_model.save(mymodule,\"./data/mymodule\",\n    signatures = {\"serving_default\":mymodule.addprint})\n\n#加载模型\nmymodule2 = tf.saved_model.load(\"./data/mymodule\")\nmymodule2.addprint(tf.constant(5.0))\n```\n\n```\nINFO:tensorflow:Assets written to: ./data/mymodule/assets\n5\n```\n\n```python\n\n```\n\n### 三，tf.Module和tf.keras.Model，tf.keras.layers.Layer\n\n\ntf.keras中的模型和层都是继承tf.Module实现的，也具有变量管理和子模块管理功能。\n\n```python\nimport tensorflow as tf\nfrom tensorflow.keras import models,layers,losses,metrics\n```\n\n```python\nprint(issubclass(tf.keras.Model,tf.Module))\nprint(issubclass(tf.keras.layers.Layer,tf.Module))\nprint(issubclass(tf.keras.Model,tf.keras.layers.Layer))\n```\n\n```\nTrue\nTrue\nTrue\n```\n\n```python\ntf.keras.backend.clear_session() \n\nmodel = models.Sequential()\n\nmodel.add(layers.Dense(4,input_shape = (10,)))\nmodel.add(layers.Dense(2))\nmodel.add(layers.Dense(1))\nmodel.summary()\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ndense (Dense)                (None, 4)                 44        \n_________________________________________________________________\ndense_1 (Dense)              (None, 2)                 10        \n_________________________________________________________________\ndense_2 (Dense)              (None, 1)                 3         \n=================================================================\nTotal params: 57\nTrainable params: 57\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\nmodel.variables\n```\n\n```\n[<tf.Variable 'dense/kernel:0' shape=(10, 4) dtype=float32, numpy=\n array([[-0.06741005,  0.45534766,  0.5190817 , -0.01806331],\n        [-0.14258742, -0.49711505,  0.26030976,  0.18607801],\n        [-0.62806034,  0.5327399 ,  0.42206633,  0.29201728],\n        [-0.16602087, -0.18901917,  0.55159235, -0.01091868],\n        [ 0.04533798,  0.326845  , -0.582667  ,  0.19431782],\n        [ 0.6494713 , -0.16174704,  0.4062966 ,  0.48760796],\n        [ 0.58400524, -0.6280886 , -0.11265379, -0.6438277 ],\n        [ 0.26642334,  0.49275804,  0.20793378, -0.43889117],\n        [ 0.4092741 ,  0.09871006, -0.2073121 ,  0.26047975],\n        [ 0.43910992,  0.00199282, -0.07711256, -0.27966842]],\n       dtype=float32)>,\n <tf.Variable 'dense/bias:0' shape=(4,) dtype=float32, numpy=array([0., 0., 0., 0.], dtype=float32)>,\n <tf.Variable 'dense_1/kernel:0' shape=(4, 2) dtype=float32, numpy=\n array([[ 0.5022683 , -0.0507431 ],\n        [-0.61540484,  0.9369011 ],\n        [-0.14412141, -0.54607415],\n        [ 0.2027781 , -0.4651153 ]], dtype=float32)>,\n <tf.Variable 'dense_1/bias:0' shape=(2,) dtype=float32, numpy=array([0., 0.], dtype=float32)>,\n <tf.Variable 'dense_2/kernel:0' shape=(2, 1) dtype=float32, numpy=\n array([[-0.244825 ],\n        [-1.2101456]], dtype=float32)>,\n <tf.Variable 'dense_2/bias:0' shape=(1,) dtype=float32, numpy=array([0.], dtype=float32)>]\n```\n\n```python\nmodel.layers[0].trainable = False #冻结第0层的变量,使其不可训练\nmodel.trainable_variables\n```\n\n```\n[<tf.Variable 'dense_1/kernel:0' shape=(4, 2) dtype=float32, numpy=\n array([[ 0.5022683 , -0.0507431 ],\n        [-0.61540484,  0.9369011 ],\n        [-0.14412141, -0.54607415],\n        [ 0.2027781 , -0.4651153 ]], dtype=float32)>,\n <tf.Variable 'dense_1/bias:0' shape=(2,) dtype=float32, numpy=array([0., 0.], dtype=float32)>,\n <tf.Variable 'dense_2/kernel:0' shape=(2, 1) dtype=float32, numpy=\n array([[-0.244825 ],\n        [-1.2101456]], dtype=float32)>,\n <tf.Variable 'dense_2/bias:0' shape=(1,) dtype=float32, numpy=array([0.], dtype=float32)>]\n```\n\n```python\nmodel.submodules\n```\n\n```\n(<tensorflow.python.keras.engine.input_layer.InputLayer at 0x144d8c080>,\n <tensorflow.python.keras.layers.core.Dense at 0x144daada0>,\n <tensorflow.python.keras.layers.core.Dense at 0x144d8c5c0>,\n <tensorflow.python.keras.layers.core.Dense at 0x144d7aa20>)\n```\n\n```python\nmodel.layers\n```\n\n```\n[<tensorflow.python.keras.layers.core.Dense at 0x144daada0>,\n <tensorflow.python.keras.layers.core.Dense at 0x144d8c5c0>,\n <tensorflow.python.keras.layers.core.Dense at 0x144d7aa20>]\n```\n\n```python\nprint(model.name)\nprint(model.name_scope())\n```\n\n```\nsequential\nsequential\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n\n\n# 五、TensorFlow的中阶API\n\nTensorFlow的中阶API主要包括: \n\n* 数据管道(tf.data)\n\n* 特征列(tf.feature_column)\n\n* 激活函数(tf.nn)\n\n* 模型层(tf.keras.layers)\n\n* 损失函数(tf.keras.losses)\n\n* 评估函数(tf.keras.metrics)\n\n* 优化器(tf.keras.optimizers)\n\n* 回调函数(tf.keras.callbacks)\n\n如果把模型比作一个房子，那么中阶API就是【模型之墙】。\n\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n```python\n\n```\n# 5-1,数据管道Dataset\n\n如果需要训练的数据大小不大，例如不到1G，那么可以直接全部读入内存中进行训练，这样一般效率最高。\n\n但如果需要训练的数据很大，例如超过10G，无法一次载入内存，那么通常需要在训练的过程中分批逐渐读入。\n\n使用 tf.data API 可以构建数据输入管道，轻松处理大量的数据，不同的数据格式，以及不同的数据转换。\n\n```python\n\n```\n\n### 一，构建数据管道\n\n\n可以从 Numpy array, Pandas DataFrame, Python generator, csv文件, 文本文件, 文件路径, tfrecords文件等方式构建数据管道。\n\n其中通过Numpy array, Pandas DataFrame, 文件路径构建数据管道是最常用的方法。\n\n通过tfrecords文件方式构建数据管道较为复杂，需要对样本构建tf.Example后压缩成字符串写到tfrecoreds文件，读取后再解析成tf.Example。\n\n但tfrecoreds文件的优点是压缩后文件较小，便于网络传播，加载速度较快。\n\n\n**1,从Numpy array构建数据管道**\n\n```python\n# 从Numpy array构建数据管道\n\nimport tensorflow as tf\nimport numpy as np \nfrom sklearn import datasets \niris = datasets.load_iris()\n\n\nds1 = tf.data.Dataset.from_tensor_slices((iris[\"data\"],iris[\"target\"]))\nfor features,label in ds1.take(5):\n    print(features,label)\n\n```\n\n```\ntf.Tensor([5.1 3.5 1.4 0.2], shape=(4,), dtype=float64) tf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor([4.9 3.  1.4 0.2], shape=(4,), dtype=float64) tf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor([4.7 3.2 1.3 0.2], shape=(4,), dtype=float64) tf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor([4.6 3.1 1.5 0.2], shape=(4,), dtype=float64) tf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor([5.  3.6 1.4 0.2], shape=(4,), dtype=float64) tf.Tensor(0, shape=(), dtype=int64)\n```\n\n```python\n\n```\n\n**2,从 Pandas DataFrame构建数据管道**\n\n```python\n# 从 Pandas DataFrame构建数据管道\nimport tensorflow as tf\nfrom sklearn import datasets \nimport pandas as pd\niris = datasets.load_iris()\ndfiris = pd.DataFrame(iris[\"data\"],columns = iris.feature_names)\nds2 = tf.data.Dataset.from_tensor_slices((dfiris.to_dict(\"list\"),iris[\"target\"]))\n\nfor features,label in ds2.take(3):\n    print(features,label)\n```\n\n```\n{'sepal length (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=5.1>, 'sepal width (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=3.5>, 'petal length (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=1.4>, 'petal width (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=0.2>} tf.Tensor(0, shape=(), dtype=int64)\n{'sepal length (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=4.9>, 'sepal width (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=3.0>, 'petal length (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=1.4>, 'petal width (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=0.2>} tf.Tensor(0, shape=(), dtype=int64)\n{'sepal length (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=4.7>, 'sepal width (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=3.2>, 'petal length (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=1.3>, 'petal width (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=0.2>} tf.Tensor(0, shape=(), dtype=int64)\n```\n\n```python\n\n```\n\n```python\n\n```\n\n**3,从Python generator构建数据管道**\n\n```python\n# 从Python generator构建数据管道\nimport tensorflow as tf\nfrom matplotlib import pyplot as plt \nfrom tensorflow.keras.preprocessing.image import ImageDataGenerator\n\n# 定义一个从文件中读取图片的generator\nimage_generator = ImageDataGenerator(rescale=1.0/255).flow_from_directory(\n                    \"./data/cifar2/test/\",\n                    target_size=(32, 32),\n                    batch_size=20,\n                    class_mode='binary')\n\nclassdict = image_generator.class_indices\nprint(classdict)\n\ndef generator():\n    for features,label in image_generator:\n        yield (features,label)\n\nds3 = tf.data.Dataset.from_generator(generator,output_types=(tf.float32,tf.int32))\n```\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\nplt.figure(figsize=(6,6)) \nfor i,(img,label) in enumerate(ds3.unbatch().take(9)):\n    ax=plt.subplot(3,3,i+1)\n    ax.imshow(img.numpy())\n    ax.set_title(\"label = %d\"%label)\n    ax.set_xticks([])\n    ax.set_yticks([]) \nplt.show()\n```\n\n![](./data/5-1-cifar2预览.jpg)\n\n```python\n\n```\n\n**4,从csv文件构建数据管道**\n\n```python\n# 从csv文件构建数据管道\nds4 = tf.data.experimental.make_csv_dataset(\n      file_pattern = [\"./data/titanic/train.csv\",\"./data/titanic/test.csv\"],\n      batch_size=3, \n      label_name=\"Survived\",\n      na_value=\"\",\n      num_epochs=1,\n      ignore_errors=True)\n\nfor data,label in ds4.take(2):\n    print(data,label)\n```\n\n```\nOrderedDict([('PassengerId', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([540,  58, 764], dtype=int32)>), ('Pclass', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([1, 3, 1], dtype=int32)>), ('Name', <tf.Tensor: shape=(3,), dtype=string, numpy=\narray([b'Frolicher, Miss. Hedwig Margaritha', b'Novel, Mr. Mansouer',\n       b'Carter, Mrs. William Ernest (Lucile Polk)'], dtype=object)>), ('Sex', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'female', b'male', b'female'], dtype=object)>), ('Age', <tf.Tensor: shape=(3,), dtype=float32, numpy=array([22. , 28.5, 36. ], dtype=float32)>), ('SibSp', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([0, 0, 1], dtype=int32)>), ('Parch', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([2, 0, 2], dtype=int32)>), ('Ticket', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'13568', b'2697', b'113760'], dtype=object)>), ('Fare', <tf.Tensor: shape=(3,), dtype=float32, numpy=array([ 49.5   ,   7.2292, 120.    ], dtype=float32)>), ('Cabin', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'B39', b'', b'B96 B98'], dtype=object)>), ('Embarked', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'C', b'C', b'S'], dtype=object)>)]) tf.Tensor([1 0 1], shape=(3,), dtype=int32)\nOrderedDict([('PassengerId', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([845,  66, 390], dtype=int32)>), ('Pclass', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([3, 3, 2], dtype=int32)>), ('Name', <tf.Tensor: shape=(3,), dtype=string, numpy=\narray([b'Culumovic, Mr. Jeso', b'Moubarek, Master. Gerios',\n       b'Lehmann, Miss. Bertha'], dtype=object)>), ('Sex', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'male', b'male', b'female'], dtype=object)>), ('Age', <tf.Tensor: shape=(3,), dtype=float32, numpy=array([17.,  0., 17.], dtype=float32)>), ('SibSp', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([0, 1, 0], dtype=int32)>), ('Parch', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([0, 1, 0], dtype=int32)>), ('Ticket', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'315090', b'2661', b'SC 1748'], dtype=object)>), ('Fare', <tf.Tensor: shape=(3,), dtype=float32, numpy=array([ 8.6625, 15.2458, 12.    ], dtype=float32)>), ('Cabin', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'', b'', b''], dtype=object)>), ('Embarked', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'S', b'C', b'C'], dtype=object)>)]) tf.Tensor([0 1 1], shape=(3,), dtype=int32)\n```\n\n```python\n\n```\n\n**5,从文本文件构建数据管道**\n\n```python\n# 从文本文件构建数据管道\n\nds5 = tf.data.TextLineDataset(\n    filenames = [\"./data/titanic/train.csv\",\"./data/titanic/test.csv\"]\n    ).skip(1) #略去第一行header\n\nfor line in ds5.take(5):\n    print(line)\n```\n\n```\ntf.Tensor(b'493,0,1,\"Molson, Mr. Harry Markland\",male,55.0,0,0,113787,30.5,C30,S', shape=(), dtype=string)\ntf.Tensor(b'53,1,1,\"Harper, Mrs. Henry Sleeper (Myna Haxtun)\",female,49.0,1,0,PC 17572,76.7292,D33,C', shape=(), dtype=string)\ntf.Tensor(b'388,1,2,\"Buss, Miss. Kate\",female,36.0,0,0,27849,13.0,,S', shape=(), dtype=string)\ntf.Tensor(b'192,0,2,\"Carbines, Mr. William\",male,19.0,0,0,28424,13.0,,S', shape=(), dtype=string)\ntf.Tensor(b'687,0,3,\"Panula, Mr. Jaako Arnold\",male,14.0,4,1,3101295,39.6875,,S', shape=(), dtype=string)\n```\n\n```python\n\n```\n\n**6,从文件路径构建数据管道**\n\n```python\nds6 = tf.data.Dataset.list_files(\"./data/cifar2/train/*/*.jpg\")\nfor file in ds6.take(5):\n    print(file)\n```\n\n```\ntf.Tensor(b'./data/cifar2/train/automobile/1263.jpg', shape=(), dtype=string)\ntf.Tensor(b'./data/cifar2/train/airplane/2837.jpg', shape=(), dtype=string)\ntf.Tensor(b'./data/cifar2/train/airplane/4264.jpg', shape=(), dtype=string)\ntf.Tensor(b'./data/cifar2/train/automobile/4241.jpg', shape=(), dtype=string)\ntf.Tensor(b'./data/cifar2/train/automobile/192.jpg', shape=(), dtype=string)\n```\n\n```python\nfrom matplotlib import pyplot as plt \ndef load_image(img_path,size = (32,32)):\n    label = 1 if tf.strings.regex_full_match(img_path,\".*/automobile/.*\") else 0\n    img = tf.io.read_file(img_path)\n    img = tf.image.decode_jpeg(img) #注意此处为jpeg格式\n    img = tf.image.resize(img,size)\n    return(img,label)\n\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\nfor i,(img,label) in enumerate(ds6.map(load_image).take(2)):\n    plt.figure(i)\n    plt.imshow((img/255.0).numpy())\n    plt.title(\"label = %d\"%label)\n    plt.xticks([])\n    plt.yticks([])\n```\n\n![](./data/5-1-car2.jpg)\n\n```python\n\n```\n\n**7,从tfrecords文件构建数据管道**\n\n```python\nimport os\nimport numpy as np\n\n# inpath：原始数据路径 outpath:TFRecord文件输出路径\ndef create_tfrecords(inpath,outpath): \n    writer = tf.io.TFRecordWriter(outpath)\n    dirs = os.listdir(inpath)\n    for index, name in enumerate(dirs):\n        class_path = inpath +\"/\"+ name+\"/\"\n        for img_name in os.listdir(class_path):\n            img_path = class_path + img_name\n            img = tf.io.read_file(img_path)\n            #img = tf.image.decode_image(img)\n            #img = tf.image.encode_jpeg(img) #统一成jpeg格式压缩\n            example = tf.train.Example(\n               features=tf.train.Features(feature={\n                    'label': tf.train.Feature(int64_list=tf.train.Int64List(value=[index])),\n                    'img_raw': tf.train.Feature(bytes_list=tf.train.BytesList(value=[img.numpy()]))\n               }))\n            writer.write(example.SerializeToString())\n    writer.close()\n    \ncreate_tfrecords(\"./data/cifar2/test/\",\"./data/cifar2_test.tfrecords/\")\n\n```\n\n```python\nfrom matplotlib import pyplot as plt \n\ndef parse_example(proto):\n    description ={ 'img_raw' : tf.io.FixedLenFeature([], tf.string),\n                   'label': tf.io.FixedLenFeature([], tf.int64)} \n    example = tf.io.parse_single_example(proto, description)\n    img = tf.image.decode_jpeg(example[\"img_raw\"])   #注意此处为jpeg格式\n    img = tf.image.resize(img, (32,32))\n    label = example[\"label\"]\n    return(img,label)\n\nds7 = tf.data.TFRecordDataset(\"./data/cifar2_test.tfrecords\").map(parse_example).shuffle(3000)\n\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\nplt.figure(figsize=(6,6)) \nfor i,(img,label) in enumerate(ds7.take(9)):\n    ax=plt.subplot(3,3,i+1)\n    ax.imshow((img/255.0).numpy())\n    ax.set_title(\"label = %d\"%label)\n    ax.set_xticks([])\n    ax.set_yticks([]) \nplt.show()\n\n```\n\n![](./data/5-1-car9.jpg)\n\n```python\n\n```\n\n```python\n\n```\n\n### 二，应用数据转换\n\n\nDataset数据结构应用非常灵活，因为它本质上是一个Sequece序列，其每个元素可以是各种类型，例如可以是张量，列表，字典，也可以是Dataset。\n\nDataset包含了非常丰富的数据转换功能。\n\n* map: 将转换函数映射到数据集每一个元素。\n\n* flat_map: 将转换函数映射到数据集的每一个元素，并将嵌套的Dataset压平。\n\n* interleave: 效果类似flat_map,但可以将不同来源的数据夹在一起。\n\n* filter: 过滤掉某些元素。\n\n* zip: 将两个长度相同的Dataset横向铰合。\n\n* concatenate: 将两个Dataset纵向连接。\n\n* reduce: 执行归并操作。\n\n* batch : 构建批次，每次放一个批次。比原始数据增加一个维度。 其逆操作为unbatch。\n\n* padded_batch: 构建批次，类似batch, 但可以填充到相同的形状。\n\n* window :构建滑动窗口，返回Dataset of Dataset.\n\n* shuffle: 数据顺序洗牌。\n\n* repeat: 重复数据若干次，不带参数时，重复无数次。\n\n* shard: 采样，从某个位置开始隔固定距离采样一个元素。\n\n* take: 采样，从开始位置取前几个元素。\n\n\n```python\n#map:将转换函数映射到数据集每一个元素\n\nds = tf.data.Dataset.from_tensor_slices([\"hello world\",\"hello China\",\"hello Beijing\"])\nds_map = ds.map(lambda x:tf.strings.split(x,\" \"))\nfor x in ds_map:\n    print(x)\n```\n\n```\ntf.Tensor([b'hello' b'world'], shape=(2,), dtype=string)\ntf.Tensor([b'hello' b'China'], shape=(2,), dtype=string)\ntf.Tensor([b'hello' b'Beijing'], shape=(2,), dtype=string)\n```\n\n```python\n#flat_map:将转换函数映射到数据集的每一个元素，并将嵌套的Dataset压平。\n\nds = tf.data.Dataset.from_tensor_slices([\"hello world\",\"hello China\",\"hello Beijing\"])\nds_flatmap = ds.flat_map(lambda x:tf.data.Dataset.from_tensor_slices(tf.strings.split(x,\" \")))\nfor x in ds_flatmap:\n    print(x)\n```\n\n```\ntf.Tensor(b'hello', shape=(), dtype=string)\ntf.Tensor(b'world', shape=(), dtype=string)\ntf.Tensor(b'hello', shape=(), dtype=string)\ntf.Tensor(b'China', shape=(), dtype=string)\ntf.Tensor(b'hello', shape=(), dtype=string)\ntf.Tensor(b'Beijing', shape=(), dtype=string)\n```\n\n```python\n\n```\n\n```python\n# interleave: 效果类似flat_map,但可以将不同来源的数据夹在一起。\n\nds = tf.data.Dataset.from_tensor_slices([\"hello world\",\"hello China\",\"hello Beijing\"])\nds_interleave = ds.interleave(lambda x:tf.data.Dataset.from_tensor_slices(tf.strings.split(x,\" \")))\nfor x in ds_interleave:\n    print(x)\n    \n```\n\n```\ntf.Tensor(b'hello', shape=(), dtype=string)\ntf.Tensor(b'hello', shape=(), dtype=string)\ntf.Tensor(b'hello', shape=(), dtype=string)\ntf.Tensor(b'world', shape=(), dtype=string)\ntf.Tensor(b'China', shape=(), dtype=string)\ntf.Tensor(b'Beijing', shape=(), dtype=string)\n```\n\n```python\n\n```\n\n```python\n#filter:过滤掉某些元素。\n\nds = tf.data.Dataset.from_tensor_slices([\"hello world\",\"hello China\",\"hello Beijing\"])\n#找出含有字母a或B的元素\nds_filter = ds.filter(lambda x: tf.strings.regex_full_match(x, \".*[a|B].*\"))\nfor x in ds_filter:\n    print(x)\n    \n```\n\n```\ntf.Tensor(b'hello China', shape=(), dtype=string)\ntf.Tensor(b'hello Beijing', shape=(), dtype=string)\n```\n\n```python\n\n```\n\n```python\n#zip:将两个长度相同的Dataset横向铰合。\n\nds1 = tf.data.Dataset.range(0,3)\nds2 = tf.data.Dataset.range(3,6)\nds3 = tf.data.Dataset.range(6,9)\nds_zip = tf.data.Dataset.zip((ds1,ds2,ds3))\nfor x,y,z in ds_zip:\n    print(x.numpy(),y.numpy(),z.numpy())\n\n```\n\n```\n0 3 6\n1 4 7\n2 5 8\n```\n\n```python\n#condatenate:将两个Dataset纵向连接。\n\nds1 = tf.data.Dataset.range(0,3)\nds2 = tf.data.Dataset.range(3,6)\nds_concat = tf.data.Dataset.concatenate(ds1,ds2)\nfor x in ds_concat:\n    print(x)\n```\n\n```\ntf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor(1, shape=(), dtype=int64)\ntf.Tensor(2, shape=(), dtype=int64)\ntf.Tensor(3, shape=(), dtype=int64)\ntf.Tensor(4, shape=(), dtype=int64)\ntf.Tensor(5, shape=(), dtype=int64)\n```\n\n```python\n#reduce:执行归并操作。\n\nds = tf.data.Dataset.from_tensor_slices([1,2,3,4,5.0])\nresult = ds.reduce(0.0,lambda x,y:tf.add(x,y))\nresult\n```\n\n```\n<tf.Tensor: shape=(), dtype=float32, numpy=15.0>\n```\n\n```python\n\n```\n\n```python\n#batch:构建批次，每次放一个批次。比原始数据增加一个维度。 其逆操作为unbatch。 \n\nds = tf.data.Dataset.range(12)\nds_batch = ds.batch(4)\nfor x in ds_batch:\n    print(x)\n```\n\n```\ntf.Tensor([0 1 2 3], shape=(4,), dtype=int64)\ntf.Tensor([4 5 6 7], shape=(4,), dtype=int64)\ntf.Tensor([ 8  9 10 11], shape=(4,), dtype=int64)\n```\n\n```python\n\n```\n\n```python\n#padded_batch:构建批次，类似batch, 但可以填充到相同的形状。\n\nelements = [[1, 2],[3, 4, 5],[6, 7],[8]]\nds = tf.data.Dataset.from_generator(lambda: iter(elements), tf.int32)\n\nds_padded_batch = ds.padded_batch(2,padded_shapes = [4,])\nfor x in ds_padded_batch:\n    print(x)    \n```\n\n```\ntf.Tensor(\n[[1 2 0 0]\n [3 4 5 0]], shape=(2, 4), dtype=int32)\ntf.Tensor(\n[[6 7 0 0]\n [8 0 0 0]], shape=(2, 4), dtype=int32)\n```\n\n```python\n\n```\n\n```python\n#window:构建滑动窗口，返回Dataset of Dataset.\n\nds = tf.data.Dataset.range(12)\n#window返回的是Dataset of Dataset,可以用flat_map压平\nds_window = ds.window(3, shift=1).flat_map(lambda x: x.batch(3,drop_remainder=True)) \nfor x in ds_window:\n    print(x)\n```\n\n```\ntf.Tensor([0 1 2], shape=(3,), dtype=int64)\ntf.Tensor([1 2 3], shape=(3,), dtype=int64)\ntf.Tensor([2 3 4], shape=(3,), dtype=int64)\ntf.Tensor([3 4 5], shape=(3,), dtype=int64)\ntf.Tensor([4 5 6], shape=(3,), dtype=int64)\ntf.Tensor([5 6 7], shape=(3,), dtype=int64)\ntf.Tensor([6 7 8], shape=(3,), dtype=int64)\ntf.Tensor([7 8 9], shape=(3,), dtype=int64)\ntf.Tensor([ 8  9 10], shape=(3,), dtype=int64)\ntf.Tensor([ 9 10 11], shape=(3,), dtype=int64)\n```\n\n```python\n\n```\n\n```python\n#shuffle:数据顺序洗牌。\n\nds = tf.data.Dataset.range(12)\nds_shuffle = ds.shuffle(buffer_size = 5)\nfor x in ds_shuffle:\n    print(x)\n    \n```\n\n```\ntf.Tensor(1, shape=(), dtype=int64)\ntf.Tensor(4, shape=(), dtype=int64)\ntf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor(6, shape=(), dtype=int64)\ntf.Tensor(5, shape=(), dtype=int64)\ntf.Tensor(2, shape=(), dtype=int64)\ntf.Tensor(7, shape=(), dtype=int64)\ntf.Tensor(11, shape=(), dtype=int64)\ntf.Tensor(3, shape=(), dtype=int64)\ntf.Tensor(9, shape=(), dtype=int64)\ntf.Tensor(10, shape=(), dtype=int64)\ntf.Tensor(8, shape=(), dtype=int64)\n```\n\n```python\n\n```\n\n```python\n#repeat:重复数据若干次，不带参数时，重复无数次。\n\nds = tf.data.Dataset.range(3)\nds_repeat = ds.repeat(3)\nfor x in ds_repeat:\n    print(x)\n```\n\n```\ntf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor(1, shape=(), dtype=int64)\ntf.Tensor(2, shape=(), dtype=int64)\ntf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor(1, shape=(), dtype=int64)\ntf.Tensor(2, shape=(), dtype=int64)\ntf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor(1, shape=(), dtype=int64)\ntf.Tensor(2, shape=(), dtype=int64)\n```\n\n```python\n#shard:采样，从某个位置开始隔固定距离采样一个元素。\n\nds = tf.data.Dataset.range(12)\nds_shard = ds.shard(3,index = 1)\n\nfor x in ds_shard:\n    print(x)\n```\n\n```\ntf.Tensor(1, shape=(), dtype=int64)\ntf.Tensor(4, shape=(), dtype=int64)\ntf.Tensor(7, shape=(), dtype=int64)\ntf.Tensor(10, shape=(), dtype=int64)\n```\n\n```python\n#take:采样，从开始位置取前几个元素。\n\nds = tf.data.Dataset.range(12)\nds_take = ds.take(3)\n\nlist(ds_take.as_numpy_iterator())\n\n```\n\n```\n[0, 1, 2]\n```\n\n```python\n\n```\n\n```python\n\n```\n\n### 三，提升管道性能\n\n\n训练深度学习模型常常会非常耗时。\n\n模型训练的耗时主要来自于两个部分，一部分来自**数据准备**，另一部分来自**参数迭代**。\n\n参数迭代过程的耗时通常依赖于GPU来提升。\n\n而数据准备过程的耗时则可以通过构建高效的数据管道进行提升。\n\n以下是一些构建高效数据管道的建议。\n\n* 1，使用 prefetch 方法让数据准备和参数迭代两个过程相互并行。\n\n* 2，使用 interleave 方法可以让数据读取过程多进程执行,并将不同来源数据夹在一起。\n\n* 3，使用 map 时设置num_parallel_calls 让数据转换过程多进行执行。\n\n* 4，使用 cache 方法让数据在第一个epoch后缓存到内存中，仅限于数据集不大情形。\n\n* 5，使用 map转换时，先batch, 然后采用向量化的转换方法对每个batch进行转换。\n\n```python\n\n```\n\n**1，使用 prefetch 方法让数据准备和参数迭代两个过程相互并行。**\n\n```python\nimport tensorflow as tf\n\n#打印时间分割线\n@tf.function\ndef printbar():\n    ts = tf.timestamp()\n    today_ts = ts%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8,end = \"\")\n    tf.print(timestring)\n    \n```\n\n```python\nimport time\n\n# 数据准备和参数迭代两个过程默认情况下是串行的。\n\n# 模拟数据准备\ndef generator():\n    for i in range(10):\n        #假设每次准备数据需要2s\n        time.sleep(2) \n        yield i \nds = tf.data.Dataset.from_generator(generator,output_types = (tf.int32))\n\n# 模拟参数迭代\ndef train_step():\n    #假设每一步训练需要1s\n    time.sleep(1) \n    \n```\n\n```python\n# 训练过程预计耗时 10*2+10*1+ = 30s\nprintbar()\ntf.print(tf.constant(\"start training...\"))\nfor x in ds:\n    train_step()  \nprintbar()\ntf.print(tf.constant(\"end training...\"))\n```\n\n```python\n# 使用 prefetch 方法让数据准备和参数迭代两个过程相互并行。\n\n# 训练过程预计耗时 max(10*2,10*1) = 20s\nprintbar()\ntf.print(tf.constant(\"start training with prefetch...\"))\n\n# tf.data.experimental.AUTOTUNE 可以让程序自动选择合适的参数\nfor x in ds.prefetch(buffer_size = tf.data.experimental.AUTOTUNE):\n    train_step()  \n    \nprintbar()\ntf.print(tf.constant(\"end training...\"))\n\n```\n\n```python\n\n```\n\n**2，使用 interleave 方法可以让数据读取过程多进程执行,并将不同来源数据夹在一起。**\n\n```python\nds_files = tf.data.Dataset.list_files(\"./data/titanic/*.csv\")\nds = ds_files.flat_map(lambda x:tf.data.TextLineDataset(x).skip(1))\nfor line in ds.take(4):\n    print(line)\n```\n\n```\ntf.Tensor(b'493,0,1,\"Molson, Mr. Harry Markland\",male,55.0,0,0,113787,30.5,C30,S', shape=(), dtype=string)\ntf.Tensor(b'53,1,1,\"Harper, Mrs. Henry Sleeper (Myna Haxtun)\",female,49.0,1,0,PC 17572,76.7292,D33,C', shape=(), dtype=string)\ntf.Tensor(b'388,1,2,\"Buss, Miss. Kate\",female,36.0,0,0,27849,13.0,,S', shape=(), dtype=string)\ntf.Tensor(b'192,0,2,\"Carbines, Mr. William\",male,19.0,0,0,28424,13.0,,S', shape=(), dtype=string)\n```\n\n```python\nds_files = tf.data.Dataset.list_files(\"./data/titanic/*.csv\")\nds = ds_files.interleave(lambda x:tf.data.TextLineDataset(x).skip(1))\nfor line in ds.take(8):\n    print(line)\n```\n\n```\ntf.Tensor(b'181,0,3,\"Sage, Miss. Constance Gladys\",female,,8,2,CA. 2343,69.55,,S', shape=(), dtype=string)\ntf.Tensor(b'493,0,1,\"Molson, Mr. Harry Markland\",male,55.0,0,0,113787,30.5,C30,S', shape=(), dtype=string)\ntf.Tensor(b'405,0,3,\"Oreskovic, Miss. Marija\",female,20.0,0,0,315096,8.6625,,S', shape=(), dtype=string)\ntf.Tensor(b'53,1,1,\"Harper, Mrs. Henry Sleeper (Myna Haxtun)\",female,49.0,1,0,PC 17572,76.7292,D33,C', shape=(), dtype=string)\ntf.Tensor(b'635,0,3,\"Skoog, Miss. Mabel\",female,9.0,3,2,347088,27.9,,S', shape=(), dtype=string)\ntf.Tensor(b'388,1,2,\"Buss, Miss. Kate\",female,36.0,0,0,27849,13.0,,S', shape=(), dtype=string)\ntf.Tensor(b'701,1,1,\"Astor, Mrs. John Jacob (Madeleine Talmadge Force)\",female,18.0,1,0,PC 17757,227.525,C62 C64,C', shape=(), dtype=string)\ntf.Tensor(b'192,0,2,\"Carbines, Mr. William\",male,19.0,0,0,28424,13.0,,S', shape=(), dtype=string)\n```\n\n```python\n\n```\n\n**3，使用 map 时设置num_parallel_calls 让数据转换过程多进行执行。**\n\n```python\nds = tf.data.Dataset.list_files(\"./data/cifar2/train/*/*.jpg\")\ndef load_image(img_path,size = (32,32)):\n    label = 1 if tf.strings.regex_full_match(img_path,\".*/automobile/.*\") else 0\n    img = tf.io.read_file(img_path)\n    img = tf.image.decode_jpeg(img) #注意此处为jpeg格式\n    img = tf.image.resize(img,size)\n    return(img,label)\n```\n\n```python\n#单进程转换\nprintbar()\ntf.print(tf.constant(\"start transformation...\"))\n\nds_map = ds.map(load_image)\nfor _ in ds_map:\n    pass\n\nprintbar()\ntf.print(tf.constant(\"end transformation...\"))\n```\n\n```python\n#多进程转换\nprintbar()\ntf.print(tf.constant(\"start parallel transformation...\"))\n\nds_map_parallel = ds.map(load_image,num_parallel_calls = tf.data.experimental.AUTOTUNE)\nfor _ in ds_map_parallel:\n    pass\n\nprintbar()\ntf.print(tf.constant(\"end parallel transformation...\"))\n```\n\n```python\n\n```\n\n**4，使用 cache 方法让数据在第一个epoch后缓存到内存中，仅限于数据集不大情形。**\n\n```python\nimport time\n\n# 模拟数据准备\ndef generator():\n    for i in range(5):\n        #假设每次准备数据需要2s\n        time.sleep(2) \n        yield i \nds = tf.data.Dataset.from_generator(generator,output_types = (tf.int32))\n\n# 模拟参数迭代\ndef train_step():\n    #假设每一步训练需要0s\n    pass\n\n# 训练过程预计耗时 (5*2+5*0)*3 = 30s\nprintbar()\ntf.print(tf.constant(\"start training...\"))\nfor epoch in tf.range(3):\n    for x in ds:\n        train_step()  \n    printbar()\n    tf.print(\"epoch =\",epoch,\" ended\")\nprintbar()\ntf.print(tf.constant(\"end training...\"))\n\n```\n\n```python\nimport time\n\n# 模拟数据准备\ndef generator():\n    for i in range(5):\n        #假设每次准备数据需要2s\n        time.sleep(2) \n        yield i \n\n# 使用 cache 方法让数据在第一个epoch后缓存到内存中，仅限于数据集不大情形。\nds = tf.data.Dataset.from_generator(generator,output_types = (tf.int32)).cache()\n\n# 模拟参数迭代\ndef train_step():\n    #假设每一步训练需要0s\n    time.sleep(0) \n\n# 训练过程预计耗时 (5*2+5*0)+(5*0+5*0)*2 = 10s\nprintbar()\ntf.print(tf.constant(\"start training...\"))\nfor epoch in tf.range(3):\n    for x in ds:\n        train_step()  \n    printbar()\n    tf.print(\"epoch =\",epoch,\" ended\")\nprintbar()\ntf.print(tf.constant(\"end training...\"))\n```\n\n```python\n\n```\n\n**5，使用 map转换时，先batch, 然后采用向量化的转换方法对每个batch进行转换。**\n\n```python\n#先map后batch\nds = tf.data.Dataset.range(100000)\nds_map_batch = ds.map(lambda x:x**2).batch(20)\n\nprintbar()\ntf.print(tf.constant(\"start scalar transformation...\"))\nfor x in ds_map_batch:\n    pass\nprintbar()\ntf.print(tf.constant(\"end scalar transformation...\"))\n\n```\n\n```python\n#先batch后map\nds = tf.data.Dataset.range(100000)\nds_batch_map = ds.batch(20).map(lambda x:x**2)\n\nprintbar()\ntf.print(tf.constant(\"start vector transformation...\"))\nfor x in ds_batch_map:\n    pass\nprintbar()\ntf.print(tf.constant(\"end vector transformation...\"))\n\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n```python\n\n```\n# 5-2,特征列feature_column\n\n特征列 通常用于对结构化数据实施特征工程时候使用，图像或者文本数据一般不会用到特征列。\n\n\n### 一，特征列用法概述\n\n\n使用特征列可以将类别特征转换为one-hot编码特征，将连续特征构建分桶特征，以及对多个特征生成交叉特征等等。\n\n\n要创建特征列，请调用 tf.feature_column 模块的函数。该模块中常用的九个函数如下图所示，所有九个函数都会返回一个 Categorical-Column 或一个 \nDense-Column 对象，但却不会返回 bucketized_column，后者继承自这两个类。\n\n注意：所有的Catogorical Column类型最终都要通过indicator_column转换成Dense Column类型才能传入模型！\n\n\n![](./data/特征列9种.jpg)\n\n\n* numeric_column 数值列，最常用。\n\n\n* bucketized_column 分桶列，由数值列生成，可以由一个数值列出多个特征，one-hot编码。\n\n\n* categorical_column_with_identity 分类标识列，one-hot编码，相当于分桶列每个桶为1个整数的情况。\n\n\n* categorical_column_with_vocabulary_list 分类词汇列，one-hot编码，由list指定词典。\n\n\n* categorical_column_with_vocabulary_file 分类词汇列，由文件file指定词典。\n\n\n* categorical_column_with_hash_bucket 哈希列，整数或词典较大时采用。\n\n\n* indicator_column 指标列，由Categorical Column生成，one-hot编码\n\n\n* embedding_column 嵌入列，由Categorical Column生成，嵌入矢量分布参数需要学习。嵌入矢量维数建议取类别数量的 4 次方根。\n\n\n* crossed_column 交叉列，可以由除categorical_column_with_hash_bucket的任意分类列构成。\n\n\n### 二，特征列使用范例\n\n\n以下是一个使用特征列解决Titanic生存问题的完整范例。\n\n```python\nimport datetime\nimport numpy as np\nimport pandas as pd\nfrom matplotlib import pyplot as plt\nimport tensorflow as tf\nfrom tensorflow.keras import layers,models\n\n\n#打印日志\ndef printlog(info):\n    nowtime = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')\n    print(\"\\n\"+\"==========\"*8 + \"%s\"%nowtime)\n    print(info+'...\\n\\n')\n\n\n    \n```\n\n```python\n#================================================================================\n# 一，构建数据管道\n#================================================================================\nprintlog(\"step1: prepare dataset...\")\n\n\ndftrain_raw = pd.read_csv(\"./data/titanic/train.csv\")\ndftest_raw = pd.read_csv(\"./data/titanic/test.csv\")\n\ndfraw = pd.concat([dftrain_raw,dftest_raw])\n\ndef prepare_dfdata(dfraw):\n    dfdata = dfraw.copy()\n    dfdata.columns = [x.lower() for x in dfdata.columns]\n    dfdata = dfdata.rename(columns={'survived':'label'})\n    dfdata = dfdata.drop(['passengerid','name'],axis = 1)\n    for col,dtype in dict(dfdata.dtypes).items():\n        # 判断是否包含缺失值\n        if dfdata[col].hasnans:\n            # 添加标识是否缺失列\n            dfdata[col + '_nan'] = pd.isna(dfdata[col]).astype('int32')\n            # 填充\n            if dtype not in [np.object,np.str,np.unicode]:\n                dfdata[col].fillna(dfdata[col].mean(),inplace = True)\n            else:\n                dfdata[col].fillna('',inplace = True)\n    return(dfdata)\n\ndfdata = prepare_dfdata(dfraw)\ndftrain = dfdata.iloc[0:len(dftrain_raw),:]\ndftest = dfdata.iloc[len(dftrain_raw):,:]\n\n\n\n# 从 dataframe 导入数据 \ndef df_to_dataset(df, shuffle=True, batch_size=32):\n    dfdata = df.copy()\n    if 'label' not in dfdata.columns:\n        ds = tf.data.Dataset.from_tensor_slices(dfdata.to_dict(orient = 'list'))\n    else: \n        labels = dfdata.pop('label')\n        ds = tf.data.Dataset.from_tensor_slices((dfdata.to_dict(orient = 'list'), labels))  \n    if shuffle:\n        ds = ds.shuffle(buffer_size=len(dfdata))\n    ds = ds.batch(batch_size)\n    return ds\n\nds_train = df_to_dataset(dftrain)\nds_test = df_to_dataset(dftest)\n```\n\n```python\n#================================================================================\n# 二，定义特征列\n#================================================================================\nprintlog(\"step2: make feature columns...\")\n\nfeature_columns = []\n\n# 数值列\nfor col in ['age','fare','parch','sibsp'] + [\n    c for c in dfdata.columns if c.endswith('_nan')]:\n    feature_columns.append(tf.feature_column.numeric_column(col))\n\n# 分桶列\nage = tf.feature_column.numeric_column('age')\nage_buckets = tf.feature_column.bucketized_column(age, \n             boundaries=[18, 25, 30, 35, 40, 45, 50, 55, 60, 65])\nfeature_columns.append(age_buckets)\n\n# 类别列\n# 注意：所有的Catogorical Column类型最终都要通过indicator_column转换成Dense Column类型才能传入模型！！\nsex = tf.feature_column.indicator_column(\n      tf.feature_column.categorical_column_with_vocabulary_list(\n      key='sex',vocabulary_list=[\"male\", \"female\"]))\nfeature_columns.append(sex)\n\npclass = tf.feature_column.indicator_column(\n      tf.feature_column.categorical_column_with_vocabulary_list(\n      key='pclass',vocabulary_list=[1,2,3]))\nfeature_columns.append(pclass)\n\nticket = tf.feature_column.indicator_column(\n     tf.feature_column.categorical_column_with_hash_bucket('ticket',3))\nfeature_columns.append(ticket)\n\nembarked = tf.feature_column.indicator_column(\n      tf.feature_column.categorical_column_with_vocabulary_list(\n      key='embarked',vocabulary_list=['S','C','B']))\nfeature_columns.append(embarked)\n\n# 嵌入列\ncabin = tf.feature_column.embedding_column(\n    tf.feature_column.categorical_column_with_hash_bucket('cabin',32),2)\nfeature_columns.append(cabin)\n\n# 交叉列\npclass_cate = tf.feature_column.categorical_column_with_vocabulary_list(\n          key='pclass',vocabulary_list=[1,2,3])\n\ncrossed_feature = tf.feature_column.indicator_column(\n    tf.feature_column.crossed_column([age_buckets, pclass_cate],hash_bucket_size=15))\n\nfeature_columns.append(crossed_feature)\n\n```\n\n```python\n#================================================================================\n# 三，定义模型\n#================================================================================\nprintlog(\"step3: define model...\")\n\ntf.keras.backend.clear_session()\nmodel = tf.keras.Sequential([\n  layers.DenseFeatures(feature_columns), #将特征列放入到tf.keras.layers.DenseFeatures中!!!\n  layers.Dense(64, activation='relu'),\n  layers.Dense(64, activation='relu'),\n  layers.Dense(1, activation='sigmoid')\n])\n\n```\n\n```python\n#================================================================================\n# 四，训练模型\n#================================================================================\nprintlog(\"step4: train model...\")\n\nmodel.compile(optimizer='adam',\n              loss='binary_crossentropy',\n              metrics=['accuracy'])\n\nhistory = model.fit(ds_train,\n          validation_data=ds_test,\n          epochs=10)\n```\n\n```python\n#================================================================================\n# 五，评估模型\n#================================================================================\nprintlog(\"step5: eval model...\")\n\nmodel.summary()\n\n\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nimport matplotlib.pyplot as plt\n\ndef plot_metric(history, metric):\n    train_metrics = history.history[metric]\n    val_metrics = history.history['val_'+metric]\n    epochs = range(1, len(train_metrics) + 1)\n    plt.plot(epochs, train_metrics, 'bo--')\n    plt.plot(epochs, val_metrics, 'ro-')\n    plt.title('Training and validation '+ metric)\n    plt.xlabel(\"Epochs\")\n    plt.ylabel(metric)\n    plt.legend([\"train_\"+metric, 'val_'+metric])\n    plt.show()\n\nplot_metric(history,\"accuracy\")\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ndense_features (DenseFeature multiple                  64        \n_________________________________________________________________\ndense (Dense)                multiple                  3008      \n_________________________________________________________________\ndense_1 (Dense)              multiple                  4160      \n_________________________________________________________________\ndense_2 (Dense)              multiple                  65        \n=================================================================\nTotal params: 7,297\nTrainable params: 7,297\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n\n![](./data/5-2-01-模型评估.jpg)\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n\n\n# 5-3,激活函数activation\n\n激活函数在深度学习中扮演着非常重要的角色，它给网络赋予了非线性，从而使得神经网络能够拟合任意复杂的函数。\n\n如果没有激活函数，无论多复杂的网络，都等价于单一的线性变换，无法对非线性函数进行拟合。\n\n目前，深度学习中最流行的激活函数为 relu, 但也有些新推出的激活函数，例如 swish、GELU 据称效果优于relu激活函数。\n\n激活函数的综述介绍可以参考下面两篇文章。\n\n[《一文概览深度学习中的激活函数》](https://zhuanlan.zhihu.com/p/98472075)\n\nhttps://zhuanlan.zhihu.com/p/98472075\n\n[《从ReLU到GELU,一文概览神经网络中的激活函数》](https://zhuanlan.zhihu.com/p/98863801)\n\nhttps://zhuanlan.zhihu.com/p/98863801\n\n\n\n### 一，常用激活函数\n\n\n* tf.nn.sigmoid：将实数压缩到0到1之间，一般只在二分类的最后输出层使用。主要缺陷为存在梯度消失问题，计算复杂度高，输出不以0为中心。\n\n![](./data/sigmoid.png)\n\n* tf.nn.softmax：sigmoid的多分类扩展，一般只在多分类问题的最后输出层使用。\n\n![](./data/softmax说明.jpg)\n\n* tf.nn.tanh：将实数压缩到-1到1之间，输出期望为0。主要缺陷为存在梯度消失问题，计算复杂度高。\n\n![](./data/tanh.png)\n\n* tf.nn.relu：修正线性单元，最流行的激活函数。一般隐藏层使用。主要缺陷是：输出不以0为中心，输入小于0时存在梯度消失问题(死亡relu)。\n\n![](./data/relu.png)\n\n* tf.nn.leaky_relu：对修正线性单元的改进，解决了死亡relu问题。\n\n![](./data/leaky_relu.png)\n\n* tf.nn.elu：指数线性单元。对relu的改进，能够缓解死亡relu问题。\n\n![](./data/elu.png)\n\n* tf.nn.selu：扩展型指数线性单元。在权重用tf.keras.initializers.lecun_normal初始化前提下能够对神经网络进行自归一化。不可能出现梯度爆炸或者梯度消失问题。需要和Dropout的变种AlphaDropout一起使用。\n\n![](./data/selu.png)\n\n* tf.nn.swish：自门控激活函数。谷歌出品，相关研究指出用swish替代relu将获得轻微效果提升。\n\n![](./data/swish.png)\n\n* gelu：高斯误差线性单元激活函数。在Transformer中表现最好。tf.nn模块尚没有实现该函数。\n\n![](./data/gelu.png)\n\n```python\n\n```\n\n### 二，在模型中使用激活函数\n\n\n在keras模型中使用激活函数一般有两种方式，一种是作为某些层的activation参数指定，另一种是显式添加layers.Activation激活层。\n\n```python\nimport numpy as np\nimport pandas as pd\nimport tensorflow as tf\nfrom tensorflow.keras import layers,models\n\ntf.keras.backend.clear_session()\n\nmodel = models.Sequential()\nmodel.add(layers.Dense(32,input_shape = (None,16),activation = tf.nn.relu)) #通过activation参数指定\nmodel.add(layers.Dense(10))\nmodel.add(layers.Activation(tf.nn.softmax))  # 显式添加layers.Activation激活层\nmodel.summary()\n\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n```python\n\n```\n# 5-4,模型层layers\n\n深度学习模型一般由各种模型层组合而成。\n\ntf.keras.layers内置了非常丰富的各种功能的模型层。例如，\n\nlayers.Dense,layers.Flatten,layers.Input,layers.DenseFeature,layers.Dropout\n\nlayers.Conv2D,layers.MaxPooling2D,layers.Conv1D\n\nlayers.Embedding,layers.GRU,layers.LSTM,layers.Bidirectional等等。\n\n如果这些内置模型层不能够满足需求，我们也可以通过编写tf.keras.Lambda匿名模型层或继承tf.keras.layers.Layer基类构建自定义的模型层。\n\n其中tf.keras.Lambda匿名模型层只适用于构造没有学习参数的模型层。\n\n```python\n\n```\n\n### 一，内置模型层\n\n```python\n\n```\n\n一些常用的内置模型层简单介绍如下。\n\n**基础层**\n\n* Dense：密集连接层。参数个数 = 输入层特征数× 输出层特征数(weight)＋ 输出层特征数(bias)\n\n* Activation：激活函数层。一般放在Dense层后面，等价于在Dense层中指定activation。\n\n* Dropout：随机置零层。训练期间以一定几率将输入置0，一种正则化手段。\n\n* BatchNormalization：批标准化层。通过线性变换将输入批次缩放平移到稳定的均值和标准差。可以增强模型对输入不同分布的适应性，加快模型训练速度，有轻微正则化效果。一般在激活函数之前使用。\n\n* SpatialDropout2D：空间随机置零层。训练期间以一定几率将整个特征图置0，一种正则化手段，有利于避免特征图之间过高的相关性。\n\n* Input：输入层。通常使用Functional API方式构建模型时作为第一层。\n\n* DenseFeature：特征列接入层，用于接收一个特征列列表并产生一个密集连接层。\n\n* Flatten：压平层，用于将多维张量压成一维。\n\n* Reshape：形状重塑层，改变输入张量的形状。\n\n* Concatenate：拼接层，将多个张量在某个维度上拼接。\n\n* Add：加法层。\n\n* Subtract： 减法层。\n\n* Maximum：取最大值层。\n\n* Minimum：取最小值层。\n\n\n**卷积网络相关层**\n\n* Conv1D：普通一维卷积，常用于文本。参数个数 = 输入通道数×卷积核尺寸(如3)×卷积核个数\n\n* Conv2D：普通二维卷积，常用于图像。参数个数 = 输入通道数×卷积核尺寸(如3乘3)×卷积核个数\n\n* Conv3D：普通三维卷积，常用于视频。参数个数 = 输入通道数×卷积核尺寸(如3乘3乘3)×卷积核个数\n\n* SeparableConv2D：二维深度可分离卷积层。不同于普通卷积同时对区域和通道操作，深度可分离卷积先操作区域，再操作通道。即先对每个通道做独立卷即先操作区域，再用1乘1卷积跨通道组合即再操作通道。参数个数 = 输入通道数×卷积核尺寸 + 输入通道数×1×1×输出通道数。深度可分离卷积的参数数量一般远小于普通卷积，效果一般也更好。\n\n* DepthwiseConv2D：二维深度卷积层。仅有SeparableConv2D前半部分操作，即只操作区域，不操作通道，一般输出通道数和输入通道数相同，但也可以通过设置depth_multiplier让输出通道为输入通道的若干倍数。输出通道数 = 输入通道数 × depth_multiplier。参数个数 = 输入通道数×卷积核尺寸× depth_multiplier。\n\n* Conv2DTranspose：二维卷积转置层，俗称反卷积层。并非卷积的逆操作，但在卷积核相同的情况下，当其输入尺寸是卷积操作输出尺寸的情况下，卷积转置的输出尺寸恰好是卷积操作的输入尺寸。\n\n* LocallyConnected2D: 二维局部连接层。类似Conv2D，唯一的差别是没有空间上的权值共享，所以其参数个数远高于二维卷积。\n\n* MaxPooling2D: 二维最大池化层。也称作下采样层。池化层无参数，主要作用是降维。\n\n* AveragePooling2D: 二维平均池化层。\n\n* GlobalMaxPool2D: 全局最大池化层。每个通道仅保留一个值。一般从卷积层过渡到全连接层时使用，是Flatten的替代方案。\n\n* GlobalAvgPool2D: 全局平均池化层。每个通道仅保留一个值。\n\n\n**循环网络相关层**\n\n* Embedding：嵌入层。一种比Onehot更加有效的对离散特征进行编码的方法。一般用于将输入中的单词映射为稠密向量。嵌入层的参数需要学习。\n\n* LSTM：长短记忆循环网络层。最普遍使用的循环网络层。具有携带轨道，遗忘门，更新门，输出门。可以较为有效地缓解梯度消失问题，从而能够适用长期依赖问题。设置return_sequences = True时可以返回各个中间步骤输出，否则只返回最终输出。\n\n* GRU：门控循环网络层。LSTM的低配版，不具有携带轨道，参数数量少于LSTM，训练速度更快。\n\n* SimpleRNN：简单循环网络层。容易存在梯度消失，不能够适用长期依赖问题。一般较少使用。\n\n* ConvLSTM2D：卷积长短记忆循环网络层。结构上类似LSTM，但对输入的转换操作和对状态的转换操作都是卷积运算。\n\n* Bidirectional：双向循环网络包装器。可以将LSTM，GRU等层包装成双向循环网络。从而增强特征提取能力。\n\n* RNN：RNN基本层。接受一个循环网络单元或一个循环单元列表，通过调用tf.keras.backend.rnn函数在序列上进行迭代从而转换成循环网络层。\n\n* LSTMCell：LSTM单元。和LSTM在整个序列上迭代相比，它仅在序列上迭代一步。可以简单理解LSTM即RNN基本层包裹LSTMCell。\n\n* GRUCell：GRU单元。和GRU在整个序列上迭代相比，它仅在序列上迭代一步。\n\n* SimpleRNNCell：SimpleRNN单元。和SimpleRNN在整个序列上迭代相比，它仅在序列上迭代一步。\n\n* AbstractRNNCell：抽象RNN单元。通过对它的子类化用户可以自定义RNN单元，再通过RNN基本层的包裹实现用户自定义循环网络层。\n\n* Attention：Dot-product类型注意力机制层。可以用于构建注意力模型。\n\n* AdditiveAttention：Additive类型注意力机制层。可以用于构建注意力模型。\n\n* TimeDistributed：时间分布包装器。包装后可以将Dense、Conv2D等作用到每一个时间片段上。\n\n```python\n\n```\n\n### 二，自定义模型层\n\n\n如果自定义模型层没有需要被训练的参数，一般推荐使用Lamda层实现。\n\n如果自定义模型层有需要被训练的参数，则可以通过对Layer基类子类化实现。\n\nLamda层由于没有需要被训练的参数，只需要定义正向传播逻辑即可，使用比Layer基类子类化更加简单。\n\nLamda层的正向逻辑可以使用Python的lambda函数来表达，也可以用def关键字定义函数来表达。\n\n```python\nimport tensorflow as tf\nfrom tensorflow.keras import layers,models,regularizers\n\nmypower = layers.Lambda(lambda x:tf.math.pow(x,2))\nmypower(tf.range(5))\n```\n\n```\n<tf.Tensor: shape=(5,), dtype=int32, numpy=array([ 0,  1,  4,  9, 16], dtype=int32)>\n```\n\n\nLayer的子类化一般需要重新实现初始化方法，Build方法和Call方法。下面是一个简化的线性层的范例，类似Dense.\n\n```python\nclass Linear(layers.Layer):\n    def __init__(self, units=32, **kwargs):\n        super(Linear, self).__init__(**kwargs)\n        self.units = units\n\n    #build方法一般定义Layer需要被训练的参数。    \n    def build(self, input_shape): \n        self.w = self.add_weight(shape=(input_shape[-1], self.units),\n                                 initializer='random_normal',\n                                 trainable=True)\n        self.b = self.add_weight(shape=(self.units,),\n                                 initializer='random_normal',\n                                 trainable=True)\n        super(Linear,self).build(input_shape) # 相当于设置self.built = True\n\n    #call方法一般定义正向传播运算逻辑，__call__方法调用了它。    \n    def call(self, inputs): \n        return tf.matmul(inputs, self.w) + self.b\n    \n    #如果要让自定义的Layer通过Functional API 组合成模型时可以序列化，需要自定义get_config方法。\n    def get_config(self):  \n        config = super(Linear, self).get_config()\n        config.update({'units': self.units})\n        return config\n\n```\n\n```python\nlinear = Linear(units = 8)\nprint(linear.built)\n#指定input_shape，显式调用build方法，第0维代表样本数量，用None填充\nlinear.build(input_shape = (None,16)) \nprint(linear.built)\n```\n\n```\nFalse\nTrue\n```\n\n```python\nlinear = Linear(units = 8)\nprint(linear.built)\nlinear.build(input_shape = (None,16)) \nprint(linear.compute_output_shape(input_shape = (None,16)))\n```\n\n```\nFalse\n(None, 8)\n```\n\n```python\nlinear = Linear(units = 16)\nprint(linear.built)\n#如果built = False，调用__call__时会先调用build方法, 再调用call方法。\nlinear(tf.random.uniform((100,64))) \nprint(linear.built)\nconfig = linear.get_config()\nprint(config)\n```\n\n```\nFalse\nTrue\n{'name': 'linear_3', 'trainable': True, 'dtype': 'float32', 'units': 16}\n```\n\n```python\ntf.keras.backend.clear_session()\n\nmodel = models.Sequential()\n#注意该处的input_shape会被模型加工，无需使用None代表样本数量维\nmodel.add(Linear(units = 16,input_shape = (64,)))  \nprint(\"model.input_shape: \",model.input_shape)\nprint(\"model.output_shape: \",model.output_shape)\nmodel.summary()\n```\n\n```\nmodel.input_shape:  (None, 64)\nmodel.output_shape:  (None, 16)\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nlinear (Linear)              (None, 16)                1040      \n=================================================================\nTotal params: 1,040\nTrainable params: 1,040\nNon-trainable params: 0\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n```python\n\n```\n# 5-5,损失函数losses\n\n一般来说，监督学习的目标函数由损失函数和正则化项组成。（Objective = Loss + Regularization）\n\n对于keras模型，目标函数中的正则化项一般在各层中指定，例如使用Dense的 kernel_regularizer 和 bias_regularizer等参数指定权重使用l1或者l2正则化项，此外还可以用kernel_constraint 和 bias_constraint等参数约束权重的取值范围，这也是一种正则化手段。\n\n损失函数在模型编译时候指定。对于回归模型，通常使用的损失函数是平方损失函数 mean_squared_error。\n\n对于二分类模型，通常使用的是二元交叉熵损失函数 binary_crossentropy。\n\n对于多分类模型，如果label是类别序号编码的，则使用类别交叉熵损失函数 categorical_crossentropy。如果label进行了one-hot编码，则需要使用稀疏类别交叉熵损失函数 sparse_categorical_crossentropy。\n\n如果有需要，也可以自定义损失函数，自定义损失函数需要接收两个张量y_true,y_pred作为输入参数，并输出一个标量作为损失函数值。\n\n\n```python\nimport numpy as np\nimport pandas as pd\nimport tensorflow as tf\nfrom tensorflow.keras import layers,models,losses,regularizers,constraints\n```\n\n### 一，损失函数和正则化项\n\n```python\ntf.keras.backend.clear_session()\n\nmodel = models.Sequential()\nmodel.add(layers.Dense(64, input_dim=64,\n                kernel_regularizer=regularizers.l2(0.01), \n                activity_regularizer=regularizers.l1(0.01),\n                kernel_constraint = constraints.MaxNorm(max_value=2, axis=0))) \nmodel.add(layers.Dense(10,\n        kernel_regularizer=regularizers.l1_l2(0.01,0.01),activation = \"sigmoid\"))\nmodel.compile(optimizer = \"rmsprop\",\n        loss = \"sparse_categorical_crossentropy\",metrics = [\"AUC\"])\nmodel.summary()\n\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ndense (Dense)                (None, 64)                4160      \n_________________________________________________________________\ndense_1 (Dense)              (None, 10)                650       \n=================================================================\nTotal params: 4,810\nTrainable params: 4,810\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n\n### 二，内置损失函数\n\n\n内置的损失函数一般有类的实现和函数的实现两种形式。\n\n如：CategoricalCrossentropy 和 categorical_crossentropy 都是类别交叉熵损失函数，前者是类的实现形式，后者是函数的实现形式。\n\n常用的一些内置损失函数说明如下。\n\n* mean_squared_error（平方差误差损失，用于回归，简写为 mse, 类实现形式为 MeanSquaredError 和 MSE）\n\n* mean_absolute_error (绝对值误差损失，用于回归，简写为 mae, 类实现形式为 MeanAbsoluteError 和 MAE)\n\n* mean_absolute_percentage_error (平均百分比误差损失，用于回归，简写为 mape, 类实现形式为 MeanAbsolutePercentageError 和 MAPE)\n\n* Huber(Huber损失，只有类实现形式，用于回归，介于mse和mae之间，对异常值比较鲁棒，相对mse有一定的优势)\n\n* binary_crossentropy(二元交叉熵，用于二分类，类实现形式为 BinaryCrossentropy)\n\n* categorical_crossentropy(类别交叉熵，用于多分类，要求label为onehot编码，类实现形式为 CategoricalCrossentropy)\n\n* sparse_categorical_crossentropy(稀疏类别交叉熵，用于多分类，要求label为序号编码形式，类实现形式为 SparseCategoricalCrossentropy)\n\n* hinge(合页损失函数，用于二分类，最著名的应用是作为支持向量机SVM的损失函数，类实现形式为 Hinge)\n\n* kld(相对熵损失，也叫KL散度，常用于最大期望算法EM的损失函数，两个概率分布差异的一种信息度量。类实现形式为 KLDivergence 或 KLD)\n\n* cosine_similarity(余弦相似度，可用于多分类，类实现形式为 CosineSimilarity)\n\n```python\n\n```\n\n### 三，自定义损失函数\n\n\n自定义损失函数接收两个张量y_true,y_pred作为输入参数，并输出一个标量作为损失函数值。\n\n也可以对tf.keras.losses.Loss进行子类化，重写call方法实现损失的计算逻辑，从而得到损失函数的类的实现。\n\n下面是一个Focal Loss的自定义实现示范。Focal Loss是一种对binary_crossentropy的改进损失函数形式。\n\n在类别不平衡和存在难以训练样本的情形下相对于二元交叉熵能够取得更好的效果。\n\n详见《如何评价Kaiming的Focal Loss for Dense Object Detection？》\n\nhttps://www.zhihu.com/question/63581984\n\n```python\ndef focal_loss(gamma=2., alpha=.25):\n    \n    def focal_loss_fixed(y_true, y_pred):\n        pt_1 = tf.where(tf.equal(y_true, 1), y_pred, tf.ones_like(y_pred))\n        pt_0 = tf.where(tf.equal(y_true, 0), y_pred, tf.zeros_like(y_pred))\n        loss = -tf.sum(alpha * tf.pow(1. - pt_1, gamma) * tf.log(1e-07+pt_1)) \\\n           -tf.sum((1-alpha) * tf.pow( pt_0, gamma) * tf.log(1. - pt_0 + 1e-07))\n        return loss\n    return focal_loss_fixed\n\n```\n\n```python\nclass FocalLoss(losses.Loss):\n    \n    def __init__(self,gamma=2.0,alpha=0.25):\n        self.gamma = gamma\n        self.alpha = alpha\n\n    def call(self,y_true,y_pred):\n        \n        pt_1 = tf.where(tf.equal(y_true, 1), y_pred, tf.ones_like(y_pred))\n        pt_0 = tf.where(tf.equal(y_true, 0), y_pred, tf.zeros_like(y_pred))\n        loss = -tf.sum(self.alpha * tf.pow(1. - pt_1, self.gamma) * tf.log(1e-07+pt_1)) \\\n           -tf.sum((1-self.alpha) * tf.pow( pt_0, self.gamma) * tf.log(1. - pt_0 + 1e-07))\n        return loss\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n```python\n\n```\n# 5-6,评估指标metrics\n\n损失函数除了作为模型训练时候的优化目标，也能够作为模型好坏的一种评价指标。但通常人们还会从其它角度评估模型的好坏。\n\n这就是评估指标。通常损失函数都可以作为评估指标，如MAE,MSE,CategoricalCrossentropy等也是常用的评估指标。\n\n但评估指标不一定可以作为损失函数，例如AUC,Accuracy,Precision。因为评估指标不要求连续可导，而损失函数通常要求连续可导。\n\n编译模型时，可以通过列表形式指定多个评估指标。\n\n如果有需要，也可以自定义评估指标。\n\n自定义评估指标需要接收两个张量y_true,y_pred作为输入参数，并输出一个标量作为评估值。\n\n也可以对tf.keras.metrics.Metric进行子类化，重写初始化方法, update_state方法, result方法实现评估指标的计算逻辑，从而得到评估指标的类的实现形式。\n\n由于训练的过程通常是分批次训练的，而评估指标要跑完一个epoch才能够得到整体的指标结果。因此，类形式的评估指标更为常见。即需要编写初始化方法以创建与计算指标结果相关的一些中间变量，编写update_state方法在每个batch后更新相关中间变量的状态，编写result方法输出最终指标结果。\n\n如果编写函数形式的评估指标，则只能取epoch中各个batch计算的评估指标结果的平均值作为整个epoch上的评估指标结果，这个结果通常会偏离拿整个epoch数据一次计算的结果。\n\n\n\n### 一，常用的内置评估指标\n\n\n* MeanSquaredError（平方差误差，用于回归，可以简写为MSE，函数形式为mse）\n\n* MeanAbsoluteError (绝对值误差，用于回归，可以简写为MAE，函数形式为mae)\n\n* MeanAbsolutePercentageError (平均百分比误差，用于回归，可以简写为MAPE，函数形式为mape)\n\n* RootMeanSquaredError (均方根误差，用于回归)\n\n* Accuracy (准确率，用于分类，可以用字符串\"Accuracy\"表示，Accuracy=(TP+TN)/(TP+TN+FP+FN)，要求y_true和y_pred都为类别序号编码)\n\n* Precision (精确率，用于二分类，Precision = TP/(TP+FP))\n\n* Recall (召回率，用于二分类，Recall = TP/(TP+FN))\n\n* TruePositives (真正例，用于二分类)\n\n* TrueNegatives (真负例，用于二分类)\n\n* FalsePositives (假正例，用于二分类)\n\n* FalseNegatives (假负例，用于二分类)\n\n* AUC(ROC曲线(TPR vs FPR)下的面积，用于二分类，直观解释为随机抽取一个正样本和一个负样本，正样本的预测值大于负样本的概率)\n\n* CategoricalAccuracy（分类准确率，与Accuracy含义相同，要求y_true(label)为onehot编码形式）\n\n* SparseCategoricalAccuracy (稀疏分类准确率，与Accuracy含义相同，要求y_true(label)为序号编码形式)\n\n* MeanIoU (Intersection-Over-Union，常用于图像分割)\n\n* TopKCategoricalAccuracy (多分类TopK准确率，要求y_true(label)为onehot编码形式)\n\n* SparseTopKCategoricalAccuracy (稀疏多分类TopK准确率，要求y_true(label)为序号编码形式)\n\n* Mean (平均值)\n\n* Sum (求和)\n\n```python\n\n```\n\n```python\n\n```\n\n### 二， 自定义评估指标\n\n\n我们以金融风控领域常用的KS指标为例，示范自定义评估指标。\n\nKS指标适合二分类问题，其计算方式为 KS=max(TPR-FPR).\n\n其中TPR=TP/(TP+FN) , FPR = FP/(FP+TN) \n\nTPR曲线实际上就是正样本的累积分布曲线(CDF)，FPR曲线实际上就是负样本的累积分布曲线(CDF)。\n\nKS指标就是正样本和负样本累积分布曲线差值的最大值。\n\n![](./data/KS_curve.png)\n\n```python\nimport numpy as np\nimport pandas as pd\nimport tensorflow as tf\nfrom tensorflow.keras import layers,models,losses,metrics\n\n#函数形式的自定义评估指标\n@tf.function\ndef ks(y_true,y_pred):\n    y_true = tf.reshape(y_true,(-1,))\n    y_pred = tf.reshape(y_pred,(-1,))\n    length = tf.shape(y_true)[0]\n    t = tf.math.top_k(y_pred,k = length,sorted = False)\n    y_pred_sorted = tf.gather(y_pred,t.indices)\n    y_true_sorted = tf.gather(y_true,t.indices)\n    cum_positive_ratio = tf.truediv(\n        tf.cumsum(y_true_sorted),tf.reduce_sum(y_true_sorted))\n    cum_negative_ratio = tf.truediv(\n        tf.cumsum(1 - y_true_sorted),tf.reduce_sum(1 - y_true_sorted))\n    ks_value = tf.reduce_max(tf.abs(cum_positive_ratio - cum_negative_ratio)) \n    return ks_value\n```\n\n```python\ny_true = tf.constant([[1],[1],[1],[0],[1],[1],[1],[0],[0],[0],[1],[0],[1],[0]])\ny_pred = tf.constant([[0.6],[0.1],[0.4],[0.5],[0.7],[0.7],[0.7],\n                      [0.4],[0.4],[0.5],[0.8],[0.3],[0.5],[0.3]])\ntf.print(ks(y_true,y_pred))\n```\n\n```\n0.625\n```\n\n```python\n#类形式的自定义评估指标\nclass KS(metrics.Metric):\n    \n    def __init__(self, name = \"ks\", **kwargs):\n        super(KS,self).__init__(name=name,**kwargs)\n        self.true_positives = self.add_weight(\n            name = \"tp\",shape = (101,), initializer = \"zeros\")\n        self.false_positives = self.add_weight(\n            name = \"fp\",shape = (101,), initializer = \"zeros\")\n   \n    @tf.function\n    def update_state(self,y_true,y_pred):\n        y_true = tf.cast(tf.reshape(y_true,(-1,)),tf.bool)\n        y_pred = tf.cast(100*tf.reshape(y_pred,(-1,)),tf.int32)\n        \n        for i in tf.range(0,tf.shape(y_true)[0]):\n            if y_true[i]:\n                self.true_positives[y_pred[i]].assign(\n                    self.true_positives[y_pred[i]]+1.0)\n            else:\n                self.false_positives[y_pred[i]].assign(\n                    self.false_positives[y_pred[i]]+1.0)\n        return (self.true_positives,self.false_positives)\n    \n    @tf.function\n    def result(self):\n        cum_positive_ratio = tf.truediv(\n            tf.cumsum(self.true_positives),tf.reduce_sum(self.true_positives))\n        cum_negative_ratio = tf.truediv(\n            tf.cumsum(self.false_positives),tf.reduce_sum(self.false_positives))\n        ks_value = tf.reduce_max(tf.abs(cum_positive_ratio - cum_negative_ratio)) \n        return ks_value\n\n```\n\n```python\ny_true = tf.constant([[1],[1],[1],[0],[1],[1],[1],[0],[0],[0],[1],[0],[1],[0]])\ny_pred = tf.constant([[0.6],[0.1],[0.4],[0.5],[0.7],[0.7],\n                      [0.7],[0.4],[0.4],[0.5],[0.8],[0.3],[0.5],[0.3]])\n\nmyks = KS()\nmyks.update_state(y_true,y_pred)\ntf.print(myks.result())\n\n```\n\n```\n0.625\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n# 5-7,优化器optimizers\n\n机器学习界有一群炼丹师，他们每天的日常是：\n\n拿来药材（数据），架起八卦炉（模型），点着六味真火（优化算法），就摇着蒲扇等着丹药出炉了。\n\n不过，当过厨子的都知道，同样的食材，同样的菜谱，但火候不一样了，这出来的口味可是千差万别。火小了夹生，火大了易糊，火不匀则半生半糊。\n\n机器学习也是一样，模型优化算法的选择直接关系到最终模型的性能。有时候效果不好，未必是特征的问题或者模型设计的问题，很可能就是优化算法的问题。\n\n深度学习优化算法大概经历了 SGD -> SGDM -> NAG ->Adagrad -> Adadelta(RMSprop) -> Adam -> Nadam 这样的发展历程。\n\n详见《一个框架看懂优化算法之异同 SGD/AdaGrad/Adam》\n\nhttps://zhuanlan.zhihu.com/p/32230623\n\n对于一般新手炼丹师，优化器直接使用Adam，并使用其默认参数就OK了。\n\n一些爱写论文的炼丹师由于追求评估指标效果，可能会偏爱前期使用Adam优化器快速下降，后期使用SGD并精调优化器参数得到更好的结果。\n\n此外目前也有一些前沿的优化算法，据称效果比Adam更好，例如LazyAdam, Look-ahead, RAdam, Ranger等.\n\n\n```python\n\n```\n\n### 一，优化器的使用\n\n\n优化器主要使用apply_gradients方法传入变量和对应梯度从而来对给定变量进行迭代，或者直接使用minimize方法对目标函数进行迭代优化。\n\n当然，更常见的使用是在编译时将优化器传入keras的Model,通过调用model.fit实现对Loss的的迭代优化。\n\n初始化优化器时会创建一个变量optimier.iterations用于记录迭代的次数。因此优化器和tf.Variable一样，一般需要在@tf.function外创建。\n\n```python\nimport tensorflow as tf\nimport numpy as np \n\n#打印时间分割线\n@tf.function\ndef printbar():\n    ts = tf.timestamp()\n    today_ts = ts%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8,end = \"\")\n    tf.print(timestring)\n    \n```\n\n```python\n# 求f(x) = a*x**2 + b*x + c的最小值\n\n# 使用optimizer.apply_gradients\n\nx = tf.Variable(0.0,name = \"x\",dtype = tf.float32)\noptimizer = tf.keras.optimizers.SGD(learning_rate=0.01)\n\n@tf.function\ndef minimizef():\n    a = tf.constant(1.0)\n    b = tf.constant(-2.0)\n    c = tf.constant(1.0)\n    \n    while tf.constant(True): \n        with tf.GradientTape() as tape:\n            y = a*tf.pow(x,2) + b*x + c\n        dy_dx = tape.gradient(y,x)\n        optimizer.apply_gradients(grads_and_vars=[(dy_dx,x)])\n        \n        #迭代终止条件\n        if tf.abs(dy_dx)<tf.constant(0.00001):\n            break\n            \n        if tf.math.mod(optimizer.iterations,100)==0:\n            printbar()\n            tf.print(\"step = \",optimizer.iterations)\n            tf.print(\"x = \", x)\n            tf.print(\"\")\n                \n    y = a*tf.pow(x,2) + b*x + c\n    return y\n\ntf.print(\"y =\",minimizef())\ntf.print(\"x =\",x)\n```\n\n```python\n\n```\n\n```python\n# 求f(x) = a*x**2 + b*x + c的最小值\n\n# 使用optimizer.minimize\n\nx = tf.Variable(0.0,name = \"x\",dtype = tf.float32)\noptimizer = tf.keras.optimizers.SGD(learning_rate=0.01)   \n\ndef f():   \n    a = tf.constant(1.0)\n    b = tf.constant(-2.0)\n    c = tf.constant(1.0)\n    y = a*tf.pow(x,2)+b*x+c\n    return(y)\n\n@tf.function\ndef train(epoch = 1000):  \n    for _ in tf.range(epoch):  \n        optimizer.minimize(f,[x])\n    tf.print(\"epoch = \",optimizer.iterations)\n    return(f())\n\ntrain(1000)\ntf.print(\"y = \",f())\ntf.print(\"x = \",x)\n\n```\n\n```python\n\n```\n\n```python\n# 求f(x) = a*x**2 + b*x + c的最小值\n# 使用model.fit\n\ntf.keras.backend.clear_session()\n\nclass FakeModel(tf.keras.models.Model):\n    def __init__(self,a,b,c):\n        super(FakeModel,self).__init__()\n        self.a = a\n        self.b = b\n        self.c = c\n    \n    def build(self):\n        self.x = tf.Variable(0.0,name = \"x\")\n        self.built = True\n    \n    def call(self,features):\n        loss  = self.a*(self.x)**2+self.b*(self.x)+self.c\n        return(tf.ones_like(features)*loss)\n    \ndef myloss(y_true,y_pred):\n    return tf.reduce_mean(y_pred)\n\nmodel = FakeModel(tf.constant(1.0),tf.constant(-2.0),tf.constant(1.0))\n\nmodel.build()\nmodel.summary()\n\nmodel.compile(optimizer = \n              tf.keras.optimizers.SGD(learning_rate=0.01),loss = myloss)\nhistory = model.fit(tf.zeros((100,2)),\n                    tf.ones(100),batch_size = 1,epochs = 10)  #迭代1000次\n\n```\n\n```python\ntf.print(\"x=\",model.x)\ntf.print(\"loss=\",model(tf.constant(0.0)))\n```\n\n```python\n\n```\n\n### 二，内置优化器\n\n\n深度学习优化算法大概经历了 SGD -> SGDM -> NAG ->Adagrad -> Adadelta(RMSprop) -> Adam -> Nadam 这样的发展历程。\n\n在keras.optimizers子模块中，它们基本上都有对应的类的实现。\n\n* SGD, 默认参数为纯SGD, 设置momentum参数不为0实际上变成SGDM, 考虑了一阶动量, 设置 nesterov为True后变成NAG，即 Nesterov Acceleration Gradient，在计算梯度时计算的是向前走一步所在位置的梯度。\n\n* Adagrad, 考虑了二阶动量，对于不同的参数有不同的学习率，即自适应学习率。缺点是学习率单调下降，可能后期学习速率过慢乃至提前停止学习。\n\n* RMSprop, 考虑了二阶动量，对于不同的参数有不同的学习率，即自适应学习率，对Adagrad进行了优化，通过指数平滑只考虑一定窗口内的二阶动量。\n\n* Adadelta, 考虑了二阶动量，与RMSprop类似，但是更加复杂一些，自适应性更强。\n\n* Adam, 同时考虑了一阶动量和二阶动量，可以看成RMSprop上进一步考虑了Momentum。\n\n* Nadam, 在Adam基础上进一步考虑了 Nesterov Acceleration。\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n```python\n\n```\n\n```python\n\n```\n# 5-8,回调函数callbacks\n\ntf.keras的回调函数实际上是一个类，一般是在model.fit时作为参数指定，用于控制在训练过程开始或者在训练过程结束，在每个epoch训练开始或者训练结束，在每个batch训练开始或者训练结束时执行一些操作，例如收集一些日志信息，改变学习率等超参数，提前终止训练过程等等。\n\n同样地，针对model.evaluate或者model.predict也可以指定callbacks参数，用于控制在评估或预测开始或者结束时，在每个batch开始或者结束时执行一些操作，但这种用法相对少见。\n\n大部分时候，keras.callbacks子模块中定义的回调函数类已经足够使用了，如果有特定的需要，我们也可以通过对keras.callbacks.Callbacks实施子类化构造自定义的回调函数。\n\n所有回调函数都继承至 keras.callbacks.Callbacks基类，拥有params和model这两个属性。\n\n其中params 是一个dict，记录了 training parameters (eg. verbosity, batch size, number of epochs...).\n\nmodel即当前关联的模型的引用。\n\n此外，对于回调类中的一些方法如on_epoch_begin,on_batch_end，还会有一个输入参数logs, 提供有关当前epoch或者batch的一些信息，并能够记录计算结果，如果model.fit指定了多个回调函数类，这些logs变量将在这些回调函数类的同名函数间依顺序传递。\n\n\n\n### 一，内置回调函数\n\n\n* BaseLogger： 收集每个epoch上metrics在各个batch上的平均值，对stateful_metrics参数中的带中间状态的指标直接拿最终值无需对各个batch平均，指标均值结果将添加到logs变量中。该回调函数被所有模型默认添加，且是第一个被添加的。\n\n* History： 将BaseLogger计算的各个epoch的metrics结果记录到history这个dict变量中，并作为model.fit的返回值。该回调函数被所有模型默认添加，在BaseLogger之后被添加。\n\n* EarlyStopping： 当被监控指标在设定的若干个epoch后没有提升，则提前终止训练。\n\n* TensorBoard： 为Tensorboard可视化保存日志信息。支持评估指标，计算图，模型参数等的可视化。\n\n* ModelCheckpoint： 在每个epoch后保存模型。\n\n* ReduceLROnPlateau：如果监控指标在设定的若干个epoch后没有提升，则以一定的因子减少学习率。\n\n* TerminateOnNaN：如果遇到loss为NaN，提前终止训练。\n\n* LearningRateScheduler：学习率控制器。给定学习率lr和epoch的函数关系，根据该函数关系在每个epoch前调整学习率。\n\n* CSVLogger：将每个epoch后的logs结果记录到CSV文件中。\n\n* ProgbarLogger：将每个epoch后的logs结果打印到标准输出流中。\n\n\n\n```python\n\n```\n\n### 二，自定义回调函数\n\n\n可以使用callbacks.LambdaCallback编写较为简单的回调函数，也可以通过对callbacks.Callback子类化编写更加复杂的回调函数逻辑。\n\n如果需要深入学习tf.Keras中的回调函数，不要犹豫阅读内置回调函数的源代码。\n\n```python\nimport numpy as np\nimport pandas as pd\nimport tensorflow as tf\nfrom tensorflow.keras import layers,models,losses,metrics,callbacks\nimport tensorflow.keras.backend as K \n\n```\n\n```python\n# 示范使用LambdaCallback编写较为简单的回调函数\n\nimport json\njson_log = open('./data/keras_log.json', mode='wt', buffering=1)\njson_logging_callback = callbacks.LambdaCallback(\n    on_epoch_end=lambda epoch, logs: json_log.write(\n        json.dumps(dict(epoch = epoch,**logs)) + '\\n'),\n    on_train_end=lambda logs: json_log.close()\n)\n\n```\n\n```python\n# 示范通过Callback子类化编写回调函数（LearningRateScheduler的源代码）\n\nclass LearningRateScheduler(callbacks.Callback):\n    \n    def __init__(self, schedule, verbose=0):\n        super(LearningRateScheduler, self).__init__()\n        self.schedule = schedule\n        self.verbose = verbose\n\n    def on_epoch_begin(self, epoch, logs=None):\n        if not hasattr(self.model.optimizer, 'lr'):\n            raise ValueError('Optimizer must have a \"lr\" attribute.')\n        try:  \n            lr = float(K.get_value(self.model.optimizer.lr))\n            lr = self.schedule(epoch, lr)\n        except TypeError:  # Support for old API for backward compatibility\n            lr = self.schedule(epoch)\n        if not isinstance(lr, (tf.Tensor, float, np.float32, np.float64)):\n            raise ValueError('The output of the \"schedule\" function '\n                             'should be float.')\n        if isinstance(lr, ops.Tensor) and not lr.dtype.is_floating:\n            raise ValueError('The dtype of Tensor should be float')\n        K.set_value(self.model.optimizer.lr, K.get_value(lr))\n        if self.verbose > 0:\n            print('\\nEpoch %05d: LearningRateScheduler reducing learning '\n                 'rate to %s.' % (epoch + 1, lr))\n\n    def on_epoch_end(self, epoch, logs=None):\n        logs = logs or {}\n        logs['lr'] = K.get_value(self.model.optimizer.lr)\n\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n# 六、TensorFlow的高阶API\n\nTensorFlow的高阶API主要是tensorflow.keras.models.\n\n本章我们主要详细介绍tensorflow.keras.models相关的以下内容。\n\n* 模型的构建（Sequential、functional API、Model子类化）\n\n* 模型的训练（内置fit方法、内置train_on_batch方法、自定义训练循环、单GPU训练模型、多GPU训练模型、TPU训练模型）\n\n* 模型的部署（tensorflow serving部署模型、使用spark(scala)调用tensorflow模型）\n\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n# 6-1,构建模型的3种方法\n\n可以使用以下3种方式构建模型：使用Sequential按层顺序构建模型，使用函数式API构建任意结构模型，继承Model基类构建自定义模型。\n\n对于顺序结构的模型，优先使用Sequential方法构建。\n\n如果模型有多输入或者多输出，或者模型需要共享权重，或者模型具有残差连接等非顺序结构，推荐使用函数式API进行创建。\n\n如果无特定必要，尽可能避免使用Model子类化的方式构建模型，这种方式提供了极大的灵活性，但也有更大的概率出错。\n\n下面以IMDB电影评论的分类问题为例，演示3种创建模型的方法。\n\n```python\nimport numpy as np \nimport pandas as pd \nimport tensorflow as tf\nfrom tqdm import tqdm \nfrom tensorflow.keras import *\n\n\ntrain_token_path = \"./data/imdb/train_token.csv\"\ntest_token_path = \"./data/imdb/test_token.csv\"\n\nMAX_WORDS = 10000  # We will only consider the top 10,000 words in the dataset\nMAX_LEN = 200  # We will cut reviews after 200 words\nBATCH_SIZE = 20 \n\n# 构建管道\ndef parse_line(line):\n    t = tf.strings.split(line,\"\\t\")\n    label = tf.reshape(tf.cast(tf.strings.to_number(t[0]),tf.int32),(-1,))\n    features = tf.cast(tf.strings.to_number(tf.strings.split(t[1],\" \")),tf.int32)\n    return (features,label)\n\nds_train=  tf.data.TextLineDataset(filenames = [train_token_path]) \\\n   .map(parse_line,num_parallel_calls = tf.data.experimental.AUTOTUNE) \\\n   .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n   .prefetch(tf.data.experimental.AUTOTUNE)\n\nds_test=  tf.data.TextLineDataset(filenames = [test_token_path]) \\\n   .map(parse_line,num_parallel_calls = tf.data.experimental.AUTOTUNE) \\\n   .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n   .prefetch(tf.data.experimental.AUTOTUNE)\n\n```\n\n```python\n\n```\n\n### 一，Sequential按层顺序创建模型\n\n```python\ntf.keras.backend.clear_session()\n\nmodel = models.Sequential()\n\nmodel.add(layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN))\nmodel.add(layers.Conv1D(filters = 64,kernel_size = 5,activation = \"relu\"))\nmodel.add(layers.MaxPool1D(2))\nmodel.add(layers.Conv1D(filters = 32,kernel_size = 3,activation = \"relu\"))\nmodel.add(layers.MaxPool1D(2))\nmodel.add(layers.Flatten())\nmodel.add(layers.Dense(1,activation = \"sigmoid\"))\n\nmodel.compile(optimizer='Nadam',\n            loss='binary_crossentropy',\n            metrics=['accuracy',\"AUC\"])\n\nmodel.summary()\n```\n\n![](./data/Sequential模型结构.png)\n\n```python\nimport datetime\nbaselogger = callbacks.BaseLogger(stateful_metrics=[\"AUC\"])\nlogdir = \"./data/keras_model/\" + datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\ntensorboard_callback = tf.keras.callbacks.TensorBoard(logdir, histogram_freq=1)\nhistory = model.fit(ds_train,validation_data = ds_test,\n        epochs = 6,callbacks=[baselogger,tensorboard_callback])\n\n```\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nimport matplotlib.pyplot as plt\n\ndef plot_metric(history, metric):\n    train_metrics = history.history[metric]\n    val_metrics = history.history['val_'+metric]\n    epochs = range(1, len(train_metrics) + 1)\n    plt.plot(epochs, train_metrics, 'bo--')\n    plt.plot(epochs, val_metrics, 'ro-')\n    plt.title('Training and validation '+ metric)\n    plt.xlabel(\"Epochs\")\n    plt.ylabel(metric)\n    plt.legend([\"train_\"+metric, 'val_'+metric])\n    plt.show()\n```\n\n```python\nplot_metric(history,\"AUC\")\n```\n\n```python\n\n```\n\n![](./data/6-1-fit模型.jpg)\n\n```python\n\n```\n\n```python\n\n```\n\n### 二，函数式API创建任意结构模型\n\n```python\ntf.keras.backend.clear_session()\n\ninputs = layers.Input(shape=[MAX_LEN])\nx  = layers.Embedding(MAX_WORDS,7)(inputs)\n\nbranch1 = layers.SeparableConv1D(64,3,activation=\"relu\")(x)\nbranch1 = layers.MaxPool1D(3)(branch1)\nbranch1 = layers.SeparableConv1D(32,3,activation=\"relu\")(branch1)\nbranch1 = layers.GlobalMaxPool1D()(branch1)\n\nbranch2 = layers.SeparableConv1D(64,5,activation=\"relu\")(x)\nbranch2 = layers.MaxPool1D(5)(branch2)\nbranch2 = layers.SeparableConv1D(32,5,activation=\"relu\")(branch2)\nbranch2 = layers.GlobalMaxPool1D()(branch2)\n\nbranch3 = layers.SeparableConv1D(64,7,activation=\"relu\")(x)\nbranch3 = layers.MaxPool1D(7)(branch3)\nbranch3 = layers.SeparableConv1D(32,7,activation=\"relu\")(branch3)\nbranch3 = layers.GlobalMaxPool1D()(branch3)\n\nconcat = layers.Concatenate()([branch1,branch2,branch3])\noutputs = layers.Dense(1,activation = \"sigmoid\")(concat)\n\nmodel = models.Model(inputs = inputs,outputs = outputs)\n\nmodel.compile(optimizer='Nadam',\n            loss='binary_crossentropy',\n            metrics=['accuracy',\"AUC\"])\n\nmodel.summary()\n\n```\n\n```\nModel: \"model\"\n__________________________________________________________________________________________________\nLayer (type)                    Output Shape         Param #     Connected to                     \n==================================================================================================\ninput_1 (InputLayer)            [(None, 200)]        0                                            \n__________________________________________________________________________________________________\nembedding (Embedding)           (None, 200, 7)       70000       input_1[0][0]                    \n__________________________________________________________________________________________________\nseparable_conv1d (SeparableConv (None, 198, 64)      533         embedding[0][0]                  \n__________________________________________________________________________________________________\nseparable_conv1d_2 (SeparableCo (None, 196, 64)      547         embedding[0][0]                  \n__________________________________________________________________________________________________\nseparable_conv1d_4 (SeparableCo (None, 194, 64)      561         embedding[0][0]                  \n__________________________________________________________________________________________________\nmax_pooling1d (MaxPooling1D)    (None, 66, 64)       0           separable_conv1d[0][0]           \n__________________________________________________________________________________________________\nmax_pooling1d_1 (MaxPooling1D)  (None, 39, 64)       0           separable_conv1d_2[0][0]         \n__________________________________________________________________________________________________\nmax_pooling1d_2 (MaxPooling1D)  (None, 27, 64)       0           separable_conv1d_4[0][0]         \n__________________________________________________________________________________________________\nseparable_conv1d_1 (SeparableCo (None, 64, 32)       2272        max_pooling1d[0][0]              \n__________________________________________________________________________________________________\nseparable_conv1d_3 (SeparableCo (None, 35, 32)       2400        max_pooling1d_1[0][0]            \n__________________________________________________________________________________________________\nseparable_conv1d_5 (SeparableCo (None, 21, 32)       2528        max_pooling1d_2[0][0]            \n__________________________________________________________________________________________________\nglobal_max_pooling1d (GlobalMax (None, 32)           0           separable_conv1d_1[0][0]         \n__________________________________________________________________________________________________\nglobal_max_pooling1d_1 (GlobalM (None, 32)           0           separable_conv1d_3[0][0]         \n__________________________________________________________________________________________________\nglobal_max_pooling1d_2 (GlobalM (None, 32)           0           separable_conv1d_5[0][0]         \n__________________________________________________________________________________________________\nconcatenate (Concatenate)       (None, 96)           0           global_max_pooling1d[0][0]       \n                                                                 global_max_pooling1d_1[0][0]     \n                                                                 global_max_pooling1d_2[0][0]     \n__________________________________________________________________________________________________\ndense (Dense)                   (None, 1)            97          concatenate[0][0]                \n==================================================================================================\nTotal params: 78,938\nTrainable params: 78,938\nNon-trainable params: 0\n__________________________________________________________________________________________________\n```\n\n\n![](./data/FunctionalAPI模型结构.png)\n\n```python\nimport datetime\nlogdir = \"./data/keras_model/\" + datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\ntensorboard_callback = tf.keras.callbacks.TensorBoard(logdir, histogram_freq=1)\nhistory = model.fit(ds_train,validation_data = ds_test,epochs = 6,callbacks=[tensorboard_callback])\n\n```\n\n```\nEpoch 1/6\n1000/1000 [==============================] - 32s 32ms/step - loss: 0.5527 - accuracy: 0.6758 - AUC: 0.7731 - val_loss: 0.3646 - val_accuracy: 0.8426 - val_AUC: 0.9192\nEpoch 2/6\n1000/1000 [==============================] - 24s 24ms/step - loss: 0.3024 - accuracy: 0.8737 - AUC: 0.9444 - val_loss: 0.3281 - val_accuracy: 0.8644 - val_AUC: 0.9350\nEpoch 3/6\n1000/1000 [==============================] - 24s 24ms/step - loss: 0.2158 - accuracy: 0.9159 - AUC: 0.9715 - val_loss: 0.3461 - val_accuracy: 0.8666 - val_AUC: 0.9363\nEpoch 4/6\n1000/1000 [==============================] - 24s 24ms/step - loss: 0.1492 - accuracy: 0.9464 - AUC: 0.9859 - val_loss: 0.4017 - val_accuracy: 0.8568 - val_AUC: 0.9311\nEpoch 5/6\n1000/1000 [==============================] - 24s 24ms/step - loss: 0.0944 - accuracy: 0.9696 - AUC: 0.9939 - val_loss: 0.4998 - val_accuracy: 0.8550 - val_AUC: 0.9233\nEpoch 6/6\n1000/1000 [==============================] - 26s 26ms/step - loss: 0.0526 - accuracy: 0.9865 - AUC: 0.9977 - val_loss: 0.6463 - val_accuracy: 0.8462 - val_AUC: 0.9138\n```\n\n```python\nplot_metric(history,\"AUC\")\n```\n\n![](./data/6-1-2-train.jpg)\n\n```python\n\n```\n\n### 三，Model子类化创建自定义模型\n\n```python\n# 先自定义一个残差模块，为自定义Layer\n\nclass ResBlock(layers.Layer):\n    def __init__(self, kernel_size, **kwargs):\n        super(ResBlock, self).__init__(**kwargs)\n        self.kernel_size = kernel_size\n    \n    def build(self,input_shape):\n        self.conv1 = layers.Conv1D(filters=64,kernel_size=self.kernel_size,\n                                   activation = \"relu\",padding=\"same\")\n        self.conv2 = layers.Conv1D(filters=32,kernel_size=self.kernel_size,\n                                   activation = \"relu\",padding=\"same\")\n        self.conv3 = layers.Conv1D(filters=input_shape[-1],\n                                   kernel_size=self.kernel_size,activation = \"relu\",padding=\"same\")\n        self.maxpool = layers.MaxPool1D(2)\n        super(ResBlock,self).build(input_shape) # 相当于设置self.built = True\n    \n    def call(self, inputs):\n        x = self.conv1(inputs)\n        x = self.conv2(x)\n        x = self.conv3(x)\n        x = layers.Add()([inputs,x])\n        x = self.maxpool(x)\n        return x\n    \n    #如果要让自定义的Layer通过Functional API 组合成模型时可以序列化，需要自定义get_config方法。\n    def get_config(self):  \n        config = super(ResBlock, self).get_config()\n        config.update({'kernel_size': self.kernel_size})\n        return config\n```\n\n```python\n# 测试ResBlock\nresblock = ResBlock(kernel_size = 3)\nresblock.build(input_shape = (None,200,7))\nresblock.compute_output_shape(input_shape=(None,200,7))\n\n```\n\n```\nTensorShape([None, 100, 7])\n```\n\n```python\n# 自定义模型，实际上也可以使用Sequential或者FunctionalAPI\n\nclass ImdbModel(models.Model):\n    def __init__(self):\n        super(ImdbModel, self).__init__()\n        \n    def build(self,input_shape):\n        self.embedding = layers.Embedding(MAX_WORDS,7)\n        self.block1 = ResBlock(7)\n        self.block2 = ResBlock(5)\n        self.dense = layers.Dense(1,activation = \"sigmoid\")\n        super(ImdbModel,self).build(input_shape)\n    \n    def call(self, x):\n        x = self.embedding(x)\n        x = self.block1(x)\n        x = self.block2(x)\n        x = layers.Flatten()(x)\n        x = self.dense(x)\n        return(x)\n\n```\n\n```python\ntf.keras.backend.clear_session()\n\nmodel = ImdbModel()\nmodel.build(input_shape =(None,200))\nmodel.summary()\n\nmodel.compile(optimizer='Nadam',\n            loss='binary_crossentropy',\n            metrics=['accuracy',\"AUC\"])\n\n```\n\n```\nModel: \"imdb_model\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nembedding (Embedding)        multiple                  70000     \n_________________________________________________________________\nres_block (ResBlock)         multiple                  19143     \n_________________________________________________________________\nres_block_1 (ResBlock)       multiple                  13703     \n_________________________________________________________________\ndense (Dense)                multiple                  351       \n=================================================================\nTotal params: 103,197\nTrainable params: 103,197\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\n\n```\n\n![](./data/Model子类化模型结构.png)\n\n```python\n\n```\n\n```python\nimport datetime\n\nlogdir = \"./tflogs/keras_model/\" + datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\ntensorboard_callback = tf.keras.callbacks.TensorBoard(logdir, histogram_freq=1)\nhistory = model.fit(ds_train,validation_data = ds_test,\n                    epochs = 6,callbacks=[tensorboard_callback])\n\n```\n\n```\nEpoch 1/6\n1000/1000 [==============================] - 47s 47ms/step - loss: 0.5629 - accuracy: 0.6618 - AUC: 0.7548 - val_loss: 0.3422 - val_accuracy: 0.8510 - val_AUC: 0.9286\nEpoch 2/6\n1000/1000 [==============================] - 43s 43ms/step - loss: 0.2648 - accuracy: 0.8903 - AUC: 0.9576 - val_loss: 0.3276 - val_accuracy: 0.8650 - val_AUC: 0.9410\nEpoch 3/6\n1000/1000 [==============================] - 42s 42ms/step - loss: 0.1573 - accuracy: 0.9439 - AUC: 0.9846 - val_loss: 0.3861 - val_accuracy: 0.8682 - val_AUC: 0.9390\nEpoch 4/6\n1000/1000 [==============================] - 42s 42ms/step - loss: 0.0849 - accuracy: 0.9706 - AUC: 0.9950 - val_loss: 0.5324 - val_accuracy: 0.8616 - val_AUC: 0.9292\nEpoch 5/6\n1000/1000 [==============================] - 43s 43ms/step - loss: 0.0393 - accuracy: 0.9876 - AUC: 0.9986 - val_loss: 0.7693 - val_accuracy: 0.8566 - val_AUC: 0.9132\nEpoch 6/6\n1000/1000 [==============================] - 44s 44ms/step - loss: 0.0222 - accuracy: 0.9926 - AUC: 0.9994 - val_loss: 0.9328 - val_accuracy: 0.8584 - val_AUC: 0.9052\n```\n\n```python\nplot_metric(history,\"AUC\")\n```\n\n```python\n\n```\n\n![](./data/6-1-3-fit模型.jpg)\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n```python\n\n```\n# 6-2,训练模型的3种方法\n\n模型的训练主要有内置fit方法、内置tran_on_batch方法、自定义训练循环。\n\n注：fit_generator方法在tf.keras中不推荐使用，其功能已经被fit包含。\n\n\n```python\nimport numpy as np \nimport pandas as pd \nimport tensorflow as tf\nfrom tensorflow.keras import * \n\n#打印时间分割线\n@tf.function\ndef printbar():\n    ts = tf.timestamp()\n    today_ts = ts%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8,end = \"\")\n    tf.print(timestring)\n    \n```\n\n```python\nMAX_LEN = 300\nBATCH_SIZE = 32\n(x_train,y_train),(x_test,y_test) = datasets.reuters.load_data()\nx_train = preprocessing.sequence.pad_sequences(x_train,maxlen=MAX_LEN)\nx_test = preprocessing.sequence.pad_sequences(x_test,maxlen=MAX_LEN)\n\nMAX_WORDS = x_train.max()+1\nCAT_NUM = y_train.max()+1\n\nds_train = tf.data.Dataset.from_tensor_slices((x_train,y_train)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n   \nds_test = tf.data.Dataset.from_tensor_slices((x_test,y_test)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n\n```\n\n```python\n\n```\n\n### 一，内置fit方法\n\n\n该方法功能非常强大, 支持对numpy array, tf.data.Dataset以及 Python generator数据进行训练。\n\n并且可以通过设置回调函数实现对训练过程的复杂控制逻辑。\n\n```python\ntf.keras.backend.clear_session()\ndef create_model():\n    \n    model = models.Sequential()\n    model.add(layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN))\n    model.add(layers.Conv1D(filters = 64,kernel_size = 5,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Conv1D(filters = 32,kernel_size = 3,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Flatten())\n    model.add(layers.Dense(CAT_NUM,activation = \"softmax\"))\n    return(model)\n\ndef compile_model(model):\n    model.compile(optimizer=optimizers.Nadam(),\n                loss=losses.SparseCategoricalCrossentropy(),\n                metrics=[metrics.SparseCategoricalAccuracy(),metrics.SparseTopKCategoricalAccuracy(5)]) \n    return(model)\n \nmodel = create_model()\nmodel.summary()\nmodel = compile_model(model)\n\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nembedding (Embedding)        (None, 300, 7)            216874    \n_________________________________________________________________\nconv1d (Conv1D)              (None, 296, 64)           2304      \n_________________________________________________________________\nmax_pooling1d (MaxPooling1D) (None, 148, 64)           0         \n_________________________________________________________________\nconv1d_1 (Conv1D)            (None, 146, 32)           6176      \n_________________________________________________________________\nmax_pooling1d_1 (MaxPooling1 (None, 73, 32)            0         \n_________________________________________________________________\nflatten (Flatten)            (None, 2336)              0         \n_________________________________________________________________\ndense (Dense)                (None, 46)                107502    \n=================================================================\nTotal params: 332,856\nTrainable params: 332,856\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\nhistory = model.fit(ds_train,validation_data = ds_test,epochs = 10)\n```\n\n```python\n\n```\n\n```\nTrain for 281 steps, validate for 71 steps\nEpoch 1/10\n281/281 [==============================] - 11s 37ms/step - loss: 2.0231 - sparse_categorical_accuracy: 0.4636 - sparse_top_k_categorical_accuracy: 0.7450 - val_loss: 1.7346 - val_sparse_categorical_accuracy: 0.5534 - val_sparse_top_k_categorical_accuracy: 0.7560\nEpoch 2/10\n281/281 [==============================] - 9s 31ms/step - loss: 1.5079 - sparse_categorical_accuracy: 0.6091 - sparse_top_k_categorical_accuracy: 0.7901 - val_loss: 1.5475 - val_sparse_categorical_accuracy: 0.6109 - val_sparse_top_k_categorical_accuracy: 0.7792\nEpoch 3/10\n281/281 [==============================] - 9s 33ms/step - loss: 1.2204 - sparse_categorical_accuracy: 0.6823 - sparse_top_k_categorical_accuracy: 0.8448 - val_loss: 1.5455 - val_sparse_categorical_accuracy: 0.6367 - val_sparse_top_k_categorical_accuracy: 0.8001\nEpoch 4/10\n281/281 [==============================] - 9s 33ms/step - loss: 0.9382 - sparse_categorical_accuracy: 0.7543 - sparse_top_k_categorical_accuracy: 0.9075 - val_loss: 1.6780 - val_sparse_categorical_accuracy: 0.6398 - val_sparse_top_k_categorical_accuracy: 0.8032\nEpoch 5/10\n281/281 [==============================] - 10s 34ms/step - loss: 0.6791 - sparse_categorical_accuracy: 0.8255 - sparse_top_k_categorical_accuracy: 0.9513 - val_loss: 1.9426 - val_sparse_categorical_accuracy: 0.6376 - val_sparse_top_k_categorical_accuracy: 0.7956\nEpoch 6/10\n281/281 [==============================] - 9s 33ms/step - loss: 0.5063 - sparse_categorical_accuracy: 0.8762 - sparse_top_k_categorical_accuracy: 0.9716 - val_loss: 2.2141 - val_sparse_categorical_accuracy: 0.6291 - val_sparse_top_k_categorical_accuracy: 0.7947\nEpoch 7/10\n281/281 [==============================] - 10s 37ms/step - loss: 0.4031 - sparse_categorical_accuracy: 0.9050 - sparse_top_k_categorical_accuracy: 0.9817 - val_loss: 2.4126 - val_sparse_categorical_accuracy: 0.6264 - val_sparse_top_k_categorical_accuracy: 0.7947\nEpoch 8/10\n281/281 [==============================] - 10s 35ms/step - loss: 0.3380 - sparse_categorical_accuracy: 0.9205 - sparse_top_k_categorical_accuracy: 0.9881 - val_loss: 2.5366 - val_sparse_categorical_accuracy: 0.6242 - val_sparse_top_k_categorical_accuracy: 0.7974\nEpoch 9/10\n281/281 [==============================] - 10s 36ms/step - loss: 0.2921 - sparse_categorical_accuracy: 0.9299 - sparse_top_k_categorical_accuracy: 0.9909 - val_loss: 2.6564 - val_sparse_categorical_accuracy: 0.6242 - val_sparse_top_k_categorical_accuracy: 0.7983\nEpoch 10/10\n281/281 [==============================] - 9s 30ms/step - loss: 0.2613 - sparse_categorical_accuracy: 0.9334 - sparse_top_k_categorical_accuracy: 0.9947 - val_loss: 2.7365 - val_sparse_categorical_accuracy: 0.6220 - val_sparse_top_k_categorical_accuracy: 0.8005\n```\n\n```python\n\n```\n\n### 二，内置train_on_batch方法\n\n\n该内置方法相比较fit方法更加灵活，可以不通过回调函数而直接在批次层次上更加精细地控制训练的过程。\n\n```python\ntf.keras.backend.clear_session()\n\ndef create_model():\n    model = models.Sequential()\n\n    model.add(layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN))\n    model.add(layers.Conv1D(filters = 64,kernel_size = 5,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Conv1D(filters = 32,kernel_size = 3,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Flatten())\n    model.add(layers.Dense(CAT_NUM,activation = \"softmax\"))\n    return(model)\n\ndef compile_model(model):\n    model.compile(optimizer=optimizers.Nadam(),\n                loss=losses.SparseCategoricalCrossentropy(),\n                metrics=[metrics.SparseCategoricalAccuracy(),metrics.SparseTopKCategoricalAccuracy(5)]) \n    return(model)\n \nmodel = create_model()\nmodel.summary()\nmodel = compile_model(model)\n\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nembedding (Embedding)        (None, 300, 7)            216874    \n_________________________________________________________________\nconv1d (Conv1D)              (None, 296, 64)           2304      \n_________________________________________________________________\nmax_pooling1d (MaxPooling1D) (None, 148, 64)           0         \n_________________________________________________________________\nconv1d_1 (Conv1D)            (None, 146, 32)           6176      \n_________________________________________________________________\nmax_pooling1d_1 (MaxPooling1 (None, 73, 32)            0         \n_________________________________________________________________\nflatten (Flatten)            (None, 2336)              0         \n_________________________________________________________________\ndense (Dense)                (None, 46)                107502    \n=================================================================\nTotal params: 332,856\nTrainable params: 332,856\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\ndef train_model(model,ds_train,ds_valid,epoches):\n\n    for epoch in tf.range(1,epoches+1):\n        model.reset_metrics()\n        \n        # 在后期降低学习率\n        if epoch == 5:\n            model.optimizer.lr.assign(model.optimizer.lr/2.0)\n            tf.print(\"Lowering optimizer Learning Rate...\\n\\n\")\n        \n        for x, y in ds_train:\n            train_result = model.train_on_batch(x, y)\n\n        for x, y in ds_valid:\n            valid_result = model.test_on_batch(x, y,reset_metrics=False)\n            \n        if epoch%1 ==0:\n            printbar()\n            tf.print(\"epoch = \",epoch)\n            print(\"train:\",dict(zip(model.metrics_names,train_result)))\n            print(\"valid:\",dict(zip(model.metrics_names,valid_result)))\n            print(\"\")\n```\n\n```python\ntrain_model(model,ds_train,ds_test,10)\n```\n\n```\n================================================================================13:09:19\nepoch =  1\ntrain: {'loss': 0.82411176, 'sparse_categorical_accuracy': 0.77272725, 'sparse_top_k_categorical_accuracy': 0.8636364}\nvalid: {'loss': 1.9265995, 'sparse_categorical_accuracy': 0.5743544, 'sparse_top_k_categorical_accuracy': 0.75779164}\n\n================================================================================13:09:27\nepoch =  2\ntrain: {'loss': 0.6006621, 'sparse_categorical_accuracy': 0.90909094, 'sparse_top_k_categorical_accuracy': 0.95454544}\nvalid: {'loss': 1.844159, 'sparse_categorical_accuracy': 0.6126447, 'sparse_top_k_categorical_accuracy': 0.7920748}\n\n================================================================================13:09:35\nepoch =  3\ntrain: {'loss': 0.36935613, 'sparse_categorical_accuracy': 0.90909094, 'sparse_top_k_categorical_accuracy': 0.95454544}\nvalid: {'loss': 2.163433, 'sparse_categorical_accuracy': 0.63312554, 'sparse_top_k_categorical_accuracy': 0.8045414}\n\n================================================================================13:09:42\nepoch =  4\ntrain: {'loss': 0.2304088, 'sparse_categorical_accuracy': 0.90909094, 'sparse_top_k_categorical_accuracy': 1.0}\nvalid: {'loss': 2.8911984, 'sparse_categorical_accuracy': 0.6344613, 'sparse_top_k_categorical_accuracy': 0.7978629}\n\nLowering optimizer Learning Rate...\n\n\n================================================================================13:09:51\nepoch =  5\ntrain: {'loss': 0.111194365, 'sparse_categorical_accuracy': 0.95454544, 'sparse_top_k_categorical_accuracy': 1.0}\nvalid: {'loss': 3.6431572, 'sparse_categorical_accuracy': 0.6295637, 'sparse_top_k_categorical_accuracy': 0.7978629}\n\n================================================================================13:09:59\nepoch =  6\ntrain: {'loss': 0.07741702, 'sparse_categorical_accuracy': 0.95454544, 'sparse_top_k_categorical_accuracy': 1.0}\nvalid: {'loss': 4.074161, 'sparse_categorical_accuracy': 0.6255565, 'sparse_top_k_categorical_accuracy': 0.794301}\n\n================================================================================13:10:07\nepoch =  7\ntrain: {'loss': 0.056113098, 'sparse_categorical_accuracy': 1.0, 'sparse_top_k_categorical_accuracy': 1.0}\nvalid: {'loss': 4.4461513, 'sparse_categorical_accuracy': 0.6273375, 'sparse_top_k_categorical_accuracy': 0.79652715}\n\n================================================================================13:10:17\nepoch =  8\ntrain: {'loss': 0.043448802, 'sparse_categorical_accuracy': 1.0, 'sparse_top_k_categorical_accuracy': 1.0}\nvalid: {'loss': 4.7687583, 'sparse_categorical_accuracy': 0.6224399, 'sparse_top_k_categorical_accuracy': 0.79741764}\n\n================================================================================13:10:26\nepoch =  9\ntrain: {'loss': 0.035002146, 'sparse_categorical_accuracy': 1.0, 'sparse_top_k_categorical_accuracy': 1.0}\nvalid: {'loss': 5.130505, 'sparse_categorical_accuracy': 0.6175423, 'sparse_top_k_categorical_accuracy': 0.794301}\n\n================================================================================13:10:34\nepoch =  10\ntrain: {'loss': 0.028303564, 'sparse_categorical_accuracy': 1.0, 'sparse_top_k_categorical_accuracy': 1.0}\nvalid: {'loss': 5.4559293, 'sparse_categorical_accuracy': 0.6148709, 'sparse_top_k_categorical_accuracy': 0.7947462}\n```\n\n```python\n\n```\n\n### 三，自定义训练循环\n\n\n自定义训练循环无需编译模型，直接利用优化器根据损失函数反向传播迭代参数，拥有最高的灵活性。\n\n```python\ntf.keras.backend.clear_session()\n\ndef create_model():\n    \n    model = models.Sequential()\n\n    model.add(layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN))\n    model.add(layers.Conv1D(filters = 64,kernel_size = 5,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Conv1D(filters = 32,kernel_size = 3,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Flatten())\n    model.add(layers.Dense(CAT_NUM,activation = \"softmax\"))\n    return(model)\n\nmodel = create_model()\nmodel.summary()\n```\n\n```python\noptimizer = optimizers.Nadam()\nloss_func = losses.SparseCategoricalCrossentropy()\n\ntrain_loss = metrics.Mean(name='train_loss')\ntrain_metric = metrics.SparseCategoricalAccuracy(name='train_accuracy')\n\nvalid_loss = metrics.Mean(name='valid_loss')\nvalid_metric = metrics.SparseCategoricalAccuracy(name='valid_accuracy')\n\n@tf.function\ndef train_step(model, features, labels):\n    with tf.GradientTape() as tape:\n        predictions = model(features,training = True)\n        loss = loss_func(labels, predictions)\n    gradients = tape.gradient(loss, model.trainable_variables)\n    optimizer.apply_gradients(zip(gradients, model.trainable_variables))\n\n    train_loss.update_state(loss)\n    train_metric.update_state(labels, predictions)\n    \n\n@tf.function\ndef valid_step(model, features, labels):\n    predictions = model(features)\n    batch_loss = loss_func(labels, predictions)\n    valid_loss.update_state(batch_loss)\n    valid_metric.update_state(labels, predictions)\n    \n\ndef train_model(model,ds_train,ds_valid,epochs):\n    for epoch in tf.range(1,epochs+1):\n        \n        for features, labels in ds_train:\n            train_step(model,features,labels)\n\n        for features, labels in ds_valid:\n            valid_step(model,features,labels)\n\n        logs = 'Epoch={},Loss:{},Accuracy:{},Valid Loss:{},Valid Accuracy:{}'\n        \n        if epoch%1 ==0:\n            printbar()\n            tf.print(tf.strings.format(logs,\n            (epoch,train_loss.result(),train_metric.result(),valid_loss.result(),valid_metric.result())))\n            tf.print(\"\")\n            \n        train_loss.reset_states()\n        valid_loss.reset_states()\n        train_metric.reset_states()\n        valid_metric.reset_states()\n\ntrain_model(model,ds_train,ds_test,10)\n\n```\n\n```python\n\n```\n\n```\n================================================================================13:12:03\nEpoch=1,Loss:2.02051544,Accuracy:0.460253835,Valid Loss:1.75700927,Valid Accuracy:0.536954582\n\n================================================================================13:12:09\nEpoch=2,Loss:1.510795,Accuracy:0.610665798,Valid Loss:1.55349839,Valid Accuracy:0.616206586\n\n================================================================================13:12:17\nEpoch=3,Loss:1.19221532,Accuracy:0.696170092,Valid Loss:1.52315605,Valid Accuracy:0.651380241\n\n================================================================================13:12:23\nEpoch=4,Loss:0.90101546,Accuracy:0.766310394,Valid Loss:1.68327653,Valid Accuracy:0.648263574\n\n================================================================================13:12:30\nEpoch=5,Loss:0.655430496,Accuracy:0.831329346,Valid Loss:1.90872383,Valid Accuracy:0.641139805\n\n================================================================================13:12:37\nEpoch=6,Loss:0.492730737,Accuracy:0.877866864,Valid Loss:2.09966016,Valid Accuracy:0.63223511\n\n================================================================================13:12:44\nEpoch=7,Loss:0.391238362,Accuracy:0.904030263,Valid Loss:2.27431226,Valid Accuracy:0.625111282\n\n================================================================================13:12:51\nEpoch=8,Loss:0.327761739,Accuracy:0.922066331,Valid Loss:2.42568827,Valid Accuracy:0.617542326\n\n================================================================================13:12:58\nEpoch=9,Loss:0.285573095,Accuracy:0.930527747,Valid Loss:2.55942106,Valid Accuracy:0.612644672\n\n================================================================================13:13:05\nEpoch=10,Loss:0.255482465,Accuracy:0.936094403,Valid Loss:2.67789412,Valid Accuracy:0.612199485\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n```python\n\n```\n\n```python\n\n```\n# 6-3,使用单GPU训练模型\n\n深度学习的训练过程常常非常耗时，一个模型训练几个小时是家常便饭，训练几天也是常有的事情，有时候甚至要训练几十天。\n\n训练过程的耗时主要来自于两个部分，一部分来自数据准备，另一部分来自参数迭代。\n\n当数据准备过程还是模型训练时间的主要瓶颈时，我们可以使用更多进程来准备数据。\n\n当参数迭代过程成为训练时间的主要瓶颈时，我们通常的方法是应用GPU或者Google的TPU来进行加速。\n\n详见《用GPU加速Keras模型——Colab免费GPU使用攻略》\n\nhttps://zhuanlan.zhihu.com/p/68509398\n\n\n无论是内置fit方法，还是自定义训练循环，从CPU切换成单GPU训练模型都是非常方便的，无需更改任何代码。当存在可用的GPU时，如果不特意指定device，tensorflow会自动优先选择使用GPU来创建张量和执行张量计算。\n\n但如果是在公司或者学校实验室的服务器环境，存在多个GPU和多个使用者时，为了不让单个同学的任务占用全部GPU资源导致其他同学无法使用（tensorflow默认获取全部GPU的全部内存资源权限，但实际上只使用一个GPU的部分资源），我们通常会在开头增加以下几行代码以控制每个任务使用的GPU编号和显存大小，以便其他同学也能够同时训练模型。\n\n\n在Colab笔记本中：修改->笔记本设置->硬件加速器 中选择 GPU\n\n注：以下代码只能在Colab 上才能正确执行。\n\n可通过以下colab链接测试效果《tf_单GPU》：\n\nhttps://colab.research.google.com/drive/1r5dLoeJq5z01sU72BX2M5UiNSkuxsEFe\n\n```python\n%tensorflow_version 2.x\nimport tensorflow as tf\nprint(tf.__version__)\n```\n\n```python\nfrom tensorflow.keras import * \n\n#打印时间分割线\n@tf.function\ndef printbar():\n    ts = tf.timestamp()\n    today_ts = ts%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8,end = \"\")\n    tf.print(timestring)\n    \n```\n\n### 一，GPU设置\n\n```python\ngpus = tf.config.list_physical_devices(\"GPU\")\n\nif gpus:\n    gpu0 = gpus[0] #如果有多个GPU，仅使用第0个GPU\n    tf.config.experimental.set_memory_growth(gpu0, True) #设置GPU显存用量按需使用\n    # 或者也可以设置GPU显存为固定使用量(例如：4G)\n    #tf.config.experimental.set_virtual_device_configuration(gpu0,\n    #    [tf.config.experimental.VirtualDeviceConfiguration(memory_limit=4096)]) \n    tf.config.set_visible_devices([gpu0],\"GPU\") \n```\n\n比较GPU和CPU的计算速度\n\n```python\nprintbar()\nwith tf.device(\"/gpu:0\"):\n    tf.random.set_seed(0)\n    a = tf.random.uniform((10000,100),minval = 0,maxval = 3.0)\n    b = tf.random.uniform((100,100000),minval = 0,maxval = 3.0)\n    c = a@b\n    tf.print(tf.reduce_sum(tf.reduce_sum(c,axis = 0),axis=0))\nprintbar()\n```\n\n```\n================================================================================17:37:01\n2.24953778e+11\n================================================================================17:37:01\n```\n\n```python\nprintbar()\nwith tf.device(\"/cpu:0\"):\n    tf.random.set_seed(0)\n    a = tf.random.uniform((10000,100),minval = 0,maxval = 3.0)\n    b = tf.random.uniform((100,100000),minval = 0,maxval = 3.0)\n    c = a@b\n    tf.print(tf.reduce_sum(tf.reduce_sum(c,axis = 0),axis=0))\nprintbar()\n```\n\n```\n================================================================================17:37:34\n2.24953795e+11\n================================================================================17:37:40\n```\n\n```python\n\n```\n\n### 二，准备数据\n\n```python\nMAX_LEN = 300\nBATCH_SIZE = 32\n(x_train,y_train),(x_test,y_test) = datasets.reuters.load_data()\nx_train = preprocessing.sequence.pad_sequences(x_train,maxlen=MAX_LEN)\nx_test = preprocessing.sequence.pad_sequences(x_test,maxlen=MAX_LEN)\n\nMAX_WORDS = x_train.max()+1\nCAT_NUM = y_train.max()+1\n\nds_train = tf.data.Dataset.from_tensor_slices((x_train,y_train)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n   \nds_test = tf.data.Dataset.from_tensor_slices((x_test,y_test)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n          \n```\n\n```python\n\n```\n\n### 三，定义模型\n\n```python\ntf.keras.backend.clear_session()\n\ndef create_model():\n    \n    model = models.Sequential()\n\n    model.add(layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN))\n    model.add(layers.Conv1D(filters = 64,kernel_size = 5,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Conv1D(filters = 32,kernel_size = 3,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Flatten())\n    model.add(layers.Dense(CAT_NUM,activation = \"softmax\"))\n    return(model)\n\nmodel = create_model()\nmodel.summary()\n\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nembedding (Embedding)        (None, 300, 7)            216874    \n_________________________________________________________________\nconv1d (Conv1D)              (None, 296, 64)           2304      \n_________________________________________________________________\nmax_pooling1d (MaxPooling1D) (None, 148, 64)           0         \n_________________________________________________________________\nconv1d_1 (Conv1D)            (None, 146, 32)           6176      \n_________________________________________________________________\nmax_pooling1d_1 (MaxPooling1 (None, 73, 32)            0         \n_________________________________________________________________\nflatten (Flatten)            (None, 2336)              0         \n_________________________________________________________________\ndense (Dense)                (None, 46)                107502    \n=================================================================\nTotal params: 332,856\nTrainable params: 332,856\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\n\n```\n\n### 四，训练模型\n\n```python\noptimizer = optimizers.Nadam()\nloss_func = losses.SparseCategoricalCrossentropy()\n\ntrain_loss = metrics.Mean(name='train_loss')\ntrain_metric = metrics.SparseCategoricalAccuracy(name='train_accuracy')\n\nvalid_loss = metrics.Mean(name='valid_loss')\nvalid_metric = metrics.SparseCategoricalAccuracy(name='valid_accuracy')\n\n@tf.function\ndef train_step(model, features, labels):\n    with tf.GradientTape() as tape:\n        predictions = model(features,training = True)\n        loss = loss_func(labels, predictions)\n    gradients = tape.gradient(loss, model.trainable_variables)\n    optimizer.apply_gradients(zip(gradients, model.trainable_variables))\n\n    train_loss.update_state(loss)\n    train_metric.update_state(labels, predictions)\n    \n@tf.function\ndef valid_step(model, features, labels):\n    predictions = model(features)\n    batch_loss = loss_func(labels, predictions)\n    valid_loss.update_state(batch_loss)\n    valid_metric.update_state(labels, predictions)\n    \n\ndef train_model(model,ds_train,ds_valid,epochs):\n    for epoch in tf.range(1,epochs+1):\n        \n        for features, labels in ds_train:\n            train_step(model,features,labels)\n\n        for features, labels in ds_valid:\n            valid_step(model,features,labels)\n\n        logs = 'Epoch={},Loss:{},Accuracy:{},Valid Loss:{},Valid Accuracy:{}'\n        \n        if epoch%1 ==0:\n            printbar()\n            tf.print(tf.strings.format(logs,\n            (epoch,train_loss.result(),train_metric.result(),valid_loss.result(),valid_metric.result())))\n            tf.print(\"\")\n            \n        train_loss.reset_states()\n        valid_loss.reset_states()\n        train_metric.reset_states()\n        valid_metric.reset_states()\n\ntrain_model(model,ds_train,ds_test,10)\n```\n\n```python\n\n```\n\n```\n================================================================================17:13:26\nEpoch=1,Loss:1.96735072,Accuracy:0.489200622,Valid Loss:1.64124215,Valid Accuracy:0.582813919\n\n================================================================================17:13:28\nEpoch=2,Loss:1.4640888,Accuracy:0.624805152,Valid Loss:1.5559175,Valid Accuracy:0.607747078\n\n================================================================================17:13:30\nEpoch=3,Loss:1.20681274,Accuracy:0.68581605,Valid Loss:1.58494771,Valid Accuracy:0.622439921\n\n================================================================================17:13:31\nEpoch=4,Loss:0.937500894,Accuracy:0.75361836,Valid Loss:1.77466083,Valid Accuracy:0.621994674\n\n================================================================================17:13:33\nEpoch=5,Loss:0.693960547,Accuracy:0.822199941,Valid Loss:2.00267363,Valid Accuracy:0.6197685\n\n================================================================================17:13:35\nEpoch=6,Loss:0.519614,Accuracy:0.870296121,Valid Loss:2.23463202,Valid Accuracy:0.613980412\n\n================================================================================17:13:37\nEpoch=7,Loss:0.408562034,Accuracy:0.901246965,Valid Loss:2.46969271,Valid Accuracy:0.612199485\n\n================================================================================17:13:39\nEpoch=8,Loss:0.339028627,Accuracy:0.920062363,Valid Loss:2.68585229,Valid Accuracy:0.615316093\n\n================================================================================17:13:41\nEpoch=9,Loss:0.293798745,Accuracy:0.92930305,Valid Loss:2.88995624,Valid Accuracy:0.613535166\n\n================================================================================17:13:43\nEpoch=10,Loss:0.263130337,Accuracy:0.936651051,Valid Loss:3.09705234,Valid Accuracy:0.612644672\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n\n\n# 6-4,使用多GPU训练模型\n\n如果使用多GPU训练模型，推荐使用内置fit方法，较为方便，仅需添加2行代码。\n\n在Colab笔记本中：修改->笔记本设置->硬件加速器 中选择 GPU\n\n注：以下代码只能在Colab 上才能正确执行。\n\n可通过以下colab链接测试效果《tf_多GPU》：\n\nhttps://colab.research.google.com/drive/1j2kp_t0S_cofExSN7IyJ4QtMscbVlXU-\n\n\n\nMirroredStrategy过程简介：\n\n* 训练开始前，该策略在所有 N 个计算设备上均各复制一份完整的模型；\n* 每次训练传入一个批次的数据时，将数据分成 N 份，分别传入 N 个计算设备（即数据并行）；\n* N 个计算设备使用本地变量（镜像变量）分别计算自己所获得的部分数据的梯度；\n* 使用分布式计算的 All-reduce 操作，在计算设备间高效交换梯度数据并进行求和，使得最终每个设备都有了所有设备的梯度之和；\n* 使用梯度求和的结果更新本地变量（镜像变量）；\n* 当所有设备均更新本地变量后，进行下一轮训练（即该并行策略是同步的）。\n\n```python\n%tensorflow_version 2.x\nimport tensorflow as tf\nprint(tf.__version__)\nfrom tensorflow.keras import * \n```\n\n```python\n#此处在colab上使用1个GPU模拟出两个逻辑GPU进行多GPU训练\ngpus = tf.config.experimental.list_physical_devices('GPU')\nif gpus:\n    # 设置两个逻辑GPU模拟多GPU训练\n    try:\n        tf.config.experimental.set_virtual_device_configuration(gpus[0],\n            [tf.config.experimental.VirtualDeviceConfiguration(memory_limit=1024),\n             tf.config.experimental.VirtualDeviceConfiguration(memory_limit=1024)])\n        logical_gpus = tf.config.experimental.list_logical_devices('GPU')\n        print(len(gpus), \"Physical GPU,\", len(logical_gpus), \"Logical GPUs\")\n    except RuntimeError as e:\n        print(e)\n```\n\n### 一，准备数据\n\n```python\nMAX_LEN = 300\nBATCH_SIZE = 32\n(x_train,y_train),(x_test,y_test) = datasets.reuters.load_data()\nx_train = preprocessing.sequence.pad_sequences(x_train,maxlen=MAX_LEN)\nx_test = preprocessing.sequence.pad_sequences(x_test,maxlen=MAX_LEN)\n\nMAX_WORDS = x_train.max()+1\nCAT_NUM = y_train.max()+1\n\nds_train = tf.data.Dataset.from_tensor_slices((x_train,y_train)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n   \nds_test = tf.data.Dataset.from_tensor_slices((x_test,y_test)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n\n```\n\n### 二，定义模型\n\n```python\ntf.keras.backend.clear_session()\ndef create_model():\n    \n    model = models.Sequential()\n\n    model.add(layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN))\n    model.add(layers.Conv1D(filters = 64,kernel_size = 5,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Conv1D(filters = 32,kernel_size = 3,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Flatten())\n    model.add(layers.Dense(CAT_NUM,activation = \"softmax\"))\n    return(model)\n\ndef compile_model(model):\n    model.compile(optimizer=optimizers.Nadam(),\n                loss=losses.SparseCategoricalCrossentropy(from_logits=True),\n                metrics=[metrics.SparseCategoricalAccuracy(),metrics.SparseTopKCategoricalAccuracy(5)]) \n    return(model)\n```\n\n### 三，训练模型\n\n```python\n#增加以下两行代码\nstrategy = tf.distribute.MirroredStrategy()  \nwith strategy.scope(): \n    model = create_model()\n    model.summary()\n    model = compile_model(model)\n    \nhistory = model.fit(ds_train,validation_data = ds_test,epochs = 10)  \n```\n\n```\nWARNING:tensorflow:NCCL is not supported when using virtual GPUs, fallingback to reduction to one device\nINFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1')\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nembedding (Embedding)        (None, 300, 7)            216874    \n_________________________________________________________________\nconv1d (Conv1D)              (None, 296, 64)           2304      \n_________________________________________________________________\nmax_pooling1d (MaxPooling1D) (None, 148, 64)           0         \n_________________________________________________________________\nconv1d_1 (Conv1D)            (None, 146, 32)           6176      \n_________________________________________________________________\nmax_pooling1d_1 (MaxPooling1 (None, 73, 32)            0         \n_________________________________________________________________\nflatten (Flatten)            (None, 2336)              0         \n_________________________________________________________________\ndense (Dense)                (None, 46)                107502    \n=================================================================\nTotal params: 332,856\nTrainable params: 332,856\nNon-trainable params: 0\n_________________________________________________________________\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nTrain for 281 steps, validate for 71 steps\nEpoch 1/10\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\n281/281 [==============================] - 15s 53ms/step - loss: 2.0270 - sparse_categorical_accuracy: 0.4653 - sparse_top_k_categorical_accuracy: 0.7481 - val_loss: 1.7517 - val_sparse_categorical_accuracy: 0.5481 - val_sparse_top_k_categorical_accuracy: 0.7578\nEpoch 2/10\n281/281 [==============================] - 4s 14ms/step - loss: 1.5206 - sparse_categorical_accuracy: 0.6045 - sparse_top_k_categorical_accuracy: 0.7938 - val_loss: 1.5715 - val_sparse_categorical_accuracy: 0.5993 - val_sparse_top_k_categorical_accuracy: 0.7983\nEpoch 3/10\n281/281 [==============================] - 4s 14ms/step - loss: 1.2178 - sparse_categorical_accuracy: 0.6843 - sparse_top_k_categorical_accuracy: 0.8547 - val_loss: 1.5232 - val_sparse_categorical_accuracy: 0.6327 - val_sparse_top_k_categorical_accuracy: 0.8112\nEpoch 4/10\n281/281 [==============================] - 4s 13ms/step - loss: 0.9127 - sparse_categorical_accuracy: 0.7648 - sparse_top_k_categorical_accuracy: 0.9113 - val_loss: 1.6527 - val_sparse_categorical_accuracy: 0.6296 - val_sparse_top_k_categorical_accuracy: 0.8201\nEpoch 5/10\n281/281 [==============================] - 4s 14ms/step - loss: 0.6606 - sparse_categorical_accuracy: 0.8321 - sparse_top_k_categorical_accuracy: 0.9525 - val_loss: 1.8791 - val_sparse_categorical_accuracy: 0.6158 - val_sparse_top_k_categorical_accuracy: 0.8219\nEpoch 6/10\n281/281 [==============================] - 4s 14ms/step - loss: 0.4919 - sparse_categorical_accuracy: 0.8799 - sparse_top_k_categorical_accuracy: 0.9725 - val_loss: 2.1282 - val_sparse_categorical_accuracy: 0.6037 - val_sparse_top_k_categorical_accuracy: 0.8112\nEpoch 7/10\n281/281 [==============================] - 4s 14ms/step - loss: 0.3947 - sparse_categorical_accuracy: 0.9051 - sparse_top_k_categorical_accuracy: 0.9814 - val_loss: 2.3033 - val_sparse_categorical_accuracy: 0.6046 - val_sparse_top_k_categorical_accuracy: 0.8094\nEpoch 8/10\n281/281 [==============================] - 4s 14ms/step - loss: 0.3335 - sparse_categorical_accuracy: 0.9207 - sparse_top_k_categorical_accuracy: 0.9863 - val_loss: 2.4255 - val_sparse_categorical_accuracy: 0.5993 - val_sparse_top_k_categorical_accuracy: 0.8099\nEpoch 9/10\n281/281 [==============================] - 4s 14ms/step - loss: 0.2919 - sparse_categorical_accuracy: 0.9304 - sparse_top_k_categorical_accuracy: 0.9911 - val_loss: 2.5571 - val_sparse_categorical_accuracy: 0.6020 - val_sparse_top_k_categorical_accuracy: 0.8126\nEpoch 10/10\n281/281 [==============================] - 4s 14ms/step - loss: 0.2617 - sparse_categorical_accuracy: 0.9342 - sparse_top_k_categorical_accuracy: 0.9937 - val_loss: 2.6700 - val_sparse_categorical_accuracy: 0.6077 - val_sparse_top_k_categorical_accuracy: 0.8148\nCPU times: user 1min 2s, sys: 8.59 s, total: 1min 10s\nWall time: 58.5 s\n```\n\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n# 6-5,使用TPU训练模型\n\n如果想尝试使用Google Colab上的TPU来训练模型，也是非常方便，仅需添加6行代码。\n\n在Colab笔记本中：修改->笔记本设置->硬件加速器 中选择 TPU\n\n注：以下代码只能在Colab 上才能正确执行。\n\n可通过以下colab链接测试效果《tf_TPU》：\n\nhttps://colab.research.google.com/drive/1XCIhATyE1R7lq6uwFlYlRsUr5d9_-r1s\n\n\n```python\n%tensorflow_version 2.x\nimport tensorflow as tf\nprint(tf.__version__)\nfrom tensorflow.keras import * \n```\n\n### 一，准备数据\n\n```python\nMAX_LEN = 300\nBATCH_SIZE = 32\n(x_train,y_train),(x_test,y_test) = datasets.reuters.load_data()\nx_train = preprocessing.sequence.pad_sequences(x_train,maxlen=MAX_LEN)\nx_test = preprocessing.sequence.pad_sequences(x_test,maxlen=MAX_LEN)\n\nMAX_WORDS = x_train.max()+1\nCAT_NUM = y_train.max()+1\n\nds_train = tf.data.Dataset.from_tensor_slices((x_train,y_train)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n   \nds_test = tf.data.Dataset.from_tensor_slices((x_test,y_test)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n```\n\n### 二，定义模型\n\n```python\ntf.keras.backend.clear_session()\ndef create_model():\n    \n    model = models.Sequential()\n\n    model.add(layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN))\n    model.add(layers.Conv1D(filters = 64,kernel_size = 5,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Conv1D(filters = 32,kernel_size = 3,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Flatten())\n    model.add(layers.Dense(CAT_NUM,activation = \"softmax\"))\n    return(model)\n\ndef compile_model(model):\n    model.compile(optimizer=optimizers.Nadam(),\n                loss=losses.SparseCategoricalCrossentropy(from_logits=True),\n                metrics=[metrics.SparseCategoricalAccuracy(),metrics.SparseTopKCategoricalAccuracy(5)]) \n    return(model)\n```\n\n```python\n\n```\n\n### 三，训练模型\n\n```python\n#增加以下6行代码\nimport os\nresolver = tf.distribute.cluster_resolver.TPUClusterResolver(tpu='grpc://' + os.environ['COLAB_TPU_ADDR'])\ntf.config.experimental_connect_to_cluster(resolver)\ntf.tpu.experimental.initialize_tpu_system(resolver)\nstrategy = tf.distribute.experimental.TPUStrategy(resolver)\nwith strategy.scope():\n    model = create_model()\n    model.summary()\n    model = compile_model(model)\n    \n```\n\n```\nWARNING:tensorflow:TPU system 10.26.134.242:8470 has already been initialized. Reinitializing the TPU can cause previously created variables on TPU to be lost.\nWARNING:tensorflow:TPU system 10.26.134.242:8470 has already been initialized. Reinitializing the TPU can cause previously created variables on TPU to be lost.\nINFO:tensorflow:Initializing the TPU system: 10.26.134.242:8470\nINFO:tensorflow:Initializing the TPU system: 10.26.134.242:8470\nINFO:tensorflow:Clearing out eager caches\nINFO:tensorflow:Clearing out eager caches\nINFO:tensorflow:Finished initializing TPU system.\nINFO:tensorflow:Finished initializing TPU system.\nINFO:tensorflow:Found TPU system:\nINFO:tensorflow:Found TPU system:\nINFO:tensorflow:*** Num TPU Cores: 8\nINFO:tensorflow:*** Num TPU Cores: 8\nINFO:tensorflow:*** Num TPU Workers: 1\nINFO:tensorflow:*** Num TPU Workers: 1\nINFO:tensorflow:*** Num TPU Cores Per Worker: 8\nINFO:tensorflow:*** Num TPU Cores Per Worker: 8\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:localhost/replica:0/task:0/device:CPU:0, CPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:localhost/replica:0/task:0/device:CPU:0, CPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:localhost/replica:0/task:0/device:XLA_CPU:0, XLA_CPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:localhost/replica:0/task:0/device:XLA_CPU:0, XLA_CPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:CPU:0, CPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:CPU:0, CPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:0, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:0, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:1, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:1, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:2, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:2, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:3, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:3, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:4, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:4, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:5, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:5, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:6, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:6, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:7, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:7, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU_SYSTEM:0, TPU_SYSTEM, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU_SYSTEM:0, TPU_SYSTEM, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:XLA_CPU:0, XLA_CPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:XLA_CPU:0, XLA_CPU, 0, 0)\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nembedding (Embedding)        (None, 300, 7)            216874    \n_________________________________________________________________\nconv1d (Conv1D)              (None, 296, 64)           2304      \n_________________________________________________________________\nmax_pooling1d (MaxPooling1D) (None, 148, 64)           0         \n_________________________________________________________________\nconv1d_1 (Conv1D)            (None, 146, 32)           6176      \n_________________________________________________________________\nmax_pooling1d_1 (MaxPooling1 (None, 73, 32)            0         \n_________________________________________________________________\nflatten (Flatten)            (None, 2336)              0         \n_________________________________________________________________\ndense (Dense)                (None, 46)                107502    \n=================================================================\nTotal params: 332,856\nTrainable params: 332,856\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\nhistory = model.fit(ds_train,validation_data = ds_test,epochs = 10)\n```\n\n```\nTrain for 281 steps, validate for 71 steps\nEpoch 1/10\n281/281 [==============================] - 12s 43ms/step - loss: 3.4466 - sparse_categorical_accuracy: 0.4332 - sparse_top_k_categorical_accuracy: 0.7180 - val_loss: 3.3179 - val_sparse_categorical_accuracy: 0.5352 - val_sparse_top_k_categorical_accuracy: 0.7195\nEpoch 2/10\n281/281 [==============================] - 6s 20ms/step - loss: 3.3251 - sparse_categorical_accuracy: 0.5405 - sparse_top_k_categorical_accuracy: 0.7302 - val_loss: 3.3082 - val_sparse_categorical_accuracy: 0.5463 - val_sparse_top_k_categorical_accuracy: 0.7235\nEpoch 3/10\n281/281 [==============================] - 6s 20ms/step - loss: 3.2961 - sparse_categorical_accuracy: 0.5729 - sparse_top_k_categorical_accuracy: 0.7280 - val_loss: 3.3026 - val_sparse_categorical_accuracy: 0.5499 - val_sparse_top_k_categorical_accuracy: 0.7217\nEpoch 4/10\n281/281 [==============================] - 5s 19ms/step - loss: 3.2751 - sparse_categorical_accuracy: 0.5924 - sparse_top_k_categorical_accuracy: 0.7276 - val_loss: 3.2957 - val_sparse_categorical_accuracy: 0.5543 - val_sparse_top_k_categorical_accuracy: 0.7217\nEpoch 5/10\n281/281 [==============================] - 5s 19ms/step - loss: 3.2655 - sparse_categorical_accuracy: 0.6008 - sparse_top_k_categorical_accuracy: 0.7290 - val_loss: 3.3022 - val_sparse_categorical_accuracy: 0.5490 - val_sparse_top_k_categorical_accuracy: 0.7231\nEpoch 6/10\n281/281 [==============================] - 5s 19ms/step - loss: 3.2616 - sparse_categorical_accuracy: 0.6041 - sparse_top_k_categorical_accuracy: 0.7295 - val_loss: 3.3015 - val_sparse_categorical_accuracy: 0.5503 - val_sparse_top_k_categorical_accuracy: 0.7235\nEpoch 7/10\n281/281 [==============================] - 6s 21ms/step - loss: 3.2595 - sparse_categorical_accuracy: 0.6059 - sparse_top_k_categorical_accuracy: 0.7322 - val_loss: 3.3064 - val_sparse_categorical_accuracy: 0.5454 - val_sparse_top_k_categorical_accuracy: 0.7266\nEpoch 8/10\n281/281 [==============================] - 6s 21ms/step - loss: 3.2591 - sparse_categorical_accuracy: 0.6063 - sparse_top_k_categorical_accuracy: 0.7327 - val_loss: 3.3025 - val_sparse_categorical_accuracy: 0.5481 - val_sparse_top_k_categorical_accuracy: 0.7231\nEpoch 9/10\n281/281 [==============================] - 5s 19ms/step - loss: 3.2588 - sparse_categorical_accuracy: 0.6062 - sparse_top_k_categorical_accuracy: 0.7332 - val_loss: 3.2992 - val_sparse_categorical_accuracy: 0.5521 - val_sparse_top_k_categorical_accuracy: 0.7257\nEpoch 10/10\n281/281 [==============================] - 5s 18ms/step - loss: 3.2577 - sparse_categorical_accuracy: 0.6073 - sparse_top_k_categorical_accuracy: 0.7363 - val_loss: 3.2981 - val_sparse_categorical_accuracy: 0.5516 - val_sparse_top_k_categorical_accuracy: 0.7306\nCPU times: user 18.9 s, sys: 3.86 s, total: 22.7 s\nWall time: 1min 1s\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n```python\n\n```\n# 6-6,使用tensorflow-serving部署模型\n\nTensorFlow训练好的模型以tensorflow原生方式保存成protobuf文件后可以用许多方式部署运行。\n\n例如：通过 tensorflow-js 可以用javascrip脚本加载模型并在浏览器中运行模型。\n\n通过 tensorflow-lite 可以在移动和嵌入式设备上加载并运行TensorFlow模型。\n\n通过 tensorflow-serving 可以加载模型后提供网络接口API服务，通过任意编程语言发送网络请求都可以获取模型预测结果。\n\n通过 tensorFlow for Java接口，可以在Java或者spark(scala)中调用tensorflow模型进行预测。\n\n我们主要介绍tensorflow serving部署模型、使用spark(scala)调用tensorflow模型的方法。\n\n```python\n\n```\n\n### 〇，tensorflow serving模型部署概述\n使用 tensorflow serving 部署模型要完成以下步骤。\n\n* (1) 准备protobuf模型文件。\n\n* (2) 安装tensorflow serving。\n\n* (3) 启动tensorflow serving 服务。\n\n* (4) 向API服务发送请求，获取预测结果。\n\n\n可通过以下colab链接测试效果《tf_serving》：\nhttps://colab.research.google.com/drive/1vS5LAYJTEn-H0GDb1irzIuyRB8E3eWc8\n\n\n\n```python\n%tensorflow_version 2.x\nimport tensorflow as tf\nprint(tf.__version__)\nfrom tensorflow.keras import * \n\n```\n\n### 一，准备protobuf模型文件\n\n我们使用tf.keras 训练一个简单的线性回归模型，并保存成protobuf文件。\n\n```python\nimport tensorflow as tf\nfrom tensorflow.keras import models,layers,optimizers\n\n## 样本数量\nn = 800\n\n## 生成测试用数据集\nX = tf.random.uniform([n,2],minval=-10,maxval=10) \nw0 = tf.constant([[2.0],[-1.0]])\nb0 = tf.constant(3.0)\n\nY = X@w0 + b0 + tf.random.normal([n,1],\n    mean = 0.0,stddev= 2.0) # @表示矩阵乘法,增加正态扰动\n\n## 建立模型\ntf.keras.backend.clear_session()\ninputs = layers.Input(shape = (2,),name =\"inputs\") #设置输入名字为inputs\noutputs = layers.Dense(1, name = \"outputs\")(inputs) #设置输出名字为outputs\nlinear = models.Model(inputs = inputs,outputs = outputs)\nlinear.summary()\n\n## 使用fit方法进行训练\nlinear.compile(optimizer=\"rmsprop\",loss=\"mse\",metrics=[\"mae\"])\nlinear.fit(X,Y,batch_size = 8,epochs = 100)  \n\ntf.print(\"w = \",linear.layers[1].kernel)\ntf.print(\"b = \",linear.layers[1].bias)\n\n## 将模型保存成pb格式文件\nexport_path = \"./data/linear_model/\"\nversion = \"1\"       #后续可以通过版本号进行模型版本迭代与管理\nlinear.save(export_path+version, save_format=\"tf\") \n```\n\n```python\n#查看保存的模型文件\n!ls {export_path+version}\n```\n\n```\nassets\tsaved_model.pb\tvariables\n```\n\n```python\n# 查看模型文件相关信息\n!saved_model_cli show --dir {export_path+str(version)} --all\n```\n\n```\nMetaGraphDef with tag-set: 'serve' contains the following SignatureDefs:\n\nsignature_def['__saved_model_init_op']:\n  The given SavedModel SignatureDef contains the following input(s):\n  The given SavedModel SignatureDef contains the following output(s):\n    outputs['__saved_model_init_op'] tensor_info:\n        dtype: DT_INVALID\n        shape: unknown_rank\n        name: NoOp\n  Method name is: \n\nsignature_def['serving_default']:\n  The given SavedModel SignatureDef contains the following input(s):\n    inputs['inputs'] tensor_info:\n        dtype: DT_FLOAT\n        shape: (-1, 2)\n        name: serving_default_inputs:0\n  The given SavedModel SignatureDef contains the following output(s):\n    outputs['outputs'] tensor_info:\n        dtype: DT_FLOAT\n        shape: (-1, 1)\n        name: StatefulPartitionedCall:0\n  Method name is: tensorflow/serving/predict\nWARNING:tensorflow:From /tensorflow-2.1.0/python3.6/tensorflow_core/python/ops/resource_variable_ops.py:1786: calling BaseResourceVariable.__init__ (from tensorflow.python.ops.resource_variable_ops) with constraint is deprecated and will be removed in a future version.\nInstructions for updating:\nIf using Keras pass *_constraint arguments to layers.\n\nDefined Functions:\n  Function Name: '__call__'\n    Option #1\n      Callable with:\n        Argument #1\n          inputs: TensorSpec(shape=(None, 2), dtype=tf.float32, name='inputs')\n        Argument #2\n          DType: bool\n          Value: False\n        Argument #3\n          DType: NoneType\n          Value: None\n    Option #2\n      Callable with:\n        Argument #1\n          inputs: TensorSpec(shape=(None, 2), dtype=tf.float32, name='inputs')\n        Argument #2\n          DType: bool\n          Value: True\n        Argument #3\n          DType: NoneType\n          Value: None\n\n  Function Name: '_default_save_signature'\n    Option #1\n      Callable with:\n        Argument #1\n          inputs: TensorSpec(shape=(None, 2), dtype=tf.float32, name='inputs')\n\n  Function Name: 'call_and_return_all_conditional_losses'\n    Option #1\n      Callable with:\n        Argument #1\n          inputs: TensorSpec(shape=(None, 2), dtype=tf.float32, name='inputs')\n        Argument #2\n          DType: bool\n          Value: True\n        Argument #3\n          DType: NoneType\n          Value: None\n    Option #2\n      Callable with:\n        Argument #1\n          inputs: TensorSpec(shape=(None, 2), dtype=tf.float32, name='inputs')\n        Argument #2\n          DType: bool\n          Value: False\n        Argument #3\n          DType: NoneType\n          Value: None\n```\n\n```python\n\n```\n\n### 二，安装 tensorflow serving\n\n\n安装 tensorflow serving 有2种主要方法：通过Docker镜像安装，通过apt安装。\n\n通过Docker镜像安装是最简单，最直接的方法，推荐采用。\n\nDocker可以理解成一种容器，其上面可以给各种不同的程序提供独立的运行环境。\n\n一般业务中用到tensorflow的企业都会有运维同学通过Docker 搭建 tensorflow serving.\n\n无需算法工程师同学动手安装，以下安装过程仅供参考。\n\n不同操作系统机器上安装Docker的方法可以参照以下链接。\n\nWindows: https://www.runoob.com/docker/windows-docker-install.html\n\nMacOs: https://www.runoob.com/docker/macos-docker-install.html\n\nCentOS: https://www.runoob.com/docker/centos-docker-install.html\n\n安装Docker成功后，使用如下命令加载 tensorflow/serving 镜像到Docker中\n\ndocker pull tensorflow/serving\n\n\n```python\n\n```\n\n### 三，启动 tensorflow serving 服务\n\n```python\n!docker run -t --rm -p 8501:8501 \\\n    -v \"/Users/.../data/linear_model/\" \\\n    -e MODEL_NAME=linear_model \\\n    tensorflow/serving & >server.log 2>&1\n```\n\n```python\n\n```\n\n### 四，向API服务发送请求\n\n\n可以使用任何编程语言的http功能发送请求，下面示范linux的 curl 命令发送请求，以及Python的requests库发送请求。\n\n```python\n!curl -d '{\"instances\": [1.0, 2.0, 5.0]}' \\\n    -X POST http://localhost:8501/v1/models/linear_model:predict\n```\n\n```\n{\n    \"predictions\": [[3.06546211], [5.01313448]\n    ]\n}\n```\n\n```python\nimport json,requests\n\ndata = json.dumps({\"signature_name\": \"serving_default\", \"instances\": [[1.0, 2.0], [5.0,7.0]]})\nheaders = {\"content-type\": \"application/json\"}\njson_response = requests.post('http://localhost:8501/v1/models/linear_model:predict', \n        data=data, headers=headers)\npredictions = json.loads(json_response.text)[\"predictions\"]\nprint(predictions)\n```\n\n```\n[[3.06546211], [6.02843142]]\n```\n\n```python\n\n```\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n\n```python\n\n```\n\n```python\n\n```\n# 6-7,使用spark-scala调用tensorflow2.0训练好的模型\n\n本篇文章介绍在spark中调用训练好的tensorflow模型进行预测的方法。\n\n本文内容的学习需要一定的spark和scala基础。\n\n如果使用pyspark的话会比较简单，只需要在每个excutor上用Python加载模型分别预测就可以了。\n\n但工程上为了性能考虑，通常使用的是scala版本的spark。\n\n本篇文章我们通过TensorFlow for Java 在spark中调用训练好的tensorflow模型。\n\n利用spark的分布式计算能力，从而可以让训练好的tensorflow模型在成百上千的机器上分布式并行执行模型推断。\n\n\n\n\n```python\n\n```\n\n### 〇，spark-scala调用tensorflow模型概述\n\n\n在spark(scala)中调用tensorflow模型进行预测需要完成以下几个步骤。\n\n（1）准备protobuf模型文件\n\n（2）创建spark(scala)项目，在项目中添加java版本的tensorflow对应的jar包依赖\n\n（3）在spark(scala)项目中driver端加载tensorflow模型调试成功\n\n（4）在spark(scala)项目中通过RDD在excutor上加载tensorflow模型调试成功\n\n（5） 在spark(scala)项目中通过DataFrame在excutor上加载tensorflow模型调试成功\n\n\n```python\n\n```\n\n### 一，准备protobuf模型文件\n\n\n我们使用tf.keras 训练一个简单的线性回归模型，并保存成protobuf文件。\n\n```python\n\n```\n\n```python\nimport tensorflow as tf\nfrom tensorflow.keras import models,layers,optimizers\n\n## 样本数量\nn = 800\n\n## 生成测试用数据集\nX = tf.random.uniform([n,2],minval=-10,maxval=10) \nw0 = tf.constant([[2.0],[-1.0]])\nb0 = tf.constant(3.0)\n\nY = X@w0 + b0 + tf.random.normal([n,1],mean = 0.0,stddev= 2.0)  # @表示矩阵乘法,增加正态扰动\n\n## 建立模型\ntf.keras.backend.clear_session()\ninputs = layers.Input(shape = (2,),name =\"inputs\") #设置输入名字为inputs\noutputs = layers.Dense(1, name = \"outputs\")(inputs) #设置输出名字为outputs\nlinear = models.Model(inputs = inputs,outputs = outputs)\nlinear.summary()\n\n## 使用fit方法进行训练\nlinear.compile(optimizer=\"rmsprop\",loss=\"mse\",metrics=[\"mae\"])\nlinear.fit(X,Y,batch_size = 8,epochs = 100)  \n\ntf.print(\"w = \",linear.layers[1].kernel)\ntf.print(\"b = \",linear.layers[1].bias)\n\n## 将模型保存成pb格式文件\nexport_path = \"./data/linear_model/\"\nversion = \"1\"       #后续可以通过版本号进行模型版本迭代与管理\nlinear.save(export_path+version, save_format=\"tf\") \n\n```\n\n```python\n\n```\n\n```python\n!ls {export_path+version}\n```\n\n```python\n# 查看模型文件相关信息\n!saved_model_cli show --dir {export_path+str(version)} --all\n```\n\n```python\n\n```\n\n模型文件信息中这些标红的部分都是后面有可能会用到的。\n\n![](./data/模型文件信息.png)\n\n```python\n\n```\n\n### 二，创建spark(scala)项目，在项目中添加java版本的tensorflow对应的jar包依赖\n\n```python\n\n```\n\n如果使用maven管理项目，需要添加如下 jar包依赖\n\n```\n<!-- https://mvnrepository.com/artifact/org.tensorflow/tensorflow -->\n<dependency>\n    <groupId>org.tensorflow</groupId>\n    <artifactId>tensorflow</artifactId>\n    <version>1.15.0</version>\n</dependency>\n```\n\n也可以从下面网址中直接下载 org.tensorflow.tensorflow的jar包\n\n以及其依赖的org.tensorflow.libtensorflow 和 org.tensorflowlibtensorflow_jni的jar包 放到项目中。\n\nhttps://mvnrepository.com/artifact/org.tensorflow/tensorflow/1.15.0\n\n\n```python\n\n```\n\n```python\n\n```\n\n### 三， 在spark(scala)项目中driver端加载tensorflow模型调试成功\n\n\n我们的示范代码在jupyter notebook中进行演示，需要安装toree以支持spark(scala)。\n\n\n```scala\nimport scala.collection.mutable.WrappedArray\nimport org.{tensorflow=>tf}\n\n//注：load函数的第二个参数一般都是“serve”，可以从模型文件相关信息中找到\n\nval bundle = tf.SavedModelBundle \n   .load(\"/Users/liangyun/CodeFiles/eat_tensorflow2_in_30_days/data/linear_model/1\",\"serve\")\n\n//注：在java版本的tensorflow中还是类似tensorflow1.0中静态计算图的模式，需要建立Session, 指定feed的数据和fetch的结果, 然后 run.\n//注：如果有多个数据需要喂入，可以连续用用多个feed方法\n//注：输入必须是float类型\n\nval sess = bundle.session()\nval x = tf.Tensor.create(Array(Array(1.0f,2.0f),Array(2.0f,3.0f)))\nval y =  sess.runner().feed(\"serving_default_inputs:0\", x)\n         .fetch(\"StatefulPartitionedCall:0\").run().get(0)\n\nval result = Array.ofDim[Float](y.shape()(0).toInt,y.shape()(1).toInt)\ny.copyTo(result)\n\nif(x != null) x.close()\nif(y != null) y.close()\nif(sess != null) sess.close()\nif(bundle != null) bundle.close()  \n\nresult\n\n```\n\n\n输出如下：\n\n```\nArray(Array(3.019596), Array(3.9878292))\n```\n\n\n![](./data/TfDriver.png)\n\n```python\n\n```\n\n### 四，在spark(scala)项目中通过RDD在excutor上加载tensorflow模型调试成功\n\n\n下面我们通过广播机制将Driver端加载的TensorFlow模型传递到各个excutor上，并在excutor上分布式地调用模型进行推断。\n\n\n\n```scala\nimport org.apache.spark.sql.SparkSession\nimport scala.collection.mutable.WrappedArray\nimport org.{tensorflow=>tf}\n\nval spark = SparkSession\n    .builder()\n    .appName(\"TfRDD\")\n    .enableHiveSupport()\n    .getOrCreate()\n\nval sc = spark.sparkContext\n\n//在Driver端加载模型\nval bundle = tf.SavedModelBundle \n   .load(\"/Users/liangyun/CodeFiles/master_tensorflow2_in_20_hours/data/linear_model/1\",\"serve\")\n\n//利用广播将模型发送到excutor上\nval broads = sc.broadcast(bundle)\n\n//构造数据集\nval rdd_data = sc.makeRDD(List(Array(1.0f,2.0f),Array(3.0f,5.0f),Array(6.0f,7.0f),Array(8.0f,3.0f)))\n\n//通过mapPartitions调用模型进行批量推断\nval rdd_result = rdd_data.mapPartitions(iter => {\n    \n    val arr = iter.toArray\n    val model = broads.value\n    val sess = model.session()\n    val x = tf.Tensor.create(arr)\n    val y =  sess.runner().feed(\"serving_default_inputs:0\", x)\n             .fetch(\"StatefulPartitionedCall:0\").run().get(0)\n\n    //将预测结果拷贝到相同shape的Float类型的Array中\n    val result = Array.ofDim[Float](y.shape()(0).toInt,y.shape()(1).toInt)\n    y.copyTo(result)\n    result.iterator\n    \n})\n\n\nrdd_result.take(5)\nbundle.close\n```\n\n\n```python\n\n```\n\n输出如下：\n\n```\nArray(Array(3.019596), Array(3.9264367), Array(7.8607616), Array(15.974984))\n```\n\n\n![](./data/TfRDD.png)\n\n```python\n\n```\n\n### 五， 在spark(scala)项目中通过DataFrame在excutor上加载tensorflow模型调试成功\n\n\n除了可以在Spark的RDD数据上调用tensorflow模型进行分布式推断，\n\n我们也可以在DataFrame数据上调用tensorflow模型进行分布式推断。\n\n主要思路是将推断方法注册成为一个sparkSQL函数。\n\n\n```scala\nimport org.apache.spark.sql.SparkSession\nimport scala.collection.mutable.WrappedArray\nimport org.{tensorflow=>tf}\n\nobject TfDataFrame extends Serializable{\n    \n    \n    def main(args:Array[String]):Unit = {\n        \n        val spark = SparkSession\n        .builder()\n        .appName(\"TfDataFrame\")\n        .enableHiveSupport()\n        .getOrCreate()\n        val sc = spark.sparkContext\n        \n        \n        import spark.implicits._\n\n        val bundle = tf.SavedModelBundle \n           .load(\"/Users/liangyun/CodeFiles/master_tensorflow2_in_20_hours/data/linear_model/1\",\"serve\")\n\n        val broads = sc.broadcast(bundle)\n        \n        //构造预测函数，并将其注册成sparkSQL的udf\n        val tfpredict = (features:WrappedArray[Float])  => {\n            val bund = broads.value\n            val sess = bund.session()\n            val x = tf.Tensor.create(Array(features.toArray))\n            val y =  sess.runner().feed(\"serving_default_inputs:0\", x)\n                     .fetch(\"StatefulPartitionedCall:0\").run().get(0)\n            val result = Array.ofDim[Float](y.shape()(0).toInt,y.shape()(1).toInt)\n            y.copyTo(result)\n            val y_pred = result(0)(0)\n            y_pred\n        }\n        spark.udf.register(\"tfpredict\",tfpredict)\n        \n        //构造DataFrame数据集，将features放到一列中\n        val dfdata = sc.parallelize(List(Array(1.0f,2.0f),Array(3.0f,5.0f),Array(7.0f,8.0f))).toDF(\"features\")\n        dfdata.show \n        \n        //调用sparkSQL预测函数，增加一个新的列作为y_preds\n        val dfresult = dfdata.selectExpr(\"features\",\"tfpredict(features) as y_preds\")\n        dfresult.show \n        bundle.close\n    }\n}\n\n```\n\n\n\n```scala\nTfDataFrame.main(Array())\n```\n\n\n```\n+----------+\n|  features|\n+----------+\n|[1.0, 2.0]|\n|[3.0, 5.0]|\n|[7.0, 8.0]|\n+----------+\n\n+----------+---------+\n|  features|  y_preds|\n+----------+---------+\n|[1.0, 2.0]| 3.019596|\n|[3.0, 5.0]|3.9264367|\n|[7.0, 8.0]| 8.828995|\n+----------+---------+\n```\n\n\n以上我们分别在spark 的RDD数据结构和DataFrame数据结构上实现了调用一个tf.keras实现的线性回归模型进行分布式模型推断。\n\n在本例基础上稍作修改则可以用spark调用训练好的各种复杂的神经网络模型进行分布式模型推断。\n\n但实际上tensorflow并不仅仅适合实现神经网络，其底层的计算图语言可以表达各种数值计算过程。\n\n利用其丰富的低阶API，我们可以在tensorflow2.0上实现任意机器学习模型，\n\n结合tf.Module提供的便捷的封装功能，我们可以将训练好的任意机器学习模型导出成模型文件并在spark上分布式调用执行。\n\n这无疑为我们的工程应用提供了巨大的想象空间。\n\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"Python与算法之美\"下留言。作者时间和精力有限，会酌情予以回复。\n\n![image.png](./data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter1-1.md",
    "content": "# 1-1 Example: Modeling Procedure for Structured Data\n\n\n### 1. Data Preparation\n\n\nThe purpose of the Titanic dataset is to predict whether the given passengers could be survived after Titinic hit the iceburg, according to their personal information.\n\nWe usually use DataFrame from the pandas library to pre-process the structured data.\n\n```python\nimport numpy as np \nimport pandas as pd \nimport matplotlib.pyplot as plt\nimport tensorflow as tf \nfrom tensorflow.keras import models,layers\n\ndftrain_raw = pd.read_csv('../data/titanic/train.csv')\ndftest_raw = pd.read_csv('../data/titanic/test.csv')\ndftrain_raw.head(10)\n```\n\n![](../data/1-1-数据集展示.jpg)\n\n\nIntroduction of each field：\n\n* Survived: 0 for death and 1 for survived [y labels]\n* Pclass: Class of the tickets, with three possible values (1,2,3) [converting to one-hot encoding]\n* Name: Name of each passenger [discarded]\n* Sex: Gender of each passenger [converting to bool type]\n* Age: Age of each passenger (partly missing) [numerical feature, should add \"Whether age is missing\" as auxiliary feature]\n* SibSp: Number of siblings and spouse of each passenger (interger) [numerical feature]\n* Parch: Number of parents/children of each passenger (interger) [numerical feature]\n* Ticket: Ticket number (string) [discarded]\n* Fare: Ticket price of each passenger (float, between 0 to 500) [numerical feature]\n* Cabin: Cabin where each passenger is located (partly missing) [should add \"Whether cabin is missing\" as auxiliary feature]\n* Embarked: Which port was each passenger embarked, possible values are S、C、Q (partly missing) [converting to one-hot encoding, four dimensions, S,C,Q,nan]\n\n\nUse data visualization in pandas library for initial EDA (Exploratory Data Analysis).\n\nSurvival label distribution:\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'png'\nax = dftrain_raw['Survived'].value_counts().plot(kind = 'bar',\n     figsize = (12,8),fontsize=15,rot = 0)\nax.set_ylabel('Counts',fontsize = 15)\nax.set_xlabel('Survived',fontsize = 15)\nplt.show()\n```\n\n![](../data/1-1-Label分布.jpg)\n\n\nAge distribution:\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'png'\nax = dftrain_raw['Age'].plot(kind = 'hist',bins = 20,color= 'purple',\n                    figsize = (12,8),fontsize=15)\n\nax.set_ylabel('Frequency',fontsize = 15)\nax.set_xlabel('Age',fontsize = 15)\nplt.show()\n```\n\n![](../data/1-1-年龄分布.jpg)\n\n\nCorrelation between age and survival label:\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'png'\nax = dftrain_raw.query('Survived == 0')['Age'].plot(kind = 'density',\n                      figsize = (12,8),fontsize=15)\ndftrain_raw.query('Survived == 1')['Age'].plot(kind = 'density',\n                      figsize = (12,8),fontsize=15)\nax.legend(['Survived==0','Survived==1'],fontsize = 12)\nax.set_ylabel('Density',fontsize = 15)\nax.set_xlabel('Age',fontsize = 15)\nplt.show()\n```\n\n![](../data/1-1-年龄相关性.jpg)\n\n\nBelow are code for formal data pre-processing:\n\n```python\ndef preprocessing(dfdata):\n\n    dfresult= pd.DataFrame()\n\n    #Pclass\n    dfPclass = pd.get_dummies(dfdata['Pclass'])\n    dfPclass.columns = ['Pclass_' +str(x) for x in dfPclass.columns ]\n    dfresult = pd.concat([dfresult,dfPclass],axis = 1)\n\n    #Sex\n    dfSex = pd.get_dummies(dfdata['Sex'])\n    dfresult = pd.concat([dfresult,dfSex],axis = 1)\n\n    #Age\n    dfresult['Age'] = dfdata['Age'].fillna(0)\n    dfresult['Age_null'] = pd.isna(dfdata['Age']).astype('int32')\n\n    #SibSp,Parch,Fare\n    dfresult['SibSp'] = dfdata['SibSp']\n    dfresult['Parch'] = dfdata['Parch']\n    dfresult['Fare'] = dfdata['Fare']\n\n    #Carbin\n    dfresult['Cabin_null'] =  pd.isna(dfdata['Cabin']).astype('int32')\n\n    #Embarked\n    dfEmbarked = pd.get_dummies(dfdata['Embarked'],dummy_na=True)\n    dfEmbarked.columns = ['Embarked_' + str(x) for x in dfEmbarked.columns]\n    dfresult = pd.concat([dfresult,dfEmbarked],axis = 1)\n\n    return(dfresult)\n\nx_train = preprocessing(dftrain_raw)\ny_train = dftrain_raw['Survived'].values\n\nx_test = preprocessing(dftest_raw)\ny_test = dftest_raw['Survived'].values\n\nprint(\"x_train.shape =\", x_train.shape )\nprint(\"x_test.shape =\", x_test.shape )\n\n```\n\n```\nx_train.shape = (712, 15)\nx_test.shape = (179, 15)\n```\n\n```python\n\n```\n\n### 2. Model Definition\n\n\nUsually there are three ways of modeling using APIs of Keras: sequential modeling using `Sequential()` function, arbitrary modeling using functional API, and customized modeling by inheriting base class `Model`.\n\nHere we take the simplest way: sequential modeling using function `Sequential()`.\n\n```python\ntf.keras.backend.clear_session()\n\nmodel = models.Sequential()\nmodel.add(layers.Dense(20,activation = 'relu',input_shape=(15,)))\nmodel.add(layers.Dense(10,activation = 'relu' ))\nmodel.add(layers.Dense(1,activation = 'sigmoid' ))\n\nmodel.summary()\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ndense (Dense)                (None, 20)                320       \n_________________________________________________________________\ndense_1 (Dense)              (None, 10)                210       \n_________________________________________________________________\ndense_2 (Dense)              (None, 1)                 11        \n=================================================================\nTotal params: 541\nTrainable params: 541\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n\n### 3. Model Training\n\n\nThere are three usual ways for model training: use internal function fit, use internal function train_on_batch, and customized training loop. Here we introduce the simplist way: using internal function fit.\n\n```python\n# Use binary cross entropy loss function for binary classification\nmodel.compile(optimizer='adam',\n            loss='binary_crossentropy',\n            metrics=['AUC'])\n\nhistory = model.fit(x_train,y_train,\n                    batch_size= 64,\n                    epochs= 30,\n                    validation_split=0.2 #Split part of the training data for validation\n                   )\n```\n\n```\nTrain on 569 samples, validate on 143 samples\nEpoch 1/30\n569/569 [==============================] - 1s 2ms/sample - loss: 3.5841 - AUC: 0.4079 - val_loss: 3.4429 - val_AUC: 0.4129\nEpoch 2/30\n569/569 [==============================] - 0s 102us/sample - loss: 2.6093 - AUC: 0.3967 - val_loss: 2.4886 - val_AUC: 0.4139\nEpoch 3/30\n569/569 [==============================] - 0s 68us/sample - loss: 1.8375 - AUC: 0.4003 - val_loss: 1.7383 - val_AUC: 0.4223\nEpoch 4/30\n569/569 [==============================] - 0s 83us/sample - loss: 1.2545 - AUC: 0.4390 - val_loss: 1.1936 - val_AUC: 0.4765\nEpoch 5/30\n569/569 [==============================] - ETA: 0s - loss: 1.4435 - AUC: 0.375 - 0s 90us/sample - loss: 0.9141 - AUC: 0.5192 - val_loss: 0.8274 - val_AUC: 0.5584\nEpoch 6/30\n569/569 [==============================] - 0s 110us/sample - loss: 0.7052 - AUC: 0.6290 - val_loss: 0.6596 - val_AUC: 0.6880\nEpoch 7/30\n569/569 [==============================] - 0s 90us/sample - loss: 0.6410 - AUC: 0.7086 - val_loss: 0.6519 - val_AUC: 0.6845\nEpoch 8/30\n569/569 [==============================] - 0s 93us/sample - loss: 0.6246 - AUC: 0.7080 - val_loss: 0.6480 - val_AUC: 0.6846\nEpoch 9/30\n569/569 [==============================] - 0s 73us/sample - loss: 0.6088 - AUC: 0.7113 - val_loss: 0.6497 - val_AUC: 0.6838\nEpoch 10/30\n569/569 [==============================] - 0s 79us/sample - loss: 0.6051 - AUC: 0.7117 - val_loss: 0.6454 - val_AUC: 0.6873\nEpoch 11/30\n569/569 [==============================] - 0s 96us/sample - loss: 0.5972 - AUC: 0.7218 - val_loss: 0.6369 - val_AUC: 0.6888\nEpoch 12/30\n569/569 [==============================] - 0s 92us/sample - loss: 0.5918 - AUC: 0.7294 - val_loss: 0.6330 - val_AUC: 0.6908\nEpoch 13/30\n569/569 [==============================] - 0s 75us/sample - loss: 0.5864 - AUC: 0.7363 - val_loss: 0.6281 - val_AUC: 0.6948\nEpoch 14/30\n569/569 [==============================] - 0s 104us/sample - loss: 0.5832 - AUC: 0.7426 - val_loss: 0.6240 - val_AUC: 0.7030\nEpoch 15/30\n569/569 [==============================] - 0s 74us/sample - loss: 0.5777 - AUC: 0.7507 - val_loss: 0.6200 - val_AUC: 0.7066\nEpoch 16/30\n569/569 [==============================] - 0s 79us/sample - loss: 0.5726 - AUC: 0.7569 - val_loss: 0.6155 - val_AUC: 0.7132\nEpoch 17/30\n569/569 [==============================] - 0s 99us/sample - loss: 0.5674 - AUC: 0.7643 - val_loss: 0.6070 - val_AUC: 0.7255\nEpoch 18/30\n569/569 [==============================] - 0s 97us/sample - loss: 0.5631 - AUC: 0.7721 - val_loss: 0.6061 - val_AUC: 0.7305\nEpoch 19/30\n569/569 [==============================] - 0s 73us/sample - loss: 0.5580 - AUC: 0.7792 - val_loss: 0.6027 - val_AUC: 0.7332\nEpoch 20/30\n569/569 [==============================] - 0s 85us/sample - loss: 0.5533 - AUC: 0.7861 - val_loss: 0.5997 - val_AUC: 0.7366\nEpoch 21/30\n569/569 [==============================] - 0s 87us/sample - loss: 0.5497 - AUC: 0.7926 - val_loss: 0.5961 - val_AUC: 0.7433\nEpoch 22/30\n569/569 [==============================] - 0s 101us/sample - loss: 0.5454 - AUC: 0.7987 - val_loss: 0.5943 - val_AUC: 0.7438\nEpoch 23/30\n569/569 [==============================] - 0s 100us/sample - loss: 0.5398 - AUC: 0.8057 - val_loss: 0.5926 - val_AUC: 0.7492\nEpoch 24/30\n569/569 [==============================] - 0s 79us/sample - loss: 0.5328 - AUC: 0.8122 - val_loss: 0.5912 - val_AUC: 0.7493\nEpoch 25/30\n569/569 [==============================] - 0s 86us/sample - loss: 0.5283 - AUC: 0.8147 - val_loss: 0.5902 - val_AUC: 0.7509\nEpoch 26/30\n569/569 [==============================] - 0s 67us/sample - loss: 0.5246 - AUC: 0.8196 - val_loss: 0.5845 - val_AUC: 0.7552\nEpoch 27/30\n569/569 [==============================] - 0s 72us/sample - loss: 0.5205 - AUC: 0.8271 - val_loss: 0.5837 - val_AUC: 0.7584\nEpoch 28/30\n569/569 [==============================] - 0s 74us/sample - loss: 0.5144 - AUC: 0.8302 - val_loss: 0.5848 - val_AUC: 0.7561\nEpoch 29/30\n569/569 [==============================] - 0s 77us/sample - loss: 0.5099 - AUC: 0.8326 - val_loss: 0.5809 - val_AUC: 0.7583\nEpoch 30/30\n569/569 [==============================] - 0s 80us/sample - loss: 0.5071 - AUC: 0.8349 - val_loss: 0.5816 - val_AUC: 0.7605\n\n```\n\n\n### 4. Model Evaluation\n\n\nFirst, we evaluate the model performance on the training and validation datasets.\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nimport matplotlib.pyplot as plt\n\ndef plot_metric(history, metric):\n    train_metrics = history.history[metric]\n    val_metrics = history.history['val_'+metric]\n    epochs = range(1, len(train_metrics) + 1)\n    plt.plot(epochs, train_metrics, 'bo--')\n    plt.plot(epochs, val_metrics, 'ro-')\n    plt.title('Training and validation '+ metric)\n    plt.xlabel(\"Epochs\")\n    plt.ylabel(metric)\n    plt.legend([\"train_\"+metric, 'val_'+metric])\n    plt.show()\n```\n\n```python\nplot_metric(history,\"loss\")\n```\n\n![](../data/1-1-Loss曲线.jpg)\n\n```python\nplot_metric(history,\"AUC\")\n```\n\n![](../data/1-1-AUC曲线.jpg)\n\n\nLet's take a look at the performance on the testing dataset.\n\n```python\nmodel.evaluate(x = x_test,y = y_test)\n```\n\n```\n[0.5191367897907448, 0.8122605]\n```\n\n```python\n\n```\n\n### 5. Model Application\n\n```python\n#Predict the possiblities\nmodel.predict(x_test[0:10])\n#model(tf.constant(x_test[0:10].values,dtype = tf.float32)) #Identical way\n```\n\n```\narray([[0.26501188],\n       [0.40970832],\n       [0.44285864],\n       [0.78408605],\n       [0.47650957],\n       [0.43849158],\n       [0.27426785],\n       [0.5962582 ],\n       [0.59476686],\n       [0.17882936]], dtype=float32)\n```\n\n```python\n#Predict the classes\nmodel.predict_classes(x_test[0:10])\n```\n\n```\narray([[0],\n       [0],\n       [0],\n       [1],\n       [0],\n       [0],\n       [0],\n       [1],\n       [1],\n       [0]], dtype=int32)\n```\n\n```python\n\n```\n\n### 6. Model Saving\n\n\nThe trained model could be saved through either the way of Keras or the way of original TensorFlow. The former only allows using Python to retrieve the model, while the latter allows cross-platform deployment.\n\nThe latter way is recommended to save the model.\n\n\n**(1) Model Saving with Keras**\n\n```python\n# Saving model structure and parameters\n\nmodel.save('../data/keras_model.h5')  \n\ndel model  #Deleting current model\n\n# Identical to the previous one\nmodel = models.load_model('../data/keras_model.h5')\nmodel.evaluate(x_test,y_test)\n```\n\n```\n[0.5191367897907448, 0.8122605]\n```\n\n```python\n# Saving the model structure\njson_str = model.to_json()\n\n# Retrieving the model structure\nmodel_json = models.model_from_json(json_str)\n```\n\n```python\n# Saving the weights of the model\nmodel.save_weights('../data/keras_model_weight.h5')\n\n# Retrieving the model structure\nmodel_json = models.model_from_json(json_str)\nmodel_json.compile(\n        optimizer='adam',\n        loss='binary_crossentropy',\n        metrics=['AUC']\n    )\n\n# Load the weights\nmodel_json.load_weights('../data/keras_model_weight.h5')\nmodel_json.evaluate(x_test,y_test)\n```\n\n```\n[0.5191367897907448, 0.8122605]\n```\n\n\n**(2) Model Saving with Original Way of TensorFlow**\n\n```python\n# Saving the weights, this way only save the tensors of the weights\nmodel.save_weights('../data/tf_model_weights.ckpt',save_format = \"tf\")\n```\n\n```python\n# Saving model structure and parameters to a file, so the model allows cross-platform deployment\n\nmodel.save('../data/tf_model_savedmodel', save_format=\"tf\")\nprint('export saved model.')\n\nmodel_loaded = tf.keras.models.load_model('../data/tf_model_savedmodel')\nmodel_loaded.evaluate(x_test,y_test)\n```\n\n```\n[0.5191365896656527, 0.8122605]\n```\n\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n\n```python\n\n```\n"
  },
  {
    "path": "english/Chapter1-2.md",
    "content": "# 1-2 Example: Modeling Procedure for Images\n\n\n### 1. Data Preparation\n\n\nThe cifar2 dataset is a sub-set of cifar10, which only contains two classes: airplane and automobile.\n\nEach class contains 5000 images for training and 1000 images for testing.\n\nThe goal for this task is to train a model to classify images as airplane or automobile.\n\nThe files of cifar2 are organized as below:\n\n![](../data/cifar2.jpg)\n\n```python\n\n```\n\nThere are two ways of image preparation in TensorFlow.\n\nThe first one is constructing the image data generator using ImageDataGenerator in tf.keras.\n\nThe second one is constructing data pipeline using tf.data.Dataset and several methods in tf.image\n\nThe former is simpler and is demonstrated in [this article](https://zhuanlan.zhihu.com/p/67466552) (in Chinese).\n\nThe latter is the original method of TensorFlow, which is more flexible with possible better performance with proper usage.\n\nBelow is the introduction to the second method.\n\n\n```python\nimport tensorflow as tf \nfrom tensorflow.keras import datasets,layers,models\n\nBATCH_SIZE = 100\n\ndef load_image(img_path,size = (32,32)):\n    label = tf.constant(1,tf.int8) if tf.strings.regex_full_match(img_path,\".*automobile.*\") \\\n            else tf.constant(0,tf.int8)\n    img = tf.io.read_file(img_path)\n    img = tf.image.decode_jpeg(img) #In jpeg format\n    img = tf.image.resize(img,size)/255.0\n    return(img,label)\n\n```\n\n```python\n#Parallel pre-processing using num_parallel_calls and caching data with prefetch function to improve the performance\nds_train = tf.data.Dataset.list_files(\"../data/cifar2/train/*/*.jpg\") \\\n           .map(load_image, num_parallel_calls=tf.data.experimental.AUTOTUNE) \\\n           .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n           .prefetch(tf.data.experimental.AUTOTUNE)  \n\nds_test = tf.data.Dataset.list_files(\"../data/cifar2/test/*/*.jpg\") \\\n           .map(load_image, num_parallel_calls=tf.data.experimental.AUTOTUNE) \\\n           .batch(BATCH_SIZE) \\\n           .prefetch(tf.data.experimental.AUTOTUNE)  \n\n```\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\n#Checking part of the samples\nfrom matplotlib import pyplot as plt \n\nplt.figure(figsize=(8,8)) \nfor i,(img,label) in enumerate(ds_train.unbatch().take(9)):\n    ax=plt.subplot(3,3,i+1)\n    ax.imshow(img.numpy())\n    ax.set_title(\"label = %d\"%label)\n    ax.set_xticks([])\n    ax.set_yticks([]) \nplt.show()\n\n```\n\n![](../data/1-2-图片预览.jpg)\n\n```python\nfor x,y in ds_train.take(1):\n    print(x.shape,y.shape)\n```\n\n```\n(100, 32, 32, 3) (100,)\n```\n\n```python\n\n```\n\n### 2. Model Definition\n\n\nUsually there are three ways of modeling using APIs of Keras: sequential modeling using `Sequential()` function, arbitrary modeling using functional API, and customized modeling by inheriting base class `Model`.\n\nHere we use API functions for modeling.\n\n```python\ntf.keras.backend.clear_session() #Clearing the session\n\ninputs = layers.Input(shape=(32,32,3))\nx = layers.Conv2D(32,kernel_size=(3,3))(inputs)\nx = layers.MaxPool2D()(x)\nx = layers.Conv2D(64,kernel_size=(5,5))(x)\nx = layers.MaxPool2D()(x)\nx = layers.Dropout(rate=0.1)(x)\nx = layers.Flatten()(x)\nx = layers.Dense(32,activation='relu')(x)\noutputs = layers.Dense(1,activation = 'sigmoid')(x)\n\nmodel = models.Model(inputs = inputs,outputs = outputs)\n\nmodel.summary()\n```\n\n```\nModel: \"model\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ninput_1 (InputLayer)         [(None, 32, 32, 3)]       0         \n_________________________________________________________________\nconv2d (Conv2D)              (None, 30, 30, 32)        896       \n_________________________________________________________________\nmax_pooling2d (MaxPooling2D) (None, 15, 15, 32)        0         \n_________________________________________________________________\nconv2d_1 (Conv2D)            (None, 11, 11, 64)        51264     \n_________________________________________________________________\nmax_pooling2d_1 (MaxPooling2 (None, 5, 5, 64)          0         \n_________________________________________________________________\ndropout (Dropout)            (None, 5, 5, 64)          0         \n_________________________________________________________________\nflatten (Flatten)            (None, 1600)              0         \n_________________________________________________________________\ndense (Dense)                (None, 32)                51232     \n_________________________________________________________________\ndense_1 (Dense)              (None, 1)                 33        \n=================================================================\nTotal params: 103,425\nTrainable params: 103,425\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\n\n```\n\n### 3. Model Training\n\n\nThere are three usual ways for model training: use internal function fit, use internal function train_on_batch, and customized training loop. Here we introduce the simplist way: using internal function fit.\n\n```python\nimport datetime\nimport os\n\nstamp = datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\nlogdir = os.path.join('data', 'autograph', stamp)\n\n## We recommend using pathlib under Python3\n# from pathlib import Path\n# stamp = datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\n# logdir = str(Path('../data/autograph/' + stamp))\n\ntensorboard_callback = tf.keras.callbacks.TensorBoard(logdir, histogram_freq=1)\n\nmodel.compile(\n        optimizer=tf.keras.optimizers.Adam(learning_rate=0.001),\n        loss=tf.keras.losses.binary_crossentropy,\n        metrics=[\"accuracy\"]\n    )\n\nhistory = model.fit(ds_train,epochs= 10,validation_data=ds_test,\n                    callbacks = [tensorboard_callback],workers = 4)\n\n```\n\n```\nTrain for 100 steps, validate for 20 steps\nEpoch 1/10\n100/100 [==============================] - 16s 156ms/step - loss: 0.4830 - accuracy: 0.7697 - val_loss: 0.3396 - val_accuracy: 0.8475\nEpoch 2/10\n100/100 [==============================] - 14s 142ms/step - loss: 0.3437 - accuracy: 0.8469 - val_loss: 0.2997 - val_accuracy: 0.8680\nEpoch 3/10\n100/100 [==============================] - 13s 131ms/step - loss: 0.2871 - accuracy: 0.8777 - val_loss: 0.2390 - val_accuracy: 0.9015\nEpoch 4/10\n100/100 [==============================] - 12s 117ms/step - loss: 0.2410 - accuracy: 0.9040 - val_loss: 0.2005 - val_accuracy: 0.9195\nEpoch 5/10\n100/100 [==============================] - 13s 130ms/step - loss: 0.1992 - accuracy: 0.9213 - val_loss: 0.1949 - val_accuracy: 0.9180\nEpoch 6/10\n100/100 [==============================] - 14s 136ms/step - loss: 0.1737 - accuracy: 0.9323 - val_loss: 0.1723 - val_accuracy: 0.9275\nEpoch 7/10\n100/100 [==============================] - 14s 139ms/step - loss: 0.1531 - accuracy: 0.9412 - val_loss: 0.1670 - val_accuracy: 0.9310\nEpoch 8/10\n100/100 [==============================] - 13s 134ms/step - loss: 0.1299 - accuracy: 0.9525 - val_loss: 0.1553 - val_accuracy: 0.9340\nEpoch 9/10\n100/100 [==============================] - 14s 137ms/step - loss: 0.1158 - accuracy: 0.9556 - val_loss: 0.1581 - val_accuracy: 0.9340\nEpoch 10/10\n100/100 [==============================] - 14s 142ms/step - loss: 0.1006 - accuracy: 0.9617 - val_loss: 0.1614 - val_accuracy: 0.9345\n```\n\n```python\n\n```\n\n### 4. Model Evaluation\n\n```python\n%load_ext tensorboard\n#%tensorboard --logdir ../data/keras_model\n```\n\n```python\nfrom tensorboard import notebook\nnotebook.list() \n```\n\n```python\n#Checking model in tensorboard\nnotebook.start(\"--logdir ../data/keras_model\")\n```\n\n```python\n\n```\n\n![](../data/1-2-tensorboard.jpg)\n\n```python\nimport pandas as pd \ndfhistory = pd.DataFrame(history.history)\ndfhistory.index = range(1,len(dfhistory) + 1)\ndfhistory.index.name = 'epoch'\n\ndfhistory\n```\n\n![](../data/1-2-dfhistory.jpg)\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nimport matplotlib.pyplot as plt\n\ndef plot_metric(history, metric):\n    train_metrics = history.history[metric]\n    val_metrics = history.history['val_'+metric]\n    epochs = range(1, len(train_metrics) + 1)\n    plt.plot(epochs, train_metrics, 'bo--')\n    plt.plot(epochs, val_metrics, 'ro-')\n    plt.title('Training and validation '+ metric)\n    plt.xlabel(\"Epochs\")\n    plt.ylabel(metric)\n    plt.legend([\"train_\"+metric, 'val_'+metric])\n    plt.show()\n```\n\n```python\nplot_metric(history,\"loss\")\n```\n\n![](../data/1-2-Loss曲线.jpg)\n\n```python\nplot_metric(history,\"accuracy\")\n```\n\n![](../data/1-2-Accuracy曲线.jpg)\n\n```python\n#Evaluating data using model.evaluate function\nval_loss,val_accuracy = model.evaluate(ds_test,workers=4)\nprint(val_loss,val_accuracy)\n\n```\n\n```\n0.16139143370091916 0.9345\n```\n\n\n### 5. Model Application\n\n\nWe can use model.predict(ds_test) for prediction.\n\nWe can also use model.predict_on_batch(x_test) to predict a batch of data.\n\n```python\nmodel.predict(ds_test)\n```\n\n```\narray([[9.9996173e-01],\n       [9.5104784e-01],\n       [2.8648047e-04],\n       ...,\n       [1.1484033e-03],\n       [3.5589080e-02],\n       [9.8537153e-01]], dtype=float32)\n```\n\n```python\nfor x,y in ds_test.take(1):\n    print(model.predict_on_batch(x[0:20]))\n```\n\n```\ntf.Tensor(\n[[3.8065155e-05]\n [8.8236779e-01]\n [9.1433197e-01]\n [9.9921846e-01]\n [6.4052093e-01]\n [4.9970779e-03]\n [2.6735585e-04]\n [9.9842811e-01]\n [7.9198682e-01]\n [7.4823302e-01]\n [8.7208226e-03]\n [9.3951421e-03]\n [9.9790359e-01]\n [9.9998581e-01]\n [2.1642199e-05]\n [1.7915063e-02]\n [2.5839690e-02]\n [9.7538447e-01]\n [9.7393811e-01]\n [9.7333014e-01]], shape=(20, 1), dtype=float32)\n```\n\n\n\n\n```python\n\n```\n\n### 6. Model Saving\n\n\nWe recommend model saving with the original way of TensorFlow.\n\n```python\n# Saving the weights, this way only save the tensors of the weights\nmodel.save_weights('../data/tf_model_weights.ckpt',save_format = \"tf\")\n```\n\n```python\n# Saving model structure and parameters to a file, so the model allows cross-platform deployment\n\nmodel.save('../data/tf_model_savedmodel', save_format=\"tf\")\nprint('export saved model.')\n\nmodel_loaded = tf.keras.models.load_model('../data/tf_model_savedmodel')\nmodel_loaded.evaluate(ds_test)\n```\n\n```\n[0.16139124035835267, 0.9345]\n```\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter1-3.md",
    "content": "# 1-3 Example: Modeling Procedure for Texts\n\n\n### 1. Data Preparation\n\n\nThe purpose of the imdb dataset is to predict the sentiment label according to the movie reviews.\n\nThere are 20000 text reviews in the training dataset and 5000 in the testing dataset, with half positive and half negative, respectively.\n\nThe pre-processing of the text dataset is a little bit complex, which includes word division (for Chinese only, not relevant to this demonstration), dictionary construction, encoding, sequence filling, and data pipeline construction, etc.\n\nThere are two popular mothods of text preparation in TensorFlow.\n\nThe first one is constructing the text data generator using Tokenizer in `tf.keras.preprocessing`, together with `tf.keras.utils.Sequence`.\n\nThe second one is using `tf.data.Dataset`, together with the pre-processing layer `tf.keras.layers.experimental.preprocessing.TextVectorization`.\n\nThe former is more complex and is demonstrated [here](https://zhuanlan.zhihu.com/p/67697840).\n\nThe latter is the original method of TensorFlow, which is simpler.\n\nBelow is the introduction to the second method.\n\n\n![](../data/电影评论.jpg)\n\n```python\nimport numpy as np \nimport pandas as pd \nfrom matplotlib import pyplot as plt\nimport tensorflow as tf\nfrom tensorflow.keras import models,layers,preprocessing,optimizers,losses,metrics\nfrom tensorflow.keras.layers.experimental.preprocessing import TextVectorization\nimport re,string\n\ntrain_data_path = \"../data/imdb/train.csv\"\ntest_data_path =  \"../data/imdb/test.csv\"\n\nMAX_WORDS = 10000  # Consider the 10000 words with the highest frequency of appearance\nMAX_LEN = 200  # For each sample, preserve the first 200 words\nBATCH_SIZE = 20 \n\n\n#Constructing data pipeline\ndef split_line(line):\n    arr = tf.strings.split(line,\"\\t\")\n    label = tf.expand_dims(tf.cast(tf.strings.to_number(arr[0]),tf.int32),axis = 0)\n    text = tf.expand_dims(arr[1],axis = 0)\n    return (text,label)\n\nds_train_raw =  tf.data.TextLineDataset(filenames = [train_data_path]) \\\n   .map(split_line,num_parallel_calls = tf.data.experimental.AUTOTUNE) \\\n   .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n   .prefetch(tf.data.experimental.AUTOTUNE)\n\nds_test_raw = tf.data.TextLineDataset(filenames = [test_data_path]) \\\n   .map(split_line,num_parallel_calls = tf.data.experimental.AUTOTUNE) \\\n   .batch(BATCH_SIZE) \\\n   .prefetch(tf.data.experimental.AUTOTUNE)\n\n\n#Constructing dictionary\ndef clean_text(text):\n    lowercase = tf.strings.lower(text)\n    stripped_html = tf.strings.regex_replace(lowercase, '<br />', ' ')\n    cleaned_punctuation = tf.strings.regex_replace(stripped_html,\n         '[%s]' % re.escape(string.punctuation),'')\n    return cleaned_punctuation\n\nvectorize_layer = TextVectorization(\n    standardize=clean_text,\n    split = 'whitespace',\n    max_tokens=MAX_WORDS-1, #Leave one item for the placeholder\n    output_mode='int',\n    output_sequence_length=MAX_LEN)\n\nds_text = ds_train_raw.map(lambda text,label: text)\nvectorize_layer.adapt(ds_text)\nprint(vectorize_layer.get_vocabulary()[0:100])\n\n\n#Word encoding\nds_train = ds_train_raw.map(lambda text,label:(vectorize_layer(text),label)) \\\n    .prefetch(tf.data.experimental.AUTOTUNE)\nds_test = ds_test_raw.map(lambda text,label:(vectorize_layer(text),label)) \\\n    .prefetch(tf.data.experimental.AUTOTUNE)\n\n```\n\n```\n[b'the', b'and', b'a', b'of', b'to', b'is', b'in', b'it', b'i', b'this', b'that', b'was', b'as', b'for', b'with', b'movie', b'but', b'film', b'on', b'not', b'you', b'his', b'are', b'have', b'be', b'he', b'one', b'its', b'at', b'all', b'by', b'an', b'they', b'from', b'who', b'so', b'like', b'her', b'just', b'or', b'about', b'has', b'if', b'out', b'some', b'there', b'what', b'good', b'more', b'when', b'very', b'she', b'even', b'my', b'no', b'would', b'up', b'time', b'only', b'which', b'story', b'really', b'their', b'were', b'had', b'see', b'can', b'me', b'than', b'we', b'much', b'well', b'get', b'been', b'will', b'into', b'people', b'also', b'other', b'do', b'bad', b'because', b'great', b'first', b'how', b'him', b'most', b'dont', b'made', b'then', b'them', b'films', b'movies', b'way', b'make', b'could', b'too', b'any', b'after', b'characters']\n```\n\n```python\n\n```\n\n### 2. Model Definition\n\n\nUsually there are three ways of modeling using APIs of Keras: sequential modeling using `Sequential()` function, arbitrary modeling using functional API, and customized modeling by inheriting base class `Model`.\n\nIn this example, we use customized modeling by inheriting base class `Model`.\n\n```python\n# Actually, modeling with sequential() or API functions should be priorized.\n\ntf.keras.backend.clear_session()\n\nclass CnnModel(models.Model):\n    def __init__(self):\n        super(CnnModel, self).__init__()\n        \n    def build(self,input_shape):\n        self.embedding = layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN)\n        self.conv_1 = layers.Conv1D(16, kernel_size= 5,name = \"conv_1\",activation = \"relu\")\n        self.pool_1 = layers.MaxPool1D(name = \"pool_1\")\n        self.conv_2 = layers.Conv1D(128, kernel_size=2,name = \"conv_2\",activation = \"relu\")\n        self.pool_2 = layers.MaxPool1D(name = \"pool_2\")\n        self.flatten = layers.Flatten()\n        self.dense = layers.Dense(1,activation = \"sigmoid\")\n        super(CnnModel,self).build(input_shape)\n    \n    def call(self, x):\n        x = self.embedding(x)\n        x = self.conv_1(x)\n        x = self.pool_1(x)\n        x = self.conv_2(x)\n        x = self.pool_2(x)\n        x = self.flatten(x)\n        x = self.dense(x)\n        return(x)\n    \n    # To show Output Shape\n    def summary(self):\n        x_input = layers.Input(shape = MAX_LEN)\n        output = self.call(x_input)\n        model = tf.keras.Model(inputs = x_input,outputs = output)\n        model.summary()\n    \nmodel = CnnModel()\nmodel.build(input_shape =(None,MAX_LEN))\nmodel.summary()\n\n```\n\n```python\n\n```\n\n```\nModel: \"model\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ninput_1 (InputLayer)         [(None, 200)]             0         \n_________________________________________________________________\nembedding (Embedding)        (None, 200, 7)            70000     \n_________________________________________________________________\nconv_1 (Conv1D)              (None, 196, 16)           576       \n_________________________________________________________________\npool_1 (MaxPooling1D)        (None, 98, 16)            0         \n_________________________________________________________________\nconv_2 (Conv1D)              (None, 97, 128)           4224      \n_________________________________________________________________\npool_2 (MaxPooling1D)        (None, 48, 128)           0         \n_________________________________________________________________\nflatten (Flatten)            (None, 6144)              0         \n_________________________________________________________________\ndense (Dense)                (None, 1)                 6145      \n=================================================================\nTotal params: 80,945\nTrainable params: 80,945\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\n\n```\n\n### 3. Model Training\n\n\nThere are three usual ways for model training: use internal function fit, use internal function train_on_batch, and customized training loop. Here we use the customized training loop.\n\n```python\n# Time Stamp\n@tf.function\ndef printbar():\n    ts = tf.timestamp()\n    today_ts = tf.timestamp()%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8+timestring)\n```\n\n```python\noptimizer = optimizers.Nadam()\nloss_func = losses.BinaryCrossentropy()\n\ntrain_loss = metrics.Mean(name='train_loss')\ntrain_metric = metrics.BinaryAccuracy(name='train_accuracy')\n\nvalid_loss = metrics.Mean(name='valid_loss')\nvalid_metric = metrics.BinaryAccuracy(name='valid_accuracy')\n\n\n@tf.function\ndef train_step(model, features, labels):\n    with tf.GradientTape() as tape:\n        predictions = model(features,training = True)\n        loss = loss_func(labels, predictions)\n    gradients = tape.gradient(loss, model.trainable_variables)\n    optimizer.apply_gradients(zip(gradients, model.trainable_variables))\n\n    train_loss.update_state(loss)\n    train_metric.update_state(labels, predictions)\n    \n\n@tf.function\ndef valid_step(model, features, labels):\n    predictions = model(features,training = False)\n    batch_loss = loss_func(labels, predictions)\n    valid_loss.update_state(batch_loss)\n    valid_metric.update_state(labels, predictions)\n\n\ndef train_model(model,ds_train,ds_valid,epochs):\n    for epoch in tf.range(1,epochs+1):\n        \n        for features, labels in ds_train:\n            train_step(model,features,labels)\n\n        for features, labels in ds_valid:\n            valid_step(model,features,labels)\n        \n        #The logs template should be modified according to metric\n        logs = 'Epoch={},Loss:{},Accuracy:{},Valid Loss:{},Valid Accuracy:{}' \n        \n        if epoch%1==0:\n            printbar()\n            tf.print(tf.strings.format(logs,\n            (epoch,train_loss.result(),train_metric.result(),valid_loss.result(),valid_metric.result())))\n            tf.print(\"\")\n        \n        train_loss.reset_states()\n        valid_loss.reset_states()\n        train_metric.reset_states()\n        valid_metric.reset_states()\n\ntrain_model(model,ds_train,ds_test,epochs = 6)\n\n```\n\n```\n================================================================================13:54:08\nEpoch=1,Loss:0.442317516,Accuracy:0.7695,Valid Loss:0.323672801,Valid Accuracy:0.8614\n\n================================================================================13:54:20\nEpoch=2,Loss:0.245737702,Accuracy:0.90215,Valid Loss:0.356488883,Valid Accuracy:0.8554\n\n================================================================================13:54:32\nEpoch=3,Loss:0.17360799,Accuracy:0.93455,Valid Loss:0.361132562,Valid Accuracy:0.8674\n\n================================================================================13:54:44\nEpoch=4,Loss:0.113476314,Accuracy:0.95975,Valid Loss:0.483677238,Valid Accuracy:0.856\n\n================================================================================13:54:57\nEpoch=5,Loss:0.0698405355,Accuracy:0.9768,Valid Loss:0.607856631,Valid Accuracy:0.857\n\n================================================================================13:55:15\nEpoch=6,Loss:0.0366807655,Accuracy:0.98825,Valid Loss:0.745884955,Valid Accuracy:0.854\n```\n\n\n### 4. Model Evaluation\n\n\nThe model trained by the customized looping is not compiled, so the method `model.evaluate(ds_valid)` can not be applied directly.\n\n```python\n\ndef evaluate_model(model,ds_valid):\n    for features, labels in ds_valid:\n         valid_step(model,features,labels)\n    logs = 'Valid Loss:{},Valid Accuracy:{}' \n    tf.print(tf.strings.format(logs,(valid_loss.result(),valid_metric.result())))\n    \n    valid_loss.reset_states()\n    train_metric.reset_states()\n    valid_metric.reset_states()\n\n    \n```\n\n```python\nevaluate_model(model,ds_test)\n```\n\n```\nValid Loss:0.745884418,Valid Accuracy:0.854\n```\n\n```python\n\n```\n\n### 5. Model Application\n\n\nBelow are the available methods:\n\n* model.predict(ds_test)\n* model(x_test)\n* model.call(x_test)\n* model.predict_on_batch(x_test)\n\nWe recommend the method `model.predict(ds_test)` since it can be applied to both Dataset and Tensor.\n\n```python\nmodel.predict(ds_test)\n```\n\n```\narray([[0.7864823 ],\n       [0.9999901 ],\n       [0.99944776],\n       ...,\n       [0.8498302 ],\n       [0.13382755],\n       [1.        ]], dtype=float32)\n```\n\n```python\nfor x_test,_ in ds_test.take(1):\n    print(model(x_test))\n    #Indentical expressions:\n    #print(model.call(x_test))\n    #print(model.predict_on_batch(x_test))\n```\n\n```\ntf.Tensor(\n[[7.8648227e-01]\n [9.9999011e-01]\n [9.9944776e-01]\n [3.7153201e-09]\n [9.4462049e-01]\n [2.3522753e-04]\n [1.2044354e-04]\n [9.3752089e-07]\n [9.9996352e-01]\n [9.3435925e-01]\n [9.8746723e-01]\n [9.9908626e-01]\n [4.1563155e-08]\n [4.1808244e-03]\n [8.0184749e-05]\n [8.3910513e-01]\n [3.5167937e-05]\n [7.2113985e-01]\n [4.5228912e-03]\n [9.9942589e-01]], shape=(20, 1), dtype=float32)\n```\n\n```python\n\n```\n\n### 6. Model Saving\n\n\nModel saving with the original way of TensorFlow is recommended.\n\n```python\nmodel.save('../data/tf_model_savedmodel', save_format=\"tf\")\nprint('export saved model.')\n\nmodel_loaded = tf.keras.models.load_model('../data/tf_model_savedmodel')\nmodel_loaded.predict(ds_test)\n```\n\n```\narray([[0.7864823 ],\n       [0.9999901 ],\n       [0.99944776],\n       ...,\n       [0.8498302 ],\n       [0.13382755],\n       [1.        ]], dtype=float32)\n```\n\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter1-4.md",
    "content": "# 1-4 Example: Modeling Procedure for Temporal Sequences\n\n\nThe COVID-19 has been lasting for over three months (Note from the translator: until April, 2020) in China and significantly affected the ordinary life.\n\nThe impacts could be on the incomes, emotions, psychologies, and weights.\n\nSo how long this pandemic is going to last, and when will we be free again?\n\nThis example is about predicting the time of COVID-19 termination in China using RNN model established by TensorFlow 2.\n\n\n![](../data/疫情前后对比_en.png)\n\n\n### 1. Data Preparation\n\n<!-- #region -->\n\n\nThe dataset is extracted from \"tushare\". The details of the data acquisition is [here (in Chinese)](https://zhuanlan.zhihu.com/p/109556102).\n\n![](../data/1-4-新增人数.png)\n\n<!-- #endregion -->\n\n```python\nimport numpy as np\nimport pandas as pd \nimport matplotlib.pyplot as plt\nimport tensorflow as tf \nfrom tensorflow.keras import models,layers,losses,metrics,callbacks \n\n```\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\ndf = pd.read_csv(\"../data/covid-19.csv\",sep = \"\\t\")\ndf.plot(x = \"date\",y = [\"confirmed_num\",\"cured_num\",\"dead_num\"],figsize=(10,6))\nplt.xticks(rotation=60)\n\n```\n\n![](../data/1-4-累积曲线.png)\n\n```python\ndfdata = df.set_index(\"date\")\ndfdiff = dfdata.diff(periods=1).dropna()\ndfdiff = dfdiff.reset_index(\"date\")\n\ndfdiff.plot(x = \"date\",y = [\"confirmed_num\",\"cured_num\",\"dead_num\"],figsize=(10,6))\nplt.xticks(rotation=60)\ndfdiff = dfdiff.drop(\"date\",axis = 1).astype(\"float32\")\n\n```\n\n![](../data/1-4-新增曲线.png)\n\n```python\n#Use the data of an eight-day window priorier of the date we are investigating as input for prediction\nWINDOW_SIZE = 8\n\ndef batch_dataset(dataset):\n    dataset_batched = dataset.batch(WINDOW_SIZE,drop_remainder=True)\n    return dataset_batched\n\nds_data = tf.data.Dataset.from_tensor_slices(tf.constant(dfdiff.values,dtype = tf.float32)) \\\n   .window(WINDOW_SIZE,shift=1).flat_map(batch_dataset)\n\nds_label = tf.data.Dataset.from_tensor_slices(\n    tf.constant(dfdiff.values[WINDOW_SIZE:],dtype = tf.float32))\n\n#We put all data into one batch for better efficiency since the data volume is small.\nds_train = tf.data.Dataset.zip((ds_data,ds_label)).batch(38).cache()\n\n\n```\n\n### 2. Model Definition\n\n\nUsually there are three ways of modeling using APIs of Keras: sequential modeling using `Sequential()` function, arbitrary modeling using functional API, and customized modeling by inheriting base class `Model`.\n\nHere we use functional API for modeling.\n\n```python\n#We design the following block since the daily increment of confirmed, discharged and deceased cases are equal or larger than zero.\nclass Block(layers.Layer):\n    def __init__(self, **kwargs):\n        super(Block, self).__init__(**kwargs)\n    \n    def call(self, x_input,x):\n        x_out = tf.maximum((1+x)*x_input[:,-1,:],0.0)\n        return x_out\n    \n    def get_config(self):  \n        config = super(Block, self).get_config()\n        return config\n\n```\n\n```python\ntf.keras.backend.clear_session()\nx_input = layers.Input(shape = (None,3),dtype = tf.float32)\nx = layers.LSTM(3,return_sequences = True,input_shape=(None,3))(x_input)\nx = layers.LSTM(3,return_sequences = True,input_shape=(None,3))(x)\nx = layers.LSTM(3,return_sequences = True,input_shape=(None,3))(x)\nx = layers.LSTM(3,input_shape=(None,3))(x)\nx = layers.Dense(3)(x)\n\n#We design the following block since the daily increment of confirmed, discharged and deseased cases are equal or larger than zero.\n#x = tf.maximum((1+x)*x_input[:,-1,:],0.0)\nx = Block()(x_input,x)\nmodel = models.Model(inputs = [x_input],outputs = [x])\nmodel.summary()\n\n```\n\n```python\n\n```\n\n```\nModel: \"model\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ninput_1 (InputLayer)         [(None, None, 3)]         0         \n_________________________________________________________________\nlstm (LSTM)                  (None, None, 3)           84        \n_________________________________________________________________\nlstm_1 (LSTM)                (None, None, 3)           84        \n_________________________________________________________________\nlstm_2 (LSTM)                (None, None, 3)           84        \n_________________________________________________________________\nlstm_3 (LSTM)                (None, 3)                 84        \n_________________________________________________________________\ndense (Dense)                (None, 3)                 12        \n_________________________________________________________________\nblock (Block)                (None, 3)                 0         \n=================================================================\nTotal params: 348\nTrainable params: 348\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n\n### 3. Model Training\n\n\nThere are three usual ways for model training: use internal function fit, use internal function train_on_batch, and customized training loop. Here we use the simplist way: using internal function fit.\n\nNote: The parameter adjustment of RNN is more difficult comparing to other types of neural network. We need to try various learning rate to achieve a satisfying result.\n\n```python\n#Customized loss function, consider the ratio between square error and the prediction\nclass MSPE(losses.Loss):\n    def call(self,y_true,y_pred):\n        err_percent = (y_true - y_pred)**2/(tf.maximum(y_true**2,1e-7))\n        mean_err_percent = tf.reduce_mean(err_percent)\n        return mean_err_percent\n    \n    def get_config(self):\n        config = super(MSPE, self).get_config()\n        return config\n\n```\n\n```python\nimport os\nimport datetime\n\noptimizer = tf.keras.optimizers.Adam(learning_rate=0.01)\nmodel.compile(optimizer=optimizer,loss=MSPE(name = \"MSPE\"))\n\nstamp = datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\nlogdir = os.path.join('data', 'autograph', stamp)\n\n## We recommend using pathlib under Python3\n# from pathlib import Path\n# stamp = datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\n# logdir = str(Path('../data/autograph/' + stamp))\n\ntb_callback = tf.keras.callbacks.TensorBoard(logdir, histogram_freq=1)\n#Half the learning rate if loss is not improved after 100 epoches\nlr_callback = tf.keras.callbacks.ReduceLROnPlateau(monitor=\"loss\",factor = 0.5, patience = 100)\n#Stop training when loss is not improved after 200 epoches\nstop_callback = tf.keras.callbacks.EarlyStopping(monitor = \"loss\", patience= 200)\ncallbacks_list = [tb_callback,lr_callback,stop_callback]\n\nhistory = model.fit(ds_train,epochs=500,callbacks = callbacks_list)\n\n```\n\n```\nEpoch 371/500\n1/1 [==============================] - 0s 61ms/step - loss: 0.1184\nEpoch 372/500\n1/1 [==============================] - 0s 64ms/step - loss: 0.1177\nEpoch 373/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.1169\nEpoch 374/500\n1/1 [==============================] - 0s 50ms/step - loss: 0.1161\nEpoch 375/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.1154\nEpoch 376/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.1147\nEpoch 377/500\n1/1 [==============================] - 0s 62ms/step - loss: 0.1140\nEpoch 378/500\n1/1 [==============================] - 0s 93ms/step - loss: 0.1133\nEpoch 379/500\n1/1 [==============================] - 0s 85ms/step - loss: 0.1126\nEpoch 380/500\n1/1 [==============================] - 0s 68ms/step - loss: 0.1119\nEpoch 381/500\n1/1 [==============================] - 0s 52ms/step - loss: 0.1113\nEpoch 382/500\n1/1 [==============================] - 0s 54ms/step - loss: 0.1107\nEpoch 383/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.1100\nEpoch 384/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.1094\nEpoch 385/500\n1/1 [==============================] - 0s 54ms/step - loss: 0.1088\nEpoch 386/500\n1/1 [==============================] - 0s 74ms/step - loss: 0.1082\nEpoch 387/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.1077\nEpoch 388/500\n1/1 [==============================] - 0s 52ms/step - loss: 0.1071\nEpoch 389/500\n1/1 [==============================] - 0s 52ms/step - loss: 0.1066\nEpoch 390/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.1060\nEpoch 391/500\n1/1 [==============================] - 0s 61ms/step - loss: 0.1055\nEpoch 392/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.1050\nEpoch 393/500\n1/1 [==============================] - 0s 59ms/step - loss: 0.1045\nEpoch 394/500\n1/1 [==============================] - 0s 65ms/step - loss: 0.1040\nEpoch 395/500\n1/1 [==============================] - 0s 58ms/step - loss: 0.1035\nEpoch 396/500\n1/1 [==============================] - 0s 52ms/step - loss: 0.1031\nEpoch 397/500\n1/1 [==============================] - 0s 58ms/step - loss: 0.1026\nEpoch 398/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.1022\nEpoch 399/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.1017\nEpoch 400/500\n1/1 [==============================] - 0s 63ms/step - loss: 0.1013\nEpoch 401/500\n1/1 [==============================] - 0s 59ms/step - loss: 0.1009\nEpoch 402/500\n1/1 [==============================] - 0s 53ms/step - loss: 0.1005\nEpoch 403/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.1001\nEpoch 404/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0997\nEpoch 405/500\n1/1 [==============================] - 0s 58ms/step - loss: 0.0993\nEpoch 406/500\n1/1 [==============================] - 0s 53ms/step - loss: 0.0990\nEpoch 407/500\n1/1 [==============================] - 0s 59ms/step - loss: 0.0986\nEpoch 408/500\n1/1 [==============================] - 0s 63ms/step - loss: 0.0982\nEpoch 409/500\n1/1 [==============================] - 0s 67ms/step - loss: 0.0979\nEpoch 410/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0976\nEpoch 411/500\n1/1 [==============================] - 0s 54ms/step - loss: 0.0972\nEpoch 412/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0969\nEpoch 413/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0966\nEpoch 414/500\n1/1 [==============================] - 0s 59ms/step - loss: 0.0963\nEpoch 415/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0960\nEpoch 416/500\n1/1 [==============================] - 0s 62ms/step - loss: 0.0957\nEpoch 417/500\n1/1 [==============================] - 0s 69ms/step - loss: 0.0954\nEpoch 418/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0951\nEpoch 419/500\n1/1 [==============================] - 0s 50ms/step - loss: 0.0948\nEpoch 420/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0946\nEpoch 421/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0943\nEpoch 422/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0941\nEpoch 423/500\n1/1 [==============================] - 0s 62ms/step - loss: 0.0938\nEpoch 424/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0936\nEpoch 425/500\n1/1 [==============================] - 0s 100ms/step - loss: 0.0933\nEpoch 426/500\n1/1 [==============================] - 0s 68ms/step - loss: 0.0931\nEpoch 427/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0929\nEpoch 428/500\n1/1 [==============================] - 0s 50ms/step - loss: 0.0926\nEpoch 429/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0924\nEpoch 430/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0922\nEpoch 431/500\n1/1 [==============================] - 0s 75ms/step - loss: 0.0920\nEpoch 432/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0918\nEpoch 433/500\n1/1 [==============================] - 0s 77ms/step - loss: 0.0916\nEpoch 434/500\n1/1 [==============================] - 0s 50ms/step - loss: 0.0914\nEpoch 435/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0912\nEpoch 436/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0911\nEpoch 437/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0909\nEpoch 438/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0907\nEpoch 439/500\n1/1 [==============================] - 0s 59ms/step - loss: 0.0905\nEpoch 440/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0904\nEpoch 441/500\n1/1 [==============================] - 0s 68ms/step - loss: 0.0902\nEpoch 442/500\n1/1 [==============================] - 0s 73ms/step - loss: 0.0901\nEpoch 443/500\n1/1 [==============================] - 0s 50ms/step - loss: 0.0899\nEpoch 444/500\n1/1 [==============================] - 0s 58ms/step - loss: 0.0898\nEpoch 445/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0896\nEpoch 446/500\n1/1 [==============================] - 0s 52ms/step - loss: 0.0895\nEpoch 447/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0893\nEpoch 448/500\n1/1 [==============================] - 0s 64ms/step - loss: 0.0892\nEpoch 449/500\n1/1 [==============================] - 0s 70ms/step - loss: 0.0891\nEpoch 450/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0889\nEpoch 451/500\n1/1 [==============================] - 0s 53ms/step - loss: 0.0888\nEpoch 452/500\n1/1 [==============================] - 0s 51ms/step - loss: 0.0887\nEpoch 453/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0886\nEpoch 454/500\n1/1 [==============================] - 0s 58ms/step - loss: 0.0885\nEpoch 455/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0883\nEpoch 456/500\n1/1 [==============================] - 0s 71ms/step - loss: 0.0882\nEpoch 457/500\n1/1 [==============================] - 0s 50ms/step - loss: 0.0881\nEpoch 458/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0880\nEpoch 459/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0879\nEpoch 460/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0878\nEpoch 461/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0878\nEpoch 462/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0879\nEpoch 463/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0879\nEpoch 464/500\n1/1 [==============================] - 0s 68ms/step - loss: 0.0888\nEpoch 465/500\n1/1 [==============================] - 0s 62ms/step - loss: 0.0875\nEpoch 466/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0873\nEpoch 467/500\n1/1 [==============================] - 0s 49ms/step - loss: 0.0872\nEpoch 468/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0872\nEpoch 469/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0871\nEpoch 470/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0871\nEpoch 471/500\n1/1 [==============================] - 0s 59ms/step - loss: 0.0870\nEpoch 472/500\n1/1 [==============================] - 0s 68ms/step - loss: 0.0871\nEpoch 473/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0869\nEpoch 474/500\n1/1 [==============================] - 0s 61ms/step - loss: 0.0870\nEpoch 475/500\n1/1 [==============================] - 0s 47ms/step - loss: 0.0868\nEpoch 476/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0868\nEpoch 477/500\n1/1 [==============================] - 0s 62ms/step - loss: 0.0866\nEpoch 478/500\n1/1 [==============================] - 0s 58ms/step - loss: 0.0867\nEpoch 479/500\n1/1 [==============================] - 0s 60ms/step - loss: 0.0865\nEpoch 480/500\n1/1 [==============================] - 0s 65ms/step - loss: 0.0866\nEpoch 481/500\n1/1 [==============================] - 0s 58ms/step - loss: 0.0864\nEpoch 482/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0865\nEpoch 483/500\n1/1 [==============================] - 0s 53ms/step - loss: 0.0863\nEpoch 484/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0864\nEpoch 485/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0862\nEpoch 486/500\n1/1 [==============================] - 0s 55ms/step - loss: 0.0863\nEpoch 487/500\n1/1 [==============================] - 0s 52ms/step - loss: 0.0861\nEpoch 488/500\n1/1 [==============================] - 0s 68ms/step - loss: 0.0862\nEpoch 489/500\n1/1 [==============================] - 0s 62ms/step - loss: 0.0860\nEpoch 490/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0861\nEpoch 491/500\n1/1 [==============================] - 0s 51ms/step - loss: 0.0859\nEpoch 492/500\n1/1 [==============================] - 0s 54ms/step - loss: 0.0860\nEpoch 493/500\n1/1 [==============================] - 0s 51ms/step - loss: 0.0859\nEpoch 494/500\n1/1 [==============================] - 0s 54ms/step - loss: 0.0860\nEpoch 495/500\n1/1 [==============================] - 0s 50ms/step - loss: 0.0858\nEpoch 496/500\n1/1 [==============================] - 0s 69ms/step - loss: 0.0859\nEpoch 497/500\n1/1 [==============================] - 0s 63ms/step - loss: 0.0857\nEpoch 498/500\n1/1 [==============================] - 0s 56ms/step - loss: 0.0858\nEpoch 499/500\n1/1 [==============================] - 0s 54ms/step - loss: 0.0857\nEpoch 500/500\n1/1 [==============================] - 0s 57ms/step - loss: 0.0858\n```\n\n```python\n\n```\n\n### 4. Model Evaluation\n\n\nModel evaluation usually needs both evaluation and testing sets. We only have very few data in this case so we only visualize the changes of loss function during iteration.\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nimport matplotlib.pyplot as plt\n\ndef plot_metric(history, metric):\n    train_metrics = history.history[metric]\n    epochs = range(1, len(train_metrics) + 1)\n    plt.plot(epochs, train_metrics, 'bo--')\n    plt.title('Training '+ metric)\n    plt.xlabel(\"Epochs\")\n    plt.ylabel(metric)\n    plt.legend([\"train_\"+metric])\n    plt.show()\n\n```\n\n```python\nplot_metric(history,\"loss\")\n```\n\n![](../data/1-4-损失函数曲线.png)\n\n\n### 5. Model Application\n\n\nWe predict the time of the end of COVID-19 here, i.e. the date when the daily increment of new confirmed cases = 0.\n\n```python\n#This \"dfresult\" is used to record the current and predicted data\ndfresult = dfdiff[[\"confirmed_num\",\"cured_num\",\"dead_num\"]].copy()\ndfresult.tail()\n```\n\n![](../data/1-4-日期3月10.png)\n\n```python\n#Predicting the daily increment of the new confirmed cases of the next 100 days; add this result into dfresult\nfor i in range(100):\n    arr_predict = model.predict(tf.constant(tf.expand_dims(dfresult.values[-38:,:],axis = 0)))\n\n    dfpredict = pd.DataFrame(tf.cast(tf.floor(arr_predict),tf.float32).numpy(),\n                columns = dfresult.columns)\n    dfresult = dfresult.append(dfpredict,ignore_index=True)\n```\n\n```python\ndfresult.query(\"confirmed_num==0\").head()\n\n# From Day 55 the daily increment of the new confirmed cases reduced to zero. Since Day 45 is corresponding to March 10, the daily increment of the news confirmed cases will reduce to 0 in Manch 20.\n# Note: this prediction is TOO optimistic\n```\n\n![](../data/1-4-预测确诊.png)\n\n```python\n\n```\n\n```python\ndfresult.query(\"cured_num==0\").head()\n\n# The daily increment of the discharged (cured) cases will reduce to 0 in Day 164, which is about 4 months after March 10 (i.e. July 10) all the patients will be discharged.\n# Note: this prediction is TOO pessimistic and problematic: the total sum of the daily increment of discharged cases is larger than cumulated confirmed cases.\n```\n\n![](../data/1-4-预测治愈.png)\n\n```python\n\n```\n\n```python\ndfresult.query(\"dead_num==0\").head()\n\n# The daily increment of the deceased will be reduced to 0 from Day 60, which is March 25, 2020\n# Note: This prediction is relatively reasonable.\n```\n\n![](../data/1-4-预测死亡.png)\n\n```python\n\n```\n\n### 6. Model Saving\n\n\nModel saving with the original way of TensorFlow is recommended.\n\n```python\nmodel.save('../data/tf_model_savedmodel', save_format=\"tf\")\nprint('export saved model.')\n```\n\n```python\nmodel_loaded = tf.keras.models.load_model('../data/tf_model_savedmodel',compile=False)\noptimizer = tf.keras.optimizers.Adam(learning_rate=0.001)\nmodel_loaded.compile(optimizer=optimizer,loss=MSPE(name = \"MSPE\"))\nmodel_loaded.predict(ds_train)\n```\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter1.md",
    "content": "# Chapter 1: Modeling Procedure of TensorFlow\n\n\nAlthough Tensorflow is designed in a smart way to be adaptive to various complex numerical computations, the most popular usage is implementation of machine learning models, especially for those of neural networks.\n\nIn principle, the neural network could be defined by graphs consist of tensors and trained through automatic differenciate.\n\nHowever, for simplification, we recommend to use high-level Keras API in Tensorflow to implement the neural networks.\n\n<!-- #region -->\nThe common procedures of implementing neural networks using TensorFlow are:\n\n1. Data preparation\n\n2. Model definition\n\n3. Model training\n\n4. Model evaluation\n\n5. Model application\n\n6. Model saving\n\n\n**For the beginners, actually, data preparation is the most difficult part.** \n\nThe most common data types are structured data, images, texts, and temporal sequences.\n\nWe are demonstrating the steps of modeling for these four data types through the following examples, respectively: (1) Predicting the survival on the Titanic; (2) Image classification on CIFAR2 set; (3) Classification of movie reviews on IMDB; (4) Predicting the terminate date of the COVID-19 pandemic in China.\n\n\n<!-- #endregion -->\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegant Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to reply **加群(join group)** in the WeChat official account to join the group chat with the other readers.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter2-1.md",
    "content": "# 2-1 Data Structure\n\nProgram = Data Structure + Algorithm\n\nTensorFlow Program = Data Structure of Tensor + Algorithm in Graph\n\nTensor and graph are key concepts of TensorFlow.\n\nThe fundamental data structure in TensorFlow is Tensor, which is multi-dimentional array. Tensor is similar with the `array` in numpy.\n\nThere are two types of tensor accoring to the behavior: constant and variable.\n\nThe value of constant cannot be re-assigned in the graph, while variable can be re-assigned through operators such as `assign`.\n\n\n### 1. Constant Tensor\n\n\nThe data type of tensor is basically corresponding to `numpy.array`.\n\n```python\nimport numpy as np\nimport tensorflow as tf\n\ni = tf.constant(1) # tf.int32 type constant\nl = tf.constant(1,dtype = tf.int64) # tf.int64 type constant\nf = tf.constant(1.23) #tf.float32 type constant\nd = tf.constant(3.14,dtype = tf.double) # tf.double type constant\ns = tf.constant(\"hello world\") # tf.string type constant\nb = tf.constant(True) #tf.bool type constant\n\n\nprint(tf.int64 == np.int64) \nprint(tf.bool == np.bool)\nprint(tf.double == np.float64)\nprint(tf.string == np.unicode) # tf.string type is not equal to np.unicode type\n\n```\n\n```\nTrue\nTrue\nTrue\nFalse\n```\n\n\nEach data type can be represented by tensor in different rank.\n\nScalars are tensors with rank = 0, arrays are with rank = 1, matrix are with rank = 2\n\nColorful image has three channels (RGB), which can be represented as a tensor with rank = 3.\n\nThere is a temporal dimension for video so it could be represented as a rank 4 tensor.\n\nAn intuitive way to understand: the number of the square brackets equals to the rank of the tensor.\n\n```python\nscalar = tf.constant(True)  #A scalar is a rank 0 tensor\n\nprint(tf.rank(scalar))\nprint(scalar.numpy().ndim)  # tf.rank equals to the ndim function in numpy\n```\n\n```\ntf.Tensor(0, shape=(), dtype=int32)\n0\n```\n\n```python\nvector = tf.constant([1.0,2.0,3.0,4.0]) #A vector is a rank 1 tensor\n\nprint(tf.rank(vector))\nprint(np.ndim(vector.numpy()))\n```\n\n```\ntf.Tensor(1, shape=(), dtype=int32)\n1\n```\n\n```python\nmatrix = tf.constant([[1.0,2.0],[3.0,4.0]]) #A matrix is a rank 2 tensor\n\nprint(tf.rank(matrix).numpy())\nprint(np.ndim(matrix))\n```\n\n```\n2\n2\n```\n\n```python\ntensor3 = tf.constant([[[1.0,2.0],[3.0,4.0]],[[5.0,6.0],[7.0,8.0]]])  # A rank 3 tensor\nprint(tensor3)\nprint(tf.rank(tensor3))\n```\n\n```\ntf.Tensor(\n[[[1. 2.]\n  [3. 4.]]\n\n [[5. 6.]\n  [7. 8.]]], shape=(2, 2, 2), dtype=float32)\ntf.Tensor(3, shape=(), dtype=int32)\n```\n\n```python\ntensor4 = tf.constant([[[[1.0,1.0],[2.0,2.0]],[[3.0,3.0],[4.0,4.0]]],\n                        [[[5.0,5.0],[6.0,6.0]],[[7.0,7.0],[8.0,8.0]]]])  # A rank 4 tensor\nprint(tensor4)\nprint(tf.rank(tensor4))\n```\n\n```\ntf.Tensor(\n[[[[1. 1.]\n   [2. 2.]]\n\n  [[3. 3.]\n   [4. 4.]]]\n\n\n [[[5. 5.]\n   [6. 6.]]\n\n  [[7. 7.]\n   [8. 8.]]]], shape=(2, 2, 2, 2), dtype=float32)\ntf.Tensor(4, shape=(), dtype=int32)\n```\n\n\nWe use tf.cast to change the data type of the tensors.\n\nThe method `numpy()` is for converting the data type from tensor to numpy array.\n\nThe method `shape` is for checking up the size of tensor.\n\n```python\nh = tf.constant([123,456],dtype = tf.int32)\nf = tf.cast(h,tf.float32)\nprint(h.dtype, f.dtype)\n```\n\n```\n<dtype: 'int32'> <dtype: 'float32'>\n```\n\n```python\ny = tf.constant([[1.0,2.0],[3.0,4.0]])\nprint(y.numpy()) #Convert to np.array\nprint(y.shape)\n```\n\n```\n[[1. 2.]\n [3. 4.]]\n(2, 2)\n```\n\n```python\nu = tf.constant(u\"Hello World\")\nprint(u.numpy())  \nprint(u.numpy().decode(\"utf-8\"))\n```\n\n```\nb'\\xe4\\xbd\\xa0\\xe5\\xa5\\xbd \\xe4\\xb8\\x96\\xe7\\x95\\x8c'\nHello World\n```\n\n```python\n\n```\n### 2. Variable Tensor\n\n\nThe trainable parameters in the models are usually defined as variables.\n\n```python\n# The value of a constant is NOT changeable. Re-assignment creates a new space in the memory.\nc = tf.constant([1.0,2.0])\nprint(c)\nprint(id(c))\nc = c + tf.constant([1.0,1.0])\nprint(c)\nprint(id(c))\n```\n\n```\ntf.Tensor([1. 2.], shape=(2,), dtype=float32)\n5276289568\ntf.Tensor([2. 3.], shape=(2,), dtype=float32)\n5276290240\n```\n\n```python\n# The value of a variable is changeable through re-assigning methods such as assign, assign_add, etc.\nv = tf.Variable([1.0,2.0],name = \"v\")\nprint(v)\nprint(id(v))\nv.assign_add([1.0,1.0])\nprint(v)\nprint(id(v))\n```\n```\n<tf.Variable 'v:0' shape=(2,) dtype=float32, numpy=array([1., 2.], dtype=float32)>\n5276259888\n<tf.Variable 'v:0' shape=(2,) dtype=float32, numpy=array([2., 3.], dtype=float32)>\n5276259888\n\n```\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n\n\n"
  },
  {
    "path": "english/Chapter2-2.md",
    "content": "# 2-2 Three Types of Graph\n\n\nThere are three types of graph: static, dynamic, and Autograph.\n\nTensorFlow 1.X used static graph, which firstly creating the graph by various operators and then open a `Session` to execute the graph.\n\nFor TensorFlow 2.X, dynamic graph is used. The operator will be added to the invisible default graph and executed instantaneously after its usage; there is no need to create a `Session`.\n\nUsing dynamic graph (i.e. Eager Execution) is convenient for debugging, as it improves performance of TensorFlow code just as original Python code, with possibilities of log output and flow control, etc.\n\nThe drawback of dynamic graph is a relatively lower execution efficiency comparing to static graph. This is because multiple times of communication between the Python thread and the C++ thread of TensorFlow Kernel is required for dynamic graph, while the static graph is executed almost all on the TensorFlow kernel using C++ code with higher efficiency. What's more, the static graph optimizes the computation, reducing the steps that are not relevant to the result.\n\nIt is possible to use the decorator `@tf.function` to construct code by converting normal Python function to TensorFlow graph. Executing this function is identical to executing `Session` in TensorFlow 1.X. This method, which uses decorator `@tf.function` to create static graph, is called Autograph.\n\n### 1. Introduction to Graph\n\n\nThe graph consists of nodes and edges.\n\nThe node represent operator, while the edge represents the dependencies between the operators.\n\nThe solid edge (line) represents the dependency with data (tensor) transmission.\n\nThe dotted edge (line) represents the dependency of control, i.e. the order of execution.\n\n![](../data/strjoin_graph.png)\n\n\n### 2. The Static Graph\n\n\nIn TensorFlow 1.X, the static graph is impelmented in two steps: defining the graph and executing it in `Session`.\n\n<!-- #region -->\n**Example of Static Graph in TensorFlow 1.X**\n\n```python\nimport tensorflow as tf\n\n#Defining the graph\ng = tf.Graph()\nwith g.as_default():\n    #The object of the placeholder will be designated during the execution of the Session\n    x = tf.placeholder(name='x', shape=[], dtype=tf.string)  \n    y = tf.placeholder(name='y', shape=[], dtype=tf.string)\n    z = tf.string_join([x,y],name = 'join',separator=' ')\n\n#Executing the graph\nwith tf.Session(graph = g) as sess:\n    print(sess.run(fetches = z,feed_dict = {x:\"hello\",y:\"world\"}))\n   \n```\n<!-- #endregion -->\n\n**The Static Graph in TensorFlow2.0 as a memorial**\n\nIn order to be compatible to the old versions,  TensorFlow 2.X supports the TensorFlow 1.X styled static graph in the sub-module `tf.compat.v1`.\n\nThis is just for memorial and we do NOT recommend this way.\n\n```python\nimport tensorflow as tf\n\ng = tf.compat.v1.Graph()\nwith g.as_default():\n    x = tf.compat.v1.placeholder(name='x', shape=[], dtype=tf.string)\n    y = tf.compat.v1.placeholder(name='y', shape=[], dtype=tf.string)\n    z = tf.strings.join([x,y],name = \"join\",separator = \" \")\n\nwith tf.compat.v1.Session(graph = g) as sess:\n    # fetches is similar to the returning value from a function, while the placeholders in feed_dict is the input argument list to this function\n    result = sess.run(fetches = z,feed_dict = {x:\"hello\",y:\"world\"})\n    print(result)\n\n```\n\n```\nb'hello world'\n```\n\n\n### 3. The Dynamic Graph\n\n\nTensorFlow 2.X uses the dynamic graph and Autograph.\n\nIn TensorFlow 1.X, the static graph is impelmented in two steps: defining the graph and executing it in `Session`.\n\nHowever, the definition and execution is no more distinguishable for dynamic graph. It executes immediatly after definition and that's the reason why it is called \"Eager Excution\".\n\n\n```python\n# The construction of the graph takes place at every operator, and the graph execution is immediately following each construction.\n\nx = tf.constant(\"hello\")\ny = tf.constant(\"world\")\nz = tf.strings.join([x,y],separator=\" \")\n\ntf.print(z)\n```\n\n```\nhello world\n```\n\n```python\n# The input/output of the dynamic graph could be packaged as a function\n\ndef strjoin(x,y):\n    z =  tf.strings.join([x,y],separator = \" \")\n    tf.print(z)\n    return z\n\nresult = strjoin(tf.constant(\"hello\"),tf.constant(\"world\"))\nprint(result)\n```\n\n```\nhello world\ntf.Tensor(b'hello world', shape=(), dtype=string)\n```\n\n\n### 4. Autograph in TensorFlow 2.X\n\n\nThe dynamic graph has a relatively lower efficiency in execution.\n\nWe can use the decorator `@tf.function` to convert the original Python functions into the static graph as TensorFlow 1.X。\n\nIn TensorFlow 1.X, the static graph is impelmented in two steps: defining the graph and executing it in `Session`.\n\nIn TensorFlow 2.X, the two steps for Autographs are: defining the function with a decorator '@tf.function' and calling this function.\n\nThe is no need to use `Session`, so the syntax is as smooth as that of original Python.\n\nIn reality, we will debug with the dynamic graph, and shift to Autograph using decorator `@tf.function` for the code requires higher efficiency of execution.\n\nThere are certain rules of implementing `@tf.function`, which will be introduced in the following chapters.\n\n\n```python\nimport tensorflow as tf\n\n# Use Autograph to construct the static graph\n\n@tf.function\ndef strjoin(x,y):\n    z =  tf.strings.join([x,y],separator = \" \")\n    tf.print(z)\n    return z\n\nresult = strjoin(tf.constant(\"hello\"),tf.constant(\"world\"))\n\nprint(result)\n```\n\n```\nhello world\ntf.Tensor(b'hello world', shape=(), dtype=string)\n```\n\n```python\nimport datetime\n\n# Create logdir\nimport os\nstamp = datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\nlogdir = os.path.join('data', 'autograph', stamp)\n\n## We recommend using pathlib under Python3\n# from pathlib import Path\n# stamp = datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\n# logdir = str(Path('../data/autograph/' + stamp))\n\nwriter = tf.summary.create_file_writer(logdir)\n\n# Start tracing on Autograph\ntf.summary.trace_on(graph=True, profiler=True) \n\n# Execute Autograph\nresult = strjoin(\"hello\",\"world\")\n\n# Write the graph info into the log\nwith writer.as_default():\n    tf.summary.trace_export(\n        name=\"autograph\",\n        step=0,\n        profiler_outdir=logdir)\n```\n\n```python\n# Magic command to launch tensorboard in jupyter\n%load_ext tensorboard\n```\n\n```python\n# Launch tensorboard\n%tensorboard --logdir ../data/autograph/\n```\n\n![](../data/2-2-tensorboard计算图.jpg)\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter2-3.md",
    "content": "# 2-3 Automatic Differentiate\n\n\nThe neural networks relies on back propagations to calculate gradients and update the parameters in the network. Gradient calculation is complicated which is easy to incur mistakes.\n\nThe framework of deeplearning helps us to calculate gradient automatically.\n\n`tf.GradientTape` is usually used to record forward calculation in Tensorflow, and reverse this \"tape\" to obtain the gradient.\n\nThis is the automatic differentiate in TensorFlow.\n\n\n### 1. Calculate the Derivative Using the Gradient Tape\n\n```python\nimport tensorflow as tf\nimport numpy as np \n\n# Calculate the derivative of f(x) = a*x**2 + b*x + c\n\nx = tf.Variable(0.0,name = \"x\",dtype = tf.float32)\na = tf.constant(1.0)\nb = tf.constant(-2.0)\nc = tf.constant(1.0)\n\nwith tf.GradientTape() as tape:\n    y = a*tf.pow(x,2) + b*x + c\n    \ndy_dx = tape.gradient(y,x)\nprint(dy_dx)\n```\n\n```\ntf.Tensor(-2.0, shape=(), dtype=float32)\n```\n\n```python\n\n```\n\n```python\n# Use watch to calculate derivatives of the constant tensor\n\nwith tf.GradientTape() as tape:\n    tape.watch([a,b,c])\n    y = a*tf.pow(x,2) + b*x + c\n    \ndy_dx,dy_da,dy_db,dy_dc = tape.gradient(y,[x,a,b,c])\nprint(dy_da)\nprint(dy_dc)\n\n```\n\n```\ntf.Tensor(0.0, shape=(), dtype=float32)\ntf.Tensor(1.0, shape=(), dtype=float32)\n```\n\n```python\n\n```\n\n```python\n# Calculate the second order derivative\nwith tf.GradientTape() as tape2:\n    with tf.GradientTape() as tape1:   \n        y = a*tf.pow(x,2) + b*x + c\n    dy_dx = tape1.gradient(y,x)   \ndy2_dx2 = tape2.gradient(dy_dx,x)\n\nprint(dy2_dx2)\n```\n\n```\ntf.Tensor(2.0, shape=(), dtype=float32)\n```\n\n```python\n\n```\n\n```python\n# Use it in the autograph\n\n@tf.function\ndef f(x):   \n    a = tf.constant(1.0)\n    b = tf.constant(-2.0)\n    c = tf.constant(1.0)\n    \n    # Convert the type of the variable to tf.float32\n    x = tf.cast(x,tf.float32)\n    with tf.GradientTape() as tape:\n        tape.watch(x)\n        y = a*tf.pow(x,2)+b*x+c\n    dy_dx = tape.gradient(y,x) \n    \n    return((dy_dx,y))\n\ntf.print(f(tf.constant(0.0)))\ntf.print(f(tf.constant(1.0)))\n```\n\n```\n(-2, 1)\n(0, 0)\n```\n\n```python\n\n```\n\n### 2. Calculate the Minimal Value Through the Gradient Tape and the Optimizer\n\n```python\n# Calculate the minimal value of f(x) = a*x**2 + b*x + c\n# Use optimizer.apply_gradients\n\nx = tf.Variable(0.0,name = \"x\",dtype = tf.float32)\na = tf.constant(1.0)\nb = tf.constant(-2.0)\nc = tf.constant(1.0)\n\noptimizer = tf.keras.optimizers.SGD(learning_rate=0.01)\nfor _ in range(1000):\n    with tf.GradientTape() as tape:\n        y = a*tf.pow(x,2) + b*x + c\n    dy_dx = tape.gradient(y,x)\n    optimizer.apply_gradients(grads_and_vars=[(dy_dx,x)])\n    \ntf.print(\"y =\",y,\"; x =\",x)\n```\n\n```\ny = 0 ; x = 0.999998569\n```\n\n```python\n\n```\n\n```python\n# Calculate the minimal value off(x) = a*x**2 + b*x + c\n# Use optimizer.minimize\n# This optimizer.minimize is identical to calculating gradient using tape, then call apply_gradient\n\nx = tf.Variable(0.0,name = \"x\",dtype = tf.float32)\n\n#Note that f() has no argument\ndef f():   \n    a = tf.constant(1.0)\n    b = tf.constant(-2.0)\n    c = tf.constant(1.0)\n    y = a*tf.pow(x,2)+b*x+c\n    return(y)\n\noptimizer = tf.keras.optimizers.SGD(learning_rate=0.01)   \nfor _ in range(1000):\n    optimizer.minimize(f,[x])   \n    \ntf.print(\"y =\",f(),\"; x =\",x)\n```\n\n```\ny = 0 ; x = 0.999998569\n```\n\n```python\n\n```\n\n```python\n# Calculate minimal value in Autograph\n# Use optimizer.apply_gradients\n\nx = tf.Variable(0.0,name = \"x\",dtype = tf.float32)\noptimizer = tf.keras.optimizers.SGD(learning_rate=0.01)\n\n@tf.function\ndef minimizef():\n    a = tf.constant(1.0)\n    b = tf.constant(-2.0)\n    c = tf.constant(1.0)\n    \n    for _ in tf.range(1000): #Note that we should use tf.range(1000) instead of range(1000) when using Autograph\n        with tf.GradientTape() as tape:\n            y = a*tf.pow(x,2) + b*x + c\n        dy_dx = tape.gradient(y,x)\n        optimizer.apply_gradients(grads_and_vars=[(dy_dx,x)])\n        \n    y = a*tf.pow(x,2) + b*x + c\n    return y\n\ntf.print(minimizef())\ntf.print(x)\n```\n\n```\n0\n0.999998569\n```\n\n```python\n\n```\n\n```python\n# Calculate minimal value in Autograph\n# Use optimizer.minimize\n\nx = tf.Variable(0.0,name = \"x\",dtype = tf.float32)\noptimizer = tf.keras.optimizers.SGD(learning_rate=0.01)   \n\n@tf.function\ndef f():   \n    a = tf.constant(1.0)\n    b = tf.constant(-2.0)\n    c = tf.constant(1.0)\n    y = a*tf.pow(x,2)+b*x+c\n    return(y)\n\n@tf.function\ndef train(epoch):  \n    for _ in tf.range(epoch):  \n        optimizer.minimize(f,[x])\n    return(f())\n\n\ntf.print(train(1000))\ntf.print(x)\n\n```\n\n```\n0\n0.999998569\n```\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter2.md",
    "content": "# Chapter 2: Key Concepts of TensorFlow\n\nTensorFlow™ is a open-sourced library using **data flow graphs** for numerical calculation. Each node in the graph represents a mathematical operation, and each edge represents the multi-dimensional array (i.e. tensor) connecting nodes. The flexibility of the architecture allows **cross-platform computation**, e.g. one or multiple CPUs (or GPUs) on PC, server, mobile devices, etc. TensorFlow was initially developed by Google Brain for researches in **machine learning and deep neural networks**, however its universality allows **the popularity in the application of other fields of computing**.\n\n\nAdvantages of TensorFlow:\n\n* Flexibility: Supporting low-level numerical calculation and C++ customized operators.computing.\n\n* Transportability: Available from Server to PC to mobile devices, and compatible with CPU, GPU and TPU\n\n* Distributed computation: Allows distributed parallel computation and designating calculation devices for specific operator\n\n\n\"High buildings rise from the ground\", and TensorFlow also has its base, which are the key concepts of tensor, graph and automatic differenciate.\n\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegant Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to reply **加群(join group)** in the WeChat official account to join the group chat with the other readers.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter3-1.md",
    "content": "# 3-1 Low-level API: Demonstration\n\nThe examples below use low-level APIs in TensorFlow to implement a linear regression model and a DNN binary classification model.\n\nLow-level API includes tensor operation, graph and automatic differentiates.\n\n```python\nimport tensorflow as tf\n\n# Time Stamp\n@tf.function\ndef printbar():\n    today_ts = tf.timestamp()%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8+timestring)\n\n    \n```\n\n```python\n\n```\n\n### 1. Linear Regression Model\n\n\n**(a) Data Preparation**\n\n```python\nimport numpy as np \nimport pandas as pd\nfrom matplotlib import pyplot as plt \nimport tensorflow as tf\n\n\n# Number of samples\nn = 400\n\n# Generating the datasets\nX = tf.random.uniform([n,2],minval=-10,maxval=10) \nw0 = tf.constant([[2.0],[-3.0]])\nb0 = tf.constant([[3.0]])\nY = X@w0 + b0 + tf.random.normal([n,1],mean = 0.0,stddev= 2.0)  # @ is matrix multiplication; adding Gaussian noise\n\n```\n\n```python\n# Data Visualization\n\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nplt.figure(figsize = (12,5))\nax1 = plt.subplot(121)\nax1.scatter(X[:,0],Y[:,0], c = \"b\")\nplt.xlabel(\"x1\")\nplt.ylabel(\"y\",rotation = 0)\n\nax2 = plt.subplot(122)\nax2.scatter(X[:,1],Y[:,0], c = \"g\")\nplt.xlabel(\"x2\")\nplt.ylabel(\"y\",rotation = 0)\nplt.show()\n\n```\n\n![](../data/3-1-01-回归数据可视化.png)\n\n```python\n# Creating generator of data pipeline\ndef data_iter(features, labels, batch_size=8):\n    num_examples = len(features)\n    indices = list(range(num_examples))\n    np.random.shuffle(indices)  # Randomized reading order of the samples\n    for i in range(0, num_examples, batch_size):\n        indexs = indices[i: min(i + batch_size, num_examples)]\n        yield tf.gather(features,indexs), tf.gather(labels,indexs)\n        \n# Testing the data pipeline\nbatch_size = 8\n(features,labels) = next(data_iter(X,Y,batch_size))\nprint(features)\nprint(labels)\n\n```\n\n```\ntf.Tensor(\n[[ 2.6161194   0.11071014]\n [ 9.79207    -0.70180416]\n [ 9.792343    6.9149055 ]\n [-2.4186516  -9.375019  ]\n [ 9.83749    -3.4637213 ]\n [ 7.3953056   4.374569  ]\n [-0.14686584 -0.28063297]\n [ 0.49001217 -9.739792  ]], shape=(8, 2), dtype=float32)\ntf.Tensor(\n[[ 9.334667 ]\n [22.058844 ]\n [ 3.0695205]\n [26.736238 ]\n [35.292133 ]\n [ 4.2943544]\n [ 1.6713585]\n [34.826904 ]], shape=(8, 1), dtype=float32)\n```\n\n\n**(b) Model Definition**\n\n```python\nw = tf.Variable(tf.random.normal(w0.shape))\nb = tf.Variable(tf.zeros_like(b0,dtype = tf.float32))\n\n# Defining Model\nclass LinearRegression:     \n    # Forward propagation\n    def __call__(self,x): \n        return x@w + b\n\n    # Loss function\n    def loss_func(self,y_true,y_pred):  \n        return tf.reduce_mean((y_true - y_pred)**2/2)\n\nmodel = LinearRegression()\n```\n\n```python\n\n```\n\n**(c) Model Training**\n\n```python\n# Debug in dynamic graph\ndef train_step(model, features, labels):\n    with tf.GradientTape() as tape:\n        predictions = model(features)\n        loss = model.loss_func(labels, predictions)\n    # Back propagation to calculate the gradients\n    dloss_dw,dloss_db = tape.gradient(loss,[w,b])\n    # Updating parameters using gradient descending method\n    w.assign(w - 0.001*dloss_dw)\n    b.assign(b - 0.001*dloss_db)\n    \n    return loss\n \n```\n\n```python\n# Test the results of train_step\nbatch_size = 10\n(features,labels) = next(data_iter(X,Y,batch_size))\ntrain_step(model,features,labels)\n\n```\n\n```\n<tf.Tensor: shape=(), dtype=float32, numpy=211.09982>\n```\n\n```python\ndef train_model(model,epochs):\n    for epoch in tf.range(1,epochs+1):\n        for features, labels in data_iter(X,Y,10):\n            loss = train_step(model,features,labels)\n\n        if epoch%50==0:\n            printbar()\n            tf.print(\"epoch =\",epoch,\"loss = \",loss)\n            tf.print(\"w =\",w)\n            tf.print(\"b =\",b)\n\ntrain_model(model,epochs = 200)\n\n```\n\n```\n================================================================================16:35:56\nepoch = 50 loss =  1.78806472\nw = [[1.97554708]\n [-2.97719598]]\nb = [[2.60692883]]\n================================================================================16:36:00\nepoch = 100 loss =  2.64588404\nw = [[1.97319281]\n [-2.97810626]]\nb = [[2.95525956]]\n================================================================================16:36:04\nepoch = 150 loss =  1.42576694\nw = [[1.96466208]\n [-2.98337793]]\nb = [[3.00264144]]\n================================================================================16:36:08\nepoch = 200 loss =  1.68992615\nw = [[1.97718477]\n [-2.983814]]\nb = [[3.01013041]]\n```\n\n```python\n\n```\n\n```python\n## Accelerate using Autograph to transform the dynamic graph into static\n\n@tf.function\ndef train_step(model, features, labels):\n    with tf.GradientTape() as tape:\n        predictions = model(features)\n        loss = model.loss_func(labels, predictions)\n    # Back propagation to calculate the gradients\n    dloss_dw,dloss_db = tape.gradient(loss,[w,b])\n    # Updating parameters using gradient descending method\n    w.assign(w - 0.001*dloss_dw)\n    b.assign(b - 0.001*dloss_db)\n    \n    return loss\n\ndef train_model(model,epochs):\n    for epoch in tf.range(1,epochs+1):\n        for features, labels in data_iter(X,Y,10):\n            loss = train_step(model,features,labels)\n        if epoch%50==0:\n            printbar()\n            tf.print(\"epoch =\",epoch,\"loss = \",loss)\n            tf.print(\"w =\",w)\n            tf.print(\"b =\",b)\n\ntrain_model(model,epochs = 200)\n\n```\n\n```\n================================================================================16:36:35\nepoch = 50 loss =  0.894210339\nw = [[1.96927285]\n [-2.98914337]]\nb = [[3.00987792]]\n================================================================================16:36:36\nepoch = 100 loss =  1.58621466\nw = [[1.97566223]\n [-2.98550248]]\nb = [[3.00998402]]\n================================================================================16:36:37\nepoch = 150 loss =  2.2695992\nw = [[1.96664226]\n [-2.99248481]]\nb = [[3.01028705]]\n================================================================================16:36:38\nepoch = 200 loss =  1.90848124\nw = [[1.98000824]\n [-2.98888135]]\nb = [[3.01085401]]\n```\n\n```python\n\n```\n\n```python\n# Visualizing the results\n\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nplt.figure(figsize = (12,5))\nax1 = plt.subplot(121)\nax1.scatter(X[:,0],Y[:,0], c = \"b\",label = \"samples\")\nax1.plot(X[:,0],w[0]*X[:,0]+b[0],\"-r\",linewidth = 5.0,label = \"model\")\nax1.legend()\nplt.xlabel(\"x1\")\nplt.ylabel(\"y\",rotation = 0)\n\n\nax2 = plt.subplot(122)\nax2.scatter(X[:,1],Y[:,0], c = \"g\",label = \"samples\")\nax2.plot(X[:,1],w[1]*X[:,1]+b[0],\"-r\",linewidth = 5.0,label = \"model\")\nax2.legend()\nplt.xlabel(\"x2\")\nplt.ylabel(\"y\",rotation = 0)\n\nplt.show()\n```\n\n![](../data/3-1-2-回归结果可视化.png)\n\n```python\n\n```\n\n### 2. DNN Binary Classification Model\n\n```python\n\n```\n\n**(a) Data Preparation**\n\n```python\nimport numpy as np \nimport pandas as pd \nfrom matplotlib import pyplot as plt\nimport tensorflow as tf\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\n# Number of the positive/negative samples\nn_positive,n_negative = 2000,2000\n\n# Generating the positive samples with a distribution on a smaller ring\nr_p = 5.0 + tf.random.truncated_normal([n_positive,1],0.0,1.0)\ntheta_p = tf.random.uniform([n_positive,1],0.0,2*np.pi) \nXp = tf.concat([r_p*tf.cos(theta_p),r_p*tf.sin(theta_p)],axis = 1)\nYp = tf.ones_like(r_p)\n\n# Generating the negative samples with a distribution on a larger ring\nr_n = 8.0 + tf.random.truncated_normal([n_negative,1],0.0,1.0)\ntheta_n = tf.random.uniform([n_negative,1],0.0,2*np.pi) \nXn = tf.concat([r_n*tf.cos(theta_n),r_n*tf.sin(theta_n)],axis = 1)\nYn = tf.zeros_like(r_n)\n\n# Assembling all samples\nX = tf.concat([Xp,Xn],axis = 0)\nY = tf.concat([Yp,Yn],axis = 0)\n\n\n# Visualizing the data\nplt.figure(figsize = (6,6))\nplt.scatter(Xp[:,0].numpy(),Xp[:,1].numpy(),c = \"r\")\nplt.scatter(Xn[:,0].numpy(),Xn[:,1].numpy(),c = \"g\")\nplt.legend([\"positive\",\"negative\"]);\n\n```\n\n![](../data/3-1-03-分类数据可视化.png)\n\n```python\n# Create the generator of the data pipeline\ndef data_iter(features, labels, batch_size=8):\n    num_examples = len(features)\n    indices = list(range(num_examples))\n    np.random.shuffle(indices)  # Randomizing the reading order of the samples\n    for i in range(0, num_examples, batch_size):\n        indexs = indices[i: min(i + batch_size, num_examples)]\n        yield tf.gather(features,indexs), tf.gather(labels,indexs)\n        \n# Testing data pipeline\nbatch_size = 10\n(features,labels) = next(data_iter(X,Y,batch_size))\nprint(features)\nprint(labels)\n```\n\n```\ntf.Tensor(\n[[ 0.03732629  3.5783494 ]\n [ 0.542919    5.035079  ]\n [ 5.860281   -2.4476354 ]\n [ 0.63657564  3.194231  ]\n [-3.5072308   2.5578873 ]\n [-2.4109735  -3.6621518 ]\n [ 4.0975413  -2.4172943 ]\n [ 1.9393908  -6.782317  ]\n [-4.7453732  -0.5176727 ]\n [-1.4057113  -7.9775257 ]], shape=(10, 2), dtype=float32)\ntf.Tensor(\n[[1.]\n [1.]\n [0.]\n [1.]\n [1.]\n [1.]\n [1.]\n [0.]\n [1.]\n [0.]], shape=(10, 1), dtype=float32)\n```\n\n```python\n\n```\n\n**(b) Model Definition**\n\n\nHere the `tf.Module` is used for organizing the parameters in the model. You may refer to the last section of Chapter 4 ([AutoGraph and tf.Module](./Chapter4-5.md)) for more details of `tf.Module`. \n\n```python\nclass DNNModel(tf.Module):\n    def __init__(self,name = None):\n        super(DNNModel, self).__init__(name=name)\n        self.w1 = tf.Variable(tf.random.truncated_normal([2,4]),dtype = tf.float32)\n        self.b1 = tf.Variable(tf.zeros([1,4]),dtype = tf.float32)\n        self.w2 = tf.Variable(tf.random.truncated_normal([4,8]),dtype = tf.float32)\n        self.b2 = tf.Variable(tf.zeros([1,8]),dtype = tf.float32)\n        self.w3 = tf.Variable(tf.random.truncated_normal([8,1]),dtype = tf.float32)\n        self.b3 = tf.Variable(tf.zeros([1,1]),dtype = tf.float32)\n\n     \n    # Forward propagation\n    @tf.function(input_signature=[tf.TensorSpec(shape = [None,2], dtype = tf.float32)])  \n    def __call__(self,x):\n        x = tf.nn.relu(x@self.w1 + self.b1)\n        x = tf.nn.relu(x@self.w2 + self.b2)\n        y = tf.nn.sigmoid(x@self.w3 + self.b3)\n        return y\n    \n    # Loss function (binary cross entropy)\n    @tf.function(input_signature=[tf.TensorSpec(shape = [None,1], dtype = tf.float32),\n                              tf.TensorSpec(shape = [None,1], dtype = tf.float32)])  \n    def loss_func(self,y_true,y_pred):  \n        # Limiting the prediction between 1e-7 and 1 - 1e-7 to avoid the error at log(0)\n        eps = 1e-7\n        y_pred = tf.clip_by_value(y_pred,eps,1.0-eps)\n        bce = - y_true*tf.math.log(y_pred) - (1-y_true)*tf.math.log(1-y_pred)\n        return  tf.reduce_mean(bce)\n    \n    # Metric (Accuracy)\n    @tf.function(input_signature=[tf.TensorSpec(shape = [None,1], dtype = tf.float32),\n                              tf.TensorSpec(shape = [None,1], dtype = tf.float32)]) \n    def metric_func(self,y_true,y_pred):\n        y_pred = tf.where(y_pred>0.5,tf.ones_like(y_pred,dtype = tf.float32),\n                          tf.zeros_like(y_pred,dtype = tf.float32))\n        acc = tf.reduce_mean(1-tf.abs(y_true-y_pred))\n        return acc\n    \nmodel = DNNModel()\n```\n\n```python\n# Testing the structure of model\nbatch_size = 10\n(features,labels) = next(data_iter(X,Y,batch_size))\n\npredictions = model(features)\n\nloss = model.loss_func(labels,predictions)\nmetric = model.metric_func(labels,predictions)\n\ntf.print(\"init loss:\",loss)\ntf.print(\"init metric\",metric)\n```\n\n```\ninit loss: 1.76568353\ninit metric 0.6\n```\n\n```python\nprint(len(model.trainable_variables))\n```\n\n```\n6\n```\n\n```python\n\n```\n\n**(c) Model Training**\n\n```python\n## Transform to static graph for acceleration using Autograph\n\n@tf.function\ndef train_step(model, features, labels):\n    \n    # Forward propagation to calculate the loss\n    with tf.GradientTape() as tape:\n        predictions = model(features)\n        loss = model.loss_func(labels, predictions) \n        \n    # Backward propagation to calculate the gradients\n    grads = tape.gradient(loss, model.trainable_variables)\n    \n    # Applying gradient descending\n    for p, dloss_dp in zip(model.trainable_variables,grads):\n        p.assign(p - 0.001*dloss_dp)\n        \n    # Calculate metric\n    metric = model.metric_func(labels,predictions)\n    \n    return loss, metric\n\n\ndef train_model(model,epochs):\n    for epoch in tf.range(1,epochs+1):\n        for features, labels in data_iter(X,Y,100):\n            loss,metric = train_step(model,features,labels)\n        if epoch%100==0:\n            printbar()\n            tf.print(\"epoch =\",epoch,\"loss = \",loss, \"accuracy = \", metric)\n        \n\ntrain_model(model,epochs = 600)\n```\n\n```\n================================================================================16:47:35\nepoch = 100 loss =  0.567795336 accuracy =  0.71\n================================================================================16:47:39\nepoch = 200 loss =  0.50955683 accuracy =  0.77\n================================================================================16:47:43\nepoch = 300 loss =  0.421476126 accuracy =  0.84\n================================================================================16:47:47\nepoch = 400 loss =  0.330618203 accuracy =  0.9\n================================================================================16:47:51\nepoch = 500 loss =  0.308296859 accuracy =  0.89\n================================================================================16:47:55\nepoch = 600 loss =  0.279367268 accuracy =  0.96\n```\n\n```python\n\n```\n\n```python\n# Visualizing the results\nfig, (ax1,ax2) = plt.subplots(nrows=1,ncols=2,figsize = (12,5))\nax1.scatter(Xp[:,0],Xp[:,1],c = \"r\")\nax1.scatter(Xn[:,0],Xn[:,1],c = \"g\")\nax1.legend([\"positive\",\"negative\"]);\nax1.set_title(\"y_true\");\n\nXp_pred = tf.boolean_mask(X,tf.squeeze(model(X)>=0.5),axis = 0)\nXn_pred = tf.boolean_mask(X,tf.squeeze(model(X)<0.5),axis = 0)\n\nax2.scatter(Xp_pred[:,0],Xp_pred[:,1],c = \"r\")\nax2.scatter(Xn_pred[:,0],Xn_pred[:,1],c = \"g\")\nax2.legend([\"positive\",\"negative\"]);\nax2.set_title(\"y_pred\");\n\n```\n\n![](../data/3-1-04-分类结果可视化.png)\n\n```python\n\n```\n\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter3-2.md",
    "content": "# 3-2 Mid-level API: Demonstration\n\nThe examples below use mid-level APIs in TensorFlow to implement a linear regression model and a DNN binary classification model.\n\nMid-level API includes model layers, loss functions, optimizers, data pipelines, feature columns, etc.\n\n```python\nimport tensorflow as tf\n\n# Time stamp\n@tf.function\ndef printbar():\n    today_ts = tf.timestamp()%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8+timestring)\n\n    \n```\n\n```python\n\n```\n\n### 1. Linear Regression Model\n\n\n**(a) Data Preparation**\n\n```python\nimport numpy as np \nimport pandas as pd\nfrom matplotlib import pyplot as plt \nimport tensorflow as tf\nfrom tensorflow.keras import layers,losses,metrics,optimizers\n\n# Number of sample\nn = 400\n\n# Generating the datasets\nX = tf.random.uniform([n,2],minval=-10,maxval=10) \nw0 = tf.constant([[2.0],[-3.0]])\nb0 = tf.constant([[3.0]])\nY = X@w0 + b0 + tf.random.normal([n,1],mean = 0.0,stddev= 2.0)  # @ is matrix multiplication; adding Gaussian noise\n\n```\n\n```python\n# Data Visualization\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\nplt.figure(figsize = (12,5))\nax1 = plt.subplot(121)\nax1.scatter(X[:,0],Y[:,0], c = \"b\")\nplt.xlabel(\"x1\")\nplt.ylabel(\"y\",rotation = 0)\n\nax2 = plt.subplot(122)\nax2.scatter(X[:,1],Y[:,0], c = \"g\")\nplt.xlabel(\"x2\")\nplt.ylabel(\"y\",rotation = 0)\nplt.show()\n\n```\n\n![](../data/3-2-01-回归数据可视化.png)\n\n```python\n# Creating generator of data pipeline\nds = tf.data.Dataset.from_tensor_slices((X,Y)) \\\n     .shuffle(buffer_size = 100).batch(10) \\\n     .prefetch(tf.data.experimental.AUTOTUNE)  \n```\n\n```python\n\n```\n\n**(b) Model Definition**\n\n```python\nmodel = layers.Dense(units = 1) \nmodel.build(input_shape = (2,)) #Creating variables using the build method\nmodel.loss_func = losses.mean_squared_error\nmodel.optimizer = optimizers.SGD(learning_rate=0.001)\n```\n\n```python\n\n```\n\n**(c) Model Training**\n\n```python\n# Accelerate using Autograph to transform the dynamic graph into static\n\n@tf.function\ndef train_step(model, features, labels):\n    with tf.GradientTape() as tape:\n        predictions = model(features)\n        loss = model.loss_func(tf.reshape(labels,[-1]), tf.reshape(predictions,[-1]))\n    grads = tape.gradient(loss,model.variables)\n    model.optimizer.apply_gradients(zip(grads,model.variables))\n    return loss\n\n# Testing the results of train_step\nfeatures,labels = next(ds.as_numpy_iterator())\ntrain_step(model,features,labels)\n\n```\n\n```python\ndef train_model(model,epochs):\n    for epoch in tf.range(1,epochs+1):\n        loss = tf.constant(0.0)\n        for features, labels in ds:\n            loss = train_step(model,features,labels)\n        if epoch%50==0:\n            printbar()\n            tf.print(\"epoch =\",epoch,\"loss = \",loss)\n            tf.print(\"w =\",model.variables[0])\n            tf.print(\"b =\",model.variables[1])\ntrain_model(model,epochs = 200)\n\n```\n\n```\n================================================================================17:01:48\nepoch = 50 loss =  2.56481647\nw = [[1.99355531]\n [-2.99061537]]\nb = [3.09484935]\n================================================================================17:01:51\nepoch = 100 loss =  5.96198225\nw = [[1.98028314]\n [-2.96975136]]\nb = [3.09501529]\n================================================================================17:01:54\nepoch = 150 loss =  4.79625702\nw = [[2.00056171]\n [-2.98774862]]\nb = [3.09567738]\n================================================================================17:01:58\nepoch = 200 loss =  8.26704407\nw = [[2.00282311]\n [-2.99300027]]\nb = [3.09406662]\n```\n\n```python\n\n```\n\n```python\n# Visualizing the results\n\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nw,b = model.variables\n\nplt.figure(figsize = (12,5))\nax1 = plt.subplot(121)\nax1.scatter(X[:,0],Y[:,0], c = \"b\",label = \"samples\")\nax1.plot(X[:,0],w[0]*X[:,0]+b[0],\"-r\",linewidth = 5.0,label = \"model\")\nax1.legend()\nplt.xlabel(\"x1\")\nplt.ylabel(\"y\",rotation = 0)\n\n\n\nax2 = plt.subplot(122)\nax2.scatter(X[:,1],Y[:,0], c = \"g\",label = \"samples\")\nax2.plot(X[:,1],w[1]*X[:,1]+b[0],\"-r\",linewidth = 5.0,label = \"model\")\nax2.legend()\nplt.xlabel(\"x2\")\nplt.ylabel(\"y\",rotation = 0)\n\nplt.show()\n\n```\n\n![](../data/3-2-02-回归结果可视化.png)\n\n```python\n\n```\n\n### 2. DNN Binary Classification Model\n\n```python\n\n```\n\n**(a) Data Preparation**\n\n```python\nimport numpy as np \nimport pandas as pd \nfrom matplotlib import pyplot as plt\nimport tensorflow as tf\nfrom tensorflow.keras import layers,losses,metrics,optimizers\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\n## Number of the positive/negative samples\nn_positive,n_negative = 2000,2000\n\n# Generating the positive samples with a distribution on a smaller ring\nr_p = 5.0 + tf.random.truncated_normal([n_positive,1],0.0,1.0)\ntheta_p = tf.random.uniform([n_positive,1],0.0,2*np.pi) \nXp = tf.concat([r_p*tf.cos(theta_p),r_p*tf.sin(theta_p)],axis = 1)\nYp = tf.ones_like(r_p)\n\n# Generating the negative samples with a distribution on a larger ring\nr_n = 8.0 + tf.random.truncated_normal([n_negative,1],0.0,1.0)\ntheta_n = tf.random.uniform([n_negative,1],0.0,2*np.pi) \nXn = tf.concat([r_n*tf.cos(theta_n),r_n*tf.sin(theta_n)],axis = 1)\nYn = tf.zeros_like(r_n)\n\n# Assembling all samples\nX = tf.concat([Xp,Xn],axis = 0)\nY = tf.concat([Yp,Yn],axis = 0)\n\n\n# Visualizing the data\nplt.figure(figsize = (6,6))\nplt.scatter(Xp[:,0].numpy(),Xp[:,1].numpy(),c = \"r\")\nplt.scatter(Xn[:,0].numpy(),Xn[:,1].numpy(),c = \"g\")\nplt.legend([\"positive\",\"negative\"]);\n\n```\n\n![](../data/3-1-03-分类数据可视化.png)\n\n```python\n# Create pipeline for the input data\nds = tf.data.Dataset.from_tensor_slices((X,Y)) \\\n     .shuffle(buffer_size = 4000).batch(100) \\\n     .prefetch(tf.data.experimental.AUTOTUNE) \n```\n\n```python\n\n```\n\n**(b) Model Definition**\n\n```python\n\n```\n\n```python\nclass DNNModel(tf.Module):\n    def __init__(self,name = None):\n        super(DNNModel, self).__init__(name=name)\n        self.dense1 = layers.Dense(4,activation = \"relu\") \n        self.dense2 = layers.Dense(8,activation = \"relu\")\n        self.dense3 = layers.Dense(1,activation = \"sigmoid\")\n\n     \n    # Forward propagation\n    @tf.function(input_signature=[tf.TensorSpec(shape = [None,2], dtype = tf.float32)])  \n    def __call__(self,x):\n        x = self.dense1(x)\n        x = self.dense2(x)\n        y = self.dense3(x)\n        return y\n    \nmodel = DNNModel()\nmodel.loss_func = losses.binary_crossentropy\nmodel.metric_func = metrics.binary_accuracy\nmodel.optimizer = optimizers.Adam(learning_rate=0.001)\n\n```\n\n```python\n# Testing the structure of model\n(features,labels) = next(ds.as_numpy_iterator())\n\npredictions = model(features)\n\nloss = model.loss_func(tf.reshape(labels,[-1]),tf.reshape(predictions,[-1]))\nmetric = model.metric_func(tf.reshape(labels,[-1]),tf.reshape(predictions,[-1]))\n\ntf.print(\"init loss:\",loss)\ntf.print(\"init metric\",metric)\n\n```\n\n```\ninit loss: 1.13653195\ninit metric 0.5\n```\n\n```python\n\n```\n\n**(c) Model Training**\n\n```python\n# Transform to static graph for acceleration using Autograph\n\n@tf.function\ndef train_step(model, features, labels):\n    with tf.GradientTape() as tape:\n        predictions = model(features)\n        loss = model.loss_func(tf.reshape(labels,[-1]), tf.reshape(predictions,[-1]))\n    grads = tape.gradient(loss,model.trainable_variables)\n    model.optimizer.apply_gradients(zip(grads,model.trainable_variables))\n    \n    metric = model.metric_func(tf.reshape(labels,[-1]), tf.reshape(predictions,[-1]))\n    \n    return loss,metric\n\n# Testing the result of train_step\nfeatures,labels = next(ds.as_numpy_iterator())\ntrain_step(model,features,labels)\n```\n\n```\n(<tf.Tensor: shape=(), dtype=float32, numpy=1.2033114>,\n <tf.Tensor: shape=(), dtype=float32, numpy=0.47>)\n```\n\n```python\n\n```\n\n```python\n@tf.function\ndef train_model(model,epochs):\n    for epoch in tf.range(1,epochs+1):\n        loss, metric = tf.constant(0.0),tf.constant(0.0)\n        for features, labels in ds:\n            loss,metric = train_step(model,features,labels)\n        if epoch%10==0:\n            printbar()\n            tf.print(\"epoch =\",epoch,\"loss = \",loss, \"accuracy = \",metric)\ntrain_model(model,epochs = 60)\n\n```\n\n```\n================================================================================17:07:36\nepoch = 10 loss =  0.556449413 accuracy =  0.79\n================================================================================17:07:38\nepoch = 20 loss =  0.439187407 accuracy =  0.86\n================================================================================17:07:40\nepoch = 30 loss =  0.259921253 accuracy =  0.95\n================================================================================17:07:42\nepoch = 40 loss =  0.244920313 accuracy =  0.9\n================================================================================17:07:43\nepoch = 50 loss =  0.19839409 accuracy =  0.92\n================================================================================17:07:45\nepoch = 60 loss =  0.126151696 accuracy =  0.95\n```\n\n```python\n\n```\n\n```python\n# Visualizing the results\nfig, (ax1,ax2) = plt.subplots(nrows=1,ncols=2,figsize = (12,5))\nax1.scatter(Xp[:,0].numpy(),Xp[:,1].numpy(),c = \"r\")\nax1.scatter(Xn[:,0].numpy(),Xn[:,1].numpy(),c = \"g\")\nax1.legend([\"positive\",\"negative\"]);\nax1.set_title(\"y_true\");\n\nXp_pred = tf.boolean_mask(X,tf.squeeze(model(X)>=0.5),axis = 0)\nXn_pred = tf.boolean_mask(X,tf.squeeze(model(X)<0.5),axis = 0)\n\nax2.scatter(Xp_pred[:,0].numpy(),Xp_pred[:,1].numpy(),c = \"r\")\nax2.scatter(Xn_pred[:,0].numpy(),Xn_pred[:,1].numpy(),c = \"g\")\nax2.legend([\"positive\",\"negative\"]);\nax2.set_title(\"y_pred\");\n\n\n```\n\n![](../data/3-2-04-分类结果可视化.png)\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter3-3.md",
    "content": "# 3-3 High-level API: Demonstration\n\nThe examples below use high-level APIs in TensorFlow to implement a linear regression model and a DNN binary classification model.\n\nTypically, the high-level APIs are providing the class interfaces for `tf.keras.models`.\n\nThere are three ways of modeling using APIs of Keras: sequential modeling using `Sequential` function, arbitrary modeling using API functions, and customized modeling by inheriting base class `Model`.\n\nHere we are demonstrating using `Sequential` function and customized modeling by inheriting base class `Model`, respectively.\n\n\n```python\nimport tensorflow as tf\n\n# Time stamp\n@tf.function\ndef printbar():\n    today_ts = tf.timestamp()%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8+timestring)\n\n    \n```\n\n### 1. Linear Regression Model\n\n\nIn this example, we used `Sequential` function to construct the model sequentially and use the pre-defined method `model.fit` for training (for the beginners).\n\n\n**(a) Data Preparation**\n\n```python\nimport numpy as np \nimport pandas as pd\nfrom matplotlib import pyplot as plt \nimport tensorflow as tf\nfrom tensorflow.keras import models,layers,losses,metrics,optimizers\n\n# Number of sample\nn = 400\n\n# Generating the datasets\nX = tf.random.uniform([n,2],minval=-10,maxval=10) \nw0 = tf.constant([[2.0],[-3.0]])\nb0 = tf.constant([[3.0]])\nY = X@w0 + b0 + tf.random.normal([n,1],mean = 0.0,stddev= 2.0)  # @ is matrix multiplication; adding Gaussian noise\n\n```\n\n```python\n# Data Visualization\n\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\nplt.figure(figsize = (12,5))\nax1 = plt.subplot(121)\nax1.scatter(X[:,0],Y[:,0], c = \"b\")\nplt.xlabel(\"x1\")\nplt.ylabel(\"y\",rotation = 0)\n\nax2 = plt.subplot(122)\nax2.scatter(X[:,1],Y[:,0], c = \"g\")\nplt.xlabel(\"x2\")\nplt.ylabel(\"y\",rotation = 0)\nplt.show()\n\n```\n\n![](../data/3-3-01-回归数据可视化.png)\n\n```python\n\n```\n\n**(b) Model Definition**\n\n```python\ntf.keras.backend.clear_session()\n\nmodel = models.Sequential()\nmodel.add(layers.Dense(1,input_shape =(2,)))\nmodel.summary()\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ndense (Dense)                (None, 1)                 3         \n=================================================================\nTotal params: 3\nTrainable params: 3\nNon-trainable params: 0\n```\n\n```python\n\n```\n\n**(c) Model Training**\n\n```python\n### Training using method fit\n\nmodel.compile(optimizer=\"adam\",loss=\"mse\",metrics=[\"mae\"])\nmodel.fit(X,Y,batch_size = 10,epochs = 200)  \n\ntf.print(\"w = \",model.layers[0].kernel)\ntf.print(\"b = \",model.layers[0].bias)\n\n```\n\n```\nEpoch 197/200\n400/400 [==============================] - 0s 190us/sample - loss: 4.3977 - mae: 1.7129\nEpoch 198/200\n400/400 [==============================] - 0s 172us/sample - loss: 4.3918 - mae: 1.7117\nEpoch 199/200\n400/400 [==============================] - 0s 134us/sample - loss: 4.3861 - mae: 1.7106\nEpoch 200/200\n400/400 [==============================] - 0s 166us/sample - loss: 4.3786 - mae: 1.7092\nw =  [[1.99339032]\n [-3.00866461]]\nb =  [2.67018795]\n```\n\n```python\n# Visualizing the results\n\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nw,b = model.variables\n\nplt.figure(figsize = (12,5))\nax1 = plt.subplot(121)\nax1.scatter(X[:,0],Y[:,0], c = \"b\",label = \"samples\")\nax1.plot(X[:,0],w[0]*X[:,0]+b[0],\"-r\",linewidth = 5.0,label = \"model\")\nax1.legend()\nplt.xlabel(\"x1\")\nplt.ylabel(\"y\",rotation = 0)\n\nax2 = plt.subplot(122)\nax2.scatter(X[:,1],Y[:,0], c = \"g\",label = \"samples\")\nax2.plot(X[:,1],w[1]*X[:,1]+b[0],\"-r\",linewidth = 5.0,label = \"model\")\nax2.legend()\nplt.xlabel(\"x2\")\nplt.ylabel(\"y\",rotation = 0)\n\nplt.show()\n```\n\n![](../data/3-3-02-回归结果可视化.png)\n\n```python\n\n```\n\n### 2. DNN Binary Classification Model\n\n\nThis example demonstrates the customized model using the child class inherited from the base class `Model`, and use a customized loop for training (for the experts).\n\n\n**(a) Data Preparation**\n\n```python\nimport numpy as np \nimport pandas as pd \nfrom matplotlib import pyplot as plt\nimport tensorflow as tf\nfrom tensorflow.keras import layers,losses,metrics,optimizers\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\n# Number of the positive/negative samples\nn_positive,n_negative = 2000,2000\n\n# Generating the positive samples with a distribution on a smaller ring\nr_p = 5.0 + tf.random.truncated_normal([n_positive,1],0.0,1.0)\ntheta_p = tf.random.uniform([n_positive,1],0.0,2*np.pi) \nXp = tf.concat([r_p*tf.cos(theta_p),r_p*tf.sin(theta_p)],axis = 1)\nYp = tf.ones_like(r_p)\n\n# Generating the negative samples with a distribution on a larger ring\nr_n = 8.0 + tf.random.truncated_normal([n_negative,1],0.0,1.0)\ntheta_n = tf.random.uniform([n_negative,1],0.0,2*np.pi) \nXn = tf.concat([r_n*tf.cos(theta_n),r_n*tf.sin(theta_n)],axis = 1)\nYn = tf.zeros_like(r_n)\n\n# Assembling all samples\nX = tf.concat([Xp,Xn],axis = 0)\nY = tf.concat([Yp,Yn],axis = 0)\n\n# Shuffling the samples\ndata = tf.concat([X,Y],axis = 1)\ndata = tf.random.shuffle(data)\nX = data[:,:2]\nY = data[:,2:]\n\n\n# Visualizing the data\nplt.figure(figsize = (6,6))\nplt.scatter(Xp[:,0].numpy(),Xp[:,1].numpy(),c = \"r\")\nplt.scatter(Xn[:,0].numpy(),Xn[:,1].numpy(),c = \"g\")\nplt.legend([\"positive\",\"negative\"]);\n\n```\n\n![](../data/3-3-03-分类数据可视化.png)\n\n```python\nds_train = tf.data.Dataset.from_tensor_slices((X[0:n*3//4,:],Y[0:n*3//4,:])) \\\n     .shuffle(buffer_size = 1000).batch(20) \\\n     .prefetch(tf.data.experimental.AUTOTUNE) \\\n     .cache()\n\nds_valid = tf.data.Dataset.from_tensor_slices((X[n*3//4:,:],Y[n*3//4:,:])) \\\n     .batch(20) \\\n     .prefetch(tf.data.experimental.AUTOTUNE) \\\n     .cache()\n\n```\n\n```python\n\n```\n\n**(b) Model Definition**\n\n```python\ntf.keras.backend.clear_session()\nclass DNNModel(models.Model):\n    def __init__(self):\n        super(DNNModel, self).__init__()\n        \n    def build(self,input_shape):\n        self.dense1 = layers.Dense(4,activation = \"relu\",name = \"dense1\") \n        self.dense2 = layers.Dense(8,activation = \"relu\",name = \"dense2\")\n        self.dense3 = layers.Dense(1,activation = \"sigmoid\",name = \"dense3\")\n        super(DNNModel,self).build(input_shape)\n \n    # Forward propagation\n    @tf.function(input_signature=[tf.TensorSpec(shape = [None,2], dtype = tf.float32)])  \n    def call(self,x):\n        x = self.dense1(x)\n        x = self.dense2(x)\n        y = self.dense3(x)\n        return y\n\nmodel = DNNModel()\nmodel.build(input_shape =(None,2))\n\nmodel.summary()\n```\n\n```\nModel: \"dnn_model\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ndense1 (Dense)               multiple                  12        \n_________________________________________________________________\ndense2 (Dense)               multiple                  40        \n_________________________________________________________________\ndense3 (Dense)               multiple                  9         \n=================================================================\nTotal params: 61\nTrainable params: 61\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\n\n```\n\n**(c) Model Training**\n\n```python\n\n```\n\n```python\n### Customizing the training loop\n\noptimizer = optimizers.Adam(learning_rate=0.01)\nloss_func = tf.keras.losses.BinaryCrossentropy()\n\ntrain_loss = tf.keras.metrics.Mean(name='train_loss')\ntrain_metric = tf.keras.metrics.BinaryAccuracy(name='train_accuracy')\n\nvalid_loss = tf.keras.metrics.Mean(name='valid_loss')\nvalid_metric = tf.keras.metrics.BinaryAccuracy(name='valid_accuracy')\n\n\n@tf.function\ndef train_step(model, features, labels):\n    with tf.GradientTape() as tape:\n        predictions = model(features)\n        loss = loss_func(labels, predictions)\n    grads = tape.gradient(loss, model.trainable_variables)\n    optimizer.apply_gradients(zip(grads, model.trainable_variables))\n\n    train_loss.update_state(loss)\n    train_metric.update_state(labels, predictions)\n\n@tf.function\ndef valid_step(model, features, labels):\n    predictions = model(features)\n    batch_loss = loss_func(labels, predictions)\n    valid_loss.update_state(batch_loss)\n    valid_metric.update_state(labels, predictions)\n    \n\ndef train_model(model,ds_train,ds_valid,epochs):\n    for epoch in tf.range(1,epochs+1):\n        for features, labels in ds_train:\n            train_step(model,features,labels)\n\n        for features, labels in ds_valid:\n            valid_step(model,features,labels)\n\n        logs = 'Epoch={},Loss:{},Accuracy:{},Valid Loss:{},Valid Accuracy:{}'\n        \n        if  epoch%100 ==0:\n            printbar()\n            tf.print(tf.strings.format(logs,\n            (epoch,train_loss.result(),train_metric.result(),valid_loss.result(),valid_metric.result())))\n        \n        train_loss.reset_states()\n        valid_loss.reset_states()\n        train_metric.reset_states()\n        valid_metric.reset_states()\n\ntrain_model(model,ds_train,ds_valid,1000)\n```\n\n```\n================================================================================17:35:02\nEpoch=100,Loss:0.194088802,Accuracy:0.923064,Valid Loss:0.215538561,Valid Accuracy:0.904368\n================================================================================17:35:22\nEpoch=200,Loss:0.151239693,Accuracy:0.93768847,Valid Loss:0.181166962,Valid Accuracy:0.920664132\n================================================================================17:35:43\nEpoch=300,Loss:0.134556711,Accuracy:0.944247484,Valid Loss:0.171530813,Valid Accuracy:0.926396072\n================================================================================17:36:04\nEpoch=400,Loss:0.125722557,Accuracy:0.949172914,Valid Loss:0.16731061,Valid Accuracy:0.929318547\n================================================================================17:36:24\nEpoch=500,Loss:0.120216407,Accuracy:0.952525079,Valid Loss:0.164817035,Valid Accuracy:0.931044817\n================================================================================17:36:44\nEpoch=600,Loss:0.116434008,Accuracy:0.954830289,Valid Loss:0.163089141,Valid Accuracy:0.932202339\n================================================================================17:37:05\nEpoch=700,Loss:0.113658346,Accuracy:0.956433,Valid Loss:0.161804497,Valid Accuracy:0.933092058\n================================================================================17:37:25\nEpoch=800,Loss:0.111522928,Accuracy:0.957467675,Valid Loss:0.160796657,Valid Accuracy:0.93379426\n================================================================================17:37:46\nEpoch=900,Loss:0.109816991,Accuracy:0.958205402,Valid Loss:0.159987748,Valid Accuracy:0.934343576\n================================================================================17:38:06\nEpoch=1000,Loss:0.10841465,Accuracy:0.958805501,Valid Loss:0.159325734,Valid Accuracy:0.934785843\n```\n\n```python\n\n```\n\n```python\n# Visualizing the results\nfig, (ax1,ax2) = plt.subplots(nrows=1,ncols=2,figsize = (12,5))\nax1.scatter(Xp[:,0].numpy(),Xp[:,1].numpy(),c = \"r\")\nax1.scatter(Xn[:,0].numpy(),Xn[:,1].numpy(),c = \"g\")\nax1.legend([\"positive\",\"negative\"]);\nax1.set_title(\"y_true\");\n\nXp_pred = tf.boolean_mask(X,tf.squeeze(model(X)>=0.5),axis = 0)\nXn_pred = tf.boolean_mask(X,tf.squeeze(model(X)<0.5),axis = 0)\n\nax2.scatter(Xp_pred[:,0].numpy(),Xp_pred[:,1].numpy(),c = \"r\")\nax2.scatter(Xn_pred[:,0].numpy(),Xn_pred[:,1].numpy(),c = \"g\")\nax2.legend([\"positive\",\"negative\"]);\nax2.set_title(\"y_pred\");\n```\n\n![](../data/3-3-04-分类结果可视化.png)\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter3.md",
    "content": "# Chapter 3: Hierarchy of TensorFlow\n\n\nWe are going to introduce five levels of TensorFlow in this chapter: Hardware Level, Kernel Level, Low-level API, Mid-level API, High-level API. We demonstrate the differences in model implementation at different API levels with two examples: a linear regression model and a DNN binary classification model.\n\nFrom lower to higher, there are five levels in TensorFlow hierarchy.\n\nThe bottom one is hardware level. TensorFlow supports adding CPU, GPU or TPU to the resource pool of computing.\n\nThe second level is the kernel implementing C++. These kernels are able to run on distributed cross platforms.\n\nThe third level contains operators in written in Python, which provides low-level API instructions that packaging C++ kernels, including tensor operation, graph, automatic differentiate, etc.\nFor example: `tf.Variable`, `tf.constant`, `tf.function`, `tf.GradientTape`, `tf.nn.softmax`...\nIf we compare a model to a house, then these third level APIs are the bricks.\n\nThe fourth level contains model components implemented in Python. They provide packaging to the low-level API functions, including model layers, loss functions, optimizers, data pipelines, feature columns, etc. \nFor example: `tf.keras.layers`, `tf.keras.losses`, `tf.keras.metrics`, `tf.keras.optimizers`, `tf.data.DataSet`, `tf.feature_column`...\nIf we compare a model to a house, then these fourth level APIs are the walls.\n\nThe fifth level contains well-designed models implemented in Python. Most of them are high-level APIs packaged by OOP, typically are the class interfaces for `tf.keras.models`.\nIf we compare a model to a house, then these fifth level APIs are the houses themselves.\n\n\n<img src=\"../data/tensorflow_structure_eng.jpg\">\n\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to reply **加群(join group)** in the WeChat official account to join the group chat with the other readers.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter4-1.md",
    "content": "# 4-1 Structural Operations of the Tensor\n\nTensor operation includes structural operation and mathematical operation.\n\nThe structural operation includes tensor creation, index slicing, dimension transform, combining & splitting, etc.\n\nThe mathematical operation includes scalar operation, vector operation, and matrix operation. We will also introduce the broadcasting mechanism of tensor operation.\n\nThis section is about the structural operation of tensor.\n\n\n### 1. Creating Tensor\n\n\nTensor creation is similar to array creation in numpy.\n\n```python\nimport tensorflow as tf\nimport numpy as np \n```\n\n```python\na = tf.constant([1,2,3],dtype = tf.float32)\ntf.print(a)\n```\n\n```\n[1 2 3]\n```\n```python\nb = tf.range(1,10,delta = 2)\ntf.print(b)\n```\n\n```\n[1 3 5 7 9]\n```\n\n```python\nc = tf.linspace(0.0,2*3.14,100)\ntf.print(c)\n```\n\n```\n[0 0.0634343475 0.126868695 ... 6.15313148 6.21656609 6.28]\n```\n\n```python\nd = tf.zeros([3,3])\ntf.print(d)\n```\n\n```\n[[0 0 0]\n [0 0 0]\n [0 0 0]]\n```\n\n```python\na = tf.ones([3,3])\nb = tf.zeros_like(a,dtype= tf.float32)\ntf.print(a)\ntf.print(b)\n```\n\n```\n[[1 1 1]\n [1 1 1]\n [1 1 1]]\n[[0 0 0]\n [0 0 0]\n [0 0 0]]\n```\n\n```python\nb = tf.fill([3,2],5)\ntf.print(b)\n```\n\n```\n[[5 5]\n [5 5]\n [5 5]]\n```\n\n```python\n# Random numbers with uniform distribution\ntf.random.set_seed(1.0)\na = tf.random.uniform([5],minval=0,maxval=10)\ntf.print(a)\n```\n\n```\n[1.65130854 9.01481247 6.30974197 4.34546089 2.9193902]\n```\n\n```python\n# Random numbers with normal distribution\nb = tf.random.normal([3,3],mean=0.0,stddev=1.0)\ntf.print(b)\n```\n\n```\n[[0.403087884 -1.0880208 -0.0630953535]\n [1.33655667 0.711760104 -0.489286453]\n [-0.764221311 -1.03724861 -1.25193381]]\n```\n\n```python\n# Random numbers with normal distribution and truncate within the range 2X standard deviation\nc = tf.random.truncated_normal((5,5), mean=0.0, stddev=1.0, dtype=tf.float32)\ntf.print(c)\n```\n\n```\n[[-0.457012236 -0.406867266 0.728577733 -0.892977774 -0.369404584]\n [0.323488563 1.19383323 0.888299048 1.25985599 -1.95951891]\n [-0.202244401 0.294496894 -0.468728036 1.29494202 1.48142183]\n [0.0810953453 1.63843894 0.556645 0.977199793 -1.17777884]\n [1.67368948 0.0647980496 -0.705142677 -0.281972528 0.126546144]]\n```\n\n```python\n# Special matrix\nI = tf.eye(3,3) # Identity matrix\ntf.print(I)\ntf.print(\" \")\nt = tf.linalg.diag([1,2,3]) # Diagonal matrix\ntf.print(t)\n```\n\n```\n[[1 0 0]\n [0 1 0]\n [0 0 1]]\n \n[[1 0 0]\n [0 2 0]\n [0 0 3]]\n```\n\n```python\n\n```\n\n### 2. Indexing and Slicing\n\n\nThe indexing and slicing of tensor is the same as numpy, and slicing supports default parameters and ellipsis.\n\nData type of `tf.Variable` supports indexing and slicing to modify values of certain elements.\n\nFor referencing a continuous portion of a tensor, `tf.slice` is recommended.\n\nOn the other hand, for the irregular slicing shape, `tf.gather`, `tf.gather_nd`, `tf.boolean_mask` are recommended.\n\nThe method `tf.boolean_mask` is powerful, it functions as both `tf.gather` and `tf.gather_nd`, and supports boolean indexing.\n\nFor the purpose of creating a new tensor through modifying certain elements in an existing tensor, `tf.where` and `tf.scatter_nd` can be used.\n\n```python\ntf.random.set_seed(3)\nt = tf.random.uniform([5,5],minval=0,maxval=10,dtype=tf.int32)\ntf.print(t)\n```\n\n```\n[[4 7 4 2 9]\n [9 1 2 4 7]\n [7 2 7 4 0]\n [9 6 9 7 2]\n [3 7 0 0 3]]\n```\n\n```python\n# Row 0\ntf.print(t[0])\n```\n\n```\n[4 7 4 2 9]\n```\n\n```python\n# Last row\ntf.print(t[-1])\n```\n\n```\n[3 7 0 0 3]\n```\n\n```python\n# Row 1 Column 3\ntf.print(t[1,3])\ntf.print(t[1][3])\n```\n\n```\n4\n4\n```\n\n```python\n# From row 1 to row 3\ntf.print(t[1:4,:])\ntf.print(tf.slice(t,[1,0],[3,5])) #tf.slice(input,begin_vector,size_vector)\n```\n\n```\n[[9 1 2 4 7]\n [7 2 7 4 0]\n [9 6 9 7 2]]\n[[9 1 2 4 7]\n [7 2 7 4 0]\n [9 6 9 7 2]]\n```\n\n```python\n# From row 1 to the last row, and from column 0 to the last but one with an increment of 2\ntf.print(t[1:4,:4:2])\n```\n\n```\n[[9 2]\n [7 7]\n [9 9]]\n```\n\n```python\n# Variable supports modifying elements through indexing and slicing\nx = tf.Variable([[1,2],[3,4]],dtype = tf.float32)\nx[1,:].assign(tf.constant([0.0,0.0]))\ntf.print(x)\n```\n\n```\n[[1 2]\n [0 0]]\n```\n\n```python\na = tf.random.uniform([3,3,3],minval=0,maxval=10,dtype=tf.int32)\ntf.print(a)\n```\n\n```\n[[[7 3 9]\n  [9 0 7]\n  [9 6 7]]\n\n [[1 3 3]\n  [0 8 1]\n  [3 1 0]]\n\n [[4 0 6]\n  [6 2 2]\n  [7 9 5]]]\n```\n\n```python\n# Ellipsis represents multiple colons\ntf.print(a[...,1])\n# This is equal to\ntf.print(a[:,:,1])\n```\n\n```\n[[3 0 6]\n [3 8 1]\n [0 2 9]]\n[[3 0 6]\n [3 8 1]\n [0 2 9]]\n```\n\n\nThe examples above are regular slicing; for irregular slicing, `tf.gather`, `tf.gather_nd`, `tf.boolean_mask` can be used.\n\nHere is an example of student's grade records. There are 4 classes, 10 students in each class, and 7 courses for each student, which could be represented as a tensor with a dimension of 4×10×7.\n\n```python\nscores = tf.random.uniform((4,10,7),minval=0,maxval=100,dtype=tf.int32)\ntf.print(scores)\n```\n\n```\n[[[52 82 66 ... 17 86 14]\n  [8 36 94 ... 13 78 41]\n  [77 53 51 ... 22 91 56]\n  ...\n  [11 19 26 ... 89 86 68]\n  [60 72 0 ... 11 26 15]\n  [24 99 38 ... 97 44 74]]\n\n [[79 73 73 ... 35 3 81]\n  [83 36 31 ... 75 38 85]\n  [54 26 67 ... 60 68 98]\n  ...\n  [20 5 18 ... 32 45 3]\n  [72 52 81 ... 88 41 20]\n  [0 21 89 ... 53 10 90]]\n\n [[52 80 22 ... 29 25 60]\n  [78 71 54 ... 43 98 81]\n  [21 66 53 ... 97 75 77]\n  ...\n  [6 74 3 ... 53 65 43]\n  [98 36 72 ... 33 36 81]\n  [61 78 70 ... 7 59 21]]\n\n [[56 57 45 ... 23 15 3]\n  [35 8 82 ... 11 59 97]\n  [44 6 99 ... 81 60 27]\n  ...\n  [76 26 35 ... 51 8 17]\n  [33 52 53 ... 78 37 31]\n  [71 27 44 ... 0 52 16]]]\n```\n\n```python\n# Extract all the grades of the 0th, 5th and 9th students in each class.\np = tf.gather(scores,[0,5,9],axis=1)\ntf.print(p)\n```\n\n```\n[[[52 82 66 ... 17 86 14]\n  [24 80 70 ... 72 63 96]\n  [24 99 38 ... 97 44 74]]\n\n [[79 73 73 ... 35 3 81]\n  [46 10 94 ... 23 18 92]\n  [0 21 89 ... 53 10 90]]\n\n [[52 80 22 ... 29 25 60]\n  [19 12 23 ... 87 86 25]\n  [61 78 70 ... 7 59 21]]\n\n [[56 57 45 ... 23 15 3]\n  [6 41 79 ... 97 43 13]\n  [71 27 44 ... 0 52 16]]]\n```\n\n```python\n# Extract the grades of the 1st, 3rd and 6th courses of the 0th, 5th and 9th students in each class.\nq = tf.gather(tf.gather(scores,[0,5,9],axis=1),[1,3,6],axis=2)\ntf.print(q)\n```\n\n```\n[[[82 55 14]\n  [80 46 96]\n  [99 58 74]]\n\n [[73 48 81]\n  [10 38 92]\n  [21 86 90]]\n\n [[80 57 60]\n  [12 34 25]\n  [78 71 21]]\n\n [[57 75 3]\n  [41 47 13]\n  [27 96 16]]]\n```\n\n```python\n# Extract all the grades of the 0th student in the 0th class, the 4th student in the 2nd class, and the 6th student in the 3rd class.\n# Then length of the parameter indices equals to the number of samples, and the each element of indices is the coordinate of each sample.\ns = tf.gather_nd(scores,indices = [(0,0),(2,4),(3,6)])\ns\n```\n\n```\n<tf.Tensor: shape=(3, 7), dtype=int32, numpy=\narray([[52, 82, 66, 55, 17, 86, 14],\n       [99, 94, 46, 70,  1, 63, 41],\n       [46, 83, 70, 80, 90, 85, 17]], dtype=int32)>\n```\n\n\nThe function of `tf.gather` and `tf.gather_nd` as shown above could be achieved through `tf.boolean_mask`.\n\n```python\n# Extract all the grades of the 0th, 5th and 9th students in each class.\np = tf.boolean_mask(scores,[True,False,False,False,False,\n                            True,False,False,False,True],axis=1)\ntf.print(p)\n```\n\n```\n[[[52 82 66 ... 17 86 14]\n  [24 80 70 ... 72 63 96]\n  [24 99 38 ... 97 44 74]]\n\n [[79 73 73 ... 35 3 81]\n  [46 10 94 ... 23 18 92]\n  [0 21 89 ... 53 10 90]]\n\n [[52 80 22 ... 29 25 60]\n  [19 12 23 ... 87 86 25]\n  [61 78 70 ... 7 59 21]]\n\n [[56 57 45 ... 23 15 3]\n  [6 41 79 ... 97 43 13]\n  [71 27 44 ... 0 52 16]]]\n```\n\n```python\n# Extract all the grades of the 0th student in the 0th class, the 4th student in the 2nd class, and the 6th student in the 3rd class.\ns = tf.boolean_mask(scores,\n    [[True,False,False,False,False,False,False,False,False,False],\n     [False,False,False,False,False,False,False,False,False,False],\n     [False,False,False,False,True,False,False,False,False,False],\n     [False,False,False,False,False,False,True,False,False,False]])\ntf.print(s)\n```\n\n```\n[[52 82 66 ... 17 86 14]\n [99 94 46 ... 1 63 41]\n [46 83 70 ... 90 85 17]]\n```\n\n```python\n# Boolean indexing using tf.boolean_mask\n\n# Find all elements that are less than 0 in the matrix\nc = tf.constant([[-1,1,-1],[2,2,-2],[3,-3,3]],dtype=tf.float32)\ntf.print(c,\"\\n\")\n\ntf.print(tf.boolean_mask(c,c<0),\"\\n\") \ntf.print(c[c<0]) # This is the syntactic sugar of boolean_mask for boolean indexing.\n```\n\n```\n[[-1 1 -1]\n [2 2 -2]\n [3 -3 3]] \n\n[-1 -1 -2 -3] \n\n[-1 -1 -2 -3]\n```\n\n```python\n\n```\n\nThe methods shown above are able to extract part of the elements in the tensor, but are not able to create new tensors through modification of these elements.\n\nThe method `tf.where` and `tf.scatter_nd` should be used for this purpose.\n\n`tf.where` is the tensor version of `if`; on the other hand, this method is able to find the coordinate of all the elements that statisfy certain conditions.\n\n`tf.scatter_nd` works in an opposite way to the method `tf.gather_nd`. The latter collects the elements according to the given coordinate, while the former inserts values on the given positions in an all-zero tensor with a known shape.\n\n```python\n# Find elements that are less than 0, create a new tensor by replacing these elements with np.nan.\n# tf.where is similar to np.where, which is the \"if\" for the tensors\n\nc = tf.constant([[-1,1,-1],[2,2,-2],[3,-3,3]],dtype=tf.float32)\nd = tf.where(c<0,tf.fill(c.shape,np.nan),c) \nd\n```\n\n```\n<tf.Tensor: shape=(3, 3), dtype=float32, numpy=\narray([[nan,  1., nan],\n       [ 2.,  2., nan],\n       [ 3., nan,  3.]], dtype=float32)>\n```\n\n```python\n\n```\n\n```python\n# The method where returns all the coordinates that satisfy the condition if there is only one argument\nindices = tf.where(c<0)\nindices\n```\n\n```\n<tf.Tensor: shape=(4, 2), dtype=int64, numpy=\narray([[0, 0],\n       [0, 2],\n       [1, 2],\n       [2, 1]])>\n```\n\n```python\n# Create a new tensor by replacing the value of two tensor elements located at [0,0] [2,1] as 0.\nd = c - tf.scatter_nd([[0,0],[2,1]],[c[0,0],c[2,1]],c.shape)\nd\n```\n\n```\n<tf.Tensor: shape=(3, 3), dtype=float32, numpy=\narray([[ 0.,  1., -1.],\n       [ 2.,  2., -2.],\n       [ 3.,  0.,  3.]], dtype=float32)>\n\n```\n\n```python\n# The method scatter_nd functions inversly to gather_nd\n# This method can be used to insert values on the given positions in an all-zero tensor with a known shape.\nindices = tf.where(c<0)\ntf.scatter_nd(indices,tf.gather_nd(c,indices),c.shape)\n```\n\n```\n<tf.Tensor: shape=(3, 3), dtype=float32, numpy=\narray([[-1.,  0., -1.],\n       [ 0.,  0., -2.],\n       [ 0., -3.,  0.]], dtype=float32)>\n```\n\n```python\n\n```\n\n### 3. Dimension Transform\n\n\nThe functions that are related to dimension transform include `tf.reshape`, `tf.squeeze`, `tf.expand_dims`, `tf.transpose`.\n\n`tf.reshape` is used to alter the shape of the tensor.\n\n`tf.squeeze` is used to reduce the number of dimensions.\n\n`tf.expand_dims` is used to increase the number of dimensions.\n\n`tf.transpose` is used to exchange the order of the dimensions.\n\n\n\ntf.reshape changes the shape of the tensor, but will not change the order of elements stored in the memory, thus this operation is extremely fast and reversible.\n\n```python\na = tf.random.uniform(shape=[1,3,3,2],\n                      minval=0,maxval=255,dtype=tf.int32)\ntf.print(a.shape)\ntf.print(a)\n```\n\n```\nTensorShape([1, 3, 3, 2])\n[[[[135 178]\n   [26 116]\n   [29 224]]\n\n  [[179 219]\n   [153 209]\n   [111 215]]\n\n  [[39 7]\n   [138 129]\n   [59 205]]]]\n```\n\n```python\n# Reshape into (3,6)\nb = tf.reshape(a,[3,6])\ntf.print(b.shape)\ntf.print(b)\n```\n\n```\nTensorShape([3, 6])\n[[135 178 26 116 29 224]\n [179 219 153 209 111 215]\n [39 7 138 129 59 205]]\n```\n\n\n\n\n```python\n# Reshape back to (1,3,3,2)\nc = tf.reshape(b,[1,3,3,2])\ntf.print(c)\n```\n\n```\n[[[[135 178]\n   [26 116]\n   [29 224]]\n\n  [[179 219]\n   [153 209]\n   [111 215]]\n\n  [[39 7]\n   [138 129]\n   [59 205]]]]\n```\n\n```python\n\n```\n\nWhen there is only one element on a certain dimension, `tf.squeeze` eliminates this dimension.\n\nIt won't change the order of the stored elements in the memory, which is similar to `tf.reshape`.\n\nThe elements in a tensor is stored linearly, usually the adjacent elements in the same dimension use adjacent physical addresses.\n\n```python\ns = tf.squeeze(a)\ntf.print(s.shape)\ntf.print(s)\n```\n\n```\nTensorShape([3, 3, 2])\n[[[135 178]\n  [26 116]\n  [29 224]]\n\n [[179 219]\n  [153 209]\n  [111 215]]\n\n [[39 7]\n  [138 129]\n  [59 205]]]\n```\n\n```python\nd = tf.expand_dims(s,axis=0) # Insert an extra dimension to the 0th dim with length = 1\nd\n```\n\n```\n<tf.Tensor: shape=(1, 3, 3, 2), dtype=int32, numpy=\narray([[[[135, 178],\n         [ 26, 116],\n         [ 29, 224]],\n\n        [[179, 219],\n         [153, 209],\n         [111, 215]],\n\n        [[ 39,   7],\n         [138, 129],\n         [ 59, 205]]]], dtype=int32)>\n```\n\n\n`tf.transpose` swaps the dimensions in the tensor; unlike `tf.shape`, it will change the order of the elements in the memory.\n\n`tf.transpose` is usually used for converting image format of storage.\n\n```python\n# Batch,Height,Width,Channel\na = tf.random.uniform(shape=[100,600,600,4],minval=0,maxval=255,dtype=tf.int32)\ntf.print(a.shape)\n\n# Transform to the order as Channel,Height,Width,Batch\ns= tf.transpose(a,perm=[3,1,2,0])\ntf.print(s.shape)\n```\n\n```\nTensorShape([100, 600, 600, 4])\nTensorShape([4, 600, 600, 100])\n\n```\n\n```python\n\n```\n\n### 4. Combining and Splitting\n\n\nWe can use `tf.concat` and `tf.stack` methods to combine multiple tensors, and use `tf.split` to split a tensor into multiple ones, which are similar as those in numpy.\n\n`tf.concat` is slightly different to `tf.stack`: `tf.concat` is concatination and does not increase the number of dimensions, while `tf.stack` is stacking and increases the number of dimensions.\n\n```python\na = tf.constant([[1.0,2.0],[3.0,4.0]])\nb = tf.constant([[5.0,6.0],[7.0,8.0]])\nc = tf.constant([[9.0,10.0],[11.0,12.0]])\n\ntf.concat([a,b,c],axis = 0)\n```\n\n```\n<tf.Tensor: shape=(6, 2), dtype=float32, numpy=\narray([[ 1.,  2.],\n       [ 3.,  4.],\n       [ 5.,  6.],\n       [ 7.,  8.],\n       [ 9., 10.],\n       [11., 12.]], dtype=float32)>\n```\n\n```python\ntf.concat([a,b,c],axis = 1)\n```\n\n```\n<tf.Tensor: shape=(2, 6), dtype=float32, numpy=\narray([[ 1.,  2.,  5.,  6.,  9., 10.],\n       [ 3.,  4.,  7.,  8., 11., 12.]], dtype=float32)>\n```\n\n```python\ntf.stack([a,b,c])\n```\n\n```\n<tf.Tensor: shape=(3, 2, 2), dtype=float32, numpy=\narray([[[ 1.,  2.],\n        [ 3.,  4.]],\n\n       [[ 5.,  6.],\n        [ 7.,  8.]],\n\n       [[ 9., 10.],\n        [11., 12.]]], dtype=float32)>\n```\n\n```python\ntf.stack([a,b,c],axis=1)\n```\n\n```\n<tf.Tensor: shape=(2, 3, 2), dtype=float32, numpy=\narray([[[ 1.,  2.],\n        [ 5.,  6.],\n        [ 9., 10.]],\n\n       [[ 3.,  4.],\n        [ 7.,  8.],\n        [11., 12.]]], dtype=float32)>\n```\n\n```python\na = tf.constant([[1.0,2.0],[3.0,4.0]])\nb = tf.constant([[5.0,6.0],[7.0,8.0]])\nc = tf.constant([[9.0,10.0],[11.0,12.0]])\n\nc = tf.concat([a,b,c],axis = 0)\n```\n\n`tf.split` is the inverse of `tf.concat`. It allows even splitting with given number of portions, or uneven splitting with given size of each portion.\n\n```python\n#tf.split(value,num_or_size_splits,axis)\ntf.split(c,3,axis = 0)  # Even splitting with given number of portions\n```\n\n```\n[<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\n array([[1., 2.],\n        [3., 4.]], dtype=float32)>,\n <tf.Tensor: shape=(2, 2), dtype=float32, numpy=\n array([[5., 6.],\n        [7., 8.]], dtype=float32)>,\n <tf.Tensor: shape=(2, 2), dtype=float32, numpy=\n array([[ 9., 10.],\n        [11., 12.]], dtype=float32)>]\n```\n\n```python\ntf.split(c,[2,2,2],axis = 0) # Splitting with given size of each portion.\n```\n\n```\n[<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\n array([[1., 2.],\n        [3., 4.]], dtype=float32)>,\n <tf.Tensor: shape=(2, 2), dtype=float32, numpy=\n array([[5., 6.],\n        [7., 8.]], dtype=float32)>,\n <tf.Tensor: shape=(2, 2), dtype=float32, numpy=\n array([[ 9., 10.],\n        [11., 12.]], dtype=float32)>]\n```\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter4-2.md",
    "content": "# 4-2 Mathematical Operations of the Tensor\n\nTensor operation includes structural operation and mathematical operation.\n\nThe structural operation includes tensor creation, index slicing, dimension transform, combining & splitting, etc.\n\nThe mathematical operation includes scalar operation, vector operation, and matrix operation. We will also introduce the broadcasting mechanism of tensor operation.\n\nThis section is about the mathematical operation of tensor.\n\n```python\n\n```\n\n### 1. Scalar Operation\n\n\nThe mathematical operation includes scalar operation, vector operation, and matrix operation.\n\nThe scalar operation includes add, subtract, multiply, divide, power, and trigonometric functions, exponential functions, log functions, and logical comparison, etc.\n\nThe scalar operation is an element-by-element operation.\n\nSome of the scalar operators are overloaded from the normal mathematical operators and support broadcasting similar as numpy.\n\nMost scalar operators are under the module `tf.math`.\n\n```python\nimport tensorflow as tf \nimport numpy as np \n```\n\n```python\na = tf.constant([[1.0,2],[-3,4.0]])\nb = tf.constant([[5.0,6],[7.0,8.0]])\na+b  # Operator overloading\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[ 6.,  8.],\n       [ 4., 12.]], dtype=float32)>\n```\n\n```python\na-b \n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[ -4.,  -4.],\n       [-10.,  -4.]], dtype=float32)>\n```\n\n```python\na*b \n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[  5.,  12.],\n       [-21.,  32.]], dtype=float32)>\n```\n\n```python\na/b\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[ 0.2       ,  0.33333334],\n       [-0.42857143,  0.5       ]], dtype=float32)>\n```\n\n```python\na**2\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[ 1.,  4.],\n       [ 9., 16.]], dtype=float32)>\n```\n\n```python\na**(0.5)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[1.       , 1.4142135],\n       [      nan, 2.       ]], dtype=float32)>\n```\n\n```python\na%3 # Reloading of mod operator, identical to: m = tf.math.mod(a,3)\n```\n\n```\n<tf.Tensor: shape=(3,), dtype=int32, numpy=array([1, 2, 0], dtype=int32)>\n```\n\n```python\na//3  # Divid and round towards negative infinity\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[ 0.,  0.],\n       [-1.,  1.]], dtype=float32)>\n```\n\n```python\n(a>=2)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=bool, numpy=\narray([[False,  True],\n       [False,  True]])>\n```\n\n```python\n(a>=2)&(a<=3)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=bool, numpy=\narray([[False,  True],\n       [False, False]])>\n```\n\n```python\n(a>=2)|(a<=3)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=bool, numpy=\narray([[ True,  True],\n       [ True,  True]])>\n```\n\n```python\na==5 #tf.equal(a,5)\n```\n\n```\n<tf.Tensor: shape=(3,), dtype=bool, numpy=array([False, False, False])>\n```\n\n```python\ntf.sqrt(a)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[1.       , 1.4142135],\n       [      nan, 2.       ]], dtype=float32)>\n```\n\n```python\na = tf.constant([1.0,8.0])\nb = tf.constant([5.0,6.0])\nc = tf.constant([6.0,7.0])\ntf.add_n([a,b,c])\n```\n\n```\n<tf.Tensor: shape=(2,), dtype=float32, numpy=array([12., 21.], dtype=float32)>\n```\n\n```python\ntf.print(tf.maximum(a,b))\n```\n\n```\n[5 8]\n```\n\n```python\ntf.print(tf.minimum(a,b))\n```\n\n```\n[1 6]\n```\n\n```python\n# clip value\nx = tf.constant([0.9,-0.8,100.0,-20.0,0.7])\ny = tf.clip_by_value(x,clip_value_min=-1,clip_value_max=1)\nz = tf.clip_by_norm(x,clip_norm = 3)\ntf.print(y)\ntf.print(z)\n```\n\n```\n[0.9 -0.8 1 -1 0.7]\n[0.0264732055 -0.0235317405 2.94146752 -0.588293493 0.0205902718]\n```\n\n\n### 2. Vector Operation\n\n\nVector operation manipulate along one specific axis. It projects one vector to a scalar or another vector.\nMany names of vector operator starts with \"reduce\".\n\n```python\n# Vector \"reduce\"\na = tf.range(1,10)\ntf.print(tf.reduce_sum(a))\ntf.print(tf.reduce_mean(a))\ntf.print(tf.reduce_max(a))\ntf.print(tf.reduce_min(a))\ntf.print(tf.reduce_prod(a))\n```\n\n```\n45\n5\n9\n1\n362880\n```\n\n```python\n# \"reduce\" along the specific dimension\nb = tf.reshape(a,(3,3))\ntf.print(tf.reduce_sum(b, axis=1, keepdims=True))\ntf.print(tf.reduce_sum(b, axis=0, keepdims=True))\n```\n\n```\n[[6]\n [15]\n [24]]\n[[12 15 18]]\n```\n\n```python\n# \"reduce\" for bool type\np = tf.constant([True,False,False])\nq = tf.constant([False,False,True])\ntf.print(tf.reduce_all(p))\ntf.print(tf.reduce_any(q))\n```\n\n```\n0\n1\n```\n\n```python\n# Implement tf.reduce_sum using tf.foldr\ns = tf.foldr(lambda a,b:a+b,tf.range(10)) \ntf.print(s)\n```\n\n```\n45\n```\n\n```python\n# Cumulative sum\na = tf.range(1,10)\ntf.print(tf.math.cumsum(a))\ntf.print(tf.math.cumprod(a))\n```\n\n```\n[1 3 6 ... 28 36 45]\n[1 2 6 ... 5040 40320 362880]\n```\n\n```python\n# Index of max and min values in the arguments\na = tf.range(1,10)\ntf.print(tf.argmax(a))\ntf.print(tf.argmin(a))\n```\n\n```\n8\n0\n```\n\n```python\n# Sort the elements in the tensor using tf.math.top_k\na = tf.constant([1,3,7,5,4,8])\n\nvalues,indices = tf.math.top_k(a,3,sorted=True)\ntf.print(values)\ntf.print(indices)\n\n# tf.math.top_k is able to implement KNN algorithm in TensorFlow\n```\n\n```\n[8 7 5]\n[5 2 3]\n```\n\n```python\n\n```\n\n### 3. Matrix Operation\n\n\nMatrix must be two-dimensional. Something such as `tf.constant([1,2,3])` is not a matrix.\n\nMatrix operation includes matrix multiply, transpose, inverse, trace, norm, determinant, eigenvalue, decomposition, etc.\n\nMost of the matrix operations are in the `tf.linalg` except for some popular operations.\n\n```python\n# Matrix multiplication\na = tf.constant([[1,2],[3,4]])\nb = tf.constant([[2,0],[0,2]])\na@b  # Identical to tf.matmul(a,b)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=int32, numpy=\narray([[2, 4],\n       [6, 8]], dtype=int32)>\n```\n\n```python\n# Matrix transpose\na = tf.constant([[1.0,2],[3,4]])\ntf.transpose(a)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[1., 3.],\n       [2., 4.]], dtype=float32)>\n```\n\n```python\n# Matrix inverse, must be in type of tf.float32 or tf.double\na = tf.constant([[1.0,2],[3.0,4]],dtype = tf.float32)\ntf.linalg.inv(a)\n```\n\n```\n<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\narray([[-2.0000002 ,  1.0000001 ],\n       [ 1.5000001 , -0.50000006]], dtype=float32)>\n```\n\n```python\n# Matrix trace\na = tf.constant([[1.0,2],[3,4]])\ntf.linalg.trace(a)\n```\n\n```\n<tf.Tensor: shape=(), dtype=float32, numpy=5.0>\n```\n\n```python\n# Matrix norm\na = tf.constant([[1.0,2],[3,4]])\ntf.linalg.norm(a)\n```\n\n```\n<tf.Tensor: shape=(), dtype=float32, numpy=5.477226>\n```\n\n```python\n# Determinant\na = tf.constant([[1.0,2],[3,4]])\ntf.linalg.det(a)\n```\n\n```\n<tf.Tensor: shape=(), dtype=float32, numpy=-2.0>\n```\n\n```python\n# Eigenvalues\na = tf.constant([[1.0,2],[5,4]])\ntf.linalg.eigvals(a)\n```\n\n```\n<tf.Tensor: shape=(2,), dtype=complex64, numpy=array([-0.99999994+0.j,  5.9999995 +0.j], dtype=complex64)>\n```\n\n```python\n# QR decomposition\na  = tf.constant([[1.0,2.0],[3.0,4.0]],dtype = tf.float32)\nq,r = tf.linalg.qr(a)\ntf.print(q)\ntf.print(r)\ntf.print(q@r)\n```\n\n```\n[[-0.316227794 -0.948683321]\n [-0.948683321 0.316227734]]\n[[-3.1622777 -4.4271884]\n [0 -0.632455349]]\n[[1.00000012 1.99999976]\n [3 4]]\n```\n\n```python\n# SVD decomposition\na  = tf.constant([[1.0,2.0],[3.0,4.0],[5.0,6.0]], dtype = tf.float32)\ns,u,v = tf.linalg.svd(a)\ntf.print(u,\"\\n\")\ntf.print(s,\"\\n\")\ntf.print(v,\"\\n\")\ntf.print(u@tf.linalg.diag(s)@tf.transpose(v))\n\n# SVD decomposition is used for dimension reduction in PCA\n\n```\n\n```\n[[0.229847744 -0.88346082]\n [0.524744868 -0.240782902]\n [0.819642067 0.401896209]] \n\n[9.52551842 0.51429987] \n\n[[0.619629562 0.784894466]\n [0.784894466 -0.619629562]] \n\n[[1.00000119 2]\n [3.00000095 4.00000048]\n [5.00000143 6.00000095]]\n```\n\n```python\n\n```\n\n```python\n\n```\n\n### 4. Broadcasting Mechanism\n\n\nThe rules of broadcasting in TensorFlow is the same as numpy:\n\n* 1. If two tensors are different in rank, expand the tensor with lower rank.\n* 2. If two tensors has the same length along certain dimension, or one of the tensors has length 1 along certain dimension, then these two tensors are compatible along this dimension.\n* 3. Two tensors that are compatible along all dimensions are able to broadcast.\n* 4. After broadcasting, the length of each dimension equals to the larger one among two tensors.\n* 5. When a tensor has length = 1 along any dimension while the length of corresponding dimension of the other tensor > 1, in the broadcast result, this only element is jusk like been duplicated along this dimension.\n\n`tf.broadcast_to` expand the dimension of tensor explicitly.\n\n```python\na = tf.constant([1,2,3])\nb = tf.constant([[0,0,0],[1,1,1],[2,2,2]])\nb + a  # Identical to b + tf.broadcast_to(a,b.shape)\n```\n\n```\n<tf.Tensor: shape=(3, 3), dtype=int32, numpy=\narray([[1, 2, 3],\n       [2, 3, 4],\n       [3, 4, 5]], dtype=int32)>\n```\n\n```python\ntf.broadcast_to(a,b.shape)\n```\n\n```\n<tf.Tensor: shape=(3, 3), dtype=int32, numpy=\narray([[1, 2, 3],\n       [1, 2, 3],\n       [1, 2, 3]], dtype=int32)>\n```\n\n```python\n# Shape after broadcasting using static shape, requires arguments in TensorShape type\ntf.broadcast_static_shape(a.shape,b.shape)\n```\n\n```\nTensorShape([3, 3])\n```\n\n```python\n# Shape after broadcasting using dynamic shape, requires arguments in Tensor type\nc = tf.constant([1,2,3])\nd = tf.constant([[1],[2],[3]])\ntf.broadcast_dynamic_shape(tf.shape(c),tf.shape(d))\n```\n\n```\n<tf.Tensor: shape=(2,), dtype=int32, numpy=array([3, 3], dtype=int32)>\n```\n\n```python\n# Results of broadcasting\nc+d # Identical to tf.broadcast_to(c,[3,3]) + tf.broadcast_to(d,[3,3])\n```\n\n```\n<tf.Tensor: shape=(3, 3), dtype=int32, numpy=\narray([[2, 3, 4],\n       [3, 4, 5],\n       [4, 5, 6]], dtype=int32)>\n```\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n\n```python\n\n```\n"
  },
  {
    "path": "english/Chapter4-3.md",
    "content": "# 4-3 Rules of Using the AutoGraph\n\nThere are three ways of constructing graph: static, dynamic and Autograph.\n\nTensorFlow 2.X uses dynamic graph and Autograph.\n\nDynamic graph is easier for debugging with higher encoding efficiency, but with lower efficiency in execution.\n\nStatic graph has high efficiency in execution, but more difficult for debugging.\n\nAutograph mechanism transforms dynamic graph into static graph, making allowance for both executing and encoding efficiencies.\n\nThere are certain rules for the code that is able to converted by Autograph, or it could result in failure or unexpected results.\n\nWe are going to introduce the coding rules of Autograph and its mechanism of converting into static graph, together with introduction about how to construct Autograph using `tf.Module`.\n\nThis section introduce the coding rules of using Autograph. We will introduce the mechanisms of Autograph in next section and explain the logic behind the rules there.\n\n<!-- #region -->\n### 1. Summarization of the Coding Rules of Autograph\n\n\n* 1. We should use the TensorFlow-defined functions to be decorated by `@tf.function` as much as possible, instead of those Python functions. For instance, `tf.print` should be used instead of `print`; `tf.range` should be used instead of `range`; `tf.constant(True)` should be used instead of `True`.\n\n* 2. Avoid defining `tf.Variable` inside the decorator `@tf.function`.\n\n* 3. Functions that are decorated by `@tf.function` cannot modify the struct data types variables outside the function such as Python list, dictionary, etc.\n\n<!-- #endregion -->\n```python\n\n```\n\n### 2. Explanations to the Autograph Coding Rules\n\n\n **2.1  We should use the TensorFlow-defined functions to be decorated by `@tf.function` as much as possible, instead of those Python functions.**\n\n```python\nimport numpy as np\nimport tensorflow as tf\n\n@tf.function\ndef np_random():\n    a = np.random.randn(3,3)\n    tf.print(a)\n    \n@tf.function\ndef tf_random():\n    a = tf.random.normal((3,3))\n    tf.print(a)\n```\n\n```python\n# Same results after each execution of np_random\nnp_random()\nnp_random()\n```\n\n```\narray([[ 0.22619201, -0.4550123 , -0.42587565],\n       [ 0.05429906,  0.2312667 , -1.44819738],\n       [ 0.36571796,  1.45578986, -1.05348983]])\narray([[ 0.22619201, -0.4550123 , -0.42587565],\n       [ 0.05429906,  0.2312667 , -1.44819738],\n       [ 0.36571796,  1.45578986, -1.05348983]])\n```\n\n```python\n# New random numbers are generated after each execution of tf_random\ntf_random()\ntf_random()\n```\n\n```\n[[-1.38956189 -0.394843668 0.420657277]\n [2.87235498 -1.33740318 -0.533843279]\n [0.918233037 0.118598573 -0.399486482]]\n[[-0.858178258 1.67509317 0.511889517]\n [-0.545829177 -2.20118237 -0.968222201]\n [0.733958483 -0.61904633 0.77440238]]\n```\n\n```python\n\n```\n\n**2.2 Avoid defining `tf.Variable` inside the decorator `@tf.function`.**\n\n```python\n# Avoid defining tf.Variable inside the decorator @tf.function.\n\nx = tf.Variable(1.0,dtype=tf.float32)\n@tf.function\ndef outer_var():\n    x.assign_add(1.0)\n    tf.print(x)\n    return(x)\n\nouter_var() \nouter_var()\n\n```\n\n```python\n@tf.function\ndef inner_var():\n    x = tf.Variable(1.0,dtype = tf.float32)\n    x.assign_add(1.0)\n    tf.print(x)\n    return(x)\n\n# Error after execution\n#inner_var()\n#inner_var()\n\n```\n\n```\n---------------------------------------------------------------------------\nValueError                                Traceback (most recent call last)\n<ipython-input-12-c95a7c3c1ddd> in <module>\n      7 \n      8 # Error after execution\n----> 9 inner_var()\n     10 inner_var()\n\n~/anaconda3/lib/python3.7/site-packages/tensorflow_core/python/eager/def_function.py in __call__(self, *args, **kwds)\n    566         xla_context.Exit()\n    567     else:\n--> 568       result = self._call(*args, **kwds)\n    569 \n    570     if tracing_count == self._get_tracing_count():\n......\nValueError: tf.function-decorated function tried to create variables on non-first call.\n```\n\n\n**2.3  Functions that are decorated by `@tf.function` cannot modify the struct data types variables outside the function such as Python list, dictionary, etc.**\n\n```python\ntensor_list = []\n\n#@tf.function # Autograph will result in something unexpected if executing this line\ndef append_tensor(x):\n    tensor_list.append(x)\n    return tensor_list\n\nappend_tensor(tf.constant(5.0))\nappend_tensor(tf.constant(6.0))\nprint(tensor_list)\n\n```\n\n```\n[<tf.Tensor: shape=(), dtype=float32, numpy=5.0>, <tf.Tensor: shape=(), dtype=float32, numpy=6.0>]\n```\n\n```python\ntensor_list = []\n\n@tf.function # Autograph will result in something unexpected if executing this line\ndef append_tensor(x):\n    tensor_list.append(x)\n    return tensor_list\n\n\nappend_tensor(tf.constant(5.0))\nappend_tensor(tf.constant(6.0))\nprint(tensor_list)\n\n```\n\n```\n[<tf.Tensor 'x:0' shape=() dtype=float32>]\n```\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter4-4.md",
    "content": "# 4-4 Mechanisms of the AutoGraph\n\nThere are three ways of constructing graph: static, dynamic and Autograph.\n\nTensorFlow 2.X uses dynamic graph and Autograph.\n\nDynamic graph is easier for debugging with higher encoding efficiency, but with lower efficiency in execution.\n\nStatic graph has high efficiency in execution, but more difficult for debugging.\n\nAutograph mechanism transforms dynamic graph into static graph, making allowance for both executing and encoding efficiencies.\n\nThere are certain rules for the code that is able to converted by Autograph, or it could result in failure or unexpected results.\n\nWe are going to introduce the coding rules of Autograph and its mechanism of converting into static graph, together with introduction about how to construct Autograph using `tf.Module`.\n\nThe coding rules of Autograph was introduced in the last section. Here we introduce the mechanisms of Autograph.\n\n\n\n### 1. Mechanisms of Autograph\n\n\n**What happens when we define a function using decorator `@tf.function` ?**\n\nConsider the following code.\n\n```python\nimport tensorflow as tf\nimport numpy as np \n\n@tf.function(autograph=True)\ndef myadd(a,b):\n    for i in tf.range(3):\n        tf.print(i)\n    c = a+b\n    print(\"tracing\")\n    return c\n```\n\nNothing happens except a function signature is recorded in the stack of Python.\n\n**What happens when this function decorated by `@tf.function` is called?**\n\nConsider the following code.\n\n```python\nmyadd(tf.constant(\"hello\"),tf.constant(\"world\"))\n```\n\n```\ntracing\n0\n1\n2\n```\n\n<!-- #region -->\nThere are two incidents:\n\nFirst, the graph is created.\n\nA static graph is created. The Python code inside this function is executed, the tensor type of each variable is determined, and the operator is added to the graph according to the order of execution. During this period, if the argument autograph=True (default) is setted, convertting of the controlling flow in Python to the one inside TensorFlow graph will happen. The majority of the work are: replacing `if` to `tf.cond` operator; replacing `while` and `for` looping to `tf.while_loop`; when necessary, add `tf.control_dependencies` to specify the dependencies of executing orders.\n\nThis is identical to the following expressions in TensorFlow 1.X:\n\n```python\ng = tf.Graph()\nwith g.as_default():\n    a = tf.placeholder(shape=[],dtype=tf.string)\n    b = tf.placeholder(shape=[],dtype=tf.string)\n    cond = lambda i: i<tf.constant(3)\n    def body(i):\n        tf.print(i)\n        return(i+1)\n    loop = tf.while_loop(cond,body,loop_vars=[0])\n    loop\n    with tf.control_dependencies(loop):\n        c = tf.strings.join([a,b])\n    print(\"tracing\")\n```\n\nThe second incident is the execution of the graph.\n\nThis is identical to the following expressions in TensorFlow 1.X:\n\n```python\nwith tf.Session(graph=g) as sess:\n    sess.run(c,feed_dict={a:tf.constant(\"hello\"),b:tf.constant(\"world\")})\n```\n\nSo the result for the first step comes first: A string \"tracing\" printed by the standard I/O stream of Python.\n\nAnd next is the result of the second step: A string \"1, 2, 3\" printed by the standard I/O stream of TensorFlow.\n\n<!-- #endregion -->\n\n**What is going to happen when we call this function again with the same types of the input arguments?**\n\nConsider the following code.\n\n```python\nmyadd(tf.constant(\"good\"),tf.constant(\"morning\"))\n```\n\n```\n0\n1\n2\n```\n\n\nOnly one thing happens: execution of the graph, which is the second step mentioned above.\n\nSo the string \"traicing\" doesn't appear.\n\n\n**What is going to happen when we call this function again with some different types of the input arguments?**\n\nConsider the following code.\n\n```python\nmyadd(tf.constant(1),tf.constant(2))\n```\n\n```\ntracing\n0\n1\n2\n```\n\n\nSince the data type of the argument has been changed, the previously created graph cannot be used again.\n\nTwo more tasks to be done: create new graph and execute it.\n\nThe result of the first step will be observed again, i.e. a string \"tracing\" printed by the standard I/O stream of Python.\n\nAnd next is the result of the second step: A string \"1, 2, 3\" printed by the standard I/O stream of TensorFlow.\n\n\n**Note: if the data type of the argument is not Tensor in the original definition of this function, then the graph will be re-created each time after calling this function.**\n\nThe demonstrated code below re-creates graph every time, so it is recommended to use Tensor type as the arguments when calling the function decorated by `@tf.function`.\n\n```python\nmyadd(\"hello\",\"world\")\nmyadd(\"good\",\"morning\")\n```\n\n```\ntracing\n0\n1\n2\ntracing\n0\n1\n2\n```\n\n```python\n\n```\n\n```python\n\n```\n\n### 2. Scrutinize the Coding Rules of Autograph Again\n\n\nWe can have a better understanding to the three rules of coding of Autograph after knowing the mechanisms above.\n\n1, We should use the TensorFlow-defined functions to be decorated by `@tf.function` as much as possible, instead of those Python functions. For instance, `tf.print` should be used instead of `print`.\n\nExplanations: Python functions are only used during the stage of creating static graph. The Python functions are not able to be embedded into the static graph, so these Python functions are not calculated during the calling after the graph creation; in contrast, TensorFlow functions are able to be embedded into the graph. Using Python functions is causing unmatched outputs between the \"eager execution\" before the decoration by `@tf.function` and the \"execution of static graph\" after the decoration by `@tf.function`.\n\n2，Avoid defining `tf.Variable` inside the decorator `@tf.function`.\n\nExplanations: The defined `tf.Variable` will be re-created every time when calling the function during the \"eager execution\" stage. However, this re-creation of `tf.Variable` only takes place at the first step, i.e. tracing Python code to create the graph, which is introducing unmatched outputs between the \"eager execution\" before the decoration by `@tf.function` and the \"execution of static graph\" after the decoration by `@tf.function`. In fact, TensorFlow throws error in most of such cases.\n\n3，Functions that are decorated by `@tf.function` cannot modify the variables outside the function with the data types such as Python list, dictionary, etc.\n\nExplanations: Static graph is executed in the TensorFlow kernels, which are compiled from C++ code, thus the list and dictionary in Python are not able to be embedded into the graph. These data types can only be read during the stage of graph creating and cannot be modified during the graph execution.\n\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n\n```python\n\n```\n"
  },
  {
    "path": "english/Chapter4-5.md",
    "content": "# 4-5 AutoGraph and tf.Module\n\n\nThere are three ways of constructing graph: static, dynamic and Autograph.\n\nTensorFlow 2.X uses dynamic graph and Autograph.\n\nDynamic graph is easier for debugging with higher encoding efficiency, but with lower efficiency in execution.\n\nStatic graph has high efficiency in execution, but more difficult for debugging.\n\nAutograph mechanism transforms dynamic graph into static graph, making allowance for both executing and encoding efficiencies.\n\nThere are certain rules for the code that is able to converted by Autograph, or it could result in failure or unexpected results.\n\nThe coding rules and the mechanisms of Autograph were introduced in the last sections.\n\nIn this section, we introduce constructing Autograph using `tf.Module`.\n\n\n\n### 1. Introduction to Autograph and `tf.Module`\n\n\nWe mentioned that the definition of `tf.Variable` should be avoided inside the decorator `@tf.function`.\n\nHowever, it would seem to be a imperfect leaked package if we define `tf.Variable` outside the function, since the function has outside dependency.\n\nOne of the simple solutions is: defining a class and place the definition of `tf.Variable` inside the initial method, and leave the other methods/implementation elsewhere.\n\nAfter such an ingenious operation, it is so naturally as if the chronic constipation was cured by the best laxative.\n\nThe surprise is that TensorFlow providing us a base class `tf.Module` to get the above naturally. What's more, It is supposed to be inherited for constructing child classes to manage variables and other `Module` conveniently. And the most important that it allows us to save model through `tf.saved_model` and achieve cross-platform deployment. What a surprise!\n\nIn fact, `tf.keras.models.Model`, `tf.keras.layers.Layer` are both inherited from `tf.Module`. They provides the management to the variables and the referred sub-modules.\n\n**We are able to develop arbitrary learning model (not only neural network) and implement cross-platform deployment through the packaging provided by `tf.Module` and the low-level APIs in TensorFlow.**\n\n\n### 2. Packaging Autograph Using `tf.Module`\n\n\nWe define a simple function。\n\n```python\nimport tensorflow as tf \nx = tf.Variable(1.0,dtype=tf.float32)\n\n# Use input_signature to limit the signature type of the input tensors with shape and dtype inside the decorator tf.function\n@tf.function(input_signature=[tf.TensorSpec(shape = [], dtype = tf.float32)])    \ndef add_print(a):\n    x.assign_add(a)\n    tf.print(x)\n    return(x)\n```\n\n```python\nadd_print(tf.constant(3.0))\n#add_print(tf.constant(3)) # Error: argument inconsistent with the tensor signature.\n```\n\n```\n4\n```\n\n\nPackage using `tf.Module`.\n\n```python\nclass DemoModule(tf.Module):\n    def __init__(self,init_value = tf.constant(0.0),name=None):\n        super(DemoModule, self).__init__(name=name)\n        with self.name_scope:  # Identical to: with tf.name_scope(\"demo_module\")\n            self.x = tf.Variable(init_value,dtype = tf.float32,trainable=True)\n\n     \n    @tf.function(input_signature=[tf.TensorSpec(shape = [], dtype = tf.float32)])  \n    def addprint(self,a):\n        with self.name_scope:\n            self.x.assign_add(a)\n            tf.print(self.x)\n            return(self.x)\n\n```\n\n```python\n# Execute\ndemo = DemoModule(init_value = tf.constant(1.0))\nresult = demo.addprint(tf.constant(5.0))\n```\n\n```\n6\n```\n\n```python\n# Browse all variables and trainable variables in the module\nprint(demo.variables)\nprint(demo.trainable_variables)\n```\n\n```\n(<tf.Variable 'demo_module/Variable:0' shape=() dtype=float32, numpy=6.0>,)\n(<tf.Variable 'demo_module/Variable:0' shape=() dtype=float32, numpy=6.0>,)\n```\n\n```python\n# Browse all sub-modules\ndemo.submodules\n```\n\n```python\n# Save the model using tf.saved_model and specify the method of cross-platform deployment.\ntf.saved_model.save(demo,\"../data/demo/1\",signatures = {\"serving_default\":demo.addprint})\n```\n\n```python\n# Load the modle\ndemo2 = tf.saved_model.load(\"../data/demo/1\")\ndemo2.addprint(tf.constant(5.0))\n```\n\n```\n11\n```\n\n```python\n# Check the info of the model file. The info in the red rectangulars could be used during the deployment and the cross-platform usage.\n!saved_model_cli show --dir ../data/demo/1 --all\n```\n\n![](../data/查看模型文件信息.jpg)\n\n```python\n\n```\n\nCheck the graph in tensorboard, the module will be added with name `demo_module`, showing the hierarchy of the graph.\n\n```python\nimport datetime\n\n# Creating log\nstamp = datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\nlogdir = '../data/demomodule/%s' % stamp\nwriter = tf.summary.create_file_writer(logdir)\n\n# Start tracing of the Autograph\ntf.summary.trace_on(graph=True, profiler=True) \n\n# Execute the Autograph\ndemo = DemoModule(init_value = tf.constant(0.0))\nresult = demo.addprint(tf.constant(5.0))\n\n# Write the info of the graph into the log\nwith writer.as_default():\n    tf.summary.trace_export(\n        name=\"demomodule\",\n        step=0,\n        profiler_outdir=logdir)\n    \n```\n\n```python\n\n```\n\n```python\n# Magic command to launch tensorboard in jupyter\n%reload_ext tensorboard\n```\n\n```python\nfrom tensorboard import notebook\nnotebook.list() \n```\n\n```python\nnotebook.start(\"--logdir ../data/demomodule/\")\n```\n\n![](../data/demomodule的计算图结构.jpg)\n\n```python\n\n```\n\nBesides using the child class of `tf.Module`, it is also possible to package through adding attribute to `tf.Module`.\n\n```python\nmymodule = tf.Module()\nmymodule.x = tf.Variable(0.0)\n\n@tf.function(input_signature=[tf.TensorSpec(shape = [], dtype = tf.float32)])  \ndef addprint(a):\n    mymodule.x.assign_add(a)\n    tf.print(mymodule.x)\n    return (mymodule.x)\n\nmymodule.addprint = addprint\n```\n\n```python\nmymodule.addprint(tf.constant(1.0)).numpy()\n```\n\n```\n1.0\n```\n\n```python\nprint(mymodule.variables)\n```\n\n```\n(<tf.Variable 'Variable:0' shape=() dtype=float32, numpy=0.0>,)\n```\n\n```python\n# Save model using tf.saved_model\ntf.saved_model.save(mymodule,\"../data/mymodule\",\n    signatures = {\"serving_default\":mymodule.addprint})\n\n# Load the model\nmymodule2 = tf.saved_model.load(\"../data/mymodule\")\nmymodule2.addprint(tf.constant(5.0))\n```\n\n```\nINFO:tensorflow:Assets written to: ../data/mymodule/assets\n5\n```\n\n```python\n\n```\n\n### 3. `tf.Module` and `tf.keras.Model`，`tf.keras.layers.Layer`\n\n\nThe models and the layers in `tf.keras` are implemented through inheriting `tf.Module`. Both of them are able to manage variables and sub-modules.\n\n```python\nimport tensorflow as tf\nfrom tensorflow.keras import models,layers,losses,metrics\n```\n\n```python\nprint(issubclass(tf.keras.Model,tf.Module))\nprint(issubclass(tf.keras.layers.Layer,tf.Module))\nprint(issubclass(tf.keras.Model,tf.keras.layers.Layer))\n```\n\n```\nTrue\nTrue\nTrue\n```\n\n```python\ntf.keras.backend.clear_session() \n\nmodel = models.Sequential()\n\nmodel.add(layers.Dense(4,input_shape = (10,)))\nmodel.add(layers.Dense(2))\nmodel.add(layers.Dense(1))\nmodel.summary()\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ndense (Dense)                (None, 4)                 44        \n_________________________________________________________________\ndense_1 (Dense)              (None, 2)                 10        \n_________________________________________________________________\ndense_2 (Dense)              (None, 1)                 3         \n=================================================================\nTotal params: 57\nTrainable params: 57\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\nmodel.variables\n```\n\n```\n[<tf.Variable 'dense/kernel:0' shape=(10, 4) dtype=float32, numpy=\n array([[-0.06741005,  0.45534766,  0.5190817 , -0.01806331],\n        [-0.14258742, -0.49711505,  0.26030976,  0.18607801],\n        [-0.62806034,  0.5327399 ,  0.42206633,  0.29201728],\n        [-0.16602087, -0.18901917,  0.55159235, -0.01091868],\n        [ 0.04533798,  0.326845  , -0.582667  ,  0.19431782],\n        [ 0.6494713 , -0.16174704,  0.4062966 ,  0.48760796],\n        [ 0.58400524, -0.6280886 , -0.11265379, -0.6438277 ],\n        [ 0.26642334,  0.49275804,  0.20793378, -0.43889117],\n        [ 0.4092741 ,  0.09871006, -0.2073121 ,  0.26047975],\n        [ 0.43910992,  0.00199282, -0.07711256, -0.27966842]],\n       dtype=float32)>,\n <tf.Variable 'dense/bias:0' shape=(4,) dtype=float32, numpy=array([0., 0., 0., 0.], dtype=float32)>,\n <tf.Variable 'dense_1/kernel:0' shape=(4, 2) dtype=float32, numpy=\n array([[ 0.5022683 , -0.0507431 ],\n        [-0.61540484,  0.9369011 ],\n        [-0.14412141, -0.54607415],\n        [ 0.2027781 , -0.4651153 ]], dtype=float32)>,\n <tf.Variable 'dense_1/bias:0' shape=(2,) dtype=float32, numpy=array([0., 0.], dtype=float32)>,\n <tf.Variable 'dense_2/kernel:0' shape=(2, 1) dtype=float32, numpy=\n array([[-0.244825 ],\n        [-1.2101456]], dtype=float32)>,\n <tf.Variable 'dense_2/bias:0' shape=(1,) dtype=float32, numpy=array([0.], dtype=float32)>]\n```\n\n```python\nmodel.layers[0].trainable = False # Freeze the variables in layer 0, make it untrainable.\nmodel.trainable_variables\n```\n\n```\n[<tf.Variable 'dense_1/kernel:0' shape=(4, 2) dtype=float32, numpy=\n array([[ 0.5022683 , -0.0507431 ],\n        [-0.61540484,  0.9369011 ],\n        [-0.14412141, -0.54607415],\n        [ 0.2027781 , -0.4651153 ]], dtype=float32)>,\n <tf.Variable 'dense_1/bias:0' shape=(2,) dtype=float32, numpy=array([0., 0.], dtype=float32)>,\n <tf.Variable 'dense_2/kernel:0' shape=(2, 1) dtype=float32, numpy=\n array([[-0.244825 ],\n        [-1.2101456]], dtype=float32)>,\n <tf.Variable 'dense_2/bias:0' shape=(1,) dtype=float32, numpy=array([0.], dtype=float32)>]\n```\n\n```python\nmodel.submodules\n```\n\n```\n(<tensorflow.python.keras.engine.input_layer.InputLayer at 0x144d8c080>,\n <tensorflow.python.keras.layers.core.Dense at 0x144daada0>,\n <tensorflow.python.keras.layers.core.Dense at 0x144d8c5c0>,\n <tensorflow.python.keras.layers.core.Dense at 0x144d7aa20>)\n```\n\n```python\nmodel.layers\n```\n\n```\n[<tensorflow.python.keras.layers.core.Dense at 0x144daada0>,\n <tensorflow.python.keras.layers.core.Dense at 0x144d8c5c0>,\n <tensorflow.python.keras.layers.core.Dense at 0x144d7aa20>]\n```\n\n```python\nprint(model.name)\nprint(model.name_scope())\n```\n\n```\nsequential\nsequential\n```\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter4.md",
    "content": "# Chapter 4: Low-level API in TensorFlow\n\nLow-level API of TensorFlow includes tensor operation, graph, automatic differentiate, etc.\n\nIf we compare a model to a house, then these low-level APIs are the bricks.\n\nWe may use TensorFlow as the enhanced numpy through these low-level APIs.\n\nTensorFlow provides a more complete set of methods comparing to numpy. These methods have higher executiing efficiency and could be further accelerated by GPU if necessary.\n\nWe gave an intuitive introduction to the low-level API in the previous sections, and we will emphasize the introduction on the tensor operation and Autograph.\n\nTensor operation can be devided into two sub-categories: the structural operation and the mathematical operation.\n\nThe structural operation includes tensor creation, indexing and slicing, dimension transformation, combining & splitting, etc.\n\nThe mathematical operation includes scalar operation, vector operation, and matrix operation. We will also introduce the broadcasting mechanism of tensor operation.\n\nFor the part of Autograph, we will cover its suggested rules, its mechanisms `Autograph` and `tf.Module`.\n\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegant Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to reply **加群(join group)** in the WeChat official account to join the group chat with the other readers.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter5-1.md",
    "content": "# 5-1 Dataset\n\nAll the data could be read into memory for training to maximize the efficiency, if the volume of training data is small (e.g. < 1 GB)\n\nHowever, if the data volume is huge (e.g. > 10 GB) which is not possible to load everything into the memory, they should be devided into batches before reading.\n\nThe API `tf.data` constructs input data pipeline to help manage huge volume of data with various formats and conversions.\n\n```python\n\n```\n\n### 1. Constructing Data Pipeline\n\n\nData pipeline could be constructed through following methods: numpy array, pandas DataFrame, Python generator, csv file, text file, file path, tfrecords file.\n\nAmong these methods, the most popular ones are: numpy array, pandas DataFrame and file path.\n\nThe drawback of using tfrecords file to construct data pipelines is its complication, since it requires: (a) construct `tf.Example` from samples; (b) compress `tf.Example` into string and write it to tfrecords file; (c) when using these data, the tfrecords file have to be read and analyzed into `tf.Example`.\n\nOn the other hand, the advantage of using tfrecords files is its small volume after compression, its convenient sharing through the Internet, and the fast speed of loading.\n\n\n**1.1 Constructing Data Pipeline through Numpy Array**\n\n```python\n# Constructing Data Pipeline through Numpy Array\n\nimport tensorflow as tf\nimport numpy as np \nfrom sklearn import datasets \niris = datasets.load_iris()\n\n\nds1 = tf.data.Dataset.from_tensor_slices((iris[\"data\"],iris[\"target\"]))\nfor features,label in ds1.take(5):\n    print(features,label)\n\n```\n\n```\ntf.Tensor([5.1 3.5 1.4 0.2], shape=(4,), dtype=float64) tf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor([4.9 3.  1.4 0.2], shape=(4,), dtype=float64) tf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor([4.7 3.2 1.3 0.2], shape=(4,), dtype=float64) tf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor([4.6 3.1 1.5 0.2], shape=(4,), dtype=float64) tf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor([5.  3.6 1.4 0.2], shape=(4,), dtype=float64) tf.Tensor(0, shape=(), dtype=int64)\n```\n\n```python\n\n```\n\n**1.2 Constructing Data Pipeline through Pandas DataFrame**\n\n```python\n# Constructing Data Pipeline through Pandas DataFrame\nimport tensorflow as tf\nfrom sklearn import datasets \nimport pandas as pd\niris = datasets.load_iris()\ndfiris = pd.DataFrame(iris[\"data\"],columns = iris.feature_names)\nds2 = tf.data.Dataset.from_tensor_slices((dfiris.to_dict(\"list\"),iris[\"target\"]))\n\nfor features,label in ds2.take(3):\n    print(features,label)\n```\n\n```\n{'sepal length (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=5.1>, 'sepal width (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=3.5>, 'petal length (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=1.4>, 'petal width (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=0.2>} tf.Tensor(0, shape=(), dtype=int64)\n{'sepal length (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=4.9>, 'sepal width (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=3.0>, 'petal length (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=1.4>, 'petal width (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=0.2>} tf.Tensor(0, shape=(), dtype=int64)\n{'sepal length (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=4.7>, 'sepal width (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=3.2>, 'petal length (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=1.3>, 'petal width (cm)': <tf.Tensor: shape=(), dtype=float32, numpy=0.2>} tf.Tensor(0, shape=(), dtype=int64)\n```\n\n```python\n\n```\n\n```python\n\n```\n\n**1.3 Constructing Data Pipeline through Python generator**\n\n```python\n# Constructing Data Pipeline through Python generator\nimport tensorflow as tf\nfrom matplotlib import pyplot as plt \nfrom tensorflow.keras.preprocessing.image import ImageDataGenerator\n\n# Defining a generator to read image from a folder\nimage_generator = ImageDataGenerator(rescale=1.0/255).flow_from_directory(\n                    \"../data/cifar2/test/\",\n                    target_size=(32, 32),\n                    batch_size=20,\n                    class_mode='binary')\n\nclassdict = image_generator.class_indices\nprint(classdict)\n\ndef generator():\n    for features,label in image_generator:\n        yield (features,label)\n\nds3 = tf.data.Dataset.from_generator(generator,output_types=(tf.float32,tf.int32))\n```\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\nplt.figure(figsize=(6,6)) \nfor i,(img,label) in enumerate(ds3.unbatch().take(9)):\n    ax=plt.subplot(3,3,i+1)\n    ax.imshow(img.numpy())\n    ax.set_title(\"label = %d\"%label)\n    ax.set_xticks([])\n    ax.set_yticks([]) \nplt.show()\n```\n\n![](../data/5-1-cifar2预览.jpg)\n\n```python\n\n```\n\n**1.4 Constructing Data Pipeline through csv file**\n\n```python\n# Constructing Data Pipeline through csv file\nds4 = tf.data.experimental.make_csv_dataset(\n      file_pattern = [\"../data/titanic/train.csv\",\"../data/titanic/test.csv\"],\n      batch_size=3, \n      label_name=\"Survived\",\n      na_value=\"\",\n      num_epochs=1,\n      ignore_errors=True)\n\nfor data,label in ds4.take(2):\n    print(data,label)\n```\n\n```\nOrderedDict([('PassengerId', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([540,  58, 764], dtype=int32)>), ('Pclass', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([1, 3, 1], dtype=int32)>), ('Name', <tf.Tensor: shape=(3,), dtype=string, numpy=\narray([b'Frolicher, Miss. Hedwig Margaritha', b'Novel, Mr. Mansouer',\n       b'Carter, Mrs. William Ernest (Lucile Polk)'], dtype=object)>), ('Sex', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'female', b'male', b'female'], dtype=object)>), ('Age', <tf.Tensor: shape=(3,), dtype=float32, numpy=array([22. , 28.5, 36. ], dtype=float32)>), ('SibSp', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([0, 0, 1], dtype=int32)>), ('Parch', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([2, 0, 2], dtype=int32)>), ('Ticket', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'13568', b'2697', b'113760'], dtype=object)>), ('Fare', <tf.Tensor: shape=(3,), dtype=float32, numpy=array([ 49.5   ,   7.2292, 120.    ], dtype=float32)>), ('Cabin', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'B39', b'', b'B96 B98'], dtype=object)>), ('Embarked', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'C', b'C', b'S'], dtype=object)>)]) tf.Tensor([1 0 1], shape=(3,), dtype=int32)\nOrderedDict([('PassengerId', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([845,  66, 390], dtype=int32)>), ('Pclass', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([3, 3, 2], dtype=int32)>), ('Name', <tf.Tensor: shape=(3,), dtype=string, numpy=\narray([b'Culumovic, Mr. Jeso', b'Moubarek, Master. Gerios',\n       b'Lehmann, Miss. Bertha'], dtype=object)>), ('Sex', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'male', b'male', b'female'], dtype=object)>), ('Age', <tf.Tensor: shape=(3,), dtype=float32, numpy=array([17.,  0., 17.], dtype=float32)>), ('SibSp', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([0, 1, 0], dtype=int32)>), ('Parch', <tf.Tensor: shape=(3,), dtype=int32, numpy=array([0, 1, 0], dtype=int32)>), ('Ticket', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'315090', b'2661', b'SC 1748'], dtype=object)>), ('Fare', <tf.Tensor: shape=(3,), dtype=float32, numpy=array([ 8.6625, 15.2458, 12.    ], dtype=float32)>), ('Cabin', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'', b'', b''], dtype=object)>), ('Embarked', <tf.Tensor: shape=(3,), dtype=string, numpy=array([b'S', b'C', b'C'], dtype=object)>)]) tf.Tensor([0 1 1], shape=(3,), dtype=int32)\n```\n\n```python\n\n```\n\n**1.5 Constructing Data Pipeline through text file**\n\n```python\n# Constructing Data Pipeline through text file\n\nds5 = tf.data.TextLineDataset(\n    filenames = [\"../data/titanic/train.csv\",\"../data/titanic/test.csv\"]\n    ).skip(1) # Omitting the header on the first line\n\nfor line in ds5.take(5):\n    print(line)\n```\n\n```\ntf.Tensor(b'493,0,1,\"Molson, Mr. Harry Markland\",male,55.0,0,0,113787,30.5,C30,S', shape=(), dtype=string)\ntf.Tensor(b'53,1,1,\"Harper, Mrs. Henry Sleeper (Myna Haxtun)\",female,49.0,1,0,PC 17572,76.7292,D33,C', shape=(), dtype=string)\ntf.Tensor(b'388,1,2,\"Buss, Miss. Kate\",female,36.0,0,0,27849,13.0,,S', shape=(), dtype=string)\ntf.Tensor(b'192,0,2,\"Carbines, Mr. William\",male,19.0,0,0,28424,13.0,,S', shape=(), dtype=string)\ntf.Tensor(b'687,0,3,\"Panula, Mr. Jaako Arnold\",male,14.0,4,1,3101295,39.6875,,S', shape=(), dtype=string)\n```\n\n```python\n\n```\n\n**1.6 Constructing Data Pipeline through file path**\n\n```python\nds6 = tf.data.Dataset.list_files(\"../data/cifar2/train/*/*.jpg\")\nfor file in ds6.take(5):\n    print(file)\n```\n\n```\ntf.Tensor(b'../data/cifar2/train/automobile/1263.jpg', shape=(), dtype=string)\ntf.Tensor(b'../data/cifar2/train/airplane/2837.jpg', shape=(), dtype=string)\ntf.Tensor(b'../data/cifar2/train/airplane/4264.jpg', shape=(), dtype=string)\ntf.Tensor(b'../data/cifar2/train/automobile/4241.jpg', shape=(), dtype=string)\ntf.Tensor(b'../data/cifar2/train/automobile/192.jpg', shape=(), dtype=string)\n```\n\n```python\nfrom matplotlib import pyplot as plt \ndef load_image(img_path,size = (32,32)):\n    label = 1 if tf.strings.regex_full_match(img_path,\".*/automobile/.*\") else 0\n    img = tf.io.read_file(img_path)\n    img = tf.image.decode_jpeg(img) # Note that we are using jpeg format\n    img = tf.image.resize(img,size)\n    return(img,label)\n\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\nfor i,(img,label) in enumerate(ds6.map(load_image).take(2)):\n    plt.figure(i)\n    plt.imshow((img/255.0).numpy())\n    plt.title(\"label = %d\"%label)\n    plt.xticks([])\n    plt.yticks([])\n```\n\n![](../data/5-1-car2.jpg)\n\n```python\n\n```\n\n**1.7 Constructing Data Pipeline through tfrecords file**\n\n```python\nimport os\nimport numpy as np\n\n# inpath is the original data path; outpath: output path of the TFRecord file\ndef create_tfrecords(inpath,outpath): \n    writer = tf.io.TFRecordWriter(outpath)\n    dirs = os.listdir(inpath)\n    for index, name in enumerate(dirs):\n        class_path = inpath +\"/\"+ name+\"/\"\n        for img_name in os.listdir(class_path):\n            img_path = class_path + img_name\n            img = tf.io.read_file(img_path)\n            #img = tf.image.decode_image(img)\n            #img = tf.image.encode_jpeg(img) # Use jpeg format for all the compressions\n            example = tf.train.Example(\n               features=tf.train.Features(feature={\n                    'label': tf.train.Feature(int64_list=tf.train.Int64List(value=[index])),\n                    'img_raw': tf.train.Feature(bytes_list=tf.train.BytesList(value=[img.numpy()]))\n               }))\n            writer.write(example.SerializeToString())\n    writer.close()\n    \ncreate_tfrecords(\"../data/cifar2/test/\",\"../data/cifar2_test.tfrecords/\")\n\n```\n\n```python\nfrom matplotlib import pyplot as plt \n\ndef parse_example(proto):\n    description ={ 'img_raw' : tf.io.FixedLenFeature([], tf.string),\n                   'label': tf.io.FixedLenFeature([], tf.int64)} \n    example = tf.io.parse_single_example(proto, description)\n    img = tf.image.decode_jpeg(example[\"img_raw\"])   # Note that we are using jpeg format\n    img = tf.image.resize(img, (32,32))\n    label = example[\"label\"]\n    return(img,label)\n\nds7 = tf.data.TFRecordDataset(\"../data/cifar2_test.tfrecords\").map(parse_example).shuffle(3000)\n\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\nplt.figure(figsize=(6,6)) \nfor i,(img,label) in enumerate(ds7.take(9)):\n    ax=plt.subplot(3,3,i+1)\n    ax.imshow((img/255.0).numpy())\n    ax.set_title(\"label = %d\"%label)\n    ax.set_xticks([])\n    ax.set_yticks([]) \nplt.show()\n\n```\n\n![](../data/5-1-car9.jpg)\n\n```python\n\n```\n\n```python\n\n```\n\n### 2. Applying Data Conversion\n\n\nDataset is very flexible in the application of data structure. Essentially it is a sequence with elements in various data types, such as tensor, list, dictionary and Dataset.\n\nDataset contains many functions of data conversion.\n\n* `map`: projecting the conversion function to every element in the dataset.\n\n* `flat_map`: projecting the conversion function to every element in the dataset, and flatten the embedded Dataset.\n\n* `interleave`: similar as `flat_map` but interleaves the data from different sources.\n\n* `filter`: filter certain elements.\n\n* `zip`: zipping two Datasets with the same length.\n\n* `concatenate`: concatenating two Datasets.\n\n* `reduce`: executing operation of reducing.\n\n* `batch`: constructing batches and release one batch each time; there will be one more rank comparing to the original data; the inverse operation is `unbatch`.\n\n* `padded_batch`: constructing batches, similar as `batch`, but can achieve padded shape.\n\n* `window`: constructing sliding window, and return Dataset of Dataset.\n\n* `shuffle`: shuffling the order of the data.\n\n* `repeat`: repeat the data certain times; if no argument is specified, repeat data with infinitive times.\n\n* `shard`: sampling the elements starting from a certain position with fixed distance.\n\n* `take`: sampling the first few elements from a certain position.\n\n\n```python\n#map: projecting the conversion function to every element in the dataset.\n\nds = tf.data.Dataset.from_tensor_slices([\"hello world\",\"hello China\",\"hello Beijing\"])\nds_map = ds.map(lambda x:tf.strings.split(x,\" \"))\nfor x in ds_map:\n    print(x)\n```\n\n```\ntf.Tensor([b'hello' b'world'], shape=(2,), dtype=string)\ntf.Tensor([b'hello' b'China'], shape=(2,), dtype=string)\ntf.Tensor([b'hello' b'Beijing'], shape=(2,), dtype=string)\n```\n\n```python\n#flat_map: projecting the conversion function to every element in the dataset, and flatten the embedded Dataset.\n\nds = tf.data.Dataset.from_tensor_slices([\"hello world\",\"hello China\",\"hello Beijing\"])\nds_flatmap = ds.flat_map(lambda x:tf.data.Dataset.from_tensor_slices(tf.strings.split(x,\" \")))\nfor x in ds_flatmap:\n    print(x)\n```\n\n```\ntf.Tensor(b'hello', shape=(), dtype=string)\ntf.Tensor(b'world', shape=(), dtype=string)\ntf.Tensor(b'hello', shape=(), dtype=string)\ntf.Tensor(b'China', shape=(), dtype=string)\ntf.Tensor(b'hello', shape=(), dtype=string)\ntf.Tensor(b'Beijing', shape=(), dtype=string)\n```\n\n```python\n\n```\n\n```python\n# interleave: similar as `flat_map` but interleaves the data from different sources.\n\nds = tf.data.Dataset.from_tensor_slices([\"hello world\",\"hello China\",\"hello Beijing\"])\nds_interleave = ds.interleave(lambda x:tf.data.Dataset.from_tensor_slices(tf.strings.split(x,\" \")))\nfor x in ds_interleave:\n    print(x)\n    \n```\n\n```\ntf.Tensor(b'hello', shape=(), dtype=string)\ntf.Tensor(b'hello', shape=(), dtype=string)\ntf.Tensor(b'hello', shape=(), dtype=string)\ntf.Tensor(b'world', shape=(), dtype=string)\ntf.Tensor(b'China', shape=(), dtype=string)\ntf.Tensor(b'Beijing', shape=(), dtype=string)\n```\n\n```python\n\n```\n\n```python\n#filter: filter certain elements.\n\nds = tf.data.Dataset.from_tensor_slices([\"hello world\",\"hello China\",\"hello Beijing\"])\n# Find the element with letter'a' or 'B'\nds_filter = ds.filter(lambda x: tf.strings.regex_full_match(x, \".*[a|B].*\"))\nfor x in ds_filter:\n    print(x)\n    \n```\n\n```\ntf.Tensor(b'hello China', shape=(), dtype=string)\ntf.Tensor(b'hello Beijing', shape=(), dtype=string)\n```\n\n```python\n\n```\n\n```python\n#zip: zipping two Datasets with the same length.\n\nds1 = tf.data.Dataset.range(0,3)\nds2 = tf.data.Dataset.range(3,6)\nds3 = tf.data.Dataset.range(6,9)\nds_zip = tf.data.Dataset.zip((ds1,ds2,ds3))\nfor x,y,z in ds_zip:\n    print(x.numpy(),y.numpy(),z.numpy())\n\n```\n\n```\n0 3 6\n1 4 7\n2 5 8\n```\n\n```python\n#condatenate: concatenating two Datasets.\n\nds1 = tf.data.Dataset.range(0,3)\nds2 = tf.data.Dataset.range(3,6)\nds_concat = tf.data.Dataset.concatenate(ds1,ds2)\nfor x in ds_concat:\n    print(x)\n```\n\n```\ntf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor(1, shape=(), dtype=int64)\ntf.Tensor(2, shape=(), dtype=int64)\ntf.Tensor(3, shape=(), dtype=int64)\ntf.Tensor(4, shape=(), dtype=int64)\ntf.Tensor(5, shape=(), dtype=int64)\n```\n\n```python\n#reduce: executing operation of reducing.\n\nds = tf.data.Dataset.from_tensor_slices([1,2,3,4,5.0])\nresult = ds.reduce(0.0,lambda x,y:tf.add(x,y))\nresult\n```\n\n```\n<tf.Tensor: shape=(), dtype=float32, numpy=15.0>\n```\n\n```python\n\n```\n\n```python\n#batch: constructing batches and release one batch each time; there will be one more rank comparing to the original data; the inverse operation is `unbatch`.\n\nds = tf.data.Dataset.range(12)\nds_batch = ds.batch(4)\nfor x in ds_batch:\n    print(x)\n```\n\n```\ntf.Tensor([0 1 2 3], shape=(4,), dtype=int64)\ntf.Tensor([4 5 6 7], shape=(4,), dtype=int64)\ntf.Tensor([ 8  9 10 11], shape=(4,), dtype=int64)\n```\n\n```python\n\n```\n\n```python\n#padded_batch: constructing batches, similar as `batch`, but can achieve padded shape.\n\nelements = [[1, 2],[3, 4, 5],[6, 7],[8]]\nds = tf.data.Dataset.from_generator(lambda: iter(elements), tf.int32)\n\nds_padded_batch = ds.padded_batch(2,padded_shapes = [4,])\nfor x in ds_padded_batch:\n    print(x)    \n```\n\n```\ntf.Tensor(\n[[1 2 0 0]\n [3 4 5 0]], shape=(2, 4), dtype=int32)\ntf.Tensor(\n[[6 7 0 0]\n [8 0 0 0]], shape=(2, 4), dtype=int32)\n```\n\n```python\n\n```\n\n```python\n#window: constructing sliding window, and return Dataset of Dataset.\n\nds = tf.data.Dataset.range(12)\n# window returns Dataset of Dataset, which could be flattened by flat_map\nds_window = ds.window(3, shift=1).flat_map(lambda x: x.batch(3,drop_remainder=True)) \nfor x in ds_window:\n    print(x)\n```\n\n```\ntf.Tensor([0 1 2], shape=(3,), dtype=int64)\ntf.Tensor([1 2 3], shape=(3,), dtype=int64)\ntf.Tensor([2 3 4], shape=(3,), dtype=int64)\ntf.Tensor([3 4 5], shape=(3,), dtype=int64)\ntf.Tensor([4 5 6], shape=(3,), dtype=int64)\ntf.Tensor([5 6 7], shape=(3,), dtype=int64)\ntf.Tensor([6 7 8], shape=(3,), dtype=int64)\ntf.Tensor([7 8 9], shape=(3,), dtype=int64)\ntf.Tensor([ 8  9 10], shape=(3,), dtype=int64)\ntf.Tensor([ 9 10 11], shape=(3,), dtype=int64)\n```\n\n```python\n\n```\n\n```python\n#shuffle: shuffling the order of the data.\n\nds = tf.data.Dataset.range(12)\nds_shuffle = ds.shuffle(buffer_size = 5)\nfor x in ds_shuffle:\n    print(x)\n    \n```\n\n```\ntf.Tensor(1, shape=(), dtype=int64)\ntf.Tensor(4, shape=(), dtype=int64)\ntf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor(6, shape=(), dtype=int64)\ntf.Tensor(5, shape=(), dtype=int64)\ntf.Tensor(2, shape=(), dtype=int64)\ntf.Tensor(7, shape=(), dtype=int64)\ntf.Tensor(11, shape=(), dtype=int64)\ntf.Tensor(3, shape=(), dtype=int64)\ntf.Tensor(9, shape=(), dtype=int64)\ntf.Tensor(10, shape=(), dtype=int64)\ntf.Tensor(8, shape=(), dtype=int64)\n```\n\n```python\n\n```\n\n```python\n#repeat: repeat the data certain times; if no argument is specified, repeat data with infinitive times.\n\nds = tf.data.Dataset.range(3)\nds_repeat = ds.repeat(3)\nfor x in ds_repeat:\n    print(x)\n```\n\n```\ntf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor(1, shape=(), dtype=int64)\ntf.Tensor(2, shape=(), dtype=int64)\ntf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor(1, shape=(), dtype=int64)\ntf.Tensor(2, shape=(), dtype=int64)\ntf.Tensor(0, shape=(), dtype=int64)\ntf.Tensor(1, shape=(), dtype=int64)\ntf.Tensor(2, shape=(), dtype=int64)\n```\n\n```python\n#shard: sampling the elements starting from a certain position with fixed distance.\n\nds = tf.data.Dataset.range(12)\nds_shard = ds.shard(3,index = 1)\n\nfor x in ds_shard:\n    print(x)\n```\n\n```\ntf.Tensor(1, shape=(), dtype=int64)\ntf.Tensor(4, shape=(), dtype=int64)\ntf.Tensor(7, shape=(), dtype=int64)\ntf.Tensor(10, shape=(), dtype=int64)\n```\n\n```python\n#take: sampling the first few elements from a certain position.\n\nds = tf.data.Dataset.range(12)\nds_take = ds.take(3)\n\nlist(ds_take.as_numpy_iterator())\n\n```\n\n```\n[0, 1, 2]\n```\n\n```python\n\n```\n\n```python\n\n```\n\n### 3. Enhance the Efficiency of the Pipeline\n\n\nThe training of deep learning model could be lengthy.\n\nThe consumed time is mainly consists of two parts: **data preparation** and **parameter iteration**.\n\nThe efficiency of parameter iteration is ususlly enhanced by GPU.\n\nThe efficiency of data preparation could be improved by constructing high-efficiency data pipeline.\n\nBelow are several suggestions of constructing high-efficiency data pipeline:\n\n* 1, Paralleling the data preparation and the parameter iteration using method `prefetch`.\n\n* 2, Use the method `interleave` to read data with multi-process and interleave the data from different sources.\n\n* 3, Set `num_parallel_calls` during using `map`, allowing data conversion with multiple process.\n\n* 4, Apply method `cache` to cache data into the memory after the first epoch for the case with a small data volume.\n\n* 5, When converting with `map`, batch the data first, and then convert each batch with vecterization.\n\n```python\n\n```\n\n**3.1 Paralleling the data preparation and the parameter iteration using method `prefetch`.**\n\n```python\nimport tensorflow as tf\n\n# Time stamp\n@tf.function\ndef printbar():\n    ts = tf.timestamp()\n    today_ts = ts%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8,end = \"\")\n    tf.print(timestring)\n    \n```\n\n```python\nimport time\n\n# Data preparation and parameter iteration is serial as default.\n\n# Simulation of data preparation\ndef generator():\n    for i in range(10):\n        # Suppose we need 2 seconds for each preparation\n        time.sleep(2) \n        yield i \nds = tf.data.Dataset.from_generator(generator,output_types = (tf.int32))\n\n# Simulation of parameter iteration\ndef train_step():\n    # Suppose we need 1 seconds for each training step\n    time.sleep(1) \n    \n```\n\n```python\n# Estimated time of training: 10*2+10*1 = 30s\nprintbar()\ntf.print(tf.constant(\"start training...\"))\nfor x in ds:\n    train_step()  \nprintbar()\ntf.print(tf.constant(\"end training...\"))\n```\n\n```python\n# Use method prefetch to parallel the processes of data preparation and parameter iteration.\n\n# Estimated time of training:  max(10*2,10*1) = 20s\nprintbar()\ntf.print(tf.constant(\"start training with prefetch...\"))\n\n# tf.data.experimental.AUTOTUNE allows auto-selection of parameters\nfor x in ds.prefetch(buffer_size = tf.data.experimental.AUTOTUNE):\n    train_step()  \n    \nprintbar()\ntf.print(tf.constant(\"end training...\"))\n\n```\n\n```python\n\n```\n\n**3.2 Use the method `interleave` to read data with multi-process and interleave the data from different sources.**\n\n```python\nds_files = tf.data.Dataset.list_files(\"../data/titanic/*.csv\")\nds = ds_files.flat_map(lambda x:tf.data.TextLineDataset(x).skip(1))\nfor line in ds.take(4):\n    print(line)\n```\n\n```\ntf.Tensor(b'493,0,1,\"Molson, Mr. Harry Markland\",male,55.0,0,0,113787,30.5,C30,S', shape=(), dtype=string)\ntf.Tensor(b'53,1,1,\"Harper, Mrs. Henry Sleeper (Myna Haxtun)\",female,49.0,1,0,PC 17572,76.7292,D33,C', shape=(), dtype=string)\ntf.Tensor(b'388,1,2,\"Buss, Miss. Kate\",female,36.0,0,0,27849,13.0,,S', shape=(), dtype=string)\ntf.Tensor(b'192,0,2,\"Carbines, Mr. William\",male,19.0,0,0,28424,13.0,,S', shape=(), dtype=string)\n```\n\n```python\nds_files = tf.data.Dataset.list_files(\"../data/titanic/*.csv\")\nds = ds_files.interleave(lambda x:tf.data.TextLineDataset(x).skip(1))\nfor line in ds.take(8):\n    print(line)\n```\n\n```\ntf.Tensor(b'181,0,3,\"Sage, Miss. Constance Gladys\",female,,8,2,CA. 2343,69.55,,S', shape=(), dtype=string)\ntf.Tensor(b'493,0,1,\"Molson, Mr. Harry Markland\",male,55.0,0,0,113787,30.5,C30,S', shape=(), dtype=string)\ntf.Tensor(b'405,0,3,\"Oreskovic, Miss. Marija\",female,20.0,0,0,315096,8.6625,,S', shape=(), dtype=string)\ntf.Tensor(b'53,1,1,\"Harper, Mrs. Henry Sleeper (Myna Haxtun)\",female,49.0,1,0,PC 17572,76.7292,D33,C', shape=(), dtype=string)\ntf.Tensor(b'635,0,3,\"Skoog, Miss. Mabel\",female,9.0,3,2,347088,27.9,,S', shape=(), dtype=string)\ntf.Tensor(b'388,1,2,\"Buss, Miss. Kate\",female,36.0,0,0,27849,13.0,,S', shape=(), dtype=string)\ntf.Tensor(b'701,1,1,\"Astor, Mrs. John Jacob (Madeleine Talmadge Force)\",female,18.0,1,0,PC 17757,227.525,C62 C64,C', shape=(), dtype=string)\ntf.Tensor(b'192,0,2,\"Carbines, Mr. William\",male,19.0,0,0,28424,13.0,,S', shape=(), dtype=string)\n```\n\n```python\n\n```\n\n**3.3 Set `num_parallel_calls` during using `map`, allowing data conversion with multiple process.**\n\n```python\nds = tf.data.Dataset.list_files(\"../data/cifar2/train/*/*.jpg\")\ndef load_image(img_path,size = (32,32)):\n    label = 1 if tf.strings.regex_full_match(img_path,\".*/automobile/.*\") else 0\n    img = tf.io.read_file(img_path)\n    img = tf.image.decode_jpeg(img) #Note: jpeg format here\n    img = tf.image.resize(img,size)\n    return(img,label)\n```\n\n```python\n# Conversion with single process\nprintbar()\ntf.print(tf.constant(\"start transformation...\"))\n\nds_map = ds.map(load_image)\nfor _ in ds_map:\n    pass\n\nprintbar()\ntf.print(tf.constant(\"end transformation...\"))\n```\n\n```python\n# Conversion with multi-process\nprintbar()\ntf.print(tf.constant(\"start parallel transformation...\"))\n\nds_map_parallel = ds.map(load_image,num_parallel_calls = tf.data.experimental.AUTOTUNE)\nfor _ in ds_map_parallel:\n    pass\n\nprintbar()\ntf.print(tf.constant(\"end parallel transformation...\"))\n```\n\n```python\n\n```\n\n**3.4 Apply method `cache` to cache data into the memory after the first epoch for the case with a small data volume.**\n\n```python\nimport time\n\n# Simulation of data preparation\ndef generator():\n    for i in range(5):\n        # Suppose we need 2 seconds for each preparation\n        time.sleep(2) \n        yield i \nds = tf.data.Dataset.from_generator(generator,output_types = (tf.int32))\n\n# Simulation of parameter iteration模拟参数迭代\ndef train_step():\n    # Suppose we need 1 second for each training step\n    pass\n\n# Estimated time for training: (5*2+5*0)*3 = 30s\nprintbar()\ntf.print(tf.constant(\"start training...\"))\nfor epoch in tf.range(3):\n    for x in ds:\n        train_step()  \n    printbar()\n    tf.print(\"epoch =\",epoch,\" ended\")\nprintbar()\ntf.print(tf.constant(\"end training...\"))\n\n```\n\n```python\nimport time\n\n# Simulation of data preparation\ndef generator():\n    for i in range(5):\n        # Suppose we need 2 seconds for each preparation\n        time.sleep(2) \n        yield i \n\n# Use the method \"cache\" to cache the data into the memory, only for dataset with small volume.\nds = tf.data.Dataset.from_generator(generator,output_types = (tf.int32)).cache()\n\n# Simulation of parameter iteration\ndef train_step():\n    # Suppose each training step needs 0 second\n    time.sleep(0) \n\n# Estimated time for training: (5*2+5*0)+(5*0+5*0)*2 = 10s\nprintbar()\ntf.print(tf.constant(\"start training...\"))\nfor epoch in tf.range(3):\n    for x in ds:\n        train_step()  \n    printbar()\n    tf.print(\"epoch =\",epoch,\" ended\")\nprintbar()\ntf.print(tf.constant(\"end training...\"))\n```\n\n```python\n\n```\n\n**3.5 When converting with `map`, batch the data first, and then convert each batch with vecterization.**\n\n```python\n# Map first, then batch\nds = tf.data.Dataset.range(100000)\nds_map_batch = ds.map(lambda x:x**2).batch(20)\n\nprintbar()\ntf.print(tf.constant(\"start scalar transformation...\"))\nfor x in ds_map_batch:\n    pass\nprintbar()\ntf.print(tf.constant(\"end scalar transformation...\"))\n\n```\n\n```python\n# Batch first, then map\nds = tf.data.Dataset.range(100000)\nds_batch_map = ds.batch(20).map(lambda x:x**2)\n\nprintbar()\ntf.print(tf.constant(\"start vector transformation...\"))\nfor x in ds_batch_map:\n    pass\nprintbar()\ntf.print(tf.constant(\"end vector transformation...\"))\n\n```\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n\n```python\n\n```\n"
  },
  {
    "path": "english/Chapter5-2.md",
    "content": "# 5-2 feature_column\n\nFeature column is usually applied in the feature engineering for the structured data, while rarely used for the image or text date.\n\n\n### 1. Introduction about how to use feature column\n\n\nFeature column is used to converting category features into one-hot encoding, or creating bucketing feature from continuous feature, or generating cross features from multiple features, etc.\n\n\nBefore creating feature column, please call the functions in the module `tf.feature_column`. The nine most frequently used functions in this module are shown in the figure below. All these functions will return a Categorical-Column or a Dense-Column object, but will not return bucketized_column, since the last class is inhereted from the first two classes.\n\nBe careful: all the Categorical-Column class have to be converted into Dense-Column class through `indicator_column` before input to the model.\n\n\n![](../data/特征列9种.jpg)\n\n<!-- #region -->\n* `numeric_column`, the most frequently used function.\n\n\n* `bucketized_column`, generated from numerical column, listing multiple features from a numerical clumn; it is one-hot encoded.\n\n\n* `categorical_column_with_identity`, one-hot encoded, identical to the case that each bucket is one interger.\n\n\n* `categorical_column_with_vocabulary_list`, one-hot encoded; the dictionary is specified by the list.\n\n\n* `categorical_column_with_vocabulary_file`， one-hot encoded; the dictionary is specified by the file.\n\n\n* `categorical_column_with_hash_bucket`, used in the case with a large interger or a large dictionary.\n\n\n* `indicator_column`, generated by Categorical-Column; one-hot encoded.\n\n\n* `embedding_column`, generated by Categorical Column; the embedded vector distributed parameter needs learning/training. The recommended dimension of the embedded vector is the fourth root to the number of categories.\n\n\n* `crossed_column`, consists of arbitrary category column except for categorical_column_with_hash_bucket\n<!-- #endregion -->\n\n### 2. Demonstration of feature column\n\n\nHere is a complete example that solves Titanic survival problmen using feature column.\n\n```python\nimport datetime\nimport numpy as np\nimport pandas as pd\nfrom matplotlib import pyplot as plt\nimport tensorflow as tf\nfrom tensorflow.keras import layers,models\n\n\n# Printing log\ndef printlog(info):\n    nowtime = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')\n    print(\"\\n\"+\"==========\"*8 + \"%s\"%nowtime)\n    print(info+'...\\n\\n')\n\n\n    \n```\n\n```python\n#================================================================================\n# 1. Constructing data pipeline\n#================================================================================\nprintlog(\"step1: prepare dataset...\")\n\n\ndftrain_raw = pd.read_csv(\"../data/titanic/train.csv\")\ndftest_raw = pd.read_csv(\"../data/titanic/test.csv\")\n\ndfraw = pd.concat([dftrain_raw,dftest_raw])\n\ndef prepare_dfdata(dfraw):\n    dfdata = dfraw.copy()\n    dfdata.columns = [x.lower() for x in dfdata.columns]\n    dfdata = dfdata.rename(columns={'survived':'label'})\n    dfdata = dfdata.drop(['passengerid','name'],axis = 1)\n    for col,dtype in dict(dfdata.dtypes).items():\n        # See if there are missing values.\n        if dfdata[col].hasnans:\n            # Adding signs to the missing columns\n            dfdata[col + '_nan'] = pd.isna(dfdata[col]).astype('int32')\n            # Fill\n            if dtype not in [np.object,np.str,np.unicode]:\n                dfdata[col].fillna(dfdata[col].mean(),inplace = True)\n            else:\n                dfdata[col].fillna('',inplace = True)\n    return(dfdata)\n\ndfdata = prepare_dfdata(dfraw)\ndftrain = dfdata.iloc[0:len(dftrain_raw),:]\ndftest = dfdata.iloc[len(dftrain_raw):,:]\n\n\n\n# Importing data from dataframe\ndef df_to_dataset(df, shuffle=True, batch_size=32):\n    dfdata = df.copy()\n    if 'label' not in dfdata.columns:\n        ds = tf.data.Dataset.from_tensor_slices(dfdata.to_dict(orient = 'list'))\n    else: \n        labels = dfdata.pop('label')\n        ds = tf.data.Dataset.from_tensor_slices((dfdata.to_dict(orient = 'list'), labels))  \n    if shuffle:\n        ds = ds.shuffle(buffer_size=len(dfdata))\n    ds = ds.batch(batch_size)\n    return ds\n\nds_train = df_to_dataset(dftrain)\nds_test = df_to_dataset(dftest)\n```\n\n```python\n#================================================================================\n# 2. Defining the feature column\n#================================================================================\nprintlog(\"step2: make feature columns...\")\n\nfeature_columns = []\n\n# Numerical column\nfor col in ['age','fare','parch','sibsp'] + [\n    c for c in dfdata.columns if c.endswith('_nan')]:\n    feature_columns.append(tf.feature_column.numeric_column(col))\n\n# Bucketized column\nage = tf.feature_column.numeric_column('age')\nage_buckets = tf.feature_column.bucketized_column(age, \n             boundaries=[18, 25, 30, 35, 40, 45, 50, 55, 60, 65])\nfeature_columns.append(age_buckets)\n\n# Category column\n# NOTE: all the Categorical-Column class have to be converted into Dense-Column class through `indicator_column` before input to the model.\nsex = tf.feature_column.indicator_column(\n      tf.feature_column.categorical_column_with_vocabulary_list(\n      key='sex',vocabulary_list=[\"male\", \"female\"]))\nfeature_columns.append(sex)\n\npclass = tf.feature_column.indicator_column(\n      tf.feature_column.categorical_column_with_vocabulary_list(\n      key='pclass',vocabulary_list=[1,2,3]))\nfeature_columns.append(pclass)\n\nticket = tf.feature_column.indicator_column(\n     tf.feature_column.categorical_column_with_hash_bucket('ticket',3))\nfeature_columns.append(ticket)\n\nembarked = tf.feature_column.indicator_column(\n      tf.feature_column.categorical_column_with_vocabulary_list(\n      key='embarked',vocabulary_list=['S','C','B']))\nfeature_columns.append(embarked)\n\n# Embedding column\ncabin = tf.feature_column.embedding_column(\n    tf.feature_column.categorical_column_with_hash_bucket('cabin',32),2)\nfeature_columns.append(cabin)\n\n# Crossed column\npclass_cate = tf.feature_column.categorical_column_with_vocabulary_list(\n          key='pclass',vocabulary_list=[1,2,3])\n\ncrossed_feature = tf.feature_column.indicator_column(\n    tf.feature_column.crossed_column([age_buckets, pclass_cate],hash_bucket_size=15))\n\nfeature_columns.append(crossed_feature)\n\n```\n\n```python\n#================================================================================\n# 3. Defining the model\n#================================================================================\nprintlog(\"step3: define model...\")\n\ntf.keras.backend.clear_session()\nmodel = tf.keras.Sequential([\n  layers.DenseFeatures(feature_columns), # Placing the feature into tf.keras.layers.DenseFeatures\n  layers.Dense(64, activation='relu'),\n  layers.Dense(64, activation='relu'),\n  layers.Dense(1, activation='sigmoid')\n])\n\n```\n\n```python\n#================================================================================\n# 4. Training the model\n#================================================================================\nprintlog(\"step4: train model...\")\n\nmodel.compile(optimizer='adam',\n              loss='binary_crossentropy',\n              metrics=['accuracy'])\n\nhistory = model.fit(ds_train,\n          validation_data=ds_test,\n          epochs=10)\n```\n\n```python\n#================================================================================\n# 5. Evaluating the model\n#================================================================================\nprintlog(\"step5: eval model...\")\n\nmodel.summary()\n\n\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nimport matplotlib.pyplot as plt\n\ndef plot_metric(history, metric):\n    train_metrics = history.history[metric]\n    val_metrics = history.history['val_'+metric]\n    epochs = range(1, len(train_metrics) + 1)\n    plt.plot(epochs, train_metrics, 'bo--')\n    plt.plot(epochs, val_metrics, 'ro-')\n    plt.title('Training and validation '+ metric)\n    plt.xlabel(\"Epochs\")\n    plt.ylabel(metric)\n    plt.legend([\"train_\"+metric, 'val_'+metric])\n    plt.show()\n\nplot_metric(history,\"accuracy\")\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ndense_features (DenseFeature multiple                  64        \n_________________________________________________________________\ndense (Dense)                multiple                  3008      \n_________________________________________________________________\ndense_1 (Dense)              multiple                  4160      \n_________________________________________________________________\ndense_2 (Dense)              multiple                  65        \n=================================================================\nTotal params: 7,297\nTrainable params: 7,297\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n\n![](../data/5-2-01-模型评估.jpg)\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter5-3.md",
    "content": "# 5-3 activation\n\nActivation function plays a key role in deep learning. It introduces the nonlinearity that enables the neural network to fit arbitrary complicated functions.\n\nThe neural network, no matter how complicated the structure is, is still a linear transformation which cannot fit the nonlinear functions without the activation function.\n\nFor the time being, the most popular activation function is `relu`, but there are some new functions such as `swish`, `GELU`, claiming a better performance over `relu`.\n\nHere are two review papers to the activation function (in Chinese).\n\n[《一文概览深度学习中的激活函数》](https://zhuanlan.zhihu.com/p/98472075)\n\n[《从ReLU到GELU,一文概览神经网络中的激活函数》](https://zhuanlan.zhihu.com/p/98863801)\n\n\n\n\n### 1. The most popular activation functions\n\n\n* `tf.nn.sigmoid`: Compressing real number between 0 to 1, usually used in the output layer for binary classification; the main drawbacks are vanishing gradient, high computing complexity, and the non-zero center of the output.\n\n![](../data/sigmoid.png)\n\n* `tf.nn.softmax`: Extended version of sigmoid for multiple categories, usually used in the output layer for multiple classifications.\n\n![](../data/softmax说明.jpg)\n\n* `tf.nn.tanh`：Compressing real number between -1 to 1, expectation of the output is zero; the main drawbacks are vanishing gradient and high computing complexity.\n\n![](../data/tanh.png)\n\n* `tf.nn.relu`：Linear rectified unit, the most popular activation function, usually used in the hidden layer; the main drawbacks are non-zero center of the output and vanishing gradient for the inputs < 0 (dying relu).\n\n![](../data/relu.png)\n\n* `tf.nn.leaky_relu`：Improved ReLU, resolving the dying ReLU problem.\n\n![](../data/leaky_relu.png)\n\n* `tf.nn.elu`：Exponential linear unit, which is an improvement to the ReLU, alleviate the dying ReLU problem.\n\n![](../data/elu.png)\n\n* `tf.nn.selu`：Scaled exponential linear unit, which is able to normalize the neural network automatically if the weights are initialized through `tf.keras.initializers.lecun_normal`. No gradient exploding/vanishing problems, but need to apply together with AlphaDropout (an alternation of Dropout).\n\n![](../data/selu.png)\n\n* `tf.nn.swish`：Self-gated activation function, a research product form Google. The literature prove that it brings slight improvement comparing to ReLU.\n\n![](../data/swish.png)\n\n* `gelu`：Gaussian error linear unit, which has the best performance in Transformer; however `tf.nn` hasn't implemented it.\n\n![](../data/gelu.png)\n\n```python\n\n```\n\n### 2. Implementing activation functions in the models\n\n\nThere are two ways of implementing activation functions in Keras models: specifying through the `activation` parameter in certain layers, or adding activation layer `layers.Activation` explicitly.\n\n```python\nimport numpy as np\nimport pandas as pd\nimport tensorflow as tf\nfrom tensorflow.keras import layers,models\n\ntf.keras.backend.clear_session()\n\nmodel = models.Sequential()\nmodel.add(layers.Dense(32,input_shape = (None,16),activation = tf.nn.relu)) # Specifying through the activation parameter\nmodel.add(layers.Dense(10))\nmodel.add(layers.Activation(tf.nn.softmax))  # adding `layers.Activation` explicitly.\nmodel.summary()\n\n```\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n\n```python\n\n```\n"
  },
  {
    "path": "english/Chapter5-4.md",
    "content": "# 5-4 layers\n\nThe deep learning model usually consists of various layers.\n\ntf.keras.layers contains a large amount of models with various functions, such as:\n\n`layers.Dense`, `layers.Flatten`, `layers.Input`, `layers.DenseFeature`, `layers.Dropout`\n\n`layers.Conv2D`, `layers.MaxPooling2D`, `layers.Conv1D`\n\n`layers.Embedding`, `layers.GRU`, `layers.LSTM`, `layers.Bidirectional`, etc.\n\nIn case these pre-defined layers are insufficient for modeling, the users are able to write anonymous layer `tf.keras.Lambda` or write customized layer through inheriting `tf.keras.layers.Layer`.\n\nNote that `tf.keras.Lambda` is only for the layers without any trainable parameter.\n\n```python\n\n```\n\n### 1. Pre-defined Layer\n\n\nHere are the introductions for the most popular layers.\n\n**Fundamental layers**\n\n* Dense: Densely connected layer. # of parameters = # of features of the input layer × # of weight + # of bias.\n\n* Activation: Activation function layer. Usually placed after the Dense layer for specify the activation function in the Dense layer.\n\n* Dropout: Dropout layer. Setting the inputs as zero randomly during the training stage, which is a method of regularization.\n\n* BatchNormalization:Layer for batch normalization. It scale and translate the batches into stable mean and standad deviation through linear transformation. This lead to the model adaptive to the various distribution of the input, which is mild regularization that accelerates training. This layer is usually applied before the activation function.\n\n* SpatialDropout2D:Spatial dropout layer. Setting the whole feature map into zero with certain possibilities during training, which is a regularization to avoid high correlation between feature maps.\n\n* Input:Input layer. Usually it is the first layer when modelling through functional API.\n\n* DenseFeature:Layer that provides connection to the feature columns, which is used to accept a list of feature columns and generate a densely connected layer.\n\n* Flatten:Flatten layer, used for flattening multi-dimensional tensor into one-dimension.\n\n* Reshape:Reshape layer, reform the shape of the input tensor.\n\n* Concatenate:Concatenating layer to link multiple tensors along the specific dimension.\n\n* Add: Adding layer.\n\n* Subtract: Subtracting layer.\n\n* Maximum: Layer for maximum value.\n\n* Minimum: Layer for minimum value.\n\n\n**Layers for the convoelutional network.**\n\n* `Conv1D`: Layer of 1D convolution, ususlly for text. # of parameters = # of input channels × # of kernel size (e.g. 3) × # of kernels.\n\n* `Conv2D`: Layer of 2D convolution, ususlly for image. # of parameters = # of input channels × # of kernel size (e.g. 3×3) × # of kernels.\n\n* `Conv3D`: Layer of 3D convolution, ususlly for video. # of parameters = # of input channels × # of kernel size (e.g. 3×3×3) × # of kernels.\n\n* `SeparableConv2D`: Depthwise 2D separable covolution. Unlike the traditional convolution, separable convolutions consist in first performing a depthwise spatial convolution (which acts on each input channel separately) followed by a pointwise convolution which mixes together the resulting output channels. # of parameters = # of input channels × size of convolutional kernel + # of input channels × 1 × 1 × # of output channels. Usually, depthwise separable convolution has a much smaller number of parameters with a better performance.\n\n* `DepthwiseConv2D`: Depthwise 2D convolution. Depthwise convolutions consists in performing just the first step in a depthwise separable convolution (which acts on each input channel separately). Usually the # of input and output channels are the same, but can be altered through the `depth_multiplier` argument to control how many output channels are generated per input channel in the depthwise step. # of output channles =  # of input channles × depth_multiplier. # of parameters = # of input channels × size of kernel × `depth_multiplier`.\n\n* `Conv2DTranspose`:2D Transposed convolution layer (sometimes called Deconvolution), but this is not the inverse operation of convolution. When the kernal maintains the same as convolution, and given the input size the same as the output size of convolution, then the output size of the transposed convolution is the same as the input size of convolution.\n\n* `LocallyConnected2D`: Locally-connected layer for 2D inputs. This layer works similarly to the `Conv2D` layer, except that weights are unshared, thus has much more parameters than `Conv2D`.\n\n* `MaxPooling2D`: 2D max pooling layer, also called down-sampling layer. This layer is for reducing dimension without any trainable prameter.\n\n* `AveragePooling2D`: 2D average pooling layer.\n\n* `GlobalMaxPool2D`: Global max pooling layer. Only one value preserved for each channel, usually used between convolution layer and fully connected layer, which is a substitution of `Flatten`.\n\n* `GlobalAvgPool2D`: Global average pooling layer. Only one value preserved for each channel.\n\n\n**Recursive network related layers**\n\n* `Embedding`: Embedding layer, provides an encoding with higher efficiency than one-hot for discrete features. It is usually used for projecting input words into dense vectors. Training is required for the parameters in the embedding layer.\n\n* `LSTM`: Long Short-Term Memory layer, which is the most popular layer for the recursive network. It contains carry track and is composed of a cell, an input gate, an output gate and a forget gate, which significantly alleviate the problem of gradient vanishing and thus applicable for the problem of long-term dependency. All the middle results could be observed when the patameter `return_sequences` is set as `True`; in the opposite case only the final result is returned.\n\n* `GRU`: Gated Recursive Unit Layer, a simplified version of LSTM without carry track, thus has less parameters and could be trained faster.\n\n* `SimpleRNN`: Simple Recursive Neural Network layer. It is not popular due to the problem of gradient vanishing, which made it inapplicable to the long-dependence.\n\n* `ConvLSTM2D`: Convolutional LSTM layer. Has similar structure to LSTM but the conversion operation to both input and status are convolution.\n\n* `Bidirectional`: Bi-directional wrapper for RNNs, for wrapping layers (such as LSTM and GRU) into bi-directional RNN, enhancing the capability of feature extraction.\n\n* `RNN`: Base class of RNN. It accepts an RNN cell or a list of RNN cells, and iterate on the sequence to convert the input as an RNN through the calling of `tf.keras.backend.rnn` function.\n\n* `LSTMCell`: LSTM cell. Unlike iterating across the whole sequence as `LSTM`, it only iterate once on the sequence. It would be more intuitive to understand the LSTM equals to `LSTMCell` wrapped by the base layer `RNN`.\n\n* `GRUCell`: GRU cell. Unlike iterating across the whole sequence as `GRU`, it only iterate once on the sequence.\n\n* `SimpleRNNCell`: SimpleRNN cell. Unlike iterating across the whole sequence as `SimpleRNN`, it only iterate once on the sequence.\n\n* `AbstractRNNCell`: Abstract RNN Cell. It allows user to customize RNN cell through inheritance and subsequently construct the RNN layer through wrapping these RNN cells by RNN base layer.\n\n* `Attention`: Dot-product attention layer, a.k.a. Luong-style attention, for constructing attention model.\n\n* `AdditiveAttention`: Additive attention layer, a.k.a. Bahdanau-style attention, for constructing attention model.\n\n* `TimeDistributed`: Time distributed wrapper, allows applying `Dense`, `Conv2D` to each time segment.\n\n```python\n\n```\n\n### 2. Customized Model Layer\n\n\nIt is recommended to use `Lambda` layer for customized model layer without trainable parameter.\n\nFor the customized model layer with trainable parameters, it is recommended to inherite from the base class `Layer`.\n\nWe only need to define forward propagation for `Lambda` layer since there is no trainable parameter, thus it is easier in application comparing to the inheritance from base class `Layer`.\n\nThe forward propagation of `Lambda` layer could be expressed using `lambda` function or keyword `def` in Python.\n\n```python\nimport tensorflow as tf\nfrom tensorflow.keras import layers,models,regularizers\n\nmypower = layers.Lambda(lambda x:tf.math.pow(x,2))\nmypower(tf.range(5))\n```\n\n```\n<tf.Tensor: shape=(5,), dtype=int32, numpy=array([ 0,  1,  4,  9, 16], dtype=int32)>\n```\n\n\nInheriting from `Layer` needs re-implementation of the initialization, `build`and `call` methods. Here is an example of simplified linear layer, which is similar to `Dense`.\n\n```python\nclass Linear(layers.Layer):\n    def __init__(self, units=32, **kwargs):\n        super(Linear, self).__init__(**kwargs)\n        self.units = units\n    \n    # The trainable parameters are defined in build method\n    def build(self, input_shape): \n        self.w = self.add_weight(\"w\",shape=(input_shape[-1], self.units),\n                                 initializer='random_normal',\n                                 trainable=True) # Parameter named \"w\" is compulsory or an error will be thrown out\n        self.b = self.add_weight(\"b\",shape=(self.units,),\n                                 initializer='random_normal',\n                                 trainable=True)\n        super(Linear,self).build(input_shape) # Identical to self.built = True\n\n    # The logic of forward propagation is defined in call method, and is called by __call__ method\n    @tf.function\n    def call(self, inputs): \n        return tf.matmul(inputs, self.w) + self.b\n    \n    # Use customized get-config method to save the model as h5 format, specifically for the model composed through Functional API with customized Layer\n    def get_config(self):  \n        config = super(Linear, self).get_config()\n        config.update({'units': self.units})\n        return config\n\n```\n\n```python\nlinear = Linear(units = 8)\nprint(linear.built)\n# Specify input_shape, call build method; the 0th dimension is for the number of samples, should be filled with None.\nlinear.build(input_shape = (None,16)) \nprint(linear.built)\n```\n\n```\nFalse\nTrue\n```\n\n```python\nlinear = Linear(units = 8)\nprint(linear.built)\nlinear.build(input_shape = (None,16)) \nprint(linear.compute_output_shape(input_shape = (None,16)))\n```\n\n```\nFalse\n(None, 8)\n```\n\n```python\nlinear = Linear(units = 16)\nprint(linear.built)\n# If built = False, the __call__ method will call \"build\" method first, then call \"call\" method\nlinear(tf.random.uniform((100,64))) \nprint(linear.built)\nconfig = linear.get_config()\nprint(config)\n```\n\n```\nFalse\nTrue\n{'name': 'linear_3', 'trainable': True, 'dtype': 'float32', 'units': 16}\n```\n\n```python\ntf.keras.backend.clear_session()\n\nmodel = models.Sequential()\n# Note: the input_shape here will be modified by the model, so we don't have to fill None in the dimension representing the number of samples.\nmodel.add(Linear(units = 1,input_shape = (2,)))  \nprint(\"model.input_shape: \",model.input_shape)\nprint(\"model.output_shape: \",model.output_shape)\nmodel.summary()\n```\n\n```\nmodel.input_shape:  (None, 2)\nmodel.output_shape:  (None, 1)\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nlinear (Linear)              (None, 1)                 3         \n=================================================================\nTotal params: 3\nTrainable params: 3\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\nmodel.compile(optimizer = \"sgd\",loss = \"mse\",metrics=[\"mae\"])\nprint(model.predict(tf.constant([[3.0,2.0],[4.0,5.0]])))\n\n\n# Save as h5 formatted model\nmodel.save(\"../data/linear_model.h5\",save_format = \"h5\")\nmodel_loaded_keras = tf.keras.models.load_model(\n    \"../data/linear_model.h5\",custom_objects={\"Linear\":Linear})\nprint(model_loaded_keras.predict(tf.constant([[3.0,2.0],[4.0,5.0]])))\n\n\n# Save as tf formatted model\nmodel.save(\"../data/linear_model\",save_format = \"tf\")\nmodel_loaded_tf = tf.keras.models.load_model(\"../data/linear_model\")\nprint(model_loaded_tf.predict(tf.constant([[3.0,2.0],[4.0,5.0]])))\n\n```\n\n```\n[[-0.04092304]\n [-0.06150477]]\n[[-0.04092304]\n [-0.06150477]]\nINFO:tensorflow:Assets written to: ../data/linear_model/assets\n[[-0.04092304]\n [-0.06150477]]\n```\n\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter5-5.md",
    "content": "# 5-5 losses\n\nIn general, the target function in supervised learning consists of loss function and regularization term. (Target = Loss + Regularization)\n\nFor the keras model, the regularization term of the target function is usually designated in each layer, such as using `kernel_regularizer` and `bias_regularizer` parameters in `Dense` layer to sepecify using l1 or l2 norm. On the other hand, `kernel_constraint` and `bias_constraint` parameters can limit the range of the weights, which is also a method of regularization.\n\nLoss function is designated during the compilation of the model. For the regression models, the most popular loss function is the mean squared error `mean_squared_error`.\n\nFor binary classification model, the most popular loss function is binary cross entropy `binary_crossentropy`.\n\nFor multiple classification model, when the labels are one-hot encoded, we should use categorical cross entropy `categorical_crossentropy` as loss function; for the category with ordinal encoding, the sparse categorical cross entropy `sparse_categorical_crossentropy` should be used as the loss funcion.\n\nWe may define customized loss function when necessary. The customzed loss function requires two tensors `y_true` and `y_pred` as input,and it output a scalar as the value of the caluclated loss function.\n\n\n```python\nimport numpy as np\nimport pandas as pd\nimport tensorflow as tf\nfrom tensorflow.keras import layers,models,losses,regularizers,constraints\n```\n\n### 1. Loss Function and Regularization Term\n\n```python\ntf.keras.backend.clear_session()\n\nmodel = models.Sequential()\nmodel.add(layers.Dense(64, input_dim=64,\n                kernel_regularizer=regularizers.l2(0.01), \n                activity_regularizer=regularizers.l1(0.01),\n                kernel_constraint = constraints.MaxNorm(max_value=2, axis=0))) \nmodel.add(layers.Dense(10,\n        kernel_regularizer=regularizers.l1_l2(0.01,0.01),activation = \"sigmoid\"))\nmodel.compile(optimizer = \"rmsprop\",\n        loss = \"binary_crossentropy\",metrics = [\"AUC\"])\nmodel.summary()\n\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\ndense (Dense)                (None, 64)                4160      \n_________________________________________________________________\ndense_1 (Dense)              (None, 10)                650       \n=================================================================\nTotal params: 4,810\nTrainable params: 4,810\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n\n### 2. Pre-defined Loss Function\n\n\nThere are two types of implementation of the pre-defined loss function: class-type or function-type.\n\ne.g. `CategoricalCrossentropy` and `categorical_crossentropy` are both categorical cross entropy; the former is the implementation by class, and the latter is the by function.\n\nThe most frequently used pre-defined loss functions are:\n\n* mean_squared_error (Mean Squared Error, for regression, dubbed as \"mse\", class-type and function-type implementations are `MeanSquaredError` and `MSE`, respectively)\n\n* mean_absolute_error (Mean Absolute Error, for regression, dubbed as \"mae\", class-type and function-type implementations are `MeanAbsoluteError` and `MAE`, respectively)\n\n* mean_absolute_percentage_error (Mean Absolute Percentage Error, for regression dubed as \"mape\", class-type and function-type implementations are `MeanAbsolutePercentageError` and `MAPE`, respectively)\n\n* Huber (Huber Loss，for regression, performance is between \"mse\" and \"mae\", robust to outliers, thus has advantages comparint to \"mse\"; implemented only in class)\n\n* binary_crossentropy (Binary Cross Entropy, for binary classification; the class-type implementation is `BinaryCrossentropy`)\n\n* categorical_crossentropy (Categorical Cross Entropy, for multiple classification, requires one-hot encoding for the label; the class-type implementation is `CategoricalCrossentropy`)\n\n* sparse_categorical_crossentropy (Sparse Categorical Cross Entropy, used for multiple classification, requires ordinal encoding; the class-type implementation is `SparseCategoricalCrossentropy`)\n\n* hinge (Hinge loss function, for binary classification, famous for the application as loss function in Support Vector Machine (SVM); the class-type implementation is `Hinge`)\n\n* kld (Kullback-Leibler divergence loss, usually used as the loss function in the expectation maximization (EM) algorithm; it is a measurement of the difference between two probability distributions. The class-type and function-type implementations are `KLDivergence` and `KLD`, respectively)\n\n* cosine_similarity (Cosine similarity, for multiple classification; the class-type implementation is `CosineSimilarity`)\n\n```python\n\n```\n\n### 3. Customized Loss Function\n\n\nThe customzed loss function requires two tensors `y_true` and `y_pred` as input,and it output a scalar as the value of the caluclated loss function.\n\nIt is also possible to customize loss function through inheriting from the base class `tf.keras.losses.Loss` and rewrite the `call` method to implement the calculation of loss.\n\nHere is an example of customized implementation to the Focal Loss, which is an improvement of `binary_crossentropy` loss function.\n\nFocal Loss results better comparing to the binary cross entropy, given the condition of unbalanced category and many easy samples in training data.\n\nIt has two adjustable parameters，alpha and gamma. The aim of alpha is to decay the weight of negative samples，and gamma to decay the weight of the easy samples. \n\nSo the model will then focal its weight on the positive samples and hard samples. This is why the loss is called focal loss. \n\nYou may refer to the following article for details of this topic: [Understand Focal Loss and GHM in 5 minutes](https://www.zhihu.com/question/63581984)\n\n```python\ndef focal_loss(gamma=2., alpha=0.75):\n    \n    def focal_loss_fixed(y_true, y_pred):\n        bce = tf.losses.binary_crossentropy(y_true, y_pred)\n        p_t = (y_true * y_pred) + ((1 - y_true) * (1 - y_pred))\n        alpha_factor = y_true * alpha + (1 - y_true) * (1 - alpha)\n        modulating_factor = tf.pow(1.0 - p_t, gamma)\n        loss = tf.reduce_sum(alpha_factor * modulating_factor * bce,axis = -1 )\n        return loss\n    return focal_loss_fixed\n\n```\n\n```python\nclass FocalLoss(losses.Loss):\n    \n    def __init__(self,gamma=2.0,alpha=0.75,name = \"focal_loss\"):\n        self.gamma = gamma\n        self.alpha = alpha\n\n    def call(self,y_true,y_pred):\n        bce = tf.losses.binary_crossentropy(y_true, y_pred)\n        p_t = (y_true * y_pred) + ((1 - y_true) * (1 - y_pred))\n        alpha_factor = y_true * self.alpha + (1 - y_true) * (1 - self.alpha)\n        modulating_factor = tf.pow(1.0 - p_t, self.gamma)\n        loss = tf.reduce_sum(alpha_factor * modulating_factor * bce,axis = -1 )\n        return loss\n```\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n\n```python\n\n```\n"
  },
  {
    "path": "english/Chapter5-6.md",
    "content": "# 5-6 metrics\n\nBesides being used as optimization target during training, loss function also acts as an evaluation remark of model performance. However, in general, the performance of the model is evaluated using other terms.\n\nThis is evaluation metrics. Loss function could be used as metrics. `MAE`, `MSE`, `CategoricalCrossentropy` are several most common metrics.\n\nHowever, metrics is not necessarily able to act as loss function, such as `AUC`, `Accuracy`, `Precision`. This is because metrics is not required to be continuously differentiable, while this is a general requirement for the loss function.\n\nMultiple metrics could be specified through list during the compilation of the model.\n\nMetrics could be customized if necessary.\n\nThe customzed metrics requires two tensors `y_true` and `y_pred` as input,and it output a scalar as the value of the caluclated metrics.\n\nIt is also possible to customize metrics through inheriting from the base class `tf.keras.metrics.Metric` and rewrite the `init`, `update_state`, and `result` methods to implement the calculation of metrics.\n\nUsually the training are performed batch by batch, while metrics could be calculated only after a whole epoch, thus the class-type metrics is more popular. We need to write initialization method to create the necessary middle variables (they are related to the resulting metrics), write the `update_state` method to update the states of these middle variables after each batch, and write the `result` method for the final output.\n\nIf the metrics is written as a function, it is only possible to use the avaraged metrics among all the batches in the epoch as the overal metrics. This usually deviates from the result calculated by all training steps in the epoch.\n\n\n\n### 1. Most Frequently Used Pre-defined Metrics\n\n\n* MeanSquaredError (Mean Squared Error, used for regression, dubbed as \"MSE\", function name `mse`)\n\n* MeanAbsoluteError (Mean Absolute Error, used for regression, dubbed as \"MAE\", function name `mae`)\n\n* MeanAbsolutePercentageError (Mean Absolute Percentage Error, used for regression, dubbed as \"MAPE\", function name `mape`)\n\n* RootMeanSquaredError (Root-Mean-Squared-Error, used for regression.)\n\n* Accuracy (Accuracy，used for classification, could be represented as a string \"Accuracy\"; Accuracy=(TP+TN)/(TP+TN+FP+FN); requires ordinal encoding for the inputs `y_true` and `y_pred`.)\n\n* Precision (Precision, used for binary classification;; Precision = TP/(TP+FP))\n\n* Recall (Recalling rate, used for binary classification; Recall = TP/(TP+FN))\n\n* TruePositives (True positives, used for binary classification.)\n\n* TrueNegatives (True negatives, used for binary classification.)\n\n* FalsePositives (False positives, used for binary classification.)\n\n* FalseNegatives (False negatives, used for binary classification.)\n\n* AUC (Area Under the Curve, represents the area under the ROC curve (TPR vs FPR); it is used for binary classification. An intuitive explanation: pick a positive sample and a negative sample, AUC is the possibility that the prediction of positive sample larger than the prediction of the negative sample.)\n\n* CategoricalAccuracy (Catigorical Accuracy, same as `Accuracy` except requiring one-hot encoding for the input label `y_true`.)\n\n* SparseCategoricalAccuracy (Sparse Categorical Accuracy, same as `Accuracy` except requiring ordinal encoding for the label y_true.)\n\n* MeanIoU (Intersection-Over-Union, ususally for image segmentation.)\n\n* TopKCategoricalAccuracy (TopK accuracy for multiple classification, requires one-hot encoding for the input label y_true)\n\n* SparseTopKCategoricalAccuracy (TopK accuracy for multiple classification, requires ordinary encoding for the input label y_true)\n\n* Mean (Mean value)\n\n* Sum (Summation)\n\n```python\n\n```\n\n```python\n\n```\n\n### 2. Customized Metrics\n\n\nHere we use the K-S (Kolmogorov-Smirnov) statistic, which is frequently used in financial risk management, as an example for the customized metrics.\n\nK-S statistic is used for binary classification problem; KS = max(TPR - FPR), where TPR = TP / (TP + FN), FPR = FP / (FP + TN)\n\nTPR curve is the cumulative distribution function (CDF) of the positive samples, while FPR curve is the CDF of the negative samples.\n\nK-S statistic is the maximum of the difference between the CDF of positive and negative samples.\n\n![](../data/KS_curve.png)\n\n```python\nimport numpy as np\nimport pandas as pd\nimport tensorflow as tf\nfrom tensorflow.keras import layers,models,losses,metrics\n\n# Customized metrics defined by function\n@tf.function\ndef ks(y_true,y_pred):\n    y_true = tf.reshape(y_true,(-1,))\n    y_pred = tf.reshape(y_pred,(-1,))\n    length = tf.shape(y_true)[0]\n    t = tf.math.top_k(y_pred,k = length,sorted = False)\n    y_pred_sorted = tf.gather(y_pred,t.indices)\n    y_true_sorted = tf.gather(y_true,t.indices)\n    cum_positive_ratio = tf.truediv(\n        tf.cumsum(y_true_sorted),tf.reduce_sum(y_true_sorted))\n    cum_negative_ratio = tf.truediv(\n        tf.cumsum(1 - y_true_sorted),tf.reduce_sum(1 - y_true_sorted))\n    ks_value = tf.reduce_max(tf.abs(cum_positive_ratio - cum_negative_ratio)) \n    return ks_value\n```\n\n```python\ny_true = tf.constant([[1],[1],[1],[0],[1],[1],[1],[0],[0],[0],[1],[0],[1],[0]])\ny_pred = tf.constant([[0.6],[0.1],[0.4],[0.5],[0.7],[0.7],[0.7],\n                      [0.4],[0.4],[0.5],[0.8],[0.3],[0.5],[0.3]])\ntf.print(ks(y_true,y_pred))\n```\n\n```\n0.625\n```\n\n```python\n# Customized metrics defined by class\nclass KS(metrics.Metric):\n    \n    def __init__(self, name = \"ks\", **kwargs):\n        super(KS,self).__init__(name=name,**kwargs)\n        self.true_positives = self.add_weight(\n            name = \"tp\",shape = (101,), initializer = \"zeros\")\n        self.false_positives = self.add_weight(\n            name = \"fp\",shape = (101,), initializer = \"zeros\")\n   \n    @tf.function\n    def update_state(self,y_true,y_pred):\n        y_true = tf.cast(tf.reshape(y_true,(-1,)),tf.bool)\n        y_pred = tf.cast(100*tf.reshape(y_pred,(-1,)),tf.int32)\n        \n        for i in tf.range(0,tf.shape(y_true)[0]):\n            if y_true[i]:\n                self.true_positives[y_pred[i]].assign(\n                    self.true_positives[y_pred[i]]+1.0)\n            else:\n                self.false_positives[y_pred[i]].assign(\n                    self.false_positives[y_pred[i]]+1.0)\n        return (self.true_positives,self.false_positives)\n    \n    @tf.function\n    def result(self):\n        cum_positive_ratio = tf.truediv(\n            tf.cumsum(self.true_positives),tf.reduce_sum(self.true_positives))\n        cum_negative_ratio = tf.truediv(\n            tf.cumsum(self.false_positives),tf.reduce_sum(self.false_positives))\n        ks_value = tf.reduce_max(tf.abs(cum_positive_ratio - cum_negative_ratio)) \n        return ks_value\n\n```\n\n```python\ny_true = tf.constant([[1],[1],[1],[0],[1],[1],[1],[0],[0],[0],[1],[0],[1],[0]])\ny_pred = tf.constant([[0.6],[0.1],[0.4],[0.5],[0.7],[0.7],\n                      [0.7],[0.4],[0.4],[0.5],[0.8],[0.3],[0.5],[0.3]])\n\nmyks = KS()\nmyks.update_state(y_true,y_pred)\ntf.print(myks.result())\n\n```\n\n```\n0.625\n```\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter5-7.md",
    "content": "# 5-7 optimizers\n\nThere is a group of magic cooks in machine learning. Their daily life looks like:\n\nThey grab some raw material (data), put them into a pot (model), light some fire (optimization algorithm), and wait until the cuisine is ready.\n\nHowever, anyone who has cooking experience knows that fire controlling is the key part. Even using same material with the same recipe, different fire level leads to totally different results: medium well, burnt, or still raw.\n\nThis theroy on cooking also applies to the machine learning. The choice of the optimization algorithm determines the final performance of the final model. An unsatisfying performance is not necessarily due to the problem of feature or model designing, instead, it might be attributed to the choice of optimization algorithm.\n\nThe evolution of the optimization algorithm for the deep learning is: SGD -> SGDM -> NAG ->Adagrad -> Adadelta(RMSprop) -> Adam -> Nadam\n\nYou may refer to the following article to for more details [\"Understand the differences in optimization algorthms with just one framework: SGD/AdaGrad/Adam\"](https://zhuanlan.zhihu.com/p/32230623)\n\nFor the beginners, choosing Adam as the optimizer and using the default parameters will set everything for you.\n\nSome researchers who are chaising better metrics for publications could use Adam as the initial optimizer and use SGD later for fine-tuning the parameters for better performance.\n\nThere are some cutting-edge optimization algorithms claiming a better performance, e.g. LazyAdam, Look-ahead, RAdam, Ranger, etc.\n\n\n```python\n\n```\n\n### 1. How To Use the Optimizer\n\n\nOptimizer accepts variables and corresponding gradient through `apply_gradients` method to iterate over the given variables. Another way is using `minimize` method to optimize the target function iteratively.\n\nAnother common way is passing the optimizer to the `Model` of keras, and call `model.fit` method to optimize the loss function.\n\nA variable named `optimizer.iterations` will be created during optimizer initialization to record the number of iteration. Thus the optimizer should be created outside the decorator `@tf.function` with the same reason as `tf.Variable`.\n\n```python\nimport tensorflow as tf\nimport numpy as np \n\n# Time stamp\n@tf.function\ndef printbar():\n    ts = tf.timestamp()\n    today_ts = ts%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8,end = \"\")\n    tf.print(timestring)\n    \n```\n\n```python\n# The minimal value of f(x) = a*x**2 + b*x + c\n\n# Here we use optimizer.apply_gradients\n\nx = tf.Variable(0.0,name = \"x\",dtype = tf.float32)\noptimizer = tf.keras.optimizers.SGD(learning_rate=0.01)\n\n@tf.function\ndef minimizef():\n    a = tf.constant(1.0)\n    b = tf.constant(-2.0)\n    c = tf.constant(1.0)\n    \n    while tf.constant(True): \n        with tf.GradientTape() as tape:\n            y = a*tf.pow(x,2) + b*x + c\n        dy_dx = tape.gradient(y,x)\n        optimizer.apply_gradients(grads_and_vars=[(dy_dx,x)])\n        \n        # Condition of terminating the iteration\n        if tf.abs(dy_dx)<tf.constant(0.00001):\n            break\n            \n        if tf.math.mod(optimizer.iterations,100)==0:\n            printbar()\n            tf.print(\"step = \",optimizer.iterations)\n            tf.print(\"x = \", x)\n            tf.print(\"\")\n                \n    y = a*tf.pow(x,2) + b*x + c\n    return y\n\ntf.print(\"y =\",minimizef())\ntf.print(\"x =\",x)\n```\n\n```python\n\n```\n\n```python\n# Minimal value of f(x) = a*x**2 + b*x + c\n\n# Here we use optimizer.minimize\n\nx = tf.Variable(0.0,name = \"x\",dtype = tf.float32)\noptimizer = tf.keras.optimizers.SGD(learning_rate=0.01)   \n\ndef f():   \n    a = tf.constant(1.0)\n    b = tf.constant(-2.0)\n    c = tf.constant(1.0)\n    y = a*tf.pow(x,2)+b*x+c\n    return(y)\n\n@tf.function\ndef train(epoch = 1000):  \n    for _ in tf.range(epoch):  \n        optimizer.minimize(f,[x])\n    tf.print(\"epoch = \",optimizer.iterations)\n    return(f())\n\ntrain(1000)\ntf.print(\"y = \",f())\ntf.print(\"x = \",x)\n\n```\n\n```python\n\n```\n\n```python\n# Minimal value of f(x) = a*x**2 + b*x + c\n# Here we use model.fit\n\ntf.keras.backend.clear_session()\n\nclass FakeModel(tf.keras.models.Model):\n    def __init__(self,a,b,c):\n        super(FakeModel,self).__init__()\n        self.a = a\n        self.b = b\n        self.c = c\n    \n    def build(self):\n        self.x = tf.Variable(0.0,name = \"x\")\n        self.built = True\n    \n    def call(self,features):\n        loss  = self.a*(self.x)**2+self.b*(self.x)+self.c\n        return(tf.ones_like(features)*loss)\n    \ndef myloss(y_true,y_pred):\n    return tf.reduce_mean(y_pred)\n\nmodel = FakeModel(tf.constant(1.0),tf.constant(-2.0),tf.constant(1.0))\n\nmodel.build()\nmodel.summary()\n\nmodel.compile(optimizer = \n              tf.keras.optimizers.SGD(learning_rate=0.01),loss = myloss)\nhistory = model.fit(tf.zeros((100,2)),\n                    tf.ones(100),batch_size = 1,epochs = 10)  # Iterate for 1000 times\n\n```\n\n```python\ntf.print(\"x=\",model.x)\ntf.print(\"loss=\",model(tf.constant(0.0)))\n```\n\n```python\n\n```\n\n### 2. Pre-defined Optimizers\n\n\nThe evolution of the optimization algorithm for the deep learning is: SGD -> SGDM -> NAG ->Adagrad -> Adadelta(RMSprop) -> Adam -> Nadam\n\nThere are corresponding classes in `keras.optimizers` sub-module as the implementations of these optimizers.\n\n* `SGD`, the default parameters is for a pure SGD. For a non-zero parameter `momentum`, the optimizer changes to SGDM since it considers the first-order momentum. For `nesterov` = True, the optimizer changes to NAG (Nesterov Accelerated Gradient), which calculates the gradient of the one further step.\n\n* `Adagrad`, considers the second-order momentum and equipted with self-adaptive learning rate; the drawback is a slow learning rate at a later stage or early ceasing of learning due to the monotonically desending leanring rate.\n\n* `RMSprop`, considers the second-order momentum and equipted with self-adaptive learning rate; improves the `Adagrad` through exponential smoothing, which only cnosiders the second-order momentum in a given window length.\n\n* `Adadelta`, considers the second-order momentum, similar as `RMSprop` but more complicated with an improved self-adaption.\n\n* `Adam`, consider both the first-order and the second-order momentum; it improves `RMSprop` by including first-order momentum.\n\n* `Nadam`, improves `Adam` by including Nesterov Acceleration.\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n\n```python\n\n```\n\n```python\n\n```\n"
  },
  {
    "path": "english/Chapter5-8.md",
    "content": "# 5-8 callbacks\n\nThe callbacks in `tf.keras` is a class, usually specified as a parameter when use `model.fit`. It provides the extra operations at the starting or the ending of training, each epoch or each batch. These operations include record some log information, change learning rate, early termination of the training, etc.\n\nLikewise, this callbacks parameter is also able to be specified for `model.evaluate` or `model.predict`, providing extra operations at the starting or the ending of the evaluation, prediction, or each batch. However this method is rarely used.\n\nFor the most cases, the pre-defined callbacks in the sub-module `keras.callbacks` are sufficient. It is also possible to define child class inheriting `keras.callbacks.Callbacks` to customize callbacks if necessary.\n\nAll the classes of callbacks are inheriting `keras.callbacks.Callbacks`, which contains two attributes: `params` and `model`. \n\n`params` is a dictionary, which records training parameters (e.g. verbosity, batch size, number of epochs, etc.). `model` is the reference to the current model.\n\nWhat's more, there is an extra argument `logs` in the certain methods of the callbacks classes, such as `on_epoch_begin`, `on_batch_end`. This parameter provides certain information of current epoch or batch and are able to save the computing results. These `logs` variables are able to transfer among the functions with the same name in these callbacks classes.\n\n\n\n### 1. Pre-defined Callbacks\n\n\n* `BaseLogger`: it calcuates the mean metrics among all batches for each epoch. For those metrics with middle status in `staeful_metrics`, it uses the final metrics without calculating mean value for all the batches, and the final mean metrics is added to the variable `logs`. This callback is automatically applied to every Keras model and is applied first.\n\n* `History`: a dictionary that records the metrics of each epoch calculated by `BaseLogger` and is returned by `model.fit`. This callback is automatically applied to every Keras model after `BaseLogger`.\n\n* `EarlyStopping`: this callback terminates the training if the monitoring metrics are not significantly increased after certain number of epoches.\n\n* `TensorBoard`: this callback saves the visualized log of the Tensorboard. It supports visualization of metrics, graphs and parameters in the model.\n\n* `ModelCheckpoint`: this callback saves model after each epoch.\n\n* `ReduceLROnPlateau`: this callback reduce the learning rate with certain rate if the monitoring metrics are not significantly increased after certain number of epoches.\n\n* `TerminateOnNaN`: terminate the training if loss is NaN.\n\n* `LearningRateScheduler`: it controls the learning rate before each epoch with given function between the learning rate `lr` and epoch.\n\n* `CSVLogger`: save `logs` of each epoch in CSV file.\n\n* `ProgbarLogger`: print the `logs` of each epoch into stardard I/O stream.\n\n\n\n```python\n\n```\n\n### 2. Customized Callbacks\n\n\nIt is possible to write a simple callback through `callbacks.LambdaCallback`, or write a complicated callback through inheriting base class `callbacks.Callback`.\n\nDon't hesitate to read the source code to know more details of the callbacks in `tf.Keras`.\n\n```python\nimport numpy as np\nimport pandas as pd\nimport tensorflow as tf\nfrom tensorflow.keras import layers,models,losses,metrics,callbacks\nimport tensorflow.keras.backend as K \n\n```\n\n```python\n# Example of the simple callback using LambdaCallback\n\nimport json\njson_log = open('../data/keras_log.json', mode='wt', buffering=1)\njson_logging_callback = callbacks.LambdaCallback(\n    on_epoch_end=lambda epoch, logs: json_log.write(\n        json.dumps(dict(epoch = epoch,**logs)) + '\\n'),\n    on_train_end=lambda logs: json_log.close()\n)\n\n```\n\n```python\n# Example of the complicated callback through base class inheritance. This is the source code of LearningRateScheduler.\n\nclass LearningRateScheduler(callbacks.Callback):\n    \n    def __init__(self, schedule, verbose=0):\n        super(LearningRateScheduler, self).__init__()\n        self.schedule = schedule\n        self.verbose = verbose\n\n    def on_epoch_begin(self, epoch, logs=None):\n        if not hasattr(self.model.optimizer, 'lr'):\n            raise ValueError('Optimizer must have a \"lr\" attribute.')\n        try:  \n            lr = float(K.get_value(self.model.optimizer.lr))\n            lr = self.schedule(epoch, lr)\n        except TypeError:  # Support for old API for backward compatibility\n            lr = self.schedule(epoch)\n        if not isinstance(lr, (tf.Tensor, float, np.float32, np.float64)):\n            raise ValueError('The output of the \"schedule\" function '\n                             'should be float.')\n        if isinstance(lr, ops.Tensor) and not lr.dtype.is_floating:\n            raise ValueError('The dtype of Tensor should be float')\n        K.set_value(self.model.optimizer.lr, K.get_value(lr))\n        if self.verbose > 0:\n            print('\\nEpoch %05d: LearningRateScheduler reducing learning '\n                 'rate to %s.' % (epoch + 1, lr))\n\n    def on_epoch_end(self, epoch, logs=None):\n        logs = logs or {}\n        logs['lr'] = K.get_value(self.model.optimizer.lr)\n\n```\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter5.md",
    "content": "# Chapter 5: Mid-level API in TensorFlow\n\nMid-level API in TensorFlow includes:\n\n* Data pipeline (tf.data)\n\n* Feature column (tf.feature_column)\n\n* Activation function (tf.nn)\n\n* Model layer (tf.keras.layers)\n\n* Loss function (tf.keras.losses)\n\n* Evaluation function (tf.keras.metrics)\n\n* Optimizer (tf.keras.optimizers)\n\n* Callback function (tf.keras.callbacks)\n\nIf we compare a model to a house, then these fourth level APIs are the walls.\n\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n\n```python\n\n```\n"
  },
  {
    "path": "english/Chapter6-1.md",
    "content": "# 6-1 Three Ways of Modeling\n\nThere are three ways of modeling: using `Sequential` to construct model with the order of layers, using functional APIs to construct model with arbitrary structure, using child class inheriting from the base class `Model`.\n\nFor the models with sequenced structure, `Sequential` method should be given the highest priority.\n\nFor the models with nonsequenced structures such as multiple input/output, shared weights, or residual connections, modeling with functional API is recommended.\n\nModeling through child class of `Model` should be AVOIDED unless with special requirements. This method is flexible, but also fallible.\n\nHere are the examples of modeling using the three above-mentioned methods to classify IMDB movie reviews.\n\n```python\nimport numpy as np \nimport pandas as pd \nimport tensorflow as tf\nfrom tqdm import tqdm \nfrom tensorflow.keras import *\n\n\ntrain_token_path = \"../data/imdb/train_token.csv\"\ntest_token_path = \"../data/imdb/test_token.csv\"\n\nMAX_WORDS = 10000  # We will only consider the top 10,000 words in the dataset\nMAX_LEN = 200  # We will cut reviews after 200 words\nBATCH_SIZE = 20 \n\n# Constructing data pipeline\ndef parse_line(line):\n    t = tf.strings.split(line,\"\\t\")\n    label = tf.reshape(tf.cast(tf.strings.to_number(t[0]),tf.int32),(-1,))\n    features = tf.cast(tf.strings.to_number(tf.strings.split(t[1],\" \")),tf.int32)\n    return (features,label)\n\nds_train=  tf.data.TextLineDataset(filenames = [train_token_path]) \\\n   .map(parse_line,num_parallel_calls = tf.data.experimental.AUTOTUNE) \\\n   .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n   .prefetch(tf.data.experimental.AUTOTUNE)\n\nds_test=  tf.data.TextLineDataset(filenames = [test_token_path]) \\\n   .map(parse_line,num_parallel_calls = tf.data.experimental.AUTOTUNE) \\\n   .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n   .prefetch(tf.data.experimental.AUTOTUNE)\n\n```\n\n```python\n\n```\n\n### 1. Modeling Using `Sequential`\n\n```python\ntf.keras.backend.clear_session()\n\nmodel = models.Sequential()\n\nmodel.add(layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN))\nmodel.add(layers.Conv1D(filters = 64,kernel_size = 5,activation = \"relu\"))\nmodel.add(layers.MaxPool1D(2))\nmodel.add(layers.Conv1D(filters = 32,kernel_size = 3,activation = \"relu\"))\nmodel.add(layers.MaxPool1D(2))\nmodel.add(layers.Flatten())\nmodel.add(layers.Dense(1,activation = \"sigmoid\"))\n\nmodel.compile(optimizer='Nadam',\n            loss='binary_crossentropy',\n            metrics=['accuracy',\"AUC\"])\n\nmodel.summary()\n```\n\n![](../data/Sequential模型结构.png)\n\n```python\nimport datetime\nbaselogger = callbacks.BaseLogger(stateful_metrics=[\"AUC\"])\nlogdir = \"../data/keras_model/\" + datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\ntensorboard_callback = tf.keras.callbacks.TensorBoard(logdir, histogram_freq=1)\nhistory = model.fit(ds_train,validation_data = ds_test,\n        epochs = 6,callbacks=[baselogger,tensorboard_callback])\n\n```\n\n```python\n%matplotlib inline\n%config InlineBackend.figure_format = 'svg'\n\nimport matplotlib.pyplot as plt\n\ndef plot_metric(history, metric):\n    train_metrics = history.history[metric]\n    val_metrics = history.history['val_'+metric]\n    epochs = range(1, len(train_metrics) + 1)\n    plt.plot(epochs, train_metrics, 'bo--')\n    plt.plot(epochs, val_metrics, 'ro-')\n    plt.title('Training and validation '+ metric)\n    plt.xlabel(\"Epochs\")\n    plt.ylabel(metric)\n    plt.legend([\"train_\"+metric, 'val_'+metric])\n    plt.show()\n```\n\n```python\nplot_metric(history,\"AUC\")\n```\n\n```python\n\n```\n\n![](../data/6-1-fit模型.jpg)\n\n```python\n\n```\n\n```python\n\n```\n\n### 2. Modeling Using Functional API\n\n```python\ntf.keras.backend.clear_session()\n\ninputs = layers.Input(shape=[MAX_LEN])\nx  = layers.Embedding(MAX_WORDS,7)(inputs)\n\nbranch1 = layers.SeparableConv1D(64,3,activation=\"relu\")(x)\nbranch1 = layers.MaxPool1D(3)(branch1)\nbranch1 = layers.SeparableConv1D(32,3,activation=\"relu\")(branch1)\nbranch1 = layers.GlobalMaxPool1D()(branch1)\n\nbranch2 = layers.SeparableConv1D(64,5,activation=\"relu\")(x)\nbranch2 = layers.MaxPool1D(5)(branch2)\nbranch2 = layers.SeparableConv1D(32,5,activation=\"relu\")(branch2)\nbranch2 = layers.GlobalMaxPool1D()(branch2)\n\nbranch3 = layers.SeparableConv1D(64,7,activation=\"relu\")(x)\nbranch3 = layers.MaxPool1D(7)(branch3)\nbranch3 = layers.SeparableConv1D(32,7,activation=\"relu\")(branch3)\nbranch3 = layers.GlobalMaxPool1D()(branch3)\n\nconcat = layers.Concatenate()([branch1,branch2,branch3])\noutputs = layers.Dense(1,activation = \"sigmoid\")(concat)\n\nmodel = models.Model(inputs = inputs,outputs = outputs)\n\nmodel.compile(optimizer='Nadam',\n            loss='binary_crossentropy',\n            metrics=['accuracy',\"AUC\"])\n\nmodel.summary()\n\n```\n\n```\nModel: \"model\"\n__________________________________________________________________________________________________\nLayer (type)                    Output Shape         Param #     Connected to                     \n==================================================================================================\ninput_1 (InputLayer)            [(None, 200)]        0                                            \n__________________________________________________________________________________________________\nembedding (Embedding)           (None, 200, 7)       70000       input_1[0][0]                    \n__________________________________________________________________________________________________\nseparable_conv1d (SeparableConv (None, 198, 64)      533         embedding[0][0]                  \n__________________________________________________________________________________________________\nseparable_conv1d_2 (SeparableCo (None, 196, 64)      547         embedding[0][0]                  \n__________________________________________________________________________________________________\nseparable_conv1d_4 (SeparableCo (None, 194, 64)      561         embedding[0][0]                  \n__________________________________________________________________________________________________\nmax_pooling1d (MaxPooling1D)    (None, 66, 64)       0           separable_conv1d[0][0]           \n__________________________________________________________________________________________________\nmax_pooling1d_1 (MaxPooling1D)  (None, 39, 64)       0           separable_conv1d_2[0][0]         \n__________________________________________________________________________________________________\nmax_pooling1d_2 (MaxPooling1D)  (None, 27, 64)       0           separable_conv1d_4[0][0]         \n__________________________________________________________________________________________________\nseparable_conv1d_1 (SeparableCo (None, 64, 32)       2272        max_pooling1d[0][0]              \n__________________________________________________________________________________________________\nseparable_conv1d_3 (SeparableCo (None, 35, 32)       2400        max_pooling1d_1[0][0]            \n__________________________________________________________________________________________________\nseparable_conv1d_5 (SeparableCo (None, 21, 32)       2528        max_pooling1d_2[0][0]            \n__________________________________________________________________________________________________\nglobal_max_pooling1d (GlobalMax (None, 32)           0           separable_conv1d_1[0][0]         \n__________________________________________________________________________________________________\nglobal_max_pooling1d_1 (GlobalM (None, 32)           0           separable_conv1d_3[0][0]         \n__________________________________________________________________________________________________\nglobal_max_pooling1d_2 (GlobalM (None, 32)           0           separable_conv1d_5[0][0]         \n__________________________________________________________________________________________________\nconcatenate (Concatenate)       (None, 96)           0           global_max_pooling1d[0][0]       \n                                                                 global_max_pooling1d_1[0][0]     \n                                                                 global_max_pooling1d_2[0][0]     \n__________________________________________________________________________________________________\ndense (Dense)                   (None, 1)            97          concatenate[0][0]                \n==================================================================================================\nTotal params: 78,938\nTrainable params: 78,938\nNon-trainable params: 0\n__________________________________________________________________________________________________\n```\n\n\n![](../data/FunctionalAPI模型结构.png)\n\n```python\nimport datetime\nlogdir = \"../data/keras_model/\" + datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\ntensorboard_callback = tf.keras.callbacks.TensorBoard(logdir, histogram_freq=1)\nhistory = model.fit(ds_train,validation_data = ds_test,epochs = 6,callbacks=[tensorboard_callback])\n\n```\n\n```\nEpoch 1/6\n1000/1000 [==============================] - 32s 32ms/step - loss: 0.5527 - accuracy: 0.6758 - AUC: 0.7731 - val_loss: 0.3646 - val_accuracy: 0.8426 - val_AUC: 0.9192\nEpoch 2/6\n1000/1000 [==============================] - 24s 24ms/step - loss: 0.3024 - accuracy: 0.8737 - AUC: 0.9444 - val_loss: 0.3281 - val_accuracy: 0.8644 - val_AUC: 0.9350\nEpoch 3/6\n1000/1000 [==============================] - 24s 24ms/step - loss: 0.2158 - accuracy: 0.9159 - AUC: 0.9715 - val_loss: 0.3461 - val_accuracy: 0.8666 - val_AUC: 0.9363\nEpoch 4/6\n1000/1000 [==============================] - 24s 24ms/step - loss: 0.1492 - accuracy: 0.9464 - AUC: 0.9859 - val_loss: 0.4017 - val_accuracy: 0.8568 - val_AUC: 0.9311\nEpoch 5/6\n1000/1000 [==============================] - 24s 24ms/step - loss: 0.0944 - accuracy: 0.9696 - AUC: 0.9939 - val_loss: 0.4998 - val_accuracy: 0.8550 - val_AUC: 0.9233\nEpoch 6/6\n1000/1000 [==============================] - 26s 26ms/step - loss: 0.0526 - accuracy: 0.9865 - AUC: 0.9977 - val_loss: 0.6463 - val_accuracy: 0.8462 - val_AUC: 0.9138\n```\n\n```python\nplot_metric(history,\"AUC\")\n```\n\n![](../data/6-1-2-train.jpg)\n\n```python\n\n```\n\n### 3. Customized Modeling Using Child Class of `Model`\n\n```python\n# Define a customized residual module as Layer\n\nclass ResBlock(layers.Layer):\n    def __init__(self, kernel_size, **kwargs):\n        super(ResBlock, self).__init__(**kwargs)\n        self.kernel_size = kernel_size\n    \n    def build(self,input_shape):\n        self.conv1 = layers.Conv1D(filters=64,kernel_size=self.kernel_size,\n                                   activation = \"relu\",padding=\"same\")\n        self.conv2 = layers.Conv1D(filters=32,kernel_size=self.kernel_size,\n                                   activation = \"relu\",padding=\"same\")\n        self.conv3 = layers.Conv1D(filters=input_shape[-1],\n                                   kernel_size=self.kernel_size,activation = \"relu\",padding=\"same\")\n        self.maxpool = layers.MaxPool1D(2)\n        super(ResBlock,self).build(input_shape) # Identical to self.built = True\n    \n    def call(self, inputs):\n        x = self.conv1(inputs)\n        x = self.conv2(x)\n        x = self.conv3(x)\n        x = layers.Add()([inputs,x])\n        x = self.maxpool(x)\n        return x\n    \n    # Need to define get_config method in order to sequentialize the model constructed from the customized Layer by Functional API.\n    def get_config(self):  \n        config = super(ResBlock, self).get_config()\n        config.update({'kernel_size': self.kernel_size})\n        return config\n```\n\n```python\n# Test ResBlock\nresblock = ResBlock(kernel_size = 3)\nresblock.build(input_shape = (None,200,7))\nresblock.compute_output_shape(input_shape=(None,200,7))\n\n```\n\n```\nTensorShape([None, 100, 7])\n```\n\n```python\n# Customized model, which could also be implemented by Sequential or Functional API\n\nclass ImdbModel(models.Model):\n    def __init__(self):\n        super(ImdbModel, self).__init__()\n        \n    def build(self,input_shape):\n        self.embedding = layers.Embedding(MAX_WORDS,7)\n        self.block1 = ResBlock(7)\n        self.block2 = ResBlock(5)\n        self.dense = layers.Dense(1,activation = \"sigmoid\")\n        super(ImdbModel,self).build(input_shape)\n    \n    def call(self, x):\n        x = self.embedding(x)\n        x = self.block1(x)\n        x = self.block2(x)\n        x = layers.Flatten()(x)\n        x = self.dense(x)\n        return(x)\n\n```\n\n```python\ntf.keras.backend.clear_session()\n\nmodel = ImdbModel()\nmodel.build(input_shape =(None,200))\nmodel.summary()\n\nmodel.compile(optimizer='Nadam',\n            loss='binary_crossentropy',\n            metrics=['accuracy',\"AUC\"])\n\n```\n\n```\nModel: \"imdb_model\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nembedding (Embedding)        multiple                  70000     \n_________________________________________________________________\nres_block (ResBlock)         multiple                  19143     \n_________________________________________________________________\nres_block_1 (ResBlock)       multiple                  13703     \n_________________________________________________________________\ndense (Dense)                multiple                  351       \n=================================================================\nTotal params: 103,197\nTrainable params: 103,197\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\n\n```\n\n![](../data/Model子类化模型结构.png)\n\n```python\n\n```\n\n```python\nimport datetime\n\nlogdir = \"../tflogs/keras_model/\" + datetime.datetime.now().strftime(\"%Y%m%d-%H%M%S\")\ntensorboard_callback = tf.keras.callbacks.TensorBoard(logdir, histogram_freq=1)\nhistory = model.fit(ds_train,validation_data = ds_test,\n                    epochs = 6,callbacks=[tensorboard_callback])\n\n```\n\n```\nEpoch 1/6\n1000/1000 [==============================] - 47s 47ms/step - loss: 0.5629 - accuracy: 0.6618 - AUC: 0.7548 - val_loss: 0.3422 - val_accuracy: 0.8510 - val_AUC: 0.9286\nEpoch 2/6\n1000/1000 [==============================] - 43s 43ms/step - loss: 0.2648 - accuracy: 0.8903 - AUC: 0.9576 - val_loss: 0.3276 - val_accuracy: 0.8650 - val_AUC: 0.9410\nEpoch 3/6\n1000/1000 [==============================] - 42s 42ms/step - loss: 0.1573 - accuracy: 0.9439 - AUC: 0.9846 - val_loss: 0.3861 - val_accuracy: 0.8682 - val_AUC: 0.9390\nEpoch 4/6\n1000/1000 [==============================] - 42s 42ms/step - loss: 0.0849 - accuracy: 0.9706 - AUC: 0.9950 - val_loss: 0.5324 - val_accuracy: 0.8616 - val_AUC: 0.9292\nEpoch 5/6\n1000/1000 [==============================] - 43s 43ms/step - loss: 0.0393 - accuracy: 0.9876 - AUC: 0.9986 - val_loss: 0.7693 - val_accuracy: 0.8566 - val_AUC: 0.9132\nEpoch 6/6\n1000/1000 [==============================] - 44s 44ms/step - loss: 0.0222 - accuracy: 0.9926 - AUC: 0.9994 - val_loss: 0.9328 - val_accuracy: 0.8584 - val_AUC: 0.9052\n```\n\n```python\nplot_metric(history,\"AUC\")\n```\n\n```python\n\n```\n\n![](../data/6-1-3-fit模型.jpg)\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n\n```python\n\n```\n"
  },
  {
    "path": "english/Chapter6-2.md",
    "content": "# 6-2 Three Ways of Training\n\nThere are three ways of model training: using pre-defined `fit` method, using pre-defined `tran_on_batch` method, using customized training loop.\n\nNote: `fit_generator` method is not recommended in `tf.keras` since it has been merged into `fit`.\n\n\n```python\nimport numpy as np \nimport pandas as pd \nimport tensorflow as tf\nfrom tensorflow.keras import * \n\n# Time stamps\n@tf.function\ndef printbar():\n    ts = tf.timestamp()\n    today_ts = ts%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8,end = \"\")\n    tf.print(timestring)\n    \n```\n\n```python\nMAX_LEN = 300\nBATCH_SIZE = 32\n(x_train,y_train),(x_test,y_test) = datasets.reuters.load_data()\nx_train = preprocessing.sequence.pad_sequences(x_train,maxlen=MAX_LEN)\nx_test = preprocessing.sequence.pad_sequences(x_test,maxlen=MAX_LEN)\n\nMAX_WORDS = x_train.max()+1\nCAT_NUM = y_train.max()+1\n\nds_train = tf.data.Dataset.from_tensor_slices((x_train,y_train)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n   \nds_test = tf.data.Dataset.from_tensor_slices((x_test,y_test)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n\n```\n\n```python\n\n```\n\n### 1. Pre-defined `fit` method\n\n\nThis is a powerful method, which supports training the data with types of numpy array, `tf.data.Dataset` and Python generator.\n\nThis method also supports complicated logical controlling through proper configuration of the callbacks.\n\n```python\ntf.keras.backend.clear_session()\ndef create_model():\n    \n    model = models.Sequential()\n    model.add(layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN))\n    model.add(layers.Conv1D(filters = 64,kernel_size = 5,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Conv1D(filters = 32,kernel_size = 3,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Flatten())\n    model.add(layers.Dense(CAT_NUM,activation = \"softmax\"))\n    return(model)\n\ndef compile_model(model):\n    model.compile(optimizer=optimizers.Nadam(),\n                loss=losses.SparseCategoricalCrossentropy(),\n                metrics=[metrics.SparseCategoricalAccuracy(),metrics.SparseTopKCategoricalAccuracy(5)]) \n    return(model)\n \nmodel = create_model()\nmodel.summary()\nmodel = compile_model(model)\n\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nembedding (Embedding)        (None, 300, 7)            216874    \n_________________________________________________________________\nconv1d (Conv1D)              (None, 296, 64)           2304      \n_________________________________________________________________\nmax_pooling1d (MaxPooling1D) (None, 148, 64)           0         \n_________________________________________________________________\nconv1d_1 (Conv1D)            (None, 146, 32)           6176      \n_________________________________________________________________\nmax_pooling1d_1 (MaxPooling1 (None, 73, 32)            0         \n_________________________________________________________________\nflatten (Flatten)            (None, 2336)              0         \n_________________________________________________________________\ndense (Dense)                (None, 46)                107502    \n=================================================================\nTotal params: 332,856\nTrainable params: 332,856\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\nhistory = model.fit(ds_train,validation_data = ds_test,epochs = 10)\n```\n\n```python\n\n```\n\n```\nTrain for 281 steps, validate for 71 steps\nEpoch 1/10\n281/281 [==============================] - 11s 37ms/step - loss: 2.0231 - sparse_categorical_accuracy: 0.4636 - sparse_top_k_categorical_accuracy: 0.7450 - val_loss: 1.7346 - val_sparse_categorical_accuracy: 0.5534 - val_sparse_top_k_categorical_accuracy: 0.7560\nEpoch 2/10\n281/281 [==============================] - 9s 31ms/step - loss: 1.5079 - sparse_categorical_accuracy: 0.6091 - sparse_top_k_categorical_accuracy: 0.7901 - val_loss: 1.5475 - val_sparse_categorical_accuracy: 0.6109 - val_sparse_top_k_categorical_accuracy: 0.7792\nEpoch 3/10\n281/281 [==============================] - 9s 33ms/step - loss: 1.2204 - sparse_categorical_accuracy: 0.6823 - sparse_top_k_categorical_accuracy: 0.8448 - val_loss: 1.5455 - val_sparse_categorical_accuracy: 0.6367 - val_sparse_top_k_categorical_accuracy: 0.8001\nEpoch 4/10\n281/281 [==============================] - 9s 33ms/step - loss: 0.9382 - sparse_categorical_accuracy: 0.7543 - sparse_top_k_categorical_accuracy: 0.9075 - val_loss: 1.6780 - val_sparse_categorical_accuracy: 0.6398 - val_sparse_top_k_categorical_accuracy: 0.8032\nEpoch 5/10\n281/281 [==============================] - 10s 34ms/step - loss: 0.6791 - sparse_categorical_accuracy: 0.8255 - sparse_top_k_categorical_accuracy: 0.9513 - val_loss: 1.9426 - val_sparse_categorical_accuracy: 0.6376 - val_sparse_top_k_categorical_accuracy: 0.7956\nEpoch 6/10\n281/281 [==============================] - 9s 33ms/step - loss: 0.5063 - sparse_categorical_accuracy: 0.8762 - sparse_top_k_categorical_accuracy: 0.9716 - val_loss: 2.2141 - val_sparse_categorical_accuracy: 0.6291 - val_sparse_top_k_categorical_accuracy: 0.7947\nEpoch 7/10\n281/281 [==============================] - 10s 37ms/step - loss: 0.4031 - sparse_categorical_accuracy: 0.9050 - sparse_top_k_categorical_accuracy: 0.9817 - val_loss: 2.4126 - val_sparse_categorical_accuracy: 0.6264 - val_sparse_top_k_categorical_accuracy: 0.7947\nEpoch 8/10\n281/281 [==============================] - 10s 35ms/step - loss: 0.3380 - sparse_categorical_accuracy: 0.9205 - sparse_top_k_categorical_accuracy: 0.9881 - val_loss: 2.5366 - val_sparse_categorical_accuracy: 0.6242 - val_sparse_top_k_categorical_accuracy: 0.7974\nEpoch 9/10\n281/281 [==============================] - 10s 36ms/step - loss: 0.2921 - sparse_categorical_accuracy: 0.9299 - sparse_top_k_categorical_accuracy: 0.9909 - val_loss: 2.6564 - val_sparse_categorical_accuracy: 0.6242 - val_sparse_top_k_categorical_accuracy: 0.7983\nEpoch 10/10\n281/281 [==============================] - 9s 30ms/step - loss: 0.2613 - sparse_categorical_accuracy: 0.9334 - sparse_top_k_categorical_accuracy: 0.9947 - val_loss: 2.7365 - val_sparse_categorical_accuracy: 0.6220 - val_sparse_top_k_categorical_accuracy: 0.8005\n```\n\n```python\n\n```\n\n### 2. Pre-defined `train_on_batch` method\n\n\nThis pre-defined method allows fine-controlling to the training procedure for each batch without the callbacks, which is even more flexible than `fit` method.\n\n```python\ntf.keras.backend.clear_session()\n\ndef create_model():\n    model = models.Sequential()\n\n    model.add(layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN))\n    model.add(layers.Conv1D(filters = 64,kernel_size = 5,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Conv1D(filters = 32,kernel_size = 3,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Flatten())\n    model.add(layers.Dense(CAT_NUM,activation = \"softmax\"))\n    return(model)\n\ndef compile_model(model):\n    model.compile(optimizer=optimizers.Nadam(),\n                loss=losses.SparseCategoricalCrossentropy(),\n                metrics=[metrics.SparseCategoricalAccuracy(),metrics.SparseTopKCategoricalAccuracy(5)]) \n    return(model)\n \nmodel = create_model()\nmodel.summary()\nmodel = compile_model(model)\n\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nembedding (Embedding)        (None, 300, 7)            216874    \n_________________________________________________________________\nconv1d (Conv1D)              (None, 296, 64)           2304      \n_________________________________________________________________\nmax_pooling1d (MaxPooling1D) (None, 148, 64)           0         \n_________________________________________________________________\nconv1d_1 (Conv1D)            (None, 146, 32)           6176      \n_________________________________________________________________\nmax_pooling1d_1 (MaxPooling1 (None, 73, 32)            0         \n_________________________________________________________________\nflatten (Flatten)            (None, 2336)              0         \n_________________________________________________________________\ndense (Dense)                (None, 46)                107502    \n=================================================================\nTotal params: 332,856\nTrainable params: 332,856\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\ndef train_model(model,ds_train,ds_valid,epoches):\n\n    for epoch in tf.range(1,epoches+1):\n        model.reset_metrics()\n        \n        # Reduce learning rate at the late stage of training.\n        if epoch == 5:\n            model.optimizer.lr.assign(model.optimizer.lr/2.0)\n            tf.print(\"Lowering optimizer Learning Rate...\\n\\n\")\n        \n        for x, y in ds_train:\n            train_result = model.train_on_batch(x, y)\n\n        for x, y in ds_valid:\n            valid_result = model.test_on_batch(x, y,reset_metrics=False)\n            \n        if epoch%1 ==0:\n            printbar()\n            tf.print(\"epoch = \",epoch)\n            print(\"train:\",dict(zip(model.metrics_names,train_result)))\n            print(\"valid:\",dict(zip(model.metrics_names,valid_result)))\n            print(\"\")\n```\n\n```python\ntrain_model(model,ds_train,ds_test,10)\n```\n\n```\n================================================================================13:09:19\nepoch =  1\ntrain: {'loss': 0.82411176, 'sparse_categorical_accuracy': 0.77272725, 'sparse_top_k_categorical_accuracy': 0.8636364}\nvalid: {'loss': 1.9265995, 'sparse_categorical_accuracy': 0.5743544, 'sparse_top_k_categorical_accuracy': 0.75779164}\n\n================================================================================13:09:27\nepoch =  2\ntrain: {'loss': 0.6006621, 'sparse_categorical_accuracy': 0.90909094, 'sparse_top_k_categorical_accuracy': 0.95454544}\nvalid: {'loss': 1.844159, 'sparse_categorical_accuracy': 0.6126447, 'sparse_top_k_categorical_accuracy': 0.7920748}\n\n================================================================================13:09:35\nepoch =  3\ntrain: {'loss': 0.36935613, 'sparse_categorical_accuracy': 0.90909094, 'sparse_top_k_categorical_accuracy': 0.95454544}\nvalid: {'loss': 2.163433, 'sparse_categorical_accuracy': 0.63312554, 'sparse_top_k_categorical_accuracy': 0.8045414}\n\n================================================================================13:09:42\nepoch =  4\ntrain: {'loss': 0.2304088, 'sparse_categorical_accuracy': 0.90909094, 'sparse_top_k_categorical_accuracy': 1.0}\nvalid: {'loss': 2.8911984, 'sparse_categorical_accuracy': 0.6344613, 'sparse_top_k_categorical_accuracy': 0.7978629}\n\nLowering optimizer Learning Rate...\n\n\n================================================================================13:09:51\nepoch =  5\ntrain: {'loss': 0.111194365, 'sparse_categorical_accuracy': 0.95454544, 'sparse_top_k_categorical_accuracy': 1.0}\nvalid: {'loss': 3.6431572, 'sparse_categorical_accuracy': 0.6295637, 'sparse_top_k_categorical_accuracy': 0.7978629}\n\n================================================================================13:09:59\nepoch =  6\ntrain: {'loss': 0.07741702, 'sparse_categorical_accuracy': 0.95454544, 'sparse_top_k_categorical_accuracy': 1.0}\nvalid: {'loss': 4.074161, 'sparse_categorical_accuracy': 0.6255565, 'sparse_top_k_categorical_accuracy': 0.794301}\n\n================================================================================13:10:07\nepoch =  7\ntrain: {'loss': 0.056113098, 'sparse_categorical_accuracy': 1.0, 'sparse_top_k_categorical_accuracy': 1.0}\nvalid: {'loss': 4.4461513, 'sparse_categorical_accuracy': 0.6273375, 'sparse_top_k_categorical_accuracy': 0.79652715}\n\n================================================================================13:10:17\nepoch =  8\ntrain: {'loss': 0.043448802, 'sparse_categorical_accuracy': 1.0, 'sparse_top_k_categorical_accuracy': 1.0}\nvalid: {'loss': 4.7687583, 'sparse_categorical_accuracy': 0.6224399, 'sparse_top_k_categorical_accuracy': 0.79741764}\n\n================================================================================13:10:26\nepoch =  9\ntrain: {'loss': 0.035002146, 'sparse_categorical_accuracy': 1.0, 'sparse_top_k_categorical_accuracy': 1.0}\nvalid: {'loss': 5.130505, 'sparse_categorical_accuracy': 0.6175423, 'sparse_top_k_categorical_accuracy': 0.794301}\n\n================================================================================13:10:34\nepoch =  10\ntrain: {'loss': 0.028303564, 'sparse_categorical_accuracy': 1.0, 'sparse_top_k_categorical_accuracy': 1.0}\nvalid: {'loss': 5.4559293, 'sparse_categorical_accuracy': 0.6148709, 'sparse_top_k_categorical_accuracy': 0.7947462}\n```\n\n```python\n\n```\n\n### 3. Customized Training Loop\n\n\nRe-compilation of the model is not required in the customized training loop, just back-propagate the iterative parameters through the optimizer according to the loss function, which gives us the highest flexibility.\n\n```python\ntf.keras.backend.clear_session()\n\ndef create_model():\n    \n    model = models.Sequential()\n\n    model.add(layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN))\n    model.add(layers.Conv1D(filters = 64,kernel_size = 5,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Conv1D(filters = 32,kernel_size = 3,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Flatten())\n    model.add(layers.Dense(CAT_NUM,activation = \"softmax\"))\n    return(model)\n\nmodel = create_model()\nmodel.summary()\n```\n\n```python\noptimizer = optimizers.Nadam()\nloss_func = losses.SparseCategoricalCrossentropy()\n\ntrain_loss = metrics.Mean(name='train_loss')\ntrain_metric = metrics.SparseCategoricalAccuracy(name='train_accuracy')\n\nvalid_loss = metrics.Mean(name='valid_loss')\nvalid_metric = metrics.SparseCategoricalAccuracy(name='valid_accuracy')\n\n@tf.function\ndef train_step(model, features, labels):\n    with tf.GradientTape() as tape:\n        predictions = model(features,training = True)\n        loss = loss_func(labels, predictions)\n    gradients = tape.gradient(loss, model.trainable_variables)\n    optimizer.apply_gradients(zip(gradients, model.trainable_variables))\n\n    train_loss.update_state(loss)\n    train_metric.update_state(labels, predictions)\n    \n\n@tf.function\ndef valid_step(model, features, labels):\n    predictions = model(features)\n    batch_loss = loss_func(labels, predictions)\n    valid_loss.update_state(batch_loss)\n    valid_metric.update_state(labels, predictions)\n    \n\ndef train_model(model,ds_train,ds_valid,epochs):\n    for epoch in tf.range(1,epochs+1):\n        \n        for features, labels in ds_train:\n            train_step(model,features,labels)\n\n        for features, labels in ds_valid:\n            valid_step(model,features,labels)\n\n        logs = 'Epoch={},Loss:{},Accuracy:{},Valid Loss:{},Valid Accuracy:{}'\n        \n        if epoch%1 ==0:\n            printbar()\n            tf.print(tf.strings.format(logs,\n            (epoch,train_loss.result(),train_metric.result(),valid_loss.result(),valid_metric.result())))\n            tf.print(\"\")\n            \n        train_loss.reset_states()\n        valid_loss.reset_states()\n        train_metric.reset_states()\n        valid_metric.reset_states()\n\ntrain_model(model,ds_train,ds_test,10)\n\n```\n\n```python\n\n```\n\n```\n================================================================================13:12:03\nEpoch=1,Loss:2.02051544,Accuracy:0.460253835,Valid Loss:1.75700927,Valid Accuracy:0.536954582\n\n================================================================================13:12:09\nEpoch=2,Loss:1.510795,Accuracy:0.610665798,Valid Loss:1.55349839,Valid Accuracy:0.616206586\n\n================================================================================13:12:17\nEpoch=3,Loss:1.19221532,Accuracy:0.696170092,Valid Loss:1.52315605,Valid Accuracy:0.651380241\n\n================================================================================13:12:23\nEpoch=4,Loss:0.90101546,Accuracy:0.766310394,Valid Loss:1.68327653,Valid Accuracy:0.648263574\n\n================================================================================13:12:30\nEpoch=5,Loss:0.655430496,Accuracy:0.831329346,Valid Loss:1.90872383,Valid Accuracy:0.641139805\n\n================================================================================13:12:37\nEpoch=6,Loss:0.492730737,Accuracy:0.877866864,Valid Loss:2.09966016,Valid Accuracy:0.63223511\n\n================================================================================13:12:44\nEpoch=7,Loss:0.391238362,Accuracy:0.904030263,Valid Loss:2.27431226,Valid Accuracy:0.625111282\n\n================================================================================13:12:51\nEpoch=8,Loss:0.327761739,Accuracy:0.922066331,Valid Loss:2.42568827,Valid Accuracy:0.617542326\n\n================================================================================13:12:58\nEpoch=9,Loss:0.285573095,Accuracy:0.930527747,Valid Loss:2.55942106,Valid Accuracy:0.612644672\n\n================================================================================13:13:05\nEpoch=10,Loss:0.255482465,Accuracy:0.936094403,Valid Loss:2.67789412,Valid Accuracy:0.612199485\n```\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n\n```python\n\n```\n\n```python\n\n```\n"
  },
  {
    "path": "english/Chapter6-3.md",
    "content": "# 6-3 Model Training Using Single GPU\n\nThe training procedure of deep learning is usually time consuming. It even takes tens of days for training, and there is no need to mention those take days or hours.\n\nThe time is mainly consumpted by two stages, data preparation and parameter iteration.\n\nWe can increase the number of process to alleviate this issue if data preparation takes the majority of time.\n\nHowever, if the majority of time is taken by parameter iteration, we need to use GPU or Google TPU for acceleration.\n\nYou may refer to this article for further details: [\"GPU acceleration for Keras Models - How to Use Free Colab GPUs (in Chinese)\"](https://zhuanlan.zhihu.com/p/68509398)\n\nThere is no need to modify source code for switching from CPU to GPU when using the pre-defined `fit` method or the customized training loops. When GPU is available and the device is not specified, TensorFlow automatically chooses GPU for tensor creating and computing.\n\nHowever, for the case of using shared GPU with multiple users, sucha as using server of the company or the lab, we need to add following code to specify the GPU ID and the GPU memory size that we are going to use, in order to avoid the GPU resources to be occupied by a single user (actually TensorFlow acquires all GPU cors and all GPU memories by default) and allows multiple users perform training on it.\n\n\nIn Colab notebook, choose GPU in Edit -> Notebook Settings -> Hardware Accelerator\n\nNote: the following code only executes on Colab.\n\nYou may use the following link for testing (tf_singleGPU, in Chinese)\n\nhttps://colab.research.google.com/drive/1r5dLoeJq5z01sU72BX2M5UiNSkuxsEFe\n\n```python\n%tensorflow_version 2.x\nimport tensorflow as tf\nprint(tf.__version__)\n```\n\n```python\nfrom tensorflow.keras import * \n\n# Time stamp\n@tf.function\ndef printbar():\n    ts = tf.timestamp()\n    today_ts = ts%(24*60*60)\n\n    hour = tf.cast(today_ts//3600+8,tf.int32)%tf.constant(24)\n    minite = tf.cast((today_ts%3600)//60,tf.int32)\n    second = tf.cast(tf.floor(today_ts%60),tf.int32)\n    \n    def timeformat(m):\n        if tf.strings.length(tf.strings.format(\"{}\",m))==1:\n            return(tf.strings.format(\"0{}\",m))\n        else:\n            return(tf.strings.format(\"{}\",m))\n    \n    timestring = tf.strings.join([timeformat(hour),timeformat(minite),\n                timeformat(second)],separator = \":\")\n    tf.print(\"==========\"*8,end = \"\")\n    tf.print(timestring)\n    \n```\n\n### 1. GPU Configuration\n\n```python\ngpus = tf.config.list_physical_devices(\"GPU\")\n\nif gpus:\n    gpu0 = gpus[0] # Only use GPU 0 when existing multiple GPUs\n    tf.config.experimental.set_memory_growth(gpu0, True) # Set the usage of GPU memory according to needs\n    # The GPU memory usage could also be fixed (e.g. 4GB)\n    #tf.config.experimental.set_virtual_device_configuration(gpu0,\n    #    [tf.config.experimental.VirtualDeviceConfiguration(memory_limit=4096)]) \n    tf.config.set_visible_devices([gpu0],\"GPU\") \n```\n\nCompare the computing speed between GPU and CPU.\n\n```python\nprintbar()\nwith tf.device(\"/gpu:0\"):\n    tf.random.set_seed(0)\n    a = tf.random.uniform((10000,100),minval = 0,maxval = 3.0)\n    b = tf.random.uniform((100,100000),minval = 0,maxval = 3.0)\n    c = a@b\n    tf.print(tf.reduce_sum(tf.reduce_sum(c,axis = 0),axis=0))\nprintbar()\n```\n\n```\n================================================================================17:37:01\n2.24953778e+11\n================================================================================17:37:01\n```\n\n```python\nprintbar()\nwith tf.device(\"/cpu:0\"):\n    tf.random.set_seed(0)\n    a = tf.random.uniform((10000,100),minval = 0,maxval = 3.0)\n    b = tf.random.uniform((100,100000),minval = 0,maxval = 3.0)\n    c = a@b\n    tf.print(tf.reduce_sum(tf.reduce_sum(c,axis = 0),axis=0))\nprintbar()\n```\n\n```\n================================================================================17:37:34\n2.24953795e+11\n================================================================================17:37:40\n```\n\n```python\n\n```\n\n### 2. Data Preparation\n\n```python\nMAX_LEN = 300\nBATCH_SIZE = 32\n(x_train,y_train),(x_test,y_test) = datasets.reuters.load_data()\nx_train = preprocessing.sequence.pad_sequences(x_train,maxlen=MAX_LEN)\nx_test = preprocessing.sequence.pad_sequences(x_test,maxlen=MAX_LEN)\n\nMAX_WORDS = x_train.max()+1\nCAT_NUM = y_train.max()+1\n\nds_train = tf.data.Dataset.from_tensor_slices((x_train,y_train)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n   \nds_test = tf.data.Dataset.from_tensor_slices((x_test,y_test)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n          \n```\n\n```python\n\n```\n\n### 3. Model Defining\n\n```python\ntf.keras.backend.clear_session()\n\ndef create_model():\n    \n    model = models.Sequential()\n\n    model.add(layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN))\n    model.add(layers.Conv1D(filters = 64,kernel_size = 5,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Conv1D(filters = 32,kernel_size = 3,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Flatten())\n    model.add(layers.Dense(CAT_NUM,activation = \"softmax\"))\n    return(model)\n\nmodel = create_model()\nmodel.summary()\n\n```\n\n```\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nembedding (Embedding)        (None, 300, 7)            216874    \n_________________________________________________________________\nconv1d (Conv1D)              (None, 296, 64)           2304      \n_________________________________________________________________\nmax_pooling1d (MaxPooling1D) (None, 148, 64)           0         \n_________________________________________________________________\nconv1d_1 (Conv1D)            (None, 146, 32)           6176      \n_________________________________________________________________\nmax_pooling1d_1 (MaxPooling1 (None, 73, 32)            0         \n_________________________________________________________________\nflatten (Flatten)            (None, 2336)              0         \n_________________________________________________________________\ndense (Dense)                (None, 46)                107502    \n=================================================================\nTotal params: 332,856\nTrainable params: 332,856\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\n\n```\n\n### 4. Model Training\n\n```python\noptimizer = optimizers.Nadam()\nloss_func = losses.SparseCategoricalCrossentropy()\n\ntrain_loss = metrics.Mean(name='train_loss')\ntrain_metric = metrics.SparseCategoricalAccuracy(name='train_accuracy')\n\nvalid_loss = metrics.Mean(name='valid_loss')\nvalid_metric = metrics.SparseCategoricalAccuracy(name='valid_accuracy')\n\n@tf.function\ndef train_step(model, features, labels):\n    with tf.GradientTape() as tape:\n        predictions = model(features,training = True)\n        loss = loss_func(labels, predictions)\n    gradients = tape.gradient(loss, model.trainable_variables)\n    optimizer.apply_gradients(zip(gradients, model.trainable_variables))\n\n    train_loss.update_state(loss)\n    train_metric.update_state(labels, predictions)\n    \n@tf.function\ndef valid_step(model, features, labels):\n    predictions = model(features)\n    batch_loss = loss_func(labels, predictions)\n    valid_loss.update_state(batch_loss)\n    valid_metric.update_state(labels, predictions)\n    \n\ndef train_model(model,ds_train,ds_valid,epochs):\n    for epoch in tf.range(1,epochs+1):\n        \n        for features, labels in ds_train:\n            train_step(model,features,labels)\n\n        for features, labels in ds_valid:\n            valid_step(model,features,labels)\n\n        logs = 'Epoch={},Loss:{},Accuracy:{},Valid Loss:{},Valid Accuracy:{}'\n        \n        if epoch%1 ==0:\n            printbar()\n            tf.print(tf.strings.format(logs,\n            (epoch,train_loss.result(),train_metric.result(),valid_loss.result(),valid_metric.result())))\n            tf.print(\"\")\n            \n        train_loss.reset_states()\n        valid_loss.reset_states()\n        train_metric.reset_states()\n        valid_metric.reset_states()\n\ntrain_model(model,ds_train,ds_test,10)\n```\n\n```python\n\n```\n\n```\n================================================================================17:13:26\nEpoch=1,Loss:1.96735072,Accuracy:0.489200622,Valid Loss:1.64124215,Valid Accuracy:0.582813919\n\n================================================================================17:13:28\nEpoch=2,Loss:1.4640888,Accuracy:0.624805152,Valid Loss:1.5559175,Valid Accuracy:0.607747078\n\n================================================================================17:13:30\nEpoch=3,Loss:1.20681274,Accuracy:0.68581605,Valid Loss:1.58494771,Valid Accuracy:0.622439921\n\n================================================================================17:13:31\nEpoch=4,Loss:0.937500894,Accuracy:0.75361836,Valid Loss:1.77466083,Valid Accuracy:0.621994674\n\n================================================================================17:13:33\nEpoch=5,Loss:0.693960547,Accuracy:0.822199941,Valid Loss:2.00267363,Valid Accuracy:0.6197685\n\n================================================================================17:13:35\nEpoch=6,Loss:0.519614,Accuracy:0.870296121,Valid Loss:2.23463202,Valid Accuracy:0.613980412\n\n================================================================================17:13:37\nEpoch=7,Loss:0.408562034,Accuracy:0.901246965,Valid Loss:2.46969271,Valid Accuracy:0.612199485\n\n================================================================================17:13:39\nEpoch=8,Loss:0.339028627,Accuracy:0.920062363,Valid Loss:2.68585229,Valid Accuracy:0.615316093\n\n================================================================================17:13:41\nEpoch=9,Loss:0.293798745,Accuracy:0.92930305,Valid Loss:2.88995624,Valid Accuracy:0.613535166\n\n================================================================================17:13:43\nEpoch=10,Loss:0.263130337,Accuracy:0.936651051,Valid Loss:3.09705234,Valid Accuracy:0.612644672\n```\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter6-4.md",
    "content": "# 6-4 Model Training Using Multiple GPUs\n\nWe recommend using pre-defined `fit` method for training when using multiple GPU, which only requires two additional lines of code.\n\nIn Colab notebook, choose GPU in Edit -> Notebook Settings -> Hardware Accelerator\n\nNote: the following code only executes on Colab.\n\nYou may use the following link for testing (tf_multiGPU, in Chinese)\n\nhttps://colab.research.google.com/drive/1j2kp_t0S_cofExSN7IyJ4QtMscbVlXU-\n\n\n\nIntroduction to MirroredStrategy：\n\n* The strategy gives a copy to each of the N computing devices before training.\n* When a batch of training data is received, devide the data into N portions and transfer them into N devices (data parallelism)\n* Each device calculate the local variables (mirrored variables) to calculate the gradient according to the received portion of data.\n* Implement All-reduce operation in parallel computing, exchange the gradient data and calculate summation, allows each device to obtain the gradient sum from all the devices.\n* Update the local variables (mirrored variables) using the gradient sum.\n* Proceed to the next round of training when all the devices updated their local variables (This is a fully synchronized strategy).\n\n```python\n%tensorflow_version 2.x\nimport tensorflow as tf\nprint(tf.__version__)\nfrom tensorflow.keras import * \n```\n\n```python\n# Simulate two logical GPUs with one physical GPU\ngpus = tf.config.experimental.list_physical_devices('GPU')\nif gpus:\n    # Set two logical GPUs for simulation\n    try:\n        tf.config.experimental.set_virtual_device_configuration(gpus[0],\n            [tf.config.experimental.VirtualDeviceConfiguration(memory_limit=1024),\n             tf.config.experimental.VirtualDeviceConfiguration(memory_limit=1024)])\n        logical_gpus = tf.config.experimental.list_logical_devices('GPU')\n        print(len(gpus), \"Physical GPU,\", len(logical_gpus), \"Logical GPUs\")\n    except RuntimeError as e:\n        print(e)\n```\n\n### 1. Data Preparation\n\n```python\nMAX_LEN = 300\nBATCH_SIZE = 32\n(x_train,y_train),(x_test,y_test) = datasets.reuters.load_data()\nx_train = preprocessing.sequence.pad_sequences(x_train,maxlen=MAX_LEN)\nx_test = preprocessing.sequence.pad_sequences(x_test,maxlen=MAX_LEN)\n\nMAX_WORDS = x_train.max()+1\nCAT_NUM = y_train.max()+1\n\nds_train = tf.data.Dataset.from_tensor_slices((x_train,y_train)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n   \nds_test = tf.data.Dataset.from_tensor_slices((x_test,y_test)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n\n```\n\n### 2. Model Defining\n\n```python\ntf.keras.backend.clear_session()\ndef create_model():\n    \n    model = models.Sequential()\n\n    model.add(layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN))\n    model.add(layers.Conv1D(filters = 64,kernel_size = 5,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Conv1D(filters = 32,kernel_size = 3,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Flatten())\n    model.add(layers.Dense(CAT_NUM,activation = \"softmax\"))\n    return(model)\n\ndef compile_model(model):\n    model.compile(optimizer=optimizers.Nadam(),\n                loss=losses.SparseCategoricalCrossentropy(from_logits=True),\n                metrics=[metrics.SparseCategoricalAccuracy(),metrics.SparseTopKCategoricalAccuracy(5)]) \n    return(model)\n```\n\n### 3. Model Training\n\n```python\n# Add the following two lines of code\nstrategy = tf.distribute.MirroredStrategy()  \nwith strategy.scope(): \n    model = create_model()\n    model.summary()\n    model = compile_model(model)\n    \nhistory = model.fit(ds_train,validation_data = ds_test,epochs = 10)  \n```\n\n```\nWARNING:tensorflow:NCCL is not supported when using virtual GPUs, fallingback to reduction to one device\nINFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1')\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nembedding (Embedding)        (None, 300, 7)            216874    \n_________________________________________________________________\nconv1d (Conv1D)              (None, 296, 64)           2304      \n_________________________________________________________________\nmax_pooling1d (MaxPooling1D) (None, 148, 64)           0         \n_________________________________________________________________\nconv1d_1 (Conv1D)            (None, 146, 32)           6176      \n_________________________________________________________________\nmax_pooling1d_1 (MaxPooling1 (None, 73, 32)            0         \n_________________________________________________________________\nflatten (Flatten)            (None, 2336)              0         \n_________________________________________________________________\ndense (Dense)                (None, 46)                107502    \n=================================================================\nTotal params: 332,856\nTrainable params: 332,856\nNon-trainable params: 0\n_________________________________________________________________\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nTrain for 281 steps, validate for 71 steps\nEpoch 1/10\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',).\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\nINFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:GPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:GPU:1').\n281/281 [==============================] - 15s 53ms/step - loss: 2.0270 - sparse_categorical_accuracy: 0.4653 - sparse_top_k_categorical_accuracy: 0.7481 - val_loss: 1.7517 - val_sparse_categorical_accuracy: 0.5481 - val_sparse_top_k_categorical_accuracy: 0.7578\nEpoch 2/10\n281/281 [==============================] - 4s 14ms/step - loss: 1.5206 - sparse_categorical_accuracy: 0.6045 - sparse_top_k_categorical_accuracy: 0.7938 - val_loss: 1.5715 - val_sparse_categorical_accuracy: 0.5993 - val_sparse_top_k_categorical_accuracy: 0.7983\nEpoch 3/10\n281/281 [==============================] - 4s 14ms/step - loss: 1.2178 - sparse_categorical_accuracy: 0.6843 - sparse_top_k_categorical_accuracy: 0.8547 - val_loss: 1.5232 - val_sparse_categorical_accuracy: 0.6327 - val_sparse_top_k_categorical_accuracy: 0.8112\nEpoch 4/10\n281/281 [==============================] - 4s 13ms/step - loss: 0.9127 - sparse_categorical_accuracy: 0.7648 - sparse_top_k_categorical_accuracy: 0.9113 - val_loss: 1.6527 - val_sparse_categorical_accuracy: 0.6296 - val_sparse_top_k_categorical_accuracy: 0.8201\nEpoch 5/10\n281/281 [==============================] - 4s 14ms/step - loss: 0.6606 - sparse_categorical_accuracy: 0.8321 - sparse_top_k_categorical_accuracy: 0.9525 - val_loss: 1.8791 - val_sparse_categorical_accuracy: 0.6158 - val_sparse_top_k_categorical_accuracy: 0.8219\nEpoch 6/10\n281/281 [==============================] - 4s 14ms/step - loss: 0.4919 - sparse_categorical_accuracy: 0.8799 - sparse_top_k_categorical_accuracy: 0.9725 - val_loss: 2.1282 - val_sparse_categorical_accuracy: 0.6037 - val_sparse_top_k_categorical_accuracy: 0.8112\nEpoch 7/10\n281/281 [==============================] - 4s 14ms/step - loss: 0.3947 - sparse_categorical_accuracy: 0.9051 - sparse_top_k_categorical_accuracy: 0.9814 - val_loss: 2.3033 - val_sparse_categorical_accuracy: 0.6046 - val_sparse_top_k_categorical_accuracy: 0.8094\nEpoch 8/10\n281/281 [==============================] - 4s 14ms/step - loss: 0.3335 - sparse_categorical_accuracy: 0.9207 - sparse_top_k_categorical_accuracy: 0.9863 - val_loss: 2.4255 - val_sparse_categorical_accuracy: 0.5993 - val_sparse_top_k_categorical_accuracy: 0.8099\nEpoch 9/10\n281/281 [==============================] - 4s 14ms/step - loss: 0.2919 - sparse_categorical_accuracy: 0.9304 - sparse_top_k_categorical_accuracy: 0.9911 - val_loss: 2.5571 - val_sparse_categorical_accuracy: 0.6020 - val_sparse_top_k_categorical_accuracy: 0.8126\nEpoch 10/10\n281/281 [==============================] - 4s 14ms/step - loss: 0.2617 - sparse_categorical_accuracy: 0.9342 - sparse_top_k_categorical_accuracy: 0.9937 - val_loss: 2.6700 - val_sparse_categorical_accuracy: 0.6077 - val_sparse_top_k_categorical_accuracy: 0.8148\nCPU times: user 1min 2s, sys: 8.59 s, total: 1min 10s\nWall time: 58.5 s\n```\n\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n\n"
  },
  {
    "path": "english/Chapter6-5.md",
    "content": "# 6-5 Model Training Using TPU\n\nIt only requires six additional lines of code when training your model using TPU on Google Colab.\n\nIn Colab notebook, choose TPU in Edit -> Notebook Settings -> Hardware Accelerator.\n\nNote: the following code only executes on Colab.\n\nYou may use the following link for testing (tf_TPU, in Chinese)\n\nhttps://colab.research.google.com/drive/1XCIhATyE1R7lq6uwFlYlRsUr5d9_-r1s\n\n\n```python\n%tensorflow_version 2.x\nimport tensorflow as tf\nprint(tf.__version__)\nfrom tensorflow.keras import * \n```\n\n### 1. Data Preparation\n\n```python\nMAX_LEN = 300\nBATCH_SIZE = 32\n(x_train,y_train),(x_test,y_test) = datasets.reuters.load_data()\nx_train = preprocessing.sequence.pad_sequences(x_train,maxlen=MAX_LEN)\nx_test = preprocessing.sequence.pad_sequences(x_test,maxlen=MAX_LEN)\n\nMAX_WORDS = x_train.max()+1\nCAT_NUM = y_train.max()+1\n\nds_train = tf.data.Dataset.from_tensor_slices((x_train,y_train)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n   \nds_test = tf.data.Dataset.from_tensor_slices((x_test,y_test)) \\\n          .shuffle(buffer_size = 1000).batch(BATCH_SIZE) \\\n          .prefetch(tf.data.experimental.AUTOTUNE).cache()\n```\n\n### 2. Model Defining\n\n```python\ntf.keras.backend.clear_session()\ndef create_model():\n    \n    model = models.Sequential()\n\n    model.add(layers.Embedding(MAX_WORDS,7,input_length=MAX_LEN))\n    model.add(layers.Conv1D(filters = 64,kernel_size = 5,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Conv1D(filters = 32,kernel_size = 3,activation = \"relu\"))\n    model.add(layers.MaxPool1D(2))\n    model.add(layers.Flatten())\n    model.add(layers.Dense(CAT_NUM,activation = \"softmax\"))\n    return(model)\n\ndef compile_model(model):\n    model.compile(optimizer=optimizers.Nadam(),\n                loss=losses.SparseCategoricalCrossentropy(from_logits=True),\n                metrics=[metrics.SparseCategoricalAccuracy(),metrics.SparseTopKCategoricalAccuracy(5)]) \n    return(model)\n```\n\n```python\n\n```\n\n### 3. Model Training\n\n```python\n# The above mentioned 6 additional lines of code\nimport os\nresolver = tf.distribute.cluster_resolver.TPUClusterResolver(tpu='grpc://' + os.environ['COLAB_TPU_ADDR'])\ntf.config.experimental_connect_to_cluster(resolver)\ntf.tpu.experimental.initialize_tpu_system(resolver)\nstrategy = tf.distribute.experimental.TPUStrategy(resolver)\nwith strategy.scope():\n    model = create_model()\n    model.summary()\n    model = compile_model(model)\n    \n```\n\n```\nWARNING:tensorflow:TPU system 10.26.134.242:8470 has already been initialized. Reinitializing the TPU can cause previously created variables on TPU to be lost.\nWARNING:tensorflow:TPU system 10.26.134.242:8470 has already been initialized. Reinitializing the TPU can cause previously created variables on TPU to be lost.\nINFO:tensorflow:Initializing the TPU system: 10.26.134.242:8470\nINFO:tensorflow:Initializing the TPU system: 10.26.134.242:8470\nINFO:tensorflow:Clearing out eager caches\nINFO:tensorflow:Clearing out eager caches\nINFO:tensorflow:Finished initializing TPU system.\nINFO:tensorflow:Finished initializing TPU system.\nINFO:tensorflow:Found TPU system:\nINFO:tensorflow:Found TPU system:\nINFO:tensorflow:*** Num TPU Cores: 8\nINFO:tensorflow:*** Num TPU Cores: 8\nINFO:tensorflow:*** Num TPU Workers: 1\nINFO:tensorflow:*** Num TPU Workers: 1\nINFO:tensorflow:*** Num TPU Cores Per Worker: 8\nINFO:tensorflow:*** Num TPU Cores Per Worker: 8\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:localhost/replica:0/task:0/device:CPU:0, CPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:localhost/replica:0/task:0/device:CPU:0, CPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:localhost/replica:0/task:0/device:XLA_CPU:0, XLA_CPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:localhost/replica:0/task:0/device:XLA_CPU:0, XLA_CPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:CPU:0, CPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:CPU:0, CPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:0, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:0, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:1, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:1, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:2, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:2, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:3, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:3, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:4, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:4, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:5, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:5, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:6, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:6, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:7, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU:7, TPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU_SYSTEM:0, TPU_SYSTEM, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:TPU_SYSTEM:0, TPU_SYSTEM, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:XLA_CPU:0, XLA_CPU, 0, 0)\nINFO:tensorflow:*** Available Device: _DeviceAttributes(/job:worker/replica:0/task:0/device:XLA_CPU:0, XLA_CPU, 0, 0)\nModel: \"sequential\"\n_________________________________________________________________\nLayer (type)                 Output Shape              Param #   \n=================================================================\nembedding (Embedding)        (None, 300, 7)            216874    \n_________________________________________________________________\nconv1d (Conv1D)              (None, 296, 64)           2304      \n_________________________________________________________________\nmax_pooling1d (MaxPooling1D) (None, 148, 64)           0         \n_________________________________________________________________\nconv1d_1 (Conv1D)            (None, 146, 32)           6176      \n_________________________________________________________________\nmax_pooling1d_1 (MaxPooling1 (None, 73, 32)            0         \n_________________________________________________________________\nflatten (Flatten)            (None, 2336)              0         \n_________________________________________________________________\ndense (Dense)                (None, 46)                107502    \n=================================================================\nTotal params: 332,856\nTrainable params: 332,856\nNon-trainable params: 0\n_________________________________________________________________\n```\n\n```python\nhistory = model.fit(ds_train,validation_data = ds_test,epochs = 10)\n```\n\n```\nTrain for 281 steps, validate for 71 steps\nEpoch 1/10\n281/281 [==============================] - 12s 43ms/step - loss: 3.4466 - sparse_categorical_accuracy: 0.4332 - sparse_top_k_categorical_accuracy: 0.7180 - val_loss: 3.3179 - val_sparse_categorical_accuracy: 0.5352 - val_sparse_top_k_categorical_accuracy: 0.7195\nEpoch 2/10\n281/281 [==============================] - 6s 20ms/step - loss: 3.3251 - sparse_categorical_accuracy: 0.5405 - sparse_top_k_categorical_accuracy: 0.7302 - val_loss: 3.3082 - val_sparse_categorical_accuracy: 0.5463 - val_sparse_top_k_categorical_accuracy: 0.7235\nEpoch 3/10\n281/281 [==============================] - 6s 20ms/step - loss: 3.2961 - sparse_categorical_accuracy: 0.5729 - sparse_top_k_categorical_accuracy: 0.7280 - val_loss: 3.3026 - val_sparse_categorical_accuracy: 0.5499 - val_sparse_top_k_categorical_accuracy: 0.7217\nEpoch 4/10\n281/281 [==============================] - 5s 19ms/step - loss: 3.2751 - sparse_categorical_accuracy: 0.5924 - sparse_top_k_categorical_accuracy: 0.7276 - val_loss: 3.2957 - val_sparse_categorical_accuracy: 0.5543 - val_sparse_top_k_categorical_accuracy: 0.7217\nEpoch 5/10\n281/281 [==============================] - 5s 19ms/step - loss: 3.2655 - sparse_categorical_accuracy: 0.6008 - sparse_top_k_categorical_accuracy: 0.7290 - val_loss: 3.3022 - val_sparse_categorical_accuracy: 0.5490 - val_sparse_top_k_categorical_accuracy: 0.7231\nEpoch 6/10\n281/281 [==============================] - 5s 19ms/step - loss: 3.2616 - sparse_categorical_accuracy: 0.6041 - sparse_top_k_categorical_accuracy: 0.7295 - val_loss: 3.3015 - val_sparse_categorical_accuracy: 0.5503 - val_sparse_top_k_categorical_accuracy: 0.7235\nEpoch 7/10\n281/281 [==============================] - 6s 21ms/step - loss: 3.2595 - sparse_categorical_accuracy: 0.6059 - sparse_top_k_categorical_accuracy: 0.7322 - val_loss: 3.3064 - val_sparse_categorical_accuracy: 0.5454 - val_sparse_top_k_categorical_accuracy: 0.7266\nEpoch 8/10\n281/281 [==============================] - 6s 21ms/step - loss: 3.2591 - sparse_categorical_accuracy: 0.6063 - sparse_top_k_categorical_accuracy: 0.7327 - val_loss: 3.3025 - val_sparse_categorical_accuracy: 0.5481 - val_sparse_top_k_categorical_accuracy: 0.7231\nEpoch 9/10\n281/281 [==============================] - 5s 19ms/step - loss: 3.2588 - sparse_categorical_accuracy: 0.6062 - sparse_top_k_categorical_accuracy: 0.7332 - val_loss: 3.2992 - val_sparse_categorical_accuracy: 0.5521 - val_sparse_top_k_categorical_accuracy: 0.7257\nEpoch 10/10\n281/281 [==============================] - 5s 18ms/step - loss: 3.2577 - sparse_categorical_accuracy: 0.6073 - sparse_top_k_categorical_accuracy: 0.7363 - val_loss: 3.2981 - val_sparse_categorical_accuracy: 0.5516 - val_sparse_top_k_categorical_accuracy: 0.7306\nCPU times: user 18.9 s, sys: 3.86 s, total: 22.7 s\nWall time: 1min 1s\n```\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n\n```python\n\n```\n"
  },
  {
    "path": "english/Chapter6-6.md",
    "content": "# 6-6 Model Deploying Using tensorflow-serving\n\nThere are multiple ways to deploy and run the trained models which saved with the original tensorflow format. \n\nFor example:\n\nWe can load and run the model in the web browser using javascript through `tensorflow-js`.\n\nWe can load and run the TensorFlow model on mobile and embeded devices through `tensorflow-lite`.\n\nWe can use `tensorflow-serving` to load the model that providing network interface API service and to acquire the prediction results from the model through sending network requests in arbitrary programming languages.\n\nWe can predict using the TensorFlow model in Java or spark (scala) through the `TensorFlow for Java` port.\n\nThis section introduces model deploying by `tensorflow serving` and using spark (scala) to implement the TensorFlow models.\n\n```python\n\n```\n\n### 0. Introduction to model deploying by tensorflow serving\n\n<!-- #region -->\nThe necessary steps of model deploying using tensorflow serving are:\n\n* (1) Prepare the protobuf model file.\n\n* (2) Install the tensorflow serving.\n\n* (3) Start the tensorflow serving service.\n\n* (4) Send the request to the API service to obtain the prediction.\n\n\nYou may use the following link for testing (tf_serving, in Chinese)\nhttps://colab.research.google.com/drive/1vS5LAYJTEn-H0GDb1irzIuyRB8E3eWc8\n\n<!-- #endregion -->\n\n```python\n%tensorflow_version 2.x\nimport tensorflow as tf\nprint(tf.__version__)\nfrom tensorflow.keras import * \n\n```\n\n### 1. Prepare the protobuf Model File\n\nHere we train a simple linear regression model with `tf.keras` and save it as protobuf file.\n\n```python\nimport tensorflow as tf\nfrom tensorflow.keras import models,layers,optimizers\n\n## Number of samples\nn = 800\n\n## Generating testing dataset\nX = tf.random.uniform([n,2],minval=-10,maxval=10) \nw0 = tf.constant([[2.0],[-1.0]])\nb0 = tf.constant(3.0)\n\nY = X@w0 + b0 + tf.random.normal([n,1],\n    mean = 0.0,stddev= 2.0) # @ is matrix multiplication; adding Gaussian noise\n\n## Modeling\ntf.keras.backend.clear_session()\ninputs = layers.Input(shape = (2,),name =\"inputs\") # Set the input name as \"inputs\"\noutputs = layers.Dense(1, name = \"outputs\")(inputs) # Set the output name as \"outputs\"\nlinear = models.Model(inputs = inputs,outputs = outputs)\nlinear.summary()\n\n## Training with fit method\nlinear.compile(optimizer=\"rmsprop\",loss=\"mse\",metrics=[\"mae\"])\nlinear.fit(X,Y,batch_size = 8,epochs = 100)  \n\ntf.print(\"w = \",linear.layers[1].kernel)\ntf.print(\"b = \",linear.layers[1].bias)\n\n## Save the model as pb format\nexport_path = \"../data/linear_model/\"\nversion = \"1\"       # Version could be used for management of further updates\nlinear.save(export_path+version, save_format=\"tf\") \n```\n\n```python\n# Check the saved model file\n!ls {export_path+version}\n```\n\n```\nassets\tsaved_model.pb\tvariables\n```\n\n```python\n# Check the info of the model file\n!saved_model_cli show --dir {export_path+str(version)} --all\n```\n\n```\nMetaGraphDef with tag-set: 'serve' contains the following SignatureDefs:\n\nsignature_def['__saved_model_init_op']:\n  The given SavedModel SignatureDef contains the following input(s):\n  The given SavedModel SignatureDef contains the following output(s):\n    outputs['__saved_model_init_op'] tensor_info:\n        dtype: DT_INVALID\n        shape: unknown_rank\n        name: NoOp\n  Method name is: \n\nsignature_def['serving_default']:\n  The given SavedModel SignatureDef contains the following input(s):\n    inputs['inputs'] tensor_info:\n        dtype: DT_FLOAT\n        shape: (-1, 2)\n        name: serving_default_inputs:0\n  The given SavedModel SignatureDef contains the following output(s):\n    outputs['outputs'] tensor_info:\n        dtype: DT_FLOAT\n        shape: (-1, 1)\n        name: StatefulPartitionedCall:0\n  Method name is: tensorflow/serving/predict\nWARNING:tensorflow:From /tensorflow-2.1.0/python3.6/tensorflow_core/python/ops/resource_variable_ops.py:1786: calling BaseResourceVariable.__init__ (from tensorflow.python.ops.resource_variable_ops) with constraint is deprecated and will be removed in a future version.\nInstructions for updating:\nIf using Keras pass *_constraint arguments to layers.\n\nDefined Functions:\n  Function Name: '__call__'\n    Option #1\n      Callable with:\n        Argument #1\n          inputs: TensorSpec(shape=(None, 2), dtype=tf.float32, name='inputs')\n        Argument #2\n          DType: bool\n          Value: False\n        Argument #3\n          DType: NoneType\n          Value: None\n    Option #2\n      Callable with:\n        Argument #1\n          inputs: TensorSpec(shape=(None, 2), dtype=tf.float32, name='inputs')\n        Argument #2\n          DType: bool\n          Value: True\n        Argument #3\n          DType: NoneType\n          Value: None\n\n  Function Name: '_default_save_signature'\n    Option #1\n      Callable with:\n        Argument #1\n          inputs: TensorSpec(shape=(None, 2), dtype=tf.float32, name='inputs')\n\n  Function Name: 'call_and_return_all_conditional_losses'\n    Option #1\n      Callable with:\n        Argument #1\n          inputs: TensorSpec(shape=(None, 2), dtype=tf.float32, name='inputs')\n        Argument #2\n          DType: bool\n          Value: True\n        Argument #3\n          DType: NoneType\n          Value: None\n    Option #2\n      Callable with:\n        Argument #1\n          inputs: TensorSpec(shape=(None, 2), dtype=tf.float32, name='inputs')\n        Argument #2\n          DType: bool\n          Value: False\n        Argument #3\n          DType: NoneType\n          Value: None\n```\n\n```python\n\n```\n\n### 2. Installing tensorflow serving\n\n\nTwo methods for installing tensorflow serving: Using Docker images, or using apt.\n\nDocker image is the simplest way of installation and we recommend it.\n\nDocker is a container that provides independent environment for various programs.\n\nThe companies that are using TensorFlow usually use Docker to install tensorflow serving by operation experts, so the algorithm engineers don't have to worry about the installation.\n\nThe installation of Docker on different OS are shown below (in Chinese).\n\nWindows: https://www.runoob.com/docker/windows-docker-install.html\n\nMacOs: https://www.runoob.com/docker/macos-docker-install.html\n\nCentOS: https://www.runoob.com/docker/centos-docker-install.html\n\nAfter successful installation of Docker, run the following command to load the tensorflow/serving image.\n\n`docker pull tensorflow/serving`\n\n\n```python\n\n```\n\n### 3. Starting tensorflow serving Service\n\n```python\n!docker run -t --rm -p 8501:8501 \\\n    -v \"/Users/.../data/linear_model/\" \\\n    -e MODEL_NAME=linear_model \\\n    tensorflow/serving & >server.log 2>&1\n```\n\n```python\n\n```\n\n### 4. Sending request to the API service\n\n\nThe request could be sent through http function in any kind of the programming languages. We demonstrate request sending using the `curl` command in Linux and the `requests` library in Python.\n\n```python\n!curl -d '{\"instances\": [1.0, 2.0, 5.0]}' \\\n    -X POST http://localhost:8501/v1/models/linear_model:predict\n```\n\n```\n{\n    \"predictions\": [[3.06546211], [5.01313448]\n    ]\n}\n```\n\n```python\nimport json,requests\n\ndata = json.dumps({\"signature_name\": \"serving_default\", \"instances\": [[1.0, 2.0], [5.0,7.0]]})\nheaders = {\"content-type\": \"application/json\"}\njson_response = requests.post('http://localhost:8501/v1/models/linear_model:predict', \n        data=data, headers=headers)\npredictions = json.loads(json_response.text)[\"predictions\"]\nprint(predictions)\n```\n\n```\n[[3.06546211], [6.02843142]]\n```\n\n```python\n\n```\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n\n```python\n\n```\n\n```python\n\n```\n"
  },
  {
    "path": "english/Chapter6-7.md",
    "content": "# 6-7 Call Tensorflow Model Using spark-scala\n\nThis section introduce how to use the trained TensorFlow model to predict in spark.\n\nThe prerequisite of this section is fundamental knowledge on spark and scala.\n\nIt is easier to use pyspark, since it only requires loading model with Python on each executor and predict separately.\n\nFor the consideration of the performance, the spark in scala version is the most popular.\n\nThe section shows how to use the trained TensorFlow model in spark through TensorFlow for Java.\n\nIt is possible to predit with the trained TensorFlow model in hundreds of thousands computers using the parallel computing feature of spark.\n\n\n\n\n```python\n\n```\n\n### 0 Using TensorFlow model in spark-scala\n\n\nThe necessary steps for predicting with trained TensorFlow model in spark (scala) are:\n\n(1) Preparing protobuf model file\n\n(2) Create a spark (scala) project, insert jar package dependencies for TensorFlow in java.\n\n(3) Loading TensorFlow model on the driver end of spark (scala) project and debug it successfully.\n\n(4) Loading TensorFlow model on executor of spark (scala) project through RDD and debug it successfully.\n\n(5) Loading TensorFlow model on executor of spark (scala) project through Data and debug it successfully.\n\n\n```python\n\n```\n\n### 1. Preparing protobuf Model File\n\n\nHere we train a simple linear regression model with `tf.keras` and save it as protobuf file.\n\n```python\n\n```\n\n```python\nimport tensorflow as tf\nfrom tensorflow.keras import models,layers,optimizers\n\n## Number of samples\nn = 800\n\n## Generating testing dataset\nX = tf.random.uniform([n,2],minval=-10,maxval=10) \nw0 = tf.constant([[2.0],[-1.0]])\nb0 = tf.constant(3.0)\n\nY = X@w0 + b0 + tf.random.normal([n,1],mean = 0.0,stddev= 2.0)  # @ is matrix multiplication; adding Gaussian noise\n\n## Modeling\ntf.keras.backend.clear_session()\ninputs = layers.Input(shape = (2,),name =\"inputs\") # Set the input name as \"inputs\"\noutputs = layers.Dense(1, name = \"outputs\")(inputs) # Set the output name as \"outputs\"\nlinear = models.Model(inputs = inputs,outputs = outputs)\nlinear.summary()\n\n## Training with fit method\nlinear.compile(optimizer=\"rmsprop\",loss=\"mse\",metrics=[\"mae\"])\nlinear.fit(X,Y,batch_size = 8,epochs = 100)  \n\ntf.print(\"w = \",linear.layers[1].kernel)\ntf.print(\"b = \",linear.layers[1].bias)\n\n## Save the model as pb format\nexport_path = \"../data/linear_model/\"\nversion = \"1\"       # Version could be used for management of further updates\nlinear.save(export_path+version, save_format=\"tf\") \n\n```\n\n```python\n\n```\n\n```python\n!ls {export_path+version}\n```\n\n```python\n# Check the info of the model file\n!saved_model_cli show --dir {export_path+str(version)} --all\n```\n\n```python\n\n```\n\nThe model file information marked red could be used later.\n\n![](../data/模型文件信息.png)\n\n```python\n\n```\n\n### 2. Create a spark (scala) project, insert jar package dependencies for TensorFlow in java.\n\n```python\n\n```\n\nNeed to add the following jar package dependency if use maven to manage projects.\n\n```\n<!-- https://mvnrepository.com/artifact/org.tensorflow/tensorflow -->\n<dependency>\n    <groupId>org.tensorflow</groupId>\n    <artifactId>tensorflow</artifactId>\n    <version>1.15.0</version>\n</dependency>\n```\n\nYou may also download the jar package `org.tensorflow.tensorflow`, together with the depended `org.tensorflow.libtensorflow` and `org.tensorflowlibtensorflow_jni` from the following link, then add all of them into the project.\n\nhttps://mvnrepository.com/artifact/org.tensorflow/tensorflow/1.15.0\n\n\n```python\n\n```\n\n```python\n\n```\n\n### 3. Loading TensorFlow model on the driver end of spark (scala) project and debug it successfully.\n\n\nThe following demonstration is run in jupyter notebook. We need to install toree to have it support spark(scala).\n\n<!-- #region -->\n```scala\nimport scala.collection.mutable.WrappedArray\nimport org.{tensorflow=>tf}\n\n//Note: the second argument of the load function should be \"serve\"; the related info could be found from the model file.\n\nval bundle = tf.SavedModelBundle \n   .load(\"/Users/liangyun/CodeFiles/eat_tensorflow2_in_30_days/data/linear_model/1\",\"serve\")\n\n//Note: for the Java version TensorFlow uses static graph as TensorFlow 1.X, i.e. use `Session`, then explicit data to feed and results to fetch, and finally run it.\n//Note: multiple feed methods could be used consequetively when we need to feed multiple data.\n//Note: the input must be in the type of float\n\nval sess = bundle.session()\nval x = tf.Tensor.create(Array(Array(1.0f,2.0f),Array(2.0f,3.0f)))\nval y =  sess.runner().feed(\"serving_default_inputs:0\", x)\n         .fetch(\"StatefulPartitionedCall:0\").run().get(0)\n\nval result = Array.ofDim[Float](y.shape()(0).toInt,y.shape()(1).toInt)\ny.copyTo(result)\n\nif(x != null) x.close()\nif(y != null) y.close()\nif(sess != null) sess.close()\nif(bundle != null) bundle.close()  \n\nresult\n\n```\n<!-- #endregion -->\n\nThe output is:\n\n```\nArray(Array(3.019596), Array(3.9878292))\n```\n\n\n![](../data/TfDriver.png)\n\n```python\n\n```\n\n### 4. Loading TensorFlow model on executor of spark (scala) project through RDD and debug it successfully\n\n\nHere we transfer the TensorFlow model loaded on the Driver end to each executor through broadcasting, and predict with distributed computing on all the executors.\n\n\n<!-- #region -->\n```scala\nimport org.apache.spark.sql.SparkSession\nimport scala.collection.mutable.WrappedArray\nimport org.{tensorflow=>tf}\n\nval spark = SparkSession\n    .builder()\n    .appName(\"TfRDD\")\n    .enableHiveSupport()\n    .getOrCreate()\n\nval sc = spark.sparkContext\n\n// Loading model on Driver end\nval bundle = tf.SavedModelBundle \n   .load(\"/Users/liangyun/CodeFiles/master_tensorflow2_in_20_hours/data/linear_model/1\",\"serve\")\n\n// Broadcasting the model to all the executors\nval broads = sc.broadcast(bundle)\n\n// Creating dataset\nval rdd_data = sc.makeRDD(List(Array(1.0f,2.0f),Array(3.0f,5.0f),Array(6.0f,7.0f),Array(8.0f,3.0f)))\n\n// Predicting in batch by using the model through mapPartitions\nval rdd_result = rdd_data.mapPartitions(iter => {\n    \n    val arr = iter.toArray\n    val model = broads.value\n    val sess = model.session()\n    val x = tf.Tensor.create(arr)\n    val y =  sess.runner().feed(\"serving_default_inputs:0\", x)\n             .fetch(\"StatefulPartitionedCall:0\").run().get(0)\n\n    // Copy the prediction into the Array in type Float with the same shape\n    val result = Array.ofDim[Float](y.shape()(0).toInt,y.shape()(1).toInt)\n    y.copyTo(result)\n    result.iterator\n    \n})\n\n\nrdd_result.take(5)\nbundle.close\n```\n<!-- #endregion -->\n\n```python\n\n```\n\nThe output is:\n\n```\nArray(Array(3.019596), Array(3.9264367), Array(7.8607616), Array(15.974984))\n```\n\n\n![](../data/TfRDD.png)\n\n```python\n\n```\n\n### 5. Loading TensorFlow model on executor of spark (scala) project through Data and debug it successfully\n\n\nThe distributed prediction using TensorFlow model could also be implemented on DataFrame data, besides implementing on RDD data in Spark.\n\nIt could be done through registering the method of prediction as a sparkSQL function.\n\n\n<!-- #region -->\n```scala\nimport org.apache.spark.sql.SparkSession\nimport scala.collection.mutable.WrappedArray\nimport org.{tensorflow=>tf}\n\nobject TfDataFrame extends Serializable{\n    \n    \n    def main(args:Array[String]):Unit = {\n        \n        val spark = SparkSession\n        .builder()\n        .appName(\"TfDataFrame\")\n        .enableHiveSupport()\n        .getOrCreate()\n        val sc = spark.sparkContext\n        \n        \n        import spark.implicits._\n\n        val bundle = tf.SavedModelBundle \n           .load(\"/Users/liangyun/CodeFiles/master_tensorflow2_in_20_hours/data/linear_model/1\",\"serve\")\n\n        val broads = sc.broadcast(bundle)\n        \n        // Construct the prediction function and register it as udf of sparkSQL\n        val tfpredict = (features:WrappedArray[Float])  => {\n            val bund = broads.value\n            val sess = bund.session()\n            val x = tf.Tensor.create(Array(features.toArray))\n            val y =  sess.runner().feed(\"serving_default_inputs:0\", x)\n                     .fetch(\"StatefulPartitionedCall:0\").run().get(0)\n            val result = Array.ofDim[Float](y.shape()(0).toInt,y.shape()(1).toInt)\n            y.copyTo(result)\n            val y_pred = result(0)(0)\n            y_pred\n        }\n        spark.udf.register(\"tfpredict\",tfpredict)\n        \n        // Creating DataFrame dataset, and put the features into one of the columns\n        val dfdata = sc.parallelize(List(Array(1.0f,2.0f),Array(3.0f,5.0f),Array(7.0f,8.0f))).toDF(\"features\")\n        dfdata.show \n        \n        // Call the sparkSQL predicting function, add a new column as y_preds\n        val dfresult = dfdata.selectExpr(\"features\",\"tfpredict(features) as y_preds\")\n        dfresult.show \n        bundle.close\n    }\n}\n\n```\n\n<!-- #endregion -->\n\n<!-- #region -->\n```scala\nTfDataFrame.main(Array())\n```\n<!-- #endregion -->\n\n```\n+----------+\n|  features|\n+----------+\n|[1.0, 2.0]|\n|[3.0, 5.0]|\n|[7.0, 8.0]|\n+----------+\n\n+----------+---------+\n|  features|  y_preds|\n+----------+---------+\n|[1.0, 2.0]| 3.019596|\n|[3.0, 5.0]|3.9264367|\n|[7.0, 8.0]| 8.828995|\n+----------+---------+\n```\n\n\nWe implemented distributed prediction using a linear regression model (implemented by `tf.keras`) using both RDD and DataFrame data structures in spark.\n\nIt is also possible to use the trained neural networks for distributed prediction through spark with just a slight modifications on this demonstration.\n\nActually the capability of TensorFlow is more than implementing neural networks, the low-level language of graph is able to express all kinds of numerical computation.\n\nWe are able to implement any kind of machine learning model on TensorFlow 2.0 with these various low-level APIs.\n\nIt is also possible to export the trained models as files and use it on the distributed system such as spark, which provides huge space of imagination for future applications.\n\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Chapter6.md",
    "content": "# Chapter 6: High-level API in TensorFlow\n\nThe high-level API in TensorFlow mainly refers to `tensorflow.keras.models`.\n\nThis chapter introduces the following details related to `tensorflow.keras.models`:\n\n* Model constructing (using `Sequential`, functional API, or the child class of `Model`)\n\n* Model training (using pre-defined `fit`, `train_on_batch` methods, customized training loops, single GPU training, multiple GPU training, and TPU training)\n\n* Model deployment (using tensorflow serving for deployment, using spark (scala) for using tensorflow models)\n\n\nPlease leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "english/Epilogue.md",
    "content": "# Epilogue: A Story Between a Foodie and Cuisine\n\n\"How to eat TensorFlow2 in 30 days?\" has been finished and well concluded, and this is the epilogue for this book.\n\nThis section tells a story about how a foodie got acquaintance to the algorithms, and how he wrote this book.\n\nThis is a very interesting and humorous story. **However it is too long and the translator is too lazy to finish it.**\n\nTL; DT (Too Long, Don't Translate). Please give your smile or laughing when you read this section to appreciate the author and the translator.\n\nThanks for your persistence to the end of this journey, and wish it alleviates your frustration when start learning TensorFlow. **If you find this book helpful and want to support the author, please give a star ⭐️ to this repository and don't forget to share it to your friends 😊** \n\n\nAgain, please leave comments in the WeChat official account \"Python与算法之美\" (Elegance of Python and Algorithms) if you want to communicate with the author about the content. The author will try best to reply given the limited time available.\n\nYou are also welcomed to join the group chat with the other readers through replying **加群 (join group)** in the WeChat official account.\n\n![image.png](../data/Python与算法之美logo.jpg)\n"
  },
  {
    "path": "push-to-github.py",
    "content": "# -*- coding: utf-8 -*-\n# ## 推送主分支\n\n# !git config --global user.email \"lyhue1991@163.com\"\n# 出现一些类似 warning: LF will be replaced by CRLF in <file-name>. 可启用如下设置。\n# !git config --global core.autocrlf false\n# 配置打印历史commit的快捷命令\n# !git config --global alias.lg \"log --oneline --graph --all\"\n\n# !git init\n\n# !git add  ./data/*  ./english/* *.md *.py\n\n\n\n# !git rm --cached  .ipynb_checkpoints/* \n\n# !git commit -m \"revise some chapters\" \n\n# !git remote rm origin \n\n# !git remote add origin git@github.com:lyhue1991/eat_tensorflow2_in_30_days.git\n\n# !git remote add gitee https://gitee.com/Python_Ai_Road/eat_tensorflow2_in_30_days\n\n# +\n# #!git pull  origin master \n# -\n\n# !git push   origin master \n\n# !git push -f gitee master \n\n# ## 创建pages分支\n\n# !git checkout -b gh-pages\n\n# !git rm --cached -r *.md\n\n# !git clean -df\n# !rm -rf *.md\n\n# !cp -r _book/* .\n\n# !git add .\n\n# !git reset\n\n# !git pull origin gh-pages\n\n# !git commit -m 'add gh-pages'\n\n# !git push -u origin gh-pages\n\n# !git checkout pages\n\n# ## 更新命令\n\n# !git checkout master\n\n# !git add ./data/*  *.md *.py\n\n# !git commit -m \"revise readme\"\n\n# !git push -u origin master\n\n# !gitbook build\n\n# !git branch -D gh-pages \n\n# !git checkout -b gh-pages\n\n# !git rm --cached -r *.md\n\n# !git clean -df\n\n# !rm -rf *.md\n\n# !cp -r _book/* .\n\n# !git add .\n# !git commit -m \"add postscript\"\n\n# !git push -f origin gh-pages\n\n# !git checkout master\n\n\n# ### 创建english分支\n\n# !git checkout -b english\n\n# !git add ./data/*  *.md *.py\n\n# !git commit -m \"init branch\"\n\n# !git push origin english:english\n\n\n\n\n\n\n\n"
  },
  {
    "path": "一、TensorFlow的建模流程.md",
    "content": "# 一、TensorFlow的建模流程\n\n\n尽管TensorFlow设计上足够灵活，可以用于进行各种复杂的数值计算。\n\n但通常人们使用TensorFlow来实现机器学习模型，尤其常用于实现神经网络模型。\n\n从原理上说可以使用张量构建计算图来定义神经网络，并通过自动微分机制训练模型。\n\n但为简洁起见，一般推荐使用TensorFlow的高层次keras接口来实现神经网络网模型。\n\n<!-- #region -->\n使用TensorFlow实现神经网络模型的一般流程包括：\n\n1，准备数据\n\n2，定义模型\n\n3，训练模型\n\n4，评估模型\n\n5，使用模型\n\n6，保存模型。\n\n\n**对新手来说，其中最困难的部分实际上是准备数据过程。** \n\n我们在实践中通常会遇到的数据类型包括结构化数据，图片数据，文本数据，时间序列数据。\n\n我们将分别以titanic生存预测问题，cifar2图片分类问题，imdb电影评论分类问题，国内新冠疫情结束时间预测问题为例，演示应用tensorflow对这四类数据的建模方法。\n\n\n<!-- #endregion -->\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![image.png](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "三、TensorFlow的层次结构.md",
    "content": "# 三、TensorFlow的层次结构\n\n\n本章我们介绍TensorFlow中5个不同的层次结构：即硬件层，内核层，低阶API，中阶API，高阶API。并以线性回归和DNN二分类模型为例，直观对比展示在不同层级实现模型的特点。\n\nTensorFlow的层次结构从低到高可以分成如下五层。\n\n最底层为硬件层，TensorFlow支持CPU、GPU或TPU加入计算资源池。\n\n第二层为C++实现的内核，kernel可以跨平台分布运行。\n\n第三层为Python实现的操作符，提供了封装C++内核的低级API指令，主要包括各种张量操作算子、计算图、自动微分.\n如tf.Variable,tf.constant,tf.function,tf.GradientTape,tf.nn.softmax...\n如果把模型比作一个房子，那么第三层API就是【模型之砖】。\n\n第四层为Python实现的模型组件，对低级API进行了函数封装，主要包括各种模型层，损失函数，优化器，数据管道，特征列等等。\n如tf.keras.layers,tf.keras.losses,tf.keras.metrics,tf.keras.optimizers,tf.data.DataSet,tf.feature_column...\n如果把模型比作一个房子，那么第四层API就是【模型之墙】。\n\n第五层为Python实现的模型成品，一般为按照OOP方式封装的高级API，主要为tf.keras.models提供的模型的类接口。\n如果把模型比作一个房子，那么第五层API就是模型本身，即【模型之屋】。\n\n\n<img src=\"./data/tensorflow_structure.jpg\">\n\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![image.png](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "二、TensorFlow的核心概念.md",
    "content": "# 二、TensorFlow的核心概念\n\nTensorFlow™ 是一个采用 **数据流图**（data flow graphs），用于数值计算的开源软件库。节点（Nodes）在图中表示数学操作，图中的线（edges）则表示在节点间相互联系的多维数据数组，即张量（tensor）。它灵活的架构让你可以**在多种平台上展开计算**，例如台式计算机中的一个或多个CPU（或GPU），服务器，移动设备等等。TensorFlow 最初由Google大脑小组（隶属于Google机器智能研究机构）的研究员和工程师们开发出来，**用于机器学习和深度神经网络**方面的研究，但这个系统的通用性使其也可**广泛用于其他计算领域**。 \n\n\nTensorFlow的主要优点：\n\n* 灵活性：支持底层数值计算，C++自定义操作符\n\n* 可移植性：从服务器到PC到手机，从CPU到GPU到TPU\n\n* 分布式计算：分布式并行计算，可指定操作符对应计算设备\n\n\n俗话说，万丈高楼平地起，TensorFlow这座大厦也有它的地基。\n\nTensorflow底层最核心的概念是张量，计算图以及自动微分。\n\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![image.png](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "五、TensorFlow的中阶API.md",
    "content": "# 五、TensorFlow的中阶API\n\nTensorFlow的中阶API主要包括: \n\n* 数据管道(tf.data)\n\n* 特征列(tf.feature_column)\n\n* 激活函数(tf.nn)\n\n* 模型层(tf.keras.layers)\n\n* 损失函数(tf.keras.losses)\n\n* 评估函数(tf.keras.metrics)\n\n* 优化器(tf.keras.optimizers)\n\n* 回调函数(tf.keras.callbacks)\n\n如果把模型比作一个房子，那么中阶API就是【模型之墙】。\n\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![image.png](./data/算法美食屋二维码.jpg)\n\n```python\n\n```\n"
  },
  {
    "path": "六、TensorFlow的高阶API.md",
    "content": "# 六、TensorFlow的高阶API\n\nTensorFlow的高阶API主要是tensorflow.keras.models.\n\n本章我们主要详细介绍tensorflow.keras.models相关的以下内容。\n\n* 模型的构建（Sequential、functional API、Model子类化）\n\n* 模型的训练（内置fit方法、内置train_on_batch方法、自定义训练循环、单GPU训练模型、多GPU训练模型、TPU训练模型）\n\n* 模型的部署（tensorflow serving部署模型、使用spark(scala)调用tensorflow模型）\n\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![image.png](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "后记：一个吃货和一道菜的故事.md",
    "content": "# 一个吃货和一道菜的故事\n\n\n《30天吃掉那只TensorFlow2》这本书已经全部整理完稿。本篇文章算是这本书的一个后记。\n\n本文介绍了一个吃货与算法结缘的故事，并介绍了本书的写作过程。可供感兴趣的读者一乐。\n\n如果读者时间紧迫，可直接阅读本文第3部分和第4部分，了解书籍内容和获取方法。\n\n\n### 一，一个吃货转行算法的心路历程\n\n\n2015年6月，又是一个毕业季，一个吃货从北京吃饭大学毕业了。\n\n虽然是吃饭大学毕业，但他学的是理论物理，而理论物理不是一个适合找饭吃的专业。\n\n几经辗转，这个吃货在金融行业找到了一份量化程序员的工作，虽然收入低微，但是这个吃货梦想有一天可以找到能够稳定盈利的量化策略，通过交易赚钱让自己能够每天都有口好吃的。\n\n然而，资本市场波谲云诡，他尝试过许多交易策略，却没有找到能够稳定赚钱的\"圣杯\"，伙食也一天比一天变差了。\n\n在与K线的纠缠中，他慢慢地迷失了，虽然他知道每次亏钱都是靠实力输的，但是他不知道自己每次赚钱是凭借实力赚的还是凭运气赚的。他感到在金融交易这个行业很难清晰地看到自己的进步。\n\n付出了那么多的努力，搞了那么多模型，写了那么多策略，自己就真的有成长吗？在残酷的交易世界里，这些东西不能赚钱，不能够改善自己的伙食，又有什么价值呢？\n\n\n作为一个吃货，他无法忍受伙食变得越来越差。他决定换一个能够稳定地让伙食变得更好的行业。\n\n那个时候，随着AlphaGo战胜世界围棋冠军李世石的故事广为人知，在互联网领域有一个新兴岗位逐渐火热，那就是算法工程师。\n\n这个吃货心想，我也是做模型的，算法工程师也是做模型的，怎么伙食差别这么大，不行我要转行做算法工程师。\n\n然后吃货就开始准备了。吃货性格内向，不擅言谈，交际圈较小，身边没有认识做算法工程师的朋友。\n\n于是吃货从一些招聘网站上浏览了一些算法工程师的招聘信息，又在知乎等平台上浏览了一些关于转行算法工程师的相关帖子。\n\n\n他给自己制定了一个为期半年左右的学习计划。学习顺序大概如下：\n\n* 1，Python编程\n* 2，Numpy,Pandas,matplotlib数据分析\n* 3，beautifulSoup,requests网络爬虫 \n* 4，sklearn机器学习（同步学习《机器学习实战》，李航《统计学习方法》）\n* 5，tensorflow深度学习（同步学习吴恩达的《深度学习》视频课程）\n\n他决定第4阶段学的差不多就去找算法工程师的工作。\n\n（PS：实践表明，这个学习计划的第3部分是可以去除的。算法工程师通常不需要掌握爬虫技术，算法工程师训练模型所需要的数据一般来自于公司业务，直接从数据库中获取即可。）\n\n\n为了确保自己能够真正地学会，并能够清晰地看到自己的成长。这个吃货决定要让自己的学习留下点痕迹。\n\n同时，他又想，能不能在学习的同时改善一下自己的伙食呢？思来想去，最后他找到了一个方法，那就是每学完一个部分，就录制一个视频课程拿到网易云课堂上去卖。看能不能每个月多个三块五块的，以便改善一下伙食。\n\n**一个吃货，一旦决定为了改善自己的伙食想要做点什么，他的意志力是惊人的。**\n\n于是，大概有半年左右，这个吃货每天晚上和周末的时间都几乎花在了这几个课程的学习和输出上。网易云课堂上陆陆续续多了这个吃货的以下5门课程。\n\n\n**第一门课程：《Python编程ABC》**\n\n![](./data/Python编程ABC.png)\n\n吃货本来做量化交易掌握了一些Python编程基础，但不是很熟练，学习加整理这个课程大概花了半个月。\n\n考虑到自身水平有限，吃货怕没有一个人买，不敢卖高价，因此该课程标价1元，上线2年多，总共卖出108份。\n\n算下来还是不错的，每个月多个三块钱伙食费的理想还是基本实现了的，离五块钱还差一些。\n\n该课程尽管买的人不多，还是有几个评价的。\n\n![](./data/上当了.png)\n\n**第二门课程：《Python数据分析》**\n\n![](./data/Python数据分析.png)\n\nPython数据分析的3个标准套件：numpy,Pandas,matplotlib 掌握起来还是需要下点功夫的。\n\n吃货学习这几个库和整理最终的课程大概花了一个半月。考虑到这门课程做了比较久的时间，同时吃货感到自己的水平有了那么一丢丢进步了，Pandas玩的基本666的了，吃货决定这门课卖10块钱一份，看看能不能每个月多个5块10块的。\n\n这门课程上线2年多，总共卖出去35份。看来每个月多个10块的目标也是基本实现了的。这门课由于买的人非常少，所以目前还没有收到过评价。关起门来说，这门课的质量只能算是让人不忍心给差评吧。\n\n\n**第三门课程：《Python网络爬虫入门》**\n\n![](./data/Python网络爬虫入门.png)\n\n**第四门课程：《Python网络爬虫进阶》**\n\n![](./data/Python网络爬虫进阶.png)\n\nPython网络爬虫的基础还是不难的，但如果要熟练掌握各种反爬策略的突破以及对动态网页的抓取还是非常有挑战性的，\n\nPython爬虫的学习以及这两门课程的制作大概花费了吃货2个月的时间。\n\n其中的网络爬虫入门课程是免费课程，网络爬虫进阶课程售价30元。\n\n网络爬虫入门课程收获了不少好评，虽然没有赚到一毛钱，不能直接改善伙食，但吃货看了这些好评，感觉比吃了蜜还要甜。\n\n![](./data/内容非常棒.png)\n\n\n**第五门课程：《sklearn机器学习》**\n\n![](./data/sklearn机器学习.png)\n\n在做这门课程的时候，吃货同步学习了《机器学习实战》和《统计学习方法》的一些章节。包括学习和输出，大概花了吃货2个月左右时间。\n\n整体上，sklearn的基础使用和机器学习的基本概念的掌握还是不困难的。决策树和SVM的一些原理可能坑会比较多，需要花费较多时间梳理。\n\n吃货的这门课程售价68元，整体上评价较高，达到4.7颗星。\n\n![](./data/良心课程.png)\n\n实际上这门课程做到一半的时候，吃货决定裸辞，因为那时候大概是2018年3月份了，是招聘的黄金时期。经过了半年多的准备，吃货信心满满，感觉已经掌握了从Python基础到Python数据分析到Python机器学习的基本技能，应该能够摸到算法工程师的工作机会。\n\n吃货开始在Boss上和拉勾上投递简历，那时候正是算法岗需求most火爆的时期，吃货陆陆续续收到了一些二三线互联网公司的面试邀约。但陆续面了好几场，吃货发现自己总是会遇到一些如手写二分查找，手写快排算法，手写爬楼梯方法这样的问题。拿到这些问题后吃货一脸懵逼，在纸上抓破脑袋写下了几行import numpy as np,import pandas as pd 这样的东西，然后面试官就笑盈盈地跟吃货说，你回去等通知吧。\n\n于是，吃货一边白天面试，一边晚上回家整理白天遇到的这些问题，并重点针对一些常见的手写代码题进行了准备，掌握了一些像时间复杂度和动态规划这样基本的数据结构和算法知识。周末的时候，再继续录制《sklearn机器学习》这个课程。这样大概持续了半个多月，吃货开始收到一些offer. 很快，吃货跟一个offer确认了眼神，正式转行成为了一个互联网行业的搬砖工，伙食相比以前有了较大的改善，吃货的心里乐开了花。\n\n吃货后来在周末的时候也把这些面试的经验总结起来，放在了网易云课堂上。\n\n![](./data/面试指南.png)\n\n这个课程的评价比较两级分化，有人叫好，也有人吐槽说木有什么卵用。\n\n![](./data/太一般了.png)\n\n\n\n### 二，吃货为什么要写这本书？\n\n\n成为了一名互联网搬砖工后，吃货本想着在周末时间，把自己转行之前制定的学习计划的第5部分，即tensorflow深度学习（同步学习吴恩达的《深度学习》视频课程）这部分付诸实施。\n\n但搬砖工作非常辛苦，同时工作还需要吃货掌握一些其它的技能，例如linux基本操作，git基本操作，Hive数据库，mapreduce编程方法，xgboost和lightgbm建模方法等等。\n\n大概半年后，吃货才感到已经熟练掌握了当时工作所需要的主要技能，能够较为顺利地开发项目。到了周末的时候，吃货开始一边在网易云课堂上看吴恩达《深度学习》视频课程，一边学习使用tensorflow.\n\n\n![](./data/Ng的课程.png)\n\n\n吴恩达的这个系列的课程总体上非常不错，但略微偏理论一些，讲了较多的数学细节，吃货当时学的还是有些吃力的。大概用了半年的周末时间，才基本学习完成了这五门课，并梳理出来了5篇学习笔记。\n\n后来吃货向\"Python之禅\"公众号投稿了一篇文章《18式优雅你的Python》，号主志军大大在后来做抽奖送书的活动时就送了吃货一本书《Python深度学习》。这本书相比于吴恩达课程更加基础一些，该书假定读者无任何机器学习知识，以Keras为工具，使用丰富的范例演示深度学习的最佳实践。该书通俗易懂，全书没有一个数学公式，注重培养读者的深度学习直觉。吃货拿来该书，简直如获至宝，不到两个周末就吃完了，对深度学习在实践层面有了更为清晰的认识。\n\n同时，吃货还在学习tensorflow1.0，总体而言学得比较痛苦，官方文档讲的各种概念多而杂，静态图非常难以调试，tf.control_dependencies, tf.while_loop这些东西简直反人类，又是tf.estimator, 又是tflearn, 又是tf.keras，让人无所适从。吃货花费了非常多的时间，基本上才把tensorflow1.0常用的一些概念和工具梳理到一个适合人类理解的程度。\n\n但tensorflow不仁，以吃货为刍狗。就在吃货快要整理完这个tensorflow1.0教程的时候，tensorflow官方宣布将不久推出tensorflow2.0，默认使用动态图，并对API进行大幅度的调整。吃货当时心里的滋味，就好像一个男孩子追一个女生追了大半年，感觉基本摸清楚了这个女生的脾气和个性的时候，这个女生突然有一天对他说：\"你别追了，我要去做变性手术了，变成一个男孩子。\"\n\n\n于是，吃货转而开始学习Spark，整体而言，Spark的官方教程非常完善，网络上也有比较好的教程资源。吃货学起来非常顺利，不到2个月，就学习并整理了一份系统的Spark教程，放在了github仓库中。\n\n2019年10月1日，这是一个特别的日子。这一天既是祖国母亲的生日，也是tensorflow2.0的生日。在这一天tensorflow官方宣布发布tensorflow2.0的正式版本。吃货知道这个消息后非常开心，就好像一个花痴终于等到了花开一样。但是吃货当时正在做一个他搬砖以来遇到过的最复杂的一个spark大数据挖掘项目，周末的时间都投入到这个项目的攻坚中去了。吃货决定等这个项目基本完成后，重新学习并梳理一份tensorflow2的教程。\n\n大概在2020年初，吃货开始学习tensorflow2.0的官方文档。尽管tensorflow2.0宣称已经为改善用户体验做出了巨大的改进，really easy to use，但吃货学得并不轻松。tensorflow2.0官方文档和tensorflow1.0官方文档显然是出自同一批作者之手，他们一如既往地秉承着谷歌make things complicated的风格传统，用哈希表一般混乱的文档结构、无法运行的范例代码、复杂的函数嵌套调用关系、随意插入的不常用第三方库等技巧将读者的懵圈程度逐步推向高潮。\n\n在吃货看来，tensorflow2.0官方文档所有的问题可以抽象为一个问题：噪声太多。读者要从噪声如此之多的官方教程中提取出他想要的信息是非常的吃力的。如果把官方教程比作一盘菜，那么这盘菜虽然有许多营养物质，但也有许多的沙子，不小心咬到一口就硌得慌，甚至会觉得恶心得不行。吃货决定要做一盘营养丰富，且美味宜人的菜。\n\n吃货开始按照他想象中美味佳肴的样子来做这盘菜。周末本应适合去参加户外爬山活动，他对着电脑在做菜。放假回家的火车上，他对着电脑在做菜。春节到家后由于疫情影响不提倡窜门，他可以有更多时间开心地对着电脑做菜。疫情形势愈发严峻企业延迟复工，他回到北京一边隔离一边对着电脑在做菜。\n\n\n\n\n### 三，吃货写的这本书怎么样？\n\n\n前后用了约两个月，吃货的这本书基本写完了。吃货心想，该给它取个什么名字呢？\n\n嗯，有了，这是一本可以帮助大家改善伙食的书。大概可以连续吃30天，而且应该味道不错。\n\n就叫他《30天吃掉那只TensorFlow2》吧。\n\n从这本书的书名应该能够看出，作者是个吃货，而且是个很有毅力的吃货。\n\n这是一本怎么样的书呢？这是一本对人类用户极其友善的TensorFlow2.0入门工具书。\n\n为了尽可能降低信息噪声，这本书相比官方文档在篇章结构和范例选取上做了大量的优化。\n\n不同于官方文档混乱的篇章结构，既有教程又有指南，缺少整体的编排逻辑。\n\n这本书按照内容难易程度、读者检索习惯和TensorFlow自身的层次结构设计内容，循序渐进，层次清晰，方便按照功能查找相应范例。\n\n不同于官方文档冗长的范例代码，这本书在范例设计上尽可能简约化和结构化，增强范例易读性和通用性，大部分代码片段在实践中可即取即用。\n\n总之，这本书倾注了一个吃货对美食的全部向往和追求，如果你非常喜欢美食，并且想要学习TensorFlow2，那么这本书一定值得你品尝品尝。\n\n![](./data/书籍目录1.png)\n\n![](./data/书籍目录2.png)\n\n![](./data/书籍目录3.png)\n\n\n这本书在github上线1个月来，得到了不少小伙伴的反馈，提了一些issues，吃货针对相关问题进行了一些回答和对项目做了改进。\n\n同时这个项目也获得了100多颗星星，吃货看在眼里，美在心里，每天早上睡觉起来都会去github星球上数星星。\n\n![](./data/github截图.png)\n\n### 四，如何获取吃货写的这本书?\n\n\n这本书目前有4种形式获取。\n\n1，gitbook电子书。以网页链接呈现，同时可以在电脑和手机上用浏览器打开。\n\n电子书链接： https://lyhue1991.github.io/eat_tensorflow2_in_30_days\n\n2，github项目源码。包含全部数据集和md格式源码，可以在jupyter上安装jupytext后将md源码作为ipynb打开。\n\n项目链接：https://github.com/lyhue1991/eat_tensorflow2_in_30_days\n\n3，pdf格式电子书。\n\n4，ipynb格式项目源码。\n\n其中github项目源码和gitbook电子书将持续维护，后续可能也会增加一些新的范例。pdf版本电子书和ipynb项目源码可以在公众号\"**Python与算法之美**\"后台回复关键字: **tf** 进行获取。这两种形式获取的《eat tensorflow2 in 30 days》无法保证更新。\n\n阅读体验优先推荐使用gitbook电子书，具有目录查找和上下页翻页功能，字体大小和背景色可以根据个人喜好进行调整，颜值超高。\n\n![](./data/gitbook电子书.png)\n\n\n\n\n### 五，鼓励和联系这个吃货\n\n\n最后，想给大家讲一个吃货小王子的故事。\n\n>在很久很久以前，有一个小王子，住在一个只比他大一点点的星球上，他，想要一个朋友。\n\n>在昨天今天和明天，有一个吃货，住在一个只比他大一点点的github星球上，他，想要一颗星星。\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![image.png](./data/算法美食屋二维码.jpg)\n"
  },
  {
    "path": "四、TensorFlow的低阶API.md",
    "content": "# 四、TensorFlow的低阶API\n\nTensorFlow的低阶API主要包括张量操作，计算图和自动微分。\n\n如果把模型比作一个房子，那么低阶API就是【模型之砖】。\n\n在低阶API层次上，可以把TensorFlow当做一个增强版的numpy来使用。\n\nTensorFlow提供的方法比numpy更全面，运算速度更快，如果需要的话，还可以使用GPU进行加速。\n\n前面几章我们对低阶API已经有了一个整体的认识，本章我们将重点详细介绍张量操作和Autograph计算图。\n\n\n张量的操作主要包括张量的结构操作和张量的数学运算。\n\n张量结构操作诸如：张量创建，索引切片，维度变换，合并分割。\n\n张量数学运算主要有：标量运算，向量运算，矩阵运算。另外我们会介绍张量运算的广播机制。\n\nAutograph计算图我们将介绍使用Autograph的规范建议，Autograph的机制原理，Autograph和tf.Module.\n\n\n\n如果对本书内容理解上有需要进一步和作者交流的地方，欢迎在公众号\"算法美食屋\"下留言。作者时间和精力有限，会酌情予以回复。\n\n也可以在公众号后台回复关键字：**加群**，加入读者交流群和大家讨论。\n\n![image.png](./data/算法美食屋二维码.jpg)\n"
  }
]